From 2de86341842548e55816db7a30c67e642c83346c Mon Sep 17 00:00:00 2001 From: Isuru Samarathunga Date: Tue, 4 Nov 2025 22:18:48 +0530 Subject: [PATCH] RenderCore --- .gitmodules | 3 - Resources/Shaders/Geometry.frag | 26 - Resources/Shaders/Geometry.vert | 25 - Samples/RPG/Src/imp/cpp/Game.cpp | 29 - Src/CMakeLists.txt | 1 + Src/Editor/CMakeLists.txt | 9 + Src/Editor/imp/cpp/Main.cpp | 61 ++ Src/IAEngine/CMakeLists.txt | 7 +- .../IAEngine/Resources}/Fonts/Credits.txt | 0 .../IAEngine/Resources}/Fonts/Roboto.ttf | Bin .../IAEngine/Resources}/Images/Logo.png | Bin Src/IAEngine/imp/cpp/EmbeddedResources.cpp | 71 -- Src/IAEngine/imp/cpp/IAEngine.cpp | 38 +- Src/IAEngine/imp/cpp/Renderer.cpp | 746 ------------------ Src/IAEngine/imp/cpp/Scene.cpp | 3 +- Src/IAEngine/imp/hpp/Renderer.hpp | 130 --- Src/IAEngine/inc/IAEngine/Base.hpp | 25 +- Src/RenderCore/CMakeLists.txt | 16 + .../Resources/Shaders/DynamicSprite.frag | 2 +- .../Resources/Shaders/DynamicSprite.vert | 0 Src/RenderCore/imp/cpp/Buffer.cpp | 124 +++ Src/RenderCore/imp/cpp/Device.cpp | 108 +++ Src/RenderCore/imp/cpp/EmbeddedResources.cpp | 51 ++ Src/RenderCore/imp/cpp/Pipeline.cpp | 107 +++ Src/RenderCore/imp/cpp/RenderCore.cpp | 292 +++++++ Src/RenderCore/imp/cpp/Texture.cpp | 121 +++ Src/RenderCore/imp/cpp/TextureAtlas.cpp | 82 ++ .../imp/hpp/EmbeddedResources.hpp | 2 +- Src/RenderCore/inc/RenderCore/Base.hpp | 64 ++ Src/RenderCore/inc/RenderCore/Buffer.hpp | 90 +++ Src/RenderCore/inc/RenderCore/Device.hpp | 56 ++ Src/RenderCore/inc/RenderCore/Pipeline.hpp | 50 ++ Src/RenderCore/inc/RenderCore/RenderCore.hpp | 90 +++ Src/RenderCore/inc/RenderCore/Texture.hpp | 63 ++ .../inc/RenderCore/TextureAtlas.hpp | 44 ++ Tools/Scripts/Srcgen/EmbedResources.py | 22 +- Vendor/CMakeLists.txt | 6 - Vendor/freetype | 1 - 38 files changed, 1465 insertions(+), 1100 deletions(-) delete mode 100644 Resources/Shaders/Geometry.frag delete mode 100644 Resources/Shaders/Geometry.vert create mode 100644 Src/Editor/imp/cpp/Main.cpp rename {Resources => Src/IAEngine/Resources}/Fonts/Credits.txt (100%) rename {Resources => Src/IAEngine/Resources}/Fonts/Roboto.ttf (100%) rename {Resources => Src/IAEngine/Resources}/Images/Logo.png (100%) delete mode 100644 Src/IAEngine/imp/cpp/EmbeddedResources.cpp delete mode 100644 Src/IAEngine/imp/cpp/Renderer.cpp delete mode 100644 Src/IAEngine/imp/hpp/Renderer.hpp create mode 100644 Src/RenderCore/CMakeLists.txt rename Resources/Shaders/Debug.frag => Src/RenderCore/Resources/Shaders/DynamicSprite.frag (82%) rename Resources/Shaders/Debug.vert => Src/RenderCore/Resources/Shaders/DynamicSprite.vert (100%) create mode 100644 Src/RenderCore/imp/cpp/Buffer.cpp create mode 100644 Src/RenderCore/imp/cpp/Device.cpp create mode 100644 Src/RenderCore/imp/cpp/EmbeddedResources.cpp create mode 100644 Src/RenderCore/imp/cpp/Pipeline.cpp create mode 100644 Src/RenderCore/imp/cpp/RenderCore.cpp create mode 100644 Src/RenderCore/imp/cpp/Texture.cpp create mode 100644 Src/RenderCore/imp/cpp/TextureAtlas.cpp rename Src/{IAEngine => RenderCore}/imp/hpp/EmbeddedResources.hpp (97%) create mode 100644 Src/RenderCore/inc/RenderCore/Base.hpp create mode 100644 Src/RenderCore/inc/RenderCore/Buffer.hpp create mode 100644 Src/RenderCore/inc/RenderCore/Device.hpp create mode 100644 Src/RenderCore/inc/RenderCore/Pipeline.hpp create mode 100644 Src/RenderCore/inc/RenderCore/RenderCore.hpp create mode 100644 Src/RenderCore/inc/RenderCore/Texture.hpp create mode 100644 Src/RenderCore/inc/RenderCore/TextureAtlas.hpp delete mode 160000 Vendor/freetype diff --git a/.gitmodules b/.gitmodules index 9be79a0..5b99784 100644 --- a/.gitmodules +++ b/.gitmodules @@ -5,9 +5,6 @@ [submodule "Vendor/SDL_mixer"] path = Vendor/SDL_mixer url = https://github.com/libsdl-org/SDL_mixer -[submodule "Vendor/freetype"] - path = Vendor/freetype - url = https://github.com/freetype/freetype [submodule "Vendor/zlib"] path = Vendor/zlib url = https://github.com/madler/zlib diff --git a/Resources/Shaders/Geometry.frag b/Resources/Shaders/Geometry.frag deleted file mode 100644 index a6928f3..0000000 --- a/Resources/Shaders/Geometry.frag +++ /dev/null @@ -1,26 +0,0 @@ -#version 450 -#extension GL_ARB_separate_shader_objects : enable - -layout(location = 0) in vec2 inTexCoord; -layout(location = 1) in vec4 inVertexColor; - -layout(location = 0) out vec4 outColor; - -layout(set = 2, binding = 0) uniform sampler2D texSampler; -layout(set = 3, binding = 0) uniform UniformBufferObject { - bool flippedH; - bool flippedV; - vec2 uvOffset; - vec4 colorOverlay; -} ubo; - -void main() -{ - vec2 uv = inTexCoord; - uv += ubo.uvOffset; - if(ubo.flippedH) uv.x = 1.0 - uv.x; - if(ubo.flippedV) uv.y = 1.0 - uv.y; - outColor = texture(texSampler, uv) * inVertexColor * ubo.colorOverlay; - if(outColor.w < 0.1) - discard; -} \ No newline at end of file diff --git a/Resources/Shaders/Geometry.vert b/Resources/Shaders/Geometry.vert deleted file mode 100644 index b787f76..0000000 --- a/Resources/Shaders/Geometry.vert +++ /dev/null @@ -1,25 +0,0 @@ -#version 450 -#extension GL_ARB_separate_shader_objects : enable - -layout (location = 0) in vec2 inPosition; -layout (location = 1) in vec2 inTexCoord; - -layout(location = 0) out vec2 outTexCoord; -layout(location = 1) out vec4 outVertexColor; - -layout(set = 1, binding = 0) uniform UBO_Vertex_PerScene { - mat4 projection; -} uboPerScene; -layout(set = 1, binding = 1) uniform UBO_Vertex_PerFrame { - mat4 view; -} uboPerFrame; -layout(set = 1, binding = 2) uniform UBO_Vertex_PerDraw { - mat4 model; -} uboPerDraw; - -void main() -{ - gl_Position = uboPerScene.projection * uboPerFrame.view * uboPerDraw.model * vec4(inPosition, 0.0f, 1.0f); - outTexCoord = inTexCoord; - //outVertexColor = inVertexColor; -} \ No newline at end of file diff --git a/Samples/RPG/Src/imp/cpp/Game.cpp b/Samples/RPG/Src/imp/cpp/Game.cpp index bb8d73b..76a76aa 100644 --- a/Samples/RPG/Src/imp/cpp/Game.cpp +++ b/Samples/RPG/Src/imp/cpp/Game.cpp @@ -29,36 +29,8 @@ namespace ia::iae::rpg return &EngineConfig; } - //Handle g_pathTile; - //Handle g_waterTile; - //Handle g_grassTile; - //Handle g_pathTileSheet; - //Handle g_waterTileSheet; - //Handle g_beachTileSheet; - //Handle g_cliffTileSheet; - //Handle g_farmLandTileSheet; - //Handle g_playerSpriteSheet; - VOID OnInitialize() { - /*g_playerSpriteSheet = IAEngine::CreateSpriteSheet("Resources/Cute_Fantasy_Free/Player/Player.png", 32, 32, - {6, 6, 6, 6, 6, 6, 4, 4, 4, 4}); - - g_pathTile = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Path_Middle.png", 16, 16); - g_waterTile = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Water_Middle.png", 16, 16); - g_grassTile = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Grass_Middle.png", 16, 16); - g_pathTileSheet = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Path_Tile.png", 16, 16); - g_waterTileSheet = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Water_Tile.png", 16, 16); - g_beachTileSheet = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Beach_Tile.png", 16, 16); - g_cliffTileSheet = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/Cliff_Tile.png", 16, 16); - g_farmLandTileSheet = IAEngine::CreateTileSheet("Resources/Cute_Fantasy_Free/Tiles/FarmLand_Tile.png", 16, 16); - - IAEngine::LoadResources({g_playerSpriteSheet, g_pathTile, g_waterTile, g_grassTile, g_pathTileSheet, - g_waterTileSheet, g_beachTileSheet, g_cliffTileSheet, g_farmLandTileSheet}); - - IAEngine::GetActiveScene()->SetupGrid({16, 16}); - - IAEngine::GetActiveScene()->GetGridCell(0, 0).TileSheetTexture = g_pathTile;*/ } VOID OnTerminate() @@ -75,7 +47,6 @@ namespace ia::iae::rpg VOID OnUpdate(IN FLOAT32 deltaTime) { - //IAEngine::DrawSprite(0, 2, 0, {100.0f, 100.0f}, {1.0f, 1.0f}, 0.0f); } VOID OnResize(IN INT32 newWidth, IN INT32 newHeight) diff --git a/Src/CMakeLists.txt b/Src/CMakeLists.txt index 4bb9690..c4b4cb7 100644 --- a/Src/CMakeLists.txt +++ b/Src/CMakeLists.txt @@ -1,4 +1,5 @@ +add_subdirectory(RenderCore/) add_subdirectory(IAEngine/) add_subdirectory(CLI/) add_subdirectory(Editor/) \ No newline at end of file diff --git a/Src/Editor/CMakeLists.txt b/Src/Editor/CMakeLists.txt index e69de29..2f52bd9 100644 --- a/Src/Editor/CMakeLists.txt +++ b/Src/Editor/CMakeLists.txt @@ -0,0 +1,9 @@ +set(SRC_FILES + "imp/cpp/Main.cpp" +) + +add_executable(IAE_Editor ${SRC_FILES}) + +target_include_directories(IAE_Editor PRIVATE imp/hpp) + +target_link_libraries(IAE_Editor PRIVATE RenderCore) diff --git a/Src/Editor/imp/cpp/Main.cpp b/Src/Editor/imp/cpp/Main.cpp new file mode 100644 index 0000000..be3b2dd --- /dev/null +++ b/Src/Editor/imp/cpp/Main.cpp @@ -0,0 +1,61 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include +#include + +namespace ia::iae +{ + SDL_Window* g_windowHandle{}; + + INT32 Run(IN INT32 argc, IN PCCHAR argv[]) + { + IVec2 windowExtent{800, 600}; + + if (!SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_GAMEPAD)) + THROW_UNKNOWN("Failed to intialize SDL: ", SDL_GetError()); + + if (!(g_windowHandle = SDL_CreateWindow("IAEngine", windowExtent.x, windowExtent.y, + SDL_WINDOW_RESIZABLE))) + THROW_UNKNOWN("Failed to create the SDL window: ", SDL_GetError()); + + RDC::Initialize(windowExtent, g_windowHandle, true); + + + + SDL_Event event{}; + while (true) + { + SDL_PollEvent(&event); + if (event.type == SDL_EVENT_QUIT) + break; + + //RDC::DrawSpriteTopLeft(0, 0, 0, {100.0f, 100.0f}, {1.0f, 1.0f}, 0.0f); + RDC::RenderToWindow(); + } + + RDC::Terminate(); + + SDL_DestroyWindow(g_windowHandle); + + return 0; + } +} + +int main(int argc, char* argv[]) +{ + return ia::iae::Run(argc, (const char**)argv); +} \ No newline at end of file diff --git a/Src/IAEngine/CMakeLists.txt b/Src/IAEngine/CMakeLists.txt index 301f7c8..c648837 100644 --- a/Src/IAEngine/CMakeLists.txt +++ b/Src/IAEngine/CMakeLists.txt @@ -2,9 +2,8 @@ set(SRC_FILES "imp/cpp/IAEngine.cpp" "imp/cpp/Scene.cpp" - "imp/cpp/Renderer.cpp" "imp/cpp/GameData.cpp" - "imp/cpp/EmbeddedResources.cpp" + #"imp/cpp/EmbeddedResources.cpp" ) add_library(IAEngine STATIC ${SRC_FILES}) @@ -12,5 +11,5 @@ add_library(IAEngine STATIC ${SRC_FILES}) target_include_directories(IAEngine PUBLIC inc) target_include_directories(IAEngine PRIVATE imp/hpp) -target_link_libraries(IAEngine PUBLIC IACore pugixml::pugixml glm::glm) -target_link_libraries(IAEngine PRIVATE ZLIB::ZLIBSTATIC SDL3::SDL3 SDL3_mixer::SDL3_mixer Freetype::Freetype) +target_link_libraries(IAEngine PUBLIC RenderCore pugixml::pugixml) +target_link_libraries(IAEngine PRIVATE ZLIB::ZLIBSTATIC SDL3_mixer::SDL3_mixer) diff --git a/Resources/Fonts/Credits.txt b/Src/IAEngine/Resources/Fonts/Credits.txt similarity index 100% rename from Resources/Fonts/Credits.txt rename to Src/IAEngine/Resources/Fonts/Credits.txt diff --git a/Resources/Fonts/Roboto.ttf b/Src/IAEngine/Resources/Fonts/Roboto.ttf similarity index 100% rename from Resources/Fonts/Roboto.ttf rename to Src/IAEngine/Resources/Fonts/Roboto.ttf diff --git a/Resources/Images/Logo.png b/Src/IAEngine/Resources/Images/Logo.png similarity index 100% rename from Resources/Images/Logo.png rename to Src/IAEngine/Resources/Images/Logo.png diff --git a/Src/IAEngine/imp/cpp/EmbeddedResources.cpp b/Src/IAEngine/imp/cpp/EmbeddedResources.cpp deleted file mode 100644 index 73cdce6..0000000 --- a/Src/IAEngine/imp/cpp/EmbeddedResources.cpp +++ /dev/null @@ -1,71 +0,0 @@ -// IAEngine: 2D Game Engine by IA -// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -#include - -namespace ia::iae -{ - CONST Vector DATA_LOGO_PNG = { - 0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x1,0xfe,0x0,0x0,0x0,0x74,0x8,0x6,0x0,0x0,0x0,0x64,0x33,0x50,0x2f,0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x1,0xd9,0xc9,0x2c,0x7f,0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xe9,0xa,0x11,0x11,0x2f,0x2,0xbe,0x7c,0x58,0xb7,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0xda,0x9c,0xbd,0x79,0xb0,0xad,0xdb,0x55,0x17,0xfa,0x1b,0xe3,0x5b,0x7b,0xef,0xd3,0xdc,0x73,0x9b,0x24,0x37,0x9,0x5d,0x7a,0x48,0x2e,0x2f,0x40,0x12,0x48,0x68,0x44,0x49,0xc5,0x48,0x8c,0x41,0x90,0x56,0x51,0xc0,0xc2,0x8,0x5a,0x20,0x4a,0x89,0x22,0xe8,0x3,0x15,0xe4,0xf1,0xa4,0x94,0x92,0x67,0x29,0xd6,0xa3,0x6c,0xa,0xd1,0x87,0xfa,0x68,0xc,0x48,0x13,0x69,0x54,0xec,0xea,0x61,0x81,0x88,0x80,0x42,0x10,0x13,0x7a,0x42,0x48,0x73,0xef,0x39,0x67,0xef,0xbd,0xd6,0x37,0xc6,0xfb,0x63,0xce,0x31,0xc6,0x6f,0x7c,0x6b,0xdd,0x8b,0x7a,0xab,0x52,0xb9,0xf7,0xec,0xb3,0xd7,0xfa,0x9a,0x39,0xc7,0x1c,0xcd,0xaf,0x91,0x87,0xde,0xfb,0x31,0x87,0x3,0x10,0x8c,0x7f,0x4,0x68,0xff,0xed,0x2,0x71,0xc0,0xc5,0xf3,0xe7,0x22,0x3a,0x7e,0x4,0x87,0x98,0x2,0xe6,0xc0,0x6e,0xfc,0xf7,0xf8,0x3b,0x2,0x38,0x20,0x3e,0x3f,0xb,0x2,0x68,0x7c,0x8d,0x0,0xe2,0x70,0x9f,0x5f,0xe1,0x92,0x5f,0xea,0xe2,0xf5,0xbd,0x10,0x88,0xc7,0xc5,0x38,0x5c,0xa4,0xae,0x6f,0x7e,0x3b,0x20,0x10,0x1b,0xdf,0x35,0x3e,0x86,0xbe,0x7f,0xfe,0x15,0x1,0xfd,0x3c,0xae,0x4f,0xe9,0xe7,0x3e,0x7f,0xa8,0xfd,0xfa,0xe3,0xa3,0xe0,0x18,0xd7,0x2a,0xf5,0xdd,0x9e,0x5f,0x95,0x17,0x13,0x5f,0x76,0xfc,0x67,0x5e,0xff,0x2d,0x3a,0x3e,0xcb,0x45,0x20,0xf0,0xf9,0xfd,0x32,0xbe,0x57,0x24,0xbe,0x1d,0x22,0x3e,0x9e,0x88,0xcf,0xe7,0x33,0x2f,0x26,0xfe,0x1e,0xe8,0x55,0xc1,0xc7,0xfd,0x41,0xe7,0x45,0xb9,0xc3,0x45,0xc1,0xb7,0x3b,0xae,0x3f,0x7e,0xd7,0xf3,0xbd,0xc6,0x7d,0x8,0x0,0x93,0xfa,0x6e,0xcc,0x67,0x16,0xd7,0xef,0xf9,0x48,0xeb,0x1e,0xc5,0x51,0xd7,0x8b,0x79,0xf,0x1e,0xaf,0x3e,0xae,0x59,0x6a,0xd,0x88,0x8d,0x47,0xe1,0x2,0x15,0x5e,0x6c,0x2,0x31,0x87,0xab,0xc3,0x5d,0x0,0xb5,0xfc,0x44,0xcc,0x77,0x9b,0xcf,0x5d,0xc6,0xf5,0x39,0xf8,0xfd,0xcd,0x7f,0x55,0xc0,0xdd,0xe7,0x7b,0x1a,0x9f,0x29,0x0,0xdc,0xe6,0x57,0xe9,0xbc,0x2e,0xad,0x7,0x23,0x36,0x3f,0xd3,0x62,0x7d,0xf6,0x35,0x26,0xb6,0x79,0x8d,0xf4,0xfc,0x9c,0x96,0xdb,0xd1,0xfe,0xc9,0x65,0x3b,0x5e,0x8c,0xb8,0xd7,0x6b,0x54,0x81,0xc7,0x82,0x72,0x1f,0x77,0xea,0x7e,0xbc,0xff,0xe2,0xfe,0xe6,0xdf,0xcb,0x67,0xca,0xfb,0x73,0xae,0xef,0xf6,0xfb,0xbc,0x4,0x4f,0x5e,0x9f,0xd7,0x45,0xfa,0x78,0x1c,0xb6,0xfd,0x7e,0xbe,0x69,0xdf,0xfe,0x1e,0xfd,0xfa,0x5c,0x23,0xe2,0xb4,0xe7,0xe6,0x97,0xc5,0x9a,0x73,0x9b,0xef,0x52,0x68,0xdf,0xd3,0xfe,0xcc,0xcf,0x9f,0x6b,0x6b,0x7c,0x94,0xb4,0x6b,0xf7,0x5c,0x97,0xdb,0xfd,0x35,0xdf,0x21,0x0,0xa8,0xd3,0x1f,0x4a,0xff,0x6c,0x7,0x5c,0x5,0x2,0xeb,0x3f,0xa7,0x25,0xed,0x71,0x8f,0x2d,0x76,0xf0,0x17,0xd5,0xf7,0xbb,0xf8,0x88,0x4d,0xe,0x0,0x36,0x9e,0x83,0xc8,0xf8,0x58,0x15,0xc0,0x6c,0x7c,0x8c,0x8d,0xff,0x8d,0x6d,0x2c,0xe3,0x79,0x88,0xb7,0xeb,0x93,0xb9,0xf1,0x7c,0x89,0xf5,0x12,0xeb,0x77,0x5e,0xa7,0x79,0xae,0x6f,0xf0,0x7b,0x8a,0xb8,0xe2,0xf3,0xbd,0xe4,0x65,0xcf,0x3d,0x10,0xb1,0xd3,0xe9,0x19,0xea,0x36,0xb6,0x63,0xf3,0x8f,0xf4,0xf7,0x10,0x2f,0xd9,0x66,0x7c,0xc1,0x38,0x7,0x64,0xb3,0xff,0x22,0xb6,0x46,0x28,0x17,0x8c,0xeb,0xae,0xbf,0x39,0xfe,0xa2,0x9b,0xe4,0x33,0x1e,0xf7,0x7,0x88,0xea,0x88,0x7,0x32,0x62,0x88,0x9b,0xc3,0xdd,0x61,0x66,0xb9,0xd7,0xa5,0xad,0xdf,0x19,0x27,0xe7,0xb3,0xaa,0x9f,0x79,0x3f,0x1a,0xe6,0x77,0xfb,0x8c,0xb1,0x79,0xb3,0x92,0xd1,0xa5,0x1e,0x86,0x7b,0x9d,0x6f,0x15,0xc4,0x32,0x7e,0xa8,0x8c,0x50,0x24,0xf4,0x1c,0xf3,0x55,0xd1,0xfa,0x89,0xcf,0x10,0x9f,0xef,0xc3,0xfb,0x9e,0xf1,0xf9,0x32,0x44,0xe6,0x99,0x19,0x7b,0xc8,0x9d,0x7e,0x1e,0xcf,0x2c,0x16,0x90,0xa2,0x5,0xf3,0x38,0x93,0xeb,0x64,0x1c,0xd7,0xca,0x7f,0x2d,0x97,0xc6,0xb8,0xe,0x9f,0xdf,0x45,0x8f,0x30,0x5e,0x67,0xdf,0x53,0x52,0x9f,0x9a,0x8f,0x48,0x55,0xe6,0xe6,0x8d,0x20,0x1f,0xaf,0xd5,0x63,0x4f,0x67,0xa0,0x12,0xda,0x43,0x22,0xb4,0xa0,0xc1,0xe7,0xa0,0x8c,0xb,0x73,0x19,0x87,0x6f,0x1e,0xac,0x15,0x94,0xe2,0xa6,0x60,0xbc,0x56,0xc7,0xc2,0xf0,0x38,0xf0,0x3d,0xe,0x9c,0xf8,0xc,0xc9,0x33,0x2b,0x13,0xa,0x77,0x88,0xce,0x9f,0xeb,0x8,0x4a,0xb0,0xf9,0x22,0x8d,0x1f,0xa9,0xe4,0x4b,0xf7,0xcd,0x3a,0xe0,0xc3,0xa7,0x5,0xad,0xb8,0x87,0x19,0x30,0x5c,0x9c,0xe2,0xa5,0x64,0x60,0x14,0x19,0x9b,0x1f,0xcb,0xc,0x10,0x2e,0xb5,0x46,0xe7,0x29,0x22,0x32,0xae,0xd3,0x21,0x73,0xbf,0xb7,0x13,0xf,0x2a,0x5a,0x17,0x13,0x9,0x8b,0xa1,0x2d,0x8,0x17,0x9d,0x67,0x8e,0x53,0x0,0xa3,0xc,0x60,0x6e,0x11,0xe3,0xfd,0x3f,0x9f,0xdf,0xc8,0xe7,0xa4,0x3d,0xf,0x4e,0xe,0x38,0x12,0x3a,0xfd,0xae,0x9b,0xd3,0xe1,0x4a,0xbb,0xd1,0x2b,0x49,0x50,0xd1,0xb1,0x36,0x94,0x7e,0x4,0xcf,0x43,0x31,0x57,0x63,0xac,0xb1,0xd8,0x3c,0xb1,0xfe,0x65,0xac,0x2d,0x17,0xe1,0xf8,0xc4,0xb7,0x35,0xde,0x41,0x1e,0x94,0xe3,0xd7,0xda,0xd9,0x37,0x13,0xa3,0x78,0xbf,0x86,0x8,0xcc,0x23,0xe9,0xa8,0xe7,0x54,0x1,0x3b,0xd6,0xe1,0xb8,0x14,0xab,0x77,0x9b,0x1b,0x9f,0x2,0x8e,0x56,0xbc,0xad,0x7b,0xf7,0x3c,0xcc,0x5c,0x67,0xe0,0xe4,0x3d,0x31,0xf,0x5f,0x1,0xf2,0x5f,0xe2,0x16,0x21,0xb5,0xe0,0x84,0x7e,0xc6,0xc9,0x81,0xfb,0x38,0x84,0x74,0xee,0x3b,0x28,0xf8,0x1,0x43,0x5c,0x20,0x18,0xeb,0x33,0x97,0x8e,0x64,0xc4,0x99,0x31,0x67,0xae,0x5f,0xe9,0x87,0x82,0x53,0x50,0x90,0x7c,0x3f,0xf3,0xf6,0xe2,0xc,0x35,0xc9,0x3d,0x40,0x91,0x35,0xd7,0x99,0x6c,0xce,0x17,0xe1,0xfd,0xc9,0x7b,0x6c,0xc6,0x17,0xce,0x9,0xe0,0x7c,0xe6,0xca,0x8c,0x6e,0x5e,0x49,0x68,0xe4,0xec,0x2,0x28,0x74,0xfe,0xbe,0xe0,0xe8,0xe4,0x96,0xb1,0x92,0x45,0x36,0x9,0x8a,0x57,0xb0,0x14,0xa9,0x84,0xc4,0x5b,0x90,0xdd,0x6,0x47,0x40,0x38,0x6c,0x5a,0xc4,0xbc,0xf9,0x60,0xe,0x36,0x4f,0xe9,0xb8,0xb0,0xf1,0x50,0x75,0xbe,0x4b,0x9f,0xef,0xa3,0x92,0xfa,0xf1,0x2e,0x34,0x1e,0xfe,0xbc,0x6,0x13,0xba,0x92,0x48,0xf0,0xb4,0xe2,0xa3,0xcf,0x53,0xc8,0xf9,0x85,0x51,0xc1,0x20,0x5c,0x74,0xcc,0x77,0x27,0x8e,0x6d,0xc4,0xdf,0x24,0x73,0xde,0x93,0x2,0xf7,0x9e,0xcc,0xd2,0xa1,0x19,0xef,0xdf,0xa9,0x32,0x92,0xb9,0x19,0x8d,0xaf,0x6b,0x7e,0x8e,0xbb,0xcc,0xdb,0xd5,0xdc,0xcf,0xee,0x80,0xaf,0x2b,0x56,0xb3,0x56,0x37,0x89,0x0,0x2a,0x32,0xf,0x7d,0xcf,0xf7,0x61,0xed,0x8a,0x7d,0xee,0x29,0x99,0x5b,0x7a,0x3e,0x17,0xda,0x40,0x63,0xfd,0xcd,0xe2,0x22,0x62,0xf,0x5f,0x33,0x1d,0xba,0xf9,0x37,0xa9,0x68,0xf2,0x19,0xd7,0x9d,0xf7,0xa7,0xf6,0x5c,0x95,0x8f,0x1a,0xcd,0x6b,0x18,0xfb,0x92,0x63,0x4f,0x26,0x2a,0xd0,0x38,0xc5,0xe8,0xec,0x89,0x35,0x12,0x25,0x54,0x24,0x22,0xf3,0x5a,0xcc,0x6b,0x7d,0x39,0xdf,0x83,0xd5,0xab,0xf1,0xda,0xbc,0xe3,0x7c,0xac,0xaa,0x35,0x97,0x21,0xc7,0xfb,0x87,0xdf,0xfb,0x31,0x8f,0x8c,0x75,0x53,0xc6,0x65,0x35,0x7,0xe7,0x4a,0x66,0x5c,0x9a,0xa8,0x50,0x45,0x1d,0x55,0xb9,0xb6,0xd,0x97,0xd5,0xc8,0x2c,0x77,0xea,0x90,0x13,0x50,0x4e,0x36,0x2b,0x2f,0xda,0x6e,0x19,0x98,0x62,0x23,0x3b,0xb8,0x2d,0xe1,0x54,0xb5,0xe8,0xc,0xcc,0x9c,0x50,0x60,0x3e,0x32,0xdb,0x1e,0x63,0x33,0x81,0x16,0x97,0x71,0xfd,0x19,0xdd,0xa2,0xa3,0x50,0x7,0x96,0x6a,0x55,0x34,0xa0,0x83,0x85,0x93,0xb8,0x19,0x45,0xe7,0x86,0xf3,0x76,0x18,0x42,0x64,0xb3,0xc7,0xc6,0x8b,0x34,0xae,0x84,0x29,0x33,0x97,0xb8,0xf,0x50,0x56,0xdc,0x3a,0x7,0x74,0xa8,0xb4,0x9f,0xa1,0x2a,0x7e,0x7,0xc,0x6,0x71,0xe5,0xc6,0x40,0xff,0xc,0xd4,0xef,0xfb,0x3c,0xb8,0x90,0x8b,0x7b,0xbe,0x17,0x37,0x38,0x2d,0xf8,0x38,0xbc,0x78,0x29,0x8c,0x87,0x19,0xcf,0xa4,0x2a,0xda,0x7c,0x8c,0x2a,0x54,0x19,0x78,0xab,0x24,0x6a,0x3,0x1c,0x17,0x67,0xc2,0x39,0x8a,0x50,0x72,0x39,0x6a,0xab,0x3c,0x58,0xb2,0xe2,0xf6,0x6d,0x95,0x42,0x95,0x3f,0x77,0x2c,0x36,0x1d,0x13,0x9f,0x81,0x43,0xa0,0xf3,0x3e,0x8c,0x6b,0x86,0xcc,0xd8,0x47,0xf5,0x99,0xbf,0x9d,0xcb,0xd7,0x1,0xa8,0x73,0x3a,0xba,0x8d,0xa7,0xd2,0x8b,0xef,0xb8,0xe0,0xf8,0x8b,0x2a,0xed,0xe0,0x89,0x4f,0xa8,0xa5,0x2f,0xfd,0x79,0x6c,0xd6,0x31,0xd5,0x5d,0xb4,0x76,0x8e,0xf,0xd8,0x7c,0xd3,0xee,0x59,0x21,0x48,0xb6,0x9f,0xb8,0x81,0xe4,0x51,0x84,0xcc,0x3d,0x36,0x7e,0x4f,0x23,0x9,0x77,0x6b,0xd9,0x9f,0xcf,0xf7,0xa0,0x4e,0x81,0xad,0xb6,0x43,0xad,0x9d,0xb9,0x3e,0x38,0x8b,0x76,0xf7,0x56,0xd7,0xf4,0x7a,0x86,0x3b,0x83,0xd4,0x91,0x42,0xaf,0xea,0x5c,0xa4,0x7d,0x4f,0x3e,0xbf,0xdc,0x89,0x3d,0xc6,0xf8,0xd1,0x49,0x2e,0x47,0xd,0x16,0xde,0x2b,0x22,0x42,0x9,0x94,0xcd,0xeb,0xe6,0x66,0x81,0x53,0xb5,0xb,0x88,0x8d,0xef,0xb4,0x8,0xf0,0x2a,0x79,0xf6,0xfb,0xec,0xfc,0x38,0x0,0x33,0xcf,0xdc,0x6c,0x14,0x74,0xe3,0x3e,0x4c,0xd0,0xea,0xd0,0xb9,0x85,0xaa,0x38,0x91,0xe3,0x6b,0xef,0x8d,0x45,0x6f,0x6b,0x57,0x38,0x11,0x73,0xc3,0xd1,0xd2,0xce,0x67,0x25,0xd4,0x16,0x3b,0x9d,0xf,0xb8,0xf7,0xdf,0xf4,0xb6,0x3f,0x2a,0x4b,0xab,0x75,0x1b,0x9f,0x4e,0xd5,0xb9,0xf6,0xc7,0x1f,0xfb,0x34,0x93,0x3e,0x95,0x8c,0x2b,0xf9,0x7d,0xab,0x55,0x37,0x61,0xbe,0xb,0x11,0xa7,0x6b,0x47,0x26,0x1b,0x2e,0x27,0x9a,0xd6,0x5e,0xc9,0x48,0xfb,0x62,0xc8,0x4c,0xce,0xc6,0xbb,0xcd,0xe2,0xa3,0xad,0x6,0x81,0xf7,0xb4,0xea,0xc4,0xf3,0x8b,0x2,0xb6,0xe2,0x8d,0x23,0x3a,0x79,0xd1,0xd9,0x1d,0x1d,0x35,0x99,0x1b,0x35,0x3b,0x5e,0xd6,0xbb,0x4b,0x11,0x8,0xdc,0xfb,0x17,0x8,0xaa,0xf0,0x87,0xe7,0x92,0xc9,0xa4,0x13,0xb3,0x13,0xe4,0x90,0x1e,0xf3,0xb7,0x9d,0x1d,0xd9,0xdc,0xdd,0x43,0xef,0xf3,0x98,0xf7,0x8c,0xad,0x36,0x35,0xa7,0x34,0x59,0x11,0xd8,0xb6,0x4f,0xe0,0x3d,0x1a,0x52,0xcb,0x60,0xb4,0x51,0x7b,0xfb,0x30,0x33,0xde,0x4c,0x3f,0x2d,0x3,0x8c,0xb7,0xba,0x5e,0x8e,0x5b,0x97,0x12,0x59,0x58,0xb5,0xdf,0x33,0x88,0xc4,0x42,0x9c,0x9f,0x93,0xcb,0x43,0x68,0x71,0x1,0x2d,0xdb,0xe4,0x36,0x5e,0x6b,0x2f,0x62,0xd3,0x45,0x33,0x87,0x6b,0x1f,0x4d,0x78,0x6e,0x70,0xcf,0x6b,0xaa,0xdf,0xe1,0xdc,0xaf,0x57,0xcf,0x79,0xd8,0xcf,0x76,0xa1,0xd3,0xd5,0x42,0x7a,0x62,0xe4,0x75,0xba,0x21,0xf3,0xbf,0x39,0x96,0xa8,0x43,0xdc,0x2b,0x1,0x13,0xca,0xf6,0xdb,0xce,0xdd,0x54,0x89,0xf3,0xb9,0x98,0x9f,0x28,0x0,0x20,0x9b,0xdd,0x49,0x7f,0xe2,0x9e,0x1,0xf7,0x68,0x47,0xd0,0xf3,0x69,0x4b,0xe1,0xd4,0xbf,0x65,0xc0,0x94,0x7c,0x87,0xb1,0x70,0x65,0xde,0x8b,0xc1,0xe6,0x86,0x92,0xb6,0x5f,0x2b,0x37,0x1b,0xcf,0x5d,0x23,0x68,0xb6,0xf6,0xfc,0x58,0x78,0x6,0x1a,0x37,0x55,0x33,0x67,0x3c,0x77,0xf5,0xfc,0xb9,0x80,0xd7,0x37,0xa8,0xab,0xd5,0x77,0x4d,0xe5,0x12,0x52,0x6d,0xd7,0x8,0x7a,0xd0,0xd1,0x35,0x71,0xa1,0x49,0x9,0xbd,0x7f,0x9d,0x87,0x64,0x8c,0x95,0xcc,0x8f,0xd3,0x42,0x2a,0xe7,0x1d,0x42,0x55,0x69,0x75,0xd,0x8e,0xd6,0x27,0x25,0xc,0xdb,0x3,0xc1,0x63,0xed,0xa,0x20,0xdb,0x9f,0xd1,0x3b,0xcd,0x23,0x52,0x78,0xb2,0xe4,0x30,0x3a,0xc5,0x5,0xd2,0x3a,0x5f,0xf0,0xe8,0x42,0x7b,0x1d,0xd0,0x74,0x7d,0x26,0x71,0x18,0xf6,0x11,0x99,0x3a,0x8e,0xe,0x61,0xb1,0x68,0xc5,0xf7,0xa,0x2a,0x6f,0x32,0x63,0x8e,0x50,0x85,0xc6,0x43,0x17,0xbe,0xe1,0xed,0x61,0xee,0x3d,0x8,0xc6,0xe6,0xa9,0xa1,0x44,0xd,0xac,0xa4,0x8f,0xe6,0xa0,0xd4,0x5d,0xa7,0x8c,0xdf,0x35,0xe,0x74,0x81,0xcf,0xaa,0x2b,0xbe,0xc3,0x6c,0x24,0xde,0x63,0xd,0x18,0x54,0x14,0xb1,0x24,0x55,0x74,0xac,0x6d,0x5b,0xb3,0xf3,0x28,0x5e,0x59,0xbb,0x70,0x2d,0x92,0xd5,0xfe,0x8c,0x69,0x3a,0xaa,0xdf,0xd8,0xb3,0x79,0xd0,0xfb,0x3c,0x44,0x54,0x68,0xd5,0x48,0x1e,0x5b,0x91,0x14,0x8a,0x9c,0x3a,0x11,0x4e,0xe5,0x12,0x9b,0x3f,0xf0,0x13,0x31,0x78,0x16,0x3,0xe6,0x95,0x94,0xb7,0x34,0x8a,0xe,0x6f,0xa7,0x4,0x49,0xa8,0x7b,0xc7,0xd3,0x24,0x9e,0xb0,0x88,0x2e,0x23,0xe,0xa8,0xc0,0xcc,0xb0,0xda,0x3a,0xb3,0xbe,0xea,0xe8,0xa,0x8f,0x2f,0xa2,0xba,0x8f,0x75,0xe1,0x94,0xea,0x65,0x37,0x26,0xde,0xb4,0x65,0x7,0xcc,0x79,0xed,0xce,0x58,0x2,0xe1,0xc4,0x93,0xf7,0xb0,0xf0,0xad,0x1d,0x45,0x75,0x4e,0xd4,0xe3,0xac,0x74,0xa9,0xb6,0x71,0x8d,0xb7,0x8c,0xd2,0xd3,0xbc,0x22,0x3a,0x6a,0xbd,0xc2,0x7f,0x8c,0x21,0x79,0x95,0xb6,0x44,0xbd,0x46,0xc0,0xdb,0x67,0xda,0x5f,0x6f,0x75,0xb,0x94,0xae,0x7d,0xc7,0xc1,0xd5,0x63,0xc7,0x19,0x20,0xb,0x3d,0x2,0xad,0x96,0xaf,0xb,0x20,0x2b,0x80,0xc5,0xb3,0xfa,0x1f,0x6d,0xa4,0x76,0x3a,0xcf,0x22,0xc9,0x7b,0xbb,0x10,0x42,0x15,0x4,0x20,0x8b,0x55,0x25,0x69,0x5c,0xea,0x69,0xb5,0x65,0xa4,0x47,0xb2,0x1c,0x29,0xe8,0x26,0x40,0x48,0x55,0xe0,0x32,0xf,0x7a,0xc7,0x71,0xfb,0x3f,0xe6,0x4f,0xa2,0x31,0xc2,0x9c,0x7,0xb0,0xd3,0x5c,0x1f,0x5c,0xe1,0x5a,0x65,0xd0,0xb1,0x48,0xcc,0xe8,0x70,0xf6,0xea,0x84,0x70,0xc5,0xeb,0x3e,0xda,0x75,0xd9,0xbe,0x9c,0x23,0xd,0xab,0xc5,0x60,0xea,0xf5,0xac,0xa2,0x5d,0x43,0x7,0xd5,0xb8,0x11,0x3f,0xa,0xda,0xf9,0xa2,0x63,0xc5,0xa8,0xf6,0x84,0x36,0x76,0x99,0x78,0x7b,0x46,0x22,0x9b,0xf1,0x8d,0x50,0xb6,0xea,0x94,0xde,0xe7,0xe1,0xed,0x89,0x9d,0x10,0x8,0xdc,0x64,0x8c,0xe0,0x39,0x38,0x8f,0x87,0x9d,0x73,0x24,0x1a,0x5c,0x55,0xcb,0x52,0xe7,0x26,0x9c,0xd5,0x75,0x26,0x85,0xa3,0x3f,0x51,0xf3,0x5b,0xa7,0x11,0x4f,0x46,0x2,0xda,0x78,0x46,0x23,0x28,0x8d,0x20,0xec,0x75,0x28,0x19,0xda,0xe6,0x4d,0xcc,0x88,0x4b,0x24,0xc6,0x35,0x4b,0x8b,0xaf,0xd0,0xfe,0xb8,0x5d,0x36,0x2d,0x4e,0xce,0x87,0x62,0xee,0xea,0x56,0xd5,0x8c,0x7a,0xbd,0xdb,0x16,0x2c,0x3a,0x1e,0x23,0xe,0x4a,0x1,0xe0,0xeb,0xac,0xb8,0xc5,0x32,0x28,0x64,0x0,0xa1,0xa6,0xa5,0x33,0x26,0xc5,0xfb,0xbb,0xf7,0xed,0xdc,0x19,0xc7,0xa3,0x40,0x60,0x26,0xac,0x73,0xa6,0xda,0xf2,0x98,0x38,0x85,0x5b,0xf7,0xc0,0x73,0x1f,0xfb,0x2c,0xe7,0x5,0x3d,0x11,0x15,0x3a,0x98,0xa4,0xce,0xda,0x79,0x48,0x3a,0xe0,0x23,0xe9,0xd5,0xb8,0x7a,0xa5,0x47,0x69,0x94,0xb,0x49,0xcd,0xcb,0xb1,0x8,0xb6,0x85,0x59,0xab,0xfe,0x97,0xb8,0x6f,0xe7,0x25,0x8a,0xb9,0x3b,0x47,0xc2,0x14,0x7,0x9c,0x49,0x5f,0x9b,0x79,0xd6,0x4b,0x75,0xb8,0x32,0x51,0xf5,0xec,0x96,0x9,0x8,0xe8,0xe2,0x3c,0xb6,0x42,0x1d,0xa6,0xd1,0xbd,0xa0,0xe,0x8b,0xca,0xec,0x2c,0xa,0x83,0x81,0x2c,0xb7,0xa0,0x99,0x65,0x4c,0x35,0xb5,0x39,0x32,0x8d,0xa9,0xa3,0xe4,0x3a,0x95,0xe8,0x8a,0x1a,0x8d,0xb4,0xe6,0x81,0x1d,0xdf,0x89,0x4c,0xfe,0xfb,0x10,0xc5,0xb5,0x2,0xfc,0x18,0xfd,0x18,0x15,0x5f,0x9b,0x96,0x5a,0xef,0x23,0x16,0x16,0xa7,0x25,0x37,0xc7,0x2d,0x7e,0x6c,0x8b,0xe6,0xd8,0xb7,0x9b,0xd8,0x11,0x63,0xd4,0xc0,0xd2,0x88,0x63,0x8c,0x37,0xa3,0xa,0xd6,0xea,0xca,0x54,0xf7,0xd0,0xa9,0x13,0x69,0xc8,0xe0,0xf,0x60,0xd1,0x5,0x2e,0xe,0x5b,0x2d,0x63,0x77,0x8d,0x1d,0xa2,0x76,0xa4,0xd9,0x7a,0xee,0xa3,0xf8,0x98,0x48,0xf0,0x7b,0x22,0xd4,0xb3,0x43,0x81,0x89,0x4f,0x98,0xc8,0x7c,0xb2,0x72,0xbc,0x87,0x85,0xbf,0x7e,0x9e,0xd,0xe,0xe5,0x5c,0x92,0xe6,0x9f,0xd4,0x85,0x54,0xee,0xf0,0x2a,0x84,0x8f,0x64,0x1,0xa7,0x69,0x73,0x8f,0x7b,0xad,0xc9,0x18,0x55,0xb4,0x8e,0x19,0x25,0xfa,0xd9,0xad,0xb7,0x2a,0x24,0x1d,0xd,0xa7,0xa1,0xb4,0xb4,0xe9,0x48,0x97,0x36,0x27,0xed,0xa0,0x16,0xd9,0xb4,0x23,0xe6,0xa1,0x2a,0xe,0x99,0xad,0xab,0x1,0xf4,0x53,0xfa,0x7d,0xef,0x8b,0x4c,0xab,0x2,0x72,0xaf,0xd9,0x87,0xc6,0x6c,0x66,0x20,0x62,0xe6,0xbc,0x9f,0x33,0x19,0x69,0x63,0xc3,0x36,0xf4,0xa3,0xd9,0x75,0xb4,0xe4,0xdc,0xe5,0xb8,0x5,0x26,0x0,0x67,0x10,0xe2,0xc7,0x88,0x16,0xee,0x16,0xb4,0x56,0x94,0x54,0x3b,0x18,0x1,0xb,0xb2,0xea,0x9a,0x29,0x55,0x59,0xee,0x9b,0x6a,0x7e,0x8e,0x42,0x72,0xe4,0xcc,0x9b,0x22,0xe6,0xf4,0x13,0xd4,0x22,0x4b,0x65,0x93,0x7e,0x84,0xc8,0x42,0x6,0xe6,0x11,0x3c,0x38,0x99,0x89,0xc7,0xa4,0x34,0x6b,0xa7,0xdb,0x10,0xef,0x1b,0xf7,0xa8,0x52,0xac,0x83,0xa1,0xf6,0x74,0xcd,0x6a,0xa3,0x83,0xae,0xf3,0x3f,0xa2,0x85,0x99,0xc9,0x52,0xdc,0x9f,0x4a,0x3,0x5e,0x9,0x68,0xc3,0xe4,0x4c,0xb5,0xbe,0xa4,0xb0,0x88,0x4e,0xcb,0x6b,0x82,0x7d,0x38,0xb,0xcf,0x59,0xee,0xf8,0x1c,0xdb,0x2,0xd8,0xe2,0x79,0xcf,0x4,0xc0,0x6c,0xce,0xc6,0xa8,0x1f,0xaf,0xf4,0xb,0x46,0x7,0xa7,0xd3,0xcc,0x3c,0xdf,0xb5,0xf9,0xcc,0x49,0xa4,0xe1,0x43,0x13,0x7b,0x40,0x2d,0x6d,0x75,0x6e,0x31,0x48,0xef,0x24,0xc6,0x28,0x49,0xf4,0x24,0xd0,0x4e,0x6c,0x53,0xe1,0x4,0x26,0xc1,0xfb,0x59,0x55,0xdf,0x5d,0x49,0xab,0xfb,0xb6,0x4a,0xaf,0xa4,0x96,0xf,0x87,0x6c,0xb9,0x4b,0x1,0x9c,0x4c,0xd0,0x5a,0xee,0xae,0x35,0x17,0x14,0x3e,0x4d,0x8d,0x6f,0x7b,0xb3,0xff,0x37,0xa3,0x4,0x51,0xc9,0xd9,0x7c,0x9c,0xf2,0x8c,0xc1,0x8d,0x76,0x77,0x2,0x8d,0xe6,0x88,0x27,0x3a,0x2c,0x3c,0x57,0x2f,0x4c,0x11,0x3d,0x87,0xf9,0x1d,0x38,0x71,0x1e,0x45,0xea,0xa1,0x74,0x2a,0x9,0x1,0x64,0x21,0x38,0x6,0xbd,0x35,0x50,0xec,0xa6,0x1b,0x61,0x27,0xce,0xc6,0x2c,0xa8,0x18,0x88,0x25,0x9,0x9e,0xeb,0xb1,0x43,0x72,0xa6,0x1c,0x87,0xf6,0xc8,0xf3,0xd,0xee,0x96,0x33,0x59,0x5b,0x57,0xa8,0xcb,0x2c,0x36,0x0,0x55,0xad,0xe,0x96,0x79,0x4b,0x4c,0x2b,0x1e,0xca,0xa6,0x4b,0x59,0x1b,0xdb,0x67,0x62,0x18,0x73,0x77,0x69,0xa7,0x62,0x9b,0x15,0xcd,0xcd,0x57,0xc5,0x47,0xeb,0x12,0xf9,0x16,0xa1,0x5a,0xbf,0xcf,0x5f,0x9b,0x53,0x1,0x6,0xd7,0x11,0x10,0x59,0x66,0x42,0x90,0x1f,0xad,0x1d,0x5b,0x34,0xa,0xa4,0xfa,0xfe,0xc0,0x15,0x49,0x1c,0xca,0xab,0xc1,0x6c,0x85,0xbb,0x43,0x75,0xe2,0x82,0x44,0x66,0xc2,0x94,0xf0,0xb8,0x7a,0xbf,0x76,0x62,0xcc,0x96,0x8f,0x48,0xa8,0xe9,0xe3,0x47,0xd,0x8c,0x81,0xfb,0xda,0x54,0xf8,0xed,0xf1,0x31,0xd8,0xd7,0x73,0xa2,0x5a,0xef,0x46,0x7b,0xf7,0xc2,0x3b,0xc0,0xae,0xc6,0xf,0x6,0x9b,0x1d,0xb4,0x1c,0x4d,0xe0,0xf8,0x71,0xf3,0x18,0x35,0x71,0x23,0x34,0x23,0xc9,0xee,0xe7,0xdc,0xff,0xd1,0x34,0x17,0x75,0xba,0x47,0x69,0xcb,0x6,0x52,0xd,0x13,0x2e,0xe,0x24,0x50,0xfd,0x51,0x41,0xb,0x5,0x7e,0xdf,0x2,0x89,0x45,0xa9,0x3,0x67,0x1b,0x24,0xe9,0x16,0xd9,0x24,0x34,0xf3,0x96,0x4c,0x16,0xea,0xa,0xbc,0x1,0x4f,0x3,0xed,0x5f,0x20,0x8f,0x5e,0xfd,0x5,0xaa,0x5f,0x9d,0xd6,0xa8,0x6c,0x1a,0x76,0xb3,0xb2,0xab,0xd6,0x4f,0x21,0xa2,0x55,0x8e,0x57,0x86,0xc5,0x2,0x75,0x69,0x63,0xfb,0x4,0xa4,0x28,0x55,0xc0,0xdb,0xd6,0x61,0x1c,0xae,0x99,0x71,0xcd,0xe7,0xb3,0x41,0x23,0x47,0xf2,0x32,0xb2,0x7b,0x6d,0xad,0x45,0xcc,0x76,0x7b,0x26,0x3a,0xee,0xb5,0xb0,0xd4,0xe9,0x10,0x17,0x3a,0x14,0x18,0x79,0x29,0xd5,0xce,0x96,0xfa,0x79,0xb6,0x88,0xbc,0xe7,0x52,0xce,0x7,0x73,0xe5,0x90,0x85,0xba,0xa6,0xd6,0x1d,0x47,0x5a,0x13,0x9e,0x1b,0x7a,0xb5,0xd7,0x3,0x0,0xc3,0xe4,0x8c,0xa3,0xb9,0x58,0x8c,0x91,0xb8,0x2b,0xe1,0x5b,0x30,0x32,0xb5,0xa3,0x7b,0xd6,0x9e,0xab,0x23,0x8b,0x5e,0xc3,0x36,0x59,0x1d,0x5d,0xb,0xcf,0x11,0x4b,0x55,0x64,0xbd,0xd5,0x26,0x5e,0x88,0x6c,0x57,0x9b,0x31,0x5b,0x28,0x83,0x7,0x5d,0xa7,0xa3,0x91,0x2a,0x84,0xde,0xdd,0x18,0xdc,0x65,0x12,0x23,0x27,0x71,0x17,0xde,0x41,0x40,0x7a,0xa2,0xdd,0xee,0x1d,0x35,0x79,0x84,0xc6,0x96,0x27,0x9d,0xea,0x1e,0x75,0x6a,0xf5,0x29,0x40,0xda,0x4f,0xfe,0x9b,0x32,0x67,0xcb,0xb3,0x22,0xca,0x5e,0xb3,0x74,0x3c,0xc7,0x89,0x6e,0x82,0xb7,0x56,0x6d,0x5,0xa5,0x36,0x93,0xb1,0xd,0xd3,0x67,0x4b,0x1a,0x80,0x9f,0xc6,0x44,0xf8,0xe6,0xf9,0x11,0xbe,0xa8,0xcd,0x94,0x4f,0x8f,0xa5,0x8f,0x30,0x3,0x9b,0x30,0xfe,0x64,0xa8,0x8c,0x7a,0x3f,0x72,0x2,0xdb,0xa6,0xcc,0xb2,0x18,0xc9,0x40,0x24,0x37,0x59,0xd0,0xcc,0xee,0xd9,0xe8,0x5e,0xce,0xb5,0x67,0x96,0xc0,0x54,0x88,0x64,0x45,0x3f,0x0,0xd3,0xbb,0x68,0xf2,0x8f,0x6e,0x0,0x1d,0xa2,0xe6,0x7e,0x94,0xe0,0x65,0x42,0x6d,0x55,0x21,0x63,0x7e,0xfe,0x96,0xa9,0x0,0x77,0x62,0xa,0x54,0xc7,0x55,0xb2,0x0,0x29,0xbc,0x5,0xb8,0xb9,0xa6,0xda,0x12,0x3,0xdb,0x10,0xa5,0xb0,0x9d,0xe9,0xb7,0x96,0x9,0xb5,0xa6,0xfd,0x28,0x53,0x6c,0x49,0xad,0xa9,0x37,0xe6,0x4c,0x2,0x2f,0xe3,0xbb,0x97,0x51,0xe8,0xc8,0x52,0x1d,0x64,0xb7,0x89,0xf6,0x7,0x6,0x9e,0x4c,0xc,0xbe,0x7a,0xb1,0x84,0x8,0x98,0x9d,0x31,0xad,0x8d,0xab,0x51,0x60,0xf2,0xd3,0x9d,0xf1,0xa3,0x15,0xe4,0xde,0xb3,0x71,0xc6,0xbc,0xf9,0x93,0x61,0x46,0xbc,0xc3,0xfd,0xb3,0x29,0x1c,0x95,0xff,0x89,0x22,0x66,0x0,0xd0,0x15,0x32,0xb,0x10,0x91,0x2d,0x8b,0x83,0x1,0x93,0xd4,0x89,0x13,0x3f,0x4e,0xcc,0x7d,0x13,0x10,0x36,0x78,0x57,0x1f,0x7,0xff,0x4b,0xaa,0xd7,0xac,0x9b,0x6d,0x24,0xd8,0x50,0x75,0xb6,0xc0,0x3,0x69,0xdd,0x21,0x73,0x87,0x2e,0x92,0xa5,0x89,0xa8,0x4c,0xa,0x87,0x6c,0x20,0xf2,0xbe,0xa1,0x8b,0x71,0x76,0x31,0x8f,0x27,0x41,0x47,0x32,0x2a,0xa,0x38,0x83,0x62,0x17,0x8,0xe8,0x3a,0xe8,0xd0,0x6f,0x28,0xc6,0x79,0xe0,0xfa,0x89,0xaa,0x81,0x37,0x8c,0x4b,0x74,0xa5,0xbd,0xbf,0x97,0x59,0x4d,0x82,0xe6,0x45,0xf9,0x6b,0x31,0xfc,0x67,0xc0,0xe2,0x86,0x92,0xe5,0x32,0xc1,0x90,0xc6,0xc0,0x3a,0x9a,0x5,0x9b,0xf5,0xc5,0x26,0xd8,0xcc,0xd1,0x5,0x3e,0x5b,0x39,0x3d,0x20,0x33,0xba,0xa8,0x68,0x54,0xe3,0x3e,0x38,0xf1,0x51,0xaa,0xe9,0x39,0xd8,0xea,0x2c,0x13,0x34,0x47,0x1e,0xd5,0x42,0x32,0xc8,0xfc,0xf3,0xb1,0x28,0xab,0x8d,0x24,0xd,0xa0,0x55,0x80,0x1f,0xb3,0xd9,0xca,0x8c,0x76,0x24,0xf,0x85,0x95,0x3b,0xe0,0xa3,0xa5,0xa9,0x3a,0x2,0x61,0x11,0x39,0xbc,0x75,0x0,0x64,0x26,0x36,0x95,0x8,0x19,0x2d,0xa5,0x6a,0x88,0x73,0xb0,0x1b,0xd9,0xaf,0x12,0x18,0xd2,0x33,0x49,0x49,0x2a,0x4d,0x82,0x6c,0x3a,0x62,0x31,0xb0,0x27,0x49,0xa5,0x92,0xe,0xe,0xdc,0xa0,0xa7,0x7a,0x25,0x4a,0x49,0x0,0x31,0x30,0xd1,0x5f,0xe8,0x93,0xc1,0x2e,0xa4,0xd3,0x91,0x8e,0x3b,0xde,0x4f,0x3e,0x83,0x7d,0xca,0x63,0x7d,0xcb,0xb0,0x60,0x76,0xcd,0x31,0x56,0xc3,0x4f,0xdf,0x56,0xbd,0xe3,0x27,0x89,0x33,0xd2,0x31,0x96,0xf3,0xb3,0xfd,0x49,0x71,0x46,0x1d,0x9a,0x88,0xde,0xf1,0x72,0x2,0x55,0x9e,0x80,0xf9,0x64,0xc,0x78,0x32,0x60,0xd4,0x93,0x24,0x3,0xbe,0x41,0x84,0x7b,0xeb,0x1b,0x48,0xff,0x33,0xe9,0x23,0x54,0xc8,0x98,0x37,0xc7,0xde,0x55,0x91,0x2,0x6c,0x1,0x38,0x1c,0x6,0xf5,0x6c,0xb5,0x75,0xce,0xfe,0x2d,0xd7,0x3a,0xb7,0xb4,0x63,0x3f,0x41,0x14,0x62,0xa3,0x8d,0x1d,0x40,0xcd,0xdd,0x6e,0x99,0x98,0x33,0xa5,0x99,0xd0,0x48,0x1c,0x18,0x7a,0xe0,0x4,0x7e,0x14,0x1e,0x8f,0xe8,0xfc,0x17,0x93,0x16,0x67,0x9d,0x1,0x96,0x9b,0x8a,0x54,0x84,0x67,0xdb,0x28,0x4c,0x8d,0xe3,0x88,0x1b,0xe6,0x3c,0x4d,0xcd,0xb1,0x42,0x67,0x80,0x39,0x65,0xa0,0x5b,0xac,0x9c,0xb5,0xbd,0xe1,0x13,0xd4,0x18,0x6d,0xf8,0x11,0x57,0x8d,0x30,0x61,0x3e,0x8b,0xd1,0x65,0x59,0x32,0x25,0x33,0x1b,0xdd,0x93,0xd5,0xfd,0x44,0x23,0x93,0x51,0x1f,0x9a,0xe3,0xb8,0xe3,0x7d,0x13,0x23,0x55,0x83,0x6c,0x52,0xf1,0xd6,0x64,0xd9,0x0,0x23,0xdd,0x71,0x62,0xc7,0x1e,0x9f,0xb1,0x54,0x69,0x24,0x85,0x51,0xa9,0x63,0x29,0xd,0xe0,0xee,0xbd,0xba,0x46,0x31,0x92,0x64,0xb,0x78,0x76,0x3f,0x5e,0xd0,0x52,0xe3,0x2b,0x9,0x3a,0x64,0xab,0x25,0xb6,0x20,0xad,0xfa,0x8e,0x5d,0xb4,0xec,0x21,0x1b,0xd4,0x63,0x82,0xc,0xe6,0x81,0xb5,0x20,0x91,0xd5,0xa2,0x3a,0xe,0x48,0x27,0xda,0x47,0xd2,0xb0,0xa2,0x3a,0xa2,0x59,0x94,0x4b,0x82,0x51,0xb8,0x5d,0xa5,0x32,0xdb,0xf9,0x16,0x88,0xc7,0x3a,0x54,0x63,0x4e,0x14,0x68,0x4e,0x37,0xcb,0xb6,0x50,0x2,0xf9,0xa2,0xc2,0xf5,0x6a,0xcd,0xcf,0x54,0x7a,0x1e,0x4c,0xd4,0xe2,0xdf,0x72,0x58,0x21,0xc7,0x63,0x89,0x98,0x7,0xc5,0x21,0x1d,0xd9,0xb1,0xf,0x1a,0xde,0x51,0x95,0x17,0xa7,0x99,0xeb,0xc8,0x4c,0xdb,0xf3,0xd5,0xc6,0xd5,0x4f,0x38,0xa6,0xf0,0x23,0x53,0x6c,0xe0,0x7d,0xd8,0xe6,0x59,0xb0,0xc2,0x3f,0x9b,0x9c,0x2,0x61,0x6e,0xc0,0x2e,0x3a,0xf,0x2b,0x95,0xac,0xf2,0x79,0x9e,0x5d,0xfc,0x56,0xe9,0x41,0x21,0xda,0xca,0x31,0x33,0x50,0xad,0xb9,0xa7,0x44,0xab,0x9f,0x83,0x89,0x52,0x7b,0x79,0x1e,0x98,0xaa,0x54,0x9d,0x69,0x9f,0xdb,0x6,0x68,0x2e,0xb2,0x6e,0xdd,0xea,0x12,0xf8,0xec,0x8a,0xd0,0xdc,0x92,0xe9,0x2b,0xf3,0x79,0x27,0x8f,0xd8,0x9,0x94,0x33,0x53,0x3b,0x9b,0x41,0x34,0x3b,0x1e,0xb9,0x4e,0x88,0x92,0x26,0xde,0x3b,0x81,0xb6,0x3d,0x9f,0x5,0x58,0x3a,0x9e,0x0,0x9,0x7d,0x71,0xa2,0xa8,0x6e,0xa2,0xc5,0xfc,0xe8,0xc0,0xa1,0xb9,0x4e,0xd0,0x1a,0xd3,0x4,0xd1,0xcf,0x60,0xc7,0x31,0x2b,0xe1,0x38,0x12,0x6d,0x67,0x5,0x1b,0x94,0x15,0x36,0x95,0x81,0x6c,0x2a,0x74,0x57,0x42,0x1d,0x4b,0xf,0xcc,0xe8,0xc1,0xa6,0x25,0xff,0xc6,0xc1,0xcf,0x9,0x17,0x80,0xdc,0xa7,0xed,0x20,0x69,0xd5,0xb9,0x1f,0x45,0x53,0x66,0x67,0x6,0x5d,0x53,0xb8,0xa5,0xad,0x94,0xec,0x6,0xf0,0x8d,0x9e,0x4f,0x63,0xb,0x72,0xb2,0x1e,0x55,0xa3,0x16,0xc5,0x40,0xb8,0x6f,0xeb,0xa4,0x2f,0x11,0x1a,0x10,0x52,0x9b,0x50,0xda,0x9c,0x74,0x43,0x8d,0xe5,0xa0,0xab,0x85,0x4f,0xb2,0xa8,0xee,0x67,0x2c,0x7a,0xda,0xd3,0x1f,0xc6,0x6e,0x37,0x46,0x77,0x66,0xe,0x60,0x85,0x9b,0x60,0x35,0x9b,0x7b,0x64,0x32,0x26,0xb2,0x2b,0x35,0xe,0x3,0x5d,0x16,0x8,0x14,0x4f,0xdc,0xbb,0x87,0xcb,0xcb,0xfb,0xd8,0xc9,0x2,0x33,0x6f,0x52,0xb,0xac,0x91,0x51,0x95,0x71,0xd1,0xf5,0x92,0x9,0x10,0x0,0x8c,0xa5,0x12,0xdf,0x64,0xf,0xd9,0x2c,0xc2,0x8,0xf3,0x23,0x39,0x9a,0xa8,0x4e,0x5,0xb4,0xb7,0x79,0xc4,0xa5,0x27,0x4c,0x4,0x94,0xe1,0x7d,0x98,0xc,0x99,0xed,0x1a,0x9e,0xa1,0x24,0xa6,0x65,0x96,0x94,0xca,0x8a,0x5f,0xda,0xf1,0xaf,0xd4,0x21,0x1d,0x5f,0xb5,0xae,0x36,0x46,0xa2,0x1a,0x94,0xe6,0x1d,0xe0,0x2b,0xdc,0xac,0xc0,0xe3,0x9c,0xe0,0xaa,0x97,0x6,0x8,0xd0,0x5,0x37,0xbc,0xcd,0x91,0x72,0xc4,0x3,0xa2,0x39,0xa,0xc7,0xe7,0x8,0xe,0x16,0xe3,0xcc,0xe8,0x2,0xd7,0x39,0xa6,0xce,0xdd,0xce,0x1,0xec,0xf4,0xc0,0x1f,0x5,0xb6,0x68,0x62,0xe6,0xf2,0xfb,0x95,0xf0,0x66,0x9c,0x7a,0x7a,0x81,0xb8,0x5d,0x1c,0xea,0xe,0x33,0x39,0x99,0x49,0x8d,0xe4,0xda,0x6a,0xd4,0xdd,0x74,0x54,0x36,0x8c,0x9a,0xd,0xc0,0x1e,0x2,0xec,0xdc,0x27,0xa,0x55,0x3b,0xd,0xc6,0x27,0x47,0x57,0x88,0x96,0x17,0x40,0x21,0xf7,0x98,0x57,0x8,0x81,0x14,0x64,0x2,0x7a,0xe2,0xdf,0x35,0x17,0x44,0x82,0x60,0x82,0x4f,0x1b,0x20,0x2f,0x31,0xa8,0x8f,0x3,0xcd,0xdb,0xc6,0x13,0xe2,0x4b,0xfa,0x7c,0xe1,0x42,0x55,0x72,0xb5,0x3a,0x4a,0xc0,0xc5,0xb7,0xd,0xbb,0xd,0x36,0x60,0xae,0x12,0x91,0x2,0xe2,0x81,0x84,0x86,0x16,0xa2,0x23,0x41,0x61,0x3c,0x31,0xc9,0xce,0xe5,0xd8,0xfc,0xf9,0x4c,0x92,0xd3,0x5b,0xb3,0x3d,0x51,0xe9,0x41,0x3b,0x40,0x44,0x73,0xe1,0x1a,0xf5,0xd0,0xb2,0x82,0x26,0xf0,0x56,0x0,0xc6,0xdd,0x7b,0xcb,0xdc,0x55,0xb2,0x1b,0xe1,0x73,0x1b,0x9,0xcf,0xce,0x49,0xa0,0x24,0x47,0x10,0x8c,0x6b,0x28,0x64,0x1f,0x2c,0x40,0x90,0xf1,0x6c,0x19,0xbc,0x34,0x13,0x3b,0x99,0xc3,0x21,0x5d,0xc6,0xa1,0xaf,0x93,0xdf,0xe8,0x4f,0xd2,0x41,0x56,0x9e,0x43,0xba,0xb4,0xaa,0x5a,0xb6,0x20,0xcd,0x44,0x4b,0x4b,0xd1,0xee,0x5a,0x4e,0xe7,0x8d,0xbf,0xee,0x84,0x48,0x75,0xaa,0x48,0x6d,0x3,0x8e,0x41,0x1b,0x5e,0xcc,0xa0,0xa2,0xd2,0x36,0x84,0xb6,0xb1,0x84,0x34,0xfa,0x61,0x8e,0xbc,0xa4,0x4b,0x69,0xc4,0xe7,0x68,0x5c,0xbb,0x5,0x43,0x69,0x43,0x49,0x13,0x87,0x6,0x51,0xc5,0x78,0x2d,0xea,0xa4,0x21,0x15,0x58,0xcb,0xa8,0x5f,0x22,0xb4,0xae,0x8f,0xe7,0xad,0x4e,0xf4,0x3c,0x3f,0xa6,0x9c,0xb8,0x53,0x7,0xe9,0xb8,0x17,0x1f,0x4c,0x2a,0xa3,0x56,0xac,0xcd,0x3,0x41,0x12,0x38,0x20,0x83,0x9d,0x22,0x9d,0x18,0x87,0xe2,0x16,0x10,0x83,0x5,0x74,0xe8,0x17,0x4b,0x47,0x98,0x52,0xe9,0x4c,0xb7,0x6c,0x9d,0xfa,0xd,0x8,0x99,0x3a,0x1d,0x1b,0x40,0x7d,0x8d,0xa8,0x7d,0x76,0x7e,0x8a,0x6f,0xcd,0x6f,0xb9,0xd,0xcf,0x98,0x51,0x1,0x4b,0xbc,0x45,0xe1,0x5d,0xb,0x29,0xf,0xe6,0x3d,0x13,0x7a,0x9a,0xb2,0xea,0x2,0x4b,0x49,0xd1,0x2,0x6d,0x8e,0x8c,0x74,0x11,0xac,0x7,0xc3,0xf9,0x4e,0xf1,0xd,0x5f,0xf7,0x55,0x78,0xd5,0x2b,0x3e,0x18,0x57,0x97,0x97,0xb0,0xe4,0xb1,0x83,0xaa,0x7e,0x64,0x2,0x10,0x1d,0x25,0x81,0x43,0x97,0x5,0x17,0xe7,0xe7,0x78,0xd3,0xf7,0x7c,0x3f,0xfe,0xd8,0x9f,0xfe,0x72,0x2c,0x17,0x37,0x27,0x4e,0x97,0x46,0x88,0x73,0xdf,0xf3,0xd8,0xf,0x81,0x7,0xc8,0x67,0xe7,0x90,0x45,0x36,0x60,0xc4,0x7a,0xa0,0xf9,0x51,0x8,0x3e,0xbd,0x24,0xa6,0x41,0x7d,0x3,0x2,0x24,0x0,0x5b,0xdf,0xe0,0xde,0x47,0xe,0x2e,0x1d,0xb1,0x2e,0xbd,0x53,0x63,0x89,0x65,0xf1,0x8c,0xe7,0x9a,0x79,0x1e,0xd3,0x89,0x2b,0x26,0x18,0x7c,0x74,0xc,0x9d,0x40,0x6e,0x6e,0x70,0x15,0x98,0x6b,0x82,0x21,0xc5,0xa5,0x46,0x12,0xd1,0x46,0x60,0x91,0x2c,0xe9,0x6c,0x1c,0xdf,0x30,0xd3,0xf2,0x80,0x75,0x62,0xa3,0x78,0xc8,0x2f,0x78,0x63,0x23,0xb0,0x16,0x42,0x68,0x66,0x30,0x9b,0xa,0x13,0x50,0x3a,0x34,0x3c,0x34,0x13,0x83,0x58,0x63,0x4e,0x49,0x8e,0x68,0x82,0x6d,0x92,0x3e,0xab,0xe8,0xf4,0xc7,0x23,0x4c,0x10,0x88,0x1,0xb5,0xed,0x6c,0x88,0x26,0xa8,0x94,0x26,0xb5,0x13,0xb4,0x3d,0xc7,0xf1,0x1b,0x36,0x40,0xec,0xe8,0x5d,0x54,0xb7,0xbe,0x69,0x99,0x87,0x9a,0x52,0x4,0x70,0xaf,0x5e,0x1b,0x1a,0xf1,0x26,0xb3,0x1b,0x4b,0x4,0x63,0x64,0xcb,0x16,0x3c,0x7c,0xaf,0x5,0x9b,0xf,0x50,0x29,0x7e,0x2d,0x63,0xb6,0x81,0xbc,0xe0,0x88,0xc5,0x3d,0x98,0xf,0x44,0xb4,0x17,0xb5,0x87,0x79,0xb7,0x34,0x76,0x70,0x2f,0xfe,0x31,0x67,0x4a,0x83,0x3f,0x29,0x4d,0xc5,0xca,0xe9,0xb4,0x1d,0x59,0xec,0x2,0x5f,0x47,0x86,0x16,0x0,0x1c,0x98,0xc0,0x6d,0x4d,0xa0,0x4f,0x62,0x16,0x2c,0x5e,0x68,0x54,0x30,0x81,0x6e,0xd7,0xae,0xa0,0xc4,0x60,0x9c,0xa4,0x1,0x2a,0xc4,0xaa,0xac,0x74,0x4a,0x23,0x23,0x1c,0x66,0x95,0x14,0x33,0x44,0x89,0x64,0x6c,0x22,0xe9,0xf3,0x50,0x25,0xca,0x4c,0x8e,0x13,0x36,0x11,0x57,0xac,0xe,0xd3,0xd,0x8a,0x33,0x36,0x7d,0xcb,0xa2,0x67,0x85,0xbb,0xf0,0xe1,0xed,0x9b,0x4a,0x5a,0x18,0x98,0x58,0x1b,0x65,0x4,0xb7,0xc0,0x7d,0xd8,0x4c,0x34,0xa8,0x8d,0xcf,0x8,0x55,0xd0,0x66,0x32,0x6c,0x50,0xea,0x84,0xaf,0x88,0x5d,0x6d,0x3a,0x75,0x5c,0x2a,0xa9,0xb4,0x36,0xf2,0x60,0x82,0x87,0x14,0x14,0x1d,0x80,0xba,0x52,0xf6,0x2f,0x9,0x7e,0x33,0xad,0xca,0xce,0xba,0x78,0x64,0x76,0xbd,0xdc,0x7d,0x44,0x8a,0x55,0x6a,0x7f,0x60,0x5b,0x5,0x4f,0xc4,0x3e,0xa4,0x54,0xd2,0x92,0xc6,0xca,0xa8,0xff,0x52,0x2f,0x14,0x9e,0xf7,0x63,0x3b,0xd4,0xe6,0xa,0xe4,0x78,0xa2,0xed,0x39,0x63,0xb6,0x93,0x0,0xbc,0xd0,0xc1,0xe0,0xf5,0xe1,0xc6,0xfa,0x12,0x8a,0xa3,0xbe,0x25,0x87,0x17,0xe1,0x6e,0x41,0x0,0xbb,0x84,0x5a,0xbe,0x7c,0xc,0x73,0x15,0xe3,0x7d,0x26,0x8c,0x7e,0x98,0x29,0x5,0x4e,0x97,0xd3,0xd8,0x5d,0xca,0x28,0xb,0x98,0xe9,0x27,0xa6,0xf6,0x39,0x92,0xa9,0x43,0x20,0x41,0xaf,0xdc,0x35,0xf2,0xe2,0x82,0xc7,0xef,0x55,0xe2,0xd2,0x8,0xf1,0x13,0x13,0x24,0x47,0xed,0x5b,0xf,0x5d,0x3,0x8c,0x79,0xf3,0xb2,0x8,0x56,0x7,0x1e,0xb8,0x7d,0xb,0xb7,0x6e,0xde,0xc0,0x3,0xf,0xdc,0x82,0xc3,0x61,0x6b,0xec,0x49,0xfa,0x7c,0xdf,0x8c,0x33,0x7d,0x50,0xd7,0xe,0xab,0xe1,0x5,0x2f,0x78,0xe,0x76,0xe7,0x17,0x59,0x9d,0x49,0x14,0x69,0xb,0x25,0xa8,0x3a,0x55,0xed,0x8,0x53,0xc2,0x4a,0x9f,0x4e,0xef,0xce,0xe9,0xe7,0x1a,0x69,0xb1,0xd5,0xe8,0x4b,0x52,0x7b,0x24,0x8a,0x10,0xad,0x38,0xb4,0x4a,0xeb,0xac,0x46,0x2b,0xd9,0x4d,0x8,0xb8,0x29,0xb4,0xbe,0x50,0x4,0x73,0xca,0x49,0x2b,0xc1,0x8e,0x18,0xea,0xbd,0x42,0x47,0x89,0xae,0x85,0x50,0x4e,0x31,0xe0,0x68,0xa4,0x18,0x9f,0x69,0x8e,0x55,0x3c,0x29,0x91,0xa2,0x32,0x81,0x93,0xdb,0x24,0x5e,0x8e,0x29,0x78,0x35,0x8b,0x2e,0x16,0x8e,0x54,0xf7,0x28,0x68,0x95,0x19,0x22,0x65,0xbe,0xe7,0x46,0xf5,0x21,0xcd,0x12,0xda,0x77,0x22,0x8a,0xa6,0xf1,0x61,0x95,0xda,0xea,0x16,0x17,0x31,0x11,0x98,0x3e,0xbf,0x7c,0x24,0xd2,0x9e,0x85,0x9e,0xce,0x78,0x65,0x39,0x5a,0xd5,0xec,0x8c,0xa,0xcd,0x11,0x9d,0x30,0x39,0x81,0x5b,0x6a,0x23,0x53,0xe7,0xee,0xb1,0x74,0x80,0xe6,0xdc,0x3d,0xbb,0xc8,0x5e,0xa4,0x33,0x5a,0x4f,0x0,0x18,0xaa,0x4f,0x91,0x6d,0x9,0x52,0x56,0x73,0xaf,0x4a,0xee,0x70,0xb8,0x6,0xd6,0xab,0x39,0x4b,0x91,0x29,0xc7,0x1a,0x14,0xbb,0x3e,0xff,0x13,0x74,0x40,0x99,0x87,0x18,0x90,0x9e,0x1,0xe7,0x67,0xf3,0xba,0x8c,0x78,0x94,0x32,0x5a,0x20,0xd,0x89,0x29,0x2d,0x3d,0x50,0x9c,0xa0,0x1c,0xf1,0x8,0x3,0xa9,0x98,0x31,0xb3,0xb0,0x58,0x27,0x4b,0x26,0x29,0xa9,0x30,0xe0,0xc0,0xfe,0xea,0x1e,0x16,0x1c,0xe0,0x87,0xc1,0x29,0xb5,0xa4,0xcb,0x68,0x6a,0x0,0xc,0x49,0x4e,0x9d,0xad,0x3c,0x6d,0x2a,0x58,0xa,0x81,0xcf,0xae,0x4a,0x2,0x51,0xd4,0x60,0x2e,0xd0,0xb3,0x1b,0xf3,0xcf,0xa7,0xd0,0x3,0xf5,0x44,0xdd,0x3b,0x65,0x8a,0x81,0x74,0xe2,0x7c,0x30,0x86,0x2e,0x80,0x36,0xc0,0x61,0x6b,0x49,0x33,0x2,0xb5,0x51,0x6e,0x3b,0x6f,0x5c,0x26,0x82,0x7f,0x5d,0xf7,0xb8,0xbe,0x7f,0x39,0x31,0x1b,0x85,0xac,0x4f,0xda,0x51,0x0,0xf9,0xac,0xcb,0x75,0x18,0x9e,0x64,0xb6,0x14,0x1b,0x1c,0x7d,0x6,0xa9,0x4,0xcc,0x84,0xf0,0xa1,0x71,0x24,0x3e,0x30,0xe5,0x50,0x4f,0xcc,0xb3,0x23,0x90,0xce,0x74,0x3f,0xd8,0x44,0xd6,0xc0,0xbd,0x82,0x45,0x96,0x99,0xdc,0xd5,0x18,0xe2,0xe2,0xe2,0xbc,0x74,0x25,0x24,0xe2,0x82,0xb4,0xc3,0x7a,0x7b,0x4b,0x42,0x9,0x9c,0xa3,0xb4,0x25,0xda,0xd8,0xc5,0xb6,0x3a,0xe,0x9b,0xb2,0xf7,0x49,0x0,0x6a,0xf0,0x5e,0x75,0x1e,0xb5,0xff,0x51,0xfa,0x17,0x72,0x72,0x3e,0xb0,0x9d,0xd1,0x1b,0xe9,0x46,0x1c,0x2b,0x2b,0xf8,0x26,0xb1,0x2e,0x6e,0x86,0xe7,0xfa,0xb3,0xec,0xa1,0x70,0x2e,0x73,0x82,0x66,0xda,0x10,0x44,0x5d,0x50,0xa9,0x81,0x1f,0x7d,0x8b,0x1e,0x38,0x31,0x99,0x17,0x42,0x2a,0xeb,0x46,0xfa,0xba,0x21,0xe9,0x71,0xac,0xa9,0x4d,0xb0,0x97,0x9c,0x89,0xc7,0x7b,0x97,0xfa,0x3d,0xa7,0xa9,0x79,0x63,0x8,0xd0,0x18,0xcb,0xd1,0x39,0xe4,0xa5,0x8a,0x67,0xc9,0x4a,0x3a,0xac,0x7,0x2c,0xcb,0xe,0x70,0xc7,0x4a,0x6a,0xa2,0x46,0x28,0xdf,0x48,0x5e,0x7d,0x9e,0xc0,0xe,0x83,0xac,0x7,0xec,0x74,0x7,0x3b,0xac,0x63,0x76,0x2d,0xa,0xf5,0x2,0x4a,0xaf,0x7,0xc2,0x2a,0x2d,0xc8,0xea,0x3f,0x6f,0xce,0x2,0xc3,0x52,0x7,0x53,0xac,0x3f,0xeb,0x6a,0x0,0x1d,0xa1,0xb8,0x55,0x40,0x90,0xcd,0xa4,0x97,0xb2,0x7f,0xc6,0x2f,0xe3,0x49,0xc0,0x91,0x71,0x28,0x65,0x25,0x6c,0x32,0xcf,0x5f,0xee,0x3a,0x8,0x98,0x68,0xe4,0x24,0xae,0x45,0x9a,0xb7,0xad,0x7f,0x9e,0x8a,0x7d,0x33,0x71,0x53,0x0,0xbe,0x78,0x22,0xde,0xa3,0x53,0x6a,0xab,0xb5,0x64,0xbc,0x9,0x2c,0x11,0x60,0x23,0x80,0x98,0x75,0xc6,0x25,0x21,0x6f,0xd3,0x6d,0x92,0xa6,0x6,0xea,0x5c,0x80,0x80,0xda,0xf7,0xb1,0x4f,0xc4,0x1b,0x5e,0x20,0xc6,0x28,0x45,0x23,0x4c,0x4d,0xf5,0x49,0xed,0x23,0x5e,0x2c,0x63,0xa5,0x24,0xc6,0xa,0x31,0x42,0xb1,0x4,0x40,0xfa,0x8c,0xef,0x20,0xbc,0x12,0xf8,0xc,0xf6,0x4a,0x72,0x5a,0x54,0xd9,0xb6,0x6f,0xe6,0xbb,0xda,0x6d,0xe7,0x8e,0x55,0xa1,0x13,0x97,0x58,0x8b,0x63,0x9e,0x59,0x99,0x6e,0x40,0x41,0xf3,0xa1,0xaf,0xfb,0x3d,0x6e,0x3d,0xfb,0x59,0x78,0xf8,0xc3,0x5f,0x85,0xc3,0x7a,0x80,0xda,0x32,0x94,0xe0,0x58,0x3d,0x6c,0xd,0x1a,0x5,0xb5,0xbe,0xd7,0x89,0xa9,0x5e,0x1c,0xd0,0x5,0xd7,0x3f,0xf3,0xd3,0x78,0xcf,0x5b,0x7e,0x16,0xcb,0xc5,0x79,0xd2,0x8e,0x5c,0x23,0xc9,0x88,0x40,0xcb,0xa0,0x88,0xb9,0xa8,0x36,0x72,0xdc,0xdc,0xbe,0x54,0xa3,0xb9,0x2a,0xb5,0x1d,0x43,0xa5,0x6f,0xd0,0x24,0x34,0x29,0x32,0xa3,0xd2,0xbf,0xc4,0xfb,0xbe,0xee,0x75,0x38,0x7f,0xff,0x17,0x62,0x7f,0x7f,0x5f,0x4b,0xde,0x93,0x8c,0x9b,0x94,0x13,0x11,0xc1,0xc2,0x8,0x42,0xd,0xd5,0x26,0x81,0xcd,0xc6,0xa4,0xc1,0x1,0x3b,0x40,0x44,0xb0,0xfe,0xea,0xdb,0xf1,0xeb,0x6f,0xfe,0x2e,0x38,0x96,0xb9,0x90,0x1,0xac,0xc,0x72,0x74,0x12,0xba,0x99,0x95,0xb1,0x10,0x27,0x15,0x3e,0x98,0x9,0x22,0x1d,0x0,0x82,0x63,0xda,0x48,0x62,0xbc,0x66,0xc7,0xc0,0x97,0x10,0xdf,0xa3,0xc6,0x9b,0x8f,0xe0,0x77,0x7d,0xd8,0xe3,0x45,0x2f,0x7c,0xe,0x7e,0xff,0xa7,0x7e,0x22,0xf6,0xfb,0x2b,0x40,0x16,0x24,0x33,0x2b,0x28,0x47,0x91,0x65,0xe6,0x6,0x1d,0x15,0x89,0x79,0x51,0x93,0x3c,0x3a,0x41,0x1e,0xaa,0x66,0x48,0xc,0x41,0x0,0xa0,0x2,0xd,0x3d,0x7e,0x77,0xde,0xaf,0xf9,0x7c,0x4e,0x96,0xe8,0x66,0x27,0x64,0x6f,0x7c,0x67,0xfe,0xee,0xc,0x73,0xb9,0x59,0x27,0xf,0x96,0x29,0xaa,0x99,0xd,0xba,0xe1,0xb0,0x1a,0xe,0xeb,0x8a,0x7b,0xf7,0xee,0xe3,0x87,0x7f,0xf4,0xc7,0xf1,0xc4,0x13,0x77,0xa1,0xba,0xcc,0xae,0xd5,0x14,0xe,0x4a,0x6a,0x5a,0x53,0xee,0x21,0x50,0x60,0x3d,0xd8,0x26,0x89,0xdc,0x41,0x20,0x27,0x5,0x94,0xf8,0xe7,0x7e,0xa,0x7f,0x44,0x12,0xd6,0xed,0xfb,0x3c,0xfa,0x91,0xde,0x28,0x5e,0xa2,0xfc,0xdd,0xde,0x10,0xc4,0xbe,0x11,0x1f,0xc9,0x1c,0x5a,0x88,0x31,0x13,0xa,0x98,0x31,0xd,0x23,0xaa,0x65,0x51,0xb2,0xa5,0xb7,0x66,0x45,0x8e,0x12,0xbb,0x7a,0x9,0xd2,0x85,0x4c,0x64,0xab,0x43,0x20,0x59,0xb1,0xf8,0xe6,0xe0,0xa9,0x11,0x2,0x4e,0xe8,0x97,0x73,0xd,0x12,0x41,0xde,0xb6,0xe7,0x59,0x3,0x23,0xd6,0xb8,0x48,0x9a,0xbf,0x46,0x56,0xc9,0x5a,0x6c,0x1,0x9f,0x98,0x88,0x2c,0xf2,0x34,0x12,0x5d,0x49,0xba,0xb1,0xc6,0xcb,0x5c,0x74,0x70,0xcb,0x33,0x70,0xf,0xd0,0x59,0x89,0x52,0x81,0xe,0x1e,0x9c,0x54,0x2d,0xb5,0xd8,0xb,0x33,0x4b,0xd0,0x9d,0x10,0xc8,0x6e,0xbe,0xd7,0x95,0x54,0x31,0x53,0x69,0x6f,0x4b,0xb5,0x8b,0x44,0x55,0x8,0x78,0x35,0x5b,0xcb,0xb3,0x8d,0x2f,0xa4,0xc3,0xb0,0xcd,0x3f,0xbb,0xf,0x42,0xc5,0x2,0x93,0xd2,0x4e,0xe8,0xd2,0x98,0xe8,0x0,0xe7,0x78,0x86,0x2c,0x7d,0x4d,0x72,0xb7,0xbe,0xc1,0xd4,0x38,0xb8,0xa3,0x50,0xef,0x57,0x36,0x60,0x6b,0xa6,0xbb,0x36,0xd6,0x21,0xab,0xc3,0xca,0x82,0x65,0x91,0x9,0xfc,0x43,0xf3,0x3b,0x68,0x30,0xfb,0xf4,0x8f,0x91,0x56,0x54,0x41,0x82,0xc3,0x4f,0x52,0xed,0xd1,0x3a,0x7,0xe3,0x90,0x36,0xdd,0xa1,0xf4,0x9b,0x21,0x40,0xe4,0x86,0x39,0x99,0x5b,0x5f,0x9,0x1f,0xe6,0x95,0x22,0xf8,0x1c,0x3d,0x4b,0x88,0x5d,0x39,0xbd,0x27,0xa5,0xf,0x59,0x4,0x3a,0xdf,0xab,0x6d,0xf6,0xe7,0x86,0xa4,0x55,0xc5,0xca,0x16,0x20,0x8e,0x62,0x66,0xb9,0xc7,0xc1,0xdf,0xf6,0x8b,0x77,0xcc,0x2d,0x53,0xf6,0x26,0x68,0x44,0x82,0x3b,0xea,0x1b,0x54,0x80,0x2b,0xec,0xfa,0xa,0xf,0xbd,0xfc,0x43,0xf0,0xe2,0xbf,0xfc,0x35,0xb8,0xbc,0xbc,0x7,0xf8,0x92,0xd8,0x2e,0xf8,0x3a,0x35,0xb5,0x63,0x2e,0x4f,0xf4,0x8b,0x1,0x20,0x80,0xba,0xe3,0xfc,0xf6,0x19,0x7e,0xed,0x6f,0xff,0x43,0x3c,0xfe,0xd5,0x7f,0x1e,0xc0,0x79,0xb6,0xa2,0xc5,0x99,0x1a,0x67,0x4d,0xb7,0x7d,0x33,0xdd,0x27,0xb4,0x48,0x5,0xa2,0x36,0x7f,0xc,0x90,0x7d,0x6e,0xa6,0x59,0x95,0xf8,0x48,0x3e,0xdc,0x15,0x7a,0x38,0xe0,0xe6,0x33,0x9f,0x85,0x17,0x7f,0xe5,0x5f,0xc2,0xfe,0xce,0x4d,0x1c,0xf6,0x23,0xa3,0x5f,0x61,0x10,0xb,0x19,0xee,0xc1,0x31,0xd5,0xb9,0x48,0x35,0xc6,0x1b,0x29,0x60,0x21,0xa9,0x32,0x7,0x9a,0xa9,0xef,0xe1,0x90,0x15,0x78,0xfc,0xe7,0x7e,0x1a,0x97,0x3f,0xf5,0x33,0xb0,0xf3,0xb3,0x59,0x6d,0x3a,0x81,0x71,0x6a,0xe,0xef,0xc6,0xba,0xf0,0xd1,0xbe,0xd1,0xa9,0xed,0x3f,0xe,0x44,0x61,0x59,0xd1,0x79,0x20,0xa5,0xcc,0x70,0xca,0x4,0x3b,0x67,0x79,0xa3,0x76,0x34,0x12,0xbf,0x80,0xc3,0xd6,0x15,0x1f,0xf2,0x41,0x8f,0xe1,0x4f,0xff,0xb1,0x37,0x36,0xf5,0xbc,0xff,0xd9,0x7f,0x6c,0xa3,0xff,0x21,0x3c,0xa3,0xef,0xe5,0x63,0x13,0x9c,0x48,0x10,0x29,0xe4,0x34,0xf5,0xaa,0xb1,0x28,0x7b,0x5d,0xad,0xd8,0x8a,0x46,0x3d,0xf5,0x3f,0x6f,0xf8,0xf4,0x3f,0x8c,0x7f,0xf1,0xaf,0xfe,0x3d,0x6e,0xde,0xbe,0x35,0x93,0x6,0x49,0x5d,0xf4,0x18,0xe9,0x44,0xd0,0xef,0x78,0x2,0xcd,0xaa,0x28,0x81,0x35,0x44,0xb6,0x6e,0x14,0x69,0xc6,0xe7,0x10,0xa7,0x59,0x28,0xc0,0x54,0x2c,0xf3,0x26,0x91,0x2d,0x82,0xa6,0xe0,0xd6,0xc9,0xee,0x1c,0x27,0xab,0xd5,0xd9,0xf2,0xe,0x1,0xc9,0x91,0xf6,0xff,0x8b,0xfd,0x23,0x74,0x3d,0xed,0x65,0x25,0x16,0xb0,0x64,0xa5,0x8f,0xa9,0x7,0xb3,0xd5,0x48,0xcf,0x7,0x27,0xa8,0x54,0xd,0x83,0xc8,0xd4,0xa4,0x93,0x18,0xac,0xca,0x76,0x92,0xd9,0x81,0xd3,0xa6,0x48,0x72,0x2a,0x79,0x68,0x63,0xac,0x92,0x6d,0xa4,0x4e,0x6f,0x8a,0x9e,0x34,0x71,0x28,0xf4,0x7b,0x7,0xa9,0x39,0x16,0x4d,0x4d,0x32,0x28,0x8b,0xa,0x7c,0x25,0xe5,0x3e,0xd6,0x67,0x20,0x19,0x26,0x88,0x9c,0xa4,0x8d,0xc5,0x6b,0x39,0xec,0xf,0xe5,0xd7,0x80,0xda,0x87,0x8a,0x2,0xdc,0xba,0x6d,0xf4,0x4c,0x89,0x62,0x1b,0xf3,0x7a,0x61,0x7f,0xe,0x9d,0xfb,0x5a,0xb,0xc4,0x96,0x80,0x2f,0x32,0x6d,0x89,0xa2,0xcd,0x57,0x23,0xd6,0x92,0x26,0xdd,0x15,0x2c,0xb8,0xc6,0xbe,0x31,0xcc,0x66,0xf1,0xda,0xb9,0x82,0xe,0x94,0xe4,0x67,0xd3,0x58,0xd8,0x84,0xf3,0x49,0x9c,0x58,0x90,0x8c,0xb2,0x40,0x96,0x26,0x97,0x3e,0xa9,0x43,0x30,0x5,0xd4,0xb4,0x74,0x22,0x4c,0x52,0x8c,0xcc,0xb7,0x74,0x59,0xaa,0xf0,0x2,0xf3,0xa8,0x3c,0x13,0x14,0x4f,0xb6,0x88,0xd0,0x86,0xed,0x86,0x71,0x20,0x4c,0x83,0xb7,0xe5,0xd1,0xfb,0x7a,0xd5,0xe1,0x50,0xc2,0x8c,0x66,0xfc,0x68,0x79,0xbd,0x97,0xb7,0x48,0xc1,0xca,0x37,0x94,0x40,0x1a,0x25,0x1e,0x15,0x10,0x82,0x26,0x66,0x4f,0xc5,0x4d,0x74,0x1f,0x5d,0x1a,0x20,0xaa,0x8d,0xdc,0x76,0x95,0x5e,0xd4,0x4c,0xad,0x39,0x1e,0xf9,0x86,0x1a,0x94,0xa2,0x35,0x56,0xd9,0x27,0x65,0x57,0x2a,0xb,0xf6,0xee,0x78,0xe7,0xdd,0x4b,0xd8,0x7e,0xf,0xac,0xeb,0x40,0xa3,0x7b,0x5f,0x2c,0xa9,0x17,0x3e,0x71,0x2,0xd1,0x1e,0x53,0x11,0x5c,0x2b,0x70,0x75,0xd8,0x43,0xa7,0xe1,0x4c,0xd2,0xb0,0x62,0x7c,0xce,0xdc,0x7a,0xca,0x20,0x93,0x85,0xc5,0x22,0x18,0x1d,0xc4,0xd9,0x4c,0xad,0x78,0xbe,0x2a,0xa2,0x93,0x5e,0x16,0x15,0xed,0x2,0xdd,0xdf,0xc7,0xed,0x57,0xbe,0xa,0x8f,0xdf,0xba,0xd,0x7b,0xcf,0x7b,0x70,0xf0,0xa5,0x3a,0xcd,0x9e,0x9e,0x21,0x80,0x8,0x76,0x24,0x98,0x22,0xc,0x88,0x71,0xc0,0x62,0x21,0xb9,0x40,0x26,0xa0,0x51,0xd4,0xb0,0x3c,0x70,0x7,0x8f,0xfe,0xce,0xdf,0x83,0xb7,0xfe,0xd8,0x57,0x42,0x76,0xa3,0xd,0xad,0x73,0xe4,0x26,0x84,0x5b,0xc8,0x20,0x40,0x84,0x7d,0x21,0x43,0x6,0x61,0x2d,0x1,0x94,0x87,0x82,0x38,0x8b,0x42,0x6,0x80,0x87,0xc,0x3b,0x9c,0x45,0x92,0xca,0x50,0x6,0x2a,0xf0,0xf5,0x70,0x2c,0x13,0xdb,0x3a,0x41,0xbc,0xf8,0x4e,0x1c,0xb0,0x27,0x5a,0xc1,0x99,0x0,0x89,0x8f,0xe,0x8f,0xb0,0x58,0x90,0x1f,0x29,0x40,0xf4,0x59,0x55,0x47,0x74,0x64,0x5,0xbe,0x39,0x8d,0x7c,0xa3,0x5d,0xb9,0xfd,0x69,0x23,0x75,0xcd,0x91,0xd1,0xb2,0x2c,0x23,0xdf,0xa,0x8f,0x1,0xa3,0x3,0x9a,0x32,0xec,0x14,0x95,0x72,0x2e,0x5d,0xbc,0xa5,0x18,0x2e,0xd2,0xf,0x70,0x1c,0x8b,0x81,0x8c,0x8d,0x6a,0xcd,0x5,0x6c,0xeb,0x7c,0x77,0xfc,0xfb,0x1b,0x41,0x20,0x18,0xc9,0x71,0x11,0x9a,0x57,0x68,0x6,0x9f,0xcc,0x17,0x36,0xba,0x29,0x1d,0x8e,0x18,0x1f,0x35,0x1a,0x2a,0x6f,0x54,0xd2,0x88,0x97,0xad,0x12,0xba,0x10,0xb8,0xd0,0x3b,0x99,0x4a,0x20,0x1b,0xb3,0xa2,0x63,0x73,0xa1,0x6d,0x32,0xc0,0x9,0x6d,0x62,0x6b,0x88,0x8c,0x8b,0x13,0x82,0x27,0x9b,0x33,0xfe,0x64,0x96,0x57,0xb2,0xd8,0x52,0xcc,0x16,0x27,0x85,0x3c,0x80,0xbc,0x25,0x8a,0x12,0x27,0x7e,0x2c,0xf5,0x15,0x9d,0xc1,0xac,0x4,0xcd,0xdb,0x9a,0x13,0xd9,0x54,0x5c,0x39,0x62,0xf3,0x23,0x0,0x2a,0x6b,0x3f,0x98,0xad,0xd9,0x72,0x16,0x2,0xd0,0x19,0x63,0x6a,0x4c,0xba,0xd8,0x4c,0xb2,0x15,0x68,0xdf,0x27,0xe5,0x92,0x46,0xa6,0x1,0x52,0x94,0xd,0x48,0x1b,0x34,0x9b,0x97,0xa0,0x1a,0x22,0x95,0xf0,0x8,0x12,0x44,0x82,0x6a,0x42,0x87,0x7e,0xbd,0xc0,0x52,0x7e,0x95,0x6e,0xa0,0x44,0xd9,0x7e,0xb1,0x4a,0x3a,0x4a,0x97,0x81,0x6b,0x4d,0x9f,0x45,0x4e,0x69,0x3d,0x54,0x1,0x13,0xb3,0x71,0x5d,0xe6,0xf3,0x4c,0xfd,0x1,0x6b,0x28,0x79,0xf6,0x3d,0x71,0xab,0xd1,0xa2,0x30,0xc7,0x9e,0x3b,0x7b,0xc2,0x78,0x24,0xef,0x3c,0x7e,0xe1,0xe4,0xda,0x3b,0x65,0x37,0xd7,0x88,0x94,0x90,0x1a,0xe3,0xcb,0xb4,0xc4,0x94,0xa3,0xdb,0xe4,0xce,0xdf,0xa5,0xf9,0xf7,0x18,0xe7,0xe0,0x81,0xab,0x93,0xa2,0xd7,0xb3,0x7e,0x9,0xab,0x86,0x6,0x85,0x7e,0x30,0x43,0x4e,0x8c,0x19,0xa9,0x70,0x51,0x88,0x76,0xb9,0x5d,0x6c,0x45,0x37,0x6,0x42,0xbf,0xa4,0xc,0x67,0x8b,0xc2,0x75,0x2,0x47,0x24,0x5b,0xb1,0xab,0x19,0xcc,0xc,0x87,0x15,0x38,0xc0,0xb0,0xba,0x62,0x9d,0xdd,0x27,0xc3,0xac,0x96,0xd5,0xb1,0xa,0x70,0x18,0xa4,0x17,0xac,0x0,0xd6,0xd9,0x22,0x5e,0xdd,0x71,0x58,0x1d,0x6,0xc5,0xf5,0x3a,0xdb,0xbc,0x8,0x29,0x45,0x6f,0x3c,0xd6,0xed,0x4c,0x66,0xcb,0xaf,0xc,0x45,0x41,0x69,0xf6,0x95,0x9b,0xb6,0x87,0xce,0xbf,0x13,0x48,0xd4,0xc8,0x88,0xf5,0xc,0x80,0x62,0x55,0xc1,0x23,0xaf,0xfb,0x38,0x60,0x3d,0x20,0x38,0xb,0x1e,0x2e,0x6b,0xca,0xa3,0x4,0xc1,0xa,0xc1,0x2a,0x3,0xfb,0x75,0x10,0x60,0x95,0x71,0xa8,0xac,0x93,0xcd,0xb0,0x3a,0x70,0x10,0xc7,0xc1,0x5,0xd7,0xe,0xd8,0x2a,0xd8,0xdf,0xbb,0xc4,0xa3,0x6f,0x78,0x1d,0x76,0x4f,0x7f,0x18,0x72,0xb8,0xce,0xd6,0x37,0x6c,0xa2,0x76,0xa3,0x8a,0xf0,0x53,0x82,0xfb,0x85,0xc8,0x86,0x94,0x27,0x1,0x97,0x46,0x9d,0x75,0xc0,0x54,0x16,0x4b,0x3e,0xb2,0x90,0x2,0x99,0x89,0x54,0x87,0xe0,0x84,0x51,0x97,0xb1,0x2,0xa1,0xa3,0xb5,0xc6,0x2,0xb5,0xdc,0x60,0xa4,0x34,0x2e,0x92,0xad,0x8e,0x80,0xa,0x99,0xba,0x51,0xad,0xef,0x63,0x1c,0xe1,0xe9,0x9a,0xd7,0xab,0x86,0x44,0x7a,0x83,0x78,0x35,0xc7,0x5a,0xaf,0x1b,0xd1,0x25,0x6c,0xd6,0x37,0x55,0x11,0x73,0x9e,0x1b,0xf4,0x2c,0xa1,0xf9,0x68,0x19,0xd2,0x71,0xbb,0xdf,0xbb,0x68,0x89,0x74,0xa5,0x34,0x1,0x70,0xa,0x88,0xd0,0x99,0x81,0x5e,0xa,0x8e,0x3c,0x1d,0x74,0x9c,0x2a,0x3b,0x8f,0x7,0xac,0x1,0x41,0x16,0x92,0xf3,0xdc,0x82,0xd4,0x50,0xb3,0x43,0x71,0xe9,0x26,0x5c,0x69,0x7,0x4c,0x8c,0x14,0x3a,0xb6,0x93,0xba,0x19,0xeb,0x23,0x45,0xfc,0x8f,0x3d,0x3c,0x48,0xc7,0xb2,0xda,0xe2,0x47,0x72,0x20,0x9b,0x56,0xa8,0x37,0x79,0x87,0x76,0xe8,0x83,0x59,0x17,0x47,0xd9,0xc2,0x93,0x90,0xf4,0x7f,0x93,0x3f,0x67,0xd4,0x4f,0xab,0x20,0xa5,0x14,0x6,0x33,0x11,0x46,0x59,0x34,0x87,0xee,0x7b,0x76,0xa1,0xc,0x69,0xe5,0x9d,0x2d,0x68,0x9f,0xf8,0x9c,0x7c,0x7,0xa3,0x12,0xd5,0x89,0xc8,0x97,0x85,0x9d,0xdf,0x68,0xcd,0xe5,0xfb,0xd7,0x49,0x1,0x64,0xbb,0xf3,0x18,0x1d,0xf2,0xa1,0x57,0x7b,0xcb,0xa2,0xc4,0x77,0xae,0xe4,0xe9,0x60,0x9a,0xe3,0x3f,0x15,0x85,0xba,0xd2,0x28,0xd0,0x6a,0xd9,0x61,0x68,0x6,0x48,0x63,0x1a,0xa2,0x9a,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xaa,0x9e,0xf2,0xf4,0xb6,0x34,0x4b,0x86,0xaa,0x33,0xbb,0xc4,0xd1,0xfa,0x8e,0xf8,0xe2,0x65,0xc3,0x4c,0x2d,0x5c,0x3a,0xec,0x75,0xa3,0x22,0xe3,0xcd,0x85,0x52,0xc9,0x91,0x35,0xc6,0x3c,0x91,0x44,0x88,0xf7,0xfd,0x61,0xb3,0x8b,0x33,0xf6,0xac,0x4d,0x76,0x3,0xb9,0x4b,0xea,0x4,0xdb,0x59,0x99,0x4a,0x29,0x61,0xc1,0x9c,0xb6,0x95,0x4b,0x37,0x84,0x8d,0x84,0xda,0xe9,0xf,0x8b,0xb3,0x22,0xdd,0xc7,0x26,0x9d,0x6a,0xa5,0xcd,0xf7,0x2d,0x1c,0x3c,0x29,0x71,0xd0,0xe4,0x26,0x93,0x93,0xa0,0x48,0x76,0x8c,0x85,0x3e,0xb3,0x39,0x8d,0x66,0x97,0xb6,0xef,0x29,0xd7,0xce,0xee,0x9,0xd7,0x46,0xf,0xd,0x1a,0x91,0x63,0xb7,0xc5,0xc4,0x98,0x44,0xad,0x9d,0x81,0x0,0x44,0x39,0xa2,0xb9,0xa0,0xcb,0x98,0x3b,0x83,0xdc,0x37,0xa7,0xf9,0xaf,0xe5,0xe2,0x9b,0x16,0x81,0x6e,0xe3,0xa5,0xe8,0x59,0xb,0xa8,0x25,0x96,0xe0,0x9,0x8c,0x11,0x52,0x76,0xb0,0xe4,0xe3,0xb,0x56,0x5,0x56,0x8,0x44,0x75,0xce,0x0,0xeb,0x1,0x3b,0x51,0x3f,0x9c,0xa9,0x63,0x56,0x74,0x26,0x17,0x36,0xb7,0x20,0x75,0x28,0xe9,0x49,0x43,0x7e,0x1e,0xb5,0xc1,0x4b,0x2,0x51,0x20,0xb6,0xe2,0xec,0x79,0xcf,0xc1,0xcd,0xf,0x7d,0x19,0xfc,0xb0,0xcf,0x97,0xb1,0x4c,0x0,0x58,0x58,0x1d,0x92,0xdb,0x6f,0x4b,0x4c,0x52,0x46,0xd8,0xb8,0x95,0x59,0xc9,0xc9,0x1,0x2,0xdf,0xef,0xa1,0xcf,0x78,0x3a,0x9e,0xfe,0x3b,0x3f,0x1e,0x76,0x79,0x3f,0xf9,0xfc,0xaa,0x96,0x5c,0x28,0x71,0x87,0xac,0xbe,0xf9,0x6c,0xae,0x1c,0xa6,0x3e,0x39,0xd,0x8b,0xf9,0xfd,0x65,0xf5,0xd2,0xf8,0xd0,0x4a,0xbc,0x41,0x34,0x8c,0x2,0x26,0x17,0x5f,0x17,0x2d,0xbe,0x41,0xeb,0x9c,0x6c,0x65,0x51,0x8f,0x4d,0x78,0x1a,0x4d,0x4b,0x36,0x62,0x4b,0x34,0x6f,0xec,0x8,0xf5,0x63,0xa0,0x9b,0x3b,0xb7,0x69,0x94,0x7a,0x5e,0x9a,0x1c,0x75,0xf6,0xb0,0x95,0x93,0x65,0x60,0x37,0x3d,0xd9,0xea,0xa,0x26,0x25,0x2f,0xa5,0x53,0x7b,0x65,0x91,0x7,0x56,0xd3,0x80,0x17,0x42,0x90,0x4b,0x79,0x2c,0xc4,0x22,0x4a,0x59,0x66,0xc9,0xce,0x4b,0x5,0x67,0x4f,0x3d,0x87,0x23,0x1e,0x7c,0xd0,0x89,0xb6,0x9c,0x72,0x6b,0xa7,0x68,0xa7,0x59,0xa0,0xb0,0x1f,0xa0,0xa,0xa7,0xf5,0x11,0x68,0xf6,0xe9,0xea,0xed,0x33,0xd4,0xfb,0xcb,0x10,0xea,0xf2,0x78,0x9b,0xcb,0x47,0xd2,0x63,0xa5,0xa4,0xa9,0x27,0x64,0xa6,0xbd,0xe,0xec,0xd4,0x45,0xe0,0xf1,0x7,0xba,0x9f,0x39,0xb6,0xd7,0xb7,0x39,0xb8,0x73,0x5f,0x3e,0x89,0x16,0x2,0xbc,0x3b,0x6e,0x6d,0xad,0x8f,0x5a,0xf7,0xa0,0xf7,0x68,0x8b,0xf2,0xca,0x0,0x28,0xb1,0xe2,0xb7,0x4f,0x4c,0xc,0x48,0xb8,0x26,0xd8,0x22,0x62,0x9d,0xee,0x1b,0xe3,0x35,0x46,0xb8,0xb,0x63,0xea,0x84,0x73,0x44,0x12,0xca,0xca,0x59,0xbf,0x13,0xf3,0xc0,0x4b,0x23,0xc3,0xa5,0xf1,0xb0,0x9d,0x9d,0xee,0x42,0xb2,0x76,0xa5,0x51,0x8b,0x8e,0xd8,0xd9,0x4,0x8e,0x36,0xfa,0xff,0x20,0xfd,0xf,0x25,0xa6,0x9e,0x85,0xb5,0xaf,0x96,0x10,0xbe,0xcb,0x88,0xff,0x2c,0xde,0xd3,0x6c,0x55,0xbc,0x3a,0x4b,0xf9,0xdf,0x32,0x2a,0x23,0x27,0x1d,0x1,0xc6,0x75,0x7a,0xab,0xe4,0xa5,0x94,0xe,0xd3,0xbb,0x80,0x47,0x92,0xd2,0xf0,0x5,0x92,0xcf,0x6f,0x26,0x2d,0xb3,0xd8,0xf4,0xc9,0x69,0x5f,0x54,0xb1,0x2c,0x9a,0x76,0xc8,0x70,0xef,0x86,0x58,0x84,0x9d,0xa9,0x67,0x58,0x78,0x83,0xa,0x2f,0xf4,0x85,0x31,0xd6,0xdd,0xf8,0xc7,0x98,0x63,0xe3,0x1d,0x41,0x5a,0x19,0xa9,0x21,0x23,0x38,0xe5,0xf2,0x5c,0xba,0x4b,0x92,0x31,0x3a,0xe3,0x33,0x73,0x1d,0x59,0xdf,0x27,0xf2,0x7d,0xb6,0x5b,0x4e,0xa6,0x4,0x7b,0xae,0x78,0xdf,0x28,0x6d,0x4,0x36,0x5e,0xba,0x76,0xde,0x52,0x51,0xa4,0x7c,0x63,0x7a,0x5,0xb6,0xdc,0x9e,0x59,0x9d,0xc4,0xe1,0x2a,0x3e,0x25,0x7c,0x67,0x20,0x52,0x16,0x47,0xa9,0xf6,0xb4,0xcd,0xb9,0x34,0x44,0x47,0xfb,0xdb,0x9c,0x16,0x8f,0x91,0xfa,0xb4,0xc1,0x7d,0xed,0x3e,0x34,0x1e,0x7a,0xcd,0x42,0x96,0x8b,0xf5,0x50,0x43,0x3b,0xa6,0x39,0xdb,0x45,0x35,0xda,0x40,0xe6,0xb5,0x61,0x63,0x66,0x1e,0xd4,0xc5,0xb1,0xe0,0x47,0xcb,0xc8,0x2f,0xef,0xe3,0xa1,0xd7,0x7c,0x2c,0xf0,0xd0,0x6d,0xf8,0x6a,0xc9,0x25,0x6f,0x1,0x2e,0xed,0x30,0x2d,0x5b,0x6b,0xac,0x30,0x16,0x60,0x37,0x73,0x6f,0xd9,0x62,0x76,0xb,0x1c,0x38,0x5c,0xdd,0xc7,0xd3,0x3f,0xf9,0x53,0x20,0x37,0x6e,0x41,0xd7,0xc3,0x14,0xd6,0x91,0x2,0xbb,0x65,0xb2,0xb4,0xc1,0xaa,0xa0,0xcf,0xd5,0x34,0x37,0x3d,0x25,0x49,0x52,0xd9,0x7e,0x6a,0x62,0xc7,0x1,0x6f,0x5b,0x7f,0x83,0xfa,0xdd,0xe8,0x82,0xc8,0x9,0x30,0x3a,0x58,0xf,0xdc,0xb7,0xe9,0xb2,0x9c,0x34,0x3,0x9,0xb1,0xa3,0xf2,0x19,0x64,0xd,0xf8,0xc8,0xa6,0x95,0xa4,0x28,0xb1,0xc9,0xa3,0xbb,0x9f,0x40,0x67,0x9e,0x49,0x9b,0xad,0xa3,0xd7,0xd0,0xd4,0x35,0x94,0x4d,0xa7,0x58,0x5a,0x66,0xcd,0xdd,0xeb,0x68,0xcb,0x1d,0x35,0x30,0x36,0xee,0x74,0x11,0xf4,0x0,0xf6,0x15,0xa0,0xd9,0x9a,0xb5,0x38,0xbb,0x25,0xd4,0x1e,0xe9,0xf2,0xf0,0xfa,0xc5,0xc6,0x3b,0xa3,0x81,0x59,0xb7,0x82,0xe0,0x11,0x93,0x54,0x2b,0x79,0xf0,0xe3,0x79,0xa2,0x53,0x22,0xd6,0x11,0xf5,0x2c,0xbb,0xec,0x2c,0xf9,0xd0,0x9f,0x21,0x19,0x5e,0xa5,0x30,0x4c,0xeb,0xc2,0xa,0xd1,0x7b,0x9d,0x0,0xa7,0x5a,0x63,0x12,0xd9,0x78,0xc1,0x90,0xf,0x11,0x3,0x96,0x9c,0x59,0xf,0x2e,0x4d,0x1,0xe8,0x68,0x7c,0xe3,0xd2,0xbc,0xdc,0xb7,0x43,0x23,0x75,0x3c,0x9,0x3,0x41,0x5a,0x77,0x48,0x66,0x5,0x9b,0x69,0x8a,0x95,0x35,0xae,0xc8,0xd0,0xb4,0x68,0xb3,0xf1,0xd9,0xba,0xd6,0x59,0xd1,0xaa,0xe8,0x4,0xfb,0x32,0xa1,0x9e,0xf5,0x1a,0x34,0xd5,0x31,0x47,0x8e,0xed,0x58,0x94,0x91,0xfe,0xb3,0x1b,0x47,0x5c,0xf6,0xf6,0xca,0x65,0xa2,0xfb,0x5b,0x1a,0x2b,0x64,0x9d,0xed,0x8d,0xe5,0xc4,0x12,0xeb,0xf5,0x6c,0x37,0xba,0xff,0x6c,0x24,0x43,0xdd,0xab,0x32,0x4d,0x23,0xc2,0x74,0x10,0x99,0x44,0x67,0xd1,0x37,0x14,0x45,0x33,0xc9,0x13,0x3f,0x26,0xa7,0x80,0xb8,0xfc,0xdb,0x67,0x97,0x80,0x6a,0x52,0xf9,0x6a,0xa0,0xb5,0xa6,0xa6,0x43,0x23,0x2d,0xd2,0x12,0x20,0x80,0x30,0x9a,0x3e,0x87,0xf6,0x14,0x9f,0x67,0xbb,0xb6,0x49,0x6,0xb2,0x8b,0x83,0xa3,0x31,0x61,0x53,0x58,0x17,0x3f,0x39,0x91,0x6b,0x9e,0x13,0xfc,0xcc,0x68,0xdf,0x67,0x57,0x5a,0x37,0xc2,0x88,0x1b,0x4b,0x6e,0x6d,0x23,0x69,0xa1,0x67,0x40,0xdd,0x60,0xb6,0x38,0x4e,0xbf,0x8d,0xa2,0x27,0xc3,0xf1,0x14,0x52,0xdd,0xc9,0x34,0x63,0x3b,0x42,0xe9,0xd5,0x5d,0x67,0x59,0x8d,0x9b,0xb4,0x29,0xc3,0x4b,0xbd,0x1a,0x91,0xe2,0xb9,0x5a,0x48,0x21,0x45,0x16,0x67,0x3e,0x94,0x96,0x66,0xaf,0xd8,0xc7,0x49,0x58,0xad,0x29,0x2d,0x25,0xb9,0xa8,0xac,0x14,0x85,0x5c,0x8f,0xee,0x2,0xa,0xbb,0x5d,0x8,0x78,0x9d,0x1b,0x41,0x8a,0x31,0xd0,0xb4,0x9f,0xc9,0x76,0x31,0xe7,0xb5,0xf3,0x7f,0xb9,0xae,0x14,0x8d,0xe2,0x63,0x32,0xb2,0xc8,0xe5,0xe6,0x39,0x1e,0x79,0xfd,0xeb,0xe1,0xfb,0x43,0x1e,0x4e,0x31,0x9b,0x65,0x32,0x41,0x6b,0x92,0x71,0xd6,0x3b,0xab,0x6a,0x6f,0x1c,0x53,0xcb,0xec,0x76,0x24,0xf2,0xa,0xbf,0xba,0xc2,0xad,0x17,0x3f,0x1f,0x77,0x3e,0xea,0x23,0x60,0xd7,0x97,0x47,0x50,0x6e,0x65,0x8b,0x47,0xa6,0x2b,0x27,0x74,0x54,0x5b,0x66,0x1f,0xed,0xb8,0x94,0xa6,0x55,0x4f,0x25,0xa9,0xc8,0x3a,0xda,0x79,0xad,0x2c,0x65,0x3c,0x8d,0x83,0x44,0xb0,0xe8,0x52,0xa0,0x18,0xa7,0x4c,0x52,0x37,0x59,0xa1,0x1c,0x23,0x47,0x7b,0xb9,0x58,0xa6,0x3b,0x6d,0xfe,0x9f,0x83,0xb0,0xe9,0x7c,0x44,0x2e,0x29,0x32,0xcb,0x3c,0x6d,0xe0,0x34,0xeb,0x48,0xed,0x6d,0x7a,0x21,0xbf,0x59,0xf7,0xd7,0xb7,0x67,0xed,0x4c,0x18,0x25,0x3b,0x91,0xce,0xcf,0x31,0x16,0xb6,0x4a,0x9f,0x97,0x77,0x66,0x2b,0x9a,0x6d,0xfb,0x5c,0xef,0xc2,0xd8,0x9,0xa5,0xee,0xc5,0xe4,0x33,0x37,0xd4,0x63,0x38,0xe4,0xf1,0xb8,0xc4,0xa9,0x7,0xae,0x85,0x20,0x1e,0xbd,0x3c,0xa3,0xeb,0x3,0x64,0xa9,0x60,0x32,0xe6,0x65,0x41,0x9,0x22,0xa3,0x23,0xad,0xc3,0x2c,0xcd,0x90,0xa4,0xda,0xb1,0xc2,0x63,0xfb,0x54,0x32,0x9b,0x6c,0x1e,0x91,0x2c,0xaa,0x85,0x83,0x71,0x0,0xe7,0xda,0xb3,0x8b,0xb9,0x1e,0xc9,0x35,0xcb,0x86,0xeb,0x6d,0x95,0xc8,0xc7,0x3,0x4c,0x0,0x9f,0xe1,0xa8,0xd5,0x49,0xf3,0x96,0xfc,0x5d,0xd9,0xce,0xf5,0x65,0x33,0xfa,0xf3,0xb2,0xf8,0x96,0x59,0xd2,0x3a,0x7,0xc4,0x2d,0xf7,0x5b,0x4b,0x34,0xab,0x90,0xfb,0x51,0xa9,0x8f,0xfb,0xb7,0x38,0x2c,0xc,0xd5,0x82,0x9e,0xe0,0xd8,0x45,0x97,0x6c,0xd7,0xb6,0x24,0x99,0x28,0x60,0x69,0x36,0x23,0xb,0xc4,0x49,0x6,0x4c,0x19,0xe8,0x30,0x4b,0x1f,0xb3,0x39,0x87,0xd7,0xd4,0x2c,0xa9,0xed,0x24,0xad,0xb5,0xed,0xc,0xb0,0xb0,0x10,0xbd,0xa1,0x6a,0x70,0xa7,0x33,0x31,0xa1,0x4,0x8a,0x8b,0x26,0x95,0x8e,0x4d,0x30,0x23,0x9a,0x2f,0x27,0xbb,0x46,0xe7,0xc2,0x90,0xe6,0x16,0x72,0x9b,0x12,0x2,0xb6,0x9,0xcf,0xbf,0x9b,0x8e,0x8,0xbf,0x7b,0xee,0x5e,0x69,0x35,0xd5,0xc9,0xec,0x67,0xe3,0x86,0xd6,0x12,0xc2,0xda,0x3b,0x73,0xfd,0x98,0xc3,0xe,0x23,0xbe,0xa,0x64,0x1a,0xfc,0x28,0x64,0x8a,0x21,0x78,0x93,0xe4,0xab,0x73,0xa7,0x29,0x8d,0xc6,0xf3,0x31,0x29,0x13,0x2f,0xf2,0x41,0x70,0xea,0x2e,0x39,0xb5,0x4b,0xbc,0x95,0xff,0x4,0x4a,0xe2,0x59,0x2,0x4b,0x91,0xa3,0x98,0x24,0x5c,0x14,0x38,0xc5,0xda,0x26,0x30,0x2b,0x5d,0x88,0x32,0x80,0xa5,0x6d,0xcd,0xb4,0x35,0x52,0x8,0xca,0xad,0xf4,0x35,0xc1,0xcf,0xbc,0x2a,0x75,0x56,0x5f,0xa7,0x60,0x66,0x33,0x5a,0x88,0x6c,0x90,0x71,0x32,0xf,0x63,0x11,0xe8,0xb2,0xd4,0x4b,0x8f,0x39,0x40,0xe,0xa0,0x36,0xd3,0x55,0x97,0x8c,0x6f,0xc6,0x95,0x72,0xdc,0x8b,0xc5,0x5c,0x68,0x1e,0x96,0xd,0x53,0x34,0x2d,0x46,0x8d,0x2b,0xaa,0xcc,0xa7,0xe7,0x4d,0x49,0xbb,0x46,0x56,0x15,0xde,0x22,0x8c,0x4a,0xf6,0x95,0x56,0xc1,0xfe,0x1a,0xb7,0x1e,0xfb,0x40,0xdc,0x79,0xe1,0xf3,0xe1,0xf7,0x2f,0x59,0x84,0x2f,0xdb,0x4c,0x8c,0x3a,0x93,0x23,0x39,0x62,0xa4,0x10,0x83,0xd3,0xff,0x2a,0x4a,0x56,0xfb,0xce,0x7d,0x38,0x1b,0x3e,0xfa,0xc9,0xbf,0xf,0xcb,0x20,0xa5,0x62,0x8d,0xd6,0x8f,0xd9,0x10,0xa9,0x68,0xb3,0xf0,0xd,0x85,0x27,0x66,0x52,0x11,0x8,0x20,0x33,0x39,0x43,0x76,0xf,0xda,0xcc,0xd8,0xbc,0xcd,0x94,0x78,0xca,0x8a,0x2c,0x54,0x27,0x58,0x86,0xa6,0x2,0xd2,0xf4,0x1d,0x9a,0x73,0x4,0xbd,0xbb,0x63,0xd3,0x95,0x76,0x44,0x37,0xb7,0x40,0xea,0x34,0x30,0xa2,0x9d,0xb4,0x9,0xd8,0xd1,0xf1,0xb8,0x97,0xeb,0x75,0x20,0x62,0x63,0x69,0xec,0xbe,0x69,0xaf,0x79,0x67,0xa1,0xb3,0x5b,0x97,0x39,0xd6,0x90,0x49,0xe5,0xfa,0xd7,0x36,0xe0,0x1e,0x39,0xa6,0x82,0x82,0x68,0x71,0x42,0x48,0x6e,0x56,0x5,0xf5,0xdc,0xc9,0x75,0x18,0xa,0xcd,0xda,0x3d,0xd5,0xe1,0x6a,0x96,0xde,0x68,0x3a,0xd1,0x39,0xd6,0xf8,0x7d,0x6d,0xce,0xc7,0x6e,0xb2,0xd1,0xaf,0xaf,0x40,0xee,0x93,0x92,0x15,0x2,0x3f,0xad,0x2d,0xe9,0x75,0xd0,0x5a,0xae,0x21,0x2,0x7,0x86,0x1a,0x5a,0xf2,0xd5,0x83,0xb,0xcf,0x3e,0x18,0x5,0x64,0x4a,0x39,0x64,0x2e,0x5b,0xf2,0xe9,0x73,0xef,0x9b,0xe6,0xb1,0x33,0xae,0x58,0x93,0xb8,0x3a,0x52,0x3c,0x39,0xd5,0x44,0xda,0xe0,0x8,0xc8,0x29,0x2e,0xe3,0x89,0xa7,0x16,0x43,0x8e,0xb9,0xb0,0x71,0xbe,0x9b,0x54,0x3a,0x63,0x84,0x90,0x13,0x5d,0x14,0xd3,0x5d,0x6f,0xb6,0x24,0x34,0xb2,0x38,0x8b,0x59,0x7b,0x39,0x8d,0x72,0x47,0x41,0xb3,0x5a,0x17,0x5a,0x51,0x92,0x5,0x4b,0xa0,0xb9,0x75,0xd3,0x42,0x12,0xaa,0x1e,0x25,0xbb,0x89,0xfc,0xee,0x51,0xa3,0x25,0x26,0x2c,0xcd,0x6e,0x75,0x0,0x88,0xdd,0x2c,0x69,0xb4,0xa1,0x81,0xa2,0x2a,0x90,0x45,0x53,0xb,0x43,0x88,0x3a,0xea,0xdc,0x21,0x2a,0x1d,0x46,0xf4,0x88,0xa3,0xb4,0x9e,0x35,0x4d,0xfe,0xc4,0x3b,0x84,0xd6,0x6b,0xa0,0xdb,0x35,0x60,0x98,0xb3,0x3f,0xf7,0x5d,0x8c,0x0,0x6d,0xa3,0xf9,0x2c,0xb4,0x72,0xa4,0xb5,0xc4,0xe4,0x68,0xe6,0x1f,0x94,0x61,0xf0,0xfb,0x8e,0xfd,0xb4,0x68,0x15,0x98,0x29,0xb7,0xcd,0x5c,0xa1,0xf2,0x60,0x71,0xed,0x21,0x6a,0x8c,0xaf,0xbd,0x99,0x7d,0x95,0x43,0xad,0x54,0x92,0x35,0x4b,0xa,0x13,0xe9,0x5a,0x9c,0xe9,0xa7,0xe4,0x53,0xf4,0x2d,0xce,0xe,0x49,0x70,0xb0,0x4f,0x4c,0x80,0xd1,0xd9,0x53,0x5e,0x28,0x55,0xb,0xe5,0xef,0x52,0x7c,0x61,0x46,0x44,0x37,0xba,0xe0,0x25,0x65,0x8d,0xe9,0xc0,0xd,0xd,0x2d,0x31,0x96,0xcd,0x4c,0x28,0x66,0xe9,0xea,0x94,0x89,0xa2,0x51,0xa5,0xba,0xf5,0x67,0x1c,0x88,0xd2,0x29,0x33,0x73,0x63,0x99,0x57,0xc6,0x1f,0xc0,0x35,0x9b,0x87,0xa3,0x45,0x2b,0x30,0x32,0xfa,0x68,0x9d,0x93,0x3c,0xa8,0xd5,0xbd,0x14,0xdf,0x71,0xce,0xf4,0xad,0xf7,0x74,0x7a,0x90,0xb,0x44,0x2b,0x55,0x84,0xea,0x5,0xfa,0x33,0xf4,0xd9,0xad,0xbb,0x40,0xd6,0x3,0x9e,0xf1,0xbb,0x3e,0xe,0xd8,0x9,0x74,0xb5,0x69,0xaa,0x38,0x39,0xea,0x24,0xa,0xc2,0xf2,0x8f,0x89,0x1f,0x88,0xaa,0x8e,0x50,0xea,0xce,0x7e,0xb4,0x6,0xd8,0x5a,0x3c,0x62,0x87,0x2,0xf7,0xaf,0xf0,0xc0,0xab,0x5e,0x89,0x1b,0xcf,0x7f,0x21,0xe4,0x70,0x18,0xf8,0x6,0xb0,0xe4,0x29,0x59,0x33,0x26,0x5a,0x9f,0xfe,0x17,0xcc,0x81,0x55,0xa0,0x2e,0x1b,0x3f,0x7,0x6f,0x49,0x1c,0x61,0x92,0x8a,0x6f,0x2a,0x85,0xd6,0x8f,0x99,0xaa,0x6e,0x7c,0xa8,0x53,0x48,0xe3,0x14,0x58,0xce,0x4f,0x40,0xef,0x4f,0xd,0xb6,0xa8,0x3c,0x73,0xe2,0x3f,0x6f,0xc1,0x7d,0x85,0x58,0xf5,0xd2,0x66,0x27,0xf0,0xf,0x9b,0x50,0xb0,0x8b,0x95,0xc4,0x5a,0x26,0x23,0xa8,0xda,0x34,0xa7,0xfb,0x1,0x75,0xd0,0x59,0xa9,0xbe,0x31,0xad,0xd,0xb3,0x63,0x12,0x87,0x72,0x36,0x1f,0x36,0xee,0x91,0x33,0xe8,0x28,0xe8,0x96,0x82,0xef,0x1b,0xe7,0x85,0xd5,0x49,0xee,0x34,0x80,0x4f,0xb4,0xf5,0x6c,0x7b,0xba,0xa1,0xe9,0x8a,0xcb,0xb4,0x5d,0x8d,0x24,0x79,0x24,0x6f,0x24,0x2d,0x1a,0xa,0x86,0x71,0xd9,0xe1,0x8b,0xc0,0x55,0xd,0x61,0x2f,0xe5,0x80,0x6e,0xf2,0x11,0x26,0x56,0xb3,0xaa,0x35,0x43,0x3,0x21,0x89,0x96,0x2c,0xb0,0xf3,0xa8,0xdf,0xb7,0x94,0xc2,0x2,0x9c,0xf1,0x91,0xe1,0xb2,0x41,0x51,0xb1,0xc,0xaa,0x90,0x7f,0x5,0xbb,0xfd,0x30,0x3b,0x4a,0x37,0x48,0x53,0x43,0xb3,0x8f,0x36,0x12,0x6e,0x61,0x8c,0x69,0xc1,0x33,0x8,0xf7,0x63,0x65,0x66,0x52,0xbd,0x5a,0xcf,0x44,0x1d,0x56,0xfe,0x1c,0x21,0x3c,0x14,0x24,0x8e,0xa8,0x65,0xaa,0xde,0x18,0x54,0xe5,0xd5,0xa8,0xc2,0x17,0x1e,0x3,0x90,0x2e,0xa,0x4f,0xc2,0x74,0x2a,0xea,0xcd,0x6a,0xd4,0xc8,0xf8,0xca,0x6c,0xab,0xc3,0xe1,0x85,0x1d,0x60,0x7f,0x11,0x8f,0xd8,0x6a,0x30,0xb1,0xd9,0x85,0xd0,0xea,0x2a,0xcd,0xca,0x7c,0x30,0x57,0x2c,0x1,0xb3,0xa,0x19,0xc6,0x37,0x42,0xf8,0x2c,0xe5,0x84,0x55,0xf2,0xf7,0xc7,0xda,0xb6,0x7a,0x3f,0x36,0xf,0x5e,0xf3,0x46,0xc1,0x6d,0x60,0xb8,0x68,0x9b,0xfb,0xd0,0x38,0x30,0x67,0xb9,0x68,0x69,0xf6,0xcb,0x99,0x38,0xc9,0xc6,0x16,0xdc,0x36,0xf0,0x16,0xed,0x62,0x5a,0xb2,0x45,0xff,0x8b,0x12,0x2e,0xa5,0x66,0xfe,0xee,0xc3,0xe5,0x4f,0x97,0x25,0x59,0x61,0xb1,0x6e,0x79,0x94,0xc8,0x82,0x61,0x52,0x40,0xb6,0x2c,0x63,0xc1,0x94,0x59,0x63,0x8f,0xc,0x29,0x70,0xa1,0x45,0x22,0x54,0xa,0x84,0x8e,0xee,0x4a,0xde,0x67,0x96,0x92,0xa,0x8b,0xed,0xd4,0xf2,0xd0,0xb4,0x21,0x46,0xd,0x15,0xb0,0x2a,0x7c,0x26,0x7a,0xeb,0xa,0xc6,0x17,0xb9,0x6d,0x0,0xac,0x4d,0x2a,0x3b,0x3a,0x55,0x5b,0x20,0x4f,0x93,0x16,0xed,0xff,0xc2,0x49,0x3d,0x57,0x71,0x96,0x1,0x60,0x49,0x35,0xdd,0x36,0x23,0x8e,0xbe,0x9,0xa1,0x3b,0x25,0xe,0x1a,0xad,0x56,0x3d,0x6b,0x80,0x84,0xca,0x16,0x5f,0x82,0x70,0xbb,0xe6,0xc8,0xe0,0x40,0x6a,0x1,0x84,0x37,0x38,0xca,0x33,0xde,0x52,0x9c,0x43,0x5a,0x55,0xca,0x55,0x86,0x43,0xb1,0xac,0x2b,0x76,0x4f,0x7b,0x4,0x77,0x7e,0xeb,0x6f,0xc3,0x7a,0x75,0x99,0x2d,0x2c,0x67,0x55,0x39,0x8a,0x43,0x2a,0x25,0x65,0x19,0x5d,0x3b,0xdb,0x74,0x4c,0xb8,0x8d,0x98,0x5c,0x5c,0x2f,0x20,0x8b,0xdb,0xa,0xbf,0x7d,0x81,0x87,0xde,0xf0,0x89,0xb0,0xfd,0xd5,0xbc,0xe7,0xca,0x56,0x47,0xce,0x58,0xb6,0x55,0xc2,0x92,0x93,0x0,0xb0,0x68,0x7,0x7b,0xb8,0x14,0xe6,0x1,0xbc,0xf2,0xb4,0x3a,0xcc,0x13,0x55,0x2a,0xd4,0x1e,0xed,0xed,0x7b,0x3d,0x6a,0xaf,0x1d,0xf1,0x90,0xb7,0x45,0xbd,0x1f,0xf3,0x5e,0xd1,0x3a,0x4a,0x3c,0x2f,0x93,0x26,0xe4,0x11,0x7f,0xc7,0xc5,0xb,0x64,0x93,0xeb,0xd1,0xd2,0x4d,0xc3,0xbd,0x30,0x15,0xc2,0xe0,0xc4,0x63,0x64,0x1,0x7c,0x33,0x86,0xc8,0xad,0x4c,0xfc,0xff,0x75,0x5d,0xbb,0x3f,0x76,0x54,0x32,0xf5,0xa0,0xe6,0x21,0x20,0x64,0x3d,0x2d,0x54,0xbd,0x2a,0xa9,0xa8,0x55,0xb7,0x41,0x37,0x66,0x36,0x89,0x88,0x9e,0xcf,0x52,0x49,0x4f,0xc1,0xa5,0xea,0x42,0xf7,0xd,0xea,0x8f,0xc4,0x83,0xc2,0x5a,0x38,0x91,0xf6,0xd2,0x3d,0xef,0x85,0x4,0x59,0x2,0x50,0x18,0x0,0x43,0xdf,0xcc,0x24,0xb3,0x45,0xab,0x5b,0xb9,0x5d,0xe9,0xb3,0x46,0x25,0xe0,0xa6,0x13,0x1a,0x5b,0xb7,0x84,0x3,0x66,0xc,0x54,0x46,0x29,0xaa,0xf9,0xfc,0x9a,0x83,0xc8,0x6,0xe1,0xbd,0x25,0xf5,0xcb,0x76,0x8e,0xe3,0x5b,0x8,0x89,0x77,0xfc,0x3,0xd3,0xe4,0x36,0xb9,0xa6,0x6c,0x85,0x86,0xac,0x10,0x27,0x1c,0xf3,0x62,0x16,0x2d,0xd3,0xe6,0x59,0x1a,0xf3,0xc0,0x13,0x8b,0x50,0xda,0xa,0x6,0x81,0x61,0x5d,0xf,0x35,0x96,0xab,0xe5,0x5e,0x72,0xac,0x22,0xc7,0x93,0x31,0x39,0x36,0x9,0xd6,0x45,0x9b,0xd6,0x43,0xbc,0xf3,0xb4,0x8b,0x9,0xec,0x8b,0xa1,0xa1,0xff,0x35,0xb2,0xf2,0x14,0xe0,0xaf,0xb1,0xa9,0x7b,0xe8,0x0,0xac,0x95,0x34,0xc3,0xc7,0x77,0xed,0x74,0x98,0x8f,0x51,0x71,0x22,0x93,0x5a,0xad,0x4a,0x1d,0x44,0x21,0xd9,0x61,0x12,0x4b,0x53,0xe6,0xb2,0x6f,0x1d,0xe0,0xc8,0xb0,0x2b,0xa8,0x82,0xe2,0xfd,0x5d,0xa,0x3,0x91,0xe5,0x38,0x88,0x74,0xf3,0x4c,0x69,0x0,0xc1,0x92,0xd1,0x45,0x7a,0x32,0x78,0xb5,0x46,0x1b,0xb6,0x45,0x8,0xa4,0xe3,0xd8,0x3a,0x62,0x32,0x8b,0x49,0x36,0x10,0x60,0x29,0x59,0xe1,0xd6,0xcc,0x35,0x6a,0x83,0x86,0xcf,0x45,0xc7,0x7,0x28,0xd3,0x9e,0x27,0xd8,0xb2,0x69,0x5f,0xd1,0xb9,0x91,0xe6,0x69,0x7e,0xdc,0x1c,0xcd,0xf3,0x99,0x4c,0xc3,0x2,0x8f,0x20,0x47,0xbe,0x97,0xf4,0xa4,0x58,0xb3,0xc5,0x63,0x4,0x59,0x5,0x95,0xf6,0x76,0x39,0x4a,0x89,0xe,0xd4,0x5a,0x8f,0x4d,0x1c,0x88,0xd2,0xa8,0xac,0x8c,0xe,0x64,0x55,0x42,0xcd,0x1b,0xad,0x91,0x12,0xb1,0xc8,0x4d,0xb8,0x74,0xf1,0x1f,0x36,0x6a,0x10,0xe9,0x8,0xc9,0x25,0xda,0x54,0x59,0xfd,0xa0,0x5,0x45,0x4d,0xa0,0xb4,0x67,0x73,0x8,0x5a,0x48,0xf2,0x68,0x5,0x85,0x3b,0x95,0xa9,0xc3,0x14,0xad,0x7d,0x13,0xc0,0x44,0x77,0xc0,0xaf,0xef,0xe3,0xd6,0x87,0x7f,0x24,0x96,0xf7,0x7a,0x26,0xfc,0x70,0xc0,0x21,0x90,0xd0,0x73,0x13,0xb3,0x1d,0x67,0x71,0xd3,0xbd,0x68,0x8d,0x60,0x25,0xb9,0x6a,0xf1,0xa4,0x58,0xca,0x9c,0xd9,0x5b,0x22,0x84,0x15,0xab,0xb,0xe4,0xf2,0xa,0xf,0xbd,0xee,0x75,0x38,0x7b,0xf8,0x21,0xc8,0xc1,0x6,0x90,0x48,0x4b,0x30,0x69,0xcc,0xac,0xa6,0xb0,0x8f,0x16,0x32,0x38,0x59,0x5d,0x4a,0xe2,0x19,0x8b,0xe7,0x6c,0x56,0x78,0x1e,0x95,0x2d,0xdd,0x42,0x2,0x67,0xee,0x1b,0xa0,0x9,0x9,0x3f,0x2,0x2b,0x55,0x45,0x3f,0x66,0x44,0x3a,0x2a,0xb3,0xc4,0xc6,0x12,0xb9,0xe3,0xfc,0x6a,0x3e,0x56,0x8d,0x20,0x6f,0x2f,0xbe,0xe6,0x53,0x42,0xae,0x8e,0x25,0x85,0x79,0xa,0x93,0x25,0x9c,0xd,0x9f,0xe2,0x71,0xf1,0xe6,0xd9,0xb4,0x12,0x5b,0xeb,0xcb,0x36,0x5c,0x4,0x2,0x90,0xe6,0xb9,0x44,0x86,0x3c,0x49,0xe5,0x8c,0x7,0x60,0x21,0x51,0x3a,0xfe,0x67,0x33,0x12,0x59,0x1c,0xf4,0x46,0xca,0x51,0xe9,0x7f,0xc1,0x6b,0xa5,0x94,0x32,0x2d,0x7f,0x5c,0x36,0xd2,0xee,0x75,0x18,0xe7,0x41,0xaa,0x28,0x70,0xed,0xc4,0xdd,0x68,0x52,0x84,0x68,0xfe,0x89,0x92,0xe9,0xcd,0xd7,0xab,0x68,0x3e,0xa2,0x35,0x4b,0x9d,0x2c,0x4,0x1d,0x74,0xb4,0x84,0x21,0x18,0x25,0x5,0x59,0x59,0x49,0x1d,0x66,0x7e,0x4c,0x91,0xcd,0x3d,0x1a,0x98,0x4,0x16,0x92,0xd2,0x3e,0x7c,0x52,0x3,0xd9,0x41,0xf7,0x60,0x9f,0xd5,0x9d,0x49,0x3f,0x8,0x95,0xf,0x71,0x2f,0x10,0x71,0x30,0x29,0xb8,0x85,0xee,0x28,0xd4,0xfe,0x34,0x60,0xd2,0x85,0xdb,0xdb,0x25,0xe9,0xea,0x90,0xe1,0x61,0xbf,0x8,0xba,0xe9,0xf4,0x8,0xde,0x83,0xfd,0x5b,0x6c,0x88,0x65,0x22,0xff,0x1e,0x7e,0xf8,0x21,0x92,0x41,0x99,0xc2,0x32,0xcb,0xd8,0xab,0x3a,0xe5,0xb8,0x9f,0x4a,0x4,0xeb,0xe6,0x8d,0x1b,0x39,0x82,0x50,0x1,0xb5,0x97,0x27,0x2d,0x6d,0x2d,0x2b,0xf2,0x78,0x4f,0x43,0xdb,0xbd,0x68,0xbf,0xc1,0xd6,0x71,0x9d,0xc9,0xb3,0x18,0xf7,0x33,0x27,0xfc,0xc2,0xa7,0xbe,0x7d,0x75,0xc6,0x74,0x26,0x13,0xca,0xf9,0xec,0x52,0xac,0x9c,0xec,0xac,0xea,0x44,0xfb,0x2b,0xcf,0x95,0xc9,0x0,0x88,0x44,0x77,0x4,0x3c,0x42,0x9c,0xb4,0xc0,0x89,0xd5,0x12,0x29,0x2f,0x0,0xe1,0xae,0xa6,0x6f,0x37,0xed,0x2c,0x6,0x6d,0xc3,0xa,0x10,0x39,0x72,0xff,0x73,0xd9,0x60,0xd1,0x30,0x8a,0x29,0xdb,0xd0,0xfd,0x44,0x68,0x36,0x9e,0x7,0x9f,0xc1,0xb1,0xa6,0x4e,0x8d,0x2f,0x24,0xbe,0xb9,0x75,0x45,0x44,0x80,0x5f,0xb5,0xd4,0x55,0xe3,0xf9,0x2d,0x82,0x65,0x19,0x2e,0xad,0xc5,0x3c,0x90,0x64,0x4d,0x48,0x3c,0xe0,0x5c,0x9f,0xde,0x99,0x43,0x44,0x5c,0xca,0x8a,0x4c,0xac,0x27,0xac,0xdb,0x86,0xd9,0xdc,0xc8,0xee,0xdb,0x91,0xaa,0xb4,0xca,0x3f,0xf5,0x13,0xa8,0x50,0xdf,0x9,0xa9,0x70,0x3b,0xbd,0xe8,0xd2,0x91,0xa8,0x5d,0x98,0x96,0xa3,0xa2,0x85,0x9e,0x25,0x4d,0x66,0x9b,0xa7,0x83,0x2e,0xbb,0xac,0x14,0xd8,0x30,0xc1,0x3d,0x5c,0xf8,0x8,0x4d,0xf,0xa2,0xe8,0x11,0xca,0x51,0xb6,0x8a,0x62,0xc0,0x91,0xf9,0x31,0xd7,0x79,0x71,0xd0,0x6a,0xf2,0x38,0xc7,0x61,0xe9,0x47,0x54,0x9f,0x2,0x77,0x64,0xf6,0xaa,0x34,0xb,0x17,0xe0,0xd1,0xd7,0x7f,0x3c,0xe,0xb0,0xd9,0xd6,0x91,0xbc,0xcf,0xc2,0xaa,0x54,0xef,0xd4,0x18,0xdc,0x92,0xed,0x2f,0x49,0x94,0xa9,0x50,0x95,0xef,0x64,0x57,0x57,0x5,0xdf,0x18,0x75,0xe8,0x61,0x8f,0xf3,0xe7,0xbe,0xf,0xee,0xbc,0xf2,0x23,0xf0,0xae,0x37,0xbf,0x19,0x7e,0xf6,0x20,0x5,0x39,0x21,0xb4,0x72,0x29,0xf0,0x89,0x4a,0xd3,0x6b,0x8f,0x96,0x6c,0xd3,0xa8,0x8f,0xa,0x11,0x46,0xce,0x76,0x24,0xbe,0x92,0x42,0x6b,0x24,0xa8,0xb3,0xe,0xf6,0x85,0x32,0xa7,0x57,0x8e,0xdd,0xaf,0x43,0xec,0x3,0x6c,0xf4,0x74,0xc2,0x61,0xad,0xe9,0xb4,0xa3,0xa8,0x97,0xe2,0xa1,0x28,0x40,0xa3,0x93,0xf9,0xee,0xd,0xac,0xe9,0xbd,0xa1,0xe,0xf2,0xec,0xe6,0x68,0x82,0x75,0xca,0xaf,0xfe,0xc9,0x83,0x6e,0xb2,0x18,0x74,0x99,0x65,0xc2,0x3a,0xc6,0x25,0xd4,0x2d,0xd9,0x28,0x72,0x92,0xce,0x47,0x89,0xdf,0xe4,0xa4,0x3a,0xcc,0x94,0xd8,0x18,0x8a,0xa6,0xce,0xa,0x6,0x52,0x3a,0x3d,0xb3,0x8d,0x2,0x18,0x74,0xb4,0x4b,0xc9,0xfa,0x14,0x8,0x99,0xcf,0x38,0x4,0xc9,0xa8,0x29,0x75,0xf5,0x85,0xc4,0x61,0xa4,0xb,0xac,0x80,0x80,0x82,0xd2,0x55,0xe6,0x32,0x6,0x44,0x77,0x46,0xb4,0x2b,0xf9,0x6d,0xba,0x58,0x5b,0x6b,0xdf,0xe2,0xca,0x90,0xf9,0xce,0x74,0xf,0x13,0x97,0x26,0xcc,0xb4,0x45,0xe6,0x49,0x2f,0x1,0x6b,0x4d,0x9,0x9a,0xcb,0xa1,0x93,0xc1,0x8d,0x6b,0xe9,0x15,0xab,0x13,0xcd,0xd5,0xe5,0xc8,0x2b,0x78,0x9b,0xaa,0x5b,0x54,0xf5,0x8d,0x1c,0xc1,0x13,0xd4,0x4a,0xc0,0x58,0x51,0xd1,0xe7,0x7b,0x56,0x19,0xd5,0xf2,0x7a,0x38,0xc0,0x1c,0xf8,0xbf,0xfe,0xd6,0xdf,0xc3,0xb,0x9e,0xf7,0x7e,0xa3,0x5b,0x64,0x46,0xf8,0xdc,0x60,0x2e,0xf5,0x7d,0xe9,0x9b,0x71,0xd5,0x7f,0xfe,0xa9,0xff,0x82,0x85,0xdc,0x2f,0xd3,0x5d,0x6d,0x9a,0x72,0x85,0x4f,0x46,0xb4,0xea,0x33,0xb6,0xa6,0xad,0x2e,0xb1,0x3e,0x66,0xd1,0xa1,0x69,0x1e,0x66,0x64,0xa1,0xed,0x6d,0xee,0x33,0xd8,0x4c,0xcb,0x38,0x88,0x8d,0xd,0x63,0x90,0x7a,0xf8,0x11,0x1b,0x98,0xba,0x96,0x3e,0x1b,0x42,0xc6,0x68,0x6c,0xc2,0x86,0x2,0x6f,0x2b,0x75,0x8a,0x82,0xde,0xe7,0x1b,0x87,0xbf,0x8d,0xb9,0x42,0x65,0x7f,0x2a,0x47,0xeb,0x4c,0x78,0x8e,0x49,0xee,0xac,0xd,0x7b,0x6,0x62,0x8b,0xc1,0x86,0x8d,0x3c,0x29,0x3c,0xfa,0x7a,0xcc,0x68,0x9,0x5d,0xfd,0xa1,0xbd,0x40,0x94,0x4c,0x6,0xf4,0x51,0x9c,0x92,0x16,0xf7,0x23,0x79,0xb7,0x1c,0xf1,0x44,0x72,0xe8,0xa2,0x74,0xb6,0x48,0x77,0x86,0x48,0x51,0x37,0x34,0x8e,0x61,0x3d,0xff,0x85,0x5d,0x54,0xd0,0xf5,0xfd,0xb8,0xeb,0xe1,0x25,0xda,0x24,0x8d,0x3f,0x4e,0x4e,0xb4,0xd4,0xd9,0x13,0xc1,0x2e,0x5a,0x7,0xbe,0x6c,0xa9,0x32,0xe5,0x74,0x55,0xea,0x45,0x92,0x86,0x9,0x83,0x3a,0x56,0x8,0xda,0xd1,0x8c,0x8e,0x8d,0xb2,0xb4,0x43,0xb5,0x10,0x45,0x56,0xd9,0x62,0xb4,0xd7,0x1a,0x7,0xba,0x31,0x2e,0x3a,0xf1,0x33,0x14,0x93,0xa4,0x1f,0x58,0xdc,0x52,0x8e,0x91,0x82,0x13,0xa5,0x28,0x35,0xc3,0x93,0x32,0xb1,0xcc,0x3c,0x43,0x8b,0xea,0xa7,0x2,0xc3,0x2,0xd9,0x1f,0x70,0xf1,0x9c,0xe7,0xe0,0xfc,0xe5,0x1f,0x82,0xf5,0xea,0x1a,0x3b,0x97,0x52,0xcd,0x33,0xc2,0x42,0x90,0x15,0x6a,0xb5,0x4f,0x47,0x40,0x59,0xcd,0x13,0x95,0x2e,0x5e,0x16,0x80,0x4d,0xfd,0x90,0xc0,0x8d,0x42,0xbe,0xec,0xeb,0xba,0xe2,0x91,0x8f,0xff,0x14,0x3c,0xfe,0xe6,0xef,0xc6,0x7a,0x38,0xc0,0xcf,0x16,0xa8,0x28,0x6c,0x5d,0x53,0xf8,0xa3,0x78,0xf4,0x84,0x9c,0x75,0xaa,0x58,0x66,0xd7,0xc6,0xda,0x40,0xde,0x48,0x33,0xdd,0x9b,0x62,0xdc,0xe8,0x86,0xec,0x52,0x10,0x43,0x13,0x14,0xb2,0x1e,0x8b,0xde,0x48,0x99,0x1b,0x15,0x82,0x79,0x2b,0x28,0xff,0x9b,0xcb,0xfb,0x46,0xb0,0xb2,0xb8,0x36,0x16,0xee,0x48,0x93,0x9d,0xad,0xfc,0x26,0x8d,0x64,0x68,0xe4,0xe4,0x47,0x46,0xad,0x4f,0x6a,0x1d,0x53,0xc3,0x21,0xb2,0xd,0xbe,0xde,0x5f,0x61,0x5d,0xf7,0x30,0xbb,0x18,0xeb,0x87,0xac,0x3e,0x3,0x64,0x65,0x1b,0x4a,0x5e,0x4a,0x48,0x33,0x4f,0x36,0x5a,0x8a,0x2a,0x47,0xda,0xfb,0x3c,0x93,0x34,0xa,0xec,0x8c,0x45,0x69,0xcf,0x33,0xe4,0x96,0xbd,0x86,0x83,0x41,0x31,0x4,0x65,0xfb,0x4e,0x26,0x49,0xe9,0x3a,0xd6,0xac,0x48,0x63,0xed,0x22,0x95,0xe9,0x42,0xa0,0x26,0xab,0x64,0xa7,0xe0,0xbe,0x51,0x71,0xcc,0x9e,0x56,0x8a,0xa9,0x20,0xf7,0x56,0xf3,0x51,0xb2,0x5a,0x5a,0x11,0xf4,0x32,0x86,0x9b,0x6e,0xb0,0x1a,0x5,0xe5,0x4b,0x27,0x50,0xd0,0x61,0x11,0xea,0x65,0x2d,0x31,0xf5,0x52,0x95,0x83,0x34,0x66,0x7,0xaf,0x9b,0x64,0x9d,0xc4,0x5a,0xb0,0x70,0x3c,0xeb,0xbc,0xf1,0xa8,0x1c,0x9d,0x9e,0x8f,0x4c,0x2c,0x46,0xca,0x64,0xfb,0xc0,0x64,0x28,0x27,0xe,0x9,0xd0,0xf4,0x31,0x47,0x9e,0x57,0xff,0xf7,0xbe,0xe9,0x1f,0x93,0x9e,0x7b,0x38,0xcf,0x93,0x75,0xb8,0x90,0x8,0x4c,0x60,0x1b,0xc,0x29,0x4d,0xbd,0xa8,0xe2,0xc6,0xc5,0xf9,0x48,0x1a,0xe2,0xfe,0x18,0x9f,0x61,0xb3,0xa,0x97,0x18,0x2f,0x28,0x8a,0x1d,0xa6,0xd4,0x7e,0x66,0xa,0x9f,0x67,0xb5,0x1b,0xf2,0xe6,0x9,0x98,0x15,0x83,0xac,0x42,0x7a,0x12,0xa5,0xa,0xaa,0x11,0x47,0x12,0xd0,0xa4,0xe9,0x66,0x6e,0xec,0xc6,0xc7,0x32,0xb4,0xcd,0x57,0xc1,0x8b,0xa9,0x0,0x32,0x27,0xe2,0xfd,0x29,0xa4,0xe0,0x69,0x5d,0xc2,0xbb,0xc1,0x3c,0x58,0xa3,0x41,0xe6,0xb1,0xa7,0xd2,0xf2,0x3a,0x35,0xf2,0x9d,0x50,0x2f,0x41,0x9d,0x48,0x66,0xc,0x70,0x5f,0xa1,0x8b,0x26,0xcd,0xf,0x3b,0x83,0x1f,0xfc,0x14,0x5a,0x89,0x46,0x9b,0xcc,0x91,0x9f,0xf6,0x63,0xba,0xd,0x2a,0x14,0x6f,0x68,0x7c,0x58,0x12,0x29,0x92,0x67,0x0,0xc3,0x4b,0x33,0xa1,0x99,0x78,0x81,0x70,0x9c,0x75,0xc8,0x86,0x8f,0x8f,0xfa,0xfd,0xad,0xd9,0x2c,0x84,0xac,0xdb,0x85,0xa,0xfd,0x32,0x3a,0xca,0x18,0xe1,0x51,0xf1,0xd7,0x3d,0xef,0x1c,0xc7,0x7e,0x1b,0xce,0x40,0x7,0xee,0xbf,0x6d,0xfc,0xed,0xcd,0x15,0xbe,0x1e,0x80,0xf5,0x80,0x75,0x5e,0xc8,0xd9,0xe1,0xa,0xeb,0xe5,0x7d,0xac,0xd3,0x7a,0x34,0x84,0x2e,0xa,0xe6,0xcc,0x1b,0x93,0xe8,0x5d,0xda,0xe8,0xf1,0x64,0x53,0x1b,0x68,0xd6,0xb8,0x9,0x47,0x57,0x80,0xa7,0x6c,0x90,0x5b,0xb4,0x42,0xf6,0x85,0xde,0xbd,0xbc,0x73,0xa3,0xe4,0xef,0x8c,0x39,0xe4,0x72,0xb8,0xc2,0x3,0xaf,0x7e,0xd,0xfc,0xc1,0x3b,0xc0,0x13,0xef,0xa1,0x6e,0x41,0xd1,0x7c,0x58,0x3b,0x81,0xf3,0x12,0xf3,0xf2,0x71,0x4f,0xad,0x7d,0xa2,0x78,0x88,0x80,0x28,0x25,0xe8,0xfc,0xd4,0xf0,0x77,0xbf,0xbc,0xc4,0xad,0xf,0x7b,0x39,0x2e,0x9e,0xff,0x7c,0x3c,0xf1,0xb6,0x9f,0x7,0x96,0xdb,0x10,0x35,0xe8,0x4e,0x67,0xc6,0x2d,0x94,0xc9,0xb2,0xc8,0x52,0xd8,0xf4,0xda,0xd1,0x9c,0x3b,0xf,0x16,0x25,0xcb,0x34,0x8,0xd6,0xd9,0x2a,0x54,0x8,0xd6,0xc3,0xbe,0xd4,0x17,0x7d,0xa0,0xf,0xaf,0xae,0xf7,0xbd,0x5,0xee,0x74,0xe8,0xf2,0xac,0x4d,0x4e,0x1f,0xf6,0x49,0x71,0xc9,0x45,0xe9,0xad,0x7d,0x3b,0xe,0x2d,0x27,0xf3,0x26,0x1f,0xeb,0x69,0xc6,0xb4,0x30,0xa3,0x70,0x92,0x99,0xf4,0xa6,0x9d,0x93,0xa2,0xc6,0x0,0x7,0xd5,0x96,0xec,0xb2,0x5d,0x6f,0x78,0xd5,0x55,0x65,0xb7,0x3f,0x1c,0x60,0x6e,0xd8,0xed,0x76,0x99,0xa0,0xca,0xb4,0x88,0xe,0x79,0x61,0xf1,0x2d,0x3d,0x74,0xd3,0x9e,0x83,0x40,0x7c,0xd0,0x9b,0x62,0xb3,0xc7,0x78,0xa9,0x39,0xf3,0x4a,0x25,0xba,0xae,0x44,0x8f,0x13,0xb0,0x80,0x38,0x25,0x8a,0x72,0x2c,0xe5,0x4b,0x2d,0x3d,0x6b,0x77,0xdf,0x6d,0x9c,0x9d,0xe9,0xb0,0x5e,0x16,0xcd,0x96,0x47,0x6c,0x3d,0x9b,0x34,0x2d,0x51,0x32,0xc1,0x6b,0x39,0xa3,0x1c,0x75,0x6e,0x62,0xca,0x21,0x9b,0xf6,0x52,0xae,0xf1,0x19,0x14,0x15,0xe5,0x9c,0x98,0x0,0xae,0x10,0x5e,0x59,0xeb,0xca,0xcd,0x0,0xd9,0x6d,0x5a,0x45,0xd6,0xe0,0xa9,0x5d,0xf4,0x87,0x14,0x93,0x25,0x4c,0x68,0x74,0x30,0x64,0x78,0xe,0x5d,0xc3,0x51,0x39,0x89,0x43,0x71,0xb0,0x64,0xb5,0xce,0x94,0x73,0xaa,0xa4,0xcc,0x6e,0xb,0xbb,0x17,0xce,0x36,0x62,0x1e,0xa8,0xc3,0xb9,0x72,0xc1,0xed,0x7,0x2e,0x68,0x14,0xe6,0xe4,0xdd,0x0,0xea,0xda,0x2d,0x73,0xd6,0xcd,0xc9,0xcf,0x0,0x1b,0x9a,0xaf,0x80,0x1f,0xb2,0x28,0xf1,0x2d,0x9e,0x86,0x27,0x44,0x8c,0xec,0x46,0xc9,0x4,0x73,0x47,0x90,0xa7,0x20,0x1,0xfa,0xca,0xd1,0x99,0xcf,0xe2,0x47,0x7c,0x76,0x27,0xc6,0x7d,0x8f,0xd1,0xa2,0x94,0xbd,0x2b,0x30,0x58,0x0,0xeb,0x94,0x37,0xde,0x29,0x65,0xdf,0xa,0xb7,0x39,0x3e,0x35,0x3a,0x1e,0x44,0x1b,0x90,0xb4,0x19,0x2f,0x45,0x6c,0x56,0xaf,0xc9,0x4c,0xc6,0x76,0x4b,0x0,0xeb,0x96,0x91,0x96,0x60,0xd5,0x85,0xc,0xbd,0xb9,0x8,0x8,0x30,0xac,0x52,0xf5,0x3b,0xed,0x85,0x41,0xa2,0x38,0x6e,0x6,0x59,0x16,0xc8,0x32,0x13,0x6a,0x1d,0x85,0x6a,0x2a,0xa4,0x2a,0x1b,0x6c,0x15,0xb4,0x8,0x24,0x3c,0x56,0x1d,0xdd,0x42,0x2c,0x26,0x68,0x34,0x12,0x2e,0x32,0xf7,0xc9,0x54,0xdb,0x91,0x4e,0x70,0xdd,0xe2,0x7a,0x16,0x89,0x56,0xc9,0x77,0x93,0x94,0x67,0xf6,0x86,0x7a,0xeb,0x52,0xb8,0x79,0xd7,0xf9,0x61,0xe5,0x59,0xc6,0xe9,0x11,0x53,0x25,0xf3,0x45,0x77,0xec,0xe4,0x64,0xc4,0x26,0x19,0x57,0x6a,0xd1,0x5,0x3f,0x79,0xcc,0x6b,0x16,0x28,0x1c,0xf6,0xc0,0x6d,0x9c,0x3d,0xfc,0x8,0x86,0xde,0x9e,0x62,0xb1,0xf7,0xc1,0xf9,0x7,0xbe,0x18,0xb2,0xda,0x5c,0x14,0xa,0x51,0x2b,0xd0,0x52,0xcc,0xf6,0xe9,0x61,0x15,0x5a,0xb8,0xd4,0xd4,0x5a,0x4b,0xc7,0xb7,0x86,0x1f,0xa5,0xe5,0x9e,0xa,0x4e,0xb3,0xd5,0x92,0x59,0x9d,0x2b,0x44,0x6c,0x3e,0xf0,0xb5,0xe6,0x2b,0xf3,0x90,0xc,0x3d,0xf1,0xc1,0x38,0x98,0x82,0xf,0x17,0xe7,0x78,0xe4,0xb5,0xaf,0x83,0xdc,0xbf,0x87,0x9d,0x8d,0x79,0xd8,0x42,0x7c,0xd6,0xa8,0x6,0x4a,0x99,0xaf,0x7c,0x91,0x9d,0x16,0xbb,0xa1,0x64,0x76,0x35,0xf,0x6c,0xcb,0x4c,0x50,0xb1,0xb1,0xa3,0x94,0x71,0xd,0x38,0x1c,0xb0,0xdc,0x79,0x0,0x77,0x5e,0xff,0xf1,0x78,0xe2,0xaf,0xff,0x55,0xd8,0xcd,0xdb,0x58,0x75,0x19,0xf8,0x1b,0xa2,0x24,0x89,0x74,0xf1,0xb,0x93,0x6e,0xd0,0xd1,0x4,0x37,0xc2,0x25,0xcb,0x8c,0xaa,0x2e,0x9f,0xd8,0x89,0x11,0x88,0x1e,0x7c,0xf0,0x16,0x6e,0x5e,0x5c,0x8c,0xcd,0xf,0xe0,0xf2,0x89,0x27,0xf0,0x3e,0xcf,0x7e,0xe6,0xec,0xba,0x74,0xd3,0xa6,0xd3,0x46,0x2d,0x27,0xe8,0x56,0x6e,0xc5,0x1f,0xde,0xc,0x66,0xd2,0xef,0x7a,0x29,0x87,0xb2,0x6,0x4a,0x41,0xf1,0xc3,0x41,0xd8,0x0,0x27,0x91,0x1b,0x16,0xb0,0x3b,0x99,0x7a,0x8,0x4b,0xed,0xd6,0xdf,0x8,0x2f,0xf8,0xfd,0x61,0xc5,0xd9,0xb2,0xc3,0x99,0xa,0xdc,0xe,0xe5,0x4,0xc8,0xed,0x4c,0x46,0x68,0x4f,0x37,0xc2,0xf2,0x45,0xa8,0x2a,0xd5,0x17,0xcd,0xcd,0x25,0xcd,0xe2,0xb5,0xeb,0xfc,0x83,0x74,0xd7,0xd3,0xe8,0xaa,0x1,0xe3,0x48,0x11,0x50,0x3,0xf4,0x62,0xa4,0xfe,0xb5,0x99,0xe3,0xc9,0x18,0x7,0x60,0x33,0x9,0x91,0x1c,0xcf,0xa0,0xf4,0xf6,0x3,0x37,0x11,0x52,0x32,0x9b,0x8f,0x14,0x2b,0x49,0x51,0x56,0xcb,0xcd,0xe,0x5b,0xa4,0x1b,0x6b,0x60,0xd,0xd0,0x81,0x7a,0xee,0x95,0x9c,0xb2,0x8,0x50,0x8c,0x5,0xa7,0xb2,0x1a,0x6c,0xa3,0xe,0x2a,0x5d,0xa8,0xc5,0x55,0x4a,0x12,0x77,0x9b,0xe2,0x53,0xfb,0x32,0xae,0x6f,0x25,0x1c,0x42,0x1b,0x6,0x27,0xb8,0x8a,0xe9,0x4f,0x14,0x28,0x27,0xb2,0x3e,0x79,0xba,0xf9,0x77,0xb5,0x9b,0x4,0x51,0x21,0x22,0x2e,0xd9,0x26,0x16,0xad,0x4e,0x86,0xb9,0x43,0x17,0xe9,0x0,0x59,0xf6,0x60,0x88,0x6a,0x7b,0xce,0xd4,0x3d,0x3a,0x4b,0xc1,0xc7,0x5e,0xe7,0x80,0x57,0x43,0x27,0x40,0x93,0xa2,0x96,0x7c,0x7d,0xf3,0x2,0x6a,0x4a,0x49,0xda,0x1a,0x8d,0x52,0x8a,0x67,0x5e,0x3a,0x4,0xee,0x5d,0xce,0x7c,0x1c,0x3a,0xd6,0x11,0x2f,0x61,0x6d,0x9b,0xfc,0x76,0x85,0xec,0x1c,0x6e,0x2,0x55,0x1b,0xe3,0x4c,0x6a,0x18,0x46,0x52,0x50,0xe,0x80,0x9c,0x28,0x7a,0x17,0xba,0x6a,0x1c,0x39,0x2,0x7f,0x92,0xb8,0xf,0xab,0xa8,0xca,0xa6,0xeb,0xec,0x13,0xb3,0xd4,0xcd,0x66,0x8,0x10,0x9c,0xfe,0xdb,0x96,0x89,0x3a,0x3b,0x91,0x7,0x13,0xc7,0xd6,0xc1,0x34,0x18,0x3e,0x29,0xa,0xd9,0xed,0x20,0xd1,0x61,0x71,0x3f,0x51,0x46,0x76,0x66,0x5a,0x8d,0x6b,0x9,0xef,0xe2,0xde,0xda,0xfe,0x39,0x9e,0x9,0xca,0xa1,0x22,0xe9,0x95,0x12,0x8c,0x1f,0xf6,0x7,0x88,0xd,0xa8,0xde,0x51,0xff,0x27,0x47,0xa6,0x42,0xfe,0x33,0xbc,0xbf,0x90,0x7e,0x30,0x22,0x13,0x52,0x33,0xb1,0x26,0x59,0x78,0x52,0xd1,0x17,0x5f,0xb9,0xdb,0xda,0x82,0xca,0xb6,0xbd,0x8b,0xe2,0x8,0x3b,0xb5,0x37,0x60,0xe,0xbf,0x7a,0x37,0x5e,0xf8,0x5,0x7f,0x11,0xcf,0xfe,0xb4,0x4f,0xc3,0x7a,0xb8,0x8f,0x75,0x77,0xe,0x5b,0x14,0xf7,0x1d,0x58,0xaf,0xee,0xf,0xab,0x53,0xa3,0xbe,0xfd,0xe8,0x15,0x6,0x50,0x3a,0x1,0x36,0xb5,0x14,0x34,0x91,0xda,0xd9,0xde,0xcb,0x64,0x7b,0x82,0x4b,0x8c,0x80,0x32,0xa2,0xd8,0x4a,0xa0,0x89,0x2e,0x70,0x2c,0x34,0x1a,0xb0,0x8d,0xf9,0x3,0xd3,0x38,0x96,0x31,0x63,0x96,0x33,0x9c,0xed,0xaf,0x70,0xf1,0xfe,0x2f,0xc2,0xd9,0xb,0x9e,0xb,0x5c,0xdf,0x83,0xca,0xe,0xa1,0x1f,0x54,0x0,0x11,0xea,0x42,0xa8,0xa7,0xcb,0x53,0x2e,0x6,0x5f,0xe1,0xba,0x9b,0x80,0x9c,0xd0,0xf7,0x97,0xc9,0xc3,0x45,0x4b,0x9e,0x42,0x3f,0xa0,0xb4,0x16,0x86,0x30,0xd2,0xe1,0xf2,0x1e,0x1e,0x7c,0xc3,0xc7,0xe3,0xd7,0xbf,0xf1,0x1b,0xb0,0x7,0x60,0x5c,0xc5,0xa8,0x8e,0xa9,0x8f,0x19,0x65,0xfc,0x31,0xd3,0x35,0x32,0x6e,0xd3,0x49,0x41,0xc4,0x86,0x5d,0x5e,0x73,0xb2,0x18,0x5b,0xdc,0xbb,0xfb,0x4,0xfe,0xdc,0x17,0x7d,0x3e,0xbe,0xf0,0x73,0x3f,0xb,0x77,0xef,0xde,0xc5,0x6e,0xb7,0xe0,0x60,0x86,0xf3,0xb3,0x5d,0x96,0x75,0xcd,0x59,0x55,0x4f,0x8d,0xd1,0xbd,0xb5,0x6e,0xd,0x2b,0x7e,0xf5,0xd7,0xde,0x8e,0xef,0xfc,0x9e,0x1f,0xc4,0xd9,0xd9,0x32,0x12,0xc,0x1b,0x89,0x40,0x1a,0x2f,0x91,0xce,0x41,0x4,0x23,0x43,0x3d,0xeb,0x94,0x26,0xa5,0xca,0x1f,0x9b,0x69,0x5,0xab,0xd3,0xca,0xf4,0x9c,0x8,0xf5,0xb3,0xd5,0xab,0x25,0xe9,0x36,0xfe,0xdb,0x6d,0xc5,0x21,0x66,0xae,0xba,0x60,0xb7,0x28,0x7e,0xed,0xed,0xef,0xc0,0xb2,0x2c,0x73,0xde,0x39,0x3,0x4,0x4e,0x51,0x13,0x43,0x93,0xbd,0x2a,0xe8,0x54,0xc,0x9c,0x64,0x76,0xc9,0x16,0x2e,0x65,0x80,0x1,0x24,0x35,0x1e,0xa5,0x79,0x59,0xcf,0x92,0x4a,0xdc,0xa0,0x2d,0xb1,0x5e,0xc9,0xb4,0xb,0x8d,0x91,0x6,0xf9,0xd2,0xb,0xfb,0x9d,0x6b,0x8d,0x9b,0x62,0xff,0xda,0x56,0x2,0x94,0x5,0x7c,0x58,0x79,0x32,0x80,0x77,0x22,0x5d,0xde,0x3b,0x5d,0x7e,0x3d,0x13,0x1f,0xc4,0x5c,0x72,0xb6,0x40,0x4d,0xf8,0x7d,0x48,0xb2,0x5a,0x86,0x40,0xd,0x32,0x39,0x1a,0xf7,0xae,0x44,0xe1,0xac,0x1c,0x47,0x89,0x2e,0xe7,0x42,0x9,0x14,0xad,0xad,0x6c,0xcb,0x47,0x45,0x1a,0xa,0x68,0x66,0x84,0x5,0x30,0xe8,0x14,0x72,0x61,0x84,0x75,0x32,0x18,0x66,0x69,0xaa,0x4e,0x82,0x41,0xb3,0xd3,0x18,0x23,0x16,0xcd,0xc4,0x64,0x6,0x51,0xaf,0x79,0x39,0xcc,0x81,0x45,0x67,0x7,0xb1,0x2a,0xee,0x1,0x3c,0x56,0x2,0xb7,0xce,0x83,0x46,0xc2,0x42,0x15,0x90,0x35,0xe,0x29,0x2f,0xff,0x11,0x19,0x48,0xcb,0x21,0xd1,0x3d,0xf6,0xbe,0xfb,0xa6,0x77,0x8e,0x6e,0xe7,0xcb,0x49,0x77,0x98,0xb9,0xe4,0xd4,0xd8,0xbb,0x90,0x59,0xf3,0xaf,0xb0,0x42,0xfa,0x97,0x96,0x4e,0x1a,0x7b,0xd7,0xe8,0x21,0x6f,0x6a,0x2d,0xc1,0x9a,0x70,0xcd,0x73,0x3f,0x72,0xcb,0xb,0xb1,0x9c,0x74,0xd5,0x83,0x3,0xb2,0x60,0x63,0xac,0x81,0x92,0x44,0x8a,0x3f,0x8a,0xa6,0xb7,0x11,0xe,0x3d,0xcc,0xda,0x4e,0x54,0xa2,0x2e,0x8d,0xfd,0x21,0x4e,0xba,0x0,0xa8,0x92,0x57,0xb2,0xa8,0xec,0xe7,0x57,0x69,0xf0,0x38,0xcc,0x4,0xea,0xb3,0xfa,0x17,0x85,0x2c,0x3,0x88,0xb,0x23,0x2b,0x77,0x9a,0x89,0x3b,0x67,0x23,0x18,0x74,0x69,0x9b,0x66,0x6a,0x69,0xdf,0x9e,0x73,0x79,0x1e,0x4b,0xc8,0x1c,0xb5,0x8d,0x75,0x93,0xad,0x14,0xeb,0x85,0x6b,0x26,0x37,0xd,0x4e,0x1a,0x78,0x38,0x4f,0x9c,0x55,0xd1,0xf,0x9,0x2d,0xc3,0x14,0x16,0x75,0x1e,0x0,0x56,0x17,0xd1,0xb6,0xb8,0x9a,0xb1,0x86,0x77,0x3,0xa1,0x2f,0x59,0x64,0xa5,0x42,0x98,0x62,0x83,0xce,0xae,0xc4,0x40,0x96,0x31,0xbb,0x30,0x17,0x9c,0x3f,0xe3,0x99,0x90,0x7,0xce,0x71,0x43,0x2e,0x70,0x50,0xc1,0x5e,0x80,0x8b,0x3d,0x70,0x90,0x5,0xd7,0x97,0x77,0xa1,0xae,0x30,0xd,0x14,0xb3,0x6e,0x30,0x3,0x35,0x17,0xc,0x4d,0x6d,0xf,0x4a,0xa,0x71,0x89,0x33,0x88,0x84,0x3b,0x1f,0x28,0x18,0x25,0xf8,0xce,0x1,0xd9,0xc1,0x7d,0x81,0xfb,0xa,0x3f,0x5c,0x42,0xfc,0x0,0x99,0x9e,0xd9,0x31,0x5b,0x9d,0xf6,0x34,0x33,0xf3,0x1b,0x95,0x99,0x62,0x1,0xee,0xbf,0x1b,0x37,0x5f,0xf3,0x87,0x70,0xfe,0xe8,0x1d,0x1c,0xde,0x7d,0x31,0x36,0xad,0x1d,0x46,0x6b,0x8,0x83,0x35,0x60,0x21,0x7d,0x3b,0x33,0x4c,0x5b,0xc3,0xa4,0x63,0x8c,0x20,0xf6,0xa6,0xf0,0xfb,0x57,0x50,0x11,0xac,0x67,0x82,0xdd,0xba,0xc2,0x75,0xa1,0x39,0xf0,0xf8,0x7b,0xb6,0xa,0xd1,0x18,0x59,0x48,0x47,0x81,0xc3,0x8a,0xb3,0xe7,0xbc,0x1f,0x6e,0x7f,0xc4,0x47,0xe1,0xde,0x77,0xfd,0x53,0xc8,0xad,0x87,0xb0,0x6a,0x1,0xed,0x86,0x8,0xc7,0xe,0x2a,0xe7,0x58,0x97,0x5,0x6b,0xcc,0xe5,0xa1,0x50,0xb1,0x79,0xff,0xe8,0x8a,0x4d,0x2a,0x4,0x56,0x21,0x20,0xf3,0x44,0x89,0xdf,0xb8,0x38,0x83,0x2e,0xc0,0x9d,0x7,0x1f,0x38,0x1,0x82,0xda,0x28,0xa3,0x6d,0x7b,0x71,0x44,0xd1,0xc9,0xb8,0x6d,0xc0,0x5b,0xdf,0xfa,0x36,0xfc,0xf1,0x2f,0xfe,0x32,0xac,0x87,0x3,0x74,0xb7,0x9b,0x73,0x4e,0xa5,0xe,0x8e,0x15,0xe5,0x9,0x4e,0x74,0x47,0x3a,0xb0,0x61,0x4,0x5e,0x9c,0x2d,0xdd,0xf9,0x39,0x3a,0x59,0x74,0x32,0xa9,0x8c,0x61,0x89,0x6c,0x31,0x36,0x42,0xe7,0x73,0x8b,0x7,0x6f,0x58,0x92,0xba,0xe4,0x58,0x71,0xe3,0xfc,0x2,0xe7,0x17,0xe7,0x30,0xb7,0xb4,0xe6,0x8c,0x96,0xe5,0xe8,0x92,0x48,0xd2,0x91,0x3c,0x1,0xa9,0x5b,0xb3,0x9f,0x25,0x81,0x71,0xd2,0x55,0xc8,0xbb,0xd1,0x50,0xf0,0x6c,0xb7,0x19,0x4c,0xa,0x44,0x51,0xda,0x3d,0x91,0xfd,0xec,0x17,0x3f,0xfa,0x9d,0x4e,0xa3,0xad,0x6a,0xf1,0xe5,0x8c,0xcf,0x36,0x53,0xb9,0xe4,0x4f,0x4b,0x73,0x44,0x73,0xcf,0x1,0x66,0x59,0x2f,0x7b,0x97,0xf9,0x6,0xcd,0x2b,0x9b,0x5e,0xbe,0x91,0x8c,0xf7,0x91,0xa7,0x62,0xaf,0x50,0xc6,0x65,0x17,0x5e,0x2,0x4,0x38,0x74,0xf5,0x82,0xff,0x88,0x74,0xaa,0x6c,0x1c,0x2c,0x4a,0x36,0xa7,0xd1,0xc5,0x3,0x5b,0xf1,0x12,0x15,0xd8,0x1d,0x82,0xde,0x12,0x85,0x17,0x20,0x8a,0xd9,0x4d,0x83,0x11,0xa3,0xd5,0x9,0x4c,0x76,0x43,0x8,0x90,0x59,0xb5,0x78,0xdd,0x93,0xf6,0x26,0x79,0xe8,0x7a,0x53,0xc3,0x4b,0x7,0x52,0x9d,0x2a,0x7f,0xe9,0x90,0xe9,0x89,0x4d,0x88,0xc8,0xa5,0x5a,0x5a,0x16,0x5c,0x6d,0xca,0x1c,0xc9,0xb9,0x7b,0x7,0x42,0x12,0x83,0x62,0x74,0x50,0x58,0xde,0x7a,0x7,0xc1,0x5a,0xa0,0x4a,0xd2,0x89,0x90,0x0,0x2e,0x93,0xa5,0x9b,0x18,0xe8,0x79,0xce,0x2e,0x96,0xb2,0x7a,0x1c,0xb9,0xfe,0xf1,0x68,0x6f,0x2,0x35,0xa1,0xc4,0x30,0x90,0xd2,0x8,0x89,0xe,0x95,0x73,0x59,0x49,0x0,0x3c,0x8f,0xc4,0xd6,0xa8,0x52,0x9d,0x25,0xbc,0x5,0x94,0x38,0x6e,0xd9,0x2,0x4b,0xe2,0x25,0x5,0x4c,0x86,0x65,0x4e,0x1e,0x59,0xb9,0xa3,0xad,0xc8,0xea,0x52,0xf2,0xfb,0xb9,0x6,0x42,0x75,0xd5,0xa7,0x59,0x5c,0x74,0xad,0x44,0x67,0xc1,0x20,0x46,0x1d,0x9,0xcb,0xb5,0x95,0xb4,0xcd,0x50,0xe3,0x8c,0xe4,0xda,0x59,0x53,0x85,0x80,0xd4,0x84,0xf,0xe2,0xb8,0x39,0x9e,0x73,0xa9,0xfc,0x39,0xb1,0x2d,0x44,0x7d,0xea,0x2c,0xf8,0x16,0x86,0x95,0x40,0xfb,0x62,0x8e,0x9,0x75,0x4a,0xd0,0xfc,0xc2,0x4a,0xa9,0x96,0x1a,0x60,0x2a,0xdd,0xf6,0x70,0xae,0x83,0x5d,0xd7,0xf5,0x16,0xea,0xa7,0x68,0x97,0x39,0xa5,0xe0,0x80,0x75,0x1d,0x17,0x74,0x71,0x3,0xbf,0xf0,0x4d,0x7f,0x7,0xbf,0xf2,0x3,0xdf,0xd,0x39,0xbf,0x80,0x9f,0xef,0x20,0xbb,0x33,0x2c,0xf7,0xae,0x70,0xf1,0xd2,0x97,0xe2,0xf6,0x1b,0x3e,0x2e,0x65,0x74,0x3d,0xdb,0xd1,0x23,0x38,0x2f,0x91,0xc,0x28,0x9,0x49,0x6c,0xe6,0xfb,0x23,0xc8,0xdb,0x51,0xff,0x45,0x84,0x5b,0x77,0x5e,0x33,0x3a,0x55,0xf8,0xf5,0x15,0x2e,0x1e,0xbe,0x83,0x47,0x7f,0xef,0xe7,0xe2,0xea,0xec,0xc,0x8b,0x1d,0xb0,0xec,0x96,0xd1,0x8e,0x5d,0x86,0x79,0xd0,0xa,0x60,0x59,0xce,0x80,0x65,0xc1,0x7a,0xb6,0x83,0x9e,0x9d,0x41,0x6f,0xde,0xc2,0xad,0x87,0x9e,0x86,0x5f,0xff,0x33,0xff,0x3b,0xf6,0x77,0xef,0xc3,0xf6,0x6,0x5f,0xaf,0xe7,0x57,0xe,0xe4,0xab,0x85,0x1d,0xb1,0x39,0xc4,0x57,0xd8,0x7e,0x1d,0xf3,0x60,0x71,0xac,0x22,0xd0,0xf5,0x80,0xfb,0x6f,0xfb,0x59,0x9c,0xff,0x6f,0x8f,0xe1,0x59,0x5f,0xf9,0xb5,0x70,0x5c,0x2,0xeb,0x0,0xd6,0x28,0x8a,0x53,0xab,0xdd,0x77,0xa3,0xc4,0x6a,0x30,0x5a,0x7c,0x7e,0x75,0x8d,0x67,0xff,0xc9,0x2f,0xc3,0xfe,0xb5,0x1f,0x7,0xbd,0xb8,0x9,0x3f,0x5f,0xe0,0xab,0x8d,0x51,0xd0,0x9d,0x7,0xe1,0xf7,0x57,0xbc,0xfd,0x2f,0xfd,0x59,0xd8,0xbb,0xdf,0xd,0xec,0xb4,0xe9,0xa3,0xa9,0xf,0xe7,0xc4,0xdc,0xf0,0x84,0x7b,0xe0,0xee,0xac,0xcf,0x8a,0x5b,0x97,0x65,0x8b,0x15,0xed,0xfe,0xf0,0xd4,0x76,0x91,0xd,0x56,0xba,0xa1,0x71,0x65,0x8e,0x33,0xe6,0x9f,0x9d,0xef,0x2e,0x70,0xe3,0xfc,0x26,0xfc,0xc,0xe3,0xe0,0x9f,0x12,0x9a,0xa5,0x26,0x11,0x80,0xc3,0x99,0x71,0x4f,0xae,0x7b,0x75,0x43,0xb6,0x53,0xee,0xa2,0x90,0x89,0x2c,0xe4,0x74,0x56,0x74,0xb7,0xee,0x5,0x8f,0x34,0x3d,0x11,0x99,0xd4,0x44,0xab,0x8d,0xc,0xf3,0x21,0xee,0x81,0x11,0xb4,0x7,0xa5,0x29,0x14,0xb3,0xc,0x82,0x5,0xa2,0x93,0xed,0xea,0x46,0xb4,0xc4,0xd9,0x59,0x59,0xb6,0x98,0x18,0x9f,0x15,0xd0,0xc4,0xf7,0x7b,0x8c,0x60,0x46,0x40,0x5c,0xd,0x50,0xb5,0xc,0xea,0xe6,0x5d,0x3f,0xc1,0x1,0xac,0x1a,0xed,0xe2,0xaa,0x30,0x9c,0xe6,0x9c,0xc2,0xa6,0x1d,0x32,0xc2,0xa5,0xf1,0x28,0xcc,0x8b,0x3d,0xb3,0x88,0xa6,0x9c,0xab,0x93,0x51,0x89,0x80,0xbd,0xbb,0x8b,0xb1,0xc2,0x1c,0x63,0x6c,0xa6,0x6c,0xb2,0x75,0x49,0x3c,0x31,0x5b,0xf1,0xd5,0x72,0x86,0xed,0xab,0x43,0x76,0x91,0x74,0x2a,0x41,0x1c,0x34,0x91,0xf8,0xf1,0x7e,0xd,0x24,0x36,0x33,0x5a,0x3e,0xa3,0xb5,0x1c,0x18,0x80,0x95,0x98,0x8,0xa4,0xe9,0x2b,0x22,0xd3,0xa5,0x6e,0xa5,0x51,0x87,0x37,0x9f,0x20,0xee,0x9e,0x58,0x16,0xfe,0x31,0xa6,0x58,0xf2,0xde,0x25,0x9d,0x27,0x87,0xb8,0x97,0xce,0xbd,0x3e,0x3c,0x9b,0x9,0x88,0x2b,0x51,0xbd,0x8d,0xee,0x5e,0xac,0xe9,0xd1,0x85,0xdf,0xc1,0xb1,0xce,0x44,0x36,0xba,0x43,0xa3,0x3b,0x50,0x58,0x7,0xc1,0xa8,0x3,0x26,0xf5,0xd9,0x6d,0x8c,0x4b,0xd7,0xc1,0xb1,0x77,0x32,0x87,0xf1,0x89,0x9a,0xb7,0xad,0x6e,0xc6,0xd4,0x6a,0x97,0xa9,0x8,0x97,0x78,0x94,0x40,0xf,0xcc,0x77,0x3d,0x90,0xf8,0x36,0x9f,0x1f,0x8d,0xfa,0x66,0xf5,0x2c,0x32,0x5d,0x1,0xc5,0x81,0x75,0xc4,0x26,0x55,0xe6,0xbf,0x13,0x28,0x33,0xc6,0x37,0xd3,0xcd,0x6f,0x75,0x9b,0x9d,0x1a,0x81,0x4d,0xf6,0x14,0x26,0xee,0x26,0x71,0x8,0x52,0x1d,0x95,0x81,0x7,0x88,0xd7,0x6c,0x9,0x97,0x48,0x36,0x5,0x73,0xdc,0xf9,0x59,0x1f,0x45,0x9a,0xaa,0x3e,0x14,0x9d,0x2e,0x1c,0xfa,0x1c,0x36,0xbb,0x13,0x1a,0x8c,0x8a,0x88,0x25,0x1,0x98,0xc,0xe1,0x23,0x5b,0xa1,0x33,0xde,0xe,0x7c,0xd3,0x3a,0x84,0xab,0xd6,0x3,0x56,0x27,0x2e,0x1c,0x89,0xe2,0x45,0x12,0x8a,0x39,0xee,0xf6,0x64,0xe7,0x54,0xa2,0x13,0xac,0x32,0xd,0xa3,0xa4,0x48,0x4c,0x55,0x53,0x3d,0xc8,0xc8,0xd1,0x28,0x18,0x17,0x81,0x95,0x70,0x72,0xec,0x4a,0x3a,0xa1,0x4a,0x57,0x4f,0xb,0x76,0x5c,0x80,0x7a,0x7d,0x53,0x9c,0x57,0x4d,0x5c,0x60,0x52,0x1a,0xb1,0xb8,0x3,0x3b,0x37,0x69,0x82,0x30,0x47,0x96,0x61,0xd1,0x4d,0xa4,0xa,0xd2,0x12,0xd,0x7e,0x86,0x77,0xfd,0xf8,0x7f,0x84,0xfe,0xc7,0xff,0x6f,0x2c,0x38,0x51,0xc8,0xa2,0xd0,0x77,0xdf,0xc5,0x83,0xaf,0xfd,0xed,0x78,0xf8,0xf7,0x7c,0x2,0xf6,0xfb,0x43,0x56,0x18,0xde,0x2c,0x8f,0xc7,0xc1,0x23,0x1b,0x4f,0xf1,0x90,0x94,0x1d,0x40,0x39,0x2b,0x7a,0x4f,0x8c,0x19,0xf2,0x8e,0xba,0x70,0xc1,0x0,0x87,0x28,0x96,0xfd,0x35,0x9e,0xf1,0xbb,0x7e,0xf,0x1e,0xfc,0xbc,0xcf,0xc1,0xe5,0xe3,0xf7,0x6,0xd5,0xc7,0xd7,0xc9,0x79,0x96,0xc9,0x51,0x9e,0xee,0x7f,0xf3,0x50,0x5e,0xd4,0xb0,0x7f,0xf0,0xe,0xf6,0xff,0xef,0xb7,0xe1,0x57,0xbe,0xf1,0xef,0x62,0xbd,0xfd,0x28,0x6c,0x1,0x80,0xb5,0x1e,0x7c,0x18,0xb0,0xc4,0x8b,0x94,0x11,0xec,0xe0,0xeb,0xdc,0x6c,0x36,0x36,0x1,0x80,0xdd,0xaf,0xfe,0x12,0x1e,0xfe,0xc3,0xbf,0x80,0xdd,0x73,0xde,0xb,0xcb,0xba,0x1f,0x6b,0x7d,0xf2,0x79,0xb9,0x12,0x72,0x2,0xb8,0xe4,0x6c,0x48,0x16,0xc8,0x7e,0x8f,0xe5,0x59,0x8f,0xe2,0xe6,0xc7,0x7d,0x2,0x56,0x35,0xf8,0x61,0x3f,0xda,0x3e,0x66,0x0,0x56,0x5c,0xae,0x8e,0xe5,0xd9,0x8f,0x60,0xff,0x8e,0x77,0xc0,0xf4,0x7c,0x8a,0xc1,0x78,0xa3,0x98,0x94,0x91,0x11,0xa8,0xcd,0xdc,0x81,0x62,0x2e,0xe3,0x16,0x77,0xba,0x3b,0xea,0xae,0x35,0x2c,0x19,0x59,0xf5,0x1e,0x4b,0xee,0x76,0xe1,0x8e,0x70,0x1a,0x3b,0xcc,0x81,0xb8,0x19,0xb0,0xb,0x14,0x35,0xa3,0xb1,0x55,0xb,0xa2,0xa6,0x93,0x6f,0xbb,0xd4,0x9c,0x5f,0x55,0x32,0x1a,0xb3,0xc1,0x4c,0x8e,0x2c,0x16,0xcd,0x59,0xbc,0x32,0xb0,0x8d,0x51,0xe6,0x53,0x33,0x41,0xbc,0x60,0x70,0x12,0xad,0x47,0x1d,0x7,0x95,0x45,0x83,0xcc,0xc6,0xe6,0x1c,0x41,0xbf,0x9b,0x2e,0xad,0x66,0xb8,0xbc,0x1c,0xa3,0x2b,0x9d,0xc1,0xf,0x87,0xe,0x76,0x2d,0x7b,0x62,0x12,0x9c,0xf,0xbb,0x57,0xac,0x80,0x8,0xe,0x7,0x32,0xb4,0x4a,0x1c,0x80,0x13,0xe8,0xd,0x44,0x9d,0xac,0xd9,0x30,0x94,0xe7,0x7e,0xd2,0xec,0x90,0x6d,0x33,0x6a,0xdf,0x9d,0xed,0xc6,0xe7,0xea,0xd0,0x6a,0x10,0x15,0x6,0xc8,0x90,0x43,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x9a,0xdd,0xda,0xf4,0xea,0x9e,0x89,0xd7,0x16,0x45,0xc5,0x23,0x8e,0xc0,0xcb,0x44,0xd7,0x4d,0x36,0x13,0x50,0xf,0xdd,0x4b,0xa4,0xb7,0xfd,0x96,0x52,0xa5,0x89,0x89,0x8f,0xc0,0x63,0x38,0xac,0x2b,0xcc,0xc6,0xfa,0x88,0xa,0x47,0x55,0xb1,0x2c,0xbb,0x1,0x6,0x5e,0x96,0x49,0x55,0x27,0xfd,0x8,0xd0,0x48,0xc8,0x2b,0xc9,0x8a,0x4e,0x57,0x70,0xd3,0x3,0x28,0xd8,0x5b,0xa9,0xa0,0x11,0x54,0x19,0xeb,0x44,0xc5,0x94,0x6b,0x87,0xd4,0xe7,0xe,0xfb,0x3d,0x2e,0xce,0xce,0xb0,0x2c,0x11,0x73,0x66,0x47,0x49,0x42,0xc,0xa7,0x64,0xc4,0xcd,0x1d,0xeb,0xba,0x42,0x7d,0x80,0xe5,0xcc,0xe,0xf3,0x70,0xac,0x4d,0xb4,0xa,0xe9,0x30,0x1c,0x82,0xb1,0x30,0x30,0xf,0x7,0x18,0x60,0x86,0x65,0x5e,0x97,0x63,0x99,0xe2,0x41,0xd5,0xf1,0xf0,0x79,0x70,0x88,0x8,0xf6,0x87,0x6b,0xd8,0xf5,0x7e,0xd0,0xff,0xa0,0x1b,0x44,0xf9,0x8c,0x2b,0x1a,0x2a,0x92,0x9a,0x89,0x95,0xe8,0x92,0xac,0xa2,0x30,0x22,0xd2,0xa9,0xbd,0xa2,0xdc,0x59,0x10,0x6a,0x2d,0xbb,0xf,0x55,0xc2,0xe8,0x54,0xbb,0xe5,0xd8,0x65,0x9d,0x63,0x39,0x83,0x63,0x1f,0x1d,0xda,0x0,0x61,0x1a,0xb0,0xdb,0x8d,0xa4,0x68,0xb7,0xd3,0x4a,0x3a,0x49,0xc3,0x25,0xdb,0x46,0x2c,0x37,0x9d,0x9d,0x1f,0x6f,0xcc,0x43,0x6d,0xaa,0x8e,0xb3,0xab,0x42,0x0,0x4a,0xe7,0x6e,0xa,0xb1,0xa6,0x6c,0xc6,0xe9,0x65,0xd1,0xf1,0xef,0x2e,0x58,0x6d,0x30,0xa4,0xae,0xf7,0x57,0x58,0x6d,0x8c,0x59,0xce,0x2f,0x2e,0xf0,0xe0,0x9d,0x3b,0xb8,0x75,0xeb,0x26,0x6e,0x5c,0x9c,0x63,0xb7,0x8c,0x67,0xbd,0xb,0xd3,0xa5,0xb9,0xfe,0x23,0x19,0x1a,0x49,0xe7,0x58,0x58,0xeb,0xea,0x58,0x6d,0xc5,0x7e,0x7f,0xc0,0xf5,0x7e,0x8f,0xcb,0xab,0x6b,0xdc,0xbb,0x77,0x1f,0xf7,0xaf,0x2e,0x71,0x7d,0xb5,0x1f,0x13,0x1e,0x55,0x9c,0x2d,0xb,0x5b,0x7f,0x8c,0xce,0xad,0xfb,0xe8,0x1a,0x8b,0x4f,0x2c,0x59,0x14,0x21,0x48,0x31,0xa6,0x2,0xeb,0x51,0x67,0x41,0x8e,0x6d,0xa6,0xab,0xcb,0xe0,0x94,0xd0,0x16,0xc0,0x5c,0xa4,0xab,0x10,0xed,0x74,0xf3,0x7,0x41,0x75,0x11,0xe2,0xca,0xb,0x38,0x7b,0x26,0x65,0x22,0x5,0xce,0x6e,0x5c,0x0,0x72,0x33,0xb3,0x8e,0xc3,0x72,0x6,0x91,0x1b,0xc0,0x43,0xcf,0x80,0xc9,0x2,0x97,0x95,0x66,0xcb,0xd5,0xba,0x30,0xaf,0xc,0xac,0xf4,0xc3,0xbb,0xed,0xac,0xf0,0x41,0x65,0x44,0x69,0x8a,0x7b,0x8f,0x2e,0xc1,0xec,0x77,0xba,0xad,0xc0,0xc5,0x19,0x6e,0xbd,0xe6,0xb5,0xb8,0x7a,0xf7,0x7b,0x20,0x97,0xf7,0xb1,0xe,0x6d,0xad,0x41,0xfb,0x98,0xbd,0x38,0x51,0xc5,0xe,0xa,0xac,0x8e,0x73,0x1d,0x43,0xb8,0x2b,0x0,0xbf,0xf1,0xaf,0x7e,0x8,0xfe,0xe0,0xb3,0x70,0xb8,0x71,0xb,0x8a,0xc3,0xcc,0xcb,0x2d,0xc5,0x18,0x5c,0x8a,0x26,0x24,0x31,0x92,0x10,0x83,0xd8,0xa4,0xa4,0xd9,0x8a,0x55,0x14,0x87,0xbb,0xef,0xc0,0xbd,0xef,0xfb,0x76,0x3c,0xed,0x8d,0x5f,0x0,0xe0,0x3a,0x2b,0x49,0x3,0xbb,0x45,0x4a,0x7,0x1a,0xdb,0xac,0xa,0x6c,0x8a,0x80,0xac,0x7,0xec,0x9f,0x78,0x27,0xfc,0xe2,0x6,0x7c,0xb7,0x83,0x29,0x70,0x36,0x72,0x54,0xf8,0xf9,0xd,0x9c,0xbd,0xf8,0x43,0x70,0xf9,0xe3,0x3f,0x85,0x9d,0x9c,0x8f,0xad,0x9b,0x6d,0x84,0x6a,0x1,0xb9,0x4e,0x53,0x25,0x56,0x76,0x32,0xc0,0x97,0x52,0x8e,0x72,0x0,0xcb,0x72,0x64,0x60,0xde,0xe6,0x98,0x31,0xab,0xce,0x6a,0xca,0x70,0x34,0x8b,0x4,0x65,0xab,0x36,0xdb,0x5f,0xab,0x3,0xba,0x93,0xca,0x58,0x95,0xda,0xd1,0x2a,0xc4,0x20,0x9f,0x7,0xb0,0xb0,0x7f,0x9f,0xc0,0xe2,0xe0,0x5c,0xaa,0x1a,0xb,0x40,0x5c,0x4,0x38,0xf5,0x89,0xa1,0xb0,0x68,0x5,0x23,0xab,0xae,0xcc,0x86,0x49,0xbf,0x20,0xc0,0x4e,0x41,0x19,0x4b,0x6d,0x6c,0x1,0x3a,0xe9,0x6b,0xa0,0xb6,0xaf,0xee,0x5f,0xe3,0x85,0xcf,0x7b,0xe,0xbe,0xf8,0x4f,0x7c,0x2e,0x76,0x67,0xb,0xce,0x77,0x3b,0x2c,0xcb,0x52,0x3a,0x10,0x52,0x60,0xcd,0x14,0xf5,0x69,0xaa,0x64,0xda,0x59,0x33,0x51,0xa9,0x49,0xb7,0xd7,0x8c,0xc3,0x5e,0xd9,0x66,0x38,0xa8,0x7d,0x9,0xa6,0x9b,0x1,0x6e,0x75,0xec,0xf,0x7,0x5c,0x5d,0xef,0x71,0xf7,0xde,0x7d,0xbc,0xe3,0x9d,0xef,0xc6,0x2f,0xff,0xda,0xdb,0xf1,0x73,0xff,0xfd,0x6d,0xf8,0x6f,0x6f,0xfb,0x79,0xbc,0xed,0xad,0xbf,0x88,0x27,0xee,0xde,0x5,0x20,0x38,0x3f,0x3b,0x7,0x54,0xb0,0x88,0xe0,0xb0,0x7a,0x61,0x56,0x66,0x5b,0x32,0x7a,0x6a,0x5,0x84,0x74,0x16,0x69,0x60,0x66,0x3b,0xb7,0x8b,0xe6,0x61,0xa2,0x4d,0xf5,0xce,0x6c,0x24,0xca,0xba,0x4,0x35,0x63,0x85,0x1f,0xc,0x7b,0x77,0xec,0xf7,0x86,0x65,0x51,0x3c,0xe3,0xe9,0x8f,0xe0,0x5,0xcf,0x7f,0xe,0x5e,0xf4,0xc2,0xe7,0xe3,0x85,0xcf,0x7d,0x5f,0xbc,0xf7,0xb3,0x9f,0x89,0x47,0x1e,0x7e,0x18,0xf,0x3e,0x70,0x1b,0xe7,0xe7,0xe7,0xd8,0xed,0x96,0x31,0x37,0x57,0x34,0x16,0xd0,0xf0,0x8e,0xb1,0xec,0x5e,0x38,0x7c,0x74,0xc1,0x6c,0x26,0x6a,0xf3,0x10,0x4a,0xde,0xfc,0x7c,0xce,0x70,0x60,0x8d,0xc3,0xda,0xcb,0xf1,0x72,0xc8,0xe3,0x56,0x7b,0xdc,0xcc,0x70,0xb5,0xdf,0xe3,0x70,0x58,0xb1,0xec,0x14,0xff,0xf7,0xdf,0xfe,0x87,0xf8,0xf7,0x3f,0xfc,0x23,0xb8,0x71,0xe3,0x16,0x29,0x72,0x96,0xdf,0xc2,0xa2,0xa5,0x49,0xff,0x7e,0xef,0xf7,0x5e,0x3,0x27,0xd2,0xe8,0x6e,0x4e,0x2,0x5e,0x9e,0x23,0x23,0x9d,0x86,0x3f,0xeb,0x6a,0xd8,0x1f,0xe,0xb8,0xbc,0xde,0xe3,0xee,0xdd,0xbb,0xd8,0x5f,0x5f,0x37,0xde,0x79,0x31,0xe6,0xc2,0x44,0x4a,0x70,0x75,0xff,0xa,0x7f,0xf4,0x8d,0xbf,0x1f,0x1f,0xf7,0xb1,0xaf,0xc6,0xfd,0x7b,0x57,0xd8,0xed,0x76,0x43,0x81,0x4f,0x85,0xcc,0xbc,0x8a,0x8b,0x90,0x2a,0x13,0x4a,0x6e,0x78,0x73,0xbc,0x17,0xd4,0x53,0x48,0xec,0x21,0x69,0x7,0xa9,0x64,0xb7,0x2c,0x12,0xf,0x49,0xe5,0xcc,0x21,0xeb,0xec,0x38,0xac,0x7,0xec,0xf,0x2b,0xae,0xae,0xae,0x70,0x79,0xb5,0xc7,0xe3,0x4f,0xdc,0xc5,0x3b,0xde,0xf9,0x4e,0xfc,0xfc,0x2f,0xfc,0x32,0x7e,0xf6,0xbf,0xbf,0xd,0x3f,0xf3,0x96,0x9f,0xc3,0x2f,0xff,0xca,0xaf,0xe2,0xf2,0xea,0x12,0x67,0x67,0x3b,0xec,0x96,0x1d,0x54,0x17,0xac,0xd4,0x9,0x28,0x45,0xd6,0x72,0x71,0x65,0xad,0x0,0xae,0xe8,0x53,0xd1,0x53,0x82,0xa2,0x56,0xd8,0x2f,0x81,0x4e,0xcc,0xd0,0xe8,0x4,0x9,0xf9,0xcf,0xac,0x87,0x91,0x6c,0xde,0x3f,0x1c,0xb0,0x3f,0x18,0xee,0x3c,0x78,0x1b,0x2f,0x7d,0xec,0x25,0xf8,0xb0,0x57,0xbc,0xc,0xaf,0x7a,0xf9,0x7,0xe1,0x3,0x3f,0xe0,0x45,0x78,0xef,0xf7,0x7e,0x26,0x6e,0xde,0xbc,0x81,0xf3,0xb3,0xf3,0x1,0xd4,0x24,0xd5,0xd7,0x6e,0x5d,0x5e,0xd7,0x17,0x49,0xaf,0xd9,0x58,0x3f,0xd7,0xfb,0x3d,0xae,0xae,0xaf,0xf1,0xf8,0xe3,0x77,0xf1,0x2b,0xbf,0xfe,0x76,0xfc,0xcc,0x5b,0x7e,0xe,0x3f,0xf2,0xe3,0x3f,0x89,0xff,0xf0,0x23,0x3f,0x86,0xb7,0xbc,0xe5,0x67,0xf1,0xee,0x77,0x3d,0x8e,0xb3,0xdd,0xe,0x67,0xcb,0x6e,0xe0,0x60,0xa6,0xe3,0xa3,0x7b,0x98,0xdb,0x45,0x3c,0xd2,0x6a,0xdf,0x7b,0x69,0x39,0x64,0xc1,0x86,0xea,0xac,0x8e,0x6e,0x93,0x4e,0x2c,0x5b,0xd7,0x9b,0x69,0x88,0xe8,0xa6,0x7f,0x80,0xc1,0xe3,0x67,0x81,0x8e,0xe0,0x83,0xb3,0x11,0xc2,0x8,0x12,0x56,0x8,0xeb,0x98,0xff,0xaf,0x96,0x22,0x39,0x21,0x18,0x91,0x22,0x20,0x67,0x92,0x48,0xc6,0xb5,0xd1,0x5c,0x34,0x11,0xb7,0xe2,0x8a,0xe8,0xd6,0x45,0x6b,0xb0,0xb1,0xdd,0x36,0x2,0x8b,0x47,0xfa,0xef,0x3e,0xdb,0xcb,0x3b,0xc1,0xea,0x8a,0xc5,0xaf,0x71,0xf6,0xa2,0xf,0xc0,0xee,0x85,0xcf,0xc7,0x61,0x7f,0x39,0x5a,0xac,0x51,0x89,0xec,0xa,0x31,0x5b,0x20,0x21,0xc0,0xf,0x86,0xeb,0xf3,0xb,0xc8,0x2f,0xbe,0x1d,0x57,0xff,0xee,0x87,0x60,0xcb,0x39,0x4,0xeb,0x30,0xcc,0x21,0x0,0x4c,0x32,0xef,0x56,0xc,0x34,0xa8,0xce,0xf6,0x59,0x20,0x71,0x27,0xd0,0x67,0x5d,0xd,0xa2,0x17,0xb8,0xf7,0x3d,0xdf,0x85,0xa7,0x7f,0xda,0x67,0xc3,0xce,0xd9,0xfa,0xac,0x10,0xff,0xe9,0x61,0xcd,0x99,0x5c,0xb2,0x44,0x1c,0xfb,0x91,0x19,0xc1,0xde,0xf6,0xcb,0xb8,0xfc,0xf5,0xf7,0xe0,0xfa,0x3d,0xef,0xc0,0x72,0xff,0x71,0xf8,0xd5,0x15,0xae,0x6f,0xdc,0x82,0xbd,0xe7,0xa,0x7,0xdd,0xe1,0x2c,0xe8,0x45,0x2e,0xa9,0xfa,0x15,0xa6,0x1e,0xcc,0x34,0xf0,0xd2,0x3b,0x61,0x2b,0xf7,0x92,0xbe,0xe2,0xd9,0xba,0xc4,0x3c,0xac,0x64,0x37,0x61,0x7d,0x3c,0xd1,0x6c,0xc8,0x88,0xa6,0x18,0xf7,0xb2,0x1e,0xac,0xf4,0xc6,0xc7,0x49,0x5f,0x58,0x13,0x25,0x7c,0xb9,0xe9,0x0,0xcb,0x68,0x60,0xa,0x4a,0x40,0x23,0x3b,0x51,0xc1,0x63,0x46,0x37,0x72,0x9,0x29,0x55,0x5f,0x63,0xe6,0xb8,0x16,0x8,0x6f,0xf6,0xc,0x17,0x17,0x98,0x59,0xca,0xb1,0x6,0xbb,0x22,0x2,0xa4,0x80,0x69,0x36,0x81,0xb4,0x5e,0xe6,0x48,0x67,0xdc,0xe2,0x23,0x4f,0x7b,0x8,0xbf,0xf7,0x93,0xde,0x30,0x36,0x9c,0xe8,0x53,0x88,0x1,0x5,0x62,0x5a,0x8e,0x90,0xb9,0x20,0x25,0x47,0x16,0xbe,0x2a,0x43,0x1f,0xa5,0x44,0xa2,0x8b,0x84,0xfc,0xcf,0xfc,0xb3,0x5f,0xf7,0x78,0xeb,0xcf,0xff,0x12,0x7e,0xe8,0xdf,0xfd,0x30,0xbe,0xe5,0x3b,0xbf,0xf,0xff,0xfe,0x87,0x7f,0x14,0x8f,0xbf,0xe7,0x9,0xdc,0xbe,0x7d,0x63,0xce,0x7c,0x7,0xa8,0x69,0xb5,0xb5,0xda,0xa5,0x47,0xa2,0x37,0xa5,0xd7,0xcb,0x86,0x29,0x39,0x2f,0x14,0xa,0x7c,0x41,0x3,0x9d,0xf7,0x1d,0xc5,0xc8,0xba,0x3f,0xe0,0xfa,0xfa,0x1a,0xeb,0xea,0x78,0xde,0xb,0x9e,0x8b,0xdf,0xf1,0xda,0x8f,0xc1,0xc7,0x7e,0xcc,0x6f,0xc1,0xcb,0x3f,0xf8,0x31,0x3c,0xeb,0xd1,0x67,0x60,0xb7,0x28,0xfe,0xd7,0xff,0x29,0xca,0x5c,0x59,0xd9,0xfb,0x46,0xb7,0x18,0x5d,0xfe,0xcf,0x4b,0x7f,0x57,0x26,0x50,0x52,0xd9,0xa0,0x6a,0xf3,0xcf,0xf7,0x7e,0xff,0xbf,0xc4,0xbf,0xfd,0xf,0x3f,0xd2,0x14,0x40,0x35,0x85,0x90,0x2c,0x29,0xc0,0x66,0x7b,0xfc,0xb5,0xff,0xe3,0xcb,0xf0,0xdb,0x5e,0xf5,0x72,0xdc,0xbf,0xbc,0x4e,0x63,0x96,0x1c,0xaf,0xcc,0x43,0x6d,0x74,0x33,0x66,0x81,0xe2,0x86,0xf5,0x60,0x30,0x59,0x71,0x71,0x7e,0x3,0x9f,0xfd,0x79,0x7f,0x12,0xff,0xec,0x9f,0xff,0x10,0x6e,0xdf,0xbe,0x3d,0xc6,0xe,0xd4,0xe9,0x62,0xf0,0xa4,0xbb,0xe1,0x25,0x2f,0x7a,0x1e,0x3e,0xe6,0xb7,0x7c,0xf8,0xe9,0xa7,0x42,0x86,0x30,0x41,0x91,0xad,0x2a,0xa0,0xc6,0xa4,0x7d,0x71,0xf6,0x24,0xa1,0x31,0x70,0x2,0xf0,0xa9,0xf2,0xbf,0xf4,0x96,0x1e,0x7f,0xfc,0x9,0xfc,0xe4,0x7f,0xf9,0x19,0x7c,0xc7,0x9b,0x7f,0x10,0x6f,0xfa,0xae,0x7f,0x8e,0x9f,0xf8,0xa9,0x9f,0xc6,0x6e,0xb7,0xe0,0xfc,0xec,0x7c,0x8c,0x7a,0x27,0xd6,0xc1,0x7c,0x4d,0x6b,0x63,0x9e,0x37,0xb9,0x97,0xe1,0x5a,0x3a,0x8c,0xf2,0x7b,0xb6,0x6e,0x9e,0x83,0x30,0xa4,0x5a,0x46,0xa2,0xa7,0x0,0xec,0xb0,0xe2,0xde,0xe5,0x25,0x1c,0x82,0x57,0xbc,0xe2,0x65,0xf8,0x94,0x4f,0x7c,0x3,0xde,0xf0,0xda,0x57,0xe3,0x45,0xcf,0x7b,0x3f,0x9c,0x9f,0x9f,0x15,0x18,0x50,0x43,0x23,0xa1,0xb0,0x84,0x89,0x71,0xe2,0x19,0xfa,0x93,0xf3,0x88,0x70,0xb,0x37,0x0,0x0,0xcf,0x7a,0xf4,0xe9,0x78,0xd1,0xb,0x9e,0x83,0x8f,0x7e,0xd5,0x87,0xe2,0xb3,0x1,0x1c,0xd6,0x15,0x6f,0xf9,0x6f,0x6f,0xc5,0x9b,0xbe,0xfb,0xfb,0xf1,0xcd,0xdf,0xfa,0xed,0xf8,0xd1,0x1f,0xfd,0x71,0x9c,0xed,0x76,0xb8,0x71,0x7e,0x31,0x7c,0x13,0x12,0x14,0x6b,0x80,0x2e,0xa5,0x71,0x43,0x71,0x35,0xd6,0x55,0xa,0x6e,0x85,0x50,0x65,0xe0,0x51,0x94,0xde,0xa4,0x90,0x4f,0x89,0x92,0x82,0x1f,0xbd,0xf3,0xdd,0xe6,0xb9,0x25,0xa2,0x35,0x66,0x70,0xa9,0x38,0xa7,0x34,0xf,0x24,0x6d,0x64,0x5f,0xbd,0x89,0x6e,0x69,0x8c,0xe5,0xa4,0x7c,0x9f,0xdd,0x6a,0xa6,0x38,0xb9,0x69,0xb9,0x59,0x87,0x82,0x91,0x65,0xd5,0x94,0x8a,0x5a,0x5b,0xdd,0x61,0x95,0xc6,0x27,0xc9,0x87,0x93,0x46,0x18,0xa,0xb9,0xbe,0xc2,0x23,0xbf,0xed,0x35,0xc0,0x8d,0x33,0xe0,0xde,0x55,0x76,0x17,0x54,0x26,0x37,0x5b,0x64,0xb4,0xe7,0x43,0x14,0xc7,0x87,0x14,0x25,0x6e,0x9c,0xe3,0x89,0xef,0x7d,0x33,0xd6,0x77,0xbd,0x1b,0x76,0xe7,0x19,0x58,0x94,0x45,0x77,0x86,0x82,0x5f,0x6e,0xa8,0xd9,0x7b,0x2a,0xbc,0x9c,0x43,0x76,0x2,0x3f,0xcc,0x97,0xb0,0x13,0x18,0x6e,0xe1,0xea,0xbf,0xfd,0x77,0x3c,0xf1,0x63,0xff,0x9,0x17,0x1f,0xf5,0x2a,0xe8,0xfe,0x3a,0xeb,0x58,0xd,0x24,0xf5,0x4,0x3b,0x56,0x16,0xe7,0x79,0x38,0xaf,0x30,0x98,0x2b,0xce,0xce,0x1f,0xc4,0x2f,0x7e,0xed,0x17,0xe3,0xea,0xfb,0xdf,0xc,0xbb,0x79,0x13,0xc0,0x1,0x8b,0x3,0xf0,0x3,0x6c,0x77,0x3,0xbb,0x9b,0x77,0xaa,0x6d,0x4c,0x56,0xa0,0x4e,0x8a,0x30,0x8a,0x13,0xc2,0xf,0xd1,0x4a,0xa,0xdb,0x51,0x45,0x53,0x97,0x2b,0x44,0xaf,0x37,0x1f,0x74,0x1a,0x3f,0xb5,0x2e,0x40,0x64,0xeb,0xa1,0x5d,0xc0,0x33,0x53,0x36,0x15,0xc8,0xd9,0xe7,0xc,0x62,0x6d,0x91,0xa,0x23,0x77,0xb5,0xb2,0xfa,0xf9,0x77,0x94,0x67,0x87,0x6d,0xdc,0x5b,0x42,0x2f,0x1e,0x6e,0x5f,0x4,0x52,0x33,0x2b,0xa4,0x53,0xa0,0x70,0x5,0xe8,0x3e,0x97,0x1b,0x8e,0xf4,0x18,0x37,0x29,0x56,0x3f,0x0,0x36,0x5a,0xb9,0x57,0xfb,0x3d,0x2e,0xce,0xcf,0x4a,0x3d,0xce,0xba,0x17,0x80,0xd3,0x67,0x3a,0x2b,0x33,0xf2,0xec,0x3d,0x5a,0xc5,0x2e,0x84,0x61,0xf1,0x44,0xd4,0xc7,0x6f,0x18,0xd1,0x2e,0xb7,0xba,0xc,0xbf,0xd9,0x81,0x78,0xb6,0x9c,0xe1,0x45,0xcf,0x7b,0x2e,0x5e,0xf8,0xbc,0xe7,0xe2,0xb3,0x3f,0xfd,0x53,0xf0,0x93,0xff,0xf5,0x2d,0xf8,0xfa,0xbf,0xfb,0x8f,0xf0,0x8f,0xbe,0xf5,0x4d,0x78,0xfc,0xf1,0x27,0x70,0xf3,0xe6,0x4d,0x2c,0xba,0x51,0x82,0x14,0xce,0xa,0xfd,0x18,0xbc,0x39,0xcd,0x4e,0x9c,0xb9,0xfc,0x4e,0xe8,0x6,0x19,0x98,0x9d,0x91,0x18,0x1b,0x2e,0xaf,0xf7,0xb8,0xde,0xaf,0x78,0xf9,0xcb,0x3e,0x8,0x9f,0xf7,0x87,0x3f,0x3,0xbf,0xfb,0xf5,0xaf,0xc1,0x9d,0x7,0x6e,0x27,0x15,0xf2,0x7f,0xf1,0x1c,0x61,0x34,0x45,0x6a,0x10,0x19,0x4b,0xb9,0x6e,0xf4,0x15,0x5b,0xe2,0xc4,0x99,0xb5,0x3a,0x60,0x3a,0x5,0x69,0x62,0x94,0x64,0x4,0x6c,0x54,0xac,0x81,0xdf,0x49,0xc5,0x84,0x60,0xab,0xcd,0xf9,0xb6,0xcd,0xc3,0xca,0x15,0x17,0xbb,0x5,0xba,0x5b,0x70,0xe7,0xce,0xed,0xcd,0xb3,0xf3,0x5e,0xb9,0xf6,0x53,0x1a,0x66,0x2b,0x5c,0x4,0x37,0x6e,0xdf,0xc4,0xb2,0x54,0xb2,0xa9,0x3a,0x5a,0x63,0x23,0x61,0x25,0xe5,0x35,0x55,0x5c,0x5e,0x5d,0x1d,0x27,0x9b,0x4e,0xbb,0xd7,0xd1,0x4,0xf,0xb2,0xa3,0xa6,0x7d,0xec,0xc1,0xf1,0x1d,0x9b,0x1e,0x81,0xa7,0x97,0xc4,0x1c,0x6f,0x9a,0xd4,0xd2,0xf8,0x1f,0x7d,0x77,0xee,0xb8,0x73,0xe7,0x1,0x7c,0xf8,0x87,0xbd,0x1c,0xaf,0x7c,0xe5,0xcb,0xf0,0x25,0x5f,0xf8,0x47,0xf1,0x1d,0xdf,0xf3,0x3,0xf8,0x9a,0xbf,0xfe,0xb7,0xf0,0x63,0xff,0xe9,0x27,0x71,0xeb,0xe2,0x2,0x67,0x67,0xbb,0xdc,0xef,0xe6,0x23,0xf9,0x6f,0xab,0x9d,0xf7,0x80,0x87,0x85,0xba,0x54,0xd7,0x35,0x1d,0x2d,0x31,0x46,0x77,0x93,0xf2,0xb8,0x60,0x81,0x39,0x70,0x75,0x7d,0x8d,0xab,0xfd,0x1,0xbf,0xf5,0xa3,0x3e,0x12,0x5f,0xfa,0x45,0x9f,0x87,0xd7,0x7c,0xf4,0x87,0x17,0x9f,0x5e,0x81,0xd5,0xd7,0xd2,0xc2,0xf0,0xea,0xb2,0x44,0x81,0xab,0xb1,0x17,0x9b,0xaa,0xa6,0x90,0x4e,0x25,0x9e,0xb2,0x8,0x88,0xb3,0x73,0x11,0xc5,0x8b,0x5f,0xf8,0x7c,0xfc,0xa9,0x2f,0x78,0x23,0xfe,0xd8,0xe7,0x7e,0x26,0xbe,0xf3,0x7b,0x7f,0x0,0x5f,0xfd,0x57,0xff,0x6,0x7e,0xec,0x3f,0xfd,0xc4,0x78,0xe,0xbb,0x33,0x18,0xc,0xcb,0x22,0x58,0x6d,0x28,0x43,0xe6,0x7e,0xc,0xb5,0xcd,0xf4,0x3c,0x70,0x6c,0xac,0x13,0xb,0xe3,0x23,0x5b,0x2e,0x5e,0x19,0xe4,0x96,0xd2,0x65,0x38,0xd8,0xea,0x9,0xe6,0x92,0x97,0xe,0x70,0x7a,0x8e,0x27,0xb5,0x4b,0x68,0x26,0x23,0xe5,0x86,0x96,0xe2,0xf,0xa,0x2c,0x8a,0x5,0xe3,0x7f,0x4e,0x3c,0xe2,0xd1,0x25,0xf0,0x36,0x13,0x94,0x4,0x86,0x15,0x0,0xa9,0xd6,0xa0,0xa5,0x43,0x58,0x66,0xb1,0x41,0x2f,0x8b,0xd3,0x37,0x74,0xc5,0xd7,0x3d,0xf4,0xe2,0x1c,0x77,0x3e,0xfa,0xd5,0x58,0x2f,0x2f,0xb1,0xac,0x96,0xa0,0xe,0x9,0x93,0x2,0x3,0xce,0x96,0x1d,0x74,0x96,0x9,0x3b,0x1d,0x36,0x95,0xcb,0xe5,0x1e,0x8f,0xbf,0xf9,0xdb,0xe1,0xe7,0x17,0x30,0xac,0x8,0x7b,0x32,0x21,0xbb,0xd6,0x65,0x1a,0x68,0xc4,0x42,0x5b,0xd7,0xc3,0x6c,0x4b,0x8d,0x8d,0x11,0x5a,0xfe,0xbb,0x45,0x21,0xbb,0x33,0x98,0x2c,0xb8,0xfb,0x7d,0xdf,0x6,0x5b,0x14,0x6b,0xfc,0x3d,0x2f,0x14,0x30,0xd2,0x84,0xa7,0xc3,0x15,0x14,0x82,0x5,0x8a,0x1d,0xc,0x7b,0x5d,0xf1,0xe8,0xa7,0x7d,0x26,0xf0,0xc0,0x83,0x58,0x1f,0x7a,0x16,0xf6,0xf,0x3d,0xb,0x87,0x3b,0xcf,0x0,0x1e,0x7c,0x16,0x96,0xdb,0xf,0x6c,0xe8,0x89,0x92,0xfa,0xff,0xa1,0x54,0x58,0xf3,0xe1,0xee,0x14,0x18,0x3c,0x69,0x77,0x4c,0xc1,0x1e,0x42,0x7d,0x18,0x1b,0x80,0x49,0xf7,0x39,0x27,0x74,0xb0,0x37,0x97,0xdd,0x1a,0xb0,0x7,0x3e,0x43,0xe1,0x90,0xa5,0x5a,0x64,0x29,0x3c,0x13,0x98,0xb,0x94,0x5f,0xbc,0x6,0x10,0x88,0x4e,0xd2,0xe0,0x7f,0xeb,0x6c,0x53,0xb3,0x4a,0x62,0x88,0x67,0xa4,0x16,0x59,0xba,0xe3,0x19,0xcd,0xf,0xb,0xed,0x5d,0xa,0xcb,0x96,0x28,0x70,0xf6,0x62,0xf,0xb0,0x91,0xaf,0xf3,0x67,0x3a,0x40,0x58,0xa2,0xcb,0xc0,0x9a,0x98,0xcd,0x6b,0xb4,0xc,0xae,0xe9,0x9c,0x35,0x3b,0x37,0x1a,0x88,0x72,0x92,0x33,0xaf,0x67,0xe3,0x29,0x9f,0x1f,0xe6,0x48,0x2a,0xe4,0xd5,0x4e,0xad,0xc,0x39,0x29,0x4f,0x25,0x4f,0x11,0x5e,0xba,0xfe,0x46,0x31,0x63,0x46,0xc5,0xf7,0xd8,0x8b,0x5f,0x88,0xaf,0xfb,0xea,0x2f,0xc1,0xf,0xfc,0xd3,0x6f,0xc4,0xab,0x5f,0xfd,0x5b,0xf0,0xc4,0xbd,0x4b,0xec,0xf7,0x87,0x62,0xd7,0x24,0x90,0x52,0xbb,0x1d,0x30,0x51,0x93,0xb2,0xd7,0x4d,0x74,0x5f,0x41,0x81,0xa7,0x74,0xd2,0xe9,0xd6,0xfd,0x1,0x77,0xef,0x5d,0xe2,0x91,0xa7,0x3f,0xd,0x5f,0xf7,0x57,0xbe,0x2,0x3f,0xf8,0x1d,0xff,0x0,0xbf,0xff,0x53,0xde,0x80,0x3b,0xb7,0x67,0xb2,0xa1,0x92,0x74,0x3a,0xf8,0x53,0xdc,0xcb,0xc9,0x3f,0x77,0xb2,0x4e,0xd9,0xc8,0x27,0xeb,0x38,0xa8,0x64,0x3e,0x57,0x9d,0x7a,0xe8,0x4b,0xcc,0xe6,0xa7,0x7f,0x80,0x68,0x68,0xb5,0x6b,0x59,0x76,0x4b,0xa1,0xbe,0x2d,0x5,0x6f,0x47,0x1c,0x4b,0x6d,0x3e,0x2,0xa0,0xa5,0x32,0xa2,0x8,0x56,0x5f,0x1,0x37,0xac,0xeb,0x7e,0x4,0xeb,0xa6,0xcd,0xe5,0x3d,0x89,0x76,0x3f,0x1a,0xcb,0xea,0xb2,0xc3,0xa2,0xcb,0xe8,0xa6,0xd9,0x3a,0x63,0x7d,0xd,0x82,0x55,0xb,0xb8,0x6a,0xbe,0xb1,0xfd,0xa6,0xca,0x5e,0x92,0x21,0x13,0x21,0x61,0x8c,0x14,0x34,0x18,0x2a,0x3a,0xfa,0x6d,0xaa,0x31,0x61,0xe3,0xa4,0x48,0x4a,0xc8,0x2c,0xd6,0xa0,0x92,0x2f,0x83,0x94,0x8d,0xb4,0xff,0xf,0x2c,0x43,0x1e,0x17,0xa7,0x83,0x9c,0x39,0x6e,0xdf,0xba,0x89,0x4f,0xfb,0xa4,0xdf,0x85,0x7f,0xfb,0x3d,0xff,0x4,0x7f,0xf9,0x2b,0xfe,0x2c,0x96,0xf3,0x1b,0x78,0xe2,0xfe,0xe5,0x18,0xf,0x61,0x54,0xac,0xb6,0x1a,0xb1,0xbe,0x94,0xe4,0x94,0x63,0xc,0xea,0xcd,0x38,0x2e,0xe3,0x8a,0x4e,0xe0,0xef,0xb2,0x60,0x71,0x40,0x7c,0xc5,0xfd,0xcb,0x4b,0xdc,0xba,0xf3,0x0,0xbe,0xfe,0xaf,0x7d,0x35,0x7e,0xe0,0x4d,0xdf,0x84,0xdf,0xfe,0x5b,0x3f,0x2,0xb2,0x8c,0x35,0xb1,0x4c,0x8b,0x65,0x49,0x42,0x76,0x8c,0xd4,0xbd,0xd9,0x3a,0x27,0x5d,0x9a,0xe2,0x9c,0x6c,0x35,0x49,0x4e,0x3d,0x88,0xc6,0xca,0x94,0x86,0x81,0xbe,0x71,0x7e,0x8e,0x4f,0xf9,0xf8,0xdf,0x89,0x7f,0xfd,0xbd,0xff,0x4,0x7f,0xee,0x4b,0xbf,0x10,0x7b,0x38,0xee,0x5d,0xde,0x87,0x4e,0x57,0xc1,0x25,0x46,0x2b,0x42,0x9d,0x62,0xd2,0x40,0xd0,0x69,0xb7,0xae,0xd4,0x1c,0x89,0xe5,0x5c,0xa,0x42,0x92,0x67,0x89,0x28,0xaf,0xdb,0x5a,0x87,0xba,0xb1,0x2e,0x4f,0x6b,0xc6,0xf0,0xd0,0x76,0x77,0x98,0x58,0x66,0x1f,0x55,0xed,0x4f,0x91,0x5e,0xd2,0xbd,0x1f,0xa6,0x1b,0x13,0x71,0xb9,0xdb,0xe5,0xa2,0x91,0xe6,0x45,0x3c,0x73,0x26,0x6b,0x1d,0xa8,0x26,0xb7,0xda,0x9c,0x88,0xc8,0x19,0xd0,0x5b,0xd7,0xce,0xd2,0x95,0xcf,0xf6,0x8e,0xb3,0xf5,0xa,0x37,0x5e,0xfc,0x12,0xdc,0x78,0xbf,0xf7,0xc3,0xd9,0xfe,0x1a,0x3a,0x95,0x3,0x77,0xe,0x2c,0x10,0xec,0x54,0x71,0x3e,0x77,0x90,0xad,0x8e,0xdd,0x22,0xd8,0xa9,0x61,0x3d,0xbf,0xc0,0xd5,0x4f,0xfc,0x34,0xee,0xbf,0xed,0xad,0xd8,0x9f,0xdd,0x9c,0x99,0x2d,0x53,0x5a,0xc6,0x7d,0x5b,0x78,0x6f,0x6,0x15,0x43,0x97,0x81,0xf6,0x8f,0x65,0x11,0xe6,0x26,0xeb,0x5c,0x1e,0x37,0xef,0xe0,0xde,0xbf,0xf9,0x37,0xb0,0x5f,0x7e,0x3b,0x6c,0x39,0x43,0xfa,0x7a,0x9a,0x53,0xc7,0x3,0x5,0xbe,0x60,0x1f,0xec,0x39,0x41,0xd8,0x5d,0x3e,0x8e,0xdb,0xaf,0xfa,0x50,0xec,0x5e,0xf8,0x3c,0xec,0xf6,0x77,0xb1,0x13,0xc3,0xd9,0x1c,0x43,0x8,0x3d,0x31,0x47,0x7f,0x8e,0x92,0xa7,0xd9,0x94,0x16,0xad,0xc4,0xb1,0xc,0x7e,0xe7,0x1,0x29,0x18,0xe0,0x14,0x27,0xb,0xd0,0x84,0xb5,0x79,0x6d,0x4,0xaf,0x41,0x79,0xa1,0xa6,0xb1,0x71,0x4c,0x17,0x56,0x19,0x9b,0xdc,0xe4,0x79,0x30,0xa7,0x73,0x19,0x24,0x83,0xa4,0xcd,0xcd,0x66,0x1,0x58,0x9,0xc3,0x8b,0xe6,0xc2,0xe2,0xd3,0x23,0x22,0xed,0x24,0x9b,0xf6,0x7c,0xf0,0x5d,0x43,0x18,0x29,0x9d,0xba,0xc2,0x4b,0x21,0xe6,0x92,0x1,0x9a,0xb1,0x2e,0x6b,0xeb,0x7e,0xac,0x8d,0xe3,0x6e,0xb3,0x8b,0x28,0x93,0x69,0xe1,0x44,0x7d,0xaf,0x24,0x14,0x14,0x22,0xfc,0x7f,0xa0,0x2a,0xf7,0x56,0x91,0x6e,0x14,0x16,0xd8,0x76,0x7c,0x43,0x8b,0xc3,0xd1,0x71,0xb7,0x15,0x1a,0xa5,0x77,0xd4,0x34,0xf3,0x83,0x69,0xa0,0x78,0xec,0x3,0x5e,0x84,0xef,0xf8,0x7,0x5f,0x8f,0x2f,0xff,0xe2,0xcf,0xc7,0xe5,0x7e,0xc5,0xfe,0xb0,0x9f,0x4c,0x93,0x30,0x64,0xaa,0x71,0x96,0x80,0xbb,0x34,0xf1,0xcd,0x4a,0xe0,0xc2,0xda,0xa0,0x63,0x7f,0x1b,0xe,0x87,0x15,0x4f,0xdc,0xbb,0xc4,0x6b,0x5e,0xf3,0xd1,0xf8,0x97,0xff,0xec,0x9b,0xf1,0x39,0x9f,0xf1,0xc9,0x38,0x3b,0xd3,0x39,0x5a,0xdb,0x95,0xd2,0x99,0xb0,0x1,0xcd,0xe9,0xe4,0xe6,0x58,0x4c,0xb5,0x63,0x7f,0x8e,0x5a,0xf9,0xbe,0xcd,0xa0,0xe3,0xa0,0x96,0xa6,0x9f,0x11,0xef,0xbd,0x3d,0xc9,0xb0,0xe1,0xb5,0xae,0x8c,0xa8,0x52,0xf6,0xad,0xac,0xd0,0x56,0x14,0xbc,0xa9,0x7,0x30,0xf1,0x3d,0xfc,0xb3,0x76,0x9d,0xfc,0xdf,0xa4,0x6a,0x17,0x63,0x21,0xf6,0x17,0x49,0xf0,0xb4,0x95,0x8f,0x7a,0xe0,0x55,0x62,0xe4,0x68,0x66,0x34,0xec,0xf0,0xe6,0x8d,0xc0,0x6f,0x2f,0xe8,0x91,0xc9,0x76,0x29,0xbf,0xe0,0xa2,0xa3,0xa5,0x71,0x98,0x55,0xae,0xc7,0xa,0x3a,0xdb,0x86,0xc9,0xe6,0xed,0xf8,0x93,0xe5,0x6b,0xc6,0xb2,0xfb,0x92,0x85,0x88,0x42,0x70,0x7e,0x7e,0x3,0x7f,0xea,0xf3,0xdf,0x88,0x7f,0xf1,0x1d,0xdf,0x84,0x97,0x7c,0xc0,0xfb,0xe3,0xde,0xfd,0xab,0x2,0xd2,0x6a,0x8,0xc4,0x45,0xf7,0xc2,0x13,0x0,0xda,0xb1,0x67,0x5,0xf8,0x4d,0xf6,0x79,0xf2,0xf8,0x1d,0x8f,0x3f,0x71,0x1f,0x8f,0x3d,0xf6,0x12,0xfc,0xd0,0x77,0xfe,0x63,0x7c,0xce,0x67,0x7e,0xea,0xf8,0xcc,0x65,0x81,0xca,0x32,0x13,0x5c,0xcd,0x64,0xbc,0x26,0x96,0x46,0xac,0xb6,0x6d,0x17,0xfc,0x7f,0xb6,0x2f,0xd5,0xdd,0x6d,0x3d,0xba,0x15,0x13,0xa0,0x29,0x10,0xdc,0x3c,0xbf,0xc0,0x57,0xfc,0xe9,0x3f,0x81,0xef,0xf8,0xc7,0x7f,0x7,0xf,0x3d,0xfd,0x11,0x5c,0x5e,0x5d,0x41,0x2c,0x70,0x32,0xd3,0x44,0xcd,0xfc,0x64,0x7e,0x1f,0x5a,0x12,0xd0,0xa9,0x17,0x11,0x5a,0x0,0x46,0xe,0xbd,0x34,0x72,0x62,0x1,0x22,0x94,0x80,0x97,0x93,0x5f,0x70,0xf9,0xbb,0x87,0x3a,0x91,0x2b,0xea,0xe7,0x1,0xb0,0x5a,0x91,0x6d,0x3f,0x93,0x40,0xe7,0x13,0x97,0xd7,0x48,0xf9,0xca,0xc9,0xb7,0xd9,0x9d,0x5a,0xa9,0x9b,0x79,0x1d,0x7c,0x22,0xf0,0x23,0x31,0xd1,0x9a,0x53,0xa3,0x14,0x98,0x40,0x9c,0xea,0xc8,0x40,0x77,0x2a,0x58,0xec,0x1a,0xb7,0x5f,0xf7,0x9,0xb8,0xbc,0xb5,0xc0,0x77,0xa,0x3b,0x53,0xc8,0xf9,0x2,0xec,0x80,0x75,0xa7,0x38,0x2c,0x8a,0x55,0x1,0x55,0xc7,0xb2,0x1b,0x1c,0xe2,0xfb,0xa,0xc8,0x8d,0xdb,0x78,0xe7,0x77,0xbf,0x9,0x7e,0xd8,0x61,0x95,0xb3,0x79,0x3e,0xb,0x56,0x1f,0xba,0xfb,0xb6,0xae,0x58,0xd7,0x75,0x30,0x0,0x7c,0x85,0xa1,0x44,0x6d,0x6c,0x5d,0x4b,0xd3,0x7a,0x72,0x92,0x23,0x61,0x5f,0x77,0x3b,0x1c,0xde,0xf5,0x6e,0xdc,0xff,0xa1,0x7f,0x9,0x9c,0xdf,0xa0,0xe,0x2a,0x7b,0x65,0x5b,0xd1,0x33,0x92,0x67,0x1b,0x49,0x81,0x40,0xcc,0x60,0x17,0x82,0x7,0x3e,0xf6,0x13,0xe0,0x57,0x97,0x50,0x1b,0xc9,0x46,0x8a,0xa2,0x24,0x3b,0x5c,0x93,0x82,0x23,0x53,0x8e,0x30,0x3c,0x14,0x5c,0xa5,0x89,0x80,0x8c,0xe,0x5,0x71,0xbd,0x1d,0xa9,0xeb,0x9f,0xf7,0x32,0x21,0x91,0x20,0x33,0x91,0x42,0x4,0x93,0x21,0xcf,0x96,0x67,0xcc,0xca,0x8f,0x9c,0x10,0x3a,0xa,0x70,0x13,0xdf,0x1f,0xfc,0xe5,0x56,0xe9,0x92,0xfa,0x19,0x71,0x61,0x79,0xfd,0x85,0xdb,0x5a,0x4e,0x9f,0xb5,0xd2,0x69,0xf7,0x41,0x4d,0xaa,0xc0,0x33,0xe,0x7c,0x5b,0x7a,0x20,0xe,0x1b,0x82,0x32,0x4d,0x22,0xed,0xfd,0x15,0x89,0xbf,0xd0,0x60,0x96,0x80,0xdc,0xea,0x8e,0xf0,0x26,0x5b,0x3a,0x8d,0x1f,0xd7,0x0,0x31,0x83,0x6e,0x1a,0xf3,0xc,0xc2,0x91,0xa6,0x2a,0x8b,0x8d,0xfb,0xc0,0x53,0x87,0x98,0x13,0xa,0x85,0xc2,0x5e,0xe2,0x4c,0x8d,0x5,0xbe,0xf4,0xb,0x3f,0x17,0x7f,0xeb,0x6b,0xff,0x2,0xae,0x56,0x60,0xbf,0x3f,0x8c,0x64,0x69,0x39,0xd6,0x60,0xe7,0xe8,0x65,0x42,0xe2,0xc0,0xd9,0x4c,0xb1,0x39,0xf2,0x18,0x87,0xfe,0xdd,0xcb,0x3d,0xfe,0xc8,0xe7,0x7e,0x16,0xbe,0xe5,0x1b,0xff,0x26,0xde,0xe7,0xbd,0x1f,0x85,0x13,0x37,0xdb,0xcd,0x9a,0xec,0x7a,0x12,0x1f,0x4e,0x28,0x4e,0xfe,0xa6,0xe5,0xa4,0x53,0x2c,0x11,0xee,0xac,0x70,0x55,0x26,0xac,0xeb,0x8a,0xad,0xf2,0x31,0xb6,0x24,0x6,0xd6,0xb5,0x80,0x74,0x94,0xb9,0x93,0x79,0x58,0x88,0x8d,0xb1,0x94,0x2a,0xb5,0x4f,0x13,0xb0,0xe9,0x64,0x8,0xb3,0x91,0xf6,0xce,0xa4,0x22,0x40,0x76,0x22,0x58,0x26,0x37,0x7f,0x6b,0xdd,0xca,0x7a,0xd,0x9e,0xa3,0x2f,0x24,0xfe,0x2,0x24,0xdf,0x2d,0xa4,0xbe,0x24,0x27,0x6e,0x3a,0x1d,0xe3,0xa2,0xca,0x9d,0xb2,0xbd,0x23,0x36,0x97,0x0,0x91,0x90,0xe,0x46,0x75,0xdf,0xfc,0x4,0xfe,0xe3,0xf4,0xa1,0xe8,0x74,0x69,0xb9,0xee,0xbd,0xf5,0x6,0xe1,0x6,0xbc,0xec,0xa5,0x8f,0xe1,0xfb,0xbe,0xfd,0xef,0xe3,0x95,0xaf,0xfa,0x30,0x3c,0x7e,0xf7,0x12,0x98,0x5,0x63,0xc8,0x75,0x97,0xeb,0x2b,0x48,0x6f,0x12,0x24,0x4e,0x54,0xa,0x9a,0xcb,0xae,0xca,0x85,0x27,0xee,0xde,0xc7,0x47,0x7d,0xe4,0x87,0xe3,0xfb,0xde,0xf4,0xf,0xf1,0xe2,0x17,0x3f,0x1f,0xab,0x59,0x49,0x6c,0x67,0x32,0xd5,0x5d,0x29,0x73,0x8e,0xaf,0x5e,0xac,0xad,0xe3,0x14,0x87,0xb6,0x84,0xc3,0x4f,0xae,0xd1,0x6e,0x39,0x9f,0x60,0xc4,0xa0,0x11,0x52,0x62,0x19,0x54,0xe1,0xdf,0xfe,0xd1,0x1f,0x89,0x7f,0xfe,0xad,0xdf,0x88,0x67,0x3c,0xfb,0x59,0xb8,0x77,0x7d,0x55,0xae,0xab,0xc,0xc4,0x52,0x69,0xb1,0x35,0x93,0x61,0x2f,0x95,0xc4,0x10,0x53,0xca,0x31,0x62,0xca,0x94,0xa2,0xac,0x97,0x49,0xd9,0x53,0x9b,0xe,0xa3,0xd3,0x46,0x4,0xb2,0xea,0x7,0x89,0x18,0x70,0xb5,0x52,0x42,0x6,0xf3,0xa1,0xac,0x36,0xc1,0x53,0xe,0x3d,0x3f,0x3,0xf9,0x73,0x22,0xc8,0x27,0x2d,0x90,0x45,0xdb,0x21,0x1d,0xc8,0x48,0x60,0x43,0xbd,0xc0,0x38,0x81,0xd4,0x5e,0x43,0x12,0x52,0xc8,0xfc,0xc7,0x61,0xb6,0x87,0x3d,0xfc,0x74,0xdc,0x78,0xce,0x8b,0x71,0xf5,0x73,0xbf,0x8c,0x27,0x7e,0xf1,0x37,0x70,0xff,0x57,0xdf,0x85,0xcb,0x5f,0x7b,0x37,0xee,0xff,0xc6,0x3d,0x1c,0xde,0xb3,0xe2,0xfc,0x70,0x6,0xc7,0x82,0x35,0xf9,0xed,0xb,0xd6,0xdd,0x4d,0xec,0xff,0xeb,0xcf,0xe1,0x89,0x6f,0xf9,0x66,0xdc,0xbe,0xf7,0x38,0x2e,0x1e,0xff,0x55,0x9c,0x3f,0xfe,0x6b,0xc0,0x13,0xef,0x80,0xac,0xd7,0xb3,0xab,0x5c,0x74,0x28,0x84,0xe5,0x66,0xb4,0x0,0x75,0xb8,0xba,0xd,0x54,0xad,0x42,0x77,0xcb,0x6c,0x2d,0x8e,0x36,0x9d,0xef,0x2e,0x70,0xef,0x7b,0xbe,0xd,0x7a,0xff,0x7a,0x58,0xe5,0x4e,0x8e,0xb2,0x34,0x94,0xa8,0xe4,0x61,0x18,0xfa,0xcb,0x41,0xf9,0x12,0x8,0xfc,0xde,0x7d,0x3c,0xf4,0x3b,0x5e,0xb,0xb9,0x7d,0x13,0xba,0xee,0x4f,0x82,0xc6,0xb0,0x94,0x6c,0x70,0x6e,0x31,0xd,0x65,0x7a,0x4f,0x33,0x9e,0xd8,0xc4,0xb9,0xb1,0x27,0x22,0xbe,0x2a,0x8c,0x79,0xd0,0x35,0x4c,0x90,0xcd,0x96,0xae,0x25,0x7e,0x40,0xb6,0xb6,0xd,0x7c,0x28,0xb,0x4d,0xc,0xb9,0x45,0x2a,0x25,0xe5,0x1b,0x38,0x8b,0x14,0x80,0x9,0x20,0x92,0x55,0xa2,0xa0,0x69,0x9f,0xa9,0x47,0xf6,0x93,0x5e,0x1d,0xbe,0xa,0x7,0x46,0x81,0x26,0x14,0xc5,0x72,0xae,0x5e,0x78,0x0,0x25,0x45,0x37,0x16,0x39,0xf2,0x78,0xcf,0x11,0xf4,0x35,0x9c,0x24,0x35,0x73,0x3,0xe6,0xd5,0xb3,0xa4,0x2c,0x7,0x5b,0x11,0xae,0x42,0x39,0x11,0xd8,0x90,0x6d,0x37,0x55,0xbd,0x36,0xe0,0x15,0x33,0x79,0xe5,0xa8,0xfa,0xdd,0x6,0x9a,0x36,0xd6,0x5,0x8d,0x38,0x30,0x28,0xb6,0xc6,0x9,0xca,0xa,0x7c,0xc6,0x27,0xff,0x6e,0x7c,0xed,0x57,0x7d,0x9,0xee,0x5f,0x1f,0x60,0xeb,0x9a,0x62,0x2e,0x98,0xc8,0x70,0x77,0xef,0xf4,0x2a,0xfe,0xd6,0x98,0x0,0xce,0xff,0x37,0x73,0xdc,0xbb,0x7f,0x85,0x3f,0xfe,0xf9,0x6f,0xc4,0x5f,0xf9,0x8b,0x5f,0x8c,0x9d,0xe,0x4c,0x8d,0xca,0x52,0x6d,0xf3,0x59,0xc,0x28,0x8e,0x15,0x1f,0xdd,0x8f,0xdb,0xfe,0x5b,0x1f,0x48,0x3f,0x99,0x3,0xd0,0x7b,0x75,0xf6,0x50,0xf7,0x89,0x9,0x69,0xce,0x1c,0x9b,0xe4,0x0,0x1b,0x56,0x78,0x69,0x15,0xa0,0x49,0x5,0x4b,0x9,0xb,0x81,0x2c,0x76,0x95,0x13,0x47,0x24,0x46,0xc5,0xc9,0x17,0xa2,0x9d,0x95,0x38,0xa5,0x2d,0x4d,0x37,0x43,0xd2,0xd6,0xd9,0x99,0x0,0xd9,0x31,0x67,0x22,0xcd,0xec,0xf5,0xf4,0x8b,0x2e,0xcf,0x4,0x97,0xdc,0xb3,0x89,0xea,0xd5,0xad,0x94,0x37,0x99,0x85,0xf5,0x36,0x6f,0xc5,0xd,0xdf,0xe,0x57,0x36,0x25,0x2c,0x2d,0x45,0xd9,0x3c,0xc8,0x66,0xb3,0x9e,0xfb,0xec,0x68,0x8e,0x8c,0xd5,0x80,0x67,0x3c,0xfd,0x11,0x7c,0xdb,0x37,0xfd,0x4d,0x7c,0xc8,0x7,0x7f,0x20,0xae,0xae,0xf6,0x13,0x84,0x36,0x95,0x0,0x27,0xf6,0x28,0xda,0xf9,0x42,0x52,0xd3,0x42,0x38,0x93,0x60,0x2c,0x8,0x1c,0x77,0xef,0x5d,0xe2,0x55,0xaf,0x7c,0x5,0xbe,0xf5,0xef,0x7f,0x3d,0x1e,0x7e,0xf0,0xd6,0xc0,0x63,0xa8,0xf4,0x8e,0x1e,0x4a,0x50,0x49,0xb6,0x2a,0x5f,0xd5,0xb7,0x26,0x87,0xcd,0xc6,0x6b,0x39,0xd1,0xea,0x3f,0x3d,0xed,0x2f,0x1f,0x8,0xef,0x2c,0x57,0x36,0xa4,0x9d,0x6b,0xe6,0x83,0x1e,0x7b,0x9,0xbe,0xe5,0xef,0x7f,0x3d,0x6e,0xdd,0x79,0x0,0xd7,0xfb,0xfd,0x3c,0x67,0xa7,0x21,0x9b,0xb0,0x3b,0xa8,0xf4,0xcd,0x2e,0x1b,0x67,0xe9,0x88,0xbd,0xac,0x5,0xa2,0xa7,0xf7,0xce,0xe,0x53,0xf0,0x85,0x75,0xc9,0x5b,0x45,0x63,0x28,0x94,0x7f,0x5a,0xf1,0x96,0x19,0xd,0xbc,0xc0,0x61,0x81,0x96,0x3e,0x1c,0xd6,0xd9,0x7a,0x30,0x10,0xab,0xaa,0x44,0x6a,0xa4,0x94,0xa9,0x2a,0xb,0x16,0x2,0x17,0x92,0x9c,0xa9,0xd7,0x82,0x4c,0xaf,0x29,0x4a,0xe6,0x47,0x5b,0x63,0xc1,0x7a,0xef,0x2e,0x7e,0xe1,0x4b,0x3e,0x7,0x8b,0x19,0xe,0xb2,0x9b,0xa2,0x31,0x2,0x5b,0x2e,0xf0,0xc0,0xc5,0x39,0xde,0x73,0x63,0xc1,0xc3,0x7f,0xf6,0x2f,0xe0,0xe2,0xa5,0x1f,0x4,0x3b,0x5c,0x42,0x26,0xd0,0xff,0xfe,0x3b,0x7f,0x9,0x4f,0xfb,0x8c,0x4f,0xc7,0xf2,0xe8,0xf3,0x20,0x17,0xb,0xec,0x70,0x17,0x57,0xbf,0xf0,0x76,0xbc,0xeb,0xbb,0xbf,0xd,0xcb,0xe1,0x1a,0x98,0xd4,0x8b,0x44,0x83,0x4b,0x98,0x81,0x4,0xf,0xb6,0x12,0x24,0x71,0xc0,0xe,0xc3,0x70,0x62,0x59,0x14,0xeb,0xf9,0x4d,0x5c,0xfd,0xc4,0x4f,0xe0,0xde,0x7f,0xfe,0x9,0xdc,0x7e,0xf9,0x4b,0xa1,0x87,0xab,0x89,0x2f,0xf2,0x74,0xad,0x4a,0xed,0x82,0xc2,0x95,0x4d,0xbb,0xd5,0xc9,0x89,0xbf,0xde,0xe3,0xec,0x7d,0x9f,0x8d,0x5b,0x1f,0xfa,0x61,0xb8,0xfc,0x37,0xff,0x1a,0xb8,0x71,0x6b,0x1e,0xa4,0x9a,0xfa,0x9b,0x29,0xd,0xda,0xda,0x73,0x53,0x1b,0xdd,0x6d,0xaa,0x43,0x55,0xf6,0x1f,0x80,0xf,0x59,0x74,0xf0,0x47,0x85,0x37,0xf9,0x6c,0x33,0xc9,0x92,0xa8,0x5b,0x21,0xa5,0xc4,0xd1,0x55,0x0,0x59,0xe8,0x76,0xad,0xba,0x10,0xf3,0x51,0x19,0x7,0x76,0x4,0x47,0x23,0xc0,0x8e,0x48,0x78,0xa4,0x4b,0x13,0xdd,0xa9,0x84,0x42,0xbb,0x2,0x9b,0xcd,0x68,0xab,0x73,0xdd,0x98,0x14,0xd0,0x12,0xa5,0x98,0xe5,0xe,0xc8,0x64,0x6f,0xac,0x13,0x33,0xa0,0x84,0x47,0x50,0x21,0x3c,0x21,0xe1,0xae,0x58,0x9,0x32,0x66,0xbe,0x53,0xb4,0x8f,0x46,0x2a,0xd5,0x6,0x75,0xf9,0x4d,0x40,0x3d,0x4e,0x8e,0x61,0x74,0xe0,0xe7,0xb8,0x41,0xf8,0xb8,0x11,0xea,0x56,0xcb,0x93,0xd8,0x20,0x90,0xe6,0x7c,0x1a,0x9b,0xf4,0xe0,0xcb,0x35,0xa,0xab,0xa7,0x29,0xc8,0xf1,0x2f,0x2b,0x55,0xc1,0x1f,0xf9,0xcc,0x4f,0xc5,0x4f,0xfe,0x97,0x9f,0xc1,0x37,0xfc,0x9d,0x6f,0xc6,0x3,0xaa,0xd0,0xb3,0xa5,0x82,0xd8,0x22,0xe9,0xf6,0xd6,0xc4,0xbb,0x66,0x12,0xa5,0xd3,0x63,0xc1,0xdd,0x71,0xff,0x6a,0x8f,0x4f,0xfd,0xd4,0x4f,0xc0,0xd7,0x7c,0xf9,0x9f,0x1c,0x81,0xd6,0xa7,0x90,0x96,0x15,0xd,0xb6,0xd9,0x96,0x84,0x33,0x5b,0x89,0x57,0x30,0x8c,0xf7,0xe4,0x3f,0x69,0x24,0xc4,0x32,0xc5,0x24,0x7b,0xec,0x9b,0xbe,0xf3,0x0,0x82,0x79,0xb,0xdc,0xd6,0xe2,0x10,0x53,0xa3,0xd8,0xc5,0x41,0x32,0x1,0x92,0x9,0xb0,0x1b,0xc6,0x29,0x9a,0xac,0x90,0x92,0x30,0xaf,0x91,0xa0,0x85,0x64,0x33,0x65,0x7e,0xbe,0x1,0xf5,0xf5,0xae,0x4c,0x3f,0x1,0x2,0x6c,0x29,0xc8,0x50,0x5c,0x95,0xad,0xd0,0xef,0xa7,0xbf,0x3c,0xf1,0xda,0xd3,0x84,0x4c,0x36,0x37,0x27,0xd4,0x63,0x26,0xdd,0xe,0xef,0xd6,0xca,0x75,0x40,0x57,0x1c,0x7,0xe9,0x81,0x34,0x47,0x4c,0xc8,0x53,0x65,0x68,0xd,0x74,0x5d,0xcf,0x0,0x25,0x1c,0x84,0x52,0x3e,0x55,0x1d,0x9c,0xfa,0xa7,0x3d,0xf4,0x20,0xfe,0x9f,0x6f,0xf8,0x5a,0xbc,0xfa,0x77,0xff,0x1,0xdc,0x7d,0xfc,0x2e,0x2e,0xce,0x77,0x79,0xc0,0x99,0x97,0x8c,0xb1,0x85,0xb5,0x78,0xe,0xb5,0xbb,0xf0,0xdc,0xd5,0xd5,0x35,0x9e,0xfb,0x9c,0xf7,0xc5,0x3f,0xfa,0xbb,0x7f,0x3,0x77,0x1e,0xbc,0x35,0x45,0x7c,0x94,0x5c,0x34,0x49,0xf,0xc4,0x29,0xa5,0x31,0xcd,0x33,0x2d,0xc4,0x7d,0xa6,0x3b,0x77,0x25,0x4d,0xf2,0x54,0xf7,0xfd,0x24,0x6,0x65,0xe,0xf2,0x19,0x99,0xb2,0xc8,0xac,0x84,0x3a,0xaf,0x23,0x34,0x6,0x3e,0xec,0x65,0x1f,0x8c,0xaf,0xfb,0x9a,0xaf,0xc0,0x1b,0x3f,0xef,0x4f,0x61,0xe7,0xeb,0xd0,0x3f,0xd0,0x25,0x81,0xc6,0xaa,0xd6,0x24,0xfd,0xca,0x83,0x42,0x32,0xd6,0xe7,0x72,0x59,0x82,0xa,0xd5,0xf,0xfc,0x1a,0x91,0x3a,0x74,0xe8,0x6a,0x77,0x6a,0x87,0xa1,0x82,0x72,0x34,0x51,0xc2,0x68,0xc3,0x34,0xa8,0x15,0x33,0x1b,0x5e,0xb4,0x32,0xd,0xa9,0xb9,0x9f,0x2e,0xbb,0x1,0x90,0xb1,0x9a,0xb5,0xa5,0x82,0xac,0x57,0x2b,0x27,0x59,0x3,0xa1,0x61,0xd,0xa6,0x32,0x8c,0xef,0xcf,0xd1,0x78,0xa0,0x78,0xa7,0x21,0xc8,0x8,0x48,0x73,0x61,0xc8,0x2,0xdb,0x1f,0xb0,0x5f,0x17,0xec,0xf,0xc0,0xfe,0x6a,0x8f,0xfb,0xf7,0xae,0x70,0x79,0xf7,0xa,0xd7,0xbf,0xf2,0x8b,0xf0,0x67,0x3e,0x1b,0xbb,0xc7,0x5e,0xa,0xdb,0x5f,0x63,0x2c,0xad,0x5,0xbb,0x75,0xc5,0x43,0x1f,0xf2,0x72,0x3c,0xf3,0xcf,0xfc,0x79,0xdc,0xfe,0x83,0x9f,0x85,0x87,0x7f,0xdf,0x27,0xe1,0xe2,0xf,0xbe,0x11,0x4f,0xfb,0xf4,0x3f,0x80,0x1b,0x17,0xbb,0x59,0x89,0x3b,0xcc,0xf,0x80,0xaf,0x58,0xed,0x0,0x5b,0xf,0xd3,0x10,0x62,0xfc,0xb7,0xfb,0xe1,0xa8,0x65,0x9e,0xd4,0xad,0x45,0xe0,0x7e,0xc0,0xd5,0x9b,0xbf,0xd,0x2e,0xb,0x74,0x99,0xa0,0x37,0x50,0x46,0x67,0xa4,0x39,0x8f,0x6a,0x4f,0xbb,0x54,0x5b,0x51,0xe,0x2b,0x1e,0x7a,0xfd,0x27,0xc2,0xd7,0xab,0x39,0x17,0x5d,0xa6,0x7d,0xad,0x51,0xfe,0x59,0x72,0xb4,0x46,0xf0,0x5b,0xf7,0x49,0xb3,0x88,0x5,0x6f,0xb3,0xe2,0xd7,0x61,0x38,0xb2,0xdf,0xef,0x71,0xf3,0xe6,0xcd,0x3e,0x52,0xd1,0xf2,0x25,0xf0,0x16,0x8,0x4a,0x46,0x93,0x8d,0x8a,0x2a,0xd0,0x10,0xc2,0x40,0x7,0x6d,0x72,0x70,0xde,0xc7,0xbf,0x2b,0xbc,0x1c,0x55,0xc8,0x56,0x2a,0x8c,0x96,0x22,0xfe,0xea,0x12,0x80,0xd1,0x29,0x98,0x93,0x60,0x9c,0x91,0x1,0x97,0x47,0xcd,0x98,0xd9,0x69,0x4a,0xf9,0x92,0x4,0x2c,0xba,0x3f,0xc2,0xd0,0x67,0xb7,0x12,0x85,0xf2,0x74,0x2d,0x4f,0x30,0x5e,0x71,0x1e,0x91,0x1c,0xde,0x91,0x68,0x7a,0x6a,0xdf,0x3f,0x55,0x23,0x5a,0x9a,0xbe,0x8d,0xb7,0xca,0xc7,0xa,0x3b,0x79,0x32,0x73,0xd8,0x8c,0x54,0xc1,0x75,0x9f,0xb7,0xe6,0xed,0x36,0x79,0xd8,0x68,0x92,0xb7,0x76,0x7f,0xa1,0xf,0x64,0xd5,0xd4,0xf3,0xd7,0x65,0x7,0x81,0xe2,0xff,0xfc,0xb2,0x2f,0xc2,0x4b,0x1e,0x7b,0xd1,0x70,0x62,0xf4,0x8e,0xf8,0x4e,0xdc,0x9,0x8f,0x5c,0x2,0x39,0x3e,0xbb,0x56,0xfb,0xeb,0x3,0xde,0xff,0xfd,0x5f,0x80,0xaf,0xfb,0xaa,0x3f,0x37,0xac,0x4f,0x65,0x99,0xc2,0x58,0xde,0x38,0xed,0xc2,0xee,0x7d,0xcd,0xa0,0xd4,0x4f,0xdf,0xfc,0x71,0x81,0x92,0x6b,0xa6,0x57,0x98,0xf2,0x24,0x8,0xf7,0x7e,0xa8,0x77,0x96,0x5,0x36,0x15,0x1e,0x81,0xc5,0x68,0xce,0x9e,0x73,0x78,0xd0,0xe1,0xc1,0x7a,0xea,0x34,0xd7,0x5f,0xad,0xdd,0xd,0xfc,0x8,0x9a,0xe9,0xa4,0x17,0x7c,0xea,0x22,0x2,0x28,0x5d,0xc1,0x5c,0x85,0x55,0x14,0x4b,0xf4,0x69,0x9d,0x33,0xfe,0xe,0x74,0x93,0x8d,0xdc,0xa6,0x9c,0xca,0x9e,0x72,0x6,0xee,0x61,0x87,0xdb,0x18,0x54,0x9e,0x92,0xca,0xda,0xd1,0x2,0xc7,0x70,0xb6,0xa7,0x1c,0x7a,0xb3,0xcb,0x9e,0x37,0xb9,0x8f,0xb4,0xe8,0xd,0x81,0x27,0x19,0xf2,0xe2,0xef,0xff,0x82,0xe7,0xe1,0x2f,0x7c,0xe9,0x17,0xe2,0xea,0xfa,0x80,0xc3,0x61,0x0,0xba,0x57,0x2,0xcb,0x56,0x3b,0x41,0x27,0x73,0x7,0xd3,0x72,0x79,0x7c,0xe6,0xba,0xae,0x90,0x65,0xc1,0xdf,0xfc,0x6b,0x5f,0x85,0x67,0x3d,0xfa,0xf0,0xec,0xce,0x2c,0xcd,0x39,0x10,0x1b,0xe8,0x42,0xcd,0xf7,0x6b,0x8e,0x63,0xe1,0x70,0xc2,0x58,0x19,0xf1,0x96,0xcc,0x30,0x95,0xf4,0x78,0x6,0x15,0x9f,0x65,0x33,0x31,0xee,0xaf,0xb8,0x30,0x20,0x92,0x8c,0x89,0x10,0xef,0x11,0x57,0x7c,0xd6,0xa7,0x7d,0x22,0x3e,0xe9,0x13,0x5e,0x8f,0xab,0xcb,0xeb,0x29,0xb4,0x25,0xa9,0x72,0x99,0xdd,0x9c,0x90,0x1f,0x96,0xea,0xfc,0x68,0x74,0x8c,0x13,0x3c,0x6d,0x60,0x35,0x53,0xd6,0xe8,0xf0,0x79,0x7d,0xbb,0xc,0xd8,0xb1,0x96,0xd5,0x32,0xc3,0xe,0x2e,0x75,0x2a,0x60,0x45,0x45,0xa2,0xe1,0x25,0x2c,0x59,0xad,0x8e,0x80,0x3c,0x11,0x9a,0x66,0xd0,0xb3,0xb3,0x4,0x19,0xb9,0x6b,0x5f,0x60,0xb3,0x15,0x66,0x73,0xe1,0x29,0xcd,0xe5,0xea,0xe0,0xa0,0xf6,0x7a,0x79,0x24,0xa6,0x57,0x80,0xaf,0x5d,0x77,0xbb,0xb8,0x7d,0xe1,0x29,0x2f,0xd0,0xdd,0x82,0xc5,0x1c,0xd7,0x37,0x6f,0xe3,0x7d,0xbf,0xe8,0xcb,0x71,0x58,0x80,0x5b,0xfb,0xeb,0xc1,0x95,0x34,0x1b,0xd2,0xe7,0xeb,0x1,0xfb,0x27,0xde,0x83,0x9b,0x38,0x0,0xb2,0xe2,0xf6,0x7a,0xc0,0x2f,0x7d,0xed,0x57,0x62,0x7d,0xe7,0x7b,0x70,0xb8,0xf1,0xc8,0xd4,0x2f,0x18,0x7a,0x5,0xe2,0xeb,0x4,0x3,0xf9,0xe0,0x9a,0xc7,0x59,0x61,0xe3,0x64,0x5d,0x96,0xdd,0xac,0x1a,0x87,0x5b,0x97,0xad,0x80,0x9c,0xdf,0xc4,0x13,0xff,0xea,0x7,0x71,0xfb,0xf,0x7d,0x1,0x96,0xa7,0x3d,0x80,0x25,0x20,0x10,0x20,0x70,0x1f,0x7c,0xcc,0x96,0xa3,0x93,0x37,0x67,0xd8,0xa3,0xa1,0xa2,0x58,0x2e,0xaf,0x70,0xfb,0x15,0xaf,0xc0,0xf9,0xb3,0xde,0xb,0x87,0xdf,0x78,0x1c,0x7e,0x71,0x3,0x22,0x6b,0x7b,0x37,0x21,0xc3,0xe7,0x28,0xc1,0x1c,0xf7,0x92,0x4b,0xfe,0xff,0x39,0x7b,0xf3,0x78,0x5b,0xaf,0xb2,0xce,0xf3,0xf7,0x3c,0xeb,0x7d,0xf7,0xde,0xe7,0x9c,0x7b,0x6f,0xa6,0x9b,0x84,0x60,0x20,0x21,0x81,0x24,0x18,0x8c,0x32,0x4a,0x40,0x2,0x21,0xc,0x86,0x41,0x51,0x6,0x15,0xbb,0x51,0x2c,0x9b,0x72,0xac,0xb2,0xfa,0x63,0xa1,0x85,0xfa,0xa1,0xac,0x2e,0x41,0xec,0x56,0x51,0xac,0x72,0x68,0x2c,0xb5,0xcb,0xa1,0xbb,0xb4,0xd0,0x42,0x50,0x6,0x11,0x43,0x64,0x46,0x2c,0x54,0xa6,0x40,0x12,0x20,0xf3,0x74,0x73,0xa7,0x73,0xce,0xde,0xfb,0x7d,0xd7,0xf3,0xf4,0x1f,0x6b,0x7a,0xd6,0x7a,0xf7,0x49,0x53,0xcd,0xe7,0x13,0x32,0xdc,0xe1,0x9c,0xbb,0xf7,0x7e,0xd7,0x7a,0x86,0xdf,0xef,0xfb,0xb3,0x4b,0x79,0xf5,0xd1,0x82,0x45,0x1e,0x7d,0xdf,0xe1,0x8f,0xdf,0xf6,0xe7,0xb8,0xf9,0x96,0xaf,0x84,0x7,0x8,0x8a,0xc5,0x7c,0x86,0x2b,0xae,0xb8,0x4,0xdf,0xfe,0x82,0x17,0x4,0x8b,0x4d,0xba,0x9c,0x55,0x1b,0x41,0x99,0xa5,0xb5,0x99,0xe2,0x80,0x39,0x5c,0xf8,0x69,0x2e,0x2c,0x46,0x8,0x97,0xc9,0x87,0xa,0x52,0x17,0x3b,0x4b,0x2e,0x97,0x43,0xde,0x81,0xd5,0x1c,0x82,0x24,0xc1,0xcf,0xf4,0x2f,0x89,0x3e,0x86,0xb4,0xdf,0x6a,0x44,0x7a,0x85,0xb3,0x1d,0xd7,0x4b,0x62,0xa9,0x91,0x29,0xb5,0x31,0x62,0x62,0x3,0xae,0x2f,0x33,0x21,0x82,0x97,0x1a,0x70,0x50,0x23,0x0,0xd4,0x36,0xf,0xaa,0x12,0x8a,0x11,0xa6,0x89,0xb0,0xa5,0xf0,0x37,0x40,0x14,0xad,0x9d,0x12,0x6c,0xc4,0x94,0x3c,0x89,0x39,0xde,0xd4,0xb,0x1f,0xd4,0x7d,0x50,0xf9,0x3e,0x53,0xd7,0x6b,0xd8,0xdc,0xf9,0x91,0x26,0x8a,0x89,0x7e,0x84,0xed,0xc5,0x2,0xff,0xfe,0x27,0xff,0x25,0x5e,0xf1,0xea,0x1f,0xb,0xcf,0x71,0x74,0x31,0x20,0xaa,0xfc,0xb3,0x98,0x23,0x27,0xd8,0x71,0xd6,0xbd,0x7,0x1a,0x25,0xe3,0xd,0xaf,0x7f,0x2d,0xce,0x3a,0xe3,0xb0,0x9,0x29,0x8a,0x70,0x16,0x14,0x48,0xb9,0x2a,0xd7,0xb1,0xba,0xd5,0x74,0x82,0xbe,0x3a,0x9b,0x98,0xd,0x4e,0xc9,0x5,0x29,0x72,0x22,0x20,0xc5,0xf,0x8a,0x64,0xc1,0x1a,0x65,0xfa,0x5f,0xe,0x6f,0x1,0xd5,0xd6,0x4e,0x35,0x53,0xaa,0x9c,0xbf,0xae,0x5,0x6b,0x20,0x5a,0x41,0xb1,0x12,0xde,0xd9,0x4e,0x17,0xc4,0xe2,0x5d,0xcd,0x67,0xc5,0x16,0xf2,0xb5,0x12,0xdd,0x14,0x2d,0x26,0xc2,0x38,0xe9,0x5e,0x54,0xa,0xc8,0xa1,0x15,0x39,0x6a,0x14,0xeb,0x1e,0x70,0xdf,0xd6,0xb6,0x2e,0x6d,0xa2,0x88,0x63,0x61,0x91,0x6e,0x88,0x34,0xc,0x10,0xb5,0x30,0x2d,0x3,0x8d,0x61,0xdb,0x50,0x34,0x9f,0xf3,0x3a,0xe9,0xba,0xfe,0xef,0xcd,0x26,0x2a,0x89,0xfa,0x90,0x4,0x69,0x64,0xf8,0x25,0x11,0xc,0x34,0x7a,0xc5,0x3f,0x7b,0xe5,0x4b,0xf1,0x7b,0x7f,0xf8,0xa7,0xf8,0x87,0x7f,0xfc,0xc,0xb6,0x3a,0x57,0x29,0xd0,0x8b,0x81,0xae,0x60,0xe3,0x45,0x9,0x2e,0x7a,0xfc,0x96,0xcb,0x7d,0xfc,0xb3,0x57,0x7f,0x37,0xae,0x7d,0xda,0x93,0xe1,0x65,0x4,0x93,0xb,0xa1,0x4d,0x91,0x4c,0x98,0x57,0xb3,0x95,0x41,0x96,0x8a,0xd0,0x3a,0xa7,0xdd,0x99,0xa2,0x9a,0xe3,0xb8,0x5f,0x4d,0xf0,0x7,0x99,0x4e,0x9b,0x4c,0x2c,0x76,0xc6,0x6b,0x17,0xf1,0x76,0xb6,0x13,0x67,0x56,0x48,0xfc,0x1c,0x72,0x1d,0x57,0x9c,0x3f,0x43,0x11,0x68,0xf4,0xc6,0x9f,0x7e,0x2d,0xde,0xf7,0xd7,0x1f,0x86,0x5f,0xad,0x80,0x2e,0xc5,0xd1,0x4b,0x55,0x88,0xd4,0xcf,0x5,0x47,0xbe,0x48,0x4d,0x5a,0x2d,0x97,0xd3,0x6,0xec,0xa,0xb3,0x8d,0x4d,0xa2,0xea,0x47,0x6d,0xe6,0x71,0x2a,0xc,0xd8,0xd2,0x3c,0xed,0xb3,0xca,0x49,0x71,0x9d,0xa2,0x64,0x4,0x70,0x5d,0xe,0x22,0x52,0xd5,0x69,0x60,0x48,0xf2,0xec,0x6b,0x39,0xa8,0x6b,0xff,0x3e,0xc5,0xdd,0x17,0x47,0x9a,0x19,0xd5,0x11,0xdb,0x5a,0x42,0x15,0xbc,0x45,0x42,0x4a,0x89,0xc2,0x25,0xf,0xcc,0xc7,0x93,0x38,0xe3,0x99,0xcf,0xc0,0xfc,0x92,0x8b,0x71,0x44,0x56,0x98,0x75,0x7d,0x56,0xb2,0x32,0x1,0x14,0x2d,0x20,0x50,0xc5,0x3e,0xef,0xe0,0xd4,0x8d,0x1f,0xc5,0x89,0x1b,0x3e,0x84,0xbd,0xfe,0x2c,0xac,0x55,0x82,0x38,0x8e,0x8,0x6b,0xaf,0xf0,0x60,0x8,0x39,0x78,0x28,0x10,0x2d,0x7b,0x42,0xc,0x71,0x1d,0xd4,0x75,0xd1,0x67,0x50,0x2e,0x29,0x56,0x85,0xf6,0x73,0xd0,0x83,0xf,0x62,0xff,0x43,0x37,0xc2,0xcf,0xb6,0x43,0xf1,0x10,0xf7,0xe6,0x39,0x32,0x57,0x4b,0x93,0x56,0x79,0x9c,0xd3,0x41,0x20,0x1e,0x7c,0xe4,0x10,0xe,0x5d,0xfb,0x2,0xe8,0x7a,0x3f,0xe2,0x8f,0x8d,0xf8,0x48,0x6c,0x4a,0x1d,0x32,0x3e,0xd8,0xcc,0xc2,0xa6,0xa,0x23,0xd,0x28,0xda,0xbe,0xdb,0xc2,0xdf,0xdc,0xf8,0x51,0xfc,0xfc,0x2f,0xbe,0x5,0xbf,0xf0,0xe6,0x5f,0xc7,0x9b,0x7e,0xe9,0xd7,0xf0,0xb3,0xaf,0x7f,0x23,0xfe,0xf4,0xed,0xef,0xe,0x90,0xd,0x2a,0x28,0xe0,0x5c,0x62,0x9b,0xc1,0x33,0xec,0xe,0x8f,0x4c,0xe8,0x4e,0x6,0x3d,0xa5,0x3d,0x1f,0x67,0x90,0x9,0xe7,0x50,0x14,0xcd,0x82,0x2a,0x2,0x45,0xff,0x72,0xea,0xb4,0x29,0x5a,0xdf,0x92,0x8,0xa,0xf9,0xd7,0x51,0xe2,0x16,0x90,0xd9,0xf9,0x65,0xe7,0x62,0x9c,0x54,0x50,0x89,0x2d,0x4e,0xc2,0xc5,0x80,0xe8,0xd7,0x6a,0x97,0x47,0x5c,0x42,0x9e,0x42,0x60,0x47,0xec,0x7a,0xb2,0x5f,0xb8,0xde,0x4d,0xe6,0x80,0x29,0x32,0x3d,0x8d,0x15,0x58,0x55,0xa2,0xbd,0x16,0x3d,0x55,0x90,0xbe,0xa4,0x85,0x8e,0x19,0x3e,0xe5,0xda,0xee,0x6a,0xbe,0x8a,0xff,0x19,0x1,0x6d,0xc,0x20,0x61,0xeb,0x7c,0x21,0x93,0xde,0x98,0xb4,0x4,0x6a,0xbc,0xdb,0xca,0x78,0xe1,0x73,0x9f,0x85,0x6f,0x7a,0xda,0x93,0xb0,0x5a,0xd,0x26,0xc0,0x92,0x4a,0x26,0x41,0x16,0x69,0x26,0xc9,0x4e,0xf8,0xbc,0xae,0xd6,0x3,0x9e,0x7b,0xdd,0x33,0x71,0xfd,0xb5,0xdf,0x14,0x3f,0x8b,0x2e,0x2b,0xb0,0x5,0x5,0x1b,0xaa,0x26,0x7c,0xa7,0xec,0xf5,0xb5,0x12,0x4a,0x6d,0x6a,0x21,0xa7,0x31,0xcb,0xe5,0x22,0xe3,0x98,0x4,0x68,0x3b,0x71,0xb5,0xd5,0x43,0xde,0x35,0x6f,0x0,0x80,0x51,0x2b,0xea,0xd3,0xa6,0x69,0x8b,0xdd,0x93,0x6a,0xe9,0x6,0x61,0xad,0x69,0xb5,0x32,0x1f,0x22,0x31,0x60,0xa5,0xd9,0x13,0x6b,0xf5,0xe5,0xea,0xc2,0x40,0xea,0xee,0x59,0x4c,0x91,0x9a,0x22,0x54,0x45,0x1a,0xf1,0x2c,0x25,0xfe,0x7e,0xb1,0x1b,0xc2,0xa8,0xf7,0xcb,0x7f,0xb2,0x13,0x1a,0xca,0x2b,0x2e,0xca,0xc0,0x1b,0x2a,0xe8,0x73,0xeb,0xa8,0x4a,0xa9,0x88,0x5a,0x44,0x8e,0x5a,0x9b,0x66,0x2b,0x99,0x82,0xbd,0xbc,0xac,0x78,0x8e,0x9a,0xaa,0x97,0xb4,0x11,0xc3,0x55,0xe2,0xdf,0xf0,0xbb,0x3b,0x66,0x74,0xec,0xf0,0xe3,0x3f,0xfa,0xfd,0x18,0x46,0xc9,0x11,0xc1,0x89,0xcb,0x91,0xb2,0xe8,0x91,0x2f,0xfd,0x98,0x68,0xa8,0x81,0xca,0x77,0xee,0xd1,0xa3,0x78,0xdd,0x8f,0xbd,0x26,0xa,0x88,0x5d,0x66,0xe3,0xab,0x91,0xed,0x13,0x6a,0xad,0x51,0x4e,0xfc,0x34,0xa1,0x5c,0x49,0xf1,0x4f,0x49,0x73,0x63,0xa7,0x51,0x34,0xc9,0x38,0xad,0x9e,0x73,0x2b,0xfa,0x53,0xa3,0x87,0x28,0x58,0xee,0x12,0xab,0x9c,0x88,0x91,0x64,0x44,0xcc,0x89,0x53,0x72,0xc9,0xc5,0x8f,0xc4,0xf7,0x7e,0xf7,0xcb,0xb0,0xb7,0x5c,0x67,0x91,0x3c,0x59,0x6e,0x8d,0x45,0x76,0xb,0x50,0x2b,0xad,0xcb,0x37,0x63,0x3f,0x8f,0x30,0x1a,0xe6,0x7c,0x65,0x67,0xe7,0x97,0xc5,0xf7,0x59,0xeb,0x20,0x24,0x7b,0x1,0x53,0x3a,0x92,0xb5,0xa9,0x50,0x42,0xe,0xfa,0xb2,0x53,0x60,0xf,0xc0,0x75,0x81,0xcb,0x1d,0x31,0xbd,0x29,0x88,0x20,0x78,0xad,0x93,0xc7,0x9e,0x2b,0x91,0x60,0xea,0xdc,0x92,0x0,0x8d,0x22,0x53,0x5f,0x52,0xe5,0x97,0x2a,0x45,0xd1,0x6c,0x9f,0xcb,0x1e,0xc6,0xbc,0x8b,0x2c,0xf,0xb9,0xd3,0x11,0xd4,0x11,0xce,0xf9,0x9f,0x7e,0x10,0xeb,0x9e,0x31,0xce,0xb6,0xb0,0xdb,0x6f,0x61,0xb9,0xd8,0xc2,0x7a,0x6b,0x7,0x7e,0xbe,0x85,0x41,0x3d,0xc8,0x11,0x7c,0x3f,0x3,0xa3,0xc3,0xfd,0xff,0xe7,0xaf,0x60,0xb1,0x77,0x2,0xee,0xd4,0x3,0x98,0x9d,0xbc,0x7,0xfd,0xee,0x31,0xd0,0x89,0xe3,0x70,0x27,0x8e,0xc3,0x9d,0x3c,0x8e,0x6e,0xf7,0x24,0xdc,0xc9,0x13,0xc0,0xf1,0xe3,0xd0,0x53,0x27,0x80,0xdd,0x93,0x70,0xcb,0x53,0xd0,0xfd,0x5d,0x60,0x75,0xa,0xc3,0xb8,0x1f,0xfd,0xca,0x2,0x76,0xc,0x21,0x86,0xf2,0xc,0xfe,0x5d,0x6f,0x3,0x56,0x63,0xf0,0x92,0xa6,0x18,0xd3,0x38,0x7e,0xcb,0x4f,0x66,0x52,0x4c,0xfb,0xf8,0xf2,0x3a,0x8e,0xaf,0x2f,0x81,0xd6,0x2b,0x9c,0xf9,0x82,0x17,0x83,0x17,0x8b,0xc8,0xec,0x2f,0x69,0x67,0x39,0xb1,0x30,0x96,0xf0,0x49,0x91,0x9e,0x37,0xa,0x8e,0x1a,0x25,0x6c,0x19,0x2f,0x12,0x29,0xb6,0xb6,0xb6,0x70,0xc6,0x91,0x33,0x71,0xf8,0xd0,0x21,0x2c,0xb6,0x77,0xc0,0x87,0xe,0xe3,0xac,0xb3,0xce,0x8e,0xdb,0x8,0xbb,0x4a,0x1c,0xa9,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x6a,0x20,0x5f,0x45,0x48,0x98,0xdf,0x93,0x2c,0x28,0x2a,0x1d,0x83,0xf7,0x1e,0xa3,0x1f,0x31,0xfa,0x11,0xab,0xf5,0x1a,0xc3,0x7a,0x85,0x61,0x18,0xb0,0x5e,0xaf,0xb1,0x5e,0xaf,0xb1,0x1a,0xd7,0x58,0xf,0x3,0x6,0x3f,0x60,0x90,0x1,0xa3,0xc,0x18,0xc7,0x1,0xde,0x8f,0x90,0x21,0xac,0x54,0xc4,0x8f,0x61,0xa5,0xe2,0x87,0xb8,0x66,0xf1,0xe1,0xc7,0xc7,0x21,0xfc,0xf8,0x10,0x7e,0x7f,0x1f,0xbf,0xce,0xe0,0x47,0x8c,0xa3,0xc7,0x38,0x8e,0xf0,0xe3,0x88,0xd1,0x7b,0xc,0x32,0xc4,0x95,0x8c,0x64,0x98,0x8f,0xaa,0x94,0xb9,0x5,0xd7,0x39,0x15,0x69,0xa,0x43,0x44,0x8d,0x78,0xa7,0xe,0xc,0x32,0xa7,0x8a,0xcd,0x4,0x6a,0x9c,0x5c,0x25,0x81,0x4d,0x8c,0x4f,0xbc,0x5d,0xe7,0x68,0xce,0x7f,0x6e,0x46,0x8a,0x4a,0x95,0xf6,0x48,0xf,0x9a,0xb4,0xa6,0xb5,0x58,0x5a,0x81,0xd5,0x77,0x5c,0x5,0x66,0x2c,0xa2,0xbd,0xb2,0xb2,0xf9,0x91,0xef,0x7f,0x25,0x6,0x49,0xaf,0x4f,0x11,0x9d,0x12,0x17,0xcc,0x63,0x49,0x21,0xb,0xfa,0x8b,0x7e,0xc6,0xf8,0xe1,0xff,0xe5,0x55,0x19,0xfb,0x5b,0xc6,0xb2,0xe5,0xd0,0xcc,0xc4,0xb9,0x54,0x20,0x91,0x6e,0x18,0xa,0x4b,0x35,0xf8,0xd7,0xcd,0xc6,0xa8,0x5a,0xa0,0xa6,0xe5,0x57,0xc4,0xe5,0x4d,0x35,0xa6,0xd5,0xb4,0x9e,0xa9,0xbc,0xd7,0xa8,0xfb,0x56,0xdd,0x24,0xca,0x8e,0x5,0xa0,0x99,0x9a,0xa4,0xe2,0xd5,0x4c,0xe4,0xcb,0xd6,0x3e,0x73,0x20,0xb4,0x2,0x55,0x6d,0xfa,0x9e,0x6b,0xe1,0x66,0xec,0xe1,0x44,0xcc,0x7,0xc7,0xec,0x64,0x93,0xb6,0xc0,0xb4,0x6b,0x29,0xe5,0x59,0xbd,0x54,0x4a,0xba,0xa6,0x4f,0xd8,0xf8,0x1,0x11,0xd4,0x79,0xa,0xe9,0x15,0x47,0x1a,0xa7,0xc7,0xe7,0x21,0x4d,0xd0,0xf2,0x5a,0x65,0x2,0x8a,0x31,0xa4,0xc4,0x46,0xbb,0x88,0x4a,0x34,0x68,0xbf,0xb7,0xd,0x2,0xd5,0x9c,0xc2,0x4b,0x28,0x64,0x66,0xc2,0xf5,0xcf,0x7e,0x6,0xae,0xb8,0xfc,0x12,0xac,0x57,0xab,0x40,0xa3,0x4b,0x55,0x4b,0x93,0x97,0x42,0xd0,0xa8,0xc0,0x7,0x96,0xeb,0x1,0xaf,0xfc,0x8e,0x6f,0xc3,0xc3,0xcf,0x3b,0x7b,0x22,0xbc,0xcd,0xea,0x34,0x2a,0x8d,0x52,0xfa,0x39,0xc9,0x14,0x15,0xa4,0x1c,0x9a,0x27,0x71,0x39,0xd8,0xec,0x7f,0x84,0x9a,0x29,0x5,0xcf,0x2c,0x9,0x5,0x6d,0xd6,0xdb,0xdc,0x68,0x72,0xac,0x3d,0xb4,0x4c,0x21,0xb,0xb0,0xe8,0x7,0xbe,0xef,0xbb,0xb0,0x73,0xe6,0x91,0x3c,0x81,0x25,0x17,0x9b,0x22,0x7b,0xc7,0x19,0x6,0x49,0x76,0xd8,0xda,0x57,0x99,0xeb,0xf7,0x47,0x9a,0x55,0x5e,0x57,0x27,0xb3,0x99,0x87,0xc4,0xee,0x77,0x29,0x8,0xbe,0x12,0x57,0x38,0x25,0x15,0x95,0xd4,0xae,0x50,0x41,0x8e,0x92,0x33,0xa2,0x40,0xb3,0x79,0x8c,0xa7,0xd4,0x5c,0x2d,0xa7,0x6e,0xa3,0xe0,0x83,0x15,0x9b,0xd2,0x27,0x45,0xc3,0xd8,0x93,0xe2,0xbe,0x82,0x38,0xa4,0x75,0xd9,0x84,0xa1,0x2a,0x10,0x94,0xa9,0xd0,0xe4,0x22,0xb4,0x20,0xec,0xc0,0x4,0x74,0xe4,0x4c,0x9c,0xfe,0xdc,0x3f,0xa0,0xfb,0xf2,0x67,0xb0,0x4b,0x3d,0x56,0xea,0xa0,0x7d,0x87,0x85,0x8c,0xe8,0xe,0xed,0x60,0xeb,0xaa,0x2b,0xb1,0x8e,0xa7,0xa3,0x2c,0x77,0xb1,0x73,0xed,0xb3,0x31,0x3e,0xe1,0xa9,0xd8,0x22,0x85,0x8e,0xa7,0xd1,0x2d,0xb6,0x30,0x7a,0x45,0xb7,0xbd,0xd,0x2c,0xe6,0xe0,0xd9,0xc,0x32,0x2,0xc4,0x1d,0x48,0x3c,0x94,0x18,0x9d,0x12,0x4e,0xdf,0x75,0x37,0xfc,0xb0,0x8f,0xc5,0xc5,0x97,0x63,0xf9,0x81,0xbf,0xc4,0x70,0xf3,0x17,0x40,0xb3,0x59,0x0,0x7d,0xf4,0x73,0x2c,0x3f,0xfd,0x8f,0x58,0x7e,0xee,0x26,0xf4,0x57,0x5d,0xe,0xf6,0xfb,0x81,0x27,0x60,0xe3,0x92,0xc,0x35,0x2f,0x39,0x7,0x52,0xa1,0xe3,0x85,0xe0,0x56,0x6b,0xcc,0x2e,0xbb,0x14,0xdb,0x5f,0xff,0x24,0xec,0xfe,0xdd,0x27,0xa0,0x8b,0xed,0x10,0x25,0xc9,0x46,0x4d,0x62,0x26,0x1f,0xc5,0xdf,0x6b,0xaa,0x54,0x2a,0xe3,0xe0,0x9c,0x16,0x98,0x3a,0x85,0x48,0x98,0x22,0xea,0xb0,0x5c,0xaf,0xe0,0x5c,0xc2,0x75,0xba,0x66,0x6d,0x48,0xd5,0xbf,0xdb,0x55,0x43,0x7a,0xa0,0xd2,0x7,0x78,0x67,0x7b,0x1,0xf1,0x82,0x54,0x13,0x26,0x4d,0x42,0x99,0xe1,0x5b,0x48,0x8,0x15,0x58,0x6,0x91,0x11,0x4a,0x99,0x2c,0xf6,0xd4,0xcd,0xe4,0xd5,0x81,0xe4,0x5d,0x65,0x1a,0x51,0xa7,0xe,0x5d,0xa9,0x8c,0xbf,0x45,0x15,0x32,0x7a,0x8c,0xe3,0x0,0x15,0x42,0xef,0xfa,0x40,0xc8,0x62,0xde,0x60,0x8d,0x37,0x98,0x54,0x46,0xa1,0xba,0xe5,0x30,0x9d,0xc9,0x72,0xb8,0xfc,0x3f,0x6d,0x50,0xf6,0x1a,0x4f,0x7d,0x7a,0xdd,0x24,0xbb,0x5c,0x50,0xef,0x8c,0xa9,0xdd,0xf2,0x4f,0x6d,0x68,0x68,0xf4,0x20,0x39,0x95,0xc8,0x74,0xb5,0x96,0x36,0x96,0x50,0xd2,0x8a,0x94,0x67,0xa0,0xc5,0xee,0x16,0x15,0xce,0xd7,0x7e,0xd3,0x53,0x71,0xd9,0x25,0x8f,0xc4,0x97,0x6f,0xbb,0x13,0xfd,0x6c,0x96,0xf9,0x5,0x14,0x5f,0x4,0x89,0xe2,0x21,0x17,0xc9,0x8c,0xeb,0xf5,0x88,0x27,0x7c,0xc3,0x95,0x78,0xfa,0x93,0xae,0xaa,0xe,0x38,0x8b,0x21,0x86,0xe1,0xaf,0x57,0xcf,0x7c,0x23,0x2c,0x53,0xc3,0xa2,0x98,0x9c,0xb5,0xda,0xdc,0x6c,0x6,0xb6,0xa3,0x15,0x68,0x25,0xfe,0xb3,0x48,0xb9,0xec,0xd5,0x15,0x1b,0x53,0x75,0x62,0x6c,0xb0,0x48,0x36,0x9f,0xed,0xf2,0x65,0xd9,0x30,0x1,0xa4,0x11,0x74,0x98,0x9c,0x7,0x53,0xf1,0x92,0x9,0x23,0x9b,0xec,0xfb,0x8d,0xf5,0x83,0x2c,0x33,0xc2,0xd8,0x73,0x2b,0x44,0xaf,0x11,0xa2,0x22,0x83,0xc3,0xa4,0x38,0x5c,0x72,0xc3,0xc6,0x68,0x12,0x39,0x26,0xfe,0xf,0x34,0x3c,0x98,0x32,0xba,0x8e,0xef,0x51,0x7a,0x1e,0x4d,0x67,0x5d,0xdd,0xd5,0x3a,0xd5,0xb1,0xd4,0x3c,0x5,0xcd,0xd5,0x9,0x35,0xc2,0xc9,0x1a,0xb9,0x60,0x4,0x8f,0x56,0x80,0xa,0xc5,0xf6,0xd6,0x16,0xbe,0xe5,0xfa,0xeb,0xf0,0xb,0xbf,0xfc,0xeb,0x98,0x63,0x16,0x5d,0x44,0xc5,0x49,0x94,0x20,0x69,0xc9,0x96,0xc,0x11,0x1c,0x3a,0xb4,0x85,0x57,0xbd,0xe2,0xc5,0x28,0x61,0x50,0x75,0xa6,0x8c,0x2d,0x0,0xd2,0x2e,0x42,0xac,0x8d,0x36,0xeb,0xcd,0x34,0x0,0xe7,0x48,0x1f,0x52,0xad,0xbf,0x79,0xf0,0x56,0x68,0x2a,0x3a,0x96,0x84,0x51,0x53,0x2,0xe7,0x49,0x8e,0x6a,0x6a,0xc4,0xa6,0x23,0xae,0x34,0x1,0x78,0xf4,0x25,0x17,0xe3,0xba,0x6b,0xae,0xc6,0x3b,0xff,0xe2,0x3d,0xe8,0xfb,0x3e,0x4e,0x79,0xe2,0x4a,0x22,0xb1,0x18,0x52,0x61,0x1b,0x99,0x25,0x94,0xc3,0xd4,0xb4,0x59,0x3b,0xea,0x6,0x95,0x6,0xc5,0x1d,0x3f,0xa3,0xc6,0xff,0xa9,0x2d,0x53,0x9a,0x91,0xb4,0x39,0x90,0xa5,0x2a,0x39,0x63,0xa4,0xac,0x32,0x3a,0x10,0xd0,0x77,0x71,0x1b,0x68,0x54,0xbc,0x64,0xf6,0x8e,0x99,0x6,0xc8,0x6,0xf6,0x90,0xe8,0x44,0x3e,0x8a,0x8a,0xb8,0xb2,0xe8,0x10,0x5b,0x1f,0x71,0xf8,0xfe,0x38,0x56,0x84,0x61,0xe7,0x4f,0xd9,0xd3,0x8,0x0,0xea,0x1c,0x86,0xd3,0xbb,0xb8,0xf7,0x8d,0xaf,0x83,0x53,0x81,0xe7,0x5,0x46,0x4,0xbc,0xaf,0x7b,0xf0,0xe,0x9c,0xf1,0x9a,0x1f,0xc6,0xe2,0x29,0x4f,0x86,0xec,0xef,0xc1,0xa9,0x87,0xce,0x1d,0xce,0xfa,0x91,0x7f,0x81,0x41,0x46,0x2c,0x58,0x40,0x83,0x80,0xfa,0xe,0x7e,0xed,0xd1,0xf5,0x73,0x88,0xfa,0x20,0xb6,0x18,0x47,0xcc,0xe7,0x3d,0x66,0x5d,0x90,0x9c,0xcd,0x6,0xc2,0xed,0x1f,0xfc,0x18,0x8e,0x7d,0xfe,0x93,0xa0,0x87,0x5d,0x0,0x86,0x7,0xc9,0x8,0xf1,0x31,0xda,0xd5,0x75,0xf0,0xcb,0x11,0xfb,0xef,0xfd,0x53,0xec,0x3c,0xfe,0xa7,0x23,0xb1,0x2e,0x32,0x6f,0x99,0xea,0x4a,0x3d,0x71,0x99,0x5,0x39,0x45,0x2c,0xec,0xa0,0x5,0x5e,0x46,0x1c,0xfe,0x96,0x97,0x61,0xef,0x63,0x1f,0xe,0x7b,0xda,0x74,0x49,0x89,0x37,0x8c,0xfd,0x52,0x98,0xe5,0xe,0x88,0x60,0x0,0x3a,0x36,0x49,0x2d,0x26,0xd4,0xc5,0xc4,0xaa,0x0,0x20,0x20,0xcc,0xbb,0x1e,0x2a,0x2,0xaf,0xa,0x27,0x1e,0x44,0xce,0x38,0x31,0x8a,0x3a,0x35,0x25,0xa,0x82,0x1b,0x4f,0xb9,0x2,0x8f,0xbb,0xfc,0x32,0xbc,0xff,0xed,0x7f,0x8,0x9f,0x70,0x9f,0x86,0xc0,0xc4,0xd1,0xb9,0x47,0x6a,0xa2,0x75,0xa9,0x64,0xb6,0x97,0x71,0x5c,0xe0,0x2d,0xa4,0x93,0x94,0x6b,0x0,0x71,0xa6,0x82,0xa9,0x31,0x5a,0x87,0xb0,0x96,0x72,0x48,0x78,0x3f,0x86,0x90,0xe,0x15,0x9c,0xde,0xdb,0xc5,0x8f,0xfc,0xc4,0xcf,0xe2,0x8b,0x5f,0xfc,0x72,0x10,0x34,0x52,0x8a,0x47,0xad,0xbb,0x39,0x8d,0xbb,0x5c,0x8e,0x87,0x6f,0xa2,0x33,0x16,0xa1,0x9d,0xa0,0x8e,0x42,0x99,0x3e,0xc5,0x94,0x95,0xc2,0x75,0x31,0x57,0x86,0x2e,0x54,0x5b,0x2,0xf,0x9e,0xe4,0x4f,0x44,0x5a,0x68,0xb6,0x38,0x19,0x68,0x95,0xa6,0x75,0xdc,0x5c,0x3e,0xc6,0xd3,0xae,0x95,0x5d,0x30,0x14,0xd9,0x87,0xf,0x1f,0xc2,0x73,0x9e,0xf5,0x74,0xfc,0xc6,0xef,0xfc,0x21,0x66,0xb3,0x45,0x4c,0x59,0xb,0xa2,0x5a,0xc7,0x41,0x18,0x98,0x9e,0x39,0x51,0xc5,0x38,0xe,0x78,0xf1,0x37,0x5f,0x87,0xbe,0xf,0x68,0x54,0x56,0x35,0x0,0x99,0xe2,0x40,0xc8,0x2,0xc3,0xf8,0x77,0x51,0xe4,0x1d,0x68,0x4e,0x7d,0x4c,0xda,0x4,0xf1,0x60,0xc7,0x11,0xee,0xa4,0x1b,0x54,0xf0,0x76,0xe4,0xaf,0x66,0x5d,0x98,0x4,0xc3,0x49,0xb6,0x1f,0xa,0xd8,0x62,0x3,0x2e,0xdf,0x17,0x55,0x99,0x4,0x34,0x1d,0x8d,0x94,0x34,0xb0,0xe8,0x2c,0x6d,0x5d,0x19,0xe6,0x5b,0x87,0x42,0x62,0x5b,0xa5,0xe6,0xc5,0x55,0x7b,0x18,0x9b,0x6f,0xd0,0xb2,0x34,0xca,0xe4,0x2c,0x16,0x6a,0xaa,0xc6,0x5,0x62,0xad,0x27,0xe5,0xa2,0x4c,0x93,0x1c,0xaf,0xc6,0xe6,0xac,0x25,0xa0,0xb6,0xe4,0x7d,0xd8,0xe0,0xa5,0xa9,0x0,0xbd,0x94,0x9,0x9,0x8c,0x85,0x4c,0xa8,0xab,0x46,0x13,0xf4,0xd5,0x7c,0x16,0xeb,0x22,0x20,0x65,0xc,0x58,0x8d,0xa1,0xc5,0x87,0x27,0x8b,0x6a,0x30,0xea,0x68,0xbe,0x67,0x4a,0xb7,0xaa,0xb8,0xfe,0xd9,0xd7,0xe0,0x97,0x7f,0xf5,0xad,0x10,0x91,0x0,0xdd,0x61,0xc4,0x4,0x3b,0xca,0xd0,0x23,0x8e,0x89,0x85,0xc3,0x38,0xe2,0x29,0x4f,0x7a,0x22,0x1e,0xfb,0x98,0x4b,0xea,0x54,0xcc,0x56,0x9a,0x48,0xd,0x5f,0x23,0x39,0x37,0xb4,0x60,0xc2,0x55,0x9,0xe3,0x38,0xc0,0xb1,0x83,0xa8,0xe2,0xc1,0x63,0xf,0xe0,0xde,0xfb,0x8f,0xe1,0xf4,0xe9,0x5d,0xac,0xd7,0x3e,0x4e,0x16,0x5,0x3e,0x5a,0x9f,0x93,0x8,0xba,0x9f,0x75,0x38,0xe3,0xf0,0x21,0x3c,0xfc,0x82,0x73,0x71,0xc1,0x79,0xf,0x83,0x63,0x1f,0x92,0xb,0xa3,0x7b,0xcb,0x25,0xed,0x52,0xd4,0x8e,0xb0,0x39,0xef,0x55,0xc9,0xd8,0xed,0xa8,0x62,0x9a,0xbc,0xf4,0x25,0xd7,0xe3,0x1d,0x7f,0xf1,0xde,0xe8,0xa2,0x61,0x78,0xef,0x8b,0x8e,0x2a,0x4d,0xf7,0x19,0x50,0x12,0xd3,0x3c,0x18,0xcb,0x6c,0x4,0x3e,0xa1,0x69,0x2e,0xd3,0x67,0xb9,0xab,0x47,0x43,0xa6,0x8c,0x33,0xb3,0x9,0xb5,0x53,0xba,0x8,0x86,0xf1,0xeb,0x25,0x48,0x7c,0x9e,0x21,0x68,0xec,0xd0,0x89,0x18,0x7c,0xea,0x1,0xac,0xc5,0x67,0x78,0x4c,0x11,0x3f,0x34,0xe3,0xd2,0x34,0xb6,0x87,0xc1,0xcc,0x8a,0x31,0xff,0x88,0x94,0xa8,0x49,0x94,0xf1,0x57,0xd1,0xc5,0x14,0xaa,0x5a,0x26,0x1c,0xda,0x80,0x7,0xa6,0x10,0x5b,0xbb,0x3d,0xc7,0xe8,0x3b,0x48,0xc7,0x58,0x2b,0x81,0xc7,0x1,0xdd,0x79,0x17,0x62,0xe7,0x45,0xdf,0x85,0xbd,0xf5,0x1a,0x73,0xf1,0x0,0x82,0xb5,0x4d,0xf6,0x76,0x91,0x4a,0x16,0x51,0x85,0xac,0x42,0xf0,0xc6,0x6a,0x3d,0x4,0xb5,0xb9,0x10,0x1c,0x2b,0x94,0x3c,0x46,0xcc,0x31,0x9c,0x38,0x85,0x53,0xf7,0xdd,0x8f,0xfd,0x9b,0x3e,0x89,0x9d,0xd3,0x77,0x63,0xfd,0xe0,0x11,0x60,0xb9,0x7,0xe5,0x3e,0x56,0x68,0x31,0x7f,0x7a,0xb6,0x8d,0xdd,0x1b,0xde,0x8b,0xb3,0xbe,0xef,0x7,0xc1,0x47,0xb6,0xc0,0xeb,0x31,0x14,0x4e,0x5a,0xbc,0xfc,0x48,0xb1,0x96,0x76,0xd4,0x18,0x56,0xfc,0xa1,0x7e,0x5c,0xad,0xb0,0xf3,0x8d,0x4f,0xc1,0xe2,0x11,0x8f,0xc0,0xea,0x9e,0xfb,0x30,0xf4,0x33,0x74,0x29,0x3,0x3c,0xf9,0xfe,0x51,0xd0,0xb7,0x94,0xdf,0x3b,0xaa,0x7c,0xa4,0xe9,0xbd,0x4a,0x15,0x3e,0xa7,0x45,0x7d,0x1c,0x71,0x7b,0x3f,0x62,0xb9,0x1a,0xd1,0x13,0x63,0xb9,0x1a,0xa0,0x3a,0xa0,0xeb,0x3a,0xb8,0x2e,0x58,0xea,0xb8,0x10,0x7d,0x8a,0x20,0xb1,0x99,0xe6,0xed,0x6c,0x6f,0xe1,0xd1,0x97,0x3e,0xaa,0x12,0x8,0x25,0x16,0x79,0x3d,0xa1,0xae,0x69,0x7c,0xff,0xa3,0xff,0xcb,0xc7,0x6a,0x4e,0x6f,0xa3,0xcc,0x2c,0x48,0x30,0xa9,0xe0,0xc,0x11,0x30,0x3b,0x1c,0x3d,0xf7,0x28,0x3e,0xff,0x85,0x2f,0x55,0xaa,0xf2,0xc4,0xaa,0xf,0x1b,0x24,0x23,0x66,0x92,0x66,0xe4,0xac,0xf5,0x90,0x9a,0x2a,0xb7,0xb3,0x51,0x71,0x6b,0x39,0xd4,0x89,0x81,0xbd,0xd3,0x2b,0x7c,0xe0,0x43,0x1f,0xc3,0x72,0xb9,0x87,0xc1,0xfb,0xc0,0x4d,0x48,0x49,0x79,0xe9,0xba,0x89,0xa3,0xfa,0x82,0x8f,0x4d,0x39,0xe1,0xe1,0x6,0x63,0x26,0xf4,0x7d,0x8f,0x43,0xdb,0x3b,0x78,0xd8,0xf9,0x47,0xf1,0xe8,0x47,0x3d,0x12,0x67,0x9e,0x71,0x38,0x52,0x6,0x2d,0x13,0x9e,0xe1,0x94,0x4c,0xd0,0xf,0x9a,0xe,0x27,0x65,0x29,0x24,0xd0,0x51,0x78,0xcd,0x9e,0x7d,0xcd,0x53,0xf1,0x5b,0xbf,0xf7,0x5f,0x62,0x21,0x14,0xf7,0xfa,0xa2,0xd9,0x4d,0x43,0x49,0xdd,0x2c,0x82,0xed,0x9d,0x2d,0x3c,0xeb,0x9b,0xbe,0xb1,0xe4,0xaf,0x6b,0x3d,0xfd,0x61,0x23,0xb4,0xa4,0xb6,0xbf,0x8e,0x3f,0x9f,0xa1,0x18,0xbd,0x80,0x4,0x10,0x26,0xdc,0x79,0xd7,0x3d,0xf8,0x87,0x4f,0x7f,0x1e,0x5f,0xb9,0xed,0x76,0x3c,0xf0,0xe0,0xc9,0xf0,0x5a,0xd,0x63,0x44,0xba,0xa6,0x2,0x93,0xa,0x85,0xe,0x25,0x9e,0x37,0x5f,0xd9,0xf1,0x42,0xdd,0x5f,0x2e,0xf1,0xca,0x57,0x7c,0x1b,0xbe,0xe9,0xea,0x27,0x1b,0x3d,0xa,0x1a,0xd8,0xfc,0x6,0xc0,0x4f,0xc8,0xaa,0x45,0x23,0x75,0xab,0x3b,0xef,0xaa,0xe3,0x2f,0x44,0xa2,0xca,0xca,0xa7,0x8d,0x9d,0xad,0x61,0x97,0x50,0x35,0x2d,0xa3,0x48,0xf0,0x93,0x8c,0x0,0x4f,0xf9,0x6b,0x13,0x67,0x80,0x9a,0x10,0x28,0xd5,0x6a,0x57,0x4d,0x56,0xe1,0x3f,0xd9,0x38,0x94,0xdf,0xeb,0xee,0x7b,0xee,0xc3,0xfb,0x3e,0xf0,0xe1,0x70,0x36,0x8e,0xf1,0xb3,0x48,0x26,0xc,0xcb,0x40,0xfe,0x34,0xce,0x88,0xed,0x1a,0x98,0x89,0xd0,0x75,0xe,0xdb,0x5b,0xb,0x9c,0x7f,0xf4,0x1c,0x5c,0x7e,0xd9,0xc5,0x38,0xe7,0xec,0xa3,0x10,0x1f,0x84,0x6b,0xaa,0x54,0x15,0xee,0x45,0xcd,0x6e,0x26,0xd,0x66,0x4d,0x92,0x12,0x5b,0x29,0xfe,0x9c,0x2b,0x1f,0xfb,0x18,0x3c,0xe2,0x11,0x5f,0x83,0x3b,0xee,0xbc,0x13,0x33,0x76,0x65,0xca,0xa7,0x25,0x57,0x22,0x69,0x50,0xc6,0x71,0xc4,0x73,0x9f,0xfd,0xb4,0xea,0xd9,0xac,0x20,0x48,0xd5,0xff,0xe9,0x44,0x2f,0xa2,0x39,0x46,0x3b,0xfc,0x9c,0x7,0x4f,0x9c,0xc0,0x7f,0xfa,0xfd,0x3f,0xc1,0x3b,0xde,0xf5,0x57,0xb8,0xed,0xb6,0xdb,0xb1,0xbb,0xb7,0x8f,0xf5,0x7a,0x8c,0x50,0x37,0xa9,0x44,0x8b,0x62,0xa2,0xd5,0x9d,0x63,0x1c,0xde,0x5e,0xe0,0xeb,0x1e,0x77,0x5,0x5e,0xf3,0xbd,0xaf,0xc2,0x4b,0x5e,0xf4,0x3c,0x90,0x68,0x8,0xa7,0x73,0x14,0x44,0xc2,0x49,0xe0,0x6b,0x72,0x4e,0xa8,0xd9,0xc0,0x5a,0xab,0xf0,0x35,0x57,0x3f,0x9,0xe7,0x9c,0x73,0x36,0xf6,0x76,0x77,0x1,0xe9,0xf2,0x5c,0x8c,0xcc,0x94,0x5b,0x4c,0x3,0x42,0xc6,0x41,0x91,0x54,0xff,0x6a,0x64,0x91,0xd6,0x6a,0x5c,0xd2,0xf9,0x6c,0x25,0xd,0x18,0x58,0x4a,0xb1,0xee,0xa8,0xe9,0x52,0x54,0x6,0x1c,0xf9,0xba,0xab,0x30,0x7b,0xd4,0x23,0x43,0x65,0xec,0x3a,0x8,0x77,0x50,0x62,0x78,0x66,0xf4,0xe3,0xa,0x87,0x9e,0x7c,0x35,0x78,0x2c,0x52,0x6a,0xb6,0xee,0x0,0xa4,0x7d,0xa4,0x16,0xc0,0x42,0xea,0xd2,0x28,0x64,0x75,0xb,0x80,0xd1,0xf,0x60,0x2f,0x45,0x70,0x14,0xc7,0x5c,0xc4,0x2e,0x1f,0x90,0xa9,0x21,0x54,0x13,0x3d,0x69,0x2d,0x43,0xc,0x8d,0xa3,0xf9,0x50,0x29,0xb2,0x28,0x7a,0xbf,0x87,0xd9,0x13,0x9f,0x88,0xd9,0xa5,0x17,0x83,0xd7,0xa7,0xc0,0x4a,0x18,0x1,0x23,0x3a,0xeb,0x72,0x30,0x86,0x26,0xa1,0x18,0x8,0xa2,0xc,0xa7,0x1e,0x1e,0xc,0x74,0xdb,0xd8,0xbb,0xf9,0x56,0xe8,0x89,0x3d,0xb8,0xae,0xc7,0xec,0xd2,0xab,0xd0,0xc9,0xe3,0x30,0x7f,0xf0,0x41,0xec,0x9e,0x3c,0x19,0xd6,0xd,0x71,0x87,0xe6,0x0,0x48,0xd7,0x43,0xef,0xbe,0x7,0xa7,0x6f,0xfc,0x5b,0x9c,0xfd,0xad,0x2f,0x1,0xd,0xc7,0x91,0xd3,0x64,0x12,0x9,0x2d,0xbd,0x7d,0x5a,0x82,0x43,0x62,0x3,0x2,0x11,0x87,0x6e,0x1c,0x80,0x23,0x47,0x70,0xe8,0x39,0x2f,0xc2,0xfe,0xef,0xfc,0x3a,0xa8,0x9f,0xc5,0x87,0xb6,0x18,0x54,0x38,0xb,0xce,0xc4,0x28,0x99,0x4d,0xd5,0x9d,0x4e,0x48,0xa6,0x1c,0x74,0x12,0x17,0x5d,0xa1,0x94,0x64,0xc6,0xce,0xce,0xe,0xde,0x7f,0xc3,0xdf,0xe2,0xe9,0xd7,0xbf,0x22,0x4c,0x39,0x98,0x11,0xc0,0xc7,0x8a,0xe5,0xb0,0xc2,0xaf,0xbc,0xf1,0xf5,0x78,0xc6,0x53,0x9e,0x80,0x3,0xd3,0xaa,0xb4,0x1c,0xfa,0xf5,0x8f,0x71,0xde,0xcd,0x59,0xd1,0xd,0xfe,0xff,0xdd,0xf9,0x1b,0xe6,0x64,0xe9,0x4f,0x1f,0xa1,0x35,0x2a,0x99,0xe3,0xcf,0xcc,0x81,0x85,0x1d,0x9d,0x17,0x92,0x34,0x11,0xa4,0x65,0x45,0x61,0x56,0x16,0x59,0xc1,0x64,0x32,0xad,0xab,0x44,0x30,0xb,0xfe,0x51,0x6d,0xd4,0xd3,0x65,0xa8,0x4c,0xaa,0x38,0x76,0xec,0x1,0xbc,0xfa,0x87,0xfe,0x15,0x4e,0x9c,0x38,0x81,0xbe,0xef,0x8d,0x18,0x90,0x2a,0x5a,0x5c,0xdb,0x48,0x95,0x55,0x50,0x11,0xb2,0x30,0x3b,0xcc,0x66,0x3d,0x1e,0x76,0xde,0x39,0x78,0xfe,0x73,0xae,0xc1,0xf,0x7f,0xdf,0x77,0xe3,0xe2,0x47,0x5e,0x18,0xa2,0x41,0xa3,0x0,0x4c,0x1b,0xc8,0x9,0x5b,0xd,0xbd,0x55,0x61,0x73,0x18,0x89,0x13,0x80,0xaf,0xbd,0xfc,0xd1,0x38,0xe7,0xac,0x23,0x38,0x75,0x7a,0x89,0xae,0xef,0x43,0x71,0x90,0x43,0x7,0x24,0xc7,0x18,0xf,0xc3,0x1a,0x97,0x3d,0xfa,0x22,0x3c,0xe6,0x92,0x8b,0xaa,0x80,0x90,0xb2,0x9e,0x32,0x9f,0x33,0xfb,0xef,0x5a,0xba,0x10,0x22,0x8d,0x1d,0xc,0xe3,0xd3,0x37,0xdd,0x84,0x37,0xfe,0xf2,0x6f,0xe2,0x86,0xf,0x7e,0x4,0xa7,0x4f,0xef,0x42,0x6,0x5f,0xc2,0x94,0x2a,0xdc,0xac,0x79,0x3f,0x62,0xd1,0x9a,0x1,0x63,0x3e,0xee,0xf9,0x7d,0xf8,0xbd,0x87,0xfd,0x3d,0x5c,0xf1,0x98,0x4b,0x71,0xcd,0xd5,0x4f,0x6e,0x14,0xe9,0x26,0x5e,0xc5,0x8e,0xa8,0x75,0x53,0x13,0x6b,0xec,0x94,0x5a,0x84,0x92,0xaa,0x53,0x3c,0x73,0x16,0x52,0xb1,0xf9,0x20,0x69,0xe3,0xe3,0xaf,0xb4,0x87,0x25,0x7d,0x4f,0x32,0x1e,0xda,0xba,0xf1,0xa8,0x6e,0x52,0x4d,0xd7,0x56,0xc4,0xa9,0x28,0x2a,0x6f,0x9d,0x6c,0x43,0x1a,0x83,0x76,0xf9,0x9,0x37,0x7e,0xf8,0xa3,0xf8,0x9e,0xef,0xfb,0x11,0x74,0x5b,0xb3,0xb8,0x36,0x43,0x95,0x33,0x9f,0x8b,0xab,0x56,0x2b,0xc0,0xa5,0x88,0x4e,0xfc,0xe,0x66,0xc6,0x79,0xe7,0x9e,0x8d,0x6f,0x7e,0xee,0xb3,0xf0,0xda,0x7f,0xf1,0x1a,0x5c,0xf4,0xc8,0x47,0x84,0x8e,0xd8,0xa2,0x91,0x37,0x34,0x5,0xf9,0xbd,0xb0,0x41,0x70,0xf1,0x7d,0x38,0x72,0xf8,0x30,0xae,0x7c,0xec,0x63,0x70,0xeb,0xad,0x5f,0xc2,0x6c,0x36,0x2f,0x13,0x84,0xbc,0xe3,0x8e,0xeb,0x3b,0xaf,0xe8,0x67,0x3d,0xbe,0xf1,0x89,0xdf,0x60,0x18,0xb,0xf5,0x5a,0x2,0xa0,0x69,0xb3,0x6f,0x2c,0xb2,0x69,0x4a,0xc0,0xce,0xe1,0xff,0x79,0xdb,0x9f,0xe3,0x75,0xff,0xee,0x7f,0xc7,0x6d,0xb7,0xdf,0x89,0xd9,0x6c,0xe,0xe7,0x7a,0x38,0xe7,0xd0,0xcf,0xba,0x8a,0x75,0x9f,0x12,0xf1,0x92,0x88,0x59,0xbc,0x42,0xfc,0x88,0x93,0xbb,0x4b,0xdc,0x70,0xe3,0xc7,0xf0,0xfe,0x1b,0x3e,0x8c,0x97,0x7c,0xcb,0xf5,0xf8,0x8f,0xbf,0xf8,0xef,0x71,0xee,0xd9,0x67,0xc5,0x4c,0x7,0x29,0x9d,0x7f,0x85,0xfa,0x6e,0xbf,0xdf,0xf2,0x9a,0x3f,0xfc,0xfc,0xf3,0x70,0xe5,0x63,0x2f,0xc3,0x87,0x3e,0xfc,0x31,0x2c,0x16,0x5d,0xb6,0x1,0xe7,0xf8,0x7a,0x35,0x55,0x82,0x11,0x20,0xa6,0xcf,0x83,0xb4,0xba,0xf,0x3b,0xe6,0x83,0xa2,0xb3,0x9d,0x56,0x7e,0x8e,0x69,0xfa,0xc2,0xa5,0x4e,0x9a,0x24,0xd8,0xc0,0xae,0xf8,0xc9,0xd7,0x63,0xfc,0x86,0x2b,0x20,0xab,0x7d,0x8,0x14,0x83,0x86,0x2a,0xd5,0xf7,0x33,0x74,0xc2,0x90,0xe3,0xa7,0xd1,0x8d,0x4b,0x68,0x44,0x13,0xaa,0x98,0xbd,0x2b,0x14,0x5e,0x93,0x2,0x99,0xe2,0x7a,0x2b,0x12,0x9d,0x14,0x41,0xd0,0xd5,0x33,0x8,0x3e,0x8c,0x5c,0xe1,0xe2,0x7,0x26,0x84,0x18,0x24,0xcd,0x0,0x21,0x5,0xc9,0x68,0x11,0x89,0x48,0x81,0x8d,0xb0,0xa9,0x8c,0x1,0x1,0xb,0xa3,0x13,0x5,0xaf,0xd7,0x38,0xeb,0xfa,0x6f,0x8f,0x29,0x5f,0x1c,0x46,0x33,0xf1,0x6b,0xa7,0xc7,0x3d,0xe3,0x39,0x8d,0x48,0x2e,0x9,0x4e,0x7c,0xd7,0x83,0x6f,0xf9,0x12,0x6e,0xfe,0xd1,0x57,0x62,0x6b,0x7e,0x4,0xfd,0xe1,0x43,0xd0,0x71,0xc4,0xb0,0xbf,0x84,0xdf,0x5f,0xc2,0x2d,0x97,0x20,0xe7,0x40,0xe2,0xcb,0x50,0x9a,0x7a,0x8,0x77,0x58,0xbe,0xfb,0x6d,0x70,0x2f,0x78,0x31,0x40,0xae,0xc4,0xd4,0xc6,0x31,0x76,0xf2,0xdf,0x53,0x3,0x89,0x26,0x63,0xcf,0xe0,0xbd,0x7d,0x1c,0x7e,0xd1,0xb,0x71,0xec,0x4f,0xfe,0x33,0xc8,0x17,0x28,0xa,0x90,0x80,0x49,0x25,0x67,0x81,0x68,0xca,0x28,0x53,0x23,0xc3,0x97,0xbc,0x4,0x46,0x56,0x32,0xc7,0xd9,0x12,0x1e,0x3c,0x79,0x1a,0xf,0x1c,0xff,0x22,0xc0,0x2e,0xef,0x93,0xd8,0x39,0xec,0xaf,0xd6,0xd8,0xdb,0x5d,0xd5,0xb0,0x94,0xd,0x63,0x41,0x8b,0x9c,0xb1,0xaa,0x1a,0x35,0xc0,0x9d,0xaa,0x77,0xd6,0xd,0xfe,0xa0,0xaf,0x52,0xd7,0xae,0x16,0x68,0x92,0x4,0x35,0xa2,0x80,0xba,0xa0,0x83,0x48,0x78,0x64,0x72,0x70,0x5c,0x72,0x0,0x92,0xaf,0x3c,0x8f,0x70,0x99,0x8c,0xe8,0x86,0x72,0xab,0x27,0xda,0x8e,0xda,0xa9,0x1a,0xdf,0xe6,0xb,0x25,0x3d,0x94,0x36,0x74,0x88,0x14,0x5d,0xdf,0x63,0x6b,0xb1,0x3,0x3f,0x2,0xe4,0x3a,0x93,0xf1,0x5d,0x2d,0x48,0xaa,0xee,0xa4,0x5a,0xad,0xd9,0xeb,0x2b,0x2,0x63,0x6e,0xbb,0xe3,0x1e,0xbc,0xe5,0x37,0xfe,0x33,0xfe,0xdb,0x3b,0xdf,0x87,0xdf,0xf8,0xc5,0x7f,0x87,0x6b,0xae,0x7e,0x32,0x84,0x9,0x29,0xed,0x56,0x27,0xb6,0xeb,0xa2,0x1b,0x1,0x59,0x2,0x61,0xf8,0xa7,0xf3,0xce,0x3d,0x8a,0xb,0x1e,0x76,0x3e,0x8e,0xdf,0x74,0xb,0x3a,0xea,0x83,0xd0,0x8f,0x8a,0x82,0x38,0x21,0x90,0x7,0xef,0x71,0xe5,0x15,0x8f,0xc1,0xce,0xf6,0x56,0x18,0xed,0x92,0x56,0x0,0x21,0xad,0xaa,0xa8,0xf2,0xda,0xc6,0xf4,0x63,0x88,0x0,0xe3,0xe8,0x31,0xeb,0x1c,0xfe,0xe0,0x4f,0xfe,0x1b,0x7e,0xec,0x75,0x3f,0x87,0x53,0x27,0x4f,0x63,0x7b,0x7b,0x81,0xf9,0x7c,0xb,0xbc,0xcd,0x65,0x3c,0x3c,0x45,0x23,0x6d,0xf0,0x51,0x52,0x6,0xb2,0x88,0x1f,0x41,0xa4,0xd8,0xeb,0xba,0x62,0x80,0xa2,0x32,0x75,0xac,0x56,0x33,0x4a,0xd8,0xa4,0xf9,0x43,0x5,0x9a,0xa2,0xaa,0x1b,0xb3,0x8a,0x68,0xcd,0xc2,0xc4,0x7a,0x7,0x6d,0x2b,0x2b,0x35,0x2,0xdc,0xca,0xd7,0x5e,0x5d,0xc7,0xc,0x8b,0x2d,0x6d,0xe3,0xd3,0xd1,0x84,0xe9,0xe4,0xec,0xc,0xa2,0x46,0x72,0x5a,0x8a,0x4f,0x6e,0x76,0xfd,0xf6,0x52,0x64,0xd7,0x61,0xbe,0xbd,0x83,0xad,0xed,0x45,0x4,0x13,0x99,0x8b,0x9e,0xea,0xe,0xb1,0xae,0x29,0x4a,0xac,0x75,0x5e,0x47,0x7a,0x8f,0xfb,0x1f,0x38,0x8e,0xb7,0xfe,0xee,0x7f,0xc1,0x5f,0xbe,0xf7,0x6,0xbc,0xf5,0x2d,0x6f,0xc2,0xb3,0x9e,0xfe,0x8d,0xb1,0xa1,0xb5,0x9f,0xf1,0x22,0xf3,0x4b,0xac,0x79,0x58,0x98,0x4c,0xb4,0x99,0x26,0xf6,0xc5,0x55,0x57,0x5e,0x8e,0xb7,0xbf,0xf3,0xdd,0x61,0xfa,0x24,0xc6,0x1d,0x10,0x7f,0x43,0x19,0x83,0x10,0xf5,0xec,0x33,0xcf,0xc0,0x25,0x17,0x5f,0x58,0x1,0xcc,0xb4,0x1,0xee,0x6c,0x4e,0xb7,0x28,0x4d,0x24,0x13,0xe1,0x2d,0xbf,0xf5,0xbb,0xf8,0xd7,0x3f,0xf3,0xf3,0xe8,0xbb,0x19,0x76,0x76,0xce,0x0,0x88,0xe1,0x3a,0xce,0xe7,0x21,0x9b,0x95,0x9c,0x26,0xde,0x82,0x16,0x86,0x8a,0x43,0x7,0xe7,0x1c,0x16,0x5d,0xf,0xaf,0x23,0xfe,0xf4,0xed,0x7f,0x89,0xbb,0xef,0xb9,0x17,0x7f,0xf6,0xfb,0x6f,0xc5,0x99,0x67,0x1c,0x6,0x9c,0x6b,0x84,0xf7,0x34,0xd9,0xdc,0xd9,0x95,0x44,0x7a,0xfd,0x9e,0xfc,0xf8,0xab,0xf0,0x81,0xf,0x7c,0x18,0x58,0x98,0x4,0x46,0x25,0x48,0xc,0xbb,0xa,0x89,0x3d,0x65,0xaa,0x56,0xac,0xb4,0x25,0xc,0xb7,0x10,0x44,0xb,0x54,0x2c,0x35,0xc4,0xa5,0x3c,0x48,0x8f,0x8b,0x61,0x4e,0xd7,0xf,0x48,0x48,0xb3,0x93,0x61,0xc4,0xdd,0x1f,0xfc,0x10,0x96,0x9f,0xfa,0x2c,0xd6,0x9f,0xbf,0x5,0x7b,0x9f,0xfb,0x22,0xd6,0x9f,0xff,0x2,0xd6,0x9f,0xfe,0x1c,0xf0,0xa9,0x7f,0xc2,0xfa,0xee,0x7b,0x73,0x6c,0x50,0x56,0x26,0xe7,0xd0,0xa9,0x94,0x54,0x46,0x11,0x48,0xa1,0x19,0xb3,0x9a,0x22,0x69,0x47,0x25,0x88,0x9b,0xc1,0xf,0x2,0x1d,0x80,0x31,0xa5,0xe5,0x11,0x87,0xf,0x8,0x5,0x2a,0x53,0xa2,0x67,0xe5,0x31,0x9c,0x68,0x25,0x5a,0xcf,0x1f,0x9c,0x38,0xc1,0x18,0x3d,0x80,0xe5,0xa,0x7c,0xc1,0xc3,0xb1,0xf5,0x94,0xab,0x41,0xab,0xfd,0x60,0xc5,0x51,0x8b,0xc1,0x4c,0xe3,0x38,0xc9,0x3b,0x13,0xa6,0x50,0x15,0x90,0xf7,0xe1,0x52,0xed,0x3b,0x3c,0xf0,0xb6,0xdf,0x7,0x6e,0xbb,0x1b,0xcb,0x7b,0x4e,0xe0,0xd4,0xcd,0x5f,0xc6,0xee,0xad,0xb7,0x63,0x75,0xd7,0x7d,0x90,0x53,0x7b,0xf0,0x89,0x6,0x5,0x84,0x78,0x4f,0x8d,0xf4,0xa6,0xd9,0x36,0xf6,0xfe,0xf1,0x53,0xd8,0xfd,0xdc,0x4d,0xa0,0xd9,0xc,0x5d,0xe,0xa4,0xb0,0xe2,0xc4,0xb8,0xce,0x30,0x0,0x88,0xac,0x9b,0xa6,0xe,0x18,0x3d,0xfa,0xb,0xbf,0x6,0x8b,0xa7,0x3c,0xd,0x18,0x96,0xf9,0xe6,0x56,0x3,0x5f,0x22,0xc3,0x15,0xa5,0x48,0x57,0x4c,0x3e,0xf2,0x6c,0x77,0x2b,0xbf,0x79,0x48,0x21,0x84,0xc0,0xc5,0x2c,0x3,0x8e,0xdc,0x82,0xd9,0xac,0x47,0xe7,0x18,0xfd,0xbc,0xc7,0x6c,0x36,0x43,0xdf,0xf5,0xe8,0x5d,0x17,0x2f,0x97,0xe2,0x67,0xdd,0x9c,0xb4,0x56,0x47,0x7d,0xda,0x0,0xa1,0xd0,0x1d,0x1a,0x61,0x5f,0x63,0x7d,0xdb,0x78,0xe9,0xff,0x7f,0x21,0xeb,0x4d,0x28,0x88,0x92,0xb5,0xb3,0x19,0xfb,0x10,0x21,0xa4,0xa1,0x29,0x19,0x5f,0xb3,0xe6,0x8b,0x5e,0x33,0x25,0xd2,0xc5,0x62,0x22,0xa1,0x8c,0xc5,0x5c,0xc2,0xdc,0x0,0x60,0xea,0x88,0x1e,0x3b,0xc0,0xc8,0xaa,0xfd,0x18,0xc4,0xa2,0xd1,0x1a,0xc7,0xec,0xc0,0x1d,0x47,0xb0,0x11,0xe7,0x34,0xb9,0x4c,0x35,0x4c,0xd4,0xb8,0x1c,0xea,0xc1,0xb1,0xc3,0xa,0xfe,0xe6,0xae,0xb,0xef,0xc7,0xe1,0xc3,0x3b,0xb8,0xe3,0xae,0x7b,0xf0,0x3,0xff,0xea,0xa7,0x70,0xcb,0x97,0x6f,0x43,0x97,0xc2,0x47,0xa8,0xb1,0x55,0xc1,0x2a,0xeb,0x93,0x0,0xaf,0x48,0xbf,0x44,0x4,0x8b,0xc5,0x2,0x17,0x5c,0x70,0x5e,0x18,0x69,0xc2,0x3c,0xaf,0x64,0xad,0xa2,0xe1,0x4f,0x76,0xe5,0x95,0x97,0xa1,0x1a,0xe2,0x6b,0x73,0x31,0x73,0x23,0x29,0xcf,0x2c,0xf1,0x90,0xd8,0xe8,0x3a,0xc2,0x5f,0xbc,0xf7,0x6f,0xf0,0x43,0xff,0xfa,0xdf,0x62,0xbd,0x1e,0x71,0xc6,0x91,0x23,0x98,0xcd,0x17,0x70,0x7d,0x57,0x51,0xf3,0xe,0xfc,0x8b,0x8b,0x47,0x8d,0x72,0x2,0x1f,0xc1,0x75,0x1d,0x9c,0x9b,0x65,0x6d,0x10,0x99,0x2e,0x5a,0x2b,0xc9,0xe5,0x6,0x88,0x3f,0x6f,0xf8,0xb8,0x19,0xdf,0x36,0x2a,0xb2,0xa2,0xcd,0x7d,0x4e,0xc1,0x43,0x54,0xe9,0x28,0xf2,0xf3,0x55,0x23,0xda,0xb3,0x6,0x20,0x85,0xa1,0xd9,0xd4,0x3e,0xb2,0xa2,0xe7,0xc9,0x73,0xa0,0xd5,0xe4,0xa4,0x5a,0xdd,0x1a,0x6d,0x80,0x7d,0x1c,0x4b,0x77,0xa9,0x55,0x66,0x43,0x9e,0xc2,0x66,0x40,0x16,0xd7,0x82,0xda,0x64,0x9f,0xe6,0x92,0x74,0x8,0x8e,0x9f,0x47,0x76,0x11,0xca,0xe5,0xc0,0x5d,0x87,0xbe,0x9f,0xe1,0xd0,0xa1,0x43,0xb8,0xeb,0xde,0x7,0xf0,0x7d,0x3f,0xf8,0xe3,0xf8,0xec,0x17,0x6e,0x2e,0xe9,0x94,0xd5,0xe3,0x5c,0x88,0xfb,0x4a,0x54,0xe3,0xbe,0x13,0xc8,0x2b,0xc6,0x94,0x5f,0xfe,0x98,0x4b,0xc1,0x8e,0xb,0x6f,0xc1,0xe8,0xf,0x12,0x58,0x4b,0x44,0x71,0xfe,0xc3,0x8e,0xe2,0xec,0x33,0x8f,0xd4,0xd1,0x12,0x13,0xef,0xe4,0x64,0xee,0x1f,0xde,0x6e,0x17,0xd0,0xea,0x1f,0xfd,0xbb,0x4f,0xe1,0x75,0xff,0xdb,0x2f,0x61,0x3e,0xdf,0xc2,0x6c,0xb1,0x80,0x9b,0x75,0xe0,0xde,0x4,0x73,0xe5,0xf0,0xa5,0xe8,0xc7,0x89,0x6e,0x23,0x2f,0xa,0x3f,0x4a,0x86,0xb2,0xe4,0x95,0x9,0x18,0x3b,0xdb,0x5b,0xf8,0xdb,0x8f,0x7c,0x1c,0x3f,0xf3,0x86,0x5f,0x4,0x39,0xce,0x5a,0xa1,0x2c,0x4c,0xa5,0x62,0x89,0xaf,0x69,0x8a,0xc8,0x81,0x66,0x0,0xf0,0x84,0xc7,0x5f,0x9,0x76,0xce,0x84,0x42,0x85,0x26,0x9a,0x53,0xd4,0x27,0x10,0xc6,0x72,0x5a,0xee,0xae,0xcc,0xb7,0x68,0x61,0x56,0x46,0x9d,0x19,0x80,0x68,0x93,0x91,0x29,0xe5,0x9f,0x48,0x6a,0x46,0x8,0x49,0xb0,0xc0,0x1d,0x68,0x7e,0x4,0x5f,0xfe,0x8f,0xbf,0x80,0xcf,0x7e,0xcf,0xcb,0xf0,0xd9,0xef,0x79,0x25,0xbe,0xf8,0x3d,0xaf,0xc2,0x17,0x5e,0xf5,0xbd,0xb8,0xf5,0xd5,0xaf,0xc6,0xcd,0x2f,0xff,0x56,0xac,0x3e,0xf8,0x41,0x60,0x36,0x87,0x17,0xaa,0x4,0x9f,0x15,0xe1,0x88,0xca,0x87,0x96,0x4d,0xd0,0x40,0x18,0xf3,0x39,0x88,0x57,0xf0,0xe9,0x13,0xe8,0x76,0x8f,0xc3,0xed,0x3e,0x0,0x39,0xfd,0x20,0x30,0xe,0x50,0xe5,0x6c,0x11,0xcc,0x22,0x8d,0x7c,0xc0,0x84,0xef,0xdf,0x9b,0xd0,0x9b,0x32,0x4e,0xa,0x2d,0x47,0x37,0xec,0xe1,0xcc,0x6b,0x9f,0x87,0xfe,0xec,0x23,0x70,0xde,0xc7,0x40,0x16,0x2a,0xa2,0xa2,0x6c,0x71,0x29,0x6c,0x81,0x14,0xcf,0xdb,0x3b,0x82,0xf4,0x1d,0xf0,0xe0,0x49,0x9c,0xba,0xe1,0xaf,0x31,0x3b,0x7a,0x1,0xb4,0x77,0xe1,0xcd,0xed,0x7b,0xb8,0xd9,0x1c,0xd4,0xcd,0x2a,0xb1,0xf,0x39,0x2e,0x17,0x84,0xeb,0x20,0xe3,0x80,0x7,0xdf,0xf3,0xa7,0x18,0xdc,0x96,0x29,0xf6,0x5,0x49,0xc3,0x97,0x23,0x87,0xb5,0x74,0xb,0x69,0x5e,0xab,0x44,0x10,0x9,0x82,0xb5,0x9d,0x17,0xbe,0x34,0x88,0x20,0xb3,0x6a,0x9e,0x8a,0x70,0x47,0x1,0x4a,0xe1,0x14,0x54,0x4b,0xc1,0xd3,0x7e,0x28,0x5d,0x34,0x1c,0xe1,0x3c,0x89,0x7e,0xc7,0xae,0x7,0xb9,0x19,0x5c,0xd7,0xc5,0x6f,0x28,0xfc,0xf9,0x1c,0x73,0xb8,0xf0,0xd5,0x63,0x92,0x30,0xd7,0xd8,0xfd,0xda,0xa4,0xb5,0xfc,0xec,0x49,0x3d,0x40,0x69,0x6d,0xd4,0x9b,0xf3,0x3d,0x1b,0x2a,0x5b,0xfb,0x84,0x4b,0x43,0xc7,0xaa,0xe,0x2f,0xad,0x55,0xf0,0x66,0xe6,0xc7,0x91,0x8c,0x95,0x9,0x91,0x6c,0xf6,0xa3,0x46,0x2c,0x48,0x39,0x2e,0x5a,0xeb,0x28,0x58,0x2a,0x7a,0x97,0x8d,0xd5,0xbb,0x11,0x78,0xe5,0x1c,0xfb,0x78,0xd1,0x27,0xfb,0x8d,0x98,0x24,0x17,0x35,0x20,0x86,0xc4,0x84,0x49,0xc5,0x5f,0xca,0x70,0x50,0x93,0x60,0xe6,0xfa,0x1e,0xc4,0x3d,0xb6,0xb6,0x77,0x70,0xdb,0x9d,0xf7,0xe0,0x17,0x7f,0xed,0xad,0x41,0xe7,0x21,0xa,0xb1,0x63,0x3b,0xa5,0xa9,0x11,0xd0,0xf0,0x2,0xc2,0x3e,0x9f,0xe1,0x88,0x71,0xee,0xd1,0x73,0x2,0x6a,0x97,0x8,0x44,0x2e,0xa4,0x27,0x9a,0x9,0x5a,0xfa,0xb5,0x17,0x5d,0x78,0x61,0x78,0x2d,0x6d,0x46,0x7b,0xc9,0x72,0x2e,0x5f,0xce,0xc2,0xa3,0x40,0xf0,0x3e,0x68,0x3c,0x4e,0x1c,0x3f,0x85,0xd7,0xbe,0xfe,0x17,0xa0,0xc2,0x98,0xcd,0x67,0x50,0xc7,0x20,0xd7,0x85,0x75,0x85,0x34,0xe3,0xe1,0x2c,0x8e,0x64,0x33,0xc5,0x8a,0xe3,0x39,0x83,0xf3,0xa0,0xe2,0x6a,0x8c,0x71,0xb6,0xf5,0x68,0xb9,0x2,0x1d,0x6d,0x9a,0x1b,0xc9,0x1,0x22,0xca,0x2a,0x9e,0xd5,0x88,0xcc,0xaa,0xd7,0xb8,0x88,0x49,0x37,0xe,0xab,0x36,0x4e,0xc4,0x90,0x93,0x2b,0xd3,0x39,0xa6,0x6d,0xb1,0x3c,0x71,0x6,0x6a,0x95,0xa1,0x64,0xe9,0xa7,0x79,0x8a,0x60,0x27,0x4,0x54,0xe7,0x1c,0x14,0x18,0x15,0xe5,0xd8,0x6b,0x1b,0x20,0x65,0x83,0x94,0xd2,0x17,0x49,0xce,0xac,0x0,0xb5,0x2a,0xa0,0x98,0x34,0x5,0xe6,0xae,0x7,0x98,0xb1,0x58,0x6c,0xe3,0xce,0xfb,0x1e,0xc4,0x4f,0xbe,0xfe,0x4d,0xa1,0x2b,0x4d,0x5a,0x15,0x6d,0x26,0x57,0x6a,0x3c,0xe9,0x79,0x5a,0xc3,0x66,0x9d,0xc,0x3c,0xec,0xfc,0xa3,0xe8,0x9d,0xb,0x31,0xd9,0xb0,0xf6,0x40,0x32,0xb4,0x44,0x8f,0x73,0xcf,0x39,0x8a,0x8e,0xbb,0xc9,0x64,0x44,0x37,0x74,0xd6,0xed,0x7e,0x3e,0x35,0x92,0x6f,0x78,0xf3,0x6f,0x40,0x44,0xd1,0x75,0x3d,0x98,0xbb,0xe0,0x62,0x4a,0x93,0x10,0xc7,0x70,0xae,0xcb,0x60,0xaa,0xd0,0x51,0x47,0x48,0x15,0x69,0x38,0x1e,0xa1,0xb1,0xe8,0xe4,0x3c,0x15,0x65,0x76,0xd8,0xde,0x3a,0x84,0x3f,0xfa,0xe3,0x3f,0xc3,0x57,0x6e,0xbf,0xb3,0x4a,0xf7,0xb4,0x7b,0x78,0xc8,0x74,0x3a,0x67,0x5f,0xfb,0x4b,0x2e,0x7e,0x4,0xe6,0x8b,0x79,0xd0,0x75,0xe4,0x4,0xc3,0x68,0x61,0x8d,0x1c,0x98,0x24,0x68,0xc5,0x41,0x2b,0x53,0x31,0x22,0x6a,0xf3,0xe1,0xe3,0x89,0xf4,0x53,0x8d,0xca,0xb3,0x81,0x2,0x84,0xff,0x24,0x61,0xd4,0x30,0x3b,0x4,0xe2,0x6d,0xa8,0xce,0x20,0xea,0xe0,0xd5,0x61,0xe0,0x39,0x1c,0xcd,0x21,0xca,0xf9,0x12,0x27,0x33,0xc6,0x37,0x52,0x44,0x23,0x24,0xe1,0x98,0x82,0x17,0x47,0xa3,0xea,0x20,0x83,0x60,0x7e,0xe1,0x85,0xd8,0x7a,0xd1,0xb,0xb1,0xf3,0x92,0x97,0xe3,0xf0,0x77,0x7c,0xf,0xce,0x78,0xf9,0xab,0xb1,0x38,0xf7,0x28,0xc8,0xf,0x31,0x21,0x2e,0x6,0x18,0xc0,0x54,0xb1,0x3e,0x26,0x5,0x66,0x1b,0x98,0x54,0xa9,0x4c,0x2c,0x1e,0x34,0x5f,0xe0,0xcc,0xe7,0xbf,0x10,0x3a,0x2c,0x33,0xe,0x38,0x88,0x52,0xa4,0xd8,0xb,0x25,0x46,0xc6,0x66,0xf1,0xbb,0x64,0x8e,0xb6,0xf4,0xb,0xec,0xfd,0xf5,0xfb,0xc0,0xf7,0x3f,0x80,0x51,0x19,0xbd,0xa,0x3a,0x22,0x10,0x87,0x37,0x85,0xe1,0x1,0xf5,0x10,0xef,0x33,0x81,0x4e,0xe2,0x21,0xce,0xc,0xf0,0x7c,0x7,0xfb,0x37,0xbe,0xf,0xfb,0xc7,0x8e,0x63,0xe0,0x58,0xfa,0xc5,0xdd,0x9d,0xb5,0x3a,0x69,0x9a,0xb0,0xa0,0x60,0x7d,0x55,0x25,0x28,0x89,0x97,0x4b,0x6c,0x3d,0xfe,0xeb,0xd1,0x5f,0xf2,0x28,0xd0,0xb0,0xb4,0x42,0xd5,0xda,0x27,0x6a,0x3f,0xf7,0xa6,0xb3,0x45,0x25,0xb8,0x49,0xc2,0x9a,0xf0,0x1e,0xa8,0xa8,0xe9,0x63,0x15,0x4c,0x12,0x47,0xfd,0x1e,0xaa,0x2,0xaf,0x3e,0x64,0x31,0xa8,0xc2,0xea,0xfc,0xa1,0x3a,0xa1,0x45,0x1,0x75,0x84,0x28,0xb8,0x5,0xab,0x4c,0x96,0x91,0x9b,0xdb,0xf9,0xac,0xba,0xd7,0xda,0x1f,0x94,0x16,0xd8,0x6c,0x42,0x56,0xec,0x1d,0x94,0x2f,0x6b,0x36,0x76,0x24,0x4b,0xb2,0x33,0x19,0x1,0x86,0x41,0x20,0xa6,0xf8,0xca,0x64,0x45,0x3,0x27,0xd1,0xe6,0x9b,0xa6,0xea,0xb2,0xd0,0xec,0xa3,0xcd,0x90,0xa2,0x16,0xf8,0x21,0x5a,0xc3,0x9a,0x78,0x9a,0xdd,0x92,0x46,0xb0,0x4c,0x4,0x76,0x5c,0x51,0xd1,0x54,0x42,0x7,0xe2,0x5c,0xc8,0x5d,0xdf,0xda,0xd9,0xc6,0x3b,0xdf,0xf3,0x37,0xf8,0xf2,0x6d,0x77,0x98,0x7c,0x8e,0x7a,0x34,0x4e,0x8d,0x65,0x54,0x8d,0x10,0x2c,0xed,0x2b,0xcf,0x3c,0xe3,0x48,0x5e,0x5,0xa5,0x3,0x8d,0x1d,0xe7,0x43,0x4a,0xbc,0x62,0x3e,0xeb,0x71,0xc1,0x5,0xe7,0x45,0xd,0xb,0x15,0xe1,0x1d,0xd1,0x74,0x26,0x6e,0x6b,0x8f,0x4,0x6b,0x12,0xc5,0x9f,0xbd,0xe3,0xdd,0xb8,0xf5,0x2b,0x77,0x60,0x6b,0x3e,0xb,0x1d,0x24,0x77,0x90,0xd1,0x83,0xa2,0xc0,0xd6,0x42,0x9d,0x28,0x5,0x63,0xa5,0x91,0xa6,0x16,0xcd,0xf,0x51,0x1d,0x4,0x55,0x84,0x65,0x3c,0x65,0x2b,0x6c,0xa,0x58,0xb0,0x3b,0x7e,0x9a,0x36,0xd8,0x16,0x87,0x2b,0x56,0x9c,0xd7,0x38,0xd3,0xd5,0xae,0xe4,0xb4,0x91,0xe4,0x59,0x1c,0x70,0xc3,0xd3,0xca,0x17,0x59,0x86,0x5c,0x69,0x65,0xb5,0xab,0x8a,0x11,0x6a,0x2d,0x89,0xc8,0x89,0x94,0xd5,0x77,0xd3,0x16,0x2c,0xa8,0x3,0xa5,0xf2,0xa,0xa3,0xed,0x34,0xad,0xc5,0xd3,0x84,0xed,0x70,0xfe,0xf9,0x91,0x17,0x12,0xb,0x81,0x9c,0x91,0x86,0x48,0x35,0x25,0x60,0x67,0x6b,0xb,0x7f,0x75,0xc3,0x87,0xf1,0x91,0x4f,0xfe,0xf7,0xc6,0xb1,0x52,0x70,0xc0,0x66,0x56,0x58,0x32,0x6,0xd2,0x84,0x29,0xbe,0x7f,0x67,0x1c,0xde,0x89,0xbb,0xf5,0x18,0xb6,0x64,0x1e,0xe,0x91,0xc2,0x8b,0x38,0xef,0xbc,0x73,0x4a,0x98,0x17,0x1d,0x50,0x67,0x25,0x1e,0x82,0xf1,0x18,0x52,0xec,0xd0,0x3f,0xff,0xc5,0x5b,0x70,0xc3,0x7,0x3f,0x1e,0x9d,0x2c,0xa1,0x58,0x19,0xd7,0x63,0xde,0x97,0xb0,0xc9,0xba,0x4f,0x9f,0xbd,0x54,0x8,0xf9,0x94,0xcc,0xa,0xcd,0x67,0x3d,0x3b,0xc2,0xe0,0x25,0xd0,0x56,0x5d,0x87,0xe3,0x27,0x4e,0xe1,0x23,0x1f,0xff,0xfb,0x5c,0x34,0x54,0xe7,0x34,0x37,0x8f,0x4b,0x16,0xc8,0x97,0x8f,0xdd,0xb9,0xe7,0x9c,0x83,0x9d,0x9d,0xed,0x30,0x15,0x47,0x4d,0x81,0xb4,0xdc,0x7d,0xb0,0xd1,0xcf,0x59,0xfb,0x27,0x1,0x70,0x85,0x8,0x9b,0xf5,0x5e,0x1a,0x55,0xfd,0x55,0x96,0xbb,0xfd,0x9,0xb6,0x50,0xb2,0xde,0xe0,0x88,0xc3,0x85,0xa1,0x11,0x91,0x84,0xc4,0x25,0x3f,0xef,0xd1,0xcd,0xfb,0x0,0x85,0x30,0x39,0xd1,0x39,0xd6,0x97,0xcc,0x6e,0x39,0x5d,0xaa,0x64,0xd4,0x98,0x42,0xd0,0xdd,0x25,0xb6,0x1e,0xf7,0x75,0x78,0xc4,0xff,0xf1,0x9b,0x18,0x94,0x30,0xca,0x1a,0xdd,0xf6,0x61,0x9c,0xf8,0x99,0x13,0x58,0xbd,0xfb,0x1d,0xc0,0x62,0x2b,0x2b,0xd3,0xd3,0x58,0xbc,0x74,0xbc,0xb5,0xd2,0x1b,0x31,0x7,0x59,0xa1,0xa0,0x71,0x89,0xd9,0xe3,0xae,0xc4,0xfc,0xd2,0x4b,0x30,0xae,0x57,0xa1,0x33,0x32,0xe0,0x96,0xf6,0xe1,0xb2,0x43,0x42,0x26,0xc5,0x48,0xe,0x7e,0xb5,0xc6,0xe9,0xff,0xfa,0x7,0xf0,0xdc,0x17,0x85,0xae,0x1a,0x5f,0xac,0x84,0x4b,0x23,0x1,0x5a,0x2,0x62,0xb8,0x8,0xe8,0xbc,0xdb,0x86,0xdc,0x73,0x3f,0x96,0x9f,0xfc,0x4,0x66,0xcf,0xbc,0x6,0x9d,0x9c,0xe,0xb8,0x63,0x9,0x8a,0x4f,0xa7,0x65,0xd7,0x15,0xd6,0xd,0x9c,0x55,0xde,0x4c,0xc1,0x42,0x49,0xeb,0x35,0x70,0x78,0x81,0xc5,0x73,0x5f,0x82,0xd5,0x5b,0x7e,0x1e,0xe8,0xfa,0x3c,0xad,0xf4,0x99,0xe2,0x57,0x44,0x69,0xa1,0x4a,0x35,0x71,0xa3,0x11,0x45,0xca,0x9d,0xc3,0xfe,0x72,0x37,0xb8,0x33,0xd2,0x8f,0xb1,0xb,0x5b,0x4c,0x26,0xf8,0xe8,0xf7,0x97,0x68,0xe3,0x82,0x0,0xab,0xdd,0x5d,0xc,0xeb,0x11,0x79,0x13,0x95,0x11,0xb4,0x9b,0xc6,0xf4,0xc,0x1b,0xc1,0x52,0x9b,0xbd,0xb4,0xf6,0x69,0x57,0x8,0xac,0x56,0x88,0x5b,0xef,0x64,0xf3,0xef,0x69,0xfd,0xc6,0x95,0x6a,0x2d,0xad,0x92,0xa2,0x2f,0x57,0x25,0xaf,0x4b,0x52,0xf6,0x39,0x59,0x61,0x9e,0x16,0x41,0x1e,0x65,0x8b,0x15,0xa2,0x8,0x30,0xfd,0x94,0x4d,0x91,0x84,0x65,0xbf,0xc,0x12,0x53,0x8,0x35,0xa3,0x1,0xa2,0xda,0x49,0x4e,0xf5,0xa5,0x5b,0x3f,0xc8,0x9b,0x9f,0x3f,0x24,0xc1,0x1b,0x28,0xe6,0x76,0x87,0xaf,0xc6,0x8e,0xe1,0xd4,0xe1,0xf8,0x89,0xd3,0xf8,0xcc,0x4d,0x37,0xe3,0xa2,0x47,0x5d,0x18,0xcb,0x7c,0x57,0xeb,0x2d,0xec,0x4e,0xdc,0x60,0x53,0xad,0xca,0xfc,0xd0,0xa1,0x1d,0xc3,0x63,0xe0,0xa8,0xc,0x8e,0x5e,0xeb,0x58,0xc0,0xf6,0x5d,0x8f,0xc3,0xdb,0x29,0x4,0x25,0xfa,0xac,0xb9,0xbe,0x1,0x9b,0xf5,0x7b,0x7e,0x9d,0x88,0x8,0xd4,0x39,0xbc,0xf7,0x86,0xf,0xa1,0x73,0xe,0xe8,0x18,0xcc,0xe,0x5e,0xa2,0x2d,0x37,0xaa,0xda,0x53,0xc8,0x4e,0x49,0xcd,0xb,0x3b,0x6d,0xb6,0x8,0x55,0xa2,0x6,0xc7,0x4a,0x39,0xe8,0x88,0xf9,0x20,0x21,0x88,0x55,0xef,0x27,0xb1,0x26,0x19,0xf,0x6d,0xfb,0xe6,0x99,0xd7,0xdd,0x8c,0x69,0x83,0xf,0x2e,0x69,0x31,0x42,0x9c,0x78,0x3e,0xbf,0x2a,0xb7,0x61,0x13,0x44,0xb5,0x71,0x98,0x55,0x1a,0x3,0x6d,0x35,0x3d,0x54,0xcb,0xbd,0x49,0x9b,0xcf,0xd1,0xa6,0xb1,0x82,0xf9,0x26,0x48,0x31,0x81,0x15,0xe5,0x89,0x49,0x9a,0xea,0x5a,0xd8,0xd,0x95,0xc8,0xed,0x1c,0x85,0x4d,0x45,0xe3,0x51,0x15,0xc,0xf1,0x7c,0x11,0x2f,0x71,0x7d,0x15,0xc2,0x5e,0x87,0x71,0xc4,0x8d,0x1f,0xf9,0x38,0xae,0x7e,0xf2,0x13,0x8c,0xc5,0x90,0x4a,0x56,0x0,0x6d,0xd0,0x58,0x24,0x95,0x76,0x2c,0x3a,0xb7,0xb6,0xb6,0xe0,0xb8,0xc3,0x28,0xde,0xc4,0x2f,0x53,0x80,0xc4,0x25,0xad,0xba,0x8,0xce,0x3c,0xbc,0x53,0xfc,0xac,0xd4,0xec,0x74,0x8c,0xb2,0x90,0x2a,0x0,0x46,0x5c,0x35,0xb3,0xc3,0xdf,0x7e,0xf4,0x13,0xd8,0xdb,0x5b,0xe1,0xd0,0x91,0x23,0x20,0xa,0xdf,0xbb,0xe3,0x40,0x56,0x24,0x52,0xc,0xa3,0x8f,0xd4,0xd8,0xb2,0x2f,0xcf,0xdf,0x83,0x46,0x9d,0x1a,0xb1,0x89,0x57,0x47,0x3c,0x6b,0x3a,0x38,0x26,0xb0,0x73,0xf8,0xc2,0x2d,0xb7,0xc2,0x39,0x36,0xe9,0xa8,0x8d,0xa6,0xd4,0x60,0x36,0xc9,0xd8,0x62,0x55,0x14,0x87,0x76,0xb6,0xb1,0xb3,0xbd,0x8d,0x13,0xc7,0x4e,0x80,0x7b,0xb2,0x49,0x11,0x25,0xa7,0x26,0x15,0xc,0x5c,0x26,0x8c,0x49,0x84,0xda,0x7a,0x8e,0x6c,0x3,0xd2,0x29,0x49,0x83,0xa,0x2d,0xa3,0xe5,0xd6,0x3a,0x9b,0xb8,0xc3,0x5,0xa6,0x50,0x84,0x48,0x2e,0xdb,0x7d,0x22,0xa8,0x30,0xe4,0xcc,0x9a,0xf5,0x54,0x14,0xf1,0x89,0xe6,0x7d,0x3,0x99,0x9d,0x83,0x24,0xf8,0xf,0x13,0x48,0x28,0x50,0xff,0x96,0x7b,0x21,0x4e,0xc7,0x9,0xc6,0x71,0x9,0xd6,0x31,0xea,0x82,0xa5,0x4a,0x75,0xb3,0x56,0x5,0x9b,0xc5,0x1d,0x32,0x8f,0x3,0x2e,0x45,0x95,0x40,0xc3,0xa,0x67,0x3e,0xef,0x45,0x40,0xdf,0x1,0xab,0x55,0x3e,0x50,0xc8,0x5c,0x2e,0x89,0x43,0x9e,0x31,0xc1,0x79,0x72,0x21,0xf0,0xb3,0x19,0x56,0x1f,0xf9,0xef,0x18,0x6f,0xfd,0x12,0x64,0xb6,0x93,0x13,0xe1,0x34,0x2a,0x59,0xd9,0x44,0x98,0x32,0xa7,0x44,0xbf,0x74,0x1,0xc5,0xee,0x5d,0x19,0x1d,0xcd,0xb1,0xfc,0xf3,0x3f,0xc3,0x19,0x4f,0x7f,0x16,0xc6,0xc8,0xc0,0x17,0x8a,0x61,0xb,0x9,0x82,0x11,0x2b,0x50,0x44,0x9f,0x66,0x98,0x40,0x48,0xbc,0xc0,0x9,0xd8,0xdf,0xc3,0xf6,0xb5,0xcf,0xc2,0xa9,0xdf,0xfd,0x35,0x60,0x39,0x42,0xe6,0xae,0xb6,0x52,0x65,0x65,0xad,0x96,0x8e,0xcb,0xbc,0x36,0x9d,0xeb,0xb0,0x1c,0x97,0xb8,0xee,0x59,0x4f,0xc7,0x33,0x9e,0xfa,0x24,0x38,0xc7,0x98,0xcd,0x66,0xe8,0x5c,0x87,0xc5,0x62,0xb,0x8b,0x99,0x43,0xd7,0x77,0xf0,0x5e,0x31,0x7a,0xf,0xef,0x5,0xfb,0xab,0x35,0x8e,0x3d,0x78,0x2,0x97,0x3d,0xe6,0x92,0x70,0xb1,0x68,0xc3,0x93,0x23,0x8d,0x6c,0x69,0x2b,0x82,0xa3,0x5a,0x59,0x4d,0xd4,0x12,0x2b,0xca,0xcf,0xd9,0xa0,0x0,0xae,0xfe,0x43,0x2c,0x8e,0xb2,0x9c,0x4e,0x51,0x13,0xb6,0x9a,0xb8,0xf2,0x32,0x56,0xa3,0x92,0x55,0x6d,0xc6,0xba,0xf9,0xf7,0x60,0x2d,0xe2,0xa1,0x26,0xb2,0x8a,0xdb,0x33,0xdb,0x7a,0xba,0xa9,0x11,0x8b,0xd1,0x86,0x1,0x86,0xd2,0x4,0x97,0x89,0xf8,0x35,0x2b,0xf1,0x66,0x4a,0x69,0x8c,0x16,0x55,0x73,0x3e,0x9b,0x61,0x82,0xd6,0x62,0x32,0x14,0xa5,0xbf,0x32,0xe1,0xe4,0xc9,0x53,0xc5,0x9a,0x49,0x6,0xd6,0xd3,0x88,0xab,0xca,0x78,0xb1,0x1c,0xaa,0xa,0x60,0x96,0x60,0x21,0xd,0x48,0xd0,0x25,0x94,0x32,0x29,0x16,0xb3,0x1e,0x5b,0x5b,0xb,0x6b,0x62,0x28,0x63,0x7d,0xc6,0xc4,0x55,0x53,0xe9,0xf0,0x18,0x58,0x2f,0x7,0x7c,0xe5,0xf6,0x3b,0xd1,0xf7,0x5d,0x48,0xa1,0x94,0x72,0x21,0x94,0xbc,0x94,0x9a,0x87,0x9f,0x89,0x73,0xb1,0x2b,0x8c,0xf0,0x0,0xf3,0x31,0x32,0xd1,0xab,0xf1,0x22,0x60,0x6a,0xed,0x77,0xd5,0x8a,0x7c,0x32,0xfe,0xa5,0xda,0x3c,0x91,0x3f,0xb5,0xd6,0x11,0x90,0xb,0x93,0xbc,0x41,0x49,0xd1,0xa9,0xd3,0x89,0x69,0xb6,0xc7,0x66,0x45,0xfc,0x24,0xe,0x30,0xfc,0x19,0x3c,0xaa,0xa4,0x4e,0xd5,0x56,0xb8,0x68,0x27,0x27,0x6a,0xf2,0x32,0xb4,0xea,0xd8,0x27,0x74,0x42,0x9d,0x68,0xc6,0x4a,0xf8,0x14,0x95,0xe6,0xc0,0xda,0x5e,0x43,0x61,0x69,0x74,0x6,0x66,0x75,0x26,0x71,0xe2,0x95,0xb5,0x30,0x71,0x54,0x1e,0x2,0xcb,0xd2,0x7b,0x14,0xb8,0x20,0x77,0xde,0x76,0x47,0x5e,0xe1,0xaa,0xf5,0x82,0x53,0x1,0x55,0x51,0x3,0xf3,0xc9,0x93,0x42,0x2,0xfa,0xae,0x43,0xc7,0x8c,0xc1,0x7b,0x23,0x6c,0x36,0x81,0x3f,0xf1,0xcd,0x3d,0xe3,0xc8,0x91,0xa8,0x9d,0xd1,0x9c,0x5e,0x58,0xe7,0x87,0xd8,0x57,0xa4,0x91,0x41,0x12,0xe1,0x93,0x9f,0xfa,0xc,0x88,0x9,0x5e,0x43,0x80,0x98,0x63,0xce,0x93,0x8,0xb6,0xa7,0x97,0x6a,0xd6,0xc5,0x24,0x91,0x6b,0x29,0xd0,0xa3,0xfe,0xc7,0x97,0x3b,0x27,0xbc,0xf5,0x2,0x72,0x8c,0xdb,0xee,0xb8,0xb3,0x52,0x1e,0xea,0xa6,0x3d,0x90,0xc2,0x64,0x95,0x94,0x7e,0x68,0xd6,0x77,0xd8,0xda,0x5a,0x4,0xaf,0x3e,0xa1,0x9a,0x2,0x11,0x99,0x54,0x53,0xd4,0xcf,0xba,0x8a,0x54,0xb0,0xa8,0x66,0xb0,0x15,0x3b,0x7e,0xd3,0x35,0x65,0x1c,0x6f,0x15,0xc4,0x52,0x41,0xbe,0xa,0x41,0x88,0xb9,0x58,0xc7,0x28,0xc0,0x62,0xb8,0x3,0x68,0x48,0xd6,0x10,0x7,0xa1,0xc8,0x9e,0xe5,0x12,0x42,0x1,0xe3,0x13,0x4d,0xc2,0x61,0x49,0xc1,0x6,0x14,0xd0,0x28,0xa1,0x43,0x67,0xa8,0xf,0x57,0x3c,0xbb,0xe,0xa4,0xe,0x83,0x97,0x80,0x31,0x54,0xf,0xc4,0x84,0x3a,0x8b,0x1d,0xb0,0x90,0x8c,0xf0,0x35,0x24,0x1e,0x84,0xc,0xe7,0xd7,0xe0,0x33,0xe,0x63,0xfb,0xe9,0xcf,0xc4,0xb0,0xdc,0xcb,0x1f,0x6c,0x8e,0xdf,0x7b,0xee,0x47,0x85,0xc,0x1d,0x29,0x7c,0x9f,0x1d,0x12,0x1e,0xd4,0x61,0xfd,0xae,0x3f,0xf,0x91,0xb5,0x8e,0xd1,0xd1,0x8,0xf5,0x4,0xc4,0x40,0x1a,0x32,0x2c,0xfc,0xb0,0x82,0xe0,0x8,0x72,0x40,0x8c,0xa2,0x54,0xc8,0xf2,0x5e,0xcc,0x95,0xa0,0x1f,0x79,0x3f,0xf6,0xbf,0xf0,0x69,0xcc,0x2e,0xbb,0x2,0x3c,0x2e,0xcb,0x3,0xad,0x85,0x47,0x96,0xa2,0x68,0x55,0x35,0x90,0xb,0xd3,0xa8,0xd,0x4,0xac,0x7,0x74,0xf,0x3b,0x1f,0x8b,0x27,0x5d,0x8d,0xbd,0xf7,0xbf,0x7,0x98,0x9f,0x11,0xfe,0xbb,0xe3,0xe8,0x3e,0x88,0x51,0x8d,0x52,0xdb,0xcd,0xc2,0xca,0x3,0xe0,0x8e,0x30,0x2c,0x97,0xf8,0xe6,0xe7,0x5d,0x8b,0xef,0xfd,0xae,0x97,0xa1,0x63,0x57,0x68,0x7d,0x1b,0xc0,0x55,0x92,0x67,0xe0,0xa9,0x9a,0x2c,0xe0,0x8,0x4a,0xac,0x74,0xe5,0xc6,0x79,0xac,0xe6,0x12,0xa0,0x5a,0x73,0xd0,0x58,0xfd,0x68,0x93,0x98,0xc9,0x5c,0xaa,0x6a,0xc5,0x51,0xa2,0xa1,0x23,0x6c,0xe,0xc6,0xa6,0xa9,0xb5,0x5a,0xf3,0x94,0xdf,0x14,0xf3,0x7,0x4a,0x41,0x2,0x87,0x1c,0xc7,0x99,0xf6,0xef,0xa2,0xf1,0xe7,0x6b,0xe1,0x85,0x93,0xa5,0x6b,0x6c,0xa,0xcf,0xa5,0x87,0x72,0x1e,0xd4,0x91,0x6f,0xd4,0xb8,0x1c,0xd4,0x8e,0xef,0x44,0xeb,0xd2,0x83,0x60,0xe,0x5c,0x23,0x4e,0xa3,0xc2,0x2b,0x48,0x5f,0x7c,0x18,0xc7,0xd0,0x81,0x80,0x9a,0xa0,0xad,0xa9,0x9f,0xb9,0x2,0xaf,0xc5,0x11,0xdc,0xac,0x73,0x20,0x4e,0xea,0x6d,0xcd,0x29,0x8b,0x22,0xa5,0x93,0xe8,0xfb,0x1e,0x7d,0xef,0xf2,0x24,0xa8,0x54,0x1f,0xa6,0xf8,0xd1,0x5a,0x5a,0xa0,0x99,0x61,0xe8,0xb0,0xbb,0xdc,0xc7,0x89,0x93,0x27,0x83,0xf6,0xc5,0xd8,0xd7,0x2a,0x3d,0x8e,0x52,0x6b,0x46,0x89,0x53,0x1c,0x36,0xed,0xba,0xc6,0x80,0xa3,0x1a,0x1f,0x1d,0x88,0x43,0xc9,0x7a,0x1c,0x9b,0x13,0x9d,0x7c,0xa2,0xd0,0xc0,0xe3,0xb,0x5,0x91,0x36,0x5c,0xa0,0x71,0xf2,0x93,0x3,0x7b,0xb2,0xc5,0xb9,0xa1,0x38,0x46,0x20,0x8b,0xa5,0xed,0x69,0x2d,0xb1,0xa9,0x3f,0x17,0x12,0x0,0x55,0x44,0x1b,0x26,0x60,0x93,0x71,0x8f,0x4e,0x8a,0x2a,0x9a,0x52,0x12,0xe,0x74,0xbd,0xd4,0xcc,0x79,0x54,0x3c,0x37,0x22,0x13,0x10,0x66,0xfd,0xf0,0xd5,0xe5,0x69,0xc4,0x5,0x89,0xe5,0x6f,0x1d,0x2e,0x12,0xce,0xab,0xae,0x63,0xec,0xee,0xef,0x1b,0xbd,0x7e,0xbe,0x2,0xea,0xb1,0xb6,0x9d,0xcf,0xd7,0x31,0x31,0xe1,0x2,0x36,0x3a,0x8d,0x42,0x1c,0x45,0x2e,0x4e,0xc0,0x84,0x9d,0x9d,0xed,0xf8,0xef,0x5a,0x5f,0xf4,0x5a,0xaf,0xe3,0xb4,0xd9,0x7b,0x4a,0x48,0x29,0xc3,0x17,0x6e,0xbe,0x5,0x2a,0x23,0x86,0x61,0x3f,0x84,0xfa,0xc0,0x81,0x5d,0x68,0xe4,0xc6,0xa4,0xbd,0x8a,0x7f,0x68,0x9f,0xf4,0x6,0x62,0x60,0xf6,0x6a,0x77,0xfe,0xe1,0x8d,0x17,0x9,0x4d,0x1f,0x81,0xa0,0x7e,0xc4,0x9d,0x77,0xdf,0x5,0xa3,0x19,0xaf,0xef,0x2b,0xdb,0x6b,0x6f,0xf8,0x6f,0x9d,0xeb,0xb0,0x98,0xf5,0x10,0xef,0x21,0xbd,0x20,0x4b,0xf2,0x24,0x10,0x78,0x34,0xc6,0x1b,0xe7,0xb4,0x45,0x23,0xe8,0xdc,0x0,0x5f,0xac,0x3e,0x53,0x5d,0x86,0x16,0x93,0xf9,0xdc,0x25,0x9a,0x83,0x16,0x8b,0x47,0x5a,0x76,0x68,0xaa,0x6a,0x98,0xe0,0x93,0xc5,0x1b,0x14,0xed,0x18,0x41,0x9,0xa,0xe7,0x22,0x49,0xc,0x19,0xdc,0x92,0x7,0x5e,0x6,0xc3,0x9a,0x2c,0x5d,0x29,0x83,0x5e,0x50,0x2a,0x4b,0x21,0x8e,0x5,0x40,0x38,0x10,0x5c,0x54,0x95,0x46,0x4c,0x4b,0xde,0xb3,0xa5,0xc0,0xa9,0x14,0x14,0x54,0xb1,0xd3,0x2,0xc5,0x27,0x54,0x5f,0xcb,0xd3,0x58,0x3c,0xfb,0xc5,0xe0,0x87,0x1d,0x85,0xec,0xed,0xe6,0xaa,0xaf,0x4a,0x5d,0xb3,0xd1,0xa1,0x54,0xba,0x4c,0x40,0xe1,0x7b,0x7,0xbd,0xfb,0x7e,0xac,0x3e,0xfa,0x1,0xf8,0x7e,0x11,0x47,0x73,0x94,0xbb,0x7a,0x25,0x94,0x8b,0x48,0x0,0x19,0x53,0xfc,0x6d,0x34,0xff,0xf8,0x1,0xf3,0x8b,0x2e,0xc5,0xc3,0xff,0xf9,0x8f,0xa2,0x3f,0xb4,0x85,0xd9,0x8a,0xb0,0x77,0xf4,0x61,0x71,0xe,0xc2,0xc1,0x79,0xae,0x31,0x5d,0x2c,0x67,0x6c,0x47,0x4,0x68,0x16,0x31,0x46,0xc1,0x8c,0x44,0xab,0xe2,0x7a,0x85,0x43,0x2f,0x7a,0x29,0xd6,0xef,0x7b,0x37,0xa0,0x50,0x69,0xbe,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xc6,0xd1,0xc3,0x77,0x2e,0x16,0x29,0x65,0xbf,0x98,0x2b,0x41,0x2e,0x87,0xa3,0x90,0x62,0x10,0x8f,0xed,0xc5,0x36,0xde,0xfc,0x96,0xdf,0xc2,0x6f,0xff,0x5f,0x7f,0x88,0x8e,0x7b,0x74,0xcc,0x98,0xcd,0x1c,0x2e,0xb8,0xe0,0x5c,0xfc,0xa7,0x5f,0xfb,0x25,0xcc,0xfb,0x3e,0x6d,0xd6,0xb2,0x90,0x2d,0xed,0xdd,0xec,0xc9,0x9e,0xba,0x94,0x6a,0xd4,0x54,0xd8,0x51,0x46,0xa0,0x95,0xe0,0x15,0x54,0x8f,0xf0,0x69,0x83,0x63,0xcb,0x4,0x89,0x64,0x1c,0x6f,0xf2,0xd1,0x27,0x70,0x79,0x5a,0xd3,0x8,0x47,0x3b,0x67,0x2c,0xe6,0xc4,0x4e,0x76,0xcb,0x4a,0x80,0x39,0xac,0xa8,0xc8,0x28,0xa4,0xf3,0x3a,0x24,0xad,0x46,0xaa,0x30,0x2e,0x13,0xd9,0x4b,0xd2,0x5e,0x1d,0x1b,0xe6,0xc8,0x9b,0x2b,0x80,0xbc,0x5b,0x8d,0xeb,0x1e,0xcd,0x51,0xab,0x54,0x77,0xb5,0xd5,0xc1,0xaf,0x53,0x6e,0x10,0xa7,0xa1,0xb6,0x4c,0x9c,0x4,0x93,0x51,0x6e,0x2a,0x90,0x4c,0x57,0x61,0x41,0x75,0x69,0x74,0x99,0xa7,0x6f,0x14,0x84,0xa8,0x5,0xc,0x67,0x2d,0x8b,0x26,0xf4,0x24,0x7e,0x5a,0xa7,0x1c,0x1c,0xaa,0xa7,0xca,0x4d,0x40,0x48,0xba,0x70,0xd6,0xab,0x35,0xd6,0xab,0x31,0xa,0xa8,0xcc,0x98,0xd4,0x46,0x88,0xb2,0xda,0xed,0x59,0xf8,0x8a,0x54,0xe3,0x7d,0xed,0xde,0xbd,0xa4,0x37,0x6a,0x9d,0x77,0x6e,0xbf,0x1,0x29,0x93,0xa0,0xf6,0xf0,0xad,0x52,0x2e,0xdb,0x9,0x1,0x15,0xeb,0x67,0x9a,0x9a,0x95,0xae,0xdc,0x8e,0xcd,0x5b,0x8d,0xd4,0xd4,0x3f,0x3e,0x69,0xf4,0x92,0xba,0x3b,0x7d,0x8e,0x5b,0x3c,0x71,0xa3,0xd4,0xc8,0xe4,0x53,0x90,0x49,0x1c,0x34,0x7f,0x46,0x9b,0xa2,0xaa,0xed,0x4a,0xc0,0xec,0xf9,0xd5,0x32,0x4f,0xca,0xb3,0x44,0x0,0xe0,0xc2,0xd4,0x2e,0x25,0xc6,0x65,0x98,0x4,0xa3,0x82,0xfc,0x48,0x45,0x34,0xe2,0x8a,0x40,0x37,0xe,0xde,0x30,0x35,0xc8,0xa4,0x5d,0x17,0x26,0x4a,0xb,0x29,0x50,0x35,0xce,0xa,0xa6,0x6,0x6b,0x8c,0xbc,0xbe,0xb1,0xe1,0x4e,0xb3,0xbe,0x2f,0xdc,0xe,0xc3,0xd,0x51,0xda,0x50,0xfa,0x54,0xef,0x77,0x58,0x53,0x3f,0xfa,0xe2,0x47,0xe2,0x8e,0x3b,0xef,0xc2,0x6c,0x3e,0xaf,0x14,0x93,0xe5,0xf9,0x8c,0x6a,0x7e,0x25,0x88,0xf7,0x65,0x1d,0x43,0x34,0x29,0x1a,0xc9,0xe0,0xc7,0x1d,0x8,0x4a,0x82,0xfd,0xbd,0x3d,0x5c,0xfe,0xa8,0x8b,0x51,0x69,0xcf,0x4d,0x32,0xe2,0x4,0x72,0x40,0x9,0x53,0x1f,0x7e,0x22,0x77,0x8c,0xd9,0x62,0x5e,0x39,0x6a,0xb2,0x32,0x3a,0x3e,0x1c,0xa2,0x4d,0x18,0x44,0x7a,0xae,0x2b,0xa,0x59,0xf2,0xf7,0x47,0x30,0x97,0x2a,0xba,0xe2,0x5b,0x2f,0x20,0x67,0xcd,0xe1,0x6,0x66,0x57,0xab,0x21,0xd0,0x24,0x7,0xfa,0x69,0xec,0xce,0xc9,0x5,0x15,0x3d,0x3,0x2a,0xc,0xed,0x1c,0xc4,0x75,0xf1,0xe2,0xd6,0x4a,0xa8,0x64,0x79,0xca,0xce,0xbc,0x10,0xc,0xd,0x97,0x73,0xfc,0xef,0xa,0x2,0x49,0x50,0xb4,0x75,0xec,0xc2,0xa5,0x38,0xc,0xb1,0x62,0x52,0x9b,0x2c,0x94,0xc7,0xa4,0x39,0x4e,0x3d,0x75,0xa5,0x84,0x90,0xd4,0x14,0xb,0x3,0x6,0xe3,0xac,0x17,0x7e,0x3b,0x54,0x46,0xa8,0xd7,0x2a,0x37,0xa9,0x88,0x60,0xd3,0x87,0x50,0xaa,0x13,0x82,0x48,0x20,0xfd,0x1c,0xeb,0xf,0xbc,0xb,0xe3,0x83,0x27,0xa1,0x87,0xcf,0xe,0x1,0x40,0x92,0xd4,0x1f,0x5,0x9d,0xa5,0x92,0xa2,0x69,0x53,0xaa,0x59,0xe8,0x1a,0x1d,0x33,0xfc,0xa9,0xfb,0x30,0xbb,0xfc,0x6b,0x81,0xb3,0xe,0x63,0x5b,0x15,0xc3,0xde,0x1a,0x18,0x86,0x9c,0xcc,0x94,0x8f,0x7,0x2e,0x6a,0x4c,0x7b,0xf0,0x78,0x2d,0xaa,0x54,0x85,0x82,0xd6,0x4b,0xcc,0xbf,0xe1,0x2a,0xf4,0x8f,0x79,0x34,0xe4,0x4b,0x5f,0xc1,0xe8,0xb6,0x72,0xc0,0x97,0xc4,0xc3,0xda,0x3e,0x90,0x49,0x1c,0xa7,0x42,0x10,0xf5,0x60,0x76,0xb8,0xfb,0xde,0x63,0xb8,0xeb,0xee,0x7,0xf2,0x25,0xd0,0x77,0x8c,0x2f,0xdc,0xf2,0x15,0x3c,0x70,0xec,0x38,0xce,0x3b,0x7a,0x76,0xd8,0xc5,0x46,0xd0,0xe,0x25,0x32,0x17,0x52,0xf0,0x92,0x4d,0x0,0xa5,0x46,0xec,0xa4,0x95,0x55,0x85,0x68,0xc3,0x28,0xbf,0x55,0x54,0x1d,0xf0,0xcf,0x36,0x36,0x33,0x9,0x1e,0x4b,0x4c,0x5a,0xb8,0x94,0xc5,0xe,0xb5,0xb9,0x74,0x8e,0xf9,0x78,0xe1,0x70,0x8d,0xf7,0x9d,0x8b,0xa3,0x42,0xca,0x21,0x44,0x59,0xa4,0xa3,0xe1,0xd0,0xa3,0xca,0xf2,0x46,0xa6,0xdb,0xde,0xd4,0x46,0xa1,0xf2,0xf5,0xd3,0x41,0x7c,0xa1,0x9c,0xaa,0x81,0xd6,0x74,0x5c,0x89,0xbc,0x58,0x4b,0x57,0x89,0x6c,0xfb,0xb1,0xe3,0x5f,0xc9,0x1a,0x99,0xcc,0x89,0x7,0x1a,0xbf,0x38,0xaa,0xcb,0xb4,0x7a,0x5f,0x36,0xd1,0xea,0x62,0x38,0x9,0x33,0x87,0xe7,0x9b,0x22,0x68,0xc9,0xc7,0xd7,0x80,0x4d,0x81,0x10,0x5,0x7f,0xad,0xc,0x43,0x27,0x22,0xc7,0x76,0x76,0x13,0x7e,0xf6,0x30,0xe,0xf0,0x5e,0xa,0xa9,0xd3,0xac,0x25,0xd0,0x3e,0x8f,0x98,0x5e,0x60,0x69,0x8d,0x44,0x49,0x41,0xd9,0xce,0xec,0x4d,0xe7,0x5d,0x7b,0xe8,0xe,0xe8,0xa2,0xf3,0xbe,0x94,0x1a,0x14,0x3f,0x97,0x3a,0xcc,0x8c,0xbd,0xd5,0x14,0xac,0xf4,0x10,0xc5,0xde,0xe6,0xcf,0x4b,0xf3,0x3a,0x9,0x2a,0x5,0xcc,0xc6,0x55,0x4,0x4d,0x96,0x34,0xc6,0x73,0x6f,0x7d,0xa3,0x5a,0xb3,0x1a,0x9a,0xfd,0x54,0xfa,0xd9,0x8e,0x83,0x4b,0x27,0x79,0xf8,0xcb,0xa0,0xa6,0xb0,0xdf,0xf3,0xa5,0xaf,0x9c,0x43,0x98,0x24,0xa1,0xad,0xd9,0x6e,0xe1,0x38,0x43,0x88,0x28,0xc6,0x5b,0x7,0xd4,0xb3,0xaf,0x79,0x0,0x79,0x4d,0x62,0xe6,0xd8,0xcd,0x8,0x84,0x68,0x2a,0xaa,0xd4,0x86,0x31,0x60,0xf6,0x28,0x20,0x62,0xcc,0x66,0xdd,0x81,0xc6,0x89,0x4d,0x4f,0xa3,0x36,0xd3,0xba,0x5f,0xf9,0xf9,0x9f,0xc5,0x72,0x7f,0x3f,0x66,0x95,0x50,0xee,0xda,0x53,0x41,0x9e,0x9a,0x42,0x91,0xf8,0xcc,0x69,0x83,0x6f,0x8e,0x7f,0x2e,0x6e,0x62,0x90,0x5d,0x44,0xd,0xab,0x28,0x66,0x5d,0xa2,0xe2,0x4f,0xb,0xc4,0x7c,0x87,0xc1,0xd0,0x6a,0xa9,0x5c,0x66,0x4c,0x84,0xd9,0xac,0x33,0xaf,0x1b,0x65,0xb1,0x22,0xa1,0x9e,0x1c,0xa6,0x82,0x45,0xac,0x9d,0x3d,0x85,0xea,0xa5,0x95,0x4b,0x76,0x92,0x0,0x5d,0x4e,0xe3,0xe3,0x5a,0xc8,0x5a,0x99,0x23,0x39,0xf5,0x7a,0xa9,0x7a,0x13,0x8c,0xcb,0xfd,0x78,0xf9,0x73,0x5a,0x34,0x82,0x5,0xc0,0xea,0x64,0x14,0x3,0x39,0x13,0x50,0x42,0x99,0xb3,0x9f,0xf,0x6,0x8e,0x97,0xb2,0xf7,0xa0,0xe,0x70,0xb9,0xd5,0xa,0x1d,0x3a,0xe7,0x90,0x95,0x30,0xda,0xd7,0xce,0xc5,0x37,0xbc,0xbc,0xa1,0x61,0x8f,0x1e,0xc7,0x1c,0x5d,0xba,0x17,0x4a,0x27,0xc1,0x4c,0x10,0x62,0xb8,0x71,0x85,0xf9,0xa5,0x97,0x62,0xf1,0xd8,0xc7,0x42,0x56,0xab,0x20,0xd2,0x50,0x2d,0x61,0x9,0x66,0xc0,0x91,0x8f,0xe2,0xd8,0x75,0xbb,0x98,0xf1,0xad,0x2b,0xc1,0xfe,0x7b,0xdf,0xe,0xb8,0x79,0xb1,0x77,0x65,0x4,0x6d,0x38,0x1c,0x25,0x7e,0x8,0x94,0x1,0xa6,0x40,0x8a,0xb,0x51,0xa6,0xc,0xef,0x66,0x70,0x77,0xdd,0x8b,0xbb,0xdf,0xf0,0x53,0x78,0xd4,0x1b,0xdf,0x8c,0x3d,0xbf,0x8f,0x5e,0x19,0x83,0x10,0xc4,0xa1,0x11,0x73,0x15,0xd5,0x2c,0xc4,0x84,0x11,0x21,0x14,0x58,0xc,0x5,0xbc,0x3,0xc9,0x0,0x7f,0x68,0x86,0xc5,0xb,0x5e,0x8e,0xd5,0x9b,0xdf,0x0,0xda,0xda,0x86,0x47,0xa4,0x44,0x29,0x65,0x3b,0xa2,0x26,0xaf,0x71,0xac,0xe0,0x3,0xca,0x3c,0xd8,0x65,0xe6,0x7d,0x1f,0x18,0xe0,0x3e,0x26,0x73,0x91,0xc3,0x62,0xb1,0xd,0x11,0x1f,0x43,0x99,0x26,0xd9,0x24,0x25,0x95,0x8f,0xcc,0x5e,0xcd,0x7c,0x70,0xd4,0x76,0xd9,0x5a,0x2a,0x74,0x61,0xaa,0x63,0x87,0x1f,0x5a,0xc8,0x9f,0x39,0xfa,0x96,0xa7,0xf,0xeb,0xa9,0x6f,0x23,0x9d,0xe3,0x61,0xa5,0xa6,0x5b,0x20,0x28,0x20,0x2e,0x3f,0x94,0x7d,0xdf,0x85,0x71,0x78,0xcc,0xc,0xd0,0x94,0x96,0x83,0x94,0x29,0xa0,0xf9,0x22,0x80,0xd9,0x97,0xdb,0x98,0xd3,0xfc,0x0,0xab,0x81,0x62,0x6a,0x91,0xf,0x70,0x7d,0x8c,0xe7,0x4e,0xc0,0xfa,0xb3,0x2b,0xe1,0x93,0x26,0xff,0x6e,0xc,0x6e,0x4a,0x1c,0xf1,0xf6,0x56,0x25,0xd4,0xc0,0xa6,0x86,0x8b,0xe,0x6a,0x3,0x51,0x6a,0x72,0x19,0xb5,0xe3,0xfe,0x49,0x5a,0x5e,0x5d,0x8b,0x65,0xa0,0x11,0x15,0xf0,0x8c,0x4b,0x96,0x44,0x18,0x1e,0xfd,0x86,0xe4,0xb1,0xca,0x5a,0x69,0x78,0xd1,0xe3,0x38,0xc6,0x1c,0xf6,0xf0,0xfb,0x88,0x8f,0x74,0x4a,0x1b,0x76,0x43,0x46,0x6b,0x61,0xc4,0x7e,0xe0,0xa8,0x33,0xda,0x20,0x5a,0xb3,0x5f,0x83,0x2c,0xcb,0xff,0xa0,0xbd,0x7e,0xeb,0xc9,0x68,0x3e,0x97,0x64,0xf2,0xd6,0x27,0x97,0xb,0x37,0xbf,0x21,0x6d,0x8,0xfd,0xa9,0xd5,0xc2,0x53,0xe7,0xc0,0xe4,0x37,0xae,0x91,0xd0,0x68,0xdc,0x82,0x93,0xe9,0x92,0x6a,0x9e,0xcb,0x4c,0xa4,0x7e,0x66,0xd7,0x42,0x68,0x74,0x30,0x8c,0xec,0x94,0x28,0xcf,0x72,0x4c,0x0,0xa5,0xe8,0x98,0x70,0x14,0xd5,0xf3,0x9a,0x3b,0x7e,0x26,0xca,0x80,0xb1,0xf8,0x86,0x94,0xbc,0x10,0x53,0x3c,0xe4,0x51,0xbe,0x5d,0xbf,0x9a,0x2c,0x1,0x6a,0x68,0x86,0x15,0xd8,0x51,0xe2,0x67,0x2e,0xa1,0x74,0x8d,0xe8,0xd0,0xc2,0xb2,0x32,0xfc,0x8b,0x9d,0x45,0x45,0x1c,0x80,0xea,0x29,0x22,0x5e,0xb,0x3d,0xa,0xc9,0xae,0xe,0x87,0xfb,0x9d,0x29,0xc4,0xa1,0x39,0x8c,0x92,0xe3,0x4a,0x73,0xba,0xe7,0xa6,0x3,0x31,0xf2,0x19,0x62,0xbc,0x2f,0xf3,0xb4,0xb8,0xb1,0xb2,0xa6,0x36,0x94,0xaa,0x82,0xd9,0x27,0x73,0x99,0xa6,0xa6,0xbb,0xae,0x63,0x42,0xd7,0x2e,0x65,0xe2,0x94,0x6c,0x86,0x49,0xd0,0xc9,0x26,0xaa,0x5d,0xa9,0xc5,0x77,0x86,0x86,0xba,0xec,0x68,0xa7,0xc8,0x5e,0xb2,0x3b,0xcd,0x34,0x2d,0xf6,0x1e,0xdd,0x91,0x23,0x38,0xf3,0xea,0x67,0x40,0x3b,0x87,0xde,0x39,0xac,0xfa,0x39,0x70,0x68,0x7,0x3a,0xdb,0x6,0x1d,0xda,0x42,0xff,0x98,0xcb,0xa1,0xc3,0x0,0xb5,0x84,0x2a,0x29,0x6f,0xa4,0x10,0x83,0x4f,0x9f,0x86,0x1c,0x3b,0xe,0xf,0x1,0x8d,0x83,0x19,0xeb,0x45,0xcd,0x40,0xc2,0x63,0x12,0x43,0xfa,0x1e,0xdc,0xef,0x43,0x4f,0xed,0x42,0x98,0xd1,0x99,0x19,0x7f,0xfe,0xf0,0x90,0x8b,0xa1,0x4,0x51,0x41,0x2a,0xc6,0x7a,0xb5,0xde,0xc7,0xd6,0xb3,0x9f,0x7,0x6c,0x2f,0x80,0xd3,0xbb,0x0,0x5c,0x35,0x3a,0x4a,0x1d,0xb5,0x78,0xad,0xe,0xf9,0xf4,0xdd,0xfb,0xae,0xc3,0xf0,0xe9,0xcf,0x63,0xf5,0xd9,0x7f,0x82,0xce,0xe,0x81,0x49,0xc1,0x12,0x3b,0xf0,0x78,0x43,0x27,0x60,0x2e,0x45,0x18,0x85,0x44,0xdb,0x51,0xaa,0xb4,0xd6,0x1e,0x98,0xcd,0xce,0x6,0x3e,0xf0,0xb7,0xb8,0xf7,0x2f,0xdf,0x85,0xf9,0xf3,0xbe,0x19,0x33,0xec,0x2,0x9e,0xc3,0x43,0xe4,0x18,0x3e,0x8a,0x66,0xb2,0x21,0x81,0x8b,0x67,0x59,0x53,0x1c,0xae,0xa0,0xa8,0xfc,0x99,0xa1,0xeb,0x15,0xfa,0xeb,0x9e,0x3,0xfc,0xde,0x7f,0x80,0x1b,0x5,0x9e,0xca,0xde,0x50,0x54,0xeb,0xf7,0x1b,0xc,0x38,0x8d,0xec,0xe9,0x98,0xb6,0x58,0xb1,0xe,0x62,0x66,0xfd,0x28,0x25,0xc7,0xdd,0xa,0xc9,0x5a,0x56,0x79,0xd1,0x53,0xd7,0x64,0xae,0x9c,0xa4,0x49,0x86,0xb7,0xc0,0x5f,0xdd,0xa5,0x6f,0xa7,0x73,0x31,0x44,0x27,0x11,0xf0,0xc8,0xe0,0x3e,0xed,0x81,0x9e,0xbb,0x16,0xa2,0xcd,0x7,0x80,0x79,0xae,0xfb,0xbe,0x3,0x98,0xe0,0xd2,0x45,0xac,0xf1,0xf0,0xb4,0xeb,0xa8,0xa,0x13,0x8b,0xcd,0xa2,0x3d,0xd4,0xbb,0x52,0xb,0x79,0xac,0xf,0x83,0xa2,0xa6,0x25,0x26,0x1b,0x41,0x59,0x46,0x76,0x4a,0x25,0x46,0xd3,0xa4,0xa,0xd2,0x84,0x30,0x67,0xae,0x22,0xa9,0xad,0x84,0xf6,0x50,0x6d,0xd6,0xa9,0x93,0xe,0xb2,0x14,0x51,0x54,0x75,0xe8,0x5a,0x92,0x78,0x72,0x86,0x19,0xa5,0x8,0xed,0x8e,0x8d,0xd,0xb2,0x3e,0x6e,0x15,0x53,0xfe,0x92,0x36,0xe0,0x19,0x35,0x56,0xc6,0xe4,0xc,0x4a,0xc5,0x56,0x4e,0x74,0x9b,0xba,0xca,0x2a,0x51,0xa8,0x42,0xab,0x30,0x4a,0x58,0x57,0x82,0x29,0x52,0x44,0x50,0x70,0xbe,0xf,0xf5,0x99,0x23,0x9a,0xae,0x24,0xf2,0x8f,0xb1,0x61,0x2b,0xe8,0xc6,0xb,0x81,0x74,0x13,0x8b,0xa2,0x71,0x34,0x6a,0x4b,0x43,0xb5,0xaa,0xc8,0xf2,0x64,0x2a,0x4d,0xcc,0xa1,0xa8,0x75,0x71,0xd4,0x2c,0x8a,0xad,0xb5,0xd4,0xde,0xa,0xe5,0x3c,0xd2,0x4d,0x5,0x4d,0x7c,0xee,0x99,0x5c,0xac,0xd,0xa4,0x3c,0xb3,0x5c,0xa8,0xa8,0x45,0x1,0x6f,0x8a,0x28,0x4b,0xe4,0x4c,0xa2,0xd9,0x4,0x4d,0xe3,0x22,0x4a,0x95,0xf8,0x2c,0xd9,0x40,0xa9,0x34,0x23,0x12,0xf3,0x1e,0x4a,0x5b,0x5c,0x19,0xde,0x86,0x6a,0x59,0xad,0x69,0xa,0x82,0x52,0x18,0xbd,0x8d,0x46,0xc4,0x7a,0x5d,0xfc,0xb5,0x93,0x9b,0x6c,0x19,0x54,0xaa,0xec,0xbb,0xb9,0x42,0x6f,0x80,0x5c,0xed,0x83,0x9e,0x33,0x20,0x27,0x62,0xc1,0x22,0x32,0x26,0x98,0x83,0x28,0xce,0xac,0x27,0x6a,0xde,0xaa,0x50,0xa4,0x87,0x6,0x93,0x9a,0x9,0x58,0xc7,0x9c,0x41,0x5a,0x56,0xab,0x11,0xb4,0x68,0x96,0x8d,0x60,0x9c,0x2a,0x6,0x89,0x5e,0x69,0x7a,0xa8,0x4c,0x67,0xbb,0x4c,0x47,0xaa,0x3e,0xb0,0x5c,0x6b,0x81,0xb4,0x24,0x18,0xc9,0x38,0xe0,0xd0,0x45,0x97,0xe0,0xd2,0x37,0xfd,0x32,0x46,0x59,0x7,0x8c,0xa7,0x0,0xea,0x28,0x6e,0xff,0x8,0xe3,0xb0,0x4,0x96,0xab,0x38,0x22,0x8c,0xaa,0xf6,0x84,0xaf,0x75,0x8c,0x7e,0x7b,0x7,0xf7,0xff,0xf6,0x6f,0xe2,0xbe,0xdf,0xf9,0x4d,0xd0,0xf6,0x21,0xa8,0x8c,0x20,0x1f,0x13,0xf9,0xd2,0x2e,0xd1,0xb9,0xb2,0x17,0x61,0x2,0xfc,0x8,0x16,0x82,0x9b,0x1f,0x8a,0x15,0x97,0xe4,0x49,0x2,0x29,0x32,0x78,0x24,0x9,0xd0,0xc0,0xc,0x25,0x7,0x16,0x80,0x76,0xe,0xe1,0xf0,0x75,0xcf,0x87,0xac,0xd7,0x81,0x1b,0x90,0x3e,0x20,0x29,0xd8,0x26,0x62,0x12,0xd3,0xcd,0x14,0xc6,0xbf,0x52,0xb0,0x87,0x5d,0x8f,0xdd,0xf7,0xbc,0x13,0x32,0x7a,0xf8,0x39,0x81,0x25,0xa4,0xbd,0x91,0x8d,0x70,0xd4,0x18,0x30,0x44,0x45,0xc1,0x4c,0x5c,0xe,0xd6,0x9e,0x81,0x35,0x4,0x5b,0x8b,0x2d,0x1c,0x7b,0xeb,0xaf,0xe0,0xfc,0xa7,0x3d,0x3,0xb2,0xd5,0xa3,0x77,0x1e,0x63,0x2c,0x60,0x88,0x92,0x67,0x3f,0x7c,0x88,0xbc,0x98,0x54,0xc2,0x7c,0x32,0x4,0xb5,0x16,0x39,0x7,0x11,0x86,0xae,0x47,0xd0,0xd1,0xb3,0x31,0x7b,0xea,0x35,0x58,0xff,0xd5,0xbb,0xe0,0x17,0x87,0xc,0x12,0xb3,0x8c,0xe7,0xa,0x80,0xa2,0xec,0xaf,0xc9,0x0,0x35,0x88,0x13,0x45,0xd1,0x63,0x94,0xb1,0xac,0x4c,0x26,0x38,0x1e,0xab,0x9a,0x6d,0x5b,0x92,0xe2,0x90,0x58,0x2e,0x57,0xb8,0xe1,0x43,0x1f,0xc7,0xde,0xee,0x1e,0x66,0x5d,0x5f,0x22,0x79,0x53,0xa0,0x4e,0xc5,0x25,0xd5,0x5c,0xc0,0x26,0x87,0x44,0x8e,0x85,0xce,0x7a,0x87,0x66,0x2,0x92,0x3c,0xb5,0x69,0x2a,0xa0,0x3e,0xe,0x1f,0xc8,0x1a,0xd5,0xcb,0xea,0x4b,0x81,0x6e,0x36,0xc3,0x17,0x6f,0xfe,0x12,0x1c,0xac,0xd6,0x4e,0x26,0xe0,0x9c,0x4a,0xd7,0x45,0x86,0xf2,0x57,0x5,0x8d,0x36,0xad,0x9c,0xed,0xe4,0xa1,0xd8,0xe0,0x85,0xcd,0x50,0x28,0x35,0x26,0x7e,0x62,0x73,0xe9,0xa6,0x40,0x25,0xe3,0x9,0x27,0x9b,0xde,0x28,0xb5,0xef,0xb9,0xa1,0xc1,0xe7,0xea,0x5e,0x69,0x3,0x6b,0xdd,0x8a,0x5f,0x5b,0x14,0xab,0xa2,0xf2,0xf3,0x5b,0xb2,0x7d,0x3e,0xf0,0x63,0xe1,0xee,0xb2,0x25,0x92,0x9a,0x35,0xcf,0x1,0xb3,0xed,0xf6,0xf3,0x13,0x53,0x1e,0xd3,0x1a,0x8c,0x82,0xba,0x32,0x5f,0xd4,0x2a,0xa5,0xf8,0xdf,0x74,0x10,0x16,0x6e,0x80,0x25,0x6d,0x52,0x9e,0x6a,0x65,0x4b,0x95,0x68,0xd9,0x61,0x53,0xdd,0x49,0x4d,0x76,0x1f,0x36,0x9e,0xb6,0xf2,0xf1,0x6b,0xbe,0x21,0xf2,0xf7,0xa7,0xad,0xef,0xe3,0x0,0x0,0xb,0x9b,0xd1,0x2e,0x1d,0xd0,0xe1,0x57,0xaf,0x11,0x57,0x3f,0x66,0xad,0xaa,0x6,0xf7,0x50,0xc6,0xbe,0x7,0x8d,0xb4,0xb5,0x99,0x66,0x68,0x5d,0x94,0x89,0xbd,0xaa,0xa4,0x14,0xa7,0x42,0x1,0xc7,0x2e,0x56,0x84,0x1b,0xad,0x9a,0x94,0x8,0x76,0x95,0x86,0x51,0xeb,0xb4,0x55,0x29,0x79,0x80,0xaa,0x66,0xd0,0xaf,0xf5,0x36,0x1c,0xf,0xa9,0x86,0x29,0x16,0x6f,0xad,0x7b,0xb0,0x62,0x51,0x34,0x5e,0x4c,0xc7,0xbc,0x49,0x20,0x8f,0xa9,0xa7,0xb6,0x66,0xc9,0x28,0x8a,0xef,0x5b,0x69,0x9a,0xe3,0xa3,0x46,0x32,0x51,0xb2,0xe,0xad,0xd7,0xc3,0x16,0xd8,0x36,0x8b,0x81,0xa3,0x1e,0x26,0x59,0x2,0x5b,0xc1,0x88,0xd6,0xc5,0xe6,0x1,0x2f,0x40,0x89,0x70,0xa1,0xdc,0xf9,0xe7,0x4f,0x8a,0x4f,0xdc,0xf,0x2a,0xfc,0x92,0x76,0x64,0x6d,0xd4,0xfc,0xc4,0x25,0xc6,0x1c,0x49,0xaa,0x44,0x84,0x2e,0xef,0x4f,0x5b,0x5,0xb2,0xf1,0xa1,0xc6,0xf4,0xdc,0xd0,0x29,0xb1,0xc3,0xa8,0x23,0xf6,0x97,0xa7,0x0,0x19,0x72,0x2c,0x2a,0x93,0xe6,0xc3,0xb3,0x24,0x68,0xb1,0xc9,0xcd,0x26,0x30,0xb,0xc0,0xc1,0x8e,0xa7,0xfb,0xcb,0xa0,0xd4,0x57,0x6,0xc1,0x65,0xda,0x56,0xe6,0xcc,0x47,0x66,0xbc,0x2a,0x81,0x7c,0x60,0x13,0x8b,0x2b,0x9e,0x86,0x52,0xb4,0x49,0x31,0x9d,0xa6,0x78,0xc8,0x98,0xc4,0x26,0x2,0x60,0x79,0x1a,0x5b,0x4f,0xbf,0x1a,0xfd,0x23,0x2f,0x84,0xee,0xed,0x85,0xc8,0x1c,0xab,0x54,0xe5,0x92,0x10,0x58,0x1e,0xb8,0xf8,0xfd,0x3a,0x81,0x70,0x7,0x3c,0x78,0x1a,0xa7,0x3f,0xf4,0x7e,0xc,0xf3,0x9d,0xd0,0xed,0x27,0xa1,0x4,0xb9,0xa8,0x7,0xa0,0x6c,0xc7,0x29,0x42,0x8e,0x8,0x6d,0x50,0xcd,0xcc,0x3,0x22,0x60,0x35,0xdf,0x42,0x77,0xdf,0xbd,0x18,0x3e,0xf1,0x31,0xf4,0xcf,0x7e,0xe,0xd4,0x9f,0x4,0x29,0x87,0xa4,0xb2,0xb8,0x40,0xcb,0xe3,0x4c,0x2e,0x4a,0xe2,0x74,0x98,0x49,0x9a,0xbe,0x11,0xc3,0xf,0x11,0xb3,0xbb,0x1c,0x71,0xe8,0xfa,0x97,0xe3,0xd8,0x7b,0xde,0x1,0x16,0x8f,0x41,0x15,0x1d,0x19,0xf1,0x4e,0x25,0x16,0xe2,0xf2,0xfa,0xf9,0x70,0xe0,0xa6,0x69,0x83,0xdd,0x15,0xd5,0xbf,0xae,0x1e,0xdf,0xd5,0x9f,0xf,0x5b,0x61,0x96,0x4b,0xec,0xc4,0xc9,0x93,0x78,0xcd,0xbf,0xfc,0x37,0xb8,0xff,0xbe,0xfb,0xd1,0xcd,0xfa,0xa8,0x7d,0xb0,0x91,0xa1,0x65,0x37,0x2d,0xc6,0x26,0xd3,0xde,0x99,0x45,0x21,0x8a,0x7c,0xf9,0xaa,0x41,0x54,0x66,0x78,0x8c,0x5,0x2,0x69,0xc2,0x5e,0x26,0xf0,0x48,0xd8,0xbf,0x78,0x11,0xcc,0x67,0x3d,0x66,0xb3,0x45,0x66,0xd1,0xdb,0xc2,0x58,0x11,0x31,0x6,0x62,0xdc,0xd2,0x49,0xfa,0xa2,0x1b,0x96,0xb8,0x64,0xd4,0x62,0xf9,0x33,0x31,0x3d,0x93,0xb3,0x1d,0xd,0x61,0x5,0x4,0x63,0xd7,0x13,0x29,0x20,0xa1,0xc9,0x2c,0x81,0x60,0xb2,0xde,0x91,0xd7,0x5,0x69,0xc6,0x62,0x71,0xc9,0xd4,0x76,0x99,0x1b,0x2e,0x38,0x6d,0x44,0xe8,0xd5,0xa8,0x22,0x51,0xda,0x92,0xbd,0x4e,0x25,0x3a,0x6c,0xc2,0x67,0x8f,0xc1,0xe1,0x40,0x96,0xc0,0x49,0xdf,0xb4,0x43,0xa5,0x2a,0x2f,0x81,0x36,0x64,0x81,0x1b,0xf2,0x5d,0xf0,0xed,0x64,0xb1,0x6e,0xf2,0xca,0xd7,0x82,0x2f,0x9d,0x74,0x83,0x89,0x33,0xa0,0xc6,0x6f,0x8e,0x4a,0x34,0x26,0x31,0x8e,0xb9,0x8c,0x68,0x59,0x3,0x54,0x65,0x93,0x7f,0xbc,0x4c,0x2b,0xaa,0x51,0x48,0x7c,0xef,0x4b,0xb5,0x44,0x76,0x13,0x9b,0x4,0xaa,0x29,0x64,0x4a,0x37,0x48,0xf1,0xb5,0x16,0xae,0x4d,0xd5,0xf7,0x9b,0xdc,0x20,0x94,0x8b,0x0,0x52,0x6d,0x5d,0x79,0x46,0x1f,0x82,0x8d,0xc9,0x7b,0x93,0x9c,0xdc,0xf4,0x9d,0x57,0x51,0xc4,0x3e,0x7,0x8f,0x5,0xe8,0x19,0x32,0x37,0x24,0x71,0x5c,0x60,0x12,0x2e,0xeb,0xad,0x85,0x46,0xb0,0x55,0x59,0xdf,0x99,0x7d,0x70,0x6,0x4e,0x69,0x72,0x0,0x31,0x95,0x73,0xc3,0x16,0x6d,0x76,0x45,0x32,0x99,0x48,0x29,0xbc,0xfa,0x3c,0xe1,0x9c,0xac,0x62,0xb4,0xac,0x84,0x26,0xcf,0x1a,0xa6,0x30,0x9f,0x4d,0xc4,0x46,0xda,0xc4,0x3e,0x68,0x6b,0x27,0x2d,0x2,0xd3,0xf4,0xf9,0x95,0x8d,0xaf,0x70,0xc9,0x23,0xc8,0xac,0x3,0xdd,0x20,0x68,0x6a,0xd7,0x53,0x9b,0xde,0xb6,0x4c,0x9c,0x4d,0x4e,0xb3,0x80,0xb7,0x6e,0xc9,0x99,0xe1,0xa8,0x11,0xf3,0x68,0x47,0x81,0x38,0x99,0xe2,0xcc,0x0,0x7d,0xec,0xcb,0x92,0xbe,0xab,0x6e,0xd2,0x1c,0x94,0xa0,0xf4,0xf0,0x8d,0x70,0x8d,0x3c,0x15,0x84,0x90,0x4,0xaf,0x1e,0x5e,0x0,0x17,0xf,0x8,0xc9,0x36,0x9c,0xa8,0xfe,0xa6,0x92,0x60,0xc4,0x8c,0xf2,0x41,0x92,0xf8,0xef,0x5d,0x7,0x75,0x21,0x34,0x85,0x63,0x52,0x5a,0xce,0x39,0xce,0xcb,0x28,0x36,0xb6,0x18,0x97,0xea,0x9f,0x7c,0x70,0xb1,0xd9,0x61,0x50,0xc7,0xc5,0xee,0x14,0xc7,0x56,0x61,0xa4,0x23,0x41,0xd4,0x17,0x2f,0x89,0x21,0xed,0xf6,0x93,0x3b,0x20,0x81,0x31,0x58,0x63,0xa5,0x55,0xc6,0xd5,0x1e,0xa,0xdf,0xcf,0xb0,0xff,0xc1,0xbf,0x86,0xbf,0xf7,0x18,0xfc,0xfc,0x10,0xc8,0x4b,0x48,0x2d,0x8b,0x3c,0x2,0x32,0xa0,0x9e,0xd4,0x6d,0xa9,0x86,0x55,0x40,0xe2,0x8a,0x8f,0xe2,0x43,0x82,0xa1,0x86,0x28,0x52,0x15,0x87,0xfd,0x77,0xbc,0xd,0x3b,0xd7,0x5c,0xb,0xcf,0x2e,0xc2,0x8e,0xe2,0x9f,0x83,0xa9,0x52,0x97,0x26,0x62,0x14,0x13,0x5,0x3b,0xa0,0x57,0x78,0x1,0xe0,0x92,0xf8,0x91,0xe1,0x86,0x3d,0xcc,0xae,0xb8,0xc,0x7b,0x97,0x3c,0xa,0xcb,0x2f,0xdf,0x6,0x99,0xed,0x40,0x28,0xe5,0xe9,0xd5,0xf6,0xe,0x8a,0x85,0x9a,0x64,0x2a,0x16,0x65,0x0,0x4,0x3c,0xb2,0xbe,0xa2,0x8a,0xf9,0x45,0x9,0xd7,0xb1,0xe3,0xd8,0x6a,0xe4,0xae,0x75,0xf7,0x32,0xeb,0x67,0xd8,0x5a,0x2c,0x30,0x5b,0xcc,0xc1,0xe4,0x40,0x7d,0xbc,0x8c,0xb5,0x1d,0x47,0xa1,0xce,0xb,0xd6,0xd,0xcf,0xa3,0x35,0x95,0x9b,0x10,0x9b,0x62,0x15,0x6b,0xe,0x7,0x5b,0xb,0x46,0xf1,0x1e,0x29,0x5,0xf4,0x80,0xa4,0x7b,0x9d,0xea,0xaf,0x89,0x32,0x5a,0x57,0x9,0x4c,0xf9,0x92,0x94,0x56,0x5b,0x97,0x6c,0x31,0xd2,0x9c,0x16,0x26,0x79,0xcf,0xae,0x2c,0xa,0x87,0x1f,0xe6,0x81,0x64,0xdd,0x70,0x90,0xab,0x71,0xac,0xb5,0xad,0xa2,0x96,0x50,0x2b,0xaa,0xac,0x64,0x53,0x15,0x34,0x1a,0x25,0x38,0x19,0x1f,0x37,0x64,0x2a,0xbd,0x27,0x23,0xf0,0x15,0x95,0x9c,0xfc,0x0,0xab,0x70,0x96,0xa4,0x41,0x40,0xdd,0x1d,0x5b,0x20,0x50,0x71,0x11,0x36,0x9d,0x71,0x5c,0x86,0x91,0xb,0x6b,0xa8,0x94,0x1,0xc4,0x6d,0xea,0x1d,0x9b,0x4e,0xbd,0xbe,0xf1,0x82,0xa,0x3e,0xca,0xd0,0xd8,0x8,0xb0,0x28,0x92,0x19,0x33,0x7d,0x53,0xb3,0x58,0x32,0x0,0x86,0xd8,0xc0,0x7a,0x6a,0x41,0x3,0x55,0x97,0x1a,0x1d,0x2c,0x16,0xb3,0xa1,0x59,0x66,0xda,0xa1,0xac,0xd3,0x76,0x9e,0x9a,0xa5,0x10,0x6d,0x12,0x15,0x6e,0x80,0xfa,0x54,0x0,0x31,0x6d,0x6e,0x19,0x6a,0x2e,0xdb,0x26,0x14,0x62,0x3,0x6c,0x82,0x26,0xab,0x85,0xd2,0x4d,0x92,0xea,0x94,0xf4,0xaa,0x65,0xd2,0x41,0x54,0xfd,0x81,0xa7,0x28,0x61,0x63,0x6a,0x20,0x65,0xc3,0x83,0x2f,0xd1,0xd2,0x56,0x65,0x61,0x39,0x2,0x46,0xca,0x56,0xbb,0xeb,0xd,0xbc,0x26,0xd3,0x3a,0xd9,0x9c,0x3b,0x5a,0x4,0xe2,0xe1,0xfc,0xe7,0xcd,0x3a,0x8e,0xcd,0xb2,0x21,0xc3,0x40,0xa8,0xdf,0x3,0xcd,0x19,0x7,0x96,0xce,0x69,0x22,0xec,0x13,0x66,0xdc,0x88,0xad,0x91,0xe8,0x85,0x28,0x9c,0x10,0x53,0xdd,0x94,0x7f,0x37,0x42,0x67,0x52,0xda,0xec,0x56,0xce,0x5f,0xb0,0x9e,0x94,0x10,0x45,0x48,0x56,0x74,0x7c,0xd5,0x8,0xe2,0x14,0x8a,0x15,0x8b,0x66,0xaf,0x46,0xaf,0xa1,0x19,0xe8,0x53,0x9c,0x28,0x66,0xb2,0xa4,0x82,0x4e,0xcd,0x38,0x9f,0xe3,0x4e,0x15,0x12,0x6c,0x1d,0x99,0xc5,0xcd,0xc6,0x98,0xab,0x3e,0x86,0xe9,0xc4,0x8b,0x51,0xa3,0x37,0x5a,0xcd,0x8e,0x89,0xa9,0xa,0x93,0x50,0x29,0xf1,0xbb,0x1a,0xa3,0x78,0x59,0x35,0x44,0xa4,0x3a,0xe,0xb4,0x3e,0xf5,0x59,0x4d,0x5b,0x51,0x4,0x19,0xc6,0x73,0x6f,0x46,0x5d,0x5c,0x42,0x55,0x5a,0xfb,0xe,0xa5,0xd1,0xec,0x30,0x60,0x76,0xc1,0x5,0xd8,0x79,0xc2,0x93,0x21,0xab,0x55,0x50,0xf2,0x53,0x99,0x2c,0x50,0x22,0xe6,0x69,0xa9,0x75,0x72,0x87,0x47,0x8a,0x11,0x1d,0x74,0x6f,0x8d,0xe3,0x6f,0xff,0x63,0xb8,0xfd,0x35,0x88,0xf6,0xd1,0x75,0xc,0x55,0x17,0xe9,0x7c,0xb1,0x18,0x61,0x8e,0x87,0x4b,0xc,0x64,0x88,0xbb,0x75,0x88,0x4f,0xd6,0x9,0xc8,0x7a,0xd,0x5d,0xed,0x87,0xc2,0x67,0x35,0x60,0xef,0xc6,0xf7,0x63,0xff,0xef,0xff,0xe,0x8b,0x27,0x3e,0x1,0xec,0x57,0xa1,0x6a,0xf3,0x65,0xe4,0x98,0x7c,0x7,0x2a,0x1e,0xca,0xc,0x3f,0x73,0x80,0x27,0x68,0x57,0x9c,0x4,0xd4,0x85,0xc9,0x86,0xd3,0x15,0x56,0xdc,0xe3,0xd0,0x4b,0x5f,0x85,0xd5,0x2f,0xfd,0xc,0x1c,0xe6,0xd0,0x90,0x2,0x3d,0xd9,0x75,0xa5,0x89,0xa,0x27,0x0,0x4f,0xac,0x32,0x59,0x1,0x2f,0x2,0xa8,0x37,0xf,0x5b,0xb4,0x13,0x42,0xaa,0x5b,0x3a,0xbf,0xee,0xe6,0x47,0xda,0xe3,0x92,0xbb,0x2e,0x87,0x4d,0xb8,0xae,0xcb,0x60,0x8b,0x8d,0x38,0x7e,0x9b,0x70,0xa7,0xf6,0xc2,0x34,0x3f,0x3f,0xdb,0xec,0x28,0x8f,0x8a,0x55,0xb4,0xe8,0x6,0x6c,0xc7,0xcc,0x76,0x3f,0x4a,0x11,0x62,0x67,0x4,0x6d,0x64,0xa8,0x7d,0xa6,0xf2,0xcd,0x17,0x90,0xb1,0x1c,0x25,0x7,0x3,0xa9,0xbd,0x20,0x37,0xa0,0x69,0x75,0x22,0xd1,0x31,0x8e,0x84,0x3a,0xa7,0x3d,0xe9,0x5c,0x6b,0x4b,0xa9,0x96,0x4e,0x2f,0xd5,0x10,0xac,0x95,0xf8,0x14,0x64,0x61,0x80,0x94,0xf3,0xe7,0x5b,0x6d,0x40,0x5b,0x58,0x4d,0x82,0x93,0x89,0x26,0xb1,0x8a,0x5a,0xed,0x46,0x3,0x3e,0x37,0xa7,0xda,0x69,0x9,0x4c,0x29,0x16,0xa7,0x84,0xf3,0x2a,0x69,0x7a,0x4d,0xe3,0x66,0xee,0x9c,0x3a,0x1c,0x25,0x10,0x1f,0x7d,0xd0,0xa2,0xc4,0xee,0x86,0xe2,0xb8,0x25,0xe9,0x4a,0xe0,0xa8,0xc2,0x14,0x97,0xf3,0x45,0xf3,0x1,0xaa,0xb6,0xa,0xcd,0x60,0xb0,0x0,0xc3,0xca,0xd3,0xa0,0xca,0x7f,0xde,0x2a,0xc7,0xcd,0x2e,0x7b,0x52,0x63,0x69,0x15,0xf4,0x24,0xd6,0x2a,0xd9,0x14,0x24,0x94,0x7c,0xdb,0x9b,0x34,0x84,0x8a,0xd,0x99,0xf0,0xf6,0x6b,0x6a,0x7e,0x9e,0x62,0xed,0x5d,0x8f,0x8d,0x9b,0xa2,0x5a,0x37,0xab,0xfe,0x50,0xb,0x29,0xa8,0x1a,0xab,0xdb,0xfb,0x42,0xbc,0x54,0xcd,0x0,0x52,0x3a,0xaa,0x48,0xc5,0x1e,0x9,0x96,0xbd,0xf8,0x5c,0x8a,0x7d,0x3d,0xe3,0x6f,0xea,0xda,0xcf,0x79,0xd5,0xb8,0x4e,0x57,0x15,0x7,0xf0,0x3b,0x6a,0x5a,0x56,0x33,0x71,0x6c,0x78,0xe,0x64,0x32,0x11,0x37,0x95,0x67,0x64,0x3d,0xfb,0x54,0xaf,0x23,0x8d,0xa7,0xac,0xde,0x9,0x68,0x6a,0x1,0x2d,0x27,0xa1,0x7c,0xfd,0xd4,0x4c,0x8a,0xd1,0x35,0x95,0x5c,0x88,0x46,0x48,0x4a,0x93,0xa3,0xc8,0x4,0x3d,0x35,0x85,0xac,0x69,0x30,0xd3,0x7b,0x40,0xe6,0xfb,0xa9,0x44,0x90,0x26,0x12,0x58,0x12,0xb,0x84,0x4b,0x83,0xa1,0xad,0xbe,0xb5,0x9,0x26,0x52,0xeb,0x94,0x88,0xd,0x78,0x7,0x2b,0xf9,0x8f,0x97,0x98,0xed,0x4a,0xca,0xfe,0x22,0xed,0x1f,0xc2,0xa8,0x8f,0x54,0x33,0xe1,0x2e,0x4d,0x75,0x28,0x5b,0x30,0x22,0xfb,0x3e,0x5e,0xac,0x99,0xb7,0x1c,0xf1,0xbc,0x88,0xc5,0x80,0xa8,0xc2,0xa9,0x51,0x5a,0x90,0x8f,0x64,0x9f,0xd0,0x95,0x27,0xdf,0x36,0x53,0x43,0x4b,0xa2,0x66,0x54,0x84,0x22,0x42,0x93,0xa4,0x20,0xf7,0x2,0xda,0x3f,0x85,0x9d,0xeb,0x5e,0xa,0x1c,0x39,0xc,0xda,0x3d,0x1,0xf,0x17,0x93,0xd6,0x38,0x16,0x15,0x5a,0xe3,0x82,0x8d,0x48,0x4a,0x41,0xe0,0x38,0x16,0x3b,0xff,0xb5,0x3f,0x1,0x5d,0x13,0xba,0x2e,0x5c,0xec,0xe2,0x5c,0x78,0xd8,0x1d,0x17,0x4e,0x78,0x4c,0x2e,0x4c,0x94,0x2b,0xa6,0xf0,0x3d,0x78,0x15,0xcc,0x55,0xb0,0xbe,0xff,0x18,0x76,0x6f,0xbb,0x1d,0xbc,0xb7,0x7,0xbf,0x5c,0x82,0xf6,0x8e,0x63,0xb5,0x3e,0x85,0x85,0xf8,0xf2,0x19,0xe4,0x50,0x7c,0x21,0xab,0x36,0x5,0xda,0x39,0xe8,0xe9,0x5d,0xd0,0x9d,0xa7,0x30,0x28,0xe0,0x57,0x6b,0xf0,0x18,0x2f,0xe7,0x71,0xc4,0xca,0xf,0x50,0x3f,0xc2,0x3,0x0,0xcd,0x21,0x5b,0x67,0x2,0x6b,0x9f,0x53,0xe6,0xaa,0xcb,0x9a,0x8a,0x5,0x3e,0xa9,0xe3,0xbd,0x1f,0x41,0x44,0x18,0x44,0x30,0x7a,0x1,0x77,0xe,0xeb,0x61,0x8,0xae,0x84,0x86,0x9c,0x96,0x3a,0xb1,0x7a,0xd3,0x75,0x40,0x7,0x93,0x2e,0x3,0x25,0xc3,0xc0,0xd7,0x2a,0xeb,0x9b,0xcc,0x87,0xab,0x2d,0x52,0xc8,0xee,0x5d,0xd,0x99,0x27,0x61,0x2a,0xa5,0xce,0xca,0xad,0x2e,0x66,0x69,0x30,0x55,0x26,0xf1,0x3b,0x7e,0x5e,0xcd,0xa4,0x46,0xa3,0xdc,0x88,0xec,0x25,0xa5,0x95,0xaf,0x9a,0x8c,0x3a,0x4b,0xf,0x6c,0x27,0xda,0x26,0x5a,0x6b,0x85,0xbc,0x71,0x7,0x88,0x5,0x99,0x79,0xad,0xb4,0x20,0xf9,0xf9,0x69,0xd8,0xee,0x44,0x35,0x6b,0xc3,0x66,0xb8,0xa7,0x86,0x96,0x18,0xf5,0xfa,0xa2,0xed,0x26,0x65,0xc3,0x86,0x55,0x2d,0xbb,0x20,0x69,0x3e,0xa,0xf9,0xa7,0xe0,0x88,0xc3,0xe5,0xef,0xbd,0xc7,0x38,0xf8,0xf8,0xf6,0x6a,0xe5,0xb8,0xd0,0xa,0xbf,0xa8,0xb5,0x60,0x3d,0x1e,0xc4,0x8e,0x19,0x5d,0xa4,0x5a,0x32,0x38,0x23,0x5f,0x89,0xcd,0x61,0xd8,0xb0,0x14,0x60,0xc4,0x9d,0xd6,0x93,0x5f,0xd,0x71,0xb9,0x2e,0xae,0x34,0x16,0x2,0x3c,0x65,0xda,0x4d,0x63,0xc7,0xed,0x18,0x38,0x17,0x5a,0x39,0x4b,0x2e,0xd,0xb8,0xa7,0xa3,0x6f,0xda,0xd0,0x5,0x4f,0x26,0x5,0xba,0x39,0x27,0xa0,0xea,0xe4,0xcb,0x9a,0x94,0x69,0x43,0x3,0x8f,0x9a,0xd3,0x5e,0x9e,0x17,0x23,0x2c,0xdb,0x60,0x95,0xb5,0x0,0xb6,0xbc,0x86,0x14,0xa9,0x2e,0x3e,0xd5,0x92,0x99,0x92,0xc4,0xd1,0x64,0x57,0x7d,0xf6,0x99,0x65,0x54,0xab,0x25,0xbb,0xb1,0xcf,0x13,0x2d,0xa2,0x8d,0x3b,0x77,0xa2,0x83,0xb5,0x1f,0xa,0x18,0xa7,0xa,0x55,0x4d,0x5c,0x3a,0x1d,0x88,0x28,0xdb,0x98,0x39,0xa,0x85,0x9d,0xab,0xe7,0xfa,0x3a,0x89,0x41,0xa4,0x89,0xee,0xb1,0x9c,0x61,0xcd,0x6b,0x25,0xc5,0x22,0x5c,0x15,0xc8,0x39,0x5,0xaa,0x8,0x2,0x14,0x71,0xa2,0x9c,0xf5,0x38,0x46,0x70,0xd7,0xac,0x2f,0x92,0x1e,0x4d,0xa9,0x5e,0xbf,0xe4,0xd7,0x50,0x1,0x21,0x89,0xab,0xb6,0x72,0xca,0x4,0xe1,0x63,0x6c,0xf0,0x72,0x44,0x74,0x3c,0xb7,0x8c,0xbb,0x68,0xa3,0x58,0x94,0x39,0xed,0x70,0xea,0x75,0x5e,0xde,0xf9,0x23,0xf9,0xf8,0xcd,0x28,0x2d,0x75,0x3c,0x64,0x8,0xeb,0x9a,0x32,0x94,0x8b,0x32,0x14,0x52,0xe3,0x60,0xd5,0x87,0xee,0x5f,0x62,0xec,0x28,0xe5,0x8e,0xdd,0x60,0x70,0xcd,0x37,0x4c,0x71,0x57,0x99,0x79,0x1,0x5d,0x90,0xe,0x79,0x1f,0x8b,0x80,0x78,0x10,0x64,0x71,0x13,0xd5,0x22,0x91,0x74,0x88,0x67,0xa,0x54,0x4,0x2d,0x44,0x9c,0x11,0xc8,0x7b,0xf0,0xcc,0xe1,0xf0,0x73,0x5e,0x0,0x3f,0x2c,0xc1,0x8,0x7e,0x74,0x76,0xc1,0x96,0x92,0xc5,0x53,0xb9,0xe3,0x89,0x6f,0x87,0x50,0xde,0x76,0x70,0x1c,0x2b,0xba,0x47,0x5c,0x4,0x4f,0xc,0x17,0x2d,0x60,0x1d,0x15,0x8f,0x3e,0xc7,0x2a,0x51,0x72,0xb0,0x46,0x9c,0x4e,0x24,0xc1,0x20,0x85,0x2e,0xa7,0x7f,0xf8,0x5,0xd8,0x7e,0xdc,0x95,0xd0,0xce,0x5,0xb,0x1f,0x1c,0x74,0x3d,0x0,0xc3,0x3a,0x8c,0xd5,0xe3,0x87,0xca,0x8b,0x98,0xbd,0x22,0xa0,0xdc,0x43,0x3f,0x7b,0x13,0xee,0xf9,0xf1,0xd7,0x80,0x77,0x8e,0x60,0x74,0xa,0xa7,0x81,0x30,0xe8,0x55,0x42,0x91,0xa1,0x3,0xa0,0x23,0x6,0x51,0x70,0xbf,0x5,0x50,0x97,0x67,0xda,0x19,0xa6,0x13,0xc5,0x8c,0x6a,0x22,0x6a,0xd1,0x1,0x87,0xb7,0x43,0x20,0xc6,0xac,0xef,0xe0,0xba,0x1e,0xb3,0xbe,0xc7,0xe1,0x9d,0x5,0xba,0xd9,0x2c,0x76,0x7d,0x32,0x99,0xa3,0xb5,0xc1,0xa6,0x9b,0xe4,0xdc,0x39,0x74,0x88,0x4a,0xc4,0x6a,0x76,0xa,0x58,0x40,0x54,0xa4,0x32,0x88,0xa9,0x6,0xa,0x39,0x91,0xaa,0x81,0x5c,0x49,0x31,0xb3,0x63,0x6b,0xaa,0xc7,0xde,0x94,0x7c,0x6,0x16,0x65,0x69,0x9e,0x11,0x8b,0x4f,0x5,0xa0,0x1c,0x93,0xc1,0xb4,0xfc,0x3e,0x6a,0xf6,0xf2,0x45,0x6d,0xaf,0x75,0x27,0xd1,0x1e,0x4e,0xf6,0x10,0xd0,0x56,0x69,0x94,0x7e,0x29,0x57,0xa3,0xe0,0x4c,0x22,0x53,0xda,0x4c,0x5f,0x4f,0x97,0xc1,0xa4,0x30,0x32,0xdf,0xa,0x51,0x5,0x2a,0x22,0x7b,0xac,0x9,0x1a,0x1b,0xcf,0x74,0xbd,0xac,0x13,0xcb,0x91,0xc6,0xb,0x9d,0x8c,0xb5,0x35,0x0,0x49,0xa0,0x8,0x17,0x7f,0xf4,0x35,0x73,0xd2,0xa3,0x90,0x59,0x9,0x59,0xb0,0x53,0x75,0x31,0x85,0x8b,0xaa,0xef,0x7b,0x74,0xb3,0xe,0xba,0x2b,0xb9,0xeb,0xb5,0xc1,0x49,0x25,0x37,0x3c,0xda,0xce,0x4c,0x1,0x95,0xb4,0x8d,0x39,0x1b,0x0,0xc,0xd6,0xe8,0x70,0x89,0xd6,0xdf,0x14,0xa6,0x44,0x2e,0x3a,0x37,0x6c,0xd1,0x33,0x59,0x2f,0x35,0x93,0xc2,0x94,0x76,0x66,0x8b,0x47,0x63,0x9,0xb1,0xcd,0x41,0xa5,0x58,0x27,0xb2,0xfd,0xf5,0x44,0xf9,0xbd,0x49,0x6f,0x56,0x3c,0xd6,0x5a,0x29,0xc6,0x27,0x63,0x1a,0xfb,0xd1,0x26,0x9a,0x20,0xe9,0xab,0xf7,0xad,0x4e,0xe5,0x2a,0x96,0xf9,0xca,0xd1,0x61,0xbe,0x53,0xd,0x30,0xa8,0xa,0xc6,0x25,0x62,0xac,0x77,0x46,0xec,0x6c,0x61,0x42,0x54,0xe2,0x85,0x2d,0xf1,0x4f,0x71,0xc0,0xf6,0xa2,0x9d,0x70,0x6b,0x2d,0x84,0x6d,0x4f,0x13,0xb1,0x1e,0x62,0x89,0xbb,0x7e,0x31,0x4d,0x0,0x42,0x40,0x5b,0xe1,0x38,0x94,0x3d,0x3b,0x14,0x9b,0xb5,0x48,0x16,0xe5,0xde,0x66,0xe1,0x92,0x95,0xbd,0x97,0x22,0xb7,0xe8,0x1c,0x74,0xa2,0xd3,0x48,0xae,0x31,0x6e,0x34,0x3f,0xb4,0xc1,0x16,0xaa,0x20,0x13,0x91,0x4c,0xd9,0x49,0xa1,0x55,0xf0,0x57,0x49,0x0,0xd5,0xb8,0xb6,0x22,0xe7,0x4a,0xd2,0xa6,0x69,0x7e,0x38,0x5b,0x83,0xb5,0x10,0x3a,0x61,0xa8,0xaa,0xe6,0xac,0x22,0xd1,0x9,0x5c,0xa,0x50,0x74,0x94,0x84,0x1c,0x44,0x8d,0x5d,0xc7,0x26,0x62,0x69,0xc9,0x68,0x36,0xf6,0x7,0xd5,0x42,0x7,0xd3,0x8,0xcd,0xb0,0x61,0x1b,0x5,0x86,0x60,0x8,0x7b,0x84,0xac,0xaa,0x66,0x8e,0x30,0x15,0x4f,0xf0,0x12,0xed,0x69,0xf1,0x78,0xc,0x9d,0x90,0xdd,0x45,0x95,0x41,0x4f,0x1e,0x9d,0x7a,0x31,0x1d,0x5a,0x78,0xf0,0x15,0xa,0xd1,0xe,0x6e,0x58,0xa2,0xbf,0xea,0x4a,0xb8,0x4b,0x2f,0x85,0xe,0x2b,0x78,0x70,0xb0,0x73,0xc7,0xc3,0xb1,0xb2,0xfb,0xa9,0x41,0xc2,0xc4,0x3,0xae,0x5c,0x96,0xe,0x7e,0xe5,0xc1,0x1c,0xde,0x2c,0x9f,0x7c,0xf6,0x4c,0xf9,0xa0,0xb3,0x69,0x5d,0x6a,0x33,0xb5,0xab,0xf0,0x8e,0xb8,0x7,0x5d,0x29,0xba,0x38,0x56,0x57,0xe2,0xb8,0xe4,0x64,0x8c,0xf0,0xa1,0x38,0x89,0x1,0x31,0x8c,0x0,0x40,0x1a,0xd7,0x4b,0xcc,0xbf,0xfe,0xeb,0xd0,0x5d,0x74,0x11,0x96,0xf7,0x9f,0xc0,0x3e,0xcd,0x30,0xe3,0x31,0x1e,0x8e,0x51,0x86,0x2e,0x7d,0xf6,0x81,0x7,0xb1,0x61,0x61,0x57,0x67,0x6c,0xa6,0xcd,0xa5,0x4f,0xbb,0x4f,0x19,0xf1,0x1b,0x6f,0xf9,0x65,0x3c,0xed,0x49,0x8f,0xc7,0x7a,0xed,0xd1,0x75,0xe,0xf3,0xbe,0x43,0xe7,0x2,0x84,0x42,0x5b,0xf9,0x38,0xb0,0x31,0x70,0x64,0x53,0x76,0x4d,0x1a,0x69,0x13,0x27,0x58,0xb,0xe5,0x8b,0x2,0x36,0x6b,0x61,0xf2,0x6b,0xd5,0x54,0xda,0xd1,0x5e,0x24,0x4,0xb8,0xf4,0x3e,0x99,0xae,0x44,0x42,0x78,0x12,0x84,0xa0,0x4e,0xeb,0xf7,0x2d,0x7e,0x26,0x58,0x43,0x5e,0x43,0xba,0x91,0x25,0xe9,0x19,0xe2,0xc3,0x48,0x52,0xa6,0x47,0xaa,0x25,0x74,0xaa,0x1a,0xad,0x5a,0x0,0x86,0x4e,0x7,0x8c,0x64,0x36,0x7d,0x96,0xeb,0x3e,0x19,0x86,0xe8,0xd4,0x5,0x40,0xd2,0x8c,0x3c,0xf3,0x1,0xce,0xe6,0xa6,0xd3,0x52,0x80,0xe4,0xb7,0x84,0xd0,0xaa,0xf5,0x88,0x9a,0xfd,0x25,0x4f,0xdf,0xa3,0x32,0xd,0x48,0xe8,0x59,0x8b,0x86,0x11,0x23,0x21,0x4e,0xa8,0x64,0xc9,0xeb,0x3f,0x5,0xb0,0x5e,0xf,0x58,0xee,0x2f,0xb,0x6b,0x81,0xb4,0xfe,0xe0,0x43,0xea,0xd3,0xb4,0x69,0xb3,0x67,0xb3,0x1e,0x7d,0xd7,0x85,0x44,0x33,0x76,0x26,0xf4,0xc6,0x4e,0x36,0x8a,0xe3,0xc4,0x4e,0x5b,0x92,0x3,0x22,0xa7,0x73,0x56,0x63,0x65,0x9d,0x64,0xde,0xa7,0x46,0x6,0xba,0x61,0x2e,0x65,0x3e,0xb4,0x15,0xeb,0x1f,0xc6,0x6e,0x69,0xae,0xbb,0xcd,0x1b,0x74,0xcd,0x2b,0x10,0x6a,0xb6,0xc6,0x7a,0xb0,0x44,0xa0,0xd8,0x3e,0xdb,0xf1,0x30,0xd9,0xd1,0x6e,0x3b,0xa1,0x89,0x56,0x45,0x3,0xc2,0x9e,0xec,0x55,0x1a,0xc5,0x62,0x9b,0x96,0x4d,0x14,0x78,0x1d,0x12,0x57,0x35,0x45,0xcc,0x27,0xd0,0x8a,0xe3,0x92,0xfd,0xb1,0x66,0xf5,0x12,0x23,0xb7,0x88,0xea,0xe,0xd3,0x34,0x85,0x65,0xaa,0x55,0x8b,0x3a,0x65,0xb3,0x86,0x31,0x7e,0x16,0xb9,0xda,0xbd,0x2b,0x26,0x46,0x21,0x23,0xda,0x29,0xbb,0xae,0xd6,0xca,0x67,0x75,0x46,0x75,0x54,0xb8,0x4e,0x90,0xc0,0x45,0xf5,0x2e,0x95,0x75,0x56,0x72,0xd,0x23,0x5,0xad,0x6d,0xbf,0x27,0xd2,0x6c,0xd9,0xce,0x34,0x7f,0xb2,0x21,0x5b,0x54,0xd1,0x25,0xdb,0xef,0x4f,0x8d,0x25,0x51,0xd,0x4,0x2a,0xad,0x52,0x52,0x44,0x71,0x98,0x54,0xb9,0x5c,0x10,0x48,0x14,0x76,0xa7,0x3c,0x84,0xf4,0xf9,0xe2,0xd8,0xbd,0x27,0xf4,0x73,0x81,0x6c,0x1,0xc8,0x69,0xb7,0x19,0xbb,0x50,0x9a,0xdb,0xf8,0xb8,0xd5,0x15,0x57,0x1a,0xab,0x1b,0xc5,0xa6,0xb5,0x54,0x70,0x64,0xd7,0xa7,0xd8,0xd2,0xd0,0x8f,0xc4,0x91,0x4,0xe2,0x45,0xe6,0xb5,0x11,0x33,0x52,0x86,0xff,0x24,0xd5,0xa3,0x10,0x61,0x1c,0xd7,0x51,0x98,0x17,0x32,0x8c,0x89,0x19,0xce,0xb9,0x98,0x30,0x47,0x85,0x4c,0x54,0xd9,0x6b,0xd9,0x5c,0x5e,0x85,0xae,0xe4,0xfd,0x98,0x57,0x15,0x4a,0x2,0x5a,0xef,0xe3,0xc8,0xf3,0xbe,0x15,0x63,0xf4,0xe7,0x4b,0x56,0x95,0x9b,0xd1,0x6a,0xac,0xdc,0x28,0x7e,0x3d,0x4e,0x2e,0xab,0x28,0x26,0x90,0xf4,0xe7,0x20,0x97,0x3,0x61,0x32,0x9a,0x38,0x42,0x2f,0x24,0xfd,0x37,0xa,0x22,0x22,0x25,0x82,0x7,0x5,0x9e,0x3f,0x39,0x8,0x1c,0x46,0x25,0x78,0x65,0x8c,0xa0,0x30,0x15,0xc9,0x3f,0x1e,0x50,0x93,0x49,0x68,0x17,0x46,0x42,0xe9,0xdc,0x9,0x25,0x46,0xa7,0x23,0xfc,0x91,0x1d,0xcc,0x5e,0xf4,0x72,0xe8,0x70,0xa,0x33,0x17,0xc8,0x85,0x8e,0x80,0x4e,0x15,0x1d,0x80,0x8e,0x14,0xe,0x65,0x47,0x97,0xd1,0xb0,0x71,0xf,0xae,0x71,0x6d,0x40,0x69,0x7,0x2a,0xe1,0x63,0xeb,0xbd,0x7,0xa0,0x98,0xcd,0x67,0x38,0x72,0xc6,0x36,0x76,0x76,0xe6,0x70,0x1d,0xc1,0xcd,0x1c,0xd8,0xb9,0x2a,0xf4,0x48,0x27,0x64,0x70,0x32,0xd1,0x2f,0xd3,0x51,0x67,0xfe,0xbb,0x4,0xa0,0x52,0x18,0xcb,0xc5,0x2e,0xe,0xae,0x74,0x30,0xc9,0xa1,0x18,0xb,0x17,0xb2,0x87,0x75,0xea,0xde,0x12,0x45,0x8f,0xc8,0xec,0xe0,0x50,0x2c,0xa6,0x93,0x4,0x12,0x94,0xa2,0x21,0xcd,0xc0,0x23,0xff,0x9b,0x5c,0xe9,0xa4,0x31,0x89,0x73,0x85,0x9,0x8a,0x11,0xf3,0xf5,0x69,0x43,0x52,0xba,0x62,0x23,0xd,0xdb,0xfa,0xac,0x2b,0xc5,0x3d,0xd5,0x23,0xff,0x4a,0x10,0xa8,0x39,0x92,0xd4,0xce,0x93,0xa5,0x45,0x9b,0x52,0xed,0x75,0x6e,0xd5,0xfc,0xf5,0x6f,0xb0,0xd9,0x5a,0x3e,0x3d,0x90,0xcc,0xc4,0x4f,0xcd,0xaa,0xc3,0x9a,0xe9,0xa5,0x74,0x9c,0xc3,0x28,0x58,0xae,0x56,0xf5,0x1f,0x55,0xb5,0x1a,0x63,0x6a,0x4c,0x65,0x6c,0x87,0x23,0xa,0xc5,0x62,0x36,0xc7,0x91,0x23,0x87,0x21,0x12,0x8b,0xf4,0xd1,0x47,0x1e,0x7,0x55,0x7a,0xb,0x15,0x32,0x13,0xc7,0x24,0xe6,0xa3,0xac,0x1e,0x4f,0x93,0x2,0xa6,0x66,0x7d,0x94,0xa,0x7,0x47,0xd5,0xc1,0xad,0x6c,0x3a,0x3b,0xc2,0x86,0xfd,0x33,0xb2,0x1a,0x5d,0x32,0xb4,0x85,0x36,0x32,0xf6,0xeb,0x3d,0xa8,0x79,0x12,0x36,0xd9,0x24,0xb1,0x49,0xe,0xd2,0x90,0xd,0x35,0x8a,0x4f,0xed,0xf7,0xab,0xad,0x8c,0x9f,0xe,0xde,0x27,0x28,0x6d,0x10,0x17,0x92,0xd5,0xea,0x65,0x41,0xaf,0xa4,0xa9,0x48,0x14,0x8c,0xa9,0x11,0x9e,0x85,0xa3,0x4f,0xeb,0x4b,0xd3,0x96,0xfb,0x46,0xf3,0x0,0xad,0x3,0x9f,0x2a,0x8d,0x88,0x1c,0xb4,0xf,0xb3,0x65,0x72,0xf3,0x6c,0xd0,0xd4,0xb8,0x40,0xf6,0xcf,0x9e,0x62,0x8b,0x2d,0xa5,0x4e,0x75,0xea,0xb2,0xd9,0xa8,0x7d,0xa0,0x12,0xfc,0x14,0x5f,0x2b,0x11,0x9,0x7a,0x7,0x31,0xb1,0xe8,0xe9,0xef,0xd1,0xdd,0x22,0x51,0x2c,0x9a,0xdc,0x59,0x68,0x82,0xbc,0x38,0x16,0x98,0xa9,0x91,0xb0,0x16,0x21,0xca,0xbf,0x4f,0x7c,0xed,0x63,0xa2,0x66,0x72,0xc6,0xa8,0x57,0x88,0xf8,0x10,0x49,0xaf,0xa1,0x20,0xf3,0xa,0x78,0xf1,0xe1,0xe7,0x11,0x62,0x6a,0x25,0xc0,0xce,0xe5,0xd0,0xb7,0x90,0x87,0x62,0x9e,0x51,0x4d,0x1e,0x58,0xae,0x26,0xe,0x52,0x85,0xee,0xa1,0x0,0x9b,0xd2,0x3d,0xae,0x9,0xdc,0x80,0xea,0x5d,0x2c,0x3b,0x99,0x90,0x61,0x68,0xc6,0x8b,0xe9,0xc3,0x19,0x3c,0xfb,0x9c,0xc2,0x77,0xe2,0x8b,0xa5,0xaa,0xb5,0xd7,0x51,0xd,0x94,0x21,0xb7,0x82,0xc,0xea,0xba,0x6c,0xd1,0x12,0xd,0x7c,0xff,0x20,0x4c,0xe4,0x90,0x1,0xce,0x65,0xf7,0x45,0x54,0x77,0x50,0x6a,0x2b,0x3b,0x2d,0xca,0xc5,0x30,0xa5,0x73,0x70,0xde,0xa3,0x3b,0xe7,0x4c,0x6c,0x3d,0xf5,0x6a,0x60,0xb5,0xc,0xfc,0xe8,0x84,0x5f,0x4c,0xb4,0x3d,0xcb,0x8f,0x8f,0xc0,0x9d,0xbc,0xf3,0x8a,0xc9,0x53,0xe4,0x1a,0xbb,0x4f,0x72,0x1e,0xa7,0x88,0x50,0x3,0x54,0x11,0x93,0xd5,0x4e,0x8d,0x47,0x9d,0x72,0xb1,0x50,0x8a,0xe,0x8a,0x53,0x45,0x6e,0x1f,0x6b,0x4d,0x58,0xd4,0x60,0x65,0x64,0xe7,0xa0,0xeb,0x15,0xe,0x3d,0xff,0x7a,0x2c,0x76,0x76,0xd0,0x7b,0x40,0x39,0x14,0x4a,0xc1,0x6e,0xe5,0xe2,0x4e,0x27,0x22,0x27,0x85,0x2a,0x91,0x4a,0xf5,0xba,0x99,0x51,0x9a,0x17,0x1,0x31,0x63,0x3d,0x8c,0xe8,0x7b,0x17,0xdc,0x1,0x4c,0xe8,0xba,0x2e,0xee,0xcf,0xa9,0x89,0x16,0x6d,0x95,0xba,0x98,0xce,0x4d,0x4d,0x9,0x19,0xe0,0x8c,0x8c,0xae,0x8b,0x6c,0x6,0x2d,0xca,0x73,0xca,0x6f,0x80,0x69,0x1e,0x44,0x82,0xfd,0x52,0xcc,0x38,0x92,0x51,0xab,0xe3,0xd,0x8b,0x3d,0x23,0x6b,0xb9,0x56,0xcb,0x25,0x9a,0x62,0xce,0xbc,0xe6,0x32,0x4e,0xce,0x97,0x78,0xdc,0xf1,0x53,0x12,0x66,0xd5,0x56,0xd7,0xf8,0x92,0x99,0xed,0x30,0x9,0xa6,0xc8,0x8d,0x16,0xee,0x52,0x82,0xa6,0x26,0xc8,0x83,0x3c,0xda,0xd7,0xac,0x58,0xce,0x6c,0x80,0x28,0x86,0xd5,0x8c,0x34,0x8d,0x96,0xba,0x74,0xd0,0x31,0xea,0x4c,0x89,0xca,0xb6,0x44,0x65,0x1f,0xde,0xa8,0x2e,0x1e,0xea,0x7f,0x7a,0xc0,0x7f,0xd5,0x3c,0x16,0xd4,0x6c,0x83,0xcc,0x63,0xed,0x78,0xae,0xae,0x87,0x1,0x27,0x4f,0xed,0xe6,0x33,0x54,0xcd,0xa8,0xb2,0x28,0xea,0xdb,0x35,0x76,0xb9,0xd0,0xfa,0xae,0xc7,0x23,0x1e,0x7e,0x1,0xfc,0xe8,0xb3,0xa0,0x58,0x34,0x1c,0x82,0x31,0xff,0x39,0x8b,0x36,0x73,0xb3,0xef,0x2c,0x8a,0xb6,0x4c,0x75,0x98,0x8d,0x97,0x99,0x8a,0xe8,0x91,0xb2,0xcd,0x72,0x9a,0x1d,0xa0,0xda,0x5e,0xf6,0x96,0x11,0xa0,0x51,0x50,0xa9,0x79,0xb5,0xa4,0xf,0x45,0x75,0xd3,0xb2,0xce,0x84,0x11,0x7f,0x95,0xd5,0x69,0x41,0x4a,0xa7,0x27,0x52,0xa8,0xd9,0x2f,0xa7,0x3f,0xa4,0xf1,0xa4,0x53,0xb5,0x67,0xae,0xbd,0x17,0xda,0xa,0xfd,0x5a,0xad,0xc1,0x26,0x1b,0x99,0x39,0x83,0x47,0x2f,0xb0,0xa9,0x46,0xca,0x25,0x88,0xa,0xc6,0xbe,0x9a,0xd9,0x13,0xdc,0x6c,0xad,0xc4,0xe4,0xbd,0xe7,0x9,0x62,0xed,0x8e,0x69,0x77,0xf4,0x85,0x53,0x60,0xf2,0x2,0x36,0x91,0x72,0x9a,0xc2,0x3a,0x89,0x35,0xd5,0x5c,0xde,0x25,0x7f,0xc4,0xd2,0xfd,0xca,0xb,0x75,0x60,0x64,0x11,0x95,0x3f,0x53,0xaa,0x4c,0xba,0xae,0x83,0x73,0xe,0xce,0x5,0xdd,0x49,0x17,0xff,0xee,0x5c,0xfc,0x8b,0xe2,0x99,0xe8,0x42,0x43,0xea,0x98,0xe0,0x1c,0x45,0x7a,0x65,0x24,0x7d,0x72,0xfd,0x5b,0x93,0x75,0xd9,0x44,0x6c,0x3b,0x53,0xf8,0xf5,0x5d,0xd7,0x81,0x3b,0x17,0x7f,0xaf,0xf8,0x77,0xe7,0xd0,0x39,0xe,0x89,0x84,0xce,0xa1,0x77,0x1d,0x7a,0xe7,0xf2,0xaa,0xbe,0x77,0x2e,0x37,0x6d,0x59,0x70,0x9c,0xe0,0x66,0xc9,0x1a,0x14,0x47,0xfc,0x24,0xf1,0x1c,0x14,0xcd,0xc2,0x6a,0x44,0x32,0x69,0xce,0x19,0xd0,0x34,0xea,0xa7,0x1a,0x55,0xbb,0x29,0x9d,0xaf,0x80,0x15,0x2,0xc9,0x8b,0x8,0x20,0x2f,0x60,0xf5,0xc5,0x4f,0x9f,0x22,0xd,0x8b,0x9,0x3a,0x3e,0x64,0x6c,0xac,0x5f,0x12,0x2b,0x4f,0x81,0xe7,0xd8,0xed,0xa,0x83,0x49,0xc0,0x8e,0x63,0xb2,0x51,0xdc,0x2c,0xfb,0x38,0x20,0xe2,0x10,0x90,0x80,0xc8,0xdb,0xb7,0x83,0xb5,0x74,0xe8,0x65,0xc1,0x4a,0x8c,0xf7,0x75,0x7b,0x7b,0x98,0x3f,0xf3,0xf9,0xe0,0xf3,0x1f,0x6,0xbf,0xbf,0xb,0x45,0x17,0x95,0xfe,0x9a,0x71,0xbc,0x56,0xb4,0xa6,0xac,0x31,0xf9,0x4b,0x4a,0xbe,0x7c,0x56,0xc1,0x99,0x89,0x47,0x7c,0x90,0x35,0x1f,0x84,0x52,0x76,0xa4,0x44,0x10,0xaf,0x39,0x85,0x2a,0x8d,0x63,0x32,0x9d,0x4a,0xcb,0xe,0x34,0x1f,0x2a,0x79,0x57,0x63,0x39,0xf3,0xe1,0xd7,0x70,0xd2,0xd,0x8,0x30,0xf7,0x23,0xc6,0xaf,0xb9,0x0,0xf3,0x27,0x3e,0x5,0xeb,0xf,0x7f,0xc,0xea,0x76,0x22,0x1e,0xd8,0xd0,0x82,0x10,0x2a,0xc5,0xa4,0xcd,0x64,0x33,0x6e,0x93,0x66,0xb7,0xc5,0x14,0xd6,0x2c,0x32,0x7a,0x9c,0x73,0xd6,0x59,0x58,0xad,0x3d,0xfa,0x2e,0x8,0x66,0xbc,0x8,0x1c,0xb9,0xec,0x17,0xaf,0xdb,0x23,0xdd,0xa8,0x3c,0x6a,0x7,0x75,0x64,0xfc,0xcb,0x5e,0x14,0x7d,0x7c,0x22,0x32,0x2f,0x81,0xa,0x10,0x25,0x4f,0xc1,0x89,0xca,0x3a,0x3a,0x4d,0xfa,0xd,0x45,0x2c,0xc7,0x1d,0x93,0x66,0x38,0x86,0x56,0xa3,0xf3,0x1c,0xe7,0x62,0x76,0x5a,0xe6,0xe0,0xc9,0x24,0xa3,0xba,0x68,0x4c,0x22,0xbf,0x32,0xae,0x8b,0x54,0x43,0xa6,0x3c,0xf5,0xd6,0x87,0x3a,0x50,0xda,0xd7,0x43,0xed,0xea,0xc9,0x9c,0x35,0xb0,0xf6,0x40,0xa3,0x17,0x9a,0x38,0x19,0xe2,0x85,0x65,0x2c,0x89,0xad,0xcb,0x3b,0xa7,0xcf,0x26,0x41,0x28,0x36,0x74,0xfa,0x56,0x70,0x77,0xc0,0x8e,0xbf,0xe,0x25,0xa1,0xc9,0xba,0x46,0x4b,0x6c,0x60,0xb6,0x3c,0x79,0xef,0xf1,0xc0,0xb1,0x63,0x55,0xd4,0xaa,0xda,0xd7,0xae,0xca,0x6c,0x2c,0xb4,0x3e,0xc9,0xa8,0x65,0xc1,0xb3,0xaf,0xf9,0x46,0xfc,0xd7,0x77,0xbe,0x7,0x73,0x3f,0x2,0x14,0x18,0x1e,0xc1,0xed,0x13,0x7e,0x85,0x8b,0x22,0xe1,0x42,0x71,0x29,0xb9,0x1c,0x14,0x3,0x50,0xb2,0x9f,0xde,0x78,0x9b,0x45,0xc9,0x20,0x97,0x37,0x54,0x38,0x49,0x5a,0xb2,0x21,0x57,0xc9,0xa,0x99,0x55,0x2b,0x95,0xa0,0x71,0x29,0xb5,0x80,0x6,0xb5,0x51,0x90,0x6,0x8,0x43,0xc5,0x1a,0xd6,0xec,0xee,0x49,0x69,0xea,0xba,0x48,0x17,0x9c,0xcd,0x66,0x4f,0xab,0xa7,0x6a,0x1a,0x55,0xe7,0x3,0xd0,0x64,0xa4,0x90,0xde,0x8b,0x62,0x8b,0x56,0xf3,0x3e,0xaa,0x99,0x9e,0x85,0x53,0x96,0xca,0x98,0x3d,0x87,0xbb,0x10,0xc8,0x2c,0x2b,0x94,0x6a,0xfd,0x1,0xd9,0xd4,0x41,0x7b,0x43,0x98,0x60,0xae,0x69,0xed,0xa9,0xcd,0xcb,0x6d,0x57,0x2f,0x53,0x8b,0x1b,0xb5,0x16,0x59,0xae,0x4,0x0,0x41,0x20,0xeb,0x5,0xe3,0x30,0x4e,0xed,0x99,0xad,0xc0,0xd6,0x12,0x25,0xe2,0x83,0xec,0x55,0xb0,0xbf,0xbf,0xc4,0x7f,0xf8,0xed,0xdf,0xc3,0xf1,0x63,0xc7,0xd1,0xf7,0xf3,0xd0,0x10,0xfa,0x60,0x57,0xb5,0xa9,0x97,0x1c,0xa9,0x84,0x29,0xa6,0x3d,0xa5,0xbd,0xa6,0xd5,0xc,0x1b,0xd6,0x40,0x76,0x3b,0xa9,0xe4,0xdc,0x98,0x14,0x79,0xec,0x63,0xb3,0x23,0x82,0xd8,0xe9,0x87,0xe7,0x41,0xbc,0xcf,0x6b,0x87,0x94,0x70,0x98,0x36,0x9d,0xe3,0x38,0xe0,0x9f,0x3e,0xfd,0x59,0x74,0xb1,0x49,0xe6,0x8e,0x20,0xa3,0x59,0x3d,0xa5,0xf7,0x81,0x4b,0x1a,0x69,0x30,0xe0,0xb0,0x71,0x6e,0xa4,0xb,0x3f,0xfe,0xa4,0xb8,0x32,0xe8,0xe4,0x0,0xc,0x66,0xa5,0xa,0x9,0xb,0x5,0xb0,0x86,0x21,0x1e,0x77,0x3d,0x64,0x31,0x37,0xd6,0xba,0x58,0x51,0x30,0x83,0xd8,0x41,0xfd,0x0,0x1d,0xc7,0xdc,0x5d,0x65,0x15,0x3f,0x29,0xa4,0x3,0x66,0x60,0xd0,0x38,0x82,0xf7,0x4f,0x4,0x4b,0x1f,0x49,0xf6,0x91,0x3b,0xa7,0xf0,0x7e,0x5,0xa5,0x39,0xa8,0xeb,0xe1,0x93,0x63,0x80,0x4d,0x4e,0x77,0x5a,0x17,0xe4,0x7d,0xae,0x8f,0x72,0x1c,0x7,0x78,0x85,0x63,0xc5,0xe1,0xeb,0x5f,0xa,0x1f,0x29,0x38,0x4a,0x45,0x3,0x6b,0x53,0xad,0xd4,0xa,0xca,0x52,0x65,0xc9,0x4,0xf5,0xd1,0x3f,0x49,0xc6,0xf9,0x94,0x1e,0xda,0xb4,0x8f,0xe1,0x78,0xd0,0xc0,0x76,0x5,0x14,0xc9,0xc4,0x6a,0x74,0x27,0x46,0x5d,0x9b,0xaa,0xd2,0x1c,0x98,0xa3,0xe6,0xc1,0xf,0xef,0xa0,0xc6,0x82,0x2,0x14,0x26,0x2a,0x44,0x4,0x7,0xf,0xd1,0x11,0x87,0xaf,0x7f,0x19,0x4e,0x7e,0xe0,0x83,0xa0,0x45,0x58,0x3d,0x74,0x4e,0xe0,0xbd,0xb1,0x4a,0x8a,0xe4,0xc8,0x4a,0x6b,0xb,0xe1,0x28,0xb0,0x4b,0x7f,0x6,0x22,0x7,0x15,0x81,0x1f,0x7,0xdc,0x74,0xf3,0x97,0x70,0xde,0xd1,0xa3,0x58,0x2e,0xf7,0xf2,0x43,0xc8,0xc4,0x38,0xf7,0xdc,0xb3,0x70,0xde,0xd1,0x73,0x8c,0x82,0x5f,0xcb,0xee,0xba,0x5,0xf8,0x35,0x5b,0x3c,0x8d,0x11,0xb7,0x49,0xe4,0x99,0x84,0xb1,0xe5,0x63,0x55,0xaa,0xd4,0xe4,0x85,0x66,0x49,0x69,0x82,0xa5,0x93,0x9e,0xb2,0x70,0xc,0x4c,0x2a,0xef,0xbb,0x2c,0x21,0x97,0x72,0x17,0x96,0x5,0x6a,0x99,0xbf,0xcf,0x15,0xa7,0x82,0x88,0x20,0xac,0xb5,0x90,0xce,0x9b,0xe,0x5b,0xd5,0x7c,0xaf,0x3a,0xb1,0xe8,0x58,0x68,0x51,0x12,0xa2,0xb5,0xed,0x24,0x35,0x76,0x6c,0xeb,0x86,0xaa,0x2e,0x92,0x16,0x40,0xa6,0x76,0x20,0x7c,0x30,0x1,0xad,0xa5,0x8d,0xb6,0xdf,0x9e,0xe2,0x80,0xb,0x7f,0xe3,0xb6,0xda,0x88,0x8b,0xc0,0x85,0x8b,0x6e,0x26,0x55,0x5e,0xc3,0xa8,0xf2,0xae,0x7b,0xee,0x33,0xa9,0x6b,0x35,0x4b,0x3d,0x89,0xe3,0x34,0xe1,0x7e,0x93,0x0,0x31,0x16,0xd4,0xc7,0x88,0xaf,0xca,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xea,0x81,0x6f,0x7d,0xe1,0x75,0xf8,0xb9,0x37,0xff,0x26,0x8e,0x1d,0x3b,0x8e,0x79,0x4f,0x10,0x21,0x38,0xee,0xb2,0xc3,0x21,0x33,0xd5,0xd9,0xec,0xf7,0xc9,0xea,0x8e,0x62,0x50,0x18,0xab,0x29,0x82,0x34,0xdb,0x31,0xc5,0xae,0x2c,0x36,0xa9,0xf1,0xab,0x21,0x15,0xd5,0xcf,0xa0,0xd6,0x18,0x5d,0x18,0x10,0x56,0x15,0x18,0x33,0x99,0x10,0x61,0x43,0x56,0x2,0xc,0x94,0xa8,0x96,0xff,0xe5,0x26,0x24,0x7f,0x3f,0x9c,0x5f,0x53,0xa8,0xd5,0x46,0xd5,0xb3,0xb6,0x1c,0x92,0xa5,0x38,0x0,0xfe,0x43,0x95,0x96,0x84,0xda,0x2e,0x5c,0xd3,0x9a,0x72,0x3,0xd9,0x5,0x6d,0xf0,0x90,0x1e,0x88,0x1f,0xa8,0x76,0xe6,0x54,0xb,0x10,0x2d,0xf0,0x7,0x26,0x75,0x92,0x94,0xea,0x3d,0x40,0x55,0x1,0x6b,0x1d,0x19,0x5c,0x2a,0xfd,0x18,0xb7,0x5c,0x3c,0xea,0xe9,0x8c,0x19,0x86,0xc1,0xbc,0x7,0x5a,0x7,0x9d,0xc1,0x44,0x44,0xb7,0x31,0xd7,0xa2,0xf0,0xe3,0x80,0xdf,0xfe,0xbd,0xff,0x1b,0xb7,0xdc,0x74,0x13,0x68,0xb6,0xc8,0x3a,0x37,0xa2,0xd2,0x6d,0xdb,0xa6,0x82,0xaa,0x8c,0xc,0xce,0x99,0x19,0xb6,0xf9,0xaa,0x5d,0x14,0x65,0x8f,0x1f,0x10,0xc6,0xd1,0x89,0x94,0x2d,0xd4,0x88,0xad,0xb0,0xe4,0x23,0x43,0x92,0xa5,0x3e,0xa,0x7a,0x41,0x8a,0xc5,0x62,0xb,0xb3,0xd9,0x2c,0x98,0xdd,0xbc,0x99,0x3c,0x8a,0x29,0x3a,0xa9,0x84,0x17,0x71,0xba,0x5f,0x58,0x51,0xb4,0xee,0xe5,0x84,0x26,0x84,0xe6,0xb8,0xcb,0x40,0x42,0x83,0x71,0xad,0x6d,0x80,0x5c,0x3d,0x10,0x1e,0xa,0xac,0x6,0xc8,0xe7,0xbe,0x88,0xd5,0x6a,0xf,0xa4,0x43,0xd8,0x1d,0xc5,0xf7,0x6f,0x36,0xe,0xc0,0x23,0x2e,0x4,0x9d,0x7d,0x14,0x1c,0x2f,0xe3,0x64,0xb,0x17,0x1,0x46,0xaf,0xc0,0x72,0x8d,0xad,0x6f,0x78,0x32,0xf4,0x5b,0xbe,0x13,0x38,0xeb,0x82,0x40,0xf4,0x83,0x8f,0x60,0x1a,0x2,0x6f,0x6f,0x63,0xf9,0x77,0x1f,0xc7,0xea,0x1f,0x3e,0x1,0x5e,0x2c,0x62,0xd7,0x1a,0x2e,0xb6,0x30,0x59,0x48,0x82,0xb1,0xc8,0x11,0x8f,0x4a,0x5,0x15,0x60,0x36,0xae,0x31,0xbb,0xf0,0x91,0xe8,0x1f,0x77,0x15,0x74,0xb5,0x4,0x31,0x63,0x4c,0x45,0xa3,0xb6,0x7,0x81,0x66,0xb5,0xb5,0x24,0x51,0x86,0x14,0xaa,0x1a,0x19,0xff,0x65,0x80,0x54,0x48,0x75,0x51,0x24,0xbc,0x1e,0x89,0xc4,0x8b,0xc5,0x78,0x33,0x93,0x88,0xd0,0xec,0xc8,0xd3,0x7,0x8f,0x51,0x2,0x54,0xc8,0x95,0xf5,0x8a,0x6a,0x51,0xd0,0x13,0x6b,0x8a,0xd9,0x3,0x11,0xe0,0x96,0x2b,0xf0,0x53,0x9e,0x84,0xfe,0x82,0xf3,0x31,0x1c,0x5f,0xc2,0x77,0xc,0xc0,0x81,0x9c,0x14,0x1b,0xa6,0x98,0xa,0xdd,0xa6,0x35,0xc0,0x52,0xd5,0xe2,0x58,0x19,0x82,0x7e,0x31,0xc7,0x4f,0xfc,0xd4,0xbf,0x85,0xeb,0x42,0xc1,0x96,0x4,0x4d,0xbb,0xa7,0x77,0xf1,0x4b,0x6f,0xfa,0x59,0x7c,0xff,0xff,0xfc,0x9d,0x46,0xc9,0x4c,0x95,0xaa,0x9e,0xaa,0x6c,0x78,0x13,0xff,0x6b,0x6e,0x36,0xce,0x51,0xc9,0x14,0x27,0xda,0x94,0x77,0xa7,0xc5,0x1d,0x14,0x2f,0x70,0x35,0xb6,0x43,0x13,0x1a,0x55,0xed,0xf0,0xd2,0x59,0x25,0x9a,0xc5,0x48,0x19,0x9c,0xd4,0x7a,0x87,0x63,0x3a,0x64,0xe1,0x3,0xc4,0x7f,0x66,0x43,0xf4,0x83,0x46,0x31,0xa7,0xb9,0x48,0x33,0x2f,0xa2,0xa8,0x88,0x35,0xae,0x88,0xea,0x83,0xcc,0x40,0x49,0xda,0x9b,0x5c,0xeb,0xe1,0xbb,0xd0,0x54,0x20,0xd9,0x12,0x15,0x6d,0xf3,0xa6,0x96,0x88,0xc8,0x54,0xdd,0xe4,0x59,0xe1,0xdf,0xf8,0x94,0x27,0x61,0x4a,0x1b,0x5c,0x64,0x74,0xd0,0x98,0xdf,0x3a,0x81,0xb2,0xca,0x9e,0x2b,0xe4,0xa8,0x98,0xb1,0xf6,0x57,0x6e,0xbb,0xdd,0xec,0xef,0x93,0xf3,0xc0,0xda,0x37,0xa5,0x58,0xe7,0xb5,0x8e,0x24,0x13,0x55,0x9c,0x7b,0xf6,0x39,0xf8,0x99,0xd7,0xfe,0x10,0x7e,0xe0,0x7f,0xfd,0x59,0xcc,0xba,0x2e,0x40,0x89,0x48,0x8c,0x36,0x5,0x13,0x9b,0x6d,0xc9,0x4,0x4e,0x45,0x95,0x37,0x3b,0x6c,0x85,0x23,0x32,0x11,0xd0,0x5a,0x5f,0x68,0x16,0x9d,0x3b,0x51,0x9a,0x95,0xa9,0x82,0x1a,0x31,0x65,0x2e,0x3c,0x25,0x3c,0x5b,0xb9,0xee,0x10,0xab,0xa4,0x9e,0x2a,0x3d,0xec,0xe7,0xb5,0xca,0x3a,0x41,0xbd,0xae,0x8,0x5,0x78,0x1b,0x10,0x44,0xd,0x8f,0xc2,0xec,0xa6,0xc9,0x4c,0x61,0xa8,0x2d,0x24,0xe8,0x80,0xf7,0x56,0x8d,0xd7,0x4c,0x4d,0x3c,0xb4,0xcd,0xa2,0xa8,0x21,0x5f,0x25,0xf4,0xa5,0x9,0xd0,0x41,0x6d,0xa5,0xac,0x9e,0xcf,0x4a,0xd6,0x62,0xc5,0xb1,0xb4,0x41,0xe7,0xc0,0xa6,0xd9,0x42,0xed,0x20,0xd9,0x30,0x21,0xb1,0xff,0x28,0xc9,0x92,0x1c,0x7f,0xc6,0x7e,0xd4,0x9a,0x4c,0x2b,0xbb,0xb6,0x44,0xae,0xb3,0xb,0x5c,0xd7,0xe1,0x8c,0x33,0xce,0xc4,0x63,0x2f,0xbf,0xc,0x77,0xdc,0x76,0x17,0x5c,0x3f,0xb,0xcd,0x4a,0xc2,0xce,0xb3,0xcb,0x78,0xf4,0x9c,0x17,0x92,0xbb,0x7d,0x2a,0x13,0xb0,0x8c,0xc4,0x68,0x75,0x4e,0x65,0xe2,0x94,0x2c,0xe9,0x12,0xfd,0x7a,0x29,0xf,0x25,0x17,0x30,0xc6,0xe1,0xc3,0xcd,0x58,0xca,0x45,0x7c,0x7d,0x4e,0xea,0x8c,0xa1,0x44,0x76,0x14,0x99,0xa,0x2d,0xad,0xb2,0x61,0xa,0x0,0x49,0x93,0x2b,0x2e,0x89,0xa5,0x9,0x60,0xa5,0xe8,0xe3,0x37,0x7,0x90,0xca,0x26,0xd0,0x85,0xa9,0x60,0x67,0x73,0xec,0xdf,0xf2,0x39,0xdc,0xfa,0x83,0xdf,0x1,0xf6,0x2,0x15,0x86,0xb8,0x30,0x22,0x61,0xf,0xf0,0x89,0x7b,0x71,0xee,0x8f,0xbf,0xe,0xdb,0xaf,0xfa,0x1,0xf8,0xd5,0x3e,0x48,0x2,0xe9,0x8e,0x53,0x75,0x2b,0x84,0xe1,0xf4,0x69,0x6c,0x3d,0xed,0xa9,0x38,0x7c,0xdd,0xb5,0x18,0x46,0x81,0x93,0x50,0xe1,0x6,0x10,0x90,0x7,0x1f,0xd9,0xc6,0xfd,0xbf,0xfa,0xab,0x58,0xff,0xfd,0x7,0x41,0x34,0xc7,0x18,0xf,0x1d,0xe7,0x5c,0x76,0x18,0x88,0x86,0xd5,0x59,0x51,0x16,0x87,0xa3,0xc7,0xad,0x4e,0x63,0xeb,0x9a,0xef,0x4,0x76,0xb6,0xc1,0xfb,0x7b,0xf0,0x0,0x9c,0x49,0xfb,0xca,0x70,0xa,0xe3,0x23,0x57,0xf3,0x87,0x4e,0xfc,0xe7,0x10,0x13,0x2c,0x55,0x2c,0x6e,0x2,0x1c,0x15,0x8a,0x99,0x16,0xc8,0x46,0xba,0xd7,0x9d,0xb5,0xa4,0x94,0xf8,0xd1,0x34,0x41,0xb0,0x39,0xe2,0xed,0xe9,0x44,0xc4,0xe1,0xd0,0x8b,0xb3,0xee,0xd4,0x71,0x7a,0x38,0xa8,0x78,0xc8,0xd9,0xe7,0x60,0xf1,0x8c,0xe7,0x60,0xf8,0xe3,0x3f,0x2,0xb6,0x8e,0xc4,0x61,0xb,0x63,0x8c,0x22,0xbd,0x3c,0x1e,0x4c,0x22,0x46,0x50,0x60,0x2e,0x24,0x4f,0x3f,0x95,0xbc,0xf5,0xb4,0x13,0x52,0x10,0xfc,0x8,0x88,0x1f,0xe0,0xc5,0xc3,0x45,0xa7,0xc1,0xb8,0xf6,0x35,0x73,0x9e,0x6a,0xbd,0xea,0x34,0xe1,0x75,0xe2,0x63,0xc9,0x18,0xe6,0xec,0xfe,0x37,0xdd,0x4a,0xd9,0xfd,0xc6,0xc3,0xd0,0x5,0x51,0x28,0x3b,0xca,0xaf,0x6d,0xea,0x96,0x38,0x8d,0x7e,0xad,0xc,0x45,0x4b,0x1,0x15,0xf2,0xba,0xc9,0x24,0xe6,0x71,0xcd,0x5,0x53,0xce,0x53,0x10,0xb6,0x7,0xab,0x6,0xc1,0xc,0x91,0xf5,0x8c,0xc3,0x24,0x4a,0x1a,0x8d,0x5b,0x33,0x1e,0x6f,0x2,0xf2,0x9a,0xfd,0x33,0x2a,0x5a,0x56,0x1a,0xcb,0xc3,0x14,0x0,0x25,0x57,0x5e,0xea,0x51,0x69,0x1b,0xae,0xa1,0x2d,0x35,0x4d,0xeb,0xa4,0xbf,0xa,0x38,0x8e,0xda,0xb7,0xad,0x9b,0x16,0x31,0x75,0x34,0x98,0xd,0xc1,0x29,0xeb,0x49,0x8e,0x9d,0x33,0x23,0x91,0x6e,0xcb,0x44,0xce,0xe1,0xa6,0x2f,0x7c,0x9,0xe2,0x3d,0x88,0xbb,0x52,0x68,0x6a,0x1,0x90,0x94,0x4b,0x24,0x9e,0xb,0x2a,0xf9,0xd2,0xe2,0xce,0xc1,0x8b,0xe0,0xd5,0xdf,0xf1,0x6d,0xf8,0xec,0xe7,0xbe,0x88,0x5f,0xfd,0xad,0x3f,0xc0,0x56,0xdf,0x63,0x8b,0x67,0x39,0x5d,0xb3,0x4,0x4c,0x18,0xfc,0x77,0xf5,0xf1,0x32,0xce,0x8e,0xec,0xa2,0xf5,0x11,0x2c,0x14,0x8a,0xda,0xd0,0x39,0x51,0x19,0x75,0x2,0x26,0x6,0xb7,0xdd,0x8a,0xb4,0x8c,0x4a,0x73,0x61,0x71,0xed,0x3f,0x99,0x88,0xfd,0xa2,0x5e,0xa6,0xb5,0x5a,0x96,0xf,0x87,0xf1,0xbb,0x65,0xe7,0x55,0x13,0xfc,0x13,0x53,0x2b,0x29,0x9f,0xbf,0x54,0xe5,0x23,0xb4,0x43,0x9b,0xa6,0x16,0x30,0x9d,0xf9,0x6,0x9b,0x5a,0xb3,0x62,0x22,0x9b,0x47,0x42,0x35,0x4,0xd,0x46,0x30,0x4b,0xd,0x43,0xa2,0xbe,0xb7,0x9b,0xaf,0x93,0x7e,0x7f,0xe,0x39,0xe,0x4c,0x9a,0x1b,0x2b,0x85,0x4d,0xa6,0x2c,0xef,0x9b,0x35,0x24,0x50,0xa3,0x5d,0xa4,0x76,0xfa,0x1c,0x5,0xdd,0x99,0x2d,0x12,0x8b,0x80,0xe3,0xc7,0x4f,0x18,0x35,0xe1,0x26,0x71,0xd,0xc,0x93,0x83,0xea,0x22,0x10,0xc0,0xd7,0x3e,0xf6,0x32,0xfc,0xc5,0x7b,0xde,0x87,0x6d,0xea,0xc2,0xd9,0x28,0x9,0xb5,0x2e,0x41,0x1c,0x9a,0xa7,0x41,0x9c,0x41,0xf1,0x64,0x7c,0xf5,0xc9,0xcd,0xa0,0xa4,0x71,0xfa,0x4b,0x75,0x33,0x94,0x2d,0xc3,0x9a,0xa8,0xba,0x25,0x4c,0x27,0xd3,0xff,0xa8,0xa,0x3b,0xca,0x9a,0x30,0xa5,0x10,0x9f,0xac,0x49,0x68,0x1e,0x79,0x1d,0x6c,0x5a,0x8a,0xe4,0xfd,0x27,0xd,0x93,0xa,0x63,0xc5,0xcf,0x96,0x65,0x13,0x60,0x66,0x3f,0xde,0x6c,0x79,0xc8,0xda,0x8e,0x1d,0xd,0x74,0x24,0x83,0x6a,0x0,0x8,0x3b,0xc0,0xcd,0x20,0x8b,0x6d,0xc8,0xd6,0x16,0xb4,0xdf,0x82,0xf4,0x5b,0x58,0xcf,0xf,0x1,0x5b,0xe7,0x60,0x94,0x79,0x18,0x60,0x88,0x6,0x71,0x95,0x6a,0x1e,0xb7,0x27,0x8e,0x3a,0xd,0x6b,0x8c,0xa7,0x4e,0xc2,0xed,0x9f,0x2,0xad,0xf7,0xc0,0xeb,0x5d,0x60,0x79,0x1a,0x34,0x2e,0x21,0x7b,0x7b,0xd0,0x71,0xd,0xe7,0x3a,0x88,0xba,0xfc,0xf0,0xe7,0x78,0xc4,0x34,0x6d,0x63,0xcd,0x21,0x40,0x5e,0x9,0xbd,0x2,0x34,0xef,0xb1,0xf5,0x9c,0x17,0xc3,0xf,0xeb,0x9a,0x26,0x98,0x6,0xc3,0x36,0x89,0x8c,0x8c,0x6f,0x32,0x76,0xc,0x9a,0xba,0xc0,0xe8,0x20,0x60,0x4d,0xb2,0x94,0x64,0xa3,0x91,0x7c,0x79,0x70,0x7a,0xb3,0x53,0x4e,0x72,0xb4,0x3e,0x49,0xda,0xd7,0xa5,0xb1,0x57,0xec,0xe6,0x55,0xb4,0xa,0xd,0x51,0x31,0xaa,0xc0,0xd8,0xa5,0x87,0x71,0x52,0x42,0xf4,0x12,0xb8,0x77,0x18,0xbd,0x40,0xfc,0x8,0x59,0x2d,0xb1,0xf5,0xfc,0x17,0xa3,0x9b,0x75,0x80,0x78,0xc,0x92,0x58,0x1,0xc9,0x84,0x92,0x84,0x62,0x45,0x8,0x94,0x45,0x58,0x89,0x4e,0x15,0xf,0x2f,0xce,0x95,0x2c,0x67,0x15,0x34,0xb3,0x3,0x1c,0x47,0x8d,0x95,0xaf,0xad,0x31,0x5a,0x2e,0x25,0xaa,0x90,0x27,0x45,0xf8,0x65,0xf,0xa1,0x20,0x8a,0x71,0x61,0x5a,0xd1,0x75,0xe0,0xe4,0xc6,0xe0,0xe4,0x3a,0xb0,0x14,0x3a,0xce,0xaa,0xee,0x44,0xca,0xe2,0xc6,0x9e,0x55,0x5,0x2,0xd9,0xfd,0xaf,0x49,0xf,0xd4,0xea,0xb5,0xa4,0x78,0x58,0x98,0xbf,0x73,0xe2,0x9,0x44,0x31,0x24,0x53,0xac,0xe8,0xa9,0xba,0xa1,0x93,0x28,0x27,0x8d,0xa9,0x45,0xb5,0x1d,0xbc,0x37,0x16,0x7d,0x35,0x5e,0x7f,0x4c,0xa2,0x3b,0x39,0x52,0x18,0x33,0x33,0x3f,0xa3,0x66,0x53,0x7f,0x64,0xd0,0xa3,0x1b,0x58,0xe4,0x89,0x89,0xa1,0x14,0xf4,0x1f,0xa9,0x3,0xa1,0x94,0xf3,0x5d,0x35,0x8e,0xda,0xb2,0x5a,0xa7,0xe6,0x4b,0x6a,0x98,0xc,0x29,0xfc,0x9,0xf5,0x65,0x44,0x28,0x36,0x25,0x8a,0x85,0x50,0xe7,0x3a,0x7c,0xfe,0xe6,0x2f,0xe1,0x81,0x7,0x8f,0x83,0x58,0xaa,0x60,0xd8,0xf4,0x7a,0xc1,0x44,0xf2,0x5a,0xbd,0x87,0x16,0xe3,0x3b,0x86,0x41,0xf0,0xa6,0xd7,0xbf,0x16,0x6f,0xfe,0xb9,0x7f,0x83,0x33,0xcf,0x3a,0x82,0x53,0xa7,0x4f,0x63,0xb9,0xbf,0x8f,0xd5,0xfe,0xa,0xcb,0xe5,0x12,0xc3,0x6a,0x85,0x61,0xbd,0xc6,0x38,0xac,0x31,0xc,0x2b,0xc,0x43,0xfa,0xe7,0x35,0xc6,0x61,0xc4,0x30,0x8c,0x18,0xd6,0xe1,0xdf,0xd7,0xeb,0xf0,0xd7,0x6a,0xbd,0xc6,0xb0,0x5e,0x43,0x6,0x9f,0x33,0x5,0xc2,0x45,0x2a,0x71,0x7d,0x86,0x49,0xa7,0x9e,0x3,0xa1,0x4,0x6,0x16,0x30,0xf5,0xe3,0x57,0xc2,0xad,0x83,0xc4,0x91,0xba,0xa1,0xdb,0xa6,0xa9,0x17,0x64,0xa2,0xf4,0x97,0xb4,0x5a,0xa0,0x29,0x7a,0x8d,0x78,0xba,0xf,0x37,0x45,0x71,0x51,0xd9,0x37,0x1c,0x78,0x6a,0xc6,0xdb,0xe6,0x1c,0xb7,0x5f,0xa2,0xc0,0x61,0xac,0xe0,0x39,0xad,0xc8,0x28,0x8b,0xf2,0xec,0x4,0x49,0xa9,0x74,0xf6,0x49,0x0,0x5a,0x9b,0x55,0xb8,0x14,0x3,0x54,0x62,0xb3,0x3,0x99,0xd2,0x14,0x9d,0x4a,0xc5,0xe,0x6a,0x45,0x96,0x86,0xd4,0x87,0xcc,0xd9,0xd0,0x3c,0x95,0x25,0x17,0x60,0x6a,0xf,0x9e,0x38,0xb1,0xa9,0xa7,0x37,0x43,0x1f,0x9d,0xb8,0x30,0x54,0x15,0xde,0x2b,0xfc,0xe8,0xf1,0x2d,0xd7,0x3f,0x27,0x3a,0xac,0x38,0x9f,0xb7,0x92,0x3,0x82,0xe2,0xd9,0xc0,0xd9,0xb,0x66,0xc6,0x2e,0xf1,0x75,0xe1,0xe,0xaa,0x2e,0x3e,0xb3,0xf1,0xfe,0x20,0xe,0x7f,0x21,0xfd,0x95,0x7e,0x6d,0xca,0xff,0x76,0x10,0x2d,0x5,0xa2,0xe1,0x28,0x96,0xff,0xee,0x2,0x1c,0x4e,0x50,0xce,0x2b,0x17,0x17,0xff,0x92,0xd2,0x2d,0x39,0x38,0x95,0xd8,0x80,0x2d,0xa4,0xfd,0x33,0xc7,0xe7,0x8f,0x9a,0x78,0x48,0x8d,0x4e,0xb0,0xaa,0xea,0xaf,0x5b,0x7e,0x93,0x12,0x44,0x6a,0x15,0x49,0x19,0x77,0xb,0x44,0x4f,0xa5,0x2a,0x3c,0x29,0x7c,0x87,0xd0,0xb5,0x27,0xee,0x9b,0x96,0x91,0x5f,0x12,0xce,0x69,0x1c,0x23,0x52,0x8c,0xdd,0x4d,0xdd,0x9b,0x57,0x1,0x24,0x5c,0x40,0xe2,0xfa,0x68,0x83,0x13,0x83,0x4a,0xe4,0x62,0x37,0x4,0x0,0xea,0xe2,0x5,0x45,0x10,0xed,0x40,0xcb,0x93,0xe8,0x1f,0x77,0x25,0xba,0x8b,0x1e,0x9,0x1a,0x96,0x70,0xe8,0x8c,0xf7,0x32,0xf8,0xc1,0x35,0x5e,0xcd,0x44,0x5c,0xba,0xfe,0xe8,0x9,0x27,0xe3,0xcb,0x4d,0x9d,0xf,0xa2,0xe7,0x9d,0xb2,0xb0,0x8f,0xd,0x47,0xdc,0xe2,0x42,0xe3,0x9b,0xaf,0xf5,0xeb,0x86,0x1c,0x8d,0x4b,0xe6,0xf1,0x8d,0xfe,0x51,0x13,0xcb,0xca,0x96,0x32,0xa9,0x5,0xd0,0xc0,0x1d,0x87,0x18,0x4d,0x74,0xa0,0xe5,0x2e,0xb6,0x2e,0xbf,0x4,0xb3,0x8b,0x2e,0xc2,0xf0,0xe5,0xdb,0xb1,0x74,0x5b,0x21,0x25,0xc1,0x75,0x41,0x29,0x1f,0x71,0xca,0x84,0x62,0x75,0x49,0xd5,0xaa,0x9a,0x31,0x59,0x12,0x51,0xa6,0xd1,0x6a,0xf8,0x9f,0x83,0x73,0x65,0xcd,0x51,0x20,0x33,0x26,0x1d,0x2e,0x4e,0x15,0x4a,0x17,0xd3,0xee,0x2,0xad,0xd5,0x25,0x5d,0x0,0x2,0xef,0x7d,0x7e,0x2d,0x13,0xa1,0x31,0x55,0xa5,0xaa,0x68,0x5e,0x9d,0x3a,0x2d,0x72,0x13,0x3c,0x23,0x8f,0x2d,0xb5,0xb1,0xcc,0x91,0xf1,0xd4,0x9b,0x59,0x1b,0x99,0x0,0x1d,0xca,0xa3,0x82,0x18,0xc3,0x2b,0xa,0x11,0x89,0xfc,0x89,0xb0,0x71,0x4b,0x9,0x56,0x61,0xac,0x5b,0x42,0x11,0x93,0x58,0xa6,0xe1,0x81,0x98,0x95,0x80,0xa9,0x90,0x26,0x3b,0x53,0x73,0x98,0x51,0x93,0x65,0x9f,0xd9,0xda,0xb2,0x1,0x25,0xce,0x79,0xf4,0xbc,0x69,0x9f,0x5b,0x52,0xfd,0x2c,0x47,0x7c,0x3,0x44,0xe5,0x0,0x39,0x66,0x21,0x14,0xa6,0xd1,0xaf,0xab,0xb,0x3d,0x53,0x4c,0xa5,0x55,0xdb,0xdd,0xf7,0xdc,0x8f,0xbf,0xff,0xa7,0xcf,0xe0,0xba,0x6b,0xae,0xce,0x31,0xd4,0xb0,0x7b,0x4a,0x58,0xcc,0x6d,0xf8,0x33,0xa8,0x85,0x2c,0x79,0xa,0xc1,0x4d,0x2a,0xf8,0x81,0x57,0x7f,0x37,0xbe,0xfd,0x85,0xcf,0xc3,0x3b,0xdf,0x73,0x3,0x6e,0xfc,0xc8,0x27,0x70,0xd7,0xdd,0xf7,0xe2,0xf4,0xfe,0x3e,0xd6,0xc3,0x0,0x3f,0xe,0x18,0xbd,0xe6,0xce,0x37,0x5d,0x5a,0x59,0xd1,0x1f,0x3f,0xa8,0x45,0x29,0x1f,0x9e,0xc5,0xd5,0xde,0x3e,0x1e,0x7e,0xc1,0xf9,0xd1,0x3,0x5d,0x56,0x96,0xf5,0x2a,0xc4,0xb8,0x2b,0x40,0x55,0x70,0xd,0x69,0x99,0xc4,0xd8,0x7d,0x7d,0x6b,0x53,0xcb,0x76,0x62,0xb1,0xab,0x3c,0xaa,0x47,0xda,0x86,0x75,0x50,0xce,0x59,0xdd,0x6c,0xb5,0xa8,0x84,0x76,0x36,0x6,0xd7,0xae,0xad,0xa5,0xc2,0x37,0x94,0xf5,0xae,0x25,0x1f,0x1d,0xec,0xdd,0xa8,0x2d,0x7f,0x28,0xe4,0x40,0x2d,0x19,0xd2,0x6d,0xac,0x32,0x99,0x34,0x4d,0x6b,0x71,0x24,0x13,0xca,0x46,0x94,0x17,0xe3,0xe6,0xae,0xa8,0xc1,0x5b,0x64,0xd8,0x11,0xe1,0x9b,0x97,0x6a,0x72,0x46,0xd4,0x80,0xac,0xe2,0x68,0x56,0xcd,0xaa,0x91,0x1c,0x65,0x4f,0xfb,0x1d,0x77,0xde,0xb,0xef,0x2d,0xe5,0xd3,0xf4,0xad,0x64,0x89,0x8c,0x64,0x66,0xab,0x41,0xe4,0xc6,0x8e,0xf1,0x94,0xc7,0x5f,0x85,0x17,0x5f,0xff,0x5c,0xfc,0xf9,0x3b,0xdf,0x8b,0x9d,0xad,0x19,0x88,0x82,0xba,0x3e,0x23,0x81,0x23,0x74,0x4e,0x52,0x33,0x60,0x40,0x64,0x39,0x6a,0x3e,0xa4,0xd7,0x5,0x69,0x4b,0x5c,0x65,0x55,0xb3,0xdc,0xdc,0x9f,0x48,0x71,0xa3,0x31,0x55,0x41,0x0,0x71,0x18,0xb,0x19,0x42,0xa3,0x2c,0xa3,0x46,0x7,0x72,0xf8,0xe7,0xac,0x18,0x8f,0x82,0xf3,0xb4,0x4a,0xd6,0x98,0xdc,0x4a,0x5e,0x63,0x9e,0xb,0x97,0xb5,0x2b,0x6d,0x16,0x4d,0xa6,0xee,0xbf,0xab,0xcf,0x81,0x78,0x28,0x51,0x21,0x13,0x55,0x45,0x0,0xd5,0xbe,0xed,0x84,0x67,0x20,0xcf,0x20,0x26,0xb8,0x98,0x48,0x47,0xeb,0x75,0xb8,0xde,0x5a,0xd1,0x2b,0xd5,0xd4,0xa6,0x48,0xe8,0xc9,0xbe,0x7e,0x20,0x90,0xff,0x82,0xd7,0x9e,0xa3,0x60,0x30,0xc5,0x8d,0x7a,0xd0,0xb8,0x46,0x47,0x8,0x49,0x76,0xaa,0x80,0x1f,0xe2,0x18,0x91,0x40,0x34,0x87,0x2c,0x4f,0xa1,0xbb,0xfe,0x15,0x58,0x1d,0xda,0x86,0x5b,0x2d,0xe1,0xd9,0x41,0x64,0x4,0x8f,0x3e,0xf8,0x16,0x89,0xf2,0xb5,0x5b,0x42,0x68,0xc2,0x35,0xe5,0x20,0xb9,0x3e,0xe3,0xc8,0x25,0x8,0x6f,0xac,0x96,0xd8,0x74,0x94,0xea,0x35,0x85,0x98,0x94,0x33,0xd9,0x38,0x5,0xa4,0xd0,0x97,0x32,0xfc,0x25,0xc3,0x13,0xb4,0x4a,0x2c,0x4c,0x85,0x17,0x53,0x10,0x43,0x21,0x8e,0xca,0xf2,0x5e,0x59,0x62,0xc,0xaa,0x8,0xba,0xd1,0x63,0xd8,0x22,0x6c,0x5d,0xff,0x52,0xec,0xfd,0xca,0xcf,0xc1,0xcd,0x76,0xb0,0x96,0xe8,0x8a,0xcf,0xf6,0xa,0x89,0xe2,0xc4,0xe2,0xaf,0x16,0x9,0x96,0x94,0xec,0x17,0xce,0x45,0x8c,0xb9,0xa0,0x38,0xe4,0x2,0x88,0xed,0xa0,0xcd,0xe5,0x50,0xc2,0x35,0xcc,0xe8,0x32,0x3f,0x66,0x6,0x3a,0x83,0xe2,0x83,0xde,0xdd,0xdd,0xc5,0x72,0xb9,0xc6,0x6a,0x28,0x5a,0x6f,0x9b,0x29,0x6e,0x77,0x81,0x24,0x1a,0xf4,0x23,0x8,0x55,0x6d,0xb9,0xf0,0x63,0x87,0x13,0x99,0xf0,0xe9,0x82,0xac,0xd,0x6,0xe6,0xa1,0x64,0xce,0xfb,0x69,0x86,0xd1,0x61,0x98,0x95,0x4d,0x18,0xd3,0xa5,0x45,0x4a,0x18,0xeb,0x89,0x96,0xfd,0x3a,0x3b,0xce,0x11,0xc6,0xe0,0x24,0xd0,0xb2,0x5d,0x98,0xd6,0x8d,0x75,0xc5,0x15,0x27,0xc3,0x50,0xd1,0xa,0x82,0x44,0xd6,0x9b,0x38,0x99,0xd0,0xd7,0x21,0x1c,0x9a,0x74,0x25,0x66,0x76,0x4e,0x19,0x8c,0x85,0x62,0x49,0xe5,0x5a,0x4d,0xfe,0xd0,0x62,0xbe,0x4d,0xa5,0x80,0x16,0x8e,0x41,0x62,0xfe,0x90,0xcd,0x1f,0x2f,0x13,0x9e,0x88,0xed,0x80,0x17,0xc5,0x7b,0xde,0x77,0x23,0x9e,0x7b,0xed,0xd3,0xf3,0xe,0x5a,0x4c,0xce,0x80,0x46,0xe2,0x63,0xfa,0x2a,0xde,0x2a,0x1b,0xaa,0x2e,0x2f,0xac,0x5a,0xce,0x3f,0xef,0x28,0x5e,0xfd,0xdd,0x2f,0xc3,0xf7,0xbf,0xea,0x15,0xd1,0xd3,0x3c,0xc2,0x8b,0x60,0xf4,0x23,0xfc,0x28,0x39,0x8d,0x2f,0x77,0x97,0x28,0x14,0x92,0x6c,0xd1,0xd5,0x92,0xaa,0x39,0xc,0x6b,0x6c,0x6f,0xcd,0xcd,0x34,0x9a,0x4b,0xd1,0xd6,0x5a,0x51,0xb5,0xbd,0xd8,0x93,0x6,0x46,0xab,0x3d,0xe,0xc1,0x44,0x33,0xab,0x99,0xac,0x68,0xb,0x46,0x2,0xea,0x8e,0x7,0x85,0xcc,0x48,0x9b,0xc3,0xa5,0xa,0x6d,0xad,0x4,0xe,0x95,0x88,0xe1,0x3a,0xc1,0x89,0x1a,0x56,0x83,0xb6,0xba,0x12,0x7a,0x8,0xf,0x67,0x3,0x93,0xa7,0x46,0x28,0x5a,0x28,0xb7,0xc5,0x31,0x91,0x9f,0x70,0x2e,0x17,0x7c,0x16,0x6,0xaa,0x79,0x1e,0xd8,0xd5,0x13,0x5,0xd8,0xac,0x8f,0xda,0x12,0x2d,0x51,0x3,0xda,0x92,0x66,0x4b,0x38,0x50,0x8d,0x9a,0xb3,0x64,0xca,0x12,0x7a,0xe5,0x70,0xdb,0x1d,0x77,0x61,0xb9,0x5c,0x62,0xb1,0xb5,0x28,0xc,0x6,0xc6,0x6,0xdb,0xa0,0xd1,0xad,0x45,0xc7,0x94,0xf7,0xc1,0xc9,0xf5,0xab,0x6f,0x78,0x3d,0x3e,0xf3,0xf9,0x2f,0xe2,0xd6,0x5b,0xbe,0x84,0xad,0xc5,0x22,0xaf,0xb4,0x28,0xba,0xcf,0x98,0x82,0x8d,0xf,0xcc,0x51,0x5f,0x16,0xbe,0x69,0x97,0x79,0x15,0x16,0xd8,0x15,0x75,0x0,0xd9,0xd9,0x96,0x8a,0x31,0x17,0xb0,0xbc,0x88,0x45,0x2c,0x1,0x24,0x5,0x91,0xc,0x44,0x61,0x71,0xec,0xee,0x43,0xe4,0x7b,0x14,0x1c,0x39,0x23,0x2e,0xa7,0x1c,0xd4,0xa,0x61,0x83,0xc2,0xe7,0x28,0x38,0x4c,0x99,0xa,0x8d,0xcb,0x80,0x8,0x66,0xf2,0x10,0x3e,0x67,0x5d,0xd5,0x20,0x18,0xc1,0x16,0x55,0xc4,0xd1,0xba,0xc3,0xe5,0x1c,0xa8,0x19,0xd5,0xd1,0x69,0x4a,0x10,0xdf,0x64,0x5d,0xf,0xf9,0xa0,0xc8,0xf6,0x92,0xf4,0x85,0x5a,0xf1,0xb3,0x36,0x81,0x81,0x52,0xb2,0xe3,0xbd,0x2a,0x54,0x1d,0x7a,0xf2,0xc0,0x62,0x86,0x43,0x57,0x3c,0x1e,0xf3,0x43,0x87,0xa0,0xb3,0x5,0xa4,0xeb,0x42,0xf2,0x9d,0x2,0x83,0x27,0xf8,0xdb,0x6e,0x5,0x3e,0xf5,0x61,0xa8,0x0,0xc3,0x87,0x3f,0x89,0x81,0x1c,0xe6,0x67,0x9c,0x1,0x3e,0xbc,0xd,0x3d,0xf3,0x30,0x46,0x78,0xa8,0x17,0xb0,0x86,0x7,0x98,0xb9,0x58,0x6e,0x5c,0xdc,0xeb,0xa8,0x73,0x10,0x8a,0x39,0xcf,0x71,0xfc,0x9d,0x2c,0x82,0x79,0xd1,0x21,0xb5,0x52,0x3f,0x93,0x5,0x63,0x21,0x91,0xf6,0x2c,0x8e,0xc9,0xb0,0x4d,0x62,0x65,0x56,0x41,0x16,0x4a,0xf0,0x2,0x45,0xc1,0x45,0x2a,0xd8,0x7d,0x64,0x1c,0xb3,0xae,0x8d,0x6f,0x33,0x4,0xa2,0xb8,0xd5,0x1a,0x87,0x9f,0xff,0x2,0x3c,0xf8,0xf6,0x3f,0x42,0xff,0x95,0x2f,0xa1,0x77,0x73,0x40,0x7d,0xf0,0x41,0x3,0x80,0xf8,0x68,0xe5,0x53,0x60,0xb6,0x15,0x90,0xc0,0x3c,0xcf,0x6f,0x7a,0x42,0xf6,0xc6,0x6f,0x25,0x1e,0x78,0x2,0x88,0xcb,0xbe,0xf6,0x34,0x5e,0x23,0xcb,0x2d,0x4b,0xa7,0x3e,0x35,0x17,0x60,0x3a,0x15,0xcc,0x9e,0x8d,0x89,0xb1,0x98,0xcf,0x71,0xfd,0x73,0x9f,0x89,0xdb,0xef,0xb8,0x17,0xf3,0xf9,0xc,0x9d,0x73,0x79,0x55,0x93,0x2f,0x92,0x28,0xc8,0x4c,0x51,0xaa,0x22,0x12,0x1,0x1a,0xa1,0x0,0x91,0x38,0x7a,0x17,0x35,0x1c,0xf9,0x68,0x18,0x4b,0xb0,0xd,0x89,0x4a,0x73,0xb5,0xca,0xfe,0x6c,0x2b,0x8e,0x3f,0x96,0xbb,0xb7,0x18,0x6b,0xec,0x5,0x10,0xc1,0x30,0x7a,0xdc,0x77,0xec,0x18,0x1e,0x78,0xe0,0x64,0xd0,0x16,0xa8,0x8b,0x19,0x14,0x12,0x27,0x25,0xd1,0x3d,0x62,0xd8,0xe5,0xaa,0x86,0x1c,0xb9,0x49,0xe1,0x60,0xb8,0xde,0x93,0x4,0x83,0x8a,0xf9,0xad,0x6d,0x63,0x68,0x96,0xf3,0x91,0x72,0x48,0x75,0xc0,0x89,0xda,0x24,0x53,0x9a,0x56,0xf1,0x7,0xe3,0x7b,0x36,0x7e,0x23,0xe5,0x7b,0xb7,0xec,0x21,0xd3,0x55,0x67,0x8a,0x66,0xb5,0x7b,0x56,0xf4,0xb3,0x1e,0xef,0xfa,0xeb,0xf,0xe0,0xb5,0xf7,0xbf,0x6,0x47,0xcf,0x3a,0x13,0x42,0x14,0x8,0x8d,0xf9,0xa8,0x90,0x4a,0x99,0x4d,0x54,0xfa,0xae,0x32,0x65,0xd3,0x22,0xcc,0xd5,0x62,0x3b,0x72,0x44,0x70,0x7d,0x1f,0xbf,0xb7,0x39,0xbe,0x9a,0xff,0x25,0xab,0x96,0xe4,0x0,0xa1,0x59,0x3c,0x82,0x5b,0x6c,0x91,0xcd,0x27,0x30,0x82,0x3b,0x90,0x11,0xe1,0x6a,0x6d,0xcb,0xa4,0x5a,0x0,0x57,0xa6,0x4f,0xd1,0xda,0xac,0x30,0x71,0xaa,0x53,0xb,0x9b,0x5d,0x83,0xa9,0x36,0xa,0x19,0xaa,0x35,0x2b,0x53,0x58,0x56,0xbb,0x76,0x88,0xef,0x49,0x12,0x32,0x56,0x2,0xb8,0x96,0xf1,0xdb,0xe4,0x6b,0x50,0xbd,0xe0,0x68,0x6b,0x1,0x1b,0xe3,0x4a,0xa6,0x0,0x28,0x50,0xdd,0xf8,0x1e,0x4a,0xbc,0x4a,0xd9,0x58,0xaa,0x35,0x8c,0xc8,0x73,0x23,0x6b,0x8a,0x63,0xb5,0x49,0x7c,0x86,0x93,0xaf,0x55,0x36,0x7d,0x2d,0x8d,0x23,0xa3,0x3d,0xe4,0xca,0x6f,0x49,0xd9,0xc3,0xef,0x9c,0xc3,0xed,0xb7,0xdf,0x8d,0xaf,0xdc,0x79,0x17,0x1e,0xf3,0xa8,0x8b,0xcd,0xeb,0x5d,0xf3,0xf2,0xed,0x27,0x80,0x51,0xd8,0xf9,0xce,0x1,0xde,0x3,0x5f,0x73,0xc1,0xf9,0xf8,0x8b,0x3f,0xfa,0x6d,0xfc,0xf3,0x1f,0xff,0x69,0xbc,0xff,0x6f,0x6e,0xc4,0xac,0x9f,0xa3,0x73,0x5d,0xa4,0xbc,0x3a,0x28,0x79,0x70,0xe7,0xc0,0x11,0xe8,0x43,0xd1,0x65,0x20,0x54,0x42,0x7c,0x94,0xe3,0x64,0x30,0x5d,0xd8,0x5a,0xac,0x93,0x6a,0x18,0x17,0x92,0xaa,0x29,0x2f,0x13,0x25,0xae,0xf7,0xa,0xe7,0x38,0xb,0x78,0x43,0xf4,0x6d,0x41,0xc2,0x23,0xba,0xb6,0xa0,0x5c,0x62,0xa9,0x29,0xa,0x40,0xd9,0x74,0xd5,0xda,0xd8,0x2a,0x35,0xbe,0x57,0x52,0xf,0x6a,0xbb,0x4a,0x59,0x3c,0xa9,0x3,0xc9,0x78,0x4b,0x75,0x8a,0xfc,0x4c,0x63,0x46,0xfe,0x7f,0x4b,0x7b,0xd3,0x60,0x5b,0xd3,0xab,0x3c,0xec,0x59,0xeb,0xfb,0xf6,0x39,0xe7,0xde,0xdb,0x93,0x5a,0x13,0x93,0x24,0x84,0x81,0x62,0x90,0x65,0x1c,0x63,0x1c,0x8,0xb1,0xb1,0x13,0xa0,0x62,0xb0,0xc2,0xe0,0xa0,0x18,0x83,0xcb,0x2e,0x70,0xaa,0xec,0x22,0xa1,0xe2,0x38,0xe0,0x4,0xe3,0x80,0x31,0xb8,0xb0,0x1d,0xb0,0x2b,0x10,0x3b,0x60,0x83,0xc1,0x50,0x8,0x28,0x63,0x26,0x31,0x48,0x1,0x23,0x8,0x93,0x5,0x8,0x64,0x26,0xb,0x84,0x90,0x4,0x92,0xba,0xa5,0x56,0xab,0x87,0x3b,0x9c,0x73,0xf6,0xf7,0xae,0xfc,0x78,0xdf,0xb5,0xd6,0xb3,0xde,0x6f,0x37,0x90,0xb8,0xab,0xba,0x6e,0xf7,0x3d,0xf7,0x9e,0xb3,0xf7,0xb7,0xdf,0x61,0xad,0x67,0x3d,0x43,0x20,0x78,0xdd,0xe5,0xee,0xb8,0xa5,0xdb,0x91,0x4a,0x39,0xef,0x40,0xc8,0x5,0x99,0x56,0x4f,0xb1,0xa4,0xdb,0xf0,0x25,0xe8,0x9b,0x4b,0xef,0x3d,0x86,0x67,0xfd,0x17,0x2f,0xc7,0xf3,0xff,0xde,0x3f,0x42,0xbb,0xf3,0x34,0x96,0x65,0xc1,0x11,0xc0,0x26,0x2b,0xee,0x8d,0xea,0xc7,0x7e,0xfa,0x67,0xf0,0xf8,0x17,0xfc,0x3c,0x8e,0x5f,0xf3,0xa5,0x90,0x8b,0xb,0xb4,0x9b,0xf,0x40,0x9f,0xff,0x3c,0x6c,0x1f,0xfc,0x21,0xb8,0xf1,0x57,0x3e,0xf,0xc7,0xf3,0x9b,0x50,0xdd,0xc2,0x64,0xa8,0x59,0xb2,0x34,0x8f,0xed,0x1a,0x6d,0x39,0x83,0xde,0xbd,0x87,0xa5,0x6d,0x38,0x1e,0xb7,0xfe,0x73,0xbd,0x7f,0x65,0x8,0xd9,0x72,0xf1,0xa5,0xee,0xd7,0x49,0x7e,0x16,0xcc,0x78,0xa6,0xa9,0x36,0xe3,0xd8,0xd4,0x1,0x8f,0x2d,0xbd,0x8b,0xef,0xac,0xcb,0x3e,0x17,0x6a,0xba,0xc0,0xce,0xf,0xbd,0xea,0xbc,0xbc,0x6,0x1e,0xb8,0x1,0x91,0x6,0xb5,0x4e,0xf2,0x50,0x5d,0x20,0xf7,0x2e,0xd1,0x2e,0x2e,0xf0,0x82,0xaf,0xfd,0x66,0x5c,0x3e,0xf2,0x18,0xec,0xea,0xa,0xed,0xea,0x36,0xe4,0xea,0x1a,0x68,0xc7,0x8,0x95,0x68,0xe7,0x67,0x38,0x3c,0xf4,0x10,0x1e,0xfb,0xea,0xaf,0xc0,0xf5,0xeb,0x7f,0x11,0xc7,0xf5,0xe6,0xd8,0x44,0x23,0xa4,0x88,0x5b,0x45,0x97,0x3c,0x8e,0xd0,0xa5,0x94,0xae,0x8c,0xc3,0x53,0xb4,0x26,0x5f,0x61,0x92,0xad,0x11,0x58,0x2f,0xe3,0x50,0x5a,0xf,0x2b,0xbe,0xea,0xcb,0xfe,0xf6,0xce,0x30,0xe5,0xf7,0x3a,0xbd,0x1d,0x89,0x31,0xae,0xd1,0x1b,0x45,0xc6,0x92,0x5e,0x77,0x27,0x4d,0x17,0xaa,0xf0,0x25,0x99,0xce,0x2e,0xd5,0xc,0x17,0x3f,0xb3,0x80,0xaf,0x97,0x75,0xc5,0x3f,0xf8,0x27,0xff,0x14,0x5f,0xf2,0xf,0xbe,0x16,0xf,0x3c,0xf0,0xe0,0x88,0x24,0x96,0xf1,0xac,0xb5,0xfb,0x43,0x4,0xef,0x82,0xe1,0xf5,0x59,0xd5,0x67,0x94,0xde,0x96,0x73,0x7a,0x1b,0xfc,0x90,0x60,0xf7,0xed,0xe0,0xd8,0xca,0x5,0x60,0x2,0xe,0x2b,0x9f,0x2d,0x1c,0x78,0x65,0x6e,0x91,0x48,0xa6,0x83,0x7a,0xf9,0x4c,0xe7,0x6a,0xb5,0xaa,0x95,0x9d,0x65,0x6d,0x88,0x1a,0x8a,0x4f,0x7f,0x4d,0x10,0xec,0x5c,0x8c,0xd,0xcb,0xb2,0xe2,0x77,0xde,0xfe,0x4e,0x7c,0xf7,0x2b,0x5f,0x8d,0xbf,0xfa,0x59,0x9f,0x91,0xb6,0xa0,0x82,0xe2,0xb4,0x31,0x48,0x9,0x34,0x6,0x48,0xa8,0x5a,0xda,0xf0,0xfe,0x90,0x46,0x3,0xa2,0x6,0xcb,0x44,0x8f,0x3f,0xd8,0x8d,0x2f,0x54,0xa0,0xfa,0x1a,0x62,0x2b,0x62,0x1,0x44,0x5a,0xca,0xe5,0x76,0x45,0x90,0x14,0xb0,0xc5,0xe8,0x22,0xb4,0x26,0xfb,0xcb,0x9e,0x16,0x9b,0xb3,0xb3,0x37,0x33,0x12,0x58,0x64,0x2f,0x5f,0x7a,0x5f,0x8e,0x68,0xb7,0xfa,0xe,0xa5,0x49,0xae,0x2b,0x39,0xf5,0xee,0xf9,0xfc,0xb5,0x39,0x33,0x66,0xa7,0xb5,0xf3,0x28,0xef,0x10,0xa4,0x52,0x87,0xce,0xe1,0x56,0x59,0xf8,0x53,0xc4,0xac,0xcd,0x2b,0x3b,0xb9,0x2b,0x5,0x9,0x74,0x7e,0x54,0x73,0x5f,0x90,0x9a,0xab,0x60,0x73,0xa7,0x6d,0x69,0x19,0xbb,0xf,0x91,0x62,0x52,0x25,0x77,0xf9,0x1a,0x11,0xd4,0x39,0x2a,0xec,0xdf,0x61,0x51,0xe0,0x3d,0x4f,0x3e,0x89,0x9f,0x7b,0xdd,0xeb,0xf1,0xc1,0x1f,0xf0,0xa2,0x7e,0xa9,0x4a,0x2a,0xab,0x12,0xea,0xe7,0x24,0x51,0x21,0x74,0xa7,0xa3,0xab,0xc7,0xe3,0x86,0xf7,0x7f,0xd1,0xb,0xf0,0xca,0x57,0xfc,0xb,0xfc,0xeb,0xef,0xfd,0x61,0x7c,0xdb,0xbf,0xfe,0x3e,0xfc,0xda,0xaf,0xbf,0x1,0x4f,0x3c,0xf9,0x24,0xae,0xb7,0x6d,0x84,0x52,0x19,0xf1,0x18,0x64,0xba,0x32,0xf3,0xe,0x33,0xec,0x11,0x9a,0xe2,0x6,0x18,0xc8,0xd4,0x2c,0xfd,0x1c,0xaf,0xed,0xba,0x37,0x3e,0x37,0xce,0xcf,0x71,0xd0,0x9e,0x2d,0xb3,0xd,0x9,0x7d,0x57,0x78,0x78,0x63,0xa9,0x81,0x42,0xb6,0x66,0xc9,0xd3,0x70,0x19,0x77,0x73,0x12,0xa5,0x94,0xb0,0x2f,0xb1,0x34,0xb6,0x5a,0x4f,0xc4,0x40,0x11,0xdc,0x68,0xf5,0xd4,0x18,0x9d,0x69,0x6b,0x43,0x57,0x19,0x55,0xa9,0xe,0x8d,0x62,0xf,0xcc,0xd8,0xb6,0x7e,0x71,0x5a,0x3,0x36,0xb4,0x71,0xa0,0x48,0x32,0x7f,0x3,0x92,0x6c,0x49,0x1e,0x1a,0x3b,0x4c,0x61,0x58,0x86,0x71,0x42,0x18,0x5a,0xe9,0x82,0x7b,0x57,0xd7,0xb8,0xf3,0xee,0x3b,0x38,0x3c,0xfd,0x4,0xec,0xea,0xe,0xee,0xdd,0xbd,0xc2,0x76,0xe7,0xa,0x17,0xc7,0xdb,0xb8,0x7d,0xdf,0x5,0x2e,0x9f,0xf3,0x10,0xce,0xff,0xe1,0x37,0xe1,0x70,0xe3,0x3e,0x2c,0x67,0x2b,0x9a,0x19,0x2e,0x6e,0xdd,0xc2,0xb6,0xac,0x38,0x1e,0x6e,0x62,0xb1,0xe3,0x90,0x41,0x8c,0x6e,0xbf,0xf5,0x79,0xae,0x2e,0x1b,0xae,0xf,0x7,0xd8,0x1b,0x7f,0x1b,0xef,0xfe,0x92,0xff,0x9,0x76,0xef,0x1a,0x9b,0x2e,0x1d,0x5a,0x1f,0xef,0xcd,0x21,0x71,0x2f,0x78,0xa4,0x81,0xe6,0xae,0x63,0x71,0xb5,0x74,0x94,0xca,0xce,0xb4,0x2f,0xda,0xe6,0x36,0xa3,0x43,0xfb,0xaf,0xac,0x7b,0x75,0x9d,0xaa,0x2a,0xda,0x72,0x80,0xac,0xb,0xce,0xa5,0x1,0x77,0x9f,0xc2,0x43,0x5f,0xf0,0x77,0xa1,0x1f,0xf3,0x9f,0xe3,0x70,0x79,0x1b,0xb6,0x35,0x5c,0x35,0x81,0x2c,0xb,0xe4,0xfa,0xa,0x76,0xf3,0x80,0xc3,0x7,0xbe,0x60,0x4,0xf9,0xb5,0xfe,0x9c,0x9a,0xe3,0x40,0x86,0xad,0x5d,0xe3,0x78,0x76,0x86,0xe7,0xfe,0xa5,0xcf,0xc1,0xdb,0xff,0xe6,0xe7,0x75,0xcf,0xfa,0x45,0x7a,0x44,0xf0,0xd6,0x62,0x76,0x16,0x4c,0xdb,0xf1,0xfa,0x30,0x66,0xff,0x5b,0x4b,0x78,0xce,0x88,0xc0,0x37,0xc7,0xac,0xb2,0x23,0x63,0x86,0xb5,0x50,0x58,0x86,0xd8,0xef,0xd5,0x87,0x96,0x7f,0x14,0xd6,0x47,0x3e,0x46,0xf3,0x6f,0x36,0x88,0x21,0xe4,0x28,0x1c,0xda,0x9a,0x45,0xc7,0xab,0x52,0x89,0x58,0xc,0xf8,0x45,0x46,0x84,0x90,0xfe,0xbd,0x35,0x9c,0x9d,0x1f,0x7a,0x20,0x91,0x6a,0x5a,0x5b,0xba,0x6c,0x71,0x48,0x78,0x5c,0x2e,0xc3,0xe3,0xd1,0x46,0x9b,0xbc,0x51,0x20,0x50,0x42,0xda,0x64,0x5c,0x62,0x89,0x7e,0x95,0xcb,0x1f,0x27,0xe2,0x4c,0xad,0xfa,0x68,0xcc,0x81,0x63,0x5c,0x75,0xd8,0xc9,0x8d,0x6b,0x3b,0x81,0x35,0x2b,0x9d,0xc4,0x8c,0x4c,0xa7,0x18,0xa,0x65,0x87,0x45,0x4a,0xe9,0x2b,0xd2,0xd6,0x74,0x8b,0x3b,0xac,0xb,0xbe,0xfe,0x5f,0x7e,0x1b,0x5e,0xfe,0xa9,0x9f,0x8c,0x5b,0x37,0x2e,0x42,0xce,0x62,0x5,0x41,0xa8,0xc5,0x5a,0x70,0x2d,0xac,0xcb,0x76,0x7d,0xc,0xb3,0x8,0xa8,0xb3,0x94,0x67,0xbe,0xe1,0x23,0xdb,0x5c,0x26,0x2b,0x5,0x22,0xb9,0x32,0xef,0x82,0x57,0xc0,0x4e,0xdf,0x48,0xeb,0x92,0xdd,0xff,0xe2,0x3d,0x8,0x31,0xa8,0xb1,0x4b,0x7a,0x73,0x6e,0x44,0xce,0xbe,0x6d,0xf7,0x53,0x59,0x6,0xc7,0x99,0x8,0x33,0x49,0xd0,0xd,0x89,0x44,0x92,0x8c,0x5b,0xe5,0xf5,0x6c,0x49,0x4d,0x7a,0xff,0x88,0xb0,0xa5,0x82,0x37,0x40,0x49,0x1d,0x59,0x1d,0x96,0xb6,0xd6,0x6e,0x2a,0x63,0x53,0x46,0xc6,0x90,0x7c,0xb1,0x77,0x7d,0xd4,0x37,0x9a,0xcf,0xde,0x48,0x16,0x4d,0x76,0x2a,0x1,0xe3,0x9a,0x4d,0x66,0x9,0xbe,0x94,0x3c,0x42,0x5d,0x32,0x23,0xc3,0x78,0x24,0x36,0xe5,0x5a,0x84,0x94,0xb3,0x59,0x78,0x39,0x18,0x1,0x62,0x21,0xe5,0x6,0xf0,0xc3,0x3f,0xfa,0x13,0xf8,0x6f,0x3f,0xed,0x93,0xd3,0x96,0x57,0x52,0xd3,0xe3,0x5c,0x2c,0x6b,0x83,0x1c,0xee,0x2b,0xac,0xa5,0x41,0xd4,0xa2,0x9d,0xeb,0xb5,0x2e,0x2b,0x3e,0xe3,0x53,0x3e,0x9,0x9f,0xf1,0xa9,0x7f,0x16,0xef,0x79,0xcf,0x53,0x78,0xe7,0xbb,0xde,0x8d,0xa7,0xef,0xdc,0xc1,0xbd,0xab,0xcb,0x6e,0x6d,0xee,0x3c,0x30,0x22,0xdc,0xa2,0xaa,0x22,0x8b,0x3a,0x34,0xba,0xfc,0xe6,0x48,0xe6,0x20,0x9b,0x92,0x8e,0xdf,0x6,0xba,0xb8,0xb5,0xd,0x57,0xc7,0x63,0x84,0x4c,0x7d,0xd1,0x97,0xfd,0x43,0xbc,0xf3,0xd1,0xc7,0x71,0x58,0xd2,0x38,0xc8,0x2c,0x3d,0x69,0xc4,0x5f,0x88,0xca,0x44,0x24,0x1e,0x2c,0x86,0x65,0x49,0x69,0xb8,0x4c,0x88,0xfd,0x58,0xaf,0xab,0x4c,0xf,0x35,0xab,0x33,0xd9,0xb1,0x82,0x75,0x1e,0x6f,0x49,0x92,0xa8,0xdc,0x8e,0x72,0x80,0xd5,0x30,0x6b,0xc3,0x9c,0xa0,0x2f,0x56,0x8f,0x64,0x75,0xc8,0x27,0xd2,0x94,0x24,0x25,0x5b,0x7e,0x70,0xa8,0xc,0x2b,0x5a,0x18,0x36,0x51,0xc8,0xc5,0x83,0xb8,0xf7,0xd3,0x3f,0x82,0x37,0xff,0xf9,0x8f,0xc1,0xe1,0x68,0xb8,0x3e,0x5e,0x3,0x9b,0x60,0xb9,0x7b,0x17,0x6a,0xf7,0xf0,0xbc,0x6f,0xfe,0x7e,0xac,0xef,0xf7,0x2,0x1c,0xde,0x6b,0x4b,0x42,0xc7,0xf5,0x11,0x9b,0xf6,0xa,0x77,0xb1,0xab,0xb4,0x61,0x1d,0x55,0x61,0xeb,0x91,0xdf,0xbd,0x60,0x59,0x57,0xdc,0xfb,0xee,0x6f,0xc7,0xf6,0x96,0x37,0xe1,0xfa,0xe2,0x21,0xd8,0xd2,0xad,0x1a,0xaf,0x45,0xcb,0xac,0x9,0x8d,0x99,0xbb,0x2d,0x72,0xda,0xc3,0xa5,0x8b,0x42,0x35,0x42,0x26,0x46,0x15,0xbe,0x39,0x34,0x52,0x8,0x32,0xd9,0x73,0x35,0x0,0x9b,0x2c,0xb8,0x8d,0x3,0x6e,0x5c,0x3e,0xd,0xfb,0xee,0x57,0xe0,0xe1,0x8f,0xf9,0xd3,0x38,0xa,0x70,0xa6,0xc0,0xd5,0xd6,0xb0,0xb4,0xb5,0x6f,0xd4,0xeb,0xeb,0xde,0xe5,0x7,0x61,0x8f,0xc8,0x48,0x26,0x38,0x28,0xb0,0xdd,0xbd,0x8d,0xe5,0x8f,0x7f,0x14,0xce,0xfe,0xf0,0x4b,0x71,0xf9,0x6b,0xbf,0x8e,0xb6,0x5e,0xf4,0xae,0x4c,0x7b,0x37,0xa3,0xae,0xf1,0x44,0x32,0xb1,0x75,0x5c,0x76,0x25,0xcf,0xa0,0x30,0xc7,0x6b,0xab,0xc1,0xda,0x79,0x2b,0x3e,0x9,0xc3,0x9a,0xa2,0x49,0x91,0x32,0xd9,0x2e,0xc8,0xaf,0x86,0xbc,0x8,0xb5,0x8f,0xe6,0x32,0xcc,0x38,0xd0,0x25,0x8c,0xa,0x6d,0xe7,0xa7,0x40,0x98,0x94,0x19,0x85,0xf5,0x30,0x5b,0x61,0x8a,0xd7,0x51,0x1d,0xdc,0x92,0xc1,0xe5,0x50,0x8d,0x19,0x60,0xba,0x38,0x50,0x16,0x0,0x6a,0xb4,0x7b,0xcd,0x2a,0x61,0x46,0x31,0x1d,0x96,0x1,0x59,0x4a,0xe4,0x54,0x80,0xd1,0xb4,0x49,0xf7,0x1f,0x1d,0xcf,0x7c,0xa0,0xc4,0xd8,0x50,0x52,0xf6,0x13,0x7,0x4c,0xea,0xbb,0xcb,0xdc,0xb4,0xf2,0xee,0x22,0x3e,0xda,0x13,0x38,0xb3,0x3b,0x65,0x3f,0x74,0x1e,0x1f,0x18,0x53,0x32,0x3a,0x9c,0xbb,0x2a,0x16,0x18,0x54,0xe,0xf8,0x8d,0x37,0xbe,0x19,0x5f,0xf7,0x4d,0xaf,0xc0,0xdf,0xf8,0xeb,0x7f,0x19,0x6d,0xdb,0xba,0xdc,0x56,0xa6,0xab,0x6f,0x92,0x89,0xa9,0x5a,0xf9,0xc,0x43,0x3,0x6d,0x59,0xec,0xef,0x39,0x88,0x27,0xa4,0x5a,0x74,0xa6,0x35,0xef,0x6a,0xc7,0x6c,0x44,0xe3,0x62,0xf4,0x75,0xbc,0xf,0x62,0xad,0x70,0x51,0xd5,0xfd,0x87,0x35,0x94,0x4c,0x9d,0x9d,0xcc,0x6,0xff,0x8d,0x64,0x5b,0x19,0x6c,0xc3,0x6e,0xd,0xd,0x29,0x5d,0x15,0x9c,0xb6,0x55,0x36,0x4c,0x7e,0xef,0x98,0x92,0x19,0x7,0x57,0x48,0x49,0x4e,0x28,0xc,0x23,0xd8,0x64,0xc0,0x16,0xf6,0xc9,0xbe,0x1e,0x5b,0x14,0xa2,0x9b,0x19,0xa5,0xd4,0xd1,0x28,0xda,0x33,0x61,0x8d,0x12,0x5a,0xa9,0xc2,0x34,0x22,0xd3,0x1a,0x6d,0xe4,0x88,0x53,0xa6,0xe9,0x49,0x34,0x8c,0x23,0x96,0xcb,0x95,0x4f,0xce,0x91,0x32,0xa9,0xf7,0x10,0xa8,0xa0,0x34,0x48,0x19,0x83,0xf6,0x26,0xd,0x44,0x8a,0x4b,0xde,0xc4,0xba,0x1e,0xf0,0x63,0x3f,0xf9,0xb3,0xf8,0xdd,0xb7,0x3f,0x82,0xf7,0x7e,0xde,0x73,0x3b,0x8a,0x2a,0xa3,0x10,0xf7,0x54,0xbf,0x59,0xe2,0x38,0x1a,0x95,0x46,0xe,0x85,0x51,0xec,0xd,0x50,0xe1,0xe1,0x87,0xee,0xc7,0xc3,0xf,0x3d,0x0,0xa8,0x86,0x96,0x5e,0xf1,0xff,0xff,0x9f,0x46,0xa3,0x2d,0xc3,0x44,0x92,0xa7,0xec,0x82,0xed,0x78,0xc4,0xb2,0x2a,0xfe,0xf1,0xff,0xf5,0xd,0x78,0xe7,0xa3,0x8f,0x57,0x82,0xa8,0x21,0xd4,0x58,0x8e,0x14,0x73,0xc0,0x54,0x2f,0x92,0x34,0xcf,0x46,0xe3,0xfc,0x88,0x84,0xd9,0x9d,0x18,0xa9,0x99,0xdc,0x44,0x16,0x9c,0x1e,0xb5,0xcb,0x6d,0x89,0x59,0x1a,0xf2,0x6a,0xe6,0x70,0x87,0xf7,0x38,0x93,0x29,0x2c,0x2f,0x33,0x31,0xb7,0x6a,0x95,0x32,0x1b,0xb5,0x8,0x89,0xa8,0x30,0x83,0x92,0x24,0x48,0xd0,0x89,0x6e,0x4d,0x16,0x6c,0xc7,0x5,0xb8,0xdd,0x70,0xef,0x9e,0xe2,0xca,0x2e,0x70,0x47,0x6e,0xc2,0x96,0x15,0xcb,0xc7,0x7d,0x32,0xae,0x5f,0xfc,0x21,0x58,0x2e,0x2f,0x71,0x38,0x1e,0xb1,0x1c,0x8f,0x90,0xe3,0xb1,0x77,0x11,0xad,0xf5,0x2e,0xcf,0x64,0x40,0x14,0xfd,0xa3,0x6e,0x83,0x18,0xb5,0x98,0x1,0xcb,0x1,0xcb,0x9b,0x7f,0x17,0x77,0x5e,0xf3,0x43,0xd8,0x2e,0xee,0x3,0x96,0x5,0x7,0x55,0xac,0xba,0x60,0x81,0x62,0xc1,0x82,0xd5,0x73,0x9,0x86,0x8f,0xb3,0xaa,0x74,0x8f,0x65,0x5d,0x87,0xd7,0xf2,0x1,0xcb,0xb2,0x42,0xd7,0x3,0x96,0xf5,0xac,0xff,0x7a,0x76,0x8e,0xe5,0x70,0x86,0x75,0x3d,0x60,0x3d,0x9c,0x41,0xf,0x67,0x58,0xf,0x2b,0x96,0xe1,0xc9,0xbc,0x2c,0x6b,0xff,0x3b,0xda,0x3,0x71,0x16,0x5d,0xb1,0x2e,0x2b,0xce,0x54,0xb1,0x48,0xc3,0xf5,0x8d,0x5b,0xb8,0xfd,0xba,0x7f,0x87,0xcb,0x5f,0xf9,0xf7,0xb8,0xd2,0xb,0x6c,0xda,0x43,0x80,0x36,0xef,0xc4,0x48,0x5f,0xde,0x5a,0x3f,0xd0,0x5b,0x37,0xa7,0x47,0x13,0xc1,0xb5,0x9,0x16,0x51,0x6c,0x62,0xb8,0xff,0xe5,0x9f,0xd,0xb1,0xad,0xe7,0x9f,0x87,0xb,0x95,0x14,0x67,0xc1,0xce,0x5c,0xcd,0x8,0x5d,0x98,0xfd,0xfe,0x8c,0x60,0x54,0x8f,0x87,0x58,0x13,0x18,0x44,0xbd,0x36,0xac,0x9d,0x7c,0x16,0x46,0x5f,0x6f,0x0,0x79,0xbb,0xe7,0x25,0x68,0x74,0x9,0x69,0x9,0xe9,0xe8,0xf0,0x8f,0x78,0x2e,0x81,0xff,0x49,0x4d,0x2b,0x57,0x29,0xf2,0x4d,0x4d,0x68,0x8f,0xae,0x65,0x43,0x26,0x4,0x62,0x38,0xc,0x5a,0x4b,0xb7,0x37,0x4f,0xc3,0x72,0x81,0x8e,0x27,0x63,0x6d,0x6d,0x4b,0xb9,0xa7,0x77,0xf4,0x94,0x3e,0x49,0x3b,0x3c,0xb8,0x2a,0x3c,0xa,0x6a,0xd6,0x76,0x71,0xbe,0x6e,0xef,0x59,0x6e,0x78,0x5,0x6c,0x91,0xcc,0x25,0x68,0x28,0xfe,0xfc,0xa2,0x16,0x4e,0x67,0xcc,0x1f,0x36,0xd7,0x16,0xa3,0x72,0x73,0xd8,0xde,0x9f,0xc7,0x3,0xbe,0x47,0xfd,0x79,0x18,0x71,0x55,0xcc,0x17,0x55,0x23,0x7e,0x85,0xf6,0xa8,0x5b,0x3f,0xbc,0x44,0x5,0x67,0x37,0x6e,0xe0,0x6b,0xbe,0xfe,0x9b,0xf1,0xeb,0xbf,0xf1,0xdb,0xc9,0x5a,0x96,0x53,0x21,0x34,0x3,0xd,0xd3,0x64,0x35,0x33,0xc1,0xb2,0x2b,0x83,0x70,0x22,0xf2,0x18,0xfb,0xcc,0x71,0xa9,0x17,0x90,0x49,0xc2,0xb0,0x4e,0xc4,0x5,0xa9,0x4a,0xdc,0x92,0x56,0xac,0x56,0x43,0x51,0xb0,0xda,0xc4,0xc4,0x20,0x48,0xba,0x54,0x79,0x3b,0xab,0x1e,0x6a,0x8a,0xe8,0x6c,0xcc,0x7f,0x2d,0xdd,0x26,0xf7,0x9f,0xfa,0x49,0xfa,0x85,0xef,0xeb,0x0,0xc9,0x25,0x3e,0xad,0x8c,0x9a,0x9e,0xf5,0xee,0x92,0xb6,0xcf,0x9c,0x27,0xc8,0xe8,0x86,0x80,0x61,0xea,0x96,0xc8,0x91,0x54,0xe,0x12,0x44,0x73,0x66,0xcc,0x12,0x3b,0xbf,0x1f,0x4,0x83,0x3c,0x47,0xcd,0x50,0x29,0x30,0xe7,0xe2,0xc6,0x48,0xba,0x37,0xc5,0x4a,0xdb,0x9e,0xa3,0xe1,0xf7,0x89,0x85,0x5c,0x51,0xc8,0x96,0x7b,0xde,0x7b,0x5d,0xd2,0xf7,0xce,0x47,0xdf,0x85,0x7f,0xf3,0xfd,0xaf,0xa,0xb3,0x23,0x6b,0x28,0x1,0x53,0x69,0x8a,0xc6,0x5,0xa8,0x91,0xab,0x66,0x1f,0x7b,0xe6,0xb9,0x22,0x23,0xa7,0x45,0xa3,0xa9,0xfd,0x8f,0xb9,0xf4,0xd9,0x1d,0xb6,0xf8,0x64,0xfa,0xb8,0x7f,0x9c,0x37,0x68,0x1b,0xd6,0x55,0x71,0x75,0x75,0xdd,0x79,0x65,0xb6,0x65,0x5a,0x66,0x23,0x22,0x68,0x4,0xcc,0x24,0x8f,0x9,0xc4,0x25,0xb,0x90,0xcd,0x65,0x62,0x9a,0x77,0x72,0x2b,0x12,0x63,0xcc,0xc1,0x2b,0x59,0xa5,0xeb,0xe8,0xce,0x95,0xe6,0x8f,0xdd,0xdb,0xdc,0xa2,0x4a,0xad,0x97,0xb9,0xf,0xa,0xd3,0xca,0xd0,0xbb,0x45,0x25,0xb8,0x54,0xd8,0x7f,0xbb,0x75,0x16,0xa5,0x73,0x2,0x6c,0x24,0x1b,0xc5,0x82,0x11,0x1b,0xd5,0x89,0x60,0x13,0x45,0x1b,0x8e,0x52,0xab,0x6c,0x68,0xab,0xe0,0xc1,0x4f,0xff,0x6c,0xa8,0x5d,0xe3,0xe0,0x67,0x55,0x43,0x2c,0x0,0x33,0x2d,0x8c,0xe5,0x20,0x8f,0x1,0x23,0x2,0xb8,0x41,0x65,0xc5,0xbd,0x57,0x7e,0xf,0xb6,0xa7,0x9e,0xc2,0xb6,0xae,0x58,0xd4,0x67,0x27,0x3,0x9e,0xb1,0xd,0xdb,0x88,0xb1,0x34,0xaf,0xda,0x7c,0xa3,0xf,0x6b,0x4d,0xb7,0x9,0x85,0x30,0x8a,0xdb,0x67,0xf7,0xb0,0x25,0x24,0x71,0xd1,0x39,0xf1,0x42,0x16,0xb7,0x59,0x3c,0x8e,0x42,0xc5,0xb0,0xc,0x7e,0xbb,0x5c,0x36,0xdc,0xf9,0x8e,0x6f,0x80,0xca,0x1,0xd7,0x83,0x48,0xb4,0xb5,0x16,0x41,0x43,0x4d,0x14,0x9b,0x75,0xf,0x83,0xae,0x54,0x16,0xb4,0xa1,0x21,0x6d,0x10,0x2c,0xb6,0x60,0xb9,0x77,0xf,0x17,0x1f,0xf3,0x9f,0x61,0x79,0xe1,0xb,0xb1,0x1e,0xaf,0xd1,0x4c,0x46,0x62,0x9d,0x4,0x74,0x25,0xce,0x77,0x18,0x97,0xcc,0x66,0x56,0x93,0xaf,0x9e,0x71,0x49,0x93,0x7e,0xbb,0xa5,0x34,0xc8,0x8a,0x9c,0x11,0x94,0x38,0xc8,0x9f,0xcd,0x48,0xd6,0x23,0x7b,0xd8,0x99,0x74,0x6,0xf,0x43,0xf2,0xcd,0xc8,0x64,0xb4,0xf0,0xcb,0xe6,0x38,0xd0,0x24,0xe4,0xf9,0xa1,0xde,0x6c,0x7e,0xb5,0xad,0xe8,0xca,0x3d,0x24,0xc6,0x47,0x5b,0x5e,0xc8,0xb6,0x66,0x1d,0xe2,0x1b,0x72,0xbf,0x70,0xdb,0xb2,0xec,0x40,0xfc,0xf7,0xcc,0xe6,0xa6,0x50,0x46,0x38,0x10,0x3b,0x17,0xa,0x7b,0xb,0xd3,0xa1,0xa2,0x83,0xf8,0xc9,0x68,0xb6,0x7b,0x76,0x67,0x8,0x4a,0xdc,0x53,0x41,0xbf,0x97,0xec,0xd5,0x15,0xc5,0x4,0x28,0xa,0xab,0x36,0x28,0xf5,0x7c,0x20,0x4e,0x30,0xaf,0x59,0xa3,0x8e,0xd5,0xc2,0x18,0x2b,0x2f,0xc7,0x89,0x29,0x4e,0xef,0x57,0x17,0xc5,0x93,0x4f,0xdd,0xc1,0xff,0xfc,0x77,0xbe,0x1c,0xc7,0xad,0x1b,0xd9,0x44,0x6e,0x86,0xb4,0x28,0xdb,0xe2,0x33,0xb4,0xb4,0x23,0x6e,0x3c,0xcf,0x26,0xd6,0xb1,0xc9,0x89,0x98,0xb6,0x19,0xac,0x11,0x2b,0x8d,0x86,0x2b,0xa4,0x95,0x13,0xc8,0x94,0x23,0x7e,0x65,0x67,0x83,0x53,0xcd,0x8a,0x7d,0x1f,0xf3,0x7d,0x69,0xb9,0x97,0xa3,0xf1,0x61,0x8f,0xe4,0x4c,0xf,0xe5,0x94,0x42,0x1f,0x3b,0x14,0x1a,0xdd,0x78,0x66,0xed,0x19,0x9d,0xfe,0xba,0x39,0x8d,0xba,0x69,0xc,0xe9,0xe0,0x67,0xc5,0xa,0x5f,0x43,0x81,0x26,0x46,0xe4,0x2a,0x21,0x1b,0xc2,0x3e,0xa,0x9a,0x6,0x6a,0xf4,0x6b,0xea,0xf8,0x13,0xd9,0x6c,0xb3,0x96,0xde,0x6a,0xa4,0x7d,0x91,0x27,0x92,0x9e,0xd6,0x46,0x64,0x70,0x8e,0x7c,0xeb,0x73,0x6d,0xa8,0x44,0x3e,0x23,0xf,0x15,0x2b,0xfc,0x9e,0xdc,0x4c,0x66,0x13,0xda,0x68,0x64,0x21,0x3d,0xde,0xc3,0xd9,0xe1,0x80,0xaf,0xff,0xc6,0x6f,0xc5,0x93,0x4f,0x3d,0x5d,0xb8,0x57,0xa1,0xd8,0x39,0x95,0xc2,0xe8,0xc5,0x92,0x8f,0x4e,0x86,0x33,0xa3,0x84,0xc4,0x59,0x33,0x7d,0xef,0x19,0xa5,0x91,0xf6,0x7,0xfb,0xff,0x72,0x66,0xa8,0xe7,0xe3,0x6,0x79,0x96,0x33,0x19,0xad,0x35,0x2c,0xaa,0x9d,0xf1,0xdf,0x90,0x89,0x95,0x11,0xf4,0x84,0xca,0x7f,0x62,0x39,0xb0,0x58,0x8c,0x12,0x32,0xe4,0x2b,0x43,0xc0,0xc4,0x8,0x75,0x4,0xa0,0x62,0x72,0xda,0xec,0x9b,0x26,0x56,0x25,0x32,0x32,0xba,0x71,0x80,0xdc,0x61,0x2,0x22,0xed,0x73,0xca,0x16,0xa4,0x30,0x67,0xa5,0xc7,0x42,0x11,0xda,0x12,0xc6,0xc6,0xa,0x9,0x45,0x36,0x9f,0xad,0xb6,0x91,0x38,0x14,0x52,0x98,0x16,0xd1,0xad,0x67,0xd7,0xb7,0x71,0x78,0xc9,0x4b,0x70,0xf6,0xd2,0x97,0x62,0xd9,0x2e,0xe3,0xf4,0xd3,0xa5,0x8f,0xa,0x22,0x3d,0x4f,0xd2,0x74,0x81,0xe9,0x36,0xea,0x41,0x41,0xef,0x79,0x2,0x4f,0xbe,0xfa,0x7b,0x71,0x5c,0x2f,0xb2,0x32,0xf2,0xb8,0x46,0x7f,0x61,0x5b,0xdf,0x98,0xbe,0xc3,0x75,0xc9,0xa2,0x46,0x2c,0x4d,0x89,0xfc,0x7d,0x2d,0xca,0x4,0x38,0x1b,0x44,0xa6,0x7c,0x1f,0x1a,0x8e,0x59,0x99,0x2b,0xf,0xd5,0xf0,0xdb,0xd7,0xee,0x36,0x8b,0x76,0x76,0x13,0x77,0x7f,0xf2,0x35,0xb8,0x7e,0xc3,0x6f,0x60,0x93,0xb3,0x92,0xae,0x67,0x66,0xb0,0x6d,0xb,0x96,0x79,0xcc,0xb6,0x47,0x32,0x93,0x93,0xd4,0xa4,0x9,0x8e,0x67,0xe7,0xb8,0xf5,0x49,0x7f,0x1e,0x76,0xf7,0xf6,0x60,0xa7,0x6a,0x5e,0xb4,0xee,0x36,0x18,0xcc,0x64,0x87,0xd6,0x6d,0x77,0xc9,0x9f,0xea,0x76,0xcc,0x6a,0xa3,0x9b,0x87,0xa1,0x62,0xba,0x83,0x27,0xe6,0xba,0x1f,0xce,0xe3,0x10,0x10,0x12,0x38,0x15,0x1b,0xf1,0x8c,0x60,0x5,0x98,0x64,0x65,0x14,0x1d,0x66,0xa4,0x90,0x18,0xb3,0x2f,0xf5,0xb5,0x4a,0xbe,0x3,0x7c,0x40,0x8f,0x6e,0x46,0x5d,0xc7,0xe4,0x1d,0x6e,0xe3,0x5b,0xdd,0x2f,0x76,0x67,0xf6,0x37,0x58,0xdb,0x12,0x4a,0x9d,0xef,0x22,0x93,0xe0,0x2a,0x48,0xb8,0x3d,0x82,0x92,0x1c,0xf3,0xcf,0xb0,0x71,0x49,0xbf,0x9c,0xa5,0x98,0xe7,0xec,0x1e,0xbd,0x90,0x21,0xc,0x95,0xeb,0x71,0xc1,0xd3,0x18,0x9c,0x63,0x58,0xcd,0x13,0x1b,0x7c,0x8e,0x4e,0xc4,0xdc,0xf8,0xb7,0x65,0x27,0x25,0x94,0x60,0xe9,0x36,0xa0,0x68,0x80,0xb9,0x84,0x76,0x54,0x70,0xb6,0xf5,0x57,0x70,0x71,0x71,0x8e,0x9f,0xfc,0x99,0x5f,0xc0,0xdf,0xfa,0xbb,0x5f,0xd9,0x73,0x37,0x86,0xee,0x5e,0x4d,0x93,0x4d,0x2e,0x52,0x88,0x97,0xf3,0xff,0xb,0x28,0x17,0xe3,0xf7,0x39,0x4e,0x4f,0xf3,0x45,0xe8,0x4c,0x72,0xd,0xe6,0x3e,0xd,0x7d,0xfa,0xab,0x2c,0xb5,0x24,0x9,0x9f,0x91,0x19,0x54,0xf3,0x24,0x49,0xa4,0xff,0x86,0x19,0xc8,0x4,0x6e,0xf7,0x1a,0xc3,0xa1,0x6e,0xd7,0xf3,0xd5,0x98,0xe3,0xd9,0xf,0x40,0x2c,0x37,0x44,0x5f,0x33,0xcb,0x70,0x73,0x1b,0x97,0xc4,0x28,0x6a,0xab,0x2d,0x36,0x8a,0x47,0x45,0x30,0x25,0x44,0x8a,0xfc,0x2f,0xf8,0x30,0xa2,0xc4,0xa9,0xaa,0x36,0xc2,0xf1,0x89,0x94,0xc7,0x67,0x59,0x48,0x83,0x3c,0x37,0xdc,0xe5,0xd5,0x52,0xaa,0x98,0x9c,0x16,0x42,0xd7,0x8c,0x53,0x1b,0x51,0xcc,0x7b,0xbc,0x19,0x6a,0x82,0x52,0x74,0x26,0x67,0x88,0xe4,0x7b,0xb1,0xf,0x73,0x84,0xd7,0x6,0x11,0xf9,0xb0,0x1e,0xf0,0x5b,0xbf,0xfd,0x16,0x7c,0xcd,0xbf,0xf8,0x57,0x1d,0xe1,0xf4,0xe6,0x4e,0x76,0x3d,0x77,0x3a,0x37,0xb2,0xc1,0x91,0x14,0xe2,0x45,0x1a,0x50,0x89,0x4e,0xaa,0xb3,0xdf,0x47,0x21,0x3b,0xaf,0x49,0x4b,0x3,0x30,0xab,0xae,0x44,0x81,0x48,0x26,0x17,0x45,0x43,0x31,0xd3,0x3d,0x8b,0x94,0x46,0x98,0x2d,0x9,0xc3,0x3b,0x83,0xa3,0xd2,0x69,0x16,0x8f,0x33,0xdb,0x72,0x94,0xc0,0x6e,0x83,0x7e,0xa6,0xe9,0xfe,0x45,0x55,0x97,0xad,0x9d,0xd3,0x14,0x3b,0xd2,0x31,0xe4,0xe3,0x24,0x19,0x75,0x2,0x48,0x9a,0x95,0xcc,0x44,0xa2,0x5d,0x2e,0xd3,0x48,0x17,0xec,0x9b,0x62,0xe4,0x45,0x6b,0xdf,0x74,0x36,0x7c,0x82,0x5a,0xeb,0x46,0x7,0xa6,0x6,0xdd,0x36,0xe8,0xf5,0x15,0xee,0x7b,0xd9,0x67,0x61,0x3b,0xac,0x58,0xfc,0xf2,0x55,0xda,0x1c,0x3b,0x76,0x6c,0x1b,0xa6,0x35,0x12,0x19,0xef,0x38,0x9c,0xe1,0xea,0x67,0x7e,0xa,0xdb,0xa3,0x8f,0x0,0xcb,0x3a,0x3c,0x1,0x5a,0x90,0xdc,0x5c,0x57,0xaa,0x2c,0xbd,0xd2,0x94,0xa2,0x70,0x4,0x6d,0x3f,0x90,0x7,0x1c,0x36,0xb8,0xf,0x32,0x99,0x47,0x88,0x12,0x21,0x46,0x3c,0x50,0x26,0xf1,0x96,0x8e,0x36,0xb5,0x58,0xa5,0x6d,0x5d,0xb1,0xdd,0xbb,0xc2,0xbd,0x57,0x7e,0x1b,0xa0,0xe7,0x43,0xf7,0x39,0xac,0x80,0xc3,0xc6,0xb2,0x5f,0x82,0xea,0xa9,0x5b,0x54,0x78,0xc9,0x78,0xae,0x87,0x7b,0x97,0x38,0xff,0x84,0x4f,0x84,0x3e,0xfb,0x61,0xc8,0xf1,0x1a,0xdb,0x0,0xfc,0xa4,0x48,0x7e,0x64,0x62,0x95,0xcf,0xf0,0xa4,0x14,0xf9,0x9a,0x15,0xf9,0x67,0xce,0x7,0x73,0x84,0xdd,0x62,0x3,0x74,0x56,0xb5,0xcf,0x40,0x35,0x5a,0x1f,0x61,0x18,0x9b,0x58,0xd1,0xe2,0x76,0xac,0xb3,0x3c,0x89,0xed,0x32,0x25,0x6d,0x91,0x12,0xd,0x98,0xf6,0xf2,0xf0,0x2d,0x68,0x92,0xfe,0xd8,0xe9,0x5e,0x38,0xfe,0x5b,0xd3,0xad,0x51,0xd0,0x8b,0x2e,0x6b,0x5b,0x7e,0x66,0x71,0x51,0xb6,0x54,0x73,0x46,0x8b,0x37,0x58,0xff,0x4c,0x9b,0x2d,0x80,0x45,0x12,0x73,0x3c,0x96,0x38,0x9d,0x9a,0xd2,0xb1,0x8f,0xa7,0x19,0xa7,0xd8,0xfe,0x41,0x1b,0xf3,0xae,0xce,0x32,0xe9,0x50,0x49,0xbd,0x10,0xfc,0x6,0xbf,0xc1,0x59,0xce,0xe4,0xf6,0xd6,0x6e,0x9a,0x64,0x99,0xb1,0x6a,0x23,0x95,0xb1,0x9b,0x65,0x59,0x91,0xf,0xaa,0xa4,0x27,0x39,0x13,0x23,0xd3,0x8b,0x5e,0x70,0xeb,0xd6,0xfd,0xf8,0x97,0xdf,0xfa,0x5d,0xf8,0x92,0xaf,0xfc,0x27,0xfd,0xf2,0x37,0xc3,0xb1,0x6d,0x50,0x5d,0x4a,0x84,0x6e,0x14,0x43,0xae,0x77,0x9e,0x67,0xbd,0xe5,0x4c,0xb1,0x1d,0xd8,0x70,0xea,0xe8,0x35,0xe6,0xd1,0x13,0xf4,0xff,0x8c,0x28,0x95,0xa1,0x8c,0x22,0x81,0xee,0x5f,0x42,0x58,0x67,0xd9,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xc1,0xa3,0x11,0x66,0x6e,0xc7,0x9f,0xd3,0xce,0x88,0x16,0x25,0x55,0xc7,0x20,0xa1,0xaa,0xcc,0x5d,0xde,0x1c,0x53,0x9b,0xbe,0x14,0x36,0xb8,0x41,0x5c,0x34,0xb4,0x36,0x94,0x43,0x5e,0x20,0x6,0x82,0xa3,0x10,0x59,0xc2,0xb9,0x4d,0xa4,0x9a,0xff,0x30,0xf7,0x5a,0x22,0x6b,0x45,0xf3,0x99,0x7b,0x1c,0xb5,0xf4,0xdc,0x8c,0xf8,0x1e,0x5e,0x8d,0xd2,0xa8,0x6f,0x3e,0x2f,0x39,0x7a,0xd7,0x3f,0x6b,0xa1,0x82,0x20,0x78,0x4b,0xad,0x5,0xff,0x89,0x8b,0xab,0xb8,0xf4,0x29,0xc9,0x30,0x9a,0x80,0x49,0xbb,0xcf,0x88,0x19,0xf3,0xd,0x72,0x5d,0x6b,0x9c,0xa7,0x91,0xff,0xe1,0xeb,0x43,0x15,0x67,0xe7,0x37,0xf1,0xb5,0x5f,0xf7,0x4d,0x78,0xfd,0xaf,0xbd,0xa1,0x93,0xb6,0xb,0x1f,0xcb,0x5d,0x53,0x1b,0x9b,0xd3,0xc4,0x59,0x2c,0xe0,0x68,0x74,0xf2,0xdf,0x87,0x9d,0xf0,0x45,0xb0,0x99,0x61,0xf2,0x8c,0x11,0xd7,0x3c,0x92,0x2a,0x35,0x27,0x5,0x32,0xa1,0xe4,0x6a,0x7a,0xf8,0xf,0xef,0x89,0x94,0xc8,0x2b,0x78,0x94,0x67,0xc8,0xe8,0x10,0x4d,0x8e,0x96,0xfa,0x68,0xc8,0xaa,0xc5,0xf8,0xe4,0xe1,0x30,0x72,0x7,0x2c,0x48,0x54,0xfe,0xa9,0x94,0xbc,0x64,0x9e,0xf9,0x9b,0x41,0x1a,0xbb,0x7,0xa1,0x64,0x82,0x77,0xf7,0x8d,0xc4,0xfc,0x79,0x33,0x5b,0x33,0x1a,0xbd,0x64,0xf8,0x8d,0xf1,0xaf,0xe1,0x22,0xd6,0xb2,0x90,0xf0,0xb,0x4d,0x3a,0x21,0xa3,0x35,0x81,0x5e,0x5d,0x41,0x5f,0xf8,0x42,0xdc,0xf7,0xd1,0x1f,0x8b,0xf5,0x78,0x17,0xab,0x67,0xb5,0xbb,0xe7,0x35,0xfb,0x6b,0x8f,0xc3,0x1f,0x6e,0x17,0x19,0xe6,0xc,0x5d,0x4f,0x79,0xfb,0xd5,0xdf,0x8b,0xb6,0xac,0x6e,0xdb,0x3,0x3b,0x5a,0x84,0x20,0xf8,0x43,0x6c,0x4e,0xb0,0x89,0x16,0xcb,0xea,0xc2,0xf0,0x28,0xc7,0xc6,0x42,0x7c,0x32,0xbe,0x11,0xf7,0xee,0xef,0x70,0xba,0x6c,0x64,0xe6,0x33,0x66,0x29,0x1b,0xc1,0xdf,0x36,0x64,0x65,0x82,0x6,0x39,0xbb,0x89,0xdb,0xff,0xf6,0x55,0x68,0x8f,0x3c,0x82,0xe3,0xb2,0x74,0x48,0x27,0xc6,0x26,0xc3,0x10,0xa2,0xb5,0x32,0x43,0x93,0x8,0xba,0xe9,0x17,0xed,0xd9,0xf1,0x1a,0xcb,0x43,0xf,0xe2,0xe6,0x7f,0xf9,0x49,0xdd,0x1e,0xd9,0x26,0x59,0x93,0x1,0xcb,0x22,0xc5,0xd1,0xec,0xf7,0x3b,0x70,0x77,0x3,0x7e,0xaf,0xec,0xab,0x1f,0x65,0x54,0xab,0x95,0x95,0x9e,0xfa,0xe7,0x6c,0x57,0x51,0xe6,0x79,0x2,0x2b,0x7e,0x7,0xcf,0xac,0xb,0x60,0xee,0xbe,0xd5,0x89,0xbe,0x6b,0x6b,0x9b,0x11,0xb4,0x38,0xf4,0xff,0x83,0xe8,0xe2,0x87,0x44,0x42,0xfa,0x8d,0x5c,0xb,0x5b,0x1,0xa,0x8a,0x25,0xa6,0x4d,0x51,0xe8,0x52,0x7f,0x8f,0x1,0x66,0xe3,0xcf,0x67,0x97,0x57,0x9f,0x4c,0x5b,0xb3,0x3d,0x29,0x8f,0xe7,0xd1,0xd6,0xba,0xfb,0xa4,0x67,0x40,0x84,0xcd,0x74,0xb2,0xdc,0x86,0x5a,0x31,0xc7,0x51,0x46,0x86,0xf6,0xad,0x55,0x6,0xba,0xa1,0x5e,0xe2,0xb6,0xb5,0x2a,0xc4,0x12,0x32,0xe1,0xa2,0x7a,0xa7,0x5f,0xe4,0xe,0x59,0x76,0x29,0xea,0xad,0xfb,0x1e,0xc0,0xff,0xf1,0x4f,0xbf,0x11,0x9f,0xff,0xbf,0x7e,0x29,0xae,0x8f,0x47,0xa8,0x2e,0xd8,0x5a,0x4f,0x1b,0x93,0x69,0x28,0x6d,0x7c,0xd9,0x8b,0x14,0x44,0xdf,0xca,0x78,0xe6,0xd4,0xc8,0x69,0x4a,0xc6,0x3,0x67,0xef,0xa4,0x57,0x6,0xa,0x4a,0xb4,0xb3,0x43,0x8c,0x6a,0xa8,0x33,0xa9,0x23,0x11,0x29,0xd,0x6a,0x6,0x3a,0x39,0xb2,0xaf,0xa,0x72,0x9b,0xdf,0x7b,0xf6,0x6a,0xa0,0xc0,0x59,0xcb,0x82,0x31,0x27,0x2c,0x8d,0xcc,0x3e,0x7,0x2f,0x9d,0xbe,0x6e,0xe4,0x54,0x9,0xf6,0xc8,0x97,0xa9,0xc1,0x2a,0x0,0x91,0xd0,0xba,0xb3,0xe0,0xc6,0x8,0x51,0xe4,0xd3,0xaa,0x7a,0x47,0xf8,0x20,0x9f,0x82,0xc6,0xc,0xd0,0xec,0x26,0x3d,0x89,0xd4,0x67,0x1a,0x25,0x90,0x7,0x99,0x7e,0x9,0x43,0xdb,0x9c,0x3f,0x95,0x9c,0x1e,0x58,0xca,0xd8,0x18,0xf4,0xe3,0xa4,0x4a,0xe7,0x45,0xf8,0x83,0x36,0x8f,0x2c,0xaf,0xf9,0xd5,0x41,0x9a,0x76,0x85,0x80,0xcf,0xb1,0xf,0xeb,0x8a,0xbb,0x77,0x2e,0xf1,0xf9,0x5f,0xf8,0x77,0x70,0x79,0xdc,0xba,0x19,0xd8,0xd8,0x4f,0x1b,0x71,0x43,0x76,0xc5,0x34,0xb9,0x8,0x8a,0x55,0xa7,0xe3,0x44,0x5,0xc8,0xcc,0xa9,0x66,0x2f,0xa2,0xb2,0x2a,0x2a,0x91,0xc0,0x33,0x23,0x26,0x83,0xd3,0xe4,0xa3,0x68,0xe9,0xa3,0xf3,0xf2,0xb6,0xa9,0xb9,0x52,0xb2,0x9b,0x7,0x8d,0x3c,0x42,0xf5,0xd3,0xaa,0xec,0xc7,0x84,0x96,0xb,0x35,0x1,0x4a,0x7b,0xa7,0x26,0x1d,0x73,0x8f,0xaf,0x54,0x89,0xb5,0xfc,0x5d,0xa9,0x55,0xa,0x57,0xc9,0x20,0xa9,0x94,0x98,0x45,0x50,0x83,0x8,0xa5,0x42,0x79,0x5d,0xe3,0xfe,0xf5,0x71,0x1,0xe4,0x9d,0x19,0x97,0x87,0xd4,0xb9,0x68,0xa0,0x8c,0xd,0xc0,0xf1,0x1e,0x6e,0x7d,0xe2,0xa7,0x42,0x1e,0x7c,0x0,0x7a,0x6c,0x68,0xd6,0x3d,0x95,0xa3,0x2a,0xf4,0xea,0x77,0x10,0x92,0xa0,0xfe,0xfc,0xfa,0xa1,0xb9,0x60,0x3,0x96,0x15,0xdb,0x1b,0x7e,0xb,0xf7,0x7e,0xe5,0x17,0xd1,0xd6,0x8b,0xb4,0x7f,0xa7,0xe4,0x2a,0x89,0xb,0x7f,0x8b,0x79,0x75,0x54,0xd5,0x4c,0xa6,0x89,0x88,0x4d,0xff,0xaa,0x86,0x84,0xab,0xc5,0xd7,0xf9,0x1,0xb1,0xc,0xa3,0x6a,0xc0,0x9d,0xf9,0xed,0xcf,0x61,0x3b,0x1c,0x70,0x7c,0xfc,0x71,0x5c,0xfd,0xf8,0xf,0xc3,0xe,0x17,0xc0,0xf0,0x17,0x88,0xb,0xc2,0x4e,0xa0,0x48,0xd2,0x99,0xa8,0x1b,0xd2,0x8f,0xfc,0xec,0xea,0x12,0x37,0x5e,0xf6,0x69,0xd0,0x9b,0x37,0xb0,0x6c,0xdb,0x98,0x15,0xce,0x57,0x25,0x6d,0x92,0x5d,0x6d,0x5b,0x69,0x4a,0xfb,0x8c,0x7a,0xc9,0x89,0xca,0x44,0xa8,0xb,0xf,0xfc,0xb1,0x96,0x84,0xd6,0x95,0x30,0xc4,0x64,0xe9,0x3b,0x5d,0x86,0x8c,0x3b,0x4e,0x3d,0xf3,0xa6,0xe7,0x77,0x20,0xd1,0x71,0x15,0x99,0x50,0x9c,0x5b,0xe3,0xd9,0x6f,0x96,0x97,0xdc,0x20,0x1d,0x48,0x21,0xdf,0x90,0x1,0x49,0x40,0x66,0x35,0x38,0x27,0xe6,0x6d,0xd4,0xd1,0x8b,0xed,0xd1,0x26,0xdb,0xdb,0xfc,0x64,0xe8,0xa5,0x58,0xb1,0x4a,0x15,0xab,0xb8,0x58,0x92,0x6c,0x25,0xd9,0xb8,0xe2,0x7e,0xc,0x46,0x22,0x38,0x8d,0x67,0x1a,0xc5,0x4a,0x93,0xfe,0x2f,0x4b,0xb4,0x20,0x34,0xc2,0xa0,0xa8,0x6b,0x18,0x8e,0xad,0xa1,0x59,0x5a,0x15,0xbb,0x75,0x6d,0x93,0xb4,0xd6,0x36,0x5a,0x23,0x4e,0xb8,0xd4,0xa5,0xbf,0x99,0x8b,0xfb,0x1f,0xc4,0x37,0xbd,0xe2,0xbb,0xf0,0xc9,0x7f,0xe1,0x73,0xf0,0xba,0xd7,0xff,0x2a,0x56,0x1d,0x32,0xdf,0xfd,0x4a,0x79,0xc6,0x66,0xdc,0x8b,0xea,0xe,0x7f,0xfb,0x44,0xfb,0x84,0x7,0xf1,0xa9,0x90,0x9d,0x90,0xd3,0x5a,0x61,0xcf,0x17,0x67,0x2,0xa1,0x3f,0x2f,0x54,0x28,0x10,0x61,0x34,0x97,0xad,0xd4,0x11,0x4c,0x84,0x40,0x71,0xdb,0xca,0xd0,0x76,0x2d,0x5c,0x61,0xf3,0x2c,0xdc,0x23,0xaa,0xc7,0x1e,0x18,0x92,0xda,0x46,0xeb,0x2f,0xca,0xe0,0x65,0xf8,0x22,0xc8,0x1c,0xc7,0x33,0x33,0xe4,0x98,0xe9,0x9f,0x76,0xc9,0x22,0x7b,0xf,0xfd,0x5a,0x3c,0xc9,0x49,0xb9,0xa4,0x52,0x53,0x86,0xa2,0xfc,0x98,0x33,0x39,0x88,0x54,0x68,0x19,0xc9,0x2b,0x3,0x66,0xf4,0xe6,0x83,0x39,0x12,0xc2,0x7e,0x7,0xbc,0xb7,0x7c,0xd4,0x21,0x55,0xf7,0x2f,0x36,0xc5,0xf4,0x82,0x12,0x55,0x85,0x3a,0x5e,0x55,0x9c,0x9f,0x5f,0xe0,0xb5,0x3f,0xf7,0x7a,0x7c,0xfe,0x17,0xfe,0x6f,0xfd,0xfb,0xb4,0xad,0x17,0x75,0x93,0xcc,0x52,0x87,0x2f,0x87,0xfa,0xf9,0x90,0x2a,0xc9,0x24,0x40,0x4a,0x25,0x97,0x8,0x7e,0x2f,0xb8,0x5f,0x88,0x99,0x4f,0xa4,0xf7,0x11,0x4a,0x66,0x5,0x9a,0xa9,0xfb,0x4a,0x79,0x14,0x20,0x8c,0x7a,0xb4,0xa2,0xcc,0x28,0x11,0xe,0x6d,0x9a,0x5a,0x86,0x8a,0x62,0xe,0x49,0x33,0xaf,0xf4,0xab,0x47,0x92,0xfa,0xa8,0x9b,0xe,0x57,0xaf,0x26,0xa,0xc6,0x66,0x75,0x4,0x30,0x4b,0x60,0x4b,0xa9,0x64,0x44,0x18,0xa2,0x39,0xde,0xf8,0x6c,0xe2,0x95,0xb2,0xe4,0xc9,0xd0,0x93,0xd8,0xda,0x78,0x60,0x5b,0xc3,0x70,0x2,0x5b,0x7a,0x47,0x86,0x6e,0xdb,0x6b,0x22,0xd8,0x46,0x9c,0xa0,0x3c,0xf4,0x10,0x6e,0x7d,0xc2,0xa7,0xc0,0xae,0x2f,0x3b,0x7b,0x7b,0xc4,0xf,0x72,0x14,0x75,0x7f,0x50,0x1a,0x17,0x5f,0xd3,0x61,0x1d,0x2a,0x1d,0x7a,0x5e,0x54,0x70,0xe7,0x87,0xbf,0x7,0x76,0x79,0x8d,0x6d,0x49,0xd,0x32,0x9a,0xc4,0xe1,0xdb,0x6c,0xeb,0xcf,0x8e,0x6f,0xda,0x81,0x1a,0xe4,0x3d,0x6e,0xb9,0x8f,0x88,0x59,0x59,0xec,0x53,0x29,0x33,0x59,0x88,0xbd,0xeb,0x1d,0xbf,0x94,0x8c,0x98,0xb4,0x8f,0x5d,0xbc,0x5b,0x5b,0xce,0x71,0xf7,0x7,0xbf,0xb,0x72,0xe7,0x1e,0x9a,0x87,0x56,0xb4,0x3a,0x53,0x33,0xe1,0xed,0x98,0xe6,0x4a,0x1e,0x62,0xb4,0x6c,0x1b,0xd6,0x17,0xbd,0x8,0xe7,0x1f,0xf5,0xb1,0xc0,0xd5,0x9d,0xde,0xe4,0xe,0x8f,0x82,0x94,0x83,0x49,0xc6,0x46,0xce,0x83,0xc8,0x22,0xed,0xa9,0x61,0x34,0x86,0x6e,0xb9,0x6c,0x92,0x8e,0x6f,0x1e,0xe6,0x13,0xef,0xf5,0x4,0x82,0x14,0x73,0x43,0xd3,0xda,0x23,0x8b,0x90,0x14,0x47,0x7e,0x1f,0x32,0x4d,0x95,0xde,0xf9,0x1,0x13,0x51,0xc8,0x6e,0xf,0x5c,0x32,0x85,0x7c,0x66,0x39,0x24,0x57,0xd6,0x49,0x49,0x6d,0x1c,0xca,0x1e,0x84,0x11,0x24,0x4e,0xa9,0x4c,0xfa,0xe6,0x9b,0xda,0xd8,0x93,0x9f,0xc7,0x38,0xd3,0xc,0xd8,0xc,0xdb,0xb8,0x40,0x31,0x43,0xef,0xe5,0x22,0x93,0x89,0x5f,0x3b,0x9e,0x83,0x4a,0x71,0xf8,0x13,0xdb,0x5f,0x9f,0xd,0xfd,0x67,0x18,0x49,0xe7,0xc2,0x4d,0xd3,0x52,0x49,0x63,0x65,0x54,0x63,0x79,0xf0,0x58,0xef,0xf8,0xdb,0xb6,0xc1,0xc8,0x27,0xde,0xbf,0x96,0x1e,0xe4,0x92,0xde,0xf4,0x32,0x64,0x53,0xc3,0x62,0xbb,0x35,0xc3,0xfd,0xf7,0x3f,0x84,0xd7,0xfd,0xf2,0x1b,0xf0,0xb2,0xcf,0xfc,0x2b,0xf8,0x82,0x2f,0xf9,0x72,0xbc,0xf9,0xad,0x6f,0xcd,0x4b,0xcb,0x9f,0xdf,0x44,0xeb,0x8e,0xd7,0x37,0x42,0xa7,0xda,0x70,0x49,0xf3,0xcf,0x85,0xd1,0x42,0x66,0x33,0xfb,0xdc,0xb7,0x74,0xa9,0xe3,0x3d,0x77,0x5e,0xa6,0x55,0xaf,0x7d,0xa1,0x11,0x85,0xf,0x1e,0x1d,0xab,0x37,0xb2,0x34,0xa5,0xf3,0xaf,0x81,0x2c,0xbb,0x9d,0xe0,0x67,0x75,0x4e,0x8d,0xc1,0xa7,0x71,0xd0,0x13,0x63,0x8d,0x94,0xe7,0x3f,0xa4,0xc3,0x7e,0x8,0x6f,0x3,0x7e,0x76,0xf4,0xae,0x59,0xa3,0x1d,0x57,0x7d,0x20,0x6a,0x95,0xd3,0xc0,0x65,0xa,0x4f,0x15,0xac,0xc4,0x5,0x13,0xf,0x67,0x5a,0x27,0x3c,0x3e,0x32,0xcf,0xbc,0x17,0x99,0x46,0xbb,0x84,0xc0,0x52,0xf1,0xe1,0x5,0x65,0xac,0x85,0x18,0x16,0x6b,0x14,0x94,0xae,0xa4,0x9f,0x15,0xf,0xa9,0x61,0xb7,0x18,0xb8,0x73,0x5a,0x61,0xa3,0x57,0x4c,0xd7,0x45,0xd9,0x5b,0x82,0x7e,0x90,0xc7,0xf3,0x19,0x17,0xb8,0x88,0xe0,0xe6,0xad,0xfb,0xf0,0x8a,0xef,0xfc,0x1e,0xfc,0x8f,0x7f,0xfb,0xcb,0xd2,0x7e,0x7a,0xa0,0xa2,0x8d,0xd1,0x11,0xe3,0x46,0x4b,0x89,0x3f,0x23,0xc4,0x2d,0xaa,0x52,0xbb,0x39,0x29,0x23,0xf6,0x3f,0x8,0xd1,0x88,0x7f,0x11,0xe7,0x4,0x30,0x79,0xf7,0xb,0x17,0x6b,0x56,0x3c,0x1f,0xca,0xe7,0x44,0xaa,0x1b,0x3e,0x6,0xe3,0xb4,0xb3,0x94,0x3e,0xb3,0x34,0x56,0x88,0x7c,0x1c,0x16,0xc9,0xcd,0x42,0x92,0xec,0xc1,0x4a,0xca,0xb2,0x1e,0x9b,0x20,0x24,0x51,0x62,0xc,0x87,0xb9,0x8,0x26,0x4d,0x0,0x8a,0x2c,0x46,0x86,0x41,0x83,0x58,0x8e,0x34,0x41,0x56,0xb6,0xa9,0x24,0xa1,0x3,0x89,0xaa,0x18,0x1d,0x4,0xb5,0xa8,0x36,0x5b,0x9f,0xe3,0x98,0x18,0x36,0x3,0x96,0x7b,0x4f,0xe3,0xe6,0xc7,0xfc,0x49,0x9c,0xbd,0xdf,0x7b,0x61,0xbd,0xbe,0x2a,0xc6,0x15,0x3d,0xe6,0xb0,0x17,0x19,0xba,0xc,0xfb,0x68,0x91,0x11,0x72,0xd3,0x2f,0x4c,0x15,0xc0,0x74,0x81,0xbd,0xeb,0x71,0xdc,0xf9,0xf1,0xff,0x1b,0xed,0xec,0x46,0x38,0x23,0x49,0x84,0xb1,0x8f,0xf9,0xb1,0x28,0x46,0xda,0xe1,0x80,0xea,0x95,0x60,0xca,0x3c,0xf4,0xd,0xac,0xe5,0xae,0x9d,0xaa,0x4b,0xbe,0xd8,0x5,0x2c,0xaa,0x72,0x4d,0x14,0x22,0x18,0xb6,0x20,0x38,0x68,0xfc,0x77,0xbb,0x71,0xb,0x97,0x6f,0x79,0x33,0xae,0x5e,0xff,0x4b,0xd8,0xce,0x6e,0xc,0xf6,0x2f,0x32,0xed,0xce,0xd8,0x7e,0x55,0x6a,0x12,0x16,0xfa,0x5,0x2f,0x50,0xac,0xad,0xe1,0xbe,0x4f,0xfd,0xcc,0x4e,0xfe,0xdb,0xb6,0xce,0x9b,0xf0,0xf,0xb8,0xe5,0xfc,0x18,0x2,0xb4,0xed,0x64,0xba,0xf7,0xb0,0xaa,0xa4,0x9e,0x5e,0x88,0x2d,0x6f,0xa9,0xce,0x90,0xd1,0x5,0x4b,0xe0,0xfd,0xc,0x13,0x48,0x4a,0xf8,0x84,0x86,0xfd,0x3c,0x43,0xae,0xc0,0xd9,0xbe,0xcd,0xdb,0xe5,0x6e,0x93,0x1c,0x55,0x25,0x5c,0xbc,0xe6,0xc2,0x76,0x47,0xcb,0x72,0x94,0x86,0xe0,0xc0,0x22,0x3a,0xf5,0x19,0xe6,0x50,0x4d,0x18,0x11,0xd2,0x60,0x27,0xf0,0x6,0x39,0xc1,0x23,0xb,0x9f,0x6d,0x3e,0x52,0x50,0x62,0x52,0xcd,0x4e,0x75,0xb6,0x56,0xa4,0xe6,0xe5,0x52,0x10,0x99,0x66,0x8f,0x86,0xb6,0xb5,0xe4,0x69,0x94,0xf7,0xda,0x30,0xbb,0x89,0x81,0xd0,0xb,0x31,0x4f,0x6c,0x24,0xff,0x6f,0x47,0x4d,0xd8,0x33,0x41,0x85,0x10,0x67,0x92,0x17,0xd,0x1b,0xeb,0xc3,0x61,0xc5,0xb6,0x1,0xe7,0x17,0x37,0xd1,0xda,0x8a,0x7f,0xf6,0xd,0xdf,0x8e,0x3f,0xf9,0xb2,0xcf,0xc4,0x7f,0xf7,0x37,0xbf,0x18,0x3f,0xf8,0xa3,0x3f,0x81,0xc7,0x1e,0x7b,0xbc,0xf3,0x51,0x64,0xee,0x1b,0x7,0xc2,0x2,0xb,0x83,0x99,0x3c,0x3c,0x2d,0xd0,0x40,0xaa,0xb,0x27,0xd2,0x12,0x33,0xf8,0xfb,0x1c,0x78,0x51,0x4d,0xdb,0x65,0xae,0xdb,0xc7,0xc1,0xcb,0xb1,0xc6,0x12,0x70,0xb2,0xe7,0x16,0x64,0x51,0x27,0x24,0xcf,0xf,0x9d,0xb4,0xa0,0x10,0xe8,0xbc,0x7b,0xab,0xbe,0xe8,0xdd,0xc9,0x74,0x26,0xb7,0x86,0x3a,0xa4,0xb5,0xd0,0xe2,0x5a,0x4,0x45,0xb4,0xb1,0x8d,0x24,0xb,0x1a,0xa9,0xca,0x8b,0xad,0xcc,0x91,0xab,0x35,0x34,0xb7,0xd8,0x82,0x67,0x18,0x8f,0x51,0xc7,0xec,0x67,0x50,0xcc,0xd5,0xfd,0x4c,0x6b,0x42,0x6c,0xfa,0x8c,0x98,0x35,0x76,0xc4,0xd4,0x90,0x7f,0x24,0x75,0x71,0xbc,0xf7,0x6d,0x94,0x17,0x46,0xd5,0xad,0x50,0x77,0x6b,0xc6,0xea,0x1c,0x22,0x40,0x57,0x5e,0x79,0x71,0xca,0x6b,0x66,0x15,0xe8,0x10,0xde,0x3b,0xd6,0x35,0xfc,0xba,0xe0,0xe6,0xcd,0xfb,0xf0,0xcf,0xbf,0xf1,0xdb,0xf0,0x99,0x9f,0xfb,0xf9,0x78,0xec,0x3d,0xef,0x19,0x64,0x55,0xca,0xa7,0x97,0x24,0x80,0x26,0xb9,0x54,0x19,0xe0,0x78,0x6,0x74,0x8a,0x50,0x1b,0x86,0xd1,0x5b,0x95,0xa,0x33,0x8b,0x50,0x66,0xf5,0x93,0x12,0x12,0x43,0xe8,0xb2,0xaf,0xdf,0x65,0xb2,0xdd,0x56,0x9c,0xe0,0xfb,0x8,0x28,0x47,0x63,0xb2,0x1,0x41,0x1a,0x50,0x7,0x59,0x9c,0xd4,0x79,0x3e,0x6a,0xc2,0xd2,0x1b,0xe8,0xc2,0x8,0xac,0x58,0x57,0xfa,0xd9,0xf7,0x3,0x75,0x7a,0x38,0x2d,0x99,0xc2,0x62,0x49,0x61,0xb6,0xad,0x65,0xa4,0x27,0x6d,0x12,0x25,0x77,0xac,0x66,0x32,0x5b,0xa1,0xc,0xad,0xef,0xd2,0x43,0x52,0xfc,0x93,0x1a,0x49,0x6a,0xb6,0x1,0x2b,0xba,0x73,0xdd,0x43,0x9f,0xfa,0x59,0x10,0x3b,0x62,0x69,0x86,0xe3,0xf8,0xb9,0x1e,0x60,0x12,0x33,0xba,0xb1,0x5b,0xbb,0x3a,0xa0,0xe7,0x9,0x2c,0x40,0x77,0x6a,0x3a,0x3f,0xc3,0xed,0xd7,0x7c,0x3f,0xb6,0xc7,0x1e,0x3,0x6e,0xdd,0xf,0xf5,0x94,0xa8,0x71,0xd9,0x1b,0x5b,0x54,0x36,0xa1,0x8a,0x70,0xa8,0xc,0x94,0x2a,0xe3,0xe6,0xde,0x3,0xba,0x23,0xb7,0x44,0x9a,0x92,0x3f,0xb,0xe5,0xa4,0xb7,0x8c,0x2,0x55,0xd3,0x20,0x9e,0x37,0x49,0x8b,0x5a,0x19,0x3a,0xf3,0x26,0x3d,0x7d,0xf0,0xee,0xf7,0x7f,0x7,0xe,0xff,0xe9,0x47,0xa3,0x69,0x77,0x37,0x6c,0x66,0xc3,0xf6,0x94,0xdd,0xc0,0x5a,0x2f,0x72,0x24,0xad,0x29,0x7a,0xbc,0xe3,0x82,0xc3,0xf1,0xa,0x37,0x5e,0xf2,0x12,0xac,0x1f,0xfa,0x61,0x68,0xff,0xe1,0xd,0xb8,0x96,0x33,0xd8,0xaa,0x69,0x8c,0xe1,0xc,0x5d,0x79,0x86,0xfe,0x9a,0x46,0xf7,0x99,0x71,0xde,0x8a,0xc1,0x4c,0xb1,0x99,0xd,0x90,0xb5,0x25,0x7b,0xdb,0x99,0xe2,0x85,0xec,0xa9,0x69,0x16,0x73,0xda,0x6a,0x7,0xa7,0x2c,0xa5,0xe7,0xe0,0x54,0x39,0x11,0xa4,0x63,0xa3,0xfb,0x35,0xfa,0x7f,0x4,0xb4,0xaa,0x63,0xe3,0x66,0x5c,0xb2,0xda,0x70,0x9a,0x8f,0xb1,0x96,0xc4,0xac,0x4e,0x65,0x19,0x81,0x30,0x54,0x90,0x34,0x29,0xf3,0xe4,0xe2,0xa3,0x3a,0x5a,0xe7,0x2e,0x73,0x73,0x79,0xe,0x4a,0xc6,0x91,0x35,0xb,0x88,0x7f,0x5f,0xcf,0x48,0x38,0xc3,0x89,0x90,0x23,0xa0,0x92,0xa4,0x89,0x24,0x94,0xdd,0x6d,0xb1,0x8f,0x3,0xa2,0xc7,0x11,0x4a,0xed,0x9b,0x2a,0x12,0x1b,0xa4,0x50,0x13,0x26,0xb3,0xf5,0xe,0x41,0x96,0xe,0xef,0x83,0xc6,0x9,0xd9,0x72,0x68,0xa4,0x78,0x76,0xb7,0xbf,0x16,0x17,0xd5,0xba,0xe,0xff,0x84,0xe5,0x80,0x9b,0xf7,0x3f,0x84,0x7b,0x97,0xd7,0x78,0xc5,0x77,0x7e,0x3f,0xbe,0xe3,0xdf,0xfc,0x0,0xde,0xef,0x79,0xcf,0xc6,0x87,0x7c,0xd0,0x8b,0xf1,0xe1,0x1f,0xfa,0xc1,0xf8,0xc0,0x3f,0xf4,0x1,0x78,0xbf,0xf7,0x7a,0x1e,0x9e,0xf3,0xac,0x67,0xe1,0xc6,0x8d,0x1b,0x38,0x3f,0x73,0x4f,0xb,0x1d,0x28,0x8c,0x66,0xa0,0x95,0x1b,0x39,0xd1,0xed,0xd9,0xfc,0x57,0xe7,0xbb,0x78,0x42,0x66,0x6b,0x78,0xe2,0xa9,0x3b,0x78,0xdf,0xf7,0x79,0x6f,0x3c,0xe7,0x39,0xcf,0xc6,0xec,0xaf,0x2c,0x51,0xd4,0x13,0x41,0xcd,0x89,0xae,0x53,0xf6,0x81,0xcb,0xeb,0x8c,0x4c,0xab,0x46,0x8e,0x56,0x39,0x8c,0x5b,0x9b,0x24,0xa3,0xd6,0x8,0x31,0xf0,0xc9,0x8c,0xdf,0xe2,0x5b,0x66,0x30,0x8c,0xef,0xeb,0x8,0x88,0xb5,0x71,0x98,0xb4,0xa1,0x22,0xa2,0xb1,0x4c,0x8e,0xbb,0x65,0x92,0x63,0xa6,0x5d,0xac,0x50,0xba,0x6,0xfb,0x39,0x18,0x11,0x79,0xab,0x27,0xff,0x5e,0xed,0x20,0x22,0x81,0x26,0x4a,0x43,0x9c,0x1f,0x3c,0x87,0xf6,0x87,0x94,0x1c,0xd2,0x71,0x31,0xc,0x47,0xbc,0xed,0x68,0xe1,0x59,0xef,0x96,0xbb,0x91,0x4c,0xe7,0xdf,0x87,0x46,0xd3,0x79,0x74,0x1a,0xa9,0x3d,0x14,0xad,0x6d,0x58,0x86,0x2c,0x36,0xbc,0x6,0x9a,0x84,0xce,0x3f,0x69,0x33,0xfd,0xce,0x59,0x44,0x60,0xeb,0x8a,0x7,0xef,0xbf,0x1f,0x3f,0xf4,0xc3,0x3f,0x8a,0x4f,0xfc,0xcd,0x37,0xe2,0xcb,0xbf,0xf4,0x8b,0xf0,0x49,0x1f,0xff,0x71,0x5d,0xa9,0x35,0xee,0x17,0xb8,0x33,0xec,0xa9,0x21,0x8,0xf3,0xdd,0xa4,0x50,0x3d,0xab,0xdc,0x7d,0x97,0x7e,0xdd,0x1d,0xf5,0xac,0xb0,0x4e,0x50,0xf2,0x2a,0x4a,0xe6,0x81,0x2b,0xb1,0x3c,0xd8,0x8e,0xa4,0x4c,0x81,0x8c,0xb0,0xd,0x94,0xd5,0xf5,0xe9,0x8e,0x8b,0x81,0xb8,0x89,0x54,0x3f,0x1e,0x6b,0xf5,0xb4,0x1c,0xc9,0xb2,0x18,0x63,0xbc,0xb5,0xcf,0xe4,0x27,0xaf,0x64,0x7a,0xc5,0x42,0xf6,0x11,0x11,0xac,0x50,0xa2,0xd1,0x25,0x58,0xdd,0xd6,0x24,0xe2,0x61,0xd5,0x90,0x31,0x19,0xee,0xb7,0x2e,0x69,0x9c,0xa0,0xe1,0xec,0x36,0xba,0x8d,0xf1,0x66,0x17,0x55,0x68,0xc3,0xf0,0x9d,0xc7,0x8,0xeb,0x69,0x10,0x59,0x71,0xb6,0xdd,0x83,0x7c,0xf8,0x87,0xe3,0xd6,0x87,0x7d,0x38,0xe4,0xee,0xed,0xce,0x78,0xf5,0xf9,0x7d,0x23,0x7,0x42,0x34,0x40,0x25,0x1c,0xbc,0x64,0xc3,0xd0,0xc9,0x1a,0x8e,0x30,0xc8,0xdd,0xeb,0xe,0xf3,0x9f,0x9d,0xc1,0x46,0x28,0x8f,0x73,0x1b,0xfa,0x6c,0x7e,0x74,0xc2,0x2c,0x51,0x3,0x5d,0xe6,0xde,0x29,0x5a,0xb1,0x25,0xcb,0x99,0x6d,0xc8,0x6b,0xb4,0x1a,0x7d,0xf8,0x7,0xa0,0x46,0xe4,0x47,0x9b,0xb2,0xdd,0xcb,0xb0,0x7e,0xc8,0x3b,0x0,0xb9,0xb8,0x85,0xcb,0x9f,0x7b,0x2d,0xf4,0xcd,0x6f,0x1,0xde,0xf7,0xf9,0x58,0xf4,0x8,0x69,0x9d,0xec,0x98,0xf3,0x62,0xe9,0x7,0x9b,0x22,0x6c,0x29,0x85,0x88,0x71,0xeb,0xb6,0x41,0xd6,0x33,0x3c,0xf4,0xc9,0x7f,0x11,0x8f,0xfc,0xea,0xdf,0xc2,0xb2,0x9e,0xe1,0xb8,0x35,0xac,0x8b,0xc,0x39,0x4d,0x83,0x60,0xe9,0x51,0x94,0x5b,0x3b,0x39,0x88,0x35,0x32,0x3c,0x31,0x7a,0xed,0xee,0x1d,0xbd,0xcb,0x2c,0xa7,0x6e,0xbb,0xa1,0x5e,0xee,0xd9,0x9,0x5b,0x9a,0xd0,0xfc,0x1,0xe5,0x32,0xb2,0xe3,0x1f,0xf0,0xff,0x59,0xa5,0xe2,0xb0,0xff,0xfa,0xf8,0x77,0x5d,0x96,0xe8,0xca,0xc2,0x51,0xd2,0xb3,0xb8,0x8b,0xe7,0xb5,0x43,0xb4,0xc2,0x11,0x8d,0x61,0xaf,0xd9,0xe7,0x99,0x12,0xa3,0xa6,0x52,0xbc,0x50,0x38,0x8d,0x8d,0x82,0xd2,0x6c,0xc8,0x39,0x45,0xa,0xec,0x1c,0x23,0x33,0x4a,0xc5,0x94,0x29,0xc4,0xca,0xa8,0x70,0xf1,0x8e,0xb7,0x91,0x41,0x9,0xc3,0xda,0xad,0x25,0x5c,0xea,0x39,0xf3,0xa6,0x16,0x23,0x18,0x90,0xd7,0x82,0x33,0x83,0xbb,0x14,0xb6,0xcf,0xec,0x9b,0x33,0xc2,0x9d,0x5d,0x1e,0x17,0x64,0xe7,0x8f,0x60,0xeb,0x9d,0x83,0x19,0xf1,0x56,0x5c,0x22,0xa9,0x4b,0x61,0x8d,0xdf,0xbc,0xff,0xc,0xd6,0x1a,0x1e,0x79,0xec,0x29,0xfc,0xee,0x23,0xbf,0x80,0x57,0xbd,0xe6,0x67,0x1,0x18,0xe,0xaa,0x38,0x3f,0x3b,0x60,0x5d,0xf,0x38,0x1c,0xd6,0xde,0xa5,0x8f,0xf3,0x68,0x3b,0x61,0x20,0x13,0x51,0x50,0x52,0x8b,0x51,0xff,0x9c,0xb7,0xd6,0x2f,0xcf,0xf7,0x3c,0xfe,0x38,0xbe,0xf5,0x1b,0xbe,0x6,0x7f,0xf6,0xe3,0x3f,0x2e,0x6c,0x5a,0x8b,0xab,0x9d,0x43,0xd3,0xd3,0xc1,0x2e,0x64,0x6e,0xb3,0x6d,0x2d,0x64,0x8e,0x9d,0x24,0x4,0xa,0xdb,0x4a,0x55,0x8c,0x23,0xb,0x71,0x98,0x1b,0xfb,0x5b,0xe4,0xb9,0x20,0x6c,0x9a,0x14,0xfe,0xeb,0x4b,0x90,0x4d,0x95,0x42,0x85,0x42,0x9d,0x39,0xa,0xbe,0xa8,0x17,0x9b,0x95,0xb,0xba,0xb5,0xc6,0xf7,0x53,0x34,0x2e,0x7b,0x55,0x36,0x73,0x4b,0x16,0x2c,0xcb,0x20,0x31,0xe,0xb7,0x37,0x1a,0xc4,0xf,0xd5,0x1,0xe7,0x46,0xb8,0xcb,0x1b,0x1,0x76,0x4a,0x26,0x49,0x9a,0x73,0x7e,0x48,0x9a,0x1a,0x44,0xea,0xc2,0x50,0xd4,0x70,0x22,0x28,0x9b,0xc5,0xb1,0x83,0xa7,0xba,0x25,0xed,0xa2,0x90,0x45,0xa0,0x5b,0x75,0xf,0xd,0x2f,0xa,0xcd,0xdb,0x4f,0x28,0xf1,0xaf,0x87,0xf7,0x28,0x36,0x39,0xe0,0xc6,0xcd,0xfb,0xf0,0x9b,0x6f,0xfa,0x1d,0xbc,0xfc,0x2f,0xfd,0x35,0xfc,0xd7,0x7f,0xee,0x13,0xf0,0x37,0xfe,0xfa,0x5f,0xc5,0x1f,0xfd,0xc3,0x1f,0x36,0xe9,0x40,0xe4,0x99,0xcf,0x99,0xd9,0x56,0x99,0x8b,0x5f,0x92,0x18,0x56,0xb4,0x11,0xc3,0xa1,0x96,0x9d,0x4,0x3a,0x37,0x6e,0xf6,0xa1,0x32,0x54,0xa3,0x26,0x47,0x1e,0x16,0xd5,0xa,0xef,0x1b,0x26,0xb3,0xb5,0x86,0x32,0x1b,0x16,0x81,0x9c,0xa,0x2e,0x31,0x92,0x65,0xb,0x9b,0xad,0xf4,0xf5,0xb7,0x6,0x65,0xd5,0xb3,0x9f,0x23,0x58,0xc7,0x82,0xec,0x61,0x44,0x35,0x4e,0xa3,0x92,0xf4,0xd7,0xf7,0xea,0x43,0xd1,0xdd,0xe5,0x4c,0x15,0x9b,0x2,0xd0,0x6,0xb5,0x5,0x4d,0x85,0x5c,0x31,0x2d,0xb4,0xe7,0x6a,0xe9,0x42,0x24,0x43,0xa2,0xb6,0xc,0x23,0x82,0xd,0x2,0xc5,0x36,0xe6,0x24,0xdd,0xcf,0xdb,0xae,0xee,0xe0,0xe1,0x97,0xbd,0x1c,0xc7,0x83,0x61,0xd9,0x14,0x9b,0x2c,0xd8,0xc4,0xe7,0xf1,0xa0,0x90,0x1c,0xf2,0x8f,0x32,0x0,0x7,0x83,0x6e,0xe3,0xbd,0x1d,0xe,0xc0,0xff,0xf3,0x33,0x38,0xbe,0xf5,0xb7,0x60,0xe7,0xb7,0x12,0x8a,0x6e,0x64,0x14,0x31,0x2,0x11,0x16,0x49,0x59,0x88,0x9b,0x64,0xb8,0x37,0x75,0x44,0xf1,0xd2,0x41,0x6a,0xe1,0x4c,0x96,0x33,0x93,0xd0,0xb5,0xf,0xbd,0x62,0x2f,0x84,0x79,0x41,0x67,0xb0,0x44,0x93,0xf4,0xc2,0x4e,0x67,0xb1,0x9e,0xf8,0xd4,0x64,0x81,0xde,0xb9,0xc4,0xf1,0xd5,0xdf,0x87,0xf3,0xcf,0xfd,0xef,0x71,0xdc,0x9e,0xee,0x1c,0x80,0x75,0xa4,0x48,0xd,0xf5,0x82,0x49,0x97,0x26,0x6d,0x9a,0xb2,0x1e,0x19,0x95,0xa1,0xa,0x80,0xed,0x2e,0xee,0xff,0x13,0x1f,0x89,0xc7,0xde,0xf7,0x5,0xb0,0x77,0xbc,0x3,0xd7,0x67,0x37,0x71,0x3c,0x1e,0xb1,0x2e,0xfd,0x3d,0x2d,0x3a,0x48,0x5c,0xa2,0xd8,0x3c,0xb4,0xa6,0x91,0xdd,0xa4,0x33,0x56,0x8d,0x3b,0x68,0xf2,0x39,0xa7,0xd,0x21,0x13,0xfd,0xca,0x3d,0xc8,0x94,0x88,0x56,0xa0,0x60,0x8f,0x42,0x21,0xff,0x8f,0xf4,0xca,0xca,0xb4,0x36,0x2e,0x50,0x52,0xab,0xdd,0xb6,0x86,0xe3,0xd6,0xb0,0x1d,0xb7,0x21,0x7d,0x52,0x6c,0xc7,0xd,0xcb,0xba,0x8c,0x70,0x9e,0x7e,0x48,0xae,0x63,0x7c,0x64,0xb6,0xe1,0x78,0x3c,0x42,0x97,0x25,0xe1,0xbd,0xa1,0xd2,0x70,0xb3,0x18,0xdd,0x25,0xe4,0x9,0x36,0x6b,0x58,0x64,0xc1,0xa2,0xc0,0x22,0x4,0xf9,0x78,0x87,0xd9,0x6a,0x6,0xb9,0xe9,0x94,0xc3,0xe3,0xa7,0x9a,0x8f,0x85,0x46,0xe0,0x4c,0xa8,0x9,0xc7,0x6b,0x57,0x11,0x2c,0xeb,0x82,0xab,0xeb,0xeb,0x31,0xfe,0xa1,0x4a,0x72,0xc0,0xc7,0xe1,0x89,0x31,0x59,0x71,0xb7,0x1,0x39,0xcb,0xb0,0x27,0x85,0xa3,0x10,0x4a,0x70,0x7c,0x24,0xd4,0x8d,0xe4,0xc2,0x65,0x41,0x1b,0x59,0xe8,0x9e,0x3c,0x99,0x6,0xa8,0xdb,0x68,0x7a,0x7b,0x31,0x61,0x63,0xa4,0xb4,0x9c,0x9d,0xe1,0x70,0x76,0xd6,0xbf,0xe3,0xd6,0x7,0x27,0xdb,0x71,0xc3,0xd5,0xd5,0x35,0xec,0xde,0xe5,0xe8,0x7c,0x1b,0x21,0x46,0x12,0xb3,0x5a,0x41,0xcd,0x43,0x97,0xe1,0x64,0xa9,0xee,0xcc,0x3e,0x50,0xe,0x15,0x81,0x2d,0xb,0xe,0x67,0x87,0x4c,0x51,0x90,0xaa,0x51,0xad,0xc2,0x54,0x94,0xb1,0x4f,0x66,0x29,0xb4,0x4c,0xa8,0x13,0x57,0xd9,0x8e,0x9f,0xe3,0x64,0x77,0x5d,0x0,0x34,0xdc,0xbc,0x71,0x81,0xeb,0xb6,0x61,0x19,0xa6,0x52,0xc5,0xd,0xd5,0x99,0xe3,0x1e,0x61,0x3e,0xfe,0x40,0x83,0xc0,0xb6,0xd,0x8b,0x2c,0x34,0x3a,0x91,0x4c,0x78,0x43,0xcb,0xe,0x8d,0xc6,0xa5,0x18,0x44,0xca,0xe6,0xaf,0x6f,0x23,0x5f,0x1,0xa9,0x30,0x3f,0x6f,0x33,0x5f,0x48,0x17,0x67,0xeb,0xb8,0x2f,0x34,0x9d,0xe1,0x66,0x8e,0xae,0xc7,0xec,0x79,0x78,0x50,0xf3,0x73,0xc6,0x12,0xfd,0x8,0xe8,0xd6,0x2f,0xa3,0x31,0x4e,0x1c,0x8e,0x77,0xd6,0x3a,0x37,0x26,0x66,0xd1,0x61,0xd8,0x64,0x10,0x1b,0xb1,0xd9,0xc2,0x5c,0x8b,0x5e,0x2a,0x5c,0x5d,0x1f,0x71,0xbe,0x9e,0x41,0xa1,0x50,0xdb,0x88,0xe0,0x8a,0x70,0x8c,0x84,0x90,0x42,0xcc,0xe3,0x83,0x17,0x1b,0xaa,0x97,0xb1,0x26,0x97,0x3,0x2e,0x6e,0x8,0xda,0xf1,0x1a,0xdf,0xf5,0xdd,0x3f,0x84,0x57,0xbd,0xfa,0xc7,0xf0,0xf1,0x7f,0xe6,0x63,0xf1,0xf2,0x4f,0xff,0x14,0xfc,0xa9,0x8f,0xfe,0x48,0x3c,0xfc,0xf0,0xc3,0xb5,0xa1,0x19,0xe5,0x8a,0x16,0x4b,0xed,0xe4,0xc,0xf5,0x2,0xac,0x15,0xa4,0xc5,0x95,0x1a,0x81,0xc7,0x34,0xb6,0x87,0xa6,0x3c,0x3,0x2f,0xc1,0xa5,0x8a,0xf7,0x9a,0x24,0x93,0xa0,0xa3,0x92,0x3d,0x92,0x5c,0x75,0xe9,0x6b,0xab,0xc9,0x64,0x36,0xdd,0xea,0xb9,0x39,0x91,0x89,0x2,0xa9,0x76,0x9b,0x63,0x3b,0xc1,0xd9,0x1b,0xaf,0x6b,0x15,0x29,0xc8,0x14,0x5d,0xfa,0xfd,0x45,0x35,0x9f,0x1,0xaa,0xc,0xad,0xb3,0x96,0xee,0x35,0x41,0xfc,0xfe,0xc2,0xb6,0x66,0x58,0xe4,0xc,0x67,0x72,0x86,0x4b,0xbd,0xc6,0x3a,0xd8,0xc0,0xb0,0x2d,0x36,0x8f,0x93,0xe5,0x3c,0xff,0xae,0x2f,0xf6,0xfe,0xfd,0x8e,0xd7,0x8a,0xb3,0x8b,0x33,0x88,0x2c,0xb8,0x56,0x81,0xda,0xf8,0x99,0xdb,0x25,0xda,0xb3,0x9f,0x8f,0x5b,0x1f,0xf6,0xc7,0xd0,0xde,0xfd,0x14,0x74,0x6b,0xd8,0xe4,0x6a,0x74,0x31,0x56,0x3d,0x9f,0x15,0xc0,0xb2,0xa4,0xab,0x15,0xa4,0x93,0x6,0xd7,0x5,0xe7,0x4d,0xf0,0xe8,0xf7,0x7c,0x3b,0x36,0x4b,0xc7,0xb4,0x70,0x46,0x73,0x33,0x99,0x90,0xd5,0x24,0x67,0xc1,0x2,0xaa,0x1e,0x17,0x3d,0xb5,0x1e,0x66,0x18,0x9,0x30,0x20,0xa8,0x6,0xa1,0x8e,0xf0,0xd7,0xd7,0x3f,0x3,0x2d,0x67,0x7f,0x3c,0x47,0xa9,0x3e,0xde,0x71,0x6e,0x8f,0x8a,0x4e,0x14,0xb0,0xf3,0x73,0x3c,0xfe,0xea,0xef,0xc3,0xfb,0xfe,0x57,0x9f,0x81,0xf6,0x3e,0xcf,0xc7,0x15,0x2e,0x1,0x3b,0x76,0xfd,0x75,0xf0,0x2a,0x9c,0xa9,0xbe,0xf5,0xcd,0xd8,0x1a,0x64,0x4,0x45,0x48,0x3,0x70,0x7d,0x85,0xe5,0xe2,0x1,0x3c,0xeb,0x93,0x3e,0x13,0x6f,0xff,0xba,0xaf,0xc4,0x8a,0x23,0x20,0x4b,0x42,0x81,0xdb,0x86,0xed,0xea,0x12,0x4f,0x3e,0xf5,0x14,0xee,0x5d,0x5e,0xe1,0xe9,0xa7,0x9f,0x8e,0x89,0x93,0x88,0x55,0x4a,0x7,0x52,0xda,0x99,0xd6,0x94,0x9a,0x71,0x9a,0xc2,0x58,0xe7,0xe4,0x2a,0x86,0x13,0xb6,0xaa,0x13,0x52,0xce,0xe3,0xa2,0x66,0x7b,0xdb,0x76,0x43,0xcb,0x7c,0xfa,0x88,0xe1,0x25,0x62,0x9e,0xb9,0x21,0x8f,0x95,0xd8,0x5f,0xef,0x90,0xee,0xbb,0x75,0xb,0x4f,0x3c,0xf1,0x54,0x68,0x91,0x55,0xb5,0x9b,0x22,0xd,0xc4,0x47,0x61,0xb8,0x3a,0x6e,0x90,0xd6,0xf0,0xc8,0x3b,0xde,0x85,0xc7,0xcf,0x9f,0xc4,0xd6,0x86,0xc7,0x84,0x9b,0x6e,0xb8,0xe9,0x8a,0xb2,0x5b,0xda,0x98,0xd5,0x9a,0xe1,0xfc,0xec,0x80,0xb7,0xbe,0xf5,0xed,0xb8,0xbc,0xba,0x1a,0xe6,0x4f,0x5a,0xce,0xda,0x78,0x2a,0x91,0x80,0xc7,0x18,0x2d,0x75,0x5b,0x10,0x98,0xb6,0x8c,0x37,0xa5,0x24,0x15,0xb3,0xd,0x68,0xd,0x8f,0x3f,0xfe,0x4,0x9e,0x78,0xea,0x36,0x9e,0x7e,0xfa,0x6e,0xd7,0xa6,0x87,0x1e,0x5f,0xc6,0x7b,0xa2,0xdc,0x34,0xcb,0x34,0x3e,0xa8,0xe2,0x81,0x5b,0xb7,0xf0,0xe8,0x23,0x8f,0xf5,0xcb,0x92,0x64,0x4c,0x82,0x6e,0x96,0xb2,0xac,0xc9,0x80,0x6f,0x21,0x39,0x5d,0xc2,0xef,0x22,0xa2,0x41,0xc7,0xc1,0x8c,0x2d,0x59,0xdb,0x61,0xa6,0xc4,0x91,0x64,0x3a,0xbe,0xc7,0x9a,0xe8,0x57,0xb,0x29,0x65,0x2b,0x3e,0xe6,0xc1,0x8b,0x60,0x37,0x32,0xc,0xea,0xbb,0xf6,0xc5,0xa1,0xcb,0x40,0x6c,0xb0,0x41,0x74,0xc5,0xfd,0xb7,0x6e,0xe4,0xa5,0x5f,0xc,0x5d,0x84,0xfc,0x25,0xc,0x36,0xd,0x8f,0xfc,0xe5,0x5d,0x51,0x41,0xd8,0x2c,0xc3,0xc8,0x72,0xf4,0xa1,0x68,0xc7,0x4e,0x84,0xfc,0xc9,0x7f,0xf7,0xf3,0xb8,0xbc,0xba,0xc6,0xd5,0xf5,0x86,0xad,0x6d,0xe9,0x4,0x37,0x6b,0xd6,0xc1,0x26,0x6c,0xfd,0x32,0x39,0x1c,0x56,0xbc,0xf3,0xd1,0xc7,0xa8,0x9b,0x9f,0x46,0x57,0x7e,0x41,0xe,0x96,0xfa,0x1b,0xdf,0xf8,0x66,0xfc,0xf8,0xcf,0xfc,0x2,0xb6,0xed,0x88,0xb6,0x11,0xcb,0x58,0x7,0x53,0x7b,0x14,0xa0,0xaa,0x6e,0x2a,0x96,0x7b,0xe5,0x70,0x76,0x86,0xd7,0xff,0xda,0x1b,0x7a,0x13,0x35,0x22,0x66,0xc3,0x53,0x43,0x29,0x89,0xd1,0x48,0xc5,0x43,0x89,0x82,0x86,0x6a,0x1e,0x15,0x63,0x8,0x25,0x37,0xc1,0x66,0x78,0xec,0xdd,0x4f,0xe0,0x2d,0x6f,0x7d,0x3b,0xee,0xde,0xb9,0x8b,0x7b,0x57,0xf7,0x42,0x29,0xef,0xa,0x18,0x97,0xe1,0xb9,0x3f,0x9e,0xb5,0x9e,0x82,0x77,0x7d,0x3c,0x42,0x74,0xc5,0xdb,0xde,0xf6,0x8e,0x70,0xa1,0xd3,0x45,0x29,0x57,0x3e,0x47,0x76,0x3c,0x9b,0xca,0x31,0x44,0x16,0xf6,0x8b,0xa,0x4,0x2b,0x74,0x55,0xdc,0x77,0xdf,0x1,0xcd,0x1a,0xbe,0xf7,0x95,0x3f,0x8a,0xef,0xfd,0x81,0x1f,0xc1,0xb,0xde,0xf7,0xbd,0xf1,0x47,0x5f,0xfa,0x12,0xfc,0xf1,0x8f,0xfc,0x8,0xbc,0xe4,0x43,0x3f,0x4,0xef,0xff,0x7e,0xef,0x83,0x87,0x9f,0xfd,0x10,0x6e,0x9e,0x9f,0x63,0x3d,0xac,0x10,0xd5,0x2e,0x43,0x75,0xd7,0xbb,0x71,0x46,0x31,0xcf,0xc0,0x89,0xe7,0x2e,0x49,0xf6,0xd9,0xbb,0x94,0x33,0x2f,0xb0,0x28,0xe2,0x6,0x39,0x18,0xa6,0x71,0x37,0x89,0xcf,0x8b,0x6,0x82,0x74,0x79,0xef,0x12,0x9c,0x5a,0xdc,0x38,0x45,0x9a,0x28,0xdd,0xa,0x70,0x18,0x48,0x95,0x6,0xcf,0x74,0x29,0xf1,0x9c,0x8f,0x81,0x75,0x3c,0xf4,0xc2,0x8f,0x48,0xcb,0x2e,0x26,0x80,0xa8,0x4e,0x64,0x6a,0x8b,0x34,0x2d,0x9e,0xa3,0x3a,0xe1,0xcf,0xfc,0x7,0x1f,0xaf,0xb1,0xdc,0x7f,0x1f,0x6e,0xbe,0xe8,0x3,0xb0,0x1d,0x8f,0xfd,0x20,0x6d,0x95,0x61,0xd,0x9e,0x3d,0x85,0x8e,0xb2,0xa5,0x7f,0xb4,0x2a,0xb6,0xc7,0xdf,0x8d,0xbb,0xef,0x7e,0x37,0x96,0xc3,0xd9,0x90,0xfd,0x35,0xc8,0xe1,0xc,0xeb,0xc3,0xcf,0x85,0x5e,0xdd,0x1b,0x15,0xbe,0x86,0x94,0x41,0x75,0x0,0x93,0x8b,0x40,0x74,0x1d,0x81,0xd,0x87,0xb1,0x9,0x87,0xb4,0x4e,0x15,0x6b,0x13,0x5c,0xff,0xf6,0x1b,0x71,0xbd,0x2c,0x83,0xdd,0x88,0x80,0xb5,0x55,0x7,0x74,0x2a,0x14,0x8,0x63,0xd3,0xf4,0x23,0xe2,0x67,0x69,0x3,0xc,0x28,0xab,0x9,0x26,0xd8,0x25,0x35,0x95,0x2d,0x8c,0x5e,0x74,0xa7,0xeb,0xb4,0x5d,0x4e,0x3a,0x6f,0x7c,0xa1,0x91,0xf0,0x2,0xdd,0xee,0x61,0x79,0xd6,0xf3,0xb0,0x3c,0xeb,0x39,0xd8,0x44,0x8a,0x54,0x2c,0x18,0xb1,0x56,0x4d,0x50,0x3c,0x8d,0x50,0xda,0x86,0xc5,0x36,0x5c,0xb5,0xd,0x76,0xbc,0xc6,0xf6,0xe8,0x3b,0x60,0x7a,0x36,0x48,0x76,0x92,0x39,0xcf,0xdb,0x35,0x6e,0xdc,0xbc,0xc0,0xc3,0xf,0x3f,0x8,0x31,0x9f,0x89,0xa5,0xb3,0x94,0xcf,0xc3,0xdd,0x71,0xcc,0x48,0xf3,0xaa,0x6c,0xd3,0x4b,0x10,0x61,0x8c,0x23,0xa,0xf4,0x34,0xa5,0x5b,0x99,0xec,0xc6,0xe4,0x90,0x13,0x94,0xda,0x13,0x3c,0x3d,0x93,0x24,0x6f,0x49,0x68,0xc1,0xdb,0x50,0x49,0xb4,0xe0,0x7f,0x8,0x24,0x3a,0x11,0x33,0xc3,0x53,0x4f,0x3f,0x8d,0x3b,0x77,0xae,0xb0,0x6a,0x87,0x97,0x65,0x4,0x5a,0xd8,0x96,0x8,0x81,0xa2,0xe1,0x70,0x7e,0x8e,0xb3,0xc3,0x9a,0xe3,0x1b,0xb7,0x43,0x6d,0xe3,0xcd,0xe9,0xd0,0xb6,0xab,0x60,0xd5,0x35,0x69,0x6,0x6,0xdc,0xbb,0xbc,0xd7,0xf,0x35,0x3,0x8e,0xad,0x95,0x28,0x2f,0x99,0x95,0x12,0x7e,0x7f,0x56,0x37,0x8d,0x98,0xd9,0x7,0x54,0x1c,0x85,0xe8,0x28,0xb9,0xed,0x88,0xb3,0x55,0x71,0xe3,0xfc,0xa2,0xbf,0xe2,0x6d,0xa3,0x38,0x31,0x87,0xc,0x1a,0x59,0x1d,0x8f,0x92,0x7d,0xe8,0xf1,0x5b,0x6b,0xb8,0xbc,0xba,0xc2,0xf5,0xd5,0x75,0xce,0x5c,0x87,0x51,0x52,0x23,0xdc,0xcf,0x59,0x61,0x8a,0x34,0x56,0xc9,0x8b,0xdf,0x85,0xdd,0x43,0x56,0x36,0xcc,0x93,0xd8,0x9f,0x5c,0x6,0xb3,0xb5,0x3b,0xe3,0xb5,0xd1,0x2f,0xd,0x66,0x74,0x40,0xc2,0x7d,0x2f,0x2d,0x86,0x4c,0x20,0x3,0x39,0xfc,0xc1,0x6d,0x56,0x3,0xaf,0x83,0x2e,0x12,0x3e,0xc,0x7,0x15,0xfc,0xd8,0xf7,0x7d,0xb,0x3e,0xe8,0x3,0xde,0x3f,0x2e,0x1b,0x4e,0x69,0x4c,0xe6,0xbe,0x4e,0x8,0x80,0xc4,0xb3,0xfe,0xb4,0xcf,0xfe,0x6b,0xf8,0xd1,0x1f,0xff,0x69,0x9c,0x9f,0xdd,0x20,0x3b,0x68,0x64,0x3,0xb0,0xb5,0x71,0x2e,0x19,0x2e,0xaf,0xee,0x8e,0x70,0x31,0x4d,0xa8,0x77,0xee,0xa4,0xfd,0x7d,0x68,0xae,0x1b,0x5d,0x16,0x1c,0x8f,0xd7,0x38,0x3b,0x3b,0x1f,0x3e,0x1a,0x7d,0x24,0x14,0x76,0xcc,0x26,0x39,0x76,0x1a,0xe7,0xe3,0xf5,0xd5,0xbd,0xbe,0xcf,0xa4,0x5e,0xb6,0x42,0x29,0x6c,0x6c,0x61,0xdd,0xf,0x9f,0xde,0xe4,0x6c,0x63,0x7c,0x75,0x7e,0x76,0x36,0xd4,0x2b,0x8d,0x37,0x66,0x31,0xef,0x12,0x82,0x9d,0xa4,0x9,0x4c,0xad,0xf0,0x7c,0xd8,0xb8,0x2c,0xe7,0xf7,0x32,0x8a,0xe8,0x86,0xc3,0xda,0x9,0x74,0xc7,0x30,0x28,0x69,0x48,0xdd,0x2,0xa3,0x37,0x4b,0xa0,0x73,0x1e,0x22,0xd4,0xae,0xaf,0x71,0x18,0x39,0x26,0x26,0x35,0xd6,0xc8,0x76,0xde,0xc,0xb9,0x7,0x82,0x7a,0xa2,0xd9,0x90,0x68,0x48,0x4a,0xfb,0xeb,0x3d,0x6e,0x3d,0x5,0xef,0xea,0xea,0x1a,0x66,0x86,0x8b,0xb3,0x15,0x37,0xce,0x2f,0xf0,0xe0,0x83,0xf,0xe0,0xfe,0xfb,0xef,0xc3,0x8d,0x9b,0x17,0x38,0x3f,0x1c,0x46,0x7e,0x8a,0x12,0x2c,0xef,0x36,0xd8,0xc3,0x77,0xa1,0x6d,0xe1,0x13,0x92,0x6,0x5d,0x2d,0x19,0xf5,0xa5,0xd8,0xa4,0x84,0x47,0xca,0x8a,0x90,0x50,0x65,0xc,0x3e,0xc5,0xd2,0xd1,0xc6,0x5f,0xfd,0xf5,0xdf,0xc4,0xd5,0xd5,0x35,0x54,0xb4,0x72,0xad,0xcc,0x22,0xe9,0x50,0x4b,0x94,0x31,0xa5,0x1c,0x9a,0xec,0xd,0x2e,0x46,0x95,0xcf,0x20,0xe0,0x3a,0x8b,0x15,0xcc,0x25,0xe,0xf3,0x65,0xc4,0xb0,0x4c,0x99,0xcc,0x4,0x75,0xbc,0x77,0xdf,0xeb,0x1,0x97,0x4f,0x3e,0x8d,0xcb,0xd7,0xbd,0x36,0xa2,0x3e,0x5b,0xb3,0x62,0x8d,0xe8,0xdf,0xc3,0x46,0xfa,0x52,0xdb,0xb6,0xae,0x5,0x6e,0x79,0x81,0x99,0xa,0xd6,0xf5,0x2c,0x2e,0x17,0xd1,0x15,0xed,0x7a,0xc3,0xf5,0xdb,0xde,0x9a,0x15,0xa4,0xce,0xd3,0x17,0x62,0xb9,0xba,0x65,0xad,0xea,0xe8,0xc0,0xdb,0x20,0x84,0x6c,0x58,0xd6,0xf3,0xc1,0xe6,0xb5,0xe2,0x58,0xd7,0xe1,0x47,0x29,0xf,0xc9,0x82,0x35,0x2a,0xa9,0x6a,0xf0,0xaa,0x78,0x40,0xe1,0xad,0x40,0x6a,0x39,0x7f,0xb1,0x32,0x4f,0xf2,0xd6,0x27,0x9a,0x14,0xd2,0x6a,0x2a,0x8a,0x59,0xbb,0x66,0xae,0x7b,0x98,0x6,0x8e,0x58,0x49,0xd3,0x73,0x1c,0xdf,0xfd,0x18,0xe4,0xb1,0x47,0x53,0x4e,0x22,0x49,0xc2,0x8c,0x39,0xa3,0x8e,0x9f,0x48,0x21,0x2b,0x61,0xce,0x34,0x6e,0x78,0x5d,0xcf,0xcb,0x9c,0xb4,0x39,0xd4,0xae,0x2b,0x6e,0xdf,0xbe,0xc4,0xd3,0xb7,0x1f,0x25,0xb6,0xb9,0x55,0xd5,0x2,0xed,0x34,0x3,0x5b,0xd2,0x8e,0xf9,0xe3,0xec,0x4,0xc0,0xdc,0x32,0x49,0xf6,0xf4,0x69,0xa8,0x5e,0xb1,0xb3,0x8,0x76,0xf8,0x93,0x72,0x1c,0xc1,0x46,0x25,0xf4,0x7b,0x46,0xe4,0xa9,0x88,0x29,0x6d,0xc5,0xad,0x20,0xb4,0xef,0x3d,0x8,0xb2,0x43,0xdc,0xcb,0x18,0x55,0xb5,0x1,0xb7,0x1a,0x3a,0x7c,0xdb,0x1a,0x70,0xef,0xee,0x35,0xee,0xdd,0xbb,0xee,0x45,0x62,0x91,0xd7,0x8c,0xae,0x40,0x17,0x62,0x96,0x6b,0x7c,0x4d,0x75,0x1,0x4,0x58,0xb5,0xdb,0x89,0x42,0x17,0xa8,0xa5,0x58,0xb2,0x7f,0x86,0x2d,0x79,0x1d,0xad,0xfa,0x93,0x1b,0xcf,0xf2,0x60,0xa1,0xbe,0xc0,0xb0,0xd6,0x8d,0x6b,0x5d,0x16,0xdc,0xbd,0xbc,0xc6,0x9d,0x3b,0x4f,0xf,0x1d,0x70,0x4b,0xc2,0x22,0xf1,0x4d,0xac,0x10,0x97,0xfc,0x10,0xd6,0xc8,0xc,0xd0,0x45,0xb2,0xdb,0x8,0x95,0x49,0x1b,0xb6,0xd4,0x3a,0x3e,0x5b,0x2e,0xc8,0x92,0xed,0xa6,0x63,0x4c,0x4,0x4a,0x51,0x74,0x94,0xc0,0x4a,0x6e,0xb9,0x51,0xb1,0x26,0x23,0xaf,0xdc,0x63,0xab,0xcd,0x9d,0xc5,0xfa,0x1a,0xa2,0xe4,0xc7,0x16,0xd9,0x6,0xfd,0xc9,0x6c,0xad,0xef,0x4b,0xc,0xb,0xd7,0xcb,0x7b,0x57,0x58,0x54,0xf1,0x9c,0x67,0x3f,0x84,0xf7,0x7a,0xee,0xb3,0x23,0x93,0x7e,0x76,0x55,0x88,0x1c,0x89,0x67,0x30,0xa5,0xda,0x8e,0xd,0x8f,0xbf,0xe7,0xc9,0xfe,0xd9,0xa8,0x3b,0xaa,0xd9,0x0,0x34,0x6,0x2f,0xc9,0xdf,0xab,0x18,0xce,0xce,0x6f,0xb2,0xb6,0x95,0xce,0x5e,0x4a,0x8a,0x9c,0xbd,0x87,0xac,0xcf,0xe3,0xcf,0x74,0x8c,0x42,0x39,0x27,0xb1,0xb1,0xbb,0x27,0xb0,0xd9,0x16,0x36,0xdf,0xeb,0xe1,0xac,0x17,0x63,0x2d,0x85,0x79,0xba,0xd8,0x69,0xe5,0xad,0xdf,0xeb,0x4b,0x1f,0x2d,0x2c,0x22,0x90,0x45,0xb1,0xd9,0x16,0x45,0x9d,0x9d,0xf0,0x6b,0x17,0x96,0x1f,0x35,0xd4,0x4e,0x3d,0xf2,0x46,0x76,0x46,0x75,0x43,0x9a,0xdc,0xd,0xab,0x2f,0xaf,0x1a,0xa0,0x5b,0xb0,0xdf,0xd5,0xc7,0x6d,0x5e,0x40,0xd9,0x92,0x22,0x4,0x49,0xe3,0x3f,0x31,0x60,0xd5,0xb5,0xaf,0xa5,0xf1,0x20,0x84,0x8a,0x93,0x4a,0x52,0xcc,0x4c,0x88,0xc8,0x2,0x90,0xdc,0x3f,0x8e,0xf2,0xc5,0x86,0x5d,0x80,0x45,0x56,0x8,0x56,0x2c,0xcb,0x21,0x9a,0x97,0xdb,0x57,0xd7,0x78,0xfa,0x9d,0xef,0x42,0x7b,0xe4,0x91,0x24,0x25,0x93,0xca,0x21,0x46,0xc,0x46,0xcd,0xef,0x88,0x3,0xf,0x87,0x5a,0x67,0x7c,0x32,0x4f,0x47,0x4e,0x28,0x8f,0xf7,0xff,0x3b,0x88,0xee,0xc0,0xaa,0xbd,0x20,0x3e,0x3b,0x3b,0xeb,0xeb,0xda,0x8b,0x65,0x8e,0x30,0x86,0xd5,0x30,0x32,0xcb,0x82,0xbc,0x68,0x39,0xcc,0xc2,0x16,0xbe,0x22,0xcc,0xfd,0xeb,0xab,0x8d,0xb9,0xb3,0xbf,0x1a,0x76,0x75,0xb3,0x29,0x4e,0x55,0xdc,0xd4,0xc2,0xd9,0xf9,0x36,0x55,0xb3,0x3,0x6,0x5b,0x96,0x15,0x38,0xac,0x63,0x64,0x3b,0x58,0xe6,0xe3,0xb2,0xd7,0x20,0xb8,0x85,0xfb,0x35,0x96,0x35,0x5b,0x5f,0xb7,0x9,0x6d,0xe4,0xda,0x25,0xa3,0x12,0x52,0x8,0xb0,0x9c,0x87,0xb6,0x74,0x99,0xc4,0x5e,0xfc,0x54,0xfb,0xbc,0x52,0x72,0xee,0x4c,0x66,0x11,0xfe,0xde,0x1a,0x39,0x10,0x72,0x35,0x8f,0x96,0xfa,0xfc,0xb2,0xd8,0xe2,0xa1,0x8f,0x99,0x8f,0x4a,0x21,0x1b,0x15,0x3a,0xfc,0xe8,0x90,0x5b,0xac,0x9,0xd,0x6b,0xe2,0x62,0x96,0x53,0x7e,0x73,0x14,0x57,0xcd,0x28,0x21,0x31,0x6d,0x5f,0x9d,0xb9,0x20,0xeb,0x8a,0xfe,0xee,0x1d,0xba,0xc9,0x6e,0x44,0x5b,0xa3,0x88,0xcb,0x5d,0x88,0x69,0x7e,0xce,0x32,0x31,0xe3,0x27,0xc7,0xc3,0xc3,0xd9,0xa1,0x6f,0x7a,0x45,0x10,0x48,0x24,0x74,0xcb,0x27,0x14,0x20,0x6c,0xf3,0x43,0x73,0x7b,0x2b,0x66,0x3b,0xd3,0xf8,0x9e,0x51,0xf,0x46,0x43,0x1c,0xdb,0x92,0xf4,0x44,0xb0,0xca,0x77,0xc1,0xe,0xb9,0xb5,0xea,0xa3,0xc6,0x5d,0x4b,0x2a,0x6c,0xbc,0xd8,0x4b,0xe4,0xc2,0x28,0xb8,0x22,0x4,0x1c,0x83,0xcc,0x25,0xd0,0x20,0x40,0xad,0x23,0x99,0x2e,0xc8,0x5c,0x25,0x23,0x1d,0xd1,0x9d,0x2c,0xc3,0x66,0x35,0xe4,0x4f,0xad,0x8f,0x1,0x36,0xb7,0x9c,0xee,0x53,0x2f,0x32,0x49,0xc9,0x6e,0xdc,0xd3,0xd7,0x66,0x9f,0x87,0x1e,0xb2,0xd1,0x62,0x7d,0xd9,0x14,0x44,0x82,0x11,0x3f,0xbd,0xe,0xc4,0xc1,0x6c,0x29,0x4,0xaa,0xe2,0x65,0x1f,0xf5,0xb1,0x17,0x3e,0xd3,0xcc,0x3f,0x42,0xd7,0x1b,0xfd,0xac,0xec,0x42,0x8d,0x31,0xc8,0x71,0x20,0x1a,0x91,0xca,0x22,0x41,0xce,0xd8,0x35,0xc0,0x79,0x45,0xa4,0xc3,0xb0,0x2d,0xe0,0x6d,0x71,0x4f,0xf2,0x46,0x6b,0x81,0x72,0x12,0x3c,0x8e,0xd6,0x11,0xad,0x36,0x2,0x22,0x54,0x3b,0xc,0xaf,0xaa,0xb8,0xbe,0xbe,0xc6,0xd9,0xf9,0x1,0x4f,0x3d,0xf9,0x34,0x3e,0xf1,0xcf,0xfc,0x39,0xdc,0x77,0xf3,0xe6,0x50,0xb3,0x38,0xf7,0x25,0x13,0xe2,0x5a,0xb1,0x4f,0x25,0xdf,0xf9,0xf1,0x80,0xee,0x5d,0x5d,0xe2,0x89,0x27,0x9e,0xc2,0xba,0xae,0x71,0x6,0xe8,0x28,0x84,0x62,0xa6,0x1c,0x6f,0x27,0xa3,0x67,0x7d,0x54,0xa3,0xb1,0x12,0x7b,0xa1,0xc7,0x9f,0xd7,0x32,0x3a,0xc1,0xb8,0x60,0xd6,0xb1,0xfe,0x28,0x18,0xa9,0x83,0x8e,0xbd,0x49,0x31,0x2f,0xdc,0x2c,0xbb,0x46,0x27,0x88,0x42,0x6b,0x1b,0xb6,0x23,0x79,0xa9,0x4c,0x32,0xb3,0x94,0x5c,0x87,0x9b,0xa0,0x5f,0x68,0x4a,0x17,0x16,0xf3,0xbc,0xa5,0x85,0xc5,0xac,0x35,0x26,0xd5,0xe5,0x2c,0x3b,0xe0,0xff,0x61,0x3d,0x6c,0x10,0xac,0x87,0x5,0x9b,0x59,0x6,0xbc,0x19,0x87,0x2f,0x8e,0x35,0xa2,0x44,0x60,0xf6,0x34,0x4f,0xdb,0x6,0x62,0xd7,0xcd,0xa4,0xba,0xc5,0x4a,0xb5,0x29,0xe,0x39,0xab,0x8f,0x1e,0xb5,0x4b,0xc0,0xcd,0xf2,0x59,0x81,0x93,0x8,0x85,0x92,0x80,0x86,0x1a,0x4a,0x54,0x83,0xd,0x7f,0xd0,0x43,0x1,0x81,0x62,0xec,0x72,0x22,0x28,0x52,0xca,0x5a,0xe9,0xc8,0x94,0x1a,0xe5,0x18,0xf8,0xf7,0x17,0x26,0x2d,0xee,0xcf,0x3e,0x6f,0x8e,0xa2,0x99,0xb6,0xfc,0xb3,0x8d,0x4c,0xb8,0x98,0x97,0x2a,0x7e,0x48,0x31,0xfa,0x21,0x54,0x74,0xb5,0x7d,0xa5,0x11,0x68,0x6e,0x4b,0xd5,0x44,0x83,0xf5,0x19,0xbf,0x9b,0x9d,0x4c,0x16,0xe,0x4,0x33,0xba,0xb4,0x23,0x25,0x35,0x21,0x73,0xa9,0x22,0xd9,0xb2,0xb9,0xfb,0xb7,0xd6,0x5c,0xb8,0x62,0x83,0x7c,0x21,0x61,0x65,0xea,0xde,0xe5,0xc2,0x19,0xea,0xa1,0x35,0xed,0x1d,0x59,0x1b,0x9f,0x88,0xb9,0x5d,0xa8,0xeb,0xcd,0x3d,0x8a,0x91,0xab,0x55,0xb6,0xfb,0x6c,0xdd,0x72,0x13,0x2a,0x64,0xa3,0x4b,0xdd,0xb7,0xc,0xe3,0x91,0x41,0x46,0xd2,0xc0,0xdd,0x7,0x6c,0x57,0x18,0x94,0xa8,0x9e,0xe8,0x52,0xc9,0x95,0xb3,0xcd,0x6d,0x40,0x44,0xfe,0x1a,0x8d,0x18,0xdf,0xdc,0xd4,0xd6,0xe1,0xcd,0x38,0x70,0x25,0xf2,0xb8,0x7d,0x16,0x8a,0x96,0x41,0x1b,0x9e,0xcf,0x9d,0xa4,0x9f,0x2d,0x1c,0xef,0x18,0x56,0x2f,0x55,0xba,0xd4,0xab,0x33,0x32,0x9a,0x2d,0xb,0x59,0xd,0xd6,0xed,0x78,0x4a,0x4a,0x3c,0x86,0xc9,0x83,0x41,0x86,0xcc,0x12,0x4e,0x5e,0x31,0x22,0x7f,0x5a,0x1e,0x50,0xe5,0x67,0x50,0x8c,0x6d,0x64,0x1e,0x89,0x55,0x9,0x9f,0xff,0x5d,0x4c,0xa1,0x1e,0xd,0xf5,0x82,0xd2,0x9c,0x5f,0xa7,0xa5,0x78,0x76,0xab,0x12,0x9a,0xe1,0xf4,0xb2,0x17,0x23,0xa3,0x23,0xd7,0xc8,0xf,0xe2,0x23,0x58,0x67,0xcf,0xa,0x5,0x25,0x78,0xd9,0x9f,0xf,0xcb,0x30,0x74,0xa4,0x1c,0x9,0x33,0x7d,0xb7,0x91,0x97,0xdd,0x37,0xe4,0x71,0x24,0xe9,0x58,0xf8,0xe6,0x4a,0xea,0xbd,0xa5,0x5f,0x10,0xd6,0x8,0x31,0x19,0x73,0xf6,0x46,0x5,0xb8,0xf9,0xe1,0xa8,0x5e,0x9c,0x3b,0xb9,0x68,0x10,0x4d,0x47,0xb7,0x20,0x25,0xf7,0x1d,0x27,0xa6,0xd7,0x9a,0xa6,0x51,0xc2,0xa1,0xa3,0x24,0xa9,0xb5,0xfe,0x9e,0x44,0x49,0x22,0x8b,0x91,0xea,0x38,0xe2,0xa9,0x27,0xda,0x78,0xa0,0x66,0x4e,0x8e,0xf2,0xd7,0xef,0xe3,0x2a,0x55,0x2e,0xe2,0xc6,0x61,0xa4,0x2d,0xba,0x3e,0x21,0x42,0xb1,0x5f,0x2e,0xdd,0xdf,0xdf,0x4a,0xb0,0xd3,0x48,0x53,0xf,0x48,0x5c,0x21,0xd8,0xae,0x8f,0x10,0x18,0xae,0xee,0x5d,0xe3,0x5,0xef,0xf3,0x5c,0x7c,0xde,0xe7,0xfe,0x5,0x22,0xe2,0x4b,0x15,0x97,0x98,0x61,0xef,0xab,0x58,0x91,0xa7,0x77,0xbd,0xeb,0x31,0x3c,0xf6,0xd8,0xe3,0x58,0x74,0x9,0x63,0x20,0xb,0xae,0x4e,0xea,0xca,0x65,0x4,0xb9,0x48,0x8c,0x42,0x74,0xb8,0xb5,0x8d,0xe0,0x2c,0xc9,0xb5,0x13,0x12,0x2d,0x52,0x0,0x40,0xda,0xe0,0x83,0xb1,0xbd,0x33,0x83,0xa3,0x3,0x62,0x6f,0x16,0xb2,0x4f,0x55,0x4d,0x23,0x18,0xdf,0x2b,0x4e,0x76,0x23,0xeb,0x3f,0xd1,0xbc,0x80,0x80,0x53,0x51,0xdb,0x56,0xe6,0xc1,0x1e,0x11,0x22,0xe4,0x1f,0xe0,0xe7,0x64,0xb7,0x4e,0xa6,0xa8,0x68,0x1b,0x8a,0x8e,0x20,0x13,0xba,0xaf,0xb1,0x6,0x8a,0xea,0xa9,0xa3,0x8d,0x90,0xe7,0x66,0xd9,0x48,0x99,0x58,0x27,0x26,0x2a,0x75,0xa8,0xc5,0xaa,0x76,0x19,0x1,0x40,0x8,0x54,0x71,0x81,0x16,0xee,0x43,0xd6,0xc7,0x24,0xb5,0xf6,0x72,0x9e,0xd7,0x78,0x90,0x10,0xad,0x1a,0xc6,0x58,0x36,0x7c,0x3e,0x15,0x6b,0x25,0x11,0xb0,0xce,0x62,0x85,0x9e,0x3,0x84,0x63,0xc3,0x5a,0x12,0xf6,0x8,0x2d,0xf3,0xd1,0x9a,0x59,0x75,0xdb,0xf3,0x0,0x9e,0xf0,0x8c,0xa0,0xb6,0xa6,0x8d,0x17,0x12,0x21,0x6e,0x44,0x64,0x4c,0x92,0xaa,0xd0,0x0,0xdf,0xc2,0x78,0x8e,0xc9,0xbc,0x58,0x10,0xdf,0x43,0x49,0x92,0x6c,0x3,0x39,0x5c,0xfd,0xb0,0x50,0xaa,0xd6,0x6d,0x72,0xd5,0x12,0xb2,0x94,0x85,0x54,0xb3,0x91,0xe,0x27,0xa5,0xcf,0xf5,0xa4,0xe6,0xce,0xc4,0xbe,0x70,0xf1,0x23,0xcb,0x50,0xba,0x68,0x3d,0x22,0xb5,0xcf,0x7b,0xc6,0x22,0x53,0x9a,0x5f,0x49,0x4e,0xe0,0xe2,0x75,0x7a,0x50,0x89,0xd2,0xc2,0xd1,0x41,0xc6,0x6b,0xc3,0xee,0xd2,0x89,0x90,0x94,0xe0,0x66,0xcd,0x82,0xc,0xe1,0x81,0x2c,0xa0,0xf4,0x41,0x9,0xc9,0x14,0x37,0xf0,0xd3,0x85,0x3d,0xe1,0x5d,0xa9,0xcb,0xac,0xa6,0xb,0x12,0x44,0x22,0xbe,0x70,0xf2,0xf0,0x4b,0xe8,0x44,0xa,0x4c,0x15,0x78,0x5f,0x24,0x74,0xb1,0x94,0x4b,0x63,0x41,0x18,0xd2,0x29,0xab,0x7,0x10,0x25,0x7c,0x17,0xc5,0x83,0x31,0x5c,0x44,0xd7,0xec,0xe8,0x82,0xbd,0x22,0xd,0xe7,0xbd,0x90,0x1d,0xb5,0xa2,0x4d,0xcf,0xf7,0xe7,0x8b,0x51,0x76,0x4c,0x7a,0x29,0x1,0x3e,0x3c,0xeb,0xb4,0xbc,0x84,0x91,0x21,0x33,0x29,0x5b,0x43,0x30,0x99,0x85,0xec,0x4b,0x1d,0x22,0x54,0x32,0x46,0x11,0x42,0x97,0xa4,0x8c,0x27,0x25,0xf6,0x29,0x2b,0x4f,0xd,0x33,0x19,0x28,0x8d,0x8a,0xfc,0xd2,0x8c,0x57,0x66,0x2,0x5b,0x5c,0x93,0x3c,0xba,0x3d,0xb0,0xb9,0x8f,0x77,0x39,0x12,0xb6,0xae,0x85,0xfc,0x19,0x86,0x34,0xb4,0x66,0xe2,0xea,0x6d,0xd9,0xa5,0x14,0x96,0xa4,0x12,0x4a,0x61,0x99,0xed,0x40,0x9e,0x1b,0xd9,0x4d,0x4b,0xb1,0xf2,0x2c,0x23,0x3d,0x3e,0x8c,0x7c,0x9e,0xa4,0x42,0xd1,0xa4,0x73,0xa6,0xbb,0xec,0x8d,0x99,0x75,0x90,0x75,0xbd,0x50,0x71,0x5b,0x54,0x4b,0xa6,0x7f,0x86,0xa8,0xa4,0x69,0x8e,0x8c,0xb5,0xa5,0xe2,0xa3,0x3d,0x8b,0x66,0x52,0x40,0x9f,0xa1,0x11,0xdb,0xb8,0x49,0xda,0x93,0xc6,0x96,0x72,0xde,0x88,0x5f,0x76,0x99,0x21,0xe1,0x7,0x7a,0x90,0x94,0x86,0x1d,0xf1,0x41,0x81,0x27,0xef,0x5c,0xe1,0xc1,0x5b,0x17,0xf8,0xc7,0x7f,0xef,0x7f,0xc1,0x1f,0x7a,0xf1,0x8b,0xd0,0x66,0x43,0x44,0xdb,0x73,0x68,0x20,0x15,0xa1,0xf2,0xaf,0xbd,0xe5,0x77,0xde,0x86,0xa7,0xee,0xdc,0xc5,0x61,0x3d,0x2b,0xcd,0x90,0x10,0x5e,0xaf,0x43,0x9d,0xe3,0x5d,0xa3,0x3f,0xab,0xae,0x62,0xd0,0x80,0x84,0x95,0xd3,0xfd,0x2,0x15,0xc9,0xfc,0x10,0x1d,0xa3,0x3e,0xd1,0x7e,0xee,0x69,0xe4,0xa2,0x84,0xc5,0xdf,0x40,0x94,0x52,0xe5,0x63,0xc5,0x8a,0xd8,0xcf,0x8,0x2d,0xe7,0x53,0xe3,0x59,0x25,0xe9,0x2d,0xfc,0xbc,0x99,0x86,0x63,0x45,0x5a,0x17,0xe3,0x4b,0xda,0x63,0xf1,0xde,0xbd,0xa0,0x45,0x1b,0x8d,0x82,0x16,0xae,0xe,0x22,0x71,0xd4,0x62,0x16,0xdd,0x28,0xad,0x32,0x90,0xdd,0xd6,0xb,0xbf,0x18,0x25,0xc4,0xd8,0xac,0xf3,0x53,0xdc,0x3a,0xa5,0x9f,0x13,0x9a,0x8,0xa5,0xd4,0xe1,0x84,0x34,0xba,0xa0,0xb5,0xea,0x5a,0x79,0x7c,0x29,0x13,0x73,0xd8,0xcf,0x1f,0x9b,0x46,0x8,0x4a,0xa6,0x6b,0x79,0xa6,0xe5,0x39,0xab,0x53,0x92,0x91,0x70,0xe1,0x1b,0x6b,0x5c,0x8a,0x9b,0x21,0x66,0xb2,0x32,0x69,0xf4,0xcb,0x18,0xcf,0xfd,0x60,0xcc,0x4e,0x81,0xa9,0x15,0xc5,0xf4,0xcb,0x9f,0x2e,0xfc,0xf8,0xa3,0x3,0xbd,0xd1,0xd1,0x24,0xb6,0x40,0xcc,0x72,0x48,0xba,0x8a,0xb0,0xf2,0x99,0xcd,0x1e,0x65,0xa7,0x5d,0x8c,0xd9,0x37,0x7b,0xd5,0x88,0x94,0xb9,0x2d,0x64,0x1c,0xde,0xfe,0xb0,0xcb,0xe,0x4c,0x69,0x5c,0x10,0x84,0xbc,0x6a,0x6d,0x44,0x12,0x59,0xfc,0xf0,0xd9,0x52,0x67,0x6a,0xae,0x19,0x15,0x72,0x5c,0xb2,0x7d,0xd7,0xe1,0xf0,0xa4,0x27,0x50,0x6d,0xd4,0xe9,0x5,0x9d,0x87,0x1d,0x72,0xef,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x99,0xb,0x87,0x21,0xd,0x6a,0x7e,0x78,0xd7,0xec,0x1,0x31,0x39,0xd,0xf7,0xd0,0x85,0x25,0x73,0x53,0x1d,0x1d,0x8a,0x13,0xa8,0x52,0x65,0x28,0x56,0xf,0xdd,0xe8,0x8,0x86,0x7e,0x36,0x8d,0x1a,0xb4,0x4a,0x70,0x35,0x2f,0xa9,0x4c,0xa,0xa1,0xb9,0xa0,0x5b,0x78,0x3a,0xb1,0x65,0xac,0xd0,0x34,0xd7,0x12,0x92,0x37,0x71,0xb7,0x3c,0x2e,0xb8,0xe6,0x5d,0x7a,0x23,0x49,0x9d,0x94,0x79,0x73,0x39,0x2d,0xca,0x3a,0x98,0x38,0x1f,0x92,0x4e,0x5d,0xb5,0x68,0x66,0x43,0x9a,0x13,0xb8,0xbf,0x1b,0x73,0xa8,0x79,0xe2,0x41,0xb0,0xbb,0x43,0x1d,0xef,0x6b,0x80,0xa4,0x31,0xea,0xa4,0x3e,0x24,0x1c,0x26,0x1,0x83,0xd6,0x70,0x90,0xe,0x9f,0x4b,0x8e,0xb4,0xd8,0x4a,0x33,0x12,0x7c,0x25,0xf4,0xe4,0x2e,0xd1,0xb4,0x51,0x60,0x1a,0x13,0xfb,0x34,0x8b,0xa6,0x1d,0xfd,0x81,0xb,0x1f,0x45,0xf8,0x24,0x80,0x32,0xee,0xd9,0x3a,0x34,0x49,0x93,0xf5,0xe0,0x32,0xa9,0x66,0x2c,0x9,0xc5,0x6b,0x40,0xea,0x20,0x37,0x35,0x29,0xb6,0x67,0x13,0xf6,0xab,0x14,0x50,0x26,0xa7,0xe8,0xe6,0x34,0x8b,0xd7,0x54,0x93,0x70,0xf2,0xa2,0xef,0x51,0x25,0xca,0x71,0x97,0x10,0x2,0x9b,0x73,0x64,0x6,0x41,0x4e,0x58,0x7d,0x51,0x18,0x98,0x2d,0xb3,0xc3,0x1,0x60,0xdb,0x82,0xba,0xc8,0xc9,0x90,0xc6,0xa1,0x48,0xb4,0xd1,0x3a,0x29,0x57,0x87,0x3b,0x99,0x42,0xc5,0xf0,0xa1,0x1f,0xf4,0x62,0xfc,0xa3,0x2f,0xfd,0x42,0xfc,0xa9,0x8f,0xfd,0x28,0x1c,0x47,0xae,0x39,0x26,0xe3,0x21,0xdb,0xb9,0x3f,0xd6,0x33,0xcc,0xff,0xf9,0xa5,0x7f,0xff,0xab,0xd8,0xb6,0xd,0xe7,0x17,0x4a,0x58,0xc9,0x20,0x21,0xfa,0xec,0x77,0x9c,0x19,0x5a,0x9e,0xf5,0xf8,0x55,0x9d,0x37,0x61,0x30,0x5b,0xe2,0x33,0x77,0x77,0x3d,0xcf,0x73,0x30,0x23,0x78,0xdf,0x2c,0x2f,0x35,0x3b,0xe1,0x70,0x2a,0xe9,0xa,0xe8,0xa3,0xcc,0x28,0xaa,0x65,0x29,0xa9,0x8a,0x11,0x13,0x3e,0xcc,0xd4,0x8c,0xb4,0xde,0xa2,0x5c,0x8b,0x5b,0xf9,0xf9,0x39,0x36,0x4e,0xa5,0x49,0x7a,0xe6,0x1a,0xcd,0x7b,0x69,0x4f,0x9a,0xec,0xa4,0x66,0x11,0xc5,0x6c,0x52,0x2e,0x55,0x90,0xad,0xb9,0x77,0xfa,0x36,0xc5,0xfc,0x62,0xc0,0xf0,0xe1,0x33,0x40,0xcf,0x1a,0x8c,0xf4,0xc5,0x27,0xab,0xc4,0xa5,0x42,0xb9,0x4,0xcb,0x39,0xcb,0x23,0x11,0x3a,0x73,0xb,0x8e,0x2e,0xd5,0x1b,0x2,0x24,0x8b,0x83,0x90,0x5c,0x6e,0x1b,0x24,0x4d,0xd3,0x2c,0x6c,0x7,0x64,0x22,0xa2,0x40,0x6b,0x9d,0xa3,0x10,0x8a,0x2d,0x29,0x26,0x4c,0xe1,0x93,0x30,0x5,0xf8,0x98,0xd4,0xc0,0x27,0x94,0x82,0xdd,0x8a,0x38,0x3a,0x94,0x29,0xe4,0xf1,0x81,0x2a,0xef,0x67,0x1f,0xbf,0x34,0x29,0x1b,0xe7,0xde,0xda,0xb3,0xfc,0x58,0x62,0x97,0xf3,0x3a,0xb1,0xfd,0xcc,0xa7,0x1e,0xd8,0x12,0xd0,0x4f,0x18,0x33,0xf8,0x3,0x1c,0xf6,0xa1,0x22,0x1d,0x66,0x97,0xa5,0x33,0xdb,0x55,0xb2,0xaa,0x9,0xd8,0xb8,0x21,0x89,0x3d,0x9a,0x87,0x4f,0x98,0xe8,0xc,0x96,0x5a,0xb0,0xc9,0x79,0x43,0x6f,0x79,0x8,0x87,0xcb,0xd7,0xc8,0x97,0xc7,0xd6,0x67,0xac,0xe2,0xd0,0x87,0xcf,0x64,0xca,0x60,0x7f,0xfc,0x39,0x4d,0xdf,0x72,0xe1,0xc0,0x6d,0x37,0x6b,0x58,0xfc,0xaf,0x74,0x32,0x93,0xf0,0xe1,0xbc,0x8d,0x62,0x25,0x7c,0xf9,0xb3,0xfc,0xd2,0x56,0x8b,0x25,0x93,0x42,0x9d,0xcd,0x58,0x5e,0x8f,0x99,0xd5,0x4c,0xaf,0xaa,0x55,0x5f,0x9a,0xbc,0x48,0xe2,0xe4,0x59,0xe4,0x4a,0xe6,0x40,0xca,0xe2,0x21,0x3f,0x34,0x5f,0xd3,0x36,0xb9,0xca,0x51,0xa7,0xdd,0x26,0x47,0x5c,0xb7,0x9,0x8d,0x6e,0xb6,0x2e,0xbd,0xd0,0x22,0xb7,0xfe,0xfe,0x3c,0xfd,0x69,0x5e,0xe8,0x1,0x6f,0xd1,0x42,0xc,0x5b,0x5d,0x72,0x30,0x4c,0xa8,0x7a,0x5c,0x5e,0x92,0x41,0x31,0x51,0x8c,0x2a,0x4b,0x1f,0x53,0x6e,0xea,0xa6,0x56,0xa1,0xdd,0x97,0x1c,0xaf,0x60,0x67,0xa5,0x99,0x9a,0xfb,0x29,0x1,0xb6,0x93,0x92,0xb4,0xc2,0xca,0x20,0xd3,0x11,0xb6,0x28,0x2e,0xd6,0xa1,0xcd,0x68,0x4e,0x9c,0x10,0xa0,0x30,0xac,0xdc,0x68,0x5d,0xb0,0x15,0x33,0x1c,0x1a,0xb7,0x9a,0xf2,0x87,0xaa,0x2a,0x49,0xc9,0x96,0x15,0x85,0x89,0x11,0x3d,0xc4,0xe6,0x8,0xec,0xc6,0xe,0x63,0x16,0x5,0x57,0xe4,0x37,0x8c,0xaf,0xeb,0x3c,0x4b,0x84,0x5,0xbf,0x21,0x7c,0x2a,0x58,0x89,0x40,0x2e,0x9c,0xc7,0xad,0xe1,0xc6,0xc5,0x19,0xfe,0xf4,0x9f,0xfa,0x13,0xb8,0x75,0xe3,0x0,0xc1,0x82,0x65,0x78,0xa,0x84,0x27,0x80,0x65,0x10,0x8d,0x1b,0xb0,0xb8,0x6f,0x40,0x33,0x43,0xb3,0x8d,0x92,0xc4,0x46,0xf9,0x2a,0x1a,0xf3,0x72,0x21,0xa9,0x9a,0x33,0xf9,0x31,0x66,0xbf,0x17,0x37,0x2e,0xf0,0x5e,0xcf,0x7f,0x2e,0xfe,0x93,0x97,0x7e,0x18,0x3e,0xfa,0x8f,0x7d,0x4,0x6e,0xdd,0x77,0xb,0x9b,0x35,0xac,0xba,0x64,0x1,0xbb,0x13,0x84,0xec,0xdc,0x4e,0x2a,0x39,0x18,0x82,0x9f,0x7e,0xed,0xeb,0xa0,0xcb,0x92,0x7,0xee,0x28,0x24,0x2d,0xa4,0x68,0xee,0x4d,0xe0,0xee,0x75,0xc9,0xd7,0x48,0xd4,0x8c,0x26,0xb8,0x9b,0x41,0xb4,0xc5,0x32,0x28,0xf0,0x31,0x75,0xac,0xc6,0xeb,0xc0,0x52,0xe9,0x22,0xb4,0xae,0x74,0xe8,0xdd,0x5d,0x3a,0x36,0x78,0x7a,0x94,0xfb,0xd0,0x6d,0xc6,0x31,0x50,0x4f,0x87,0xdf,0x7d,0x3d,0x37,0xdb,0x9f,0xdf,0xd6,0x3a,0x74,0x5f,0x60,0x70,0x2e,0xb6,0xd,0x14,0x36,0x43,0x5,0x3f,0xfb,0x11,0x3b,0x2,0xe6,0x9c,0x8a,0x46,0xe1,0x41,0x8d,0x9a,0x46,0x74,0xae,0x8b,0xf3,0x34,0xba,0x63,0xb7,0xef,0xef,0x16,0x45,0xab,0x7b,0xbd,0xc0,0xbb,0x76,0xad,0xf3,0x7d,0x1f,0x23,0x4b,0x20,0x44,0x12,0xeb,0x5c,0x8,0x5a,0xf,0x1f,0x2,0x21,0xcf,0x11,0xd5,0x9c,0xa9,0xf8,0xc5,0xbe,0xd0,0xec,0xde,0x11,0x97,0x96,0xce,0x98,0x11,0xdc,0x25,0xe8,0x5e,0xa,0x3e,0xfa,0xf1,0x9c,0x88,0x45,0xc6,0xed,0x69,0x31,0x82,0x8e,0x47,0xd6,0xfa,0xba,0xf1,0x62,0x58,0x9,0xd1,0x73,0x1f,0x8f,0xe8,0x6f,0x8b,0xa5,0xe1,0x68,0x62,0x48,0x87,0xcf,0xe6,0x3e,0x31,0x72,0x6c,0xd2,0xef,0x2f,0x5f,0xcb,0x13,0x37,0xda,0x5a,0xf0,0x11,0x3b,0x3a,0x6f,0xc1,0xea,0xa7,0xe,0x5f,0x52,0xa7,0x1f,0xa4,0x93,0x6a,0xfe,0x44,0x9,0x4a,0xe,0xd7,0xa7,0x56,0xd6,0xd8,0x51,0xc9,0xaa,0xb3,0x56,0xcc,0x5d,0xbd,0x52,0x74,0x73,0x11,0x9b,0x3d,0x4,0x2c,0x1a,0x25,0x29,0x2e,0x14,0xf4,0x77,0xa,0x5f,0xb7,0xe6,0xa1,0x5b,0x43,0x61,0x3e,0x5a,0x84,0xe9,0x50,0xf7,0xd4,0xac,0x24,0xa1,0x89,0x3a,0x91,0x8b,0xdc,0xc2,0xe8,0xbb,0x7,0xf7,0xc5,0xe1,0x3a,0x9a,0xf7,0xc9,0xc4,0xd6,0x64,0xac,0xdf,0x28,0x18,0x22,0xab,0x4a,0xc9,0x78,0x62,0xee,0x9e,0x95,0xaa,0x3e,0x36,0x68,0x28,0x95,0xde,0xf0,0x3d,0x80,0x54,0xa2,0x12,0x13,0x3a,0x2c,0xe7,0x7c,0x1e,0xb1,0xee,0xb3,0xda,0x46,0xf6,0x91,0xca,0x79,0x24,0x32,0x13,0xb7,0x48,0x7,0xc,0x2a,0x3c,0x2c,0xe3,0xc6,0x75,0x36,0xe9,0x43,0xb5,0x25,0x16,0xa5,0xf7,0x27,0xa0,0x94,0x42,0xee,0x8c,0x9,0x46,0xf0,0x2e,0xa0,0xd5,0x8d,0x3b,0x7b,0xae,0xb9,0x3b,0x5a,0x14,0x7f,0xcd,0xfa,0xc1,0xa5,0x6,0x36,0xab,0x2a,0x8e,0x62,0xf4,0x5e,0x5a,0x4b,0x5d,0x70,0x10,0xca,0x28,0xc3,0x3e,0x2,0x7e,0x7c,0x59,0x36,0x43,0x45,0xed,0x8,0xa2,0x93,0x39,0xb1,0x8e,0x63,0xbf,0xa7,0xe7,0x37,0x59,0x3a,0x17,0x98,0x5d,0xa7,0x9c,0x79,0xdf,0xad,0x36,0x8d,0x68,0x45,0x28,0xed,0x6c,0x98,0x8c,0x34,0x64,0x4e,0xbc,0xa4,0xe1,0xe,0x4f,0xf6,0x85,0xac,0x79,0xb9,0x89,0xb6,0xdd,0xf3,0x77,0x6f,0x80,0x96,0x44,0xd3,0xc1,0x88,0x36,0xb8,0xf5,0xb5,0x62,0xdb,0x7a,0xb0,0xcc,0x83,0xf,0xde,0xc2,0x3f,0xff,0xea,0x2f,0xc5,0x8d,0x8b,0x1b,0xf8,0xff,0xea,0xbc,0x64,0xc4,0xd6,0xcf,0xfc,0x74,0xcc,0xd0,0xd8,0xf4,0x7b,0xde,0x14,0x24,0xf2,0xe2,0x8,0xf2,0x66,0x36,0xc,0x71,0x98,0x13,0x80,0x9d,0x43,0xdb,0x4c,0x7a,0xe5,0xff,0x7e,0xfb,0x3b,0xde,0x81,0x9f,0xff,0xc5,0x5f,0xc1,0xd9,0xe1,0x2c,0x10,0xbf,0x36,0x9e,0x35,0x43,0xf5,0xc9,0x65,0xca,0x22,0x2a,0x47,0x3d,0x28,0xf1,0xa8,0xe1,0x5a,0x21,0xb6,0xd3,0xae,0xc4,0x26,0x5e,0xa9,0xb8,0xe6,0x88,0x9,0xe2,0x7,0x25,0x6a,0x91,0xa3,0x8a,0x2e,0x41,0x6,0xc5,0x7c,0xa7,0x5a,0x44,0xf9,0xf5,0x4c,0x79,0x7,0x3b,0x59,0x9e,0x1b,0x13,0x9,0x31,0xbb,0x8c,0x1a,0x1c,0x57,0xea,0xf0,0xa8,0xc9,0x9b,0x22,0x77,0x1e,0x53,0xe2,0xe0,0x48,0x8e,0x74,0xd2,0xcf,0xc1,0x22,0x79,0x54,0xcc,0x88,0x5f,0x42,0x88,0xe,0xa3,0x87,0x56,0x47,0x5d,0x4c,0x2a,0x35,0xa3,0x8a,0xc4,0x43,0xd5,0xc4,0x8,0x75,0xdd,0x2b,0x80,0x8d,0x8,0x8f,0xbb,0x31,0x5a,0x70,0xc7,0x50,0x66,0x68,0x59,0x2f,0x6b,0xbc,0xe1,0x32,0xae,0xa,0x61,0xbf,0x4c,0x4e,0x84,0x8c,0xa2,0x72,0x8c,0x73,0xb6,0x50,0x6c,0xbf,0x6c,0xa5,0xc1,0x9b,0xbc,0x75,0x4e,0x30,0xd,0xcb,0x28,0x19,0x56,0x24,0xe8,0xa9,0x8,0xab,0xc4,0x33,0x2f,0x2e,0x86,0x6a,0x46,0xa3,0xda,0xf4,0x3,0xc7,0x23,0x11,0xc3,0x98,0x86,0x2b,0x88,0x36,0x88,0x9e,0xec,0xdb,0xcc,0x33,0xf,0xab,0x8,0xa3,0xa9,0x11,0x11,0xb,0xc0,0x66,0xa4,0x75,0x1c,0x9d,0xfc,0x38,0x78,0x33,0x85,0xcb,0x43,0x53,0x32,0xaa,0x60,0xc8,0x43,0xbb,0xbe,0x9a,0x8f,0x34,0x99,0x4c,0x73,0x72,0x8c,0x9a,0xc9,0x52,0x4a,0xb1,0xef,0x8d,0xa4,0xd,0x92,0xb0,0xbf,0xbb,0x90,0x5,0x39,0xc6,0x9f,0x89,0x7a,0x63,0x49,0xcc,0xd0,0x46,0x2f,0xcd,0x9,0x60,0x13,0x94,0x15,0x18,0x29,0xcd,0x9e,0xdc,0xf8,0xa1,0x77,0xa9,0x34,0x94,0xd1,0xf1,0x5a,0x9a,0x75,0x9e,0x9e,0x43,0x81,0xa0,0x87,0x59,0x92,0xc8,0x76,0x1e,0x16,0xd4,0x81,0xa2,0xb4,0x70,0xfe,0x3a,0xfb,0xa3,0x6f,0xb9,0x51,0x84,0x92,0xc9,0x8,0xea,0x63,0x2,0x50,0xc0,0xf6,0xe2,0xbe,0xee,0x79,0xd1,0x3a,0x27,0x51,0xb4,0xda,0x91,0xc2,0x86,0x45,0xb2,0x12,0xa7,0x41,0x48,0x46,0x65,0xb2,0x77,0xc8,0xf4,0x82,0xb1,0x49,0xa4,0xd6,0x5,0x41,0x86,0xe3,0x38,0xa3,0x7c,0x4d,0xff,0x8,0xa8,0xc5,0xb3,0xb4,0x26,0xe9,0xbf,0x5e,0xac,0xf3,0x13,0x39,0x72,0x47,0xb9,0x78,0x3e,0xd5,0xb1,0xb4,0xc6,0xeb,0xa1,0x38,0x27,0xe7,0x41,0x4e,0x3e,0x17,0x9c,0xfa,0x16,0xc1,0xe2,0xb3,0x2f,0x27,0xe7,0x47,0x78,0xeb,0xe1,0xf,0x50,0x67,0xd3,0x27,0xd4,0x7,0xbb,0x60,0xe2,0x4,0x60,0xf2,0xf1,0x47,0xc9,0x2b,0x77,0x79,0x42,0xef,0x84,0x1a,0x39,0xef,0x21,0xec,0x61,0x31,0x2b,0x33,0xd8,0x2e,0xd8,0xa4,0xc8,0x36,0xcd,0xb,0xd2,0x61,0x87,0x2b,0xe4,0x27,0xbe,0xe8,0x8a,0xcb,0xab,0x6b,0x3c,0xfe,0x9e,0x27,0xaa,0x7,0x1e,0xaf,0xd5,0x13,0xf9,0xe5,0xb0,0x6a,0x44,0x82,0x49,0x54,0x26,0x9c,0xfd,0xce,0x7,0xf,0x2d,0x74,0x2b,0xeb,0x53,0xb,0x9,0xcf,0xd7,0xc6,0x9e,0xe6,0x78,0xc2,0xad,0x6f,0xfa,0xe7,0x55,0xaf,0xf9,0x29,0xbc,0xf3,0xdd,0x4f,0x62,0x59,0x56,0xfa,0xfe,0x49,0xa6,0xf2,0x50,0x22,0x66,0x62,0x97,0xf0,0xa2,0x26,0xe4,0xb6,0x37,0x2d,0x27,0x5a,0x63,0x6e,0x27,0x1e,0x73,0xf3,0xe9,0xec,0x74,0x93,0x1b,0x8,0x8d,0xad,0xcc,0xa,0xab,0xdb,0x1d,0x41,0x9d,0x38,0xc9,0x16,0x19,0xa2,0x15,0x61,0xab,0x59,0xae,0x13,0xb,0x59,0x50,0x1d,0xe2,0x46,0xa2,0x8c,0x50,0x53,0xdf,0x82,0x97,0x31,0x50,0x54,0x8e,0xe1,0xf6,0x66,0xa9,0x71,0x36,0x99,0x26,0xab,0xdc,0xff,0x7e,0x93,0x40,0x22,0x2,0xf9,0xcc,0xbe,0x71,0x17,0xe4,0x25,0xbe,0xfe,0xdd,0x68,0xc8,0x4b,0x85,0x56,0xb7,0x4a,0x27,0x8,0x37,0x1a,0xaf,0x71,0x21,0x6e,0x21,0x75,0x8b,0xaf,0xb5,0x7a,0xf6,0x74,0xa5,0xb0,0xc5,0x1d,0xd1,0xda,0x5e,0x1b,0x19,0x4a,0x93,0x26,0xa5,0x99,0xf5,0x3b,0x84,0x33,0x10,0x22,0xc3,0xc6,0xcf,0xf5,0x61,0x5b,0x9c,0x52,0x41,0x22,0x5,0xba,0xa,0xc4,0xa8,0x80,0x68,0x56,0x54,0x4b,0x1c,0x75,0x1e,0x76,0xbc,0xfc,0xfe,0x9,0xd,0x11,0x3,0xda,0xe6,0xc6,0x5c,0x20,0xfb,0xf7,0xfa,0x8c,0xd7,0x92,0x96,0x80,0x9c,0x2d,0xc7,0x6,0x21,0x7e,0x17,0x31,0x14,0xa8,0x25,0xe3,0x76,0x56,0x2b,0xa1,0x44,0xb8,0xb5,0x49,0x76,0x98,0x22,0x43,0x46,0xcc,0xea,0x4c,0xc1,0x17,0xc,0x42,0x7a,0xd3,0x4a,0xd0,0x8f,0x6f,0xea,0x86,0x9a,0xe1,0x5c,0x24,0x75,0x5,0xa9,0x1d,0x96,0x8b,0x8b,0x9e,0x60,0x4a,0x8c,0x83,0x50,0xea,0x9c,0x4f,0xf8,0x8d,0x37,0x82,0x5e,0x2b,0x53,0x8c,0x32,0xc4,0x5b,0xf1,0x27,0x48,0xf2,0x5e,0x1e,0xf8,0x22,0x1c,0x0,0x91,0x2f,0x90,0xac,0xef,0x47,0x9a,0x18,0x75,0xaa,0x24,0xcb,0xb,0x84,0x8d,0x21,0x7a,0xce,0x2,0x17,0xe5,0xc8,0x9b,0x64,0x7d,0x4b,0xd5,0xad,0xef,0x53,0x6e,0x33,0xd6,0x97,0x27,0x15,0x6d,0x32,0xcc,0x28,0x1d,0xfa,0x44,0xf0,0x4c,0xc7,0xba,0x8a,0xdc,0xa4,0x83,0xc1,0x29,0x22,0x1f,0xd9,0x4c,0xfa,0x45,0x6a,0x99,0xc3,0xcd,0x17,0x42,0x1c,0xdf,0x96,0x6b,0xcc,0xc8,0x6f,0x9e,0x43,0x4a,0xe6,0xce,0x8e,0xb,0x98,0xaa,0x40,0xb4,0xa,0xa8,0x14,0xac,0x7d,0x36,0x33,0x61,0x8e,0x0,0x89,0xa4,0x31,0xff,0x7d,0x94,0x8b,0x11,0xbb,0xb0,0x23,0x4b,0xa6,0x72,0x9b,0xa,0x1a,0xe2,0xa8,0x40,0x78,0x9c,0x6a,0xbb,0x59,0xb4,0x9d,0x78,0x8f,0x33,0xb8,0x60,0x53,0xa8,0x88,0x59,0xa4,0x43,0x14,0x9f,0x5,0x8e,0x58,0xe6,0xe,0x95,0x39,0x2b,0x6,0x72,0x4e,0x8b,0x78,0x5a,0x81,0xb5,0x23,0x6c,0xc3,0x3e,0xd7,0x41,0x48,0xa5,0x68,0x75,0x44,0x50,0x3a,0x31,0xb3,0x69,0x2d,0x70,0xd3,0xa0,0x93,0x44,0x57,0x48,0x62,0x4c,0x43,0xef,0x66,0x68,0x9a,0x4a,0x89,0xca,0x57,0xb0,0x67,0x12,0x92,0x56,0x15,0x3,0x75,0xb9,0xdf,0xf2,0x9d,0xdf,0x17,0x6a,0xa2,0x20,0x39,0xaa,0x10,0xa1,0x54,0xea,0x5a,0x18,0x1c,0x6,0x56,0x33,0x5,0x6a,0x25,0xa7,0x8c,0x5c,0xa4,0xee,0x2b,0xe1,0x8e,0x9c,0xa,0x16,0x9b,0x8d,0x95,0x11,0xa4,0x47,0x4c,0x6a,0x18,0x87,0xdf,0x3c,0x90,0xcc,0xe1,0xdc,0xd,0x46,0x64,0xb2,0x64,0xa3,0xc7,0x6b,0xf6,0x73,0x54,0x4e,0xc0,0x50,0x52,0x16,0x7c,0x7e,0x7c,0xad,0xce,0xa1,0x65,0x96,0x33,0xd,0xe2,0x65,0x8b,0x60,0x62,0x9b,0x90,0x27,0x77,0x8,0xb5,0x22,0x19,0xdf,0xab,0x7c,0xa5,0x46,0x83,0x4b,0xe1,0xb0,0x57,0x5e,0x8c,0x52,0x2e,0xc,0xc8,0x1f,0xa5,0x38,0x8a,0xb2,0x37,0xbe,0x10,0xaa,0x36,0x17,0x86,0x43,0x3e,0xca,0x65,0xa9,0x92,0xe2,0xc6,0x8c,0x9a,0x32,0x84,0x63,0x6d,0xa2,0xb7,0x2c,0xfd,0x8e,0xe1,0x39,0x11,0xc,0x33,0x77,0xc1,0xad,0x8a,0x79,0x8c,0x96,0x6b,0xcc,0x8a,0x48,0x3a,0x88,0xc5,0x62,0x95,0x77,0x40,0x89,0x81,0xa0,0x5e,0xc2,0x3d,0x1c,0x52,0x5a,0xcd,0x27,0xb1,0x40,0xcd,0x2b,0x3,0x66,0x69,0x97,0x8a,0xd0,0xf6,0xb1,0xe8,0xad,0x55,0x7,0x7,0x3d,0x51,0xd5,0x4a,0xca,0xa8,0x22,0xfd,0xcb,0x7f,0x6,0xd9,0x8d,0x97,0xb8,0x4d,0xef,0xcc,0x98,0x71,0x49,0xd2,0xac,0xa8,0x76,0x92,0xdf,0x94,0x77,0x1,0x41,0xf3,0x31,0x3e,0x18,0x44,0x2e,0x2c,0xcc,0x44,0x7,0xa5,0xe3,0x8d,0x90,0x95,0x85,0x52,0xf3,0x2,0x5e,0x92,0xac,0xf4,0x55,0x2a,0xe9,0xc3,0xea,0xc5,0x89,0x1,0xb3,0x36,0x77,0x49,0x32,0xd6,0x6e,0x64,0xc7,0xdd,0xbb,0x5a,0x45,0xfd,0x22,0xea,0x3c,0xc4,0xca,0x2c,0xa5,0x23,0xd,0x4a,0xac,0x6e,0x22,0xec,0x65,0x83,0xaa,0x51,0xa4,0x89,0xd5,0x48,0x4f,0xbf,0x94,0xad,0x7c,0x86,0x52,0xe,0x5b,0x90,0xf9,0x8e,0xcd,0xa6,0x63,0xf4,0x3d,0x1a,0x1b,0xca,0xb0,0x9,0x8b,0xb2,0x8f,0xae,0x10,0xe9,0xc8,0x55,0x3e,0x74,0x5,0xb7,0x7d,0xfd,0x55,0x17,0x43,0x46,0x80,0xc6,0xba,0x5a,0x28,0x9b,0xba,0xab,0xe5,0x8a,0xd2,0xc0,0x17,0x5a,0x95,0x1c,0x12,0x72,0x38,0x95,0xcf,0xd6,0xa6,0x81,0xba,0x4e,0xf9,0xa9,0xfc,0xf1,0xc8,0x54,0xf4,0x9a,0x4c,0x83,0x36,0xe6,0xbd,0xc8,0xa9,0x45,0x5d,0xa0,0x3,0x9b,0xd7,0xe,0xd9,0xd0,0x1a,0xf3,0xd8,0xa2,0xa8,0x24,0x26,0x75,0x51,0x8a,0xf0,0x78,0x4b,0xa6,0xfd,0x39,0xd0,0xb1,0xe8,0x86,0xa6,0x74,0x37,0xe6,0x4f,0x8,0x49,0x6,0x61,0xd1,0xd9,0x9,0xeb,0x2b,0x45,0xc6,0x5c,0xd9,0xbb,0x3d,0x84,0xf5,0x70,0x1b,0x99,0xf2,0xf5,0x4e,0xcd,0xd7,0x7c,0x8a,0x4f,0x67,0x32,0x45,0x58,0x8f,0x9f,0xc7,0x71,0xd5,0xa2,0x79,0xf6,0x38,0x40,0x2a,0xa3,0xe3,0xd3,0x20,0x9,0x56,0x37,0x39,0x4e,0x38,0x14,0xc8,0x24,0xb1,0xb5,0x5d,0x97,0x6f,0x4c,0xec,0xb3,0xd,0x3f,0xf8,0xea,0x7f,0x8b,0xd7,0xbe,0xee,0x97,0x71,0xb6,0x9e,0x11,0x42,0x22,0x45,0x5e,0x17,0xaf,0xd7,0x52,0x27,0x6d,0x94,0x6e,0x19,0x5f,0x93,0x7a,0x36,0x96,0xf5,0xd1,0x9c,0x8d,0x9d,0x1d,0x31,0x70,0x62,0xff,0xa3,0xfb,0xdd,0x97,0x63,0x79,0xa0,0x5a,0x9e,0x17,0x61,0x2d,0xc7,0xad,0x3d,0x1,0xb2,0x23,0x87,0x1b,0x52,0x8a,0x1a,0xbd,0x94,0x90,0x53,0x4e,0xd8,0x20,0x4b,0x19,0x53,0x5,0xc8,0x58,0xf0,0x7a,0xec,0xa2,0xa6,0x7d,0xbe,0x6c,0xca,0x5b,0x21,0x63,0x7d,0xc3,0x66,0xcb,0x49,0x71,0x27,0xee,0x87,0xe,0xf2,0xd9,0xde,0x8a,0x7b,0x86,0xc0,0x95,0xd1,0x54,0xd9,0xd7,0xe9,0x42,0x4d,0xd9,0x1c,0x60,0xf,0x42,0x6b,0x8c,0xf,0xa5,0x51,0xd8,0x9,0x83,0x28,0x53,0x4a,0x29,0x9d,0x29,0x34,0x8f,0xde,0x67,0x2d,0xb3,0x6a,0x0,0x53,0x2e,0xce,0xf8,0xf9,0xa5,0xa8,0x6e,0x39,0x4d,0x28,0x1a,0x7d,0xab,0xfc,0x4,0x7e,0x7e,0x22,0x15,0x45,0x14,0xc5,0xae,0xeb,0xe7,0x46,0x95,0x9b,0xf,0x9e,0xb7,0xfa,0xfd,0xa0,0xe,0x8f,0x99,0x9c,0x40,0xbf,0x24,0x75,0x95,0xd6,0x4e,0x40,0x44,0x24,0x7d,0x60,0x73,0xbe,0x39,0x19,0xcd,0xd8,0xf6,0xd6,0x90,0x7a,0x50,0x82,0x41,0xf9,0x50,0x93,0x3d,0xd5,0x38,0xb5,0xd5,0x83,0x40,0x51,0x62,0x42,0x99,0x44,0x66,0xec,0x87,0x9c,0xf3,0x6c,0x33,0x9b,0x74,0xf6,0x23,0x8e,0x96,0x61,0x16,0xc9,0x7c,0x72,0x23,0x6b,0xde,0xcc,0xb,0xa7,0xe9,0x82,0xd4,0x3c,0xe3,0x30,0xd7,0x99,0x2a,0xe4,0xfd,0x3f,0xad,0xb2,0x31,0x65,0x46,0xf,0xca,0xa8,0x27,0x95,0xa,0xf3,0xa2,0xb0,0xcc,0xab,0xb6,0x52,0x9c,0x8f,0x70,0x25,0x11,0x7a,0x96,0x33,0xcc,0x57,0x1d,0xee,0xdc,0x5d,0x4b,0x98,0xd0,0xb8,0x1b,0xc8,0xe,0xe4,0xc4,0x59,0xe4,0xbe,0x10,0xa9,0xb,0x2c,0x33,0x87,0x41,0x5c,0x54,0xd2,0xd7,0x73,0x57,0xc6,0xa4,0xb5,0x56,0xa0,0x7c,0x47,0xcf,0x24,0x8c,0x57,0xc2,0x76,0x92,0x8c,0x6d,0xa4,0x50,0x74,0x25,0x49,0x82,0xb6,0x9f,0xef,0x19,0x71,0x2d,0x66,0x0,0xca,0xcd,0x89,0x4c,0xf6,0xf3,0x4f,0xc1,0xec,0x14,0x24,0x5,0x1d,0xf,0xce,0xc3,0x5c,0xc,0xce,0xb9,0x2,0xe4,0xfb,0x2c,0x33,0x61,0x6f,0x26,0x1f,0xf2,0x22,0x98,0x6f,0xcb,0x7a,0xd6,0x94,0xff,0xb0,0xf2,0xd9,0xf6,0x51,0x8b,0x10,0x6b,0x1c,0x98,0x25,0x6d,0xa8,0xd6,0xc9,0xc5,0x22,0x58,0xaa,0x67,0x45,0x9c,0x28,0x5a,0xf,0x71,0x95,0x3d,0xdc,0xf0,0x7b,0xae,0xfd,0x13,0xf5,0x50,0xd8,0x41,0x17,0x54,0x32,0x2e,0x56,0xd8,0x50,0x8,0x41,0xc3,0xe6,0x34,0x5e,0x21,0xb9,0xfa,0x61,0xa4,0x6a,0x26,0x51,0x90,0xa5,0xa9,0x84,0x20,0xa7,0xa7,0x63,0x1a,0xfa,0x6c,0x47,0x6c,0xdb,0x86,0xaf,0xf8,0xea,0xaf,0xc3,0x22,0x2,0x5d,0x10,0xec,0x67,0xf5,0x51,0x58,0xb9,0x98,0x8d,0xec,0x57,0xb5,0x14,0xd2,0xa5,0xa4,0x91,0x9,0xe9,0xe0,0x75,0xa9,0x99,0xbe,0xc7,0xa3,0x1e,0x41,0x4d,0xba,0xf4,0x91,0x63,0xdb,0xc1,0x3c,0x5a,0x50,0x2b,0xe3,0x2,0xd4,0x58,0x31,0xd5,0xe2,0xcd,0x57,0x5e,0x83,0xec,0xed,0xaf,0x89,0x1b,0x75,0xa,0x6a,0x8e,0x31,0xe8,0xac,0x4c,0xc2,0xde,0x22,0xa0,0x8e,0xad,0x26,0x2f,0x5,0xda,0x4d,0x2a,0x15,0x1,0x73,0x89,0x9b,0x80,0x9f,0xd,0x6a,0x7e,0x0,0x13,0xcb,0x63,0xcc,0x97,0x41,0x61,0x55,0xec,0x55,0x65,0x8d,0x32,0xed,0x51,0xd9,0xe1,0x9a,0x96,0x91,0xd3,0x25,0x3b,0xa5,0x76,0x66,0x9c,0x19,0xc1,0xef,0xbf,0x7a,0x51,0xe4,0x42,0x68,0x3c,0x8a,0x9e,0xe0,0x39,0xb3,0x13,0x59,0x49,0x13,0x5f,0xc0,0xc0,0xe1,0x67,0xe4,0xad,0x22,0x5a,0xcf,0x1c,0xfe,0x7c,0x4b,0x4e,0x60,0xe5,0x73,0xac,0x36,0x58,0xc9,0xca,0xd5,0xd,0x6c,0x92,0x13,0xf0,0x9c,0x73,0x82,0x43,0xdb,0x74,0xc1,0x50,0x5a,0x1e,0x6b,0xb7,0x23,0x96,0x77,0x84,0x7c,0x80,0x8,0x6a,0x6c,0xfc,0x63,0x53,0x36,0x33,0x2,0x2a,0xd7,0x84,0xc5,0x10,0x9e,0x4c,0xb1,0x60,0x3c,0xd2,0xd1,0x4,0x53,0x88,0xc9,0xac,0xb3,0x4f,0x3d,0x6c,0xb0,0xdd,0x48,0x87,0xd9,0x15,0x1,0xb9,0xb9,0x63,0x26,0xac,0xf5,0xf0,0xb2,0x12,0x47,0xc7,0x11,0x91,0x74,0x98,0xef,0x62,0xe4,0x89,0x60,0xe6,0xba,0xe8,0xf9,0x92,0x91,0xa9,0xe2,0x36,0xb7,0xa,0xd5,0x1d,0x1f,0x19,0x54,0x19,0x97,0x51,0x5,0x10,0x23,0x8c,0xca,0xe8,0xc1,0x9e,0xb1,0xce,0x3e,0x4,0x52,0x43,0x73,0xc1,0x51,0xb4,0x3,0xd5,0x50,0xc9,0xe8,0xe1,0xaa,0x99,0xe5,0xce,0x81,0x52,0x75,0xec,0x84,0x64,0x4a,0x52,0xd9,0x25,0x53,0x36,0x49,0xc0,0xd4,0xe4,0xaf,0x9d,0x2,0x73,0xa3,0xce,0xd9,0x3f,0xeb,0x16,0x97,0x83,0x13,0x17,0x85,0x89,0x93,0x4c,0x14,0x9b,0x94,0x12,0x7e,0x76,0x37,0x56,0x77,0xcf,0x7e,0x4a,0xbb,0xd,0x49,0xf3,0x39,0x76,0x23,0xa3,0xc3,0xcd,0x48,0xe1,0xb0,0x2b,0x67,0xe5,0x19,0x74,0xe5,0x52,0x2f,0xdb,0x92,0xdf,0xc0,0xe3,0x2b,0x30,0x69,0xf4,0x4,0x6a,0x34,0x34,0x7b,0xcd,0x2a,0xc1,0x96,0xd5,0x14,0x32,0xe7,0xf8,0x12,0x83,0x70,0x47,0x4e,0xda,0x91,0x13,0x5,0x1c,0x2c,0x65,0x93,0xd4,0x8,0xa7,0x8a,0x76,0x39,0xfd,0xd5,0x1d,0xc0,0x3a,0xa0,0x2c,0x56,0xc6,0x19,0xa7,0xe6,0xc5,0xc7,0xa9,0x55,0xd8,0x24,0x44,0x82,0x93,0xe,0x77,0x83,0x4,0xa6,0xd1,0xdf,0xcd,0x1b,0x68,0xc0,0xe0,0xba,0xac,0xf8,0xfb,0x5f,0xf5,0x7f,0xe2,0xf5,0xbf,0xf2,0x6,0xdc,0xba,0x75,0x23,0xf6,0x8e,0x42,0xc2,0x6e,0xdc,0xc7,0x4f,0xa2,0x52,0x65,0x86,0xcd,0x68,0x7d,0x4f,0xc9,0x6c,0x79,0x87,0x54,0x25,0xc9,0xf0,0xb4,0xf,0x6f,0x79,0x57,0xf5,0x70,0x74,0x2d,0xcb,0xdb,0xbc,0xa1,0x90,0xa2,0x19,0x2e,0x5c,0x96,0xe0,0xec,0x4c,0x67,0x52,0x24,0x33,0x92,0xa1,0x98,0x4b,0x7b,0x73,0x89,0x5a,0x19,0x3,0xb6,0xa9,0x61,0xc8,0x48,0x66,0xe2,0x1e,0x31,0x97,0x42,0x90,0x4a,0xc,0x10,0x4,0x6d,0xb3,0x3b,0x28,0x8f,0xd0,0x66,0x64,0x4d,0x8a,0xdd,0xb1,0x71,0x95,0x1b,0xd1,0xe3,0x84,0xfc,0xba,0x49,0x52,0x79,0x0,0xcc,0xa9,0xb0,0x8a,0x4c,0xcc,0x21,0x51,0x74,0x11,0xaa,0xf3,0x2c,0x22,0x1d,0x94,0x7c,0x77,0x99,0xaf,0xe6,0x3e,0x34,0xcd,0x48,0x72,0x97,0x46,0x60,0xc3,0x44,0xb3,0x83,0xba,0x2e,0x9d,0xf6,0x2,0xb2,0x86,0x92,0x50,0x61,0xca,0x31,0xee,0x7b,0xf6,0x9e,0xcc,0xcf,0x8,0x24,0x8b,0x2f,0xfc,0x18,0x21,0x99,0x20,0x8d,0x59,0x2d,0x89,0xfa,0x16,0x32,0x5d,0xed,0x5c,0xd2,0xb9,0x4f,0xb7,0x32,0x89,0x92,0x52,0xdc,0x96,0xd2,0xce,0x80,0xbd,0xaf,0x3a,0x4a,0x45,0x24,0x8d,0x5c,0xf2,0xbc,0x5b,0x9b,0x4b,0x4a,0x39,0xd1,0x15,0x4c,0x4,0x6,0x83,0xed,0x48,0x6d,0x85,0xd7,0x48,0xa5,0x9c,0xb1,0x2,0xc0,0xd8,0x28,0x1,0x39,0x9b,0x25,0x56,0xae,0xd0,0x81,0x68,0xe5,0x56,0x40,0x98,0x2b,0xd4,0x86,0x8c,0xe,0x6a,0x48,0x71,0x15,0x3,0x6b,0x75,0xe9,0xe0,0x37,0x82,0x66,0xd9,0xd0,0x88,0x31,0x20,0x9b,0x43,0x6b,0x0,0x24,0x68,0x36,0x3d,0x26,0x92,0x8,0x2e,0x22,0xd4,0xe5,0xf0,0x45,0x44,0xc6,0x10,0x31,0x43,0xcd,0xc9,0x67,0x5a,0x1b,0x9c,0xf6,0x2d,0x57,0xb7,0xef,0x8,0x8f,0x6,0x9a,0xdc,0xcb,0x9e,0x75,0x1a,0xc7,0x5e,0xab,0x68,0x84,0x4c,0xaa,0x44,0xf0,0x85,0x5c,0xac,0x3c,0x51,0x52,0xae,0x64,0x27,0xc2,0x92,0xf2,0xf9,0x28,0xea,0x0,0xde,0x39,0xde,0x26,0x93,0x71,0xb,0x6f,0x2c,0xd9,0xbf,0x57,0x99,0xe7,0xcb,0x3b,0xea,0xf7,0xe4,0x78,0x58,0x4f,0x83,0x7c,0xe6,0xc6,0x63,0x1,0x29,0x63,0x21,0xd3,0xa9,0x98,0xd0,0xea,0x11,0x61,0x27,0x1,0x35,0xdb,0x69,0x36,0xd8,0x63,0x5e,0xa4,0xae,0xf1,0x8c,0x48,0x96,0x64,0x5c,0xb3,0xa9,0x51,0x6,0x84,0x96,0x79,0x74,0x58,0x63,0xd9,0x34,0x53,0xa6,0x8d,0x5a,0x4c,0xbb,0xd0,0x91,0x9c,0x36,0xc,0x78,0xf6,0x64,0x28,0x2a,0x1a,0xf9,0x57,0xf9,0xbd,0x19,0xfe,0xc5,0x4e,0xd,0x93,0x9c,0xd5,0xc3,0xb6,0x8c,0xea,0x4a,0xa9,0xa,0xb,0x18,0x77,0xff,0xd9,0x5c,0x64,0xc,0xad,0x95,0x8c,0x73,0xdb,0xc,0xb2,0x18,0x7e,0xe4,0x27,0x7e,0xa,0x5f,0xfd,0xcf,0xbe,0x9,0x17,0xe7,0x37,0x86,0x26,0xde,0xe5,0x64,0xb5,0xbb,0xe2,0xcb,0xd0,0x74,0x9e,0x99,0x4f,0xfb,0x9b,0x25,0x79,0x3b,0x75,0x4e,0x1b,0x94,0x16,0x32,0x11,0x72,0x9f,0x43,0xb1,0x94,0x62,0x9e,0xe0,0xad,0xcc,0x37,0xd7,0x7c,0x7e,0xcb,0x88,0xfc,0x95,0x38,0x6f,0xfd,0xbb,0xb,0xd5,0x3a,0xe4,0xe7,0x41,0x96,0xd8,0x56,0x7b,0xdc,0x9,0x97,0x99,0x10,0x8d,0x70,0xd7,0xac,0x3a,0xf9,0xca,0x5,0xb2,0x49,0x77,0xc5,0x7b,0xe8,0x84,0x4c,0x6c,0xee,0x34,0x41,0x86,0x34,0x98,0x5a,0x56,0x7f,0x56,0xe4,0xf4,0x68,0x3c,0xd3,0xa7,0xd3,0x47,0x2c,0x47,0x2a,0x33,0x27,0x26,0xc8,0xc6,0x2d,0xcf,0x24,0xb3,0x1a,0x2,0x54,0x76,0xa8,0xb1,0x91,0x90,0x24,0xa9,0xb4,0xf9,0xb4,0x9f,0x43,0xb1,0xac,0xb0,0x3a,0xa,0x5f,0xa6,0x70,0x22,0xa6,0x62,0xda,0xac,0xee,0x4e,0x41,0x86,0x59,0x95,0x3b,0x51,0xc3,0xee,0xb8,0xb1,0x79,0x6e,0x89,0x66,0x96,0x32,0xe6,0x70,0xf5,0x92,0xc6,0x83,0x21,0x48,0x54,0xa8,0xb2,0x94,0x20,0x5f,0x4d,0xae,0xaf,0x5,0x1a,0xa1,0x7,0xa9,0x56,0x66,0xe2,0xe9,0xcd,0x4a,0x72,0x3b,0xad,0x70,0xcd,0x6c,0x92,0x33,0x93,0xda,0xa,0x74,0x2a,0x9c,0x13,0xce,0x30,0x2b,0x6f,0x8,0xcd,0x45,0xdd,0x24,0x59,0x96,0x5,0x5c,0xa0,0x8a,0xb3,0x65,0x92,0x5d,0xd8,0x72,0x31,0x1,0xa9,0x55,0x42,0x58,0xba,0x57,0xcd,0x38,0x17,0xcb,0xe,0x85,0xa4,0x51,0x96,0xd5,0xd9,0xf8,0xfb,0xa5,0x3,0x36,0x29,0xef,0x59,0x4e,0x24,0xd0,0xd9,0xcc,0xb9,0xd0,0x64,0xd2,0x5b,0xb3,0xaa,0xcb,0x97,0xd9,0x51,0xaf,0x78,0x7b,0x94,0x9f,0x6d,0xf1,0xfe,0xa5,0x2c,0x6c,0x73,0xd4,0x20,0xaa,0x7e,0x8b,0x82,0x89,0x9f,0x7f,0x72,0x26,0xe8,0x98,0x50,0xec,0xe1,0xd1,0xf9,0x1e,0x65,0x76,0xb7,0x55,0x39,0x5c,0x30,0xd9,0x27,0x49,0x28,0x47,0xfa,0x45,0x61,0x60,0xf9,0xf9,0x86,0xd2,0x40,0xf6,0x92,0x9c,0x42,0xcb,0x3f,0xf1,0x7c,0x65,0xf2,0x29,0xe7,0xa2,0x41,0x77,0x58,0xbe,0xe4,0x5,0xcc,0x97,0x94,0xd6,0x33,0xde,0x76,0x1a,0x58,0x99,0x88,0x4a,0xcc,0x82,0x9e,0xee,0xcc,0xf9,0xf5,0x4d,0x19,0xf,0xf1,0xac,0x9b,0x54,0xc5,0x7,0xd2,0x7c,0x24,0x2c,0xb6,0x5b,0xbe,0xe2,0xc6,0xcf,0x68,0x8a,0x80,0x56,0x22,0x7a,0xc6,0xdf,0xe0,0xe7,0x4f,0x76,0xb3,0x6d,0xf0,0x64,0xda,0x66,0x68,0xdb,0xb1,0xbc,0xd6,0x38,0x84,0x66,0x2,0xaa,0x4d,0xea,0x88,0xf1,0xb3,0xa,0x6f,0x64,0x7a,0x9e,0x22,0x12,0xf3,0x4c,0xce,0x66,0x97,0xd9,0x1,0xca,0x72,0x7c,0xdb,0x86,0xe4,0x35,0x2f,0x64,0x3,0x6c,0xeb,0x6,0x4a,0xdc,0x69,0x2d,0x86,0x5f,0xfa,0xe5,0x5f,0xc3,0xe7,0xfc,0xf,0x5f,0x84,0xd6,0x80,0xf5,0xac,0xfb,0xcb,0x3b,0x39,0x2c,0xc6,0x83,0x6d,0x2a,0x5e,0x97,0x9,0x35,0xb1,0xca,0x9b,0x11,0xdd,0x11,0x1a,0x76,0x83,0x80,0xe6,0x21,0x62,0x43,0xe9,0xe4,0x9f,0x11,0x30,0x38,0x2d,0x92,0x5,0xeb,0xce,0x94,0x49,0x8,0xd7,0xb7,0xa,0x2d,0xdb,0xc,0xc,0x20,0x79,0x7,0x85,0x7c,0x2b,0x55,0xf6,0x1a,0xab,0x5a,0xac,0xdc,0xb6,0xe2,0x7f,0x97,0xf8,0x32,0x32,0x15,0x66,0xd6,0xa6,0x84,0xd1,0x13,0x9c,0x86,0x72,0xfe,0xd,0x25,0x99,0x93,0x40,0xa5,0xed,0x8e,0xc1,0xe9,0x7c,0xce,0x82,0x29,0x46,0x4c,0x32,0x35,0x9e,0xb3,0x4f,0x85,0x5f,0xba,0xd,0x13,0xaf,0x86,0xa,0x89,0x9,0x4c,0xca,0xa2,0x86,0xa,0x8f,0x71,0x36,0xf8,0xef,0x35,0xc9,0x29,0x4b,0x49,0x18,0xf2,0x7,0xa9,0x4e,0x24,0xa7,0x71,0x44,0x9b,0x8b,0x7b,0x1e,0x1b,0xb2,0x13,0xa7,0x24,0xe7,0x89,0x38,0x13,0xbe,0x4e,0x6c,0x3a,0x3e,0x83,0x5a,0xc8,0x3e,0x2c,0xd2,0xc2,0x2a,0xda,0x70,0x62,0x7c,0xab,0x96,0xb4,0x87,0x74,0x90,0x2,0x65,0xae,0xcb,0x89,0xc5,0x6b,0xa7,0xa1,0x3c,0xf0,0x7d,0x37,0xb1,0x24,0x5b,0x76,0x62,0xf1,0x61,0x4f,0x1b,0xc5,0xdc,0xc9,0xa9,0xb0,0xfb,0x4f,0xd5,0x2,0x99,0xcc,0xc4,0xd3,0x8e,0x60,0x8f,0xd2,0xbc,0x17,0x96,0xf6,0xac,0xbe,0x9,0xd4,0x93,0xe3,0x48,0xf6,0x96,0x1b,0x5b,0x42,0x87,0xa,0x74,0xb3,0x11,0xe6,0x35,0xc8,0x3c,0xbc,0xb4,0x3d,0x5f,0xa8,0xf8,0xfe,0x58,0xe1,0xb2,0x47,0x1c,0xaa,0xbb,0x59,0x95,0x78,0x5a,0xaa,0x19,0xa,0x3a,0x6b,0xa7,0xe6,0xa6,0x75,0x26,0xa6,0xd,0xc3,0xe5,0xae,0x12,0x59,0x4e,0x41,0xf1,0x4a,0xcc,0xd8,0xd6,0x2c,0x88,0x38,0xfb,0x6a,0x7b,0x7f,0xf1,0x72,0xf9,0x69,0x65,0x7d,0xc8,0xee,0xd,0x58,0x61,0xab,0xa3,0x4a,0x74,0xb1,0x27,0x82,0x88,0x9b,0x2a,0x89,0x15,0xb9,0x76,0xb0,0x9,0x39,0xc,0x8a,0xba,0x5c,0x9b,0x98,0x7c,0x86,0xfa,0xfc,0x65,0x9e,0xb2,0x18,0x11,0x6d,0xe6,0x99,0x63,0x4a,0x22,0x4e,0x32,0xe5,0xab,0xcc,0xde,0x68,0x6,0x5d,0x21,0xf1,0xd2,0xcb,0xb4,0x3c,0xbc,0x94,0x8b,0xe,0xda,0xc5,0x33,0xe9,0xbd,0x16,0xd5,0x5a,0x9e,0x6d,0x8d,0x42,0xf7,0x43,0xa2,0x11,0x54,0xcc,0x23,0x79,0xcb,0x2e,0x4e,0x6a,0x77,0x9,0x54,0xb5,0x5c,0xf9,0xd9,0xca,0x1d,0xd3,0xa9,0x11,0x91,0x90,0x12,0x67,0xcc,0x9f,0xdb,0x96,0xea,0x90,0xb1,0xb6,0xad,0x6d,0x54,0x90,0x58,0x78,0x2f,0xb8,0x6c,0xaa,0x94,0xee,0x5c,0xa8,0x15,0x58,0x33,0x73,0x23,0x84,0xc,0x7d,0x76,0xdd,0x18,0x5d,0x82,0x52,0xb0,0xa1,0xfc,0xd7,0xd0,0x82,0x4b,0x70,0xdc,0x8e,0x80,0x18,0x7e,0xea,0xb5,0xbf,0x80,0x4f,0xff,0xcb,0x9f,0x87,0x27,0xde,0xf3,0x14,0x2e,0xce,0x2f,0x70,0x6c,0x5b,0x77,0x5c,0x73,0xb,0x5c,0x61,0xbb,0xf1,0x3a,0x32,0xc,0xf3,0x31,0x3b,0x11,0x18,0x85,0xca,0x27,0xa8,0x30,0x1a,0x77,0x98,0x74,0xde,0x69,0x25,0xaa,0xa6,0x87,0xb1,0x5,0x53,0x9e,0xc7,0x35,0xc5,0xf3,0x60,0x9c,0x5f,0x59,0xb8,0x8d,0x6d,0x4d,0x3f,0x43,0x66,0x54,0xd2,0x26,0x2c,0x6d,0xc7,0x86,0xb5,0x89,0x9f,0x20,0x85,0x4,0x8a,0x49,0xe4,0x95,0xe,0xa3,0x3a,0xe5,0xa7,0xec,0xf9,0x1d,0x93,0xc3,0xce,0xc4,0x7d,0x39,0xe1,0x84,0x69,0xd3,0x32,0x69,0x96,0x5d,0x31,0xf9,0xcc,0x84,0x5b,0x29,0x6a,0xa3,0x57,0x46,0x8d,0x62,0x95,0x48,0xdc,0x12,0x61,0x64,0x2d,0xbc,0xed,0xb8,0x30,0xb2,0x3f,0x4b,0x26,0x11,0x44,0xf0,0x69,0xda,0xa9,0x67,0x24,0xf0,0x5c,0x25,0x8b,0x54,0xd6,0x94,0x71,0xb2,0xc2,0xc1,0x2d,0xbf,0x8b,0xc4,0x5a,0x65,0x6a,0x88,0xab,0xcd,0xa0,0xee,0xe4,0xf,0x6,0xec,0xc2,0xcd,0xf2,0x3d,0xad,0xb9,0x67,0x1a,0x5f,0xa1,0x43,0xff,0x6d,0xd9,0x3d,0x3b,0xdc,0x6b,0xf5,0x50,0x2a,0xec,0xc4,0x52,0x1d,0x93,0x7d,0xa5,0xcf,0xe4,0xd,0x13,0x8d,0x91,0x10,0xf9,0x66,0x7b,0xe8,0x4f,0x66,0xa6,0xa0,0x15,0xc9,0xd4,0x9c,0x9c,0xc7,0xdf,0x5f,0x58,0x1f,0x3a,0x6c,0x6c,0xc3,0x85,0x87,0x3b,0x4c,0x30,0x41,0xc8,0x9f,0xa3,0xe,0x27,0xa4,0xa,0x6a,0xd4,0x4b,0x7e,0x3f,0xbc,0xdc,0x99,0xb2,0xf0,0xca,0x30,0x2b,0xd2,0x92,0xd0,0xa6,0x4e,0x7e,0xeb,0x3c,0x13,0x3c,0x39,0x14,0xf5,0xd,0xe0,0x66,0x47,0xcb,0x38,0xe4,0x79,0xee,0xce,0xb7,0x1a,0x3f,0x1f,0x1a,0x66,0x87,0xce,0x5e,0x79,0x86,0x6c,0xe5,0xe1,0xb,0x39,0x75,0x45,0xb1,0xa1,0x56,0x37,0xd7,0x84,0xa0,0x14,0x73,0xa,0xd9,0x67,0x17,0xd4,0xd3,0xa2,0x2b,0x2a,0xd0,0x6,0xf9,0x85,0x67,0xc2,0x46,0xdf,0xbb,0xf8,0xfe,0xe7,0x2c,0xaf,0x76,0x35,0x56,0x80,0x50,0x2e,0x40,0x8d,0x17,0x67,0x93,0x13,0x9d,0xb3,0x25,0xe3,0xd7,0x8,0xe,0xa7,0x2e,0xaa,0x16,0x32,0x72,0x82,0xfc,0x87,0x1a,0x54,0xc4,0xc9,0x65,0x96,0x2f,0x7d,0x26,0xfd,0x30,0xc,0x2f,0xf3,0x81,0xce,0x44,0x84,0x2,0xd1,0xd0,0x21,0x40,0x9f,0x9d,0xd0,0x85,0x2e,0x64,0xd3,0xcb,0xf2,0xa2,0x16,0x50,0xe3,0x9,0x3c,0x3d,0xcc,0x50,0xac,0x98,0xcd,0x44,0x5b,0x51,0xee,0x59,0x19,0x1d,0xff,0x36,0x88,0x4b,0xe3,0xc2,0x2f,0x46,0x25,0xd3,0x20,0x30,0xb2,0x1c,0x5a,0xfa,0x5,0x8,0x93,0x3e,0x33,0x10,0x48,0xa6,0x3d,0x5f,0x92,0xfd,0xa6,0xcf,0xde,0xac,0x26,0xd0,0x15,0xf8,0xdb,0x9d,0x17,0x6d,0xc1,0xd1,0xc,0xd6,0x8e,0x38,0x3b,0x1c,0xf0,0xf5,0xff,0xea,0x3b,0xf0,0xc5,0x5f,0xfe,0x55,0xb8,0xbc,0x6a,0xb8,0x79,0xf3,0x26,0xae,0xda,0x35,0x96,0xf5,0x80,0xed,0x7a,0xa3,0xe7,0x29,0x95,0xd3,0x31,0xc,0x41,0xc2,0x1f,0xc0,0x28,0xd9,0x54,0xa8,0xf3,0x36,0x9b,0xc8,0x73,0x39,0xb,0xb6,0x2d,0x59,0xd9,0xe9,0x4a,0x4a,0xe3,0xc4,0x86,0x6a,0xff,0x2b,0x1a,0x84,0xe0,0xc2,0xba,0xa7,0xe,0xb7,0x3b,0x75,0xb6,0xa2,0xf6,0x50,0xd7,0x91,0x13,0xc4,0xe2,0x8e,0x97,0x89,0x9c,0x78,0x84,0x74,0x23,0x9,0xad,0x37,0x10,0xd5,0x87,0x2,0xe1,0x5f,0x20,0xfb,0xf5,0x49,0x7b,0x43,0xda,0x33,0x8d,0x75,0xa6,0x88,0xe2,0xf8,0x39,0x36,0xcd,0xfc,0xad,0x48,0xc6,0x3d,0xa8,0x8,0x93,0xe4,0x30,0x5e,0x87,0xe7,0x6a,0x34,0x4e,0xc4,0x3b,0x85,0x9e,0x59,0x6d,0x62,0xd9,0x47,0xa0,0xb0,0xf1,0x8b,0x50,0x91,0xfa,0x48,0xab,0x2e,0xa7,0x4a,0xef,0x9b,0x3,0x91,0x36,0x14,0xe9,0xde,0xce,0x87,0x64,0x56,0x88,0x30,0xcc,0x1f,0x23,0xe1,0x11,0x6a,0xd5,0x48,0x48,0x60,0x3b,0x8b,0xcd,0x72,0x3f,0x46,0xc6,0x85,0x4d,0xa3,0x12,0x99,0xf8,0x12,0xe3,0x97,0xd5,0x8a,0x4a,0x9c,0xdf,0xb2,0x65,0x6c,0xd1,0x5e,0xf0,0x1c,0x5a,0x5a,0xe3,0x14,0xa3,0xb8,0x58,0x22,0xc8,0xb9,0xd8,0x44,0xa6,0x8d,0xbd,0xb0,0xb3,0x7b,0x4,0x9c,0x9c,0xba,0xe7,0x8d,0xe6,0x54,0x85,0xd8,0x63,0xa4,0x93,0xe7,0x83,0x61,0x3a,0x30,0x4c,0xf6,0xa3,0x5d,0xcf,0xb6,0xb6,0x49,0x76,0x13,0x84,0x30,0x99,0x93,0xb,0x40,0x4c,0x7c,0xba,0xc4,0x65,0xe2,0x8e,0x9,0x57,0x5a,0x56,0x8d,0x71,0x4,0xa5,0x4b,0xcc,0xcf,0x91,0xa2,0xa1,0x4a,0x67,0x5f,0x5d,0xde,0xaa,0x6,0x5e,0x23,0x40,0xc7,0xa4,0x1e,0x9e,0x36,0x29,0x36,0xd9,0xc7,0xd9,0x99,0xa2,0x3b,0xa2,0xa2,0x97,0x7b,0x3c,0xb,0x9d,0xe0,0x6a,0x31,0x6a,0x7b,0x63,0xde,0xef,0x89,0x55,0x8,0x97,0xbf,0x53,0xdd,0xcf,0x9e,0x62,0x3f,0x1e,0x46,0x3,0xf6,0x4a,0x5a,0x92,0xac,0x18,0xeb,0x64,0x95,0xd8,0xe,0x28,0xb0,0x31,0x87,0xa8,0x98,0xed,0x9,0x3c,0xc9,0x5a,0x99,0x9c,0xc1,0xe8,0x7d,0x73,0xb1,0x94,0x77,0xeb,0xc4,0x2b,0x41,0x76,0xce,0xd8,0x29,0x29,0x34,0xb,0x4b,0x1a,0xf3,0x99,0x31,0xe9,0x35,0xed,0xa6,0xdd,0xbf,0x80,0xd5,0x55,0x52,0x27,0x82,0xc1,0xaf,0x48,0x94,0xc1,0xd7,0xa0,0x4e,0xe4,0x2c,0x9e,0x62,0x4c,0x5a,0x7f,0x4a,0x16,0xb,0x63,0x2c,0xcc,0xa2,0xb6,0x8a,0x9e,0x95,0xe2,0x6a,0xac,0x4f,0x2b,0x9c,0x84,0x9e,0x32,0xd8,0x36,0xe0,0x7a,0xd9,0x70,0xbc,0x6e,0xd9,0xe9,0x23,0x53,0xcc,0x2,0xf4,0x18,0xd1,0xd1,0xfc,0xf3,0x92,0xc8,0xe7,0x6b,0x7f,0x19,0x61,0x5f,0x93,0x39,0x49,0x75,0x2f,0x27,0x12,0x64,0x49,0xcd,0x88,0x4,0xb7,0xb0,0x74,0xf6,0xb7,0xd1,0x80,0xe3,0xb1,0x3b,0x7f,0x2d,0x67,0xb,0xde,0xf4,0x96,0xb7,0xe1,0x8b,0xbf,0xe2,0x7f,0xc7,0xf,0xbc,0xea,0x35,0xb8,0x38,0xbf,0xc0,0x8d,0x1b,0x37,0x70,0xbd,0x6d,0xfd,0xd2,0x3f,0x1e,0xc7,0x68,0x81,0x2,0x9e,0xcd,0x68,0x7f,0xb2,0xc,0xce,0xf6,0x9d,0x61,0xec,0x73,0x9,0xcd,0x7d,0x14,0x76,0x3c,0x7b,0x35,0xa,0x89,0x22,0x74,0x50,0xc8,0xa1,0xd1,0x61,0xed,0x80,0x6b,0x15,0x95,0x44,0x62,0x56,0x34,0xe3,0xc5,0x2a,0x9a,0x59,0xe0,0x94,0x97,0xe2,0xe9,0x93,0x42,0x93,0x51,0x19,0xc4,0xb7,0x92,0x12,0x68,0xc4,0xcd,0x95,0x8a,0x10,0x34,0xb8,0x52,0xc7,0x26,0x3e,0x3c,0x27,0xec,0x21,0x9d,0x0,0x69,0x76,0x4d,0xed,0x62,0x14,0x1f,0x8d,0x7,0x67,0x2a,0x41,0x16,0xb7,0x48,0x6f,0xb0,0xc2,0x11,0x11,0x9b,0xf6,0x9f,0x35,0xe6,0x69,0x12,0x48,0x61,0x93,0xc6,0xc2,0x88,0x93,0x23,0xa5,0x11,0x11,0x42,0x70,0xd8,0xa,0xd7,0x98,0x7d,0x41,0x16,0xca,0x38,0xf1,0xfe,0x19,0xd1,0x4c,0x55,0x58,0x4b,0x6e,0xc5,0x8e,0x95,0x61,0xfb,0xd7,0x20,0x6e,0xb3,0x6e,0xa4,0x42,0xb1,0x8a,0x9a,0xa2,0x4a,0x23,0xd9,0x3d,0x37,0x9a,0x3f,0x9b,0xf7,0x7,0x28,0x44,0x2c,0x2e,0x7e,0x84,0xe7,0xf4,0x49,0xd6,0x30,0x7,0x34,0xd0,0xa1,0x1c,0xd6,0x2c,0x36,0x5,0xe,0x78,0xb1,0xa0,0x71,0xb6,0xf,0x26,0x29,0xd9,0x69,0x54,0x13,0xf2,0xf0,0x9e,0x67,0x89,0x4d,0x66,0xd5,0xcf,0x84,0x43,0x6a,0x8b,0xe7,0x4f,0x8e,0xf,0xf6,0x72,0x78,0x93,0x1,0x42,0x63,0x6d,0xa8,0x33,0x75,0x51,0x35,0x94,0xd1,0x75,0x7b,0xde,0x73,0x12,0x87,0xe4,0x84,0x66,0xa9,0xa7,0xb9,0xb9,0xc1,0x8e,0xee,0x24,0x5c,0xc,0xcf,0x72,0xe0,0x4c,0xa4,0x83,0x9f,0xf2,0xfc,0x8d,0xc0,0x98,0xcc,0x4e,0x48,0x19,0x4f,0x63,0x21,0x4,0xcd,0xfb,0x7d,0x73,0xdb,0x24,0xc5,0x99,0x6e,0xc2,0x36,0x15,0x45,0xd4,0x19,0x44,0x46,0x3a,0x8d,0x60,0xc2,0x88,0xa9,0x65,0x61,0xe8,0x5,0x5f,0x48,0x9e,0xf6,0x63,0xf0,0x5c,0xcc,0x3b,0xab,0x58,0x9a,0xe5,0xca,0x44,0x22,0xb2,0xb4,0x74,0x36,0xaa,0xa8,0x72,0x3,0xd6,0xe4,0x41,0x53,0x94,0xf4,0x41,0x61,0x5a,0x72,0x29,0xe0,0x3c,0x7e,0x97,0xd7,0x9d,0x65,0xf1,0xc5,0x37,0xb9,0xd9,0x4e,0xca,0x54,0x22,0x95,0x79,0x6d,0x45,0xf3,0x3d,0x39,0x52,0x96,0x83,0x48,0x88,0x8c,0x24,0x3b,0x9f,0x0,0xd4,0x3a,0x99,0x20,0xdf,0x9d,0x9f,0xdd,0xfe,0xf3,0x5,0xef,0x4f,0x7a,0x7b,0x6a,0x5,0xa,0x2c,0xa4,0x2d,0x4b,0x96,0x77,0xf8,0x38,0x90,0xad,0x33,0x7,0xd6,0x87,0x77,0x38,0x1b,0x27,0x8e,0xf1,0xc2,0xe1,0xb0,0x42,0xd0,0x70,0x75,0x7d,0x15,0x72,0xa5,0xb6,0xb5,0xc8,0x9d,0xb0,0x13,0x7c,0x93,0xdc,0x3f,0x2d,0x98,0xe4,0x1d,0x7c,0xdb,0x0,0x2d,0x31,0x64,0x19,0x18,0x73,0xaa,0x9a,0x24,0x78,0x24,0xd2,0x24,0xa3,0xd8,0x6e,0xc3,0x96,0xd9,0xa5,0x8d,0xc0,0x7f,0xf8,0x8d,0x37,0xe1,0xeb,0xbf,0xe5,0x3b,0xf1,0x9d,0xdf,0xfd,0x3,0x78,0xe2,0x89,0xdb,0x78,0xe0,0xbe,0xfb,0x80,0x45,0x71,0xb4,0x6,0x5d,0x16,0x6c,0xdb,0x16,0xe3,0x48,0xf3,0x78,0xd7,0x91,0x3f,0x62,0x8b,0xf2,0x4d,0x48,0x4,0x62,0x37,0x89,0x4b,0xd3,0x15,0x4c,0x11,0xac,0xd1,0x5d,0x5b,0xbf,0xde,0xb4,0xe5,0xfb,0x47,0x4b,0x8d,0x7d,0x10,0xcd,0x66,0xdb,0x62,0x4b,0x54,0x2f,0x9a,0x8f,0xb1,0xff,0xd3,0xa2,0x57,0x76,0xfe,0x22,0x42,0x2a,0x2c,0x3f,0x47,0xdc,0xba,0x59,0xc8,0xf0,0xa5,0x9d,0x62,0x59,0x5a,0xcd,0x2,0xb,0x5e,0xc0,0x38,0xe3,0x8a,0xe7,0x5b,0xc0,0x3a,0xfb,0xc0,0xa7,0xb0,0x8c,0x5d,0x3c,0xab,0x8a,0x7e,0xa0,0x52,0x62,0x25,0x32,0xd7,0x1,0x1c,0x10,0x34,0x7c,0xc,0x64,0xa1,0xbc,0x1,0xd4,0xf5,0xc9,0x16,0x20,0xbe,0xf7,0x39,0xb6,0xdb,0x1d,0xf4,0xc4,0x32,0xb4,0xc9,0x88,0x3c,0x69,0x42,0xc8,0x4e,0x43,0xc9,0x2d,0x89,0xd4,0xcd,0x72,0xa1,0x7a,0x57,0x4f,0x7b,0x54,0xa5,0xb8,0xc6,0x1a,0xc1,0x81,0x99,0x2c,0x5a,0xd,0xf1,0xf6,0x21,0x5a,0x46,0xf6,0xe1,0xa8,0xba,0x5f,0xb2,0x83,0x26,0xbb,0x4e,0x1a,0x8d,0xce,0xaa,0x5,0x21,0xfd,0x37,0x5d,0x89,0x1e,0x89,0x6c,0xc0,0x1a,0xb9,0xdf,0xf3,0x87,0xcd,0x59,0xe8,0xfe,0xc3,0x5b,0x7a,0xbc,0xc7,0x41,0x2d,0x53,0xb4,0x61,0xb3,0x52,0x11,0xb,0x49,0xb3,0x98,0x15,0x1f,0x96,0xb8,0x2c,0x9d,0x38,0x21,0x7,0xca,0xcb,0xd6,0x48,0x8b,0x29,0xc5,0x38,0xa2,0xe8,0xb1,0x18,0x68,0x95,0x13,0x4c,0xaa,0x12,0x50,0x61,0x85,0xa8,0xa1,0xd3,0xc8,0xba,0x5e,0xa,0xfb,0x79,0xfe,0x2c,0xf9,0xb2,0x69,0x1c,0xe1,0x46,0x34,0xa5,0x59,0x68,0xb3,0x61,0x81,0xa2,0x8a,0xf8,0xc7,0x1f,0x1e,0x8b,0xdd,0xdc,0x65,0x2d,0xac,0x68,0xad,0xf8,0x59,0xf0,0xa1,0xdf,0x4b,0xec,0x71,0x40,0xa8,0x3d,0xc3,0xa5,0x4f,0x1d,0xa8,0xb9,0x9f,0x50,0x76,0x83,0x21,0x87,0xd4,0xd1,0xfd,0x33,0x89,0x4e,0x40,0xa1,0x38,0x52,0x22,0x32,0xa7,0xd2,0xac,0xa0,0x5,0xb3,0xf9,0x51,0x51,0x19,0xf2,0x48,0xa3,0x51,0xd7,0x2a,0xac,0xb8,0xb2,0xf4,0xc6,0x36,0x22,0x91,0x8e,0xc3,0xb2,0x5f,0xba,0x92,0xd9,0x12,0x33,0xe7,0xcb,0x76,0xe6,0xf8,0x53,0x20,0xd1,0xc4,0x6a,0x29,0xfa,0xd5,0x74,0xbe,0x93,0x13,0xd2,0x29,0x2b,0x73,0x56,0xf6,0x9,0xc8,0x31,0x57,0x14,0xba,0x2d,0xe6,0x25,0x1c,0x89,0x50,0xcd,0x7a,0x40,0x7b,0xe3,0xe4,0xec,0xcb,0x47,0xa9,0x9,0x2f,0x5a,0x59,0xf0,0x7b,0x26,0x33,0xe8,0x40,0xd4,0x89,0x4,0xc6,0x3,0xfe,0x24,0x80,0x4a,0xda,0xe6,0x96,0x6c,0x63,0x4f,0x86,0x1b,0xcf,0x79,0xdb,0x70,0x38,0x17,0x3c,0xf4,0xe0,0x3,0xd8,0x5a,0xc3,0xa2,0x2b,0x96,0x43,0xb2,0xef,0xf3,0x9c,0x93,0x92,0x22,0x28,0x42,0x4,0xdc,0xd1,0xe9,0xeb,0x2c,0x79,0x9c,0x21,0xd1,0xdd,0xac,0x58,0x88,0x56,0xd2,0xf5,0xa,0xee,0xb7,0x61,0x4d,0x70,0xfb,0xce,0x1d,0xbc,0xf9,0x77,0xde,0x86,0x9f,0x7e,0xed,0x2f,0xe2,0x95,0xaf,0xfa,0x11,0xfc,0xec,0xcf,0xfd,0x22,0x9e,0x7e,0xea,0xe,0x6e,0xde,0xbc,0x85,0x7,0x1e,0x78,0x30,0xf6,0x65,0xb7,0x38,0xdd,0xf2,0x39,0xb4,0xbc,0x50,0x40,0x5d,0x7d,0x5c,0xa4,0x6c,0x58,0x12,0xe1,0x2a,0x1e,0x2a,0xa5,0x74,0x3e,0x55,0xd3,0x78,0x19,0x71,0xda,0xd1,0xa1,0x92,0xec,0x53,0x8,0xe6,0x2d,0x48,0x37,0x8d,0x8a,0xcc,0xb2,0xe8,0xcb,0x63,0x4f,0xe2,0x57,0xf0,0x39,0x9,0xa9,0x12,0x5f,0x99,0xe6,0xf4,0x6c,0x49,0xbe,0x33,0xbe,0xb1,0xd3,0xcc,0x53,0x9b,0x8a,0x7b,0x11,0x72,0x25,0x94,0x50,0xb,0x95,0x7a,0x53,0x39,0x50,0xcd,0x7a,0xa8,0x57,0xa4,0xfa,0x69,0xb8,0xd6,0x99,0x18,0x64,0xab,0xb2,0x39,0x2e,0x1c,0x83,0x74,0x6e,0x96,0x69,0xa3,0x32,0x2d,0x79,0x9b,0x27,0xb8,0x52,0xf6,0x97,0x27,0xa5,0xb9,0x4d,0xae,0x73,0xce,0xe3,0xa2,0x6d,0x5c,0xbc,0x49,0xaa,0xb9,0xf8,0x22,0xe5,0x51,0x3,0xdf,0x5f,0x36,0x4f,0xe3,0xac,0x27,0x79,0x9a,0x40,0x39,0x71,0xb1,0x31,0xec,0xad,0x51,0x58,0x44,0x6e,0x8b,0x58,0xf1,0xbb,0x81,0xd2,0x4,0xc9,0x4a,0x64,0xe3,0x9,0x2e,0x5e,0x1c,0x8c,0xa3,0xf1,0xce,0x40,0x15,0x3b,0x31,0xf6,0x90,0x87,0x5e,0xf8,0xd2,0x9d,0x35,0x42,0x5a,0x62,0x56,0x49,0x4a,0xd,0xeb,0xb3,0x89,0x32,0x20,0x3b,0xf1,0xc3,0x34,0xd4,0x88,0xaf,0x47,0xe7,0x46,0xf9,0xcc,0x25,0x8c,0x85,0x13,0xe7,0xbc,0xab,0xe4,0xb9,0xac,0xcd,0x76,0x8e,0x75,0xb2,0x2e,0xa8,0x96,0xa4,0x32,0xdf,0xe6,0x14,0xbf,0x2b,0x14,0xc5,0x9a,0x2a,0x86,0x9a,0xf8,0x96,0xca,0x97,0xc,0xbe,0x98,0x59,0xba,0x75,0x50,0x1,0xcc,0x2a,0xe2,0x39,0x9b,0x9d,0xad,0x54,0x8b,0xf4,0x4b,0xe6,0x6c,0xc8,0x4a,0xd6,0x8b,0xee,0x5f,0x5a,0x85,0xa0,0xad,0x92,0xb7,0x70,0x32,0x5e,0xd8,0x12,0xbe,0xf4,0x0,0x92,0x32,0x8e,0xd3,0xc2,0x8d,0x14,0x6a,0x1d,0x4c,0xd9,0x5f,0x0,0x10,0x69,0x49,0x30,0xc3,0x3c,0xfb,0x6b,0x27,0x98,0x6a,0xa4,0x15,0xb7,0x44,0xc,0xe6,0xcc,0x5f,0x9f,0x53,0x66,0x94,0x68,0x3b,0x19,0x7b,0x8b,0xc9,0xa5,0xaf,0xbb,0x17,0x4a,0x46,0x30,0xef,0x9c,0x88,0xa6,0x2,0x63,0x66,0x5e,0x8b,0x6f,0xc6,0x31,0x58,0x88,0xa0,0xc,0xab,0x71,0xc9,0xcc,0x69,0x35,0x2b,0xc5,0x5b,0x31,0x61,0x13,0xa9,0xd5,0xfb,0xae,0xde,0x48,0x30,0x93,0x3,0x1,0x66,0x81,0x5f,0x96,0x91,0x52,0x5e,0xaa,0x4d,0xf1,0x4c,0xb2,0x83,0x14,0x5b,0xac,0x89,0x9c,0xe6,0x4e,0xc4,0xdb,0xc8,0xb6,0xe7,0xbd,0xc1,0x21,0x2d,0x46,0x27,0x24,0xa3,0xd,0xfd,0xe1,0xa8,0x18,0xb6,0xed,0x1a,0x7f,0xf1,0xbf,0x79,0x19,0x3e,0xf0,0xc5,0x2f,0x86,0x2e,0x82,0xb6,0x19,0xd6,0xc3,0x2,0x25,0x83,0xac,0x20,0x37,0xd,0xc5,0x8c,0x52,0x24,0xb1,0xa7,0x89,0xa9,0xea,0x20,0x78,0x2e,0x85,0xd1,0x9f,0x7c,0x38,0x29,0xfb,0x1a,0x6d,0xc3,0xb6,0x6d,0x30,0x18,0xb6,0xad,0xe1,0xe9,0xdb,0x77,0xf0,0xf8,0x13,0x4f,0xe1,0x6d,0x6f,0x7f,0x14,0x6f,0x7d,0xfb,0xdb,0xf0,0xa6,0x37,0xbd,0x15,0x6f,0x7b,0xfb,0x23,0x78,0xf2,0xa9,0xa7,0xb1,0x2c,0x8a,0x1b,0x37,0x6f,0x62,0x59,0xf,0x50,0xd5,0x1e,0x71,0x2f,0xdc,0x90,0xe4,0x25,0xb8,0x98,0x8c,0xac,0x73,0xdb,0xd9,0x24,0x80,0x47,0x43,0x52,0xc7,0x80,0x8c,0x6c,0x8,0xa5,0xd9,0x65,0xf4,0x77,0xfa,0xec,0xfb,0x25,0xd9,0x28,0xc3,0x82,0xf9,0x26,0x61,0xc9,0x3b,0xe5,0x74,0xb9,0x21,0x56,0x22,0xa,0x12,0xf5,0xbe,0x3e,0x53,0xe3,0x34,0x8d,0x4c,0x38,0x63,0x60,0x97,0xfd,0x12,0xf2,0x6b,0x2e,0x8a,0x2b,0x84,0x30,0xcb,0xfa,0xc2,0x85,0x8f,0x43,0xd3,0x26,0x47,0x45,0x9e,0x3b,0x8b,0x7b,0xb,0x50,0x8c,0x30,0xdb,0x1c,0x7,0xc,0x9f,0x49,0x57,0xf1,0x3c,0xd9,0x1,0xde,0x76,0x2e,0xd,0x7c,0xe,0xd9,0x24,0xcf,0x46,0x8,0x59,0x93,0x8e,0x64,0xbb,0x54,0x70,0xe,0xd3,0x9,0x92,0xb7,0xd4,0x11,0x1a,0xcf,0x1a,0x4d,0x4e,0x11,0x95,0xa9,0x68,0x99,0x64,0xbf,0xa7,0xf8,0x40,0xfc,0x2c,0x64,0x8a,0xe1,0xb5,0x42,0x80,0x9c,0x4e,0xf6,0x46,0x44,0x63,0x8e,0x6b,0x9e,0xc7,0x78,0x71,0xdf,0x69,0x75,0xf0,0x7c,0xe8,0x85,0x7f,0xc4,0xea,0xc,0x1a,0x85,0x74,0x33,0xb3,0x8,0xc,0x4c,0xa0,0xa9,0x3e,0xcc,0xb3,0x18,0x5a,0xa8,0xf8,0x68,0xbb,0xc3,0x5b,0x76,0xd7,0x2,0x76,0x9c,0xcc,0xfd,0x41,0x1f,0x50,0xa,0x11,0x4b,0x52,0xbb,0x2d,0xd5,0x9f,0xbb,0x58,0xd4,0xda,0x30,0x9,0xd9,0xdb,0xb7,0xe9,0x5c,0xb4,0x15,0x9d,0x3e,0x4e,0x70,0x22,0xc7,0x7,0xaf,0x23,0xf2,0x57,0x64,0x92,0x7a,0x4d,0x26,0x38,0xd3,0x8c,0x3b,0x4d,0x49,0xdc,0xd3,0x5c,0x13,0x5,0x19,0x87,0x7a,0x38,0xf6,0x95,0xef,0xa2,0x99,0x59,0x2f,0x12,0xd5,0xb3,0xc5,0xcc,0x98,0xd4,0xa3,0x44,0x5a,0x91,0x89,0xe0,0xd2,0x3f,0x13,0x92,0x45,0x99,0x80,0x2d,0x6f,0x41,0xd9,0xdf,0x2,0x26,0x67,0xa,0x14,0x6d,0x68,0xa8,0xe5,0xe4,0xbb,0xad,0x97,0x3c,0xa6,0x1d,0x2b,0x7b,0xf9,0x27,0x7a,0xb7,0x57,0x4c,0x74,0xc,0xd3,0x64,0xce,0x5f,0x1,0xad,0xd,0x2a,0xc6,0x84,0x2c,0x40,0xc3,0x47,0x40,0x4f,0xe9,0x70,0x65,0xda,0xc,0x13,0x15,0xec,0x24,0xa1,0xd2,0x4e,0x91,0x14,0x12,0x8a,0x6e,0x27,0x10,0x20,0xe2,0x63,0xc4,0x6a,0x14,0x2b,0xed,0xc9,0xe9,0x5c,0x1,0x2b,0x3c,0x80,0xca,0x3d,0x28,0x57,0x7a,0x25,0xe8,0x4d,0xe5,0x77,0x75,0xe2,0xe0,0xd1,0x4c,0x35,0x1c,0x12,0x4a,0xd1,0x34,0x82,0x7f,0xfd,0x33,0xc9,0x59,0x24,0x93,0xa0,0x5a,0x14,0x6f,0x3e,0x43,0xbf,0x7b,0xf7,0xe,0x0,0xe9,0x7e,0x12,0xd6,0xe2,0xd3,0x32,0x6b,0x3d,0xf,0x9e,0x2d,0x9e,0x6d,0x4f,0x20,0xb5,0xc1,0x86,0x56,0x28,0x9a,0xaf,0x6b,0xc9,0xd2,0x27,0x8e,0xe1,0x36,0xe6,0xcb,0x68,0x10,0x6b,0x38,0x6e,0x5b,0x4f,0x80,0x1c,0xdd,0xa4,0x2f,0xdc,0x65,0x11,0x2c,0xb2,0x40,0xd6,0x5,0xeb,0xba,0x42,0x74,0x19,0xdd,0x67,0xe6,0x21,0x38,0xb4,0x2c,0x74,0x71,0xe5,0xa3,0xae,0xb6,0xda,0x42,0xb3,0x18,0x43,0x25,0xaf,0xf9,0xdc,0xbe,0xf1,0x59,0x1b,0x91,0xb2,0xdc,0x40,0x35,0xf2,0x1a,0x68,0x93,0x9b,0xa2,0x7b,0xd,0x64,0xf4,0xb3,0x98,0x14,0x56,0x71,0x73,0xe8,0x9c,0xcf,0xbe,0x90,0xfc,0x25,0xc1,0x51,0xac,0x16,0x93,0x32,0x9,0x7c,0x64,0x26,0xd8,0x19,0xc9,0xc0,0x7c,0x6e,0xd6,0x3c,0xbe,0x35,0x7,0xf3,0xb1,0xce,0x69,0xbf,0xd7,0x7e,0x5e,0x8a,0x9e,0x33,0x27,0x9e,0x1d,0x21,0xde,0x84,0xd7,0xda,0x18,0x79,0x8d,0x95,0xdc,0x3d,0x21,0x52,0x99,0x65,0x27,0x1b,0x82,0x96,0x5e,0x22,0xe1,0x78,0x68,0x3d,0xd6,0x56,0xf6,0xe4,0xb9,0xf9,0x4e,0xe3,0x3c,0xd3,0xd2,0xb8,0x32,0xfb,0xbd,0x6a,0x66,0xf3,0x3d,0x95,0xf3,0x62,0xfa,0x7f,0x46,0x4f,0xa6,0x64,0xc0,0x5a,0xa8,0xf0,0x3d,0xb2,0xdf,0xff,0x5e,0x64,0xed,0x50,0x51,0x30,0xe7,0x81,0xbc,0xb,0xa6,0x7b,0x9,0x76,0xaa,0xe9,0x7e,0xa6,0x8c,0xa,0x60,0x3d,0x89,0xf6,0xe0,0x84,0x6c,0x8d,0x65,0x3e,0x92,0x87,0x8a,0x7a,0x6c,0x27,0x71,0xa7,0xcc,0x9d,0xae,0x6,0x7c,0xd2,0x38,0x63,0x77,0x96,0xab,0x94,0xcb,0x49,0x26,0x77,0x35,0xa9,0xf0,0xb7,0xec,0xdc,0x31,0x47,0x30,0x5,0x86,0xdf,0x7e,0x5a,0xec,0x6,0x21,0x8f,0xd5,0x7d,0xd2,0x92,0x7b,0xc8,0xb1,0x8b,0x8d,0xde,0x1f,0xcd,0x3c,0xc1,0x92,0x98,0x29,0xf,0x59,0x5c,0x23,0x5a,0x1c,0xe2,0x5a,0xed,0xba,0x6d,0x32,0xd2,0x1a,0x27,0x4b,0x8d,0x2c,0x96,0xce,0xf4,0xd5,0x24,0xea,0xa8,0xe4,0x45,0xa8,0xe4,0x9,0x8e,0x61,0x2a,0x92,0xa8,0xbb,0xc3,0x84,0x69,0xc1,0x5b,0xc8,0x9a,0x1e,0x42,0x31,0x32,0x9,0x9c,0x2c,0x26,0x8b,0x76,0x68,0x9c,0x9c,0x15,0x8d,0x74,0x14,0x5f,0x44,0xe6,0x0,0x0,0x7,0x11,0x49,0x44,0x41,0x54,0xfa,0x6e,0xa3,0xa9,0x74,0xf9,0xa8,0x8,0x9a,0xc,0xef,0x72,0x62,0xb4,0x1a,0xdd,0x28,0x16,0x8a,0x39,0xbe,0x7e,0xc6,0x73,0xe2,0x99,0xb5,0x12,0x2,0x41,0xee,0x5f,0x31,0xba,0x10,0xe,0x45,0xd1,0x20,0x20,0x49,0x31,0xc7,0x19,0x45,0x5f,0xcb,0xf1,0x44,0x38,0x6c,0x2f,0xb,0x3d,0xfb,0xf1,0x33,0x94,0xf3,0xe6,0x95,0x9c,0xb1,0xc6,0xc5,0xa1,0x52,0x8b,0xce,0x80,0x76,0x79,0xa6,0xdb,0xea,0xfe,0x68,0x55,0x9d,0x67,0xc5,0x11,0x2e,0xf,0xbe,0x22,0x8,0x1e,0x17,0x4d,0x8,0x24,0x8c,0xf9,0x6,0x52,0xc7,0x53,0x93,0x8a,0xc0,0x49,0x71,0x4a,0xe9,0x82,0xc5,0x99,0x52,0xa6,0x3c,0x6f,0xab,0x87,0x73,0xef,0x60,0xa4,0x12,0x45,0x6d,0xa,0xca,0x72,0x1e,0x2,0xd1,0x69,0xf2,0x0,0x6b,0x63,0x7d,0xc,0xf3,0xec,0x91,0xd6,0x77,0xeb,0xc6,0x2d,0x88,0x2,0x5b,0x6b,0x34,0xaa,0xc8,0x94,0xbd,0xd6,0x6a,0xe4,0x13,0x77,0x70,0x12,0xaf,0x47,0xb,0x29,0x76,0x5f,0xf0,0xb,0x45,0xbf,0xb7,0x21,0xe9,0x4a,0x3e,0x41,0xe7,0xb,0xc,0xab,0x9a,0xe2,0x5c,0x66,0xc4,0xdb,0x21,0x73,0x1d,0xa7,0x2e,0x90,0x4e,0xbd,0x71,0x43,0x33,0xbe,0xa6,0x96,0x29,0x8c,0x3d,0x66,0x7a,0xba,0xee,0x6c,0x49,0xf8,0xd8,0x57,0xfd,0xa2,0x35,0x5a,0xb7,0x75,0x9e,0x90,0x91,0xa4,0x2f,0xc9,0x59,0x99,0xa3,0xd1,0xc3,0x80,0x88,0x5b,0x40,0xfe,0x23,0x6a,0x7d,0xde,0x1d,0xa6,0x38,0x96,0x41,0x67,0xc1,0x15,0x28,0x85,0xa7,0x91,0xbf,0x86,0xa6,0x35,0x3a,0x2f,0x27,0x1e,0xf4,0xab,0x4e,0xdc,0x11,0x72,0x92,0xdc,0x50,0x39,0x21,0xc8,0xd7,0xa0,0x27,0xc2,0xc4,0x40,0x9c,0x29,0x31,0x7a,0x5a,0xb6,0x45,0x52,0x9e,0x50,0xa1,0x65,0xa3,0xd0,0xe8,0xf1,0xbe,0x89,0x78,0x48,0x4b,0x1e,0x59,0x3d,0x3f,0xc8,0x53,0x3f,0x22,0xc8,0x51,0x10,0x12,0x99,0x6c,0xce,0x75,0xe4,0x9e,0xe4,0x28,0x40,0x3,0xfa,0x2b,0x3c,0x92,0x22,0xd9,0xb6,0xd3,0x79,0xf,0x7c,0x7e,0xb1,0x8e,0x5f,0x12,0x6d,0x17,0xab,0xa1,0x44,0x3d,0x32,0xbc,0x45,0x83,0xca,0x77,0x9b,0x38,0xaa,0xe9,0xeb,0xd1,0x9b,0x32,0xa3,0x80,0xa5,0x71,0xfe,0x46,0xc2,0x31,0x29,0xe5,0x98,0xcc,0x6d,0x53,0x13,0x3a,0x65,0xc5,0xc7,0xf9,0xb5,0x46,0xd0,0x98,0x72,0x43,0xe4,0x99,0xd7,0xb3,0xbb,0x94,0x15,0xae,0xe,0xa3,0xe1,0xaa,0x14,0x93,0xc9,0xe6,0xf1,0x36,0xe7,0x7,0xb0,0x51,0x8c,0x4c,0x6,0x7e,0x95,0x45,0xad,0xe3,0x62,0x2a,0x55,0x8d,0xb2,0x8,0xb9,0x42,0xa9,0x8c,0x92,0xc7,0xc1,0xd3,0xa6,0xaa,0x98,0x3,0x69,0x76,0x5,0x91,0x9c,0x96,0xe6,0x91,0xaa,0x31,0x15,0x21,0x9e,0x66,0xe7,0x33,0x79,0xff,0xc4,0x27,0xce,0x80,0xd1,0x5d,0x43,0x3a,0xdc,0x62,0xd8,0x30,0x66,0x42,0x8d,0x61,0x9b,0x2d,0x49,0x7f,0xcd,0x3b,0x84,0x18,0x61,0x8f,0xa2,0x4a,0xa5,0x5f,0x7c,0x66,0x90,0x43,0x86,0xdb,0x8,0x64,0x90,0xac,0xc6,0xc6,0x33,0x63,0x1f,0xab,0x9c,0x19,0x4a,0x86,0x36,0xc8,0x42,0x79,0xdb,0xe3,0xc2,0x33,0x9e,0x3f,0xab,0xc7,0xd8,0x26,0x8c,0xc5,0x17,0x44,0x51,0xa7,0xb4,0xea,0x3,0x61,0xf1,0x7d,0x5b,0xe8,0x51,0xbd,0x8f,0x53,0xe4,0x5c,0xd3,0xa4,0x65,0xf5,0x3c,0x66,0xf6,0xc1,0xa,0xd6,0xac,0xca,0x83,0x68,0xcd,0xa4,0xa0,0x85,0x3f,0x67,0xa4,0xb5,0x5b,0x89,0x2b,0x6d,0xf9,0x75,0xbe,0x4c,0x7d,0x44,0xc0,0xf1,0xc9,0x94,0x66,0xd7,0x9a,0x40,0x57,0x2b,0x33,0x3d,0x8a,0x24,0x98,0xb2,0x29,0x92,0x75,0x6e,0xa6,0xe3,0x0,0xb7,0xb2,0x7f,0xc,0xdc,0xbd,0x55,0x32,0x1b,0x85,0xba,0x25,0x67,0x6a,0xa,0x1a,0xf2,0x44,0xc8,0xfe,0xf4,0x50,0x58,0xee,0x91,0x5e,0x68,0xb5,0x0,0xd,0xb8,0x8f,0x1c,0xbc,0xbc,0x68,0xc6,0x88,0xdf,0x66,0xbd,0x43,0xb3,0x9c,0xbb,0x47,0xc7,0x3f,0x5e,0x58,0x83,0xc4,0x4c,0x54,0x43,0xb7,0x3d,0x8a,0xbc,0x75,0xc9,0xcc,0x8c,0xf1,0xe7,0x35,0x7a,0x77,0x2b,0x48,0x11,0x67,0x3e,0x78,0x34,0xa9,0x43,0xd9,0xe,0x5f,0xc7,0xe4,0x5a,0x3b,0x31,0xae,0x49,0x83,0xea,0xa,0xf3,0x64,0xcd,0x40,0x17,0x7b,0x21,0x62,0xa6,0x80,0x5a,0x5f,0xff,0xaa,0xb0,0xad,0xf5,0x9f,0xb5,0x48,0x74,0x89,0xfd,0x42,0xd5,0xfc,0xc,0x9c,0x8c,0x1c,0xc8,0x93,0x85,0xdf,0x7d,0x24,0xa9,0x2d,0x4b,0x92,0x6a,0xbd,0x43,0x8f,0xa4,0xc5,0xee,0xef,0xdf,0xc1,0x2,0xd,0x79,0xa3,0x5f,0xa,0x6,0x4a,0x9c,0x74,0x3,0x9b,0x8d,0xc8,0x8d,0x66,0xb0,0x21,0xc9,0xb,0xcb,0xf3,0x46,0xc3,0x33,0xa3,0xd7,0x5f,0xc6,0x81,0x1a,0x6,0x35,0x2a,0x43,0xe9,0xe3,0x68,0x5d,0x23,0x82,0x59,0xf3,0xbf,0x9f,0xe7,0x79,0x7e,0xbe,0xc0,0xce,0xb,0x3c,0x1a,0x9e,0x2c,0x6,0x6c,0x64,0xb,0x34,0x2f,0x32,0x1b,0xaa,0xc2,0x20,0x16,0xab,0x65,0x34,0x2d,0x49,0xd9,0x64,0xa4,0x2f,0xf9,0xcb,0x8f,0x9f,0x4f,0xa9,0x87,0xa6,0x49,0xec,0xb3,0xd6,0x62,0xf4,0xe0,0x56,0xb9,0x85,0x94,0xd7,0x28,0x55,0xd1,0xaa,0x93,0x9f,0x9c,0xc8,0x83,0xd8,0x39,0xc6,0x5a,0x12,0xe4,0x24,0xe2,0xb9,0x89,0x93,0xd4,0xf6,0xe7,0x7f,0xbd,0x42,0xab,0xb1,0xd9,0xe,0x6d,0x6e,0x2c,0x83,0x94,0x24,0x49,0x63,0x7c,0xce,0xc6,0xa,0xf,0x0,0xcb,0x68,0x64,0x24,0xa3,0xe9,0x83,0xb7,0x61,0xa3,0xe0,0xf6,0xf1,0x90,0x55,0x7e,0xbb,0x31,0x67,0x8e,0x49,0x2,0xd3,0xf9,0x6c,0x3c,0x8e,0x7a,0xe8,0x45,0x7f,0xc4,0xe6,0x19,0xca,0x4e,0x37,0x6b,0xd8,0x31,0x4,0xe7,0x99,0xcf,0xa9,0x99,0x7e,0x51,0xa1,0x94,0xd2,0x49,0x13,0x88,0x34,0x9a,0x66,0x8a,0x14,0x98,0x37,0xa,0xe,0x3b,0x91,0x0,0xe4,0xc7,0x82,0x54,0xed,0x6b,0x80,0x3,0xc4,0x54,0x8c,0x38,0x4b,0x27,0xd7,0xa9,0x54,0x2d,0x76,0x43,0x89,0xc7,0x14,0xcc,0x9a,0xb7,0x76,0x62,0x4e,0x23,0x59,0x34,0xf2,0xc1,0x6b,0x51,0x9d,0x64,0x8c,0xe2,0x3c,0xb5,0x28,0xfe,0xd1,0x8,0x22,0x56,0xc6,0x51,0xe,0xcb,0x4d,0x30,0x19,0x70,0x44,0x84,0x82,0xa5,0x5f,0x1a,0xf4,0x7f,0x1b,0x17,0xb2,0xca,0x3c,0x77,0xb3,0x94,0x1,0xcb,0x94,0x5a,0x45,0xb9,0x0,0xc1,0xd2,0x97,0xc,0xf0,0x8,0xcb,0xde,0x71,0xe1,0xb6,0x41,0x2c,0x6c,0x4,0x40,0x3d,0xd3,0xe7,0x2f,0xa2,0x43,0x84,0x47,0xf3,0x64,0xe6,0x31,0xd0,0x53,0xb6,0x46,0xb9,0xec,0x21,0x85,0xd3,0xc9,0x42,0x86,0xb7,0x95,0x15,0x25,0x89,0xb0,0xb4,0x87,0x8c,0x2e,0xc4,0xaa,0xf2,0x69,0x8e,0xa6,0x74,0x1d,0xb1,0x10,0xdc,0xba,0xf,0x91,0x71,0xf2,0x54,0xdb,0x8f,0x31,0x68,0x5b,0x58,0x49,0x98,0x99,0x84,0x4b,0x96,0x56,0xa9,0x85,0x1f,0x45,0x85,0x58,0x7c,0x94,0xa7,0xec,0x6a,0x69,0x1d,0x36,0x23,0x23,0x64,0xde,0x7,0xd8,0x21,0x8d,0x45,0x7e,0x4,0x22,0xee,0xe5,0xbe,0x99,0xd0,0x34,0xe3,0xb9,0xa1,0x14,0x22,0x85,0xd1,0x21,0x69,0x7c,0x69,0x27,0x6f,0xaa,0x7e,0x1e,0xb3,0x23,0x9a,0x39,0x62,0x45,0xfc,0x1b,0x61,0x6e,0xcd,0x38,0x15,0x64,0x98,0x4b,0x21,0x7d,0xc2,0xbb,0x53,0x60,0x86,0xa3,0x18,0xf9,0xa3,0xb7,0x36,0xcd,0x6d,0x47,0x52,0x65,0x2f,0xa,0xb6,0x5e,0xc,0xb6,0xae,0x75,0x77,0x9f,0xfd,0x20,0xf6,0x52,0x14,0x6e,0xd,0x73,0x71,0xb8,0xbf,0x3e,0x6b,0x9b,0x22,0x72,0x23,0x4,0xdb,0xac,0x86,0x36,0x16,0x2d,0x32,0xf9,0xfc,0x47,0xde,0x58,0x22,0x15,0xa7,0xd2,0xd1,0xfc,0x2c,0x28,0x2a,0x17,0xf4,0xa2,0xc7,0x67,0xb5,0x7d,0x3c,0x46,0x51,0xe5,0x63,0x1e,0x5d,0x55,0x21,0x38,0xc9,0xa1,0x69,0x25,0xad,0xd1,0x39,0x4d,0xa7,0xe2,0xd9,0x2d,0x89,0x7b,0x3,0x1a,0x6d,0x84,0xa2,0x4a,0xd1,0x2a,0xb6,0xd1,0xa4,0x54,0x9f,0xf,0x2f,0xfe,0xec,0x19,0xc7,0xba,0x93,0x82,0x67,0x92,0xd6,0x8a,0xe5,0xcc,0x9f,0x33,0xc,0x64,0x32,0xd7,0x31,0xec,0xa3,0xa1,0xdd,0x93,0x2,0x93,0x44,0x1b,0x84,0x8a,0x58,0xd1,0xcf,0x9f,0xd8,0x40,0x66,0xbb,0x51,0xa1,0x4d,0x64,0x58,0xcc,0x77,0x64,0xf1,0xd6,0x18,0x73,0x7c,0x6d,0xb1,0x29,0x9a,0xa5,0x65,0x7a,0xa2,0x76,0x2d,0x46,0xc7,0x27,0xcd,0x57,0xa5,0x66,0x97,0xd8,0x2c,0xb,0xe4,0x22,0xa0,0x18,0xb9,0x59,0x2d,0x3a,0xbd,0xe9,0x8c,0x19,0x7f,0xd9,0xb1,0x38,0xf9,0x31,0xf9,0x4c,0x58,0xb1,0x4f,0x13,0x9a,0xcd,0x9,0x8c,0x69,0x96,0x3,0xd7,0xd4,0x32,0xa7,0xac,0xaa,0xb7,0xb8,0xa8,0x69,0x84,0xd5,0x6a,0xad,0x40,0x9b,0x4e,0x68,0x1a,0x9a,0x1d,0xe1,0xcc,0xf0,0xcf,0xb9,0x8d,0xe4,0x8,0x2,0xb2,0xe3,0xb4,0xa0,0x64,0x72,0xd7,0x77,0xcd,0xd2,0xec,0x99,0xdd,0xec,0xda,0xdc,0x9d,0x9b,0x82,0xed,0x10,0xda,0x3a,0x9e,0x20,0x6f,0xfd,0xf2,0x61,0x88,0x56,0x47,0x3f,0xa1,0x4b,0x69,0x26,0x86,0x70,0x9,0xe5,0xd0,0x31,0x69,0x79,0x23,0xa3,0xa3,0x6d,0x4,0xa7,0x22,0x23,0x70,0x85,0x26,0x69,0x46,0xb2,0x93,0x60,0xf7,0xd7,0x9c,0x6,0x14,0x82,0x9b,0x85,0x97,0xc5,0x2,0xeb,0xdd,0xc9,0x62,0xf3,0x2c,0x84,0x5e,0x87,0xd5,0xdc,0x4,0x4c,0x26,0x3b,0x3,0x72,0x12,0x74,0xdf,0x77,0x15,0x43,0x93,0xc9,0x39,0xce,0x68,0x6e,0xef,0x7,0x1d,0xfb,0xdb,0x30,0x99,0x2e,0x2a,0xce,0x2a,0xcd,0xb,0xf8,0xdf,0xb9,0x21,0x42,0xdc,0x10,0x66,0xe0,0x4e,0xf3,0xb8,0x1d,0xbb,0xd0,0xa6,0xfa,0xc5,0xa8,0x48,0xa5,0x8c,0x84,0x89,0x3a,0xd6,0x51,0x4c,0xf6,0x80,0x98,0x79,0xc,0x93,0xe1,0x4b,0xbe,0xf5,0x16,0xde,0xe7,0x4c,0x6e,0xb2,0x91,0x58,0xc7,0x2,0x9,0x2b,0x52,0x1,0x21,0xeb,0xed,0x3a,0xa2,0x30,0xe,0xfa,0x28,0xf5,0xaa,0x90,0x47,0x46,0xe9,0xf9,0xfa,0x2,0xd9,0x26,0x3b,0x4,0x37,0xf9,0xf2,0x51,0x17,0x77,0x3a,0x54,0x1c,0x44,0xed,0xdc,0x6c,0x38,0xc7,0x4b,0xb8,0x9d,0x2e,0xe4,0x3a,0xe8,0x9d,0x9c,0x3f,0x27,0x1d,0xcc,0xf0,0xe4,0x52,0x4c,0xf4,0x48,0xf2,0x37,0x57,0x59,0xd0,0xac,0x85,0xda,0xa1,0x99,0x75,0xb7,0xce,0x18,0xf5,0x24,0x11,0xd7,0xa,0x4f,0x29,0x45,0xff,0x84,0x73,0x90,0xf7,0xae,0x10,0xc4,0xad,0x44,0x72,0xb7,0x84,0x89,0x33,0xb3,0xc,0x5,0x36,0x2a,0x7b,0xc2,0x26,0x14,0xd6,0x2a,0x7d,0xc3,0x49,0x23,0x14,0x39,0x7d,0xfa,0x54,0x92,0xe2,0x44,0xa1,0xe3,0xc2,0x65,0x5e,0xf,0x8a,0x14,0x52,0xc8,0xc9,0x22,0x47,0x8a,0xfd,0xe7,0x9f,0xb0,0x48,0x2d,0x9e,0xf4,0x74,0x16,0xb3,0x8d,0xb1,0xd4,0x0,0x18,0x30,0xa9,0xaf,0x59,0xb5,0x21,0x9d,0x14,0x68,0xc6,0x4a,0x30,0x54,0x69,0xab,0x19,0x8f,0xce,0xc8,0x72,0x56,0xf7,0x85,0xb0,0xbf,0x3f,0xcf,0x9e,0x4f,0x4a,0x85,0xd6,0x42,0xc0,0xa6,0xd7,0x33,0xe7,0xde,0xed,0x8e,0xf0,0x49,0xdd,0x70,0x62,0x5e,0x6e,0xfc,0x77,0x8d,0x4c,0xad,0x1a,0x11,0x3f,0x67,0x8,0x9a,0x46,0x20,0x45,0x2d,0xd2,0x4e,0x24,0x5a,0x7a,0x33,0x68,0xb6,0x6b,0xa6,0x93,0xa0,0xd9,0x12,0xb5,0xf0,0x12,0x75,0xdc,0xb5,0x66,0xb2,0x6b,0x5a,0x99,0x4,0xf8,0xff,0x2,0xe9,0x6d,0xaf,0x68,0xa0,0xba,0x9b,0xc5,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82, - }; - - CONST Vector DATA_ROBOTO_TTF = { - 0x0,0x1,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x4,0x0,0x20,0x47,0x44,0x45,0x46,0xa6,0x43,0xa4,0x4c,0x0,0x0,0x3,0x90,0x0,0x0,0x2,0x58,0x47,0x50,0x4f,0x53,0x4d,0x39,0x68,0x25,0x0,0x0,0x5d,0xf4,0x0,0x0,0x58,0xfc,0x47,0x53,0x55,0x42,0xfb,0x94,0xe5,0x31,0x0,0x0,0x47,0xfc,0x0,0x0,0x15,0xf6,0x4f,0x53,0x2f,0x32,0x99,0x77,0xb1,0xa9,0x0,0x0,0x2,0x30,0x0,0x0,0x0,0x60,0x53,0x54,0x41,0x54,0x5f,0x0,0x42,0x6d,0x0,0x0,0x1,0xd4,0x0,0x0,0x0,0x5a,0x63,0x6d,0x61,0x70,0xc1,0x25,0x61,0xd3,0x0,0x0,0x8,0xb8,0x0,0x0,0x6,0x84,0x63,0x76,0x74,0x20,0x3b,0xf8,0x26,0x7d,0x0,0x0,0x2,0x90,0x0,0x0,0x0,0xfe,0x66,0x70,0x67,0x6d,0xa8,0x5,0x84,0x32,0x0,0x0,0x23,0xd0,0x0,0x0,0xf,0x86,0x67,0x61,0x73,0x70,0x0,0x8,0x0,0x19,0x0,0x0,0x1,0x2c,0x0,0x0,0x0,0xc,0x67,0x6c,0x79,0x66,0xe2,0x8f,0x5f,0xa,0x0,0x0,0xb6,0xf0,0x0,0x1,0x88,0xf0,0x68,0x65,0x61,0x64,0x9,0xe4,0x61,0x31,0x0,0x0,0x1,0x9c,0x0,0x0,0x0,0x36,0x68,0x68,0x65,0x61,0xb,0x5e,0xb,0x9,0x0,0x0,0x1,0x78,0x0,0x0,0x0,0x24,0x68,0x6d,0x74,0x78,0xb1,0x14,0xde,0x58,0x0,0x0,0x33,0x58,0x0,0x0,0x14,0xa4,0x6c,0x6f,0x63,0x61,0x90,0x93,0xee,0x7b,0x0,0x0,0x19,0x7c,0x0,0x0,0xa,0x54,0x6d,0x61,0x78,0x70,0x8,0xd9,0x10,0xc6,0x0,0x0,0x1,0x38,0x0,0x0,0x0,0x20,0x6e,0x61,0x6d,0x65,0xb8,0x4c,0xa7,0xd3,0x0,0x0,0xf,0x3c,0x0,0x0,0xa,0x3e,0x70,0x6f,0x73,0x74,0xff,0x6d,0x0,0x64,0x0,0x0,0x1,0x58,0x0,0x0,0x0,0x20,0x70,0x72,0x65,0x70,0x79,0x58,0xce,0xd3,0x0,0x0,0x5,0xe8,0x0,0x0,0x2,0xce,0x0,0x1,0x0,0x2,0x0,0x8,0x0,0x8,0xff,0xff,0x0,0xf,0x0,0x1,0x0,0x0,0x5,0x29,0x0,0xa9,0x0,0x15,0x0,0x76,0x0,0x7,0x0,0x2,0x0,0x10,0x0,0x2f,0x0,0x9a,0x0,0x0,0x2,0xe6,0xf,0x75,0x0,0x3,0x0,0x1,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x6a,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7,0x6c,0xfe,0xc,0x0,0x0,0x9,0xab,0xfa,0x3c,0xfe,0x28,0x9,0xb3,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x29,0x0,0x1,0x0,0x0,0x0,0x3,0x2,0x4e,0xda,0x5e,0x6d,0xa1,0x5f,0xf,0x3c,0xf5,0x0,0x1b,0x8,0x0,0x0,0x0,0x0,0x0,0xc4,0xf0,0x11,0x2e,0x0,0x0,0x0,0x0,0xe1,0xd4,0x2,0x6f,0xfa,0x3c,0xfd,0xd5,0x9,0xb3,0x8,0x73,0x0,0x0,0x0,0x9,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x8,0x0,0x3,0x0,0x0,0x0,0x14,0x0,0x3,0x0,0x0,0x0,0x2c,0x0,0x2,0x77,0x64,0x74,0x68,0x1,0x1,0x0,0x0,0x77,0x67,0x68,0x74,0x1,0x0,0x0,0x1,0x69,0x74,0x61,0x6c,0x1,0x2,0x0,0x2,0x0,0x22,0x0,0x16,0x0,0x6,0x0,0x3,0x0,0x2,0x0,0x2,0x1,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x1,0xb,0x3,0x84,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x1,0x27,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0xa7,0x3,0x84,0x0,0x5,0x0,0x0,0x5,0x9a,0x5,0x33,0x0,0x0,0x1,0x1f,0x5,0x9a,0x5,0x33,0x0,0x0,0x3,0xd1,0x0,0x66,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x0,0x2,0xff,0x50,0x0,0x20,0x5b,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x47,0x4f,0x4f,0x47,0x0,0x40,0x0,0x0,0xff,0xfd,0x6,0x0,0xfe,0x0,0x0,0x66,0x7,0x9a,0x2,0x0,0x20,0x0,0x1,0x9f,0x0,0x0,0x0,0x0,0x4,0x3a,0x5,0xb0,0x0,0x0,0x0,0x20,0x0,0x3,0x6,0x0,0x0,0x15,0x5,0xb0,0x0,0x14,0x5,0xb0,0x0,0x14,0x4,0x3a,0x0,0x14,0x0,0x0,0xff,0xec,0x0,0x0,0xff,0xec,0x0,0x0,0xff,0xec,0xfe,0x60,0xff,0xf5,0x5,0xb0,0x0,0x15,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0xbd,0x0,0xc0,0x0,0x9d,0x0,0x9d,0x0,0xba,0x0,0x97,0x0,0x97,0x0,0x27,0x0,0xc0,0x0,0x9d,0x0,0x86,0x0,0xbc,0x0,0xab,0x0,0xba,0x0,0x9a,0x0,0xd3,0x0,0xb3,0x0,0x99,0x1,0xe0,0x0,0x96,0x0,0xba,0x0,0x9a,0x0,0xa9,0x1,0xb,0x0,0x82,0x0,0xae,0x0,0xa0,0x0,0x8c,0x0,0x95,0x0,0xb9,0x0,0xa9,0x0,0x17,0x0,0x93,0x0,0x9a,0x0,0x7b,0x0,0x8b,0x0,0xa1,0x0,0xde,0x0,0xa0,0x0,0x8c,0x0,0x9d,0x0,0xb6,0x0,0x27,0x0,0xc0,0x0,0x9d,0x0,0xa4,0x0,0x86,0x0,0xa2,0x0,0xab,0x0,0xb6,0x0,0xbf,0x0,0xba,0x0,0x82,0x0,0x8e,0x0,0x9a,0x0,0xa2,0x0,0xb2,0x0,0xd3,0x0,0x91,0x0,0x99,0x0,0xad,0x0,0xb3,0x0,0xbe,0x1,0xc9,0x1,0xfd,0x0,0x96,0x0,0xba,0x0,0x47,0x0,0x98,0x0,0x9d,0x0,0xa9,0x1,0xb,0x0,0x82,0x0,0x99,0x0,0x9f,0x0,0xa9,0x0,0xb0,0x0,0x81,0x0,0x85,0x0,0x8b,0x0,0x94,0x0,0xa9,0x0,0xb5,0x0,0xba,0x0,0x17,0x0,0x50,0x0,0x63,0x0,0x78,0x0,0x7d,0x0,0x83,0x0,0x8b,0x0,0x90,0x0,0x98,0x0,0xa2,0x0,0xae,0x0,0xd4,0x0,0xde,0x1,0x26,0x0,0x7b,0x0,0x89,0x0,0x93,0x0,0x9d,0x0,0xa5,0x0,0xb4,0x4,0x8d,0x0,0x10,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x28,0x0,0x2,0x0,0x59,0x0,0x25,0x0,0x3e,0x0,0x1,0x0,0x44,0x0,0x5e,0x0,0x1,0x0,0x6a,0x0,0x6a,0x0,0x1,0x0,0x70,0x0,0x70,0x0,0x1,0x0,0x75,0x0,0x75,0x0,0x1,0x0,0x81,0x0,0x81,0x0,0x1,0x0,0x83,0x0,0x83,0x0,0x1,0x0,0x86,0x0,0x86,0x0,0x1,0x0,0x89,0x0,0x89,0x0,0x1,0x0,0x8b,0x0,0x96,0x0,0x1,0x0,0x98,0x0,0x9f,0x0,0x1,0x0,0xa1,0x0,0xa3,0x0,0x1,0x0,0xa5,0x0,0xa6,0x0,0x1,0x0,0xa8,0x0,0xad,0x0,0x3,0x0,0xb1,0x0,0xb1,0x0,0x1,0x0,0xba,0x0,0xbb,0x0,0x1,0x0,0xbf,0x0,0xbf,0x0,0x1,0x0,0xc1,0x0,0xc1,0x0,0x1,0x0,0xc3,0x0,0xc4,0x0,0x1,0x0,0xc7,0x0,0xc7,0x0,0x1,0x0,0xcb,0x0,0xcb,0x0,0x1,0x0,0xcd,0x0,0xce,0x0,0x1,0x0,0xd0,0x0,0xd1,0x0,0x1,0x0,0xd3,0x0,0xd3,0x0,0x1,0x0,0xda,0x0,0xde,0x0,0x1,0x0,0xe1,0x0,0xe1,0x0,0x1,0x0,0xe5,0x0,0xe5,0x0,0x1,0x0,0xe7,0x0,0xe9,0x0,0x1,0x0,0xeb,0x0,0xfb,0x0,0x1,0x0,0xfd,0x0,0xfd,0x0,0x1,0x0,0xff,0x1,0x1,0x0,0x1,0x1,0x3,0x1,0x3,0x0,0x1,0x1,0x8,0x1,0x9,0x0,0x1,0x1,0x16,0x1,0x1a,0x0,0x1,0x1,0x1c,0x1,0x1c,0x0,0x1,0x1,0x20,0x1,0x22,0x0,0x1,0x1,0x24,0x1,0x27,0x0,0x3,0x1,0x2a,0x1,0x2b,0x0,0x1,0x1,0x33,0x1,0x34,0x0,0x1,0x1,0x36,0x1,0x36,0x0,0x1,0x1,0x3b,0x1,0x3c,0x0,0x1,0x1,0x41,0x1,0x44,0x0,0x1,0x1,0x47,0x1,0x48,0x0,0x1,0x1,0x4b,0x1,0x4d,0x0,0x1,0x1,0x51,0x1,0x51,0x0,0x1,0x1,0x54,0x1,0x58,0x0,0x1,0x1,0x5d,0x1,0x5e,0x0,0x1,0x1,0x62,0x1,0x62,0x0,0x1,0x1,0x64,0x1,0x64,0x0,0x1,0x1,0x68,0x1,0x68,0x0,0x1,0x1,0x6a,0x1,0x6c,0x0,0x1,0x1,0x6e,0x1,0x6e,0x0,0x1,0x1,0x70,0x1,0x70,0x0,0x1,0x1,0xd5,0x1,0xdb,0x0,0x2,0x1,0xec,0x2,0x0,0x0,0x1,0x2,0x4,0x2,0x4,0x0,0x1,0x2,0xd,0x2,0xd,0x0,0x1,0x2,0xf,0x2,0xf,0x0,0x1,0x2,0x16,0x2,0x18,0x0,0x1,0x2,0x1a,0x2,0x1b,0x0,0x1,0x2,0x1d,0x2,0x1d,0x0,0x1,0x2,0x21,0x2,0x21,0x0,0x1,0x2,0x23,0x2,0x25,0x0,0x1,0x2,0x2b,0x2,0x2b,0x0,0x1,0x2,0x30,0x2,0x32,0x0,0x1,0x2,0x34,0x2,0x34,0x0,0x1,0x2,0x42,0x2,0x42,0x0,0x1,0x2,0x45,0x2,0x45,0x0,0x1,0x2,0x47,0x2,0x47,0x0,0x1,0x2,0x4a,0x2,0x4d,0x0,0x1,0x2,0x79,0x2,0x7d,0x0,0x1,0x2,0x8d,0x2,0x92,0x0,0x1,0x2,0x95,0x2,0xfd,0x0,0x1,0x3,0x0,0x3,0xbf,0x0,0x1,0x3,0xc1,0x3,0xc1,0x0,0x1,0x3,0xc3,0x3,0xcd,0x0,0x1,0x3,0xcf,0x3,0xd8,0x0,0x1,0x3,0xda,0x3,0xf5,0x0,0x1,0x3,0xf9,0x3,0xf9,0x0,0x1,0x3,0xfb,0x4,0x2,0x0,0x1,0x4,0x4,0x4,0x6,0x0,0x1,0x4,0x9,0x4,0xd,0x0,0x1,0x4,0xf,0x4,0x9a,0x0,0x1,0x4,0x9d,0x4,0x9e,0x0,0x1,0x4,0xa0,0x4,0xa1,0x0,0x1,0x4,0xa3,0x4,0xa6,0x0,0x1,0x4,0xb0,0x5,0xc,0x0,0x1,0x5,0xe,0x5,0x18,0x0,0x1,0x5,0x1b,0x5,0x28,0x0,0x1,0x0,0x1,0x0,0x3,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x10,0x0,0x2,0x0,0x2,0x0,0xa8,0x0,0xac,0x0,0x0,0x1,0x24,0x1,0x27,0x0,0x5,0x0,0x2,0x0,0x1,0x0,0xa8,0x0,0xac,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0xad,0x40,0xff,0x7e,0x34,0x7d,0x55,0x7c,0x3e,0xff,0x1f,0x7b,0x3b,0xff,0x1f,0x7a,0x3d,0xff,0x1f,0x79,0x3b,0x40,0x1f,0x78,0x3c,0xff,0x1f,0x77,0x3c,0x3d,0x1f,0x76,0x35,0x7,0x1f,0x75,0x3a,0xff,0x1f,0x74,0x3a,0x67,0x1f,0x73,0x39,0x4f,0x1f,0x72,0x39,0xff,0x1f,0x71,0x36,0xff,0x1f,0x70,0x38,0xcd,0x1f,0x6f,0x38,0xff,0x1f,0x6e,0x37,0x5e,0x1f,0x6d,0x37,0xcd,0x1f,0x6c,0x37,0xff,0x1f,0x6b,0x37,0x2d,0x1f,0x6a,0x37,0x18,0x1f,0x69,0x34,0xff,0x1f,0x68,0x32,0xff,0x1f,0x67,0x32,0xcd,0x1f,0x66,0x33,0xff,0x1f,0x65,0x31,0xff,0x1f,0x64,0x30,0xff,0x1f,0x63,0x30,0xab,0x1f,0x62,0x30,0x67,0x1f,0x61,0x2e,0xff,0x1f,0x60,0x2e,0x80,0x1f,0x5f,0x2f,0xff,0x1f,0x5e,0x2f,0x93,0x1f,0x5d,0x2d,0xff,0x1f,0x5c,0x2c,0xff,0x1f,0x5b,0x2b,0xff,0x1f,0x5a,0x2a,0xcd,0x1f,0x59,0x2a,0xff,0x1f,0x58,0x2a,0xd,0x1f,0x57,0x29,0xff,0x1f,0x56,0x28,0xff,0x1f,0x55,0x27,0x24,0x1f,0x54,0x27,0x2d,0x1f,0x53,0x25,0x5e,0x1f,0x52,0x25,0xff,0x1f,0x51,0x25,0xab,0x1f,0x50,0x26,0xff,0x1f,0x4f,0x26,0x80,0x1f,0x4e,0x24,0xff,0x1f,0x4d,0x23,0x2b,0x1f,0x4c,0x23,0xab,0x1f,0x4b,0x23,0xff,0x1f,0x4a,0x23,0x56,0x1f,0x49,0x23,0x2b,0x1f,0x48,0x22,0xff,0x1f,0x47,0x20,0xff,0x1f,0x46,0x20,0x72,0x1f,0x45,0x21,0xff,0x1f,0x44,0x21,0x72,0x1f,0x43,0x1f,0xff,0x1f,0x42,0x1e,0x93,0x1f,0x41,0x1e,0xff,0x1f,0x40,0x1d,0xff,0x1f,0x3f,0x1c,0xff,0x1f,0x3d,0x3b,0x93,0x40,0xea,0x1f,0x3c,0x3b,0x34,0x1f,0x3a,0x35,0xe,0x1f,0x39,0x36,0x72,0x1f,0x38,0x36,0x4f,0x1f,0x37,0x36,0x22,0x1f,0x36,0x35,0x93,0x1f,0x33,0x32,0x40,0x1f,0x31,0x30,0x72,0x1f,0x2f,0x2e,0x4a,0x1f,0x2b,0x2a,0x40,0x1f,0x27,0x19,0x4,0x1f,0x26,0x25,0x28,0x1f,0x25,0x33,0x1b,0x19,0x5c,0x24,0x1a,0x12,0x1f,0x23,0x5,0x1a,0x19,0x5c,0x22,0x19,0xff,0x1f,0x21,0x20,0x3d,0x1f,0x20,0x38,0x18,0x16,0x5c,0x1f,0x18,0x2d,0x1f,0x1e,0x17,0xff,0x1f,0x1d,0x16,0xff,0x1f,0x1c,0x16,0x7,0x1f,0x1b,0x33,0x19,0x1c,0x5b,0x18,0x34,0x16,0x1c,0x5b,0x1a,0x33,0x19,0x1c,0x5b,0x17,0x34,0x16,0x1c,0x5b,0x15,0x19,0x3e,0x16,0xa6,0x5a,0x13,0x31,0x12,0x55,0x11,0x31,0x10,0x55,0x12,0x59,0x10,0x59,0xd,0x34,0xc,0x55,0x5,0x34,0x4,0x55,0xc,0x59,0x4,0x59,0x1f,0x4,0x5f,0x4,0x2,0xf,0x4,0x7f,0x4,0xef,0x4,0x3,0xf,0x5e,0xe,0x55,0xb,0x34,0xa,0x55,0x7,0x34,0x6,0x55,0x1,0x31,0x0,0x55,0xe,0x59,0xa,0x59,0x6,0x59,0x7f,0x6,0x1,0x2f,0x6,0x4f,0x6,0x6f,0x6,0x3,0x3f,0x6,0x5f,0x6,0x7f,0x6,0x3,0x0,0x59,0x2f,0x0,0x1,0x2f,0x0,0x6f,0x0,0xef,0x0,0x3,0x9,0x34,0x8,0x55,0x3,0x34,0x2,0x55,0x8,0x59,0x2,0x59,0x1f,0x2,0x5f,0x2,0x2,0xf,0x2,0x7f,0x2,0xef,0x2,0x3,0x3,0x40,0x40,0x5,0x1,0xb8,0x1,0x90,0xb0,0x54,0x2b,0x4b,0xb8,0x7,0xff,0x52,0x4b,0xb0,0x9,0x50,0x5b,0xb0,0x1,0x88,0xb0,0x25,0x53,0xb0,0x1,0x88,0xb0,0x40,0x51,0x5a,0xb0,0x6,0x88,0xb0,0x0,0x55,0x5a,0x5b,0x58,0xb1,0x1,0x1,0x8e,0x59,0x85,0x8d,0x8d,0x0,0x1d,0x42,0x4b,0xb0,0x90,0x53,0x58,0xb2,0x3,0x0,0x0,0x1d,0x42,0x59,0xb1,0x2,0x2,0x43,0x51,0x58,0xb1,0x4,0x3,0x8e,0x59,0x73,0x74,0x0,0x2b,0x0,0x2b,0x2b,0x2b,0x73,0x74,0x0,0x2b,0x73,0x74,0x75,0x0,0x2b,0x0,0x2b,0x0,0x2b,0x2b,0x2b,0x2b,0x2b,0x73,0x74,0x0,0x2b,0x0,0x2b,0x2b,0x2b,0x0,0x2b,0x0,0x2b,0x2b,0x2b,0x1,0x2b,0x1,0x2b,0x1,0x2b,0x1,0x2b,0x1,0x2b,0x1,0x2b,0x2b,0x0,0x2b,0x2b,0x1,0x2b,0x2b,0x1,0x2b,0x0,0x2b,0x0,0x2b,0x1,0x2b,0x2b,0x2b,0x2b,0x2b,0x1,0x2b,0x2b,0x0,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x1,0x2b,0x2b,0x0,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x1,0x2b,0x0,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x1,0x2b,0x2b,0x0,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x1,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x0,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x18,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x14,0x0,0x3,0x0,0x1,0x0,0x0,0x0,0x14,0x0,0x4,0x6,0x70,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0xd,0x0,0x7e,0x0,0xa0,0x0,0xac,0x0,0xad,0x0,0xbf,0x0,0xc6,0x0,0xcf,0x0,0xe6,0x0,0xef,0x0,0xfe,0x1,0xf,0x1,0x11,0x1,0x25,0x1,0x27,0x1,0x30,0x1,0x38,0x1,0x40,0x1,0x53,0x1,0x5f,0x1,0x67,0x1,0x7e,0x1,0x7f,0x1,0x8f,0x1,0x92,0x1,0xa1,0x1,0xb0,0x1,0xf0,0x1,0xfb,0x1,0xff,0x2,0x1b,0x2,0x37,0x2,0x59,0x2,0xbc,0x2,0xc7,0x2,0xc9,0x2,0xdd,0x2,0xf3,0x3,0x1,0x3,0x3,0x3,0x9,0x3,0xf,0x3,0x23,0x3,0x8a,0x3,0x8c,0x3,0x92,0x3,0xa1,0x3,0xb0,0x3,0xb9,0x3,0xc9,0x3,0xce,0x3,0xd2,0x3,0xd6,0x4,0x25,0x4,0x2f,0x4,0x45,0x4,0x4f,0x4,0x62,0x4,0x6f,0x4,0x79,0x4,0x86,0x4,0x8b,0x4,0x9f,0x4,0xa9,0x4,0xb1,0x4,0xba,0x4,0xc2,0x4,0xca,0x4,0xce,0x4,0xd7,0x4,0xe1,0x4,0xf5,0x5,0x1,0x5,0x10,0x5,0x13,0x1e,0x1,0x1e,0x3f,0x1e,0x85,0x1e,0xf1,0x1e,0xf3,0x1e,0xf9,0x1f,0x4d,0x20,0x9,0x20,0xb,0x20,0x11,0x20,0x15,0x20,0x1e,0x20,0x22,0x20,0x27,0x20,0x30,0x20,0x33,0x20,0x3a,0x20,0x3c,0x20,0x44,0x20,0x70,0x20,0x8e,0x20,0xa4,0x20,0xaa,0x20,0xac,0x20,0xb1,0x20,0xba,0x20,0xbd,0x21,0x5,0x21,0x13,0x21,0x16,0x21,0x22,0x21,0x26,0x21,0x2e,0x21,0x5e,0x22,0x2,0x22,0x6,0x22,0xf,0x22,0x12,0x22,0x1a,0x22,0x1e,0x22,0x2b,0x22,0x48,0x22,0x60,0x22,0x65,0x25,0xca,0xee,0x2,0xf6,0xc3,0xfb,0x4,0xfe,0xff,0xff,0xfd,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0xd,0x0,0x20,0x0,0xa0,0x0,0xa1,0x0,0xad,0x0,0xae,0x0,0xc0,0x0,0xc7,0x0,0xd0,0x0,0xe7,0x0,0xf0,0x0,0xff,0x1,0x10,0x1,0x12,0x1,0x26,0x1,0x28,0x1,0x31,0x1,0x39,0x1,0x41,0x1,0x54,0x1,0x60,0x1,0x68,0x1,0x7f,0x1,0x8f,0x1,0x92,0x1,0xa0,0x1,0xaf,0x1,0xf0,0x1,0xfa,0x1,0xfc,0x2,0x18,0x2,0x37,0x2,0x59,0x2,0xbc,0x2,0xc6,0x2,0xc9,0x2,0xd8,0x2,0xf3,0x3,0x0,0x3,0x3,0x3,0x9,0x3,0xf,0x3,0x23,0x3,0x84,0x3,0x8c,0x3,0x8e,0x3,0x93,0x3,0xa3,0x3,0xb1,0x3,0xba,0x3,0xca,0x3,0xd1,0x3,0xd6,0x4,0x0,0x4,0x26,0x4,0x30,0x4,0x46,0x4,0x50,0x4,0x63,0x4,0x70,0x4,0x7a,0x4,0x88,0x4,0x8c,0x4,0xa0,0x4,0xaa,0x4,0xb2,0x4,0xbb,0x4,0xc3,0x4,0xcb,0x4,0xcf,0x4,0xd8,0x4,0xe2,0x4,0xf6,0x5,0x2,0x5,0x11,0x1e,0x0,0x1e,0x3e,0x1e,0x80,0x1e,0xa0,0x1e,0xf2,0x1e,0xf4,0x1f,0x4d,0x20,0x0,0x20,0xa,0x20,0x10,0x20,0x13,0x20,0x17,0x20,0x20,0x20,0x25,0x20,0x30,0x20,0x32,0x20,0x39,0x20,0x3c,0x20,0x44,0x20,0x70,0x20,0x74,0x20,0xa3,0x20,0xa6,0x20,0xab,0x20,0xb1,0x20,0xb9,0x20,0xbc,0x21,0x5,0x21,0x13,0x21,0x16,0x21,0x22,0x21,0x26,0x21,0x2e,0x21,0x5b,0x22,0x2,0x22,0x6,0x22,0xf,0x22,0x11,0x22,0x1a,0x22,0x1e,0x22,0x2b,0x22,0x48,0x22,0x60,0x22,0x64,0x25,0xca,0xee,0x1,0xf6,0xc3,0xfb,0x1,0xfe,0xff,0xff,0xfc,0xff,0xff,0x0,0x1,0x0,0x0,0xff,0xf6,0xff,0xe4,0x1,0xf3,0xff,0xc2,0x1,0xe7,0xff,0xc1,0x0,0x0,0x1,0xda,0x0,0x0,0x1,0xd5,0x0,0x0,0x1,0xd1,0x0,0x0,0x1,0xcf,0x0,0x0,0x1,0xcd,0x0,0x0,0x1,0xcb,0x0,0x0,0x1,0xc5,0x0,0x0,0x1,0xc7,0xff,0x16,0xff,0x7,0xff,0x5,0xfe,0xf8,0xfe,0xeb,0x2,0x9,0x0,0x0,0x1,0x4a,0x0,0x0,0xfe,0x65,0xfe,0x44,0x1,0x3e,0xfd,0xd8,0xfd,0xd7,0xfd,0xc9,0xfd,0xb4,0xfd,0xa8,0xfd,0xa7,0xfd,0xa2,0xfd,0x9d,0xfd,0x8a,0x0,0x0,0x0,0x19,0x0,0x18,0x0,0x0,0x0,0x0,0xfd,0xa,0x0,0x0,0xff,0xf9,0xfc,0xfe,0xfc,0xfb,0x0,0x0,0xfc,0xba,0x0,0x0,0xfc,0xb2,0x0,0x0,0xfc,0xa7,0x0,0x0,0xfc,0xa1,0xfc,0xa0,0x0,0x0,0xfc,0x99,0x0,0x0,0xfc,0x91,0x0,0x0,0xfc,0x8b,0x0,0x0,0xff,0x43,0x0,0x0,0xff,0x40,0x0,0x0,0xfc,0x5e,0x0,0x0,0xe5,0xfd,0xe5,0xbd,0xe5,0x6e,0xe5,0x99,0xe5,0x2,0xe5,0x97,0xe5,0x98,0xe1,0x72,0xe1,0x73,0xe1,0x6f,0x0,0x0,0xe1,0x6c,0xe1,0x6b,0xe1,0x69,0xe1,0x61,0xe3,0xc4,0xe1,0x59,0xe3,0xbc,0xe1,0x50,0xe1,0x25,0xe1,0x22,0x0,0x0,0xe1,0xc,0x0,0x0,0xe1,0x7,0xe1,0x0,0xe0,0xff,0xe0,0xb8,0xe0,0xab,0xe0,0xa9,0xe0,0x9e,0xdf,0x94,0xe0,0x93,0xe0,0x67,0xdf,0xc4,0xde,0xac,0xdf,0xb8,0xdf,0xb7,0xdf,0xb0,0xdf,0xad,0xdf,0xa1,0xdf,0x85,0xdf,0x6e,0xdf,0x6b,0xdc,0x7,0x13,0xd1,0xb,0x11,0x6,0xd5,0x2,0xdd,0x1,0xe1,0x0,0x1,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0xfc,0x0,0x0,0x1,0x26,0x0,0x0,0x1,0x40,0x0,0x0,0x1,0x40,0x0,0x0,0x1,0x40,0x0,0x0,0x1,0x4c,0x0,0x0,0x1,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x6e,0x0,0x0,0x1,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x5c,0x0,0x0,0x0,0x0,0x1,0x64,0x1,0x80,0x0,0x0,0x1,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x0,0x0,0x1,0xf8,0x0,0x0,0x2,0x20,0x0,0x0,0x2,0x42,0x0,0x0,0x0,0x0,0x2,0x50,0x0,0x0,0x2,0x74,0x0,0x0,0x2,0x80,0x0,0x0,0x2,0x8c,0x0,0x0,0x2,0x90,0x0,0x0,0x2,0xa0,0x0,0x0,0x2,0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x94,0x0,0x0,0x2,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x9a,0x2,0x9b,0x2,0x9c,0x2,0x9d,0x2,0x9e,0x2,0x9f,0x0,0x81,0x2,0x96,0x2,0xaa,0x2,0xab,0x2,0xac,0x2,0xad,0x2,0xae,0x2,0xaf,0x0,0x82,0x0,0x83,0x2,0xb0,0x2,0xb1,0x2,0xb2,0x2,0xb3,0x2,0xb4,0x0,0x84,0x0,0x85,0x2,0xb5,0x2,0xb6,0x2,0xb7,0x2,0xb8,0x2,0xb9,0x2,0xba,0x0,0x86,0x0,0x87,0x2,0xc5,0x2,0xc6,0x2,0xc7,0x2,0xc8,0x2,0xc9,0x2,0xca,0x0,0x88,0x0,0x89,0x2,0xcb,0x2,0xcc,0x2,0xcd,0x2,0xce,0x2,0xcf,0x0,0x8a,0x2,0x95,0x0,0x8b,0x0,0x8c,0x2,0x97,0x0,0x8d,0x2,0xfe,0x2,0xff,0x3,0x0,0x3,0x1,0x3,0x2,0x3,0x3,0x0,0x8e,0x0,0x8f,0x0,0x90,0x3,0xc,0x3,0xd,0x3,0xe,0x3,0xf,0x3,0x10,0x3,0x11,0x3,0x12,0x0,0x91,0x0,0x92,0x3,0x13,0x3,0x14,0x3,0x15,0x3,0x16,0x3,0x17,0x3,0x18,0x0,0x93,0x0,0x94,0x3,0x27,0x3,0x28,0x3,0x2b,0x3,0x2c,0x3,0x2d,0x3,0x2e,0x2,0x98,0x2,0x99,0x2,0xa0,0x2,0xbb,0x3,0x25,0x3,0x26,0x3,0x29,0x3,0x2a,0x0,0xae,0x0,0xaf,0x3,0xa1,0x0,0xb0,0x3,0xa2,0x3,0xa3,0x3,0xa4,0x0,0xb1,0x0,0xb2,0x3,0xab,0x3,0xac,0x3,0xad,0x0,0xb3,0x3,0xae,0x3,0xaf,0x0,0xb4,0x3,0xb0,0x3,0xb1,0x0,0xb5,0x3,0xb2,0x0,0xb6,0x3,0xb3,0x0,0xb7,0x3,0xb4,0x3,0xb5,0x0,0xb8,0x3,0xb6,0x0,0xb9,0x0,0xba,0x3,0xb7,0x3,0xb8,0x3,0xb9,0x3,0xba,0x3,0xbb,0x3,0xbc,0x3,0xbd,0x3,0xbe,0x0,0xc4,0x3,0xc0,0x3,0xc1,0x0,0xc5,0x3,0xbf,0x0,0xc6,0x0,0xc7,0x0,0xc8,0x0,0xc9,0x0,0xca,0x0,0xcb,0x0,0xcc,0x3,0xc2,0x0,0xcd,0x0,0xce,0x3,0xff,0x3,0xc8,0x0,0xd2,0x3,0xc9,0x0,0xd3,0x3,0xca,0x3,0xcb,0x3,0xcc,0x3,0xcd,0x0,0xd4,0x0,0xd5,0x0,0xd6,0x3,0xcf,0x4,0x0,0x3,0xd0,0x0,0xd7,0x3,0xd1,0x0,0xd8,0x3,0xd2,0x3,0xd3,0x0,0xd9,0x3,0xd4,0x0,0xda,0x0,0xdb,0x0,0xdc,0x3,0xd5,0x3,0xce,0x0,0xdd,0x3,0xd6,0x3,0xd7,0x3,0xd8,0x3,0xd9,0x3,0xda,0x3,0xdb,0x3,0xdc,0x0,0xde,0x0,0xdf,0x3,0xdd,0x3,0xde,0x0,0xea,0x0,0xeb,0x0,0xec,0x0,0xed,0x3,0xdf,0x0,0xee,0x0,0xef,0x0,0xf0,0x3,0xe0,0x0,0xf1,0x0,0xf2,0x0,0xf3,0x0,0xf4,0x3,0xe1,0x0,0xf5,0x3,0xe2,0x3,0xe3,0x0,0xf6,0x3,0xe4,0x0,0xf7,0x3,0xe5,0x4,0x1,0x3,0xe6,0x1,0x2,0x3,0xe7,0x1,0x3,0x3,0xe8,0x3,0xe9,0x3,0xea,0x3,0xeb,0x1,0x4,0x1,0x5,0x1,0x6,0x3,0xec,0x4,0x2,0x3,0xed,0x1,0x7,0x1,0x8,0x1,0x9,0x4,0x9c,0x4,0x3,0x4,0x4,0x1,0x17,0x1,0x18,0x1,0x19,0x1,0x1a,0x4,0x5,0x4,0x6,0x4,0x8,0x4,0x7,0x4,0x9b,0x1,0x2c,0x1,0x2d,0x1,0x2e,0x1,0x2f,0x1,0x30,0x4,0x9d,0x4,0x9e,0x1,0x31,0x1,0x32,0x1,0x33,0x1,0x34,0x4,0x9,0x4,0xa,0x1,0x35,0x1,0x36,0x1,0x37,0x1,0x38,0x4,0x9f,0x4,0xa0,0x4,0xb,0x4,0xc,0x4,0x92,0x4,0x93,0x4,0xd,0x4,0xe,0x4,0xa1,0x4,0xa2,0x4,0x9a,0x1,0x4c,0x1,0x4d,0x4,0x98,0x4,0x99,0x4,0xf,0x4,0x10,0x4,0x11,0x4,0x94,0x4,0x95,0x1,0x56,0x1,0x57,0x1,0x58,0x4,0x1c,0x4,0x1b,0x4,0x1d,0x4,0x1e,0x4,0x1f,0x4,0x20,0x4,0x21,0x1,0x59,0x1,0x5a,0x4,0x96,0x4,0x97,0x4,0x36,0x4,0x37,0x1,0x5b,0x1,0x5c,0x1,0x5d,0x1,0x5e,0x4,0xa3,0x4,0xa4,0x1,0x5f,0x4,0x38,0x4,0xa5,0x1,0x6f,0x1,0x70,0x1,0x81,0x1,0x82,0x4,0xa7,0x4,0xa6,0x1,0xb1,0x4,0x91,0x1,0xb7,0x0,0x0,0x0,0x3b,0x2,0xca,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x0,0x0,0xb2,0x6,0xc2,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x1,0x0,0x18,0x6,0xaa,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x2,0x0,0xe,0x6,0x9c,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x3,0x0,0x2e,0x6,0x6e,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x4,0x0,0x18,0x6,0xaa,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x5,0x0,0x26,0x6,0x48,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x6,0x0,0x18,0x6,0x30,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x7,0x0,0x40,0x5,0xf0,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x8,0x0,0xc,0x5,0xe4,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x9,0x0,0x26,0x5,0xbe,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0xb,0x0,0x14,0x5,0xaa,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0xc,0x0,0x14,0x5,0xaa,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0xd,0x1,0x22,0x4,0x88,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0xe,0x0,0x36,0x4,0x52,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x10,0x0,0xc,0x4,0x46,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x11,0x0,0xa,0x4,0x3c,0x0,0x3,0x0,0x1,0x4,0x9,0x0,0x19,0x0,0xc,0x4,0x46,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x0,0x0,0xc,0x4,0x30,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x1,0x0,0xa,0x4,0x26,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2,0x0,0xc,0x4,0x1a,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x3,0x0,0x8,0x4,0x12,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x4,0x0,0x14,0x3,0xfe,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x5,0x0,0xa,0x3,0xf4,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x6,0x0,0xe,0x6,0x9c,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x7,0x0,0xc,0x3,0xe8,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x8,0x0,0x10,0x3,0xd8,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x9,0x0,0x8,0x3,0xd0,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0xa,0x0,0x12,0x3,0xbe,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0xb,0x0,0xa,0x4,0x3c,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x14,0x0,0x1c,0x3,0xa2,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x15,0x0,0x28,0x3,0x7a,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x16,0x0,0x1e,0x3,0x5c,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x17,0x0,0x22,0x3,0x3a,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x18,0x0,0x20,0x3,0x1a,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x19,0x0,0x24,0x2,0xf6,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x1a,0x0,0x1c,0x2,0xda,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x1b,0x0,0x26,0x2,0xb4,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x1c,0x0,0x1e,0x2,0x96,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x26,0x0,0x12,0x2,0x84,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x27,0x0,0xc,0x2,0x78,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x28,0x0,0xa,0x2,0x6e,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x29,0x0,0x16,0x2,0x58,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2a,0x0,0x22,0x2,0x36,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2b,0x0,0x18,0x2,0x1e,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2c,0x0,0x1c,0x2,0x2,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2d,0x0,0x1a,0x1,0xe8,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2e,0x0,0x1e,0x1,0xca,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x2f,0x0,0x16,0x1,0xb4,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x30,0x0,0x20,0x1,0x94,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x31,0x0,0x18,0x6,0x30,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x3b,0x0,0x28,0x1,0x6c,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x3c,0x0,0x34,0x1,0x38,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x3d,0x0,0x2a,0x1,0xe,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x3e,0x0,0x2e,0x0,0xe0,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x3f,0x0,0x2c,0x0,0xb4,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x40,0x0,0x30,0x0,0x84,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x41,0x0,0x28,0x0,0x5c,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x42,0x0,0x32,0x0,0x2a,0x0,0x3,0x0,0x1,0x4,0x9,0x1,0x43,0x0,0x2a,0x0,0x0,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x75,0x0,0x6d,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x52,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x53,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x75,0x0,0x6d,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x52,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x52,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x4e,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x75,0x0,0x6d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x42,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x75,0x0,0x6d,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x45,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x49,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x74,0x0,0x68,0x0,0x57,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x49,0x0,0x4c,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x31,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x46,0x0,0x41,0x0,0x51,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x47,0x0,0x6f,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x43,0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x47,0x0,0x6f,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x3b,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x3b,0x0,0x47,0x0,0x4f,0x0,0x4f,0x0,0x47,0x0,0x3b,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x52,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x43,0x0,0x6f,0x0,0x70,0x0,0x79,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x31,0x0,0x31,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x67,0x0,0x6f,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x66,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x32,0x0,0x32,0x0,0x32,0x0,0x32,0x0,0x5b,0x0,0x7a,0x0,0xae,0x1,0x24,0x1,0xa5,0x2,0x1a,0x2,0x2e,0x2,0x5e,0x2,0x8e,0x2,0xbb,0x2,0xd9,0x2,0xf3,0x3,0x5,0x3,0x20,0x3,0x34,0x3,0x83,0x3,0x9d,0x3,0xdc,0x4,0x44,0x4,0x71,0x4,0xbf,0x5,0x19,0x5,0x37,0x5,0xa8,0x6,0x2,0x6,0xe,0x6,0x1a,0x6,0x40,0x6,0x5d,0x6,0x83,0x6,0xd5,0x7,0x80,0x7,0xb9,0x8,0x1a,0x8,0x62,0x8,0xa3,0x8,0xd7,0x9,0x3,0x9,0x51,0x9,0x7b,0x9,0x8f,0x9,0xbb,0x9,0xef,0xa,0xf,0xa,0x45,0xa,0x6a,0xa,0xb6,0xa,0xea,0xb,0x43,0xb,0x89,0xb,0xe9,0xc,0x9,0xc,0x39,0xc,0x61,0xc,0xa1,0xc,0xce,0xc,0xf3,0xd,0x23,0xd,0x3c,0xd,0x50,0xd,0x69,0xd,0x8e,0xd,0x9e,0xd,0xb3,0xe,0x1c,0xe,0x71,0xe,0xb9,0xf,0xe,0xf,0x5c,0xf,0x8c,0xf,0xf6,0x10,0x2f,0x10,0x55,0x10,0x8e,0x10,0xc1,0x10,0xd5,0x11,0x33,0x11,0x6e,0x11,0xb4,0x12,0x9,0x12,0x5e,0x12,0x94,0x12,0xec,0x13,0x1c,0x13,0x55,0x13,0x7b,0x13,0xbf,0x13,0xec,0x14,0x26,0x14,0x54,0x14,0x9a,0x14,0xac,0x14,0xf3,0x15,0x32,0x15,0x57,0x15,0xb3,0x15,0xff,0x16,0x60,0x16,0xa8,0x16,0xc4,0x17,0x56,0x17,0x83,0x17,0xfb,0x18,0x51,0x18,0x5d,0x18,0x7a,0x19,0x13,0x19,0x24,0x19,0x57,0x19,0x7e,0x19,0xb5,0x1a,0x13,0x1a,0x27,0x1a,0x68,0x1a,0x87,0x1a,0xa1,0x1a,0xcb,0x1a,0xe2,0x1b,0x20,0x1b,0x2c,0x1b,0x3d,0x1b,0x4e,0x1b,0x5f,0x1b,0xb1,0x1c,0x3,0x1c,0x21,0x1c,0x7b,0x1c,0xb4,0x1d,0x12,0x1d,0xb1,0x1e,0x12,0x1e,0x49,0x1e,0x9e,0x1e,0xf4,0x1f,0x52,0x1f,0x85,0x1f,0x99,0x1f,0xcc,0x1f,0xf7,0x20,0x16,0x20,0x54,0x20,0xa2,0x21,0x12,0x21,0x9b,0x21,0xc1,0x22,0xf,0x22,0x5f,0x22,0xc0,0x23,0x18,0x23,0x59,0x23,0xa5,0x23,0xcc,0x24,0x16,0x24,0x37,0x24,0x56,0x24,0x5e,0x24,0x80,0x24,0x9b,0x24,0xcb,0x24,0xf6,0x25,0x32,0x25,0x51,0x25,0x7d,0x25,0x92,0x25,0xa7,0x25,0xb0,0x25,0xdb,0x25,0xfa,0x26,0x14,0x26,0x28,0x26,0x64,0x26,0x6c,0x26,0x84,0x26,0xb6,0x27,0x10,0x27,0x39,0x27,0x63,0x27,0x81,0x27,0xb9,0x28,0x10,0x28,0x4e,0x28,0xaf,0x29,0x1a,0x29,0x7c,0x29,0xaa,0x2a,0x14,0x2a,0x7c,0x2a,0xcf,0x2b,0xa,0x2b,0x66,0x2b,0x8d,0x2b,0xde,0x2c,0x4e,0x2c,0x88,0x2c,0xd7,0x2d,0x23,0x2d,0x77,0x2d,0xa9,0x2d,0xe2,0x2e,0x35,0x2e,0x79,0x2e,0xe1,0x2f,0x40,0x2f,0x97,0x30,0x9,0x30,0x54,0x30,0xa9,0x31,0x7,0x31,0x51,0x31,0x93,0x31,0xb9,0x31,0xfd,0x32,0x54,0x32,0xa2,0x33,0xa,0x33,0x2f,0x33,0x69,0x33,0xa7,0x33,0xfa,0x34,0x26,0x34,0x5e,0x34,0x84,0x34,0xb8,0x34,0xf6,0x35,0x36,0x35,0x6c,0x35,0xc1,0x36,0x25,0x36,0x65,0x36,0xd6,0x37,0x3b,0x37,0x53,0x37,0x9c,0x37,0xec,0x38,0x51,0x38,0x76,0x38,0xa9,0x38,0xe4,0x39,0x15,0x39,0x3f,0x39,0x67,0x39,0x84,0x3a,0x18,0x3a,0x43,0x3a,0x79,0x3a,0x9e,0x3a,0xd1,0x3b,0x10,0x3b,0x4f,0x3b,0x84,0x3b,0xd2,0x3c,0x32,0x3c,0x73,0x3c,0xd0,0x3d,0x20,0x3d,0x7d,0x3d,0xc8,0x3e,0x9,0x3e,0x31,0x3e,0x88,0x3e,0xe0,0x3f,0x1f,0x3f,0x7e,0x3f,0xdb,0x40,0x18,0x40,0x50,0x40,0xa4,0x40,0xf2,0x41,0x57,0x41,0xb9,0x42,0x33,0x42,0xac,0x43,0x29,0x43,0xa5,0x44,0xd,0x44,0x5f,0x44,0x95,0x44,0xcd,0x45,0x32,0x45,0x91,0x46,0x38,0x46,0xda,0x47,0x44,0x47,0xaf,0x47,0xf5,0x48,0x38,0x48,0x68,0x48,0x86,0x48,0xb1,0x48,0xc6,0x48,0xdc,0x49,0x74,0x49,0xc5,0x49,0xe1,0x49,0xfd,0x4a,0x39,0x4a,0x7c,0x4a,0xe2,0x4b,0x6,0x4b,0x2a,0x4b,0x68,0x4b,0xa5,0x4b,0xb8,0x4b,0xcb,0x4b,0xd7,0x4b,0xea,0x4c,0x2c,0x4c,0x6c,0x4c,0xa8,0x4c,0xe4,0x4c,0xf7,0x4d,0xa,0x4d,0x3f,0x4d,0x73,0x4d,0xb4,0x4e,0x0,0x4e,0x6b,0x4e,0xd3,0x4e,0xe6,0x4e,0xf9,0x4f,0x2f,0x4f,0x65,0x4f,0x78,0x4f,0x8b,0x4f,0xd1,0x50,0x14,0x50,0x4d,0x50,0xb0,0x51,0xe,0x51,0x59,0x51,0xa3,0x51,0xb6,0x51,0xc9,0x52,0x2,0x52,0x3c,0x52,0x4f,0x52,0x62,0x52,0x75,0x52,0x88,0x52,0xd7,0x53,0x23,0x53,0x6f,0x53,0x7e,0x53,0x8e,0x53,0x9a,0x53,0xa6,0x53,0xd9,0x54,0x31,0x54,0xa7,0x55,0x1d,0x55,0x93,0x56,0x2,0x56,0x6f,0x56,0xce,0x57,0x30,0x57,0x7e,0x57,0xd0,0x58,0x1c,0x58,0x67,0x58,0xaa,0x58,0xed,0x59,0x57,0x59,0x63,0x59,0x6f,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x97,0x59,0x9f,0x59,0xa7,0x59,0xb9,0x59,0xcb,0x59,0xe6,0x5a,0x0,0x5a,0x1b,0x5a,0x36,0x5a,0x50,0x5a,0x5c,0x5a,0x68,0x5a,0x95,0x5a,0xb6,0x5a,0xe3,0x5a,0xff,0x5b,0xb,0x5b,0x1b,0x5b,0x35,0x5b,0xe9,0x5c,0xc,0x5c,0x2c,0x5c,0x43,0x5c,0x4c,0x5c,0x55,0x5c,0x5e,0x5c,0x67,0x5c,0x70,0x5c,0x79,0x5c,0x82,0x5c,0xa1,0x5c,0xb2,0x5c,0xcc,0x5c,0xf6,0x5d,0x21,0x5d,0x56,0x5d,0x5f,0x5d,0x68,0x5d,0x71,0x5d,0x7a,0x5d,0x83,0x5d,0x8c,0x5d,0x95,0x5d,0x9e,0x5d,0xa7,0x5d,0xb0,0x5d,0xb9,0x5d,0xc2,0x5d,0xcb,0x5d,0xf2,0x5e,0x19,0x5e,0x6b,0x5e,0xa3,0x5e,0xfc,0x5f,0x8,0x5f,0x5e,0x5f,0xa6,0x5f,0xf9,0x60,0x43,0x60,0x94,0x60,0xd4,0x61,0x12,0x61,0x4e,0x61,0xcc,0x62,0x18,0x62,0x7a,0x62,0xb3,0x62,0xfb,0x63,0x11,0x63,0x22,0x63,0x38,0x63,0x4e,0x63,0xb4,0x63,0xcf,0x64,0x5,0x64,0x17,0x64,0x43,0x64,0xd2,0x65,0xc,0x65,0x69,0x65,0x98,0x65,0xca,0x65,0xfc,0x66,0x30,0x66,0x3d,0x66,0x59,0x66,0x73,0x66,0x7f,0x66,0xb8,0x66,0xf6,0x67,0x54,0x67,0xb9,0x68,0x16,0x68,0xbf,0x68,0xbf,0x69,0xb5,0x69,0xfb,0x6a,0x30,0x6a,0x54,0x6a,0x91,0x6a,0xe3,0x6b,0x56,0x6b,0x71,0x6b,0xc2,0x6c,0x6,0x6c,0x2f,0x6c,0x92,0x6c,0xcc,0x6c,0xe4,0x6d,0x2c,0x6d,0x5a,0x6d,0x8b,0x6d,0xb6,0x6d,0xf6,0x6e,0x19,0x6e,0x46,0x6e,0x64,0x6e,0xc1,0x6f,0x2,0x6f,0x58,0x6f,0x8b,0x6f,0xd2,0x6f,0xf4,0x70,0x26,0x70,0x43,0x70,0x74,0x70,0x9d,0x70,0xb0,0x70,0xd9,0x71,0x21,0x71,0x4c,0x71,0xbf,0x72,0xc,0x72,0x49,0x72,0x65,0x72,0x95,0x72,0xe7,0x73,0x9,0x73,0x33,0x73,0x58,0x73,0x92,0x73,0xdf,0x74,0x20,0x74,0x81,0x74,0xc9,0x75,0x17,0x75,0x6f,0x75,0xb5,0x75,0xf3,0x76,0x24,0x76,0x60,0x76,0xa9,0x76,0xfb,0x77,0x60,0x77,0x8d,0x77,0xc0,0x77,0xfa,0x78,0x35,0x78,0x6a,0x78,0x9d,0x78,0xce,0x79,0xf,0x79,0x49,0x79,0x55,0x79,0x86,0x79,0xd4,0x7a,0x31,0x7a,0x79,0x7a,0xa3,0x7b,0x0,0x7b,0x3f,0x7b,0x7e,0x7b,0xb9,0x7c,0x23,0x7c,0x2f,0x7c,0x68,0x7c,0xa6,0x7c,0xe6,0x7d,0x18,0x7d,0x6f,0x7d,0xb8,0x7e,0x1,0x7e,0x60,0x7e,0xb8,0x7f,0x9,0x7f,0x6d,0x7f,0xa9,0x7f,0xfd,0x80,0x25,0x80,0x62,0x80,0xad,0x80,0xc6,0x81,0x2c,0x81,0x78,0x81,0x89,0x81,0xc4,0x81,0xf7,0x82,0x96,0x82,0xf2,0x83,0x48,0x83,0x7c,0x83,0xaf,0x83,0xe0,0x84,0x15,0x84,0x51,0x84,0x94,0x84,0xf5,0x85,0x26,0x85,0x42,0x85,0x6d,0x85,0xa9,0x85,0xcd,0x85,0xf3,0x86,0x30,0x86,0x75,0x86,0x9f,0x86,0xca,0x87,0x17,0x87,0x20,0x87,0x29,0x87,0x32,0x87,0x3b,0x87,0x44,0x87,0x4d,0x87,0x56,0x87,0x9f,0x87,0xef,0x88,0x2e,0x88,0x7b,0x88,0xd7,0x88,0xf5,0x89,0x34,0x89,0x75,0x89,0x9f,0x89,0xe8,0x8a,0x4,0x8a,0x54,0x8a,0x66,0x8a,0xdb,0x8b,0x36,0x8b,0x5b,0x8b,0x63,0x8b,0x6b,0x8b,0x73,0x8b,0x7b,0x8b,0x83,0x8b,0x8b,0x8b,0x93,0x8b,0x9b,0x8b,0xa3,0x8b,0xab,0x8b,0xb3,0x8b,0xbb,0x8b,0xc3,0x8b,0xd5,0x8b,0xdd,0x8c,0x3f,0x8c,0x85,0x8c,0xa3,0x8c,0xf8,0x8d,0x3f,0x8d,0x94,0x8d,0xfd,0x8e,0x43,0x8e,0x98,0x8e,0xed,0x8f,0x36,0x8f,0x9e,0x8f,0xed,0x8f,0xf5,0x90,0x62,0x90,0x8e,0x90,0xdf,0x91,0x14,0x91,0x6a,0x91,0x9b,0x91,0xdd,0x91,0xdd,0x91,0xe5,0x92,0x31,0x92,0x7d,0x92,0xbe,0x92,0xe5,0x93,0x21,0x93,0x34,0x93,0x47,0x93,0x5a,0x93,0x6d,0x93,0x81,0x93,0x95,0x93,0xab,0x93,0xbe,0x93,0xd1,0x93,0xe4,0x93,0xf7,0x94,0xb,0x94,0x1e,0x94,0x31,0x94,0x44,0x94,0x58,0x94,0x6b,0x94,0x7e,0x94,0x91,0x94,0xa4,0x94,0xb7,0x94,0xcb,0x94,0xde,0x94,0xf1,0x95,0x4,0x95,0x18,0x95,0x2b,0x95,0x3e,0x95,0x51,0x95,0x63,0x95,0x75,0x95,0x89,0x95,0x9d,0x95,0xb3,0x95,0xc6,0x95,0xd9,0x95,0xec,0x95,0xfe,0x96,0x12,0x96,0x25,0x96,0x37,0x96,0x4a,0x96,0x5e,0x96,0x70,0x96,0x83,0x96,0x96,0x96,0xa8,0x96,0xba,0x96,0xce,0x96,0xe1,0x96,0xf4,0x97,0x6,0x97,0x1a,0x97,0x2d,0x97,0x40,0x97,0x53,0x97,0x65,0x97,0x78,0x97,0x8b,0x97,0xe3,0x98,0x6b,0x98,0x7e,0x98,0x91,0x98,0xa4,0x98,0xb6,0x98,0xc9,0x98,0xdc,0x98,0xef,0x99,0x1,0x99,0x14,0x99,0x27,0x99,0x3a,0x99,0x4c,0x99,0x5f,0x99,0x72,0x99,0x85,0x99,0x98,0x99,0xf1,0x9a,0x5f,0x9a,0x72,0x9a,0x84,0x9a,0x97,0x9a,0xa9,0x9a,0xbc,0x9a,0xce,0x9a,0xe1,0x9a,0xf4,0x9b,0x8,0x9b,0x1b,0x9b,0x2e,0x9b,0x41,0x9b,0x54,0x9b,0x67,0x9b,0x7a,0x9b,0x8d,0x9b,0xa0,0x9b,0xb3,0x9b,0xc5,0x9b,0xd7,0x9b,0xea,0x9b,0xf6,0x9c,0x2,0x9c,0x15,0x9c,0x28,0x9c,0x3c,0x9c,0x50,0x9c,0x63,0x9c,0x76,0x9c,0x8a,0x9c,0x9e,0x9c,0xb1,0x9c,0xc4,0x9c,0xd0,0x9c,0xdc,0x9c,0xef,0x9d,0x2,0x9d,0x16,0x9d,0x2a,0x9d,0x3d,0x9d,0x4f,0x9d,0x62,0x9d,0x75,0x9d,0x87,0x9d,0x9a,0x9d,0xad,0x9d,0xc1,0x9d,0xd5,0x9d,0xe8,0x9d,0xfb,0x9e,0xf,0x9e,0x23,0x9e,0x36,0x9e,0x48,0x9e,0x5b,0x9e,0x6e,0x9e,0x81,0x9e,0x93,0x9e,0xa6,0x9e,0xb9,0x9e,0xcd,0x9e,0xe1,0x9e,0xf4,0x9f,0x6,0x9f,0x1a,0x9f,0x2e,0x9f,0x41,0x9f,0x54,0x9f,0x67,0x9f,0x7b,0x9f,0x8e,0x9f,0xa0,0x9f,0xb3,0x9f,0xc5,0x9f,0xd8,0x9f,0xeb,0x9f,0xff,0xa0,0x13,0xa0,0x27,0xa0,0x3b,0xa0,0x8d,0xa0,0xea,0xa0,0xfd,0xa1,0x10,0xa1,0x23,0xa1,0x35,0xa1,0x49,0xa1,0x5c,0xa1,0x6f,0xa1,0x82,0xa1,0x95,0xa1,0xa8,0xa1,0xba,0xa1,0xcd,0xa1,0xe0,0xa1,0xf3,0xa2,0x6,0xa2,0x12,0xa2,0x1e,0xa2,0x2a,0xa2,0x3d,0xa2,0x50,0xa2,0x62,0xa2,0x74,0xa2,0x88,0xa2,0x9c,0xa2,0xa8,0xa2,0xb4,0xa2,0xc7,0xa2,0xda,0xa2,0xec,0xa2,0xff,0xa3,0x12,0xa3,0x24,0xa3,0x37,0xa3,0x4b,0xa3,0x5e,0xa3,0x71,0xa3,0x84,0xa3,0x97,0xa3,0xaa,0xa3,0xbe,0xa3,0xd1,0xa3,0xe4,0xa3,0xf6,0xa4,0xa,0xa4,0x1d,0xa4,0x2f,0xa4,0x42,0xa4,0x94,0xa4,0xa7,0xa4,0xb9,0xa4,0xcc,0xa4,0xdf,0xa4,0xf1,0xa5,0x3,0xa5,0x15,0xa5,0x28,0xa5,0x7e,0xa5,0x90,0xa5,0xa2,0xa5,0xb5,0xa5,0xc8,0xa5,0xdc,0xa5,0xef,0xa6,0x2,0xa6,0x15,0xa6,0x28,0xa6,0x33,0xa6,0x45,0xa6,0x58,0xa6,0x64,0xa6,0x76,0xa6,0x8a,0xa6,0x96,0xa6,0xa2,0xa6,0xb5,0xa6,0xc1,0xa6,0xd4,0xa6,0xe7,0xa6,0xfa,0xa7,0xe,0xa7,0x21,0xa7,0x2d,0xa7,0x3f,0xa7,0x52,0xa7,0x64,0xa7,0x70,0xa7,0x82,0xa7,0x96,0xa7,0xa8,0xa7,0xb4,0xa7,0xc6,0xa7,0xd8,0xa7,0xeb,0xa7,0xff,0xa8,0x13,0xa8,0x63,0xa8,0x76,0xa8,0x88,0xa8,0x9b,0xa8,0xae,0xa8,0xc1,0xa8,0xd3,0xa8,0xe7,0xa8,0xfb,0xa9,0x7,0xa9,0x1b,0xa9,0x2f,0xa9,0x42,0xa9,0x56,0xa9,0x6b,0xa9,0x73,0xa9,0x7b,0xa9,0x83,0xa9,0x8b,0xa9,0x93,0xa9,0x9b,0xa9,0xa3,0xa9,0xab,0xa9,0xb3,0xa9,0xbb,0xa9,0xc3,0xa9,0xcb,0xa9,0xd3,0xa9,0xdb,0xa9,0xef,0xaa,0x3,0xaa,0x16,0xaa,0x29,0xaa,0x3c,0xaa,0x4e,0xaa,0x62,0xaa,0x6a,0xaa,0x72,0xaa,0x7a,0xaa,0x82,0xaa,0x8a,0xaa,0x9e,0xaa,0xb1,0xaa,0xc4,0xaa,0xd7,0xaa,0xea,0xaa,0xfe,0xab,0x11,0xab,0x6f,0xab,0x77,0xab,0x8b,0xab,0x93,0xab,0x9b,0xab,0xae,0xab,0xc1,0xab,0xc9,0xab,0xd1,0xab,0xd9,0xab,0xe1,0xab,0xf4,0xab,0xfc,0xac,0x4,0xac,0xc,0xac,0x14,0xac,0x1c,0xac,0x24,0xac,0x2c,0xac,0x34,0xac,0x3c,0xac,0x44,0xac,0x57,0xac,0x5f,0xac,0x67,0xac,0xac,0xac,0xb4,0xac,0xbc,0xac,0xd0,0xac,0xe3,0xac,0xeb,0xac,0xf3,0xad,0x7,0xad,0xf,0xad,0x22,0xad,0x34,0xad,0x47,0xad,0x5a,0xad,0x6d,0xad,0x80,0xad,0x94,0xad,0xa8,0xad,0xbb,0xad,0xce,0xad,0xd6,0xad,0xde,0xad,0xea,0xad,0xfd,0xae,0x5,0xae,0x18,0xae,0x2b,0xae,0x40,0xae,0x55,0xae,0x68,0xae,0x7b,0xae,0x8e,0xae,0xa1,0xae,0xa9,0xae,0xb1,0xae,0xc5,0xae,0xd9,0xae,0xe5,0xae,0xf1,0xaf,0x4,0xaf,0x17,0xaf,0x2a,0xaf,0x3d,0xaf,0x45,0xaf,0x4d,0xaf,0x55,0xaf,0x68,0xaf,0x7b,0xaf,0x83,0xaf,0x96,0xaf,0xa9,0xaf,0xbd,0xaf,0xd1,0xaf,0xd9,0xaf,0xe1,0xaf,0xf4,0xb0,0x7,0xb0,0x1b,0xb0,0x23,0xb0,0x37,0xb0,0x4b,0xb0,0x5f,0xb0,0x73,0xb0,0x86,0xb0,0x99,0xb0,0xab,0xb0,0xbf,0xb0,0xd3,0xb0,0xe7,0xb0,0xfb,0xb1,0x3,0xb1,0xb,0xb1,0x1f,0xb1,0x33,0xb1,0x47,0xb1,0x5a,0xb1,0x6d,0xb1,0x7f,0xb1,0x93,0xb1,0xa6,0xb1,0xba,0xb1,0xce,0xb1,0xe2,0xb1,0xf5,0xb2,0x9,0xb2,0x1d,0xb2,0x25,0xb2,0x39,0xb2,0x4d,0xb2,0x60,0xb2,0x73,0xb2,0x87,0xb2,0x9a,0xb2,0xae,0xb2,0xc1,0xb2,0xd5,0xb2,0xe8,0xb2,0xfc,0xb3,0xf,0xb3,0x2c,0xb3,0x48,0xb3,0x5c,0xb3,0x70,0xb3,0x84,0xb3,0x98,0xb3,0xac,0xb3,0xc0,0xb3,0xd4,0xb3,0xe8,0xb4,0x5,0xb4,0x22,0xb4,0x36,0xb4,0x4a,0xb4,0x5d,0xb4,0x70,0xb4,0x83,0xb4,0x95,0xb4,0xa9,0xb4,0xbc,0xb4,0xd0,0xb4,0xe3,0xb4,0xf7,0xb5,0xa,0xb5,0x1e,0xb5,0x31,0xb5,0x4e,0xb5,0x6a,0xb5,0x7d,0xb5,0x90,0xb5,0xa4,0xb5,0xb8,0xb5,0xcc,0xb5,0xe0,0xb5,0xf3,0xb6,0x6,0xb6,0x1a,0xb6,0x2d,0xb6,0x41,0xb6,0x54,0xb6,0x68,0xb6,0x7b,0xb6,0x8f,0xb6,0xa2,0xb6,0xbf,0xb6,0xdb,0xb6,0xee,0xb7,0x1,0xb7,0x14,0xb7,0x27,0xb7,0x3a,0xb7,0x4d,0xb7,0x60,0xb7,0x72,0xb7,0x86,0xb7,0x9a,0xb7,0xae,0xb7,0xc2,0xb7,0xd5,0xb7,0xe8,0xb7,0xfb,0xb8,0xe,0xb8,0x21,0xb8,0x34,0xb8,0x47,0xb8,0x5a,0xb8,0x6d,0xb8,0x7f,0xb8,0x93,0xb8,0xa7,0xb8,0xbb,0xb8,0xcf,0xb8,0xe2,0xb8,0xf5,0xb9,0x8,0xb9,0x1a,0xb9,0x37,0xb9,0x4a,0xb9,0x5d,0xb9,0x70,0xb9,0x83,0xb9,0x96,0xb9,0xa9,0xb9,0xbc,0xb9,0xcf,0xb9,0xd7,0xba,0x14,0xba,0x51,0xba,0x74,0xba,0x97,0xba,0xd7,0xbb,0x19,0xbb,0x48,0xbb,0x7c,0xbb,0xb2,0xbb,0xe8,0xbb,0xf0,0xbc,0x4,0xbc,0xc,0xbc,0x14,0xbc,0x1c,0xbc,0x24,0xbc,0x2c,0xbc,0x34,0xbc,0x3c,0xbc,0x44,0xbc,0x4c,0xbc,0x5f,0xbc,0x72,0xbc,0x85,0xbc,0x98,0xbc,0xac,0xbc,0xc0,0xbc,0xd4,0xbc,0xe8,0xbc,0xfc,0xbd,0x10,0xbd,0x24,0xbd,0x38,0xbd,0x4c,0xbd,0x60,0xbd,0x74,0xbd,0x88,0xbd,0x94,0xbd,0xa8,0xbd,0xbc,0xbd,0xd0,0xbd,0xe4,0xbd,0xf8,0xbe,0xc,0xbe,0x20,0xbe,0x34,0xbe,0x47,0xbe,0x5a,0xbe,0x6e,0xbe,0x82,0xbe,0x96,0xbe,0xaa,0xbe,0xbe,0xbe,0xd2,0xbe,0xe6,0xbe,0xfa,0xbf,0xe,0xbf,0x21,0xbf,0x34,0xbf,0x48,0xbf,0x5c,0xbf,0x70,0xbf,0x84,0xbf,0x98,0xbf,0xac,0xbf,0xc0,0xbf,0xd3,0xbf,0xe5,0xbf,0xf9,0xc0,0xd,0xc0,0x21,0xc0,0x35,0xc0,0x49,0xc0,0x5d,0xc0,0x71,0xc0,0x7d,0xc0,0x89,0xc0,0x95,0xc0,0xa1,0xc0,0xad,0xc0,0xb9,0xc0,0xc5,0xc0,0xcd,0xc0,0xd5,0xc0,0xdd,0xc0,0xe5,0xc0,0xed,0xc0,0xf5,0xc0,0xfd,0xc1,0x5,0xc1,0xd,0xc1,0x15,0xc1,0x1d,0xc1,0x25,0xc1,0x2d,0xc1,0x35,0xc1,0x49,0xc1,0x5c,0xc1,0x6f,0xc1,0x82,0xc1,0x8a,0xc1,0x92,0xc1,0xa6,0xc1,0xae,0xc1,0xc1,0xc1,0xd4,0xc1,0xdc,0xc1,0xe4,0xc1,0xec,0xc1,0xf4,0xc2,0x7,0xc2,0xf,0xc2,0x17,0xc2,0x1f,0xc2,0x27,0xc2,0x2f,0xc2,0x37,0xc2,0x3f,0xc2,0x47,0xc2,0xba,0xc2,0xed,0xc3,0x3b,0xc3,0x43,0xc3,0x4f,0xc3,0x62,0xc3,0x74,0xc3,0x7c,0xc3,0x88,0xc3,0x9b,0xc3,0xae,0xc3,0xba,0xc3,0xcd,0xc3,0xe0,0xc3,0xf4,0xc4,0x0,0xc4,0x13,0xc4,0x26,0xc4,0x39,0xc4,0x4c,0xc4,0x58,0xc4,0x64,0xc4,0x78,0x40,0x4a,0x99,0x98,0x97,0x96,0x87,0x86,0x85,0x84,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x78,0x77,0x76,0x75,0x74,0x73,0x72,0x71,0x70,0x6f,0x6e,0x6d,0x6c,0x6b,0x6a,0x69,0x68,0x67,0x66,0x65,0x64,0x63,0x62,0x61,0x60,0x5f,0x5e,0x5d,0x5c,0x5b,0x5a,0x59,0x58,0x57,0x56,0x55,0x54,0x53,0x51,0x50,0x4f,0x4e,0x4d,0x4c,0x4b,0x4a,0x49,0x48,0x47,0x46,0x28,0x1f,0x10,0xa,0x9,0x2c,0x1,0xb1,0xb,0xa,0x43,0x23,0x43,0x65,0xa,0x2d,0x2c,0x0,0xb1,0xa,0xb,0x43,0x23,0x43,0xb,0x2d,0x2c,0x1,0xb0,0x6,0x43,0xb0,0x7,0x43,0x65,0xa,0x2d,0x2c,0xb0,0x4f,0x2b,0x20,0xb0,0x40,0x51,0x58,0x21,0x4b,0x52,0x58,0x45,0x44,0x1b,0x21,0x21,0x59,0x1b,0x23,0x21,0xb0,0x40,0xb0,0x4,0x25,0x45,0xb0,0x4,0x25,0x45,0x61,0x64,0x8a,0x63,0x52,0x58,0x45,0x44,0x1b,0x21,0x21,0x59,0x59,0x2d,0x2c,0x0,0xb0,0x7,0x43,0xb0,0x6,0x43,0xb,0x2d,0x2c,0x4b,0x53,0x23,0x4b,0x51,0x5a,0x58,0x20,0x45,0x8a,0x60,0x44,0x1b,0x21,0x21,0x59,0x2d,0x2c,0x4b,0x54,0x58,0x20,0x45,0x8a,0x60,0x44,0x1b,0x21,0x21,0x59,0x2d,0x2c,0x4b,0x53,0x23,0x4b,0x51,0x5a,0x58,0x38,0x1b,0x21,0x21,0x59,0x2d,0x2c,0x4b,0x54,0x58,0x38,0x1b,0x21,0x21,0x59,0x2d,0x2c,0xb0,0x2,0x43,0x54,0x58,0xb0,0x46,0x2b,0x1b,0x21,0x21,0x21,0x21,0x59,0x2d,0x2c,0xb0,0x2,0x43,0x54,0x58,0xb0,0x47,0x2b,0x1b,0x21,0x21,0x21,0x59,0x2d,0x2c,0xb0,0x2,0x43,0x54,0x58,0xb0,0x48,0x2b,0x1b,0x21,0x21,0x21,0x21,0x59,0x2d,0x2c,0xb0,0x2,0x43,0x54,0x58,0xb0,0x49,0x2b,0x1b,0x21,0x21,0x21,0x59,0x2d,0x2c,0x23,0x20,0xb0,0x0,0x50,0x8a,0x8a,0x64,0xb1,0x0,0x3,0x25,0x54,0x58,0xb0,0x40,0x1b,0xb1,0x1,0x3,0x25,0x54,0x58,0xb0,0x5,0x43,0x8b,0x59,0xb0,0x4f,0x2b,0x59,0x23,0xb0,0x62,0x2b,0x23,0x21,0x23,0x58,0x65,0x59,0x2d,0x2c,0xb1,0x8,0x0,0xc,0x21,0x54,0x60,0x43,0x2d,0x2c,0xb1,0xc,0x0,0xc,0x21,0x54,0x60,0x43,0x2d,0x2c,0x1,0x20,0x47,0xb0,0x2,0x43,0x20,0xb8,0x10,0x0,0x62,0xb8,0x10,0x0,0x63,0x57,0x23,0xb8,0x1,0x0,0x62,0xb8,0x10,0x0,0x63,0x57,0x5a,0x58,0xb0,0x20,0x60,0x66,0x59,0x48,0x2d,0x2c,0xb1,0x0,0x2,0x25,0xb0,0x2,0x25,0xb0,0x2,0x25,0x53,0xb8,0x0,0x35,0x23,0x78,0xb0,0x2,0x25,0xb0,0x2,0x25,0x60,0xb0,0x20,0x63,0x20,0x20,0xb0,0x6,0x25,0x23,0x62,0x50,0x58,0x8a,0x21,0xb0,0x1,0x60,0x23,0x1b,0x20,0x20,0xb0,0x6,0x25,0x23,0x62,0x52,0x58,0x23,0x21,0xb0,0x1,0x61,0x1b,0x8a,0x21,0x23,0x21,0x20,0x59,0x59,0xb8,0xff,0xc1,0x1c,0x60,0xb0,0x20,0x63,0x23,0x21,0x2d,0x2c,0xb1,0x2,0x0,0x42,0xb1,0x23,0x1,0x88,0x51,0xb1,0x40,0x1,0x88,0x53,0x5a,0x58,0xb8,0x10,0x0,0xb0,0x20,0x88,0x54,0x58,0xb2,0x2,0x1,0x2,0x43,0x60,0x42,0x59,0xb1,0x24,0x1,0x88,0x51,0x58,0xb8,0x20,0x0,0xb0,0x40,0x88,0x54,0x58,0xb2,0x2,0x2,0x2,0x43,0x60,0x42,0xb1,0x24,0x1,0x88,0x54,0x58,0xb2,0x2,0x20,0x2,0x43,0x60,0x42,0x0,0x4b,0x1,0x4b,0x52,0x58,0xb2,0x2,0x8,0x2,0x43,0x60,0x42,0x59,0x1b,0xb8,0x40,0x0,0xb0,0x80,0x88,0x54,0x58,0xb2,0x2,0x4,0x2,0x43,0x60,0x42,0x59,0xb8,0x40,0x0,0xb0,0x80,0x63,0xb8,0x1,0x0,0x88,0x54,0x58,0xb2,0x2,0x8,0x2,0x43,0x60,0x42,0x59,0xb9,0x40,0x0,0x1,0x0,0x63,0xb8,0x2,0x0,0x88,0x54,0x58,0xb2,0x2,0x10,0x2,0x43,0x60,0x42,0x59,0xb1,0x26,0x1,0x88,0x51,0x58,0xb9,0x40,0x0,0x2,0x0,0x63,0xb8,0x4,0x0,0x88,0x54,0x58,0xb2,0x2,0x40,0x2,0x43,0x60,0x42,0x59,0xb9,0x40,0x0,0x4,0x0,0x63,0xb8,0x8,0x0,0x88,0x54,0x58,0xb2,0x2,0x80,0x2,0x43,0x60,0x42,0x59,0xb1,0x28,0x1,0x88,0x51,0x58,0xb9,0x40,0x0,0x8,0x0,0x63,0xb8,0x10,0x0,0x88,0x54,0x58,0xb9,0x0,0x2,0x1,0x0,0xb0,0x2,0x43,0x60,0x42,0x59,0x59,0x59,0x59,0x59,0x59,0x59,0xb1,0x0,0x2,0x43,0x54,0x58,0x40,0xa,0x5,0x40,0x8,0x40,0x9,0x40,0xc,0x2,0xd,0x2,0x1b,0xb1,0x1,0x2,0x43,0x54,0x58,0xb2,0x5,0x40,0x8,0xba,0x1,0x0,0x0,0x9,0x1,0x0,0xb3,0xc,0x1,0xd,0x1,0x1b,0xb1,0x80,0x2,0x43,0x52,0x58,0xb2,0x5,0x40,0x8,0xb8,0x1,0x80,0xb1,0x9,0x40,0x1b,0xb8,0x1,0x0,0xb0,0x2,0x43,0x52,0x58,0xb2,0x5,0x40,0x8,0xba,0x1,0x80,0x0,0x9,0x1,0x40,0x1b,0xb8,0x1,0x80,0xb0,0x2,0x43,0x52,0x58,0xb2,0x5,0x40,0x8,0xb8,0x2,0x0,0xb1,0x9,0x40,0x1b,0xb2,0x5,0x40,0x8,0xba,0x1,0x0,0x0,0x9,0x1,0x0,0x59,0x59,0x59,0xb8,0x40,0x0,0xb0,0x80,0x88,0x55,0xb9,0x40,0x0,0x2,0x0,0x63,0xb8,0x4,0x0,0x88,0x55,0x5a,0x58,0xb3,0xc,0x0,0xd,0x1,0x1b,0xb3,0xc,0x0,0xd,0x1,0x59,0x59,0x59,0x42,0x42,0x42,0x42,0x42,0x2d,0x2c,0x45,0xb1,0x2,0x4e,0x2b,0x23,0xb0,0x4f,0x2b,0x20,0xb0,0x40,0x51,0x58,0x21,0x4b,0x51,0x58,0xb0,0x2,0x25,0x45,0xb1,0x1,0x4e,0x2b,0x60,0x59,0x1b,0x23,0x4b,0x51,0x58,0xb0,0x3,0x25,0x45,0x20,0x64,0x8a,0x63,0xb0,0x40,0x53,0x58,0xb1,0x2,0x4e,0x2b,0x60,0x1b,0x21,0x59,0x1b,0x21,0x59,0x59,0x44,0x2d,0x2c,0x20,0xb0,0x0,0x50,0x20,0x58,0x23,0x65,0x1b,0x23,0x59,0xb1,0x14,0x14,0x8a,0x70,0x45,0xb0,0x4f,0x2b,0x23,0xb1,0x61,0x6,0x26,0x60,0x2b,0x8a,0x58,0xb0,0x5,0x43,0x8b,0x59,0x23,0x58,0x65,0x59,0x23,0x10,0x3a,0x2d,0x2c,0xb0,0x3,0x25,0x49,0x63,0x23,0x46,0x60,0xb0,0x4f,0x2b,0x23,0xb0,0x4,0x25,0xb0,0x4,0x25,0x49,0xb0,0x3,0x25,0x63,0x56,0x20,0x60,0xb0,0x62,0x60,0x2b,0xb0,0x3,0x25,0x20,0x10,0x46,0x8a,0x46,0x60,0xb0,0x20,0x63,0x61,0x3a,0x2d,0x2c,0xb0,0x0,0x16,0xb1,0x2,0x3,0x25,0xb1,0x1,0x4,0x25,0x1,0x3e,0x0,0x3e,0xb1,0x1,0x2,0x6,0xc,0xb0,0xa,0x23,0x65,0x42,0xb0,0xb,0x23,0x42,0xb1,0x2,0x3,0x25,0xb1,0x1,0x4,0x25,0x1,0x3f,0x0,0x3f,0xb1,0x1,0x2,0x6,0xc,0xb0,0x6,0x23,0x65,0x42,0xb0,0x7,0x23,0x42,0xb0,0x1,0x16,0xb1,0x0,0x2,0x43,0x54,0x58,0x45,0x23,0x45,0x20,0x18,0x69,0x8a,0x63,0x23,0x62,0x20,0x20,0xb0,0x40,0x50,0x58,0x67,0x1b,0x66,0x59,0x61,0xb0,0x20,0x63,0xb0,0x40,0x23,0x61,0xb0,0x4,0x23,0x42,0x1b,0xb1,0x4,0x0,0x42,0x21,0x21,0x59,0x18,0x1,0x2d,0x2c,0x20,0x45,0xb1,0x0,0x4e,0x2b,0x44,0x2d,0x2c,0x4b,0x51,0xb1,0x40,0x4f,0x2b,0x50,0x5b,0x58,0x20,0x45,0xb1,0x1,0x4e,0x2b,0x20,0x8a,0x8a,0x44,0x20,0xb1,0x40,0x4,0x26,0x61,0x63,0x61,0xb1,0x1,0x4e,0x2b,0x44,0x21,0x1b,0x23,0x21,0x8a,0x45,0xb1,0x1,0x4e,0x2b,0x20,0x8a,0x23,0x44,0x44,0x59,0x2d,0x2c,0x4b,0x51,0xb1,0x40,0x4f,0x2b,0x50,0x5b,0x58,0x45,0x20,0x8a,0xb0,0x40,0x61,0x63,0x60,0x1b,0x23,0x21,0x45,0x59,0xb1,0x1,0x4e,0x2b,0x44,0x2d,0x2c,0x23,0x45,0x20,0x8a,0x45,0x23,0x61,0x20,0x64,0xb0,0x40,0x51,0xb0,0x4,0x25,0x20,0xb0,0x0,0x53,0x23,0xb0,0x40,0x51,0x5a,0x5a,0xb1,0x40,0x4f,0x2b,0x54,0x5a,0x58,0x8a,0xc,0x64,0x23,0x64,0x23,0x53,0x58,0xb1,0x40,0x40,0x8a,0x61,0x20,0x63,0x61,0x1b,0x20,0x63,0x59,0x1b,0x8a,0x59,0x63,0xb1,0x2,0x4e,0x2b,0x60,0x44,0x2d,0x2c,0x1,0x2d,0x2c,0x0,0x2d,0x2c,0x5,0xb1,0xb,0xa,0x43,0x23,0x43,0x65,0xa,0x2d,0x2c,0xb1,0xa,0xb,0x43,0x23,0x43,0xb,0x2,0x2d,0x2c,0xb0,0x2,0x25,0x63,0x66,0xb0,0x2,0x25,0xb8,0x20,0x0,0x62,0x60,0x23,0x62,0x2d,0x2c,0xb0,0x2,0x25,0x63,0xb0,0x20,0x60,0x66,0xb0,0x2,0x25,0xb8,0x20,0x0,0x62,0x60,0x23,0x62,0x2d,0x2c,0xb0,0x2,0x25,0x63,0x67,0xb0,0x2,0x25,0xb8,0x20,0x0,0x62,0x60,0x23,0x62,0x2d,0x2c,0xb0,0x2,0x25,0x63,0x66,0xb0,0x20,0x60,0xb0,0x2,0x25,0xb8,0x20,0x0,0x62,0x60,0x23,0x62,0x2d,0x2c,0x23,0x4a,0xb1,0x2,0x4e,0x2b,0x2d,0x2c,0x23,0x4a,0xb1,0x1,0x4e,0x2b,0x2d,0x2c,0x23,0x8a,0x4a,0x23,0x45,0x64,0xb0,0x2,0x25,0x64,0xb0,0x2,0x25,0x61,0x64,0xb0,0x3,0x43,0x52,0x58,0x21,0x20,0x64,0x59,0xb1,0x2,0x4e,0x2b,0x23,0xb0,0x0,0x50,0x58,0x65,0x59,0x2d,0x2c,0x23,0x8a,0x4a,0x23,0x45,0x64,0xb0,0x2,0x25,0x64,0xb0,0x2,0x25,0x61,0x64,0xb0,0x3,0x43,0x52,0x58,0x21,0x20,0x64,0x59,0xb1,0x1,0x4e,0x2b,0x23,0xb0,0x0,0x50,0x58,0x65,0x59,0x2d,0x2c,0x20,0xb0,0x3,0x25,0x4a,0xb1,0x2,0x4e,0x2b,0x8a,0x10,0x3b,0x2d,0x2c,0x20,0xb0,0x3,0x25,0x4a,0xb1,0x1,0x4e,0x2b,0x8a,0x10,0x3b,0x2d,0x2c,0xb0,0x3,0x25,0xb0,0x3,0x25,0x8a,0xb0,0x67,0x2b,0x8a,0x10,0x3b,0x2d,0x2c,0xb0,0x3,0x25,0xb0,0x3,0x25,0x8a,0xb0,0x68,0x2b,0x8a,0x10,0x3b,0x2d,0x2c,0xb0,0x3,0x25,0x46,0xb0,0x3,0x25,0x46,0x60,0xb0,0x4,0x25,0x2e,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x4,0x26,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x6a,0x1b,0xb0,0x6c,0x59,0x2b,0xb0,0x3,0x25,0x46,0xb0,0x3,0x25,0x46,0x60,0x61,0xb0,0x80,0x62,0x20,0x8a,0x20,0x10,0x23,0x3a,0x23,0x20,0x10,0x23,0x3a,0x2d,0x2c,0xb0,0x3,0x25,0x47,0xb0,0x3,0x25,0x47,0x60,0xb0,0x5,0x25,0x47,0xb0,0x80,0x63,0x61,0xb0,0x2,0x25,0xb0,0x6,0x25,0x49,0x63,0x23,0xb0,0x5,0x25,0x4a,0xb0,0x80,0x63,0x20,0x58,0x62,0x1b,0x21,0x59,0xb0,0x4,0x26,0x46,0x60,0x8a,0x46,0x8a,0x46,0x60,0xb0,0x20,0x63,0x61,0x2d,0x2c,0xb0,0x4,0x26,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x4,0x26,0xb0,0x6e,0x2b,0x20,0x8a,0x20,0x10,0x23,0x3a,0x23,0x20,0x10,0x23,0x3a,0x2d,0x2c,0x23,0x20,0xb0,0x1,0x54,0x58,0x21,0xb0,0x2,0x25,0xb1,0x2,0x4e,0x2b,0xb0,0x80,0x50,0x20,0x60,0x59,0x20,0x60,0x60,0x20,0xb0,0x1,0x51,0x58,0x21,0x21,0x1b,0x20,0xb0,0x5,0x51,0x58,0x21,0x20,0x66,0x61,0xb0,0x40,0x23,0x61,0xb1,0x0,0x3,0x25,0x50,0xb0,0x3,0x25,0xb0,0x3,0x25,0x50,0x5a,0x58,0x20,0xb0,0x3,0x25,0x61,0x8a,0x53,0x58,0x21,0xb0,0x0,0x59,0x1b,0x21,0x59,0x1b,0xb0,0x7,0x54,0x58,0x20,0x66,0x61,0x65,0x23,0x21,0x1b,0x21,0x21,0xb0,0x0,0x59,0x59,0x59,0xb1,0x2,0x4e,0x2b,0x2d,0x2c,0xb0,0x2,0x25,0xb0,0x4,0x25,0x4a,0xb0,0x0,0x53,0x58,0xb0,0x0,0x1b,0x8a,0x8a,0x23,0x8a,0xb0,0x1,0x59,0xb0,0x4,0x25,0x46,0x20,0x66,0x61,0x20,0xb0,0x5,0x26,0xb0,0x6,0x26,0x49,0xb0,0x5,0x26,0xb0,0x5,0x26,0xb0,0x70,0x2b,0x23,0x61,0x65,0xb0,0x20,0x60,0x20,0x66,0x61,0xb0,0x20,0x61,0x65,0x2d,0x2c,0xb0,0x2,0x25,0x46,0x20,0x8a,0x20,0xb0,0x0,0x50,0x58,0x21,0xb1,0x2,0x4e,0x2b,0x1b,0x45,0x23,0x21,0x59,0x61,0x65,0xb0,0x2,0x25,0x10,0x3b,0x2d,0x2c,0xb0,0x4,0x26,0x20,0xb8,0x2,0x0,0x62,0x20,0xb8,0x2,0x0,0x63,0x8a,0x23,0x61,0x20,0xb0,0x5d,0x60,0x2b,0xb0,0x5,0x25,0x11,0x8a,0x12,0x8a,0x20,0x39,0x8a,0x58,0xb9,0x0,0x5d,0x10,0x0,0xb0,0x4,0x26,0x63,0x56,0x60,0x2b,0x23,0x21,0x20,0x10,0x20,0x46,0x20,0xb1,0x2,0x4e,0x2b,0x23,0x61,0x1b,0x23,0x21,0x20,0x8a,0x20,0x10,0x49,0xb1,0x2,0x4e,0x2b,0x59,0x3b,0x2d,0x2c,0xb9,0x0,0x5d,0x10,0x0,0xb0,0x9,0x25,0x63,0x56,0x60,0x2b,0xb0,0x5,0x25,0xb0,0x5,0x25,0xb0,0x5,0x26,0xb0,0x6d,0x2b,0xb1,0x5d,0x7,0x25,0x60,0x2b,0xb0,0x5,0x25,0xb0,0x5,0x25,0xb0,0x5,0x25,0xb0,0x5,0x25,0xb0,0x6f,0x2b,0xb9,0x0,0x5d,0x10,0x0,0xb0,0x8,0x26,0x63,0x56,0x60,0x2b,0x20,0xb0,0x0,0x52,0x58,0xb0,0x50,0x2b,0xb0,0x5,0x25,0xb0,0x5,0x25,0xb0,0x7,0x25,0xb0,0x7,0x25,0xb0,0x5,0x25,0xb0,0x71,0x2b,0xb0,0x2,0x17,0x38,0xb0,0x0,0x52,0xb0,0x2,0x25,0xb0,0x1,0x52,0x5a,0x58,0xb0,0x4,0x25,0xb0,0x6,0x25,0x49,0xb0,0x3,0x25,0xb0,0x5,0x25,0x49,0x60,0x20,0xb0,0x40,0x52,0x58,0x21,0x1b,0xb0,0x0,0x52,0x58,0x20,0xb0,0x2,0x54,0x58,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x7,0x25,0xb0,0x7,0x25,0x49,0xb0,0x2,0x17,0x38,0x1b,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x6,0x25,0x49,0xb0,0x2,0x17,0x38,0x59,0x59,0x59,0x59,0x59,0x21,0x21,0x21,0x21,0x21,0x2d,0x2c,0xb9,0x0,0x5d,0x10,0x0,0xb0,0xb,0x25,0x63,0x56,0x60,0x2b,0xb0,0x7,0x25,0xb0,0x7,0x25,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0xc,0x25,0xb0,0xc,0x25,0xb0,0x9,0x25,0xb0,0x8,0x25,0xb0,0x6e,0x2b,0xb0,0x4,0x17,0x38,0xb0,0x7,0x25,0xb0,0x7,0x25,0xb0,0x7,0x26,0xb0,0x6d,0x2b,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x4,0x26,0xb0,0x6d,0x2b,0xb0,0x50,0x2b,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x3,0x25,0xb0,0x71,0x2b,0xb0,0x5,0x25,0xb0,0x5,0x25,0xb0,0x3,0x25,0xb0,0x2,0x17,0x38,0x20,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x5,0x25,0xb0,0x71,0x2b,0x60,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x4,0x25,0x65,0xb0,0x2,0x17,0x38,0xb0,0x2,0x25,0xb0,0x2,0x25,0x60,0x20,0xb0,0x40,0x53,0x58,0x21,0xb0,0x40,0x61,0x23,0xb0,0x40,0x61,0x23,0x1b,0xb8,0xff,0xc0,0x50,0x58,0xb0,0x40,0x60,0x23,0xb0,0x40,0x60,0x23,0x59,0x59,0xb0,0x8,0x25,0xb0,0x8,0x25,0xb0,0x4,0x26,0xb0,0x2,0x17,0x38,0xb0,0x5,0x25,0xb0,0x5,0x25,0x8a,0xb0,0x2,0x17,0x38,0x20,0xb0,0x0,0x52,0x58,0xb0,0x6,0x25,0xb0,0x8,0x25,0x49,0xb0,0x3,0x25,0xb0,0x5,0x25,0x49,0x60,0x20,0xb0,0x40,0x52,0x58,0x21,0x1b,0xb0,0x0,0x52,0x58,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0xb,0x25,0xb0,0xb,0x25,0x49,0xb0,0x4,0x17,0x38,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb0,0xa,0x25,0xb0,0xa,0x25,0xb0,0x7,0x25,0xb0,0x71,0x2b,0xb0,0x4,0x17,0x38,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb0,0x5,0x25,0xb0,0x7,0x25,0xb0,0x5,0x25,0xb0,0x71,0x2b,0xb0,0x2,0x17,0x38,0x1b,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb8,0xff,0xc0,0xb0,0x2,0x17,0x38,0x59,0x59,0x59,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x2d,0x2c,0xb0,0x4,0x25,0xb0,0x3,0x25,0x87,0xb0,0x3,0x25,0xb0,0x3,0x25,0x8a,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x65,0x1b,0xb0,0x68,0x59,0x2b,0x64,0xb0,0x4,0x25,0xb0,0x4,0x25,0x6,0xb0,0x4,0x25,0xb0,0x4,0x25,0x49,0x20,0x20,0x63,0xb0,0x3,0x25,0x20,0x63,0x51,0xb1,0x0,0x3,0x25,0x54,0x5b,0x58,0x21,0x21,0x23,0x21,0x7,0x1b,0x20,0x63,0xb0,0x2,0x25,0x20,0x63,0x61,0x20,0xb0,0x53,0x2b,0x8a,0x63,0xb0,0x5,0x25,0xb0,0x5,0x25,0x87,0xb0,0x4,0x25,0xb0,0x4,0x26,0x4a,0xb0,0x0,0x50,0x58,0x65,0x59,0xb0,0x4,0x26,0x20,0x1,0x46,0x23,0x0,0x46,0xb0,0x5,0x26,0x20,0x1,0x46,0x23,0x0,0x46,0xb0,0x0,0x16,0x0,0xb0,0x0,0x23,0x48,0x1,0xb0,0x0,0x23,0x48,0x0,0x20,0xb0,0x1,0x23,0x48,0xb0,0x2,0x23,0x48,0x1,0x20,0xb0,0x1,0x23,0x48,0xb0,0x2,0x23,0x48,0x23,0xb2,0x2,0x0,0x1,0x8,0x23,0x38,0xb2,0x2,0x0,0x1,0x9,0x23,0x38,0xb1,0x2,0x1,0x7,0xb0,0x1,0x16,0x59,0x2d,0x2c,0x23,0x10,0xd,0xc,0x8a,0x63,0x23,0x8a,0x63,0x60,0x64,0xb9,0x40,0x0,0x4,0x0,0x63,0x50,0x58,0xb0,0x0,0x38,0x1b,0x3c,0x59,0x2d,0x2c,0xb0,0x6,0x25,0xb0,0x9,0x25,0xb0,0x9,0x25,0xb0,0x7,0x26,0xb0,0x76,0x2b,0x23,0xb0,0x0,0x54,0x58,0x5,0x1b,0x4,0x59,0xb0,0x4,0x25,0xb0,0x6,0x26,0xb0,0x77,0x2b,0xb0,0x5,0x25,0xb0,0x5,0x26,0xb0,0x5,0x25,0xb0,0x5,0x26,0xb0,0x76,0x2b,0xb0,0x0,0x54,0x58,0x5,0x1b,0x4,0x59,0xb0,0x77,0x2b,0x2d,0x2c,0xb0,0x7,0x25,0xb0,0xa,0x25,0xb0,0xa,0x25,0xb0,0x8,0x26,0xb0,0x76,0x2b,0x8a,0xb0,0x0,0x54,0x58,0x5,0x1b,0x4,0x59,0xb0,0x5,0x25,0xb0,0x7,0x26,0xb0,0x77,0x2b,0xb0,0x6,0x25,0xb0,0x6,0x26,0xb0,0x6,0x25,0xb0,0x6,0x26,0xb0,0x76,0x2b,0x8,0xb0,0x77,0x2b,0x2d,0x2c,0xb0,0x7,0x25,0xb0,0xa,0x25,0xb0,0xa,0x25,0xb0,0x8,0x26,0xb0,0x76,0x2b,0x8a,0x8a,0x8,0xb0,0x4,0x25,0xb0,0x6,0x26,0xb0,0x77,0x2b,0xb0,0x5,0x25,0xb0,0x5,0x26,0xb0,0x5,0x25,0xb0,0x5,0x26,0xb0,0x76,0x2b,0xb0,0x0,0x54,0x58,0x5,0x1b,0x4,0x59,0xb0,0x77,0x2b,0x2d,0x2c,0xb0,0x8,0x25,0xb0,0xb,0x25,0xb0,0xb,0x25,0xb0,0x9,0x26,0xb0,0x76,0x2b,0xb0,0x4,0x26,0xb0,0x4,0x26,0x8,0xb0,0x5,0x25,0xb0,0x7,0x26,0xb0,0x77,0x2b,0xb0,0x6,0x25,0xb0,0x6,0x26,0xb0,0x6,0x25,0xb0,0x6,0x26,0xb0,0x76,0x2b,0x8,0xb0,0x77,0x2b,0x2d,0x2c,0x3,0xb0,0x3,0x25,0xb0,0x3,0x25,0x4a,0xb0,0x4,0x25,0xb0,0x3,0x25,0x4a,0x2,0xb0,0x5,0x25,0xb0,0x5,0x26,0x4a,0xb0,0x5,0x26,0xb0,0x5,0x26,0x4a,0xb0,0x4,0x26,0x63,0x8a,0x8a,0x63,0x61,0x2d,0x2c,0xb1,0x5d,0xe,0x25,0x60,0x2b,0xb0,0xc,0x26,0x11,0xb0,0x5,0x26,0x12,0xb0,0xa,0x25,0x39,0xb0,0x7,0x25,0x39,0xb0,0xa,0x25,0xb0,0xa,0x25,0xb0,0x9,0x25,0xb0,0x7c,0x2b,0xb0,0x0,0x50,0xb0,0xb,0x25,0xb0,0x8,0x25,0xb0,0xa,0x25,0xb0,0x7c,0x2b,0xb0,0x0,0x50,0x54,0x58,0xb0,0x7,0x25,0xb0,0xb,0x25,0x87,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb,0xb0,0xa,0x25,0x10,0xb0,0x9,0x25,0xc1,0xb0,0x2,0x25,0xb0,0x2,0x25,0xb,0xb0,0x7,0x25,0x10,0xb0,0x6,0x25,0xc1,0x1b,0xb0,0x7,0x25,0xb0,0xb,0x25,0xb0,0xb,0x25,0xb8,0xff,0xff,0xb0,0x76,0x2b,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb,0xb0,0x7,0x25,0xb0,0xa,0x25,0xb0,0x77,0x2b,0xb0,0xa,0x25,0xb0,0x8,0x25,0xb0,0x8,0x25,0xb8,0xff,0xff,0xb0,0x76,0x2b,0xb0,0x2,0x25,0xb0,0x2,0x25,0xb,0xb0,0xa,0x25,0xb0,0x7,0x25,0xb0,0x77,0x2b,0x59,0xb0,0xa,0x25,0x46,0xb0,0xa,0x25,0x46,0x60,0xb0,0x8,0x25,0x46,0xb0,0x8,0x25,0x46,0x60,0xb0,0x6,0x25,0xb0,0x6,0x25,0xb,0xb0,0xc,0x25,0xb0,0xc,0x25,0xb0,0xc,0x26,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x6a,0x1b,0xb0,0x6c,0x59,0x2b,0xb0,0x4,0x25,0xb0,0x4,0x25,0xb,0xb0,0x9,0x25,0xb0,0x9,0x25,0xb0,0x9,0x26,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x6a,0x1b,0xb0,0x6c,0x59,0x2b,0x23,0xb0,0xa,0x25,0x46,0xb0,0xa,0x25,0x46,0x60,0x61,0xb0,0x20,0x63,0x23,0xb0,0x8,0x25,0x46,0xb0,0x8,0x25,0x46,0x60,0x61,0xb0,0x20,0x63,0xb1,0x1,0xc,0x25,0x54,0x58,0x4,0x1b,0x5,0x59,0xb0,0xa,0x26,0x20,0x10,0xb0,0x3,0x25,0x3a,0xb0,0x6,0x26,0xb0,0x6,0x26,0xb,0xb0,0x7,0x26,0x20,0x10,0x8a,0x3a,0xb1,0x1,0x7,0x26,0x54,0x58,0x4,0x1b,0x5,0x59,0xb0,0x5,0x26,0x20,0x10,0xb0,0x2,0x25,0x3a,0x8a,0x8a,0xb,0x23,0x20,0x10,0x23,0x3a,0x2d,0x2c,0x23,0xb0,0x1,0x54,0x58,0xb9,0x0,0x0,0x40,0x0,0x1b,0xb8,0x40,0x0,0xb0,0x0,0x59,0x8a,0xb0,0x1,0x54,0x58,0xb9,0x0,0x0,0x40,0x0,0x1b,0xb8,0x40,0x0,0xb0,0x0,0x59,0xb0,0x7d,0x2b,0x2d,0x2c,0x8a,0x8a,0x8,0xd,0x8a,0xb0,0x1,0x54,0x58,0xb9,0x0,0x0,0x40,0x0,0x1b,0xb8,0x40,0x0,0xb0,0x0,0x59,0xb0,0x7d,0x2b,0x2d,0x2c,0x8,0xb0,0x1,0x54,0x58,0xb9,0x0,0x0,0x40,0x0,0x1b,0xb8,0x40,0x0,0xb0,0x0,0x59,0xd,0xb0,0x7d,0x2b,0x2d,0x2c,0xb0,0x4,0x26,0xb0,0x4,0x26,0x8,0xd,0xb0,0x4,0x26,0xb0,0x4,0x26,0x8,0xd,0xb0,0x7d,0x2b,0x2d,0x2c,0x20,0x1,0x46,0x23,0x0,0x46,0xb0,0xa,0x43,0xb0,0xb,0x43,0x8a,0x63,0x23,0x62,0x61,0x2d,0x2c,0xb0,0x9,0x2b,0xb0,0x6,0x25,0x2e,0xb0,0x5,0x25,0x7d,0xc5,0xb0,0x6,0x25,0xb0,0x5,0x25,0xb0,0x4,0x25,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x6a,0x1b,0xb0,0x6c,0x59,0x2b,0xb0,0x5,0x25,0xb0,0x4,0x25,0xb0,0x3,0x25,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x6a,0x1b,0xb0,0x6c,0x59,0x2b,0x18,0xb0,0x8,0x25,0xb0,0x7,0x25,0xb0,0x6,0x25,0xb0,0xa,0x25,0xb0,0x6f,0x2b,0xb0,0x6,0x25,0xb0,0x5,0x25,0xb0,0x4,0x26,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x66,0x1b,0xb0,0x68,0x59,0x2b,0xb0,0x5,0x25,0xb0,0x4,0x25,0xb0,0x4,0x26,0x20,0xb0,0x0,0x50,0x58,0x21,0xb0,0x66,0x1b,0xb0,0x68,0x59,0x2b,0x54,0x58,0x7d,0xb0,0x4,0x25,0x10,0xb0,0x3,0x25,0xc5,0xb0,0x2,0x25,0x10,0xb0,0x1,0x25,0xc5,0xb0,0x5,0x26,0x21,0xb0,0x5,0x26,0x21,0x1b,0xb0,0x6,0x26,0xb0,0x4,0x25,0xb0,0x3,0x25,0xb0,0x8,0x26,0xb0,0x6f,0x2b,0x59,0xb1,0x0,0x2,0x43,0x54,0x58,0x7d,0xb0,0x2,0x25,0xb0,0x82,0x2b,0xb0,0x5,0x25,0xb0,0x82,0x2b,0x20,0x20,0x69,0x61,0xb0,0x4,0x43,0x1,0x23,0x61,0xb0,0x60,0x60,0x20,0x69,0x61,0xb0,0x20,0x61,0x20,0xb0,0x8,0x26,0xb0,0x8,0x26,0x8a,0xb0,0x2,0x17,0x38,0x8a,0x8a,0x61,0x20,0x69,0x61,0x61,0xb0,0x2,0x17,0x38,0x1b,0x21,0x21,0x21,0x21,0x59,0x18,0x2d,0x2c,0x4b,0x52,0xb1,0x1,0x2,0x43,0x53,0x5a,0x58,0x23,0x10,0x20,0x1,0x3c,0x0,0x3c,0x1b,0x21,0x21,0x59,0x2d,0x2c,0x23,0xb0,0x2,0x25,0xb0,0x2,0x25,0x53,0x58,0x20,0xb0,0x4,0x25,0x58,0x3c,0x1b,0x39,0x59,0xb0,0x1,0x60,0xb8,0xff,0xe9,0x1c,0x59,0x21,0x21,0x21,0x2d,0x2c,0xb0,0x2,0x25,0x47,0xb0,0x2,0x25,0x47,0x54,0x8a,0x20,0x20,0x10,0x11,0xb0,0x1,0x60,0x8a,0x20,0x12,0xb0,0x1,0x61,0xb0,0x85,0x2b,0x2d,0x2c,0xb0,0x4,0x25,0x47,0xb0,0x2,0x25,0x47,0x54,0x23,0x20,0x12,0xb0,0x1,0x61,0x23,0x20,0xb0,0x6,0x26,0x20,0x20,0x10,0x11,0xb0,0x1,0x60,0xb0,0x6,0x26,0xb0,0x85,0x2b,0x8a,0x8a,0xb0,0x85,0x2b,0x2d,0x2c,0xb0,0x2,0x43,0x54,0x58,0xc,0x2,0x8a,0x4b,0x53,0xb0,0x4,0x26,0x4b,0x51,0x5a,0x58,0xa,0x38,0x1b,0xa,0x21,0x21,0x59,0x1b,0x21,0x21,0x21,0x21,0x59,0x2d,0x2c,0xb0,0x98,0x2b,0x58,0xc,0x2,0x8a,0x4b,0x53,0xb0,0x4,0x26,0x4b,0x51,0x5a,0x58,0xa,0x38,0x1b,0xa,0x21,0x21,0x59,0x1b,0x21,0x21,0x21,0x21,0x59,0x2d,0x2c,0x20,0xb0,0x2,0x43,0x54,0xb0,0x1,0x23,0xb8,0x0,0x68,0x23,0x78,0x21,0xb1,0x0,0x2,0x43,0xb8,0x0,0x5e,0x23,0x79,0x21,0xb0,0x2,0x43,0x23,0xb0,0x20,0x20,0x5c,0x58,0x21,0x21,0x21,0xb0,0x0,0xb8,0x0,0x4d,0x1c,0x59,0x8a,0x8a,0x20,0x8a,0x20,0x8a,0x23,0xb8,0x10,0x0,0x63,0x56,0x58,0xb8,0x10,0x0,0x63,0x56,0x58,0x21,0x21,0x21,0xb0,0x1,0xb8,0x0,0x30,0x1c,0x59,0x1b,0x21,0x59,0xb0,0x80,0x62,0x20,0x5c,0x58,0x21,0x21,0x21,0xb0,0x0,0xb8,0x0,0x1d,0x1c,0x59,0x23,0xb0,0x80,0x62,0x20,0x5c,0x58,0x21,0x21,0x21,0xb0,0x0,0xb8,0x0,0xc,0x1c,0x59,0x8a,0xb0,0x1,0x61,0xb8,0xff,0xab,0x1c,0x23,0x21,0x2d,0x2c,0x20,0xb0,0x2,0x43,0x54,0xb0,0x1,0x23,0xb8,0x0,0x81,0x23,0x78,0x21,0xb1,0x0,0x2,0x43,0xb8,0x0,0x77,0x23,0x79,0x21,0xb1,0x0,0x2,0x43,0x8a,0xb0,0x20,0x20,0x5c,0x58,0x21,0x21,0x21,0xb8,0x0,0x67,0x1c,0x59,0x8a,0x8a,0x20,0x8a,0x20,0x8a,0x23,0xb8,0x10,0x0,0x63,0x56,0x58,0xb8,0x10,0x0,0x63,0x56,0x58,0xb0,0x4,0x26,0xb0,0x1,0x5b,0xb0,0x4,0x26,0xb0,0x4,0x26,0xb0,0x4,0x26,0x1b,0x21,0x21,0x21,0x21,0xb8,0x0,0x38,0xb0,0x0,0x23,0x1c,0x59,0x1b,0x21,0x59,0xb0,0x4,0x26,0x23,0xb0,0x80,0x62,0x20,0x5c,0x58,0x8a,0x5c,0x8a,0x5a,0x23,0x21,0x23,0x21,0xb8,0x0,0x1e,0x1c,0x59,0x8a,0xb0,0x80,0x62,0x20,0x5c,0x58,0x21,0x21,0x23,0x21,0xb8,0x0,0xe,0x1c,0x59,0xb0,0x4,0x26,0xb0,0x1,0x61,0xb8,0xff,0x93,0x1c,0x23,0x21,0x2d,0x0,0x0,0x3,0x8c,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x0,0x0,0x1,0xfe,0x0,0x0,0x2,0x36,0x0,0x68,0x2,0x8a,0x0,0x1a,0x4,0xa6,0x0,0x1e,0x4,0xa3,0x0,0x53,0x5,0xf1,0x0,0x5b,0x5,0x65,0x0,0x38,0x1,0x3c,0x0,0x2c,0x2,0xd3,0x0,0x79,0x2,0xd2,0x0,0x28,0x3,0xb9,0x0,0x1b,0x4,0x46,0x0,0x2d,0x2,0x28,0x0,0x2b,0x3,0x99,0x0,0x98,0x2,0x6c,0x0,0x75,0x2,0xcf,0xff,0xe3,0x4,0xa3,0x0,0x56,0x4,0xa3,0x0,0xa7,0x4,0xa3,0x0,0x3c,0x4,0xa3,0x0,0x30,0x4,0xa3,0x0,0x3b,0x4,0xa3,0x0,0x50,0x4,0xa3,0x0,0x54,0x4,0xa3,0x0,0x34,0x4,0xa3,0x0,0x55,0x4,0xa3,0x0,0x50,0x2,0x67,0x0,0x76,0x2,0x4e,0x0,0x44,0x4,0x15,0x0,0x2e,0x4,0xb0,0x0,0x80,0x4,0x1b,0x0,0x6f,0x4,0x14,0x0,0x1f,0x7,0x2a,0x0,0x3d,0x5,0x73,0xff,0xfc,0x5,0x2a,0x0,0x6f,0x5,0x40,0x0,0x46,0x5,0x2d,0x0,0x6f,0x4,0x7a,0x0,0x6f,0x4,0x60,0x0,0x6f,0x5,0x74,0x0,0x52,0x5,0x9f,0x0,0x6f,0x2,0x6b,0x0,0x86,0x4,0x7f,0x0,0x25,0x5,0x1e,0x0,0x6f,0x4,0x56,0x0,0x6f,0x7,0x3,0x0,0x6f,0x5,0x9e,0x0,0x6f,0x5,0x86,0x0,0x46,0x5,0x36,0x0,0x6f,0x5,0x86,0x0,0x48,0x5,0x38,0x0,0x6f,0x5,0x2,0x0,0x40,0x5,0xc,0x0,0x25,0x5,0x51,0x0,0x6a,0x5,0x4a,0xff,0xfc,0x6,0xf4,0x0,0x16,0x5,0x1c,0x0,0x4,0x5,0x6,0xff,0xfc,0x4,0xe2,0x0,0x3e,0x2,0x42,0x0,0x6c,0x3,0x6a,0xff,0xeb,0x2,0x42,0x0,0xe,0x3,0x95,0x0,0x24,0x3,0x89,0xff,0xff,0x2,0xb8,0x0,0x37,0x4,0x40,0x0,0x2e,0x4,0x81,0x0,0x62,0x4,0x29,0x0,0x35,0x4,0x80,0x0,0x35,0x4,0x5c,0x0,0x3d,0x2,0xe7,0x0,0xd,0x4,0x9b,0x0,0x38,0x4,0x84,0x0,0x58,0x2,0x33,0x0,0x5d,0x2,0x2a,0xff,0x8b,0x4,0x60,0x0,0x62,0x2,0x33,0x0,0x71,0x6,0xe4,0x0,0x62,0x4,0x84,0x0,0x59,0x4,0x7f,0x0,0x35,0x4,0x81,0x0,0x62,0x4,0x7f,0x0,0x35,0x3,0x8,0x0,0x62,0x4,0x1a,0x0,0x24,0x2,0xc0,0x0,0xd,0x4,0x84,0x0,0x59,0x4,0x22,0x0,0x3,0x5,0xcf,0x0,0x16,0x4,0x1f,0x0,0xc,0x4,0x25,0xff,0xfb,0x4,0x1f,0x0,0x43,0x2,0x9a,0x0,0x29,0x2,0xc,0x0,0xad,0x2,0x9a,0x0,0x29,0x5,0xf,0x0,0x5e,0x2,0x68,0x0,0x7b,0x4,0xba,0x0,0x63,0x4,0xce,0x0,0x67,0x5,0x76,0x0,0x45,0x4,0x54,0x0,0xa,0x2,0xd,0x0,0x77,0x5,0x16,0x0,0x5e,0x3,0xf5,0x0,0x5f,0x6,0x49,0x0,0x56,0x3,0x89,0x0,0x86,0x4,0x1e,0x0,0x40,0x4,0x65,0x0,0x7e,0x6,0x49,0x0,0x56,0x4,0x2a,0x0,0xb5,0x3,0x2e,0x0,0x7e,0x4,0x4f,0x0,0x54,0x3,0x0,0x0,0x34,0x3,0x0,0x0,0x2a,0x2,0xb4,0x0,0x5a,0x5,0x22,0x0,0x85,0x3,0xe9,0x0,0x52,0x2,0x92,0x0,0x8a,0x2,0x3a,0x0,0x56,0x3,0x0,0x0,0x8f,0x3,0xab,0x0,0x76,0x4,0x1e,0x0,0x4e,0x5,0xac,0x0,0x70,0x6,0x1,0x0,0x58,0x6,0x99,0x0,0x56,0x4,0x14,0x0,0x49,0x7,0x86,0x0,0x10,0x4,0x3c,0x0,0x35,0x5,0x82,0x0,0x51,0x4,0xf2,0x0,0x75,0x5,0x32,0x0,0x87,0x6,0xc2,0x0,0x3d,0x4,0x8e,0x0,0x41,0x4,0x8f,0x0,0x3c,0x4,0x80,0x0,0x35,0x4,0x7d,0x0,0x5f,0x5,0x2a,0x0,0x35,0x5,0xd5,0x0,0x21,0x2,0x48,0x0,0x7c,0x4,0xdb,0x0,0x76,0x4,0x89,0x0,0x1a,0x2,0x97,0x0,0x1b,0x5,0xad,0x0,0x71,0x4,0x80,0x0,0x5a,0x7,0xcb,0x0,0x5d,0x7,0x35,0x0,0x4c,0x2,0x1b,0x0,0x5f,0x5,0x96,0x0,0x45,0x2,0xf6,0xff,0xd6,0x5,0xaf,0x0,0x49,0x4,0xaf,0x0,0x32,0x5,0xc3,0x0,0x6a,0x4,0xcf,0x0,0x59,0x2,0x5d,0xff,0xa3,0x4,0x3c,0x0,0x42,0x4,0xa,0x0,0x62,0x3,0xda,0x0,0x38,0x4,0x2a,0x0,0xb5,0x3,0xa0,0x0,0x5e,0x2,0x33,0x0,0x6b,0x2,0xa3,0x0,0x77,0x2,0x85,0x0,0x1a,0x3,0xdc,0x0,0x70,0x3,0x74,0x0,0x29,0x2,0x9d,0x0,0x9b,0x0,0x0,0xfc,0x71,0x0,0x0,0xfd,0x4d,0x0,0x0,0xfc,0x4e,0x0,0x0,0xfc,0xfb,0x0,0x0,0xfb,0xd3,0x0,0x0,0xfc,0xf0,0x3,0xb,0x0,0xf0,0x4,0x8c,0x0,0x66,0x2,0x92,0x0,0x8a,0x4,0x76,0x0,0x6d,0x5,0xf5,0x0,0x11,0x5,0x88,0x0,0x49,0x5,0x24,0x0,0x1,0x4,0x83,0x0,0x52,0x5,0xa2,0x0,0x6d,0x4,0x83,0x0,0x49,0x6,0x63,0x0,0x49,0x5,0xf7,0x0,0x24,0x5,0x66,0x0,0x63,0x4,0x80,0x0,0x3d,0x4,0xdb,0x0,0x87,0x4,0x1d,0x0,0x1,0x4,0x80,0x0,0x35,0x4,0x87,0x0,0x5e,0x3,0xe9,0x0,0x36,0x4,0x80,0x0,0x5a,0x4,0xcf,0x0,0x6d,0x2,0xbb,0x0,0x6b,0x4,0x5d,0xff,0xf9,0x4,0x6a,0x0,0x6a,0x5,0x5c,0x0,0x3c,0x4,0x80,0x0,0x61,0x4,0x4,0x0,0x2d,0x4,0x98,0x0,0x32,0x4,0x27,0x0,0x18,0x4,0x5c,0x0,0x63,0x6,0x20,0x0,0x27,0x6,0x21,0x0,0x39,0x6,0x8f,0x0,0x41,0x4,0xd4,0x0,0x75,0x4,0xfc,0xff,0xec,0x6,0xcd,0xff,0xf5,0x5,0xf8,0x0,0x17,0x5,0x34,0x0,0x45,0x8,0x64,0x0,0x25,0x8,0x60,0x0,0x6d,0x5,0xfc,0x0,0x11,0x5,0x8b,0x0,0x56,0x4,0xff,0x0,0x6f,0x5,0xf0,0x0,0xf,0x8,0x58,0x0,0xb,0x5,0x9,0x0,0x3e,0x5,0x8b,0x0,0x5b,0x5,0xa4,0x0,0x25,0x5,0x10,0x0,0x4,0x6,0xb4,0x0,0x43,0x6,0x2c,0x0,0x56,0x5,0x97,0x0,0x86,0x7,0xbb,0x0,0x67,0x8,0x5f,0x0,0x67,0x6,0x3b,0x0,0x1c,0x6,0xf9,0x0,0x6e,0x4,0xfc,0x0,0x70,0x5,0x17,0x0,0xf,0x7,0xc7,0x0,0x7b,0x4,0x94,0xff,0xa4,0x4,0xa0,0x0,0x4d,0x4,0x7e,0x0,0x76,0x3,0x5a,0x0,0x59,0x5,0x26,0x0,0x1b,0x7,0x37,0x0,0x25,0x4,0x23,0x0,0x3c,0x4,0x7d,0x0,0x59,0x4,0x96,0x0,0x76,0x4,0x7f,0x0,0xa,0x6,0x24,0x0,0x76,0x4,0x7d,0x0,0x59,0x4,0x7d,0x0,0x59,0x4,0x32,0x0,0x1b,0x5,0xdf,0x0,0x35,0x4,0xed,0x0,0x59,0x4,0x77,0x0,0x51,0x6,0xaf,0x0,0x59,0x7,0x7f,0x0,0x5a,0x5,0x69,0x0,0x24,0x6,0xd2,0x0,0x76,0x4,0x86,0x0,0x76,0x4,0x15,0x0,0x2d,0x6,0x79,0x0,0x7c,0x4,0x84,0x0,0x2c,0x4,0x84,0xff,0xbc,0x4,0x15,0x0,0x2d,0x6,0xec,0x0,0xb,0x6,0xe4,0x0,0x59,0x4,0x80,0xff,0xc5,0x4,0x7d,0x0,0x59,0x7,0xe0,0x0,0x65,0x6,0xd4,0x0,0x58,0x4,0x86,0xff,0xeb,0x7,0x20,0x0,0x61,0x6,0x12,0x0,0x63,0x5,0x89,0x0,0x2,0x4,0x93,0x0,0x4,0x7,0xb8,0x0,0x79,0x6,0x92,0x0,0x5f,0x7,0x6,0x0,0x5b,0x5,0xd5,0x0,0x5b,0x9,0x69,0x0,0x86,0x8,0x20,0x0,0x7c,0x4,0x18,0xff,0xe4,0x4,0x21,0x0,0x6,0x5,0x88,0x0,0x55,0x4,0x80,0x0,0x32,0x5,0x2f,0x0,0x6,0x4,0x1d,0x0,0x1,0x5,0x88,0x0,0x55,0x4,0x80,0x0,0x35,0x7,0xe2,0x0,0x65,0x6,0xac,0x0,0x65,0x7,0xe0,0x0,0x65,0x6,0xd4,0x0,0x58,0x4,0xd5,0x0,0x4c,0x4,0x44,0x0,0x50,0x4,0xf7,0x0,0x69,0x0,0x0,0xfc,0x80,0x0,0x0,0xfc,0x7e,0x0,0x0,0xfd,0xb1,0x0,0x0,0xfd,0xa9,0x0,0x0,0xfa,0x3c,0x0,0x0,0xfa,0x93,0x6,0x48,0x0,0x5b,0x5,0x55,0x0,0x59,0x4,0x86,0xff,0xeb,0x4,0xfd,0x0,0x6f,0x4,0x7e,0x0,0x62,0x4,0x78,0x0,0x6f,0x3,0xc1,0x0,0x5a,0x5,0x5,0x0,0x6d,0x4,0x57,0x0,0x5a,0x9,0x2,0x0,0xb,0x7,0xba,0x0,0x25,0x6,0x1b,0x0,0x6d,0x5,0x6e,0x0,0x76,0x5,0x6b,0x0,0x70,0x4,0xfa,0x0,0x76,0x6,0xa1,0x0,0x16,0x5,0xcf,0x0,0x37,0x6,0x59,0x0,0x6f,0x5,0x57,0x0,0x59,0x7,0xf4,0x0,0x6f,0x5,0xa2,0x0,0x5a,0x8,0x72,0x0,0x6d,0x6,0xe6,0x0,0x5a,0x6,0xb2,0x0,0x56,0x5,0x57,0x0,0x49,0x5,0x72,0x0,0x4,0x4,0x69,0x0,0xc,0x7,0x20,0x0,0x17,0x5,0x8e,0x0,0x34,0x6,0x50,0x0,0x86,0x5,0x54,0x0,0x51,0x5,0x6f,0x0,0x5b,0x4,0x84,0x0,0x5c,0x5,0xaa,0x0,0x89,0x5,0xf8,0xff,0xb0,0x4,0xce,0xff,0xac,0x5,0x45,0x0,0x70,0x4,0xab,0x0,0x76,0x6,0x59,0x0,0x25,0x5,0x55,0x0,0xa,0x5,0xa2,0x0,0x6d,0x4,0x80,0x0,0x5a,0x6,0x54,0x0,0x6f,0x5,0x52,0x0,0x59,0x7,0xb7,0x0,0x6f,0x6,0xd0,0x0,0x76,0x5,0x96,0x0,0x45,0x4,0x9b,0x0,0x44,0x4,0x9e,0x0,0x47,0x4,0xd5,0x0,0x15,0x3,0xa7,0xff,0xfd,0x5,0xcf,0x0,0x4,0x4,0xc5,0x0,0xc,0x4,0xfc,0x0,0x41,0x7,0x95,0x0,0x81,0x6,0xcb,0x0,0x57,0x6,0x48,0x0,0x48,0x5,0x20,0x0,0x2b,0x4,0xe6,0x0,0x3b,0x4,0xb6,0x0,0x67,0x7,0xb3,0x0,0x3e,0x6,0xf3,0x0,0x3e,0x7,0xeb,0x0,0x6f,0x6,0x96,0x0,0x43,0x5,0x1f,0x0,0x30,0x4,0x4c,0x0,0x38,0x5,0x9f,0x0,0x1d,0x5,0x15,0x0,0x40,0x5,0x26,0x0,0x51,0x6,0xba,0x0,0x25,0x5,0xb7,0x0,0xa,0x3,0x12,0x0,0x4f,0x4,0x14,0x0,0x0,0x8,0x29,0x0,0x0,0x4,0x14,0x0,0x0,0x8,0x29,0x0,0x0,0x2,0xb9,0x0,0x0,0x2,0xa,0x0,0x0,0x1,0x5c,0x0,0x0,0x4,0x7f,0x0,0x0,0x2,0x30,0x0,0x0,0x1,0xa2,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x99,0x0,0x98,0x3,0x99,0x0,0x98,0x4,0xf2,0x0,0x92,0x6,0x5,0x0,0x56,0x3,0x85,0xff,0xff,0x1,0xff,0x0,0x6c,0x1,0xf2,0x0,0x42,0x2,0x2c,0x0,0x53,0x1,0xb2,0x0,0x45,0x3,0x6b,0x0,0x73,0x3,0x71,0x0,0x50,0x3,0x6c,0x0,0x53,0x4,0x40,0x0,0x33,0x4,0xaa,0x0,0x68,0x2,0xf6,0x0,0x87,0x4,0x5f,0x0,0x80,0x6,0x33,0x0,0x80,0x2,0x59,0x0,0x72,0x7,0xb4,0x0,0x65,0x2,0x8b,0x0,0x6c,0x2,0x6d,0x0,0x4d,0x3,0x87,0x0,0xf,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x3c,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x30,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x41,0x3,0x3c,0x0,0x50,0x2,0xea,0x0,0x50,0x2,0xea,0x0,0x50,0x2,0x21,0x0,0x50,0x2,0x21,0x0,0x50,0x3,0x54,0x0,0x45,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x8f,0x3,0x0,0x0,0x34,0x3,0x0,0x0,0x2a,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x3c,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x30,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x41,0x3,0x3c,0x0,0x50,0x2,0xea,0x0,0x50,0x2,0xea,0x0,0x50,0x2,0x21,0x0,0x50,0x2,0x21,0x0,0x50,0x4,0xce,0x0,0x6a,0x6,0x96,0x0,0x29,0x7,0xd,0x0,0x82,0x8,0xca,0x0,0x6f,0x6,0xc5,0x0,0x29,0x7,0x5d,0x0,0x62,0x4,0xa3,0x0,0x56,0x6,0x6,0x0,0x29,0x4,0x3e,0x0,0x28,0x4,0xdf,0x0,0x29,0x5,0x8e,0x0,0x38,0x5,0xce,0x0,0x40,0x5,0xdc,0x0,0x58,0x4,0x6,0x0,0x8,0x8,0xd,0x0,0x70,0x5,0x13,0x0,0x7c,0x5,0xc,0x0,0x92,0x6,0x53,0x0,0x69,0x6,0xeb,0x0,0x3c,0x6,0xd1,0x0,0x54,0x7,0x1f,0x0,0x5f,0x4,0x97,0x0,0x51,0x5,0x81,0x0,0xa2,0x5,0x30,0x0,0x33,0x4,0x60,0x0,0x87,0x4,0x57,0x0,0x34,0x8,0x7b,0x0,0x5e,0x2,0x73,0xff,0x9a,0x4,0xac,0x0,0x65,0x4,0xb0,0x0,0x80,0x4,0x15,0x0,0x2e,0x4,0x1b,0x0,0x6f,0x4,0x18,0x0,0x1a,0x2,0x5a,0x0,0x71,0x2,0x8a,0x0,0x50,0x1,0xba,0x0,0x22,0x5,0x5a,0x0,0xd,0x5,0x17,0x0,0x11,0x5,0x13,0x0,0xd,0x7,0xba,0x0,0xd,0x7,0xba,0x0,0xd,0x5,0x49,0x0,0xd,0x6,0xe7,0x0,0x24,0x0,0x0,0x0,0x0,0x8,0x28,0x0,0x55,0x8,0x35,0x0,0x5c,0x3,0x0,0x0,0x34,0x3,0x0,0x0,0x8f,0x3,0x0,0x0,0x44,0x4,0x34,0x0,0x42,0x4,0x34,0x0,0x45,0x4,0x34,0x0,0x28,0x4,0x34,0x0,0x3f,0x4,0x34,0x0,0x36,0x4,0x34,0x0,0x37,0x4,0x34,0x0,0x1f,0x4,0x34,0x0,0x2e,0x4,0x34,0x0,0x95,0x4,0x34,0x0,0x46,0x4,0x38,0x0,0x2c,0x4,0x60,0xff,0xf7,0x4,0x6a,0xff,0xf1,0x5,0xf3,0x0,0x16,0x4,0x96,0xff,0xf3,0x4,0x9b,0x0,0x54,0x4,0x68,0x0,0x1d,0x4,0x5f,0x0,0x37,0x4,0x92,0x0,0x51,0x4,0xc0,0x0,0x36,0x4,0x84,0x0,0x51,0x4,0xc0,0x0,0x30,0x4,0xcf,0x0,0x51,0x6,0xa,0x0,0x51,0x3,0xbb,0x0,0x51,0x4,0x6d,0x0,0x51,0x3,0xe3,0x0,0x1d,0x2,0x22,0x0,0x68,0x4,0xd0,0x0,0x51,0x4,0x9e,0x0,0x3e,0x3,0xc1,0x0,0x51,0x4,0x5f,0x0,0x37,0x4,0xc1,0x0,0x49,0x3,0xab,0x0,0x4,0x3,0xd2,0x0,0x51,0x4,0x95,0xff,0xf3,0x4,0xc0,0x0,0x30,0x4,0x95,0xff,0xf3,0x3,0xbf,0x0,0x53,0x4,0xe9,0x0,0x51,0x4,0x6e,0x0,0x4c,0x6,0x13,0x0,0x31,0x5,0xc9,0x0,0x31,0x4,0xbf,0x0,0x35,0x5,0xc7,0x0,0x1d,0x4,0x87,0x0,0x30,0x7,0x78,0x0,0x17,0x7,0x65,0x0,0x51,0x5,0xda,0x0,0x1d,0x4,0xe9,0x0,0x51,0x4,0x9b,0x0,0x51,0x5,0xc0,0x0,0x1b,0x6,0xa9,0x0,0x13,0x4,0x50,0x0,0x3b,0x4,0xd1,0x0,0x51,0x4,0x77,0x0,0x51,0x4,0xdc,0x0,0x17,0x4,0x98,0x0,0x18,0x5,0xc5,0x0,0x51,0x4,0xc9,0x0,0x4d,0x6,0xdb,0x0,0x51,0x7,0xb7,0x0,0x51,0x5,0xd7,0x0,0xa,0x6,0x57,0x0,0x51,0x4,0x91,0x0,0x51,0x4,0x87,0x0,0x25,0x6,0xb8,0x0,0x51,0x4,0x7e,0x0,0x29,0x4,0x4e,0x0,0xa,0x7,0x3f,0x0,0x13,0x4,0xe3,0x0,0x51,0x5,0x13,0x0,0x51,0x5,0xdc,0x0,0x1d,0x6,0x52,0x0,0x30,0x4,0x47,0xff,0xf7,0x4,0xf4,0xff,0xf1,0x6,0xf3,0x0,0x1d,0x4,0xc9,0x0,0x4d,0x4,0xc9,0x0,0x51,0x6,0x67,0x0,0x22,0x4,0xd3,0x0,0x30,0x4,0x52,0x0,0x3b,0x4,0xc0,0x0,0x30,0x4,0xc1,0x0,0x49,0x4,0x10,0x0,0x48,0x8,0x41,0x0,0x51,0x5,0x71,0x0,0x28,0x3,0x0,0x0,0x2a,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x3c,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x30,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x41,0x3,0xec,0x0,0x8a,0x2,0xa3,0x0,0x8b,0x3,0xd5,0x0,0x51,0x4,0x3b,0xff,0xeb,0x4,0x9e,0x0,0x3d,0x5,0x2f,0x0,0x6d,0x5,0x2e,0x0,0x6d,0x4,0x60,0x0,0x61,0x5,0x27,0x0,0x6d,0x4,0x54,0x0,0x61,0x4,0x6f,0x0,0x51,0x4,0x87,0x0,0x30,0x4,0x7a,0x0,0x51,0x4,0xbc,0xff,0xf3,0x1,0xfd,0x0,0x77,0x3,0x99,0x0,0x5e,0x0,0x0,0xfc,0x96,0x4,0x3,0x0,0x8c,0x4,0x3,0xff,0x3d,0x4,0x3,0x0,0x94,0x4,0x3,0x0,0x94,0x3,0xd2,0x0,0x51,0x3,0x99,0x0,0x5e,0x3,0x99,0x0,0x5e,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x3c,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x30,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x41,0x5,0x5a,0x0,0x44,0x5,0x82,0x0,0x44,0x5,0x5d,0x0,0x6d,0x5,0xcc,0x0,0x44,0x5,0xcb,0x0,0x44,0x4,0xb8,0x0,0x86,0x4,0x82,0x0,0x42,0x4,0x57,0x0,0xf,0x4,0x99,0x0,0x23,0x4,0x6b,0x0,0x6b,0x4,0x2e,0x0,0x35,0x3,0x99,0x0,0x5e,0x2,0x0,0x0,0x58,0x6,0x84,0x0,0x30,0x4,0x9b,0x0,0x4c,0x2,0x27,0xff,0x8c,0x4,0xa3,0x0,0x34,0x4,0xa3,0x0,0x56,0x4,0xa3,0x0,0x3d,0x4,0xa3,0x0,0x40,0x4,0xa3,0x0,0x37,0x4,0xa3,0x0,0x31,0x4,0xa3,0x0,0x4d,0x4,0xa3,0x0,0x51,0x4,0xa3,0x0,0x55,0x4,0xa3,0x0,0xcd,0x2,0x5d,0xff,0xa3,0x2,0x5d,0xff,0xa3,0x2,0x48,0x0,0x7c,0x2,0x48,0xff,0xfd,0x2,0x48,0x0,0x7c,0x4,0x7a,0x0,0x51,0x4,0xb9,0x0,0x36,0x4,0x4b,0x0,0x36,0x4,0x9a,0x0,0x62,0x4,0x51,0x0,0x38,0x4,0x98,0x0,0x38,0x4,0x99,0x0,0x38,0x4,0x99,0x0,0x2d,0x4,0x98,0x0,0x62,0x4,0x97,0x0,0x38,0x4,0x5c,0x0,0x3d,0x4,0x9b,0x0,0x34,0x4,0x31,0xff,0xf3,0x4,0x7,0x0,0x71,0x5,0x6a,0x0,0x4f,0x3,0xdd,0x0,0xb,0x6,0x5a,0xff,0xbb,0x4,0x20,0x0,0x51,0x4,0xc0,0x0,0x2e,0x5,0x59,0x0,0x3c,0x4,0xcf,0x0,0x51,0x1,0xfe,0x0,0x0,0x3,0x99,0x0,0x98,0x5,0x4b,0xff,0xff,0x5,0x4b,0xff,0xff,0x4,0xa2,0xff,0xe1,0x5,0xc,0x0,0x25,0x2,0xc0,0xff,0xdc,0x5,0x73,0xff,0xfc,0x5,0x73,0xff,0xfc,0x5,0x73,0xff,0xfc,0x5,0x73,0xff,0xfc,0x5,0x73,0xff,0xfc,0x5,0x73,0xff,0xfc,0x5,0x73,0xff,0xfc,0x5,0x40,0x0,0x46,0x4,0x7a,0x0,0x6f,0x4,0x7a,0x0,0x6f,0x4,0x7a,0x0,0x6f,0x4,0x7a,0x0,0x6f,0x2,0x6b,0xff,0xa9,0x2,0x6b,0x0,0x86,0x2,0x6b,0xff,0x92,0x2,0x6b,0xff,0x97,0x5,0x9e,0x0,0x6f,0x5,0x86,0x0,0x46,0x5,0x86,0x0,0x46,0x5,0x86,0x0,0x46,0x5,0x86,0x0,0x46,0x5,0x86,0x0,0x46,0x5,0x51,0x0,0x6a,0x5,0x51,0x0,0x6a,0x5,0x51,0x0,0x6a,0x5,0x51,0x0,0x6a,0x5,0x6,0xff,0xfc,0x4,0x40,0x0,0x2e,0x4,0x40,0x0,0x2e,0x4,0x40,0x0,0x2e,0x4,0x40,0x0,0x2e,0x4,0x40,0x0,0x2e,0x4,0x40,0x0,0x2e,0x4,0x40,0x0,0x2e,0x4,0x29,0x0,0x35,0x4,0x5c,0x0,0x3d,0x4,0x5c,0x0,0x3d,0x4,0x5c,0x0,0x3d,0x4,0x5c,0x0,0x3d,0x2,0x48,0xff,0x9a,0x2,0x48,0x0,0x7c,0x2,0x48,0xff,0x83,0x2,0x48,0xff,0x88,0x4,0x84,0x0,0x59,0x4,0x7f,0x0,0x35,0x4,0x7f,0x0,0x35,0x4,0x7f,0x0,0x35,0x4,0x7f,0x0,0x35,0x4,0x7f,0x0,0x35,0x4,0x84,0x0,0x59,0x4,0x84,0x0,0x59,0x4,0x84,0x0,0x59,0x4,0x84,0x0,0x59,0x4,0x25,0xff,0xfb,0x4,0x25,0xff,0xfb,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x40,0x0,0x46,0x4,0x29,0x0,0x35,0x5,0x40,0x0,0x46,0x4,0x29,0x0,0x35,0x5,0x40,0x0,0x46,0x4,0x29,0x0,0x35,0x5,0x40,0x0,0x46,0x4,0x29,0x0,0x35,0x5,0x2d,0x0,0x2e,0x5,0x16,0x0,0x35,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x5,0x73,0x0,0x52,0x4,0x9b,0x0,0x38,0x5,0x73,0x0,0x52,0x4,0x9b,0x0,0x38,0x5,0x73,0x0,0x52,0x4,0x9b,0x0,0x38,0x5,0x73,0x0,0x52,0x4,0x9b,0x0,0x38,0x5,0x9f,0x0,0x6f,0x4,0x84,0x0,0x58,0x2,0x6b,0xff,0xb0,0x2,0x48,0xff,0xa1,0x2,0x6b,0xff,0xd9,0x2,0x48,0xff,0xca,0x2,0x6b,0xff,0xc2,0x2,0x48,0xff,0xb3,0x2,0x6b,0x0,0x19,0x2,0x33,0x0,0x8,0x2,0x6b,0x0,0x86,0x6,0xea,0x0,0x86,0x4,0x5d,0x0,0x5d,0x4,0x7f,0x0,0x25,0x2,0x5d,0xff,0x71,0x5,0x1e,0x0,0x6f,0x4,0x60,0x0,0x62,0x4,0x56,0x0,0x6f,0x2,0x33,0x0,0x71,0x4,0x56,0x0,0x6f,0x2,0x33,0x0,0x5f,0x4,0x56,0x0,0x6f,0x2,0xc9,0x0,0x71,0x4,0x56,0x0,0x6f,0x3,0xf,0x0,0x71,0x5,0x9e,0x0,0x6f,0x4,0x84,0x0,0x59,0x5,0x9e,0x0,0x6f,0x4,0x84,0x0,0x59,0x5,0x9e,0x0,0x6f,0x4,0x84,0x0,0x59,0x4,0x84,0xff,0x7b,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x38,0x0,0x6f,0x3,0x8,0x0,0x62,0x5,0x38,0x0,0x6f,0x3,0x8,0x0,0x50,0x5,0x38,0x0,0x6f,0x3,0x8,0xff,0xe9,0x5,0x2,0x0,0x40,0x4,0x1a,0x0,0x24,0x5,0x2,0x0,0x40,0x4,0x1a,0x0,0x24,0x5,0x2,0x0,0x40,0x4,0x1a,0x0,0x24,0x5,0x2,0x0,0x40,0x4,0x1a,0x0,0x24,0x5,0x2,0x0,0x40,0x4,0x1a,0x0,0x24,0x5,0xc,0x0,0x25,0x2,0xc0,0x0,0xd,0x5,0xc,0x0,0x25,0x2,0xc0,0x0,0xd,0x5,0xc,0x0,0x25,0x2,0xe8,0x0,0xd,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x6,0xf4,0x0,0x16,0x5,0xcf,0x0,0x16,0x5,0x6,0xff,0xfc,0x4,0x25,0xff,0xfb,0x5,0x6,0xff,0xfc,0x4,0xe2,0x0,0x3e,0x4,0x1f,0x0,0x43,0x4,0xe2,0x0,0x3e,0x4,0x1f,0x0,0x43,0x4,0xe2,0x0,0x3e,0x4,0x1f,0x0,0x43,0x7,0x86,0x0,0x10,0x6,0xc2,0x0,0x3d,0x5,0x81,0x0,0x51,0x4,0x80,0x0,0x35,0x4,0x6f,0xff,0x7d,0x4,0x6f,0xff,0x7d,0x4,0x68,0x0,0x1d,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0x87,0x0,0x30,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x2,0x22,0xff,0x87,0x2,0x22,0x0,0x68,0x2,0x22,0xff,0x70,0x2,0x22,0xff,0x75,0x4,0xcf,0x0,0x51,0x4,0xc0,0x0,0x30,0x4,0xc0,0x0,0x30,0x4,0xc0,0x0,0x30,0x4,0xc0,0x0,0x30,0x4,0xc0,0x0,0x30,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x60,0xff,0xf7,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0xbc,0xff,0xf3,0x4,0x87,0x0,0x30,0x4,0x87,0x0,0x30,0x4,0x87,0x0,0x30,0x4,0x87,0x0,0x30,0x4,0x6f,0xff,0xbe,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x3,0xd5,0x0,0x51,0x4,0x9e,0x0,0x3e,0x4,0x9e,0x0,0x3e,0x4,0x9e,0x0,0x3e,0x4,0x9e,0x0,0x3e,0x4,0xd0,0x0,0x51,0x2,0x22,0xff,0x8e,0x2,0x22,0xff,0xb7,0x2,0x22,0xff,0xa0,0x2,0x22,0x0,0x37,0x2,0x22,0x0,0x68,0x3,0xe3,0x0,0x1d,0x4,0x6d,0x0,0x51,0x3,0xbb,0x0,0x51,0x3,0xbb,0x0,0x51,0x3,0xbb,0x0,0x51,0x3,0xbb,0x0,0x51,0x4,0xcf,0x0,0x51,0x4,0xcf,0x0,0x51,0x4,0xcf,0x0,0x51,0x4,0xc0,0x0,0x30,0x4,0xc0,0x0,0x30,0x4,0xc0,0x0,0x30,0x4,0x92,0x0,0x51,0x4,0x92,0x0,0x51,0x4,0x92,0x0,0x43,0x4,0x5f,0x0,0x37,0x4,0x5f,0x0,0x37,0x4,0x5f,0x0,0x37,0x4,0x5f,0x0,0x37,0x4,0x68,0x0,0x1d,0x4,0x68,0x0,0x1d,0x4,0x68,0x0,0x1d,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x4,0x9b,0x0,0x54,0x5,0xf3,0x0,0x16,0x4,0x60,0xff,0xf7,0x4,0x60,0xff,0xf7,0x4,0x38,0x0,0x2c,0x4,0x38,0x0,0x2c,0x4,0x38,0x0,0x2c,0x5,0x73,0xff,0xfc,0x4,0xde,0xfe,0xc2,0x6,0x3,0xfe,0xc1,0x2,0xcf,0xfe,0xc0,0x5,0x9a,0xff,0x3c,0x5,0x6a,0xfe,0xe5,0x5,0x7a,0xff,0x5e,0x2,0xbb,0xff,0x5e,0x5,0x73,0xff,0xfc,0x5,0x2a,0x0,0x6f,0x4,0x7a,0x0,0x6f,0x4,0xe2,0x0,0x3e,0x5,0x9f,0x0,0x6f,0x2,0x6b,0x0,0x86,0x5,0x1e,0x0,0x6f,0x7,0x3,0x0,0x6f,0x5,0x9e,0x0,0x6f,0x5,0x86,0x0,0x46,0x5,0x36,0x0,0x6f,0x5,0xc,0x0,0x25,0x5,0x6,0xff,0xfc,0x5,0x1c,0x0,0x4,0x2,0x6b,0xff,0x97,0x5,0x6,0xff,0xfc,0x4,0x80,0x0,0x3d,0x4,0x87,0x0,0x5e,0x4,0x80,0x0,0x5a,0x2,0xbb,0x0,0x6b,0x4,0x5c,0x0,0x63,0x4,0xdb,0x0,0x76,0x4,0x7f,0x0,0x35,0x5,0x22,0x0,0x85,0x4,0x22,0x0,0x3,0x4,0x31,0xff,0xf3,0x2,0xbb,0xff,0x89,0x4,0x5c,0x0,0x63,0x4,0x7f,0x0,0x35,0x4,0x5c,0x0,0x63,0x6,0x8f,0x0,0x41,0x4,0x7a,0x0,0x6f,0x4,0x76,0x0,0x6d,0x5,0x2,0x0,0x40,0x2,0x6b,0x0,0x86,0x2,0x6b,0xff,0x97,0x4,0x7f,0x0,0x25,0x5,0x2e,0x0,0x6d,0x5,0x1e,0x0,0x6f,0x5,0x10,0x0,0x4,0x5,0x73,0xff,0xfc,0x5,0x2a,0x0,0x6f,0x4,0x76,0x0,0x6d,0x4,0x7a,0x0,0x6f,0x5,0x8b,0x0,0x5b,0x7,0x3,0x0,0x6f,0x5,0x9f,0x0,0x6f,0x5,0x86,0x0,0x46,0x5,0xa2,0x0,0x6d,0x5,0x36,0x0,0x6f,0x5,0x40,0x0,0x46,0x5,0xc,0x0,0x25,0x5,0x1c,0x0,0x4,0x4,0x40,0x0,0x2e,0x4,0x5c,0x0,0x3d,0x4,0x7d,0x0,0x59,0x4,0x7f,0x0,0x35,0x4,0x81,0x0,0x62,0x4,0x29,0x0,0x35,0x4,0x25,0xff,0xfb,0x4,0x1f,0x0,0xc,0x4,0x5c,0x0,0x3d,0x3,0x5a,0x0,0x59,0x4,0x1a,0x0,0x24,0x2,0x33,0x0,0x5d,0x2,0x48,0xff,0x88,0x2,0x2a,0xff,0x8b,0x4,0x96,0x0,0x76,0x4,0x25,0xff,0xfb,0x6,0xf4,0x0,0x16,0x5,0xcf,0x0,0x16,0x6,0xf4,0x0,0x16,0x5,0xcf,0x0,0x16,0x6,0xf4,0x0,0x16,0x5,0xcf,0x0,0x16,0x5,0x6,0xff,0xfc,0x4,0x25,0xff,0xfb,0x1,0x3c,0x0,0x2c,0x2,0x8a,0x0,0x1a,0x4,0x6c,0x0,0x68,0x2,0x5d,0xff,0x5f,0x1,0xf2,0x0,0x42,0x7,0x3,0x0,0x6f,0x6,0xe4,0x0,0x62,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x4,0x7a,0x0,0x6f,0x5,0x8b,0x0,0x5b,0x4,0x5c,0x0,0x3d,0x4,0x7d,0x0,0x59,0x5,0xf7,0x0,0x24,0x6,0x21,0x0,0x39,0x5,0x2f,0x0,0x6,0x4,0x1d,0xff,0xe4,0x8,0xa4,0x0,0x35,0x9,0xab,0x0,0x46,0x5,0x9,0x0,0x3e,0x4,0x23,0x0,0x3c,0x5,0x40,0x0,0x46,0x4,0x29,0x0,0x35,0x5,0x6,0xff,0xfc,0x4,0x1d,0x0,0x1,0x2,0x6b,0x0,0x86,0x8,0x58,0x0,0xb,0x7,0x37,0x0,0x25,0x2,0x6b,0x0,0x86,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x7,0x86,0x0,0x10,0x6,0xc2,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x5,0x96,0x0,0x45,0x4,0x3c,0x0,0x42,0x4,0x3c,0x0,0x42,0x8,0x58,0x0,0xb,0x7,0x37,0x0,0x25,0x5,0x9,0x0,0x3e,0x4,0x23,0x0,0x3c,0x5,0x8b,0x0,0x5b,0x4,0x7d,0x0,0x59,0x5,0x8b,0x0,0x5b,0x4,0x7d,0x0,0x59,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x88,0x0,0x55,0x4,0x80,0x0,0x32,0x5,0x88,0x0,0x55,0x4,0x80,0x0,0x32,0x5,0x17,0x0,0xf,0x4,0x15,0x0,0x2d,0x5,0x10,0x0,0x4,0x4,0x25,0xff,0xfb,0x5,0x10,0x0,0x4,0x4,0x25,0xff,0xfb,0x5,0x10,0x0,0x4,0x4,0x25,0xff,0xfb,0x5,0x97,0x0,0x86,0x4,0x77,0x0,0x51,0x6,0xf9,0x0,0x6e,0x6,0xd2,0x0,0x76,0x4,0x80,0x0,0x35,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfb,0x4,0x40,0xff,0x57,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0xff,0xc4,0x4,0x5c,0xff,0x56,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x2,0x6b,0x0,0x86,0x2,0x48,0x0,0x7c,0x2,0x6b,0x0,0x7c,0x2,0x33,0x0,0x5d,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x0,0x4,0x7f,0xff,0x80,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0x86,0x0,0x46,0x4,0x7f,0x0,0x35,0x5,0xaf,0x0,0x49,0x4,0xaf,0x0,0x32,0x5,0xaf,0x0,0x49,0x4,0xaf,0x0,0x32,0x5,0xaf,0x0,0x49,0x4,0xaf,0x0,0x32,0x5,0xaf,0x0,0x49,0x4,0xaf,0x0,0x32,0x5,0xaf,0x0,0x49,0x4,0xaf,0x0,0x32,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0x51,0x0,0x6a,0x4,0x84,0x0,0x59,0x5,0xc3,0x0,0x6a,0x4,0xcf,0x0,0x59,0x5,0xc3,0x0,0x6a,0x4,0xcf,0x0,0x59,0x5,0xc3,0x0,0x6a,0x4,0xcf,0x0,0x59,0x5,0xc3,0x0,0x6a,0x4,0xcf,0x0,0x59,0x5,0xc3,0x0,0x6a,0x4,0xcf,0x0,0x59,0x5,0x6,0xff,0xfc,0x4,0x25,0xff,0xfb,0x5,0x6,0xff,0xfc,0x4,0x25,0xff,0xfb,0x5,0x6,0xff,0xfc,0x4,0x25,0xff,0xfb,0x4,0x9e,0x0,0x35,0x5,0xc,0x0,0x25,0x4,0x32,0x0,0x1b,0x5,0x97,0x0,0x86,0x4,0x77,0x0,0x51,0x4,0x76,0x0,0x6d,0x3,0x5a,0x0,0x59,0x5,0xf8,0xff,0xb0,0x4,0xce,0xff,0xac,0x4,0x84,0x0,0x58,0x4,0xfc,0xff,0xdc,0x4,0xfc,0xff,0xdc,0x4,0x76,0xff,0xda,0x3,0x5a,0xff,0xaa,0x5,0x42,0xff,0xc9,0x4,0x74,0xff,0xb7,0x5,0x6,0xff,0xfc,0x4,0x1d,0x0,0x1,0x5,0x1c,0x0,0x4,0x4,0x1f,0x0,0xc,0x4,0x87,0x0,0x5e,0x4,0x60,0xff,0xe3,0x6,0x5,0x0,0x56,0x4,0xa3,0x0,0x3c,0x4,0xa3,0x0,0x30,0x4,0xa3,0x0,0x3b,0x4,0xa3,0x0,0x50,0x4,0xb7,0x0,0x68,0x4,0xcb,0x0,0x69,0x4,0xb7,0x0,0x50,0x4,0xcb,0x0,0x6a,0x5,0x73,0x0,0x52,0x4,0x9b,0x0,0x38,0x5,0x9e,0x0,0x6f,0x4,0x84,0x0,0x59,0x5,0x73,0xff,0xfc,0x4,0x40,0xff,0xc3,0x4,0x7a,0x0,0x30,0x4,0x5c,0xff,0xc2,0x2,0x6b,0xfe,0xe0,0x2,0x48,0xfe,0xd1,0x5,0x86,0x0,0x46,0x4,0x7f,0xff,0xec,0x5,0x38,0xff,0xfc,0x3,0x8,0xff,0x49,0x5,0x51,0x0,0x4e,0x4,0x84,0xff,0xec,0x5,0x60,0xfe,0xbe,0x5,0x2a,0x0,0x6f,0x4,0x81,0x0,0x62,0x5,0x2d,0x0,0x6f,0x4,0x80,0x0,0x35,0x5,0x2d,0x0,0x6f,0x4,0x80,0x0,0x35,0x5,0x9f,0x0,0x6f,0x4,0x84,0x0,0x58,0x5,0x1e,0x0,0x6f,0x4,0x60,0x0,0x62,0x5,0x1e,0x0,0x6f,0x4,0x60,0x0,0x62,0x4,0x56,0x0,0x6f,0x2,0x33,0x0,0x60,0x7,0x3,0x0,0x6f,0x6,0xe4,0x0,0x62,0x5,0x9e,0x0,0x6f,0x4,0x84,0x0,0x59,0x5,0x86,0x0,0x46,0x5,0x36,0x0,0x6f,0x4,0x81,0x0,0x62,0x5,0x38,0x0,0x6f,0x3,0x8,0x0,0x51,0x5,0x2,0x0,0x40,0x4,0x1a,0x0,0x24,0x5,0xc,0x0,0x25,0x2,0xc0,0x0,0xd,0x5,0x51,0x0,0x6a,0x5,0x4a,0xff,0xfc,0x4,0x22,0x0,0x3,0x5,0x4a,0xff,0xfc,0x4,0x22,0x0,0x3,0x6,0xf4,0x0,0x16,0x5,0xcf,0x0,0x16,0x4,0xe2,0x0,0x3e,0x4,0x1f,0x0,0x43,0x5,0xcc,0xfe,0x57,0x4,0xbc,0xff,0x7a,0x4,0x11,0xfe,0xfa,0x5,0xc,0xfe,0xe1,0x2,0x5e,0xfe,0xe0,0x4,0xca,0xff,0x1e,0x4,0x9c,0xfe,0xc4,0x4,0xc9,0xff,0x27,0x4,0xbc,0xff,0xf3,0x4,0x7a,0x0,0x51,0x3,0xd5,0x0,0x51,0x4,0x38,0x0,0x2c,0x4,0xd0,0x0,0x51,0x2,0x22,0x0,0x68,0x4,0x6d,0x0,0x51,0x6,0xa,0x0,0x51,0x4,0xcf,0x0,0x51,0x4,0xc0,0x0,0x30,0x4,0x84,0x0,0x51,0x4,0x68,0x0,0x1d,0x4,0x60,0xff,0xf7,0x4,0x6a,0xff,0xf1,0x2,0x22,0xff,0x75,0x4,0x60,0xff,0xf7,0x3,0xd5,0x0,0x51,0x3,0xd2,0x0,0x51,0x4,0x5f,0x0,0x37,0x2,0x22,0x0,0x68,0x2,0x22,0xff,0x75,0x3,0xe3,0x0,0x1d,0x4,0x6d,0x0,0x51,0x4,0x98,0x0,0x18,0x4,0xbc,0xff,0xf3,0x4,0x7a,0x0,0x51,0x3,0xd2,0x0,0x51,0x3,0xd5,0x0,0x51,0x4,0xd1,0x0,0x51,0x6,0xa,0x0,0x51,0x4,0xd0,0x0,0x51,0x4,0xc0,0x0,0x30,0x4,0xe9,0x0,0x51,0x4,0x84,0x0,0x51,0x4,0x87,0x0,0x30,0x4,0x68,0x0,0x1d,0x4,0x6a,0xff,0xf1,0x4,0x50,0x0,0x3b,0x4,0xd0,0x0,0x51,0x4,0x87,0x0,0x30,0x4,0x60,0xff,0xf7,0x6,0x67,0x0,0x22,0x4,0xd1,0x0,0x51,0x4,0x98,0x0,0x18,0x6,0x13,0x0,0x31,0x6,0x5,0x0,0x68,0x6,0x5a,0xff,0xbb,0x4,0xc0,0x0,0x2e,0x4,0x5f,0x0,0x37,0x5,0xf3,0x0,0x16,0x5,0xf3,0x0,0x16,0x5,0xf3,0x0,0x16,0x4,0x60,0xff,0xf7,0x5,0x73,0xff,0xfc,0x4,0x40,0x0,0x2e,0x4,0x7a,0x0,0x6f,0x4,0x5c,0x0,0x3d,0x4,0xbc,0xff,0xf3,0x3,0xd5,0x0,0x51,0x2,0x48,0x0,0x60,0x0,0x1,0x0,0x0,0x0,0xa,0x1,0xac,0x3,0x0,0x0,0x4,0x44,0x46,0x4c,0x54,0x1,0x70,0x63,0x79,0x72,0x6c,0x1,0x70,0x67,0x72,0x65,0x6b,0x1,0x70,0x6c,0x61,0x74,0x6e,0x0,0x1a,0x1,0x26,0x0,0x7,0x41,0x5a,0x45,0x20,0x0,0xf6,0x43,0x52,0x54,0x20,0x0,0xf6,0x46,0x52,0x41,0x20,0x0,0xc4,0x4d,0x4f,0x4c,0x20,0x0,0x92,0x4e,0x41,0x56,0x20,0x0,0x60,0x52,0x4f,0x4d,0x20,0x0,0x2e,0x54,0x52,0x4b,0x20,0x0,0xf6,0x0,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x6,0x0,0x8,0x0,0xc,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x6,0x0,0x8,0x0,0xb,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x6,0x0,0x8,0x0,0xa,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x6,0x0,0x8,0x0,0x9,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x0,0xff,0xff,0x0,0x15,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x5,0x0,0x8,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x0,0xff,0xff,0x0,0x15,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x7,0x0,0x8,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x14,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x8,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0x10,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x1b,0x63,0x32,0x73,0x63,0x1,0x4e,0x63,0x63,0x6d,0x70,0x1,0x46,0x64,0x6c,0x69,0x67,0x1,0x40,0x64,0x6e,0x6f,0x6d,0x1,0x3a,0x66,0x72,0x61,0x63,0x1,0x30,0x6c,0x69,0x67,0x61,0x1,0x2a,0x6c,0x69,0x67,0x61,0x1,0x1e,0x6c,0x69,0x67,0x61,0x1,0x16,0x6c,0x6e,0x75,0x6d,0x1,0x10,0x6c,0x6f,0x63,0x6c,0x1,0xa,0x6c,0x6f,0x63,0x6c,0x1,0x4,0x6c,0x6f,0x63,0x6c,0x0,0xfe,0x6c,0x6f,0x63,0x6c,0x0,0xf8,0x6e,0x75,0x6d,0x72,0x0,0xf2,0x6f,0x6e,0x75,0x6d,0x0,0xec,0x70,0x6e,0x75,0x6d,0x0,0xe6,0x73,0x6d,0x63,0x70,0x0,0xe0,0x73,0x73,0x30,0x31,0x0,0xda,0x73,0x73,0x30,0x32,0x0,0xd4,0x73,0x73,0x30,0x33,0x0,0xce,0x73,0x73,0x30,0x34,0x0,0xc8,0x73,0x73,0x30,0x35,0x0,0xc2,0x73,0x73,0x30,0x36,0x0,0xbc,0x73,0x73,0x30,0x37,0x0,0xb6,0x73,0x75,0x62,0x73,0x0,0xb0,0x73,0x75,0x70,0x73,0x0,0xaa,0x74,0x6e,0x75,0x6d,0x0,0xa4,0x0,0x0,0x0,0x1,0x0,0x15,0x0,0x0,0x0,0x1,0x0,0x1d,0x0,0x0,0x0,0x1,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x12,0x0,0x0,0x0,0x1,0x0,0x11,0x0,0x0,0x0,0x1,0x0,0x10,0x0,0x0,0x0,0x1,0x0,0xf,0x0,0x0,0x0,0x1,0x0,0xe,0x0,0x0,0x0,0x1,0x0,0xd,0x0,0x0,0x0,0x1,0x0,0xc,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x14,0x0,0x0,0x0,0x1,0x0,0x13,0x0,0x0,0x0,0x1,0x0,0x1c,0x0,0x0,0x0,0x1,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x7,0x0,0x0,0x0,0x1,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x1,0x0,0x16,0x0,0x0,0x0,0x2,0x0,0x9,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x9,0x0,0xa,0x0,0x9,0x0,0xa,0x0,0x0,0x0,0x1,0x0,0xa,0x0,0x0,0x0,0x3,0x0,0x17,0x0,0x18,0x0,0x1a,0x0,0x0,0x0,0x1,0x0,0x1b,0x0,0x0,0x0,0x1,0x0,0xb,0x0,0x0,0x0,0x2,0x0,0x2,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0xe,0xfc,0xb,0x3e,0xa,0xbe,0xa,0xa4,0x4,0x0,0x3,0xea,0x3,0xea,0x3,0xc0,0x3,0xac,0x3,0x82,0x3,0x5e,0x3,0x22,0x3,0xe,0x2,0xfa,0x2,0xe6,0x2,0xcc,0x2,0xba,0x2,0x78,0x2,0x5a,0x2,0x8,0x1,0xc2,0x1,0x60,0x1,0x2,0x0,0xee,0x0,0xb4,0x0,0x92,0x0,0x70,0x0,0x92,0x0,0x70,0x0,0x4e,0x0,0x40,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x86,0x1,0x8e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x78,0x0,0xa,0x1,0x95,0x0,0x7a,0x0,0x73,0x0,0x74,0x1,0x96,0x1,0x97,0x1,0x98,0x1,0x99,0x1,0x9a,0x1,0x9b,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x56,0x0,0xa,0x2,0x58,0x0,0x7a,0x0,0x73,0x0,0x74,0x2,0x59,0x2,0x5a,0x2,0x5b,0x2,0x5c,0x2,0x5d,0x2,0x5e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x34,0x0,0xa,0x1,0xe1,0x1,0xe0,0x1,0xdf,0x2,0x39,0x2,0x3a,0x2,0x3b,0x2,0x3c,0x2,0x3d,0x2,0x3e,0x2,0x3f,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x3,0x0,0x1,0x0,0x1c,0x0,0x1,0x0,0x12,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x0,0x2,0x0,0x1,0x0,0x14,0x0,0x1d,0x0,0x0,0x0,0x2,0x0,0x3,0x1,0x94,0x1,0x94,0x0,0x0,0x1,0xdf,0x1,0xe1,0x0,0x1,0x2,0x39,0x2,0x3f,0x0,0x4,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x1,0x81,0x0,0x1,0x0,0x1,0x0,0x13,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x2e,0x0,0x14,0x4,0xac,0x4,0xad,0x2,0x8b,0x4,0xa8,0x4,0xa9,0x4,0xaa,0x4,0xab,0x2,0x80,0x4,0xae,0x0,0x17,0x0,0x19,0x0,0x18,0x0,0x16,0x0,0x1b,0x0,0x14,0x0,0x1a,0x0,0x1d,0x0,0x1c,0x0,0x15,0x4,0xaf,0x0,0x2,0x0,0x6,0x0,0x1a,0x0,0x1a,0x0,0x0,0x0,0x1c,0x0,0x1c,0x0,0x1,0x2,0x64,0x2,0x69,0x0,0x2,0x2,0x6d,0x2,0x6d,0x0,0x8,0x2,0x6f,0x2,0x78,0x0,0x9,0x2,0x7f,0x2,0x7f,0x0,0x13,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x2e,0x0,0x14,0x2,0x75,0x2,0x77,0x2,0x78,0x2,0x72,0x2,0x6f,0x2,0x71,0x2,0x70,0x2,0x73,0x2,0x76,0x2,0x74,0x0,0x1b,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x1c,0x0,0x1d,0x0,0x14,0x0,0x1,0x0,0x14,0x0,0x1a,0x0,0x1c,0x2,0x64,0x2,0x65,0x2,0x66,0x2,0x67,0x2,0x68,0x2,0x69,0x2,0x6d,0x2,0x7f,0x2,0x80,0x2,0x8b,0x4,0xa8,0x4,0xa9,0x4,0xaa,0x4,0xab,0x4,0xac,0x4,0xad,0x4,0xae,0x4,0xaf,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x2e,0x0,0x14,0x4,0xaf,0x2,0x8b,0x4,0xa8,0x4,0xa9,0x4,0xaa,0x4,0xab,0x4,0xac,0x2,0x80,0x4,0xad,0x4,0xae,0x2,0x66,0x2,0x68,0x2,0x67,0x2,0x65,0x2,0x69,0x2,0x7f,0x0,0x1a,0x2,0x6d,0x0,0x1c,0x2,0x64,0x0,0x2,0x0,0x2,0x0,0x14,0x0,0x1d,0x0,0x0,0x2,0x6f,0x2,0x78,0x0,0xa,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x2e,0x0,0x14,0x2,0x74,0x2,0x78,0x2,0x72,0x2,0x6f,0x2,0x71,0x2,0x70,0x2,0x75,0x2,0x73,0x2,0x77,0x2,0x76,0x2,0x69,0x2,0x64,0x2,0x65,0x2,0x66,0x2,0x67,0x2,0x68,0x0,0x1a,0x0,0x1c,0x2,0x6d,0x2,0x7f,0x0,0x2,0x0,0x4,0x0,0x14,0x0,0x1d,0x0,0x0,0x2,0x80,0x2,0x80,0x0,0xa,0x2,0x8b,0x2,0x8b,0x0,0xb,0x4,0xa8,0x4,0xaf,0x0,0xc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0xc,0x0,0x3,0x2,0x88,0x2,0x89,0x2,0x89,0x0,0x1,0x0,0x3,0x0,0x49,0x0,0x4b,0x2,0x84,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x1e,0x0,0xc,0x2,0x5f,0x2,0x61,0x2,0x60,0x2,0x62,0x2,0x63,0x2,0x81,0x2,0x82,0x2,0x83,0x2,0x84,0x2,0x85,0x2,0x86,0x2,0x87,0x0,0x1,0x0,0xc,0x0,0x27,0x0,0x28,0x0,0x2b,0x0,0x33,0x0,0x35,0x0,0x46,0x0,0x47,0x0,0x48,0x0,0x4b,0x0,0x53,0x0,0x54,0x0,0x55,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x1c,0x0,0x2,0x2,0x48,0x2,0x49,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0xa,0x0,0x2,0x2,0x46,0x2,0x47,0x0,0x1,0x0,0x2,0x0,0x2f,0x0,0x4f,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x2,0xf,0x0,0x1,0x0,0x1,0x0,0x36,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x1,0x89,0x0,0x1,0x0,0x1,0x0,0xbb,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x1,0xf8,0x0,0x1,0x0,0x1,0x0,0x4b,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x2a,0x0,0x3,0x0,0x20,0x0,0x16,0x0,0xc,0x0,0x1,0x0,0x4,0x1,0xda,0x0,0x2,0x0,0x58,0x0,0x1,0x0,0x4,0x1,0xdb,0x0,0x2,0x0,0x58,0x0,0x1,0x0,0x4,0x1,0xd5,0x0,0x2,0x0,0x4a,0x0,0x1,0x0,0x3,0x0,0x4a,0x0,0x57,0x0,0x95,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x40,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0xc,0x0,0x6,0x1,0xd7,0x0,0x2,0x0,0x50,0x1,0xd9,0x0,0x3,0x0,0x4a,0x0,0x50,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x1c,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0xc,0x0,0x6,0x1,0xd6,0x0,0x2,0x0,0x4d,0x1,0xd8,0x0,0x3,0x0,0x4a,0x0,0x4d,0x0,0x1,0x0,0x1,0x0,0x4a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x0,0x1,0x0,0x1,0x0,0x1,0x1,0x7b,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x12,0x0,0x6,0x5,0x22,0x5,0x23,0x5,0x24,0x5,0x25,0x5,0x26,0x5,0x27,0x0,0x1,0x0,0x6,0x2,0xd5,0x2,0xd6,0x2,0xe7,0x2,0xe8,0x3,0x6a,0x3,0x73,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x0,0x2,0x0,0x1,0x0,0x2,0x3,0x23,0x3,0x24,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x6,0x32,0x0,0x36,0x6,0x0,0x5,0xf6,0x5,0xec,0x5,0xda,0x5,0xa8,0x5,0x96,0x5,0x8c,0x5,0x5a,0x5,0x40,0x5,0x26,0x5,0x14,0x4,0xea,0x4,0xae,0x4,0xa4,0x4,0x82,0x4,0x68,0x4,0x56,0x4,0x1a,0x4,0x8,0x3,0xee,0x3,0xc4,0x3,0xb2,0x3,0x80,0x3,0x76,0x3,0x6c,0x3,0x5a,0x3,0x28,0x3,0x1e,0x3,0x14,0x3,0xa,0x2,0xf0,0x2,0xd6,0x2,0xc4,0x2,0x9a,0x2,0x68,0x2,0x5e,0x2,0x3c,0x2,0x22,0x2,0x10,0x1,0xde,0x1,0xcc,0x1,0xb2,0x1,0x88,0x1,0x76,0x1,0x6c,0x1,0x62,0x1,0x58,0x1,0x4e,0x1,0x24,0x0,0xfa,0x0,0xd0,0x0,0xa6,0x0,0x7c,0x0,0x72,0x0,0x1,0x0,0x4,0x4,0xc0,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0x88,0x0,0x2,0x0,0xaa,0x4,0x86,0x0,0x2,0x0,0xab,0x4,0x84,0x0,0x2,0x0,0xa8,0x4,0x8a,0x0,0x2,0x0,0xad,0x4,0x82,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0x87,0x0,0x2,0x0,0xaa,0x4,0x85,0x0,0x2,0x0,0xab,0x4,0x83,0x0,0x2,0x0,0xa8,0x4,0x89,0x0,0x2,0x0,0xad,0x4,0x81,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0x7a,0x0,0x2,0x0,0xaa,0x4,0x78,0x0,0x2,0x0,0xab,0x4,0x76,0x0,0x2,0x0,0xa8,0x4,0x7c,0x0,0x2,0x0,0xad,0x4,0x74,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0x79,0x0,0x2,0x0,0xaa,0x4,0x77,0x0,0x2,0x0,0xab,0x4,0x75,0x0,0x2,0x0,0xa8,0x4,0x7b,0x0,0x2,0x0,0xad,0x4,0x73,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0xb9,0x0,0x2,0x0,0xac,0x2,0xf6,0x0,0x2,0x0,0xaa,0x4,0x62,0x0,0x2,0x0,0xab,0x2,0xc1,0x0,0x2,0x0,0xa8,0x2,0xc2,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x3,0x49,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x3,0x47,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x3,0x48,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x3,0x46,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xe4,0x0,0x2,0x0,0xad,0x3,0x41,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0x90,0x0,0x2,0x0,0xaa,0x4,0x8e,0x0,0x2,0x0,0xab,0x3,0xf5,0x0,0x2,0x0,0xa8,0x4,0x8c,0x0,0x2,0x0,0xad,0x2,0xcf,0x0,0x2,0x0,0xa9,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x3,0xef,0x0,0x2,0x0,0xa8,0x4,0xe2,0x0,0x2,0x0,0xad,0x3,0xf1,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xde,0x0,0x2,0x0,0xaa,0x4,0xe0,0x0,0x2,0x0,0xad,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xbf,0x0,0x2,0x0,0xac,0x3,0x30,0x0,0x2,0x0,0xaa,0x4,0x80,0x0,0x2,0x0,0xab,0x2,0xcb,0x0,0x2,0x0,0xa8,0x4,0x7e,0x0,0x2,0x0,0xad,0x2,0xcc,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xdb,0x0,0x2,0x0,0xad,0x3,0x2a,0x0,0x2,0x1,0xd4,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x4,0xd9,0x0,0x2,0x0,0xad,0x3,0x26,0x0,0x2,0x1,0xd4,0x3,0x20,0x0,0x2,0x0,0xa9,0x0,0x4,0x0,0x1c,0x0,0x16,0x0,0x10,0x0,0xa,0x4,0xbd,0x0,0x2,0x0,0xac,0x4,0xd7,0x0,0x2,0x0,0xad,0x3,0x1c,0x0,0x2,0x1,0xd4,0x3,0x1a,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x4,0xd5,0x0,0x2,0x0,0xa9,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xbb,0x0,0x2,0x0,0xac,0x2,0xc9,0x0,0x2,0x0,0xaa,0x4,0x68,0x0,0x2,0x0,0xab,0x2,0xc6,0x0,0x2,0x0,0xa8,0x4,0x66,0x0,0x2,0x0,0xad,0x2,0xc7,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x2,0xc5,0x0,0x2,0x0,0xaa,0x4,0xb3,0x0,0x2,0x0,0xa8,0x4,0xd2,0x0,0x2,0x0,0xad,0x3,0xf,0x0,0x2,0x1,0xd4,0x3,0xd,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xd0,0x0,0x2,0x0,0xad,0x3,0xfc,0x0,0x2,0x0,0xa9,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x4,0xce,0x0,0x2,0x0,0xad,0x3,0x7,0x0,0x2,0x1,0xd4,0x3,0x5,0x0,0x2,0x0,0xa9,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x4,0xcc,0x0,0x2,0x0,0xad,0x3,0x3,0x0,0x2,0x1,0xd4,0x4,0xca,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x4,0x64,0x0,0x2,0x0,0xad,0x0,0x1,0x0,0x4,0x4,0xc8,0x0,0x2,0x0,0xad,0x0,0x1,0x0,0x4,0x4,0xb1,0x0,0x2,0x0,0xa9,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xb7,0x0,0x2,0x0,0xac,0x4,0x56,0x0,0x2,0x0,0xaa,0x4,0x54,0x0,0x2,0x0,0xab,0x2,0xbd,0x0,0x2,0x0,0xa8,0x4,0x52,0x0,0x2,0x0,0xad,0x2,0xbe,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xc4,0x0,0x2,0x0,0xad,0x4,0xc6,0x0,0x2,0x1,0xd4,0x0,0x1,0x0,0x4,0x2,0xd8,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x4,0xc2,0x0,0x2,0x0,0xad,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xb5,0x0,0x2,0x0,0xac,0x2,0xb8,0x0,0x2,0x0,0xaa,0x4,0x3c,0x0,0x2,0x0,0xab,0x2,0xb5,0x0,0x2,0x0,0xa8,0x4,0x3a,0x0,0x2,0x0,0xad,0x2,0xb6,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xe3,0x0,0x2,0x0,0xad,0x3,0x40,0x0,0x2,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x4,0x8f,0x0,0x2,0x0,0xaa,0x4,0x8d,0x0,0x2,0x0,0xab,0x3,0xf4,0x0,0x2,0x0,0xa8,0x4,0x8b,0x0,0x2,0x0,0xad,0x2,0xb4,0x0,0x2,0x0,0xa9,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x3,0xee,0x0,0x2,0x0,0xa8,0x4,0xe1,0x0,0x2,0x0,0xad,0x3,0xf0,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xdd,0x0,0x2,0x0,0xaa,0x4,0xdf,0x0,0x2,0x0,0xad,0x0,0x7,0x0,0x34,0x0,0x2e,0x0,0x28,0x0,0x22,0x0,0x1c,0x0,0x16,0x0,0x10,0x4,0xbe,0x0,0x2,0x0,0xac,0x3,0x2f,0x0,0x2,0x0,0xaa,0x4,0x7f,0x0,0x2,0x0,0xab,0x2,0xb0,0x0,0x2,0x0,0xa8,0x4,0x7d,0x0,0x2,0x0,0xad,0x2,0xb1,0x0,0x2,0x0,0xa9,0x4,0xdc,0x0,0x3,0x0,0xaa,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xda,0x0,0x2,0x0,0xad,0x3,0x29,0x0,0x2,0x1,0xd4,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x4,0xd8,0x0,0x2,0x0,0xad,0x3,0x25,0x0,0x2,0x1,0xd4,0x3,0x1f,0x0,0x2,0x0,0xa9,0x0,0x4,0x0,0x1c,0x0,0x16,0x0,0x10,0x0,0xa,0x4,0xbc,0x0,0x2,0x0,0xac,0x4,0xd6,0x0,0x2,0x0,0xad,0x3,0x1b,0x0,0x2,0x1,0xd4,0x3,0x19,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x4,0xd4,0x0,0x2,0x0,0xa9,0x0,0x7,0x0,0x34,0x0,0x2e,0x0,0x28,0x0,0x22,0x0,0x1c,0x0,0x16,0x0,0x10,0x4,0xba,0x0,0x2,0x0,0xac,0x2,0xae,0x0,0x2,0x0,0xaa,0x4,0x67,0x0,0x2,0x0,0xab,0x2,0xab,0x0,0x2,0x0,0xa8,0x4,0x65,0x0,0x2,0x0,0xad,0x2,0xac,0x0,0x2,0x0,0xa9,0x4,0xd3,0x0,0x3,0x0,0xaa,0x0,0xa9,0x0,0x5,0x0,0x24,0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xc,0x2,0xaa,0x0,0x2,0x0,0xaa,0x4,0xb2,0x0,0x2,0x0,0xa8,0x4,0xd1,0x0,0x2,0x0,0xad,0x3,0xe,0x0,0x2,0x1,0xd4,0x3,0xc,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xcf,0x0,0x2,0x0,0xad,0x3,0xfb,0x0,0x2,0x0,0xa9,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x4,0xcd,0x0,0x2,0x0,0xad,0x3,0x6,0x0,0x2,0x1,0xd4,0x3,0x4,0x0,0x2,0x0,0xa9,0x0,0x3,0x0,0x14,0x0,0xe,0x0,0x8,0x4,0xcb,0x0,0x2,0x0,0xad,0x3,0x2,0x0,0x2,0x1,0xd4,0x4,0xc9,0x0,0x2,0x0,0xa9,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xb8,0x0,0x2,0x0,0xac,0x2,0xf5,0x0,0x2,0x0,0xaa,0x4,0x61,0x0,0x2,0x0,0xab,0x2,0xa6,0x0,0x2,0x0,0xa8,0x4,0x63,0x0,0x2,0x0,0xad,0x2,0xa7,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x4,0xc7,0x0,0x2,0x0,0xad,0x0,0x2,0x0,0xc,0x0,0x6,0x2,0xf1,0x0,0x2,0x1,0xd4,0x4,0xb0,0x0,0x2,0x0,0xa9,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xb6,0x0,0x2,0x0,0xac,0x4,0x55,0x0,0x2,0x0,0xaa,0x4,0x53,0x0,0x2,0x0,0xab,0x2,0xa2,0x0,0x2,0x0,0xa8,0x4,0x51,0x0,0x2,0x0,0xad,0x2,0xa3,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0xc,0x0,0x6,0x4,0xc3,0x0,0x2,0x0,0xad,0x4,0xc5,0x0,0x2,0x1,0xd4,0x0,0x1,0x0,0x4,0x2,0xd7,0x0,0x2,0x0,0xa9,0x0,0x1,0x0,0x4,0x4,0xc1,0x0,0x2,0x0,0xad,0x0,0x6,0x0,0x2c,0x0,0x26,0x0,0x20,0x0,0x1a,0x0,0x14,0x0,0xe,0x4,0xb4,0x0,0x2,0x0,0xac,0x2,0x9d,0x0,0x2,0x0,0xaa,0x4,0x3b,0x0,0x2,0x0,0xab,0x2,0x9a,0x0,0x2,0x0,0xa8,0x4,0x39,0x0,0x2,0x0,0xad,0x2,0x9b,0x0,0x2,0x0,0xa9,0x0,0x2,0x0,0x11,0x0,0x25,0x0,0x29,0x0,0x0,0x0,0x2b,0x0,0x2d,0x0,0x5,0x0,0x2f,0x0,0x34,0x0,0x8,0x0,0x36,0x0,0x3b,0x0,0xe,0x0,0x3d,0x0,0x3e,0x0,0x14,0x0,0x45,0x0,0x49,0x0,0x16,0x0,0x4b,0x0,0x4d,0x0,0x1b,0x0,0x4f,0x0,0x54,0x0,0x1e,0x0,0x56,0x0,0x5b,0x0,0x24,0x0,0x5d,0x0,0x5e,0x0,0x2a,0x0,0x81,0x0,0x81,0x0,0x2c,0x0,0x83,0x0,0x83,0x0,0x2d,0x0,0x86,0x0,0x86,0x0,0x2e,0x0,0x89,0x0,0x89,0x0,0x2f,0x0,0x8d,0x0,0x8d,0x0,0x30,0x0,0x98,0x0,0x9b,0x0,0x31,0x0,0xd0,0x0,0xd0,0x0,0x35,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x82,0x0,0x6,0x2,0x7b,0x2,0x79,0x2,0x7c,0x2,0x7d,0x2,0x7a,0x5,0x28,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x0,0x68,0x0,0x64,0x0,0x3c,0x0,0x2c,0x0,0x7,0x0,0x0,0x0,0x1a,0x0,0x1a,0x0,0x1a,0x0,0x1a,0x0,0x1a,0x0,0x1a,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x2,0x0,0x2,0x0,0xa8,0x0,0xac,0x0,0x1,0x1,0x24,0x1,0x27,0x0,0x1,0x0,0x2,0x0,0x6,0x0,0x4d,0x0,0x4d,0x0,0x6,0x0,0x4e,0x0,0x4e,0x0,0x4,0x2,0xfc,0x2,0xfc,0x0,0x5,0x3,0xe9,0x3,0xe9,0x0,0x3,0x3,0xeb,0x3,0xeb,0x0,0x2,0x4,0x64,0x4,0x64,0x0,0x1,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x6,0x0,0x4d,0x0,0x4e,0x2,0xfc,0x3,0xe9,0x3,0xeb,0x4,0x64,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x1,0xdc,0x0,0xeb,0x2,0x8c,0x2,0x4d,0x2,0x4c,0x2,0x4b,0x2,0x4a,0x2,0x42,0x2,0x0,0x1,0xff,0x1,0xfe,0x1,0xfd,0x1,0xfc,0x1,0xfb,0x1,0xfa,0x1,0xf9,0x1,0xf8,0x1,0xf7,0x1,0xf6,0x1,0xf5,0x1,0xf4,0x1,0xf3,0x1,0xf2,0x1,0xf1,0x1,0xf0,0x1,0xef,0x1,0xee,0x1,0xed,0x1,0xec,0x2,0x7e,0x2,0x8e,0x3,0x4b,0x2,0x90,0x2,0x8f,0x3,0x4a,0x1,0xfd,0x2,0x8d,0x2,0x92,0x2,0x6c,0x4,0xed,0x4,0xee,0x2,0x4,0x2,0x5,0x4,0xef,0x4,0xf0,0x4,0xf1,0x2,0x6,0x4,0xf2,0x2,0x7,0x2,0x8,0x2,0x9,0x4,0xf7,0x2,0xa,0x2,0xa,0x4,0xf8,0x4,0xf9,0x2,0xb,0x2,0xc,0x2,0xd,0x2,0x14,0x5,0x6,0x5,0x7,0x2,0x15,0x2,0x16,0x2,0x17,0x2,0x18,0x2,0x19,0x2,0x1a,0x5,0xa,0x5,0xb,0x5,0xd,0x5,0x10,0x5,0x19,0x2,0x1c,0x2,0x1d,0x2,0x1e,0x2,0x1f,0x2,0x20,0x2,0x21,0x2,0x22,0x2,0x23,0x2,0x24,0x2,0x25,0x2,0xe,0x2,0xf,0x2,0x10,0x2,0x11,0x2,0x12,0x2,0x13,0x2,0x55,0x2,0x27,0x2,0x28,0x2,0x29,0x2,0x2a,0x5,0x13,0x2,0x2b,0x2,0x2d,0x2,0x2e,0x2,0x2f,0x2,0x31,0x2,0x33,0x2,0x91,0x3,0x4c,0x3,0x4d,0x3,0x4e,0x3,0x4f,0x3,0x50,0x3,0x51,0x3,0x52,0x3,0x53,0x3,0x54,0x3,0x55,0x3,0x56,0x3,0x57,0x3,0x58,0x3,0x59,0x3,0x5a,0x3,0x5b,0x3,0x5c,0x3,0x5d,0x3,0x5e,0x3,0x5f,0x3,0x60,0x3,0x61,0x3,0x62,0x3,0x63,0x3,0x64,0x3,0x65,0x3,0x66,0x3,0x67,0x3,0x9d,0x3,0x68,0x3,0x69,0x3,0x6a,0x3,0x6b,0x3,0x6c,0x3,0x6d,0x3,0x6e,0x3,0x6f,0x3,0x70,0x3,0x71,0x3,0x72,0x3,0x73,0x3,0x74,0x3,0x75,0x3,0x76,0x3,0x77,0x3,0x78,0x3,0x79,0x3,0x7a,0x3,0x7b,0x3,0x7c,0x3,0x7d,0x5,0x1a,0x3,0x7f,0x3,0x80,0x3,0x81,0x3,0x82,0x3,0x83,0x3,0x84,0x3,0x85,0x3,0x86,0x3,0x87,0x3,0x88,0x3,0x89,0x3,0x8a,0x3,0x8b,0x3,0x8c,0x3,0x8d,0x3,0x8e,0x3,0x8f,0x3,0x90,0x5,0x1d,0x3,0x91,0x3,0x92,0x3,0x94,0x3,0x93,0x3,0x95,0x3,0x96,0x3,0x97,0x3,0x98,0x3,0x99,0x3,0x9a,0x3,0x9b,0x3,0x9c,0x3,0x9e,0x3,0x9f,0x3,0xa0,0x5,0x1b,0x5,0x1c,0x4,0xe6,0x4,0xe7,0x4,0xe8,0x4,0xe9,0x4,0xf3,0x4,0xf6,0x4,0xf4,0x4,0xf5,0x4,0xfa,0x4,0xfb,0x4,0xfc,0x4,0xea,0x4,0xeb,0x4,0xec,0x5,0x5,0x5,0x8,0x5,0x9,0x5,0xc,0x5,0xe,0x5,0xf,0x2,0x1b,0x5,0x11,0x4,0xfd,0x4,0xfe,0x4,0xff,0x5,0x0,0x5,0x1,0x5,0x2,0x5,0x3,0x5,0x4,0x5,0x1e,0x5,0x1f,0x5,0x20,0x5,0x21,0x5,0x12,0x5,0x14,0x5,0x15,0x2,0x32,0x5,0x17,0x2,0x34,0x5,0x18,0x5,0x16,0x2,0x30,0x2,0x26,0x2,0x2c,0x5,0x26,0x5,0x27,0x0,0x1,0x0,0xeb,0x0,0xa,0x0,0x45,0x0,0x46,0x0,0x47,0x0,0x48,0x0,0x49,0x0,0x4a,0x0,0x4b,0x0,0x4c,0x0,0x4d,0x0,0x4e,0x0,0x4f,0x0,0x50,0x0,0x51,0x0,0x52,0x0,0x53,0x0,0x54,0x0,0x55,0x0,0x56,0x0,0x57,0x0,0x58,0x0,0x59,0x0,0x5a,0x0,0x5b,0x0,0x5c,0x0,0x5d,0x0,0x5e,0x0,0x85,0x0,0x86,0x0,0x87,0x0,0x89,0x0,0x8a,0x0,0x8b,0x0,0x8d,0x0,0x90,0x0,0x92,0x0,0x94,0x0,0xbb,0x0,0xbc,0x0,0xbd,0x0,0xbe,0x0,0xbf,0x0,0xc0,0x0,0xc1,0x0,0xc2,0x0,0xc3,0x0,0xc4,0x0,0xc5,0x0,0xc6,0x0,0xc7,0x0,0xc8,0x0,0xc9,0x0,0xca,0x0,0xcb,0x0,0xcc,0x0,0xcd,0x0,0xce,0x0,0xea,0x0,0xeb,0x0,0xec,0x0,0xed,0x0,0xee,0x0,0xef,0x0,0xf0,0x0,0xf1,0x0,0xf2,0x0,0xf3,0x0,0xf4,0x0,0xf5,0x0,0xf6,0x0,0xf7,0x0,0xf8,0x0,0xf9,0x0,0xfa,0x0,0xfb,0x0,0xfc,0x0,0xfd,0x0,0xfe,0x0,0xff,0x1,0x0,0x1,0x1,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x5,0x1,0x6,0x1,0x7,0x1,0x30,0x1,0x34,0x1,0x36,0x1,0x38,0x1,0x3a,0x1,0x3c,0x1,0x42,0x1,0x44,0x1,0x46,0x1,0x4a,0x1,0x4d,0x1,0x5a,0x2,0x97,0x2,0x99,0x2,0xb5,0x2,0xb6,0x2,0xb7,0x2,0xb8,0x2,0xb9,0x2,0xba,0x2,0xbb,0x2,0xbc,0x2,0xbd,0x2,0xbe,0x2,0xbf,0x2,0xc0,0x2,0xc1,0x2,0xc2,0x2,0xc3,0x2,0xc4,0x2,0xc5,0x2,0xc6,0x2,0xc7,0x2,0xc8,0x2,0xc9,0x2,0xca,0x2,0xcb,0x2,0xcc,0x2,0xcd,0x2,0xce,0x2,0xcf,0x2,0xd0,0x2,0xd2,0x2,0xd4,0x2,0xd6,0x2,0xd8,0x2,0xda,0x2,0xdc,0x2,0xde,0x2,0xe0,0x2,0xe2,0x2,0xe4,0x2,0xe6,0x2,0xe8,0x2,0xea,0x2,0xec,0x2,0xee,0x2,0xf0,0x2,0xf2,0x2,0xf4,0x2,0xf6,0x2,0xf8,0x2,0xfa,0x2,0xfc,0x2,0xff,0x3,0x1,0x3,0x3,0x3,0x5,0x3,0x7,0x3,0x9,0x3,0xb,0x3,0xd,0x3,0xf,0x3,0x11,0x3,0x14,0x3,0x16,0x3,0x18,0x3,0x1a,0x3,0x1c,0x3,0x1e,0x3,0x20,0x3,0x22,0x3,0x24,0x3,0x26,0x3,0x28,0x3,0x2a,0x3,0x2c,0x3,0x2e,0x3,0x30,0x3,0x32,0x3,0x34,0x3,0x36,0x3,0x38,0x3,0x3a,0x3,0x3c,0x3,0x3e,0x3,0x41,0x3,0x43,0x3,0x45,0x3,0x47,0x3,0x49,0x3,0xb9,0x3,0xba,0x3,0xbb,0x3,0xbc,0x3,0xbe,0x3,0xbf,0x3,0xc0,0x3,0xc1,0x3,0xc2,0x3,0xc3,0x3,0xc4,0x3,0xc5,0x3,0xc6,0x3,0xc7,0x3,0xde,0x3,0xdf,0x3,0xe0,0x3,0xe1,0x3,0xe2,0x3,0xe3,0x3,0xe4,0x3,0xe5,0x3,0xe6,0x3,0xe7,0x3,0xe8,0x3,0xe9,0x3,0xea,0x3,0xeb,0x3,0xec,0x3,0xed,0x3,0xef,0x3,0xf1,0x3,0xf3,0x3,0xf5,0x4,0xa,0x4,0xc,0x4,0xe,0x4,0x1c,0x4,0x23,0x4,0x29,0x4,0x2f,0x4,0x99,0x4,0x9a,0x4,0x9e,0x4,0xa2,0x5,0x23,0x5,0x25,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x2,0x1,0xfa,0x0,0xfa,0x2,0x1,0x2,0x8c,0x1,0xeb,0x1,0xea,0x1,0xe9,0x1,0xe8,0x1,0xe7,0x1,0xe6,0x1,0xe5,0x1,0xe4,0x1,0xe3,0x1,0xe2,0x2,0x4d,0x2,0x4c,0x2,0x4b,0x2,0x4a,0x2,0x42,0x2,0x0,0x1,0xff,0x1,0xfe,0x1,0xfd,0x1,0xfc,0x1,0xfb,0x1,0xfa,0x1,0xf9,0x1,0xf8,0x1,0xf7,0x1,0xf6,0x1,0xf5,0x1,0xf4,0x1,0xf3,0x1,0xf2,0x1,0xf1,0x1,0xf0,0x1,0xef,0x1,0xee,0x1,0xed,0x1,0xec,0x2,0x2,0x2,0x3,0x2,0x8e,0x2,0x90,0x2,0x8f,0x2,0x91,0x2,0x8d,0x2,0x92,0x2,0x6c,0x2,0x4,0x2,0x5,0x2,0x6,0x2,0x7,0x2,0x8,0x2,0x9,0x2,0xa,0x2,0xb,0x2,0xc,0x2,0xd,0x2,0xe,0x2,0xf,0x2,0x10,0x2,0x11,0x2,0x12,0x2,0x13,0x2,0x14,0x2,0x15,0x2,0x16,0x2,0x17,0x2,0x18,0x2,0x1a,0x2,0x1b,0x5,0x19,0x2,0x1c,0x2,0x1d,0x2,0x1e,0x2,0x1f,0x2,0x20,0x2,0x21,0x2,0x22,0x2,0x23,0x2,0x24,0x2,0x25,0x2,0x55,0x2,0x27,0x2,0x28,0x2,0x29,0x2,0x2a,0x5,0x13,0x2,0x2b,0x2,0x2d,0x2,0x2e,0x2,0x2f,0x2,0x30,0x2,0x31,0x2,0x32,0x2,0x33,0x2,0x35,0x2,0x36,0x2,0x38,0x2,0x37,0x3,0x4a,0x3,0x4b,0x3,0x4c,0x3,0x4d,0x3,0x4e,0x3,0x4f,0x3,0x50,0x3,0x51,0x3,0x52,0x3,0x53,0x3,0x54,0x3,0x55,0x3,0x56,0x3,0x57,0x3,0x58,0x3,0x59,0x3,0x5a,0x3,0x5b,0x3,0x5c,0x3,0x5d,0x3,0x5e,0x3,0x5f,0x3,0x60,0x3,0x61,0x3,0x62,0x3,0x63,0x3,0x64,0x3,0x65,0x3,0x66,0x3,0x67,0x3,0x68,0x3,0x69,0x3,0x6a,0x3,0x6b,0x3,0x6c,0x3,0x6d,0x3,0x6e,0x3,0x6f,0x3,0x70,0x3,0x71,0x3,0x72,0x3,0x73,0x3,0x74,0x3,0x75,0x3,0x76,0x3,0x77,0x3,0x78,0x3,0x79,0x3,0x7a,0x3,0x7b,0x3,0x7c,0x3,0x7d,0x3,0x7e,0x5,0x1a,0x3,0x7f,0x3,0x80,0x3,0x81,0x3,0x82,0x3,0x83,0x3,0x84,0x3,0x85,0x3,0x86,0x3,0x87,0x3,0x88,0x3,0x89,0x3,0x8a,0x3,0x8b,0x3,0x8c,0x3,0x8d,0x3,0x8e,0x3,0x8f,0x3,0x90,0x5,0x1d,0x3,0x91,0x3,0x92,0x3,0x94,0x3,0x93,0x3,0x95,0x3,0x96,0x3,0x97,0x3,0x98,0x3,0x99,0x3,0x9a,0x3,0x9b,0x3,0x9c,0x3,0x9d,0x3,0x9e,0x3,0x9f,0x3,0xa0,0x5,0x1b,0x5,0x1c,0x4,0xe6,0x4,0xe7,0x4,0xe8,0x4,0xe9,0x4,0xea,0x4,0xeb,0x4,0xec,0x4,0xed,0x4,0xee,0x4,0xef,0x4,0xf0,0x4,0xf1,0x4,0xf2,0x4,0xf3,0x4,0xf4,0x4,0xf5,0x4,0xf6,0x4,0xf7,0x4,0xf8,0x4,0xf9,0x4,0xfa,0x4,0xfb,0x4,0xfc,0x4,0xfd,0x4,0xfe,0x4,0xff,0x5,0x0,0x5,0x1,0x5,0x2,0x2,0x19,0x5,0x3,0x5,0x4,0x5,0x5,0x5,0x6,0x5,0x7,0x5,0x8,0x5,0x9,0x5,0xa,0x5,0xb,0x5,0xc,0x5,0xd,0x5,0xe,0x5,0xf,0x5,0x10,0x5,0x11,0x5,0x1e,0x5,0x1f,0x5,0x20,0x5,0x21,0x5,0x12,0x5,0x14,0x5,0x15,0x5,0x17,0x2,0x34,0x5,0x18,0x5,0x16,0x2,0x26,0x2,0x2c,0x5,0x26,0x5,0x27,0x0,0x1,0x0,0xfa,0x0,0x8,0x0,0xa,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x1b,0x0,0x1c,0x0,0x1d,0x0,0x25,0x0,0x26,0x0,0x27,0x0,0x28,0x0,0x29,0x0,0x2a,0x0,0x2b,0x0,0x2c,0x0,0x2d,0x0,0x2e,0x0,0x2f,0x0,0x30,0x0,0x31,0x0,0x32,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x36,0x0,0x37,0x0,0x38,0x0,0x39,0x0,0x3a,0x0,0x3b,0x0,0x3c,0x0,0x3d,0x0,0x3e,0x0,0x65,0x0,0x67,0x0,0x81,0x0,0x83,0x0,0x84,0x0,0x8c,0x0,0x8f,0x0,0x91,0x0,0x93,0x0,0xb1,0x0,0xb2,0x0,0xb3,0x0,0xb4,0x0,0xb5,0x0,0xb6,0x0,0xb7,0x0,0xb8,0x0,0xb9,0x0,0xba,0x0,0xd2,0x0,0xd3,0x0,0xd4,0x0,0xd5,0x0,0xd6,0x0,0xd7,0x0,0xd8,0x0,0xd9,0x0,0xda,0x0,0xdb,0x0,0xdc,0x0,0xdd,0x0,0xde,0x0,0xdf,0x0,0xe0,0x0,0xe1,0x0,0xe2,0x0,0xe3,0x0,0xe4,0x0,0xe5,0x0,0xe6,0x0,0xe7,0x0,0xe8,0x0,0xe9,0x1,0x2f,0x1,0x33,0x1,0x35,0x1,0x37,0x1,0x39,0x1,0x3b,0x1,0x41,0x1,0x43,0x1,0x45,0x1,0x49,0x1,0x4b,0x1,0x4c,0x1,0x58,0x1,0x59,0x1,0xb1,0x1,0xb7,0x1,0xbc,0x1,0xbf,0x2,0x95,0x2,0x96,0x2,0x98,0x2,0x9a,0x2,0x9b,0x2,0x9c,0x2,0x9d,0x2,0x9e,0x2,0x9f,0x2,0xa0,0x2,0xa1,0x2,0xa2,0x2,0xa3,0x2,0xa4,0x2,0xa5,0x2,0xa6,0x2,0xa7,0x2,0xa8,0x2,0xa9,0x2,0xaa,0x2,0xab,0x2,0xac,0x2,0xad,0x2,0xae,0x2,0xaf,0x2,0xb0,0x2,0xb1,0x2,0xb2,0x2,0xb3,0x2,0xb4,0x2,0xd1,0x2,0xd3,0x2,0xd5,0x2,0xd7,0x2,0xd9,0x2,0xdb,0x2,0xdd,0x2,0xdf,0x2,0xe1,0x2,0xe3,0x2,0xe5,0x2,0xe7,0x2,0xe9,0x2,0xeb,0x2,0xed,0x2,0xef,0x2,0xf1,0x2,0xf3,0x2,0xf5,0x2,0xf7,0x2,0xf9,0x2,0xfb,0x2,0xfd,0x2,0xfe,0x3,0x0,0x3,0x2,0x3,0x4,0x3,0x6,0x3,0x8,0x3,0xa,0x3,0xc,0x3,0xe,0x3,0x10,0x3,0x13,0x3,0x15,0x3,0x17,0x3,0x19,0x3,0x1b,0x3,0x1d,0x3,0x1f,0x3,0x21,0x3,0x23,0x3,0x25,0x3,0x27,0x3,0x29,0x3,0x2b,0x3,0x2d,0x3,0x2f,0x3,0x31,0x3,0x33,0x3,0x35,0x3,0x37,0x3,0x39,0x3,0x3b,0x3,0x3d,0x3,0x3f,0x3,0x40,0x3,0x42,0x3,0x44,0x3,0x46,0x3,0x48,0x3,0xa1,0x3,0xa2,0x3,0xa3,0x3,0xa4,0x3,0xa5,0x3,0xa6,0x3,0xa7,0x3,0xa9,0x3,0xaa,0x3,0xab,0x3,0xac,0x3,0xad,0x3,0xae,0x3,0xaf,0x3,0xb0,0x3,0xb1,0x3,0xb2,0x3,0xb3,0x3,0xb4,0x3,0xb5,0x3,0xb6,0x3,0xb7,0x3,0xb8,0x3,0xc8,0x3,0xc9,0x3,0xca,0x3,0xcb,0x3,0xcc,0x3,0xcd,0x3,0xce,0x3,0xcf,0x3,0xd0,0x3,0xd1,0x3,0xd2,0x3,0xd3,0x3,0xd4,0x3,0xd5,0x3,0xd6,0x3,0xd7,0x3,0xd8,0x3,0xd9,0x3,0xda,0x3,0xdb,0x3,0xdc,0x3,0xdd,0x3,0xee,0x3,0xf0,0x3,0xf2,0x3,0xf4,0x4,0x9,0x4,0xb,0x4,0xd,0x4,0x22,0x4,0x28,0x4,0x2e,0x4,0x98,0x4,0x9d,0x4,0xa1,0x5,0x22,0x5,0x24,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x0,0x5c,0x0,0xa0,0x0,0x4,0x44,0x46,0x4c,0x54,0x0,0x44,0x63,0x79,0x72,0x6c,0x0,0x36,0x67,0x72,0x65,0x6b,0x0,0x28,0x6c,0x61,0x74,0x6e,0x0,0x1a,0x0,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x5,0x63,0x70,0x73,0x70,0x0,0x3e,0x6b,0x65,0x72,0x6e,0x0,0x36,0x6b,0x65,0x72,0x6e,0x0,0x30,0x6b,0x65,0x72,0x6e,0x0,0x28,0x6b,0x65,0x72,0x6e,0x0,0x20,0x0,0x0,0x0,0x2,0x0,0x4,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x4,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x2,0x0,0x4,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x56,0x52,0x31,0xe,0x25,0xee,0x1,0x58,0x0,0xc,0x0,0x2,0x0,0x8,0x0,0x2,0x0,0xfc,0x0,0xa,0x0,0x2,0x0,0x38,0x0,0x4,0x0,0x0,0x0,0xc4,0x0,0x60,0x0,0x4,0x0,0x5,0x0,0x0,0xff,0xdb,0x0,0x0,0x0,0x0,0xff,0x88,0x0,0x0,0xfe,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x12,0x0,0x6,0x0,0xb,0x0,0x10,0x0,0x12,0x0,0x96,0x0,0xb2,0x1,0x84,0x1,0x85,0x1,0x86,0x1,0x87,0x1,0x88,0x1,0x89,0x1,0x8a,0x1,0x8e,0x1,0x8f,0x3,0xf6,0x3,0xf7,0x3,0xfa,0x0,0x2,0x0,0x10,0x0,0x6,0x0,0x6,0x0,0x1,0x0,0xb,0x0,0xb,0x0,0x1,0x0,0x10,0x0,0x10,0x0,0x2,0x0,0x11,0x0,0x11,0x0,0x3,0x0,0x12,0x0,0x12,0x0,0x2,0x0,0xb2,0x0,0xb2,0x0,0x4,0x1,0x81,0x1,0x82,0x0,0x3,0x1,0x84,0x1,0x85,0x0,0x1,0x1,0x86,0x1,0x86,0x0,0x2,0x1,0x87,0x1,0x89,0x0,0x1,0x1,0x8a,0x1,0x8a,0x0,0x2,0x1,0x8e,0x1,0x8f,0x0,0x2,0x2,0x94,0x2,0x94,0x0,0x3,0x3,0xf6,0x3,0xf7,0x0,0x1,0x3,0xfa,0x3,0xfa,0x0,0x1,0x4,0xa7,0x4,0xa7,0x0,0x3,0x0,0x2,0x0,0x7,0x0,0x10,0x0,0x10,0x0,0x1,0x0,0x12,0x0,0x12,0x0,0x1,0x0,0x96,0x0,0x96,0x0,0x2,0x0,0xb2,0x0,0xb2,0x0,0x3,0x1,0x86,0x1,0x86,0x0,0x1,0x1,0x8a,0x1,0x8a,0x0,0x1,0x1,0x8e,0x1,0x8f,0x0,0x1,0x0,0x1,0x0,0x10,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x4a,0x0,0x20,0x0,0x1a,0x0,0x1,0x0,0x3,0x0,0x13,0x0,0x9d,0x0,0xb2,0x0,0x1,0x0,0x23,0xff,0xaf,0x0,0xa,0x0,0x6,0x0,0x0,0x0,0xb,0x0,0x0,0x1,0x84,0x0,0x0,0x1,0x85,0x0,0x0,0x1,0x87,0x0,0x0,0x1,0x88,0x0,0x0,0x1,0x89,0x0,0x0,0x3,0xf6,0x0,0x0,0x3,0xf7,0x0,0x0,0x3,0xfa,0x0,0x0,0x0,0x1,0x0,0x13,0xff,0x8,0x0,0x2,0x0,0x8,0x0,0x2,0x17,0x4c,0x0,0xa,0x0,0x2,0x9,0x5c,0x0,0x4,0x0,0x0,0x11,0xb6,0xb,0x7c,0x0,0x23,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0xff,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x86,0xff,0xab,0xff,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0xff,0xf5,0xff,0xed,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0xff,0xf5,0xff,0xf4,0xff,0xef,0xff,0xd0,0xff,0xf1,0x0,0x0,0xff,0xce,0xff,0x88,0xff,0x6a,0x0,0x0,0x0,0x0,0xff,0xd9,0x0,0x0,0xff,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xff,0xc4,0xff,0xb3,0x0,0x0,0xff,0xdd,0xff,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf1,0xff,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xef,0xff,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf3,0xff,0xf2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf1,0xff,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xee,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0x0,0x0,0xff,0xd8,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf3,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc5,0xff,0x88,0xff,0xce,0x0,0x0,0x0,0x0,0xff,0xa5,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0xff,0xbf,0xff,0x6a,0xff,0xc1,0xff,0xcb,0xff,0xd9,0xff,0xbf,0xff,0xa0,0xff,0xd8,0x0,0x0,0xff,0xab,0xff,0xec,0x0,0x0,0x0,0x12,0xff,0xc6,0xff,0xf0,0x0,0x11,0xff,0x19,0x0,0x11,0x0,0x0,0xff,0x68,0x0,0x0,0xff,0xe2,0x0,0x0,0x0,0x12,0xff,0xa0,0xff,0xf3,0xff,0xf3,0x0,0xd,0xff,0xef,0xff,0xab,0xff,0x6a,0xff,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0,0x0,0x13,0x0,0x0,0xff,0xf2,0xff,0xf2,0x0,0x0,0xff,0xe8,0x0,0x0,0xff,0xee,0x0,0x13,0xff,0x85,0x0,0x0,0xfe,0xe9,0x0,0x0,0x0,0x0,0xff,0xa3,0x0,0x0,0xff,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb7,0xff,0x32,0x0,0x0,0xff,0xd7,0xff,0xbd,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x13,0x0,0x0,0x0,0x0,0xff,0xe4,0xff,0xa7,0xff,0x88,0xff,0x58,0xff,0xb9,0xff,0xbf,0xff,0x30,0x0,0x0,0xff,0xa7,0x0,0x0,0xff,0xaf,0xff,0xae,0x0,0x0,0x0,0x10,0xff,0xb4,0xff,0xf0,0x0,0xf,0xfe,0xfe,0x0,0x10,0x0,0x0,0xfe,0xf0,0xff,0xbc,0xff,0xc4,0x0,0x0,0x0,0x10,0xff,0x28,0xff,0xf1,0xff,0xf1,0x0,0x0,0xff,0xed,0xff,0xaf,0xff,0x88,0xff,0xb3,0x0,0x0,0x0,0x0,0xff,0xe1,0xff,0xd5,0xff,0xdf,0xff,0xe7,0xff,0xed,0xff,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x71,0x0,0xe,0x0,0x0,0xff,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xcb,0xff,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0xff,0xe2,0x0,0x0,0x0,0x0,0xff,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe6,0xff,0xeb,0x0,0xd,0x0,0x0,0xff,0xec,0xff,0xed,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xff,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb4,0x0,0x0,0x0,0x0,0xff,0xd5,0xff,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0xff,0xe6,0x0,0x0,0x0,0x0,0xff,0xe7,0xff,0xe9,0xff,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf3,0xff,0xd4,0xff,0xb5,0xff,0xd2,0xff,0xd9,0xff,0xe4,0xff,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb4,0xff,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x29,0x0,0x0,0x0,0x0,0xff,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb4,0xff,0xb5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf3,0xff,0x4e,0xff,0xf5,0x0,0x0,0x0,0x0,0xff,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x6c,0x0,0x0,0xff,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x48,0x0,0x0,0x0,0x0,0xff,0xcd,0x0,0x0,0xff,0x80,0xff,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe7,0xff,0xe6,0x0,0x0,0x0,0x0,0xff,0xe7,0xff,0xeb,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0x0,0x0,0xff,0xd8,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0xff,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x86,0xff,0xab,0xff,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0xff,0xf5,0xff,0xed,0xff,0xeb,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0xff,0xf5,0xff,0xf4,0xff,0xef,0xff,0xd0,0xff,0xf1,0x0,0x0,0xff,0xce,0x0,0x0,0xff,0x6a,0x0,0x0,0x0,0x0,0xff,0xd9,0x0,0x0,0xff,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xff,0xc4,0xff,0xb3,0x0,0x0,0xff,0xdd,0xff,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x5a,0x0,0x6,0x0,0x6,0x0,0x0,0x0,0xb,0x0,0xb,0x0,0x1,0x0,0x25,0x0,0x29,0x0,0x2,0x0,0x2c,0x0,0x34,0x0,0x7,0x0,0x38,0x0,0x3e,0x0,0x10,0x0,0x45,0x0,0x47,0x0,0x17,0x0,0x49,0x0,0x49,0x0,0x1a,0x0,0x4c,0x0,0x4c,0x0,0x1b,0x0,0x51,0x0,0x54,0x0,0x1c,0x0,0x56,0x0,0x56,0x0,0x20,0x0,0x5a,0x0,0x5a,0x0,0x21,0x0,0x5c,0x0,0x5e,0x0,0x22,0x0,0x8a,0x0,0x8a,0x0,0x25,0x0,0x96,0x0,0x96,0x0,0x26,0x0,0xb2,0x0,0xb2,0x0,0x27,0x1,0x84,0x1,0x85,0x0,0x28,0x1,0x87,0x1,0x89,0x0,0x2a,0x1,0xf2,0x1,0xf2,0x0,0x2d,0x1,0xf7,0x1,0xf7,0x0,0x2e,0x1,0xfa,0x1,0xfb,0x0,0x2f,0x2,0x5,0x2,0x5,0x0,0x31,0x2,0x4a,0x2,0x4a,0x0,0x32,0x2,0x4d,0x2,0x4d,0x0,0x33,0x2,0x5f,0x2,0x5f,0x0,0x34,0x2,0x61,0x2,0x62,0x0,0x35,0x2,0x95,0x2,0x96,0x0,0x37,0x2,0x98,0x2,0x98,0x0,0x39,0x2,0x9a,0x2,0xc0,0x0,0x3a,0x2,0xc5,0x2,0xca,0x0,0x61,0x2,0xcf,0x2,0xdf,0x0,0x67,0x2,0xe1,0x2,0xea,0x0,0x78,0x2,0xf3,0x2,0xf5,0x0,0x82,0x2,0xf7,0x2,0xf7,0x0,0x85,0x2,0xf9,0x2,0xf9,0x0,0x86,0x2,0xfb,0x2,0xfb,0x0,0x87,0x2,0xfd,0x2,0xfd,0x0,0x88,0x3,0x0,0x3,0x0,0x0,0x89,0x3,0x2,0x3,0x2,0x0,0x8a,0x3,0x4,0x3,0x4,0x0,0x8b,0x3,0x6,0x3,0x6,0x0,0x8c,0x3,0x8,0x3,0x8,0x0,0x8d,0x3,0xa,0x3,0xa,0x0,0x8e,0x3,0xc,0x3,0x18,0x0,0x8f,0x3,0x1a,0x3,0x1a,0x0,0x9c,0x3,0x1c,0x3,0x1c,0x0,0x9d,0x3,0x1e,0x3,0x1e,0x0,0x9e,0x3,0x29,0x3,0x29,0x0,0x9f,0x3,0x2b,0x3,0x2b,0x0,0xa0,0x3,0x2d,0x3,0x2d,0x0,0xa1,0x3,0x2f,0x3,0x2f,0x0,0xa2,0x3,0x31,0x3,0x31,0x0,0xa3,0x3,0x33,0x3,0x33,0x0,0xa4,0x3,0x35,0x3,0x35,0x0,0xa5,0x3,0x37,0x3,0x37,0x0,0xa6,0x3,0x39,0x3,0x39,0x0,0xa7,0x3,0x3b,0x3,0x3b,0x0,0xa8,0x3,0x3d,0x3,0x45,0x0,0xa9,0x3,0x4a,0x3,0x53,0x0,0xb2,0x3,0x5e,0x3,0x62,0x0,0xbc,0x3,0x68,0x3,0x6a,0x0,0xc1,0x3,0x6f,0x3,0x6f,0x0,0xc4,0x3,0x80,0x3,0x84,0x0,0xc5,0x3,0x88,0x3,0x8a,0x0,0xca,0x3,0x93,0x3,0x93,0x0,0xcd,0x3,0xee,0x3,0xee,0x0,0xce,0x3,0xf0,0x3,0xf0,0x0,0xcf,0x3,0xf2,0x3,0xf2,0x0,0xd0,0x3,0xf4,0x3,0xf7,0x0,0xd1,0x3,0xfa,0x3,0xfe,0x0,0xd5,0x4,0x39,0x4,0x61,0x0,0xda,0x4,0x63,0x4,0x63,0x1,0x3,0x4,0x65,0x4,0x72,0x1,0x4,0x4,0x7a,0x4,0x7a,0x1,0x12,0x4,0x7d,0x4,0x7d,0x1,0x13,0x4,0x7f,0x4,0x7f,0x1,0x14,0x4,0x8b,0x4,0x90,0x1,0x15,0x4,0xb2,0x4,0xb6,0x1,0x1b,0x4,0xb8,0x4,0xb8,0x1,0x20,0x4,0xba,0x4,0xbb,0x1,0x21,0x4,0xbd,0x4,0xbd,0x1,0x23,0x4,0xc1,0x4,0xc3,0x1,0x24,0x4,0xc5,0x4,0xc5,0x1,0x27,0x4,0xc7,0x4,0xc9,0x1,0x28,0x4,0xcb,0x4,0xcb,0x1,0x2b,0x4,0xcd,0x4,0xcd,0x1,0x2c,0x4,0xcf,0x4,0xd5,0x1,0x2d,0x4,0xd7,0x4,0xd7,0x1,0x34,0x4,0xda,0x4,0xda,0x1,0x35,0x4,0xdc,0x4,0xe1,0x1,0x36,0x4,0xe3,0x4,0xe4,0x1,0x3c,0x0,0x2,0x1,0x9,0x0,0x6,0x0,0x6,0x0,0xd,0x0,0xb,0x0,0xb,0x0,0xd,0x0,0x10,0x0,0x10,0x0,0x12,0x0,0x11,0x0,0x11,0x0,0x15,0x0,0x12,0x0,0x12,0x0,0x12,0x0,0x25,0x0,0x25,0x0,0x3,0x0,0x27,0x0,0x27,0x0,0x1,0x0,0x2b,0x0,0x2b,0x0,0x1,0x0,0x2e,0x0,0x2e,0x0,0x1a,0x0,0x33,0x0,0x33,0x0,0x1,0x0,0x35,0x0,0x35,0x0,0x1,0x0,0x37,0x0,0x37,0x0,0x10,0x0,0x38,0x0,0x38,0x0,0x13,0x0,0x39,0x0,0x39,0x0,0x8,0x0,0x3a,0x0,0x3a,0x0,0x19,0x0,0x3b,0x0,0x3b,0x0,0x11,0x0,0x3c,0x0,0x3c,0x0,0x1d,0x0,0x3d,0x0,0x3d,0x0,0xe,0x0,0x3e,0x0,0x3e,0x0,0x14,0x0,0x45,0x0,0x45,0x0,0x4,0x0,0x47,0x0,0x49,0x0,0x2,0x0,0x4b,0x0,0x4b,0x0,0x2,0x0,0x51,0x0,0x52,0x0,0x9,0x0,0x53,0x0,0x53,0x0,0x7,0x0,0x54,0x0,0x54,0x0,0x9,0x0,0x55,0x0,0x55,0x0,0x2,0x0,0x57,0x0,0x57,0x0,0xf,0x0,0x59,0x0,0x59,0x0,0x6,0x0,0x5a,0x0,0x5a,0x0,0xc,0x0,0x5c,0x0,0x5c,0x0,0x21,0x0,0x5d,0x0,0x5d,0x0,0xc,0x0,0x5e,0x0,0x5e,0x0,0x17,0x0,0x83,0x0,0x83,0x0,0x1,0x0,0x93,0x0,0x93,0x0,0x1,0x0,0x94,0x0,0x94,0x0,0x2,0x0,0x98,0x0,0x98,0x0,0x1,0x0,0x99,0x0,0x99,0x0,0x2,0x0,0x9b,0x0,0x9b,0x0,0x6,0x0,0xb2,0x0,0xb2,0x0,0x20,0x1,0x81,0x1,0x82,0x0,0x15,0x1,0x84,0x1,0x85,0x0,0xd,0x1,0x86,0x1,0x86,0x0,0x12,0x1,0x87,0x1,0x89,0x0,0xd,0x1,0x8a,0x1,0x8a,0x0,0x12,0x1,0x8e,0x1,0x8f,0x0,0x12,0x1,0xdb,0x1,0xdb,0x0,0xf,0x1,0xed,0x1,0xed,0x0,0x18,0x1,0xee,0x1,0xee,0x0,0x1e,0x1,0xef,0x1,0xef,0x0,0x1b,0x1,0xf1,0x1,0xf1,0x0,0xa,0x1,0xf2,0x1,0xf2,0x0,0x1c,0x1,0xf3,0x1,0xf3,0x0,0x16,0x1,0xf5,0x1,0xf5,0x0,0x5,0x1,0xf7,0x1,0xf7,0x0,0x5,0x1,0xff,0x1,0xff,0x0,0x5,0x2,0x5,0x2,0x5,0x0,0x1f,0x2,0x4b,0x2,0x4b,0x0,0x5,0x2,0x4d,0x2,0x4d,0x0,0xb,0x2,0x5f,0x2,0x60,0x0,0x1,0x2,0x62,0x2,0x63,0x0,0x1,0x2,0x94,0x2,0x94,0x0,0x15,0x2,0x9a,0x2,0xa0,0x0,0x3,0x2,0xa1,0x2,0xa1,0x0,0x1,0x2,0xab,0x2,0xaf,0x0,0x1,0x2,0xb0,0x2,0xb3,0x0,0x8,0x2,0xb4,0x2,0xb4,0x0,0xe,0x2,0xb5,0x2,0xbb,0x0,0x4,0x2,0xbc,0x2,0xc0,0x0,0x2,0x2,0xc5,0x2,0xc5,0x0,0x9,0x2,0xc6,0x2,0xca,0x0,0x7,0x2,0xcb,0x2,0xce,0x0,0x6,0x2,0xcf,0x2,0xd0,0x0,0xc,0x2,0xd1,0x2,0xd1,0x0,0x3,0x2,0xd2,0x2,0xd2,0x0,0x4,0x2,0xd3,0x2,0xd3,0x0,0x3,0x2,0xd4,0x2,0xd4,0x0,0x4,0x2,0xd5,0x2,0xd5,0x0,0x3,0x2,0xd6,0x2,0xd6,0x0,0x4,0x2,0xd7,0x2,0xd7,0x0,0x1,0x2,0xd8,0x2,0xd8,0x0,0x2,0x2,0xd9,0x2,0xd9,0x0,0x1,0x2,0xda,0x2,0xda,0x0,0x2,0x2,0xdb,0x2,0xdb,0x0,0x1,0x2,0xdc,0x2,0xdc,0x0,0x2,0x2,0xdd,0x2,0xdd,0x0,0x1,0x2,0xde,0x2,0xde,0x0,0x2,0x2,0xe0,0x2,0xe0,0x0,0x2,0x2,0xe2,0x2,0xe2,0x0,0x2,0x2,0xe4,0x2,0xe4,0x0,0x2,0x2,0xe6,0x2,0xe6,0x0,0x2,0x2,0xe8,0x2,0xe8,0x0,0x2,0x2,0xea,0x2,0xea,0x0,0x2,0x2,0xeb,0x2,0xeb,0x0,0x1,0x2,0xec,0x2,0xec,0x0,0x2,0x2,0xed,0x2,0xed,0x0,0x1,0x2,0xee,0x2,0xee,0x0,0x2,0x2,0xef,0x2,0xef,0x0,0x1,0x2,0xf0,0x2,0xf0,0x0,0x2,0x2,0xf1,0x2,0xf1,0x0,0x1,0x2,0xf2,0x2,0xf2,0x0,0x2,0x3,0x0,0x3,0x0,0x0,0x1a,0x3,0xd,0x3,0xd,0x0,0x9,0x3,0xf,0x3,0xf,0x0,0x9,0x3,0x11,0x3,0x12,0x0,0x9,0x3,0x13,0x3,0x13,0x0,0x1,0x3,0x14,0x3,0x14,0x0,0x7,0x3,0x15,0x3,0x15,0x0,0x1,0x3,0x16,0x3,0x16,0x0,0x7,0x3,0x17,0x3,0x17,0x0,0x1,0x3,0x18,0x3,0x18,0x0,0x7,0x3,0x1f,0x3,0x1f,0x0,0x10,0x3,0x20,0x3,0x20,0x0,0xf,0x3,0x21,0x3,0x21,0x0,0x10,0x3,0x22,0x3,0x22,0x0,0xf,0x3,0x23,0x3,0x23,0x0,0x10,0x3,0x24,0x3,0x24,0x0,0xf,0x3,0x25,0x3,0x25,0x0,0x10,0x3,0x26,0x3,0x26,0x0,0xf,0x3,0x27,0x3,0x27,0x0,0x10,0x3,0x28,0x3,0x28,0x0,0xf,0x3,0x29,0x3,0x29,0x0,0x13,0x3,0x2b,0x3,0x2b,0x0,0x13,0x3,0x2d,0x3,0x2d,0x0,0x13,0x3,0x2f,0x3,0x2f,0x0,0x8,0x3,0x30,0x3,0x30,0x0,0x6,0x3,0x31,0x3,0x31,0x0,0x8,0x3,0x32,0x3,0x32,0x0,0x6,0x3,0x33,0x3,0x33,0x0,0x8,0x3,0x34,0x3,0x34,0x0,0x6,0x3,0x35,0x3,0x35,0x0,0x8,0x3,0x36,0x3,0x36,0x0,0x6,0x3,0x37,0x3,0x37,0x0,0x8,0x3,0x38,0x3,0x38,0x0,0x6,0x3,0x39,0x3,0x39,0x0,0x8,0x3,0x3a,0x3,0x3a,0x0,0x6,0x3,0x3b,0x3,0x3b,0x0,0x11,0x3,0x3d,0x3,0x3d,0x0,0xe,0x3,0x3e,0x3,0x3e,0x0,0xc,0x3,0x3f,0x3,0x3f,0x0,0xe,0x3,0x40,0x3,0x40,0x0,0x14,0x3,0x41,0x3,0x41,0x0,0x17,0x3,0x42,0x3,0x42,0x0,0x14,0x3,0x43,0x3,0x43,0x0,0x17,0x3,0x44,0x3,0x44,0x0,0x14,0x3,0x45,0x3,0x45,0x0,0x17,0x3,0x48,0x3,0x48,0x0,0x1,0x3,0x4d,0x3,0x53,0x0,0xb,0x3,0x54,0x3,0x54,0x0,0x5,0x3,0x5e,0x3,0x62,0x0,0x5,0x3,0x63,0x3,0x66,0x0,0xa,0x3,0x67,0x3,0x67,0x0,0x18,0x3,0x68,0x3,0x6a,0x0,0xb,0x3,0x6b,0x3,0x6e,0x0,0x5,0x3,0x75,0x3,0x78,0x0,0x5,0x3,0x88,0x3,0x8a,0x0,0x5,0x3,0x8e,0x3,0x91,0x0,0x16,0x3,0x93,0x3,0x93,0x0,0x1c,0x3,0x95,0x3,0x9a,0x0,0xa,0x3,0x9b,0x3,0x9b,0x0,0x1b,0x3,0x9c,0x3,0x9d,0x0,0x18,0x3,0xee,0x3,0xee,0x0,0x11,0x3,0xf0,0x3,0xf0,0x0,0x11,0x3,0xf2,0x3,0xf2,0x0,0x11,0x3,0xf4,0x3,0xf4,0x0,0xe,0x3,0xf5,0x3,0xf5,0x0,0xc,0x3,0xf6,0x3,0xf7,0x0,0xd,0x3,0xfa,0x3,0xfa,0x0,0xd,0x3,0xfc,0x3,0xfc,0x0,0x9,0x3,0xfd,0x3,0xfd,0x0,0x3,0x3,0xfe,0x3,0xfe,0x0,0x4,0x4,0x39,0x4,0x39,0x0,0x3,0x4,0x3a,0x4,0x3a,0x0,0x4,0x4,0x3b,0x4,0x3b,0x0,0x3,0x4,0x3c,0x4,0x3c,0x0,0x4,0x4,0x3d,0x4,0x3d,0x0,0x3,0x4,0x3e,0x4,0x3e,0x0,0x4,0x4,0x3f,0x4,0x3f,0x0,0x3,0x4,0x40,0x4,0x40,0x0,0x4,0x4,0x41,0x4,0x41,0x0,0x3,0x4,0x42,0x4,0x42,0x0,0x4,0x4,0x43,0x4,0x43,0x0,0x3,0x4,0x44,0x4,0x44,0x0,0x4,0x4,0x45,0x4,0x45,0x0,0x3,0x4,0x46,0x4,0x46,0x0,0x4,0x4,0x47,0x4,0x47,0x0,0x3,0x4,0x48,0x4,0x48,0x0,0x4,0x4,0x49,0x4,0x49,0x0,0x3,0x4,0x4a,0x4,0x4a,0x0,0x4,0x4,0x4b,0x4,0x4b,0x0,0x3,0x4,0x4c,0x4,0x4c,0x0,0x4,0x4,0x4d,0x4,0x4d,0x0,0x3,0x4,0x4e,0x4,0x4e,0x0,0x4,0x4,0x4f,0x4,0x4f,0x0,0x3,0x4,0x50,0x4,0x50,0x0,0x4,0x4,0x52,0x4,0x52,0x0,0x2,0x4,0x54,0x4,0x54,0x0,0x2,0x4,0x56,0x4,0x56,0x0,0x2,0x4,0x58,0x4,0x58,0x0,0x2,0x4,0x5a,0x4,0x5a,0x0,0x2,0x4,0x5c,0x4,0x5c,0x0,0x2,0x4,0x5e,0x4,0x5e,0x0,0x2,0x4,0x60,0x4,0x60,0x0,0x2,0x4,0x65,0x4,0x65,0x0,0x1,0x4,0x66,0x4,0x66,0x0,0x7,0x4,0x67,0x4,0x67,0x0,0x1,0x4,0x68,0x4,0x68,0x0,0x7,0x4,0x69,0x4,0x69,0x0,0x1,0x4,0x6a,0x4,0x6a,0x0,0x7,0x4,0x6b,0x4,0x6b,0x0,0x1,0x4,0x6c,0x4,0x6c,0x0,0x7,0x4,0x6d,0x4,0x6d,0x0,0x1,0x4,0x6e,0x4,0x6e,0x0,0x7,0x4,0x6f,0x4,0x6f,0x0,0x1,0x4,0x70,0x4,0x70,0x0,0x7,0x4,0x71,0x4,0x71,0x0,0x1,0x4,0x72,0x4,0x72,0x0,0x7,0x4,0x73,0x4,0x73,0x0,0x1,0x4,0x74,0x4,0x74,0x0,0x2,0x4,0x75,0x4,0x75,0x0,0x1,0x4,0x76,0x4,0x76,0x0,0x2,0x4,0x77,0x4,0x77,0x0,0x1,0x4,0x78,0x4,0x78,0x0,0x2,0x4,0x79,0x4,0x79,0x0,0x1,0x4,0x7a,0x4,0x7a,0x0,0x7,0x4,0x7b,0x4,0x7b,0x0,0x1,0x4,0x7c,0x4,0x7c,0x0,0x2,0x4,0x7d,0x4,0x7d,0x0,0x8,0x4,0x7e,0x4,0x7e,0x0,0x6,0x4,0x7f,0x4,0x7f,0x0,0x8,0x4,0x80,0x4,0x80,0x0,0x6,0x4,0x82,0x4,0x82,0x0,0x6,0x4,0x84,0x4,0x84,0x0,0x6,0x4,0x86,0x4,0x86,0x0,0x6,0x4,0x88,0x4,0x88,0x0,0x6,0x4,0x8a,0x4,0x8a,0x0,0x6,0x4,0x8b,0x4,0x8b,0x0,0xe,0x4,0x8c,0x4,0x8c,0x0,0xc,0x4,0x8d,0x4,0x8d,0x0,0xe,0x4,0x8e,0x4,0x8e,0x0,0xc,0x4,0x8f,0x4,0x8f,0x0,0xe,0x4,0x90,0x4,0x90,0x0,0xc,0x4,0xa7,0x4,0xa7,0x0,0x15,0x4,0xb3,0x4,0xb3,0x0,0x9,0x4,0xb4,0x4,0xb4,0x0,0x3,0x4,0xb5,0x4,0xb5,0x0,0x4,0x4,0xb7,0x4,0xb7,0x0,0x2,0x4,0xba,0x4,0xba,0x0,0x1,0x4,0xbb,0x4,0xbb,0x0,0x7,0x4,0xbf,0x4,0xbf,0x0,0x6,0x4,0xc4,0x4,0xc4,0x0,0x2,0x4,0xc6,0x4,0xc6,0x0,0x2,0x4,0xd0,0x4,0xd0,0x0,0x9,0x4,0xd2,0x4,0xd2,0x0,0x9,0x4,0xd3,0x4,0xd3,0x0,0x1,0x4,0xd8,0x4,0xd8,0x0,0x10,0x4,0xd9,0x4,0xd9,0x0,0xf,0x4,0xda,0x4,0xda,0x0,0x13,0x4,0xdc,0x4,0xdc,0x0,0x8,0x4,0xdd,0x4,0xdd,0x0,0x19,0x4,0xde,0x4,0xde,0x0,0xc,0x4,0xdf,0x4,0xdf,0x0,0x19,0x4,0xe0,0x4,0xe0,0x0,0xc,0x4,0xe1,0x4,0xe1,0x0,0x11,0x4,0xe3,0x4,0xe3,0x0,0x14,0x4,0xe4,0x4,0xe4,0x0,0x17,0x0,0x2,0x0,0xec,0x0,0x6,0x0,0x6,0x0,0xc,0x0,0xb,0x0,0xb,0x0,0xc,0x0,0x25,0x0,0x25,0x0,0x2,0x0,0x26,0x0,0x26,0x0,0x1b,0x0,0x27,0x0,0x27,0x0,0xe,0x0,0x29,0x0,0x29,0x0,0x4,0x0,0x2c,0x0,0x2d,0x0,0x1,0x0,0x2e,0x0,0x2e,0x0,0x7,0x0,0x2f,0x0,0x2f,0x0,0x18,0x0,0x30,0x0,0x30,0x0,0xf,0x0,0x31,0x0,0x32,0x0,0x1,0x0,0x34,0x0,0x34,0x0,0x1c,0x0,0x38,0x0,0x38,0x0,0x10,0x0,0x39,0x0,0x39,0x0,0x7,0x0,0x3a,0x0,0x3a,0x0,0x19,0x0,0x3b,0x0,0x3b,0x0,0x11,0x0,0x3c,0x0,0x3c,0x0,0x1e,0x0,0x3d,0x0,0x3d,0x0,0xd,0x0,0x3e,0x0,0x3e,0x0,0x14,0x0,0x45,0x0,0x45,0x0,0x3,0x0,0x46,0x0,0x46,0x0,0x15,0x0,0x47,0x0,0x47,0x0,0x12,0x0,0x49,0x0,0x49,0x0,0x5,0x0,0x4c,0x0,0x4c,0x0,0x8,0x0,0x51,0x0,0x52,0x0,0x8,0x0,0x53,0x0,0x53,0x0,0x6,0x0,0x54,0x0,0x54,0x0,0x15,0x0,0x56,0x0,0x56,0x0,0x13,0x0,0x5a,0x0,0x5a,0x0,0xb,0x0,0x5c,0x0,0x5c,0x0,0x22,0x0,0x5d,0x0,0x5d,0x0,0xb,0x0,0x5e,0x0,0x5e,0x0,0x17,0x0,0x8a,0x0,0x8a,0x0,0x15,0x0,0x96,0x0,0x96,0x0,0x20,0x0,0xb2,0x0,0xb2,0x0,0x21,0x1,0x84,0x1,0x85,0x0,0xc,0x1,0x87,0x1,0x89,0x0,0xc,0x1,0xf2,0x1,0xf2,0x0,0x1a,0x1,0xf7,0x1,0xf7,0x0,0x9,0x1,0xfa,0x1,0xfa,0x0,0x16,0x1,0xfb,0x1,0xfb,0x0,0x1d,0x2,0x5,0x2,0x5,0x0,0x1f,0x2,0x4a,0x2,0x4a,0x0,0x9,0x2,0x4d,0x2,0x4d,0x0,0xa,0x2,0x5f,0x2,0x5f,0x0,0xe,0x2,0x98,0x2,0x98,0x0,0x10,0x2,0x9a,0x2,0xa0,0x0,0x2,0x2,0xa1,0x2,0xa1,0x0,0xe,0x2,0xa2,0x2,0xa5,0x0,0x4,0x2,0xa6,0x2,0xaa,0x0,0x1,0x2,0xb0,0x2,0xb3,0x0,0x7,0x2,0xb4,0x2,0xb4,0x0,0xd,0x2,0xb5,0x2,0xbb,0x0,0x3,0x2,0xbc,0x2,0xbc,0x0,0x12,0x2,0xbd,0x2,0xc0,0x0,0x5,0x2,0xc5,0x2,0xc5,0x0,0x8,0x2,0xc6,0x2,0xca,0x0,0x6,0x2,0xcf,0x2,0xd0,0x0,0xb,0x2,0xd1,0x2,0xd1,0x0,0x2,0x2,0xd2,0x2,0xd2,0x0,0x3,0x2,0xd3,0x2,0xd3,0x0,0x2,0x2,0xd4,0x2,0xd4,0x0,0x3,0x2,0xd5,0x2,0xd5,0x0,0x2,0x2,0xd6,0x2,0xd6,0x0,0x3,0x2,0xd7,0x2,0xd7,0x0,0xe,0x2,0xd8,0x2,0xd8,0x0,0x12,0x2,0xd9,0x2,0xd9,0x0,0xe,0x2,0xda,0x2,0xda,0x0,0x12,0x2,0xdb,0x2,0xdb,0x0,0xe,0x2,0xdc,0x2,0xdc,0x0,0x12,0x2,0xdd,0x2,0xdd,0x0,0xe,0x2,0xde,0x2,0xde,0x0,0x12,0x2,0xe1,0x2,0xe1,0x0,0x4,0x2,0xe2,0x2,0xe2,0x0,0x5,0x2,0xe3,0x2,0xe3,0x0,0x4,0x2,0xe4,0x2,0xe4,0x0,0x5,0x2,0xe5,0x2,0xe5,0x0,0x4,0x2,0xe6,0x2,0xe6,0x0,0x5,0x2,0xe7,0x2,0xe7,0x0,0x4,0x2,0xe8,0x2,0xe8,0x0,0x5,0x2,0xe9,0x2,0xe9,0x0,0x4,0x2,0xea,0x2,0xea,0x0,0x5,0x2,0xf3,0x2,0xf3,0x0,0x1,0x2,0xf4,0x2,0xf4,0x0,0x8,0x2,0xf5,0x2,0xf5,0x0,0x1,0x2,0xf7,0x2,0xf7,0x0,0x1,0x2,0xf9,0x2,0xf9,0x0,0x1,0x2,0xfb,0x2,0xfb,0x0,0x1,0x2,0xfd,0x2,0xfd,0x0,0x1,0x3,0x0,0x3,0x0,0x0,0x7,0x3,0x2,0x3,0x2,0x0,0x18,0x3,0x4,0x3,0x4,0x0,0xf,0x3,0x6,0x3,0x6,0x0,0xf,0x3,0x8,0x3,0x8,0x0,0xf,0x3,0xa,0x3,0xa,0x0,0xf,0x3,0xc,0x3,0xc,0x0,0x1,0x3,0xd,0x3,0xd,0x0,0x8,0x3,0xe,0x3,0xe,0x0,0x1,0x3,0xf,0x3,0xf,0x0,0x8,0x3,0x10,0x3,0x10,0x0,0x1,0x3,0x11,0x3,0x12,0x0,0x8,0x3,0x14,0x3,0x14,0x0,0x6,0x3,0x16,0x3,0x16,0x0,0x6,0x3,0x18,0x3,0x18,0x0,0x6,0x3,0x1a,0x3,0x1a,0x0,0x13,0x3,0x1c,0x3,0x1c,0x0,0x13,0x3,0x1e,0x3,0x1e,0x0,0x13,0x3,0x29,0x3,0x29,0x0,0x10,0x3,0x2b,0x3,0x2b,0x0,0x10,0x3,0x2d,0x3,0x2d,0x0,0x10,0x3,0x2f,0x3,0x2f,0x0,0x7,0x3,0x31,0x3,0x31,0x0,0x7,0x3,0x33,0x3,0x33,0x0,0x7,0x3,0x35,0x3,0x35,0x0,0x7,0x3,0x37,0x3,0x37,0x0,0x7,0x3,0x39,0x3,0x39,0x0,0x7,0x3,0x3b,0x3,0x3b,0x0,0x11,0x3,0x3d,0x3,0x3d,0x0,0xd,0x3,0x3e,0x3,0x3e,0x0,0xb,0x3,0x3f,0x3,0x3f,0x0,0xd,0x3,0x40,0x3,0x40,0x0,0x14,0x3,0x41,0x3,0x41,0x0,0x17,0x3,0x42,0x3,0x42,0x0,0x14,0x3,0x43,0x3,0x43,0x0,0x17,0x3,0x44,0x3,0x44,0x0,0x14,0x3,0x45,0x3,0x45,0x0,0x17,0x3,0x4a,0x3,0x4b,0x0,0x9,0x3,0x4c,0x3,0x4c,0x0,0x1a,0x3,0x4d,0x3,0x53,0x0,0xa,0x3,0x5e,0x3,0x62,0x0,0x9,0x3,0x68,0x3,0x6a,0x0,0xa,0x3,0x6f,0x3,0x6f,0x0,0x9,0x3,0x80,0x3,0x80,0x0,0x1d,0x3,0x81,0x3,0x84,0x0,0x16,0x3,0x88,0x3,0x8a,0x0,0x9,0x3,0x93,0x3,0x93,0x0,0x1a,0x3,0xee,0x3,0xee,0x0,0x11,0x3,0xf0,0x3,0xf0,0x0,0x11,0x3,0xf2,0x3,0xf2,0x0,0x11,0x3,0xf4,0x3,0xf4,0x0,0xd,0x3,0xf5,0x3,0xf5,0x0,0xb,0x3,0xf6,0x3,0xf7,0x0,0xc,0x3,0xfa,0x3,0xfa,0x0,0xc,0x3,0xfb,0x3,0xfb,0x0,0x1,0x3,0xfc,0x3,0xfc,0x0,0x8,0x3,0xfd,0x3,0xfd,0x0,0x2,0x3,0xfe,0x3,0xfe,0x0,0x3,0x4,0x39,0x4,0x39,0x0,0x2,0x4,0x3a,0x4,0x3a,0x0,0x3,0x4,0x3b,0x4,0x3b,0x0,0x2,0x4,0x3c,0x4,0x3c,0x0,0x3,0x4,0x3d,0x4,0x3d,0x0,0x2,0x4,0x3e,0x4,0x3e,0x0,0x3,0x4,0x3f,0x4,0x3f,0x0,0x2,0x4,0x40,0x4,0x40,0x0,0x3,0x4,0x41,0x4,0x41,0x0,0x2,0x4,0x42,0x4,0x42,0x0,0x3,0x4,0x43,0x4,0x43,0x0,0x2,0x4,0x44,0x4,0x44,0x0,0x3,0x4,0x45,0x4,0x45,0x0,0x2,0x4,0x46,0x4,0x46,0x0,0x3,0x4,0x47,0x4,0x47,0x0,0x2,0x4,0x48,0x4,0x48,0x0,0x3,0x4,0x49,0x4,0x49,0x0,0x2,0x4,0x4a,0x4,0x4a,0x0,0x3,0x4,0x4b,0x4,0x4b,0x0,0x2,0x4,0x4c,0x4,0x4c,0x0,0x3,0x4,0x4d,0x4,0x4d,0x0,0x2,0x4,0x4e,0x4,0x4e,0x0,0x3,0x4,0x4f,0x4,0x4f,0x0,0x2,0x4,0x50,0x4,0x50,0x0,0x3,0x4,0x51,0x4,0x51,0x0,0x4,0x4,0x52,0x4,0x52,0x0,0x5,0x4,0x53,0x4,0x53,0x0,0x4,0x4,0x54,0x4,0x54,0x0,0x5,0x4,0x55,0x4,0x55,0x0,0x4,0x4,0x56,0x4,0x56,0x0,0x5,0x4,0x57,0x4,0x57,0x0,0x4,0x4,0x58,0x4,0x58,0x0,0x5,0x4,0x59,0x4,0x59,0x0,0x4,0x4,0x5a,0x4,0x5a,0x0,0x5,0x4,0x5b,0x4,0x5b,0x0,0x4,0x4,0x5c,0x4,0x5c,0x0,0x5,0x4,0x5d,0x4,0x5d,0x0,0x4,0x4,0x5e,0x4,0x5e,0x0,0x5,0x4,0x5f,0x4,0x5f,0x0,0x4,0x4,0x60,0x4,0x60,0x0,0x5,0x4,0x61,0x4,0x61,0x0,0x1,0x4,0x63,0x4,0x63,0x0,0x1,0x4,0x66,0x4,0x66,0x0,0x6,0x4,0x68,0x4,0x68,0x0,0x6,0x4,0x6a,0x4,0x6a,0x0,0x6,0x4,0x6c,0x4,0x6c,0x0,0x6,0x4,0x6e,0x4,0x6e,0x0,0x6,0x4,0x70,0x4,0x70,0x0,0x6,0x4,0x72,0x4,0x72,0x0,0x6,0x4,0x7a,0x4,0x7a,0x0,0x6,0x4,0x7d,0x4,0x7d,0x0,0x7,0x4,0x7f,0x4,0x7f,0x0,0x7,0x4,0x8b,0x4,0x8b,0x0,0xd,0x4,0x8c,0x4,0x8c,0x0,0xb,0x4,0x8d,0x4,0x8d,0x0,0xd,0x4,0x8e,0x4,0x8e,0x0,0xb,0x4,0x8f,0x4,0x8f,0x0,0xd,0x4,0x90,0x4,0x90,0x0,0xb,0x4,0xb2,0x4,0xb2,0x0,0x1,0x4,0xb3,0x4,0xb3,0x0,0x8,0x4,0xb4,0x4,0xb4,0x0,0x2,0x4,0xb5,0x4,0xb5,0x0,0x3,0x4,0xb6,0x4,0xb6,0x0,0x4,0x4,0xb8,0x4,0xb8,0x0,0x1,0x4,0xbb,0x4,0xbb,0x0,0x6,0x4,0xbd,0x4,0xbd,0x0,0x13,0x4,0xc1,0x4,0xc1,0x0,0x1b,0x4,0xc2,0x4,0xc2,0x0,0x15,0x4,0xc7,0x4,0xc7,0x0,0x1,0x4,0xc8,0x4,0xc8,0x0,0x8,0x4,0xc9,0x4,0xc9,0x0,0x18,0x4,0xcb,0x4,0xcb,0x0,0x18,0x4,0xcd,0x4,0xcd,0x0,0xf,0x4,0xcf,0x4,0xcf,0x0,0x1,0x4,0xd0,0x4,0xd0,0x0,0x8,0x4,0xd1,0x4,0xd1,0x0,0x1,0x4,0xd2,0x4,0xd2,0x0,0x8,0x4,0xd4,0x4,0xd4,0x0,0x1c,0x4,0xd5,0x4,0xd5,0x0,0x15,0x4,0xd7,0x4,0xd7,0x0,0x13,0x4,0xda,0x4,0xda,0x0,0x10,0x4,0xdc,0x4,0xdc,0x0,0x7,0x4,0xdd,0x4,0xdd,0x0,0x19,0x4,0xde,0x4,0xde,0x0,0xb,0x4,0xdf,0x4,0xdf,0x0,0x19,0x4,0xe0,0x4,0xe0,0x0,0xb,0x4,0xe1,0x4,0xe1,0x0,0x11,0x4,0xe3,0x4,0xe3,0x0,0x14,0x4,0xe4,0x4,0xe4,0x0,0x17,0x0,0x1,0x1,0xf2,0x0,0x4,0x0,0x0,0x0,0xf4,0xd,0x34,0xd,0x2e,0xd,0x2e,0xc,0xe8,0xc,0xd2,0xc,0xc4,0xc,0xbe,0xc,0xb0,0xa,0x12,0xa,0x4,0x9,0xee,0xc,0xbe,0x9,0xe4,0x9,0x5a,0x9,0x18,0x8,0xf6,0x8,0xe4,0x8,0xce,0x8,0xc4,0x8,0x86,0x8,0x78,0x8,0x36,0x8,0x30,0x7,0x56,0x7,0x50,0x6,0xaa,0x16,0xd6,0x16,0xd6,0x6,0xa4,0x6,0x96,0x6,0x48,0x6,0x42,0x6,0x28,0x6,0x42,0x5,0xe6,0xc,0xbe,0x5,0x90,0x5,0x7e,0xd,0x2e,0x4,0x54,0xd,0x2e,0xd,0x2e,0xd,0x2e,0x4,0x4e,0x4,0x28,0x4,0x2,0x3,0xfc,0x3,0xf2,0x3,0xec,0x3,0xde,0x3,0xec,0xc,0xc4,0xc,0xbe,0xc,0xbe,0xc,0xbe,0xc,0xbe,0x8,0xf6,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xc4,0xc,0xb0,0xc,0xb0,0xc,0xb0,0xc,0xb0,0xc,0xbe,0xc,0xbe,0xc,0xbe,0xc,0xbe,0xc,0xbe,0x8,0x86,0x8,0x30,0x8,0x30,0x8,0x30,0x8,0x30,0x16,0xd6,0x6,0xa4,0x6,0xa4,0x6,0xa4,0x6,0xa4,0x6,0xa4,0x6,0x42,0x6,0x42,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xc4,0xc,0xc4,0xc,0xc4,0xc,0xc4,0xc,0xbe,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0x16,0xd6,0xa,0x4,0x9,0xee,0x9,0xee,0x9,0xee,0x9,0xee,0x16,0xd6,0x16,0xd6,0x16,0xd6,0x16,0xd6,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0x6,0x96,0x6,0x96,0x6,0x96,0x8,0xf6,0x8,0xf6,0x8,0xf6,0x8,0xce,0x8,0x86,0x6,0x42,0x8,0x86,0x8,0x78,0x8,0x78,0x8,0x78,0x3,0xfc,0x3,0xfc,0x4,0x4e,0x3,0xec,0x3,0xec,0x3,0xec,0x3,0xec,0x3,0xec,0x3,0xec,0x3,0xec,0x3,0xfc,0x3,0xfc,0x3,0xfc,0x3,0xfc,0x3,0xfc,0x3,0xec,0x3,0xec,0x3,0xec,0x3,0xfc,0x3,0xf2,0x3,0xf2,0x3,0xf2,0x3,0xf2,0x3,0xfc,0x3,0xfc,0x3,0xfc,0x4,0x4e,0x8,0xce,0x8,0xce,0x8,0xce,0x8,0x86,0x6,0x42,0xd,0x2e,0xd,0x2e,0xd,0x2e,0x16,0xd6,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xd2,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xb0,0x8,0x30,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0xc,0xbe,0x6,0xa4,0x6,0xa4,0x8,0x86,0x6,0x42,0x8,0x86,0x6,0x42,0x8,0x86,0x6,0x42,0x16,0xd6,0xc,0xd2,0xc,0xb0,0xc,0xbe,0x6,0xa4,0x6,0x96,0xc,0xbe,0xc,0xbe,0x16,0xd6,0xa,0x4,0xa,0x4,0x9,0xee,0x16,0xd6,0x16,0xd6,0xc,0xbe,0x9,0xe4,0x6,0x96,0x8,0xf6,0x8,0xe4,0x6,0x42,0x8,0xe4,0x6,0x42,0x8,0xce,0x8,0x78,0x0,0x1,0x0,0xf4,0x0,0x4,0x0,0x6,0x0,0xb,0x0,0xc,0x0,0x25,0x0,0x27,0x0,0x28,0x0,0x29,0x0,0x2a,0x0,0x2f,0x0,0x30,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x36,0x0,0x38,0x0,0x3a,0x0,0x3b,0x0,0x3c,0x0,0x3d,0x0,0x3e,0x0,0x3f,0x0,0x49,0x0,0x4a,0x0,0x4c,0x0,0x4f,0x0,0x51,0x0,0x52,0x0,0x53,0x0,0x56,0x0,0x58,0x0,0x5a,0x0,0x5b,0x0,0x5d,0x0,0x5f,0x0,0x96,0x0,0x9d,0x0,0xb2,0x1,0x84,0x1,0x85,0x1,0x87,0x1,0x88,0x1,0x89,0x1,0xf2,0x1,0xf4,0x1,0xf5,0x1,0xf7,0x1,0xfa,0x2,0x5,0x2,0x4a,0x2,0x4d,0x2,0x5f,0x2,0x61,0x2,0x62,0x2,0x95,0x2,0x96,0x2,0x98,0x2,0x9a,0x2,0x9b,0x2,0x9c,0x2,0x9d,0x2,0x9e,0x2,0x9f,0x2,0xa0,0x2,0xa1,0x2,0xa2,0x2,0xa3,0x2,0xa4,0x2,0xa5,0x2,0xab,0x2,0xac,0x2,0xad,0x2,0xae,0x2,0xaf,0x2,0xb4,0x2,0xbd,0x2,0xbe,0x2,0xbf,0x2,0xc0,0x2,0xc5,0x2,0xc6,0x2,0xc7,0x2,0xc8,0x2,0xc9,0x2,0xca,0x2,0xcf,0x2,0xd0,0x2,0xd1,0x2,0xd3,0x2,0xd5,0x2,0xd7,0x2,0xd9,0x2,0xdb,0x2,0xdd,0x2,0xdf,0x2,0xe1,0x2,0xe2,0x2,0xe3,0x2,0xe4,0x2,0xe5,0x2,0xe6,0x2,0xe7,0x2,0xe8,0x2,0xe9,0x2,0xea,0x2,0xf4,0x3,0x2,0x3,0x4,0x3,0x6,0x3,0x8,0x3,0xa,0x3,0xd,0x3,0xf,0x3,0x11,0x3,0x12,0x3,0x13,0x3,0x14,0x3,0x15,0x3,0x16,0x3,0x17,0x3,0x18,0x3,0x1a,0x3,0x1c,0x3,0x1e,0x3,0x29,0x3,0x2b,0x3,0x2d,0x3,0x3b,0x3,0x3d,0x3,0x3e,0x3,0x3f,0x3,0x40,0x3,0x42,0x3,0x44,0x3,0x4a,0x3,0x4b,0x3,0x4c,0x3,0x4d,0x3,0x4e,0x3,0x4f,0x3,0x50,0x3,0x51,0x3,0x52,0x3,0x53,0x3,0x5e,0x3,0x5f,0x3,0x60,0x3,0x61,0x3,0x62,0x3,0x68,0x3,0x69,0x3,0x6a,0x3,0x6f,0x3,0x81,0x3,0x82,0x3,0x83,0x3,0x84,0x3,0x88,0x3,0x89,0x3,0x8a,0x3,0x93,0x3,0xee,0x3,0xf0,0x3,0xf2,0x3,0xf4,0x3,0xf5,0x3,0xf6,0x3,0xf7,0x3,0xfa,0x3,0xfc,0x3,0xfd,0x4,0x39,0x4,0x3b,0x4,0x3d,0x4,0x3f,0x4,0x41,0x4,0x43,0x4,0x45,0x4,0x47,0x4,0x49,0x4,0x4b,0x4,0x4d,0x4,0x4f,0x4,0x51,0x4,0x52,0x4,0x53,0x4,0x54,0x4,0x55,0x4,0x56,0x4,0x57,0x4,0x58,0x4,0x59,0x4,0x5a,0x4,0x5b,0x4,0x5c,0x4,0x5d,0x4,0x5e,0x4,0x5f,0x4,0x60,0x4,0x65,0x4,0x66,0x4,0x67,0x4,0x68,0x4,0x69,0x4,0x6a,0x4,0x6b,0x4,0x6c,0x4,0x6d,0x4,0x6e,0x4,0x6f,0x4,0x70,0x4,0x71,0x4,0x72,0x4,0x7a,0x4,0x8b,0x4,0x8c,0x4,0x8d,0x4,0x8e,0x4,0x8f,0x4,0x90,0x4,0xb3,0x4,0xb4,0x4,0xb6,0x4,0xba,0x4,0xbb,0x4,0xbd,0x4,0xc3,0x4,0xc5,0x4,0xc8,0x4,0xc9,0x4,0xcb,0x4,0xcd,0x4,0xd0,0x4,0xd2,0x4,0xd3,0x4,0xd4,0x4,0xd7,0x4,0xda,0x4,0xdd,0x4,0xde,0x4,0xdf,0x4,0xe0,0x4,0xe1,0x4,0xe3,0x0,0x3,0x1,0xef,0xff,0xf5,0x1,0xf0,0xff,0xee,0x3,0x9b,0xff,0xf5,0x0,0x1,0x1,0xf0,0xff,0xc7,0x0,0x2,0x1,0xf0,0xff,0xb7,0x1,0xf5,0xff,0xf0,0x0,0x1,0x1,0xf0,0xff,0xf1,0x0,0x9,0x1,0xed,0xff,0xe5,0x1,0xef,0xff,0xf1,0x1,0xf0,0xff,0xeb,0x1,0xf2,0xff,0xe9,0x3,0x67,0xff,0xe5,0x3,0x93,0xff,0xe9,0x3,0x9b,0xff,0xf1,0x3,0x9c,0xff,0xe5,0x3,0x9d,0xff,0xe5,0x0,0x9,0x1,0xed,0xff,0xee,0x1,0xef,0xff,0xf5,0x1,0xf0,0xff,0xf1,0x1,0xf2,0xff,0xf2,0x3,0x67,0xff,0xee,0x3,0x93,0xff,0xf2,0x3,0x9b,0xff,0xf5,0x3,0x9c,0xff,0xee,0x3,0x9d,0xff,0xee,0x0,0x1,0x1,0xf0,0x0,0xd,0x0,0x4a,0x0,0x47,0xff,0x98,0x0,0x48,0xff,0x98,0x0,0x49,0xff,0x98,0x0,0x4b,0xff,0x98,0x0,0x4c,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x53,0xff,0x70,0x0,0x55,0xff,0x98,0x0,0x57,0xff,0x18,0x0,0x5b,0x0,0xb,0x0,0x94,0xff,0x98,0x0,0x99,0xff,0x98,0x1,0xdb,0xff,0x18,0x2,0xbc,0xff,0x98,0x2,0xbd,0xff,0x98,0x2,0xbe,0xff,0x98,0x2,0xbf,0xff,0x98,0x2,0xc0,0xff,0x98,0x2,0xc6,0xff,0x70,0x2,0xc7,0xff,0x70,0x2,0xc8,0xff,0x70,0x2,0xc9,0xff,0x70,0x2,0xca,0xff,0x70,0x2,0xd8,0xff,0x98,0x2,0xda,0xff,0x98,0x2,0xdc,0xff,0x98,0x2,0xde,0xff,0x98,0x2,0xe0,0xff,0x98,0x2,0xe2,0xff,0x98,0x2,0xe4,0xff,0x98,0x2,0xe6,0xff,0x98,0x2,0xe8,0xff,0x98,0x2,0xea,0xff,0x98,0x2,0xec,0xff,0x98,0x2,0xee,0xff,0x98,0x2,0xf0,0xff,0x98,0x2,0xf2,0xff,0x98,0x3,0x14,0xff,0x70,0x3,0x16,0xff,0x70,0x3,0x18,0xff,0x70,0x3,0x20,0xff,0x18,0x3,0x22,0xff,0x18,0x3,0x24,0xff,0x18,0x3,0x26,0xff,0x18,0x3,0x28,0xff,0x18,0x4,0x52,0xff,0x98,0x4,0x54,0xff,0x98,0x4,0x56,0xff,0x98,0x4,0x58,0xff,0x98,0x4,0x5a,0xff,0x98,0x4,0x5c,0xff,0x98,0x4,0x5e,0xff,0x98,0x4,0x60,0xff,0x98,0x4,0x66,0xff,0x70,0x4,0x68,0xff,0x70,0x4,0x6a,0xff,0x70,0x4,0x6c,0xff,0x70,0x4,0x6e,0xff,0x70,0x4,0x70,0xff,0x70,0x4,0x72,0xff,0x70,0x4,0x74,0xff,0x98,0x4,0x76,0xff,0x98,0x4,0x78,0xff,0x98,0x4,0x7a,0xff,0x70,0x4,0x7c,0xff,0x98,0x4,0xb7,0xff,0x98,0x4,0xbb,0xff,0x70,0x4,0xc4,0xff,0x98,0x4,0xc6,0xff,0x98,0x4,0xc8,0x0,0x0,0x4,0xca,0x0,0x0,0x4,0xcc,0x0,0x0,0x4,0xd9,0xff,0x18,0x0,0x4,0x0,0x58,0xff,0xef,0x0,0x5b,0xff,0xdf,0x0,0x9a,0xff,0xee,0x1,0xf0,0xff,0xcd,0x0,0x15,0x0,0x6,0xff,0xf2,0x0,0xb,0xff,0xf2,0x0,0x5a,0xff,0xf3,0x0,0x5d,0xff,0xf3,0x1,0x84,0xff,0xf2,0x1,0x85,0xff,0xf2,0x1,0x87,0xff,0xf2,0x1,0x88,0xff,0xf2,0x1,0x89,0xff,0xf2,0x2,0xcf,0xff,0xf3,0x2,0xd0,0xff,0xf3,0x3,0x3e,0xff,0xf3,0x3,0xf5,0xff,0xf3,0x3,0xf6,0xff,0xf2,0x3,0xf7,0xff,0xf2,0x3,0xfa,0xff,0xf2,0x4,0x8c,0xff,0xf3,0x4,0x8e,0xff,0xf3,0x4,0x90,0xff,0xf3,0x4,0xde,0xff,0xf3,0x4,0xe0,0xff,0xf3,0x0,0x10,0x0,0x2e,0xff,0xec,0x0,0x39,0xff,0xec,0x2,0xb0,0xff,0xec,0x2,0xb1,0xff,0xec,0x2,0xb2,0xff,0xec,0x2,0xb3,0xff,0xec,0x3,0x0,0xff,0xec,0x3,0x2f,0xff,0xec,0x3,0x31,0xff,0xec,0x3,0x33,0xff,0xec,0x3,0x35,0xff,0xec,0x3,0x37,0xff,0xec,0x3,0x39,0xff,0xec,0x4,0x7d,0xff,0xec,0x4,0x7f,0xff,0xec,0x4,0xdc,0xff,0xec,0x0,0x6,0x0,0x10,0xff,0x84,0x0,0x12,0xff,0x84,0x1,0x86,0xff,0x84,0x1,0x8a,0xff,0x84,0x1,0x8e,0xff,0x84,0x1,0x8f,0xff,0x84,0x0,0x1,0x0,0x4a,0x0,0xd,0x0,0x13,0x0,0x53,0xff,0xe2,0x1,0x85,0x0,0x18,0x2,0xc6,0xff,0xe2,0x2,0xc7,0xff,0xe2,0x2,0xc8,0xff,0xe2,0x2,0xc9,0xff,0xe2,0x2,0xca,0xff,0xe2,0x3,0x14,0xff,0xe2,0x3,0x16,0xff,0xe2,0x3,0x18,0xff,0xe2,0x4,0x66,0xff,0xe2,0x4,0x68,0xff,0xe2,0x4,0x6a,0xff,0xe2,0x4,0x6c,0xff,0xe2,0x4,0x6e,0xff,0xe2,0x4,0x70,0xff,0xe2,0x4,0x72,0xff,0xe2,0x4,0x7a,0xff,0xe2,0x4,0xbb,0xff,0xe2,0x0,0x3,0x0,0x4a,0x0,0x14,0x0,0x58,0x0,0x32,0x0,0x5b,0x0,0x11,0x0,0x1,0x1,0x85,0xff,0x90,0x0,0x29,0x0,0x47,0xff,0xec,0x0,0x48,0xff,0xec,0x0,0x49,0xff,0xec,0x0,0x4b,0xff,0xec,0x0,0x55,0xff,0xec,0x0,0x94,0xff,0xec,0x0,0x99,0xff,0xec,0x2,0xbc,0xff,0xec,0x2,0xbd,0xff,0xec,0x2,0xbe,0xff,0xec,0x2,0xbf,0xff,0xec,0x2,0xc0,0xff,0xec,0x2,0xd8,0xff,0xec,0x2,0xda,0xff,0xec,0x2,0xdc,0xff,0xec,0x2,0xde,0xff,0xec,0x2,0xe0,0xff,0xec,0x2,0xe2,0xff,0xec,0x2,0xe4,0xff,0xec,0x2,0xe6,0xff,0xec,0x2,0xe8,0xff,0xec,0x2,0xea,0xff,0xec,0x2,0xec,0xff,0xec,0x2,0xee,0xff,0xec,0x2,0xf0,0xff,0xec,0x2,0xf2,0xff,0xec,0x4,0x52,0xff,0xec,0x4,0x54,0xff,0xec,0x4,0x56,0xff,0xec,0x4,0x58,0xff,0xec,0x4,0x5a,0xff,0xec,0x4,0x5c,0xff,0xec,0x4,0x5e,0xff,0xec,0x4,0x60,0xff,0xec,0x4,0x74,0xff,0xec,0x4,0x76,0xff,0xec,0x4,0x78,0xff,0xec,0x4,0x7c,0xff,0xec,0x4,0xb7,0xff,0xec,0x4,0xc4,0xff,0xec,0x4,0xc6,0xff,0xec,0x0,0x1,0x1,0x85,0xff,0x98,0x0,0x36,0x0,0x6,0x0,0x10,0x0,0xb,0x0,0x10,0x0,0xd,0x0,0x14,0x0,0x41,0x0,0x12,0x0,0x47,0xff,0xe8,0x0,0x48,0xff,0xe8,0x0,0x49,0xff,0xe8,0x0,0x4b,0xff,0xe8,0x0,0x55,0xff,0xe8,0x0,0x61,0x0,0x13,0x0,0x94,0xff,0xe8,0x0,0x99,0xff,0xe8,0x1,0x84,0x0,0x10,0x1,0x85,0x0,0x10,0x1,0x87,0x0,0x10,0x1,0x88,0x0,0x10,0x1,0x89,0x0,0x10,0x2,0xbc,0xff,0xe8,0x2,0xbd,0xff,0xe8,0x2,0xbe,0xff,0xe8,0x2,0xbf,0xff,0xe8,0x2,0xc0,0xff,0xe8,0x2,0xd8,0xff,0xe8,0x2,0xda,0xff,0xe8,0x2,0xdc,0xff,0xe8,0x2,0xde,0xff,0xe8,0x2,0xe0,0xff,0xe8,0x2,0xe2,0xff,0xe8,0x2,0xe4,0xff,0xe8,0x2,0xe6,0xff,0xe8,0x2,0xe8,0xff,0xe8,0x2,0xea,0xff,0xe8,0x2,0xec,0xff,0xe8,0x2,0xee,0xff,0xe8,0x2,0xf0,0xff,0xe8,0x2,0xf2,0xff,0xe8,0x3,0xf6,0x0,0x10,0x3,0xf7,0x0,0x10,0x3,0xfa,0x0,0x10,0x4,0x52,0xff,0xe8,0x4,0x54,0xff,0xe8,0x4,0x56,0xff,0xe8,0x4,0x58,0xff,0xe8,0x4,0x5a,0xff,0xe8,0x4,0x5c,0xff,0xe8,0x4,0x5e,0xff,0xe8,0x4,0x60,0xff,0xe8,0x4,0x74,0xff,0xe8,0x4,0x76,0xff,0xe8,0x4,0x78,0xff,0xe8,0x4,0x7c,0xff,0xe8,0x4,0xb7,0xff,0xe8,0x4,0xc4,0xff,0xe8,0x4,0xc6,0xff,0xe8,0x0,0x1,0x1,0x85,0xff,0xc0,0x0,0x10,0x0,0x2e,0xff,0xee,0x0,0x39,0xff,0xee,0x2,0xb0,0xff,0xee,0x2,0xb1,0xff,0xee,0x2,0xb2,0xff,0xee,0x2,0xb3,0xff,0xee,0x3,0x0,0xff,0xee,0x3,0x2f,0xff,0xee,0x3,0x31,0xff,0xee,0x3,0x33,0xff,0xee,0x3,0x35,0xff,0xee,0x3,0x37,0xff,0xee,0x3,0x39,0xff,0xee,0x4,0x7d,0xff,0xee,0x4,0x7f,0xff,0xee,0x4,0xdc,0xff,0xee,0x0,0x3,0x0,0x5b,0xff,0xe5,0x1,0xff,0xff,0xeb,0x2,0x4b,0xff,0xed,0x0,0xf,0x0,0xa,0xff,0xe2,0x0,0xd,0x0,0x14,0x0,0xe,0xff,0xcf,0x0,0x41,0x0,0x12,0x0,0x4a,0xff,0xea,0x0,0x56,0xff,0xd8,0x0,0x58,0xff,0xea,0x0,0x61,0x0,0x13,0x0,0x6d,0xff,0xae,0x0,0x7c,0xff,0xcd,0x0,0x81,0xff,0xa0,0x0,0x86,0xff,0xc1,0x0,0x89,0xff,0xc0,0x1,0x8d,0xff,0xd3,0x2,0x4b,0xff,0xcd,0x0,0x2,0x1,0xf5,0xff,0xe9,0x2,0x4b,0xff,0xe9,0x0,0x5,0x0,0xd,0x0,0xf,0x0,0x41,0x0,0xc,0x0,0x56,0xff,0xeb,0x0,0x61,0x0,0xe,0x2,0x4b,0xff,0xe9,0x0,0x4,0x0,0xd,0x0,0x14,0x0,0x41,0x0,0x11,0x0,0x56,0xff,0xe2,0x0,0x61,0x0,0x13,0x0,0x8,0x0,0x4,0xff,0xc4,0x0,0x56,0xff,0xbf,0x0,0x5b,0xff,0xd1,0x0,0x6d,0xff,0x6c,0x0,0x7c,0xff,0x6e,0x0,0x81,0xff,0x43,0x0,0x86,0xff,0xac,0x0,0x89,0xff,0xa1,0x0,0x10,0x0,0x38,0xff,0xce,0x0,0x3a,0xff,0xed,0x0,0x3d,0xff,0xd0,0x2,0xb4,0xff,0xd0,0x3,0x29,0xff,0xce,0x3,0x2b,0xff,0xce,0x3,0x2d,0xff,0xce,0x3,0x3d,0xff,0xd0,0x3,0x3f,0xff,0xd0,0x3,0xf4,0xff,0xd0,0x4,0x8b,0xff,0xd0,0x4,0x8d,0xff,0xd0,0x4,0x8f,0xff,0xd0,0x4,0xda,0xff,0xce,0x4,0xdd,0xff,0xed,0x4,0xdf,0xff,0xed,0x0,0x22,0x0,0x38,0xff,0xdf,0x0,0x3a,0xff,0xe4,0x0,0x3b,0xff,0xec,0x0,0x3d,0xff,0xdd,0x2,0x5,0x0,0xe,0x2,0x4d,0x0,0xe,0x2,0xb4,0xff,0xdd,0x3,0x29,0xff,0xdf,0x3,0x2b,0xff,0xdf,0x3,0x2d,0xff,0xdf,0x3,0x3b,0xff,0xec,0x3,0x3d,0xff,0xdd,0x3,0x3f,0xff,0xdd,0x3,0x4d,0x0,0xe,0x3,0x4e,0x0,0xe,0x3,0x4f,0x0,0xe,0x3,0x50,0x0,0xe,0x3,0x51,0x0,0xe,0x3,0x52,0x0,0xe,0x3,0x53,0x0,0xe,0x3,0x68,0x0,0xe,0x3,0x69,0x0,0xe,0x3,0x6a,0x0,0xe,0x3,0xee,0xff,0xec,0x3,0xf0,0xff,0xec,0x3,0xf2,0xff,0xec,0x3,0xf4,0xff,0xdd,0x4,0x8b,0xff,0xdd,0x4,0x8d,0xff,0xdd,0x4,0x8f,0xff,0xdd,0x4,0xda,0xff,0xdf,0x4,0xdd,0xff,0xe4,0x4,0xdf,0xff,0xe4,0x4,0xe1,0xff,0xec,0x0,0x2,0x0,0x58,0x0,0xe,0x0,0x81,0xfe,0xd7,0x0,0x5,0x0,0x5b,0xff,0xcc,0x1,0xf0,0xff,0xb8,0x1,0xf5,0xff,0xf2,0x1,0xff,0xff,0xf1,0x2,0x4b,0xff,0xf3,0x0,0x3,0x0,0x5b,0xff,0xc1,0x1,0xff,0xff,0xe6,0x2,0x4b,0xff,0xe8,0x0,0xa7,0x0,0x10,0xfe,0xee,0x0,0x12,0xfe,0xee,0x0,0x25,0xff,0x40,0x0,0x2e,0xff,0x30,0x0,0x38,0x0,0x14,0x0,0x45,0xff,0xde,0x0,0x47,0xff,0xeb,0x0,0x48,0xff,0xeb,0x0,0x49,0xff,0xeb,0x0,0x4b,0xff,0xeb,0x0,0x53,0xff,0xeb,0x0,0x55,0xff,0xeb,0x0,0x56,0xff,0xe6,0x0,0x59,0xff,0xea,0x0,0x5a,0xff,0xe8,0x0,0x5d,0xff,0xe8,0x0,0x94,0xff,0xeb,0x0,0x99,0xff,0xeb,0x0,0x9b,0xff,0xea,0x0,0xb2,0xff,0x40,0x1,0x86,0xfe,0xee,0x1,0x8a,0xfe,0xee,0x1,0x8e,0xfe,0xee,0x1,0x8f,0xfe,0xee,0x2,0x5,0xff,0xc0,0x2,0x4d,0xff,0xc0,0x2,0x9a,0xff,0x40,0x2,0x9b,0xff,0x40,0x2,0x9c,0xff,0x40,0x2,0x9d,0xff,0x40,0x2,0x9e,0xff,0x40,0x2,0x9f,0xff,0x40,0x2,0xa0,0xff,0x40,0x2,0xb5,0xff,0xde,0x2,0xb6,0xff,0xde,0x2,0xb7,0xff,0xde,0x2,0xb8,0xff,0xde,0x2,0xb9,0xff,0xde,0x2,0xba,0xff,0xde,0x2,0xbb,0xff,0xde,0x2,0xbc,0xff,0xeb,0x2,0xbd,0xff,0xeb,0x2,0xbe,0xff,0xeb,0x2,0xbf,0xff,0xeb,0x2,0xc0,0xff,0xeb,0x2,0xc6,0xff,0xeb,0x2,0xc7,0xff,0xeb,0x2,0xc8,0xff,0xeb,0x2,0xc9,0xff,0xeb,0x2,0xca,0xff,0xeb,0x2,0xcb,0xff,0xea,0x2,0xcc,0xff,0xea,0x2,0xcd,0xff,0xea,0x2,0xce,0xff,0xea,0x2,0xcf,0xff,0xe8,0x2,0xd0,0xff,0xe8,0x2,0xd1,0xff,0x40,0x2,0xd2,0xff,0xde,0x2,0xd3,0xff,0x40,0x2,0xd4,0xff,0xde,0x2,0xd5,0xff,0x40,0x2,0xd6,0xff,0xde,0x2,0xd8,0xff,0xeb,0x2,0xda,0xff,0xeb,0x2,0xdc,0xff,0xeb,0x2,0xde,0xff,0xeb,0x2,0xe0,0xff,0xeb,0x2,0xe2,0xff,0xeb,0x2,0xe4,0xff,0xeb,0x2,0xe6,0xff,0xeb,0x2,0xe8,0xff,0xeb,0x2,0xea,0xff,0xeb,0x2,0xec,0xff,0xeb,0x2,0xee,0xff,0xeb,0x2,0xf0,0xff,0xeb,0x2,0xf2,0xff,0xeb,0x3,0x0,0xff,0x30,0x3,0x14,0xff,0xeb,0x3,0x16,0xff,0xeb,0x3,0x18,0xff,0xeb,0x3,0x29,0x0,0x14,0x3,0x2b,0x0,0x14,0x3,0x2d,0x0,0x14,0x3,0x30,0xff,0xea,0x3,0x32,0xff,0xea,0x3,0x34,0xff,0xea,0x3,0x36,0xff,0xea,0x3,0x38,0xff,0xea,0x3,0x3a,0xff,0xea,0x3,0x3e,0xff,0xe8,0x3,0x4d,0xff,0xc0,0x3,0x4e,0xff,0xc0,0x3,0x4f,0xff,0xc0,0x3,0x50,0xff,0xc0,0x3,0x51,0xff,0xc0,0x3,0x52,0xff,0xc0,0x3,0x53,0xff,0xc0,0x3,0x68,0xff,0xc0,0x3,0x69,0xff,0xc0,0x3,0x6a,0xff,0xc0,0x3,0xf5,0xff,0xe8,0x3,0xfd,0xff,0x40,0x3,0xfe,0xff,0xde,0x4,0x39,0xff,0x40,0x4,0x3a,0xff,0xde,0x4,0x3b,0xff,0x40,0x4,0x3c,0xff,0xde,0x4,0x3d,0xff,0x40,0x4,0x3e,0xff,0xde,0x4,0x3f,0xff,0x40,0x4,0x40,0xff,0xde,0x4,0x41,0xff,0x40,0x4,0x42,0xff,0xde,0x4,0x43,0xff,0x40,0x4,0x44,0xff,0xde,0x4,0x45,0xff,0x40,0x4,0x46,0xff,0xde,0x4,0x47,0xff,0x40,0x4,0x48,0xff,0xde,0x4,0x49,0xff,0x40,0x4,0x4a,0xff,0xde,0x4,0x4b,0xff,0x40,0x4,0x4c,0xff,0xde,0x4,0x4d,0xff,0x40,0x4,0x4e,0xff,0xde,0x4,0x4f,0xff,0x40,0x4,0x50,0xff,0xde,0x4,0x52,0xff,0xeb,0x4,0x54,0xff,0xeb,0x4,0x56,0xff,0xeb,0x4,0x58,0xff,0xeb,0x4,0x5a,0xff,0xeb,0x4,0x5c,0xff,0xeb,0x4,0x5e,0xff,0xeb,0x4,0x60,0xff,0xeb,0x4,0x66,0xff,0xeb,0x4,0x68,0xff,0xeb,0x4,0x6a,0xff,0xeb,0x4,0x6c,0xff,0xeb,0x4,0x6e,0xff,0xeb,0x4,0x70,0xff,0xeb,0x4,0x72,0xff,0xeb,0x4,0x74,0xff,0xeb,0x4,0x76,0xff,0xeb,0x4,0x78,0xff,0xeb,0x4,0x7a,0xff,0xeb,0x4,0x7c,0xff,0xeb,0x4,0x7e,0xff,0xea,0x4,0x80,0xff,0xea,0x4,0x82,0xff,0xea,0x4,0x84,0xff,0xea,0x4,0x86,0xff,0xea,0x4,0x88,0xff,0xea,0x4,0x8a,0xff,0xea,0x4,0x8c,0xff,0xe8,0x4,0x8e,0xff,0xe8,0x4,0x90,0xff,0xe8,0x4,0xb4,0xff,0x40,0x4,0xb5,0xff,0xde,0x4,0xb7,0xff,0xeb,0x4,0xbb,0xff,0xeb,0x4,0xbf,0xff,0xea,0x4,0xc4,0xff,0xeb,0x4,0xc6,0xff,0xeb,0x4,0xda,0x0,0x14,0x4,0xde,0xff,0xe8,0x4,0xe0,0xff,0xe8,0x0,0x3,0x0,0x4a,0xff,0xee,0x0,0x5b,0xff,0xea,0x1,0xf0,0xff,0xf0,0x0,0x1,0x0,0x81,0xff,0xdf,0x0,0x3,0x0,0xd,0xff,0xe6,0x0,0x41,0xff,0xf4,0x0,0x61,0xff,0xef,0x0,0x5,0x0,0x23,0xff,0xaf,0x0,0x58,0xff,0xef,0x0,0x5b,0xff,0xdf,0x0,0x9a,0xff,0xee,0x1,0xf0,0xff,0xcd,0x0,0x11,0x0,0x3a,0x0,0x14,0x0,0x3b,0x0,0x26,0x0,0x3d,0x0,0x16,0x2,0xb4,0x0,0x16,0x3,0x3b,0x0,0x26,0x3,0x3d,0x0,0x16,0x3,0x3f,0x0,0x16,0x3,0xee,0x0,0x26,0x3,0xf0,0x0,0x26,0x3,0xf2,0x0,0x26,0x3,0xf4,0x0,0x16,0x4,0x8b,0x0,0x16,0x4,0x8d,0x0,0x16,0x4,0x8f,0x0,0x16,0x4,0xdd,0x0,0x14,0x4,0xdf,0x0,0x14,0x4,0xe1,0x0,0x26,0x0,0x1,0x0,0x5b,0x0,0xb,0x0,0x5,0x0,0x38,0xff,0xc4,0x3,0x29,0xff,0xc4,0x3,0x2b,0xff,0xc4,0x3,0x2d,0xff,0xc4,0x4,0xda,0xff,0xc4,0x0,0x2,0x0,0x8,0x0,0x2,0x6,0x6c,0x0,0xa,0x0,0x2,0x3,0xd0,0x0,0x4,0x0,0x0,0x5,0x6e,0x4,0x3e,0x0,0x18,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc5,0x0,0x0,0xff,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0xff,0xa5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0xff,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0xff,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0xff,0xd5,0xff,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0xff,0xe9,0xff,0xed,0xff,0xf5,0xff,0xeb,0x0,0x0,0xff,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0x0,0x0,0xff,0xeb,0xff,0x6a,0x0,0x0,0xff,0xc4,0xff,0xd0,0xff,0xce,0xff,0xf5,0xff,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x19,0xff,0x68,0xff,0xbf,0xff,0xd9,0xff,0x6a,0xff,0xe3,0x0,0x12,0xff,0xab,0x0,0x0,0xff,0xd8,0xff,0xec,0xff,0xcb,0xff,0xbf,0x0,0xd,0x0,0x0,0xff,0xab,0xff,0xef,0xff,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0xff,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0xff,0xe6,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x59,0x0,0x0,0xff,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0xff,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x64,0xff,0xe6,0xff,0xeb,0x0,0x0,0xff,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0xff,0xe7,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x36,0xfe,0x1e,0xff,0x55,0xff,0x7e,0xff,0x33,0xff,0xbd,0x0,0x7,0x0,0x0,0x0,0x0,0xff,0x55,0xff,0x61,0x0,0x0,0xff,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x5c,0xff,0xe6,0xff,0xe9,0x0,0x0,0xff,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd8,0xff,0xe7,0xff,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x6c,0x0,0x0,0xff,0xf3,0x0,0x0,0xff,0x4e,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xff,0xf3,0xff,0xcd,0xff,0xdc,0xff,0x80,0x0,0x0,0xff,0x4e,0x0,0x0,0x0,0x0,0xfe,0xfe,0xfe,0xf0,0xff,0xa7,0xff,0xbf,0xff,0x88,0xff,0xe4,0x0,0x10,0xff,0xaf,0x0,0x0,0xff,0xa7,0xff,0xae,0xff,0xb9,0xff,0x30,0x0,0x0,0x0,0x0,0xff,0xaf,0xff,0xed,0xff,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0xff,0xed,0x0,0xd,0xff,0xe6,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0xff,0xe5,0xff,0xec,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0x0,0x0,0xff,0xeb,0xff,0x6a,0x0,0x0,0xff,0xc4,0xff,0xd0,0xff,0xce,0xff,0xf5,0xff,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x35,0x0,0x6,0x0,0xb,0x0,0x96,0x0,0xb1,0x0,0xb2,0x0,0xb3,0x0,0xb4,0x0,0xbd,0x0,0xc1,0x0,0xc7,0x1,0x84,0x1,0x85,0x1,0x87,0x1,0x88,0x1,0x89,0x2,0x5,0x2,0x6,0x2,0x7,0x3,0xa1,0x3,0xa2,0x3,0xa3,0x3,0xa4,0x3,0xa5,0x3,0xa6,0x3,0xa9,0x3,0xaa,0x3,0xab,0x3,0xac,0x3,0xad,0x3,0xae,0x3,0xaf,0x3,0xb0,0x3,0xb1,0x3,0xb2,0x3,0xb3,0x3,0xb4,0x3,0xb5,0x3,0xb6,0x3,0xb7,0x3,0xb8,0x3,0xbb,0x3,0xbf,0x3,0xc1,0x3,0xc5,0x3,0xf6,0x3,0xf7,0x3,0xfa,0x4,0xe5,0x4,0xe6,0x4,0xea,0x4,0xed,0x4,0xf3,0x4,0xf8,0x0,0x2,0x0,0x32,0x0,0x6,0x0,0x6,0x0,0x1,0x0,0xb,0x0,0xb,0x0,0x1,0x0,0x10,0x0,0x10,0x0,0x2,0x0,0x11,0x0,0x11,0x0,0x3,0x0,0x12,0x0,0x12,0x0,0x2,0x0,0xb2,0x0,0xb2,0x0,0x13,0x0,0xb3,0x0,0xb3,0x0,0x7,0x0,0xb4,0x0,0xb4,0x0,0x6,0x0,0xbb,0x0,0xbb,0x0,0x4,0x0,0xbd,0x0,0xbd,0x0,0xc,0x0,0xc1,0x0,0xc1,0x0,0xb,0x0,0xc8,0x0,0xc9,0x0,0x4,0x0,0xcb,0x0,0xcb,0x0,0x5,0x1,0x81,0x1,0x82,0x0,0x3,0x1,0x84,0x1,0x85,0x0,0x1,0x1,0x86,0x1,0x86,0x0,0x2,0x1,0x87,0x1,0x89,0x0,0x1,0x1,0x8a,0x1,0x8a,0x0,0x2,0x1,0x8e,0x1,0x8f,0x0,0x2,0x2,0x5,0x2,0x5,0x0,0x11,0x2,0x6,0x2,0x6,0x0,0xd,0x2,0x7,0x2,0x7,0x0,0x9,0x2,0x94,0x2,0x94,0x0,0x3,0x3,0xa1,0x3,0xa1,0x0,0x6,0x3,0xa5,0x3,0xa5,0x0,0x7,0x3,0xa6,0x3,0xa6,0x0,0x8,0x3,0xa9,0x3,0xa9,0x0,0x6,0x3,0xac,0x3,0xac,0x0,0x10,0x3,0xb2,0x3,0xb2,0x0,0x7,0x3,0xb5,0x3,0xb5,0x0,0x8,0x3,0xb6,0x3,0xb6,0x0,0xf,0x3,0xb8,0x3,0xb8,0x0,0x8,0x3,0xb9,0x3,0xb9,0x0,0x4,0x3,0xbb,0x3,0xbb,0x0,0xb,0x3,0xbd,0x3,0xbd,0x0,0x5,0x3,0xbf,0x3,0xbf,0x0,0xe,0x3,0xc1,0x3,0xc1,0x0,0xc,0x3,0xc4,0x3,0xc4,0x0,0x5,0x3,0xc5,0x3,0xc5,0x0,0xe,0x3,0xc6,0x3,0xc6,0x0,0x5,0x3,0xf6,0x3,0xf7,0x0,0x1,0x3,0xfa,0x3,0xfa,0x0,0x1,0x4,0xa7,0x4,0xa7,0x0,0x3,0x4,0xe6,0x4,0xe6,0x0,0x9,0x4,0xea,0x4,0xea,0x0,0xd,0x4,0xeb,0x4,0xeb,0x0,0xa,0x4,0xed,0x4,0xed,0x0,0x9,0x4,0xf9,0x4,0xf9,0x0,0xa,0x4,0xfa,0x4,0xfa,0x0,0x12,0x4,0xfc,0x4,0xfc,0x0,0xa,0x0,0x2,0x0,0x28,0x0,0x96,0x0,0x96,0x0,0x16,0x0,0xb1,0x0,0xb1,0x0,0xd,0x0,0xb2,0x0,0xb2,0x0,0x17,0x0,0xb3,0x0,0xb3,0x0,0x2,0x0,0xb4,0x0,0xb4,0x0,0x3,0x0,0xbd,0x0,0xbd,0x0,0x8,0x0,0xc1,0x0,0xc1,0x0,0x7,0x0,0xc7,0x0,0xc7,0x0,0x15,0x2,0x5,0x2,0x5,0x0,0x12,0x2,0x6,0x2,0x6,0x0,0x9,0x2,0x7,0x2,0x7,0x0,0x5,0x3,0xa1,0x3,0xa1,0x0,0x3,0x3,0xa2,0x3,0xa2,0x0,0x6,0x3,0xa3,0x3,0xa4,0x0,0x1,0x3,0xa5,0x3,0xa5,0x0,0x2,0x3,0xa6,0x3,0xa6,0x0,0x4,0x3,0xa9,0x3,0xa9,0x0,0x3,0x3,0xaa,0x3,0xaa,0x0,0xb,0x3,0xab,0x3,0xab,0x0,0x6,0x3,0xac,0x3,0xac,0x0,0x11,0x3,0xad,0x3,0xae,0x0,0x1,0x3,0xaf,0x3,0xaf,0x0,0xe,0x3,0xb0,0x3,0xb1,0x0,0x1,0x3,0xb2,0x3,0xb2,0x0,0x2,0x3,0xb3,0x3,0xb3,0x0,0xf,0x3,0xb4,0x3,0xb4,0x0,0x10,0x3,0xb5,0x3,0xb5,0x0,0x4,0x3,0xb6,0x3,0xb6,0x0,0xc,0x3,0xb7,0x3,0xb7,0x0,0x1,0x3,0xb8,0x3,0xb8,0x0,0x4,0x3,0xbb,0x3,0xbb,0x0,0x7,0x3,0xbf,0x3,0xbf,0x0,0xa,0x3,0xc1,0x3,0xc1,0x0,0x8,0x3,0xc5,0x3,0xc5,0x0,0xa,0x4,0xe5,0x4,0xe5,0x0,0x2,0x4,0xe6,0x4,0xe6,0x0,0x5,0x4,0xea,0x4,0xea,0x0,0x9,0x4,0xed,0x4,0xed,0x0,0x5,0x4,0xf3,0x4,0xf3,0x0,0x13,0x4,0xf8,0x4,0xf8,0x0,0x14,0x0,0x1,0x0,0x5c,0x0,0x4,0x0,0x0,0x0,0x29,0x4,0xa6,0x4,0x98,0x4,0x8e,0x4,0x5c,0x4,0x46,0x4,0x38,0x4,0x22,0x4,0x10,0x3,0xfa,0x3,0xd4,0x3,0xa6,0x3,0xa0,0x3,0x8e,0x3,0x88,0x3,0x26,0x3,0x20,0x2,0xba,0x2,0x68,0x2,0x3a,0x2,0x34,0x2,0x2e,0x1,0xb0,0x1,0xa6,0x1,0x8c,0x4,0x22,0x4,0x38,0x1,0x36,0x4,0x22,0x1,0x2c,0x1,0x22,0x4,0x38,0x1,0x14,0x0,0xde,0x1,0x36,0x0,0xbc,0x1,0x36,0x3,0x20,0x0,0xb2,0x3,0x8e,0x0,0xb2,0x4,0x38,0x0,0x1,0x0,0x29,0x0,0xc,0x0,0x96,0x0,0x9d,0x0,0xb1,0x0,0xb2,0x0,0xb3,0x0,0xb4,0x0,0xb5,0x0,0xb7,0x0,0xb8,0x0,0xb9,0x0,0xbb,0x0,0xbd,0x0,0xbe,0x0,0xc0,0x0,0xc1,0x0,0xc3,0x0,0xc4,0x0,0xc5,0x0,0xc7,0x0,0xc9,0x0,0xca,0x0,0xce,0x1,0x85,0x3,0xa1,0x3,0xa5,0x3,0xa6,0x3,0xa9,0x3,0xac,0x3,0xaf,0x3,0xb2,0x3,0xb3,0x3,0xb4,0x3,0xb5,0x3,0xb6,0x3,0xb8,0x3,0xbb,0x3,0xbf,0x3,0xc1,0x3,0xc5,0x4,0xe5,0x0,0x2,0x0,0xca,0xff,0xea,0x1,0x85,0xff,0x90,0x0,0x8,0x0,0xb8,0xff,0xd4,0x0,0xbe,0x0,0x0,0x0,0xc2,0xff,0xed,0x0,0xc4,0x0,0x11,0x0,0xca,0xff,0xe0,0x0,0xcc,0xff,0xe7,0x0,0xcd,0xff,0xe5,0x0,0xce,0xff,0xee,0x0,0xd,0x0,0x4,0xff,0xc4,0x0,0x6d,0xff,0x6c,0x0,0x7c,0xff,0x6e,0x0,0xb8,0xff,0xb8,0x0,0xbe,0x0,0x0,0x0,0xbf,0xff,0x7e,0x0,0xc3,0xff,0x7b,0x0,0xc6,0xff,0x9b,0x0,0xc7,0xff,0x79,0x0,0xca,0xff,0xb2,0x0,0xcc,0xff,0x7e,0x0,0xcd,0xff,0x7d,0x0,0xce,0xff,0x7c,0x0,0x3,0x0,0xbe,0x0,0x0,0x0,0xc4,0xff,0x98,0x0,0xc7,0xff,0xc7,0x0,0x2,0x0,0xb8,0xff,0xc5,0x0,0xca,0xff,0xb4,0x0,0x2,0x0,0xb8,0xff,0xcb,0x0,0xcd,0xff,0xe4,0x0,0x15,0x0,0xa,0xff,0xe2,0x0,0xd,0x0,0x14,0x0,0xe,0xff,0xcf,0x0,0x41,0x0,0x12,0x0,0x61,0x0,0x13,0x0,0x6d,0xff,0xae,0x0,0x7c,0xff,0xcd,0x0,0xb8,0xff,0xd0,0x0,0xbc,0xff,0xea,0x0,0xbe,0x0,0x0,0x0,0xbf,0xff,0xc6,0x0,0xc0,0x0,0xd,0x0,0xc2,0xff,0xe9,0x0,0xc3,0xff,0xd6,0x0,0xc6,0xff,0xe8,0x0,0xc7,0xff,0xba,0x0,0xca,0xff,0xe9,0x0,0xcc,0xff,0xcb,0x0,0xcd,0xff,0xda,0x0,0xce,0xff,0xc7,0x1,0x8d,0xff,0xd3,0x0,0x6,0x0,0xbb,0xff,0x98,0x0,0xc8,0xff,0x98,0x0,0xc9,0xff,0x98,0x3,0xb9,0xff,0x98,0x3,0xbf,0xff,0x70,0x3,0xc5,0xff,0x70,0x0,0x2,0x0,0xbd,0xff,0xf4,0x3,0xc1,0xff,0xf4,0x0,0x1f,0x0,0x6,0x0,0xc,0x0,0xb,0x0,0xc,0x0,0xbb,0xff,0xe8,0x0,0xbd,0x0,0xb,0x0,0xbe,0x0,0x0,0x0,0xc4,0xff,0x90,0x0,0xc6,0x0,0xb,0x0,0xc8,0xff,0xe8,0x0,0xc9,0xff,0xe8,0x0,0xca,0x0,0xc,0x1,0x84,0x0,0xc,0x1,0x85,0x0,0xc,0x1,0x87,0x0,0xc,0x1,0x88,0x0,0xc,0x1,0x89,0x0,0xc,0x2,0x5,0xff,0xbf,0x2,0x6,0xff,0xed,0x2,0x7,0xff,0xbf,0x3,0xb9,0xff,0xe8,0x3,0xbf,0xff,0xea,0x3,0xc1,0x0,0xb,0x3,0xc5,0xff,0xea,0x3,0xf6,0x0,0xc,0x3,0xf7,0x0,0xc,0x3,0xfa,0x0,0xc,0x4,0xe6,0xff,0xbf,0x4,0xea,0xff,0xed,0x4,0xeb,0x0,0xd,0x4,0xed,0xff,0xbf,0x4,0xf9,0x0,0xd,0x4,0xfc,0x0,0xd,0x0,0x1,0x0,0xca,0x0,0x20,0x0,0x1,0x0,0xca,0xff,0xea,0x0,0xb,0x0,0x10,0x0,0xc,0x0,0x12,0x0,0xc,0x0,0xbb,0xff,0xe7,0x0,0xc4,0x0,0xf,0x0,0xc8,0xff,0xe7,0x0,0xc9,0xff,0xe7,0x1,0x86,0x0,0xc,0x1,0x8a,0x0,0xc,0x1,0x8e,0x0,0xc,0x1,0x8f,0x0,0xc,0x3,0xb9,0xff,0xe7,0x0,0x14,0x0,0x6,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0xcb,0x0,0x0,0x1,0x84,0x0,0x0,0x1,0x85,0x0,0x0,0x1,0x87,0x0,0x0,0x1,0x88,0x0,0x0,0x1,0x89,0x0,0x0,0x3,0xbd,0x0,0x0,0x3,0xc1,0x0,0x0,0x3,0xc4,0x0,0x0,0x3,0xc6,0x0,0x0,0x3,0xf6,0x0,0x0,0x3,0xf7,0x0,0x0,0x3,0xfa,0x0,0x0,0x0,0x19,0x0,0x6,0xff,0xda,0x0,0xb,0xff,0xda,0x0,0xbb,0xff,0xf0,0x0,0xbd,0xff,0xdc,0x0,0xc2,0xff,0xec,0x0,0xc4,0x0,0xf,0x0,0xc6,0xff,0xea,0x0,0xc8,0xff,0xf0,0x0,0xc9,0xff,0xf0,0x0,0xca,0xff,0xce,0x0,0xcb,0xff,0xef,0x0,0xcc,0xff,0xe7,0x1,0x84,0xff,0xda,0x1,0x85,0xff,0xda,0x1,0x87,0xff,0xda,0x1,0x88,0xff,0xda,0x1,0x89,0xff,0xda,0x3,0xb9,0xff,0xf0,0x3,0xbd,0xff,0xef,0x3,0xc1,0xff,0xdc,0x3,0xc4,0xff,0xef,0x3,0xc6,0xff,0xef,0x3,0xf6,0xff,0xda,0x3,0xf7,0xff,0xda,0x3,0xfa,0xff,0xda,0x0,0x1,0x1,0x85,0xff,0x88,0x0,0x18,0x0,0xbb,0xff,0xdc,0x0,0xbd,0xff,0xe1,0x0,0xbe,0x0,0x0,0x0,0xbf,0xff,0xe6,0x0,0xc1,0xff,0xc1,0x0,0xc2,0xff,0xeb,0x0,0xc3,0xff,0xe9,0x0,0xc5,0xff,0xf0,0x0,0xc6,0xff,0xe7,0x0,0xc8,0xff,0xdc,0x0,0xc9,0xff,0xdc,0x0,0xca,0xff,0xe3,0x0,0xcb,0xff,0xdd,0x0,0xcc,0xff,0xce,0x0,0xcd,0xff,0xd4,0x0,0xce,0xff,0xdb,0x3,0xb9,0xff,0xdc,0x3,0xbb,0xff,0xc1,0x3,0xbd,0xff,0xdd,0x3,0xbf,0xff,0xd6,0x3,0xc1,0xff,0xe1,0x3,0xc4,0xff,0xdd,0x3,0xc5,0xff,0xd6,0x3,0xc6,0xff,0xdd,0x0,0x1,0x0,0xca,0x0,0x0,0x0,0x4,0x0,0xbe,0x0,0x0,0x0,0xc6,0x0,0xb,0x0,0xc7,0xff,0xea,0x0,0xca,0x0,0xc,0x0,0x1,0x0,0xc4,0x0,0xe,0x0,0xb,0x0,0x10,0xff,0x46,0x0,0x12,0xff,0x46,0x0,0xb2,0xff,0xcd,0x0,0xb4,0xff,0xcd,0x0,0xc7,0xff,0xf2,0x1,0x86,0xff,0x46,0x1,0x8a,0xff,0x46,0x1,0x8e,0xff,0x46,0x1,0x8f,0xff,0x46,0x3,0xa1,0xff,0xcd,0x3,0xa9,0xff,0xcd,0x0,0x9,0x0,0xb2,0xff,0xe4,0x0,0xb4,0xff,0xe4,0x0,0xc4,0xff,0xe2,0x3,0xa1,0xff,0xe4,0x3,0xa6,0xff,0xd3,0x3,0xa9,0xff,0xe4,0x3,0xb5,0xff,0xd3,0x3,0xb6,0xff,0xd2,0x3,0xb8,0xff,0xd3,0x0,0x5,0x0,0xb3,0xff,0xe6,0x0,0xb8,0xff,0xc2,0x0,0xc4,0x0,0x10,0x3,0xa5,0xff,0xe6,0x3,0xb2,0xff,0xe6,0x0,0x4,0x0,0xb3,0xff,0xf3,0x0,0xc4,0x0,0xd,0x3,0xa5,0xff,0xf3,0x3,0xb2,0xff,0xf3,0x0,0x5,0x0,0x23,0xff,0xaf,0x0,0xb8,0xff,0xe5,0x0,0xb9,0xff,0xd1,0x0,0xc4,0x0,0x11,0x0,0xca,0xff,0xc8,0x0,0x3,0x0,0xb5,0xff,0xf3,0x0,0xb7,0xff,0xf0,0x0,0xc4,0xff,0xea,0x0,0x5,0x0,0x23,0x0,0x0,0x0,0xb8,0xff,0xe5,0x0,0xb9,0xff,0xd1,0x0,0xc4,0x0,0x11,0x0,0xca,0xff,0xc8,0x0,0xc,0x0,0x6d,0xfe,0xf1,0x0,0x7c,0xfe,0xf4,0x0,0xb8,0xff,0x72,0x0,0xbe,0x0,0x0,0x0,0xbf,0xff,0xf,0x0,0xc3,0xff,0xa,0x0,0xc6,0xff,0x41,0x0,0xc7,0xff,0x7,0x0,0xca,0xff,0x68,0x0,0xcc,0xff,0xf,0x0,0xcd,0xff,0xe,0x0,0xce,0xff,0xc,0x0,0x2,0x0,0xbd,0x0,0x0,0x3,0xc1,0x0,0x0,0x0,0x3,0x0,0xb5,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x3,0x3,0xa6,0x0,0x16,0x3,0xb5,0x0,0x16,0x3,0xb8,0x0,0x16,0x0,0x2,0x0,0x8,0x0,0x2,0xf,0x6c,0x0,0xa,0x0,0x2,0x8,0x8,0x0,0x4,0x0,0x0,0xc,0xdc,0x9,0x18,0x0,0x22,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x12,0xff,0xe4,0x0,0x11,0x0,0x0,0xff,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe4,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0xff,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x88,0x0,0x0,0x0,0x0,0xff,0xa5,0x0,0x0,0xff,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xa4,0x0,0x0,0x0,0x0,0xff,0xf3,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd7,0xff,0xf1,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe6,0xff,0xe7,0x0,0x0,0xff,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe7,0x0,0x0,0xff,0x64,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xff,0xeb,0xff,0xd1,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe6,0xff,0xe1,0x0,0x0,0xff,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe7,0x0,0x0,0xff,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe5,0xff,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf2,0xff,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x55,0xff,0x55,0xff,0xbd,0x0,0x0,0xff,0x61,0x0,0x0,0xff,0x6a,0xfe,0x36,0x0,0x0,0x0,0x7,0xfe,0x1e,0x0,0x0,0xff,0x92,0x0,0x0,0x0,0x0,0xff,0x33,0x0,0x0,0xff,0xf,0xff,0x66,0xff,0xc,0xff,0x5f,0x0,0x0,0x0,0x7,0x0,0x7,0x0,0x0,0x0,0x0,0xff,0x33,0x0,0x0,0xff,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0,0x0,0x0,0xff,0xc9,0x0,0x0,0x0,0x0,0xff,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0xff,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc8,0xff,0xad,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xae,0xff,0xbd,0xff,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x77,0x0,0x0,0x0,0x12,0xff,0x39,0x0,0x0,0xff,0xca,0x0,0x0,0x0,0x0,0xff,0xa5,0x0,0x0,0xff,0xbb,0xff,0xbd,0xff,0xe9,0xff,0xaf,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0xff,0xa5,0x0,0x0,0xff,0xd2,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd8,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0xff,0xf5,0x0,0x0,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x79,0xff,0xb5,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0xff,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xed,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd0,0x0,0x0,0xff,0xeb,0xff,0x88,0xff,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0xff,0x88,0x0,0x0,0xff,0xc7,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc9,0x0,0x12,0xff,0xf4,0xff,0xdf,0x0,0x0,0xff,0xc4,0xff,0xb3,0xff,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xa8,0xff,0xf1,0x0,0x0,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0xff,0x86,0x0,0x0,0xff,0xab,0x0,0x0,0x0,0x0,0xff,0xe1,0x0,0x0,0xff,0xf5,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0xff,0xd5,0xff,0xed,0xff,0xed,0xff,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xef,0xff,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xa7,0xff,0xa7,0xff,0xe4,0x0,0x0,0xff,0xae,0x0,0x0,0xff,0xb3,0xfe,0xfe,0xff,0xb9,0x0,0x10,0xfe,0xf0,0xff,0xf1,0xff,0xcb,0x0,0x0,0xff,0xed,0xff,0x88,0x0,0x0,0xff,0x7e,0xff,0x30,0xff,0x7c,0xff,0x58,0x0,0x0,0x0,0x10,0x0,0x10,0xff,0xaf,0xff,0xaf,0xff,0x88,0xff,0x28,0xff,0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd4,0xff,0xf3,0x0,0x0,0xff,0xf5,0x0,0x0,0x0,0x0,0xff,0x29,0xff,0xd9,0x0,0x0,0xff,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb5,0x0,0x0,0x0,0x0,0xff,0xd2,0x0,0x0,0xff,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb4,0xff,0xb4,0xff,0xb5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd8,0xff,0xbf,0xff,0xe3,0x0,0x0,0xff,0xec,0x0,0xd,0xff,0xe9,0xff,0x19,0xff,0xcb,0x0,0x11,0xff,0x68,0xff,0xf3,0x0,0x0,0x0,0x0,0xff,0xef,0xff,0x6a,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0xff,0xc1,0x0,0x0,0x0,0x12,0x0,0x12,0xff,0xab,0xff,0xab,0xff,0x6a,0xff,0xa0,0xff,0xc6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf2,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xee,0x0,0x0,0x0,0x0,0xff,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xd0,0x0,0x0,0xff,0xeb,0x0,0x0,0xff,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf5,0xff,0x88,0x0,0x0,0xff,0xc7,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc9,0x0,0x12,0xff,0xf4,0xff,0xdf,0x0,0x0,0xff,0xc4,0xff,0xb3,0xff,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xeb,0xff,0xeb,0xff,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe8,0xff,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf3,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xcd,0x0,0x0,0xfe,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x6f,0x0,0x0,0x0,0x0,0xff,0x4e,0x0,0x0,0xff,0xa7,0xff,0xf3,0x0,0x0,0xff,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0xff,0x80,0xff,0x4e,0xff,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x86,0x0,0x6,0x0,0xb,0x0,0x96,0x0,0xb2,0x0,0xd4,0x0,0xd5,0x0,0xd7,0x0,0xda,0x0,0xdc,0x0,0xdd,0x0,0xde,0x0,0xe0,0x0,0xe1,0x0,0xe2,0x0,0xe3,0x0,0xe4,0x0,0xe5,0x0,0xe6,0x0,0xec,0x0,0xee,0x0,0xf7,0x0,0xfc,0x0,0xfe,0x0,0xff,0x1,0x4,0x1,0x5,0x1,0xa,0x1,0xd,0x1,0x18,0x1,0x19,0x1,0x1a,0x1,0x2e,0x1,0x2f,0x1,0x30,0x1,0x33,0x1,0x34,0x1,0x35,0x1,0x37,0x1,0x39,0x1,0x3b,0x1,0x43,0x1,0x44,0x1,0x54,0x1,0x56,0x1,0x58,0x1,0x5c,0x1,0x5d,0x1,0x5e,0x1,0x84,0x1,0x85,0x1,0x87,0x1,0x88,0x1,0x89,0x2,0x5,0x2,0x19,0x2,0x28,0x2,0x29,0x2,0x2a,0x3,0xc8,0x3,0xc9,0x3,0xcb,0x3,0xcc,0x3,0xcd,0x3,0xce,0x3,0xcf,0x3,0xd0,0x3,0xd1,0x3,0xd2,0x3,0xd3,0x3,0xd4,0x3,0xd6,0x3,0xd7,0x3,0xd8,0x3,0xda,0x3,0xdb,0x3,0xdc,0x3,0xdd,0x3,0xde,0x3,0xdf,0x3,0xe1,0x3,0xe2,0x3,0xe3,0x3,0xe4,0x3,0xe5,0x3,0xe6,0x3,0xe7,0x3,0xed,0x3,0xf6,0x3,0xf7,0x3,0xfa,0x3,0xff,0x4,0x1,0x4,0x5,0x4,0x6,0x4,0xb,0x4,0xc,0x4,0xd,0x4,0xe,0x4,0xf,0x4,0x10,0x4,0x11,0x4,0x12,0x4,0x13,0x4,0x14,0x4,0x15,0x4,0x16,0x4,0x19,0x4,0x1a,0x4,0x1c,0x4,0x1d,0x4,0x1e,0x4,0x1f,0x4,0x26,0x4,0x27,0x4,0x2b,0x4,0x2d,0x4,0x2e,0x4,0x2f,0x4,0x30,0x4,0x31,0x4,0x32,0x4,0x33,0x4,0x92,0x4,0x96,0x4,0x97,0x4,0x9a,0x4,0x9c,0x4,0x9d,0x4,0x9f,0x4,0xa1,0x5,0x3,0x5,0x5,0x5,0xc,0x5,0x10,0x0,0x2,0x0,0xa0,0x0,0x6,0x0,0x6,0x0,0x4,0x0,0xb,0x0,0xb,0x0,0x4,0x0,0x10,0x0,0x10,0x0,0x8,0x0,0x11,0x0,0x11,0x0,0xb,0x0,0x12,0x0,0x12,0x0,0x8,0x0,0xb2,0x0,0xb2,0x0,0x1b,0x0,0xd2,0x0,0xd2,0x0,0xa,0x0,0xd3,0x0,0xd3,0x0,0x3,0x0,0xd4,0x0,0xd4,0x0,0xd,0x0,0xd6,0x0,0xd6,0x0,0xa,0x0,0xda,0x0,0xda,0x0,0x6,0x0,0xdd,0x0,0xdd,0x0,0xd,0x0,0xde,0x0,0xde,0x0,0xe,0x0,0xe1,0x0,0xe1,0x0,0x11,0x0,0xec,0x0,0xec,0x0,0x1,0x0,0xee,0x0,0xee,0x0,0x7,0x0,0xf0,0x0,0xf1,0x0,0x1,0x0,0xf2,0x0,0xf2,0x0,0x12,0x0,0xf3,0x0,0xf5,0x0,0x1,0x0,0xf7,0x0,0xf7,0x0,0x2,0x0,0xf8,0x0,0xf8,0x0,0x1,0x0,0xf9,0x0,0xf9,0x0,0x14,0x0,0xfa,0x0,0xfb,0x0,0x1,0x0,0xfe,0x0,0xfe,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x1,0x1,0x3,0x1,0x3,0x0,0x2,0x1,0x4,0x1,0x4,0x0,0x12,0x1,0x5,0x1,0x5,0x0,0x1,0x1,0x8,0x1,0x8,0x0,0x3,0x1,0xd,0x1,0xd,0x0,0x10,0x1,0x17,0x1,0x17,0x0,0x3,0x1,0x18,0x1,0x18,0x0,0x13,0x1,0x19,0x1,0x19,0x0,0x17,0x1,0x1a,0x1,0x1a,0x0,0x5,0x1,0x1b,0x1,0x1b,0x0,0x3,0x1,0x1d,0x1,0x1d,0x0,0x3,0x1,0x1e,0x1,0x1e,0x0,0x2,0x1,0x1f,0x1,0x1f,0x0,0x3,0x1,0x21,0x1,0x21,0x0,0x3,0x1,0x22,0x1,0x22,0x0,0x2,0x1,0x2b,0x1,0x2b,0x0,0x1,0x1,0x33,0x1,0x33,0x0,0x6,0x1,0x34,0x1,0x34,0x0,0x7,0x1,0x36,0x1,0x36,0x0,0x1,0x1,0x39,0x1,0x39,0x0,0xa,0x1,0x3c,0x1,0x3c,0x0,0x1,0x1,0x3e,0x1,0x3e,0x0,0x1,0x1,0x41,0x1,0x41,0x0,0x3,0x1,0x42,0x1,0x42,0x0,0x2,0x1,0x43,0x1,0x43,0x0,0x6,0x1,0x44,0x1,0x44,0x0,0x7,0x1,0x45,0x1,0x45,0x0,0xa,0x1,0x47,0x1,0x47,0x0,0x11,0x1,0x48,0x1,0x48,0x0,0x14,0x1,0x50,0x1,0x50,0x0,0xd,0x1,0x51,0x1,0x51,0x0,0x12,0x1,0x53,0x1,0x53,0x0,0x1,0x1,0x55,0x1,0x55,0x0,0x1,0x1,0x57,0x1,0x57,0x0,0x1,0x1,0x5c,0x1,0x5c,0x0,0x1,0x1,0x5d,0x1,0x5d,0x0,0x6,0x1,0x5e,0x1,0x5e,0x0,0x7,0x1,0x60,0x1,0x61,0x0,0x2,0x1,0x66,0x1,0x66,0x0,0xd,0x1,0x6a,0x1,0x6a,0x0,0x3,0x1,0x6b,0x1,0x6b,0x0,0x2,0x1,0x6f,0x1,0x6f,0x0,0xd,0x1,0x70,0x1,0x70,0x0,0x12,0x1,0x81,0x1,0x82,0x0,0xb,0x1,0x84,0x1,0x85,0x0,0x4,0x1,0x86,0x1,0x86,0x0,0x8,0x1,0x87,0x1,0x89,0x0,0x4,0x1,0x8a,0x1,0x8a,0x0,0x8,0x1,0x8e,0x1,0x8f,0x0,0x8,0x2,0x5,0x2,0x5,0x0,0x19,0x2,0xe,0x2,0xe,0x0,0xc,0x2,0xf,0x2,0xf,0x0,0x9,0x2,0x12,0x2,0x12,0x0,0xc,0x2,0x16,0x2,0x16,0x0,0xf,0x2,0x27,0x2,0x27,0x0,0xf,0x2,0x2a,0x2,0x2a,0x0,0xc,0x2,0x2b,0x2,0x2b,0x0,0x9,0x2,0x2c,0x2,0x2c,0x0,0x16,0x2,0x2d,0x2,0x2d,0x0,0xf,0x2,0x2e,0x2,0x2e,0x0,0xc,0x2,0x34,0x2,0x34,0x0,0x9,0x2,0x94,0x2,0x94,0x0,0xb,0x3,0xcd,0x3,0xcd,0x0,0x1c,0x3,0xd0,0x3,0xd0,0x0,0xe,0x3,0xd1,0x3,0xd1,0x0,0x10,0x3,0xd8,0x3,0xd8,0x0,0x3,0x3,0xdb,0x3,0xdb,0x0,0x3,0x3,0xdc,0x3,0xdc,0x0,0xa,0x3,0xdd,0x3,0xdd,0x0,0x6,0x3,0xde,0x3,0xde,0x0,0x15,0x3,0xdf,0x3,0xdf,0x0,0x2,0x3,0xe0,0x3,0xe0,0x0,0x1,0x3,0xe1,0x3,0xe1,0x0,0x13,0x3,0xe2,0x3,0xe2,0x0,0x1,0x3,0xe3,0x3,0xe3,0x0,0x2,0x3,0xe4,0x3,0xe4,0x0,0x5,0x3,0xe5,0x3,0xe5,0x0,0x7,0x3,0xe6,0x3,0xe6,0x0,0x2,0x3,0xe7,0x3,0xe7,0x0,0x1,0x3,0xe8,0x3,0xe8,0x0,0x1d,0x3,0xec,0x3,0xec,0x0,0x1,0x3,0xed,0x3,0xed,0x0,0x5,0x3,0xf6,0x3,0xf7,0x0,0x4,0x3,0xfa,0x3,0xfa,0x0,0x4,0x4,0x1,0x4,0x1,0x0,0x2,0x4,0x2,0x4,0x2,0x0,0x1,0x4,0x5,0x4,0x5,0x0,0x17,0x4,0x6,0x4,0x6,0x0,0x5,0x4,0x7,0x4,0x7,0x0,0x2,0x4,0x8,0x4,0x8,0x0,0x3,0x4,0xb,0x4,0xb,0x0,0x3,0x4,0xc,0x4,0xc,0x0,0x2,0x4,0xd,0x4,0xd,0x0,0x18,0x4,0xe,0x4,0xe,0x0,0x5,0x4,0x10,0x4,0x10,0x0,0x6,0x4,0x11,0x4,0x11,0x0,0x7,0x4,0x13,0x4,0x13,0x0,0x10,0x4,0x14,0x4,0x14,0x0,0x15,0x4,0x15,0x4,0x15,0x0,0x10,0x4,0x16,0x4,0x16,0x0,0x15,0x4,0x1a,0x4,0x1a,0x0,0x2,0x4,0x1c,0x4,0x1d,0x0,0x2,0x4,0x1e,0x4,0x1e,0x0,0x6,0x4,0x1f,0x4,0x1f,0x0,0x7,0x4,0x23,0x4,0x23,0x0,0x1,0x4,0x25,0x4,0x25,0x0,0x1,0x4,0x26,0x4,0x26,0x0,0x3,0x4,0x27,0x4,0x27,0x0,0x13,0x4,0x28,0x4,0x28,0x0,0x3,0x4,0x29,0x4,0x29,0x0,0x2,0x4,0x2a,0x4,0x2a,0x0,0x3,0x4,0x2b,0x4,0x2b,0x0,0x13,0x4,0x2e,0x4,0x2e,0x0,0xe,0x4,0x2f,0x4,0x2f,0x0,0x5,0x4,0x30,0x4,0x30,0x0,0xe,0x4,0x31,0x4,0x31,0x0,0x5,0x4,0x32,0x4,0x32,0x0,0xe,0x4,0x33,0x4,0x33,0x0,0x5,0x4,0x34,0x4,0x34,0x0,0x11,0x4,0x35,0x4,0x35,0x0,0x14,0x4,0x37,0x4,0x37,0x0,0x1,0x4,0x38,0x4,0x38,0x0,0x2,0x4,0x92,0x4,0x92,0x0,0xa,0x4,0x94,0x4,0x94,0x0,0x11,0x4,0x95,0x4,0x95,0x0,0x14,0x4,0x97,0x4,0x97,0x0,0x1,0x4,0xa1,0x4,0xa1,0x0,0x18,0x4,0xa7,0x4,0xa7,0x0,0xb,0x5,0x5,0x5,0x5,0x0,0x1a,0x5,0xc,0x5,0xc,0x0,0x9,0x5,0xf,0x5,0xf,0x0,0x9,0x5,0x10,0x5,0x10,0x0,0xc,0x5,0x11,0x5,0x11,0x0,0xf,0x5,0x14,0x5,0x14,0x0,0x9,0x5,0x15,0x5,0x15,0x0,0x16,0x0,0x2,0x0,0x6b,0x0,0x6,0x0,0x6,0x0,0x1,0x0,0xb,0x0,0xb,0x0,0x1,0x0,0x96,0x0,0x96,0x0,0x1c,0x0,0xb2,0x0,0xb2,0x0,0x1d,0x0,0xd4,0x0,0xd5,0x0,0x9,0x0,0xda,0x0,0xda,0x0,0x3,0x0,0xde,0x0,0xde,0x0,0xa,0x0,0xe4,0x0,0xe4,0x0,0x9,0x0,0xe6,0x0,0xe6,0x0,0x9,0x0,0xec,0x0,0xec,0x0,0xb,0x0,0xee,0x0,0xee,0x0,0x4,0x0,0xf7,0x0,0xf7,0x0,0xc,0x0,0xfc,0x0,0xfc,0x0,0xd,0x0,0xfe,0x0,0xfe,0x0,0xd,0x0,0xff,0x0,0xff,0x0,0xc,0x1,0x4,0x1,0x5,0x0,0xd,0x1,0xa,0x1,0xa,0x0,0xd,0x1,0xd,0x1,0xd,0x0,0xf,0x1,0x18,0x1,0x18,0x0,0x10,0x1,0x19,0x1,0x19,0x0,0x16,0x1,0x1a,0x1,0x1a,0x0,0x2,0x1,0x2e,0x1,0x2e,0x0,0xc,0x1,0x2f,0x1,0x2f,0x0,0x8,0x1,0x30,0x1,0x30,0x0,0xb,0x1,0x33,0x1,0x33,0x0,0x3,0x1,0x34,0x1,0x34,0x0,0x4,0x1,0x35,0x1,0x35,0x0,0x5,0x1,0x37,0x1,0x37,0x0,0x5,0x1,0x39,0x1,0x39,0x0,0x5,0x1,0x43,0x1,0x43,0x0,0x3,0x1,0x44,0x1,0x44,0x0,0x4,0x1,0x58,0x1,0x58,0x0,0x11,0x1,0x5c,0x1,0x5c,0x0,0xb,0x1,0x5d,0x1,0x5d,0x0,0x3,0x1,0x5e,0x1,0x5e,0x0,0x4,0x1,0x84,0x1,0x85,0x0,0x1,0x1,0x87,0x1,0x89,0x0,0x1,0x2,0x5,0x2,0x5,0x0,0x18,0x2,0x19,0x2,0x19,0x0,0x7,0x2,0x28,0x2,0x2a,0x0,0x7,0x3,0xc8,0x3,0xc8,0x0,0xe,0x3,0xc9,0x3,0xc9,0x0,0x8,0x3,0xcd,0x3,0xcd,0x0,0x1e,0x3,0xce,0x3,0xcf,0x0,0x5,0x3,0xd0,0x3,0xd0,0x0,0xa,0x3,0xd1,0x3,0xd1,0x0,0xf,0x3,0xd2,0x3,0xd2,0x0,0x1f,0x3,0xd3,0x3,0xd3,0x0,0x8,0x3,0xd4,0x3,0xd4,0x0,0xe,0x3,0xd8,0x3,0xd8,0x0,0x11,0x3,0xda,0x3,0xda,0x0,0x20,0x3,0xdb,0x3,0xdb,0x0,0x13,0x3,0xdc,0x3,0xdc,0x0,0x14,0x3,0xdd,0x3,0xdd,0x0,0x3,0x3,0xde,0x3,0xde,0x0,0x12,0x3,0xdf,0x3,0xdf,0x0,0x6,0x3,0xe1,0x3,0xe1,0x0,0x10,0x3,0xe2,0x3,0xe2,0x0,0xc,0x3,0xe3,0x3,0xe3,0x0,0x15,0x3,0xe4,0x3,0xe4,0x0,0x2,0x3,0xe5,0x3,0xe5,0x0,0x4,0x3,0xe6,0x3,0xe6,0x0,0x6,0x3,0xe7,0x3,0xe7,0x0,0xb,0x3,0xed,0x3,0xed,0x0,0x2,0x3,0xf6,0x3,0xf7,0x0,0x1,0x3,0xfa,0x3,0xfa,0x0,0x1,0x3,0xff,0x3,0xff,0x0,0xe,0x4,0x1,0x4,0x1,0x0,0x6,0x4,0x5,0x4,0x5,0x0,0x16,0x4,0x6,0x4,0x6,0x0,0x2,0x4,0xb,0x4,0xb,0x0,0x13,0x4,0xc,0x4,0xc,0x0,0x15,0x4,0xd,0x4,0xd,0x0,0x17,0x4,0xe,0x4,0xe,0x0,0x2,0x4,0x10,0x4,0x10,0x0,0x3,0x4,0x11,0x4,0x11,0x0,0x4,0x4,0x13,0x4,0x13,0x0,0xf,0x4,0x14,0x4,0x14,0x0,0x12,0x4,0x15,0x4,0x15,0x0,0xf,0x4,0x16,0x4,0x16,0x0,0x12,0x4,0x19,0x4,0x19,0x0,0xe,0x4,0x1a,0x4,0x1a,0x0,0x6,0x4,0x1c,0x4,0x1d,0x0,0x6,0x4,0x1e,0x4,0x1e,0x0,0x3,0x4,0x1f,0x4,0x1f,0x0,0x4,0x4,0x26,0x4,0x26,0x0,0x11,0x4,0x27,0x4,0x27,0x0,0x10,0x4,0x2b,0x4,0x2b,0x0,0x10,0x4,0x2d,0x4,0x2d,0x0,0xc,0x4,0x2e,0x4,0x2e,0x0,0xa,0x4,0x2f,0x4,0x2f,0x0,0x2,0x4,0x30,0x4,0x30,0x0,0xa,0x4,0x31,0x4,0x31,0x0,0x2,0x4,0x32,0x4,0x32,0x0,0xa,0x4,0x33,0x4,0x33,0x0,0x2,0x4,0x92,0x4,0x92,0x0,0x14,0x4,0x96,0x4,0x96,0x0,0x8,0x4,0x97,0x4,0x97,0x0,0xb,0x4,0x9a,0x4,0x9a,0x0,0x21,0x4,0x9c,0x4,0x9c,0x0,0x9,0x4,0x9d,0x4,0x9d,0x0,0x8,0x4,0x9f,0x4,0x9f,0x0,0x5,0x4,0xa1,0x4,0xa1,0x0,0x17,0x5,0x3,0x5,0x3,0x0,0x7,0x5,0x5,0x5,0x5,0x0,0x19,0x5,0xc,0x5,0xc,0x0,0x1a,0x5,0x10,0x5,0x10,0x0,0x1b,0x0,0x1,0x1,0x14,0x0,0x4,0x0,0x0,0x0,0x85,0x15,0xbe,0x15,0xac,0x15,0xa6,0x15,0xa0,0x15,0x92,0x15,0x6c,0x15,0x36,0x13,0xc8,0x12,0xb2,0x11,0x6c,0x10,0x9e,0x10,0x7c,0xf,0x62,0xe,0x74,0xe,0x42,0xd,0xc0,0x10,0x7c,0x10,0x7c,0xd,0x76,0x10,0x7c,0x10,0x7c,0x10,0x7c,0xc,0x8c,0xc,0xe,0x10,0x7c,0xb,0xe4,0xb,0x66,0xa,0xf0,0xa,0xce,0xa,0x24,0x9,0xc6,0x9,0xbc,0x9,0x1e,0x9,0x18,0x8,0xee,0x8,0x74,0x7,0x62,0x7,0x4c,0x7,0xe,0x6,0x84,0x6,0x2e,0x6,0x8,0x7,0x4c,0x5,0xb2,0x5,0x88,0x5,0x36,0x5,0x0,0x6,0x8,0x4,0xc6,0x4,0xa4,0x4,0x96,0x4,0x8c,0x4,0x62,0x7,0x4c,0x3,0xd8,0x9,0xbc,0xe,0x42,0x9,0x18,0x3,0xa2,0x3,0xa2,0x3,0xa2,0x10,0x7c,0xe,0x42,0x9,0x18,0x10,0x7c,0x10,0x7c,0x3,0x94,0x9,0xbc,0xe,0x42,0x9,0x18,0x3,0x32,0x3,0xd8,0x10,0x7c,0x10,0x7c,0x3,0xa2,0x3,0xa2,0xd,0x76,0x4,0xc6,0x3,0x28,0x3,0xd8,0x10,0x7c,0x10,0x7c,0x3,0x94,0x3,0x1a,0x3,0x8,0x2,0x7a,0xe,0x42,0x2,0x58,0x2,0x4e,0x4,0xa4,0x7,0x4c,0x4,0x8c,0x9,0x18,0x2,0x4e,0x9,0xbc,0x4,0x8c,0x2,0x4e,0x4,0x96,0x4,0x8c,0x3,0x8,0x2,0x2c,0x4,0x8c,0x10,0x7c,0xe,0x42,0x9,0x18,0x10,0x7c,0x4,0xc6,0x2,0x58,0x4,0xc6,0x2,0x58,0x2,0x4e,0x2,0x4e,0x2,0x4e,0xe,0x42,0x9,0x18,0x3,0x94,0x4,0xa4,0x4,0xa4,0x7,0x4c,0xd,0x76,0x4,0x8c,0xd,0x76,0x4,0x8c,0xd,0x76,0x4,0x8c,0x2,0x7a,0x3,0xd8,0x9,0xbc,0x2,0x22,0xb,0xe4,0x3,0xd8,0x3,0xa2,0x2,0x2c,0x0,0x1,0x0,0x85,0x0,0x4,0x0,0xc,0x0,0x3f,0x0,0x5f,0x0,0x96,0x0,0x9d,0x0,0xb2,0x0,0xd2,0x0,0xd4,0x0,0xd5,0x0,0xd6,0x0,0xd7,0x0,0xd8,0x0,0xd9,0x0,0xda,0x0,0xdb,0x0,0xdc,0x0,0xdd,0x0,0xde,0x0,0xe0,0x0,0xe1,0x0,0xe2,0x0,0xe3,0x0,0xe4,0x0,0xe5,0x0,0xe6,0x0,0xe7,0x0,0xe8,0x0,0xe9,0x0,0xea,0x0,0xeb,0x0,0xec,0x0,0xed,0x0,0xee,0x0,0xef,0x0,0xf1,0x0,0xf6,0x0,0xf7,0x0,0xf8,0x0,0xfb,0x0,0xfc,0x0,0xfe,0x0,0xff,0x1,0x0,0x1,0x3,0x1,0x4,0x1,0x5,0x1,0xa,0x1,0xd,0x1,0x18,0x1,0x19,0x1,0x1a,0x1,0x22,0x1,0x2e,0x1,0x2f,0x1,0x30,0x1,0x33,0x1,0x34,0x1,0x35,0x1,0x37,0x1,0x39,0x1,0x3b,0x1,0x43,0x1,0x44,0x1,0x54,0x1,0x56,0x1,0x58,0x1,0x5c,0x1,0x5d,0x1,0x5e,0x1,0x85,0x3,0xc9,0x3,0xcb,0x3,0xcc,0x3,0xce,0x3,0xcf,0x3,0xd0,0x3,0xd1,0x3,0xd2,0x3,0xd3,0x3,0xd6,0x3,0xd7,0x3,0xd8,0x3,0xda,0x3,0xdb,0x3,0xdc,0x3,0xdd,0x3,0xde,0x3,0xdf,0x3,0xe1,0x3,0xe2,0x3,0xe4,0x3,0xe5,0x3,0xe6,0x3,0xe7,0x3,0xed,0x4,0x1,0x4,0x5,0x4,0x6,0x4,0xb,0x4,0xd,0x4,0xe,0x4,0xf,0x4,0x10,0x4,0x11,0x4,0x12,0x4,0x13,0x4,0x14,0x4,0x15,0x4,0x16,0x4,0x1a,0x4,0x1c,0x4,0x1d,0x4,0x1e,0x4,0x1f,0x4,0x26,0x4,0x27,0x4,0x2b,0x4,0x2d,0x4,0x2e,0x4,0x2f,0x4,0x30,0x4,0x31,0x4,0x32,0x4,0x33,0x4,0x92,0x4,0x96,0x4,0x97,0x4,0x9a,0x4,0x9c,0x4,0x9d,0x4,0x9f,0x4,0xa1,0x0,0x2,0x0,0xf6,0xff,0xd6,0x1,0x85,0xff,0x88,0x0,0x8,0x0,0xa,0xff,0xe2,0x0,0xd,0x0,0x14,0x0,0xe,0xff,0xcf,0x0,0x41,0x0,0x12,0x0,0x61,0x0,0x13,0x0,0x6d,0xff,0xae,0x0,0x7c,0xff,0xcd,0x1,0x8d,0xff,0xd3,0x0,0x2,0x0,0xf6,0xff,0xf5,0x1,0x85,0xff,0xc0,0x0,0x8,0x0,0xf6,0xff,0xf0,0x0,0xfe,0xff,0xf0,0x1,0x9,0xff,0xf1,0x1,0x20,0xff,0xf3,0x1,0x3a,0xff,0xf1,0x1,0x63,0xff,0xf3,0x1,0x65,0xff,0xf3,0x1,0x6d,0xff,0xf1,0x0,0x23,0x0,0x4,0xff,0xc4,0x0,0x6d,0xff,0x6c,0x0,0x7c,0xff,0x6e,0x0,0xd9,0xff,0xaf,0x0,0xe6,0x0,0xf,0x0,0xea,0xff,0xe4,0x0,0xeb,0xff,0xa0,0x0,0xed,0xff,0x74,0x0,0xef,0xff,0x80,0x0,0xf6,0xff,0xb2,0x0,0xfd,0xff,0x7d,0x0,0xfe,0xff,0xb2,0x0,0xff,0xff,0x80,0x1,0x1,0xff,0x79,0x1,0x2,0x0,0x28,0x1,0x7,0xff,0x7d,0x1,0x9,0xff,0x7f,0x1,0x1c,0xff,0x66,0x1,0x20,0xff,0xda,0x1,0x2e,0xff,0x81,0x1,0x30,0xff,0x98,0x1,0x38,0xff,0x7d,0x1,0x3a,0xff,0xb3,0x1,0x40,0xff,0xa0,0x1,0x4a,0xff,0x7c,0x1,0x4c,0xff,0x9a,0x1,0x4d,0xff,0x6c,0x1,0x58,0xff,0xe6,0x1,0x5f,0xff,0x6b,0x1,0x63,0xff,0x92,0x1,0x65,0xff,0xad,0x1,0x69,0xff,0x7b,0x1,0x6c,0x0,0xf,0x1,0x6d,0xff,0x91,0x1,0x6e,0xff,0xf2,0x0,0x4,0x0,0xd,0xff,0xe6,0x0,0x41,0xff,0xf4,0x0,0x61,0xff,0xef,0x1,0x4d,0xff,0xed,0x0,0x3,0x0,0xd9,0xff,0x12,0x0,0xed,0xff,0x52,0x1,0x5f,0xff,0xcf,0x0,0x2,0x1,0x11,0x0,0xb,0x1,0x6c,0xff,0xe6,0x0,0x18,0x0,0xf7,0xff,0x98,0x1,0x3,0xff,0x98,0x1,0x18,0xff,0x70,0x1,0x1e,0xff,0x98,0x1,0x22,0xff,0x98,0x1,0x42,0xff,0x98,0x1,0x60,0xff,0x98,0x1,0x61,0xff,0x98,0x1,0x6b,0xff,0x98,0x3,0xdf,0xff,0x98,0x3,0xe1,0xff,0x70,0x3,0xe3,0xff,0x98,0x3,0xe6,0xff,0x98,0x3,0xe8,0xff,0x18,0x4,0x1,0xff,0x98,0x4,0x7,0xff,0x98,0x4,0xc,0xff,0x98,0x4,0x1a,0xff,0x98,0x4,0x1c,0xff,0x98,0x4,0x1d,0xff,0x98,0x4,0x27,0xff,0x70,0x4,0x29,0xff,0x98,0x4,0x2b,0xff,0x70,0x4,0x38,0xff,0x98,0x0,0x3,0x0,0xd9,0xff,0xdf,0x0,0xe6,0xff,0xe0,0x1,0x6c,0xff,0xe0,0x0,0xd,0x0,0xea,0xff,0xd7,0x0,0xf6,0xff,0xb9,0x0,0xfe,0xff,0xe9,0x1,0x9,0xff,0xb2,0x1,0x1c,0xff,0xd2,0x1,0x20,0xff,0xc8,0x1,0x3a,0xff,0xa0,0x1,0x4a,0xff,0xc5,0x1,0x58,0xff,0xe4,0x1,0x63,0xff,0xcc,0x1,0x65,0xff,0xcc,0x1,0x6d,0xff,0xcb,0x1,0x6e,0xff,0xef,0x0,0x22,0x0,0x6d,0xfe,0xf1,0x0,0x7c,0xfe,0xf4,0x0,0xd9,0xff,0x63,0x0,0xe6,0x0,0x5,0x0,0xea,0xff,0xbd,0x0,0xeb,0xff,0x49,0x0,0xed,0xfe,0xfe,0x0,0xef,0xff,0x13,0x0,0xf6,0xff,0x68,0x0,0xfd,0xff,0xe,0x0,0xfe,0xff,0x68,0x0,0xff,0xff,0x13,0x1,0x1,0xff,0x7,0x1,0x2,0x0,0x30,0x1,0x7,0xff,0xe,0x1,0x9,0xff,0x11,0x1,0x1c,0xfe,0xe7,0x1,0x20,0xff,0xac,0x1,0x2e,0xff,0x15,0x1,0x30,0xff,0x3c,0x1,0x38,0xff,0xe,0x1,0x3a,0xff,0x6a,0x1,0x40,0xff,0x49,0x1,0x4a,0xff,0xc,0x1,0x4c,0xff,0x3f,0x1,0x4d,0xfe,0xf1,0x1,0x58,0xff,0xc0,0x1,0x5f,0xfe,0xef,0x1,0x63,0xff,0x31,0x1,0x65,0xff,0x5f,0x1,0x69,0xff,0xa,0x1,0x6c,0x0,0x5,0x1,0x6d,0xff,0x30,0x1,0x6e,0xff,0xd5,0x0,0xa,0x0,0x6,0xff,0xd7,0x0,0xb,0xff,0xd7,0x1,0x84,0xff,0xd7,0x1,0x85,0xff,0xd7,0x1,0x87,0xff,0xd7,0x1,0x88,0xff,0xd7,0x1,0x89,0xff,0xd7,0x3,0xf6,0xff,0xd7,0x3,0xf7,0xff,0xd7,0x3,0xfa,0xff,0xd7,0x0,0x2,0x0,0xed,0xff,0xc8,0x1,0x1c,0xff,0xf1,0x0,0x3,0x0,0xd,0x0,0x14,0x0,0x41,0x0,0x11,0x0,0x61,0x0,0x13,0x0,0x8,0x0,0xed,0xff,0xb8,0x0,0xf6,0xff,0xe2,0x1,0x9,0xff,0xf0,0x1,0x20,0xff,0xf1,0x1,0x3a,0xff,0xeb,0x1,0x63,0xff,0xf5,0x1,0x6d,0xff,0xec,0x1,0x85,0xff,0x90,0x0,0xe,0x0,0x23,0xff,0xaf,0x0,0xd9,0x0,0x13,0x0,0xe6,0xff,0xc5,0x0,0xf6,0xff,0xca,0x1,0x3a,0xff,0x81,0x1,0x49,0xff,0x65,0x1,0x4a,0xff,0x85,0x1,0x4c,0xff,0x66,0x1,0x4d,0xff,0xdd,0x1,0x58,0xff,0xf2,0x1,0x62,0xff,0xb1,0x1,0x64,0xff,0xca,0x1,0x6c,0xff,0xa9,0x1,0x6d,0xff,0xc8,0x0,0xd,0x0,0xf6,0xff,0x64,0x0,0xf9,0xff,0xd2,0x0,0xfe,0xff,0xd9,0x1,0x9,0xff,0xd9,0x1,0x20,0xff,0xdb,0x1,0x3a,0xff,0x1e,0x1,0x48,0xff,0xd2,0x1,0x4a,0xff,0xed,0x1,0x63,0xff,0xf0,0x1,0x65,0xff,0xf2,0x1,0x6d,0xff,0x56,0x4,0x35,0xff,0xd2,0x4,0x95,0xff,0xd2,0x0,0x14,0x0,0xee,0xff,0xe0,0x0,0xf6,0xff,0x76,0x0,0xf9,0xff,0xc2,0x0,0xfe,0xff,0xd3,0x1,0x9,0xff,0xd9,0x1,0x20,0xff,0xdb,0x1,0x34,0xff,0xe0,0x1,0x3a,0xff,0x1e,0x1,0x44,0xff,0xe0,0x1,0x48,0xff,0xc2,0x1,0x4a,0xff,0xed,0x1,0x5e,0xff,0xe0,0x1,0x63,0xff,0xf0,0x1,0x65,0xff,0xf2,0x1,0x6d,0xff,0x56,0x3,0xe5,0xff,0xe0,0x4,0x11,0xff,0xe0,0x4,0x1f,0xff,0xe0,0x4,0x35,0xff,0xc2,0x4,0x95,0xff,0xc2,0x0,0xa,0x0,0x6,0xff,0xd6,0x0,0xb,0xff,0xd6,0x1,0x84,0xff,0xd6,0x1,0x85,0xff,0xd6,0x1,0x87,0xff,0xd6,0x1,0x88,0xff,0xd6,0x1,0x89,0xff,0xd6,0x3,0xf6,0xff,0xd6,0x3,0xf7,0xff,0xd6,0x3,0xfa,0xff,0xd6,0x0,0x15,0x0,0xed,0xff,0xef,0x0,0xee,0xff,0xf0,0x0,0xf2,0xff,0xf3,0x0,0xfe,0xff,0xee,0x1,0x4,0xff,0xf3,0x1,0x1a,0xff,0xf4,0x1,0x34,0xff,0xf0,0x1,0x44,0xff,0xf0,0x1,0x51,0xff,0xf3,0x1,0x5e,0xff,0xf0,0x1,0x70,0xff,0xf3,0x3,0xe4,0xff,0xf4,0x3,0xe5,0xff,0xf0,0x3,0xed,0xff,0xf4,0x4,0x6,0xff,0xf4,0x4,0xe,0xff,0xf4,0x4,0x11,0xff,0xf0,0x4,0x1f,0xff,0xf0,0x4,0x2f,0xff,0xf4,0x4,0x31,0xff,0xf4,0x4,0x33,0xff,0xf4,0x0,0x9,0x0,0xf6,0xff,0x6a,0x0,0xfe,0xff,0xc6,0x1,0x9,0xff,0xd9,0x1,0x20,0xff,0xdb,0x1,0x3a,0xff,0x1e,0x1,0x4a,0xff,0xed,0x1,0x63,0xff,0xf0,0x1,0x65,0xff,0xf2,0x1,0x6d,0xff,0x56,0x0,0x15,0x0,0xf6,0xff,0x80,0x0,0xf9,0xff,0xee,0x0,0xfe,0xff,0xf0,0x1,0x9,0xff,0xdb,0x1,0x1a,0xff,0xc0,0x1,0x20,0xff,0xdc,0x1,0x3a,0xff,0x47,0x1,0x48,0xff,0xee,0x1,0x4a,0xff,0xee,0x1,0x63,0x0,0x7,0x1,0x65,0xff,0xf4,0x1,0x6d,0xff,0x7f,0x3,0xe4,0xff,0xc0,0x3,0xed,0xff,0xc0,0x4,0x6,0xff,0xc0,0x4,0xe,0xff,0xc0,0x4,0x2f,0xff,0xc0,0x4,0x31,0xff,0xc0,0x4,0x33,0xff,0xc0,0x4,0x35,0xff,0xee,0x4,0x95,0xff,0xee,0x0,0x22,0x0,0xed,0x0,0x12,0x0,0xf2,0x0,0xe,0x0,0xf6,0xff,0xe3,0x0,0xf7,0xff,0xee,0x0,0xf9,0xff,0xe3,0x0,0xfc,0xff,0xb8,0x0,0xfe,0xff,0xe3,0x1,0x3,0xff,0xee,0x1,0x4,0x0,0xe,0x1,0x1e,0xff,0xee,0x1,0x22,0xff,0xee,0x1,0x3a,0xff,0xba,0x1,0x42,0xff,0xee,0x1,0x48,0xff,0xe3,0x1,0x4a,0xff,0xd9,0x1,0x51,0x0,0xe,0x1,0x60,0xff,0xee,0x1,0x61,0xff,0xee,0x1,0x6b,0xff,0xee,0x1,0x6d,0xff,0xe3,0x1,0x70,0x0,0xe,0x3,0xdf,0xff,0xee,0x3,0xe3,0xff,0xee,0x3,0xe6,0xff,0xee,0x4,0x1,0xff,0xee,0x4,0x7,0xff,0xee,0x4,0xc,0xff,0xee,0x4,0x1a,0xff,0xee,0x4,0x1c,0xff,0xee,0x4,0x1d,0xff,0xee,0x4,0x29,0xff,0xee,0x4,0x35,0xff,0xe3,0x4,0x38,0xff,0xee,0x4,0x95,0xff,0xe3,0x0,0xf,0x0,0xed,0x0,0x14,0x0,0xf2,0x0,0x10,0x0,0xf6,0xff,0xf0,0x0,0xf9,0xff,0xf0,0x0,0xfe,0xff,0xf0,0x1,0x1,0x0,0x16,0x1,0x4,0x0,0x10,0x1,0x3a,0xff,0xe6,0x1,0x48,0xff,0xf0,0x1,0x4a,0xff,0xdc,0x1,0x51,0x0,0x10,0x1,0x6d,0xff,0xf0,0x1,0x70,0x0,0x10,0x4,0x35,0xff,0xf0,0x4,0x95,0xff,0xf0,0x0,0x5,0x0,0xed,0xff,0xee,0x0,0xf6,0xff,0xd6,0x0,0xfe,0xff,0xed,0x1,0x3a,0xff,0xec,0x1,0x6d,0xff,0xec,0x0,0x44,0x0,0x6,0x0,0xd,0x0,0xb,0x0,0xd,0x0,0xed,0xff,0xc8,0x0,0xf2,0xff,0xd7,0x0,0xf7,0xff,0xc0,0x1,0x3,0xff,0xc0,0x1,0x4,0xff,0xd7,0x1,0x18,0xff,0xe2,0x1,0x1a,0x0,0xb,0x1,0x1c,0xff,0xec,0x1,0x1e,0xff,0xc0,0x1,0x20,0x0,0xc,0x1,0x22,0xff,0xc0,0x1,0x42,0xff,0xc0,0x1,0x51,0xff,0xd7,0x1,0x60,0xff,0xc0,0x1,0x61,0xff,0xc0,0x1,0x63,0x0,0xb,0x1,0x65,0x0,0xb,0x1,0x6b,0xff,0xc0,0x1,0x70,0xff,0xd7,0x1,0x84,0x0,0xd,0x1,0x85,0x0,0xd,0x1,0x87,0x0,0xd,0x1,0x88,0x0,0xd,0x1,0x89,0x0,0xd,0x2,0x5,0xff,0xbf,0x2,0xe,0x0,0xe,0x2,0xf,0xff,0xed,0x2,0x12,0x0,0xe,0x2,0x2a,0x0,0xe,0x2,0x2b,0xff,0xed,0x2,0x2c,0x0,0xd,0x2,0x2e,0x0,0xe,0x2,0x34,0xff,0xed,0x3,0xde,0xff,0xf0,0x3,0xdf,0xff,0xc0,0x3,0xe1,0xff,0xe2,0x3,0xe3,0xff,0xc0,0x3,0xe4,0x0,0xb,0x3,0xe6,0xff,0xc0,0x3,0xed,0x0,0xb,0x3,0xf6,0x0,0xd,0x3,0xf7,0x0,0xd,0x3,0xfa,0x0,0xd,0x4,0x1,0xff,0xc0,0x4,0x6,0x0,0xb,0x4,0x7,0xff,0xc0,0x4,0xc,0xff,0xc0,0x4,0xe,0x0,0xb,0x4,0x14,0xff,0xf0,0x4,0x16,0xff,0xf0,0x4,0x1a,0xff,0xc0,0x4,0x1c,0xff,0xc0,0x4,0x1d,0xff,0xc0,0x4,0x27,0xff,0xe2,0x4,0x29,0xff,0xc0,0x4,0x2b,0xff,0xe2,0x4,0x2f,0x0,0xb,0x4,0x31,0x0,0xb,0x4,0x33,0x0,0xb,0x4,0x38,0xff,0xc0,0x5,0x5,0xff,0xbf,0x5,0xc,0xff,0xed,0x5,0xf,0xff,0xed,0x5,0x10,0x0,0xe,0x5,0x14,0xff,0xed,0x5,0x15,0x0,0xd,0x0,0x1e,0x0,0xf7,0xff,0xf0,0x1,0x3,0xff,0xf0,0x1,0x18,0xff,0xc7,0x1,0x1c,0xff,0xeb,0x1,0x1e,0xff,0xf0,0x1,0x22,0xff,0xf0,0x1,0x42,0xff,0xf0,0x1,0x60,0xff,0xf0,0x1,0x61,0xff,0xf0,0x1,0x6b,0xff,0xf0,0x2,0xf,0xff,0xeb,0x2,0x2b,0xff,0xeb,0x2,0x34,0xff,0xeb,0x3,0xdf,0xff,0xf0,0x3,0xe1,0xff,0xc7,0x3,0xe3,0xff,0xf0,0x3,0xe6,0xff,0xf0,0x4,0x1,0xff,0xf0,0x4,0x7,0xff,0xf0,0x4,0xc,0xff,0xf0,0x4,0x1a,0xff,0xf0,0x4,0x1c,0xff,0xf0,0x4,0x1d,0xff,0xf0,0x4,0x27,0xff,0xc7,0x4,0x29,0xff,0xf0,0x4,0x2b,0xff,0xc7,0x4,0x38,0xff,0xf0,0x5,0xc,0xff,0xeb,0x5,0xf,0xff,0xeb,0x5,0x14,0xff,0xeb,0x0,0xa,0x0,0x6,0xff,0xf5,0x0,0xb,0xff,0xf5,0x1,0x84,0xff,0xf5,0x1,0x85,0xff,0xf5,0x1,0x87,0xff,0xf5,0x1,0x88,0xff,0xf5,0x1,0x89,0xff,0xf5,0x3,0xf6,0xff,0xf5,0x3,0xf7,0xff,0xf5,0x3,0xfa,0xff,0xf5,0x0,0x1,0x1,0x1c,0xff,0xf1,0x0,0x27,0x0,0xec,0xff,0xee,0x0,0xed,0x0,0x14,0x0,0xf0,0xff,0xee,0x0,0xf1,0xff,0xee,0x0,0xf3,0xff,0xee,0x0,0xf4,0xff,0xee,0x0,0xf5,0xff,0xee,0x0,0xf6,0xff,0xed,0x0,0xf8,0xff,0xee,0x0,0xf9,0xff,0xed,0x0,0xfa,0xff,0xee,0x0,0xfb,0xff,0xee,0x0,0xfc,0xff,0xd0,0x0,0xfe,0xff,0xee,0x1,0x0,0xff,0xee,0x1,0x5,0xff,0xee,0x1,0x2b,0xff,0xee,0x1,0x36,0xff,0xee,0x1,0x3a,0xff,0xed,0x1,0x3c,0xff,0xee,0x1,0x3e,0xff,0xee,0x1,0x48,0xff,0xed,0x1,0x4a,0xff,0xed,0x1,0x53,0xff,0xee,0x1,0x55,0xff,0xee,0x1,0x57,0xff,0xee,0x1,0x5c,0xff,0xee,0x1,0x6d,0xff,0xed,0x3,0xe0,0xff,0xee,0x3,0xe2,0xff,0xee,0x3,0xe7,0xff,0xee,0x3,0xec,0xff,0xee,0x4,0x2,0xff,0xee,0x4,0x23,0xff,0xee,0x4,0x25,0xff,0xee,0x4,0x35,0xff,0xed,0x4,0x37,0xff,0xee,0x4,0x95,0xff,0xed,0x4,0x97,0xff,0xee,0x0,0x2,0x0,0xed,0xff,0x68,0x1,0x1c,0xff,0xee,0x0,0x17,0x0,0x6,0xff,0xf2,0x0,0xb,0xff,0xf2,0x0,0xf6,0xff,0xf4,0x0,0xfe,0xff,0xf4,0x1,0x9,0xff,0xf5,0x1,0x1a,0xff,0xf5,0x1,0x3a,0xff,0xf5,0x1,0x6d,0xff,0xf5,0x1,0x84,0xff,0xf2,0x1,0x85,0xff,0xf2,0x1,0x87,0xff,0xf2,0x1,0x88,0xff,0xf2,0x1,0x89,0xff,0xf2,0x3,0xe4,0xff,0xf5,0x3,0xed,0xff,0xf5,0x3,0xf6,0xff,0xf2,0x3,0xf7,0xff,0xf2,0x3,0xfa,0xff,0xf2,0x4,0x6,0xff,0xf5,0x4,0xe,0xff,0xf5,0x4,0x2f,0xff,0xf5,0x4,0x31,0xff,0xf5,0x4,0x33,0xff,0xf5,0x0,0x2a,0x0,0xec,0xff,0xef,0x0,0xed,0xff,0xee,0x0,0xee,0xff,0xf0,0x0,0xf0,0xff,0xef,0x0,0xf1,0xff,0xef,0x0,0xf3,0xff,0xef,0x0,0xf4,0xff,0xef,0x0,0xf5,0xff,0xef,0x0,0xf6,0xff,0xee,0x0,0xf8,0xff,0xef,0x0,0xfa,0xff,0xef,0x0,0xfb,0xff,0xef,0x0,0xfe,0xff,0xef,0x1,0x0,0xff,0xef,0x1,0x5,0xff,0xef,0x1,0x9,0xff,0xf4,0x1,0x20,0xff,0xf1,0x1,0x2b,0xff,0xef,0x1,0x34,0xff,0xf0,0x1,0x36,0xff,0xef,0x1,0x3a,0xff,0xef,0x1,0x3c,0xff,0xef,0x1,0x3e,0xff,0xef,0x1,0x44,0xff,0xf0,0x1,0x53,0xff,0xef,0x1,0x55,0xff,0xef,0x1,0x57,0xff,0xef,0x1,0x5c,0xff,0xef,0x1,0x5e,0xff,0xf0,0x1,0x6d,0xff,0xef,0x3,0xe0,0xff,0xef,0x3,0xe2,0xff,0xef,0x3,0xe5,0xff,0xf0,0x3,0xe7,0xff,0xef,0x3,0xec,0xff,0xef,0x4,0x2,0xff,0xef,0x4,0x11,0xff,0xf0,0x4,0x1f,0xff,0xf0,0x4,0x23,0xff,0xef,0x4,0x25,0xff,0xef,0x4,0x37,0xff,0xef,0x4,0x97,0xff,0xef,0x0,0x8,0x0,0xd2,0xff,0xeb,0x0,0xd6,0xff,0xeb,0x1,0x39,0xff,0xeb,0x1,0x45,0xff,0xeb,0x3,0xdc,0xff,0xeb,0x4,0xd,0xff,0xf3,0x4,0x92,0xff,0xeb,0x4,0xa1,0xff,0xf3,0x0,0x1d,0x0,0xd2,0xff,0xe2,0x0,0xd4,0xff,0xe4,0x0,0xd6,0xff,0xe2,0x0,0xd9,0xff,0xe1,0x0,0xda,0xff,0xe4,0x0,0xdd,0xff,0xe4,0x0,0xde,0xff,0xe9,0x0,0xed,0xff,0xe4,0x0,0xf2,0xff,0xeb,0x1,0x4,0xff,0xeb,0x1,0x33,0xff,0xe4,0x1,0x39,0xff,0xe2,0x1,0x43,0xff,0xe4,0x1,0x45,0xff,0xe2,0x1,0x50,0xff,0xe4,0x1,0x51,0xff,0xeb,0x1,0x5d,0xff,0xe4,0x1,0x66,0xff,0xe4,0x1,0x6f,0xff,0xe4,0x1,0x70,0xff,0xeb,0x3,0xd0,0xff,0xe9,0x3,0xdc,0xff,0xe2,0x3,0xdd,0xff,0xe4,0x4,0x10,0xff,0xe4,0x4,0x1e,0xff,0xe4,0x4,0x2e,0xff,0xe9,0x4,0x30,0xff,0xe9,0x4,0x32,0xff,0xe9,0x4,0x92,0xff,0xe2,0x0,0x1f,0x0,0xd2,0xff,0xe3,0x0,0xd4,0xff,0xe5,0x0,0xd6,0xff,0xe3,0x0,0xd9,0xff,0xe2,0x0,0xda,0xff,0xe5,0x0,0xdd,0xff,0xe5,0x0,0xde,0xff,0xe9,0x0,0xf2,0xff,0xea,0x1,0x4,0xff,0xea,0x1,0x33,0xff,0xe5,0x1,0x39,0xff,0xe3,0x1,0x43,0xff,0xe5,0x1,0x45,0xff,0xe3,0x1,0x50,0xff,0xe5,0x1,0x51,0xff,0xea,0x1,0x5d,0xff,0xe5,0x1,0x66,0xff,0xe5,0x1,0x6c,0xff,0xe4,0x1,0x6f,0xff,0xe5,0x1,0x70,0xff,0xea,0x3,0xd0,0xff,0xe9,0x3,0xdc,0xff,0xe3,0x3,0xdd,0xff,0xe5,0x4,0xd,0xff,0xe4,0x4,0x10,0xff,0xe5,0x4,0x1e,0xff,0xe5,0x4,0x2e,0xff,0xe9,0x4,0x30,0xff,0xe9,0x4,0x32,0xff,0xe9,0x4,0x92,0xff,0xe3,0x4,0xa1,0xff,0xe4,0x0,0xa,0x0,0xe6,0xff,0xc3,0x0,0xf6,0xff,0xcf,0x0,0xfe,0xff,0xd4,0x1,0x3a,0xff,0xce,0x1,0x49,0xff,0xe7,0x1,0x4c,0xff,0xdf,0x1,0x62,0xff,0xd1,0x1,0x64,0xff,0xec,0x1,0x6c,0xff,0xa0,0x1,0x6d,0xff,0xd1,0x0,0x1f,0x0,0x6,0xff,0xbf,0x0,0xb,0xff,0xbf,0x0,0xde,0xff,0xec,0x0,0xe1,0xff,0xe6,0x0,0xe6,0xff,0xc4,0x0,0xf6,0xff,0xcd,0x0,0xfe,0xff,0xd5,0x1,0x19,0xff,0xc9,0x1,0x3a,0xff,0xcc,0x1,0x47,0xff,0xe6,0x1,0x49,0xff,0xe6,0x1,0x4c,0xff,0xdf,0x1,0x62,0xff,0xd1,0x1,0x64,0xff,0xec,0x1,0x6c,0xff,0xa1,0x1,0x6d,0xff,0xcf,0x1,0x84,0xff,0xbf,0x1,0x85,0xff,0xbf,0x1,0x87,0xff,0xbf,0x1,0x88,0xff,0xbf,0x1,0x89,0xff,0xbf,0x3,0xd0,0xff,0xec,0x3,0xf6,0xff,0xbf,0x3,0xf7,0xff,0xbf,0x3,0xfa,0xff,0xbf,0x4,0x5,0xff,0xc9,0x4,0x2e,0xff,0xec,0x4,0x30,0xff,0xec,0x4,0x32,0xff,0xec,0x4,0x34,0xff,0xe6,0x4,0x94,0xff,0xe6,0x0,0x3a,0x0,0xb2,0x0,0xf,0x0,0xd2,0xff,0xe6,0x0,0xd4,0x0,0xe,0x0,0xd6,0xff,0xe6,0x0,0xd9,0x0,0x13,0x0,0xda,0x0,0xe,0x0,0xdd,0x0,0xe,0x0,0xde,0x0,0xb,0x0,0xe1,0xff,0xe5,0x0,0xe6,0xff,0xe6,0x0,0xe7,0xff,0xf4,0x0,0xed,0x0,0x12,0x0,0xf2,0x0,0xf,0x0,0xf6,0xff,0xe7,0x0,0xf9,0xff,0xe8,0x0,0xfe,0xff,0xe7,0x1,0x4,0x0,0xf,0x1,0xd,0x0,0xf,0x1,0x19,0xff,0xe6,0x1,0x33,0x0,0xe,0x1,0x39,0xff,0xe6,0x1,0x3a,0xff,0xe7,0x1,0x43,0x0,0xe,0x1,0x45,0xff,0xe6,0x1,0x47,0xff,0xe5,0x1,0x48,0xff,0xe8,0x1,0x49,0xff,0xe5,0x1,0x4a,0xff,0xe8,0x1,0x4c,0xff,0xe4,0x1,0x50,0x0,0xe,0x1,0x51,0x0,0xf,0x1,0x5d,0x0,0xe,0x1,0x62,0xff,0xe6,0x1,0x64,0xff,0xe6,0x1,0x66,0x0,0xe,0x1,0x6c,0xff,0xe6,0x1,0x6d,0xff,0xe7,0x1,0x6f,0x0,0xe,0x1,0x70,0x0,0xf,0x3,0xd0,0x0,0xb,0x3,0xd1,0x0,0xf,0x3,0xdc,0xff,0xe6,0x3,0xdd,0x0,0xe,0x4,0x5,0xff,0xe6,0x4,0xd,0xff,0xe6,0x4,0x10,0x0,0xe,0x4,0x13,0x0,0xf,0x4,0x15,0x0,0xf,0x4,0x1e,0x0,0xe,0x4,0x2e,0x0,0xb,0x4,0x30,0x0,0xb,0x4,0x32,0x0,0xb,0x4,0x34,0xff,0xe5,0x4,0x35,0xff,0xe8,0x4,0x92,0xff,0xe6,0x4,0x94,0xff,0xe5,0x4,0x95,0xff,0xe8,0x4,0xa1,0xff,0xe6,0x0,0x12,0x0,0xd9,0xff,0xae,0x0,0xe6,0x0,0x12,0x0,0xeb,0xff,0xe0,0x0,0xed,0xff,0xad,0x0,0xef,0xff,0xd6,0x0,0xfd,0xff,0xdf,0x1,0x1,0xff,0xd2,0x1,0x7,0xff,0xe0,0x1,0x1c,0xff,0xce,0x1,0x2e,0xff,0xdd,0x1,0x30,0xff,0xe2,0x1,0x38,0xff,0xe0,0x1,0x40,0xff,0xe0,0x1,0x4a,0xff,0xe9,0x1,0x4d,0xff,0xda,0x1,0x5f,0xff,0xbd,0x1,0x69,0xff,0xdf,0x1,0x6c,0x0,0x11,0x0,0x20,0x0,0x1b,0xff,0xf2,0x0,0xd2,0xff,0xf1,0x0,0xd4,0xff,0xf5,0x0,0xd6,0xff,0xf1,0x0,0xda,0xff,0xf4,0x0,0xdd,0xff,0xf5,0x0,0xde,0xff,0xf3,0x0,0xe6,0xff,0xf1,0x1,0x19,0xff,0xf4,0x1,0x33,0xff,0xf4,0x1,0x39,0xff,0xf1,0x1,0x43,0xff,0xf4,0x1,0x45,0xff,0xf1,0x1,0x50,0xff,0xf5,0x1,0x5d,0xff,0xf4,0x1,0x62,0xff,0xf2,0x1,0x64,0xff,0xf2,0x1,0x66,0xff,0xf5,0x1,0x6c,0xff,0xf2,0x1,0x6f,0xff,0xf5,0x3,0xd0,0xff,0xf3,0x3,0xdc,0xff,0xf1,0x3,0xdd,0xff,0xf4,0x4,0x5,0xff,0xf4,0x4,0xd,0xff,0xf0,0x4,0x10,0xff,0xf4,0x4,0x1e,0xff,0xf4,0x4,0x2e,0xff,0xf3,0x4,0x30,0xff,0xf3,0x4,0x32,0xff,0xf3,0x4,0x92,0xff,0xf1,0x4,0xa1,0xff,0xf0,0x0,0xc,0x0,0xd9,0x0,0x12,0x0,0xea,0xff,0xe9,0x0,0xf6,0xff,0xd7,0x1,0x3a,0xff,0xd7,0x1,0x4a,0xff,0xd3,0x1,0x4c,0xff,0xd6,0x1,0x4d,0xff,0xc5,0x1,0x58,0xff,0xe7,0x1,0x62,0x0,0xd,0x1,0x64,0x0,0xc,0x1,0x6d,0xff,0xd6,0x1,0x6e,0xff,0xf2,0x0,0x3b,0x0,0xb2,0x0,0x10,0x0,0xd2,0xff,0xe0,0x0,0xd3,0xff,0xe8,0x0,0xd4,0x0,0x10,0x0,0xd6,0xff,0xe0,0x0,0xd9,0x0,0x14,0x0,0xdd,0x0,0x10,0x0,0xe1,0xff,0xe1,0x0,0xe6,0xff,0xe0,0x0,0xed,0x0,0x13,0x0,0xf2,0x0,0x10,0x0,0xf9,0xff,0xe0,0x1,0x4,0x0,0x10,0x1,0x8,0xff,0xe8,0x1,0xd,0x0,0x10,0x1,0x17,0xff,0xe8,0x1,0x19,0xff,0xe0,0x1,0x1b,0xff,0xe8,0x1,0x1d,0xff,0xe8,0x1,0x1f,0xff,0xe8,0x1,0x21,0xff,0xe8,0x1,0x39,0xff,0xe0,0x1,0x41,0xff,0xe8,0x1,0x45,0xff,0xe0,0x1,0x47,0xff,0xe1,0x1,0x48,0xff,0xe0,0x1,0x49,0xff,0xe1,0x1,0x4a,0xff,0xe0,0x1,0x4d,0xff,0xe1,0x1,0x50,0x0,0x10,0x1,0x51,0x0,0x10,0x1,0x58,0xff,0xe9,0x1,0x62,0xff,0xdf,0x1,0x64,0xff,0xde,0x1,0x66,0x0,0x10,0x1,0x6a,0xff,0xe8,0x1,0x6c,0xff,0xdf,0x1,0x6e,0xff,0xf2,0x1,0x6f,0x0,0x10,0x1,0x70,0x0,0x10,0x3,0xd1,0x0,0x10,0x3,0xd8,0xff,0xe8,0x3,0xdb,0xff,0xe8,0x3,0xdc,0xff,0xe0,0x4,0x5,0xff,0xe0,0x4,0x8,0xff,0xe8,0x4,0xb,0xff,0xe8,0x4,0xd,0xff,0xdf,0x4,0x13,0x0,0x10,0x4,0x15,0x0,0x10,0x4,0x26,0xff,0xe8,0x4,0x28,0xff,0xe8,0x4,0x2a,0xff,0xe8,0x4,0x34,0xff,0xe1,0x4,0x35,0xff,0xe0,0x4,0x92,0xff,0xe0,0x4,0x94,0xff,0xe1,0x4,0x95,0xff,0xe0,0x4,0xa1,0xff,0xdf,0x0,0x46,0x0,0xd2,0xff,0xe6,0x0,0xd6,0xff,0xe6,0x0,0xda,0xff,0xf2,0x0,0xde,0xff,0xee,0x0,0xe1,0xff,0xe8,0x0,0xe6,0xff,0xe6,0x0,0xec,0xff,0xd6,0x0,0xee,0xff,0xf1,0x0,0xf0,0xff,0xd6,0x0,0xf1,0xff,0xd6,0x0,0xf3,0xff,0xd6,0x0,0xf4,0xff,0xd6,0x0,0xf5,0xff,0xd6,0x0,0xf6,0xff,0xd0,0x0,0xf8,0xff,0xd6,0x0,0xfa,0xff,0xd6,0x0,0xfb,0xff,0xd6,0x0,0xfe,0xff,0xd6,0x1,0x0,0xff,0xd6,0x1,0x5,0xff,0xd6,0x1,0x19,0xff,0xe7,0x1,0x2b,0xff,0xd6,0x1,0x33,0xff,0xf2,0x1,0x34,0xff,0xf1,0x1,0x36,0xff,0xd6,0x1,0x39,0xff,0xe6,0x1,0x3a,0xff,0xce,0x1,0x3c,0xff,0xd6,0x1,0x3e,0xff,0xd6,0x1,0x43,0xff,0xf2,0x1,0x44,0xff,0xf1,0x1,0x45,0xff,0xe6,0x1,0x47,0xff,0xe8,0x1,0x49,0xff,0xe8,0x1,0x53,0xff,0xd6,0x1,0x55,0xff,0xd6,0x1,0x57,0xff,0xd6,0x1,0x5c,0xff,0xd6,0x1,0x5d,0xff,0xf2,0x1,0x5e,0xff,0xf1,0x1,0x62,0xff,0xe7,0x1,0x64,0xff,0xed,0x1,0x6c,0xff,0xe6,0x1,0x6d,0xff,0xd0,0x3,0xd0,0xff,0xee,0x3,0xdc,0xff,0xe6,0x3,0xdd,0xff,0xf2,0x3,0xe0,0xff,0xd6,0x3,0xe2,0xff,0xd6,0x3,0xe5,0xff,0xf1,0x3,0xe7,0xff,0xd6,0x3,0xec,0xff,0xd6,0x4,0x2,0xff,0xd6,0x4,0x5,0xff,0xe7,0x4,0xd,0xff,0xe7,0x4,0x10,0xff,0xf2,0x4,0x11,0xff,0xf1,0x4,0x1e,0xff,0xf2,0x4,0x1f,0xff,0xf1,0x4,0x23,0xff,0xd6,0x4,0x25,0xff,0xd6,0x4,0x2e,0xff,0xee,0x4,0x30,0xff,0xee,0x4,0x32,0xff,0xee,0x4,0x34,0xff,0xe8,0x4,0x37,0xff,0xd6,0x4,0x92,0xff,0xe6,0x4,0x94,0xff,0xe8,0x4,0x97,0xff,0xd6,0x4,0xa1,0xff,0xe7,0x0,0x8,0x0,0xd9,0x0,0x15,0x0,0xed,0x0,0x15,0x1,0x49,0xff,0xe4,0x1,0x4a,0xff,0xe5,0x1,0x4c,0xff,0xe4,0x1,0x62,0xff,0xe3,0x1,0x64,0xff,0xe2,0x1,0x6c,0xff,0xe4,0x0,0x33,0x0,0xd2,0xff,0xbe,0x0,0xd6,0xff,0xbe,0x0,0xe6,0xff,0xc9,0x0,0xec,0xff,0xe1,0x0,0xf0,0xff,0xe1,0x0,0xf1,0xff,0xe1,0x0,0xf3,0xff,0xe1,0x0,0xf4,0xff,0xe1,0x0,0xf5,0xff,0xe1,0x0,0xf6,0xff,0xdf,0x0,0xf8,0xff,0xe1,0x0,0xfa,0xff,0xe1,0x0,0xfb,0xff,0xe1,0x0,0xfe,0xff,0xe1,0x1,0x0,0xff,0xe1,0x1,0x5,0xff,0xe1,0x1,0x9,0xff,0xed,0x1,0x1a,0xff,0xef,0x1,0x20,0xff,0xeb,0x1,0x2b,0xff,0xe1,0x1,0x36,0xff,0xe1,0x1,0x39,0xff,0xbe,0x1,0x3a,0xff,0xdf,0x1,0x3c,0xff,0xe1,0x1,0x3e,0xff,0xe1,0x1,0x45,0xff,0xbe,0x1,0x4c,0xff,0xe9,0x1,0x53,0xff,0xe1,0x1,0x55,0xff,0xe1,0x1,0x57,0xff,0xe1,0x1,0x5c,0xff,0xe1,0x1,0x63,0xff,0xf5,0x1,0x6d,0xff,0xe0,0x3,0xdc,0xff,0xbe,0x3,0xe0,0xff,0xe1,0x3,0xe2,0xff,0xe1,0x3,0xe4,0xff,0xef,0x3,0xe7,0xff,0xe1,0x3,0xec,0xff,0xe1,0x3,0xed,0xff,0xef,0x4,0x2,0xff,0xe1,0x4,0x6,0xff,0xef,0x4,0xe,0xff,0xef,0x4,0x23,0xff,0xe1,0x4,0x25,0xff,0xe1,0x4,0x2f,0xff,0xef,0x4,0x31,0xff,0xef,0x4,0x33,0xff,0xef,0x4,0x37,0xff,0xe1,0x4,0x92,0xff,0xbe,0x4,0x97,0xff,0xe1,0x0,0x51,0x0,0x6,0xff,0xb1,0x0,0xb,0xff,0xb1,0x0,0xd2,0xff,0x9e,0x0,0xd6,0xff,0x9e,0x0,0xda,0xff,0xf2,0x0,0xde,0xff,0xec,0x0,0xe1,0xff,0xe1,0x0,0xe6,0xff,0xc2,0x0,0xec,0xff,0xcf,0x0,0xee,0xff,0xef,0x0,0xf0,0xff,0xcf,0x0,0xf1,0xff,0xcf,0x0,0xf3,0xff,0xcf,0x0,0xf4,0xff,0xcf,0x0,0xf5,0xff,0xcf,0x0,0xf6,0xff,0xc6,0x0,0xf8,0xff,0xcf,0x0,0xfa,0xff,0xcf,0x0,0xfb,0xff,0xcf,0x0,0xfe,0xff,0xcf,0x1,0x0,0xff,0xcf,0x1,0x5,0xff,0xcf,0x1,0x19,0xff,0xc5,0x1,0x2b,0xff,0xcf,0x1,0x33,0xff,0xf2,0x1,0x34,0xff,0xef,0x1,0x36,0xff,0xcf,0x1,0x39,0xff,0x9e,0x1,0x3a,0xff,0xc0,0x1,0x3c,0xff,0xcf,0x1,0x3e,0xff,0xcf,0x1,0x43,0xff,0xf2,0x1,0x44,0xff,0xef,0x1,0x45,0xff,0x9e,0x1,0x47,0xff,0xe1,0x1,0x49,0xff,0xe1,0x1,0x4c,0xff,0xdf,0x1,0x53,0xff,0xcf,0x1,0x55,0xff,0xcf,0x1,0x57,0xff,0xcf,0x1,0x5c,0xff,0xcf,0x1,0x5d,0xff,0xf2,0x1,0x5e,0xff,0xef,0x1,0x62,0xff,0xcd,0x1,0x64,0xff,0xe8,0x1,0x6c,0xff,0x9f,0x1,0x6d,0xff,0xc6,0x1,0x84,0xff,0xb1,0x1,0x85,0xff,0xb1,0x1,0x87,0xff,0xb1,0x1,0x88,0xff,0xb1,0x1,0x89,0xff,0xb1,0x3,0xd0,0xff,0xec,0x3,0xdc,0xff,0x9e,0x3,0xdd,0xff,0xf2,0x3,0xe0,0xff,0xcf,0x3,0xe2,0xff,0xcf,0x3,0xe5,0xff,0xef,0x3,0xe7,0xff,0xcf,0x3,0xec,0xff,0xcf,0x3,0xf6,0xff,0xb1,0x3,0xf7,0xff,0xb1,0x3,0xfa,0xff,0xb1,0x4,0x2,0xff,0xcf,0x4,0x5,0xff,0xc5,0x4,0xd,0xff,0xa8,0x4,0x10,0xff,0xf2,0x4,0x11,0xff,0xef,0x4,0x1e,0xff,0xf2,0x4,0x1f,0xff,0xef,0x4,0x23,0xff,0xcf,0x4,0x25,0xff,0xcf,0x4,0x2e,0xff,0xec,0x4,0x30,0xff,0xec,0x4,0x32,0xff,0xec,0x4,0x34,0xff,0xe1,0x4,0x37,0xff,0xcf,0x4,0x92,0xff,0x9e,0x4,0x94,0xff,0xe1,0x4,0x97,0xff,0xcf,0x4,0xa1,0xff,0xa8,0x0,0x45,0x0,0xd2,0xff,0x9d,0x0,0xd4,0xff,0xf5,0x0,0xd6,0xff,0x9d,0x0,0xda,0xff,0xf0,0x0,0xdd,0xff,0xf5,0x0,0xde,0xff,0xea,0x0,0xe1,0xff,0xe5,0x0,0xe6,0xff,0xc1,0x0,0xec,0xff,0xd2,0x0,0xf0,0xff,0xd2,0x0,0xf1,0xff,0xd2,0x0,0xf3,0xff,0xd2,0x0,0xf4,0xff,0xd2,0x0,0xf5,0xff,0xd2,0x0,0xf6,0xff,0xcd,0x0,0xf8,0xff,0xd2,0x0,0xfa,0xff,0xd2,0x0,0xfb,0xff,0xd2,0x0,0xfe,0xff,0xd2,0x1,0x0,0xff,0xd2,0x1,0x5,0xff,0xd2,0x1,0x19,0xff,0xc7,0x1,0x2b,0xff,0xd2,0x1,0x33,0xff,0xf0,0x1,0x36,0xff,0xd2,0x1,0x39,0xff,0x9d,0x1,0x3a,0xff,0xcc,0x1,0x3c,0xff,0xd2,0x1,0x3e,0xff,0xd2,0x1,0x43,0xff,0xf0,0x1,0x45,0xff,0x9d,0x1,0x47,0xff,0xe5,0x1,0x49,0xff,0xe5,0x1,0x4c,0xff,0xdf,0x1,0x50,0xff,0xf5,0x1,0x53,0xff,0xd2,0x1,0x55,0xff,0xd2,0x1,0x57,0xff,0xd2,0x1,0x5c,0xff,0xd2,0x1,0x5d,0xff,0xf0,0x1,0x62,0xff,0xce,0x1,0x64,0xff,0xea,0x1,0x66,0xff,0xf5,0x1,0x6c,0xff,0x9e,0x1,0x6d,0xff,0xce,0x1,0x6f,0xff,0xf5,0x3,0xd0,0xff,0xea,0x3,0xdc,0xff,0x9d,0x3,0xdd,0xff,0xf0,0x3,0xe0,0xff,0xd2,0x3,0xe2,0xff,0xd2,0x3,0xe7,0xff,0xd2,0x3,0xec,0xff,0xd2,0x4,0x2,0xff,0xd2,0x4,0x5,0xff,0xc7,0x4,0xd,0xff,0xab,0x4,0x10,0xff,0xf0,0x4,0x1e,0xff,0xf0,0x4,0x23,0xff,0xd2,0x4,0x25,0xff,0xd2,0x4,0x2e,0xff,0xea,0x4,0x30,0xff,0xea,0x4,0x32,0xff,0xea,0x4,0x34,0xff,0xe5,0x4,0x37,0xff,0xd2,0x4,0x92,0xff,0x9d,0x4,0x94,0xff,0xe5,0x4,0x97,0xff,0xd2,0x4,0xa1,0xff,0xab,0x0,0x5b,0x0,0x6,0xff,0xca,0x0,0xb,0xff,0xca,0x0,0xd2,0xff,0xd2,0x0,0xd6,0xff,0xd2,0x0,0xda,0xff,0xf4,0x0,0xde,0xff,0xed,0x0,0xe1,0xff,0xe1,0x0,0xe6,0xff,0xd4,0x0,0xec,0x0,0x0,0x0,0xee,0xff,0xef,0x0,0xf0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xf6,0xff,0xc9,0x0,0xf8,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0xfe,0xff,0xd1,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x1,0x9,0xff,0xe5,0x1,0x19,0xff,0xd4,0x1,0x1a,0xff,0xe6,0x1,0x20,0xff,0xe3,0x1,0x2b,0x0,0x0,0x1,0x33,0xff,0xf4,0x1,0x34,0xff,0xef,0x1,0x36,0x0,0x0,0x1,0x39,0xff,0xd2,0x1,0x3a,0xff,0xc4,0x1,0x3c,0x0,0x0,0x1,0x3e,0x0,0x0,0x1,0x43,0xff,0xf4,0x1,0x44,0xff,0xef,0x1,0x45,0xff,0xd2,0x1,0x47,0xff,0xe1,0x1,0x49,0xff,0xe1,0x1,0x53,0x0,0x0,0x1,0x55,0x0,0x0,0x1,0x57,0x0,0x0,0x1,0x5c,0x0,0x0,0x1,0x5d,0xff,0xf4,0x1,0x5e,0xff,0xef,0x1,0x62,0xff,0xd4,0x1,0x63,0xff,0xf5,0x1,0x64,0xff,0xe7,0x1,0x6c,0xff,0x64,0x1,0x6d,0xff,0xc9,0x1,0x84,0xff,0xca,0x1,0x85,0xff,0xca,0x1,0x87,0xff,0xca,0x1,0x88,0xff,0xca,0x1,0x89,0xff,0xca,0x3,0xd0,0xff,0xed,0x3,0xdc,0xff,0xd2,0x3,0xdd,0xff,0xf4,0x3,0xe0,0x0,0x0,0x3,0xe2,0x0,0x0,0x3,0xe4,0xff,0xe6,0x3,0xe5,0xff,0xef,0x3,0xe7,0x0,0x0,0x3,0xec,0x0,0x0,0x3,0xed,0xff,0xe6,0x3,0xf6,0xff,0xca,0x3,0xf7,0xff,0xca,0x3,0xfa,0xff,0xca,0x4,0x2,0x0,0x0,0x4,0x5,0xff,0xd4,0x4,0x6,0xff,0xe6,0x4,0xd,0xff,0xd3,0x4,0xe,0xff,0xe6,0x4,0x10,0xff,0xf4,0x4,0x11,0xff,0xef,0x4,0x1e,0xff,0xf4,0x4,0x1f,0xff,0xef,0x4,0x23,0x0,0x0,0x4,0x25,0x0,0x0,0x4,0x2e,0xff,0xed,0x4,0x2f,0xff,0xe6,0x4,0x30,0xff,0xed,0x4,0x31,0xff,0xe6,0x4,0x32,0xff,0xed,0x4,0x33,0xff,0xe6,0x4,0x34,0xff,0xe1,0x4,0x37,0x0,0x0,0x4,0x92,0xff,0xd2,0x4,0x94,0xff,0xe1,0x4,0x97,0x0,0x0,0x4,0xa1,0xff,0xd3,0x0,0xd,0x0,0xd9,0x0,0x13,0x0,0xe6,0xff,0xc5,0x0,0xf6,0xff,0xca,0x1,0x3a,0xff,0x81,0x1,0x49,0xff,0x65,0x1,0x4a,0xff,0x85,0x1,0x4c,0xff,0x66,0x1,0x4d,0xff,0xdd,0x1,0x58,0xff,0xf2,0x1,0x62,0xff,0xb1,0x1,0x64,0xff,0xca,0x1,0x6c,0xff,0xa9,0x1,0x6d,0xff,0xc8,0x0,0x9,0x0,0xf6,0x0,0x0,0x1,0x1a,0x0,0x0,0x3,0xe4,0x0,0x0,0x3,0xed,0x0,0x0,0x4,0x6,0x0,0x0,0x4,0xe,0x0,0x0,0x4,0x2f,0x0,0x0,0x4,0x31,0x0,0x0,0x4,0x33,0x0,0x0,0x0,0x3,0x0,0xd9,0x0,0x0,0x0,0xe6,0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x1,0x3,0xcd,0xff,0xec,0x0,0x1,0x3,0xcd,0xff,0xee,0x0,0x4,0x1,0x19,0x0,0x14,0x4,0x5,0x0,0x14,0x4,0xd,0x0,0x16,0x4,0xa1,0x0,0x16,0x0,0x6,0x0,0xd2,0xff,0xc4,0x0,0xd6,0xff,0xc4,0x1,0x39,0xff,0xc4,0x1,0x45,0xff,0xc4,0x3,0xdc,0xff,0xc4,0x4,0x92,0xff,0xc4,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0xa,0x0,0x5,0x0,0x24,0x0,0x48,0x0,0x1,0x0,0xfa,0x0,0x8,0x0,0xa,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x1b,0x0,0x1c,0x0,0x1d,0x0,0x25,0x0,0x26,0x0,0x27,0x0,0x28,0x0,0x29,0x0,0x2a,0x0,0x2b,0x0,0x2c,0x0,0x2d,0x0,0x2e,0x0,0x2f,0x0,0x30,0x0,0x31,0x0,0x32,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x36,0x0,0x37,0x0,0x38,0x0,0x39,0x0,0x3a,0x0,0x3b,0x0,0x3c,0x0,0x3d,0x0,0x3e,0x0,0x65,0x0,0x67,0x0,0x81,0x0,0x83,0x0,0x84,0x0,0x8c,0x0,0x8f,0x0,0x91,0x0,0x93,0x0,0xb1,0x0,0xb2,0x0,0xb3,0x0,0xb4,0x0,0xb5,0x0,0xb6,0x0,0xb7,0x0,0xb8,0x0,0xb9,0x0,0xba,0x0,0xd2,0x0,0xd3,0x0,0xd4,0x0,0xd5,0x0,0xd6,0x0,0xd7,0x0,0xd8,0x0,0xd9,0x0,0xda,0x0,0xdb,0x0,0xdc,0x0,0xdd,0x0,0xde,0x0,0xdf,0x0,0xe0,0x0,0xe1,0x0,0xe2,0x0,0xe3,0x0,0xe4,0x0,0xe5,0x0,0xe6,0x0,0xe7,0x0,0xe8,0x0,0xe9,0x1,0x2f,0x1,0x33,0x1,0x35,0x1,0x37,0x1,0x39,0x1,0x3b,0x1,0x41,0x1,0x43,0x1,0x45,0x1,0x49,0x1,0x4b,0x1,0x4c,0x1,0x58,0x1,0x59,0x1,0xb1,0x1,0xb7,0x1,0xbc,0x1,0xbf,0x2,0x95,0x2,0x96,0x2,0x98,0x2,0x9a,0x2,0x9b,0x2,0x9c,0x2,0x9d,0x2,0x9e,0x2,0x9f,0x2,0xa0,0x2,0xa1,0x2,0xa2,0x2,0xa3,0x2,0xa4,0x2,0xa5,0x2,0xa6,0x2,0xa7,0x2,0xa8,0x2,0xa9,0x2,0xaa,0x2,0xab,0x2,0xac,0x2,0xad,0x2,0xae,0x2,0xaf,0x2,0xb0,0x2,0xb1,0x2,0xb2,0x2,0xb3,0x2,0xb4,0x2,0xd1,0x2,0xd3,0x2,0xd5,0x2,0xd7,0x2,0xd9,0x2,0xdb,0x2,0xdd,0x2,0xdf,0x2,0xe1,0x2,0xe3,0x2,0xe5,0x2,0xe7,0x2,0xe9,0x2,0xeb,0x2,0xed,0x2,0xef,0x2,0xf1,0x2,0xf3,0x2,0xf5,0x2,0xf7,0x2,0xf9,0x2,0xfb,0x2,0xfd,0x2,0xfe,0x3,0x0,0x3,0x2,0x3,0x4,0x3,0x6,0x3,0x8,0x3,0xa,0x3,0xc,0x3,0xe,0x3,0x10,0x3,0x13,0x3,0x15,0x3,0x17,0x3,0x19,0x3,0x1b,0x3,0x1d,0x3,0x1f,0x3,0x21,0x3,0x23,0x3,0x25,0x3,0x27,0x3,0x29,0x3,0x2b,0x3,0x2d,0x3,0x2f,0x3,0x31,0x3,0x33,0x3,0x35,0x3,0x37,0x3,0x39,0x3,0x3b,0x3,0x3d,0x3,0x3f,0x3,0x40,0x3,0x42,0x3,0x44,0x3,0x46,0x3,0x48,0x3,0xa1,0x3,0xa2,0x3,0xa3,0x3,0xa4,0x3,0xa5,0x3,0xa6,0x3,0xa7,0x3,0xa9,0x3,0xaa,0x3,0xab,0x3,0xac,0x3,0xad,0x3,0xae,0x3,0xaf,0x3,0xb0,0x3,0xb1,0x3,0xb2,0x3,0xb3,0x3,0xb4,0x3,0xb5,0x3,0xb6,0x3,0xb7,0x3,0xb8,0x3,0xc8,0x3,0xc9,0x3,0xca,0x3,0xcb,0x3,0xcc,0x3,0xcd,0x3,0xce,0x3,0xcf,0x3,0xd0,0x3,0xd1,0x3,0xd2,0x3,0xd3,0x3,0xd4,0x3,0xd5,0x3,0xd6,0x3,0xd7,0x3,0xd8,0x3,0xd9,0x3,0xda,0x3,0xdb,0x3,0xdc,0x3,0xdd,0x3,0xee,0x3,0xf0,0x3,0xf2,0x3,0xf4,0x4,0x9,0x4,0xb,0x4,0xd,0x4,0x22,0x4,0x28,0x4,0x2e,0x4,0x98,0x4,0x9d,0x4,0xa1,0x5,0x22,0x5,0x24,0x0,0x6,0x0,0x64,0x0,0x0,0x3,0x28,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x13,0x0,0x17,0x0,0x0,0x41,0x15,0x21,0x35,0x33,0x11,0x23,0x11,0x21,0x11,0x23,0x11,0x13,0x15,0x21,0x35,0x1,0x1,0x23,0x1,0x11,0x1,0x33,0x1,0x3,0x9,0xfd,0x76,0x1b,0x36,0x2,0xc4,0x36,0x17,0xfd,0x76,0x2,0x8a,0xfd,0xaf,0x3a,0x2,0x51,0xfd,0xaf,0x3a,0x2,0x51,0x5,0xb0,0x36,0x36,0xfa,0x50,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfa,0x86,0x36,0x36,0x5,0x5c,0xfa,0x8c,0x5,0x74,0xfa,0x8c,0x5,0x74,0xfa,0x8c,0x0,0x2,0x0,0x68,0xff,0xee,0x1,0xdd,0x5,0xb0,0x0,0x3,0x0,0xf,0x0,0x13,0x40,0x9,0x2,0x2,0x7,0xd,0xb,0x72,0x0,0x2,0x72,0x0,0x2b,0x2b,0xdd,0xce,0x2f,0x30,0x31,0x41,0x3,0x21,0x3,0x3,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x1,0xd9,0x2b,0xfe,0xee,0x2b,0x9,0x68,0x53,0x53,0x67,0x67,0x53,0x53,0x68,0x5,0xb0,0xfc,0x1d,0x3,0xe3,0xfa,0xe7,0x48,0x61,0x61,0x48,0x48,0x61,0x61,0x0,0x0,0x2,0x0,0x1a,0x3,0xc9,0x2,0x5f,0x6,0x1,0x0,0x5,0x0,0xb,0x0,0xc,0xb3,0x9,0x3,0xb,0x5,0x0,0x2f,0x33,0xcd,0x32,0x30,0x31,0x41,0x15,0x3,0x23,0x11,0x35,0x21,0x15,0x3,0x23,0x11,0x35,0x1,0x0,0x2b,0xbb,0x2,0x45,0x2b,0xba,0x6,0x1,0x8b,0xfe,0x53,0x1,0x9f,0x99,0x8b,0xfe,0x53,0x1,0xa8,0x90,0x0,0x4,0x0,0x1e,0x0,0x0,0x4,0x7a,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x23,0x40,0x11,0x4,0x0,0x5,0xd,0xe,0xe,0x0,0xa,0x9,0x9,0x0,0x2,0x2,0x72,0x0,0x12,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x39,0x2f,0x33,0x32,0x11,0x33,0x30,0x31,0x73,0x13,0x33,0x3,0x33,0x13,0x33,0x3,0x1,0x21,0x35,0x21,0x3,0x21,0x35,0x21,0xb9,0xf0,0xc6,0xef,0xa1,0xf0,0xc7,0xf0,0x1,0x92,0xfb,0xef,0x4,0x11,0x4c,0xfb,0xf0,0x4,0x10,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfa,0x50,0x3,0x59,0xb7,0xfd,0x8a,0xb7,0x0,0x3,0x0,0x53,0xff,0x26,0x4,0x51,0x6,0x95,0x0,0x3,0x0,0x7,0x0,0x3d,0x0,0x36,0x40,0x1c,0x4,0x7,0x3a,0x3a,0x8,0x2b,0x10,0x23,0x4,0x14,0x2f,0x35,0x35,0x6,0x2f,0xd,0x72,0x1,0x2,0x1f,0x1f,0x14,0x1a,0x1a,0x3,0x14,0x5,0x72,0x0,0x2b,0xcd,0x33,0x2f,0x11,0x33,0x12,0x39,0x39,0x2b,0xcd,0x33,0x2f,0x11,0x12,0x17,0x39,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x11,0x23,0x11,0x13,0x11,0x23,0x11,0x13,0x34,0x26,0x26,0x27,0x2e,0x2,0x35,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x21,0x34,0x2e,0x2,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x17,0x1e,0x2,0x15,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x2,0xca,0x9f,0x8b,0x9f,0xe2,0x22,0x4c,0x3f,0x85,0xcb,0x73,0x7b,0xd9,0x8e,0x6c,0xb2,0x82,0x46,0xfe,0xaf,0x17,0x2a,0x38,0x21,0x32,0x3e,0x1c,0x1f,0x4c,0x42,0x82,0xcc,0x75,0x7a,0xda,0x8f,0x60,0xbd,0x9b,0x5c,0x1,0x51,0x20,0x37,0x46,0x26,0x33,0x40,0x1f,0x6,0x95,0xfe,0xdd,0x1,0x23,0xf9,0x9f,0xfe,0xf2,0x1,0xe,0x1,0x4e,0x37,0x48,0x36,0x1b,0x36,0x72,0xaa,0x88,0x7c,0xb8,0x65,0x40,0x79,0xaf,0x6f,0x39,0x52,0x34,0x19,0x2b,0x46,0x2b,0x2d,0x43,0x39,0x1e,0x37,0x76,0xab,0x87,0x82,0xb7,0x60,0x32,0x71,0xbc,0x89,0x43,0x5a,0x35,0x17,0x29,0x45,0x0,0x0,0x5,0x0,0x5b,0xff,0xec,0x5,0x97,0x5,0xc5,0x0,0x11,0x0,0x23,0x0,0x35,0x0,0x47,0x0,0x4b,0x0,0x23,0x40,0x11,0x49,0x32,0x4b,0x5,0x3b,0x44,0x29,0x32,0x17,0xe,0x20,0x5,0x5,0x72,0x32,0xd,0x72,0x0,0x2b,0x2b,0x32,0xc4,0x32,0x10,0xc4,0x32,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x13,0x1,0x27,0x1,0x5b,0x48,0x90,0x6b,0x6e,0x90,0x47,0x47,0x8f,0x6d,0x6c,0x90,0x49,0xd8,0x18,0x31,0x24,0x25,0x2e,0x17,0x17,0x30,0x25,0x23,0x30,0x18,0x1,0xdb,0x49,0x91,0x6b,0x6e,0x8f,0x47,0x47,0x8e,0x6d,0x6c,0x92,0x49,0xd9,0x1e,0x32,0x1e,0x2e,0x2d,0xf,0x18,0x30,0x24,0x24,0x30,0x18,0xc0,0xfd,0x39,0x9d,0x2,0xc7,0x4,0x4b,0x4d,0x53,0x88,0x52,0x52,0x88,0x53,0x4d,0x51,0x88,0x52,0x52,0x88,0x9e,0x4d,0x1e,0x36,0x21,0x21,0x36,0x1e,0x4d,0x20,0x36,0x21,0x21,0x36,0xfc,0x60,0x4d,0x52,0x88,0x52,0x52,0x88,0x52,0x4d,0x52,0x88,0x52,0x52,0x88,0x9f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x1f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x3,0x5b,0xfb,0x8e,0x4f,0x4,0x72,0x0,0x0,0x1,0x0,0x38,0xff,0xeb,0x5,0x42,0x5,0xc5,0x0,0x42,0x0,0x24,0x40,0x14,0x23,0x12,0x0,0xf,0x22,0x1,0x6,0x1a,0x30,0x30,0x2b,0x11,0x11,0x3b,0x13,0x72,0x7,0x1a,0x3,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2f,0x32,0x32,0x2f,0x11,0x17,0x39,0x30,0x31,0x41,0x25,0x36,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x17,0x1,0x21,0x1,0x2e,0x2,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x5,0xe,0x2,0x15,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x21,0x14,0x6,0x6,0x7,0x6,0x6,0x7,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x1,0x34,0x1,0x35,0x3e,0x1d,0x3b,0x35,0x27,0x35,0x1b,0x32,0x53,0x33,0x2,0xad,0xfe,0x88,0xfd,0xd2,0x45,0x65,0x38,0x65,0xb9,0x7d,0x74,0xab,0x5e,0x32,0x57,0x38,0xfe,0xb2,0x14,0x19,0xb,0x2c,0x49,0x2b,0x51,0x97,0x78,0x46,0x1,0x1a,0x2f,0x6b,0x5a,0x5,0x1b,0x6,0x69,0xcc,0x88,0x93,0xd5,0x74,0x40,0x72,0x2,0xfd,0xc1,0x28,0x47,0x22,0x29,0x49,0x23,0x3a,0x24,0x2d,0x5c,0x66,0x3d,0xfc,0xec,0x2,0x7a,0x58,0x94,0x8c,0x4a,0x73,0xb1,0x65,0x60,0x9f,0x5f,0x42,0x76,0x62,0x28,0xe9,0x19,0x33,0x34,0x1e,0x34,0x4f,0x2c,0x47,0x82,0xb4,0x6c,0x76,0xd5,0xb4,0x44,0x3,0x11,0x3,0x4b,0x48,0x6a,0xba,0x78,0x55,0x7f,0x6c,0x0,0x1,0x0,0x2c,0x3,0xc1,0x1,0x1c,0x6,0x0,0x0,0x5,0x0,0x8,0xb1,0x3,0x5,0x0,0x2f,0xc6,0x30,0x31,0x41,0x15,0x3,0x23,0x11,0x35,0x1,0x1c,0x22,0xce,0x6,0x0,0xa2,0xfe,0x63,0x1,0x90,0xaf,0x0,0x1,0x0,0x79,0xfe,0x3e,0x2,0xab,0x6,0x46,0x0,0x17,0x0,0x8,0xb1,0x6,0x13,0x0,0x2f,0x2f,0x30,0x31,0x53,0x35,0x34,0x12,0x12,0x36,0x37,0x17,0xe,0x2,0x2,0x15,0x15,0x14,0x12,0x16,0x16,0x17,0x7,0x26,0x26,0x2,0x2,0x79,0x55,0x90,0xb1,0x5d,0x3f,0x38,0x69,0x54,0x31,0x31,0x54,0x69,0x38,0x3f,0x5d,0xb1,0x90,0x55,0x2,0x34,0x1c,0xcf,0x1,0x55,0x1,0x2,0xab,0x25,0xa6,0x29,0x8d,0xce,0xfe,0xea,0xb4,0x20,0xb4,0xfe,0xea,0xce,0x8d,0x29,0xa6,0x26,0xaa,0x1,0x2,0x1,0x55,0x0,0x0,0x1,0x0,0x28,0xfe,0x3e,0x2,0x72,0x6,0x46,0x0,0x17,0x0,0x8,0xb1,0x13,0x6,0x0,0x2f,0x2f,0x30,0x31,0x41,0x15,0x14,0x2,0x2,0x6,0x7,0x27,0x3e,0x2,0x12,0x35,0x35,0x34,0x2,0x26,0x26,0x27,0x37,0x16,0x16,0x12,0x12,0x2,0x72,0x59,0x96,0xb9,0x61,0x41,0x38,0x69,0x54,0x31,0x31,0x54,0x69,0x38,0x41,0x61,0xb9,0x96,0x59,0x2,0x50,0x1c,0xc5,0xfe,0xae,0xfe,0xf8,0xb1,0x26,0xa6,0x29,0x8d,0xce,0x1,0x16,0xb4,0x20,0xb4,0x1,0x16,0xce,0x8d,0x29,0xa6,0x25,0xb2,0xfe,0xf8,0xfe,0xae,0x0,0x1,0x0,0x1b,0x2,0x31,0x3,0xb4,0x5,0xb0,0x0,0xe,0x0,0x14,0x40,0xa,0xd,0x1,0x7,0x4,0x4,0xe,0xc,0x6,0x2,0x72,0x0,0x2b,0xc4,0x32,0x17,0x39,0x30,0x31,0x53,0x13,0x25,0x37,0x5,0x3,0x33,0x3,0x25,0x17,0x5,0x13,0x7,0x3,0x3,0x7d,0xe3,0xfe,0xbb,0x41,0x1,0x3e,0x18,0xd5,0x1a,0x1,0x37,0x40,0xfe,0xb6,0xdb,0xac,0xb8,0xb8,0x2,0xac,0x1,0x10,0x5a,0xbd,0x83,0x1,0x60,0xfe,0x99,0x80,0xbf,0x5a,0xfe,0xf7,0x76,0x1,0x26,0xfe,0xe4,0x0,0x0,0x2,0x0,0x2d,0x0,0x92,0x4,0x13,0x4,0xb6,0x0,0x3,0x0,0x7,0x0,0x10,0xb5,0x7,0x7,0x3,0x3,0x6,0x2,0x0,0x2f,0xc6,0x33,0x10,0xc6,0x2f,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x4,0x13,0xfc,0x1a,0x2,0x92,0xfe,0xc5,0x3,0x3a,0xfe,0xdf,0x1,0x21,0x1,0x7c,0xfb,0xdc,0x4,0x24,0x0,0x1,0x0,0x2b,0xfe,0x78,0x1,0xa5,0x0,0xfe,0x0,0xa,0x0,0x8,0xb1,0x4,0x0,0x0,0x2f,0xcd,0x30,0x31,0x65,0x7,0x14,0x6,0x7,0x27,0x3e,0x2,0x35,0x35,0x1,0xa5,0x2,0x77,0x56,0xab,0x15,0x32,0x24,0xfe,0xd6,0x79,0xec,0x4b,0x50,0x2e,0x5d,0x74,0x4e,0xe9,0x0,0x1,0x0,0x98,0x1,0xf1,0x2,0xf1,0x2,0xf6,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x2,0xf1,0xfd,0xa7,0x2,0xf6,0xfe,0xfb,0x1,0x5,0x0,0x1,0x0,0x75,0xff,0xf5,0x1,0xe9,0x1,0x47,0x0,0xb,0x0,0xa,0xb3,0x3,0x9,0xb,0x72,0x0,0x2b,0x32,0x30,0x31,0x77,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x75,0x68,0x52,0x53,0x67,0x67,0x53,0x52,0x68,0x9e,0x48,0x61,0x61,0x48,0x48,0x61,0x61,0x0,0x0,0x1,0xff,0xe3,0xff,0x83,0x2,0xc5,0x5,0xb0,0x0,0x3,0x0,0x9,0xb2,0x0,0x2,0x1,0x0,0x2f,0x3f,0x30,0x31,0x41,0x1,0x23,0x1,0x2,0xc5,0xfe,0xe,0xf0,0x1,0xf2,0x5,0xb0,0xf9,0xd3,0x6,0x2d,0x0,0x2,0x0,0x56,0xff,0xec,0x4,0x4d,0x5,0xc4,0x0,0x17,0x0,0x2f,0x0,0x13,0x40,0x9,0x2b,0x6,0x1f,0x12,0x5,0x72,0x6,0xd,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x3,0x35,0x11,0x34,0x3e,0x2,0x33,0x32,0x1e,0x3,0x1,0x11,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x4,0x4d,0x49,0x87,0xba,0x70,0x5a,0x9c,0x7d,0x5a,0x30,0x49,0x88,0xba,0x70,0x5a,0x9b,0x7e,0x59,0x30,0xfe,0xaf,0xf,0x1d,0x2a,0x35,0x20,0x28,0x3f,0x2c,0x17,0xf,0x1d,0x2a,0x36,0x20,0x27,0x3e,0x2d,0x17,0x3,0x5d,0xfe,0xf6,0x9d,0xe8,0x98,0x4a,0x2f,0x61,0x92,0xc7,0x7e,0x1,0xa,0x9e,0xe7,0x98,0x4a,0x2f,0x61,0x92,0xc7,0xfe,0x4f,0x1,0x5e,0x46,0x68,0x48,0x2d,0x15,0x21,0x48,0x78,0x57,0xfe,0xa2,0x47,0x69,0x49,0x2d,0x14,0x20,0x49,0x79,0x0,0x0,0x1,0x0,0xa7,0x0,0x0,0x3,0x44,0x5,0xb0,0x0,0x6,0x0,0xc,0xb5,0x6,0x4,0x72,0x1,0xc,0x72,0x0,0x2b,0x2b,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0x11,0x25,0x3,0x44,0xfe,0xaf,0xfe,0xb4,0x2,0x7e,0x5,0xb0,0xfa,0x50,0x4,0x34,0x61,0x1,0x0,0xdd,0x0,0x0,0x1,0x0,0x3c,0x0,0x0,0x4,0x52,0x5,0xc5,0x0,0x1f,0x0,0x19,0x40,0xc,0x10,0x10,0xc,0x15,0x5,0x72,0x3,0x1f,0x1f,0x2,0xc,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x11,0x21,0x35,0x1,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x7,0x7,0x4,0x52,0xfc,0x8,0x1,0xd4,0x3e,0x4c,0x23,0x25,0x47,0x34,0x34,0x4e,0x2b,0xfe,0xae,0x83,0xea,0x9a,0xa1,0xda,0x6f,0x30,0x5a,0x81,0x52,0xbc,0x1,0x4,0xfe,0xfc,0xdc,0x1,0xec,0x47,0x71,0x5c,0x25,0x3f,0x55,0x2c,0x3c,0x68,0x41,0x86,0xde,0x85,0x64,0xbd,0x85,0x4c,0x8c,0x89,0x90,0x51,0xd9,0x0,0x2,0x0,0x30,0xff,0xec,0x4,0x52,0x5,0xc5,0x0,0x1c,0x0,0x3b,0x0,0x2a,0x40,0x16,0x1b,0x1c,0x1e,0x1f,0x4,0x0,0x0,0x1d,0x1d,0x12,0x33,0x2f,0x2f,0x29,0xd,0x72,0xd,0xd,0x9,0x12,0x5,0x72,0x0,0x2b,0x32,0x32,0x2f,0x2b,0x32,0x2f,0x32,0x11,0x39,0x2f,0x33,0x12,0x17,0x39,0x30,0x31,0x41,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x23,0x15,0x35,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x1,0x8d,0xa4,0x3f,0x51,0x28,0x25,0x4c,0x3b,0x28,0x4c,0x31,0xfe,0xae,0x89,0xe1,0x82,0x9b,0xea,0x83,0x46,0x7e,0xa9,0x64,0xdc,0xdc,0x6d,0xb4,0x82,0x46,0x52,0x94,0xc6,0x74,0x5b,0xb6,0x96,0x5b,0x1,0x52,0x33,0x56,0x32,0x3e,0x57,0x2e,0x31,0x5d,0x41,0x3,0x65,0x2d,0x53,0x39,0x2c,0x4a,0x2d,0x21,0x3c,0x2b,0x7c,0xb1,0x5f,0x5f,0xb9,0x88,0x4b,0x84,0x64,0x39,0x4f,0xa8,0x31,0x60,0x8d,0x5b,0x66,0xa0,0x6e,0x39,0x31,0x67,0xa1,0x70,0x2e,0x4b,0x2c,0x2f,0x50,0x31,0x4a,0x58,0x28,0x0,0x0,0x2,0x0,0x3b,0x0,0x0,0x4,0x67,0x5,0xb0,0x0,0x7,0x0,0xb,0x0,0x1d,0x40,0xe,0x3,0x7,0x7,0x6,0x2,0x2,0x5,0x9,0xc,0x72,0xb,0x5,0x4,0x72,0x0,0x2b,0x32,0x2b,0x12,0x39,0x2f,0x39,0x33,0x12,0x39,0x30,0x31,0x41,0x11,0x21,0x27,0x1,0x21,0x1,0x3,0x1,0x11,0x21,0x11,0x4,0x67,0xfb,0xe8,0x14,0x2,0x49,0x1,0xa,0xfe,0xdf,0xf0,0x2,0x57,0xfe,0xaf,0x2,0x39,0xfe,0xfc,0xce,0x3,0xad,0xfe,0x27,0xfe,0x62,0x3,0x77,0xfa,0x50,0x5,0xb0,0x0,0x1,0x0,0x50,0xff,0xec,0x4,0x4b,0x5,0xb0,0x0,0x29,0x0,0x1d,0x40,0xe,0x27,0x9,0x9,0x2,0x1d,0x19,0x19,0x13,0xd,0x72,0x5,0x2,0x4,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2f,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x25,0x13,0x21,0x11,0x21,0x3,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x37,0x21,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x1,0x7a,0xfe,0xf4,0x58,0x3,0x53,0xfd,0xc0,0x21,0x18,0x73,0x46,0x6c,0xa7,0x74,0x3b,0x3d,0x7d,0xbe,0x82,0x61,0xb8,0x93,0x55,0x1,0x1,0x53,0x3,0x2c,0x4b,0x31,0x32,0x42,0x26,0x10,0x17,0x32,0x4f,0x37,0x49,0x54,0x2,0x89,0x3f,0x2,0xe8,0xfe,0xfa,0xfe,0xdf,0xe,0x27,0x41,0x7d,0xb6,0x75,0x5e,0xaf,0x8b,0x51,0x3c,0x71,0xa1,0x64,0x35,0x4e,0x2b,0x28,0x46,0x5b,0x33,0x36,0x56,0x3d,0x20,0x32,0x0,0x1,0x0,0x54,0xff,0xec,0x4,0x69,0x5,0xc5,0x0,0x36,0x0,0x1b,0x40,0xd,0xe,0x2c,0x18,0x22,0x22,0x2c,0x3,0x0,0x4,0x72,0x2c,0xd,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x11,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x6,0x15,0x27,0x26,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x12,0x36,0x24,0x3,0x51,0x36,0x12,0x61,0xa9,0x7f,0x47,0x18,0x30,0x47,0x2f,0x27,0x42,0x31,0x1a,0x1c,0x33,0x47,0x2a,0x40,0x59,0x2d,0x51,0x2,0x32,0x64,0x96,0x63,0x64,0x99,0x69,0x36,0x4b,0x88,0xba,0x70,0x73,0xc3,0x91,0x51,0x7b,0xd5,0x1,0x14,0x5,0xc5,0xfe,0xf7,0x36,0x6d,0xa6,0x70,0xff,0x46,0x68,0x44,0x22,0x24,0x42,0x58,0x34,0x38,0x5a,0x3f,0x21,0x39,0x58,0x2d,0x52,0x3c,0x80,0x6e,0x44,0x4c,0x88,0xb6,0x6a,0x6b,0xb7,0x88,0x4c,0x4f,0x97,0xda,0x8a,0x7b,0xbb,0x1,0x24,0xcb,0x6a,0x0,0x1,0x0,0x34,0x0,0x0,0x4,0x4e,0x5,0xb0,0x0,0x6,0x0,0x13,0x40,0x9,0x1,0x5,0x5,0x6,0x4,0x72,0x3,0xc,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x1,0x21,0x1,0x21,0x11,0x4,0x4e,0xfd,0xe0,0xfe,0x9c,0x2,0x21,0xfd,0x49,0x5,0xb0,0xb4,0xfb,0x4,0x4,0xac,0x1,0x4,0x0,0x0,0x4,0x0,0x55,0xff,0xec,0x4,0x4d,0x5,0xc5,0x0,0x10,0x0,0x20,0x0,0x30,0x0,0x40,0x0,0x21,0x40,0x10,0xd,0x3d,0x3d,0x25,0x2d,0x15,0x15,0x4,0x35,0x2d,0x5,0x72,0x1d,0x4,0xd,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x12,0x39,0x33,0x12,0x39,0x30,0x31,0x41,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x5,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x1,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x5,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x4,0x4d,0x83,0xe5,0x92,0x91,0xe7,0x86,0x4d,0x8a,0xb9,0x6c,0x92,0xe6,0x84,0xfe,0xad,0x2a,0x4c,0x33,0x32,0x4d,0x2b,0x2c,0x4d,0x33,0x33,0x4b,0x29,0x1,0x35,0x79,0xd7,0x8c,0x8b,0xd9,0x7b,0x7b,0xd8,0x8a,0x8c,0xd8,0x7a,0xfe,0xaf,0x20,0x3e,0x2f,0x2d,0x3e,0x20,0x20,0x3f,0x2e,0x2f,0x3d,0x1f,0x1,0x91,0x8b,0xbc,0x5e,0x5e,0xbc,0x8b,0x5f,0x97,0x6a,0x38,0x63,0xb6,0x64,0x3c,0x53,0x2c,0x2c,0x53,0x3c,0x3a,0x55,0x2d,0x2d,0x55,0x2,0xb9,0x72,0xab,0x5f,0x5f,0xab,0x72,0x86,0xb6,0x5e,0x5e,0xb6,0x98,0x34,0x4b,0x29,0x28,0x4b,0x35,0x34,0x4e,0x2c,0x2c,0x4e,0x0,0x0,0x1,0x0,0x50,0xff,0xec,0x4,0x48,0x5,0xc5,0x0,0x38,0x0,0x1b,0x40,0xd,0x0,0x38,0x16,0x21,0x21,0x38,0xc,0x2b,0x5,0x72,0x38,0xc,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x65,0x33,0x32,0x3e,0x2,0x35,0x11,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x27,0x17,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x3,0x23,0x23,0x1,0x2f,0x14,0x64,0xa0,0x72,0x3d,0x18,0x2e,0x40,0x28,0x28,0x3d,0x2b,0x16,0x17,0x2d,0x45,0x2e,0x2e,0x43,0x2c,0x15,0x1,0x62,0x3a,0x66,0x85,0x4a,0x63,0x9f,0x70,0x3b,0x4a,0x88,0xba,0x6f,0x69,0xb8,0x8c,0x50,0x4c,0x8c,0xbf,0xe7,0x81,0x1a,0xfa,0x2c,0x5d,0x95,0x6a,0x1,0x2d,0x46,0x67,0x44,0x21,0x2d,0x4b,0x5d,0x2f,0x35,0x5b,0x43,0x26,0x21,0x37,0x40,0x1f,0x4d,0x40,0x7c,0x65,0x3c,0x46,0x82,0xb5,0x6f,0x6b,0xbc,0x8f,0x52,0x4f,0x98,0xde,0x8f,0x74,0x9b,0xfa,0xbd,0x7f,0x40,0xff,0xff,0x0,0x76,0xff,0xf5,0x1,0xea,0x4,0x65,0x4,0x26,0x0,0x12,0x1,0x0,0x0,0x7,0x0,0x12,0x0,0x1,0x3,0x1e,0xff,0xff,0x0,0x44,0xfe,0x78,0x1,0xdf,0x4,0x65,0x4,0x27,0x0,0x12,0xff,0xf6,0x3,0x1e,0x0,0x6,0x0,0x10,0x19,0x0,0x0,0x2,0x0,0x2e,0x0,0x76,0x3,0xa3,0x4,0x50,0x0,0x4,0x0,0x9,0x0,0x16,0x40,0xc,0x1,0x3,0x7,0x6,0x0,0x4,0x8,0x5,0x8,0x2,0x9,0x2,0x0,0x2f,0x2f,0x12,0x17,0x39,0x30,0x31,0x41,0x5,0x11,0x1,0x35,0x25,0x5,0x5,0x35,0x1,0x1,0x41,0x2,0x62,0xfc,0x8b,0x3,0x75,0xfd,0x9d,0xfe,0xee,0x3,0x75,0x2,0x77,0xce,0xfe,0xcd,0x1,0x68,0xe4,0x5c,0xd2,0x48,0xe4,0x1,0x68,0x0,0x2,0x0,0x80,0x1,0x1b,0x4,0x1f,0x3,0xd6,0x0,0x3,0x0,0x7,0x0,0xe,0xb5,0x6,0x7,0x12,0x3,0x2,0x10,0x0,0x3f,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x4,0x1f,0xfc,0x61,0x3,0x9f,0xfc,0x61,0x3,0xd6,0xfe,0xfc,0x1,0x4,0xfe,0x49,0xfe,0xfc,0x1,0x4,0x0,0x2,0x0,0x6f,0x0,0x75,0x3,0xdf,0x4,0x4f,0x0,0x4,0x0,0x9,0x0,0x15,0x40,0xb,0x5,0x8,0x4,0x0,0x6,0x3,0x1,0x7,0x2,0x9,0x2,0x0,0x2f,0x2f,0x12,0x17,0x39,0x30,0x31,0x41,0x25,0x11,0x1,0x15,0x5,0x25,0x25,0x15,0x1,0x2,0xcf,0xfd,0xa0,0x3,0x70,0xfc,0x90,0x2,0x60,0x1,0x10,0xfc,0x90,0x2,0x4f,0xce,0x1,0x32,0xfe,0x98,0xe5,0x5b,0xd3,0x47,0xe4,0xfe,0x98,0x0,0x0,0x2,0x0,0x1f,0xff,0xf4,0x3,0xce,0x5,0xc4,0x0,0x20,0x0,0x2c,0x0,0x1b,0x40,0xd,0x1,0x1,0x24,0x24,0x2a,0xb,0x72,0x11,0x11,0xd,0x16,0x3,0x72,0x0,0x2b,0x32,0x32,0x2f,0x2b,0x32,0x11,0x33,0x2f,0x30,0x31,0x41,0x21,0x34,0x36,0x36,0x37,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x7,0x21,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x6,0x6,0x1,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x2,0x77,0xfe,0xe1,0x19,0x3e,0x35,0x2f,0x44,0x24,0x1d,0x39,0x2b,0x23,0x3d,0x26,0x2,0xfe,0xad,0x3,0x7f,0xd5,0x84,0x92,0xd2,0x70,0x41,0x6d,0x43,0x3a,0x2a,0xfe,0xb6,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0x1,0xcd,0x58,0x87,0x6c,0x2e,0x27,0x48,0x4a,0x2a,0x34,0x42,0x21,0x22,0x47,0x3a,0x95,0xbb,0x57,0x5a,0xb1,0x81,0x56,0x7f,0x6d,0x3e,0x33,0x69,0xfe,0x81,0x48,0x61,0x61,0x48,0x48,0x61,0x61,0x0,0x2,0x0,0x3d,0xfe,0x3b,0x6,0xe1,0x5,0x82,0x0,0x41,0x0,0x68,0x0,0x27,0x40,0x12,0x12,0x5,0x5,0x47,0x52,0x13,0x72,0x61,0x64,0x64,0xb,0x5d,0x5d,0x1d,0x1d,0x3c,0x29,0x30,0x0,0x2f,0x33,0x2f,0x33,0x11,0x33,0x2f,0x33,0x33,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0xe,0x3,0x23,0x22,0x2e,0x2,0x37,0x13,0x33,0x3,0x6,0x1e,0x2,0x33,0x32,0x3e,0x2,0x37,0x36,0x2e,0x3,0x23,0x22,0xe,0x3,0x7,0x6,0x1e,0x3,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x24,0x26,0x26,0x2,0x37,0x36,0x12,0x36,0x36,0x24,0x33,0x32,0x4,0x16,0x16,0x12,0x1,0x6,0x1e,0x2,0x33,0x32,0x3e,0x2,0x37,0x17,0xe,0x3,0x23,0x22,0x2e,0x2,0x37,0x3e,0x4,0x33,0x32,0x16,0x17,0x7,0x26,0x26,0x23,0x22,0xe,0x2,0x6,0xdb,0x4,0x36,0x6d,0xa7,0x75,0x3f,0x69,0x4b,0x27,0x4,0x33,0xe1,0x32,0x5,0xd,0x1d,0x27,0x14,0x2b,0x49,0x37,0x20,0x2,0x6,0x26,0x5b,0x90,0xc6,0x80,0x79,0xcc,0xa1,0x73,0x42,0x6,0x7,0x2d,0x64,0x96,0xc7,0x79,0x57,0xb5,0x3f,0x26,0x46,0xd2,0x5d,0xa2,0xfe,0xf6,0xcb,0x87,0x40,0x7,0x7,0x58,0x9b,0xd8,0x1,0xf,0x9f,0x9e,0x1,0x1,0xc2,0x81,0x3b,0xfc,0x11,0x5,0xb,0x1f,0x33,0x23,0x11,0x2c,0x2e,0x2c,0x10,0x5d,0x17,0x42,0x55,0x67,0x3d,0x49,0x75,0x50,0x23,0xa,0xc,0x3b,0x58,0x72,0x87,0x4b,0x77,0x87,0x3d,0x6e,0x1d,0x5d,0x40,0x3c,0x56,0x3c,0x25,0x2,0x26,0x6a,0xcc,0xa4,0x61,0x2c,0x52,0x74,0x48,0x2,0x4b,0xfd,0xb5,0x2a,0x36,0x1e,0xd,0x3a,0x69,0x8d,0x52,0x7d,0xd7,0xac,0x79,0x41,0x4c,0x8d,0xc2,0xec,0x85,0x90,0xe7,0xad,0x73,0x3a,0x26,0x1b,0xa6,0x2d,0x2c,0x4a,0x94,0xdb,0x1,0x22,0xb4,0xa4,0x1,0x21,0xec,0xab,0x5c,0x50,0x97,0xd4,0xfe,0xf8,0xfe,0xf5,0x40,0x63,0x42,0x22,0x11,0x2d,0x53,0x43,0x72,0x48,0x6c,0x48,0x24,0x40,0x77,0xa7,0x67,0x65,0xac,0x87,0x60,0x32,0x43,0x2b,0x9c,0x1a,0x31,0x2f,0x5d,0x87,0x0,0x0,0x3,0xff,0xfc,0x0,0x0,0x5,0x78,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x29,0x40,0x14,0x4,0x7,0x7,0xa,0xd,0xd,0x6,0x0,0xb,0xc,0xc,0x2,0x8,0x3,0x2,0x72,0x5,0x2,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x39,0x39,0x33,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x13,0x1,0x3,0x33,0x1,0x1,0x11,0x21,0x11,0x2,0xd8,0xfe,0x9d,0xfe,0x87,0x2,0x17,0xef,0xfc,0xfe,0x9c,0x2e,0xf2,0x2,0x1a,0xfe,0x78,0xfd,0x15,0x4,0x7e,0xfb,0x82,0x5,0xb0,0xfa,0x50,0x4,0x7e,0x1,0x32,0xfa,0x50,0x2,0x1f,0xfe,0xf1,0x1,0xf,0x0,0x0,0x2,0x0,0x6f,0x0,0x0,0x4,0xd6,0x5,0xb0,0x0,0x19,0x0,0x30,0x0,0x29,0x40,0x14,0x19,0x29,0x26,0x2,0x27,0x27,0x1,0x26,0x26,0xe,0xc,0xf,0x2,0x72,0x1c,0x1b,0x1b,0xe,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x21,0x27,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0x6,0x6,0x7,0x3,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x37,0x21,0x17,0x36,0x16,0x16,0x15,0x14,0x6,0x6,0x2,0xc1,0xfe,0x89,0x2,0x1,0x30,0x52,0x62,0x2d,0x2e,0x63,0x4e,0xac,0xfe,0xa1,0x2,0xb,0x87,0xd4,0x95,0x4e,0x4c,0xb1,0x99,0x6f,0xfe,0x42,0x78,0x1,0x46,0x48,0x57,0x27,0x25,0x50,0x43,0xfe,0xd9,0x2,0x1,0x61,0x52,0x92,0xab,0x4a,0x7b,0xf4,0x2,0x6b,0xe6,0x25,0x48,0x36,0x3e,0x4c,0x23,0xfb,0x5f,0x5,0xb0,0x31,0x64,0x97,0x66,0x59,0x9c,0x61,0x2,0xfd,0x3a,0x1,0xe,0x2d,0x4b,0x2e,0x38,0x52,0x2d,0xe6,0x5c,0x6,0x5e,0x9a,0x54,0x8f,0xc0,0x60,0x0,0x0,0x1,0x0,0x46,0xff,0xec,0x5,0xb,0x5,0xc5,0x0,0x27,0x0,0x15,0x40,0xa,0x19,0x15,0x10,0x3,0x72,0x24,0x0,0x5,0x9,0x72,0x0,0x2b,0xcc,0x33,0x2b,0xcc,0x33,0x30,0x31,0x41,0x21,0x6,0x6,0x4,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x4,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x3,0xab,0x1,0x5e,0x7,0x96,0xfe,0xf7,0xb4,0x92,0xe5,0x9f,0x53,0x57,0xa1,0xe2,0x8a,0xbe,0x1,0x6,0x90,0xd,0xfe,0xa2,0x2,0x34,0x70,0x5d,0x41,0x60,0x40,0x1f,0x1c,0x3e,0x63,0x48,0x50,0x6e,0x3c,0x1,0xed,0x98,0xe8,0x81,0x62,0xb8,0x1,0x6,0xa4,0x4f,0xa4,0x1,0x7,0xb9,0x62,0x88,0xed,0x97,0x52,0x6f,0x38,0x30,0x68,0xa5,0x74,0x51,0x74,0xa4,0x68,0x31,0x33,0x69,0x0,0x2,0x0,0x6f,0x0,0x0,0x4,0xe6,0x5,0xb0,0x0,0x1a,0x0,0x1e,0x0,0x1b,0x40,0xd,0x2,0x1,0x1,0x1d,0xe,0xf,0xf,0x1e,0x2,0x72,0x1d,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x61,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x35,0x34,0x2e,0x2,0x23,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x15,0x14,0x2,0x6,0x6,0x1,0x11,0x21,0x11,0x2,0x48,0xfe,0xbd,0x2,0x1,0x41,0x64,0x8b,0x49,0x29,0x50,0x77,0x4d,0xfe,0xbc,0x1,0x44,0x94,0xf7,0xb5,0x63,0x63,0xb4,0xf5,0xfe,0xf4,0xfe,0xa1,0x1,0xe,0x60,0xbf,0x8c,0x3f,0x69,0x9f,0x6b,0x36,0x1,0xf,0x65,0xbb,0xff,0x9b,0x3d,0x9a,0xff,0x0,0xba,0x65,0x5,0xb0,0xfa,0x50,0x5,0xb0,0x0,0x0,0x4,0x0,0x6f,0x0,0x0,0x4,0x5c,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1d,0x40,0xe,0xb,0xa,0xa,0x6,0xf,0xe,0x7,0x2,0x72,0x3,0x2,0x6,0x8,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x4,0x59,0xfc,0xf8,0x7d,0xfe,0xa1,0x3,0x86,0xfd,0x5c,0x3,0xb,0xfc,0xf5,0x1,0xe,0xfe,0xf2,0x1,0xe,0x4,0xa2,0xfa,0x50,0x5,0xb0,0xfd,0xbe,0xfe,0xfb,0x1,0x5,0x2,0x42,0xfe,0xf1,0x1,0xf,0x0,0x3,0x0,0x6f,0x0,0x0,0x4,0x3d,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xd,0x7,0x6,0x6,0x2,0xa,0xb,0xb,0x3,0x2,0x72,0x2,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0xce,0xfe,0xa1,0x3,0x95,0xfd,0x66,0x2,0xd3,0xfd,0x2d,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfd,0xa2,0xfe,0xf2,0x1,0xe,0x2,0x5e,0xfe,0xf1,0x1,0xf,0x0,0x0,0x1,0x0,0x52,0xff,0xec,0x5,0x16,0x5,0xc5,0x0,0x2b,0x0,0x1b,0x40,0xd,0x2b,0x2a,0x2a,0x5,0x19,0x15,0x10,0x3,0x72,0x24,0x5,0x9,0x72,0x0,0x2b,0x32,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0xe,0x2,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x16,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x37,0x35,0x23,0x35,0x5,0x16,0x25,0x99,0xe8,0x9d,0x91,0xec,0xa9,0x5b,0x5c,0xa7,0xe3,0x88,0xc9,0xfc,0x82,0xe,0xfe,0xaf,0xa,0x37,0x66,0x51,0x3f,0x67,0x48,0x27,0x25,0x4b,0x75,0x50,0x38,0x50,0x35,0xe,0xf4,0x3,0xa,0xfd,0xaa,0x29,0x5d,0x42,0x5d,0xb5,0x1,0x7,0xaa,0x51,0xaa,0x1,0x8,0xb5,0x5e,0x7f,0xdf,0x92,0x48,0x65,0x35,0x36,0x6d,0xa4,0x6e,0x53,0x6d,0xa4,0x6d,0x37,0x13,0x1d,0xd,0xe2,0xf1,0x0,0x3,0x0,0x6f,0x0,0x0,0x5,0x30,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xd,0x9,0x6,0x8,0x3,0x2,0x2,0x6,0x7,0x2,0x72,0x6,0x8,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x4,0x44,0xfd,0x15,0x75,0xfe,0xa1,0x4,0xc1,0xfe,0xa2,0x3,0x6e,0xfe,0xf2,0x1,0xe,0x2,0x42,0xfa,0x50,0x5,0xb0,0xfa,0x50,0x5,0xb0,0x0,0x1,0x0,0x86,0x0,0x0,0x1,0xe4,0x5,0xb0,0x0,0x3,0x0,0xc,0xb5,0x0,0x2,0x72,0x1,0x8,0x72,0x0,0x2b,0x2b,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0xe4,0xfe,0xa2,0x5,0xb0,0xfa,0x50,0x5,0xb0,0x0,0x1,0x0,0x25,0xff,0xec,0x4,0x10,0x5,0xb0,0x0,0x13,0x0,0x13,0x40,0x9,0x10,0xc,0xc,0x7,0x9,0x72,0x2,0x2,0x72,0x0,0x2b,0x2b,0x32,0x2f,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x2,0xb2,0x1,0x5e,0x85,0xe3,0x8d,0x92,0xe3,0x81,0x1,0x60,0x22,0x43,0x31,0x30,0x43,0x24,0x1,0xc9,0x3,0xe7,0xfc,0x19,0x92,0xd6,0x75,0x62,0xcc,0x9e,0x4a,0x53,0x21,0x31,0x5d,0x0,0x3,0x0,0x6f,0x0,0x0,0x5,0x33,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1c,0x40,0x10,0x6,0x7,0xb,0x5,0xc,0x8,0x6,0x2,0x4,0x3,0x2,0x72,0xa,0x2,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x1,0x3,0x13,0x1,0x13,0x1,0x25,0x1,0x1,0xce,0xfe,0xa1,0x4,0xc4,0xfd,0xcc,0xfe,0xb6,0x40,0xd3,0x1,0x3a,0x12,0xfe,0x88,0x1,0x11,0x2,0x6,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfd,0x1e,0xfe,0x97,0x1,0x42,0x1,0x40,0x1,0xc9,0xfa,0x50,0x2,0x90,0xc9,0xfc,0xa7,0x0,0x2,0x0,0x6f,0x0,0x0,0x4,0x31,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x15,0x40,0xa,0x3,0x2,0x2,0x6,0x7,0x2,0x72,0x6,0x8,0x72,0x0,0x2b,0x2b,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x4,0x31,0xfd,0x20,0x7d,0xfe,0xa1,0x1,0xe,0xfe,0xf2,0x1,0xe,0x4,0xa2,0xfa,0x50,0x5,0xb0,0x0,0x3,0x0,0x6f,0x0,0x0,0x6,0x92,0x5,0xb0,0x0,0x6,0x0,0xb,0x0,0x10,0x0,0x1b,0x40,0xd,0x2,0x7,0xe,0x5,0xb,0x8,0x72,0xc,0x4,0x0,0x7,0x2,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x32,0x11,0x39,0x30,0x31,0x41,0x21,0x1,0x1,0x21,0x1,0x23,0x1,0x21,0x13,0x11,0x21,0x1,0x21,0x11,0x21,0x11,0x1,0x1d,0x1,0x1e,0x1,0x45,0x1,0x45,0x1,0x1e,0xfe,0x11,0xe8,0xfd,0x63,0x1,0x28,0x37,0xfe,0xa1,0x4,0xfa,0x1,0x29,0xfe,0xa0,0x5,0xb0,0xfc,0xb,0x3,0xf5,0xfa,0x50,0x5,0xb0,0xfb,0xa4,0xfe,0xac,0x5,0xb0,0xfa,0x50,0x1,0x54,0x0,0x1,0x0,0x6f,0x0,0x0,0x5,0x2f,0x5,0xb0,0x0,0x9,0x0,0x17,0x40,0xb,0x3,0x8,0x5,0x9,0x7,0x2,0x72,0x2,0x5,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x39,0x30,0x31,0x41,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x11,0x5,0x2f,0xfe,0xa2,0xfd,0xfd,0xfe,0xa1,0x1,0x5f,0x2,0x3,0x5,0xb0,0xfa,0x50,0x3,0x8a,0xfc,0x76,0x5,0xb0,0xfc,0x76,0x3,0x8a,0x0,0x0,0x2,0x0,0x46,0xff,0xec,0x5,0x3f,0x5,0xc4,0x0,0x15,0x0,0x2b,0x0,0x13,0x40,0x9,0x27,0x6,0x1c,0x11,0x3,0x72,0x6,0x9,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x16,0x16,0x12,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x5,0x3f,0x5d,0xaa,0xe8,0x8c,0x8d,0xe9,0xab,0x5d,0x5d,0xa9,0xe9,0x8d,0x8c,0xe9,0xaa,0x5e,0xfe,0x9c,0x25,0x48,0x69,0x43,0x46,0x68,0x46,0x23,0x23,0x47,0x69,0x46,0x43,0x68,0x47,0x25,0x2,0xf5,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x63,0xbb,0x1,0x9,0xa7,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x63,0xbb,0xfe,0xf6,0xe2,0x3d,0x6c,0xa5,0x70,0x39,0x39,0x70,0xa5,0x6c,0x3d,0x6b,0xa5,0x72,0x3a,0x3a,0x72,0xa5,0x0,0x1,0x0,0x6f,0x0,0x0,0x4,0xe8,0x5,0xb0,0x0,0x17,0x0,0x17,0x40,0xb,0x2,0x1,0x1,0xe,0xc,0xf,0x2,0x72,0xe,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x2,0xb4,0xfe,0x96,0x1,0x6a,0x4a,0x5c,0x2b,0x2b,0x5c,0x4a,0xe6,0xfe,0xa1,0x2,0x45,0xaf,0xfd,0x88,0x88,0xfd,0x1,0xee,0x1,0xf,0x32,0x59,0x38,0x3c,0x66,0x3f,0xfb,0x5f,0x5,0xb0,0x80,0xdf,0x8f,0x8d,0xd2,0x75,0x0,0x0,0x3,0x0,0x48,0xfe,0xf6,0x5,0x42,0x5,0xc4,0x0,0x3,0x0,0x19,0x0,0x2f,0x0,0x19,0x40,0xc,0x20,0x15,0x3,0x72,0x0,0x2b,0x2b,0x3,0xa,0x9,0x72,0x2,0x0,0x2f,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x30,0x31,0x65,0x1,0x7,0x1,0x1,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x16,0x16,0x12,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x3,0x9b,0x1,0x96,0xda,0xfe,0x71,0x2,0x7a,0x5d,0xab,0xe8,0x8c,0x8d,0xe9,0xab,0x5d,0x5d,0xa9,0xe9,0x8d,0x8c,0xe9,0xab,0x5e,0xfe,0x9b,0x25,0x48,0x69,0x43,0x46,0x68,0x46,0x23,0x23,0x47,0x69,0x46,0x43,0x68,0x47,0x25,0xf0,0xfe,0xbe,0xb8,0x1,0x42,0x2,0xbd,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x63,0xbb,0x1,0x9,0xa7,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x63,0xbb,0xfe,0xf6,0xe2,0x3d,0x6c,0xa5,0x70,0x39,0x39,0x70,0xa5,0x6c,0x3d,0x6b,0xa5,0x72,0x3a,0x3a,0x72,0xa5,0x0,0x0,0x2,0x0,0x6f,0x0,0x0,0x5,0x4,0x5,0xb0,0x0,0x18,0x0,0x1d,0x0,0x23,0x40,0x12,0x1b,0x1a,0x9,0x3,0xc,0xc,0xb,0xb,0x0,0x1c,0x19,0x18,0x8,0x72,0x16,0x0,0x2,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x12,0x39,0x2f,0x33,0x12,0x17,0x39,0x30,0x31,0x53,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x7,0x21,0x3,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x21,0x1,0x25,0x1,0x15,0x6f,0x2,0x3d,0xa8,0xf8,0x87,0x4e,0x8b,0x5c,0x73,0xfe,0x1f,0x2,0x1,0x64,0x43,0x58,0x2d,0x2e,0x59,0x41,0xde,0xfe,0xa1,0x3,0x1d,0xfe,0xbe,0x1,0x74,0x1,0x46,0x5,0xb0,0x64,0xc4,0x90,0x7d,0xa8,0x6d,0x23,0x41,0x1,0xf,0x30,0x59,0x3e,0x3f,0x5a,0x30,0xfb,0x5f,0x2,0x84,0x2,0xfd,0x89,0xf,0x0,0x0,0x1,0x0,0x40,0xff,0xec,0x4,0xbc,0x5,0xc4,0x0,0x39,0x0,0x1f,0x40,0xf,0xa,0x26,0xf,0x36,0x31,0x31,0x2b,0x9,0x72,0x18,0x14,0x14,0xf,0x3,0x72,0x0,0x2b,0x32,0x2f,0x32,0x2b,0x32,0x2f,0x32,0x11,0x39,0x39,0x30,0x31,0x41,0x34,0x2e,0x2,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x3,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x3,0x5d,0x14,0x36,0x65,0x52,0x60,0xb2,0x8c,0x52,0x54,0x97,0xcc,0x79,0xa0,0xf5,0x8b,0xfe,0xa3,0x2d,0x5a,0x44,0x42,0x5a,0x2e,0x25,0x45,0x63,0x3e,0x74,0xb5,0x7d,0x41,0x4c,0x8e,0xc6,0x7a,0x70,0xd9,0xb0,0x69,0x1,0x60,0x22,0x42,0x60,0x3e,0x43,0x52,0x26,0x1,0x83,0x22,0x37,0x30,0x31,0x1b,0x20,0x51,0x6d,0x93,0x62,0x5e,0x97,0x6b,0x39,0x6f,0xcb,0x8a,0x37,0x54,0x30,0x28,0x43,0x28,0x21,0x35,0x2e,0x2a,0x14,0x25,0x5b,0x73,0x92,0x5c,0x62,0x98,0x69,0x36,0x39,0x77,0xbb,0x81,0x40,0x58,0x35,0x17,0x27,0x41,0x0,0x2,0x0,0x25,0x0,0x0,0x4,0xe6,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x15,0x40,0xa,0x0,0x3,0x3,0x6,0x7,0x2,0x72,0x1,0x8,0x72,0x0,0x2b,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x30,0xfe,0xa1,0x3,0x15,0xfb,0x3f,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfe,0xf1,0x1,0xf,0x0,0x0,0x1,0x0,0x6a,0xff,0xec,0x4,0xe4,0x5,0xb0,0x0,0x15,0x0,0x13,0x40,0x9,0x1,0x11,0x6,0xb,0x2,0x72,0x6,0x9,0x72,0x0,0x2b,0x2b,0x11,0x33,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x4,0x23,0x22,0x24,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x3,0x85,0x1,0x5f,0x8e,0xff,0x0,0xad,0xab,0xfe,0xfd,0x91,0x1,0x60,0x34,0x64,0x47,0x48,0x62,0x32,0x5,0xb0,0xfc,0x49,0xaa,0xeb,0x78,0x78,0xeb,0xaa,0x3,0xb7,0xfc,0x49,0x5a,0x71,0x34,0x34,0x71,0x5a,0x0,0x0,0x2,0xff,0xfc,0x0,0x0,0x5,0x4e,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0x17,0x40,0xb,0x0,0x6,0x8,0x1,0x9,0x2,0x72,0x3,0x8,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x39,0x30,0x31,0x41,0x1,0x21,0x1,0x23,0x3,0x1,0x13,0x21,0x1,0x2,0x96,0x1,0x2f,0x1,0x89,0xfe,0x15,0xfe,0xe2,0x1,0x2f,0x33,0xfe,0xff,0xfe,0x18,0x1,0x57,0x4,0x59,0xfa,0x50,0x5,0xb0,0xfb,0xa7,0xfe,0xa9,0x5,0xb0,0x0,0x4,0x0,0x16,0x0,0x0,0x6,0xd9,0x5,0xb0,0x0,0x5,0x0,0xa,0x0,0xf,0x0,0x15,0x0,0x1b,0x40,0xd,0x10,0xc,0x1,0xa,0x2,0x72,0x13,0x12,0xe,0x4,0x9,0x8,0x72,0x0,0x2b,0x32,0x32,0x32,0x32,0x2b,0x32,0x32,0x32,0x30,0x31,0x65,0x1,0x33,0x17,0x1,0x23,0x3,0x13,0x7,0x23,0x1,0x1,0x13,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x37,0x1,0xbf,0x1,0x22,0xad,0x5e,0xfe,0xcb,0xbf,0x86,0xf5,0x3f,0xdd,0xfe,0xcb,0x4,0x75,0xf3,0x1,0x5b,0xfe,0xcb,0xdc,0xbd,0x1,0x29,0x3c,0xbf,0xfe,0xc4,0x62,0x84,0x5,0x2c,0x71,0xfa,0xc1,0x5,0xb0,0xfa,0xca,0x7a,0x5,0xb0,0xfa,0xd1,0x5,0x2f,0xfa,0x50,0x5,0xb0,0xfa,0xcc,0x7c,0x5,0x41,0x6f,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x5,0x17,0x5,0xb0,0x0,0xb,0x0,0x1a,0x40,0xe,0x7,0x4,0xa,0x1,0x4,0x9,0x3,0xb,0x2,0x72,0x6,0x9,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x13,0x13,0x21,0x1,0x1,0x21,0x3,0x3,0x21,0x1,0x1,0x1,0xa0,0xee,0xee,0x1,0x90,0xfe,0x6a,0x1,0xa1,0xfe,0x6c,0xf5,0xf5,0xfe,0x6b,0x1,0xa2,0xfe,0x69,0x5,0xb0,0xfe,0x1c,0x1,0xe4,0xfd,0x2e,0xfd,0x22,0x1,0xed,0xfe,0x13,0x2,0xde,0x2,0xd2,0x0,0x1,0xff,0xfc,0x0,0x0,0x5,0xa,0x5,0xb0,0x0,0x8,0x0,0x17,0x40,0xc,0x4,0x7,0x1,0x3,0x6,0x3,0x8,0x2,0x72,0x6,0x8,0x72,0x0,0x2b,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x49,0x2,0x21,0x1,0x11,0x21,0x11,0x1,0x1,0x77,0x1,0xc,0x1,0xd,0x1,0x7a,0xfe,0x2c,0xfe,0x9b,0xfe,0x2b,0x5,0xb0,0xfd,0x88,0x2,0x78,0xfc,0x5b,0xfd,0xf5,0x2,0xb,0x3,0xa5,0x0,0x0,0x3,0x0,0x3e,0x0,0x0,0x4,0xb1,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1f,0x40,0xf,0x4,0xc,0xc,0x9,0xd,0x2,0x72,0x7,0x3,0x3,0x2,0x2,0x6,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x23,0x35,0x1,0x33,0x23,0x11,0x21,0x11,0x4,0xb1,0xfb,0xe2,0x4,0x17,0xfc,0x97,0xfe,0x3,0x73,0xf4,0x71,0xfc,0x5,0x1,0xe,0xfe,0xf2,0x1,0xe,0x3,0xee,0xfb,0x4,0xb9,0x4,0xf7,0xfe,0xf1,0x1,0xf,0x0,0x0,0x1,0x0,0x6c,0xfe,0xa3,0x2,0x35,0x6,0xaa,0x0,0x7,0x0,0xe,0xb4,0x3,0x6,0x2,0x7,0x6,0x0,0x2f,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x23,0x11,0x33,0x15,0x21,0x11,0x2,0x35,0x76,0x76,0xfe,0x37,0x6,0xaa,0xf6,0xf9,0xe4,0xf5,0x8,0x7,0x0,0x1,0xff,0xeb,0xff,0x83,0x3,0xac,0x5,0xb0,0x0,0x3,0x0,0x9,0xb2,0x1,0x2,0x0,0x0,0x2f,0x3f,0x30,0x31,0x45,0x1,0x21,0x1,0x2,0x4a,0xfd,0xa1,0x1,0x61,0x2,0x60,0x7d,0x6,0x2d,0xf9,0xd3,0x0,0x1,0x0,0xe,0xfe,0xa3,0x1,0xd7,0x6,0xaa,0x0,0x7,0x0,0xe,0xb4,0x5,0x4,0x0,0x1,0x4,0x0,0x2f,0x2f,0x33,0x11,0x33,0x30,0x31,0x53,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0xe,0x1,0xc9,0xfe,0x37,0x78,0x5,0xb4,0xf6,0xf7,0xf9,0xf5,0x6,0x1c,0x0,0x2,0x0,0x24,0x2,0xd9,0x3,0x74,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0x16,0x40,0x9,0x8,0x7,0x7,0x6,0x0,0x5,0x2,0x3,0x2,0x0,0x3f,0xcd,0x32,0x39,0x39,0x33,0x11,0x33,0x30,0x31,0x41,0x3,0x23,0x1,0x33,0x13,0x3,0x27,0x33,0x1,0x1,0xd3,0xb1,0xfe,0x1,0x2b,0xbc,0x6b,0xb1,0x38,0xbc,0x1,0x2b,0x4,0xb1,0xfe,0x28,0x2,0xd7,0xfd,0x29,0x1,0xd8,0xff,0xfd,0x29,0x0,0x1,0xff,0xff,0xff,0x5,0x3,0x87,0x0,0x0,0x0,0x3,0x0,0x8,0xb1,0x2,0x3,0x0,0x2f,0x33,0x30,0x31,0x61,0x15,0x21,0x35,0x3,0x87,0xfc,0x78,0xfb,0xfb,0x0,0x1,0x0,0x37,0x4,0xc6,0x2,0x62,0x6,0x0,0x0,0x3,0x0,0xa,0xb2,0x3,0x80,0x2,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x13,0x21,0x1,0x1,0x9b,0xc7,0xfe,0xef,0xfe,0xe6,0x6,0x0,0xfe,0xc6,0x1,0x3a,0x0,0x0,0x2,0x0,0x2e,0xff,0xec,0x4,0x12,0x4,0x4e,0x0,0x1b,0x0,0x3a,0x0,0x29,0x40,0x15,0x2b,0x2c,0x1e,0x27,0x1e,0x3a,0x3a,0xf,0x27,0x31,0xb,0x72,0x18,0x19,0xa,0x72,0x9,0x5,0xf,0x7,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x11,0x12,0x39,0x39,0x30,0x31,0x41,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x11,0x14,0x16,0x17,0x15,0x21,0x26,0x26,0x13,0x17,0x23,0x22,0xe,0x2,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x17,0xe,0x3,0x23,0x22,0x26,0x26,0x35,0x34,0x3e,0x2,0x33,0x2,0x91,0x1a,0x38,0x2f,0x26,0x36,0x1c,0xfe,0xaf,0x43,0x7d,0xaf,0x6c,0x81,0xcb,0x76,0x18,0x16,0xfe,0xae,0x18,0x17,0x29,0x2,0x95,0x2f,0x41,0x27,0x11,0x1d,0x32,0x1f,0x38,0x4f,0x2a,0x4a,0x14,0x33,0x4b,0x6c,0x4d,0x64,0xa7,0x64,0x3d,0x7c,0xc0,0x82,0x1,0x10,0x1,0xbe,0x2e,0x42,0x25,0x1a,0x34,0x28,0x4b,0x81,0x60,0x35,0x56,0xab,0x81,0xfe,0x45,0x6a,0x6d,0x29,0x11,0x32,0x91,0x1,0xd2,0xb4,0x1a,0x2d,0x38,0x1f,0x1e,0x2f,0x1a,0x2b,0x3e,0x1b,0x8a,0x28,0x52,0x45,0x2b,0x52,0x93,0x60,0x54,0x84,0x5c,0x30,0x0,0x3,0x0,0x62,0xff,0xec,0x4,0x4b,0x6,0x0,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xe,0x21,0x16,0x7,0x72,0x2b,0xb,0xb,0x72,0x4,0xa,0x72,0x0,0x0,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x53,0x21,0x11,0x3,0x21,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x17,0x15,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x62,0x1,0x51,0x23,0xfe,0xd2,0x3,0xe9,0x32,0x68,0x9e,0x6c,0x62,0x8c,0x5e,0x3a,0x11,0x11,0x3a,0x5e,0x8b,0x61,0x6d,0x9f,0x68,0x32,0xfe,0xaf,0xe,0x24,0x42,0x35,0x36,0x49,0x2b,0x12,0x1,0x2,0x22,0x54,0x49,0x36,0x43,0x22,0xc,0x6,0x0,0xfb,0xa,0xfe,0xf6,0x2,0x29,0x15,0x7b,0xca,0x93,0x50,0x55,0x97,0xc7,0x72,0x19,0x71,0xc7,0x97,0x55,0x52,0x94,0xc8,0x8c,0x15,0x3b,0x68,0x50,0x2e,0x24,0x43,0x61,0x3d,0x4f,0x53,0x76,0x3e,0x2a,0x4e,0x6c,0x0,0x1,0x0,0x35,0xff,0xec,0x3,0xfa,0x4,0x4e,0x0,0x27,0x0,0x19,0x40,0xc,0x1d,0x19,0x19,0x14,0x7,0x72,0x4,0x4,0x0,0x9,0xb,0x72,0x0,0x2b,0x32,0x32,0x2f,0x2b,0x32,0x2f,0x32,0x30,0x31,0x65,0x32,0x36,0x36,0x27,0x21,0x16,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x7,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x2,0x28,0x2f,0x43,0x23,0x1,0x1,0x3d,0x1,0x79,0xcf,0x82,0x7f,0xbe,0x7f,0x3f,0x3f,0x7f,0xbd,0x7e,0x87,0xcf,0x76,0x1,0xfe,0xc3,0x1,0x20,0x43,0x34,0x34,0x40,0x21,0xb,0xb,0x22,0x40,0xf0,0x23,0x41,0x2e,0x7a,0xb7,0x65,0x53,0x95,0xc8,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x4f,0x2d,0x0,0x0,0x3,0x0,0x35,0xff,0xec,0x4,0x20,0x6,0x0,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xd,0x21,0x4,0x4,0x16,0xb,0x72,0x2b,0xb,0x7,0x72,0x1,0x0,0x72,0x0,0x2b,0x2b,0x32,0x2b,0x32,0x2f,0x32,0x30,0x31,0x65,0x11,0x21,0x11,0x21,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x2,0xcd,0x1,0x53,0xfe,0xd0,0xfd,0x45,0x36,0x6a,0x9e,0x67,0x5c,0x8a,0x62,0x3e,0x10,0x10,0x3e,0x62,0x8b,0x5d,0x67,0x9d,0x69,0x36,0x1,0x51,0x10,0x27,0x41,0x30,0x41,0x55,0x29,0x3,0x2,0x16,0x2f,0x47,0x30,0x2f,0x41,0x28,0x12,0xf8,0x5,0x8,0xfa,0x0,0x2,0x10,0x15,0x7b,0xcb,0x93,0x50,0x55,0x98,0xcb,0x75,0x19,0x6e,0xc3,0x96,0x55,0x52,0x94,0xc8,0x8b,0x15,0x3d,0x68,0x4f,0x2c,0x3e,0x72,0x4d,0x4f,0x42,0x65,0x44,0x23,0x2c,0x4f,0x6b,0x0,0x0,0x1,0x0,0x3d,0xff,0xec,0x4,0x32,0x4,0x4e,0x0,0x2b,0x0,0x1f,0x40,0x10,0x67,0x13,0x1,0x6,0x13,0x12,0x12,0x0,0x19,0xb,0x7,0x72,0x24,0x0,0xb,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x5f,0x5d,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x21,0x35,0x21,0x35,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0xe,0x2,0x2,0x6b,0x84,0xd0,0x8f,0x4b,0x42,0x82,0xc4,0x82,0x73,0xb6,0x7f,0x43,0xfc,0x8c,0x2,0x2b,0x1,0x27,0x4a,0x35,0x37,0x47,0x27,0x10,0x21,0x3f,0x59,0x39,0x45,0x86,0x30,0x99,0x21,0x79,0xa8,0x14,0x53,0x92,0xbe,0x6a,0x26,0x77,0xcb,0x98,0x55,0x4a,0x8a,0xc4,0x7a,0x89,0xd3,0x1a,0x36,0x4c,0x28,0x30,0x53,0x6c,0x3c,0x26,0x3c,0x62,0x45,0x26,0x34,0x3c,0xb6,0x2f,0x58,0x37,0x0,0x0,0x2,0x0,0xd,0x0,0x0,0x2,0xe8,0x6,0x15,0x0,0x11,0x0,0x15,0x0,0x15,0x40,0xb,0x14,0x15,0x6,0x72,0xd,0x6,0x1,0x72,0x1,0xa,0x72,0x0,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x17,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x17,0x15,0x21,0x35,0x1,0xfc,0xfe,0xad,0x66,0xba,0x7f,0x2c,0x4e,0x25,0x1,0x12,0x26,0x1c,0x31,0x44,0x23,0xd2,0xfd,0x3f,0x4,0x92,0x7e,0xac,0x59,0xc,0x9,0xf8,0x5,0x4,0x1d,0x39,0x29,0x58,0xea,0xea,0x0,0x0,0x3,0x0,0x38,0xfe,0x56,0x4,0x39,0x4,0x4e,0x0,0x13,0x0,0x29,0x0,0x3e,0x0,0x1b,0x40,0xf,0x30,0x25,0xb,0x72,0x3a,0x1a,0x7,0x72,0xe,0x6,0xf,0x72,0x0,0x6,0x72,0x0,0x2b,0x2b,0x32,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x3,0x7,0x1,0x32,0x8a,0xf7,0xa5,0x49,0x98,0x84,0x2d,0x8d,0x29,0x7c,0x54,0x49,0x63,0x34,0xfd,0x51,0x3d,0x73,0xa4,0x67,0x6f,0x8f,0x57,0x31,0x11,0x11,0x3b,0x5e,0x8d,0x62,0x66,0xa3,0x73,0x3d,0x1,0x51,0x17,0x30,0x47,0x30,0x49,0x5a,0x28,0x3,0x2,0x16,0x2f,0x4d,0x36,0x2f,0x48,0x30,0x19,0x4,0x3a,0xfb,0xf0,0x96,0xd1,0x6d,0x25,0x48,0x35,0xc6,0x2e,0x41,0x34,0x63,0x46,0x3,0xe,0xfe,0xd6,0x15,0x7b,0xcb,0x93,0x50,0x55,0x98,0xcb,0x75,0x19,0x6e,0xc3,0x96,0x55,0x52,0x94,0xc8,0x8b,0x15,0x3d,0x68,0x4f,0x2c,0x3e,0x72,0x4d,0x4f,0x42,0x65,0x44,0x23,0x2c,0x4f,0x6b,0x0,0x0,0x2,0x0,0x58,0x0,0x0,0x4,0x28,0x6,0x0,0x0,0x3,0x0,0x1a,0x0,0x17,0x40,0xc,0x11,0x2,0x16,0xa,0x7,0x72,0x3,0x0,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x1,0xa9,0xfe,0xaf,0x1,0x29,0x4f,0x38,0x68,0x92,0x59,0x50,0x85,0x61,0x35,0xfe,0xad,0x25,0x44,0x31,0x3b,0x4a,0x27,0xe,0x6,0x0,0xfa,0x0,0x6,0x0,0xfc,0x42,0x2,0x72,0xc0,0x8e,0x4e,0x2e,0x66,0xa4,0x76,0xfd,0x60,0x2,0xa2,0x42,0x49,0x1d,0x28,0x47,0x60,0x0,0x2,0x0,0x5d,0x0,0x0,0x1,0xd3,0x5,0xf5,0x0,0x3,0x0,0xf,0x0,0x10,0xb7,0x7,0xd,0x3,0x6,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0xce,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x3,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x1,0xc3,0xfe,0xae,0x14,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0x1,0x17,0x48,0x5c,0x5c,0x48,0x48,0x5c,0x5c,0x0,0x2,0xff,0x8b,0xfe,0x4b,0x1,0xd5,0x5,0xf5,0x0,0x11,0x0,0x1d,0x0,0x13,0x40,0x9,0xd,0x6,0xf,0x72,0x15,0x1b,0x0,0x6,0x72,0x0,0x2b,0xce,0x32,0x2b,0x32,0x30,0x31,0x53,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x35,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x3,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x78,0x1,0x52,0x64,0xba,0x81,0x2b,0x49,0x2c,0x1a,0x2c,0x1a,0x2e,0x3e,0x21,0x19,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0x4,0x3a,0xfb,0xa3,0x82,0xb3,0x5d,0x7,0xa,0xff,0x4,0x5,0x1e,0x3e,0x2f,0x5,0x74,0x48,0x5c,0x5c,0x48,0x48,0x5c,0x5c,0x0,0x0,0x3,0x0,0x62,0x0,0x0,0x4,0x80,0x6,0x1,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1d,0x40,0x11,0x6,0x7,0xb,0x5,0xc,0x8,0x6,0x2,0x9,0x6,0x3,0x0,0x72,0xa,0x2,0xa,0x72,0x0,0x2b,0x32,0x2b,0x3f,0x12,0x17,0x39,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x7,0x27,0x1b,0x2,0x1,0x37,0x1,0x1,0xb3,0xfe,0xaf,0x4,0x5,0xfe,0x2a,0xf6,0x93,0xcd,0xfe,0x2b,0xfe,0xdf,0xf9,0x1,0xaa,0x6,0x1,0xf9,0xff,0x6,0x1,0xfe,0x39,0xfd,0xd9,0xf6,0xd6,0x1,0xb,0x1,0x3c,0xfb,0xc6,0x1,0xed,0xb1,0xfd,0x62,0x0,0x0,0x1,0x0,0x71,0x0,0x0,0x1,0xc3,0x6,0x0,0x0,0x3,0x0,0xc,0xb5,0x3,0x0,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0xc3,0xfe,0xae,0x6,0x0,0xfa,0x0,0x6,0x0,0x0,0x3,0x0,0x62,0x0,0x0,0x6,0x82,0x4,0x4e,0x0,0x4,0x0,0x1b,0x0,0x32,0x0,0x21,0x40,0x11,0x29,0x12,0x2,0x2e,0x22,0x22,0x17,0xb,0x3,0x6,0x72,0xb,0x7,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x2b,0x11,0x33,0x33,0x11,0x33,0x11,0x33,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x3,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x5,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x1,0xb3,0xfe,0xaf,0x1,0x3c,0x14,0x4d,0x36,0x6a,0x9b,0x66,0x47,0x74,0x54,0x2d,0xfe,0xaf,0x1f,0x3a,0x2a,0x2c,0x46,0x31,0x19,0x2,0x6a,0x5e,0x33,0x67,0x9a,0x66,0x4a,0x7c,0x5a,0x32,0xfe,0xae,0x1f,0x3a,0x28,0x30,0x46,0x2f,0x16,0x3,0x55,0xfc,0xab,0x4,0x3a,0xfe,0x8,0x2,0x72,0xc0,0x8e,0x4e,0x2b,0x5b,0x91,0x65,0xfd,0x2e,0x2,0xa7,0x45,0x46,0x18,0x28,0x47,0x60,0x39,0x2,0x72,0xc0,0x8e,0x4e,0x2c,0x62,0xa1,0x76,0xfd,0x57,0x2,0xa9,0x43,0x45,0x19,0x28,0x47,0x60,0x0,0x2,0x0,0x59,0x0,0x0,0x4,0x28,0x4,0x4e,0x0,0x4,0x0,0x1b,0x0,0x19,0x40,0xd,0x12,0x2,0x17,0xb,0x3,0x6,0x72,0xb,0x7,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x2b,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x3,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x1,0xaa,0xfe,0xaf,0x1,0x3c,0x13,0x4f,0x3c,0x6e,0x99,0x5e,0x4b,0x7d,0x5b,0x31,0xfe,0xad,0x24,0x44,0x31,0x34,0x48,0x2b,0x13,0x3,0x53,0xfc,0xad,0x4,0x3a,0xfe,0x8,0x2,0x7c,0xc3,0x88,0x47,0x2c,0x62,0xa1,0x76,0xfd,0x57,0x2,0xaa,0x41,0x45,0x1a,0x28,0x47,0x60,0x0,0x2,0x0,0x35,0xff,0xec,0x4,0x49,0x4,0x4e,0x0,0x15,0x0,0x2b,0x0,0x10,0xb7,0x1c,0x11,0xb,0x72,0x27,0x6,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x35,0x44,0x84,0xc2,0x7f,0x80,0xc3,0x84,0x44,0x44,0x84,0xc2,0x7f,0x7f,0xc4,0x84,0x44,0x1,0x51,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x2,0x12,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x3,0x0,0x62,0xfe,0x60,0x4,0x4b,0x4,0x4e,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xe,0x21,0x16,0x7,0x72,0x2b,0xb,0xb,0x72,0x3,0x6,0x72,0x2,0xe,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x17,0x15,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x1,0xb3,0xfe,0xaf,0x1,0x3a,0x2,0xaf,0x36,0x6a,0x9d,0x67,0x61,0x8c,0x5e,0x3a,0x11,0x11,0x3a,0x5e,0x8b,0x61,0x67,0x9d,0x6b,0x36,0xfe,0xaf,0x12,0x27,0x40,0x2f,0x36,0x49,0x2b,0x11,0x1,0x2,0x22,0x54,0x48,0x30,0x40,0x26,0x10,0x3,0x6a,0xfa,0xf6,0x5,0xda,0xfd,0xf0,0x15,0x76,0xca,0x96,0x53,0x56,0x98,0xc4,0x6d,0x1b,0x75,0xc9,0x96,0x54,0x4e,0x91,0xca,0x90,0x15,0x3f,0x69,0x4e,0x2a,0x21,0x43,0x63,0x42,0x52,0x4c,0x73,0x40,0x2d,0x51,0x6a,0x0,0x3,0x0,0x35,0xfe,0x60,0x4,0x20,0x4,0x4e,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xe,0x21,0x16,0xb,0x72,0x2b,0xb,0x7,0x72,0x4,0xe,0x72,0x3,0x6,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x37,0x21,0x11,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x2,0xcd,0x2f,0x1,0x24,0xfc,0x15,0x36,0x6a,0x9d,0x67,0x61,0x8b,0x5e,0x3b,0x11,0x11,0x3b,0x5e,0x8c,0x62,0x66,0x9c,0x6a,0x36,0x1,0x51,0x10,0x27,0x40,0x30,0x49,0x54,0x22,0x3,0x1,0x12,0x2b,0x48,0x36,0x2f,0x41,0x27,0x12,0xfe,0x60,0x4,0xf7,0xe3,0xfa,0x26,0x3,0xb3,0x15,0x7b,0xcb,0x91,0x4f,0x54,0x97,0xca,0x75,0x19,0x6e,0xc4,0x97,0x56,0x53,0x95,0xc9,0x8b,0x15,0x3d,0x69,0x50,0x2d,0x40,0x73,0x4d,0x4f,0x42,0x64,0x43,0x22,0x2b,0x4e,0x6a,0x0,0x2,0x0,0x62,0x0,0x0,0x2,0xf3,0x4,0x4e,0x0,0x4,0x0,0x16,0x0,0x19,0x40,0xd,0x6,0x9,0x9,0x5,0x14,0x7,0x72,0x3,0x6,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x25,0x3,0x26,0x26,0x23,0x22,0xe,0x2,0x17,0x27,0x34,0x3e,0x2,0x33,0x32,0x16,0x1,0xb3,0xfe,0xaf,0x1,0x3b,0x1,0x56,0x6,0x14,0x44,0x17,0x3b,0x55,0x37,0x19,0x1,0x3d,0x2b,0x50,0x72,0x47,0x19,0x31,0x3,0x2e,0xfc,0xd2,0x4,0x3a,0x8,0xfe,0xc7,0x2,0x6,0x1b,0x35,0x50,0x35,0x28,0x6d,0xb3,0x83,0x47,0x6,0x0,0x0,0x1,0x0,0x24,0xff,0xec,0x3,0xdc,0x4,0x4e,0x0,0x35,0x0,0x17,0x40,0xb,0x1b,0x0,0xe,0x32,0x29,0xb,0x72,0x17,0xe,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x39,0x30,0x31,0x41,0x34,0x26,0x26,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x21,0x1e,0x2,0x33,0x32,0x36,0x36,0x2,0x96,0x25,0x5c,0x53,0x4f,0x8b,0x68,0x3b,0x3b,0x73,0xa6,0x6a,0x92,0xd4,0x73,0xfe,0xaf,0x1b,0x3c,0x32,0x23,0x39,0x22,0x15,0x2c,0x44,0x30,0x6d,0xbe,0x77,0x42,0x7c,0xae,0x6d,0x9b,0xd6,0x6d,0x1,0x3a,0x2,0x2d,0x4c,0x32,0x2e,0x3d,0x20,0x1,0x30,0x1c,0x29,0x23,0x12,0x11,0x38,0x50,0x6e,0x47,0x45,0x7b,0x5f,0x37,0x59,0x9f,0x68,0x29,0x3a,0x1f,0x1a,0x2e,0x1f,0x16,0x23,0x1d,0x17,0x9,0x14,0x4a,0x88,0x73,0x48,0x79,0x5b,0x32,0x6f,0xa9,0x57,0x32,0x40,0x1e,0x1a,0x2d,0x0,0x2,0x0,0xd,0xff,0xec,0x2,0xa9,0x5,0x47,0x0,0x3,0x0,0x15,0x0,0x13,0x40,0x9,0xa,0x11,0xb,0x72,0x4,0x2,0x3,0x6,0x72,0x0,0x2b,0x32,0x2f,0x2b,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x13,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x2,0x99,0xfd,0x74,0x89,0x1,0x51,0x14,0x31,0x29,0x1d,0x26,0x11,0x2b,0x5e,0x35,0x6c,0x99,0x50,0x4,0x3a,0xea,0xea,0x1,0xd,0xfc,0x1a,0x2b,0x2f,0x13,0x3,0x3,0xf1,0xe,0xf,0x44,0x92,0x75,0x0,0x0,0x2,0x0,0x59,0xff,0xec,0x4,0x29,0x4,0x3a,0x0,0x4,0x0,0x1b,0x0,0x15,0x40,0xa,0x1,0x11,0x6,0x72,0x18,0x3,0x3,0xb,0xb,0x72,0x0,0x2b,0x32,0x2f,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x13,0x37,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x2,0xd7,0x1,0x52,0xfe,0xc4,0xa,0x58,0x34,0x65,0x93,0x60,0x50,0x85,0x60,0x35,0x1,0x51,0x12,0x22,0x33,0x21,0x4c,0x56,0x23,0x1,0x7,0x3,0x33,0xfb,0xc6,0x1,0xe3,0x2,0x6d,0xb9,0x88,0x4b,0x2d,0x61,0x99,0x6b,0x2,0xbc,0xfd,0x42,0x24,0x34,0x23,0x11,0x40,0x6e,0x0,0x2,0x0,0x3,0x0,0x0,0x4,0x1d,0x4,0x3a,0x0,0x4,0x0,0x9,0x0,0x17,0x40,0xb,0x0,0x6,0x8,0x1,0x9,0x6,0x72,0x3,0x8,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x39,0x30,0x31,0x65,0x13,0x21,0x1,0x23,0x3,0x13,0x7,0x23,0x1,0x1,0xe5,0xd5,0x1,0x63,0xfe,0x9e,0xd2,0x82,0xd2,0x2,0xd3,0xfe,0x9f,0xe7,0x3,0x53,0xfb,0xc6,0x4,0x3a,0xfc,0xad,0xe7,0x4,0x3a,0x0,0x0,0x4,0x0,0x16,0x0,0x0,0x5,0xb5,0x4,0x3a,0x0,0x5,0x0,0xa,0x0,0xf,0x0,0x15,0x0,0x24,0x40,0x14,0x7,0xb,0x0,0x11,0x3,0x14,0x6,0x9,0x10,0xc,0x1,0xa,0x6,0x72,0x12,0xe,0x4,0x9,0xa,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x32,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x13,0x33,0x3,0x3,0x23,0x3,0x13,0x13,0x23,0x1,0x1,0x13,0x21,0x3,0x23,0x3,0x13,0x13,0x23,0x3,0x3,0x1,0xa8,0xc8,0xd3,0x4b,0xc6,0xa9,0x30,0x7c,0xe,0xcd,0xff,0x0,0x3,0xdf,0x7d,0x1,0x43,0xfe,0xcd,0x8f,0xca,0x1f,0xab,0xc2,0x48,0x1,0x42,0x2,0xf8,0xfe,0x83,0xfd,0x43,0x4,0x3a,0xfd,0xe,0xfe,0xb8,0x4,0x3a,0xfd,0x1e,0x2,0xe2,0xfb,0xc6,0x4,0x3a,0xfd,0xa,0xfe,0xbc,0x2,0xbb,0x1,0x7f,0x0,0x1,0x0,0xc,0x0,0x0,0x4,0x1f,0x4,0x3a,0x0,0xb,0x0,0x1a,0x40,0xe,0x7,0x4,0xa,0x1,0x4,0x9,0x3,0xb,0x6,0x72,0x6,0x9,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x13,0x13,0x21,0x1,0x1,0x21,0x3,0x3,0x21,0x1,0x1,0x1,0x7d,0x98,0x9d,0x1,0x5e,0xfe,0xe4,0x1,0x2b,0xfe,0x9f,0xa9,0xa8,0xfe,0x9f,0x1,0x2b,0xfe,0xe5,0x4,0x3a,0xfe,0xd6,0x1,0x2a,0xfd,0xf1,0xfd,0xd5,0x1,0x40,0xfe,0xc0,0x2,0x2b,0x2,0xf,0x0,0x2,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x4,0x3a,0x0,0x13,0x0,0x18,0x0,0x19,0x40,0xd,0x17,0x16,0x15,0x3,0x8,0x2,0x18,0x6,0x72,0xf,0x8,0xf,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x65,0x1,0x21,0x1,0xe,0x3,0x23,0x22,0x26,0x27,0x35,0x32,0x32,0x33,0x32,0x36,0x36,0x37,0x1b,0x2,0x23,0x1,0x1,0xab,0x1,0x18,0x1,0x6a,0xfe,0x4d,0xe,0x2e,0x50,0x7d,0x5c,0x31,0x2d,0x2e,0xd,0x13,0xc,0x36,0x41,0x23,0xa,0xb,0xd5,0x25,0xe2,0xfe,0x7f,0x7f,0x3,0xbb,0xfb,0x25,0x29,0x5f,0x56,0x36,0x9,0xb,0xf1,0x16,0x2a,0x1e,0x4,0x8c,0xfd,0xb,0xfe,0x9b,0x4,0x5a,0x0,0x0,0x3,0x0,0x43,0x0,0x0,0x3,0xd9,0x4,0x3a,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1c,0x40,0xd,0x4,0xc,0xc,0x9,0xd,0x6,0x72,0x7,0x3,0x3,0x6,0x2,0x12,0x0,0x3f,0x33,0x33,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x23,0x35,0x1,0x33,0x23,0x11,0x21,0x11,0x3,0xd9,0xfc,0xba,0x3,0x3c,0xfd,0x5b,0xe7,0x2,0xa4,0xe8,0x6f,0xfc,0xf7,0x1,0x4,0xfe,0xfc,0x1,0x4,0x2,0x80,0xfc,0x7c,0xbc,0x3,0x7e,0xfe,0xfc,0x1,0x4,0x0,0x2,0x0,0x29,0xfe,0x98,0x2,0x72,0x6,0x3d,0x0,0x11,0x0,0x25,0x0,0x19,0x40,0xa,0x1d,0x9,0xa,0xa,0x1c,0x1c,0x12,0x13,0x1,0x0,0x0,0x2f,0x32,0x2f,0x33,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x17,0x6,0x6,0x15,0x15,0x14,0x6,0x6,0x23,0x35,0x32,0x36,0x35,0x35,0x34,0x36,0x36,0x13,0x7,0x2e,0x2,0x35,0x35,0x34,0x26,0x26,0x23,0x35,0x32,0x16,0x16,0x15,0x15,0x14,0x16,0x16,0x2,0x32,0x40,0x4d,0x36,0x5d,0xc8,0xa1,0x56,0x4b,0x41,0x9e,0xc9,0x40,0x89,0x9e,0x41,0x21,0x47,0x39,0xa1,0xc8,0x5d,0x17,0x39,0x6,0x3d,0xb0,0x1f,0x9c,0x66,0xcb,0x65,0xa5,0x61,0xa6,0x6b,0x5a,0xcb,0x69,0xb7,0x8b,0xf9,0x32,0xb1,0x27,0x8b,0xb7,0x69,0xcb,0x3c,0x58,0x30,0xa7,0x61,0xa4,0x66,0xcb,0x44,0x74,0x54,0x0,0x0,0x1,0x0,0xad,0xfe,0xf2,0x1,0x64,0x5,0xb0,0x0,0x3,0x0,0x9,0xb2,0x0,0x2,0x1,0x0,0x2f,0x3f,0x30,0x31,0x41,0x11,0x23,0x11,0x1,0x64,0xb7,0x5,0xb0,0xf9,0x42,0x6,0xbe,0x0,0x2,0x0,0x29,0xfe,0x98,0x2,0x73,0x6,0x3d,0x0,0x13,0x0,0x26,0x0,0x1b,0x40,0xb,0x1e,0xb,0xa,0xa,0x1f,0x1f,0x1,0x15,0x14,0x0,0x1,0x0,0x2f,0x33,0x2f,0x33,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x53,0x37,0x1e,0x2,0x15,0x15,0x14,0x16,0x16,0x33,0x15,0x22,0x26,0x26,0x35,0x35,0x34,0x26,0x26,0x13,0x27,0x3e,0x2,0x35,0x35,0x34,0x36,0x36,0x33,0x15,0x22,0x6,0x15,0x15,0x14,0x6,0x6,0x29,0x40,0x8a,0x9d,0x41,0x21,0x48,0x39,0xa1,0xc9,0x5d,0x16,0x39,0xc,0x40,0x34,0x39,0x16,0x5d,0xc9,0xa1,0x56,0x4c,0x41,0x9d,0x5,0x8d,0xb0,0x26,0x8b,0xb7,0x69,0xcb,0x3c,0x58,0x31,0xa5,0x60,0xa5,0x65,0xcb,0x44,0x74,0x55,0xf9,0x1f,0xb1,0x15,0x54,0x74,0x44,0xcb,0x66,0xa4,0x60,0xa6,0x6b,0x59,0xcb,0x69,0xb7,0x8b,0x0,0x1,0x0,0x5e,0x1,0x6f,0x4,0xae,0x3,0x44,0x0,0x1f,0x0,0x1b,0x40,0xb,0xc,0x0,0x0,0x16,0x6,0x80,0x1c,0x6,0x10,0x10,0x6,0x0,0x2f,0x33,0x2f,0x11,0x33,0x1a,0x10,0xcd,0x32,0x2f,0x32,0x30,0x31,0x41,0x17,0x14,0xe,0x2,0x23,0x22,0x26,0x27,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x27,0x34,0x3e,0x2,0x33,0x32,0x16,0x17,0x16,0x16,0x33,0x32,0x36,0x36,0x3,0xbd,0xf1,0x31,0x59,0x7b,0x4a,0x4e,0x7a,0x45,0x26,0x45,0x26,0x22,0x34,0x1e,0xef,0x30,0x59,0x7a,0x4a,0x4d,0x83,0x40,0x26,0x44,0x24,0x22,0x34,0x1e,0x3,0x20,0x1,0x65,0xa0,0x70,0x3b,0x3e,0x44,0x27,0x28,0x2e,0x4d,0x30,0x4,0x66,0x9f,0x6d,0x39,0x40,0x41,0x27,0x28,0x2e,0x4e,0x0,0x2,0x0,0x7b,0xfe,0x8c,0x1,0xf1,0x4,0x4e,0x0,0x3,0x0,0xf,0x0,0xc,0xb3,0x1,0x7,0xd,0x0,0x0,0x2f,0x2f,0xdd,0xce,0x30,0x31,0x53,0x13,0x21,0x13,0x13,0x14,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x80,0x2b,0x1,0x12,0x2b,0x9,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0xfe,0x8c,0x3,0xe3,0xfc,0x1d,0x5,0x19,0x48,0x61,0x61,0x48,0x48,0x61,0x61,0x0,0x0,0x3,0x0,0x63,0xff,0xb,0x4,0x28,0x5,0x26,0x0,0x3,0x0,0x7,0x0,0x2f,0x0,0x25,0x40,0x12,0x2,0x1,0x25,0x25,0x21,0x3,0x1c,0x7,0x72,0x7,0x4,0x8,0x8,0xc,0x6,0x11,0xd,0x72,0x0,0x2b,0xcd,0xcc,0x33,0x12,0x39,0x39,0x2b,0xcd,0xcc,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x11,0x23,0x11,0x13,0x11,0x23,0x11,0x37,0x32,0x36,0x36,0x27,0x21,0x16,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x7,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x2,0xc7,0xc8,0xc8,0xc8,0x57,0x2f,0x43,0x23,0x1,0x1,0x3d,0x1,0x79,0xcf,0x82,0x7f,0xbe,0x7f,0x3f,0x3f,0x7f,0xbd,0x7e,0x87,0xcf,0x76,0x1,0xfe,0xc3,0x1,0x20,0x43,0x34,0x34,0x40,0x21,0xb,0xb,0x22,0x40,0x5,0x26,0xfe,0xdc,0x1,0x24,0xfb,0x8,0xfe,0xdd,0x1,0x23,0xc2,0x23,0x41,0x2e,0x7a,0xb7,0x65,0x53,0x95,0xc8,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x4f,0x2d,0x0,0x0,0x3,0x0,0x67,0x0,0x0,0x4,0x9c,0x5,0xc3,0x0,0x3,0x0,0x7,0x0,0x22,0x0,0x21,0x40,0x10,0x6,0x5,0x5,0x1,0x1f,0x16,0x5,0x72,0xc,0xd,0xd,0x2,0x2,0x1,0xc,0x72,0x0,0x2b,0x32,0x11,0x33,0x11,0x33,0x2b,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x61,0x21,0x11,0x21,0x1,0x21,0x11,0x21,0x25,0x13,0x14,0x6,0x7,0x27,0x3e,0x2,0x35,0x3,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x4,0x98,0xfb,0xd2,0x4,0x2d,0xfe,0xff,0xfc,0xd1,0x3,0x2f,0xfe,0xc3,0x1a,0x60,0x7c,0xc5,0x1e,0x19,0x5,0x12,0x70,0xcc,0x8a,0x9a,0xd3,0x6d,0xfe,0xb7,0x25,0x3d,0x26,0x22,0x34,0x1c,0x1,0xe,0x1,0x23,0x1,0x5,0xd9,0xfd,0xb2,0x65,0x82,0x2f,0x63,0x8,0x2d,0x42,0x25,0x2,0x65,0x8a,0xc3,0x67,0x6b,0xc0,0x80,0x3c,0x44,0x1d,0x24,0x4a,0x0,0x0,0x6,0x0,0x45,0xff,0xe5,0x5,0x37,0x4,0xf1,0x0,0x13,0x0,0x27,0x0,0x2b,0x0,0x2f,0x0,0x33,0x0,0x37,0x0,0xe,0xb5,0xf,0x19,0x5,0x23,0xd,0x72,0x0,0x2b,0x32,0x2f,0x33,0x30,0x31,0x41,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x1,0x7,0x27,0x37,0x1,0x7,0x27,0x37,0x1,0x27,0x37,0x17,0x1,0x27,0x37,0x17,0x1,0x22,0x3f,0x71,0x95,0x55,0x55,0x94,0x70,0x40,0x40,0x70,0x94,0x55,0x55,0x95,0x71,0x3f,0xba,0x5d,0xa4,0xd8,0x7b,0x7b,0xd7,0xa4,0x5c,0x5c,0xa4,0xd7,0x7b,0x7b,0xd8,0xa4,0x5d,0x4,0xcf,0xca,0x8d,0xc9,0xfc,0xf3,0xca,0x8d,0xca,0x3,0x9a,0xc9,0x8d,0xca,0xfb,0xd8,0xca,0x8d,0xca,0x2,0x60,0x5c,0x9f,0x76,0x42,0x42,0x76,0x9f,0x5c,0x5c,0x9e,0x76,0x42,0x42,0x76,0x9e,0x5c,0x85,0xe4,0xaa,0x5f,0x5f,0xaa,0xe4,0x85,0x85,0xe4,0xab,0x60,0x60,0xab,0xe4,0x2,0x85,0xce,0x91,0xce,0xfb,0xc3,0xce,0x90,0xcd,0xfe,0xa2,0xce,0x90,0xcd,0x3,0x1c,0xce,0x90,0xce,0x0,0x5,0x0,0xa,0x0,0x0,0x4,0x4b,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xc,0x0,0x11,0x0,0x15,0x0,0x2d,0x40,0x16,0xb,0x10,0x10,0x6,0x7,0x12,0x15,0x15,0x8,0xe,0x3,0x3,0x2,0x2,0x11,0x14,0xc,0x72,0x9,0x11,0x4,0x72,0x0,0x2b,0x32,0x2b,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x32,0x11,0x33,0xce,0x32,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x1,0x1,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x3,0xe6,0xfc,0x63,0x3,0x9d,0xfc,0x63,0x1,0x98,0x1,0x4,0x1,0x66,0xfe,0x78,0xba,0x9a,0x1,0xa,0x2b,0xbb,0xfe,0x77,0x2,0xcc,0xfe,0xa2,0x2,0xe6,0xbe,0xbe,0xfe,0xde,0xbd,0xbd,0x1,0x15,0x2,0xd7,0xfc,0x6c,0x3,0x94,0xfd,0x20,0xb4,0x3,0x94,0xfd,0x40,0xfd,0x10,0x2,0xf0,0x0,0x2,0x0,0x77,0xfe,0xf2,0x1,0x9b,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xd,0xb4,0x1,0x2,0x6,0x7,0x2,0x0,0x3f,0xdd,0xde,0xcd,0x30,0x31,0x41,0x21,0x11,0x21,0x11,0x11,0x21,0x11,0x1,0x9b,0xfe,0xdc,0x1,0x24,0xfe,0xdc,0xfe,0xf2,0x3,0x1b,0x3,0xa3,0xfd,0xa,0x2,0xf6,0x0,0x0,0x2,0x0,0x5e,0xfe,0x4b,0x4,0xac,0x5,0xc4,0x0,0x2f,0x0,0x61,0x0,0x1e,0x40,0x13,0x53,0x3f,0x0,0x1,0x5,0x2b,0x5d,0x35,0x31,0x30,0xf,0x21,0xc,0x4f,0x44,0x1d,0x14,0x11,0x72,0x0,0x2b,0x32,0x2f,0x33,0x17,0x39,0x30,0x31,0x65,0x35,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x3,0x15,0x14,0xe,0x2,0x3,0x15,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x3,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x2,0x9b,0x3f,0x58,0x2e,0x1a,0x3c,0x67,0x4e,0x71,0xb4,0x7e,0x43,0x4b,0x8d,0xc4,0x79,0xa5,0xef,0x80,0xfe,0xaf,0x2b,0x56,0x42,0x45,0x56,0x28,0x16,0x38,0x66,0x50,0x74,0xb5,0x7d,0x41,0x4b,0x8b,0xc3,0xb4,0x3e,0x4e,0x24,0x16,0x38,0x66,0x50,0x75,0xb6,0x7d,0x40,0x4b,0x8c,0xc3,0x78,0x68,0xc6,0x9e,0x5e,0x1,0x51,0x25,0x3e,0x4e,0x28,0x40,0x55,0x2c,0x19,0x3b,0x66,0x4d,0x71,0xb4,0x7e,0x42,0x49,0x87,0xbd,0x97,0x96,0x29,0x49,0x2f,0x1f,0x32,0x2b,0x2a,0x18,0x20,0x49,0x63,0x89,0x61,0x58,0x8e,0x66,0x36,0x62,0xbe,0x89,0x2f,0x4a,0x2c,0x21,0x38,0x23,0x1f,0x2f,0x25,0x24,0x15,0x1d,0x48,0x61,0x85,0x59,0x57,0x83,0x57,0x2c,0x2,0xd7,0x99,0x29,0x46,0x2e,0x23,0x33,0x29,0x28,0x19,0x1f,0x48,0x62,0x8b,0x61,0x5b,0x8d,0x5f,0x31,0x28,0x5d,0x9f,0x78,0x30,0x3c,0x1f,0xc,0x1b,0x33,0x24,0x1c,0x2c,0x27,0x26,0x16,0x1e,0x48,0x60,0x84,0x59,0x55,0x82,0x59,0x2e,0x0,0x2,0x0,0x5f,0x4,0xd0,0x3,0x94,0x5,0xda,0x0,0xb,0x0,0x17,0x0,0xe,0xb4,0x3,0x9,0x9,0xf,0x15,0x0,0x2f,0x33,0x33,0x2f,0x33,0x30,0x31,0x53,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x5f,0x5a,0x3d,0x3e,0x59,0x59,0x3e,0x3d,0x5a,0x2,0x7,0x5a,0x3d,0x3e,0x59,0x59,0x3e,0x3d,0x5a,0x5,0x55,0x38,0x4d,0x4d,0x38,0x38,0x4d,0x4d,0x38,0x38,0x4d,0x4d,0x38,0x38,0x4d,0x4d,0x0,0x3,0x0,0x56,0xff,0xec,0x5,0xe2,0x5,0xc4,0x0,0x1f,0x0,0x33,0x0,0x47,0x0,0x1f,0x40,0xe,0x1d,0x4,0x4,0x25,0x25,0x43,0x14,0xd,0xd,0x2f,0x2f,0x39,0x3,0x72,0x0,0x2b,0x32,0x11,0x33,0x11,0x33,0x2f,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x14,0x6,0x23,0x22,0x26,0x26,0x35,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x6,0x15,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x25,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x7,0x34,0x12,0x36,0x24,0x33,0x32,0x4,0x16,0x12,0x15,0x14,0x2,0x6,0x4,0x23,0x22,0x24,0x26,0x2,0x3,0xc1,0x9c,0xb4,0x9b,0x6b,0x9d,0x55,0x55,0x9d,0x6b,0x9b,0xb5,0x9c,0x5b,0x59,0x40,0x56,0x2c,0x2c,0x56,0x40,0x59,0x5a,0xfd,0xf,0x5b,0xa2,0xd5,0x7a,0x7a,0xd4,0xa2,0x5b,0x5b,0xa2,0xd4,0x7a,0x7a,0xd5,0xa2,0x5b,0x7a,0x6e,0xc4,0x1,0x1,0x93,0x93,0x1,0x1,0xc3,0x6f,0x6f,0xc3,0xfe,0xff,0x93,0x93,0xfe,0xff,0xc4,0x6e,0x2,0x54,0x9d,0x9d,0x62,0xae,0x73,0x77,0x73,0xae,0x62,0x9d,0x9d,0x60,0x53,0x40,0x71,0x4a,0x78,0x4a,0x72,0x40,0x52,0xe6,0x84,0xe3,0xaa,0x5f,0x5f,0xaa,0xe3,0x84,0x84,0xe3,0xa9,0x5e,0x5e,0xa9,0xe3,0x84,0x9f,0x1,0x10,0xcb,0x71,0x71,0xcb,0xfe,0xf0,0x9f,0x9f,0xfe,0xf0,0xcc,0x72,0x72,0xcc,0x1,0x10,0x0,0x0,0x2,0x0,0x86,0x2,0xb3,0x3,0xa,0x5,0xc4,0x0,0x17,0x0,0x31,0x0,0x1a,0xb5,0x31,0x1a,0x1a,0xd,0x16,0x2a,0xb8,0x1,0x0,0xb2,0x8,0xd,0x3,0x0,0x3f,0x33,0x1a,0xdc,0xc4,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x15,0x27,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x11,0x14,0x16,0x17,0x23,0x26,0x13,0x17,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x33,0x32,0x36,0x36,0x35,0x17,0xe,0x2,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x33,0x2,0x41,0x19,0x34,0x27,0x40,0x4a,0xad,0x4d,0x8c,0x5e,0x57,0x83,0x49,0xc,0xe,0xb1,0x18,0x2b,0x1,0x91,0x3a,0x4a,0x23,0x39,0x3c,0x29,0x53,0x39,0x12,0xf,0x3e,0x61,0x44,0x78,0x81,0x4b,0x97,0x73,0x3,0x5d,0x1,0x54,0x29,0x39,0x1d,0x33,0x30,0xe,0x44,0x69,0x3c,0x3e,0x7a,0x5c,0xfe,0xc6,0x31,0x58,0x2c,0x47,0x1,0x76,0x75,0x1f,0x32,0x1d,0x29,0x2f,0x25,0x36,0x18,0x75,0x20,0x42,0x2c,0x7d,0x67,0x4a,0x67,0x36,0xff,0xff,0x0,0x40,0x0,0x74,0x3,0xbd,0x3,0x93,0x4,0x26,0x1,0x92,0xd4,0x0,0x0,0x7,0x1,0x92,0x1,0x72,0x0,0x0,0x0,0x2,0x0,0x7e,0x1,0x76,0x3,0xc1,0x3,0x25,0x0,0x3,0x0,0x7,0x0,0x12,0xb6,0x6,0x7,0x3,0x6,0x2,0x2,0x3,0x0,0x2f,0x33,0x11,0x33,0x12,0x39,0x2f,0x30,0x31,0x41,0x15,0x21,0x35,0x5,0x11,0x23,0x11,0x3,0xc1,0xfc,0xbd,0x3,0x43,0xc8,0x3,0x25,0xab,0xab,0x4d,0xfe,0x9e,0x1,0x62,0x0,0x4,0x0,0x56,0xff,0xec,0x5,0xe2,0x5,0xc4,0x0,0x1e,0x0,0x2f,0x0,0x43,0x0,0x57,0x0,0x35,0x40,0x1b,0x1f,0x1b,0x18,0x20,0x4,0x2,0x2,0x1,0x1,0xf,0x29,0xd,0xd,0x35,0x35,0x53,0xc,0xf,0xf,0x49,0x53,0x13,0x72,0x3f,0x49,0x3,0x72,0x0,0x2b,0x32,0x2b,0x12,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x2f,0x33,0x12,0x39,0x7d,0x2f,0x33,0x12,0x17,0x39,0x30,0x31,0x41,0x23,0x27,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x23,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x22,0x6,0x23,0xe,0x2,0x23,0x37,0x32,0x16,0x15,0x15,0x14,0x16,0x17,0x15,0x23,0x26,0x26,0x35,0x35,0x34,0x26,0x25,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x7,0x34,0x12,0x36,0x24,0x33,0x32,0x4,0x16,0x12,0x15,0x14,0x2,0x6,0x4,0x23,0x22,0x24,0x26,0x2,0x3,0x34,0xd6,0x2,0xaf,0x30,0x51,0x31,0x21,0x4d,0x41,0x82,0x97,0x1,0x19,0x63,0x92,0x50,0x33,0x61,0x47,0x3,0x7,0x3,0x11,0x9,0x9,0x1e,0x15,0x9d,0x74,0x7,0xa,0x9b,0xa,0x3,0x41,0xfd,0x58,0x5b,0xa2,0xd5,0x7a,0x7a,0xd4,0xa2,0x5b,0x5b,0xa2,0xd4,0x7a,0x7a,0xd5,0xa2,0x5b,0x7a,0x6e,0xc4,0x1,0x1,0x93,0x93,0x1,0x1,0xc3,0x6f,0x6f,0xc3,0xfe,0xff,0x93,0x93,0xfe,0xff,0xc4,0x6e,0x2,0x8d,0x86,0x1a,0x34,0x26,0x31,0x38,0x19,0xfd,0x33,0x3,0x52,0x3c,0x76,0x56,0x36,0x52,0x3b,0x13,0xe,0xa,0x9,0x2,0x73,0x8f,0x6e,0x38,0x25,0x43,0x17,0x10,0x1a,0x60,0x16,0x36,0x47,0x44,0x4c,0x84,0xe3,0xaa,0x5f,0x5f,0xaa,0xe3,0x84,0x84,0xe3,0xa9,0x5e,0x5e,0xa9,0xe3,0x84,0x9f,0x1,0x10,0xcb,0x71,0x71,0xcb,0xfe,0xf0,0x9f,0x9f,0xfe,0xf0,0xcc,0x72,0x72,0xcc,0x1,0x10,0x0,0x1,0x0,0xb5,0x5,0x5,0x3,0x6b,0x5,0xb2,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x3,0x6b,0xfd,0x4a,0x5,0xb2,0xad,0xad,0x0,0x2,0x0,0x7e,0x3,0x96,0x2,0xaa,0x5,0xc4,0x0,0xf,0x0,0x1b,0x0,0xf,0xb5,0x13,0xc,0xc0,0x19,0x4,0x3,0x0,0x3f,0x33,0x1a,0xcc,0x32,0x30,0x31,0x53,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x7e,0x4c,0x80,0x4c,0x4c,0x7d,0x4b,0x4b,0x7d,0x4c,0x4c,0x80,0x4c,0x9a,0x4b,0x33,0x33,0x46,0x46,0x33,0x33,0x4b,0x4,0xab,0x4d,0x80,0x4c,0x4c,0x80,0x4d,0x4d,0x7e,0x4a,0x4a,0x7e,0x4d,0x35,0x47,0x46,0x36,0x37,0x49,0x49,0x0,0x3,0x0,0x54,0x0,0x1,0x3,0xe8,0x5,0xd,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x12,0xb7,0xb,0x2,0x3,0x3,0x4,0xa,0x12,0x72,0x0,0x2b,0x2f,0x39,0x2f,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0xe8,0xfc,0x6c,0x2,0x5c,0xfe,0xdb,0x2,0x49,0xfc,0x91,0x3,0xce,0xfe,0xf1,0x1,0xf,0x1,0x3f,0xfc,0x56,0x3,0xaa,0xfb,0xfc,0xfe,0xf8,0x1,0x8,0x0,0x1,0x0,0x34,0x2,0x9b,0x2,0xb9,0x5,0xbc,0x0,0x1c,0x0,0x13,0xb1,0x1c,0x2,0xb8,0x1,0x0,0xb3,0xb,0x13,0x3,0x72,0x0,0x2b,0x32,0x1a,0xcc,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x25,0x3e,0x2,0x35,0x34,0x26,0x23,0x22,0x6,0x15,0x23,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x7,0x2,0xb9,0xfd,0x8d,0x1,0x1d,0x22,0x2b,0x16,0x29,0x2b,0x2e,0x2f,0xe1,0x4b,0x8a,0x5d,0x67,0x8e,0x4b,0x30,0x65,0x51,0x50,0x3,0x4a,0xaf,0x93,0xfd,0x1e,0x3a,0x30,0xd,0x23,0x29,0x3f,0x28,0x4c,0x7f,0x4c,0x3b,0x70,0x51,0x3c,0x5f,0x5c,0x3b,0x44,0x0,0x0,0x2,0x0,0x2a,0x2,0x90,0x2,0xc2,0x5,0xbc,0x0,0x19,0x0,0x33,0x0,0x2c,0x40,0xc,0x1c,0x18,0x0,0x0,0x1a,0x1a,0x10,0x2c,0x29,0x29,0x24,0x10,0xb8,0x1,0x0,0xb5,0xb,0xb,0x8,0x10,0x3,0x72,0x0,0x2b,0x32,0x32,0x2f,0x1a,0x10,0xcc,0x32,0x2f,0x32,0x11,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x15,0x23,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x23,0x15,0x35,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x26,0x23,0x1,0x15,0x5b,0x22,0x2b,0x16,0x29,0x37,0x23,0x36,0xe0,0x57,0x8c,0x4e,0x61,0x94,0x53,0x50,0x82,0x4d,0x7f,0x7f,0x52,0x89,0x53,0x5b,0x9b,0x61,0x49,0x94,0x64,0xe2,0x3c,0x34,0x38,0x2d,0x1b,0x33,0x23,0x4,0x75,0x14,0x25,0x19,0x17,0x2e,0x1a,0x19,0x4c,0x65,0x32,0x34,0x65,0x4a,0x40,0x56,0x2b,0x31,0x59,0x21,0x56,0x50,0x4a,0x68,0x37,0x30,0x6f,0x5d,0x1c,0x30,0x32,0x1f,0x20,0x25,0x11,0x0,0x0,0x1,0x0,0x5a,0x4,0xc6,0x2,0x84,0x6,0x0,0x0,0x3,0x0,0xa,0xb2,0x1,0x80,0x0,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x53,0x13,0x21,0x1,0x5a,0xc6,0x1,0x64,0xfe,0xe9,0x4,0xc6,0x1,0x3a,0xfe,0xc6,0x0,0x3,0x0,0x85,0xfe,0x60,0x4,0x80,0x4,0x3a,0x0,0x4,0x0,0x1a,0x0,0x1e,0x0,0x19,0x40,0xc,0x1d,0x5,0x0,0x16,0xb,0x13,0x72,0x3,0x12,0x72,0x1c,0x0,0x0,0x2f,0x32,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x30,0x31,0x41,0x21,0x11,0x21,0x27,0x37,0x37,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x27,0x27,0x33,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x1,0x21,0x11,0x21,0x3,0x2e,0x1,0x52,0xfe,0xc2,0x14,0x25,0x8c,0x2f,0x5e,0x8b,0x5c,0x46,0x74,0x58,0x1b,0x15,0xad,0x16,0x2b,0x3c,0x27,0x3c,0x54,0x32,0x17,0xfd,0x32,0x1,0x51,0xfe,0xaf,0x4,0x3a,0xfb,0xc6,0xfa,0xfd,0x2,0x72,0xc0,0x8e,0x4e,0x32,0x69,0x52,0xf6,0x43,0x56,0x2f,0x13,0x27,0x46,0x5f,0x2,0x7b,0xfa,0x26,0x0,0x1,0x0,0x52,0x0,0x0,0x3,0x76,0x5,0xb0,0x0,0xc,0x0,0xe,0xb6,0x3,0xb,0x2,0x72,0x0,0x12,0x72,0x0,0x2b,0x2b,0xcd,0x30,0x31,0x61,0x23,0x11,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x21,0x3,0x76,0xe5,0x53,0x9f,0xdb,0x72,0x72,0xdb,0x9f,0x1,0x38,0x2,0x8,0x79,0xd4,0x87,0x86,0xd4,0x7a,0x0,0x0,0x1,0x0,0x8a,0x2,0x4,0x1,0xff,0x3,0x56,0x0,0xb,0x0,0x8,0xb1,0x3,0x9,0x0,0x2f,0x33,0x30,0x31,0x53,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x8a,0x68,0x53,0x53,0x67,0x67,0x53,0x53,0x68,0x2,0xad,0x48,0x61,0x61,0x48,0x48,0x61,0x61,0x0,0x1,0x0,0x56,0xfe,0x28,0x2,0x1,0x0,0xa,0x0,0x13,0x0,0x11,0xb6,0xb,0xa,0x80,0x13,0x2,0x0,0x12,0x0,0x3f,0x32,0x32,0x1a,0xcc,0x32,0x30,0x31,0x77,0x21,0x7,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x27,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x27,0x75,0x1,0x1,0xb,0x38,0x5e,0x30,0x5e,0x8c,0x5c,0x7,0x1a,0x28,0x17,0x1b,0x3c,0x30,0xa,0x3d,0xa,0x4d,0x56,0x38,0x5b,0x42,0x23,0xba,0x10,0x22,0x1b,0x1a,0x1d,0xf,0x3,0x0,0x1,0x0,0x8f,0x2,0x9b,0x2,0x1f,0x5,0xad,0x0,0x6,0x0,0xa,0xb3,0x6,0x2,0x72,0x1,0x0,0x2f,0x2b,0x30,0x31,0x41,0x11,0x23,0x11,0x7,0x35,0x25,0x2,0x1f,0xe0,0xb0,0x1,0x7d,0x5,0xad,0xfc,0xee,0x2,0x15,0x24,0xa7,0x7a,0x0,0x2,0x0,0x76,0x2,0xb2,0x3,0x2b,0x5,0xc4,0x0,0x11,0x0,0x23,0x0,0x10,0xb6,0x17,0xe,0x20,0x5,0x3,0x72,0xe,0x0,0x2f,0x2b,0x32,0x11,0x33,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x76,0x55,0x9b,0x6a,0x6c,0x9b,0x54,0x54,0x9a,0x6b,0x6b,0x9c,0x55,0xaf,0x26,0x4d,0x3a,0x39,0x4c,0x25,0x26,0x4c,0x3a,0x39,0x4c,0x26,0x4,0x14,0x4d,0x68,0xa0,0x5b,0x5b,0xa0,0x68,0x4d,0x67,0xa0,0x5b,0x5b,0xa0,0xb4,0x4d,0x3b,0x5f,0x36,0x36,0x5f,0x3b,0x4d,0x3b,0x5d,0x37,0x37,0x5d,0x0,0xff,0xff,0x0,0x4e,0x0,0x73,0x3,0xca,0x3,0x92,0x4,0x26,0x1,0x93,0x1,0x0,0x0,0x7,0x1,0x93,0x1,0x9e,0x0,0x0,0xff,0xff,0x0,0x70,0x0,0x0,0x5,0x58,0x5,0xaa,0x4,0x27,0x1,0xe0,0xff,0xe1,0x2,0x98,0x0,0x27,0x1,0x94,0x1,0x22,0x0,0x8,0x0,0x7,0x2,0x3a,0x2,0x95,0x0,0x0,0xff,0xff,0x0,0x58,0x0,0x0,0x5,0xbe,0x5,0xb2,0x4,0x27,0x1,0x94,0x0,0xfa,0x0,0x8,0x0,0x27,0x1,0xe0,0xff,0xc9,0x2,0xa0,0x0,0x7,0x1,0xdf,0x3,0x5,0x0,0x0,0xff,0xff,0x0,0x56,0x0,0x0,0x6,0x1e,0x5,0xbc,0x4,0x27,0x1,0x94,0x1,0xd8,0x0,0x8,0x0,0x27,0x2,0x3a,0x3,0x5b,0x0,0x0,0x0,0x7,0x2,0x39,0x0,0x2c,0x2,0x9b,0x0,0x2,0x0,0x49,0xfe,0x7f,0x3,0xf6,0x4,0x4f,0x0,0x21,0x0,0x2d,0x0,0x18,0x40,0xa,0x0,0x0,0x25,0x25,0x2b,0x10,0x11,0x11,0xd,0x16,0x0,0x2f,0x33,0x33,0x2f,0x3f,0x33,0x2f,0x33,0x2f,0x30,0x31,0x41,0x21,0x14,0x6,0x6,0x7,0xe,0x2,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x37,0x21,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x37,0x3e,0x2,0x1,0x14,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x1,0xa1,0x1,0x1f,0x16,0x39,0x37,0x2f,0x48,0x28,0x1f,0x37,0x23,0x29,0x3f,0x26,0x2,0x1,0x52,0x2,0x7f,0xd5,0x84,0x91,0xd2,0x70,0x46,0x74,0x43,0x27,0x26,0xd,0x1,0x54,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0x2,0x76,0x57,0x86,0x69,0x2e,0x2a,0x4a,0x50,0x33,0x2f,0x3d,0x1c,0x22,0x48,0x39,0x95,0xbb,0x57,0x5b,0xb0,0x81,0x57,0x83,0x73,0x3d,0x22,0x3f,0x4c,0x1,0x64,0x48,0x61,0x61,0x48,0x48,0x61,0x61,0x0,0x0,0x6,0x0,0x10,0x0,0x0,0x7,0x3c,0x5,0xb0,0x0,0x4,0x0,0x8,0x0,0xc,0x0,0x10,0x0,0x14,0x0,0x18,0x0,0x31,0x40,0x18,0x0,0x17,0x17,0x8,0x7,0x14,0x13,0x7,0x13,0x7,0x13,0x2,0xd,0x3,0x18,0x2,0x72,0xc,0xb,0xb,0xe,0x2,0x8,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x39,0x39,0x2f,0x2f,0x11,0x33,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x13,0x13,0x21,0x3,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0xef,0xfd,0xa7,0xfe,0x7a,0x2,0xdf,0xd5,0x7b,0xfd,0x10,0x5,0xed,0xfd,0x24,0x6f,0x3d,0xfe,0xaf,0x3d,0x3,0x30,0xfd,0x89,0x2,0xc8,0xfd,0x24,0x5,0x12,0xfa,0xee,0x5,0xb0,0xfc,0xa7,0xfe,0xf2,0x1,0xe,0xfe,0xb1,0xfe,0xf8,0x1,0x8,0x4,0xa8,0xfa,0x50,0x5,0xb0,0xfd,0xbc,0xfe,0xf8,0x1,0x8,0x2,0x44,0xfe,0xf8,0x1,0x8,0x0,0x0,0x2,0x0,0x35,0x0,0xc6,0x4,0x1,0x4,0x97,0x0,0x3,0x0,0x7,0x0,0xc,0xb3,0x4,0x6,0x2,0x0,0x0,0x2f,0x2f,0x33,0x32,0x30,0x31,0x77,0x27,0x1,0x17,0x3,0x1,0x37,0x1,0xf6,0xc1,0x3,0xb,0xc1,0xc1,0xfc,0xf5,0xc1,0x3,0xb,0xc6,0xb7,0x3,0x1a,0xb7,0xfc,0xe6,0x3,0x1a,0xb7,0xfc,0xe6,0x0,0x0,0x3,0x0,0x51,0xff,0xa1,0x5,0x4b,0x5,0xee,0x0,0x3,0x0,0x1b,0x0,0x33,0x0,0x17,0x40,0xb,0x1,0x0,0x2f,0xa,0x23,0x16,0x3,0x72,0xa,0x9,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x32,0x33,0x30,0x31,0x41,0x1,0x23,0x1,0x1,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x4,0xf9,0xfc,0x62,0xd0,0x3,0x9f,0x1,0x21,0x5d,0xab,0xe8,0x8c,0x70,0xc4,0x9d,0x71,0x3c,0x5d,0xa9,0xe9,0x8d,0x70,0xc2,0x9e,0x71,0x3d,0xfe,0x9b,0x18,0x2f,0x44,0x58,0x36,0x46,0x68,0x46,0x23,0x17,0x2d,0x44,0x59,0x38,0x43,0x68,0x47,0x25,0x5,0xee,0xf9,0xb3,0x6,0x4d,0xfd,0x7,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x40,0x79,0xb0,0xe0,0x85,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x40,0x7a,0xaf,0xe0,0xc1,0x3d,0x56,0x8d,0x6a,0x48,0x25,0x39,0x70,0xa5,0x6c,0x3d,0x55,0x8d,0x6b,0x49,0x26,0x3a,0x72,0xa5,0x0,0x0,0x2,0x0,0x75,0x0,0x0,0x4,0xbe,0x5,0xb0,0x0,0x3,0x0,0x19,0x0,0x1d,0x40,0xe,0xf,0xe,0xe,0x3,0x19,0x4,0x4,0x3,0x0,0x2,0x72,0x3,0x8,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x53,0x21,0x11,0x21,0x13,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x23,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x75,0x1,0x52,0xfe,0xae,0x66,0x1,0xb3,0xb6,0xf9,0x81,0x81,0xf9,0xb6,0xf0,0xf0,0x50,0x61,0x2d,0x2d,0x61,0x50,0xc7,0x5,0xb0,0xfa,0x50,0x4,0xae,0x76,0xcf,0x87,0x86,0xd0,0x76,0x1,0x4,0x38,0x5a,0x34,0x35,0x5c,0x39,0x0,0x1,0x0,0x87,0xff,0xec,0x4,0xf8,0x6,0x19,0x0,0x39,0x0,0x19,0x40,0xd,0x23,0x1b,0x36,0x8,0x2,0xa,0x72,0x8,0x1,0x72,0x1b,0xb,0x72,0x0,0x2b,0x2b,0x2b,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x15,0x14,0x1e,0x3,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x3,0x35,0x34,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0xd8,0xfe,0xaf,0x46,0x85,0xbe,0x78,0x78,0xc9,0x7a,0x1d,0x25,0x1d,0x38,0x52,0x52,0x38,0x6b,0xd4,0x9e,0x32,0x67,0x58,0x1c,0x3c,0x1e,0x6b,0x49,0x28,0x3f,0x25,0x38,0x53,0x53,0x38,0x1c,0x26,0x1c,0x24,0x40,0x29,0x29,0x3f,0x23,0x4,0x45,0xfb,0xbb,0x4,0x4b,0x72,0xad,0x74,0x3b,0x56,0xa9,0x7d,0x48,0x51,0x3b,0x48,0x3e,0x23,0x46,0x4d,0x5d,0x75,0x4b,0x78,0xae,0x5e,0xc,0x17,0x10,0xfd,0x10,0x1c,0x1d,0x38,0x28,0x2f,0x48,0x45,0x50,0x6c,0x4c,0x46,0x54,0x40,0x4a,0x3a,0x27,0x3d,0x23,0x25,0x5b,0x0,0x0,0x3,0x0,0x3d,0xff,0xec,0x6,0x96,0x4,0x4f,0x0,0x14,0x0,0x32,0x0,0x5e,0x0,0x37,0x40,0x1c,0x57,0x33,0x33,0x32,0x17,0x46,0x45,0x14,0x25,0x0,0x3,0x29,0x17,0x45,0x17,0x45,0xf,0x1f,0x29,0xb,0x72,0x4c,0x3e,0x3e,0x5,0xf,0x7,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x12,0x39,0x39,0x2f,0x2f,0x12,0x17,0x39,0x11,0x33,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x65,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x25,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x11,0x1,0x17,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x17,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x34,0x3e,0x2,0x33,0x1,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x17,0x32,0x1e,0x2,0x15,0x15,0x21,0x35,0x21,0x35,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0xe,0x2,0x2,0xcd,0x1f,0x3b,0x2b,0x30,0x41,0x22,0xfe,0xae,0x45,0x80,0xb5,0x70,0x8b,0xcc,0x70,0xfe,0xe5,0x3,0xb5,0x3c,0x52,0x2a,0x20,0x42,0x34,0x25,0x4c,0x40,0x27,0x99,0x19,0x6f,0xb0,0x79,0x89,0xbd,0x62,0x43,0x83,0xc2,0x80,0x2,0x91,0x7e,0xc2,0x86,0x44,0x3f,0x7f,0xc0,0x81,0x6a,0xa9,0x78,0x40,0xfc,0xb7,0x1,0xff,0x1e,0x39,0x2a,0x36,0x48,0x28,0x11,0x1b,0x39,0x5c,0x41,0x61,0x7d,0x3e,0x52,0x29,0x81,0x9e,0xb7,0x2,0x6,0x2c,0x3f,0x22,0x1b,0x2e,0x1d,0x13,0x4b,0x7d,0x5c,0x33,0x5a,0xb3,0x86,0xfe,0x1f,0x1,0xb5,0xcc,0x25,0x3c,0x22,0x21,0x31,0x1a,0x1a,0x29,0x30,0x16,0x9c,0x30,0x63,0x42,0x55,0x9b,0x68,0x4f,0x7b,0x55,0x2c,0xfd,0x5d,0x4a,0x88,0xb9,0x6e,0x4f,0x77,0xc5,0x90,0x4f,0x1,0x44,0x80,0xb5,0x71,0xb1,0xd3,0x1a,0x36,0x4c,0x28,0x29,0x4b,0x66,0x3c,0x4f,0x35,0x59,0x42,0x25,0x27,0x1c,0xce,0x1f,0x38,0x22,0x0,0x0,0x2,0x0,0x41,0xff,0xec,0x4,0x64,0x6,0x2b,0x0,0x34,0x0,0x38,0x0,0x19,0x40,0xb,0x36,0x20,0x16,0x16,0x1,0x2a,0xc,0xb,0x72,0x38,0x1,0x0,0x2f,0x33,0x2b,0x32,0x12,0x39,0x2f,0x33,0x33,0x30,0x31,0x53,0x37,0x16,0x4,0x16,0x12,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x17,0x27,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x25,0x1,0x27,0x1,0xe3,0x6b,0xae,0x1,0x21,0xd4,0x73,0x51,0x93,0xc6,0x75,0x74,0xbe,0x88,0x4a,0x3a,0x72,0xa9,0x70,0x71,0xb6,0x73,0xb,0x77,0x1c,0x38,0x56,0x3a,0x31,0x48,0x2e,0x17,0x19,0x2f,0x44,0x2b,0x33,0x4c,0x31,0x18,0x5e,0x9f,0xc7,0x2,0x90,0xfd,0xc0,0x4e,0x2,0x41,0x5,0x37,0xf4,0x23,0x9f,0xee,0xfe,0xcd,0xb8,0x3f,0x88,0xe1,0xa4,0x58,0x4b,0x86,0xb1,0x66,0x6f,0xb5,0x83,0x46,0x60,0xad,0x72,0x2,0x17,0x31,0x2a,0x1a,0x23,0x41,0x5d,0x3b,0x31,0x54,0x3d,0x22,0x2f,0x55,0x72,0x43,0x69,0x97,0xe5,0xa3,0x6a,0x4f,0xfe,0x9c,0x76,0x1,0x64,0x0,0x0,0x3,0x0,0x3c,0x0,0x71,0x4,0x50,0x4,0xe2,0x0,0x3,0x0,0xf,0x0,0x1b,0x0,0x13,0xb7,0x19,0x13,0x2,0x7,0xd,0x3,0x2,0x12,0x0,0x3f,0xdd,0xc6,0x32,0x10,0xc6,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x11,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x4,0x50,0xfb,0xec,0x1,0x4e,0x68,0x53,0x53,0x67,0x67,0x53,0x53,0x68,0x68,0x53,0x53,0x67,0x67,0x53,0x53,0x68,0x3,0x27,0xf4,0xf4,0x1,0x17,0x48,0x5c,0x5c,0x48,0x48,0x5c,0x5c,0xfd,0x1f,0x48,0x5c,0x5c,0x48,0x48,0x5c,0x5c,0x0,0x0,0x3,0x0,0x35,0xff,0x6f,0x4,0x49,0x4,0xc3,0x0,0x3,0x0,0x19,0x0,0x2f,0x0,0x19,0x40,0xc,0x20,0x1,0x1,0x15,0xb,0x72,0x2b,0x0,0x0,0xa,0x7,0x72,0x0,0x2b,0x32,0x2f,0x32,0x2b,0x32,0x2f,0x32,0x30,0x31,0x41,0x1,0x23,0x1,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x3,0xe5,0xfd,0x69,0xb1,0x2,0x97,0xfd,0x1,0x44,0x84,0xc2,0x7f,0x80,0xc3,0x84,0x44,0x44,0x84,0xc2,0x7f,0x7f,0xc4,0x84,0x44,0x1,0x51,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x4,0xc3,0xfa,0xac,0x5,0x54,0xfd,0x4f,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x0,0x3,0x0,0x5f,0xfe,0x60,0x4,0x49,0x6,0x0,0x0,0x3,0x0,0x19,0x0,0x2f,0x0,0x1b,0x40,0xf,0x2b,0xa,0x20,0x15,0x7,0x72,0xa,0xb,0x72,0x3,0x0,0x72,0x2,0xe,0x72,0x0,0x2b,0x2b,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x17,0x15,0x6,0x1e,0x2,0x33,0x32,0x3e,0x2,0x1,0xb2,0xfe,0xad,0x3,0xea,0x36,0x6a,0x9d,0x67,0x62,0x8b,0x5e,0x3a,0x11,0x11,0x3a,0x5d,0x8b,0x61,0x67,0x9e,0x6b,0x36,0xfe,0xaf,0x12,0x27,0x40,0x2f,0x36,0x49,0x2b,0x12,0x1,0x2,0x12,0x2c,0x4a,0x37,0x30,0x40,0x26,0x10,0x6,0x0,0xf8,0x60,0x7,0xa0,0xfc,0x2a,0x15,0x76,0xca,0x96,0x53,0x56,0x98,0xc4,0x6d,0x1b,0x75,0xc9,0x96,0x54,0x4e,0x91,0xca,0x90,0x15,0x3f,0x69,0x4e,0x2a,0x21,0x43,0x63,0x42,0x52,0x39,0x5e,0x43,0x25,0x2d,0x51,0x6a,0x0,0x0,0x4,0x0,0x35,0xff,0xec,0x4,0xac,0x6,0x0,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x33,0x0,0x1d,0x40,0xf,0x21,0x4,0x4,0x16,0xb,0x72,0x33,0x32,0x2b,0xb,0x7,0x72,0x1,0x0,0x72,0x0,0x2b,0x2b,0x32,0xce,0x32,0x2b,0x32,0x2f,0x32,0x30,0x31,0x65,0x11,0x21,0x11,0x21,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x1,0x15,0x21,0x35,0x2,0xcd,0x1,0x53,0xfe,0xd0,0xfd,0x45,0x36,0x6a,0x9e,0x67,0x5c,0x8a,0x62,0x3e,0x10,0x10,0x3e,0x62,0x8b,0x5d,0x67,0x9d,0x69,0x36,0x1,0x51,0x10,0x27,0x41,0x30,0x41,0x55,0x29,0x3,0x2,0x16,0x2f,0x47,0x30,0x2f,0x41,0x28,0x12,0x3,0x26,0xfd,0x25,0xf8,0x5,0x8,0xfa,0x0,0x2,0x10,0x15,0x7b,0xcb,0x93,0x50,0x55,0x98,0xcb,0x75,0x19,0x6e,0xc3,0x96,0x55,0x52,0x94,0xc8,0x8b,0x15,0x3d,0x68,0x4f,0x2c,0x3e,0x72,0x4d,0x4f,0x42,0x65,0x44,0x23,0x2c,0x4f,0x6b,0x3,0x1a,0xbf,0xbf,0x0,0x0,0x4,0x0,0x21,0x0,0x0,0x5,0xbd,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1f,0x40,0xf,0x3,0x2,0x80,0x7,0x6,0x6,0xa,0xc,0xb,0x2,0x72,0xd,0xa,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x1a,0xcc,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0xbd,0xfa,0x64,0x4,0x3c,0xfd,0x15,0x75,0xfe,0xa1,0x4,0xc1,0xfe,0xa2,0x4,0xdb,0xb7,0xb7,0xfe,0x93,0xfe,0xf2,0x1,0xe,0x2,0x42,0xfa,0x50,0x5,0xb0,0xfa,0x50,0x5,0xb0,0x0,0x1,0x0,0x7c,0x0,0x0,0x1,0xce,0x4,0x3a,0x0,0x3,0x0,0xc,0xb5,0x3,0x6,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0xce,0xfe,0xae,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0x0,0x3,0x0,0x76,0x0,0x0,0x4,0xbb,0x4,0x3a,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1f,0x40,0xf,0xc,0x7,0x7,0xb,0x6,0x6,0x2,0x9,0x3,0x6,0x72,0xa,0x2,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x1,0xc7,0xfe,0xaf,0x4,0x3d,0xfe,0x23,0xfe,0xc4,0x26,0xad,0xe1,0x7,0xea,0x1,0x3a,0x1,0x62,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfd,0x40,0x1,0x3b,0x1,0x85,0xfb,0xc6,0x1,0xb9,0x8d,0xfd,0xba,0x0,0x0,0x3,0x0,0x1a,0x0,0x0,0x4,0x63,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xd,0x2,0xa,0x0,0x7,0x6,0x6,0xa,0xb,0x2,0x72,0xa,0x8,0x72,0x0,0x2b,0x2b,0x11,0x33,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x5,0x35,0x1,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x2,0xc3,0xfd,0x57,0x4,0x49,0xfd,0x21,0x7c,0xfe,0xa2,0x3,0xc7,0xb2,0xbb,0xb2,0xfe,0x2,0xfe,0xf2,0x1,0xe,0x4,0xa2,0xfa,0x50,0x5,0xb0,0x0,0x0,0x2,0x0,0x1b,0x0,0x0,0x2,0x75,0x6,0x0,0x0,0x3,0x0,0x7,0x0,0x13,0x40,0x9,0x2,0x6,0x0,0x7,0x0,0x72,0x6,0xa,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x5,0x35,0x1,0x11,0x21,0x11,0x2,0x75,0xfd,0xa6,0x1,0xd4,0xfe,0xad,0x3,0xc7,0xb4,0xbb,0xb4,0x2,0xf4,0xfa,0x0,0x6,0x0,0x0,0x3,0x0,0x71,0xfe,0x4b,0x5,0x3a,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x19,0x0,0x1d,0x40,0xe,0x15,0xe,0x6,0x7,0x7,0x3,0x8,0x72,0x9,0x5,0x4,0x0,0x2,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x11,0x33,0x2f,0x33,0x30,0x31,0x53,0x21,0x11,0x21,0x13,0x37,0x1,0x7,0x11,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x13,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x71,0x1,0x5f,0xfe,0xa1,0x68,0xf7,0x3,0x4,0xf9,0x1,0x5f,0x65,0xbb,0x82,0x2b,0x4d,0x2c,0xe,0x1a,0x25,0x25,0x26,0x34,0x1b,0x5,0xb0,0xfa,0x50,0x5,0x37,0x79,0xfa,0xc9,0x79,0x5,0xb0,0xfa,0x49,0x8b,0xc0,0x63,0x7,0xa,0x1,0x9,0x6,0x5,0x23,0x47,0x35,0x0,0x2,0x0,0x5a,0xfe,0x4b,0x4,0x29,0x4,0x4e,0x0,0x4,0x0,0x2a,0x0,0x19,0x40,0xe,0x1c,0x15,0xf,0x72,0x26,0xb,0x7,0x72,0x3,0x6,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x3,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x1,0xab,0xfe,0xaf,0x1,0x3e,0x29,0x27,0x39,0x6a,0x92,0x5a,0x4b,0x7b,0x5b,0x31,0x63,0xb7,0x80,0x2a,0x4b,0x2b,0xe,0x1a,0x28,0x22,0x26,0x34,0x1b,0x11,0x22,0x30,0x1e,0x38,0x56,0x3a,0x1e,0x3,0x53,0xfc,0xad,0x4,0x3a,0xfe,0x8,0x2,0x72,0xc0,0x8e,0x4e,0x31,0x6a,0xad,0x7b,0xfd,0x66,0x88,0xbd,0x61,0x7,0xa,0xff,0x6,0x6,0x24,0x49,0x35,0x2,0x9b,0x36,0x4a,0x2b,0x13,0x28,0x47,0x60,0x0,0x5,0x0,0x5d,0xff,0xec,0x7,0x81,0x5,0xc4,0x0,0x23,0x0,0x27,0x0,0x2b,0x0,0x2f,0x0,0x33,0x0,0x33,0x40,0x1a,0x2f,0x2e,0x2e,0x26,0x32,0x28,0x33,0x2,0x72,0x29,0x27,0x26,0x8,0x72,0x15,0x12,0x12,0x16,0x19,0x9,0x4,0x7,0x7,0x3,0x0,0x3,0x0,0x3f,0x32,0x32,0x11,0x33,0x3f,0x33,0x33,0x11,0x33,0x2b,0x32,0x32,0x2b,0x32,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x32,0x16,0x17,0x11,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x11,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x11,0x34,0x3e,0x2,0x1,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x2,0xd0,0x4c,0x93,0x43,0x41,0x93,0x4e,0x43,0x6b,0x4c,0x28,0x29,0x4c,0x6c,0x43,0x4d,0x93,0x40,0x43,0x91,0x4c,0x8c,0xe7,0xa7,0x5b,0x5a,0xa7,0xe6,0x5,0x3a,0xfc,0xf8,0x7d,0xfe,0xa1,0x3,0x86,0xfd,0x5c,0x3,0xb,0xfc,0xf5,0x5,0xc4,0xc,0x8,0xfe,0xf5,0xb,0x10,0x29,0x54,0x7d,0x54,0xfe,0xce,0x54,0x7e,0x54,0x2a,0xf,0xc,0xfe,0xf5,0x7,0xd,0x56,0x9f,0xdb,0x84,0x1,0x30,0x84,0xdb,0x9f,0x56,0xfb,0x4a,0xfe,0xf2,0x1,0xe,0x4,0xa2,0xfa,0x50,0x5,0xb0,0xfd,0xbe,0xfe,0xfb,0x1,0x5,0x2,0x42,0xfe,0xf1,0x1,0xf,0x0,0x0,0x3,0x0,0x4c,0xff,0xec,0x6,0xe5,0x4,0x4f,0x0,0x2a,0x0,0x40,0x0,0x56,0x0,0x27,0x40,0x13,0x24,0x0,0x0,0x47,0x3c,0x13,0x12,0x12,0x3c,0x52,0x19,0xb,0xb,0x31,0x7,0x72,0x3c,0xb,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x33,0x11,0x33,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x17,0x32,0x1e,0x2,0x15,0x15,0x21,0x35,0x21,0x35,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x5,0x27,0x7a,0xc2,0x88,0x48,0x3f,0x7d,0xbc,0x7c,0x6f,0xae,0x79,0x40,0xfc,0xb6,0x2,0x0,0x1d,0x3d,0x32,0x31,0x40,0x24,0xe,0x1c,0x3a,0x57,0x3c,0x6b,0x7c,0x44,0x50,0x40,0xdf,0xfa,0x9b,0x44,0x85,0xc2,0x7f,0x80,0xc3,0x85,0x44,0x44,0x84,0xc3,0x7f,0x7f,0xc4,0x85,0x44,0x1,0x51,0x12,0x2a,0x49,0x36,0x35,0x48,0x2a,0x12,0x12,0x2a,0x49,0x36,0x35,0x48,0x2a,0x12,0x14,0x51,0x8f,0xbf,0x6e,0x26,0x77,0xcb,0x99,0x55,0x1,0x44,0x80,0xb5,0x71,0xb1,0xd3,0x1a,0x36,0x4c,0x28,0x30,0x53,0x6c,0x3c,0x26,0x34,0x60,0x4a,0x2b,0x27,0x1c,0xce,0x2f,0x4a,0x2,0x26,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x1,0x0,0x5f,0x0,0x0,0x2,0xb2,0x6,0x15,0x0,0x11,0x0,0xe,0xb6,0xd,0x6,0x1,0x72,0x1,0xa,0x72,0x0,0x2b,0x2b,0x32,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x7,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x1,0xb0,0xfe,0xaf,0x65,0xc0,0x86,0x2b,0x52,0x2b,0x18,0x18,0x2c,0x22,0x2a,0x3b,0x1f,0x4,0x92,0x7e,0xac,0x59,0xc,0x9,0xf9,0x5,0x5,0x1d,0x39,0x29,0x0,0x1,0x0,0x45,0xff,0xeb,0x5,0x3f,0x5,0xc5,0x0,0x2c,0x0,0x1b,0x40,0xd,0xf,0x0,0x6,0x9,0x9,0x0,0x1a,0x22,0x3,0x72,0x0,0x9,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x35,0x21,0x11,0x21,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x7,0x3,0x3e,0x2,0x33,0x32,0x4,0x16,0x16,0x15,0x15,0x14,0xe,0x2,0x2,0xc4,0x9c,0xef,0xa1,0x53,0x3,0xee,0xfd,0x70,0x20,0x44,0x6f,0x4e,0x48,0x6c,0x47,0x23,0x26,0x57,0x92,0x6d,0x88,0xd0,0x3b,0x31,0x17,0x93,0xca,0x68,0xae,0x1,0x8,0xb1,0x5a,0x60,0xac,0xe8,0x15,0x61,0xb5,0xff,0x9e,0xb1,0xfe,0xec,0x1f,0x37,0x60,0x48,0x29,0x39,0x64,0x84,0x4b,0xab,0x4c,0x85,0x65,0x3a,0x27,0x12,0x1,0x1a,0xa,0x23,0x1c,0x62,0xb2,0xf4,0x92,0xab,0x92,0xf2,0xb1,0x60,0x0,0x1,0xff,0xd6,0xfe,0x4b,0x2,0xfc,0x6,0x15,0x0,0x27,0x0,0x29,0x40,0x15,0x14,0x2,0x2,0x15,0x27,0x6,0x72,0x1f,0x22,0x22,0x1e,0x1b,0x1,0x72,0xb,0xe,0xe,0xa,0x7,0xf,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x23,0x3,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x23,0x35,0x33,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x7,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x15,0x2,0xd0,0xd6,0x1,0x5d,0xad,0x79,0x2b,0x4a,0x2b,0xf,0xf,0x35,0x14,0x2c,0x2e,0x11,0x9d,0x9d,0x66,0xbf,0x87,0x2b,0x52,0x2b,0x1a,0x16,0x2c,0x22,0x29,0x3c,0x1f,0x4,0x3a,0xea,0xfc,0x8d,0x82,0xb3,0x5d,0x7,0xa,0xff,0x4,0x8,0x20,0x3f,0x2f,0x3,0x73,0xea,0x58,0x7e,0xac,0x59,0xc,0x9,0xf9,0x5,0x5,0x1d,0x39,0x29,0x58,0x0,0x0,0x3,0x0,0x49,0xff,0xec,0x5,0xcd,0x6,0x14,0x0,0x9,0x0,0x21,0x0,0x39,0x0,0x1d,0x40,0xe,0x5,0x6,0x6,0x29,0x29,0x0,0x0,0x1c,0x3,0x72,0x35,0x10,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2f,0x32,0x11,0x39,0x11,0x33,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x35,0x32,0x36,0x36,0x13,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x5,0x1,0xcc,0x4c,0xa2,0x81,0x43,0x46,0x1a,0x41,0x5d,0xaa,0xe9,0x8b,0x70,0xc4,0x9d,0x71,0x3c,0x5d,0xa9,0xe9,0x8d,0x6f,0xc3,0x9d,0x71,0x3d,0xfe,0x9b,0x18,0x2e,0x44,0x58,0x36,0x46,0x69,0x46,0x23,0x17,0x2d,0x44,0x5a,0x38,0x43,0x68,0x47,0x24,0x6,0x14,0x90,0xcc,0x6b,0xa4,0x46,0x82,0xfd,0x3c,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x40,0x79,0xb0,0xe0,0x85,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x40,0x7a,0xaf,0xe0,0xc1,0x3d,0x56,0x8d,0x6a,0x48,0x25,0x39,0x70,0xa5,0x6c,0x3d,0x55,0x8d,0x6b,0x49,0x26,0x3a,0x72,0xa5,0x0,0x3,0x0,0x32,0xff,0xec,0x4,0xb3,0x4,0x99,0x0,0x9,0x0,0x1f,0x0,0x35,0x0,0x15,0x40,0xa,0x26,0x1b,0xb,0x72,0x31,0x0,0x0,0x10,0x7,0x72,0x0,0x2b,0x32,0x2f,0x32,0x2b,0x32,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x35,0x32,0x36,0x36,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x3,0xfb,0xb8,0x4f,0xa5,0x82,0x4c,0x52,0x20,0xfc,0x37,0x44,0x85,0xc2,0x7f,0x80,0xc3,0x84,0x44,0x44,0x84,0xc2,0x7f,0x7f,0xc4,0x85,0x44,0x1,0x52,0x12,0x2a,0x48,0x36,0x35,0x47,0x29,0x12,0x11,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x4,0x99,0x7c,0xb1,0x5d,0x7d,0x41,0x78,0xfd,0xcd,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x0,0x2,0x0,0x6a,0xff,0xec,0x6,0x6d,0x6,0x1,0x0,0x9,0x0,0x1f,0x0,0x19,0x40,0xc,0x5,0xa,0xa,0x0,0x0,0x15,0x2,0x72,0x1b,0x10,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2f,0x32,0x11,0x33,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x35,0x32,0x36,0x36,0x25,0x21,0x11,0x14,0x6,0x4,0x23,0x22,0x24,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x5,0xa0,0xcd,0x49,0xba,0xa9,0x6d,0x5d,0x15,0xfd,0xe5,0x1,0x5f,0x8e,0xff,0x0,0xad,0xab,0xfe,0xfd,0x91,0x1,0x60,0x34,0x64,0x47,0x48,0x62,0x32,0x6,0x1,0x97,0xd6,0x71,0xa4,0x4c,0x8d,0x10,0xfc,0x49,0xaa,0xeb,0x78,0x78,0xeb,0xaa,0x3,0xb7,0xfc,0x49,0x5a,0x71,0x34,0x34,0x71,0x5a,0x0,0x0,0x3,0x0,0x59,0xff,0xec,0x5,0x46,0x4,0x9d,0x0,0x9,0x0,0xe,0x0,0x25,0x0,0x1d,0x40,0xe,0x5,0xb,0xb,0x0,0x0,0x1b,0x6,0x72,0x22,0xe,0xe,0x15,0xb,0x72,0x0,0x2b,0x32,0x2f,0x32,0x2b,0x32,0x2f,0x32,0x11,0x33,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x37,0x32,0x36,0x36,0x1,0x11,0x21,0x11,0x21,0x13,0x37,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x4,0x8e,0xb8,0x4e,0xb7,0x9d,0x2,0x65,0x63,0x20,0xfe,0x49,0x1,0x52,0xfe,0xc4,0xa,0x58,0x34,0x65,0x93,0x60,0x50,0x85,0x60,0x35,0x1,0x51,0x12,0x22,0x33,0x21,0x4c,0x56,0x23,0x4,0x9d,0x82,0xaf,0x59,0x8f,0x37,0x70,0xfc,0xbe,0x3,0x33,0xfb,0xc6,0x1,0xe3,0x2,0x6d,0xb9,0x88,0x4b,0x2d,0x61,0x99,0x6b,0x2,0xbc,0xfd,0x42,0x24,0x34,0x23,0x11,0x40,0x6e,0x0,0x1,0xff,0xa3,0xfe,0x4b,0x1,0xdd,0x4,0x3a,0x0,0x11,0x0,0xe,0xb6,0xd,0x6,0xf,0x72,0x1,0x6,0x72,0x0,0x2b,0x2b,0x32,0x30,0x31,0x53,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x8c,0x1,0x51,0x63,0xb7,0x7f,0x2b,0x4b,0x2b,0xf,0x1a,0x27,0x22,0x26,0x35,0x1c,0x4,0x3a,0xfb,0xb7,0x88,0xbd,0x61,0x7,0xa,0xff,0x6,0x6,0x24,0x49,0x35,0x0,0x0,0x1,0x0,0x42,0xff,0xec,0x4,0xc,0x4,0x4f,0x0,0x2a,0x0,0x19,0x40,0xc,0x11,0x14,0x14,0x0,0x19,0xb,0xb,0x72,0x24,0x0,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x27,0x22,0x2e,0x2,0x35,0x35,0x21,0x15,0x21,0x15,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x7,0x27,0x36,0x36,0x2,0x0,0x7a,0xc2,0x88,0x48,0x3f,0x7d,0xbb,0x7d,0x6f,0xae,0x79,0x40,0x3,0x4a,0xfe,0x0,0x1d,0x3e,0x31,0x32,0x3f,0x24,0xe,0x1c,0x39,0x58,0x3c,0x6b,0x7b,0x44,0x51,0x41,0xdf,0x4,0x4f,0x51,0x8f,0xbf,0x6e,0x26,0x76,0xcc,0x99,0x55,0x1,0x44,0x80,0xb5,0x71,0xb1,0xd3,0x1a,0x35,0x4d,0x28,0x30,0x53,0x6c,0x3c,0x26,0x35,0x5f,0x4a,0x2b,0x26,0x1d,0xce,0x2f,0x4a,0x0,0x1,0x0,0x62,0x4,0xda,0x3,0xad,0x6,0x0,0x0,0x8,0x0,0x14,0xb7,0x7,0x5,0x5,0x4,0x1,0x3,0x80,0x8,0x0,0x2f,0x1a,0xcd,0x32,0x39,0x32,0x11,0x33,0x30,0x31,0x41,0x1,0x15,0x21,0x27,0x7,0x21,0x35,0x1,0x2,0x65,0x1,0x48,0xfe,0xf7,0xa0,0x9e,0xfe,0xfc,0x1,0x42,0x6,0x0,0xfe,0xe7,0xd,0x88,0x88,0x11,0x1,0x15,0x0,0x0,0x1,0x0,0x38,0x4,0xdb,0x3,0x9e,0x6,0x1,0x0,0x8,0x0,0x12,0xb6,0x1,0x6,0x80,0x7,0x4,0x2,0x0,0x0,0x2f,0x32,0x32,0x32,0x1a,0xcd,0x39,0x30,0x31,0x41,0x17,0x37,0x21,0x15,0x1,0x23,0x1,0x35,0x1,0x59,0x93,0x93,0x1,0x1f,0xfe,0xbb,0xd9,0xfe,0xb8,0x6,0x1,0x86,0x86,0xb,0xfe,0xe5,0x1,0x1d,0x9,0xff,0xff,0x0,0xb5,0x5,0x5,0x3,0x6b,0x5,0xb2,0x6,0x6,0x0,0x70,0x0,0x0,0x0,0x1,0x0,0x5e,0x4,0xcf,0x3,0x43,0x6,0x2,0x0,0xe,0x0,0x10,0xb5,0x1,0x1,0x9,0x80,0xc,0x5,0x0,0x2f,0x33,0x1a,0xcc,0x32,0x2f,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x22,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x2,0x5c,0xe7,0x5b,0xa6,0x71,0xab,0xc8,0xe6,0x40,0x4d,0x4d,0x3e,0x6,0x2,0x5a,0x8b,0x4e,0xab,0x88,0x31,0x4e,0x4e,0x0,0x1,0x0,0x6b,0x4,0xd0,0x1,0xb7,0x5,0xf5,0x0,0xb,0x0,0x9,0xb2,0x3,0x9,0x10,0x0,0x3f,0x33,0x30,0x31,0x53,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x6b,0x5d,0x49,0x4a,0x5c,0x5c,0x4a,0x49,0x5d,0x5,0x62,0x41,0x52,0x52,0x41,0x40,0x52,0x52,0x0,0x0,0x2,0x0,0x77,0x4,0x47,0x2,0x38,0x5,0xd9,0x0,0xd,0x0,0x19,0x0,0xe,0xb4,0x17,0x4,0x80,0x11,0xb,0x0,0x2f,0x33,0x1a,0xcc,0x32,0x30,0x31,0x53,0x34,0x36,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x37,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x77,0x3a,0x65,0x41,0x62,0x7f,0x3a,0x65,0x42,0x61,0x7f,0x79,0x37,0x30,0x31,0x37,0x37,0x31,0x30,0x37,0x5,0xe,0x37,0x5c,0x38,0x78,0x53,0x37,0x5a,0x36,0x75,0x52,0x2b,0x3d,0x3d,0x2b,0x2c,0x3e,0x3e,0x0,0x0,0x1,0x0,0x1a,0xfe,0x5f,0x1,0xb3,0x0,0x3c,0x0,0x15,0x0,0xe,0xb4,0x8,0xf,0x80,0x1,0x0,0x0,0x2f,0x32,0x1a,0xcc,0x32,0x30,0x31,0x77,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0xe3,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x3c,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0x0,0x0,0x1,0x0,0x70,0x4,0xe5,0x3,0x76,0x6,0x7,0x0,0x19,0x0,0x27,0x40,0x13,0x0,0x0,0x1,0x1,0xa,0x12,0x40,0xf,0x1a,0x48,0x12,0x5,0x80,0xd,0xd,0xe,0xe,0x17,0x5,0x0,0x2f,0x33,0x33,0x2f,0x33,0x2f,0x1a,0x10,0xcd,0x2b,0x32,0x32,0x2f,0x33,0x2f,0x30,0x31,0x41,0x17,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x23,0x22,0x6,0x15,0x27,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x33,0x32,0x36,0x2,0xbc,0xba,0x3b,0x68,0x44,0x2e,0x47,0x3d,0x3f,0x26,0x1f,0x2d,0xbc,0x3b,0x68,0x44,0x27,0x46,0x42,0x43,0x24,0x20,0x2f,0x6,0x7,0xb,0x49,0x7c,0x4c,0x19,0x22,0x19,0x2c,0x2e,0xa,0x47,0x7d,0x4d,0x19,0x21,0x19,0x2c,0x0,0x2,0x0,0x29,0x4,0xd3,0x3,0xa5,0x5,0xff,0x0,0x3,0x0,0x7,0x0,0xe,0xb4,0x1,0x5,0x80,0x0,0x4,0x0,0x2f,0x33,0x1a,0xcd,0x32,0x30,0x31,0x41,0x13,0x21,0x1,0x21,0x13,0x21,0x3,0x1,0xad,0xe1,0x1,0x17,0xfe,0xf6,0xfd,0x8e,0xc6,0x1,0x17,0xed,0x4,0xd3,0x1,0x2c,0xfe,0xd4,0x1,0x2c,0xfe,0xd4,0x0,0x0,0x2,0x0,0x9b,0xfe,0x75,0x2,0x1c,0xff,0xcc,0x0,0xb,0x0,0x17,0x0,0xe,0xb4,0xf,0x9,0x80,0x15,0x3,0x0,0x2f,0x33,0x1a,0xcc,0x32,0x30,0x31,0x57,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x37,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x9b,0x70,0x52,0x51,0x6e,0x6e,0x51,0x52,0x70,0x7d,0x27,0x1e,0x1d,0x24,0x24,0x1d,0x1e,0x27,0xe1,0x4a,0x63,0x63,0x4a,0x4a,0x60,0x61,0x49,0x1f,0x27,0x27,0x1f,0x20,0x28,0x28,0x0,0x1,0xfc,0x71,0x4,0xc6,0xfe,0x9d,0x6,0x0,0x0,0x3,0x0,0xa,0xb2,0x3,0x80,0x2,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x13,0x21,0x1,0xfd,0xd5,0xc8,0xfe,0xee,0xfe,0xe6,0x6,0x0,0xfe,0xc6,0x1,0x3a,0x0,0x0,0x1,0xfd,0x4d,0x4,0xc6,0xff,0x76,0x6,0x0,0x0,0x3,0x0,0xa,0xb2,0x1,0x80,0x0,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x13,0x21,0x1,0xfd,0x4d,0xc6,0x1,0x63,0xfe,0xea,0x4,0xc6,0x1,0x3a,0xfe,0xc6,0x0,0xff,0xff,0xfc,0x4e,0x4,0xe5,0xff,0x54,0x6,0x7,0x4,0x7,0x0,0xa5,0xfb,0xde,0x0,0x0,0x0,0x1,0xfc,0xfb,0x4,0xfc,0xfe,0xa8,0x6,0x8c,0x0,0x14,0x0,0x10,0xb5,0x14,0x2,0x0,0x80,0xb,0xc,0x0,0x2f,0x33,0x1a,0xcc,0x32,0x32,0x30,0x31,0x41,0x21,0x27,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x37,0x32,0x1e,0x2,0x15,0x14,0x6,0x7,0xfe,0x13,0xfe,0xff,0x17,0x31,0x3c,0x1c,0x13,0x24,0x31,0x1e,0x7,0x67,0x9d,0x69,0x36,0x5e,0x38,0x4,0xfc,0x7e,0x2,0xf,0x1b,0x13,0x14,0x1a,0xe,0x6,0x91,0x1b,0x33,0x49,0x2e,0x42,0x43,0x8,0x0,0x2,0xfb,0xd3,0x4,0xe4,0xff,0x79,0x5,0xee,0x0,0x3,0x0,0x7,0x0,0xe,0xb4,0x7,0x3,0x80,0x4,0x0,0x0,0x2f,0x32,0x1a,0xcd,0x32,0x30,0x31,0x41,0x21,0x1,0x21,0x1,0x21,0x3,0x21,0xfd,0xfd,0xfe,0xf1,0xfe,0xe5,0x1,0x35,0x2,0x71,0xfe,0xee,0xf5,0x1,0x39,0x4,0xe4,0x1,0xa,0xfe,0xf6,0x1,0xa,0x0,0x0,0x1,0xfc,0xf0,0xfe,0x85,0xfe,0x66,0xff,0xaf,0x0,0xb,0x0,0x8,0xb1,0x3,0x9,0x0,0x2f,0x33,0x30,0x31,0x45,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0xfc,0xf0,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0xe6,0x40,0x55,0x55,0x40,0x40,0x55,0x55,0x0,0x1,0x0,0xf0,0x4,0xe8,0x2,0x75,0x6,0x42,0x0,0x3,0x0,0xa,0xb2,0x0,0x80,0x1,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x53,0x13,0x21,0x3,0xf0,0x55,0x1,0x30,0xbd,0x4,0xe8,0x1,0x5a,0xfe,0xa6,0x0,0x0,0x3,0x0,0x66,0x4,0xd0,0x4,0x10,0x6,0xf4,0x0,0x3,0x0,0xf,0x0,0x1b,0x0,0x19,0x40,0xa,0x13,0x19,0x19,0xd,0x1,0x80,0x0,0x0,0x7,0xd,0x0,0x2f,0x33,0x33,0x2f,0x1a,0xcd,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x13,0x21,0x3,0x5,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x1,0xe3,0x25,0x1,0x24,0xb4,0xfd,0xee,0x59,0x3e,0x3e,0x59,0x59,0x3e,0x3e,0x59,0x2,0x7c,0x59,0x3e,0x3e,0x59,0x59,0x3e,0x3e,0x59,0x5,0x90,0x1,0x64,0xfe,0x9c,0x3b,0x38,0x4d,0x4d,0x38,0x38,0x4d,0x4d,0x38,0x38,0x4d,0x4d,0x38,0x38,0x4d,0x4d,0x0,0xff,0xff,0x0,0x8a,0x2,0x4,0x1,0xff,0x3,0x56,0x6,0x6,0x0,0x78,0x0,0x0,0x0,0x1,0x0,0x6d,0x0,0x0,0x4,0x44,0x5,0xb0,0x0,0x5,0x0,0xe,0xb6,0x2,0x5,0x2,0x72,0x4,0x8,0x72,0x0,0x2b,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x4,0x44,0xfd,0x87,0xfe,0xa2,0x5,0xb0,0xfe,0xf1,0xfb,0x5f,0x5,0xb0,0x0,0x3,0x0,0x11,0x0,0x0,0x5,0xfc,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x1b,0x40,0xd,0x6,0x2,0x7,0x3,0x2,0x72,0xd,0xc,0xc,0x5,0x2,0x12,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x12,0x39,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x1,0x1,0x37,0x33,0x1,0x1,0x11,0x21,0x11,0x3,0x69,0xfe,0x1a,0xfe,0x8e,0x2,0x32,0xba,0x1,0x8c,0xfe,0xe,0x6f,0xba,0x2,0x3c,0xfe,0xa6,0xfc,0x8f,0x5,0x3a,0xfa,0xc6,0x5,0xb0,0xfa,0x50,0x5,0x43,0x6d,0xfa,0x50,0x1,0xe,0xfe,0xf2,0x1,0xe,0x0,0x0,0x3,0x0,0x49,0xff,0xec,0x5,0x43,0x5,0xc4,0x0,0x3,0x0,0x1b,0x0,0x33,0x0,0x1b,0x40,0xd,0x2f,0xa,0x3,0x2,0x2,0xa,0x23,0x16,0x3,0x72,0xa,0x9,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x3,0x66,0xfe,0xc5,0x3,0x18,0x5d,0xab,0xe8,0x8c,0x70,0xc4,0x9d,0x71,0x3c,0x5d,0xa9,0xe9,0x8d,0x70,0xc2,0x9e,0x71,0x3d,0xfe,0x9b,0x18,0x2f,0x44,0x58,0x36,0x46,0x68,0x46,0x23,0x17,0x2d,0x44,0x59,0x38,0x43,0x68,0x47,0x25,0x3,0x50,0xfe,0xfd,0x1,0x3,0x5b,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x40,0x79,0xb0,0xe0,0x85,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x40,0x7a,0xaf,0xe0,0xc1,0x3d,0x56,0x8d,0x6a,0x48,0x25,0x39,0x70,0xa5,0x6c,0x3d,0x55,0x8d,0x6b,0x49,0x26,0x3a,0x72,0xa5,0x0,0x0,0x2,0x0,0x1,0x0,0x0,0x5,0x25,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0x17,0x40,0xb,0x6,0x0,0x2,0x7,0x3,0x2,0x72,0x5,0x2,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x39,0x30,0x31,0x41,0x1,0x21,0x1,0x21,0x13,0x1,0x3,0x21,0x1,0x2,0xae,0xfe,0xce,0xfe,0x85,0x1,0xd3,0x1,0x5,0xd0,0xfe,0xce,0x2b,0x1,0x5,0x1,0xd4,0x4,0x5c,0xfb,0xa4,0x5,0xb0,0xfa,0x50,0x4,0x5f,0x1,0x51,0xfa,0x50,0x0,0x0,0x3,0x0,0x52,0x0,0x0,0x4,0x42,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xd,0x1,0x0,0x5,0x4,0x4,0x0,0x8,0x9,0x2,0x72,0x0,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x73,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x52,0x3,0xf0,0xfc,0x93,0x2,0xef,0xfc,0xb1,0x3,0x92,0x1,0xe,0xfe,0xf2,0x2,0x58,0x1,0x1,0xfe,0xff,0x2,0x49,0x1,0xf,0xfe,0xf1,0x0,0x1,0x0,0x6d,0x0,0x0,0x5,0x35,0x5,0xb0,0x0,0x7,0x0,0x13,0x40,0x9,0x2,0x6,0x4,0x7,0x2,0x72,0x6,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0x35,0xfe,0xa1,0xfd,0xf5,0xfe,0xa2,0x5,0xb0,0xfa,0x50,0x4,0xa1,0xfb,0x5f,0x5,0xb0,0x0,0x0,0x3,0x0,0x49,0x0,0x0,0x4,0x57,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x10,0x0,0x21,0x40,0x10,0xe,0x6,0x6,0x7,0x7,0xf,0x2,0x72,0xc,0x3,0x3,0x2,0x2,0xb,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x11,0x33,0x2b,0x32,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x15,0x1,0x21,0x35,0x1,0x1,0x35,0x21,0x4,0x57,0xfc,0x75,0x3,0x7e,0xfc,0xbd,0x2,0x59,0xfe,0xe,0xfe,0xdb,0x1,0xa4,0xfe,0x5c,0x1,0x25,0x1,0xd,0xfe,0xf3,0x1,0xd,0x4,0xa3,0xfe,0xf1,0x1,0xf,0xfd,0x39,0xd,0xfd,0x24,0x97,0x2,0x4c,0x2,0x37,0x96,0x0,0x0,0x3,0x0,0x49,0x0,0x0,0x6,0x29,0x5,0xb0,0x0,0x13,0x0,0x27,0x0,0x2b,0x0,0x21,0x40,0x10,0x14,0x15,0x15,0x1,0x0,0x29,0x8,0x72,0x1f,0x1e,0x1e,0xa,0xb,0x28,0x2,0x72,0x0,0x2b,0xcd,0x32,0x32,0x11,0x33,0x2b,0xcd,0x32,0x32,0x11,0x33,0x30,0x31,0x65,0x21,0x22,0x2e,0x2,0x35,0x34,0x12,0x24,0x33,0x21,0x32,0x1e,0x2,0x15,0x14,0x6,0x4,0x1,0x21,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x21,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x1,0x11,0x21,0x11,0x3,0xc0,0xfe,0xf2,0x8a,0xe2,0xa4,0x59,0x9b,0x1,0x16,0xb8,0x1,0xd,0x8a,0xe3,0xa4,0x59,0x9c,0xfe,0xeb,0xfe,0x3a,0x1,0x10,0x4f,0x7a,0x46,0x28,0x49,0x63,0x3c,0xfe,0xf1,0x4e,0x7c,0x48,0x29,0x4b,0x64,0x1,0x72,0xfe,0xa2,0xa2,0x4d,0x91,0xcd,0x7f,0xb1,0x1,0x4,0x8d,0x50,0x97,0xd4,0x85,0xaa,0xfa,0x88,0x1,0x27,0x38,0x74,0x59,0x49,0x6a,0x45,0x21,0x3c,0x7d,0x62,0x43,0x62,0x3f,0x1f,0x3,0xe7,0xfa,0x50,0x5,0xb0,0x0,0x0,0x2,0x0,0x24,0x0,0x0,0x5,0xd7,0x5,0xb0,0x0,0x19,0x0,0x1d,0x0,0x19,0x40,0xc,0x14,0x7,0x7,0xd,0x1c,0x8,0x72,0x1d,0x1,0xd,0x2,0x72,0x0,0x2b,0x32,0x32,0x2b,0x11,0x39,0x11,0x33,0x30,0x31,0x41,0x21,0x11,0x14,0x2,0x4,0x23,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x33,0x32,0x36,0x36,0x35,0x3,0x11,0x21,0x11,0x4,0x77,0x1,0x60,0x9c,0xfe,0xe2,0xc3,0xb8,0x92,0xec,0xa7,0x59,0x1,0x5f,0x27,0x4d,0x73,0x4b,0xb7,0x62,0x75,0x34,0xbf,0xfe,0xa3,0x5,0xb0,0xfe,0x49,0xc6,0xfe,0xeb,0x90,0x52,0x9e,0xe6,0x95,0x1,0xb7,0xfe,0x49,0x5a,0x84,0x55,0x2a,0x4b,0x9a,0x78,0x1,0xb7,0xfa,0x50,0x5,0xb0,0x0,0x3,0x0,0x63,0x0,0x0,0x4,0xf6,0x5,0xc3,0x0,0x2d,0x0,0x31,0x0,0x35,0x0,0x25,0x40,0x12,0x28,0x12,0x12,0x2f,0x29,0x29,0x34,0x11,0x11,0x33,0x2e,0x32,0x12,0x72,0x6,0x1d,0x3,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x32,0x11,0x33,0x33,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x17,0x15,0x2e,0x3,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x7,0x35,0x3e,0x3,0x3,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x65,0x19,0x30,0x45,0x2c,0x2b,0x44,0x2f,0x19,0x15,0x25,0x34,0x1e,0x5b,0xbf,0xa0,0x63,0x54,0x9c,0xd6,0x82,0x83,0xd7,0x9c,0x55,0x62,0x9f,0xbc,0x5a,0x1c,0x30,0x25,0x15,0x86,0x2,0x1,0xfb,0x98,0x2,0x8,0x3,0x1a,0x4d,0x52,0x7b,0x53,0x2a,0x2a,0x53,0x7b,0x52,0x4d,0x7a,0xb2,0x7a,0x4b,0x13,0x92,0xb,0x6a,0xaf,0xe8,0x8a,0x4b,0x85,0xde,0xa2,0x59,0x59,0xa2,0xde,0x85,0x4b,0x8a,0xe7,0xaf,0x6a,0xc,0x92,0x14,0x4b,0x7a,0xb2,0xfd,0x5f,0x1,0x12,0xfe,0xee,0x1,0x12,0xfe,0xee,0x0,0x0,0x3,0x0,0x3d,0xff,0xeb,0x4,0x80,0x4,0x4e,0x0,0x16,0x0,0x2c,0x0,0x41,0x0,0x1a,0x40,0xd,0x2e,0x6,0x34,0x3b,0x3b,0x1d,0x12,0xb,0x72,0x28,0x6,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x11,0x33,0x3f,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x3,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x37,0x35,0x2e,0x3,0x23,0x22,0xe,0x2,0x1,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x2e,0x2,0x27,0x11,0x3d,0x37,0x6b,0x9e,0x67,0x45,0x6b,0x4f,0x39,0x27,0xc,0xf,0x35,0x55,0x7d,0x57,0x67,0x9d,0x6b,0x36,0x1,0x52,0x10,0x27,0x41,0x30,0x30,0x43,0x2b,0x16,0x3,0x3,0x16,0x2b,0x42,0x2f,0x2f,0x41,0x28,0x12,0x1,0x5b,0x1,0x27,0x9,0x11,0x1a,0x12,0x6,0x7,0x3,0x19,0x21,0x39,0x23,0x41,0x6b,0x52,0x37,0xe,0x2,0x6,0x15,0x7b,0xce,0x97,0x53,0x39,0x68,0x8e,0xaa,0x5e,0x19,0x6e,0xc0,0x92,0x52,0x4f,0x90,0xc5,0x8b,0x15,0x3d,0x65,0x4b,0x29,0x21,0x3e,0x5a,0x3a,0x4f,0x42,0x68,0x48,0x26,0x2f,0x53,0x6e,0x1,0xe0,0xfd,0x38,0x24,0x31,0x1f,0xd,0x2,0x1,0xf4,0xd,0x8,0x24,0x4b,0x71,0x4c,0x2,0x3d,0x0,0x2,0x0,0x87,0xfe,0x61,0x4,0xa4,0x5,0xc4,0x0,0x1c,0x0,0x3a,0x0,0x1e,0x40,0xe,0x35,0x0,0x26,0x27,0x27,0x1c,0x1c,0x30,0x1d,0x3,0x13,0x9,0xb,0x72,0x0,0x2b,0x32,0x3f,0x33,0x39,0x2f,0x33,0x12,0x39,0x39,0x2f,0x30,0x31,0x41,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x33,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x13,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x11,0x21,0x11,0x34,0x36,0x36,0x2,0x41,0x83,0x98,0xd7,0x71,0x67,0xc5,0x8d,0x50,0xa9,0x91,0x59,0x7b,0x43,0x7a,0x52,0x3d,0x56,0x2e,0x2e,0x5a,0x42,0x48,0x3c,0x94,0xdc,0x79,0x6d,0xc3,0x82,0x73,0x38,0x38,0x44,0x1f,0x20,0x43,0x34,0x30,0x4b,0x2a,0xfe,0xaf,0x88,0xe4,0x3,0x1b,0x5c,0xac,0x7a,0x88,0xc0,0x65,0x31,0x67,0xa1,0x70,0x2e,0x4b,0x2c,0x2f,0x50,0x31,0x4a,0x5c,0x2c,0x3,0x52,0x59,0xaf,0x82,0x6a,0xab,0x64,0x98,0x2d,0x56,0x3f,0x2c,0x4b,0x2e,0x2f,0x58,0x3f,0xfa,0x67,0x5,0x99,0x8f,0xcd,0x6e,0x0,0x3,0x0,0x1,0xfe,0x5f,0x4,0x18,0x4,0x3a,0x0,0x3,0x0,0x8,0x0,0xd,0x0,0x19,0x40,0xe,0x8,0xc,0x3,0x4,0xa,0x5,0x1,0x5,0xd,0x6,0x72,0x1,0xe,0x72,0x0,0x2b,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x65,0x11,0x21,0x11,0x37,0x13,0x21,0x1,0x23,0x3,0x13,0x13,0x23,0x1,0x2,0xb4,0xfe,0xae,0x97,0xbc,0x1,0x63,0xfe,0xa0,0xe5,0x6e,0xc6,0x1a,0xe5,0xfe,0xa1,0x46,0xfe,0x19,0x1,0xe7,0xc8,0x3,0x2c,0xfb,0xc6,0x4,0x3a,0xfc,0xcc,0xfe,0xfa,0x4,0x3a,0x0,0x2,0x0,0x35,0xff,0xec,0x4,0x58,0x6,0x27,0x0,0x2c,0x0,0x42,0x0,0x19,0x40,0xd,0x14,0x28,0x3e,0x3,0x4,0x33,0x1e,0xb,0x72,0xb,0x4,0x1,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x53,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x15,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x36,0x36,0x37,0x27,0x2e,0x2,0x13,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x27,0x22,0xe,0x2,0xb1,0x67,0xbe,0x85,0x4f,0x67,0x4c,0x24,0x73,0x42,0x2f,0x44,0x25,0x9,0x19,0x31,0x29,0xa2,0xdd,0x71,0x47,0x88,0xc4,0x7d,0x7e,0xc6,0x88,0x47,0x55,0x8d,0x52,0x4,0x35,0x51,0x2e,0xd4,0x17,0x30,0x49,0x33,0x32,0x48,0x2f,0x17,0x1a,0x32,0x47,0x2d,0x32,0x49,0x30,0x18,0x4,0xdc,0x69,0x94,0x4e,0x15,0x14,0xf2,0xb,0x20,0x14,0x25,0x1b,0xd,0x1d,0x1e,0x20,0xf,0x38,0xa3,0xdd,0x8e,0x14,0x75,0xc8,0x96,0x53,0x50,0x90,0xc1,0x71,0x14,0x6f,0xb8,0x7c,0x15,0x6,0x1f,0x4e,0x62,0xfd,0x99,0x14,0x3f,0x70,0x55,0x31,0x31,0x55,0x70,0x3f,0x14,0x30,0x60,0x53,0x3a,0xa,0x30,0x52,0x6a,0x0,0x0,0x2,0x0,0x5e,0xff,0xec,0x4,0x53,0x4,0x4d,0x0,0x1f,0x0,0x3f,0x0,0x1f,0x40,0xf,0x0,0x21,0x3e,0x3e,0x3,0x3,0x16,0x35,0x2b,0x7,0x72,0xc,0x16,0xb,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x21,0x15,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x21,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x5,0x21,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x33,0x33,0x2,0xd,0x1,0x2,0xaf,0x33,0x51,0x2e,0x14,0x2a,0x3f,0x2b,0x3c,0x4c,0x24,0x1,0x51,0x53,0x8c,0xad,0x59,0x6f,0xc0,0x90,0x51,0x3b,0x70,0xa0,0x1,0x66,0xfe,0xfe,0x5a,0x97,0x6f,0x3c,0x4b,0x88,0xbb,0x6f,0x60,0xaa,0x81,0x4a,0xfe,0xae,0x27,0x46,0x2d,0x36,0x41,0x1e,0x16,0x29,0x3b,0x24,0xaf,0x2,0x4c,0x8a,0x16,0x31,0x2b,0x15,0x2a,0x21,0x14,0x1b,0x2e,0x1b,0x58,0x81,0x53,0x28,0x2c,0x54,0x79,0x4d,0x44,0x69,0x48,0x25,0x48,0x2a,0x4b,0x62,0x37,0x4d,0x75,0x50,0x29,0x2d,0x56,0x7b,0x4f,0x20,0x29,0x14,0x20,0x30,0x1a,0x17,0x24,0x1a,0xd,0x0,0x2,0x0,0x36,0xfe,0x78,0x3,0xc6,0x5,0xb0,0x0,0x28,0x0,0x2c,0x0,0x15,0x40,0x9,0x15,0x2,0x2c,0x2c,0x29,0x29,0x0,0x2,0x72,0x0,0x2b,0x32,0x2f,0x33,0x11,0x33,0x2f,0x30,0x31,0x41,0x33,0x15,0x1,0xe,0x2,0x15,0x14,0x1e,0x2,0x17,0x17,0x1e,0x2,0x7,0x14,0x6,0x6,0x7,0x27,0x3e,0x2,0x27,0x36,0x26,0x26,0x27,0x27,0x2e,0x3,0x35,0x34,0x36,0x36,0x37,0x1,0x21,0x11,0x21,0x2,0xe5,0xe1,0xfe,0x8f,0x3c,0x51,0x28,0x18,0x2d,0x3f,0x28,0x32,0x5d,0x89,0x4c,0x1,0x4d,0x77,0x40,0xaa,0x21,0x29,0x13,0x2,0x2,0xf,0x29,0x25,0x42,0x5c,0x8a,0x5b,0x2d,0x41,0x77,0x51,0xfe,0xdc,0x2,0xed,0xfd,0x13,0x5,0xb0,0xb2,0xfe,0x4d,0x47,0x7a,0x80,0x52,0x2e,0x3e,0x29,0x1b,0xc,0x11,0x1a,0x40,0x65,0x52,0x3c,0x86,0x78,0x28,0x79,0x20,0x3e,0x34,0x11,0x17,0x24,0x1b,0x9,0x12,0x18,0x46,0x5c,0x76,0x48,0x7e,0xc2,0xb2,0x63,0x1,0xde,0xfe,0xfe,0x0,0x0,0x2,0x0,0x5a,0xfe,0x60,0x4,0x29,0x4,0x4e,0x0,0x4,0x0,0x1c,0x0,0x17,0x40,0xc,0x18,0xb,0x3,0x6,0x72,0x2,0xa,0x72,0xb,0x7,0x72,0x11,0x0,0x2f,0x2b,0x2b,0x2b,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x3,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x1,0xab,0xfe,0xaf,0x1,0x3e,0x2c,0x38,0x3c,0x6f,0x9a,0x5e,0x4b,0x7b,0x5b,0x31,0xfe,0xad,0x11,0x22,0x30,0x1e,0x38,0x57,0x3b,0x1f,0x3,0x53,0xfc,0xad,0x4,0x3a,0xfe,0x8,0x2,0x72,0xc0,0x8e,0x4e,0x2d,0x61,0x9d,0x70,0xfb,0xad,0x4,0x54,0x26,0x38,0x25,0x13,0x28,0x47,0x60,0x0,0x3,0x0,0x6d,0xff,0xec,0x4,0x64,0x5,0xc4,0x0,0x19,0x0,0x27,0x0,0x36,0x0,0x1d,0x40,0x10,0xd,0x28,0x6a,0x30,0x20,0x6a,0x30,0x30,0xd,0x0,0x1a,0x6a,0x0,0xd,0xb,0x72,0x0,0x2b,0x2f,0x2b,0x12,0x39,0x2f,0x2b,0x2b,0x30,0x31,0x41,0x32,0x1e,0x3,0x15,0x11,0x14,0xe,0x3,0x23,0x22,0x2e,0x3,0x35,0x11,0x34,0x3e,0x3,0x13,0x22,0xe,0x2,0x15,0x15,0x21,0x35,0x34,0x2e,0x3,0x3,0x32,0x3e,0x3,0x35,0x35,0x21,0x15,0x14,0x1e,0x3,0x2,0x68,0x5a,0x9b,0x7e,0x59,0x30,0x2f,0x59,0x7d,0x9b,0x5a,0x5a,0x9c,0x7d,0x5a,0x30,0x30,0x59,0x7c,0x9c,0x5a,0x28,0x3f,0x2c,0x17,0x1,0x55,0xf,0x1d,0x2a,0x35,0x1e,0x1f,0x35,0x29,0x1d,0xf,0xfe,0xab,0xf,0x1d,0x2a,0x36,0x5,0xc4,0x2f,0x61,0x92,0xc7,0x7e,0xfe,0xf6,0x7e,0xc7,0x92,0x61,0x2f,0x2f,0x61,0x92,0xc7,0x7e,0x1,0xa,0x7e,0xc7,0x92,0x61,0x2f,0xfe,0xfc,0x21,0x48,0x78,0x57,0x2e,0x2e,0x46,0x68,0x48,0x2d,0x15,0xfc,0x30,0x14,0x2d,0x49,0x69,0x47,0x39,0x39,0x47,0x69,0x49,0x2d,0x14,0x0,0x1,0x0,0x6b,0xff,0xf5,0x2,0x7e,0x4,0x3a,0x0,0x11,0x0,0xe,0xb6,0x6,0xd,0xb,0x72,0x0,0x6,0x72,0x0,0x2b,0x2b,0x32,0x30,0x31,0x53,0x21,0x3,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x6b,0x1,0x52,0x1,0x14,0x31,0x29,0x1d,0x26,0x11,0x2c,0x5d,0x35,0x6c,0x99,0x50,0x4,0x3a,0xfd,0x30,0x2b,0x2f,0x13,0x3,0x3,0xf1,0xe,0xf,0x44,0x92,0x75,0x0,0x0,0x2,0xff,0xf9,0xff,0xed,0x4,0x6d,0x6,0x15,0x0,0x4,0x0,0x26,0x0,0x1e,0x40,0x10,0x0,0x1b,0x4,0x3,0x4,0x2,0x20,0x5,0x0,0x72,0xf,0x16,0x16,0x2,0xa,0x72,0x0,0x2b,0x32,0x2f,0x33,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x3,0x21,0x1,0x17,0x1,0x32,0x1e,0x2,0x17,0x1,0x1e,0x2,0x33,0x32,0x32,0x33,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x27,0x1,0x27,0x2e,0x2,0x23,0x22,0x6,0x7,0x27,0x36,0x36,0x2,0x2c,0xca,0xfe,0x97,0x1,0x8a,0xe5,0xfe,0xc3,0x37,0x59,0x46,0x33,0x10,0x1,0x9a,0xb,0x1d,0x2a,0x1d,0x9,0xf,0x8,0x1b,0x3b,0x27,0x5e,0x82,0x50,0x16,0xff,0x0,0x6e,0xd,0x27,0x34,0x22,0x10,0x1b,0x16,0x9,0x29,0x6f,0x2,0x92,0xfd,0x6e,0x4,0x5a,0x1,0x1,0xbc,0x18,0x2d,0x41,0x29,0xfc,0x0,0x1b,0x36,0x25,0xfe,0x4,0x1,0x3d,0x6a,0x41,0x2,0xe6,0xfb,0x20,0x27,0x12,0x1,0x2,0xf0,0xc,0xd,0x0,0x0,0x2,0x0,0x6a,0xfe,0x77,0x4,0x2c,0x5,0xc4,0x0,0x1e,0x0,0x46,0x0,0x19,0x40,0xb,0x1f,0x11,0xf,0xf,0x21,0x21,0x33,0x5,0x1b,0x3,0x72,0x0,0x2b,0x32,0x2f,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x7,0x2e,0x2,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x33,0x33,0x15,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x3,0x33,0x15,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x17,0x17,0x1e,0x2,0x7,0x14,0x6,0x6,0x7,0x27,0x3e,0x2,0x35,0x34,0x26,0x26,0x27,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x3,0xe8,0x35,0x3b,0x48,0x39,0x27,0x3e,0x50,0x26,0x14,0x2b,0x45,0x31,0x9a,0x9e,0x73,0xbd,0x89,0x49,0x42,0x7c,0xad,0x6b,0x4d,0x6a,0x5b,0xdb,0x93,0x8f,0x5d,0x81,0x43,0x3c,0x68,0x42,0x59,0x5d,0x89,0x4c,0x1,0x4d,0x77,0x40,0xa9,0x21,0x28,0x12,0x14,0x28,0x1f,0x43,0x71,0xae,0x76,0x3c,0x52,0x9f,0xe7,0x5,0x8e,0xfb,0xf,0x11,0x6,0x1e,0x38,0x28,0x1a,0x2d,0x21,0x13,0xb7,0x23,0x49,0x72,0x4f,0x5d,0x93,0x67,0x37,0xc,0x17,0xfd,0xc1,0xb1,0x34,0x64,0x49,0x3f,0x51,0x31,0x10,0x16,0x16,0x40,0x68,0x52,0x3c,0x86,0x78,0x28,0x79,0x20,0x3e,0x34,0x11,0x13,0x23,0x1e,0xb,0x15,0x24,0x40,0x58,0x8d,0x70,0x65,0x9c,0x6a,0x37,0x0,0x3,0x0,0x3c,0xff,0xf5,0x5,0x30,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x19,0x0,0x19,0x40,0xd,0xe,0x15,0xb,0x72,0x6,0xa,0x72,0x9,0x7,0x2,0x3,0x6,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x2b,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x21,0x11,0x21,0x11,0x21,0x21,0x3,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x5,0x26,0xfb,0x16,0x2,0x7,0xfe,0xaf,0x2,0x2b,0x1,0x52,0x1,0x14,0x31,0x29,0x1d,0x26,0x11,0x2c,0x5d,0x35,0x6c,0x99,0x50,0x4,0x3a,0xf2,0xf2,0xfb,0xc6,0x4,0x3a,0xfd,0x30,0x2b,0x2f,0x13,0x3,0x3,0xf1,0xe,0xf,0x44,0x92,0x75,0x0,0x0,0x1,0x0,0x61,0xfe,0x60,0x4,0x4b,0x4,0x4e,0x0,0x2f,0x0,0x17,0x40,0xc,0x1e,0x29,0x6,0x11,0xb,0x72,0x6,0x7,0x72,0x0,0xe,0x72,0x0,0x2b,0x2b,0x2b,0x11,0x33,0x32,0x30,0x31,0x53,0x11,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x1e,0x2,0x33,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x11,0x61,0x43,0x83,0xc1,0x7f,0x76,0xb4,0x7b,0x3f,0x36,0x6b,0x9d,0x66,0x5d,0x83,0x59,0x37,0x10,0x5,0x30,0x2e,0x2,0x2,0x27,0x5a,0x48,0x30,0x40,0x27,0x10,0x12,0x28,0x41,0x2f,0x2a,0x3c,0x26,0x12,0xfe,0x60,0x3,0xe3,0x6e,0xbe,0x8f,0x50,0x53,0x97,0xce,0x7b,0x15,0x76,0xc5,0x91,0x4f,0x52,0x92,0xc0,0x6d,0x2,0xe,0xc,0x4c,0x6c,0x39,0x29,0x4b,0x66,0x3d,0x15,0x3f,0x6e,0x53,0x2f,0x2b,0x50,0x6e,0x42,0xfc,0x41,0x0,0x0,0x1,0x0,0x2d,0xfe,0x8a,0x3,0xf4,0x4,0x4e,0x0,0x2d,0x0,0xe,0xb5,0x1b,0x9,0x5,0x0,0x7,0x72,0x0,0x2b,0xcc,0x33,0x2f,0x30,0x31,0x41,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x16,0x16,0x17,0x1e,0x2,0x17,0x16,0x6,0x6,0x7,0x27,0x3e,0x2,0x27,0x34,0x26,0x26,0x27,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x2,0x2d,0x88,0xcd,0x72,0xfe,0xc4,0x1e,0x3d,0x30,0x35,0x45,0x26,0xf,0x2d,0x5b,0x45,0x6b,0x88,0x44,0x5,0x1,0x4b,0x74,0x40,0xb0,0x21,0x29,0x13,0x1,0x13,0x24,0x19,0x93,0xc4,0x61,0x41,0x80,0xc0,0x4,0x4e,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x5a,0x69,0x3b,0x16,0x1e,0x3d,0x60,0x55,0x3c,0x87,0x78,0x28,0x7a,0x20,0x3e,0x34,0x11,0x19,0x25,0x1a,0x7,0x2a,0x81,0xca,0x96,0x17,0x75,0xc9,0x95,0x53,0x0,0x0,0x3,0x0,0x32,0xff,0xeb,0x4,0x7e,0x4,0x3a,0x0,0x18,0x0,0x2e,0x0,0x32,0x0,0x13,0x40,0x9,0x2a,0x6,0x32,0x6,0x72,0x1f,0x14,0xb,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x1e,0x2,0x17,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x1,0x11,0x21,0x11,0x32,0x44,0x85,0xc2,0x7f,0x11,0x28,0x46,0x3e,0x49,0x90,0x60,0x41,0x7f,0xba,0x7a,0x7f,0xc4,0x85,0x44,0x1,0x51,0x12,0x2a,0x49,0x36,0x2f,0x3f,0x25,0x10,0x10,0x24,0x40,0x30,0x35,0x48,0x2b,0x12,0x2,0xfb,0xfd,0xbf,0x2,0x12,0x15,0x72,0xc2,0x90,0x4f,0xd,0x48,0x4a,0x12,0x1a,0x76,0xa0,0x5b,0x15,0x6e,0xba,0x8a,0x4c,0x53,0x94,0xca,0x8b,0x15,0x3d,0x6a,0x4f,0x2d,0x2d,0x4f,0x6a,0x3d,0x15,0x37,0x62,0x4b,0x2b,0x2b,0x4b,0x62,0x1,0xdc,0xfe,0xfc,0x1,0x4,0x0,0x2,0x0,0x18,0xff,0xec,0x4,0x10,0x4,0x3a,0x0,0x3,0x0,0x15,0x0,0x15,0x40,0xa,0x5,0xa,0x11,0x2,0x3,0x6,0x72,0x11,0xb,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x4,0x10,0xfc,0x8,0x1,0x46,0x1,0x52,0x12,0x27,0x1f,0x25,0x24,0x1c,0x17,0x31,0x52,0x37,0x72,0xa3,0x57,0x4,0x3a,0xfe,0xfe,0x1,0x2,0xfd,0x25,0x28,0x31,0x15,0x7,0x6,0xfa,0xe,0xa,0x52,0xa5,0x7c,0x0,0x0,0x1,0x0,0x63,0xff,0xeb,0x4,0x1a,0x4,0x3a,0x0,0x1e,0x0,0x13,0x40,0x9,0x10,0x7,0x19,0x0,0x6,0x72,0x19,0xb,0x72,0x0,0x2b,0x2b,0x11,0x33,0x32,0x30,0x31,0x53,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x26,0x2,0x27,0x21,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x63,0x1,0x52,0xe,0x1a,0x20,0x12,0x2d,0x46,0x2f,0x19,0x2,0x30,0x28,0x1,0x38,0x1f,0x33,0x20,0x3a,0x7c,0xc2,0x89,0x62,0xa1,0x74,0x3f,0x4,0x3a,0xfd,0x60,0x31,0x43,0x26,0x11,0x38,0x5e,0x75,0x3c,0x85,0x1,0x3,0x7c,0x3d,0x9d,0xbc,0x6e,0x7e,0xd6,0x9f,0x58,0x33,0x6a,0xa4,0x70,0x0,0x1,0x0,0x27,0xfe,0x22,0x5,0xe6,0x4,0x4f,0x0,0x2f,0x0,0x19,0x40,0xc,0x2b,0x5,0x5,0x19,0x18,0x6,0x72,0x22,0xf,0xb,0x72,0x0,0x0,0x2f,0x2b,0x32,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x14,0x6,0x6,0x4,0x23,0x22,0x24,0x26,0x26,0x35,0x34,0x36,0x36,0x37,0x17,0xe,0x2,0x7,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x15,0x11,0x2,0x5f,0x5c,0x96,0x58,0x9f,0xdb,0x86,0x3d,0x49,0xa6,0xfe,0xea,0xce,0xd5,0xfe,0xe0,0xac,0x4b,0x3b,0x60,0x36,0xf6,0x24,0x34,0x1c,0x1,0x26,0x5c,0x9f,0x79,0x97,0xa7,0x43,0x19,0x2f,0x43,0x2b,0x25,0x9,0xfe,0x22,0x4,0xf0,0x5c,0x8f,0x52,0x63,0xa1,0xbc,0x5a,0x6f,0xd1,0xa8,0x62,0x67,0xb1,0xe1,0x7b,0x6a,0xbd,0x97,0x31,0xa0,0x2d,0x70,0x79,0x39,0x54,0x87,0x61,0x34,0x55,0x94,0x5d,0x41,0x67,0x48,0x26,0x22,0xe,0xfb,0x7,0x0,0x2,0x0,0x39,0xfe,0x22,0x5,0xe7,0x4,0x3a,0x0,0x1e,0x0,0x22,0x0,0x15,0x40,0xa,0x21,0x7,0x19,0xb,0x72,0x20,0x10,0x0,0x6,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x2f,0x30,0x31,0x53,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x26,0x26,0x27,0x21,0x1e,0x2,0x15,0x14,0x6,0x6,0x4,0x23,0x22,0x24,0x26,0x26,0x35,0x1,0x21,0x11,0x21,0x39,0x1,0x53,0x3c,0x69,0x8a,0x4e,0x71,0x99,0x5b,0x28,0x1,0x3a,0x2a,0x1,0x2d,0x25,0x3e,0x26,0x49,0xa7,0xfe,0xea,0xce,0xa4,0xfe,0xf4,0xc2,0x68,0x2,0x27,0x1,0x51,0xfe,0xaf,0x4,0x3a,0xfe,0xe,0x66,0x86,0x4d,0x20,0x34,0x61,0x87,0x54,0x7a,0xef,0x72,0x38,0x90,0xae,0x65,0x7b,0xe1,0xb1,0x67,0x45,0x93,0xe7,0xa1,0x1,0xef,0xf9,0xe8,0x0,0x0,0x2,0x0,0x41,0xff,0xec,0x6,0x55,0x4,0x3a,0x0,0x1e,0x0,0x3f,0x0,0x19,0x40,0xc,0x1,0x17,0xa,0xa,0x29,0x36,0x1f,0x6,0x72,0x36,0xb,0x72,0x0,0x2b,0x2b,0x11,0x33,0x33,0x11,0x33,0x32,0x30,0x31,0x41,0x21,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x33,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x26,0x2,0x25,0x21,0x6,0x2,0x7,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x35,0x11,0x33,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x3,0x35,0x34,0x36,0x36,0x4,0x81,0x1,0x38,0x2b,0x46,0x2b,0x2d,0x68,0xb0,0x82,0x58,0x92,0x69,0x39,0xfe,0x15,0x25,0x2f,0x1b,0x26,0x31,0x1e,0xc,0x4,0x45,0xfc,0x21,0x1,0x39,0x3a,0x46,0x4,0x8,0x11,0x1e,0x2c,0x1e,0x1b,0x30,0x24,0x15,0xfe,0x39,0x69,0x91,0x59,0x68,0x99,0x6a,0x40,0x1d,0x2b,0x48,0x4,0x3a,0x3d,0x9d,0xbc,0x6e,0x7e,0xd5,0x9f,0x58,0x49,0x8d,0xcf,0x86,0x1,0x51,0xfe,0x8d,0x49,0x64,0x3d,0x1b,0x38,0x5e,0x74,0x3c,0x85,0x1,0x3,0x7c,0x7c,0xfe,0xfd,0x85,0x30,0x5f,0x53,0x40,0x24,0x1b,0x3d,0x64,0x49,0x1,0x73,0xfe,0xaf,0x86,0xcf,0x8d,0x49,0x39,0x69,0x92,0xb2,0x64,0x6e,0xbc,0x9d,0x0,0x0,0x1,0x0,0x75,0xff,0xec,0x4,0xdb,0x5,0xc4,0x0,0x38,0x0,0x1d,0x40,0xd,0x1d,0x1e,0x17,0x36,0x4,0x4,0xd,0x23,0x17,0xb,0x72,0x2d,0xd,0x0,0x2f,0x33,0x2b,0x32,0x11,0x39,0x2f,0x33,0x10,0xcc,0x32,0x30,0x31,0x41,0x13,0x6,0x6,0x23,0x22,0x24,0x26,0x35,0x35,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x11,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x21,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x34,0x2e,0x2,0x23,0x22,0x6,0x6,0x15,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x4,0xcf,0xc,0x3a,0xa0,0x4a,0xa4,0xfe,0xee,0xa5,0x69,0xb9,0x78,0x59,0x8e,0x65,0x36,0x83,0xec,0x9e,0x71,0xb8,0x85,0x48,0x1,0x3c,0x32,0x5e,0x41,0x2d,0x3f,0x22,0x6,0xc,0x13,0xd,0x14,0x21,0x12,0x40,0x81,0x5f,0x4d,0x8f,0x3,0x46,0xfe,0xec,0xf,0x22,0x82,0xea,0x9b,0x19,0x82,0xbb,0x66,0x3b,0x71,0xa3,0x68,0xfd,0xc5,0x8f,0xdc,0x7b,0x4b,0x84,0xb1,0x66,0xd5,0xd5,0x3b,0x62,0x3a,0x36,0x61,0x40,0x2,0x64,0x1c,0x28,0x1b,0xd,0x18,0x30,0x24,0x1c,0x49,0x70,0x3f,0x18,0x0,0x0,0x3,0xff,0xec,0x0,0x0,0x5,0x12,0x5,0xd0,0x0,0x3,0x0,0x16,0x0,0x29,0x0,0x1e,0x40,0xe,0x10,0x9,0x9,0x1f,0x26,0x3,0x72,0x1a,0x18,0x16,0x3,0x3,0x2,0x12,0x0,0x3f,0x33,0x11,0x33,0x33,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x17,0x13,0x3e,0x2,0x33,0x32,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0x6,0x6,0x7,0x1,0x23,0x3,0x13,0x13,0x23,0x1,0x2e,0x2,0x23,0x22,0x6,0x7,0x3,0x36,0x36,0x33,0x32,0x16,0x16,0x3,0x2c,0xfe,0xa0,0x99,0xba,0x22,0x62,0x81,0x51,0x2d,0x51,0x1f,0x26,0x3,0x31,0xb,0x1a,0x28,0x1c,0x8,0xfe,0xdb,0xd7,0x6d,0xbe,0x15,0xdc,0xfe,0xdf,0x9,0x1e,0x28,0x18,0xa,0x31,0x2,0x24,0x1d,0x4e,0x30,0x4e,0x80,0x65,0x2,0xc4,0xfd,0x3c,0x2,0xc4,0xd,0x2,0xe,0x5c,0x76,0x39,0x11,0x8,0xff,0x0,0x1,0x2,0x12,0x20,0x15,0xfd,0x3e,0x3,0x1f,0xfd,0xe1,0xff,0x0,0x2,0xc2,0x17,0x1f,0x11,0x2,0x1,0x1,0x0,0x8,0x11,0x2e,0x6f,0x0,0x3,0xff,0xf5,0xff,0xec,0x6,0xd8,0x4,0x3a,0x0,0x3,0x0,0x24,0x0,0x45,0x0,0x21,0x40,0x10,0x26,0x5,0x3,0x1c,0xf,0x2f,0x3c,0xb,0x72,0x3c,0xf,0x2,0x3,0x6,0x72,0xf,0x0,0x2f,0x2b,0x32,0x11,0x39,0x2b,0x32,0x11,0x33,0x11,0x33,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x21,0x21,0x1e,0x2,0x15,0x14,0xe,0x3,0x23,0x22,0x2e,0x2,0x35,0x35,0x33,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x3,0x35,0x26,0x2,0x25,0x21,0x6,0x2,0x7,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x35,0x35,0x33,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x3,0x35,0x34,0x36,0x36,0x6,0xd8,0xf9,0x1d,0x4,0xc2,0x1,0x37,0x2b,0x47,0x2b,0x1d,0x41,0x6a,0x9b,0x69,0x5e,0x99,0x6f,0x3c,0xfd,0x19,0x2b,0x37,0x1f,0x20,0x2e,0x1e,0x12,0x8,0x4,0x44,0xfb,0xea,0x1,0x39,0x3a,0x46,0x4,0x8,0x12,0x1e,0x2e,0x1f,0x20,0x38,0x2b,0x19,0xfd,0x3c,0x6f,0x9a,0x5e,0x69,0x9a,0x6b,0x41,0x1d,0x2b,0x48,0x4,0x3a,0xde,0xde,0x3d,0x9d,0xbc,0x6e,0x64,0xb2,0x92,0x69,0x39,0x49,0x8d,0xcf,0x86,0x95,0xb7,0x49,0x64,0x3d,0x1b,0x24,0x40,0x53,0x5f,0x30,0x85,0x1,0x3,0x7c,0x7c,0xfe,0xfd,0x85,0x30,0x5f,0x53,0x40,0x24,0x1b,0x3d,0x64,0x49,0xb7,0x95,0x86,0xcf,0x8d,0x49,0x39,0x69,0x92,0xb2,0x64,0x6e,0xbc,0x9d,0x0,0x0,0x3,0x0,0x17,0xff,0xec,0x5,0xca,0x5,0xb0,0x0,0x1b,0x0,0x1f,0x0,0x23,0x0,0x21,0x40,0x11,0x1f,0x23,0x18,0x5,0x5,0xe,0x22,0x23,0x1e,0x8,0x72,0x23,0x2,0x72,0xe,0x9,0x72,0x0,0x2b,0x2b,0x2b,0x11,0x33,0x12,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x35,0x32,0x3e,0x2,0x37,0x36,0x26,0x26,0x23,0x22,0x6,0x6,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x2,0x30,0x36,0x79,0x83,0x43,0x9f,0xf8,0x8e,0x35,0x82,0xe3,0xae,0x57,0x60,0x2a,0x9,0x1,0x1,0x36,0x64,0x45,0x49,0x6e,0x68,0x57,0xfe,0xa1,0x3,0x22,0xfb,0x8d,0x2,0x3f,0x1,0x6,0xe,0x1b,0x12,0x5f,0xc7,0x9c,0x4b,0xa3,0x8d,0x57,0xfd,0x2a,0x3f,0x40,0x15,0x3c,0x5c,0x34,0xb,0x17,0x3,0x5f,0xfa,0x50,0x5,0xb0,0xfe,0xf1,0x1,0xf,0x0,0x2,0x0,0x45,0xff,0xeb,0x5,0xa,0x5,0xc4,0x0,0x3,0x0,0x2c,0x0,0x1d,0x40,0xe,0x3,0x2,0x2,0x9,0x1d,0x19,0x14,0x3,0x72,0x29,0x4,0x9,0x9,0x72,0x0,0x2b,0xcc,0x33,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x21,0x6,0x6,0x4,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x4,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x36,0x36,0x3,0x28,0xfd,0xb3,0x2,0xce,0x1,0x5f,0x7,0x97,0xfe,0xf7,0xb3,0x92,0xe5,0x9f,0x53,0x57,0xa1,0xe1,0x8b,0xbf,0x1,0x5,0x90,0xd,0xfe,0xa3,0x3,0x34,0x6f,0x5e,0x40,0x62,0x43,0x21,0x13,0x28,0x3e,0x58,0x3a,0x50,0x6f,0x3b,0x3,0x5f,0xfe,0xf1,0x1,0xf,0xfe,0x8d,0x98,0xe8,0x81,0x62,0xb8,0x1,0x6,0xa4,0x4e,0xa5,0x1,0x6,0xba,0x62,0x88,0xed,0x97,0x52,0x71,0x3a,0x32,0x69,0xa6,0x75,0x50,0x5d,0x8f,0x68,0x43,0x20,0x36,0x6c,0x0,0x3,0x0,0x25,0x0,0x0,0x8,0x33,0x5,0xb0,0x0,0x11,0x0,0x15,0x0,0x2e,0x0,0x27,0x40,0x13,0x24,0x21,0x21,0x9,0x2e,0x16,0x16,0x0,0xa,0x9,0x8,0x72,0x14,0x15,0x15,0x23,0x0,0x2,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x12,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x3,0xe,0x4,0x23,0x23,0x11,0x37,0x3e,0x4,0x37,0x1,0x11,0x21,0x11,0x1,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x43,0x1,0x5d,0x26,0x9,0x32,0x54,0x76,0x9b,0x60,0x55,0x26,0x2e,0x46,0x33,0x22,0x15,0x4,0x3,0x1e,0xfd,0x10,0x3,0x59,0x1,0x38,0xb1,0x1,0x6,0x90,0x52,0x99,0xd7,0x85,0xfd,0xed,0x1,0x5f,0xb4,0x4b,0x68,0x35,0x35,0x68,0x4b,0xfe,0xc8,0x5,0xb0,0xfd,0x1c,0xa8,0xf3,0xa5,0x62,0x2a,0x1,0xe,0x4,0x5,0x29,0x52,0x80,0xb7,0x7b,0x2,0x6c,0xfe,0xf1,0x1,0xf,0xfe,0x29,0x80,0xde,0x8e,0x6b,0xb4,0x85,0x49,0x5,0xb0,0xfb,0x5e,0x3f,0x66,0x3c,0x3a,0x64,0x3e,0x0,0x3,0x0,0x6d,0x0,0x0,0x8,0x2e,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x20,0x0,0x23,0x40,0x11,0x8,0x20,0x20,0x3,0x2,0x2,0x6,0x15,0x7,0x2,0x72,0x16,0x13,0x13,0x6,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x4,0x48,0xfd,0xf,0x74,0xfe,0xa2,0x4,0x44,0x1,0x37,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xed,0x1,0x5e,0xb5,0x4b,0x68,0x35,0x35,0x68,0x4b,0xfe,0xc9,0x3,0x4f,0xfe,0xf2,0x1,0xe,0x2,0x61,0xfa,0x50,0x5,0xb0,0xfe,0x2e,0x81,0xdf,0x8f,0x6c,0xb5,0x85,0x49,0x5,0xb0,0xfb,0x5c,0x40,0x69,0x3c,0x3a,0x66,0x3f,0x0,0x3,0x0,0x11,0x0,0x0,0x5,0xa5,0x5,0xb0,0x0,0x15,0x0,0x19,0x0,0x1d,0x0,0x1d,0x40,0xe,0x19,0x1,0x18,0x6,0x11,0x11,0x18,0x1c,0x1d,0x2,0x72,0x18,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x32,0x30,0x31,0x65,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x7,0x11,0x3e,0x3,0x33,0x32,0x4,0x16,0x15,0x1,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0xa5,0xfe,0xa3,0x39,0x72,0x56,0x16,0x53,0x5f,0x52,0x14,0x16,0x55,0x61,0x51,0x11,0xb7,0x1,0x10,0x97,0xfd,0x5,0xfe,0xa1,0x3,0x14,0xfb,0xb2,0x1,0x1,0xbb,0x58,0x61,0x28,0x5,0xa,0xd,0x9,0x1,0xe,0x8,0xe,0xa,0x5,0x6a,0xdb,0xaa,0x3,0xf4,0xfa,0x50,0x5,0xb0,0xfe,0xf1,0x1,0xf,0x0,0x2,0x0,0x56,0xfe,0x98,0x5,0x1f,0x5,0xb0,0x0,0x7,0x0,0xb,0x0,0x17,0x40,0xb,0x9,0x6,0x1,0x2,0x72,0xb,0x3,0x3,0x0,0x8,0x72,0x0,0x2b,0x32,0x12,0x39,0x2b,0x32,0x2f,0x30,0x31,0x73,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x56,0x1,0x5e,0x2,0xb,0x1,0x60,0xfe,0x5c,0xfe,0xa0,0x5,0xb0,0xfb,0x5e,0x4,0xa2,0xfa,0x50,0x1,0xf,0xfd,0x89,0x2,0x77,0x0,0x2,0x0,0x6f,0x0,0x0,0x4,0xca,0x5,0xb0,0x0,0x5,0x0,0x1e,0x0,0x21,0x40,0x10,0x6,0x1e,0x1e,0x4,0x2,0x13,0x13,0x5,0x2,0x72,0x14,0x11,0x11,0x4,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x13,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x4,0x46,0xfd,0x87,0xfe,0xa2,0xdc,0x1,0x39,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xec,0x1,0x60,0xb4,0x4b,0x67,0x36,0x36,0x67,0x4b,0xfe,0xc7,0x5,0xb0,0xfe,0xf1,0xfb,0x5f,0x5,0xb0,0xfe,0xb,0x76,0xd4,0x8e,0x6b,0xb1,0x81,0x46,0x5,0xb0,0xfb,0x5e,0x3a,0x61,0x3c,0x3a,0x5a,0x34,0x0,0x6,0x0,0xf,0xfe,0x9a,0x5,0xe6,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x13,0x0,0x25,0x0,0x27,0x40,0x13,0xb,0x11,0x11,0x20,0x3,0x3,0x7,0x1e,0x8,0x72,0xe,0xf,0xf,0x10,0x14,0x2,0x72,0x9,0x5,0x0,0x2f,0x33,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x33,0x11,0x21,0x3,0x21,0x3,0x21,0x11,0x3,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x21,0x3,0xe,0x5,0x7,0x23,0x11,0x33,0x3e,0x3,0x37,0x4,0xf7,0xfc,0x1,0x74,0xfe,0xbb,0x18,0x5,0xd7,0x25,0xfe,0xc5,0x28,0xfd,0x25,0x3,0xc7,0xfe,0xa3,0xfd,0x7f,0x1,0x5e,0x2b,0xb,0x30,0x42,0x4e,0x55,0x54,0x27,0xd5,0x46,0x1f,0x3f,0x38,0x2a,0xb,0x1,0xe,0xfe,0xf2,0x1,0xe,0xfd,0x8d,0x2,0x73,0xfd,0x8c,0x2,0x74,0x4,0xa2,0xfe,0xf1,0x1,0xf,0xfa,0x50,0x5,0xb0,0xfd,0xab,0x99,0xe2,0xa4,0x76,0x58,0x48,0x26,0x1,0xe,0x16,0x4b,0x82,0xd0,0x9a,0x0,0x5,0x0,0xb,0x0,0x0,0x8,0x5d,0x5,0xb0,0x0,0x5,0x0,0x9,0x0,0xd,0x0,0x13,0x0,0x17,0x0,0x27,0x40,0x13,0x16,0x11,0x9,0x3,0x3,0x0,0x0,0xf,0xf,0x14,0xc,0x8,0x8,0x72,0xe,0xa,0x1,0x2,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x32,0x32,0x2f,0x33,0x11,0x33,0x11,0x33,0x33,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x3,0x27,0x1,0x21,0x1,0x1,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x1,0x13,0x1,0x25,0x1,0x2,0x55,0xfd,0xc3,0x1,0xbb,0x1,0x2a,0xf2,0x2a,0xd0,0xfe,0xcb,0xfe,0x4b,0x1,0xbf,0x3,0x20,0xfe,0xa2,0x4,0xc3,0xfd,0xd1,0xfe,0x8d,0x2b,0xf5,0x1,0x1e,0x12,0xfe,0xd8,0x1,0x2c,0x1,0xb2,0x2,0x39,0x3,0x77,0xfd,0xc5,0xfe,0xc4,0x3d,0xfd,0x8a,0x3,0x27,0x2,0x89,0xfa,0x50,0x5,0xb0,0xfc,0x89,0x1,0x3c,0x2,0x3b,0xfa,0x50,0x2,0x76,0xb1,0xfc,0xd9,0x0,0x0,0x2,0x0,0x3e,0xff,0xed,0x4,0xaa,0x5,0xc3,0x0,0x1e,0x0,0x3e,0x0,0x23,0x40,0x11,0x0,0x20,0x2,0x2,0x3e,0x3e,0x15,0x34,0x30,0x2a,0x9,0x72,0xf,0xb,0x15,0x3,0x72,0x0,0x2b,0x32,0xcc,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x25,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x23,0x2,0xbe,0xfb,0xba,0x41,0x50,0x26,0x2b,0x58,0x44,0x34,0x56,0x32,0xfe,0xa2,0x56,0x95,0xc3,0x6c,0x7d,0xca,0x91,0x4e,0x43,0x7c,0xad,0xfe,0x9c,0xfb,0x75,0xb6,0x7f,0x42,0x55,0x9a,0xd1,0x7d,0x65,0xc7,0xa2,0x61,0x1,0x60,0x35,0x5e,0x3c,0x46,0x63,0x34,0x1a,0x34,0x4d,0x32,0xba,0x2,0xb9,0xb0,0x2b,0x51,0x37,0x29,0x46,0x2a,0x22,0x41,0x30,0x62,0x9a,0x6c,0x39,0x35,0x68,0x9b,0x66,0x4b,0x84,0x64,0x39,0x59,0x32,0x60,0x8d,0x5b,0x66,0x9f,0x6e,0x38,0x31,0x66,0xa0,0x70,0x2c,0x46,0x28,0x2c,0x4c,0x2e,0x36,0x4b,0x2f,0x15,0x0,0x1,0x0,0x5b,0x0,0x0,0x5,0x24,0x5,0xb0,0x0,0x9,0x0,0x17,0x40,0xb,0x5,0x0,0x6,0x2,0x8,0x2,0x72,0x4,0x6,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x39,0x30,0x31,0x41,0x1,0x21,0x11,0x21,0x11,0x1,0x21,0x11,0x21,0x1,0xba,0x2,0xb,0x1,0x5f,0xfe,0xa1,0xfd,0xf5,0xfe,0xa1,0x1,0x5f,0x2,0x19,0x3,0x97,0xfa,0x50,0x3,0x96,0xfc,0x6a,0x5,0xb0,0x0,0x0,0x3,0x0,0x25,0x0,0x0,0x5,0x38,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x19,0x0,0x19,0x40,0xc,0x12,0x5,0x11,0x8,0x72,0x2,0x3,0x3,0x4,0x8,0x2,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x21,0x3,0xe,0x4,0x23,0x23,0x11,0x37,0x3e,0x4,0x37,0x4,0x4b,0xfd,0x10,0x3,0xdd,0xfe,0xa1,0xfd,0x6a,0x1,0x5d,0x26,0x9,0x32,0x54,0x76,0x9b,0x60,0x55,0x26,0x2e,0x46,0x33,0x22,0x15,0x4,0x5,0xb0,0xfe,0xf1,0x1,0xf,0xfa,0x50,0x5,0xb0,0xfd,0x1c,0xa8,0xf3,0xa5,0x62,0x2a,0x1,0xe,0x4,0x5,0x29,0x52,0x80,0xb7,0x7b,0x0,0x2,0x0,0x4,0xff,0xeb,0x5,0x7,0x5,0xb0,0x0,0x13,0x0,0x18,0x0,0x1a,0x40,0xe,0x17,0x16,0x0,0x15,0x4,0x8,0x2,0x18,0x2,0x72,0xf,0x8,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x1,0x21,0x1,0xe,0x3,0x23,0x22,0x26,0x27,0x3,0x16,0x16,0x33,0x32,0x36,0x36,0x37,0x3,0x1,0x13,0x23,0x1,0x2,0x3c,0x1,0x58,0x1,0x73,0xfe,0x15,0x1c,0x49,0x63,0x86,0x5a,0x16,0x3f,0x17,0x6,0xd,0x2e,0xa,0x3c,0x46,0x29,0xf,0x88,0x1,0x2a,0x72,0xfc,0xfd,0xeb,0x2,0x25,0x3,0x8b,0xfb,0x7d,0x40,0x74,0x5a,0x34,0x1,0x1,0x1,0x10,0x3,0x1,0x1d,0x3b,0x2e,0x4,0x31,0xfd,0x88,0xfe,0x6c,0x4,0xc,0x0,0x0,0x3,0x0,0x43,0xff,0xc4,0x6,0x74,0x5,0xec,0x0,0x15,0x0,0x29,0x0,0x2d,0x0,0x1b,0x40,0xc,0x1f,0xc,0xc,0x2b,0x16,0x0,0x0,0x2b,0x2a,0x3,0x72,0x2b,0x0,0x2f,0x2b,0x11,0x39,0x2f,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x21,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x13,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x33,0x21,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x3,0x11,0x21,0x11,0x2,0xa8,0x1,0x6c,0x84,0xde,0xa4,0x5a,0x5a,0xa4,0xde,0x84,0xfe,0x94,0x85,0xe0,0xa5,0x5b,0x5b,0xa5,0xe0,0x85,0x50,0x80,0x4a,0x2c,0x4e,0x66,0x3a,0x1,0x6e,0x4e,0x7c,0x49,0x2a,0x4b,0x64,0x3a,0x10,0xfe,0xaf,0x5,0x34,0x56,0xa0,0xe2,0x8d,0x88,0xdc,0x9c,0x53,0x53,0x9b,0xdb,0x88,0x8d,0xe2,0xa2,0x56,0xfe,0xe6,0x48,0x93,0x72,0x4f,0x76,0x4c,0x26,0x45,0x8c,0x68,0x55,0x7c,0x52,0x28,0x1,0xd2,0xf9,0xd8,0x6,0x28,0x0,0x2,0x0,0x56,0xfe,0xa1,0x5,0xfd,0x5,0xb0,0x0,0x5,0x0,0xd,0x0,0x19,0x40,0xc,0xc,0x7,0x2,0x72,0x5,0x4,0x4,0x9,0x6,0x8,0x72,0x1,0x0,0x2f,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x30,0x31,0x41,0x3,0x21,0x11,0x23,0x11,0x1,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0xfd,0x14,0xfe,0xb5,0x6c,0xfc,0x24,0x1,0x5e,0x2,0xb,0x1,0x60,0x1,0xb,0xfd,0x96,0x1,0x5f,0x1,0xb,0xfe,0xf5,0x5,0xb0,0xfb,0x5e,0x4,0xa2,0xfa,0x50,0x0,0x0,0x2,0x0,0x86,0x0,0x0,0x5,0x2c,0x5,0xb0,0x0,0x15,0x0,0x19,0x0,0x17,0x40,0xb,0x17,0x6,0x11,0x11,0x18,0x0,0x2,0x72,0x18,0x8,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x32,0x30,0x31,0x53,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x37,0x11,0xe,0x3,0x23,0x22,0x24,0x26,0x35,0x1,0x21,0x11,0x21,0x86,0x1,0x5f,0x39,0x72,0x55,0x16,0x53,0x5e,0x52,0x14,0x15,0x56,0x60,0x51,0x11,0xb7,0xfe,0xef,0x97,0x3,0x47,0x1,0x5f,0xfe,0xa1,0x5,0xb0,0xfe,0x45,0x58,0x62,0x28,0x5,0xa,0xd,0x9,0xfe,0xf2,0x8,0xe,0xa,0x5,0x6a,0xdc,0xaa,0x1,0xbb,0xfa,0x50,0x0,0x1,0x0,0x67,0x0,0x0,0x7,0x53,0x5,0xb0,0x0,0xb,0x0,0x19,0x40,0xc,0x5,0x9,0x6,0x2,0x2,0xb,0x0,0x2,0x72,0xb,0x8,0x72,0x0,0x2b,0x2b,0x11,0x33,0x11,0x33,0x32,0x32,0x30,0x31,0x53,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x67,0x1,0x60,0x1,0x6a,0x1,0x5f,0x1,0x65,0x1,0x5e,0xf9,0x14,0x5,0xb0,0xfb,0x5e,0x4,0xa2,0xfb,0x5e,0x4,0xa2,0xfa,0x50,0x0,0x2,0x0,0x67,0xfe,0xa2,0x8,0x2a,0x5,0xb0,0x0,0x5,0x0,0x11,0x0,0x1d,0x40,0xe,0xc,0x5,0x8,0x8,0x4,0x11,0x8,0x72,0xf,0xb,0x6,0x2,0x72,0x1,0x0,0x2f,0x2b,0x32,0x32,0x2b,0x32,0x32,0x11,0x33,0x33,0x30,0x31,0x41,0x3,0x21,0x11,0x23,0x11,0x1,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x8,0x2a,0x14,0xfe,0xc3,0x70,0xf9,0xfe,0x1,0x60,0x1,0x6a,0x1,0x5f,0x1,0x65,0x1,0x5e,0xf9,0x14,0x1,0x3,0xfd,0x9f,0x1,0x5f,0x1,0x2,0x4,0xad,0xfb,0x5e,0x4,0xa2,0xfb,0x5e,0x4,0xa2,0xfa,0x50,0x0,0x0,0x2,0x0,0x1c,0x0,0x0,0x6,0x7,0x5,0xb0,0x0,0x3,0x0,0x1c,0x0,0x1d,0x40,0xe,0x11,0x12,0xf,0x4,0x1c,0x1c,0xf,0x0,0x1,0x2,0x72,0xf,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x32,0x30,0x31,0x53,0x11,0x21,0x11,0x17,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1c,0x2,0x29,0x43,0x1,0x39,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xec,0x1,0x60,0xb4,0x4b,0x67,0x35,0x35,0x67,0x4b,0xfe,0xc7,0x4,0xac,0x1,0x4,0xfe,0xfc,0xf1,0x76,0xd4,0x8e,0x6b,0xb1,0x81,0x46,0x5,0xb0,0xfb,0x5e,0x3a,0x61,0x3c,0x3a,0x5a,0x34,0x0,0x2,0x0,0x6e,0x0,0x0,0x6,0x90,0x5,0xb0,0x0,0x18,0x0,0x1c,0x0,0x1d,0x40,0xe,0x1a,0x19,0xe,0xb,0x0,0x18,0x18,0xb,0xc,0x2,0x72,0xb,0x8,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x33,0x32,0x33,0x30,0x31,0x41,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x11,0x21,0x11,0x1,0x49,0x1,0x39,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xec,0x1,0x60,0xb4,0x4b,0x67,0x36,0x36,0x67,0x4b,0xfe,0xc7,0x5,0x47,0xfe,0xa2,0x3,0xbb,0x76,0xd4,0x8e,0x6b,0xb1,0x81,0x46,0x5,0xb0,0xfb,0x5e,0x3a,0x61,0x3c,0x3a,0x5a,0x34,0x3,0x3,0xfa,0x50,0x5,0xb0,0x0,0x0,0x1,0x0,0x70,0x0,0x0,0x4,0xca,0x5,0xb0,0x0,0x18,0x0,0x19,0x40,0xc,0xe,0xb,0x0,0x18,0x18,0xb,0xc,0x2,0x72,0xb,0x8,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x4b,0x1,0x39,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xec,0x1,0x60,0xb4,0x4b,0x67,0x36,0x36,0x67,0x4b,0xfe,0xc7,0x3,0xbb,0x76,0xd4,0x8e,0x6b,0xb1,0x81,0x46,0x5,0xb0,0xfb,0x5e,0x3a,0x61,0x3c,0x3a,0x5a,0x34,0x0,0x0,0x2,0x0,0xf,0xff,0xeb,0x4,0xd4,0x5,0xc4,0x0,0x3,0x0,0x2c,0x0,0x1d,0x40,0xe,0x3,0x2,0x2,0x1e,0x9,0x5,0x29,0x9,0x72,0x19,0x15,0x1e,0x3,0x72,0x0,0x2b,0x32,0xcc,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x21,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x3,0x23,0x22,0x6,0x6,0x7,0x21,0x36,0x36,0x24,0x33,0x32,0x16,0x16,0x12,0x15,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x24,0x26,0x4,0x56,0xfd,0x8b,0xfe,0x30,0x1,0x5e,0x3,0x3b,0x6f,0x50,0x48,0x65,0x40,0x1e,0x15,0x2b,0x3f,0x54,0x34,0x5d,0x70,0x33,0x3,0xfe,0xa2,0xe,0x90,0x1,0x5,0xbe,0x8b,0xe2,0xa1,0x56,0x53,0x9f,0xe4,0x92,0xb3,0xfe,0xf7,0x97,0x3,0x60,0xfe,0xf1,0x1,0xf,0xfe,0x8c,0x52,0x6c,0x36,0x33,0x6a,0xa6,0x74,0x50,0x5d,0x90,0x67,0x42,0x20,0x3a,0x71,0x52,0x97,0xed,0x88,0x62,0xba,0xfe,0xfa,0xa5,0x4e,0xa4,0xfe,0xfa,0xb8,0x62,0x81,0xe8,0x0,0x4,0x0,0x7b,0xff,0xec,0x7,0x61,0x5,0xc4,0x0,0x3,0x0,0x7,0x0,0x1d,0x0,0x33,0x0,0x23,0x40,0x13,0x2f,0x7,0x6,0x6,0xe,0x24,0x19,0x3,0x2,0x72,0x2,0x8,0x72,0x19,0x3,0x72,0xe,0x9,0x72,0x0,0x2b,0x2b,0x2b,0x2b,0x11,0x33,0x12,0x39,0x2f,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x5,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x16,0x16,0x12,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x1,0xd9,0xfe,0xa2,0x2,0x5a,0xfe,0x5b,0x6,0x31,0x5d,0xaa,0xe8,0x8c,0x8d,0xe9,0xab,0x5d,0x5d,0xa9,0xe9,0x8d,0x8c,0xe9,0xaa,0x5e,0xfe,0x9c,0x25,0x48,0x69,0x43,0x46,0x68,0x46,0x23,0x23,0x47,0x69,0x46,0x43,0x68,0x47,0x25,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfd,0x86,0xfe,0xfb,0x1,0x5,0x41,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x63,0xbb,0x1,0x9,0xa7,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x63,0xbb,0xfe,0xf6,0xe2,0x3d,0x6c,0xa5,0x70,0x39,0x39,0x70,0xa5,0x6c,0x3d,0x6b,0xa5,0x72,0x3a,0x3a,0x72,0xa5,0x0,0x0,0x2,0xff,0xa4,0x0,0x0,0x4,0x41,0x5,0xb0,0x0,0x16,0x0,0x1a,0x0,0x1f,0x40,0xf,0x17,0x16,0x16,0x0,0x0,0x9,0xc,0xc,0x19,0x8,0x72,0xe,0x9,0x2,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x12,0x39,0x2f,0x33,0x12,0x39,0x30,0x31,0x41,0x21,0x27,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x21,0x11,0x21,0x11,0x23,0x22,0x6,0x15,0x14,0x16,0x16,0x33,0x21,0x5,0x1,0x21,0x1,0x3,0x65,0xfe,0x7b,0x68,0xb2,0xba,0x86,0xf6,0xa9,0x2,0x10,0xfe,0xa0,0xb0,0x69,0x5e,0x2d,0x58,0x42,0x1,0x32,0xfe,0xf4,0xfe,0xcb,0xfe,0x82,0x1,0x31,0x1,0xff,0x2b,0x38,0xdd,0xac,0x96,0xc9,0x66,0xfa,0x50,0x4,0xa1,0x6d,0x68,0x50,0x5c,0x27,0x77,0xfd,0x7e,0x2,0x82,0x0,0x0,0x3,0x0,0x4d,0xff,0xeb,0x4,0x64,0x6,0x18,0x0,0x16,0x0,0x2f,0x0,0x44,0x0,0x19,0x40,0xc,0x3a,0x22,0x30,0x17,0x17,0x22,0x0,0x1,0x72,0x22,0xb,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x14,0xe,0x2,0x7,0xe,0x3,0x17,0x15,0x5,0x35,0x36,0x12,0x36,0x36,0x37,0x3e,0x2,0x3,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x26,0x36,0x36,0x37,0x3e,0x2,0x13,0x22,0x6,0x6,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x2,0xeb,0x1,0xf,0x1e,0x52,0x9d,0x80,0x52,0x70,0x43,0x1b,0x3,0xfe,0xfe,0x1,0x44,0x7f,0xb4,0x70,0x47,0x4f,0x1f,0x53,0x70,0xac,0x74,0x3c,0x44,0x84,0xc3,0x7f,0x7f,0xc4,0x85,0x44,0x1,0x25,0x33,0x14,0x47,0x94,0xa4,0x20,0x47,0x51,0x21,0x12,0x2a,0x49,0x36,0x35,0x48,0x2a,0x12,0x12,0x2a,0x49,0x6,0x18,0x48,0x73,0x5b,0x43,0x17,0x10,0x4e,0x85,0xc4,0x86,0x1b,0x2e,0x1b,0xc9,0x1,0x29,0xcc,0x7a,0x19,0x10,0x1e,0x2a,0xfe,0x8,0x4c,0x8a,0xbb,0x6e,0x15,0x6e,0xbb,0x8a,0x4c,0x55,0x9a,0xd0,0x7c,0x15,0xe,0x19,0x27,0x22,0x79,0x95,0x45,0xfe,0xfc,0x45,0x72,0x44,0x15,0x35,0x5b,0x45,0x26,0x26,0x45,0x5b,0x35,0x15,0x33,0x5b,0x45,0x28,0x0,0x0,0x2,0x0,0x76,0x0,0x0,0x4,0x53,0x4,0x3a,0x0,0x1b,0x0,0x33,0x0,0x2d,0x40,0x16,0x2,0x1,0x1b,0x2b,0x29,0x29,0x28,0x1,0x28,0x1,0x28,0xf,0xd,0x10,0x6,0x72,0x1e,0x1d,0x1d,0xf,0xa,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x11,0x39,0x39,0x2f,0x2f,0x11,0x33,0x12,0x39,0x39,0x11,0x33,0x30,0x31,0x41,0x21,0x27,0x21,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x7,0x3,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x37,0x21,0x17,0x1e,0x2,0x15,0x14,0xe,0x2,0x2,0x8c,0xfe,0xb4,0x2,0x1,0x14,0x29,0x31,0x15,0xf,0x1f,0x2e,0x1f,0x7f,0xfe,0xaf,0x1,0xd0,0x6b,0xaa,0x77,0x40,0x30,0x5d,0x88,0x58,0x19,0xfe,0x6b,0x67,0x1,0x2e,0x2a,0x34,0x18,0x14,0x33,0x2f,0xfe,0xf8,0x2,0x1,0x1d,0x48,0x7e,0x9f,0x4b,0x3b,0x74,0xa9,0x1,0xb9,0xd0,0x12,0x25,0x1a,0x1a,0x24,0x16,0xa,0xfc,0xc8,0x4,0x3a,0x25,0x4b,0x72,0x4d,0x32,0x58,0x44,0x2b,0x5,0xfd,0xf3,0x1,0x2,0x14,0x28,0x1d,0x1c,0x2a,0x18,0xd0,0x55,0x7,0x48,0x6e,0x42,0x4d,0x74,0x4d,0x27,0x0,0x1,0x0,0x59,0x0,0x0,0x3,0x54,0x4,0x3a,0x0,0x5,0x0,0xe,0xb6,0x2,0x5,0x6,0x72,0x4,0xa,0x72,0x0,0x2b,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x3,0x54,0xfe,0x56,0xfe,0xaf,0x4,0x3a,0xfe,0xfc,0xfc,0xca,0x4,0x3a,0x0,0x3,0x0,0x1b,0xfe,0xb8,0x5,0x11,0x4,0x3a,0x0,0xf,0x0,0x15,0x0,0x1d,0x0,0x21,0x40,0x10,0x1d,0x18,0x9,0x16,0x16,0x1b,0x13,0x8,0xa,0x72,0x15,0x10,0x10,0x0,0x6,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x32,0x32,0x11,0x33,0x2f,0x33,0x30,0x31,0x41,0x21,0x3,0x6,0x2,0x6,0x6,0x7,0x23,0x3,0x37,0x3e,0x3,0x37,0x13,0x21,0x11,0x21,0x11,0x21,0x1,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x1,0x25,0x1,0x51,0x5,0x3,0x4f,0x86,0xad,0x60,0x24,0x7,0x1a,0x3c,0x43,0x1d,0x8,0x1,0x63,0x2,0xec,0xfe,0xb0,0xfe,0x64,0xfe,0x98,0x4,0xf6,0xfe,0xaf,0xfd,0xb5,0xfe,0xa6,0x4,0x3a,0xfe,0xab,0xb8,0xfe,0xf9,0xaf,0x63,0x14,0x1,0x0,0x4,0x3c,0x6d,0x6e,0x7d,0x4d,0x1,0x55,0xfb,0xc6,0x3,0x36,0xfd,0xce,0xfd,0xb4,0x1,0x48,0xfe,0xb8,0x0,0x5,0x0,0x25,0x0,0x0,0x7,0x20,0x4,0x3a,0x0,0x5,0x0,0x9,0x0,0xd,0x0,0x13,0x0,0x17,0x0,0x30,0x40,0x17,0x15,0x10,0x10,0x0,0x16,0x11,0x11,0x9,0x3,0x3,0x6,0x0,0x0,0x14,0x7,0xc,0x12,0x13,0xd,0xd,0x2,0x6,0x72,0x0,0x2b,0x32,0x11,0x33,0x3f,0x33,0x33,0x39,0x2f,0x33,0x33,0x11,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x1,0x21,0x13,0x33,0x3,0x27,0x3,0x21,0x1,0x1,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x1,0xfa,0xfe,0x2b,0x1,0xa5,0xce,0xca,0x26,0xa2,0xd7,0xfe,0x6f,0x1,0x45,0x2,0xd2,0xfe,0xb0,0x4,0x27,0xfe,0x2b,0xfe,0xbe,0x25,0xca,0xcd,0x6,0xd6,0x1,0x2f,0x1,0x43,0x1,0x7a,0x2,0xc0,0xfe,0x7b,0xfe,0xc5,0x3f,0xfe,0x47,0x2,0x46,0x1,0xf4,0xfb,0xc6,0x4,0x3a,0xfd,0x40,0x1,0x3b,0x1,0x85,0xfb,0xc6,0x1,0xb9,0x8d,0xfd,0xba,0x0,0x2,0x0,0x3c,0xff,0xec,0x3,0xf4,0x4,0x4d,0x0,0x1d,0x0,0x3b,0x0,0x23,0x40,0x11,0x0,0x1f,0x2,0x2,0x3b,0x3b,0x14,0x32,0x2e,0x29,0xb,0x72,0xf,0xb,0x14,0x7,0x72,0x0,0x2b,0x32,0xcc,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x25,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x2,0x6a,0xde,0x8b,0x2b,0x35,0x19,0x11,0x30,0x2f,0x27,0x3a,0x20,0xfe,0xae,0x78,0xca,0x7a,0x6b,0xae,0x7c,0x43,0x34,0x62,0x8b,0xfe,0xcc,0xde,0x60,0x93,0x64,0x33,0x48,0x84,0xb4,0x6b,0x71,0xd4,0x88,0x1,0x52,0x1e,0x41,0x34,0x33,0x39,0x17,0x20,0x3f,0x2e,0x8b,0x2,0x4,0x88,0x1a,0x2f,0x1e,0x1a,0x30,0x20,0x14,0x29,0x20,0x69,0x95,0x4f,0x29,0x50,0x75,0x4d,0x37,0x62,0x4b,0x2a,0x48,0x25,0x48,0x69,0x44,0x4d,0x79,0x54,0x2c,0x48,0x96,0x76,0x1b,0x2e,0x1b,0x22,0x36,0x1c,0x2b,0x34,0x19,0x0,0x1,0x0,0x59,0x0,0x0,0x4,0x26,0x4,0x3a,0x0,0x9,0x0,0x17,0x40,0xb,0x5,0x0,0x6,0x2,0x8,0x6,0x72,0x4,0x6,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x39,0x30,0x31,0x41,0x1,0x21,0x11,0x21,0x11,0x1,0x21,0x11,0x21,0x1,0xab,0x1,0x2a,0x1,0x51,0xfe,0xaf,0xfe,0xd6,0xfe,0xae,0x1,0x52,0x1,0xc6,0x2,0x74,0xfb,0xc6,0x2,0x76,0xfd,0x8a,0x4,0x3a,0x0,0x0,0x3,0x0,0x76,0x0,0x0,0x4,0xa4,0x4,0x3a,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1f,0x40,0xf,0xc,0x7,0x7,0xb,0x6,0x6,0x2,0x9,0x3,0x6,0x72,0xa,0x2,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x1,0xc7,0xfe,0xaf,0x4,0xe,0xfe,0x44,0xfe,0xd2,0x26,0xb5,0xab,0x7,0xcb,0x1,0x39,0x1,0x5b,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfd,0x40,0x1,0x3b,0x1,0x85,0xfb,0xc6,0x1,0xb9,0x8d,0xfd,0xba,0x0,0x0,0x3,0x0,0xa,0x0,0x0,0x4,0x26,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x19,0x0,0x19,0x40,0xc,0x12,0x5,0x11,0xa,0x72,0x2,0x3,0x3,0x4,0x8,0x6,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x21,0x3,0xe,0x4,0x23,0x23,0x3,0x37,0x3e,0x4,0x37,0x3,0x3d,0xfd,0xe8,0x3,0x1,0xfe,0xaf,0xfd,0xfb,0x1,0x49,0x1e,0x6,0x29,0x43,0x5c,0x74,0x44,0x66,0x5,0x24,0x1b,0x2a,0x20,0x17,0xf,0x3,0x4,0x3a,0xfe,0xfc,0x1,0x4,0xfb,0xc6,0x4,0x3a,0xfd,0xd3,0x74,0xae,0x7b,0x4d,0x23,0x1,0x2,0x4,0x3,0x1e,0x36,0x54,0x72,0x4a,0x0,0x0,0x3,0x0,0x76,0x0,0x0,0x5,0xa1,0x4,0x3a,0x0,0x6,0x0,0xa,0x0,0xe,0x0,0x1b,0x40,0xd,0x0,0x9,0xc,0x6,0x1,0xa,0x6,0x72,0xb,0x3,0x9,0xa,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x32,0x32,0x12,0x39,0x30,0x31,0x41,0x13,0x21,0x1,0x23,0x1,0x21,0x23,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0x5,0xf5,0x1,0x5,0xfe,0x77,0xe1,0xfe,0x78,0x1,0x6,0x4c,0xfe,0xaf,0x3,0xda,0x1,0x51,0x1,0x74,0x2,0xc6,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x0,0x0,0x3,0x0,0x59,0x0,0x0,0x4,0x23,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xd,0x9,0x6,0x8,0x3,0x2,0x2,0x6,0x7,0x6,0x72,0x6,0xa,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x4b,0xfd,0xe4,0x7b,0xfe,0xaf,0x3,0xca,0xfe,0xae,0x2,0x94,0xfe,0xfd,0x1,0x3,0x1,0xa6,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0x0,0x3,0x0,0x59,0x0,0x0,0x4,0x26,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x19,0x40,0xc,0x9,0x6,0x8,0x2,0x3,0x3,0x7,0x6,0x72,0x6,0xa,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x3d,0xfe,0x0,0x6d,0xfe,0xaf,0x3,0xcd,0xfe,0xae,0x4,0x3a,0xfe,0xfc,0x1,0x4,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0x0,0x2,0x0,0x1b,0x0,0x0,0x4,0x13,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x10,0xb7,0x3,0x6,0x7,0x6,0x72,0x2,0xa,0x72,0x0,0x2b,0x2b,0x32,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x2,0xbd,0xfe,0xae,0x2,0xa8,0xfc,0x8,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfe,0xfe,0x1,0x2,0x0,0x5,0x0,0x35,0xfe,0x60,0x5,0xaa,0x6,0x0,0x0,0x16,0x0,0x2b,0x0,0x42,0x0,0x56,0x0,0x5a,0x0,0x27,0x40,0x15,0x27,0x6,0x6,0x49,0x1e,0x11,0x11,0x52,0x33,0x3e,0xb,0x72,0x33,0x7,0x72,0x58,0x0,0x72,0x57,0xe,0x72,0x0,0x2b,0x2b,0x2b,0x2b,0x11,0x33,0x33,0x11,0x33,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0x6,0x6,0x17,0x15,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x25,0x35,0x34,0x3e,0x3,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x13,0x11,0x21,0x11,0x5,0xaa,0x34,0x67,0x95,0x62,0x5f,0x88,0x5c,0x39,0x10,0x10,0x38,0x5c,0x88,0x5e,0x4f,0x80,0x61,0x42,0x22,0xfe,0xae,0xa,0x16,0x23,0x32,0x21,0x4b,0x5e,0x2a,0x1,0x1,0x2a,0x5f,0x4c,0x2a,0x39,0x22,0xf,0xfb,0xdd,0x22,0x42,0x61,0x80,0x4e,0x5f,0x88,0x5c,0x39,0x10,0x10,0x39,0x5d,0x88,0x60,0x61,0x96,0x66,0x34,0x1,0x51,0xf,0x23,0x3a,0x2a,0x4d,0x5e,0x2b,0x2,0x2,0x2b,0x5d,0x4c,0x2a,0x3a,0x24,0x10,0xc1,0x1,0x52,0x2,0x1b,0x15,0x76,0xc5,0x90,0x4f,0x52,0x91,0xc0,0x6d,0x1b,0x75,0xce,0x9c,0x58,0x36,0x63,0x8b,0xac,0x78,0x15,0x32,0x5b,0x4c,0x38,0x1e,0x43,0x7d,0x58,0x52,0x4c,0x6b,0x39,0x29,0x4b,0x65,0x3d,0x15,0x63,0xac,0x8b,0x63,0x36,0x58,0x9c,0xce,0x75,0x19,0x6e,0xc0,0x92,0x52,0x4f,0x90,0xc5,0x8b,0x15,0x3d,0x65,0x4a,0x29,0x39,0x6c,0x4d,0x4f,0x58,0x7d,0x43,0x2f,0x53,0x6e,0xfc,0x6,0x7,0xa0,0xf8,0x60,0x0,0x0,0x2,0x0,0x59,0xfe,0xbf,0x4,0xd8,0x4,0x3a,0x0,0x7,0x0,0xd,0x0,0x1b,0x40,0xd,0x6,0x1,0x3,0xd,0xc,0xc,0x0,0xa,0x72,0x1,0x6,0x72,0x9,0x0,0x2f,0x2b,0x2b,0x32,0x11,0x33,0x32,0x11,0x33,0x30,0x31,0x73,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x13,0x3,0x21,0x11,0x23,0x11,0x59,0x1,0x51,0x1,0x2a,0x1,0x52,0xb2,0x14,0xfe,0xc3,0x70,0x4,0x3a,0xfc,0xca,0x3,0x36,0xfb,0xc6,0x1,0x2,0xfd,0xbd,0x1,0x41,0x1,0x2,0x0,0x0,0x2,0x0,0x51,0x0,0x0,0x4,0x20,0x4,0x3a,0x0,0x3,0x0,0x17,0x0,0x17,0x40,0xb,0xf,0x14,0x9,0x9,0x1,0x0,0x6,0x72,0x1,0xa,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x4,0x20,0xfe,0xae,0xa7,0x16,0x63,0x6d,0x25,0xa9,0xf0,0x80,0x1,0x51,0x26,0x58,0x4a,0x2b,0x53,0x5a,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfe,0x41,0xfe,0xfc,0xf,0x1c,0x11,0x56,0xb9,0x93,0x1,0x5d,0xfe,0xa3,0x41,0x45,0x18,0xe,0x1b,0x0,0x0,0x1,0x0,0x59,0x0,0x0,0x6,0x48,0x4,0x3a,0x0,0xb,0x0,0x19,0x40,0xc,0x5,0x9,0x6,0x2,0x2,0xb,0x0,0x6,0x72,0xb,0xa,0x72,0x0,0x2b,0x2b,0x11,0x33,0x11,0x33,0x32,0x32,0x30,0x31,0x53,0x21,0x11,0x33,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x21,0x59,0x1,0x51,0xfd,0x1,0x53,0xfd,0x1,0x51,0xfa,0x11,0x4,0x3a,0xfc,0xca,0x3,0x36,0xfc,0xca,0x3,0x36,0xfb,0xc6,0x0,0x2,0x0,0x5a,0xfe,0xbf,0x7,0x41,0x4,0x3a,0x0,0x5,0x0,0x11,0x0,0x1d,0x40,0xe,0xc,0x5,0x8,0x8,0x4,0x11,0xa,0x72,0xf,0xb,0x6,0x6,0x72,0x1,0x0,0x2f,0x2b,0x32,0x32,0x2b,0x32,0x32,0x11,0x33,0x33,0x30,0x31,0x41,0x3,0x21,0x11,0x23,0x11,0x1,0x21,0x11,0x33,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x21,0x7,0x41,0x14,0xfe,0xc2,0x6f,0xfa,0xda,0x1,0x51,0xfe,0x1,0x52,0xfd,0x1,0x52,0xfa,0x10,0x1,0x2,0xfd,0xbd,0x1,0x41,0x1,0x2,0x3,0x38,0xfc,0xca,0x3,0x36,0xfc,0xca,0x3,0x36,0xfb,0xc6,0x0,0x0,0x2,0x0,0x24,0x0,0x0,0x5,0x46,0x4,0x3a,0x0,0x3,0x0,0x1c,0x0,0x1d,0x40,0xe,0x11,0x12,0xf,0x1c,0x4,0x4,0xf,0x2,0x3,0x6,0x72,0xf,0xa,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x2,0x7e,0xfd,0xa6,0x1,0xfb,0x1,0x33,0x9d,0xdf,0x78,0x44,0x81,0xba,0x75,0xfe,0x3,0x1,0x52,0xab,0x3a,0x48,0x22,0x22,0x48,0x3a,0xfe,0xcd,0x4,0x3a,0xfe,0xfb,0x1,0x5,0xfe,0xd7,0x63,0xb3,0x77,0x55,0x8f,0x67,0x39,0x4,0x3a,0xfc,0xc8,0x24,0x3c,0x24,0x28,0x3d,0x23,0x0,0x2,0x0,0x76,0x0,0x0,0x6,0x5a,0x4,0x3a,0x0,0x18,0x0,0x1c,0x0,0x1d,0x40,0xe,0x1a,0x19,0xe,0xb,0x18,0x0,0x0,0xb,0xc,0x6,0x72,0xb,0xa,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x33,0x32,0x33,0x30,0x31,0x41,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x11,0x21,0x11,0x1,0x40,0x1,0x34,0x9c,0xdf,0x78,0x44,0x81,0xb9,0x75,0xfe,0x2,0x1,0x52,0xac,0x3a,0x47,0x22,0x22,0x47,0x3a,0xfe,0xcc,0x5,0x1a,0xfe,0xae,0x3,0x11,0x63,0xb3,0x77,0x55,0x8f,0x67,0x39,0x4,0x3a,0xfc,0xc8,0x24,0x3c,0x24,0x28,0x3d,0x23,0x2,0x2c,0xfb,0xc6,0x4,0x3a,0x0,0x1,0x0,0x76,0x0,0x0,0x4,0x67,0x4,0x3a,0x0,0x18,0x0,0x19,0x40,0xc,0xe,0xb,0x18,0x0,0x0,0xb,0xc,0x6,0x72,0xb,0xa,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x40,0x1,0x34,0x9c,0xdf,0x78,0x44,0x81,0xb9,0x75,0xfe,0x2,0x1,0x52,0xac,0x3a,0x47,0x22,0x22,0x47,0x3a,0xfe,0xcc,0x3,0x11,0x63,0xb3,0x77,0x55,0x8f,0x67,0x39,0x4,0x3a,0xfc,0xc8,0x24,0x3c,0x24,0x28,0x3d,0x23,0x0,0x2,0x0,0x2d,0xff,0xec,0x3,0xf4,0x4,0x4e,0x0,0x27,0x0,0x2b,0x0,0x1d,0x40,0xe,0x2b,0x2a,0x2a,0x9,0x1d,0x19,0x14,0xb,0x72,0x4,0x0,0x9,0x7,0x72,0x0,0x2b,0x32,0xcc,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x17,0x15,0x21,0x35,0x1,0xf1,0x2f,0x3d,0x1c,0xfe,0xc4,0x75,0xcd,0x82,0x80,0xc0,0x82,0x41,0x41,0x81,0xc0,0x7e,0x88,0xcd,0x72,0x1,0x3c,0x1d,0x3d,0x31,0x35,0x44,0x25,0xf,0xe,0x26,0x45,0xd8,0xfe,0xb0,0x3,0x4a,0x23,0x40,0x2e,0x7a,0xb6,0x65,0x53,0x95,0xc9,0x75,0x17,0x75,0xc8,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4f,0x2e,0x2e,0x50,0x69,0x3a,0x17,0x3c,0x69,0x50,0x2d,0xd0,0xb7,0xb7,0x0,0x4,0x0,0x7c,0xff,0xec,0x6,0x40,0x4,0x4e,0x0,0x3,0x0,0x7,0x0,0x1d,0x0,0x33,0x0,0x23,0x40,0x13,0x24,0x3,0x2,0x2,0x19,0x2f,0xe,0x7,0x6,0x72,0x6,0xa,0x72,0xe,0x7,0x72,0x19,0xb,0x72,0x0,0x2b,0x2b,0x2b,0x2b,0x11,0x33,0x12,0x39,0x2f,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x3,0x1,0xfd,0xb3,0x1,0x1a,0xfe,0xae,0x1,0xb0,0x44,0x84,0xc3,0x7e,0x80,0xc3,0x85,0x43,0x43,0x84,0xc3,0x7f,0x7f,0xc3,0x85,0x44,0x1,0x51,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x2,0xaa,0xfe,0xfb,0x1,0x5,0x1,0x90,0xfb,0xc6,0x4,0x3a,0xfd,0xd8,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x2,0x0,0x2c,0x0,0x0,0x4,0xc,0x4,0x3a,0x0,0x3,0x0,0x1d,0x0,0x1d,0x40,0xe,0x1,0x12,0x12,0x13,0x13,0x3,0x9,0x4,0x6,0x72,0x7,0x3,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x12,0x39,0x30,0x31,0x41,0x21,0x1,0x21,0x1,0x21,0x11,0x21,0x11,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x21,0x15,0x21,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x1,0x52,0x1,0x50,0xfe,0xd9,0xfe,0xb1,0x1,0xfa,0x1,0xe6,0xfe,0xb0,0x96,0x31,0x43,0x22,0x22,0x45,0x32,0x1,0x19,0xfe,0xe7,0x71,0xb5,0x80,0x44,0x44,0x7f,0xb4,0x2,0x27,0xfd,0xd9,0x4,0x3a,0xfb,0xc6,0x3,0x38,0x26,0x3b,0x1e,0x1d,0x38,0x25,0xd9,0x34,0x5f,0x80,0x4c,0x51,0x88,0x65,0x37,0x0,0x4,0xff,0xbc,0xfe,0x4b,0x4,0x28,0x6,0x0,0x0,0x11,0x0,0x15,0x0,0x2c,0x0,0x30,0x0,0x1d,0x40,0x10,0x30,0x2f,0x28,0x1c,0x7,0x72,0x15,0x0,0x72,0x14,0xa,0x72,0xd,0x6,0xf,0x72,0x0,0x2b,0x32,0x2b,0x2b,0x2b,0x32,0xcc,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x1,0x11,0x21,0x11,0x1,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x1,0x15,0x21,0x35,0x2,0xd5,0x1,0x53,0x63,0xb7,0x80,0x2a,0x4b,0x2b,0xe,0x1a,0x28,0x22,0x26,0x34,0x1b,0xfe,0xd4,0xfe,0xaf,0x1,0x29,0x4f,0x38,0x68,0x92,0x59,0x50,0x85,0x61,0x35,0xfe,0xad,0x25,0x44,0x31,0x3b,0x4a,0x27,0xe,0x1,0x16,0xfd,0x25,0x1,0xdc,0xfe,0x15,0x88,0xbd,0x61,0x7,0xa,0xff,0x6,0x6,0x24,0x49,0x35,0x6,0xf,0xfa,0x0,0x6,0x0,0xfc,0x42,0x2,0x72,0xc0,0x8e,0x4e,0x2e,0x66,0xa4,0x76,0xfd,0x60,0x2,0xa2,0x42,0x49,0x1d,0x28,0x47,0x60,0x2,0xe4,0xbf,0xbf,0x0,0x2,0x0,0x2d,0xff,0xec,0x3,0xf2,0x4,0x4e,0x0,0x3,0x0,0x2b,0x0,0x1b,0x40,0xd,0x4,0xd,0x3,0x2,0x2,0xd,0x21,0x18,0x7,0x72,0xd,0xb,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x13,0x32,0x36,0x36,0x27,0x21,0x16,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x7,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x2,0x85,0xfe,0xb7,0xe4,0x2f,0x43,0x23,0x1,0x1,0x3d,0x1,0x79,0xcf,0x82,0x7f,0xbe,0x7f,0x3f,0x3f,0x7f,0xbd,0x7e,0x87,0xcf,0x76,0x1,0xfe,0xc3,0x1,0x20,0x43,0x34,0x34,0x40,0x21,0xb,0xb,0x22,0x40,0x2,0x68,0xb7,0xb7,0xfe,0x88,0x23,0x41,0x2e,0x7a,0xb7,0x65,0x53,0x95,0xc8,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x4f,0x2d,0x0,0x0,0x3,0x0,0xb,0x0,0x0,0x6,0xcb,0x4,0x3a,0x0,0x11,0x0,0x15,0x0,0x2e,0x0,0x25,0x40,0x12,0x16,0x2e,0x2e,0x0,0x24,0x21,0x21,0xa,0x9,0xa,0x72,0x14,0x15,0x15,0x23,0x0,0x6,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x53,0x21,0x3,0xe,0x4,0x23,0x23,0x3,0x37,0x3e,0x4,0x37,0x1,0x11,0x21,0x11,0x1,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0xd0,0x1,0x49,0x1e,0x6,0x29,0x43,0x5c,0x73,0x44,0x67,0x4,0x23,0x1b,0x2a,0x20,0x17,0xf,0x3,0x2,0x86,0xfd,0xe4,0x2,0x7e,0x1,0x33,0x9d,0xdf,0x78,0x44,0x81,0xba,0x75,0xfe,0x3,0x1,0x52,0xab,0x3a,0x48,0x22,0x22,0x48,0x3a,0xfe,0xcd,0x4,0x3a,0xfd,0xd3,0x74,0xae,0x7b,0x4d,0x23,0x1,0x2,0x4,0x3,0x1e,0x36,0x54,0x72,0x4a,0x1,0xcd,0xfe,0xfc,0x1,0x4,0xfe,0xc3,0x61,0xac,0x71,0x55,0x8d,0x66,0x37,0x4,0x3a,0xfc,0xc8,0x22,0x39,0x24,0x23,0x36,0x20,0x0,0x0,0x3,0x0,0x59,0x0,0x0,0x6,0xc2,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x20,0x0,0x25,0x40,0x12,0x15,0x16,0x13,0x13,0x6,0x8,0x3,0x20,0x3,0x2,0x2,0x6,0x7,0x6,0x72,0x6,0xa,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x3,0x4b,0xfd,0xe4,0x7b,0xfe,0xaf,0x3,0x42,0x1,0x33,0x9d,0xdf,0x78,0x44,0x81,0xba,0x75,0xfe,0x3,0x1,0x52,0xab,0x3a,0x48,0x22,0x22,0x48,0x3a,0xfe,0xcd,0x2,0x94,0xfe,0xfd,0x1,0x3,0x1,0xa6,0xfb,0xc6,0x4,0x3a,0xfe,0xc3,0x61,0xac,0x71,0x55,0x8d,0x66,0x37,0x4,0x3a,0xfc,0xc8,0x22,0x39,0x24,0x23,0x36,0x20,0x0,0x0,0x3,0xff,0xc5,0x0,0x0,0x4,0x28,0x6,0x0,0x0,0x3,0x0,0x1a,0x0,0x1e,0x0,0x19,0x40,0xd,0x1e,0x1d,0x16,0xa,0x7,0x72,0x3,0x0,0x72,0x11,0x2,0xa,0x72,0x0,0x2b,0x32,0x2b,0x2b,0x32,0xcc,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x1,0x15,0x21,0x35,0x1,0xa9,0xfe,0xaf,0x1,0x29,0x4f,0x38,0x68,0x92,0x59,0x50,0x85,0x61,0x35,0xfe,0xad,0x25,0x44,0x31,0x3b,0x4a,0x27,0xe,0x1,0x1f,0xfd,0x25,0x6,0x0,0xfa,0x0,0x6,0x0,0xfc,0x42,0x2,0x72,0xc0,0x8e,0x4e,0x2e,0x66,0xa4,0x76,0xfd,0x60,0x2,0xa2,0x42,0x49,0x1d,0x28,0x47,0x60,0x2,0xf3,0xbf,0xbf,0x0,0x2,0x0,0x59,0xfe,0x98,0x4,0x26,0x4,0x3a,0x0,0x3,0x0,0xb,0x0,0x17,0x40,0xb,0x0,0x6,0x6,0xb,0xa,0x72,0x9,0x4,0x6,0x72,0x2,0x0,0x2f,0x2b,0x32,0x2b,0x32,0x12,0x39,0x30,0x31,0x41,0x21,0x11,0x21,0x1,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x1,0x96,0x1,0x51,0xfe,0xaf,0xfe,0xc3,0x1,0x51,0x1,0x2a,0x1,0x52,0xfc,0x33,0x1,0x4,0xfd,0x94,0x5,0xa2,0xfc,0xca,0x3,0x36,0xfb,0xc6,0x0,0x0,0x2,0x0,0x65,0xff,0xeb,0x7,0x68,0x5,0xb0,0x0,0x18,0x0,0x30,0x0,0x1b,0x40,0xe,0x2c,0x1f,0x9,0x72,0x14,0x7,0x9,0x72,0x26,0x1a,0xe,0x0,0x2,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x1,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x3,0x38,0x1,0x1e,0x46,0x7d,0xaa,0x65,0x75,0xc6,0x93,0x51,0x1,0x5f,0x1b,0x32,0x47,0x2c,0x3a,0x50,0x2a,0x2,0xd1,0x1,0x5f,0x8b,0xf1,0x9b,0x66,0xad,0x80,0x47,0x1,0x1e,0x1a,0x32,0x45,0x2b,0x3b,0x52,0x2b,0x5,0xb0,0xfc,0x3b,0x7c,0xbf,0x83,0x42,0x42,0x83,0xbf,0x7c,0x3,0xc5,0xfc,0x3b,0x40,0x5b,0x3b,0x1c,0x32,0x6b,0x55,0x3,0xc5,0xfc,0x3b,0xa6,0xe4,0x76,0x42,0x83,0xbf,0x7c,0x3,0xc5,0xfc,0x3b,0x40,0x5b,0x3b,0x1c,0x32,0x6b,0x55,0x0,0x0,0x2,0x0,0x58,0xff,0xeb,0x6,0x96,0x4,0x3a,0x0,0x18,0x0,0x31,0x0,0x1b,0x40,0xe,0x2c,0x1f,0xb,0x72,0x14,0x7,0xb,0x72,0x26,0x1a,0xe,0x0,0x6,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x1,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x2,0xd4,0x1,0x14,0x3f,0x73,0x9f,0x60,0x69,0xb0,0x80,0x46,0x1,0x53,0x12,0x23,0x34,0x23,0x36,0x45,0x22,0x2,0x70,0x1,0x52,0x78,0xd6,0x8c,0x61,0x9d,0x70,0x3c,0x1,0x14,0x11,0x25,0x39,0x27,0x23,0x34,0x21,0x10,0x4,0x3a,0xfd,0xa8,0x7b,0xbb,0x80,0x41,0x41,0x80,0xbb,0x7b,0x2,0x58,0xfd,0xa8,0x40,0x5c,0x3b,0x1c,0x33,0x6b,0x55,0x2,0x58,0xfd,0xa8,0xa3,0xe1,0x73,0x41,0x80,0xbb,0x7b,0x2,0x58,0xfd,0xa8,0x40,0x5c,0x3b,0x1c,0x1c,0x3b,0x5c,0x40,0x0,0x0,0x2,0xff,0xeb,0x0,0x0,0x4,0x67,0x6,0x1a,0x0,0x17,0x0,0x1b,0x0,0x21,0x40,0x10,0xd,0xa,0x0,0x17,0x17,0xa,0x1a,0x1b,0x1b,0xa,0xb,0x1,0x72,0xa,0xa,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x15,0x21,0x35,0x1,0x40,0x1,0x34,0x9c,0xdf,0x78,0x78,0xdf,0x9c,0xfe,0x2,0x1,0x53,0xab,0x3a,0x47,0x22,0x22,0x47,0x3a,0xfe,0xcc,0x1,0x67,0xfd,0x44,0x3,0x25,0x66,0xb5,0x77,0x78,0xb5,0x66,0x6,0x1a,0xfa,0xe8,0x27,0x43,0x29,0x28,0x40,0x25,0x2,0xd8,0xbf,0xbf,0x0,0x3,0x0,0x61,0xff,0xed,0x7,0x29,0x5,0xc6,0x0,0x3,0x0,0x2c,0x0,0x30,0x0,0x20,0x40,0x11,0x3,0x2,0x2,0x2f,0x30,0x2,0x72,0x2f,0x8,0x1d,0x14,0x3,0x72,0x29,0x9,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x3f,0x2b,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x21,0x6,0x6,0x4,0x23,0x22,0x26,0x26,0x2,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x4,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x36,0x36,0x1,0x11,0x21,0x11,0x5,0x3a,0xfc,0x16,0x4,0x79,0x1,0x5d,0x7,0x96,0xfe,0xf7,0xb4,0x92,0xe5,0x9f,0x53,0x57,0xa2,0xe1,0x8b,0xbe,0x1,0x6,0x90,0xd,0xfe,0xa2,0x2,0x34,0x70,0x5d,0x41,0x60,0x40,0x1f,0x12,0x26,0x3d,0x56,0x39,0x50,0x6f,0x3c,0xfb,0xf8,0xfe,0xa2,0x3,0x65,0xfe,0xfb,0x1,0x5,0xfe,0x89,0x98,0xe8,0x81,0x62,0xb8,0x1,0x6,0xa4,0x4f,0xa4,0x1,0x7,0xb9,0x62,0x88,0xed,0x97,0x52,0x6f,0x38,0x30,0x68,0xa5,0x74,0x51,0x5d,0x8e,0x66,0x41,0x1f,0x33,0x69,0x4,0x14,0xfa,0x50,0x5,0xb0,0x0,0x0,0x3,0x0,0x63,0xff,0xec,0x5,0xe5,0x4,0x4e,0x0,0x3,0x0,0x2b,0x0,0x2f,0x0,0x24,0x40,0x13,0x3,0x2,0x2,0x2e,0x2f,0x6,0x72,0x2e,0xa,0x21,0x1d,0x18,0x7,0x72,0x8,0x4,0xd,0xb,0x72,0x0,0x2b,0x32,0xcc,0x2b,0xcc,0x33,0x3f,0x2b,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x32,0x36,0x36,0x27,0x21,0x16,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x7,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x1,0x11,0x21,0x11,0x4,0x81,0xfc,0xa3,0x2,0xef,0x30,0x43,0x23,0x1,0x1,0x3c,0x1,0x79,0xcf,0x82,0x7f,0xbe,0x7f,0x3f,0x3f,0x7f,0xbd,0x7e,0x87,0xcf,0x76,0x1,0xfe,0xc4,0x1,0x21,0x43,0x34,0x34,0x3f,0x21,0xc,0xb,0x22,0x40,0xfd,0xd8,0xfe,0xad,0x2,0x80,0xbf,0xbf,0xfe,0x70,0x23,0x41,0x2e,0x7a,0xb7,0x65,0x53,0x95,0xc8,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x4f,0x2d,0x3,0x4a,0xfb,0xc6,0x4,0x3a,0x0,0x0,0x4,0x0,0x2,0x0,0x0,0x5,0x79,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x24,0x40,0x11,0x11,0xd,0xc,0xc,0x2,0x0,0x6,0x6,0x7,0x3,0x2,0x72,0xf,0x5,0x5,0x2,0x8,0x0,0x3f,0x33,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x1,0x1,0x37,0x33,0x1,0x1,0x15,0x21,0x35,0x5,0x11,0x21,0x11,0x3,0x22,0xfe,0x52,0xfe,0x8e,0x1,0xfb,0xbb,0x1,0x4e,0xfe,0x4b,0x6f,0xbb,0x1,0xfe,0xfe,0xbf,0xfc,0xd1,0x2,0x38,0xfe,0xed,0x5,0x3c,0xfa,0xc4,0x5,0xb0,0xfa,0x50,0x5,0x46,0x6a,0xfa,0x50,0x2,0x7c,0xde,0xde,0x73,0xfd,0xf7,0x2,0x9,0x0,0x0,0x4,0x0,0x4,0x0,0x0,0x4,0x81,0x4,0x3a,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x1e,0x40,0xe,0x11,0xd,0xc,0xc,0x1,0x7,0x3,0x6,0x72,0x10,0x5,0x5,0x1,0xa,0x0,0x3f,0x33,0x11,0x33,0x2b,0x32,0x12,0x39,0x2f,0x33,0x33,0x30,0x31,0x41,0x3,0x21,0x1,0x33,0x13,0x3,0x3,0x33,0x1,0x3,0x15,0x21,0x35,0x5,0x11,0x23,0x11,0x2,0x1f,0xc2,0xfe,0xa7,0x1,0x89,0xfa,0xa2,0xc4,0x66,0xfa,0x1,0x88,0xaf,0xfc,0xe5,0x1,0xe1,0xbb,0x2,0x7b,0xfd,0x85,0x4,0x3a,0xfb,0xc6,0x2,0x7b,0x1,0xbf,0xfb,0xc6,0x1,0xcc,0xc6,0xc6,0x6e,0xfe,0xa2,0x1,0x5e,0x0,0x0,0x6,0x0,0x79,0x0,0x0,0x7,0xa2,0x5,0xb0,0x0,0x3,0x0,0x8,0x0,0xd,0x0,0x11,0x0,0x15,0x0,0x19,0x0,0x34,0x40,0x1a,0x9,0x14,0x14,0x6,0x6,0x18,0x15,0x11,0x11,0x10,0x10,0x3,0x2,0x2,0x18,0x8,0x16,0x2,0x72,0x4,0xa,0xa,0xb,0x7,0x2,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x3f,0x39,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x1,0x21,0x1,0x33,0x1,0x1,0x37,0x33,0x1,0x1,0x15,0x21,0x35,0x5,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0xd3,0xfd,0x8b,0x3,0xee,0xfe,0x52,0xfe,0x8d,0x1,0xfc,0xbb,0x1,0x4e,0xfe,0x4a,0x6f,0xbc,0x1,0xfd,0xfe,0xbf,0xfc,0xd1,0x2,0x38,0xfe,0xed,0xfd,0x7f,0xfe,0xa3,0x2,0x7a,0xdc,0xdc,0x2,0xc2,0xfa,0xc4,0x5,0xb0,0xfa,0x50,0x5,0x46,0x6a,0xfa,0x50,0x2,0x7c,0xde,0xde,0x73,0xfd,0xf7,0x2,0x9,0x3,0xa7,0xfa,0x50,0x5,0xb0,0x0,0x0,0x6,0x0,0x5f,0x0,0x0,0x6,0x80,0x4,0x3a,0x0,0x3,0x0,0x8,0x0,0xd,0x0,0x11,0x0,0x15,0x0,0x19,0x0,0x2e,0x40,0x17,0x15,0x11,0x11,0x10,0x10,0x3,0x2,0x2,0x18,0x19,0x6,0x72,0x9,0x14,0x14,0x6,0x6,0x18,0xa,0xb,0x7,0x6,0x72,0x0,0x2b,0x32,0x3f,0x33,0x11,0x33,0x11,0x33,0x2b,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x25,0x3,0x21,0x1,0x33,0x13,0x3,0x3,0x33,0x1,0x3,0x15,0x21,0x35,0x5,0x11,0x23,0x11,0x1,0x11,0x21,0x11,0x3,0x8c,0xfd,0xe,0x3,0x84,0xc2,0xfe,0xa7,0x1,0x89,0xfa,0xa2,0xc4,0x66,0xfa,0x1,0x88,0xaf,0xfc,0xe5,0x1,0xe1,0xbb,0xfd,0xd5,0xfe,0xae,0x1,0xcb,0xc4,0xc4,0xb0,0xfd,0x85,0x4,0x3a,0xfb,0xc6,0x2,0x7b,0x1,0xbf,0xfb,0xc6,0x1,0xcc,0xc6,0xc6,0x6e,0xfe,0xa2,0x1,0x5e,0x2,0xdc,0xfb,0xc6,0x4,0x3a,0x0,0x5,0x0,0x5b,0x0,0x0,0x6,0xab,0x5,0xb0,0x0,0x16,0x0,0x1a,0x0,0x1f,0x0,0x24,0x0,0x28,0x0,0x34,0x40,0x19,0x19,0x1a,0x1a,0x24,0x1b,0x1f,0x1f,0x23,0x23,0x13,0x28,0x6,0x6,0x13,0x13,0x1,0x1c,0x24,0x2,0x72,0xd,0x27,0x27,0x1,0x8,0x0,0x3f,0x33,0x11,0x33,0x2b,0x32,0x12,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x21,0x32,0x16,0x16,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x21,0x22,0x6,0x15,0x1,0x11,0x21,0x11,0x1,0x1,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x1,0xb9,0xfe,0xa2,0x86,0xfd,0xb2,0x1,0xe6,0xb2,0xfd,0x86,0xfe,0xa2,0x2f,0x5f,0x49,0xfe,0x1a,0x6d,0x6a,0x3,0x60,0xfd,0x8,0x1,0x30,0x1,0x66,0x1,0x7b,0xfe,0x0,0xbc,0xf9,0x1,0x69,0x29,0xbc,0xfe,0x0,0x3,0x43,0xfe,0xa3,0x1,0x45,0xac,0xce,0x5c,0x5c,0xce,0xac,0xfe,0xbb,0x1,0x45,0x4c,0x55,0x23,0x52,0x72,0x4,0x6b,0xfe,0xed,0x1,0x13,0xfd,0x1c,0x2,0xe4,0xfc,0x68,0x3,0x98,0xfd,0x14,0xac,0x3,0x98,0xfd,0x3b,0xfd,0x15,0x2,0xeb,0x0,0x5,0x0,0x5b,0x0,0x0,0x5,0x7b,0x4,0x3a,0x0,0x17,0x0,0x1b,0x0,0x20,0x0,0x25,0x0,0x29,0x0,0x30,0x40,0x17,0x1a,0x1b,0x1b,0x25,0x20,0x24,0x24,0x13,0x29,0x6,0x6,0x13,0x13,0x1,0x1d,0x25,0x6,0x72,0xd,0x28,0x28,0x1,0xa,0x0,0x3f,0x33,0x11,0x33,0x2b,0x32,0x12,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x61,0x21,0x35,0x34,0x36,0x36,0x33,0x21,0x32,0x16,0x16,0x15,0x15,0x21,0x35,0x34,0x26,0x26,0x23,0x21,0x22,0x6,0x6,0x15,0x1,0x15,0x21,0x35,0x1,0x1,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x1,0xac,0xfe,0xaf,0x75,0xde,0x9b,0x1,0x44,0x9a,0xdd,0x77,0xfe,0xae,0x22,0x45,0x35,0xfe,0xbc,0x35,0x46,0x22,0x2,0xda,0xfc,0xfb,0x1,0x34,0x1,0x1,0x1,0x6a,0xfe,0x65,0xb0,0xa5,0x1,0x5,0x25,0xae,0xfe,0x64,0x2,0xd2,0xfe,0xaf,0xbe,0x9c,0xbb,0x54,0x54,0xbb,0x9c,0xbe,0xbe,0x47,0x50,0x20,0x20,0x50,0x47,0x3,0x7c,0xca,0xca,0xfd,0xbc,0x2,0x44,0xfd,0x39,0x2,0xc7,0xfd,0xb6,0x7d,0x2,0xc7,0xfd,0xb6,0xfe,0x10,0x1,0xf0,0x0,0x7,0x0,0x86,0x0,0x0,0x9,0x10,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x1e,0x0,0x22,0x0,0x27,0x0,0x2c,0x0,0x30,0x0,0x3c,0x40,0x1e,0x21,0x22,0x22,0x24,0x2c,0x2,0x72,0x27,0x2b,0x2b,0x1b,0x30,0xe,0xe,0x1b,0x1b,0x3,0x2,0x2,0x5,0x7,0x2,0x72,0x15,0x2f,0x2f,0x9,0x9,0x5,0x8,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x2b,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x21,0x11,0x34,0x36,0x36,0x33,0x21,0x32,0x16,0x16,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x21,0x22,0x6,0x15,0x1,0x11,0x21,0x11,0x1,0x1,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x5,0x22,0xfc,0x1b,0xa7,0xfe,0xa2,0x3,0x98,0xfe,0xa2,0x86,0xfd,0xb2,0x1,0xe6,0xb2,0xfd,0x86,0xfe,0xa2,0x2f,0x5f,0x49,0xfe,0x1a,0x6d,0x6a,0x3,0x60,0xfd,0x8,0x1,0x30,0x1,0x66,0x1,0x7b,0xfe,0x0,0xbb,0xfa,0x1,0x6a,0x2a,0xbc,0xfe,0x1,0x3,0x43,0xfe,0xa2,0x3,0x1f,0xfe,0xf8,0x1,0x8,0x2,0x91,0xfa,0x50,0x5,0xb0,0xfa,0x50,0x1,0x45,0xac,0xce,0x5c,0x5c,0xce,0xac,0xfe,0xbb,0x1,0x45,0x4c,0x55,0x23,0x52,0x72,0x4,0x6b,0xfe,0xed,0x1,0x13,0xfd,0x1c,0x2,0xe4,0xfc,0x68,0x3,0x98,0xfd,0x14,0xac,0x3,0x98,0xfd,0x3b,0xfd,0x15,0x2,0xeb,0x0,0x0,0x7,0x0,0x7c,0x0,0x0,0x7,0xc5,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x1f,0x0,0x23,0x0,0x28,0x0,0x2d,0x0,0x31,0x0,0x3e,0x40,0x1e,0x25,0x22,0x23,0x23,0x2d,0x2d,0x7,0x28,0x2c,0x2c,0x1b,0x31,0xe,0xe,0x1b,0x1b,0x3,0x2,0x2,0x6,0x7,0x6,0x72,0x15,0x30,0x30,0x9,0x9,0x6,0xa,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x2b,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x13,0x11,0x21,0x11,0x1,0x21,0x35,0x34,0x36,0x36,0x33,0x21,0x32,0x16,0x16,0x15,0x15,0x21,0x35,0x34,0x26,0x26,0x23,0x21,0x22,0x6,0x6,0x15,0x1,0x15,0x21,0x35,0x1,0x1,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x4,0xb3,0xfc,0x27,0xf4,0xfe,0xae,0x3,0x7a,0xfe,0xae,0x76,0xdd,0x9b,0x1,0x45,0x9a,0xdd,0x77,0xfe,0xae,0x22,0x45,0x35,0xfe,0xbb,0x35,0x45,0x22,0x2,0xda,0xfc,0xfa,0x1,0x35,0x1,0x1,0x1,0x6a,0xfe,0x65,0xb0,0xa5,0x1,0x5,0x25,0xae,0xfe,0x63,0x2,0xd3,0xfe,0xaf,0x2,0x69,0xe9,0xe9,0x1,0xd1,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0xbe,0x9c,0xbb,0x54,0x54,0xbb,0x9c,0xbe,0xbe,0x47,0x50,0x20,0x20,0x50,0x47,0x3,0x7c,0xca,0xca,0xfd,0xbc,0x2,0x44,0xfd,0x39,0x2,0xc7,0xfd,0xb6,0x7d,0x2,0xc7,0xfd,0xb6,0xfe,0x10,0x1,0xf0,0x0,0x0,0x3,0xff,0xe4,0xfe,0x40,0x3,0xbc,0x7,0x88,0x0,0x17,0x0,0x40,0x0,0x49,0x0,0x2b,0x40,0x14,0x18,0xd,0xc,0x40,0x40,0x0,0x2b,0x2c,0x9,0x45,0x43,0x43,0x42,0x48,0x41,0x80,0x47,0x17,0x0,0x2,0x0,0x3f,0x32,0xde,0x1a,0xcd,0x32,0x39,0x32,0x11,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x33,0x30,0x31,0x53,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x13,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x23,0x22,0x6,0x15,0x14,0x16,0x16,0x17,0x7,0x2e,0x2,0x27,0x34,0x36,0x36,0x33,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x23,0x13,0x17,0x37,0x21,0x15,0x1,0x23,0x1,0x35,0x76,0xef,0x7c,0xc8,0x8e,0x4c,0x4a,0x88,0xbe,0x74,0xa0,0x9a,0x43,0x50,0x25,0x2b,0x5a,0x47,0xef,0x69,0x93,0x8c,0xd9,0x97,0x4e,0x49,0x8a,0xbf,0x77,0x3e,0x34,0x2d,0x2f,0x40,0x19,0x52,0x81,0x9d,0x47,0x1,0x5a,0xa3,0x6f,0x4b,0x31,0x4d,0x35,0x1c,0x21,0x3f,0x5e,0x3e,0x8f,0x60,0x93,0x93,0x1,0x1f,0xfe,0xbb,0xd9,0xfe,0xb8,0x5,0xb0,0x2a,0x59,0x8f,0x64,0x65,0x92,0x5d,0x2d,0xb7,0x2c,0x4a,0x2d,0x2e,0x40,0x21,0xfe,0x70,0x32,0x60,0x8d,0x5b,0x66,0xa0,0x6e,0x39,0x32,0x27,0x29,0x39,0x24,0xb,0xc1,0x16,0x6d,0xa1,0x62,0x68,0x88,0x44,0x17,0x29,0x38,0x22,0x32,0x4c,0x34,0x1b,0x5,0x27,0x86,0x86,0xb,0xfe,0xe5,0x1,0x1d,0x9,0x0,0x3,0x0,0x6,0xfe,0x55,0x3,0xa9,0x5,0xf5,0x0,0x18,0x0,0x41,0x0,0x4a,0x0,0x26,0x40,0x11,0xd,0x19,0xc,0x41,0x41,0x0,0x2d,0x43,0x49,0x46,0x44,0x42,0x80,0x48,0x18,0x0,0x6,0x0,0x3f,0x32,0xde,0x1a,0xcd,0x32,0x32,0x32,0x39,0x2f,0x12,0x39,0x2f,0x33,0x33,0x33,0x30,0x31,0x53,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x23,0x13,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x23,0x22,0x6,0x15,0x14,0x16,0x16,0x17,0x7,0x2e,0x2,0x27,0x34,0x36,0x36,0x33,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x23,0x13,0x17,0x37,0x21,0x15,0x1,0x23,0x1,0x35,0x76,0xef,0x78,0xc1,0x8a,0x49,0x44,0x7e,0xaf,0x6b,0xb6,0xb2,0x34,0x3e,0x1c,0x16,0x2d,0x47,0x30,0xef,0x69,0xab,0x81,0xca,0x8b,0x49,0x43,0x7e,0xb1,0x6e,0x31,0x41,0x37,0x27,0x35,0x15,0x52,0x5d,0x8c,0x4f,0x1,0x4f,0x8f,0x61,0x40,0x32,0x4e,0x36,0x1d,0x1b,0x36,0x4e,0x33,0xa7,0x69,0x93,0x93,0x1,0x1f,0xfe,0xbb,0xd9,0xfe,0xb8,0x4,0x3a,0x20,0x46,0x70,0x4e,0x4f,0x72,0x49,0x23,0x8d,0x20,0x38,0x22,0x18,0x26,0x19,0xe,0xfe,0xed,0x24,0x46,0x66,0x42,0x4d,0x78,0x54,0x2c,0x32,0x27,0x29,0x39,0x24,0xb,0xac,0x1b,0x69,0x94,0x59,0x5a,0x76,0x3a,0x11,0x1e,0x29,0x18,0x1e,0x2d,0x20,0x10,0x4,0x3a,0x86,0x86,0xb,0xfe,0xe5,0x1,0x1d,0x9,0x0,0x0,0x3,0x0,0x55,0xff,0xec,0x5,0x4f,0x5,0xc4,0x0,0x17,0x0,0x28,0x0,0x39,0x0,0x1f,0x40,0x12,0xc,0x29,0x6a,0x32,0x20,0x6a,0x32,0x32,0xc,0x0,0x18,0x6a,0x0,0x3,0x72,0xc,0x9,0x72,0x0,0x2b,0x2b,0x2b,0x12,0x39,0x2f,0x2b,0x2b,0x30,0x31,0x41,0x32,0x1e,0x3,0x15,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x13,0x22,0xe,0x2,0x7,0x6,0x6,0x7,0x21,0x26,0x26,0x27,0x2e,0x3,0x3,0x32,0x3e,0x2,0x37,0x36,0x36,0x37,0x21,0x16,0x16,0x17,0x1e,0x3,0x2,0xd2,0x6f,0xc3,0x9d,0x71,0x3d,0x5d,0xaa,0xe9,0x8b,0x71,0xc3,0x9e,0x71,0x3c,0x5d,0xa9,0xea,0x8d,0x3b,0x5e,0x45,0x2b,0x9,0x1,0x2,0x1,0x2,0x2c,0x1,0x2,0x2,0x9,0x2d,0x46,0x5c,0x37,0x3a,0x5e,0x45,0x2c,0x8,0x2,0x1,0x1,0xfd,0xd2,0x1,0x2,0x1,0x9,0x2b,0x45,0x60,0x5,0xc4,0x40,0x7a,0xaf,0xe0,0x86,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x40,0x79,0xb0,0xe0,0x85,0x3b,0xa7,0x1,0xa,0xbb,0x63,0xfe,0xed,0x29,0x51,0x78,0x4e,0xc,0x18,0xd,0xd,0x19,0xc,0x4e,0x78,0x50,0x29,0xfc,0x4d,0x2c,0x57,0x7e,0x52,0xb,0x18,0xd,0xd,0x1a,0xc,0x51,0x7e,0x55,0x2c,0x0,0x3,0x0,0x32,0xff,0xec,0x4,0x47,0x4,0x4e,0x0,0x15,0x0,0x20,0x0,0x2b,0x0,0x1f,0x40,0x12,0xb,0x21,0x6a,0x27,0x1b,0x6a,0x27,0x27,0xb,0x0,0x16,0x6a,0x0,0x7,0x72,0xb,0xb,0x72,0x0,0x2b,0x2b,0x2b,0x12,0x39,0x2f,0x2b,0x2b,0x30,0x31,0x41,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x13,0x22,0xe,0x2,0x7,0x21,0x2e,0x3,0x3,0x32,0x3e,0x2,0x37,0x21,0x1e,0x3,0x2,0x3c,0x80,0xc3,0x84,0x44,0x44,0x84,0xc2,0x7f,0x7f,0xc4,0x85,0x44,0x44,0x85,0xc2,0x7f,0x2c,0x40,0x2a,0x19,0x5,0x1,0x69,0x5,0x18,0x2b,0x40,0x2b,0x2a,0x3f,0x2a,0x19,0x6,0xfe,0x99,0x6,0x19,0x2b,0x3f,0x4,0x4e,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x76,0x15,0x77,0xc9,0x94,0x53,0xfe,0xfc,0x20,0x39,0x4e,0x2d,0x2d,0x4e,0x39,0x20,0xfd,0xa6,0x1d,0x35,0x49,0x2c,0x2c,0x49,0x35,0x1d,0x0,0x2,0x0,0x6,0x0,0x0,0x5,0x1f,0x5,0xc2,0x0,0xe,0x0,0x13,0x0,0x19,0x40,0xd,0xe,0x12,0x8,0x5,0x13,0x2,0x72,0x5,0x3,0x72,0x12,0x8,0x72,0x0,0x2b,0x2b,0x2b,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x13,0x3e,0x2,0x33,0x17,0x3,0x23,0x22,0x6,0x6,0x7,0x1,0x23,0x3,0x1,0x13,0x23,0x1,0x2,0xa8,0xb9,0x24,0x6b,0x9e,0x6f,0x22,0x3,0x26,0x1a,0x2e,0x20,0x5,0xfe,0xd4,0xff,0xe8,0x1,0x1d,0x4b,0xff,0xfe,0x27,0x1,0x86,0x2,0xc7,0x73,0xa7,0x5b,0x1,0xfe,0xea,0x1f,0x31,0x1b,0xfb,0xc0,0x5,0xb0,0xfb,0xdb,0xfe,0x75,0x5,0xb0,0x0,0x0,0x2,0x0,0x1,0x0,0x0,0x4,0x31,0x4,0x4f,0x0,0x12,0x0,0x17,0x0,0x15,0x40,0xb,0x17,0x6,0x72,0x12,0x16,0xa,0x72,0xc,0x5,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2b,0x30,0x31,0x41,0x13,0x3e,0x2,0x33,0x32,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0x6,0x6,0x7,0x3,0x23,0x3,0x13,0x13,0x23,0x1,0x2,0x7,0x40,0x22,0x65,0x96,0x69,0x1d,0x33,0x14,0x19,0x3,0x2a,0xb,0x1c,0x2f,0x21,0x8,0xc8,0xe5,0x5a,0x7c,0x50,0xe5,0xfe,0xb5,0x1,0xbe,0x1,0x23,0x73,0xa3,0x58,0x7,0x9,0xff,0x0,0x1,0x2,0x1e,0x32,0x1e,0xfd,0x2c,0x4,0x3a,0xfd,0x84,0xfe,0x42,0x4,0x3a,0x0,0x4,0x0,0x55,0xff,0x7b,0x5,0x4f,0x6,0x23,0x0,0x3,0x0,0x7,0x0,0x1f,0x0,0x37,0x0,0x24,0x40,0x10,0x2,0x2,0x27,0x27,0x3,0x1a,0x3,0x72,0x7,0x7,0x33,0x33,0x6,0xe,0x9,0x72,0x0,0x2b,0xcd,0x33,0x11,0x33,0x7c,0x2f,0x2b,0x18,0xcd,0x33,0x11,0x33,0x7d,0x2f,0x30,0x31,0x41,0x11,0x23,0x11,0x13,0x11,0x23,0x11,0x1,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x3,0x24,0xc2,0xc5,0xc1,0x2,0xe9,0x5d,0xaa,0xe9,0x8b,0x71,0xc3,0x9e,0x71,0x3c,0x5d,0xa9,0xea,0x8d,0x6f,0xc3,0x9d,0x71,0x3d,0xfe,0x9b,0x18,0x2e,0x44,0x58,0x36,0x46,0x69,0x46,0x23,0x17,0x2d,0x44,0x5a,0x38,0x43,0x67,0x47,0x25,0x6,0x23,0xfe,0x19,0x1,0xe7,0xfb,0x49,0xfe,0xf,0x1,0xf1,0x1,0x89,0x3b,0xa7,0xfe,0xf7,0xbb,0x63,0x40,0x79,0xb0,0xe0,0x85,0x3b,0xa7,0x1,0xa,0xbb,0x63,0x40,0x7a,0xaf,0xe0,0xc1,0x3d,0x56,0x8d,0x6a,0x48,0x25,0x39,0x70,0xa5,0x6c,0x3d,0x55,0x8d,0x6b,0x49,0x26,0x3a,0x72,0xa5,0x0,0x4,0x0,0x35,0xff,0x82,0x4,0x49,0x4,0xb3,0x0,0x3,0x0,0x7,0x0,0x1d,0x0,0x33,0x0,0x24,0x40,0x10,0x7,0x7,0x24,0x24,0x6,0x19,0xb,0x72,0x2,0x2,0x2f,0x2f,0x3,0xe,0x7,0x72,0x0,0x2b,0xcd,0x33,0x11,0x33,0x7d,0x2f,0x2b,0x18,0xcd,0x33,0x11,0x33,0x7c,0x2f,0x30,0x31,0x41,0x11,0x23,0x11,0x13,0x11,0x23,0x11,0x25,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x2,0x8e,0x94,0x8c,0x94,0xfe,0x43,0x44,0x84,0xc2,0x7f,0x80,0xc3,0x84,0x44,0x44,0x84,0xc2,0x7f,0x7f,0xc4,0x84,0x44,0x1,0x51,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x12,0x2a,0x48,0x36,0x35,0x47,0x2a,0x12,0x4,0xb3,0xfe,0x23,0x1,0xdd,0xfc,0xc0,0xfe,0xf,0x1,0xf1,0x9f,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x0,0x4,0x0,0x65,0xff,0xeb,0x7,0x51,0x7,0x13,0x0,0x15,0x0,0x20,0x0,0x41,0x0,0x65,0x0,0x33,0x40,0x19,0x5b,0x4e,0x9,0x72,0x54,0x31,0x31,0x2c,0x38,0x9,0x72,0x42,0x43,0x43,0x11,0x8,0x8,0x1b,0x1b,0x16,0x16,0x22,0x21,0x2,0x72,0x0,0x2b,0x32,0x32,0x7c,0x2f,0x33,0x18,0x2f,0x33,0x11,0x33,0x32,0x11,0x33,0x2b,0x32,0x32,0x2f,0x33,0x2b,0x32,0x30,0x31,0x41,0x33,0x15,0x23,0x22,0x2e,0x2,0x23,0x22,0x6,0x15,0x15,0x23,0x35,0x34,0x36,0x33,0x32,0x1e,0x2,0x1,0x27,0x36,0x36,0x35,0x35,0x33,0x15,0x14,0x6,0x6,0x25,0x11,0x22,0x6,0x6,0x15,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x11,0x21,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x34,0x36,0x36,0x1,0x11,0x32,0x1e,0x2,0x15,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x11,0x34,0x2e,0x2,0x5,0x9e,0x7,0x6,0x55,0x90,0x7a,0x65,0x29,0x2d,0x39,0x82,0x79,0x6c,0x39,0x70,0x76,0x84,0xfe,0x57,0x52,0x21,0x23,0xa9,0x32,0x47,0xfe,0xb9,0x3b,0x56,0x2f,0x1b,0x32,0x47,0x2c,0x3a,0x50,0x2a,0x1,0x1e,0x46,0x7d,0xaa,0x65,0x75,0xc6,0x93,0x51,0x8d,0xf6,0x3,0x4a,0x75,0xc7,0x92,0x51,0x51,0x92,0xc7,0x75,0x64,0xab,0x7d,0x46,0x1,0x1e,0x18,0x2d,0x44,0x2b,0x2c,0x47,0x32,0x1b,0x1b,0x32,0x47,0x6,0x9b,0x86,0x24,0x30,0x24,0x30,0x36,0x12,0x25,0x70,0x69,0x24,0x30,0x24,0xfe,0x55,0x39,0x29,0x49,0x25,0x5f,0x66,0x26,0x50,0x41,0xae,0xfe,0xf1,0x31,0x69,0x54,0xfe,0x34,0x3f,0x5a,0x39,0x1c,0x32,0x6b,0x55,0x1,0x44,0xfe,0xbc,0x7c,0xbf,0x83,0x42,0x42,0x81,0xbd,0x7c,0x1,0xcc,0xa5,0xe3,0x75,0xfe,0xf1,0x1,0xf,0x42,0x81,0xbe,0x7c,0xfe,0x34,0x7c,0xbd,0x81,0x42,0x42,0x83,0xbf,0x7c,0x1,0x44,0xfe,0xbc,0x40,0x5b,0x3b,0x1c,0x1c,0x39,0x5a,0x3f,0x1,0xcc,0x3f,0x5a,0x39,0x1c,0x0,0x0,0x4,0x0,0x65,0xff,0xeb,0x6,0x3d,0x5,0xc8,0x0,0x15,0x0,0x20,0x0,0x42,0x0,0x66,0x0,0x33,0x40,0x19,0x5c,0x4f,0xb,0x72,0x55,0x32,0x32,0x2c,0x39,0xb,0x72,0x43,0x44,0x44,0x11,0x8,0x8,0x1b,0x1b,0x16,0x16,0x22,0x21,0x6,0x72,0x0,0x2b,0x32,0x32,0x7c,0x2f,0x33,0x18,0x2f,0x33,0x11,0x33,0x32,0x11,0x33,0x2b,0x32,0x32,0x2f,0x33,0x2b,0x32,0x30,0x31,0x41,0x33,0x15,0x23,0x22,0x2e,0x2,0x23,0x22,0x6,0x15,0x15,0x23,0x35,0x34,0x36,0x33,0x32,0x1e,0x2,0x1,0x27,0x36,0x36,0x35,0x35,0x33,0x15,0x14,0x6,0x6,0x27,0x11,0x22,0x6,0x6,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x33,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x36,0x36,0x1,0x11,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x33,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x5,0xe,0xa,0xb,0x54,0x90,0x79,0x64,0x2a,0x2c,0x39,0x84,0x7b,0x6c,0x39,0x6f,0x76,0x83,0xfe,0x63,0x52,0x21,0x23,0xa9,0x32,0x47,0xe0,0x35,0x4f,0x2b,0x12,0x22,0x30,0x1e,0x1d,0x2e,0x1f,0x10,0xfd,0x38,0x65,0x89,0x51,0x65,0xab,0x7e,0x46,0x86,0xe7,0x2,0x6a,0x6f,0xbb,0x8a,0x4d,0x46,0x7e,0xab,0x65,0x51,0x89,0x65,0x38,0xfd,0x10,0x1f,0x2e,0x1d,0x1e,0x30,0x22,0x12,0x18,0x2e,0x41,0x5,0x50,0x86,0x24,0x30,0x24,0x30,0x36,0x12,0x25,0x70,0x69,0x24,0x30,0x24,0xfe,0x60,0x39,0x29,0x49,0x25,0x5f,0x66,0x26,0x50,0x41,0x8c,0xfe,0xfc,0x2e,0x63,0x4e,0x9d,0x3a,0x55,0x36,0x1a,0x1c,0x3b,0x5c,0x40,0x86,0x86,0x7b,0xbb,0x80,0x41,0x3f,0x7a,0xb4,0x76,0x9d,0x9d,0xd7,0x6f,0xfe,0xfc,0x1,0x4,0x3e,0x7b,0xb4,0x76,0x9d,0x76,0xb4,0x7a,0x3f,0x41,0x80,0xbb,0x7b,0x86,0x86,0x40,0x5c,0x3b,0x1c,0x1a,0x36,0x55,0x3a,0x9d,0x3b,0x54,0x36,0x1a,0x0,0x3,0x0,0x65,0xff,0xeb,0x7,0x68,0x7,0x25,0x0,0x7,0x0,0x20,0x0,0x38,0x0,0x2b,0x40,0x15,0x34,0x27,0x9,0x72,0x5,0x2,0x1,0x1,0x7,0x7,0x2d,0x21,0x8,0x8,0x15,0x2,0x72,0x1c,0xf,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x33,0x33,0x33,0x7c,0x2f,0x33,0x18,0x2f,0x33,0x33,0x2b,0x32,0x30,0x31,0x41,0x21,0x35,0x21,0x17,0x21,0x15,0x23,0x7,0x21,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x1,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x3,0x84,0xfe,0x99,0x3,0x94,0x2,0xfe,0x86,0xb5,0x4c,0x1,0x1e,0x46,0x7d,0xaa,0x65,0x75,0xc6,0x93,0x51,0x1,0x5f,0x1b,0x32,0x47,0x2c,0x3a,0x50,0x2a,0x2,0xd1,0x1,0x5f,0x8b,0xf1,0x9b,0x66,0xad,0x80,0x47,0x1,0x1e,0x1a,0x32,0x45,0x2b,0x3b,0x52,0x2b,0x6,0x97,0x8e,0x8e,0x7f,0x68,0xfc,0x3b,0x7c,0xbf,0x83,0x42,0x42,0x83,0xbf,0x7c,0x3,0xc5,0xfc,0x3b,0x40,0x5b,0x3b,0x1c,0x32,0x6b,0x55,0x3,0xc5,0xfc,0x3b,0xa6,0xe4,0x76,0x42,0x83,0xbf,0x7c,0x3,0xc5,0xfc,0x3b,0x40,0x5b,0x3b,0x1c,0x32,0x6b,0x55,0x0,0x3,0x0,0x58,0xff,0xeb,0x6,0x96,0x5,0xb1,0x0,0x7,0x0,0x20,0x0,0x39,0x0,0x2b,0x40,0x15,0x34,0x27,0xb,0x72,0x5,0x2,0x1,0x1,0x7,0x7,0x2d,0x21,0x8,0x8,0x15,0x6,0x72,0x1c,0xf,0xb,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x33,0x33,0x33,0x7c,0x2f,0x33,0x18,0x2f,0x33,0x33,0x2b,0x32,0x30,0x31,0x41,0x21,0x35,0x21,0x17,0x21,0x15,0x23,0x7,0x21,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x1,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x3,0x14,0xfe,0xc7,0x3,0x38,0x7,0xfe,0xae,0xb4,0x40,0x1,0x14,0x3f,0x73,0x9f,0x60,0x69,0xb0,0x80,0x46,0x1,0x53,0x12,0x23,0x34,0x23,0x36,0x45,0x22,0x2,0x70,0x1,0x52,0x78,0xd6,0x8c,0x61,0x9d,0x70,0x3c,0x1,0x14,0x11,0x25,0x39,0x27,0x23,0x34,0x21,0x10,0x5,0x23,0x8e,0x8e,0x7f,0x6a,0xfd,0xa8,0x7b,0xbb,0x80,0x41,0x41,0x80,0xbb,0x7b,0x2,0x58,0xfd,0xa8,0x40,0x5c,0x3b,0x1c,0x33,0x6b,0x55,0x2,0x58,0xfd,0xa8,0xa3,0xe1,0x73,0x41,0x80,0xbb,0x7b,0x2,0x58,0xfd,0xa8,0x40,0x5c,0x3b,0x1c,0x1c,0x3b,0x5c,0x40,0x0,0x2,0x0,0x4c,0xfe,0x9f,0x4,0xa1,0x5,0xc5,0x0,0x21,0x0,0x25,0x0,0x19,0x40,0xc,0x16,0x12,0xd,0x3,0x72,0x25,0x0,0x0,0x24,0x1,0x9,0x72,0x0,0x2b,0xcd,0x33,0x11,0x33,0x2b,0xcc,0x33,0x30,0x31,0x65,0x11,0x22,0x2e,0x3,0x35,0x11,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x3,0x21,0x11,0x21,0x11,0x2,0x7f,0x68,0xb0,0x89,0x60,0x32,0x4e,0x92,0xd1,0x82,0xaf,0xf4,0x7f,0xfe,0xa2,0x23,0x55,0x4c,0x38,0x51,0x34,0x19,0x10,0x21,0x33,0x45,0x1,0x18,0xfe,0xa2,0xf9,0xfe,0xf2,0x37,0x68,0x93,0xb6,0x6a,0x1,0x35,0x84,0xdb,0x9e,0x56,0x71,0xe3,0xad,0x59,0x6a,0x2f,0x2e,0x56,0x76,0x48,0xfe,0xc9,0x39,0x64,0x4f,0x3a,0x1e,0xfd,0xa6,0x2,0x5a,0x0,0x0,0x2,0x0,0x50,0xfe,0x9a,0x4,0x16,0x4,0x4e,0x0,0x1f,0x0,0x23,0x0,0x19,0x40,0xc,0x15,0x11,0xc,0x7,0x72,0x20,0x0,0x0,0x22,0x1,0xb,0x72,0x0,0x2b,0xcd,0x33,0x11,0x33,0x2b,0xcc,0x33,0x30,0x31,0x65,0x11,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x21,0x11,0x21,0x11,0x2,0x52,0x80,0xc0,0x81,0x41,0x41,0x80,0xc0,0x7f,0x88,0xcc,0x72,0xfe,0xc3,0x1c,0x3c,0x31,0x35,0x45,0x26,0xf,0xf,0x26,0x46,0x1,0x1c,0xfe,0xaf,0xef,0xfe,0xfc,0x53,0x95,0xc9,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x50,0x2d,0xfd,0xab,0x2,0x55,0x0,0x0,0x1,0x0,0x69,0x0,0x0,0x4,0x8f,0x5,0x3e,0x0,0x13,0x0,0x8,0xb1,0xf,0x5,0x0,0x2f,0x2f,0x30,0x31,0x41,0x3,0x5,0x7,0x25,0x3,0x23,0x13,0x25,0x37,0x5,0x13,0x25,0x37,0x5,0x13,0x33,0x3,0x5,0x7,0x3,0x23,0xcc,0x1,0x21,0x48,0xfe,0xdd,0xb5,0xaf,0xe1,0xfe,0xdf,0x47,0x1,0x25,0xca,0xfe,0xde,0x49,0x1,0x23,0xb9,0xac,0xe4,0x1,0x25,0x4c,0x3,0x29,0xfe,0x98,0xac,0x80,0xaa,0xfe,0xc1,0x1,0x8e,0xab,0x80,0xab,0x1,0x68,0xab,0x82,0xab,0x1,0x46,0xfe,0x6b,0xab,0x7f,0x0,0x0,0x1,0xfc,0x80,0x4,0xa2,0xff,0x53,0x5,0xfd,0x0,0x7,0x0,0x15,0xb7,0x6,0x6,0x4,0x4,0x1,0x2,0x2,0x1,0x0,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x7c,0x2f,0x30,0x31,0x43,0x21,0x15,0x27,0x37,0x21,0x27,0x17,0xad,0xfd,0xde,0xb1,0x1,0x2,0x22,0x1,0xb1,0x5,0x20,0x7e,0x1,0xee,0x6c,0x1,0x0,0x0,0x1,0xfc,0x7e,0x5,0x17,0xff,0x78,0x6,0x15,0x0,0x15,0x0,0x12,0xb6,0x1,0x14,0x14,0xf,0x6,0x80,0xb,0x0,0x2f,0x1a,0xcc,0x32,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x32,0x3e,0x2,0x33,0x32,0x16,0x15,0x15,0x23,0x35,0x34,0x26,0x23,0x22,0xe,0x2,0x23,0x23,0xfc,0x7e,0xa,0x50,0x88,0x7b,0x74,0x3b,0x6f,0x7f,0x88,0x3b,0x2f,0x2b,0x68,0x7d,0x95,0x57,0xc,0x5,0x9d,0x24,0x30,0x24,0x69,0x70,0x25,0x12,0x36,0x30,0x24,0x30,0x24,0x0,0x0,0x1,0xfd,0xb1,0x5,0x1d,0xfe,0xa8,0x6,0x74,0x0,0x5,0x0,0xa,0xb2,0x0,0x80,0x2,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x27,0x35,0x33,0x7,0x17,0xfe,0x57,0xa6,0xbe,0x1,0x3a,0x5,0x1d,0xbf,0x98,0xaa,0x69,0x0,0x1,0xfd,0xa9,0x5,0x1d,0xfe,0xa0,0x6,0x74,0x0,0x5,0x0,0xa,0xb2,0x1,0x80,0x4,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x7,0x27,0x37,0x27,0x33,0xfe,0xa0,0xa5,0x52,0x3b,0x1,0xbd,0x5,0xdc,0xbf,0x44,0x69,0xaa,0x0,0x0,0x8,0xfa,0x3c,0xfe,0xc4,0x1,0xd8,0x5,0xaf,0x0,0xd,0x0,0x1b,0x0,0x29,0x0,0x37,0x0,0x45,0x0,0x53,0x0,0x61,0x0,0x6f,0x0,0x0,0x41,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x1,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x13,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x3,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x1,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x1,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x3,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x13,0x23,0x34,0x36,0x33,0x32,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0xfd,0x9a,0x71,0x71,0x61,0x62,0x71,0x70,0x2d,0x36,0x35,0x2c,0x2,0x50,0x72,0x71,0x61,0x62,0x72,0x71,0x2c,0x37,0x34,0x2c,0xba,0x71,0x71,0x61,0x62,0x71,0x70,0x2c,0x37,0x34,0x2d,0xc5,0x71,0x71,0x61,0x62,0x71,0x70,0x2c,0x37,0x34,0x2d,0xfd,0xc0,0x71,0x71,0x61,0x62,0x71,0x70,0x2d,0x36,0x34,0x2d,0xfd,0xbf,0x72,0x72,0x61,0x62,0x71,0x70,0x2d,0x36,0x35,0x2c,0xb1,0x71,0x71,0x61,0x62,0x71,0x70,0x2c,0x37,0x34,0x2d,0xa7,0x72,0x71,0x61,0x62,0x72,0x71,0x2c,0x37,0x34,0x2c,0x4,0xf3,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0xfe,0xc3,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0xfd,0xe1,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0xfd,0xd1,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0xfe,0xbc,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0x4,0xf2,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0xfd,0xe1,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0xfd,0xd1,0x53,0x69,0x69,0x53,0x28,0x3d,0x3d,0x0,0x8,0xfa,0x93,0xfe,0x63,0x1,0xd4,0x5,0xc6,0x0,0x4,0x0,0x9,0x0,0xe,0x0,0x13,0x0,0x18,0x0,0x1d,0x0,0x22,0x0,0x27,0x0,0x0,0x45,0x33,0x17,0x3,0x23,0x13,0x23,0x27,0x13,0x33,0x1,0x35,0x37,0x5,0x15,0x25,0x15,0x7,0x25,0x35,0x1,0x27,0x37,0x25,0x17,0x1,0x17,0x7,0x5,0x27,0x1,0x7,0x27,0x3,0x37,0x1,0x37,0x17,0x13,0x7,0xfe,0xd,0x89,0xb,0x7a,0x60,0x94,0x88,0xc,0x7a,0x60,0x1,0xd9,0xd,0x1,0x4d,0xfa,0x19,0xd,0xfe,0xb3,0x5,0x57,0x61,0x2,0x1,0x42,0x44,0xfb,0x6b,0x61,0x2,0xfe,0xc0,0x45,0x1,0x5d,0x62,0x11,0x94,0x41,0x3,0xc5,0x62,0x11,0x95,0x42,0x3c,0xe,0xfe,0xad,0x6,0x3,0xe,0x1,0x52,0xfc,0x26,0x8b,0xc,0x7c,0x62,0x97,0x8b,0xc,0x7c,0x62,0x1,0x4,0x63,0x10,0x99,0x44,0xfc,0x29,0x63,0x11,0x99,0x45,0x4,0xe,0x62,0x2,0x1,0x46,0x45,0xfb,0x55,0x63,0x2,0xfe,0xbb,0x47,0x0,0xff,0xff,0x0,0x5b,0xfe,0x55,0x6,0x13,0x7,0x38,0x4,0x26,0x0,0xdc,0x0,0x0,0x0,0x27,0x0,0xa1,0x0,0xf1,0x1,0x36,0x1,0x7,0x0,0x10,0x4,0x6e,0xff,0xdd,0x0,0x15,0x40,0xe,0x2,0x23,0x4,0x0,0x0,0x98,0x56,0x1,0xf,0x1,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xfe,0x55,0x5,0x18,0x6,0x2,0x4,0x26,0x0,0xf0,0x0,0x0,0x0,0x27,0x0,0xa1,0x0,0x77,0x0,0x0,0x1,0x7,0x0,0x10,0x3,0x73,0xff,0xdd,0x0,0x15,0x40,0xe,0x2,0x23,0x4,0x1,0x0,0x98,0x56,0x1,0xf,0x1,0x1,0x1,0x7d,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0x0,0x2,0xff,0xeb,0x0,0x0,0x4,0x67,0x6,0x42,0x0,0x17,0x0,0x1b,0x0,0x1a,0x40,0xc,0x1a,0xb,0x1b,0x2,0x72,0x0,0x17,0x17,0xd,0xd,0xa,0x12,0x0,0x3f,0x33,0x11,0x33,0x2f,0x33,0x2b,0xce,0x33,0x30,0x31,0x41,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x15,0x21,0x35,0x1,0x40,0x1,0x34,0x9c,0xdf,0x78,0x78,0xdf,0x9c,0xfe,0x2,0x1,0x53,0xab,0x3a,0x47,0x22,0x22,0x47,0x3a,0xfe,0xcc,0x1,0x67,0xfd,0x44,0x3,0x25,0x66,0xb5,0x77,0x78,0xb5,0x66,0x6,0x42,0xfa,0xc0,0x27,0x43,0x29,0x28,0x40,0x25,0x3,0x8e,0xbf,0xbf,0x0,0x0,0x2,0x0,0x6f,0x0,0x0,0x4,0xe8,0x5,0xb0,0x0,0x3,0x0,0x1b,0x0,0x23,0x40,0x11,0x1,0x2,0x5,0x0,0x3,0x6,0x6,0x5,0x5,0x12,0x10,0x13,0x2,0x72,0x12,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x33,0x11,0x33,0x33,0x30,0x31,0x41,0x1,0x7,0x1,0x13,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x2,0xe3,0x1,0xd6,0x5e,0xfe,0x2b,0x2e,0xfe,0x96,0x1,0x6a,0x4a,0x5c,0x2b,0x2b,0x5c,0x4a,0xe6,0xfe,0xa1,0x2,0x45,0xaf,0xfd,0x88,0x88,0xfd,0x3,0xf0,0xfd,0xf8,0x54,0x2,0x7,0xfe,0x53,0x1,0xf,0x32,0x59,0x38,0x3c,0x66,0x3f,0xfb,0x5f,0x5,0xb0,0x80,0xdf,0x8f,0x8d,0xd2,0x75,0x0,0x4,0x0,0x62,0xfe,0x60,0x4,0x4b,0x4,0x4e,0x0,0x3,0x0,0x8,0x0,0x1e,0x0,0x34,0x0,0x25,0x40,0x14,0x0,0x3,0x30,0x1,0x2,0x30,0x25,0x1a,0xf,0xb,0x72,0x7,0x6,0x72,0x1a,0x7,0x72,0x6,0xe,0x72,0x0,0x2b,0x2b,0x2b,0x2b,0x11,0x33,0x32,0x32,0x32,0x11,0x33,0x33,0x30,0x31,0x41,0x1,0x7,0x1,0x3,0x11,0x21,0x11,0x21,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x17,0x15,0x6,0x1e,0x2,0x33,0x32,0x3e,0x2,0x2,0x91,0x1,0x99,0x62,0xfe,0x68,0x7d,0xfe,0xaf,0x1,0x3a,0x2,0xaf,0x36,0x6a,0x9d,0x67,0x61,0x8c,0x5e,0x3a,0x11,0x11,0x3a,0x5e,0x8b,0x61,0x67,0x9d,0x6b,0x36,0xfe,0xaf,0x12,0x27,0x40,0x2f,0x36,0x49,0x2b,0x11,0x1,0x2,0x12,0x2c,0x4a,0x36,0x30,0x40,0x26,0x10,0x1,0xeb,0xfe,0x12,0x52,0x1,0xee,0x1,0xd1,0xfa,0xf6,0x5,0xda,0xfd,0xf0,0x15,0x76,0xca,0x96,0x53,0x56,0x98,0xc4,0x6d,0x1b,0x75,0xc9,0x96,0x54,0x4e,0x91,0xca,0x90,0x15,0x3f,0x69,0x4e,0x2a,0x21,0x43,0x63,0x42,0x52,0x39,0x5e,0x43,0x25,0x2d,0x51,0x6a,0x0,0x0,0x2,0x0,0x6f,0x0,0x0,0x4,0x58,0x7,0x34,0x0,0x3,0x0,0x9,0x0,0x15,0x40,0xa,0x2,0x6,0x6,0x3,0x9,0x2,0x72,0x8,0x8,0x72,0x0,0x2b,0x2b,0xce,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x21,0x11,0x4,0x58,0xfe,0xaf,0x1,0x3f,0xfd,0x88,0xfe,0xa1,0x7,0x34,0xfd,0x79,0x2,0x87,0xfe,0x7c,0xfe,0xf1,0xfb,0x5f,0x5,0xb0,0x0,0x0,0x2,0x0,0x5a,0x0,0x0,0x3,0x91,0x5,0x77,0x0,0x3,0x0,0x9,0x0,0x15,0x40,0xa,0x2,0x6,0x6,0x3,0x9,0x6,0x72,0x8,0xa,0x72,0x0,0x2b,0x2b,0xce,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x21,0x11,0x3,0x91,0xfe,0xae,0x1,0x16,0xfe,0x56,0xfe,0xaf,0x5,0x77,0xfd,0xbf,0x2,0x41,0xfe,0xc3,0xfe,0xfc,0xfc,0xca,0x4,0x3a,0x0,0x0,0x2,0x0,0x6d,0xfe,0x99,0x4,0xcd,0x5,0xb0,0x0,0x5,0x0,0x1d,0x0,0x19,0x40,0xc,0x6,0x7,0x7,0x13,0x12,0x2,0x5,0x2,0x72,0x4,0x8,0x72,0x0,0x2b,0x2b,0x32,0x2f,0x33,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x13,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x37,0x32,0x3e,0x2,0x35,0x36,0x2e,0x2,0x23,0x4,0x44,0xfd,0x87,0xfe,0xa2,0xc0,0x1,0x43,0x84,0xdd,0xa3,0x59,0x37,0x82,0xe1,0xaa,0x1,0x57,0x62,0x2c,0xc,0x1,0x25,0x46,0x63,0x3e,0x5,0xb0,0xfe,0xf1,0xfb,0x5f,0x5,0xb0,0xfc,0x92,0x1,0x4,0x46,0x91,0xdf,0x99,0x63,0xd3,0xb7,0x71,0xf5,0x4b,0x71,0x72,0x27,0x5b,0x84,0x56,0x2a,0x0,0x0,0x2,0x0,0x5a,0xfe,0xe2,0x4,0x13,0x4,0x3a,0x0,0x14,0x0,0x1a,0x0,0x1b,0x40,0xd,0x0,0x1,0x1,0xb,0x17,0x1a,0x6,0x72,0x19,0xa,0x72,0xc,0xb,0x0,0x2f,0x33,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x53,0x11,0x33,0x32,0x4,0x16,0x15,0x16,0xe,0x2,0x7,0x27,0x3e,0x2,0x35,0x36,0x26,0x26,0x23,0x1,0x11,0x21,0x11,0x21,0x11,0xf4,0xcc,0xae,0x1,0xc,0x97,0x2,0x2a,0x5b,0x8b,0x5e,0x9d,0x34,0x52,0x31,0x1,0x3d,0x72,0x51,0x1,0x95,0xfe,0x56,0xfe,0xaf,0x1,0x9c,0x1,0x4,0x69,0xd9,0xa9,0x3d,0x84,0x7f,0x6d,0x26,0xcf,0x20,0x47,0x5d,0x40,0x4f,0x66,0x32,0x2,0x9e,0xfe,0xfc,0xfc,0xca,0x4,0x3a,0x0,0xff,0xff,0x0,0xb,0xfe,0x9c,0x8,0xfa,0x5,0xb0,0x4,0x26,0x0,0xda,0x0,0x0,0x1,0x7,0x2,0x6b,0x7,0x50,0x0,0x0,0x0,0xb,0xb6,0x5,0x1b,0xc,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x25,0xfe,0x9c,0x7,0xae,0x4,0x3a,0x4,0x26,0x0,0xee,0x0,0x0,0x1,0x7,0x2,0x6b,0x6,0x4,0x0,0x0,0x0,0xb,0xb6,0x5,0x1b,0xc,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6d,0xfe,0x9c,0x5,0xe6,0x5,0xb0,0x4,0x26,0x2,0x46,0x0,0x0,0x0,0x7,0x2,0x6b,0x4,0x3c,0x0,0x0,0xff,0xff,0x0,0x76,0xfe,0x9c,0x5,0x30,0x4,0x3a,0x4,0x26,0x0,0xf1,0x0,0x0,0x1,0x7,0x2,0x6b,0x3,0x86,0x0,0x0,0x0,0xb,0xb6,0x3,0x11,0x2,0x1,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0x0,0x4,0x0,0x70,0x0,0x0,0x5,0x9a,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x2f,0x40,0x17,0xf,0xe,0xe,0xb,0xc,0x4,0x4,0xc,0xc,0xb,0x7,0x7,0xb,0xb,0x0,0x10,0x3,0x8,0x72,0x8,0x0,0x2,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x2f,0x11,0x12,0x39,0x11,0x33,0x30,0x31,0x53,0x21,0x11,0x21,0x1,0x33,0x11,0x23,0x1,0x21,0x1,0x21,0x3,0x21,0x3,0x25,0x1,0x21,0x70,0x1,0x60,0xfe,0xa0,0x1,0xa9,0xad,0xad,0x1,0x9f,0x1,0xbb,0xfe,0x3,0xfe,0x1c,0x2a,0x1,0x70,0x5,0x1,0x2e,0x1,0x99,0xfe,0x3e,0x5,0xb0,0xfa,0x50,0x4,0x79,0xfc,0xe1,0x4,0x56,0xfc,0x8a,0x1,0x3c,0xff,0x0,0xb1,0xfc,0xd9,0x0,0x0,0x4,0x0,0x76,0x0,0x0,0x4,0xf7,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x2d,0x40,0x16,0xf,0xe,0xe,0xb,0x4,0x4,0xc,0xc,0xb,0x7,0x7,0xb,0xb,0x0,0x10,0x3,0xa,0x72,0x9,0x0,0x6,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x2f,0x11,0x33,0x11,0x33,0x30,0x31,0x53,0x21,0x11,0x21,0x1,0x33,0x11,0x23,0x1,0x21,0x1,0x21,0x3,0x21,0x7,0x25,0x1,0x21,0x76,0x1,0x51,0xfe,0xaf,0x1,0x99,0x94,0x94,0x1,0x2f,0x1,0xb1,0xfe,0x87,0xfe,0x24,0x26,0x1,0x62,0x19,0x1,0x22,0x1,0x18,0xfe,0x4d,0x4,0x3a,0xfb,0xc6,0x3,0x6c,0xfd,0x6b,0x3,0x63,0xfd,0x40,0x1,0x3b,0xfc,0x8d,0xfd,0xba,0x0,0x4,0x0,0x16,0x0,0x0,0x6,0xca,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x23,0x40,0x11,0x10,0xf,0xf,0xb,0xa,0xa,0x3,0xe,0x6,0x8,0x72,0xd,0x7,0x2,0x3,0x2,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x1,0x13,0x1,0x37,0x1,0x2,0x6b,0xfd,0xab,0x3,0x3a,0xfe,0xa2,0x4,0xa6,0xfd,0xf5,0xfe,0x86,0x2a,0xef,0x1,0x18,0x3c,0xfe,0xab,0xff,0x1,0xf4,0x5,0xb0,0xfe,0xfb,0x1,0x5,0xfa,0x50,0x5,0xb0,0xfc,0x90,0x1,0x3d,0x2,0x33,0xfa,0x50,0x2,0x7d,0xeb,0xfc,0x98,0x0,0x4,0x0,0x37,0x0,0x0,0x5,0xe7,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x23,0x40,0x11,0x10,0xf,0xf,0xb,0xa,0xa,0x3,0xe,0x6,0xa,0x72,0xd,0x7,0x2,0x3,0x6,0x72,0x0,0x2b,0x32,0x32,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x2,0x76,0xfd,0xc1,0x2,0xd3,0xfe,0xaf,0x4,0xe,0xfe,0x44,0xfe,0xd1,0x25,0xb4,0xac,0x7,0xcb,0x1,0x39,0x1,0x5b,0x4,0x3a,0xfe,0xfb,0x1,0x5,0xfb,0xc6,0x4,0x3a,0xfd,0x40,0x1,0x3b,0x1,0x85,0xfb,0xc6,0x1,0xb9,0x8d,0xfd,0xba,0x0,0xff,0xff,0x0,0x6f,0xfe,0x9c,0x6,0x24,0x5,0xb0,0x4,0x26,0x0,0x2c,0x0,0x0,0x1,0x7,0x2,0x6b,0x4,0x7a,0x0,0x0,0x0,0xb,0xb6,0x3,0xf,0xa,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xfe,0x9c,0x5,0x19,0x4,0x3a,0x4,0x26,0x0,0xf4,0x0,0x0,0x1,0x7,0x2,0x6b,0x3,0x6f,0x0,0x0,0x0,0xb,0xb6,0x3,0xf,0xa,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0x0,0x4,0x0,0x6f,0x0,0x0,0x7,0xa1,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1f,0x40,0xf,0x7,0x6,0x6,0xa,0x2,0x3,0x3,0xc,0xb,0x2,0x72,0xd,0xa,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x1,0x13,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x7,0xa1,0xfd,0x91,0xfe,0xd2,0x40,0xfd,0x15,0x75,0xfe,0xa1,0x4,0xc1,0xfe,0xa2,0x5,0xb0,0xfe,0xfc,0x1,0x4,0xfd,0xbe,0xfe,0xf2,0x1,0xe,0x2,0x42,0xfa,0x50,0x5,0xb0,0xfa,0x50,0x5,0xb0,0x0,0x0,0x4,0x0,0x5a,0x0,0x0,0x5,0x6d,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1f,0x40,0xf,0x7,0x6,0x6,0xa,0x2,0x3,0x3,0xc,0xb,0x6,0x72,0xd,0xa,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x13,0x3,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0x6d,0xfe,0x68,0x4,0x8d,0xfd,0xe4,0x7b,0xfe,0xaf,0x3,0xca,0xfe,0xae,0x4,0x3a,0xfe,0xfc,0x1,0x4,0xfe,0x5a,0xfe,0xfd,0x1,0x3,0x1,0xa6,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0x0,0x2,0x0,0x6d,0xfe,0x96,0x8,0x3a,0x5,0xb0,0x0,0x7,0x0,0x1f,0x0,0x19,0x40,0xc,0x8,0x9,0x9,0x14,0x4,0x7,0x2,0x72,0x6,0x8,0x72,0x2,0x0,0x2f,0x2b,0x2b,0x32,0x2f,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x1,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x37,0x32,0x3e,0x2,0x35,0x36,0x2e,0x2,0x23,0x5,0x35,0xfe,0xa1,0xfd,0xf5,0xfe,0xa2,0x4,0x2d,0x1,0x43,0x84,0xdd,0xa3,0x59,0x37,0x82,0xe1,0xaa,0x1,0x57,0x62,0x2c,0xc,0x1,0x25,0x46,0x63,0x3e,0x5,0xb0,0xfa,0x50,0x4,0xa1,0xfb,0x5f,0x5,0xb0,0xfc,0x8f,0x1,0x4,0x46,0x91,0xdf,0x99,0x63,0xd3,0xb7,0x71,0xf5,0x4b,0x71,0x72,0x27,0x5b,0x84,0x56,0x2a,0x0,0x4,0x0,0x5a,0xfe,0xec,0x6,0xc1,0x4,0x3a,0x0,0x14,0x0,0x18,0x0,0x1c,0x0,0x20,0x0,0x23,0x40,0x11,0x1e,0x17,0x18,0x18,0x0,0x1,0x1,0xb,0x1d,0x1c,0x6,0x72,0x1b,0xa,0x72,0xc,0xb,0x0,0x2f,0x33,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x32,0x11,0x33,0x2f,0x30,0x31,0x41,0x11,0x21,0x32,0x4,0x16,0x15,0x16,0xe,0x2,0x7,0x27,0x3e,0x2,0x35,0x36,0x26,0x26,0x23,0x1,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x1f,0x1,0x3b,0xb4,0x1,0x15,0x9c,0x2,0x2a,0x5b,0x8b,0x5e,0x9d,0x34,0x52,0x31,0x1,0x41,0x7c,0x57,0xfe,0xe5,0xfd,0xff,0x6d,0xfe,0xaf,0x3,0xce,0xfe,0xad,0x1,0xa6,0x1,0x4,0x69,0xd9,0xa9,0x3d,0x84,0x7f,0x6d,0x26,0xcf,0x20,0x47,0x5d,0x40,0x4f,0x66,0x32,0x2,0x94,0xfe,0xfc,0x1,0x4,0xfb,0xc6,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0x0,0x1,0x0,0x56,0xff,0xeb,0x6,0x48,0x5,0xc5,0x0,0x43,0x0,0x1d,0x40,0xe,0x39,0xc,0xc,0x23,0x22,0x3,0x72,0x0,0x1,0x1,0x2e,0x17,0x9,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x65,0x15,0x22,0x24,0x26,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0x2,0x6,0x4,0x23,0x22,0x24,0x26,0x26,0x35,0x35,0x34,0x3e,0x2,0x33,0x11,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x6,0x48,0xd2,0xfe,0xa9,0xf7,0x85,0x3e,0x73,0xa1,0x62,0x6d,0xb3,0x81,0x46,0x6e,0xcd,0xfe,0xe6,0xad,0xa7,0xfe,0xef,0xc4,0x6a,0x50,0x93,0xcd,0x7c,0x2a,0x43,0x2e,0x18,0x31,0x5d,0x88,0x57,0x60,0x9b,0x6d,0x3a,0x11,0x23,0x32,0x21,0x1b,0x29,0x1d,0xe,0x50,0x9b,0xe2,0xf7,0xff,0x6d,0xc9,0x1,0x14,0xa7,0xb8,0x74,0xc8,0x95,0x53,0x5a,0xa5,0xe2,0x87,0x8c,0x9d,0xfe,0xf2,0xca,0x71,0x67,0xb8,0xf6,0x8e,0xe5,0x7e,0xd8,0xa2,0x5a,0xfe,0xe6,0x2f,0x54,0x71,0x42,0xe7,0x56,0x90,0x6a,0x3a,0x46,0x7d,0xa8,0x62,0xbb,0x5b,0x71,0x3d,0x17,0x18,0x3a,0x68,0x50,0xbb,0x67,0xb4,0x88,0x4d,0x0,0x1,0x0,0x49,0xff,0xe0,0x5,0x1e,0x4,0x4e,0x0,0x43,0x0,0x1d,0x40,0xe,0x39,0xc,0xc,0x23,0x22,0x7,0x72,0x0,0x1,0x1,0x2e,0x17,0xb,0x72,0x0,0x2b,0x32,0x32,0x2f,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x65,0x15,0x22,0x24,0x26,0x26,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x11,0xe,0x3,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x5,0x1e,0xc2,0xfe,0xea,0xb2,0x55,0x33,0x5d,0x83,0x4f,0x54,0x8b,0x63,0x36,0x59,0xa5,0xe6,0x8c,0x88,0xe0,0xa1,0x57,0x43,0x7c,0xac,0x69,0x19,0x27,0x1c,0xf,0x22,0x40,0x5c,0x39,0x42,0x6a,0x4a,0x28,0xc,0x17,0x1f,0x13,0x13,0x1f,0x17,0xc,0x43,0x83,0xbf,0x86,0xa6,0x53,0x95,0xc7,0x74,0xae,0x57,0x95,0x71,0x3f,0x47,0x7f,0xa9,0x63,0xa4,0x69,0xb3,0x86,0x4a,0x51,0x91,0xc3,0x72,0x71,0x66,0xad,0x80,0x48,0xfe,0xf4,0x5,0x20,0x35,0x47,0x2c,0x73,0x39,0x61,0x47,0x27,0x24,0x41,0x59,0x34,0xa6,0x25,0x3f,0x30,0x1b,0x19,0x2c,0x39,0x20,0xb2,0x4b,0x84,0x64,0x38,0xff,0xff,0x0,0x4,0xfe,0x9c,0x5,0x6a,0x5,0xb0,0x4,0x26,0x0,0x3c,0x0,0x0,0x1,0x7,0x2,0x6b,0x3,0xc0,0x0,0x0,0x0,0xb,0xb6,0x1,0xf,0x6,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0xc,0xfe,0x9c,0x4,0x5c,0x4,0x3a,0x4,0x26,0x0,0x5c,0x0,0x0,0x1,0x7,0x2,0x6b,0x2,0xb2,0x0,0x0,0x0,0xb,0xb6,0x1,0xf,0x6,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0x0,0x3,0x0,0x17,0xfe,0xa1,0x6,0xf6,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0x11,0x0,0x1d,0x40,0xe,0x9,0xd,0xd,0x8,0xa,0x8,0x72,0x5,0x10,0xc,0x2,0x3,0x2,0x72,0x0,0x2b,0x32,0x32,0x32,0x2f,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x3,0x21,0x11,0x23,0x11,0x1,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0xdc,0xfc,0x3b,0x6,0xdf,0x14,0xfe,0xb5,0x6c,0xfc,0x24,0x1,0x5e,0x2,0xb,0x1,0x60,0x5,0xb0,0xfe,0xfb,0x1,0x5,0xfb,0x5b,0xfd,0x96,0x1,0x5f,0x1,0xb,0xfe,0xf5,0x5,0xb0,0xfb,0x5e,0x4,0xa2,0xfa,0x50,0x0,0x0,0x3,0x0,0x34,0xfe,0xbf,0x5,0x77,0x4,0x3a,0x0,0x3,0x0,0xb,0x0,0x11,0x0,0x1f,0x40,0xf,0x2,0x3,0x3,0xd,0xa,0x5,0x6,0x72,0x8,0x7,0x7,0x10,0x4,0xa,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x2f,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x13,0x3,0x21,0x11,0x23,0x11,0x2,0xf7,0xfd,0x3d,0xc3,0x1,0x51,0x1,0x2a,0x1,0x53,0xb2,0x14,0xfe,0xc2,0x6f,0x4,0x3a,0xfe,0xfb,0x1,0x5,0xfb,0xc6,0x4,0x3a,0xfc,0xca,0x3,0x36,0xfb,0xc6,0x1,0x2,0xfd,0xbd,0x1,0x41,0x1,0x2,0x0,0xff,0xff,0x0,0x86,0xfe,0x9c,0x6,0x1b,0x5,0xb0,0x4,0x26,0x0,0xe1,0x0,0x0,0x1,0x7,0x2,0x6b,0x4,0x71,0x0,0x0,0x0,0xb,0xb6,0x2,0x1d,0x19,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xfe,0x9c,0x5,0x17,0x4,0x3a,0x4,0x26,0x0,0xf9,0x0,0x0,0x1,0x7,0x2,0x6b,0x3,0x6d,0x0,0x0,0x0,0xb,0xb6,0x2,0x1b,0x2,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0x0,0x3,0x0,0x5b,0x0,0x0,0x5,0x1,0x5,0xb0,0x0,0x3,0x0,0x19,0x0,0x1d,0x0,0x23,0x40,0x11,0x3,0x3,0xa,0xa,0x15,0x2,0x2,0x15,0x15,0x4,0x1c,0x8,0x72,0x1b,0x4,0x2,0x72,0x0,0x2b,0x32,0x2b,0x11,0x39,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x2f,0x30,0x31,0x41,0x11,0x23,0x11,0x1,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x37,0x11,0xe,0x3,0x23,0x22,0x24,0x26,0x35,0x1,0x21,0x11,0x21,0x2,0xfc,0xaa,0xfe,0x9,0x1,0x5f,0x39,0x72,0x55,0x16,0x53,0x5e,0x52,0x14,0x15,0x55,0x61,0x51,0x11,0xb7,0xfe,0xef,0x97,0x3,0x47,0x1,0x5f,0xfe,0xa1,0x4,0x33,0xfc,0xef,0x3,0x11,0x1,0x7d,0xfe,0x45,0x58,0x62,0x28,0x5,0xa,0xd,0x9,0xfe,0xf2,0x8,0xe,0xa,0x5,0x6a,0xdc,0xaa,0x1,0xbb,0xfa,0x50,0x0,0x3,0x0,0x5c,0x0,0x0,0x4,0x2c,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x1b,0x0,0x23,0x40,0x10,0x0,0x0,0x18,0x18,0xd,0x1,0x1,0xd,0xd,0x5,0xa,0x72,0x12,0x4,0x6,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2f,0x33,0x7d,0x2f,0x11,0x33,0x11,0x33,0x18,0x2f,0x30,0x31,0x41,0x11,0x23,0x11,0x25,0x11,0x21,0x11,0x13,0x11,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x2,0x99,0xaa,0x2,0x3d,0xfe,0xad,0xa7,0x16,0x63,0x6c,0x26,0xa9,0xf0,0x80,0x1,0x51,0x26,0x58,0x4a,0x2b,0x54,0x59,0x3,0x49,0xfd,0x57,0x2,0xa9,0xf1,0xfb,0xc6,0x4,0x3a,0xfe,0x41,0xfe,0xfc,0xf,0x1c,0x11,0x56,0xb9,0x93,0x1,0x5d,0xfe,0xa3,0x41,0x45,0x18,0xe,0x1b,0x0,0x0,0x2,0x0,0x89,0x0,0x0,0x5,0x2f,0x5,0xb0,0x0,0x15,0x0,0x19,0x0,0x19,0x40,0xc,0x1,0x17,0x6,0x11,0x11,0x17,0x18,0x2,0x72,0x17,0x8,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x61,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x7,0x11,0x3e,0x3,0x33,0x32,0x4,0x16,0x15,0x1,0x21,0x11,0x21,0x5,0x2f,0xfe,0xa1,0x39,0x72,0x56,0x15,0x53,0x5e,0x52,0x14,0x15,0x55,0x61,0x51,0x10,0xb8,0x1,0x11,0x97,0xfc,0xb9,0xfe,0xa1,0x1,0x5f,0x1,0xbb,0x58,0x62,0x28,0x5,0xa,0xd,0x9,0x1,0xe,0x8,0xe,0xa,0x5,0x6a,0xdc,0xaa,0xfe,0x45,0x5,0xb0,0x0,0x0,0x2,0xff,0xb0,0xff,0xe9,0x5,0xa4,0x5,0xc4,0x0,0x9,0x0,0x36,0x0,0x25,0x40,0x12,0x5,0x1d,0x1,0x1,0x1d,0x1d,0x6,0x1c,0x1c,0xa,0x24,0x15,0x3,0x72,0x2f,0xa,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x2f,0x11,0x33,0x30,0x31,0x43,0x33,0x14,0x16,0x16,0x33,0x15,0x22,0x26,0x26,0x1,0x22,0x24,0x26,0x26,0x35,0x11,0x34,0x3e,0x2,0x17,0x32,0x1e,0x2,0x15,0x15,0x21,0x11,0x21,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x13,0xe,0x2,0x50,0xdd,0x2b,0x55,0x3e,0x81,0xb8,0x62,0x3,0xf3,0xae,0xfe,0xfd,0xac,0x55,0x5e,0xaa,0xe3,0x85,0x8e,0xd8,0x93,0x4a,0xfc,0x59,0x2,0x49,0x19,0x37,0x57,0x3e,0x45,0x67,0x44,0x22,0x22,0x4d,0x84,0x61,0x81,0xc6,0x37,0x31,0x15,0x74,0xb3,0x4,0x3a,0x45,0x63,0x34,0xea,0x6e,0xcc,0xfc,0x3b,0x5d,0xa8,0xe7,0x8a,0x1,0x8,0x85,0xdd,0xa3,0x58,0x1,0x61,0xb6,0xff,0x9e,0xb2,0x1,0x15,0x1f,0x37,0x60,0x48,0x29,0x30,0x54,0x6f,0x3f,0xfe,0xf8,0x45,0x79,0x5b,0x34,0x27,0x12,0xfe,0xe6,0xa,0x22,0x1c,0x0,0x2,0xff,0xac,0xff,0xec,0x4,0xdc,0x4,0x4e,0x0,0x8,0x0,0x35,0x0,0x25,0x40,0x12,0x4,0x1c,0x1,0x1,0x1c,0x1c,0x5,0x1b,0x1b,0x9,0x23,0x14,0x7,0x72,0x2e,0x9,0xb,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x2f,0x11,0x33,0x30,0x31,0x43,0x33,0x14,0x16,0x33,0x15,0x22,0x26,0x26,0x1,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x21,0x35,0x21,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0xe,0x2,0x54,0xc2,0x73,0x6d,0x83,0xbc,0x63,0x3,0x69,0x85,0xcf,0x8f,0x4b,0x41,0x83,0xc3,0x82,0x74,0xb6,0x7f,0x43,0xfc,0x8b,0x2,0x2c,0x15,0x2b,0x3d,0x28,0x37,0x47,0x28,0x10,0x21,0x3f,0x5a,0x39,0x45,0x86,0x30,0x99,0x22,0x79,0xa7,0x3,0x60,0x67,0x76,0xcc,0x67,0xbf,0xfd,0xf,0x53,0x92,0xbe,0x6a,0x26,0x77,0xcb,0x98,0x55,0x4a,0x8a,0xc4,0x7a,0x89,0xd3,0x1a,0x28,0x3f,0x2c,0x17,0x30,0x53,0x6c,0x3c,0x26,0x3c,0x62,0x45,0x26,0x34,0x3c,0xb6,0x2f,0x58,0x37,0x0,0x3,0x0,0x70,0xfe,0x8f,0x5,0x30,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0x21,0x0,0x21,0x40,0x10,0xa,0x6,0x6,0xb,0x8,0x7,0x7,0x17,0x16,0x9,0x3,0x2,0x72,0x2,0x8,0x72,0x0,0x2b,0x2b,0x32,0x2f,0x33,0x39,0x2f,0x33,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x1,0x1,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x35,0x32,0x3e,0x2,0x35,0x36,0x2e,0x2,0x23,0x1,0xd0,0xfe,0xa0,0x4,0x86,0xfd,0xcd,0xfe,0xcf,0x2a,0xbf,0x1,0x14,0xfe,0x49,0x1,0x4e,0x83,0xde,0xa3,0x5a,0x36,0x84,0xe5,0xae,0x58,0x61,0x2b,0xa,0x1,0x24,0x43,0x5e,0x3b,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfc,0x89,0x1,0x3b,0x2,0x3c,0xfc,0x86,0x1,0xd,0x45,0x91,0xe0,0x9b,0x5e,0xd5,0xba,0x76,0xff,0x4d,0x71,0x6e,0x22,0x5a,0x83,0x54,0x29,0x0,0x0,0x3,0x0,0x76,0xfe,0xc1,0x4,0x85,0x4,0x3a,0x0,0x3,0x0,0x9,0x0,0x1e,0x0,0x21,0x40,0x10,0x16,0x15,0x9,0x6,0x72,0x6,0xa,0xa,0x7,0xb,0xb,0x1,0x3,0x6,0x72,0x1,0x0,0x2f,0x2b,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x2b,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x1,0x11,0x21,0x32,0x4,0x16,0x15,0x16,0xe,0x2,0x7,0x27,0x3e,0x2,0x37,0x36,0x26,0x26,0x23,0x1,0xc7,0xfe,0xaf,0x4,0xf,0xfe,0x3c,0xfe,0xd9,0x26,0xad,0xb3,0xfe,0x9,0x1,0x3b,0xb5,0x1,0x14,0x9c,0x2,0x2a,0x5b,0x8a,0x5e,0x9e,0x34,0x52,0x31,0x1,0x1,0x42,0x7b,0x58,0x4,0x3a,0xfb,0xc6,0x4,0x3a,0xfd,0x40,0x1,0x3b,0x1,0x85,0xfd,0x41,0x1,0x4,0x69,0xd9,0xa9,0x3e,0x84,0x7e,0x6d,0x26,0xcf,0x1f,0x48,0x5d,0x40,0x4f,0x66,0x32,0x0,0xff,0xff,0x0,0x25,0xfe,0x55,0x6,0x24,0x5,0xb0,0x4,0x26,0x0,0xdd,0x0,0x0,0x1,0x7,0x0,0x10,0x4,0x7f,0xff,0xdd,0x0,0xb,0xb6,0x3,0x24,0x6,0x0,0x0,0x98,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0xa,0xfe,0x55,0x5,0x18,0x4,0x3a,0x4,0x26,0x0,0xf2,0x0,0x0,0x1,0x7,0x0,0x10,0x3,0x73,0xff,0xdd,0x0,0xb,0xb6,0x3,0x24,0x6,0x1,0x0,0x98,0x56,0x0,0x2b,0x34,0x0,0x0,0x1,0x0,0x6d,0xfe,0x4b,0x5,0x36,0x5,0xb0,0x0,0x19,0x0,0x19,0x40,0xc,0x19,0x8,0x72,0x17,0x2,0x2,0x11,0xa,0x5,0x0,0x2,0x72,0x0,0x2b,0x32,0x2f,0x33,0x39,0x2f,0x33,0x2b,0x30,0x31,0x53,0x21,0x11,0x21,0x11,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x13,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x21,0x11,0x21,0x6d,0x1,0x5e,0x2,0xc,0x1,0x5f,0x65,0xbb,0x82,0x2b,0x4d,0x2d,0xe,0x1b,0x25,0x25,0x26,0x34,0x1b,0xfd,0xf4,0xfe,0xa2,0x5,0xb0,0xfd,0xa2,0x2,0x5e,0xfa,0x49,0x8b,0xc0,0x63,0x7,0xa,0x1,0x9,0x6,0x5,0x23,0x47,0x35,0x2,0x4b,0xfd,0xbc,0x0,0x0,0x1,0x0,0x5a,0xfe,0x4b,0x4,0x24,0x4,0x3a,0x0,0x19,0x0,0x1d,0x40,0xf,0x19,0xa,0x72,0x17,0x2,0x2,0x0,0x11,0xa,0xf,0x72,0x5,0x0,0x6,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x2b,0x30,0x31,0x53,0x21,0x11,0x21,0x11,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x21,0x11,0x21,0x5a,0x1,0x51,0x1,0x27,0x1,0x52,0x62,0xb7,0x80,0x2b,0x4a,0x2b,0xe,0x1a,0x28,0x22,0x26,0x34,0x1b,0xfe,0xd9,0xfe,0xaf,0x4,0x3a,0xfe,0x5a,0x1,0xa6,0xfb,0xb7,0x88,0xbd,0x61,0x7,0xa,0xff,0x6,0x6,0x24,0x49,0x35,0x1,0xa0,0xfe,0x6f,0xff,0xff,0x0,0x6f,0xfe,0x55,0x6,0x1f,0x5,0xb0,0x4,0x26,0x0,0x2c,0x0,0x0,0x1,0x7,0x0,0x10,0x4,0x7a,0xff,0xdd,0x0,0xb,0xb6,0x3,0x16,0xa,0x1,0x0,0x98,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xfe,0x55,0x5,0x15,0x4,0x3a,0x4,0x26,0x0,0xf4,0x0,0x0,0x1,0x7,0x0,0x10,0x3,0x70,0xff,0xdd,0x0,0xb,0xb6,0x3,0x16,0xa,0x1,0x0,0x98,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x55,0x7,0x83,0x5,0xb0,0x4,0x26,0x0,0x31,0x0,0x0,0x1,0x7,0x0,0x10,0x5,0xde,0xff,0xdd,0x0,0xb,0xb6,0x3,0x1b,0xf,0x0,0x0,0x98,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x76,0xfe,0x55,0x6,0x93,0x4,0x3a,0x4,0x26,0x0,0xf3,0x0,0x0,0x1,0x7,0x0,0x10,0x4,0xee,0xff,0xdd,0x0,0xb,0xb6,0x3,0x19,0xb,0x1,0x0,0x98,0x56,0x0,0x2b,0x34,0x0,0x0,0x1,0x0,0x45,0xff,0xea,0x5,0x3f,0x5,0xc5,0x0,0x2c,0x0,0x1b,0x40,0xd,0x1a,0xb,0x11,0x14,0x14,0xb,0x25,0x0,0x3,0x72,0xb,0x9,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x32,0x4,0x16,0x16,0x15,0x15,0x14,0xe,0x2,0x27,0x22,0x2e,0x2,0x35,0x35,0x21,0x11,0x21,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x7,0x3,0x3e,0x2,0x2,0x66,0xb7,0x1,0x12,0xb5,0x5b,0x60,0xac,0xe8,0x87,0x9c,0xef,0xa1,0x53,0x3,0xee,0xfd,0x70,0x20,0x44,0x6f,0x4e,0x48,0x6c,0x47,0x23,0x26,0x57,0x92,0x6d,0x88,0xd0,0x3b,0x31,0x17,0x79,0xbb,0x5,0xc5,0x62,0xb2,0xf4,0x92,0xab,0x92,0xf3,0xb1,0x60,0x1,0x61,0xb5,0xff,0x9e,0xb1,0xfe,0xec,0x1f,0x37,0x60,0x48,0x29,0x39,0x64,0x84,0x4b,0xab,0x4c,0x85,0x65,0x3a,0x27,0x12,0x1,0x1a,0xa,0x23,0x1c,0x0,0x2,0x0,0x44,0xff,0xeb,0x4,0x81,0x5,0xb0,0x0,0x7,0x0,0x25,0x0,0x1f,0x40,0xf,0x5,0x8,0x8,0x4,0x25,0x25,0x0,0x1c,0x12,0x9,0x72,0x7,0x0,0x2,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x11,0x33,0x33,0x11,0x33,0x30,0x31,0x53,0x21,0x17,0x1,0x21,0x35,0x1,0x21,0x1,0x37,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x8d,0x3,0xe2,0x1,0xfe,0x3a,0xfe,0xfb,0x1,0x3d,0xfd,0xab,0x1,0x18,0xbf,0xac,0xf1,0x80,0x52,0x96,0xcb,0x79,0x61,0xbd,0x98,0x5b,0x1,0x5f,0x2b,0x50,0x37,0x41,0x5c,0x31,0x3a,0x72,0x53,0x7f,0x5,0xb0,0xe1,0xfe,0x20,0x7d,0x1,0x35,0xfe,0xc5,0x17,0x70,0xd8,0x9d,0x66,0xa0,0x6e,0x39,0x31,0x67,0xa1,0x70,0x2c,0x46,0x29,0x2d,0x4c,0x2e,0x5e,0x73,0x35,0x0,0x2,0x0,0x47,0xfe,0x75,0x4,0x7a,0x4,0x3a,0x0,0x7,0x0,0x25,0x0,0x1f,0x40,0xe,0x8,0x5,0x5,0x4,0x25,0x25,0x0,0x1c,0x18,0x12,0x7,0x0,0x6,0x72,0x0,0x2b,0x32,0x2f,0xcc,0x33,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x53,0x21,0x17,0x1,0x23,0x35,0x1,0x21,0x1,0x37,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x83,0x3,0xe3,0x1,0xfe,0x33,0xf6,0x1,0x45,0xfd,0x9a,0x1,0x21,0xbc,0xab,0xf0,0x7f,0x51,0x94,0xc9,0x78,0x61,0xbb,0x97,0x5a,0x1,0x53,0x2d,0x54,0x39,0x43,0x5f,0x33,0x3b,0x74,0x55,0x81,0x4,0x3a,0xd8,0xfe,0x14,0x7d,0x1,0x43,0xfe,0xb9,0x15,0x70,0xd7,0x9c,0x66,0x9f,0x6e,0x39,0x31,0x67,0xa1,0x6f,0x2e,0x4a,0x2c,0x2f,0x50,0x31,0x5f,0x75,0x35,0x0,0xff,0xff,0x0,0x15,0xfe,0x4b,0x4,0xa3,0x5,0xb0,0x4,0x26,0x0,0xb1,0x5f,0x0,0x0,0x26,0x2,0x40,0x8b,0x0,0x0,0x7,0x2,0x6e,0x1,0x9d,0x0,0x0,0xff,0xff,0xff,0xfd,0xfe,0x41,0x3,0xa1,0x4,0x3a,0x4,0x26,0x0,0xec,0x4d,0x0,0x0,0x27,0x2,0x40,0xff,0x73,0xff,0x4f,0x0,0x7,0x2,0x6e,0x1,0x3b,0xff,0xf6,0xff,0xff,0x0,0x4,0xfe,0x4b,0x5,0xc6,0x5,0xb0,0x4,0x26,0x0,0x3c,0x0,0x0,0x0,0x7,0x2,0x6e,0x4,0x0,0x0,0x0,0xff,0xff,0x0,0xc,0xfe,0x4b,0x4,0xb8,0x4,0x3a,0x4,0x26,0x0,0x5c,0x0,0x0,0x0,0x7,0x2,0x6e,0x2,0xf2,0x0,0x0,0x0,0x1,0x0,0x41,0x0,0x0,0x4,0x9c,0x5,0xb0,0x0,0x18,0x0,0x12,0xb7,0x3,0x0,0x0,0xb,0x10,0xd,0x2,0x72,0x0,0x2b,0x2f,0x33,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x33,0x11,0x21,0x11,0x21,0x22,0x24,0x26,0x35,0x34,0x3e,0x2,0x2,0x88,0x1,0x39,0xfe,0xc7,0x4b,0x67,0x35,0x35,0x67,0x4b,0xb5,0x1,0x5f,0xfd,0xec,0xb0,0xfe,0xf9,0x90,0x52,0x9a,0xd7,0x3,0xda,0xfe,0xf2,0x3f,0x64,0x3a,0x3c,0x66,0x3f,0x4,0xa2,0xfa,0x50,0x7f,0xdf,0x8f,0x6b,0xb3,0x86,0x49,0x0,0x0,0x2,0x0,0x81,0x0,0x0,0x7,0x26,0x5,0xb0,0x0,0x18,0x0,0x2d,0x0,0x1f,0x40,0xe,0x1b,0xb,0xb,0x10,0x25,0x25,0x3,0x0,0x0,0x1a,0x10,0xd,0x2,0x72,0x0,0x2b,0x2f,0x33,0x39,0x2f,0x33,0x33,0x2f,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x33,0x11,0x21,0x11,0x21,0x22,0x24,0x26,0x35,0x34,0x3e,0x2,0x1,0x23,0x11,0x33,0x3e,0x2,0x37,0x36,0x2e,0x2,0x27,0x21,0x1e,0x2,0x7,0xe,0x2,0x2,0xc7,0x1,0x38,0xfe,0xc8,0x4b,0x67,0x35,0x35,0x67,0x4b,0xb5,0x1,0x5f,0xfd,0xec,0xb0,0xfe,0xfa,0x90,0x52,0x99,0xd7,0x2,0xd4,0x88,0x88,0x49,0x49,0x1b,0x2,0x1,0x8,0xf,0x17,0xf,0x1,0x57,0x12,0x1f,0x14,0x2,0x2,0x69,0xe4,0x3,0xda,0xfe,0xf2,0x3f,0x64,0x3a,0x3c,0x66,0x3f,0x4,0xa2,0xfa,0x50,0x7f,0xdf,0x8f,0x6b,0xb3,0x86,0x49,0xfc,0x26,0x1,0xf,0x1,0x5c,0x7c,0x2f,0x27,0x75,0x81,0x75,0x27,0x33,0xa8,0xa8,0x36,0x8f,0xf4,0x94,0x0,0x0,0x3,0x0,0x57,0xff,0xe9,0x6,0x90,0x6,0x18,0x0,0x16,0x0,0x2b,0x0,0x47,0x0,0x1d,0x40,0x10,0x33,0x44,0xb,0x72,0x3b,0x2d,0x1,0x72,0x1d,0x12,0xb,0x72,0x27,0x6,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2b,0x2f,0x2b,0x32,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x3,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x5,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x26,0x26,0x57,0x36,0x6b,0x9e,0x67,0x46,0x70,0x56,0x40,0x2a,0xc,0xf,0x3b,0x5e,0x84,0x58,0x66,0x9d,0x6b,0x36,0x1,0x51,0x11,0x26,0x41,0x30,0x41,0x5b,0x2f,0x3,0x2,0x1a,0x33,0x4b,0x30,0x2f,0x41,0x28,0x12,0x1,0x38,0x1,0x51,0x17,0x2b,0x1e,0x29,0x3e,0x2b,0x18,0x2,0x2,0x21,0x1e,0x1,0x4b,0x1a,0x2b,0x2,0x2,0x53,0x8d,0xb6,0x65,0x82,0xbd,0x6a,0x2,0x6,0x15,0x7b,0xce,0x97,0x53,0x39,0x68,0x8e,0xaa,0x5e,0x19,0x6e,0xc0,0x92,0x53,0x4f,0x91,0xc5,0x8b,0x15,0x3d,0x66,0x4b,0x29,0x3a,0x6d,0x4d,0x4f,0x42,0x68,0x48,0x26,0x2f,0x53,0x6e,0xd7,0x4,0x95,0xfb,0x6b,0x29,0x42,0x25,0x1,0x28,0x4a,0x69,0x42,0x64,0xcb,0x64,0x61,0xcb,0x67,0x8b,0xcf,0x88,0x44,0x2,0x53,0xb6,0x0,0x2,0x0,0x48,0xff,0xe9,0x6,0x0,0x5,0xb0,0x0,0x20,0x0,0x46,0x0,0x21,0x40,0x10,0x28,0x27,0x27,0x2,0x1,0x1,0xe,0x32,0x43,0x9,0x72,0x3a,0xd,0xe,0x2,0x72,0x0,0x2b,0x32,0x2f,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x3,0x7,0x22,0x6,0x6,0x23,0x6,0x6,0x13,0x35,0x35,0x34,0x26,0x26,0x23,0x37,0x32,0x1e,0x2,0x15,0x15,0x14,0x16,0x16,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x26,0x26,0x1,0xbb,0xfe,0xf5,0xd2,0x55,0x68,0x30,0x18,0x33,0x53,0x3b,0xfe,0xb2,0x1,0x4e,0x8a,0xd3,0x90,0x4a,0x24,0x45,0x67,0x87,0x53,0x3,0x6,0x6,0x4,0x28,0x19,0x9b,0x2a,0x4f,0x36,0x12,0x91,0xc4,0x74,0x33,0xa,0x15,0xe,0x28,0x3e,0x2a,0x18,0x2,0x2,0x21,0x1e,0x1,0x58,0x1a,0x2b,0x2,0x2,0x59,0x97,0xc3,0x6c,0x6f,0xa2,0x5b,0x2,0x47,0x1,0x13,0x29,0x52,0x3d,0x20,0x33,0x25,0x13,0x1,0x13,0x35,0x6a,0x9b,0x66,0x38,0x61,0x52,0x42,0x31,0x10,0x24,0x25,0x9,0x4,0xfe,0xfa,0x3,0x3f,0x39,0x56,0x30,0x89,0x31,0x57,0x77,0x47,0x44,0x14,0x21,0x14,0x1,0x26,0x48,0x66,0x3f,0x64,0xcb,0x64,0x61,0xcb,0x67,0x8b,0xcf,0x89,0x43,0x2,0x46,0x9b,0x0,0x2,0x0,0x2b,0xff,0xe4,0x5,0x2a,0x4,0x3a,0x0,0x1d,0x0,0x42,0x0,0x25,0x40,0x12,0x3e,0x3d,0x3d,0x1b,0x2,0x1,0x1,0xd,0x2a,0x2a,0x22,0x33,0xb,0x72,0xc,0xd,0x6,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x2f,0x11,0x39,0x2f,0x33,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x27,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x3,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x7,0xe,0x2,0x7,0x6,0x6,0x5,0x35,0x6,0x16,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x2e,0x2,0x27,0x35,0x34,0x26,0x26,0x23,0x37,0x32,0x16,0x16,0x15,0x1,0xb3,0xfe,0xcf,0x2,0xb7,0x2a,0x34,0x17,0x17,0x34,0x2a,0xfe,0xfa,0x6,0x1,0xc,0x92,0xcb,0x6a,0x20,0x3e,0x5a,0x3b,0x3,0x5,0x4,0x3,0x22,0xf,0x1,0x61,0x1,0x1a,0x23,0x19,0x28,0x1c,0x10,0x1,0x2,0x20,0x1e,0x1,0x4a,0x1a,0x2c,0x2,0x2,0x45,0x76,0x98,0x54,0x66,0x99,0x67,0x39,0x6,0xf,0x1c,0x15,0x28,0x8b,0x9d,0x42,0x1,0x75,0xf3,0x17,0x2a,0x1d,0x1f,0x32,0x1d,0x1,0x6,0x4c,0x91,0x66,0x33,0x51,0x40,0x30,0x11,0x2,0x33,0x33,0x3,0x8,0x5,0x66,0x1,0x2b,0x3b,0x1,0x22,0x3f,0x59,0x39,0x4d,0xa5,0x4d,0x4d,0xa2,0x50,0x70,0xa8,0x6f,0x37,0x1,0x1a,0x3a,0x5d,0x41,0x4b,0x1b,0x25,0x14,0xb0,0x3e,0x6b,0x45,0x0,0x0,0x3,0x0,0x3b,0xfe,0x80,0x4,0xbb,0x5,0xb0,0x0,0x1f,0x0,0x34,0x0,0x3f,0x0,0x1f,0x40,0xe,0x3a,0x39,0x3f,0x2c,0xc,0xd,0x2,0x72,0x21,0x20,0x20,0x1,0x1,0x2,0x0,0x2f,0x33,0x11,0x33,0x11,0x33,0x2b,0x32,0x2f,0x33,0x2f,0x33,0x30,0x31,0x41,0x21,0x3,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x3,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x3,0x7,0xe,0x2,0x7,0xe,0x2,0x23,0x37,0x32,0x16,0x16,0x15,0x15,0x14,0x16,0x16,0x17,0x15,0x21,0x2e,0x2,0x35,0x35,0x34,0x26,0x26,0x1,0x7,0x14,0x6,0x7,0x27,0x3e,0x2,0x35,0x35,0x1,0xda,0xfe,0x93,0x2,0x1,0x1c,0x44,0x5c,0x30,0x30,0x5e,0x45,0xfe,0xc0,0x9,0x1,0x49,0xa8,0xf6,0x86,0x1e,0x3a,0x57,0x71,0x46,0x2,0x6,0x6,0x3,0x1a,0xd,0x10,0x6b,0x59,0xb2,0xcb,0x54,0xc,0x20,0x1f,0xfe,0xa4,0x1e,0x1c,0x7,0x30,0x60,0x2,0xe4,0x1,0x77,0x56,0xab,0x15,0x32,0x24,0x2,0x2e,0x1,0x4,0x2a,0x51,0x39,0x3a,0x59,0x33,0x1,0x4,0x69,0xc3,0x89,0x39,0x60,0x51,0x41,0x32,0x13,0x1,0x1f,0x1f,0x1,0x6,0xe,0x9,0xa1,0x60,0xa8,0x6d,0x5c,0x17,0x5e,0x5d,0x18,0x14,0x19,0x6a,0x68,0x15,0x58,0x46,0x5f,0x31,0xfe,0xd8,0xd6,0x79,0xec,0x4b,0x50,0x2e,0x5d,0x74,0x4e,0xe9,0x0,0x3,0x0,0x67,0xfe,0x75,0x4,0x90,0x4,0x3a,0x0,0x1e,0x0,0x33,0x0,0x3e,0x0,0x1e,0x40,0xe,0x38,0x20,0x1f,0x1f,0x2,0x1,0x1,0x3e,0x2b,0xa,0xc,0xd,0x6,0x72,0x0,0x2b,0x32,0x3f,0x33,0x39,0x2f,0x33,0x33,0x11,0x33,0x2f,0x30,0x31,0x41,0x21,0x27,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x3,0x21,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x7,0x6,0x6,0x23,0xe,0x2,0x27,0x37,0x32,0x16,0x16,0x15,0x15,0x14,0x16,0x16,0x17,0x15,0x21,0x2e,0x2,0x35,0x35,0x34,0x26,0x26,0x5,0x7,0x14,0x6,0x7,0x27,0x3e,0x2,0x35,0x35,0x1,0xf8,0xfe,0x9d,0x2,0x1,0x13,0x2e,0x42,0x25,0x25,0x42,0x2e,0xfe,0xcd,0xc,0x1,0x3f,0x6e,0xb4,0x81,0x46,0x29,0x51,0x76,0x4e,0x4,0x8,0x4,0x17,0x5,0xc,0x75,0x5e,0xa0,0xb5,0x4c,0x3,0xa,0xa,0xfe,0xa4,0x6,0x5,0x1,0x27,0x4d,0x2,0xb2,0x1,0x78,0x56,0xaa,0x15,0x32,0x24,0x1,0x6e,0xd9,0x1c,0x34,0x22,0x22,0x39,0x24,0x1,0x2,0x32,0x5e,0x83,0x52,0x3a,0x61,0x4f,0x3a,0x13,0x1,0x14,0x4,0xe,0xa,0x1,0x95,0x4d,0x87,0x57,0x41,0x5,0x3b,0x3e,0xd,0xc,0xc,0x41,0x40,0xb,0x3f,0x33,0x43,0x21,0x73,0xd6,0x79,0xec,0x4b,0x50,0x2e,0x5d,0x74,0x4e,0xe9,0x0,0x0,0x3,0x0,0x3e,0xff,0xeb,0x7,0x91,0x5,0xb0,0x0,0x11,0x0,0x15,0x0,0x32,0x0,0x1d,0x40,0xe,0x26,0x26,0x1e,0x2f,0x9,0x72,0x17,0x14,0x0,0x15,0x2,0x72,0xb,0x8,0x0,0x2f,0x33,0x2b,0x32,0x32,0x32,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x21,0x3,0xe,0x4,0x23,0x23,0x11,0x37,0x3e,0x4,0x37,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x22,0x26,0x26,0x1,0x5d,0x1,0x5c,0x25,0x9,0x32,0x54,0x76,0x9b,0x60,0x56,0x27,0x2e,0x45,0x33,0x22,0x15,0x4,0x2,0xf8,0xfd,0x8a,0x2,0xf,0x1,0x5f,0xc,0x17,0x22,0x15,0x26,0x3a,0x29,0x16,0x1,0x2,0x21,0x1e,0x1,0x59,0x1a,0x2b,0x2,0x2,0x54,0x8d,0xb7,0x65,0x84,0xc7,0x6e,0x5,0xb0,0xfd,0x1c,0xa8,0xf3,0xa5,0x62,0x2a,0x1,0xe,0x4,0x5,0x29,0x52,0x80,0xb7,0x7b,0x2,0x6c,0xfe,0xed,0x1,0x13,0xfb,0xd7,0x4,0x29,0xfb,0xd7,0x1e,0x33,0x25,0x14,0x27,0x48,0x66,0x3f,0x64,0xcb,0x64,0x61,0xcb,0x67,0x8b,0xcf,0x88,0x44,0x53,0xb6,0x0,0x3,0x0,0x3e,0xff,0xeb,0x6,0x8b,0x4,0x3a,0x0,0x11,0x0,0x15,0x0,0x33,0x0,0x1f,0x40,0x10,0x27,0x27,0x1e,0x2f,0xb,0x72,0x17,0x14,0x0,0x15,0x6,0x72,0xb,0x8,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x32,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x21,0x3,0xe,0x4,0x23,0x23,0x3,0x37,0x3e,0x4,0x37,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x22,0x2e,0x2,0x1,0x3,0x1,0x49,0x1e,0x6,0x29,0x43,0x5c,0x73,0x44,0x67,0x4,0x23,0x1b,0x2a,0x20,0x17,0xf,0x3,0x2,0x77,0xfe,0x18,0x1,0x6c,0x1,0x51,0x10,0x1f,0x2d,0x1c,0x1f,0x30,0x21,0x13,0x1,0x2,0x20,0x1e,0x1,0x4a,0x1a,0x2c,0x2,0x2,0x4d,0x82,0xa8,0x5d,0x67,0xa8,0x79,0x41,0x4,0x3a,0xfd,0xd3,0x74,0xae,0x7b,0x4d,0x23,0x1,0x2,0x4,0x3,0x1e,0x36,0x54,0x72,0x4a,0x1,0xcd,0xfe,0xf7,0x1,0x9,0xfd,0x49,0x2,0xb7,0xfd,0x49,0x1f,0x35,0x27,0x15,0x22,0x40,0x5a,0x39,0x5f,0xc0,0x5e,0x5c,0xc0,0x61,0x81,0xbf,0x7e,0x3f,0x2e,0x62,0x9b,0x0,0x0,0x3,0x0,0x6f,0xff,0xe9,0x7,0x8e,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x23,0x0,0x20,0x40,0x11,0x16,0x16,0xe,0x1f,0x9,0x72,0x8,0x2,0x72,0x0,0x3,0x3,0x6,0x8,0x4,0x2,0x72,0x0,0x2b,0x3f,0x39,0x2f,0x33,0x2b,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x21,0x11,0x21,0x3,0x21,0x11,0x21,0x1,0x21,0x11,0x14,0x16,0x16,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x26,0x26,0x27,0x1,0x59,0x2,0xf2,0xfd,0xe,0xea,0x1,0x5f,0xfe,0xa1,0x3,0x66,0x1,0x5f,0x15,0x28,0x1c,0x26,0x3a,0x28,0x17,0x2,0x2,0x21,0x1e,0x1,0x59,0x1a,0x2a,0x2,0x1,0x54,0x8e,0xb7,0x65,0x84,0xbf,0x6d,0x8,0x3,0x52,0xfe,0xf2,0x3,0x6c,0xfa,0x50,0x5,0xb0,0xfb,0xd7,0x28,0x3e,0x24,0x1,0x26,0x48,0x66,0x3f,0x64,0xcb,0x64,0x61,0xcb,0x67,0x8b,0xcf,0x88,0x44,0x2,0x54,0xb7,0x93,0x0,0x3,0x0,0x43,0xff,0xea,0x6,0x68,0x4,0x3a,0x0,0x3,0x0,0x7,0x0,0x25,0x0,0x22,0x40,0x12,0x19,0x19,0x10,0x21,0xb,0x72,0x9,0x6,0x72,0x3,0x2,0x2,0x5,0x7,0x6,0x72,0x5,0xa,0x0,0x3f,0x2b,0x12,0x39,0x2f,0x33,0x2b,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x6,0x1e,0x2,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x2e,0x2,0x3,0x10,0xfe,0x17,0x6e,0xfe,0xae,0x2,0x84,0x1,0x52,0x1,0x10,0x1f,0x2d,0x1c,0x1f,0x30,0x22,0x13,0x1,0x2,0x21,0x1d,0x1,0x4a,0x1a,0x2b,0x2,0x2,0x4c,0x83,0xa8,0x5d,0x67,0xa3,0x75,0x44,0x2,0xa6,0xfe,0xf9,0x1,0x7,0x1,0x94,0xfb,0xc6,0x4,0x3a,0xfd,0x49,0x2,0xb7,0xfd,0x49,0x1f,0x35,0x27,0x15,0x1,0x22,0x3f,0x5a,0x39,0x5f,0xc0,0x5e,0x5c,0xc0,0x61,0x81,0xbf,0x7e,0x3f,0x1,0x2d,0x63,0x9c,0x0,0x0,0x1,0x0,0x30,0xff,0xeb,0x4,0xf1,0x5,0xc5,0x0,0x2b,0x0,0x15,0x40,0xa,0x12,0xb,0x3,0x72,0x25,0x25,0x1d,0x0,0x9,0x72,0x0,0x2b,0x32,0x32,0x2f,0x2b,0x32,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x11,0x34,0x3e,0x2,0x33,0x32,0x16,0x17,0x7,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x2,0x33,0x3e,0x2,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x2,0x2,0xbf,0x93,0xf0,0xae,0x5e,0x5e,0xae,0xf0,0x93,0x74,0xb0,0x43,0x3e,0x41,0x91,0x57,0x47,0x71,0x4f,0x29,0x29,0x4f,0x71,0x47,0x43,0x5c,0x31,0x2,0x2,0x1d,0x17,0x1,0x56,0x14,0x28,0x3,0x2,0x9c,0xfd,0x15,0x5d,0xa7,0xe1,0x85,0x1,0x6,0x85,0xe1,0xa7,0x5d,0x2d,0x2c,0xfe,0x21,0x23,0x35,0x5e,0x7c,0x46,0xfe,0xf8,0x47,0x7d,0x5f,0x35,0x1,0x2f,0x57,0x3c,0x53,0xac,0x53,0x52,0xaa,0x56,0x9f,0xd0,0x66,0x0,0x1,0x0,0x38,0xff,0xeb,0x4,0x29,0x4,0x4e,0x0,0x2b,0x0,0x15,0x40,0xa,0x21,0x1a,0x7,0x72,0x7,0x7,0x0,0xf,0xb,0x72,0x0,0x2b,0x32,0x32,0x2f,0x2b,0x32,0x30,0x31,0x65,0x3e,0x2,0x37,0x34,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x2,0x6d,0x28,0x2c,0x13,0x1,0x9,0xa,0x1,0x4b,0xb,0x11,0x1,0x2,0x75,0xc7,0x7d,0x88,0xd3,0x90,0x4a,0x48,0x8b,0xcb,0x83,0x60,0x8e,0x2c,0x2e,0x2e,0x78,0x46,0x37,0x4e,0x32,0x17,0x19,0x36,0x56,0xf3,0x1,0x18,0x2c,0x1e,0x2f,0x66,0x2e,0x2e,0x66,0x2f,0x7b,0xa1,0x4f,0x57,0x97,0xc3,0x6c,0x2a,0x6c,0xc3,0x96,0x57,0x23,0x1f,0xff,0x0,0x1c,0x1e,0x31,0x50,0x62,0x31,0x2a,0x31,0x62,0x51,0x31,0x0,0x2,0x0,0x1d,0xff,0xe9,0x5,0x70,0x5,0xb0,0x0,0x3,0x0,0x20,0x0,0x17,0x40,0xb,0x14,0x14,0xc,0x1d,0x9,0x72,0x5,0x2,0x3,0x2,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x26,0x26,0x4,0x9d,0xfb,0x80,0x1,0x9a,0x1,0x5e,0xc,0x17,0x22,0x15,0x26,0x3a,0x29,0x17,0x1,0x2,0x21,0x1d,0x1,0x57,0x1b,0x2a,0x2,0x2,0x53,0x8f,0xb6,0x65,0x84,0xc0,0x6c,0x5,0xb0,0xfe,0xed,0x1,0x13,0xfb,0xd7,0x4,0x29,0xfb,0xd7,0x1e,0x32,0x26,0x14,0x1,0x26,0x48,0x66,0x3f,0x64,0xcb,0x64,0x61,0xcb,0x67,0x8b,0xcf,0x88,0x44,0x2,0x54,0xb7,0x0,0x2,0x0,0x40,0xff,0xea,0x4,0xec,0x4,0x3a,0x0,0x3,0x0,0x20,0x0,0x17,0x40,0xb,0x13,0x13,0xb,0x1c,0xb,0x72,0x5,0x2,0x3,0x6,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x32,0x2f,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x3e,0x3,0x37,0x36,0x26,0x27,0x21,0x16,0x16,0x7,0xe,0x3,0x23,0x6,0x2e,0x2,0x3,0xcb,0xfc,0x75,0x1,0xa,0x1,0x51,0x1c,0x36,0x25,0x1f,0x31,0x22,0x13,0x1,0x2,0x20,0x1e,0x1,0x4a,0x1a,0x2c,0x2,0x2,0x4d,0x83,0xa9,0x5d,0x67,0xa3,0x75,0x43,0x4,0x3a,0xfe,0xfa,0x1,0x6,0xfd,0x49,0x2,0xb7,0xfd,0x49,0x29,0x42,0x25,0x1,0x19,0x2e,0x43,0x2b,0x44,0x8f,0x43,0x43,0x8d,0x46,0x70,0xa8,0x6f,0x37,0x1,0x2d,0x63,0x9c,0x0,0x2,0x0,0x51,0xff,0xeb,0x4,0xf3,0x5,0xc5,0x0,0x20,0x0,0x3f,0x0,0x23,0x40,0x11,0x0,0x22,0x3f,0x3f,0x2,0x2,0x17,0x35,0x31,0x2c,0x3,0x72,0x11,0xd,0x17,0x9,0x72,0x0,0x2b,0x32,0xcc,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x21,0x15,0x23,0x22,0xe,0x2,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x21,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x5,0x21,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x33,0x33,0x2,0x64,0x1,0xf,0xce,0x3c,0x5c,0x3d,0x20,0x23,0x43,0x61,0x3f,0x41,0x65,0x39,0x1,0x5e,0x64,0xa6,0xcb,0x68,0x85,0xe1,0xa4,0x5b,0x47,0x89,0xc5,0x1,0x8d,0xfe,0xf1,0x72,0xbb,0x87,0x49,0x54,0x9c,0xda,0x85,0x95,0xfc,0x98,0xfe,0xa1,0x36,0x5c,0x38,0x52,0x6a,0x33,0x19,0x36,0x54,0x3b,0xce,0x3,0x12,0xad,0x15,0x2f,0x4b,0x36,0x23,0x3c,0x2e,0x1a,0x29,0x46,0x2c,0x70,0xa1,0x67,0x31,0x39,0x6e,0xa0,0x66,0x5b,0x8d,0x60,0x32,0x59,0x39,0x64,0x84,0x4b,0x66,0x9b,0x6a,0x35,0x65,0xbb,0x83,0x30,0x42,0x22,0x2b,0x46,0x29,0x2a,0x42,0x2e,0x19,0xff,0xff,0x0,0x25,0xfe,0x4b,0x6,0x85,0x5,0xb0,0x4,0x26,0x0,0xdd,0x0,0x0,0x0,0x7,0x2,0x6e,0x4,0xbf,0x0,0x0,0xff,0xff,0x0,0xa,0xfe,0x4b,0x5,0x78,0x4,0x3a,0x4,0x26,0x0,0xf2,0x0,0x0,0x0,0x7,0x2,0x6e,0x3,0xb2,0x0,0x0,0x0,0x2,0x0,0x4f,0x4,0x6f,0x2,0xc1,0x5,0xd7,0x0,0x5,0x0,0xf,0x0,0x12,0xb6,0x5,0x5,0xd,0x7,0x2,0x2,0x7,0x0,0x2f,0x33,0x2f,0x10,0xcd,0x32,0x2f,0x30,0x31,0x41,0x35,0x13,0x33,0x15,0x3,0x25,0x35,0x33,0x15,0x14,0x16,0x17,0x7,0x26,0x26,0x1,0x7f,0x6f,0xd3,0xe6,0xfe,0x74,0xa9,0x20,0x2b,0x56,0x41,0x5d,0x4,0x83,0x1b,0x1,0x39,0x15,0xfe,0xc1,0xf1,0x63,0x5d,0x38,0x58,0x1b,0x60,0x20,0x87,0xff,0xff,0x0,0x98,0x1,0xf1,0x2,0xf1,0x2,0xf6,0x4,0x6,0x0,0x11,0x0,0x0,0xff,0xff,0x0,0x98,0x1,0xf1,0x2,0xf1,0x2,0xf6,0x4,0x6,0x0,0x11,0x0,0x0,0x0,0x1,0x0,0x92,0x2,0x42,0x4,0xb1,0x3,0x4a,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x4,0xb1,0xfb,0xe1,0x3,0x4a,0xfe,0xf8,0x1,0x8,0x0,0x1,0x0,0x56,0x2,0x42,0x5,0xd4,0x3,0x4a,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0xd4,0xfa,0x82,0x3,0x4a,0xfe,0xf8,0x1,0x8,0x0,0x2,0xff,0xff,0xfe,0x5f,0x3,0x87,0x0,0x0,0x0,0x3,0x0,0x7,0x0,0xe,0xb4,0x2,0x3,0x80,0x6,0x7,0x0,0x2f,0x33,0x1a,0xce,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x3,0x87,0xfc,0x78,0x3,0x88,0xfc,0x78,0xfe,0xf6,0x97,0x97,0x1,0xa,0x97,0x97,0x0,0x1,0x0,0x6c,0x4,0x12,0x1,0xb7,0x6,0x28,0x0,0xa,0x0,0x8,0xb1,0x5,0x0,0x0,0x2f,0xcd,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x37,0x17,0x6,0x6,0x15,0x15,0x6c,0x35,0x55,0x2e,0x93,0x1f,0x35,0x4,0x12,0xa2,0x43,0x8c,0x7b,0x2a,0x50,0x39,0x8a,0x62,0xa1,0x0,0x1,0x0,0x42,0x3,0xe8,0x1,0x8d,0x6,0x0,0x0,0xa,0x0,0x8,0xb1,0x5,0x0,0x0,0x2f,0xcd,0x30,0x31,0x41,0x15,0x14,0x6,0x6,0x7,0x27,0x36,0x36,0x35,0x35,0x1,0x8d,0x35,0x53,0x2f,0x94,0x20,0x35,0x6,0x0,0xa4,0x43,0x8c,0x7b,0x2a,0x50,0x39,0x8b,0x61,0xa3,0x0,0x0,0x1,0x0,0x53,0xfe,0xca,0x1,0xa0,0x0,0xf9,0x0,0xa,0x0,0x8,0xb1,0x5,0x0,0x0,0x2f,0xcd,0x30,0x31,0x65,0x7,0x14,0x6,0x6,0x7,0x27,0x36,0x36,0x35,0x35,0x1,0xa0,0x2,0x35,0x53,0x2f,0x94,0x20,0x2a,0xf9,0xbb,0x43,0x8c,0x7b,0x2a,0x50,0x39,0x8b,0x61,0xba,0x0,0x0,0x1,0x0,0x45,0x3,0xe8,0x1,0x90,0x6,0x0,0x0,0xa,0x0,0x8,0xb1,0x6,0x0,0x0,0x2f,0xcd,0x30,0x31,0x53,0x33,0x15,0x14,0x16,0x17,0x7,0x2e,0x2,0x35,0x45,0xf7,0x35,0x1f,0x94,0x2e,0x54,0x35,0x6,0x0,0xa3,0x61,0x8b,0x39,0x50,0x2a,0x7b,0x8c,0x43,0x0,0xff,0xff,0x0,0x73,0x4,0x12,0x3,0x1d,0x6,0x28,0x4,0x26,0x1,0x84,0x7,0x0,0x0,0x7,0x1,0x84,0x1,0x66,0x0,0x0,0xff,0xff,0x0,0x50,0x3,0xe8,0x3,0x5,0x6,0x0,0x4,0x26,0x1,0x85,0xe,0x0,0x0,0x7,0x1,0x85,0x1,0x78,0x0,0x0,0x0,0x2,0x0,0x53,0xfe,0xb6,0x3,0x9,0x1,0xd,0x0,0xa,0x0,0x15,0x0,0xc,0xb3,0x10,0x5,0xb,0x0,0x0,0x2f,0x32,0xcd,0x32,0x30,0x31,0x41,0x7,0x14,0x6,0x6,0x7,0x27,0x36,0x36,0x35,0x35,0x21,0x7,0x14,0x6,0x6,0x7,0x27,0x36,0x36,0x35,0x35,0x1,0xa0,0x2,0x2f,0x4e,0x2e,0xa0,0x20,0x2a,0x2,0x6c,0x1,0x35,0x54,0x2e,0x9f,0x20,0x35,0x1,0xd,0xcf,0x46,0x94,0x82,0x2c,0x50,0x3d,0x94,0x68,0xce,0xcf,0x46,0x94,0x82,0x2c,0x50,0x3d,0x94,0x68,0xce,0x0,0x2,0x0,0x33,0x0,0x0,0x4,0x10,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x15,0x40,0xa,0x6,0x7,0x7,0x2,0x3,0x2,0x72,0x2,0x12,0x72,0x0,0x2b,0x2b,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x2,0xc7,0xfe,0xaf,0x2,0x9a,0xfc,0x23,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfe,0x8a,0xfe,0xf2,0x1,0xe,0x0,0x0,0x3,0x0,0x68,0xfe,0x60,0x4,0x45,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1d,0x40,0xe,0xb,0xa,0x6,0x7,0x7,0x1,0x3,0xa,0x12,0x72,0x3,0x2,0x72,0x1,0x0,0x2f,0x2b,0x2b,0x11,0x12,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x2,0xfd,0xfe,0xad,0x2,0x9b,0xfc,0x23,0x3,0xdd,0xfc,0x23,0x5,0xb0,0xf8,0xb0,0x7,0x50,0xfe,0x8a,0xfe,0xfc,0x1,0x4,0xfc,0xca,0xfe,0xfc,0x1,0x4,0x0,0x0,0x1,0x0,0x87,0x1,0xe8,0x2,0x82,0x3,0xec,0x0,0xd,0x0,0x8,0xb1,0x4,0xb,0x0,0x2f,0xcd,0x30,0x31,0x53,0x35,0x34,0x36,0x33,0x32,0x16,0x15,0x15,0x14,0x6,0x23,0x22,0x26,0x87,0x89,0x73,0x77,0x88,0x87,0x76,0x74,0x8a,0x2,0xd6,0x25,0x6a,0x87,0x87,0x6a,0x25,0x69,0x85,0x85,0xff,0xff,0x0,0x80,0xff,0xf5,0x3,0xdd,0x1,0x47,0x4,0x26,0x0,0x12,0xb,0x0,0x0,0x7,0x0,0x12,0x1,0xf4,0x0,0x0,0xff,0xff,0x0,0x80,0xff,0xf5,0x5,0xc5,0x1,0x47,0x4,0x26,0x0,0x12,0xb,0x0,0x0,0x27,0x0,0x12,0x1,0xf4,0x0,0x0,0x0,0x7,0x0,0x12,0x3,0xdc,0x0,0x0,0x0,0x1,0x0,0x72,0x1,0xd1,0x1,0xe8,0x3,0x19,0x0,0xb,0x0,0x8,0xb1,0x3,0x9,0x0,0x2f,0xcd,0x30,0x31,0x53,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x72,0x68,0x53,0x53,0x68,0x68,0x53,0x53,0x68,0x2,0x75,0x48,0x5c,0x5c,0x48,0x48,0x5c,0x5c,0x0,0x7,0x0,0x65,0xff,0xec,0x7,0x79,0x5,0xc4,0x0,0x11,0x0,0x23,0x0,0x35,0x0,0x47,0x0,0x59,0x0,0x6b,0x0,0x6f,0x0,0x29,0x40,0x13,0x5f,0x56,0x56,0x32,0x68,0x4d,0x4d,0x44,0x29,0x29,0x3b,0x32,0xd,0x17,0xe,0xe,0x20,0x5,0x5,0x0,0x3f,0x33,0x33,0x2f,0x33,0x3f,0x33,0x33,0x2f,0x33,0x33,0x2f,0x33,0x11,0x33,0x2f,0x33,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x5,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0x1,0x27,0x1,0x65,0x49,0x87,0x5d,0x67,0x91,0x4d,0x4d,0x90,0x66,0x5e,0x88,0x49,0xc2,0x18,0x30,0x25,0x24,0x2f,0x17,0x18,0x30,0x24,0x24,0x30,0x17,0x2,0x3,0x4e,0x92,0x64,0x60,0x82,0x43,0x43,0x82,0x5e,0x65,0x93,0x4e,0xd9,0x1d,0x32,0x1e,0x2e,0x2d,0xf,0x18,0x30,0x24,0x24,0x30,0x17,0x1,0xd,0x44,0x83,0x5e,0x66,0x91,0x4d,0x4d,0x90,0x65,0x5f,0x84,0x44,0xba,0x1d,0x31,0x1f,0x2e,0x2d,0xf,0x18,0x30,0x24,0x24,0x30,0x17,0xfe,0xe9,0xfd,0x39,0x9d,0x2,0xc7,0x4,0x4b,0x4c,0x53,0x88,0x52,0x52,0x88,0x53,0x4c,0x51,0x88,0x52,0x52,0x88,0x9d,0x4c,0x1e,0x36,0x21,0x21,0x36,0x1e,0x4c,0x20,0x36,0x21,0x21,0x36,0xfc,0x61,0x4d,0x52,0x88,0x52,0x52,0x88,0x52,0x4d,0x52,0x88,0x52,0x52,0x88,0x9f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x1f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x6c,0x4d,0x52,0x88,0x52,0x52,0x88,0x52,0x4d,0x52,0x88,0x52,0x52,0x88,0x9f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x1f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x3,0x5b,0xfb,0x8e,0x4f,0x4,0x72,0x0,0x0,0x2,0x0,0x6c,0x0,0x74,0x2,0x4b,0x3,0x93,0x0,0x4,0x0,0x9,0x0,0x12,0x40,0x9,0x1,0x5,0x3,0x9,0x2,0x8,0x6,0x6,0x0,0x0,0x2f,0x2f,0x17,0x39,0x30,0x31,0x41,0x3,0x27,0x35,0x1,0x3,0x13,0x23,0x1,0x35,0x2,0x4b,0xeb,0xf4,0x1,0x11,0x1d,0xeb,0xce,0xfe,0xef,0x3,0x93,0xfe,0x6c,0x1,0xd,0x1,0x86,0xfe,0x75,0xfe,0x6c,0x1,0x86,0xd,0x0,0x2,0x0,0x4d,0x0,0x73,0x2,0x2c,0x3,0x92,0x0,0x4,0x0,0x9,0x0,0xe,0xb4,0x2,0x8,0x8,0x5,0x0,0x0,0x2f,0x2f,0x39,0x2f,0x33,0x30,0x31,0x77,0x13,0x17,0x15,0x1,0x3,0x33,0x1,0x15,0x7,0x4d,0xea,0xf5,0xfe,0xef,0xce,0xce,0x1,0x11,0xf5,0x73,0x1,0x94,0x1,0xd,0xfe,0x7a,0x3,0x1f,0xfe,0x7a,0xd,0x1,0x0,0x0,0x1,0x0,0xf,0x0,0x6d,0x3,0x73,0x5,0x2e,0x0,0x3,0x0,0xe,0xb3,0x0,0x3,0x2,0x1,0x0,0x7c,0x2f,0x33,0x18,0x2f,0x33,0x30,0x31,0x41,0x1,0x27,0x1,0x3,0x73,0xfd,0x39,0x9d,0x2,0xc7,0x4,0xdf,0xfb,0x8e,0x4f,0x4,0x72,0xff,0xff,0x0,0x44,0x2,0x90,0x2,0xbc,0x5,0xbb,0x6,0x7,0x1,0xe1,0x0,0x0,0x2,0x9b,0xff,0xff,0x0,0x36,0x2,0x9b,0x2,0xc3,0x5,0xb0,0x6,0x7,0x2,0x3a,0x0,0x0,0x2,0x9b,0xff,0xff,0x0,0x3c,0x2,0x90,0x2,0xb5,0x5,0xb0,0x6,0x7,0x2,0x3b,0x0,0x0,0x2,0x9b,0xff,0xff,0x0,0x40,0x2,0x90,0x2,0xce,0x5,0xc3,0x6,0x7,0x2,0x3c,0x0,0x0,0x2,0x9b,0xff,0xff,0x0,0x30,0x2,0x9b,0x2,0xb8,0x5,0xb0,0x6,0x7,0x2,0x3d,0x0,0x0,0x2,0x9b,0xff,0xff,0x0,0x44,0x2,0x90,0x2,0xbc,0x5,0xbc,0x6,0x7,0x2,0x3e,0x0,0x0,0x2,0x9b,0xff,0xff,0x0,0x41,0x2,0x8d,0x2,0xba,0x5,0xbc,0x6,0x7,0x2,0x3f,0x0,0x0,0x2,0x9b,0x0,0x2,0x0,0x50,0x2,0x8e,0x2,0xec,0x5,0x53,0x0,0x3,0x0,0x7,0x0,0x15,0xb7,0x6,0x6,0x2,0x2,0x3,0x7,0x7,0x3,0x0,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x7d,0x2f,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x11,0x23,0x11,0x2,0xec,0xfd,0x64,0x1,0xb6,0xd0,0x4,0x4f,0xbd,0xbd,0x1,0x4,0xfd,0x3b,0x2,0xc5,0x0,0x1,0x0,0x50,0x3,0x92,0x2,0x9a,0x4,0x4f,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x2,0x9a,0xfd,0xb6,0x4,0x4f,0xbd,0xbd,0x0,0x2,0x0,0x50,0x2,0xf2,0x2,0x9a,0x4,0xef,0x0,0x3,0x0,0x7,0x0,0xc,0xb3,0x2,0x3,0x7,0x6,0x0,0x2f,0x33,0xce,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x2,0x9a,0xfd,0xb6,0x2,0x4a,0xfd,0xb6,0x3,0xaf,0xbd,0xbd,0x1,0x40,0xbd,0xbd,0x0,0x1,0x0,0x50,0x1,0x72,0x1,0xd1,0x6,0x6,0x0,0x15,0x0,0xc,0xb3,0x10,0x11,0x6,0x5,0x0,0x2f,0x33,0x2f,0x33,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x37,0x17,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x17,0x7,0x2e,0x3,0x50,0x54,0x83,0x46,0x64,0x25,0x41,0x27,0x18,0x29,0x32,0x1a,0x64,0x35,0x65,0x52,0x31,0x3,0xb4,0x10,0x9e,0xef,0x99,0x1c,0x87,0x29,0x6d,0xa5,0x7f,0x12,0x5f,0x8e,0x67,0x4b,0x1b,0x87,0x15,0x62,0x93,0xc2,0x0,0x1,0x0,0x50,0x1,0x72,0x1,0xd1,0x6,0x6,0x0,0x15,0x0,0xc,0xb3,0x10,0x11,0x6,0x5,0x0,0x2f,0x33,0x2f,0x33,0x30,0x31,0x41,0x15,0x14,0x6,0x6,0x7,0x27,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x27,0x37,0x1e,0x3,0x1,0xd1,0x54,0x82,0x47,0x64,0x23,0x41,0x2a,0x17,0x28,0x33,0x1c,0x64,0x35,0x65,0x52,0x31,0x3,0xc4,0x10,0x9d,0xef,0x99,0x1d,0x87,0x25,0x6d,0xaa,0x7e,0x12,0x5f,0x8b,0x65,0x4c,0x1f,0x87,0x15,0x62,0x93,0xc2,0x0,0x0,0x2,0x0,0x45,0x2,0x8f,0x3,0xb,0x5,0xba,0x0,0x4,0x0,0x19,0x0,0x13,0xb7,0x16,0xb,0x4,0x4,0xb,0x2,0x11,0x2,0x0,0x2f,0x33,0x3f,0x33,0x2f,0x11,0x33,0x30,0x31,0x41,0x11,0x23,0x11,0x33,0x13,0x7,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x11,0x23,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0x2a,0xe5,0xb8,0x15,0x2f,0x25,0x49,0x6a,0x45,0x55,0x77,0x3f,0xe4,0x1c,0x37,0x29,0x39,0x43,0x1d,0x5,0x4,0xfd,0x8b,0x3,0x21,0xfe,0x86,0x1,0x54,0x8e,0x69,0x3a,0x3f,0x88,0x6c,0xfe,0x8,0x1,0xac,0x46,0x53,0x24,0x34,0x57,0x0,0xff,0xff,0x0,0x44,0xfe,0x8d,0x2,0xbc,0x1,0xb8,0x6,0x7,0x1,0xe1,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x8f,0xfe,0x98,0x2,0x1f,0x1,0xaa,0x6,0x7,0x1,0xe0,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x34,0xfe,0x98,0x2,0xb9,0x1,0xb9,0x6,0x7,0x1,0xdf,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x2a,0xfe,0x8d,0x2,0xc2,0x1,0xb9,0x6,0x7,0x2,0x39,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x36,0xfe,0x98,0x2,0xc3,0x1,0xad,0x6,0x7,0x2,0x3a,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x3c,0xfe,0x8d,0x2,0xb5,0x1,0xad,0x6,0x7,0x2,0x3b,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x40,0xfe,0x8d,0x2,0xce,0x1,0xc0,0x6,0x7,0x2,0x3c,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x30,0xfe,0x98,0x2,0xb8,0x1,0xad,0x6,0x7,0x2,0x3d,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x44,0xfe,0x8d,0x2,0xbc,0x1,0xb9,0x6,0x7,0x2,0x3e,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x41,0xfe,0x8a,0x2,0xba,0x1,0xb9,0x6,0x7,0x2,0x3f,0x0,0x0,0xfe,0x98,0xff,0xff,0x0,0x50,0xfe,0xa6,0x2,0xec,0x1,0x6b,0x6,0x7,0x1,0x9c,0x0,0x0,0xfc,0x18,0xff,0xff,0x0,0x50,0xff,0xaa,0x2,0x9a,0x0,0x67,0x6,0x7,0x1,0x9d,0x0,0x0,0xfc,0x18,0xff,0xff,0x0,0x50,0xff,0xa,0x2,0x9a,0x1,0x7,0x6,0x7,0x1,0x9e,0x0,0x0,0xfc,0x18,0x0,0x1,0x0,0x50,0xfd,0xee,0x1,0xd1,0x2,0x3c,0x0,0x14,0x0,0x8,0xb1,0x5,0x10,0x0,0x2f,0x2f,0x30,0x31,0x77,0x35,0x34,0x36,0x36,0x37,0x17,0xe,0x2,0x15,0x15,0x14,0x16,0x16,0x17,0x7,0x2e,0x3,0x50,0x54,0x83,0x46,0x64,0x25,0x41,0x27,0x2a,0x41,0x22,0x64,0x35,0x65,0x52,0x31,0x8,0x10,0x96,0xe2,0x91,0x1b,0x87,0x26,0x66,0x9a,0x76,0x12,0x73,0x9a,0x64,0x21,0x87,0x14,0x5a,0x89,0xb5,0x0,0x0,0x1,0x0,0x50,0xfd,0xee,0x1,0xd1,0x2,0x3c,0x0,0x14,0x0,0x8,0xb1,0x10,0x5,0x0,0x2f,0x2f,0x30,0x31,0x65,0x15,0x14,0x6,0x6,0x7,0x27,0x3e,0x2,0x35,0x35,0x34,0x26,0x26,0x27,0x37,0x1e,0x3,0x1,0xd1,0x54,0x82,0x47,0x64,0x23,0x41,0x2a,0x28,0x40,0x26,0x64,0x35,0x65,0x52,0x31,0x22,0x10,0x95,0xe3,0x91,0x1b,0x87,0x22,0x66,0x9e,0x76,0x12,0x73,0x97,0x63,0x25,0x87,0x14,0x5a,0x89,0xb5,0x0,0x4,0x0,0x6a,0x0,0x0,0x4,0x9c,0x5,0xc3,0x0,0x3,0x0,0x1e,0x0,0x22,0x0,0x26,0x0,0x22,0x40,0x10,0x22,0x21,0x25,0x26,0x26,0x1,0x1b,0x17,0x12,0x5,0x72,0x9,0x2,0x2,0x1,0xc,0x0,0x3f,0x33,0x11,0x33,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0xce,0x32,0x30,0x31,0x61,0x21,0x11,0x21,0x1,0x13,0x14,0x6,0x7,0x27,0x3e,0x2,0x35,0x3,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x5,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x4,0x98,0xfb,0xd2,0x4,0x2d,0xfd,0xc2,0x1a,0x60,0x7c,0xc5,0x1e,0x19,0x5,0x12,0x70,0xcc,0x8a,0x9a,0xd3,0x6d,0xfe,0xb7,0x25,0x3e,0x26,0x22,0x33,0x1c,0x1,0x9,0xfd,0xb,0x2,0xf5,0xfd,0xb,0x1,0xe,0x3,0x1,0xfd,0xb2,0x65,0x82,0x2f,0x63,0x8,0x2d,0x42,0x25,0x2,0x65,0x8a,0xc3,0x67,0x6b,0xc0,0x80,0x3c,0x44,0x1d,0x24,0x4a,0xba,0xa9,0xa9,0xfe,0xf1,0xaa,0xaa,0x0,0x3,0x0,0x29,0x0,0x0,0x6,0x6d,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x11,0x0,0x22,0x40,0x10,0x3,0x2,0x6,0xb,0xe,0x10,0x7,0x7,0xd,0x11,0xe,0x4,0x72,0xa,0xd,0xc,0x0,0x3f,0x33,0x2b,0x32,0x12,0x39,0x2f,0x39,0x12,0x39,0x33,0xce,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x1,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x11,0x6,0x6d,0xf9,0xbc,0x6,0x44,0xf9,0xbc,0x5,0x81,0xfe,0xa3,0xfd,0xfc,0xfe,0xa1,0x1,0x5f,0x2,0x3,0x3,0xeb,0xa0,0xa0,0xfe,0xb6,0xa0,0xa0,0x3,0xf,0xfa,0x50,0x3,0x8a,0xfc,0x76,0x5,0xb0,0xfc,0x76,0x3,0x8a,0x0,0x3,0x0,0x82,0xff,0xec,0x6,0xab,0x5,0xb0,0x0,0x17,0x0,0x1b,0x0,0x2d,0x0,0x23,0x40,0x12,0x22,0x29,0xd,0x1c,0x19,0x18,0x6,0x72,0x2,0x1,0x1,0xe,0xc,0xf,0x4,0x72,0xe,0xc,0x0,0x3f,0x2b,0x32,0x12,0x39,0x2f,0x33,0x2b,0x32,0xcc,0x3f,0x33,0x30,0x31,0x41,0x23,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x1,0x15,0x21,0x35,0x13,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x2,0x26,0xc0,0xc0,0x47,0x5a,0x2b,0x2b,0x5a,0x47,0x3c,0xfe,0x98,0x1,0xa4,0xb5,0xfc,0x84,0x84,0xfc,0x3,0xc1,0xfd,0x73,0x8a,0x1,0x51,0x14,0x30,0x29,0x1d,0x26,0x11,0x2b,0x5d,0x36,0x6c,0x98,0x50,0x1,0xf3,0x1,0x1d,0x3a,0x5d,0x33,0x30,0x54,0x35,0xfb,0x6d,0x5,0xb0,0x7a,0xd4,0x86,0x8d,0xdd,0x7f,0x2,0x47,0xea,0xea,0x1,0xd,0xfc,0x1a,0x2b,0x2f,0x13,0x3,0x3,0xf1,0xe,0xf,0x44,0x92,0x75,0x0,0xff,0xff,0x0,0x6f,0xff,0xec,0x8,0x8c,0x5,0xb0,0x4,0x26,0x0,0x36,0x0,0x0,0x0,0x7,0x0,0x57,0x4,0xb0,0x0,0x0,0x0,0x6,0x0,0x29,0x0,0x0,0x6,0x9c,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x12,0x0,0x17,0x0,0x1d,0x0,0x2a,0x40,0x14,0x1d,0x15,0xa,0xa,0x12,0x6,0x7,0x3,0x2,0x2,0x11,0x12,0x4,0x72,0x13,0x1b,0x1b,0x8,0x11,0xc,0x0,0x3f,0x33,0x33,0x11,0x33,0x2b,0x12,0x39,0x2f,0x33,0xce,0x32,0x11,0x33,0x11,0x33,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x1,0x27,0x13,0x33,0x17,0x3,0x1,0x13,0x7,0x23,0x1,0x1,0x27,0x13,0x21,0x1,0x1,0x13,0x7,0x23,0x3,0x37,0x6,0x9c,0xf9,0x8d,0x6,0x73,0xf9,0x8d,0x2,0x20,0x34,0xb4,0xae,0x5c,0xca,0xfe,0xe5,0xab,0x1c,0xde,0xfe,0xf2,0x3,0xae,0x19,0xa9,0x1,0x5c,0xfe,0xf3,0xfe,0xd2,0xba,0x37,0xbf,0xd0,0x60,0x4,0xc7,0xa0,0xa0,0xfe,0xf2,0xa0,0xa0,0xfc,0x47,0x84,0x5,0x2c,0x71,0xfa,0xc1,0x5,0xb0,0xfa,0xca,0x7a,0x5,0xb0,0xfa,0x50,0x81,0x5,0x2f,0xfa,0x50,0x5,0xb0,0xfa,0xcc,0x7c,0x5,0x41,0x6f,0x0,0x0,0x2,0x0,0x62,0x0,0x0,0x6,0xfb,0x4,0x3a,0x0,0x11,0x0,0x22,0x0,0x20,0x40,0xf,0x16,0x13,0x13,0x11,0x14,0x8,0x14,0x8,0x11,0xa,0x1c,0xf,0x0,0x6,0x72,0x0,0x2b,0x32,0x32,0x3f,0x39,0x39,0x2f,0x2f,0x11,0x33,0x11,0x33,0x30,0x31,0x53,0x21,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x2e,0x2,0x23,0x21,0x11,0x29,0x2,0x11,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x11,0x21,0x11,0x14,0xe,0x2,0x62,0x3,0x4a,0x76,0x9a,0x58,0x24,0xfe,0xae,0x19,0x2e,0x3f,0x25,0xfe,0x78,0xfe,0xaf,0x3,0xe9,0xfd,0xd9,0x1,0x52,0x1,0x88,0x31,0x4d,0x2d,0x1,0x52,0x7c,0xcb,0xf2,0x4,0x3a,0x33,0x68,0x9a,0x68,0xfe,0xd5,0x1,0x2b,0x36,0x3e,0x1d,0x8,0xfc,0xca,0x2,0xca,0xfe,0x3a,0x10,0x41,0x48,0x2,0x9d,0xfd,0x63,0x67,0x9b,0x68,0x33,0x0,0x0,0x3,0x0,0x56,0xff,0xed,0x4,0x58,0x5,0xc3,0x0,0x23,0x0,0x27,0x0,0x2b,0x0,0x1d,0x40,0xe,0x2a,0x2b,0x27,0x26,0x26,0x7,0x19,0x12,0x5,0x72,0x0,0x7,0xd,0x72,0x0,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0xce,0x32,0x30,0x31,0x65,0x32,0x36,0x37,0x13,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x11,0x34,0x3e,0x2,0x33,0x32,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x2,0x13,0x15,0x21,0x35,0x1,0x15,0x21,0x35,0x3,0x7e,0x2f,0x58,0x28,0x2b,0x3d,0x85,0x45,0x82,0xda,0xa1,0x59,0x5b,0xa8,0xe7,0x8c,0x3a,0x75,0x38,0x2b,0x23,0x59,0x2a,0x48,0x70,0x4c,0x28,0x2a,0x4d,0x6b,0x55,0xfc,0xc4,0x3,0x3c,0xfc,0xc4,0xfa,0xe,0x10,0xfe,0xf3,0xe,0x10,0x45,0x8b,0xce,0x89,0x1,0x5e,0x92,0xdd,0x96,0x4c,0x11,0xe,0xfe,0xf2,0xe,0x11,0x23,0x4c,0x7a,0x58,0xfe,0xa0,0x55,0x6e,0x3e,0x19,0x2,0xbb,0x9f,0x9f,0xfe,0xe7,0xa0,0xa0,0x0,0x3,0x0,0x29,0x0,0x0,0x5,0xdc,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x1f,0x0,0x29,0x40,0x13,0x6,0x7,0x3,0x2,0x2,0x14,0xa,0x14,0x17,0x9,0xa,0xa,0x16,0x17,0x4,0x72,0x16,0xc,0x72,0x0,0x2b,0x2b,0x12,0x39,0x7d,0x2f,0x33,0x11,0x33,0x11,0x12,0x39,0x18,0x2f,0x33,0xce,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x5,0x15,0x21,0x35,0x1,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x5,0xdc,0xfa,0x4d,0x5,0xb3,0xfa,0x4d,0x2,0xdf,0xfe,0x97,0x1,0x69,0x4a,0x5c,0x2b,0x2b,0x5c,0x4a,0xe6,0xfe,0xa1,0x2,0x45,0xaf,0xfd,0x89,0x89,0xfd,0x4,0x7f,0xa0,0xa0,0xd8,0xa0,0xa0,0xfe,0x47,0x1,0xf,0x32,0x59,0x38,0x3c,0x66,0x3f,0xfb,0x5f,0x5,0xb0,0x80,0xdf,0x8f,0x8d,0xd2,0x75,0x0,0x3,0x0,0x28,0x0,0x0,0x4,0x16,0x5,0xb0,0x0,0x3,0x0,0x1c,0x0,0x20,0x0,0x2d,0x40,0x15,0x1f,0x20,0x20,0x11,0x3,0x2,0x5,0x6,0x6,0x1a,0x2,0x1a,0x2,0x1a,0x4,0x10,0x11,0x4,0x72,0x4,0xc,0x0,0x3f,0x2b,0x32,0x12,0x39,0x39,0x7d,0x2f,0x2f,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x7,0x21,0x37,0x1,0x1,0x27,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x13,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x1,0x15,0x13,0x7,0x21,0x37,0x4,0x14,0x36,0xfc,0x4a,0x37,0x1,0xb1,0xfe,0x35,0x1,0xe7,0x46,0x5a,0x2c,0x27,0x59,0x4c,0xfe,0xfd,0x41,0xc2,0xb6,0xf6,0x7d,0x4a,0x9c,0x7c,0x1,0x97,0x8d,0x37,0xfc,0xe4,0x37,0x4,0x3e,0xd2,0xd2,0xfb,0xc2,0x2,0x25,0xc1,0x3c,0x67,0x3f,0x3f,0x62,0x38,0x1,0xf,0x6d,0xcd,0x91,0x80,0xbd,0x80,0x26,0xfe,0xd,0xf,0x5,0xb0,0xd2,0xd2,0x0,0x4,0x0,0x29,0xff,0xec,0x4,0x98,0x5,0xb0,0x0,0x3,0x0,0x14,0x0,0x18,0x0,0x1c,0x0,0x15,0x40,0x9,0x4,0x4,0x3,0xf,0x1,0xb,0xd,0x3,0x4,0x0,0x3f,0x3f,0x33,0x33,0x12,0x39,0x2f,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x21,0x15,0x14,0x2,0x6,0x6,0x23,0x22,0x26,0x27,0x25,0x32,0x3e,0x2,0x35,0x3,0x15,0x5,0x35,0x5,0x15,0x5,0x35,0x2,0x1f,0xfe,0xa2,0x2,0x75,0x1,0x62,0x5f,0xac,0xe9,0x8b,0x6d,0xab,0x40,0x1,0x58,0x45,0x6b,0x48,0x25,0x73,0xfd,0x66,0x2,0x9a,0xfd,0x66,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfd,0x49,0x40,0xa6,0xfe,0xf6,0xba,0x63,0xc,0x8,0xfe,0x39,0x6f,0xa6,0x6d,0x2,0x80,0xde,0xbb,0xde,0x8f,0xde,0xbb,0xde,0x0,0x0,0x2,0x0,0x38,0x0,0x0,0x5,0x55,0x4,0x3a,0x0,0x1b,0x0,0x1f,0x0,0x18,0x40,0xb,0x8,0x15,0x15,0x1e,0x1f,0x6,0x72,0xe,0x1,0x1e,0xa,0x0,0x3f,0x33,0x33,0x2b,0x12,0x39,0x2f,0x33,0x30,0x31,0x61,0x21,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x21,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x1e,0x3,0x15,0x1,0x11,0x21,0x11,0x5,0x55,0xfe,0xaf,0x1e,0x39,0x4f,0x60,0x38,0x47,0x74,0x54,0x2d,0xfe,0xae,0x63,0xb1,0xef,0x8b,0x6f,0xc6,0xa3,0x76,0x41,0xfe,0x1b,0xfe,0xae,0xa4,0x58,0x90,0x6e,0x4b,0x26,0x3c,0x74,0xa9,0x6e,0xa4,0xa2,0xa7,0x1,0x9,0xba,0x63,0x40,0x79,0xaf,0xe0,0x85,0x3,0x98,0xfb,0xc6,0x4,0x3a,0x0,0x0,0x2,0x0,0x40,0x0,0x0,0x5,0x80,0x5,0xb0,0x0,0x17,0x0,0x1b,0x0,0x1a,0x40,0xc,0x19,0x18,0x3,0x0,0x0,0xe,0xc,0xf,0x4,0x72,0xe,0xc,0x0,0x3f,0x2b,0x32,0x12,0x39,0x2f,0x33,0xce,0x32,0x30,0x31,0x41,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x11,0x21,0x11,0x3,0x48,0xfc,0xf8,0x2,0xfd,0x55,0x61,0x2a,0x30,0x5e,0x46,0xe3,0xfe,0xa1,0x2,0x41,0xaf,0xfe,0x8b,0x8f,0xff,0x54,0xfc,0xa2,0x1,0xee,0x1,0xf,0x34,0x5b,0x39,0x3d,0x63,0x3b,0xfb,0x60,0x5,0xb0,0x7f,0xdc,0x8e,0x94,0xd4,0x71,0x37,0xfe,0xf2,0x1,0xe,0x0,0x4,0x0,0x58,0xff,0xec,0x5,0x97,0x5,0xc5,0x0,0x21,0x0,0x33,0x0,0x45,0x0,0x49,0x0,0x25,0x40,0x12,0x42,0x27,0x30,0x47,0x47,0x39,0x30,0xd,0x72,0x1f,0x5,0xe,0x49,0x49,0x16,0xe,0x5,0x72,0x0,0x2b,0x32,0x32,0x2f,0x10,0xcc,0x32,0x2b,0x32,0x32,0x2f,0x10,0xcc,0x32,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x23,0x34,0x26,0x23,0x22,0x6,0x6,0x15,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x1,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x13,0x1,0x27,0x1,0x1,0xe0,0xd8,0x42,0x86,0x66,0x65,0x89,0x44,0x44,0x88,0x64,0x67,0x87,0x42,0xd8,0x2c,0x2c,0x1e,0x26,0x13,0x13,0x28,0x1e,0x2c,0x2a,0x1,0x2e,0x49,0x91,0x6b,0x6e,0x8f,0x47,0x47,0x8e,0x6d,0x6c,0x92,0x49,0xd9,0x1e,0x32,0x1e,0x2e,0x2d,0xf,0x18,0x30,0x24,0x24,0x30,0x18,0xab,0xfd,0x39,0x9d,0x2,0xc7,0x4,0x2c,0x46,0x7a,0x4c,0x52,0x88,0x51,0x4d,0x53,0x88,0x52,0x4c,0x7b,0x47,0x1f,0x39,0x21,0x36,0x20,0x4d,0x1e,0x36,0x21,0x39,0xfd,0x9,0x4d,0x52,0x88,0x52,0x52,0x88,0x52,0x4d,0x52,0x88,0x52,0x52,0x88,0x9f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x1f,0x4d,0x1f,0x36,0x21,0x21,0x36,0x3,0x5b,0xfb,0x8e,0x4f,0x4,0x72,0x0,0x0,0x1,0x0,0x8,0xff,0xeb,0x3,0xcc,0x5,0xc5,0x0,0x2e,0x0,0x14,0xb7,0x19,0x18,0x18,0x1,0x24,0xc,0x0,0x1,0x0,0x2f,0x33,0x2f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x22,0x2e,0x2,0x35,0x11,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x4,0x23,0x35,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x2,0x2,0xf6,0x93,0xd7,0x8d,0x45,0x3a,0x6c,0x99,0x5f,0x51,0x88,0x64,0x37,0x52,0xa0,0xe9,0xfe,0xd0,0xb9,0xb1,0xfe,0xa2,0x4e,0xb,0x13,0x18,0xd,0xe,0x18,0x12,0xa,0x15,0x31,0x52,0x1,0x23,0xfe,0xc8,0x40,0x77,0xa7,0x66,0x2,0x33,0x72,0xb4,0x7c,0x41,0x31,0x5d,0x85,0x53,0x2a,0x4e,0xaf,0xa8,0x89,0x51,0xbb,0x50,0x85,0x9f,0x4e,0x2c,0x12,0x1f,0x18,0xe,0x12,0x25,0x38,0x26,0xfd,0xe1,0x35,0x53,0x39,0x1e,0x0,0x4,0x0,0x70,0x0,0x0,0x7,0xaa,0x5,0xc0,0x0,0x3,0x0,0x15,0x0,0x27,0x0,0x31,0x0,0x25,0x40,0x11,0x2b,0x30,0x2e,0x2a,0x2,0x3,0x1b,0x12,0x24,0x9,0x9,0x31,0x2e,0x4,0x2a,0x2d,0xc,0x0,0x3f,0x33,0x3f,0x33,0x33,0x2f,0x33,0xdc,0x32,0xce,0x32,0x11,0x12,0x39,0x39,0x30,0x31,0x41,0x15,0x21,0x35,0x3,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x11,0x7,0x70,0xfd,0xb7,0x32,0x55,0x9b,0x6a,0x6c,0x9b,0x54,0x54,0x9a,0x6b,0x6b,0x9c,0x55,0xaf,0x26,0x4d,0x3a,0x39,0x4c,0x25,0x26,0x4c,0x3a,0x39,0x4c,0x26,0xfe,0xe9,0xfe,0x8d,0xfe,0xaa,0xfe,0xac,0x1,0x74,0x1,0x55,0x2,0x37,0x93,0x93,0x1,0xe3,0x39,0x67,0xa5,0x61,0x61,0xa5,0x67,0x39,0x67,0xa5,0x60,0x60,0xa5,0xa0,0x39,0x3b,0x63,0x3c,0x3c,0x63,0x3b,0x39,0x3a,0x63,0x3c,0x3c,0x63,0x1,0x23,0xfa,0x50,0x3,0x76,0xfc,0x8a,0x5,0xb0,0xfc,0x8a,0x3,0x76,0x0,0x2,0x0,0x7c,0x3,0x91,0x4,0x9c,0x5,0xb0,0x0,0xc,0x0,0x14,0x0,0x24,0x40,0x11,0x9,0x4,0x1,0x3,0x6,0xa,0x7,0x7,0x13,0x14,0x2,0x0,0x3,0x3,0x6,0x6,0x11,0x0,0x2f,0x33,0x11,0x33,0x11,0x33,0x3f,0x33,0x33,0x11,0x33,0x12,0x17,0x39,0x30,0x31,0x41,0x11,0x3,0x23,0x3,0x11,0x23,0x11,0x33,0x13,0x13,0x33,0x11,0x1,0x15,0x23,0x11,0x23,0x11,0x23,0x35,0x4,0x9,0x60,0x54,0x60,0x93,0xb4,0x69,0x76,0xa7,0xfd,0x83,0x78,0xa8,0x83,0x3,0x91,0x1,0x51,0xfe,0xaf,0x1,0x54,0xfe,0xac,0x2,0x1f,0xfe,0x9a,0x1,0x66,0xfd,0xe1,0x2,0x1f,0x74,0xfe,0x59,0x1,0xa7,0x74,0x0,0x2,0x0,0x92,0xff,0xec,0x4,0x8d,0x4,0x4e,0x0,0x1d,0x0,0x26,0x0,0x17,0x40,0xa,0x22,0x17,0x17,0x4,0x1e,0xe,0x7,0x1b,0x4,0xb,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x65,0x17,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x14,0x14,0x15,0x21,0x11,0x16,0x16,0x33,0x32,0x36,0x1,0x22,0x6,0x7,0x11,0x21,0x11,0x26,0x26,0x4,0xe,0x2,0x54,0xbc,0x62,0x6d,0xbe,0x90,0x51,0x59,0x96,0xbb,0x62,0x67,0xb3,0x88,0x4d,0xfd,0x0,0x37,0x8c,0x4e,0x5d,0xbb,0xfe,0xe8,0x4b,0x8d,0x39,0x2,0x1c,0x34,0x8a,0xc6,0x68,0x34,0x3e,0x58,0x9a,0xcc,0x73,0x74,0xcb,0x9a,0x58,0x51,0x92,0xc5,0x75,0x3,0x12,0x1a,0xfe,0xb8,0x33,0x3b,0x3b,0x3,0x69,0x42,0x38,0xfe,0xeb,0x1,0x1e,0x34,0x3d,0x0,0xff,0xff,0x0,0x69,0xff,0xf5,0x5,0xf6,0x5,0x98,0x4,0x27,0x1,0xe0,0xff,0xda,0x2,0x86,0x0,0x27,0x1,0x94,0x1,0x2b,0x0,0x0,0x1,0x7,0x2,0x3e,0x3,0x3a,0x0,0x0,0x0,0x7,0xb1,0x6,0x4,0x0,0x3f,0x30,0x31,0x0,0xff,0xff,0x0,0x3c,0xff,0xf5,0x6,0x91,0x5,0xb5,0x4,0x27,0x2,0x39,0x0,0x12,0x2,0x94,0x0,0x27,0x1,0x94,0x1,0xae,0x0,0x0,0x0,0x7,0x2,0x3e,0x3,0xd5,0x0,0x0,0xff,0xff,0x0,0x54,0xff,0xf5,0x6,0x78,0x5,0xb0,0x4,0x27,0x2,0x3b,0x0,0x18,0x2,0x9b,0x0,0x27,0x1,0x94,0x1,0xa1,0x0,0x0,0x1,0x7,0x2,0x3e,0x3,0xbc,0x0,0x0,0x0,0x7,0xb1,0x2,0x4,0x0,0x3f,0x30,0x31,0x0,0xff,0xff,0x0,0x5f,0xff,0xf5,0x6,0x4d,0x5,0xa3,0x4,0x27,0x2,0x3d,0x0,0x2f,0x2,0x8e,0x0,0x27,0x1,0x94,0x1,0x5e,0x0,0x0,0x1,0x7,0x2,0x3e,0x3,0x91,0x0,0x0,0x0,0x7,0xb1,0x6,0x4,0x0,0x3f,0x30,0x31,0x0,0x0,0x2,0x0,0x51,0xff,0xeb,0x4,0x68,0x6,0xa,0x0,0x29,0x0,0x3f,0x0,0x19,0x40,0xc,0x2a,0x0,0x0,0x12,0x35,0x1f,0xb,0x72,0x9,0x12,0x0,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x32,0x16,0x17,0x2e,0x4,0x23,0x22,0x6,0x6,0x7,0x27,0x3e,0x2,0x33,0x32,0x1e,0x2,0x12,0x17,0x15,0x14,0xe,0x3,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x13,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x2e,0x3,0x2,0x32,0x4d,0x82,0x3d,0xe,0x28,0x38,0x45,0x56,0x32,0x35,0x41,0x3b,0x2b,0x3d,0x24,0x58,0x71,0x49,0x69,0xb4,0x8f,0x65,0x36,0x1,0x2c,0x56,0x7e,0xa6,0x66,0x7f,0xc3,0x85,0x44,0x3e,0x7b,0xb3,0xa1,0x36,0x49,0x2a,0x12,0x12,0x2a,0x48,0x35,0x36,0x49,0x2a,0x12,0xf,0x26,0x2e,0x37,0x4,0x12,0x31,0x3a,0x41,0x6e,0x57,0x3e,0x20,0xa,0x16,0x13,0xe1,0x13,0x25,0x19,0x43,0x84,0xc7,0xfe,0xf8,0xa5,0x3b,0x73,0xcd,0xa9,0x7c,0x44,0x4f,0x8f,0xc2,0x73,0x15,0x6e,0xbb,0x8a,0x4c,0xfe,0xfc,0x2b,0x4b,0x62,0x37,0x15,0x35,0x5b,0x45,0x26,0x31,0x54,0x6e,0x3d,0x83,0x17,0x27,0x1d,0x11,0x0,0x0,0x1,0x0,0xa2,0xfe,0xf2,0x4,0xec,0x5,0xb0,0x0,0x7,0x0,0xe,0xb5,0x4,0x7,0x2,0x72,0x2,0x6,0x0,0x2f,0x33,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x4,0xec,0xfe,0xac,0xfe,0x5e,0xfe,0xac,0x5,0xb0,0xf9,0x42,0x5,0xc2,0xfa,0x3e,0x6,0xbe,0x0,0x3,0x0,0x33,0xfe,0xf2,0x4,0xea,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0x10,0x0,0x1f,0x40,0xe,0xe,0x6,0x6,0x7,0x7,0xf,0x2,0x72,0xc,0x3,0x3,0xa,0x2,0xb,0x0,0x2f,0x33,0x33,0x33,0x11,0x33,0x2b,0x32,0x11,0x33,0x11,0x33,0x30,0x31,0x45,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x15,0x1,0x21,0x35,0x1,0x1,0x35,0x21,0x4,0xea,0xfb,0xc6,0x4,0x2e,0xfc,0x5,0x2,0xd6,0xfd,0x90,0xfe,0xea,0x2,0x24,0xfd,0xdc,0x1,0x16,0xa,0xfe,0xfc,0x1,0x4,0x5,0xba,0xfe,0xfc,0x1,0x4,0xfc,0xbd,0x25,0xfc,0xaa,0x97,0x2,0xd2,0x2,0xbf,0x96,0x0,0x1,0x0,0x87,0x2,0x42,0x3,0xf6,0x3,0x4a,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x3,0xf6,0xfc,0x91,0x3,0x4a,0xfe,0xf8,0x1,0x8,0x0,0x3,0x0,0x34,0x0,0x0,0x4,0x4a,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x16,0x40,0xa,0x9,0xb,0xb,0xa,0x4,0x8,0x8,0x1,0x2,0x72,0x0,0x2b,0x3f,0x33,0x2f,0x33,0x11,0x33,0x30,0x31,0x65,0x1,0x33,0x1,0x23,0x3,0x13,0x17,0x23,0x3,0x3,0x11,0x21,0x11,0x2,0x38,0x1,0x1e,0xf4,0xfe,0xa1,0xd9,0x3c,0x94,0x12,0xbb,0xf8,0x95,0x1,0x8b,0xd3,0x4,0xdd,0xfa,0x50,0x2,0xec,0xfd,0xd5,0xc1,0x2,0xec,0xfe,0xf9,0x1,0x7,0xfe,0xf9,0x0,0x4,0x0,0x5e,0xff,0xec,0x8,0x1d,0x4,0x4e,0x0,0x17,0x0,0x2f,0x0,0x47,0x0,0x5f,0x0,0x1d,0x40,0xe,0x5b,0x36,0x36,0x1e,0x13,0xb,0x72,0x4e,0x43,0x43,0x2b,0x6,0x7,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x3,0x17,0x15,0xe,0x4,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x3,0x37,0x35,0x2e,0x4,0x23,0x22,0xe,0x2,0x5,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x3,0x27,0x35,0x3e,0x4,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x3,0x7,0x15,0x1e,0x4,0x33,0x32,0x3e,0x2,0x5e,0x49,0x89,0xc2,0x7a,0x68,0xa7,0x7f,0x5d,0x3d,0x11,0x11,0x3d,0x5c,0x80,0xa5,0x68,0x7b,0xc3,0x89,0x49,0x1,0x46,0x1d,0x39,0x54,0x37,0x37,0x57,0x41,0x2b,0x16,0x1,0x1,0x16,0x2a,0x41,0x58,0x39,0x36,0x53,0x39,0x1d,0x6,0x79,0x48,0x8a,0xc4,0x7b,0x68,0xa5,0x80,0x5c,0x3e,0x11,0x11,0x3e,0x5d,0x7f,0xa7,0x68,0x7b,0xc3,0x89,0x48,0xfe,0xb9,0x1d,0x38,0x54,0x36,0x39,0x58,0x41,0x2a,0x16,0x1,0x1,0x16,0x2b,0x41,0x57,0x37,0x36,0x54,0x3a,0x1d,0x2,0x14,0x11,0x76,0xca,0x96,0x53,0x44,0x72,0x8d,0x95,0x44,0x17,0x44,0x99,0x93,0x78,0x47,0x53,0x96,0xc9,0x87,0x11,0x3d,0x67,0x4c,0x2a,0x33,0x4d,0x52,0x42,0xd,0x17,0xc,0x3e,0x4d,0x48,0x2f,0x2c,0x4d,0x67,0x3b,0x11,0x76,0xc9,0x96,0x53,0x47,0x78,0x93,0x99,0x44,0x17,0x44,0x95,0x8d,0x72,0x44,0x53,0x96,0xca,0x87,0x11,0x3b,0x67,0x4d,0x2c,0x2f,0x48,0x4d,0x3e,0xc,0x17,0xd,0x42,0x52,0x4d,0x33,0x2a,0x4c,0x67,0x0,0x0,0x1,0xff,0x9a,0xfe,0x4b,0x2,0xd4,0x6,0x16,0x0,0x1f,0x0,0x10,0xb7,0x1b,0x14,0x1,0x72,0xb,0x4,0xf,0x72,0x0,0x2b,0x32,0x2b,0x32,0x30,0x31,0x45,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x7,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x1,0xd3,0x63,0xb7,0x80,0x2a,0x4a,0x2b,0xe,0x17,0x22,0x22,0x2a,0x38,0x1c,0x66,0xbf,0x87,0x2a,0x52,0x2b,0x18,0x18,0x2b,0x22,0x2a,0x3b,0x1f,0x19,0x88,0xb8,0x5c,0x7,0xa,0xff,0x5,0x7,0x1f,0x44,0x35,0x4,0xac,0x7e,0xac,0x59,0xc,0x9,0xf9,0x5,0x5,0x1d,0x39,0x29,0x0,0x0,0x2,0x0,0x65,0x0,0xe7,0x4,0x2d,0x4,0x1,0x0,0x19,0x0,0x33,0x0,0x1b,0x40,0xb,0x17,0x4,0x80,0xa,0x11,0x40,0x31,0x1e,0x80,0x24,0x2b,0x0,0x2f,0x33,0x1a,0xdd,0x32,0x1a,0xde,0x32,0x1a,0xcd,0x32,0x30,0x31,0x53,0x35,0x36,0x36,0x33,0x36,0x16,0x17,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x27,0x26,0x26,0x7,0x22,0x6,0x3,0x35,0x36,0x36,0x33,0x36,0x16,0x17,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x27,0x26,0x26,0x7,0x22,0x6,0x65,0x2f,0x86,0x41,0x50,0x72,0x3f,0x3b,0x6b,0x4a,0x41,0x71,0x2f,0x2f,0x66,0x41,0x4a,0x6b,0x3b,0x3f,0x72,0x50,0x41,0x91,0x2f,0x2f,0x7b,0x41,0x50,0x71,0x3f,0x3b,0x6c,0x4a,0x41,0x7c,0x2f,0x2f,0x71,0x41,0x4a,0x6b,0x3b,0x3f,0x72,0x50,0x41,0x86,0x2,0x9b,0xfa,0x32,0x38,0x2,0x2b,0x20,0x1e,0x27,0x43,0x3b,0xfa,0x31,0x39,0x27,0x1e,0x20,0x2b,0x2,0x43,0xfe,0x21,0xfa,0x32,0x38,0x2,0x2b,0x20,0x1e,0x27,0x43,0x3b,0xfa,0x31,0x39,0x27,0x1e,0x20,0x2b,0x2,0x43,0x0,0x0,0x3,0x0,0x80,0x0,0x4c,0x4,0x1f,0x4,0x9a,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1f,0x40,0xd,0x2,0x1,0x1,0xa,0xa,0xb,0x0,0x3,0x3,0x7,0x7,0x6,0xb,0x0,0x2f,0xce,0x32,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x1,0x27,0x1,0x5,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0x97,0xfd,0xea,0x82,0x2,0x17,0x1,0x9,0xfc,0x61,0x3,0x9f,0xfc,0x61,0x4,0x5b,0xfb,0xf1,0x3e,0x4,0x10,0xc4,0xfe,0xfc,0x1,0x4,0xfe,0x49,0xfe,0xfc,0x1,0x4,0x0,0x3,0x0,0x2e,0x0,0x1,0x3,0xab,0x4,0x54,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x22,0x40,0x10,0x3,0x7,0x6,0x0,0x4,0x8,0x6,0x5,0x9,0x9,0x1,0x2,0x2,0xd,0xd,0xc,0x0,0x2f,0x33,0x7c,0x10,0xce,0x2f,0x32,0x32,0x18,0x2f,0x33,0x17,0x39,0x30,0x31,0x41,0x5,0x15,0x1,0x35,0x25,0x5,0x5,0x35,0x1,0x13,0x15,0x21,0x35,0x1,0x41,0x2,0x62,0xfc,0x8b,0x3,0x75,0xfd,0x9d,0xfe,0xee,0x3,0x75,0x8,0xfc,0x91,0x2,0xd5,0xa7,0xf8,0x1,0x23,0xb9,0x4a,0xaa,0x3a,0xb9,0x1,0x23,0xfc,0x9d,0xf0,0xf0,0x0,0x3,0x0,0x6f,0x0,0x1,0x3,0xdf,0x4,0x55,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x22,0x40,0x10,0x3,0x7,0x6,0x0,0x4,0x8,0x6,0x1,0x2,0x2,0x5,0x9,0x9,0xd,0xd,0xc,0x0,0x2f,0x33,0x7c,0x10,0xce,0x2f,0x32,0x32,0x18,0x2f,0x33,0x17,0x39,0x30,0x31,0x41,0x25,0x35,0x1,0x15,0x5,0x25,0x25,0x15,0x1,0x5,0x15,0x21,0x35,0x2,0xcf,0xfd,0xa0,0x3,0x70,0xfc,0x90,0x2,0x60,0x1,0x10,0xfc,0x90,0x3,0x70,0xfc,0x91,0x2,0xb7,0xa7,0xf7,0xfe,0xdd,0xba,0x49,0xab,0x39,0xb9,0xfe,0xdd,0x46,0xf0,0xf0,0x0,0x2,0x0,0x1a,0x0,0x0,0x4,0x4,0x5,0xb0,0x0,0x7,0x0,0xf,0x0,0x1d,0x40,0xe,0x5,0x8,0x8,0xe,0x7,0x12,0x72,0x3,0xa,0xa,0xb,0x1,0x2,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x53,0x1,0x21,0x3,0x3,0x13,0x13,0x23,0x37,0x13,0x3,0x3,0x33,0x1,0x1,0x23,0x1a,0x1,0x60,0x1,0x7,0x4f,0xcb,0xce,0x35,0xf0,0x70,0xcd,0xc7,0x3c,0xf1,0x1,0x5f,0xfe,0xa0,0xf0,0x2,0xd7,0x2,0xd9,0xfe,0xf9,0xfe,0x2e,0xfe,0x2b,0xfe,0xfe,0xfe,0x1,0xd9,0x1,0xd2,0x1,0x7,0xfd,0x27,0xfd,0x29,0xff,0xff,0x0,0x71,0x0,0xb2,0x1,0xe5,0x5,0x22,0x4,0x27,0x0,0x12,0xff,0xfc,0x0,0xbd,0x0,0x7,0x0,0x12,0xff,0xfc,0x3,0xdb,0x0,0x2,0x0,0x50,0x2,0x97,0x2,0x31,0x4,0x39,0x0,0x3,0x0,0x7,0x0,0x10,0xb6,0x6,0x2,0x2,0x7,0x3,0x6,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x30,0x31,0x53,0x11,0x23,0x11,0x21,0x11,0x23,0x11,0xfb,0xab,0x1,0xe1,0xaa,0x4,0x39,0xfe,0x5e,0x1,0xa2,0xfe,0x5e,0x1,0xa2,0x0,0x0,0x1,0x0,0x22,0xff,0x6e,0x1,0x4f,0x1,0x1d,0x0,0x9,0x0,0xa,0xb2,0x4,0x80,0x9,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x15,0x14,0x6,0x7,0x27,0x36,0x36,0x35,0x35,0x1,0x4f,0x57,0x37,0x9f,0x21,0x2b,0x1,0x1d,0x45,0x64,0xc7,0x3f,0x50,0x35,0x77,0x5b,0x58,0xff,0xff,0x0,0xd,0x0,0x0,0x5,0x5c,0x6,0x15,0x4,0x26,0x0,0x4a,0x0,0x0,0x0,0x7,0x0,0x4a,0x2,0x74,0x0,0x0,0x0,0x3,0x0,0x11,0x0,0x0,0x4,0xa7,0x6,0x15,0x0,0x10,0x0,0x14,0x0,0x18,0x0,0x1b,0x40,0xf,0x18,0x6,0x17,0xa,0x72,0x13,0x14,0x6,0x72,0xd,0x6,0x1,0x72,0x1,0xa,0x0,0x3f,0x2b,0x32,0x2b,0x32,0x2b,0x3f,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0x6,0x15,0x17,0x15,0x21,0x35,0x21,0x11,0x21,0x11,0x2,0x0,0xfe,0xad,0x79,0xe4,0xa2,0x5c,0xaa,0x5b,0x2f,0x3b,0x81,0x61,0x5b,0x66,0xd4,0xfd,0x3d,0x4,0x96,0xfe,0xae,0x4,0x56,0x91,0xc7,0x67,0x20,0x1a,0xfe,0xf6,0x10,0x1c,0x56,0x51,0x1c,0xea,0xea,0xfb,0xc6,0x4,0x3a,0x0,0x0,0x3,0x0,0xd,0x0,0x0,0x4,0xa3,0x6,0x15,0x0,0x12,0x0,0x16,0x0,0x1a,0x0,0x1b,0x40,0xf,0x19,0x1a,0x6,0x72,0x14,0x0,0x72,0xe,0x6,0x1,0x72,0x13,0x1,0xa,0x72,0x0,0x2b,0x32,0x2b,0x32,0x2b,0x2b,0x32,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x1,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x1,0xfc,0xfe,0xad,0x72,0xd9,0x98,0x42,0xc6,0xc9,0x46,0x88,0x59,0xac,0x56,0x3f,0x57,0x2e,0x1,0x55,0x1,0x52,0xfe,0x2b,0xfd,0x3f,0x4,0x7e,0x84,0xb5,0x5e,0x7,0x9,0x5,0xfe,0xf1,0xe,0x12,0x22,0x41,0x30,0xfb,0x82,0x6,0x0,0xfa,0x0,0x4,0x3a,0xea,0xea,0x0,0x0,0x5,0x0,0xd,0x0,0x0,0x7,0x4b,0x6,0x15,0x0,0x11,0x0,0x15,0x0,0x26,0x0,0x2a,0x0,0x2e,0x0,0x25,0x40,0x14,0x23,0x1c,0x1,0x72,0x2e,0x2a,0x14,0x15,0x6,0x72,0xd,0x6,0x1,0x72,0x2d,0x17,0x17,0x1,0xa,0x72,0x0,0x2b,0x32,0x11,0x33,0x2b,0x32,0x2b,0x32,0x32,0x32,0x2b,0x32,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x17,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x17,0x15,0x21,0x35,0x1,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0x6,0x15,0x17,0x15,0x21,0x35,0x21,0x11,0x21,0x11,0x1,0xfc,0xfe,0xad,0x66,0xba,0x7f,0x2c,0x4e,0x25,0x1,0x12,0x26,0x1c,0x31,0x44,0x23,0xd2,0xfd,0x3f,0x4,0x96,0xfe,0xae,0x78,0xe5,0xa2,0x5b,0xaa,0x5b,0x2e,0x3c,0x81,0x61,0x5b,0x66,0xd4,0xfd,0x3d,0x4,0x97,0xfe,0xad,0x4,0x92,0x7e,0xac,0x59,0xc,0x9,0xf8,0x5,0x4,0x1d,0x39,0x29,0x58,0xea,0xea,0xfb,0xc6,0x4,0x56,0x91,0xc7,0x67,0x20,0x1a,0xfe,0xf6,0x10,0x1c,0x56,0x51,0x1c,0xea,0xea,0xfb,0xc6,0x4,0x3a,0x0,0x0,0x5,0x0,0xd,0x0,0x0,0x7,0x4b,0x6,0x15,0x0,0x11,0x0,0x15,0x0,0x28,0x0,0x2c,0x0,0x30,0x0,0x29,0x40,0x17,0x2b,0x0,0x72,0x24,0x1c,0x1,0x72,0x2e,0x14,0x14,0x2d,0x15,0x6,0x72,0xd,0x6,0x1,0x72,0x29,0x17,0x1,0xa,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x2b,0x30,0x31,0x61,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x17,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x17,0x15,0x21,0x35,0x1,0x21,0x11,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x17,0x3,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x1,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x1,0xfc,0xfe,0xad,0x66,0xba,0x7f,0x2c,0x4e,0x25,0x1,0x12,0x26,0x1c,0x31,0x44,0x23,0xd2,0xfd,0x3f,0x4,0x96,0xfe,0xae,0x72,0xd8,0x98,0x42,0xc6,0xca,0x46,0x88,0x59,0xad,0x56,0x3e,0x58,0x2e,0x1,0x55,0x1,0x53,0xfe,0x2b,0xfd,0x3e,0x4,0x92,0x7e,0xac,0x59,0xc,0x9,0xf8,0x5,0x4,0x1d,0x39,0x29,0x58,0xea,0xea,0xfb,0xc6,0x4,0x7e,0x84,0xb5,0x5e,0x7,0x9,0x5,0xfe,0xf1,0xe,0x12,0x22,0x41,0x30,0xfb,0x82,0x6,0x0,0xfa,0x0,0x4,0x3a,0xea,0xea,0x0,0x0,0x4,0x0,0xd,0xff,0xec,0x5,0x34,0x6,0x15,0x0,0x3,0x0,0x17,0x0,0x1b,0x0,0x2d,0x0,0x25,0x40,0x14,0x22,0x29,0xb,0x72,0x13,0xa,0x72,0x9,0x1c,0x1c,0xd,0xd,0x4,0x1,0x72,0x18,0x2,0x3,0x6,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x11,0x33,0x11,0x33,0x2b,0x2b,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x1,0x32,0x4,0x17,0x15,0x21,0x35,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x11,0x21,0x11,0x34,0x36,0x36,0x1,0x15,0x21,0x35,0x13,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x1,0x9d,0xfe,0x70,0x2,0x48,0xa8,0x1,0x12,0x64,0xfe,0xae,0x10,0x55,0x3d,0x2a,0x3b,0x1f,0xfe,0xae,0x66,0xbf,0x3,0x56,0xfd,0x74,0x89,0x1,0x52,0x14,0x30,0x29,0x1d,0x26,0x11,0x2b,0x5e,0x35,0x6c,0x99,0x50,0x4,0x3a,0xea,0xea,0x1,0xdb,0x4a,0x22,0xce,0x1d,0x8,0x11,0x1d,0x39,0x29,0xfb,0x6e,0x4,0x92,0x7e,0xac,0x59,0xfe,0x25,0xea,0xea,0x1,0xd,0xfc,0x1a,0x2b,0x2f,0x13,0x3,0x3,0xf1,0xe,0xf,0x44,0x92,0x75,0x0,0x0,0x4,0x0,0x24,0xff,0xec,0x6,0xd0,0x6,0x18,0x0,0x1b,0x0,0x1f,0x0,0x31,0x0,0x67,0x0,0x31,0x40,0x1b,0x3b,0x32,0x40,0x64,0x60,0x5b,0xb,0x72,0x1,0x45,0x49,0x40,0x7,0x72,0x26,0x2d,0xb,0x72,0x1e,0x10,0x1f,0x6,0x72,0x14,0xa,0x1,0x72,0x0,0x2b,0x32,0x2b,0x32,0x32,0x2b,0x32,0x2b,0x32,0xcc,0x32,0x2b,0xcc,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x23,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x15,0x14,0x1e,0x2,0x1,0x15,0x21,0x35,0x37,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x5,0x34,0x26,0x26,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x21,0x1e,0x2,0x33,0x32,0x36,0x36,0x3,0xdc,0x97,0x32,0x63,0x41,0x36,0x6e,0xa7,0x70,0x83,0xb9,0x73,0x36,0xfe,0xae,0x34,0x49,0x22,0x53,0x3c,0x17,0x1f,0x17,0x2,0xe4,0xfd,0x73,0x8a,0x1,0x52,0x14,0x30,0x29,0x1d,0x26,0x11,0x2b,0x5e,0x35,0x6c,0x99,0x50,0xfd,0xd9,0x25,0x5c,0x53,0x4f,0x8b,0x68,0x3b,0x3b,0x73,0xa6,0x6a,0x92,0xd4,0x73,0xfe,0xaf,0x1b,0x3c,0x32,0x23,0x39,0x22,0x15,0x2c,0x44,0x30,0x6d,0xbe,0x77,0x42,0x7c,0xae,0x6d,0x9b,0xd6,0x6d,0x1,0x3a,0x2,0x2d,0x4c,0x32,0x2e,0x3d,0x20,0x2,0xee,0x7c,0xab,0x8d,0x4d,0x3d,0x6c,0x52,0x2e,0x3c,0x6b,0x8d,0x50,0x3f,0x45,0x1b,0x62,0x34,0x3b,0x61,0x5e,0x6d,0x1,0x4,0xea,0xea,0x5a,0xfc,0xcd,0x29,0x30,0x14,0x3,0x3,0xf1,0xe,0xf,0x4c,0xa3,0x84,0x2f,0x1c,0x29,0x23,0x12,0x11,0x38,0x50,0x6e,0x47,0x45,0x7b,0x5f,0x37,0x59,0x9f,0x68,0x29,0x3a,0x1f,0x1a,0x2e,0x1f,0x16,0x23,0x1d,0x17,0x9,0x14,0x4a,0x88,0x73,0x48,0x79,0x5b,0x32,0x6f,0xa9,0x57,0x32,0x40,0x1e,0x1a,0x2d,0x0,0x0,0x15,0x0,0x55,0xfe,0x72,0x7,0xe8,0x5,0xae,0x0,0x5,0x0,0xb,0x0,0x11,0x0,0x17,0x0,0x1b,0x0,0x1f,0x0,0x23,0x0,0x27,0x0,0x2b,0x0,0x2f,0x0,0x33,0x0,0x37,0x0,0x3b,0x0,0x3f,0x0,0x43,0x0,0x47,0x0,0x57,0x0,0x73,0x0,0x8c,0x0,0x9a,0x0,0xa8,0x0,0x0,0x53,0x23,0x11,0x21,0x15,0x23,0x21,0x23,0x35,0x21,0x11,0x23,0x1,0x21,0x11,0x33,0x15,0x33,0x5,0x21,0x35,0x33,0x35,0x33,0x1,0x21,0x35,0x21,0x5,0x21,0x35,0x21,0x11,0x21,0x35,0x21,0x1,0x15,0x23,0x35,0x13,0x15,0x23,0x35,0x1,0x21,0x35,0x21,0x1,0x15,0x23,0x35,0x1,0x21,0x35,0x21,0x5,0x21,0x35,0x21,0x1,0x15,0x23,0x35,0x13,0x15,0x23,0x35,0x1,0x15,0x23,0x35,0x7,0x11,0x33,0x11,0x14,0x6,0x23,0x22,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x25,0x23,0x27,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x23,0x11,0x23,0x11,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x22,0x6,0x7,0x6,0x14,0x7,0x23,0x37,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x23,0x37,0x33,0x32,0x14,0x17,0x14,0x16,0x31,0x1e,0x2,0x15,0x14,0x6,0x1,0x15,0x14,0x6,0x23,0x22,0x26,0x35,0x35,0x34,0x36,0x33,0x32,0x16,0x7,0x35,0x34,0x26,0x23,0x22,0x6,0x15,0x15,0x14,0x16,0x33,0x32,0x36,0xc6,0x71,0x1,0x35,0xc4,0x6,0xb3,0xc7,0x1,0x36,0x6f,0xfa,0x11,0xfe,0xcb,0x71,0xc4,0x6,0x5e,0xfe,0xca,0xc7,0x6f,0xfe,0x51,0xfe,0xea,0x1,0x16,0xfc,0xe0,0xfe,0xec,0x1,0x14,0xfe,0xec,0x1,0x14,0x4,0xcf,0x6f,0x6f,0x6f,0xfd,0x30,0xfe,0xeb,0x1,0x15,0xfc,0x1d,0x71,0x4,0x54,0xfe,0xeb,0x1,0x15,0x1,0x90,0xfe,0xea,0x1,0x16,0xfa,0x8d,0x71,0x71,0x71,0x7,0x93,0x6f,0xe8,0x5c,0x6b,0x50,0x58,0x6d,0x5d,0x38,0x30,0x29,0x36,0xfd,0xc2,0x96,0x1,0x76,0x3b,0x3b,0x3b,0x3b,0x5d,0x5f,0xbc,0x42,0x5f,0x33,0x22,0x41,0x2f,0x1,0x4,0x2,0xc,0xe,0xb9,0x30,0x89,0x34,0x33,0x33,0x34,0x77,0x1,0x97,0xe,0xc,0x7,0x2b,0x3a,0x1e,0x69,0xfe,0x84,0x7f,0x66,0x67,0x81,0x80,0x66,0x67,0x80,0x5c,0x4a,0x41,0x40,0x4a,0x4b,0x41,0x40,0x49,0x4,0x91,0x1,0x1d,0x74,0x74,0xfe,0xe3,0xf9,0xe1,0x1,0x3b,0xca,0x71,0x71,0xca,0xfe,0xc5,0x71,0x71,0x71,0x6,0x57,0x74,0xfb,0x74,0xf9,0xf9,0x2,0xf2,0xfa,0xfa,0xfa,0x5e,0x71,0x2,0x3f,0xf9,0xf9,0x4,0x18,0x74,0x74,0x74,0xfc,0xee,0xfc,0xfc,0x1,0x78,0xfa,0xfa,0xfe,0x88,0xfc,0xfc,0xf3,0x1,0x7a,0xfe,0x86,0x4f,0x5c,0x51,0x53,0x2e,0x2d,0x37,0x72,0x46,0x29,0x27,0x29,0x1e,0xfe,0x2f,0x2,0x25,0x20,0x42,0x34,0x22,0x38,0x24,0x4,0x13,0x1,0x4,0x1,0xf4,0x4b,0x2c,0x27,0x27,0x2f,0x46,0x1,0x5,0x1,0x13,0x4,0x26,0x39,0x22,0x4c,0x4f,0x1,0x48,0x70,0x61,0x7a,0x7a,0x61,0x70,0x61,0x7a,0x7a,0xd1,0x70,0x44,0x4f,0x4f,0x44,0x70,0x45,0x4e,0x4e,0x0,0x5,0x0,0x5c,0xfd,0xd5,0x7,0xd7,0x8,0x73,0x0,0x3,0x0,0x1e,0x0,0x22,0x0,0x26,0x0,0x2a,0x0,0x0,0x53,0x9,0x2,0x3,0x33,0x34,0x36,0x37,0x36,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x7,0x33,0x36,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x7,0xe,0x2,0x13,0x35,0x23,0x15,0x13,0x35,0x33,0x15,0x3,0x35,0x33,0x15,0x5c,0x3,0xbc,0x3,0xbf,0xfc,0x41,0x77,0xca,0x19,0x29,0x44,0x62,0xa7,0x95,0x7f,0xb1,0x2,0xcb,0x2,0x3e,0x27,0x38,0x39,0x35,0x28,0x2f,0x3d,0x1d,0xc9,0xca,0x7f,0x4,0x6,0x4,0x2,0x83,0x3,0xcf,0xfc,0x31,0xfc,0x31,0x2,0xde,0x33,0x3e,0x1b,0x25,0x81,0x52,0x80,0x97,0x7d,0x8d,0x37,0x30,0x40,0x34,0x34,0x4d,0x1a,0x21,0x3a,0x4e,0xfe,0xbb,0xaa,0xaa,0xfd,0x48,0x4,0x4,0xa,0x9a,0x4,0x4,0x0,0x1,0x0,0x34,0x0,0x0,0x2,0xb9,0x3,0x21,0x0,0x1c,0x0,0x10,0xb5,0x3,0x1c,0x1c,0xb,0x13,0x2,0x0,0x2f,0xcc,0x32,0x33,0x11,0x33,0x30,0x31,0x65,0x15,0x21,0x35,0x25,0x3e,0x2,0x35,0x34,0x26,0x23,0x22,0x6,0x15,0x23,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x7,0x2,0xb9,0xfd,0x8d,0x1,0x1d,0x22,0x2b,0x16,0x29,0x2b,0x2e,0x2f,0xe1,0x4b,0x8a,0x5d,0x67,0x8e,0x4b,0x30,0x65,0x51,0x50,0xaf,0xaf,0x93,0xfd,0x1e,0x3a,0x30,0xd,0x23,0x29,0x3f,0x28,0x4c,0x7f,0x4c,0x3b,0x70,0x51,0x3c,0x5f,0x5c,0x3b,0x44,0x0,0x0,0x1,0x0,0x8f,0x0,0x0,0x2,0x1f,0x3,0x12,0x0,0x6,0x0,0x23,0x40,0x15,0x4,0x5,0x5,0x3,0x3,0x2f,0x0,0x7f,0x0,0x2,0xf,0x0,0x5f,0x0,0xaf,0x0,0xff,0x0,0x4,0x0,0x1,0x0,0x2f,0xcd,0x5d,0x71,0x32,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x23,0x11,0x7,0x35,0x25,0x2,0x1f,0xe0,0xb0,0x1,0x7d,0x3,0x12,0xfc,0xee,0x2,0x15,0x24,0xa7,0x7a,0x0,0x0,0x2,0x0,0x44,0xff,0xf5,0x2,0xbc,0x3,0x20,0x0,0x11,0x0,0x23,0x0,0xc,0xb3,0x17,0xe,0x20,0x5,0x0,0x2f,0x33,0xc4,0x32,0x30,0x31,0x41,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x3,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x2,0xbc,0x51,0x8e,0x5c,0x5d,0x8f,0x51,0x50,0x8f,0x5c,0x5d,0x8f,0x51,0xe0,0x17,0x2a,0x1c,0x1b,0x29,0x16,0x16,0x2a,0x1c,0x1b,0x29,0x17,0x1,0xe0,0xaf,0x6c,0x8c,0x44,0x44,0x8c,0x6c,0xaf,0x6c,0x8e,0x46,0x46,0x8e,0xfe,0xe0,0xba,0x34,0x3c,0x1a,0x1a,0x3c,0x34,0xba,0x35,0x3b,0x17,0x17,0x3b,0x0,0x0,0x1,0x0,0x42,0xff,0xec,0x3,0xeb,0x4,0x9e,0x0,0x32,0x0,0x17,0x40,0xa,0x14,0x1e,0x1e,0x26,0x1,0x31,0xa,0xc,0x26,0x7e,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x65,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x27,0x17,0x16,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x23,0x1,0x26,0x14,0x4a,0x80,0x60,0x36,0x10,0x20,0x31,0x21,0x29,0x3b,0x1f,0x21,0x42,0x31,0x27,0x34,0x1e,0xd,0x2,0x69,0x4,0x62,0x9c,0x54,0x74,0xb0,0x62,0x7c,0xd5,0x85,0x59,0xa7,0x85,0x4e,0x74,0xc4,0xf4,0x80,0x19,0xec,0x10,0x38,0x77,0x67,0xf0,0x2a,0x3a,0x24,0x10,0x2e,0x4e,0x30,0x31,0x40,0x1f,0x14,0x1c,0x1c,0x9,0xe,0x51,0x8d,0x56,0x52,0xab,0x86,0x74,0xc1,0x75,0x33,0x70,0xb8,0x85,0x53,0xc4,0xfa,0x8b,0x36,0x0,0x4,0x0,0x45,0xff,0xf0,0x3,0xef,0x4,0x9e,0x0,0x12,0x0,0x22,0x0,0x34,0x0,0x44,0x0,0x1d,0x40,0xd,0x28,0x17,0x17,0x41,0xe,0xe,0x5,0x39,0x31,0x7e,0x1f,0x5,0xb,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x1,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x5,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x3,0xef,0x45,0x7d,0xac,0x66,0x86,0xd5,0x7b,0x48,0x7f,0xaa,0x63,0x65,0xab,0x7f,0x47,0xfe,0xaf,0x22,0x3c,0x27,0x25,0x3b,0x22,0x22,0x3c,0x26,0x27,0x3b,0x21,0x1,0x35,0x40,0x75,0xa1,0x62,0x60,0xa2,0x77,0x42,0x72,0xc8,0x7f,0x83,0xc7,0x70,0xfe,0xaf,0x16,0x2e,0x25,0x22,0x2e,0x17,0x17,0x2e,0x24,0x25,0x2d,0x15,0x1,0x43,0x56,0x7f,0x54,0x2a,0x4a,0x97,0x72,0x51,0x7b,0x54,0x2b,0x2b,0x54,0x7b,0x2f,0x25,0x2f,0x16,0x16,0x2f,0x25,0x23,0x33,0x1c,0x1c,0x33,0x2,0xf,0x48,0x71,0x50,0x2a,0x2a,0x50,0x71,0x48,0x6e,0x94,0x4b,0x4b,0x94,0x84,0x20,0x2a,0x15,0x16,0x2a,0x1f,0x1e,0x2f,0x1b,0x1b,0x2f,0x0,0x0,0x1,0x0,0x28,0x0,0x0,0x3,0xe7,0x4,0x8d,0x0,0x6,0x0,0xe,0xb5,0x5,0x1,0x6,0x7d,0x3,0xa,0x0,0x3f,0x3f,0x33,0x33,0x30,0x31,0x41,0x15,0x1,0x21,0x1,0x21,0x11,0x3,0xe7,0xfe,0x25,0xfe,0x9c,0x1,0xdd,0xfd,0xa3,0x4,0x8d,0xb5,0xfc,0x28,0x3,0x89,0x1,0x4,0x0,0x1,0x0,0x3f,0xff,0xf0,0x4,0xa,0x4,0xa8,0x0,0x31,0x0,0x15,0x40,0x9,0x16,0x1f,0x1f,0xe,0x27,0xb,0x3,0x0,0x7e,0x0,0x3f,0x32,0x3f,0x33,0x39,0x2f,0x33,0x30,0x31,0x41,0x33,0x11,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x17,0x27,0x26,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x3,0x0,0x3a,0x10,0x4b,0x92,0x77,0x46,0x11,0x24,0x3a,0x29,0x29,0x41,0x26,0x26,0x42,0x2b,0x37,0x4c,0x24,0x1,0x57,0x5,0x51,0xa7,0x7d,0x75,0xa5,0x58,0x7c,0xd5,0x86,0x66,0xb5,0x8a,0x4f,0x7f,0xd0,0xf9,0x4,0xa8,0xfe,0xf9,0x16,0x45,0x8c,0x77,0xb1,0x2a,0x3d,0x27,0x12,0x29,0x46,0x29,0x30,0x38,0x19,0x24,0x2d,0x10,0x14,0x48,0x9a,0x6b,0x60,0xaf,0x77,0x74,0xb8,0x69,0x35,0x71,0xb8,0x82,0x4a,0xba,0xfc,0x96,0x42,0x0,0x1,0x0,0x36,0xff,0xf0,0x3,0xe3,0x4,0x8d,0x0,0x23,0x0,0x17,0x40,0xa,0x21,0x9,0x9,0x2,0x19,0x11,0xb,0x5,0x2,0x7d,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x25,0x13,0x21,0x15,0x21,0x7,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x21,0x6,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x1,0x5b,0xfe,0xf4,0x54,0x2,0xfa,0xfe,0x16,0x1c,0x11,0x6f,0x3d,0x84,0xb1,0x5a,0x65,0xce,0xa0,0x78,0xd9,0x89,0x1,0x1,0x56,0x1,0x47,0x3d,0x38,0x38,0x12,0x21,0x44,0x35,0x48,0x48,0x1,0xf2,0x3f,0x2,0x5c,0xfc,0xb8,0x7,0x1f,0x56,0xa6,0x77,0x66,0xbd,0x79,0x56,0x9d,0x6b,0x34,0x27,0x2c,0x46,0x27,0x30,0x46,0x25,0x29,0x0,0x2,0x0,0x37,0x0,0x0,0x3,0xfb,0x4,0x8d,0x0,0x7,0x0,0xb,0x0,0x15,0x40,0x9,0x0,0x1,0x1,0xa,0x4,0xb,0x7d,0xa,0x12,0x0,0x3f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x27,0x1,0x21,0x1,0x7,0x1,0x11,0x21,0x11,0x3,0xfb,0xfc,0x53,0x17,0x1,0xff,0x1,0xc,0xfe,0xde,0xad,0x2,0x10,0xfe,0xaf,0x1,0xee,0xfe,0xfa,0xd6,0x2,0xcf,0xfe,0x5a,0xf9,0x2,0x9f,0xfb,0x73,0x4,0x8d,0x0,0x0,0x2,0x0,0x1f,0xff,0xf0,0x3,0xf8,0x4,0x9e,0x0,0x1d,0x0,0x3d,0x0,0x1d,0x40,0xd,0x1f,0x0,0x0,0x1d,0x1e,0x1e,0x12,0x34,0x2a,0xb,0x9,0x12,0x7e,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x23,0x15,0x35,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x1,0x7e,0x84,0x31,0x3f,0x1f,0x18,0x3c,0x36,0x22,0x3a,0x23,0xfe,0xae,0x82,0xcf,0x74,0x6c,0xb3,0x82,0x46,0x45,0x77,0x9a,0x54,0xba,0xba,0x5a,0xa1,0x7d,0x48,0x4d,0x8a,0xba,0x6c,0x51,0xa7,0x8d,0x57,0x1,0x53,0x27,0x49,0x31,0x37,0x40,0x1c,0x16,0x2a,0x3d,0x27,0x2,0xbb,0x1e,0x37,0x24,0x17,0x2f,0x20,0x11,0x21,0x19,0x71,0x94,0x4a,0x2b,0x55,0x7d,0x52,0x47,0x6a,0x47,0x24,0x49,0x84,0x1b,0x41,0x73,0x58,0x52,0x7f,0x58,0x2e,0x27,0x57,0x8e,0x67,0x1c,0x33,0x21,0x23,0x37,0x1e,0x23,0x30,0x1e,0xe,0x0,0x1,0x0,0x2e,0x0,0x0,0x3,0xe9,0x4,0x9e,0x0,0x1e,0x0,0x12,0xb7,0xb,0x14,0x7e,0x3,0x1e,0x1e,0x2,0x12,0x0,0x3f,0x33,0x11,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x21,0x35,0x1,0x3e,0x2,0x35,0x34,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x7,0x7,0x3,0xe9,0xfc,0x60,0x1,0xa4,0x31,0x3f,0x20,0x3b,0x3f,0x2a,0x3b,0x1e,0xfe,0xae,0x6f,0xcc,0x8a,0x98,0xd5,0x6f,0x28,0x53,0x83,0x5a,0x6e,0x1,0x3,0xfe,0xfd,0xd9,0x1,0x76,0x2c,0x55,0x46,0x14,0x35,0x3b,0x2c,0x45,0x27,0x71,0xbb,0x70,0x56,0xa6,0x78,0x43,0x6e,0x66,0x6b,0x41,0x64,0x0,0x1,0x0,0x95,0x0,0x0,0x3,0x8,0x4,0x88,0x0,0x6,0x0,0xa,0xb3,0x6,0x7d,0x2,0xa,0x0,0x3f,0x3f,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0x35,0x25,0x3,0x8,0xfe,0xb0,0xfe,0xdd,0x2,0x57,0x4,0x88,0xfb,0x78,0x3,0x12,0x3a,0xf6,0xba,0x0,0x2,0x0,0x46,0xff,0xf0,0x3,0xee,0x4,0x9d,0x0,0x15,0x0,0x2b,0x0,0xe,0xb5,0x1c,0x11,0x7e,0x27,0x6,0xb,0x0,0x3f,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x1,0x11,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x11,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x3,0xee,0x45,0x7d,0xab,0x66,0x67,0xac,0x7d,0x45,0x44,0x7d,0xab,0x67,0x66,0xac,0x7e,0x45,0xfe,0xaf,0x13,0x22,0x31,0x1e,0x1e,0x30,0x22,0x12,0x12,0x23,0x31,0x1e,0x1d,0x30,0x22,0x13,0x2,0xc5,0xfe,0xfd,0x77,0xb0,0x73,0x38,0x38,0x73,0xb0,0x77,0x1,0x3,0x77,0xb1,0x76,0x3a,0x3a,0x76,0xb1,0xfe,0x7f,0x1,0x13,0x39,0x4d,0x30,0x15,0x15,0x30,0x4d,0x39,0xfe,0xed,0x3b,0x4d,0x2d,0x13,0x13,0x2d,0x4d,0x0,0x3,0x0,0x2c,0x0,0x0,0x4,0x17,0x4,0x8d,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1c,0x40,0xc,0x4,0xc,0xc,0xd,0xd,0x8,0x7d,0x7,0x3,0x3,0x6,0x2,0x0,0x2f,0x33,0x33,0x11,0x33,0x3f,0x33,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x23,0x35,0x1,0x33,0x23,0x11,0x21,0x11,0x4,0x17,0xfc,0x63,0x3,0x9c,0xfd,0x1a,0xfc,0x2,0xf4,0xee,0x67,0xfc,0x7d,0x1,0x3,0xfe,0xfd,0x1,0x3,0x2,0xed,0xfc,0x10,0xa1,0x3,0xec,0xfe,0xfc,0x1,0x4,0x0,0x3,0xff,0xf7,0x0,0x0,0x4,0x69,0x4,0x8d,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x1b,0x40,0x10,0x8,0x7,0x3,0x4,0x6,0x0,0xa,0xd,0x8,0x1,0xc,0xa,0x72,0x5,0x1,0x7d,0x0,0x3f,0x33,0x2b,0x11,0x17,0x39,0x30,0x31,0x41,0x1,0x21,0x1,0x23,0x3,0x1,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x1,0xf0,0x1,0xf,0x1,0x6a,0xfe,0x58,0xb0,0xb0,0x1,0x11,0x25,0xaf,0xfe,0x59,0x2,0xdf,0xfe,0xad,0x2,0x31,0x2,0x5c,0xfc,0xe7,0x3,0x19,0xfd,0x9d,0xb6,0x3,0x19,0xfd,0x9a,0xfd,0xd9,0x2,0x27,0x0,0x1,0xff,0xf1,0x0,0x0,0x4,0x70,0x4,0x8d,0x0,0xb,0x0,0x15,0x40,0xa,0x7,0xa,0x4,0x1,0x4,0x9,0x5,0x3,0x0,0x7d,0x0,0x3f,0x32,0x2f,0x33,0x17,0x39,0x30,0x31,0x41,0x13,0x13,0x21,0x1,0x1,0x21,0x3,0x3,0x21,0x1,0x1,0x1,0x7b,0xa6,0xa9,0x1,0x82,0xfe,0xac,0x1,0x78,0xfe,0x71,0xbc,0xb1,0xfe,0x7d,0x1,0x5f,0xfe,0xab,0x4,0x8d,0xfe,0x9c,0x1,0x64,0xfd,0xbe,0xfd,0xb5,0x1,0x6b,0xfe,0x95,0x2,0x4b,0x2,0x42,0x0,0x0,0x4,0x0,0x16,0x0,0x0,0x5,0xd1,0x4,0x8d,0x0,0x5,0x0,0xa,0x0,0xf,0x0,0x15,0x0,0x20,0x40,0xe,0x12,0x4,0x10,0x1,0xe,0x4,0xc,0x1,0x8,0x4,0x6,0x1,0x7d,0x4,0x0,0x2f,0x3f,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x65,0x13,0x33,0x17,0x3,0x23,0x3,0x13,0x7,0x23,0x1,0x1,0x13,0x21,0x3,0x23,0x3,0x13,0x7,0x23,0x3,0x37,0x1,0x77,0xe7,0x9d,0x5a,0xe6,0xae,0x68,0xc2,0x41,0xc3,0xfe,0xff,0x3,0xb7,0xc3,0x1,0x41,0xff,0xc1,0x8b,0xee,0x4b,0xae,0xf2,0x5e,0x42,0x4,0x4b,0x6d,0xfb,0xe0,0x4,0x8d,0xfb,0xb5,0x42,0x4,0x8d,0xfb,0xb5,0x4,0x4b,0xfb,0x73,0x4,0x8d,0xfb,0xb5,0x42,0x4,0x20,0x6d,0x0,0x0,0x2,0xff,0xf3,0x0,0x0,0x4,0xa2,0x4,0x8d,0x0,0x4,0x0,0x9,0x0,0xf,0xb5,0x7,0x3,0x5,0x1,0x7d,0x3,0x0,0x2f,0x3f,0x33,0x11,0x33,0x30,0x31,0x41,0x13,0x21,0x1,0x23,0x3,0x13,0x13,0x23,0x1,0x2,0x4b,0xf6,0x1,0x61,0xfe,0x66,0xf2,0xc2,0xf1,0x3c,0xf6,0xfe,0x68,0x1,0x42,0x3,0x4b,0xfb,0x73,0x4,0x8d,0xfc,0xb9,0xfe,0xba,0x4,0x8d,0x0,0x0,0x1,0x0,0x54,0xff,0xf0,0x4,0x44,0x4,0x8d,0x0,0x15,0x0,0xf,0xb5,0xc,0x11,0x6,0x0,0x7d,0x6,0x0,0x2f,0x3f,0x11,0x33,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x2,0xf2,0x1,0x52,0x79,0xe0,0x9d,0x98,0xe4,0x7e,0x1,0x53,0x25,0x4b,0x37,0x38,0x48,0x24,0x4,0x8d,0xfd,0x15,0x8b,0xc2,0x65,0x65,0xc2,0x8b,0x2,0xeb,0xfd,0x15,0x3e,0x4e,0x23,0x23,0x4e,0x3e,0x0,0x0,0x2,0x0,0x1d,0x0,0x0,0x4,0x4a,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0x11,0xb6,0x6,0x7,0x7,0x1,0x0,0x7d,0x1,0x0,0x2f,0x3f,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x2,0xd8,0xfe,0xac,0x2,0xc6,0xfb,0xd3,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfe,0xfc,0x1,0x4,0x0,0x0,0x1,0x0,0x37,0xff,0xf0,0x4,0x15,0x4,0x9d,0x0,0x39,0x0,0x18,0x40,0xa,0xa,0x26,0xf,0x36,0x31,0x2b,0x18,0x14,0xf,0x7e,0x0,0x3f,0xcc,0x33,0x2f,0xcc,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x34,0x2e,0x2,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x3,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x2,0xd5,0x15,0x2e,0x4d,0x38,0x74,0xa4,0x66,0x30,0x44,0x7b,0xa5,0x61,0x8e,0xe1,0x82,0xfe,0xaf,0x27,0x46,0x31,0x31,0x3e,0x1d,0x12,0x2a,0x45,0x32,0x73,0xaa,0x6f,0x37,0x42,0x7b,0xac,0x6a,0x5f,0xb9,0x95,0x59,0x1,0x52,0x15,0x2f,0x4e,0x38,0x37,0x38,0x13,0x1,0x3e,0x19,0x29,0x21,0x1e,0xd,0x1b,0x3e,0x53,0x75,0x51,0x4e,0x81,0x5d,0x33,0x53,0xa2,0x79,0x22,0x3c,0x26,0x22,0x2f,0x15,0x16,0x23,0x1d,0x1a,0xd,0x18,0x41,0x5b,0x7e,0x55,0x53,0x80,0x58,0x2e,0x2b,0x5e,0x97,0x6b,0x2b,0x3e,0x27,0x12,0x23,0x2f,0x0,0x0,0x2,0x0,0x51,0x0,0x0,0x4,0x5f,0x4,0x8d,0x0,0x19,0x0,0x1e,0x0,0x18,0x40,0xa,0x1b,0xd,0xd,0xc,0xc,0x1a,0x18,0x17,0x0,0x7d,0x0,0x3f,0x32,0x2f,0x33,0x39,0x2f,0x33,0x12,0x39,0x30,0x31,0x53,0x21,0x32,0x1e,0x2,0x15,0x14,0x6,0x6,0x7,0x7,0x21,0x3,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x21,0x1,0x25,0x1,0x15,0x51,0x2,0x4,0x6c,0xb2,0x80,0x45,0x43,0x74,0x4b,0x73,0xfe,0x59,0x2,0x1,0x3b,0x30,0x41,0x20,0x24,0x41,0x2c,0xb2,0xfe,0xae,0x2,0xa2,0xfe,0xf3,0x1,0x67,0x1,0x12,0x4,0x8d,0x2c,0x57,0x82,0x56,0x6e,0x8a,0x54,0x1f,0x45,0x1,0x4,0x1d,0x3b,0x2c,0x2a,0x38,0x1d,0xfc,0x77,0x2,0x0,0x3,0xfe,0xa,0xd,0x0,0x3,0x0,0x36,0xff,0x23,0x4,0x93,0x4,0x9d,0x0,0x3,0x0,0x19,0x0,0x2f,0x0,0x1c,0x40,0xc,0x0,0x3,0x3,0x2b,0x2b,0xa,0xa,0x2,0x20,0x15,0x7e,0x2,0x0,0x2f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x12,0x39,0x11,0x33,0x30,0x31,0x65,0x1,0x7,0x1,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x3,0x1b,0x1,0x63,0xce,0xfe,0xa1,0x2,0x42,0x52,0x96,0xcc,0x7a,0x7b,0xcd,0x96,0x51,0x51,0x95,0xcc,0x7c,0x79,0xcc,0x97,0x53,0xfe,0xaf,0x1e,0x3a,0x52,0x34,0x37,0x53,0x37,0x1b,0x1b,0x38,0x53,0x37,0x34,0x52,0x39,0x1e,0xdb,0xfe,0xf3,0xab,0x1,0xe,0x2,0x29,0x28,0x85,0xd6,0x97,0x50,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0x50,0x98,0xd5,0xae,0x29,0x4d,0x77,0x52,0x2b,0x2b,0x52,0x77,0x4d,0x29,0x4b,0x77,0x54,0x2c,0x2c,0x54,0x77,0x0,0x1,0x0,0x51,0x0,0x0,0x4,0x3f,0x4,0x8d,0x0,0x18,0x0,0x13,0xb7,0x2,0x1,0x1,0xd,0xc,0xf,0x7d,0xd,0x0,0x2f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x2,0x4e,0xfe,0xce,0x1,0x32,0x36,0x48,0x23,0x23,0x48,0x36,0xab,0xfe,0xae,0x1,0xfd,0x99,0xdf,0x79,0x45,0x82,0xb7,0x1,0x6d,0x1,0x4,0x20,0x38,0x22,0x2b,0x47,0x2c,0xfc,0x77,0x4,0x8d,0x6c,0xbc,0x78,0x54,0x8d,0x67,0x38,0x0,0x0,0x2,0x0,0x30,0xff,0xf0,0x4,0x8f,0x4,0x9d,0x0,0x15,0x0,0x2b,0x0,0x10,0xb6,0x27,0x6,0x1c,0x11,0x7e,0x6,0xb,0x0,0x3f,0x3f,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x4,0x8f,0x52,0x96,0xcc,0x7a,0x7c,0xcd,0x96,0x52,0x51,0x95,0xcd,0x7c,0x7a,0xcc,0x97,0x53,0xfe,0xac,0x1e,0x39,0x51,0x34,0x37,0x53,0x36,0x1b,0x1b,0x38,0x53,0x37,0x33,0x51,0x38,0x1e,0x2,0x5a,0x28,0x85,0xd6,0x97,0x50,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0x50,0x98,0xd5,0xae,0x29,0x4d,0x77,0x52,0x2b,0x2b,0x52,0x77,0x4d,0x29,0x4b,0x77,0x54,0x2c,0x2c,0x54,0x77,0x0,0x0,0x1,0x0,0x51,0x0,0x0,0x4,0x7e,0x4,0x8d,0x0,0x9,0x0,0x11,0xb6,0x3,0x8,0x5,0x1,0x7,0x0,0x7d,0x0,0x3f,0x32,0x2f,0x33,0x39,0x39,0x30,0x31,0x41,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x11,0x4,0x7e,0xfe,0xae,0xfe,0x77,0xfe,0xae,0x1,0x52,0x1,0x89,0x4,0x8d,0xfb,0x73,0x2,0xa6,0xfd,0x5a,0x4,0x8d,0xfd,0x5a,0x2,0xa6,0x0,0x0,0x3,0x0,0x51,0x0,0x0,0x5,0xb7,0x4,0x8d,0x0,0x6,0x0,0xb,0x0,0x10,0x0,0x16,0x40,0x9,0x2,0xe,0xa,0x5,0xc,0x7,0x4,0x0,0x7d,0x0,0x3f,0x32,0x32,0x32,0x2f,0x33,0x33,0x39,0x30,0x31,0x41,0x21,0x13,0x13,0x21,0x1,0x23,0x1,0x21,0x13,0x15,0x21,0x1,0x21,0x11,0x21,0x35,0x1,0x4,0x1,0xc,0xf3,0xf3,0x1,0xc,0xfe,0x6e,0xda,0xfd,0xbb,0x1,0x1d,0x37,0xfe,0xac,0x4,0x48,0x1,0x1e,0xfe,0xad,0x4,0x8d,0xfd,0x19,0x2,0xe7,0xfb,0x73,0x4,0x8d,0xfc,0x27,0xb4,0x4,0x8d,0xfb,0x73,0xb4,0x0,0x0,0x2,0x0,0x51,0x0,0x0,0x3,0x9e,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xf,0xb5,0x6,0x3,0x2,0x4,0x7d,0x2,0x0,0x2f,0x3f,0x11,0x33,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x3,0x9e,0xfd,0x84,0x81,0xfe,0xae,0x1,0x3,0xfe,0xfd,0x1,0x3,0x3,0x8a,0xfb,0x73,0x4,0x8d,0x0,0x3,0x0,0x51,0x0,0x0,0x4,0x83,0x4,0x8d,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x17,0x40,0xc,0x6,0x7,0xb,0x5,0xc,0x8,0x6,0xa,0x1,0x4,0x0,0x7d,0x0,0x3f,0x32,0x2f,0x33,0x17,0x39,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x1,0x3,0x37,0x13,0x13,0x1,0x25,0x1,0x1,0xa3,0xfe,0xae,0x4,0x32,0xfe,0x2f,0xfe,0xf6,0x5b,0xab,0xe2,0x1c,0xfe,0xe2,0x1,0xd,0x1,0x9e,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfd,0x99,0xfe,0xf9,0x1,0x22,0xfd,0x1,0x4f,0xfb,0x73,0x1,0xf9,0xb1,0xfd,0x56,0x0,0x0,0x1,0x0,0x1d,0xff,0xf0,0x3,0x8f,0x4,0x8d,0x0,0x13,0x0,0xd,0xb4,0x10,0xc,0x7,0x1,0x7d,0x0,0x3f,0x2f,0xcc,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x2,0x3d,0x1,0x52,0x78,0xc5,0x76,0x88,0xc9,0x6e,0x1,0x52,0x16,0x30,0x27,0x23,0x2a,0x14,0x1,0x9f,0x2,0xee,0xfd,0x12,0x89,0xc1,0x65,0x56,0xb3,0x8b,0x31,0x41,0x1f,0x23,0x4c,0x0,0x1,0x0,0x68,0x0,0x0,0x1,0xba,0x4,0x8d,0x0,0x3,0x0,0x9,0xb2,0x0,0x7d,0x1,0x0,0x2f,0x3f,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0xba,0xfe,0xae,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x0,0x3,0x0,0x51,0x0,0x0,0x4,0x7f,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x18,0x40,0xa,0x2,0x3,0x3,0x4,0x9,0x5,0x8,0x4,0x7d,0x5,0x0,0x2f,0x3f,0x33,0x11,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0xa7,0xfd,0x82,0x7a,0xfe,0xae,0x4,0x2e,0xfe,0xb0,0x2,0xbc,0xfe,0xfc,0x1,0x4,0x1,0xd1,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x0,0x1,0x0,0x3e,0xff,0xf0,0x4,0x6e,0x4,0x9e,0x0,0x2a,0x0,0x16,0x40,0x9,0x29,0x2a,0x2a,0x5,0x19,0x10,0x7e,0x24,0x5,0x0,0x2f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x35,0x23,0x35,0x4,0x6e,0x23,0x8c,0xcd,0x86,0x7f,0xce,0x93,0x4e,0x53,0x94,0xc5,0x73,0xb5,0xe0,0x70,0xb,0xfe,0xbd,0x8,0x2b,0x4e,0x3f,0x2d,0x4f,0x3c,0x22,0x1c,0x3b,0x5f,0x42,0x36,0x4c,0x10,0xc8,0x2,0x82,0xfe,0x8,0x21,0x48,0x31,0x4a,0x92,0xd4,0x8a,0x38,0x8a,0xd5,0x92,0x4b,0x6a,0xbc,0x7b,0x38,0x45,0x20,0x23,0x4b,0x75,0x53,0x3a,0x50,0x76,0x4c,0x25,0x15,0xa,0x8f,0xe1,0x0,0x3,0x0,0x51,0x0,0x0,0x3,0xaa,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1a,0x40,0xb,0x7,0x6,0x6,0x1,0xa,0xb,0xb,0x1,0x0,0x7d,0x1,0x0,0x2f,0x3f,0x11,0x39,0x2f,0x33,0x11,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0xa3,0xfe,0xae,0x3,0x31,0xfd,0xbd,0x2,0x6b,0xfd,0x95,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfe,0x2f,0xfe,0xfc,0x1,0x4,0x1,0xd1,0xfe,0xfc,0x1,0x4,0x0,0x3,0x0,0x37,0xff,0x13,0x4,0x15,0x5,0x73,0x0,0x3,0x0,0x7,0x0,0x41,0x0,0x29,0x40,0x13,0x7,0x3e,0x3e,0x24,0x8,0x17,0x33,0x6,0x6,0x33,0xb,0x2,0x20,0x20,0x17,0x0,0x0,0x17,0x7e,0x0,0x3f,0x33,0x2f,0x11,0x33,0x11,0x33,0x3f,0x33,0x2f,0x11,0x12,0x39,0x39,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x23,0x11,0x13,0x11,0x23,0x11,0x37,0x34,0x2e,0x2,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x3,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x2,0x8d,0xa0,0xa0,0xa0,0xe8,0x15,0x2e,0x4d,0x38,0x74,0xa4,0x66,0x30,0x44,0x7b,0xa5,0x61,0x8e,0xe1,0x82,0xfe,0xaf,0x27,0x46,0x31,0x31,0x3e,0x1d,0x12,0x2a,0x45,0x32,0x73,0xaa,0x6f,0x37,0x42,0x7b,0xac,0x6a,0x5f,0xb9,0x95,0x59,0x1,0x52,0x15,0x2f,0x4e,0x38,0x37,0x38,0x13,0x5,0x73,0xfe,0xc8,0x1,0x38,0xfa,0xd8,0xfe,0xc8,0x1,0x38,0xf3,0x19,0x29,0x21,0x1e,0xd,0x1b,0x3e,0x53,0x75,0x51,0x4e,0x81,0x5d,0x33,0x53,0xa2,0x79,0x22,0x3c,0x26,0x22,0x2f,0x15,0x16,0x23,0x1d,0x1a,0xd,0x18,0x41,0x5b,0x7e,0x55,0x53,0x80,0x58,0x2e,0x2b,0x5e,0x97,0x6b,0x2b,0x3e,0x27,0x12,0x23,0x2f,0x0,0x0,0x3,0x0,0x49,0x0,0x0,0x4,0x66,0x4,0x9d,0x0,0x3,0x0,0x7,0x0,0x26,0x0,0x1d,0x40,0xd,0x4,0x5,0x5,0x1,0x22,0x19,0x7e,0xe,0x2,0x2,0xd,0x1,0xa,0x0,0x3f,0x33,0x33,0x11,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x61,0x21,0x11,0x21,0x3,0x15,0x21,0x35,0x25,0x17,0x16,0x6,0x6,0x7,0x27,0x3e,0x3,0x27,0x27,0x26,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x4,0x66,0xfc,0x2a,0x3,0xd6,0xd0,0xfc,0xb3,0x1,0xec,0xd,0x6,0x4a,0x97,0x6f,0x5e,0x1b,0x21,0x11,0x5,0x1,0x7,0x3,0x3a,0x73,0xa6,0x67,0x98,0xc8,0x63,0xfe,0xad,0x19,0x30,0x23,0x1c,0x2b,0x1b,0xb,0x1,0x4,0x1,0x88,0xb7,0xb7,0x4a,0xca,0x59,0x90,0x6d,0x24,0x72,0x7,0x2f,0x45,0x50,0x28,0xdf,0x6c,0xa9,0x75,0x3d,0x6a,0xbf,0x7f,0x3e,0x49,0x20,0x1a,0x32,0x4a,0x0,0x5,0x0,0x4,0x0,0x0,0x3,0xa7,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xc,0x0,0x11,0x0,0x15,0x0,0x1b,0x40,0xb,0x6,0x7,0x3,0x2,0x2,0x11,0x14,0xa,0x9,0x11,0x7d,0x0,0x3f,0x33,0x3f,0x12,0x39,0x7c,0x2f,0x33,0x18,0xce,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x5,0x15,0x21,0x35,0x25,0x13,0x21,0x1,0x23,0x3,0x13,0x7,0x23,0x1,0x1,0x11,0x21,0x11,0x3,0x85,0xfc,0x9a,0x3,0x66,0xfc,0x9a,0x1,0x75,0xb2,0x1,0x61,0xfe,0xc0,0xb0,0x52,0xb4,0x26,0xb0,0xfe,0xc1,0x2,0x77,0xfe,0xae,0x2,0x8c,0xb8,0xb8,0xfa,0xb7,0xb7,0x9f,0x2,0x5c,0xfc,0xe7,0x3,0x19,0xfd,0x9d,0xb6,0x3,0x19,0xfd,0x9a,0xfd,0xd9,0x2,0x27,0x0,0x2,0x0,0x51,0x0,0x0,0x3,0xbb,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xe,0xb5,0x7,0x6,0x3,0x7d,0x2,0xa,0x0,0x3f,0x3f,0x33,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x1,0xa3,0xfe,0xae,0x3,0x6a,0xfd,0x7c,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfe,0xfc,0x1,0x4,0x0,0x3,0xff,0xf3,0x0,0x0,0x4,0xa2,0x4,0x8d,0x0,0x3,0x0,0x8,0x0,0xd,0x0,0x1b,0x40,0xc,0x8,0xc,0x7d,0x0,0x5,0x5,0x9,0x2,0x3,0x3,0x9,0xa,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x3f,0x33,0x30,0x31,0x61,0x11,0x21,0x11,0x1,0x13,0x21,0x1,0x23,0x3,0x13,0x13,0x23,0x1,0x3,0x9c,0xfd,0x69,0x1,0x46,0xf6,0x1,0x61,0xfe,0x66,0xf2,0xc2,0xf1,0x3c,0xf6,0xfe,0x68,0x1,0x4,0xfe,0xfc,0x3,0x4b,0xfc,0xb5,0x4,0x8d,0xfb,0x73,0x3,0x47,0x1,0x46,0xfb,0x73,0x0,0x0,0x3,0x0,0x30,0xff,0xf0,0x4,0x8f,0x4,0x9d,0x0,0x3,0x0,0x19,0x0,0x2f,0x0,0x17,0x40,0xa,0x3,0x2,0x2,0xa,0x20,0x15,0x7e,0x2b,0xa,0xb,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x3,0x4,0xfe,0xbf,0x2,0xcc,0x52,0x96,0xcc,0x7a,0x7c,0xcd,0x96,0x52,0x51,0x95,0xcd,0x7c,0x7a,0xcc,0x97,0x53,0xfe,0xac,0x1e,0x39,0x51,0x34,0x37,0x53,0x36,0x1b,0x1b,0x38,0x53,0x37,0x33,0x51,0x38,0x1e,0x2,0xbb,0xfe,0xfc,0x1,0x4,0x61,0x28,0x85,0xd6,0x97,0x50,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0x50,0x98,0xd5,0xae,0x29,0x4d,0x77,0x52,0x2b,0x2b,0x52,0x77,0x4d,0x29,0x4b,0x77,0x54,0x2c,0x2c,0x54,0x77,0x0,0x0,0x2,0xff,0xf3,0x0,0x0,0x4,0xa2,0x4,0x8d,0x0,0x4,0x0,0x9,0x0,0xe,0xb5,0x1,0x9,0xa,0x4,0x8,0x7d,0x0,0x3f,0x33,0x3f,0x33,0x30,0x31,0x41,0x13,0x21,0x1,0x23,0x3,0x13,0x13,0x23,0x1,0x2,0x4b,0xf6,0x1,0x61,0xfe,0x66,0xf2,0xc2,0xf1,0x3c,0xf6,0xfe,0x68,0x3,0x4b,0xfc,0xb5,0x4,0x8d,0xfb,0x73,0x3,0x47,0x1,0x46,0xfb,0x73,0x0,0x3,0x0,0x53,0x0,0x0,0x3,0x6d,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x17,0x40,0xa,0x7,0x6,0x6,0x2,0xa,0xb,0x7d,0x3,0x2,0xa,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0x6d,0xfc,0xe6,0x2,0xbf,0xfd,0x9c,0x2,0xbf,0xfc,0xe6,0x1,0x4,0xfe,0xfc,0x1,0x4,0x1,0xd8,0xfe,0xfc,0x1,0x4,0x1,0xb1,0xfe,0xfc,0x1,0x4,0x0,0x0,0x3,0x0,0x51,0x0,0x0,0x4,0x98,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x13,0xb7,0xa,0x5,0xb,0x7,0x2,0x0,0x3,0x7d,0x0,0x3f,0x33,0x33,0x33,0x33,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0xbe,0xfd,0x69,0x7c,0xfe,0xae,0x4,0x47,0xfe,0xad,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x3,0x0,0x4c,0x0,0x0,0x4,0x24,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0x10,0x0,0x25,0x40,0x12,0xd,0x8,0x9,0x3,0xa,0x6,0x10,0x10,0xe,0x7,0x7d,0xa,0x2,0xc,0x3,0x3,0x2,0xa,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x3f,0x33,0x33,0x11,0x33,0x12,0x17,0x39,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x15,0x1,0x21,0x35,0x1,0x1,0x35,0x21,0x4,0x24,0xfc,0xa6,0x3,0x4b,0xfc,0xe9,0x1,0xc3,0xfe,0x96,0xfe,0xf5,0x1,0x2a,0xfe,0xd6,0x1,0xb,0x1,0x4,0xfe,0xfc,0x1,0x4,0x3,0x89,0xfe,0xfc,0x1,0x4,0xfd,0xd9,0xe,0xfd,0xa8,0x98,0x1,0xc7,0x1,0x98,0x96,0x0,0x0,0x3,0x0,0x31,0x0,0x0,0x5,0xe2,0x4,0x8d,0x0,0x15,0x0,0x27,0x0,0x2b,0x0,0x15,0x40,0x9,0x16,0x0,0x0,0x2b,0x7d,0x1e,0xc,0x2a,0xa,0x0,0x3f,0xcd,0x32,0x3f,0x33,0x2f,0x33,0x30,0x31,0x41,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x17,0x22,0x6,0x6,0x7,0x6,0x16,0x16,0x33,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x13,0x11,0x21,0x11,0x2,0xad,0xba,0x89,0xe8,0xab,0x5f,0x5f,0xab,0xe8,0x89,0xba,0x89,0xe8,0xac,0x5f,0x5f,0xac,0xe8,0x72,0x4f,0x7a,0x47,0x2,0x2,0x47,0x7e,0x4f,0xe9,0x50,0x7b,0x45,0x45,0x7b,0x50,0x35,0xfe,0xaf,0x4,0x1b,0x37,0x71,0xaf,0x78,0x7c,0xb7,0x77,0x3a,0x3a,0x77,0xb6,0x7b,0x79,0xb0,0x71,0x37,0xf2,0x2c,0x62,0x51,0x56,0x6a,0x30,0x31,0x6a,0x57,0x50,0x61,0x2c,0x1,0x64,0xfb,0x73,0x4,0x8d,0x0,0x2,0x0,0x31,0x0,0x0,0x5,0x98,0x4,0x8d,0x0,0x19,0x0,0x1d,0x0,0x1f,0x40,0xe,0x15,0x14,0x14,0x6,0x7,0x7,0xd,0x1c,0xe,0x0,0x1d,0x1d,0xd,0x7d,0x0,0x3f,0x33,0x11,0x33,0x3f,0x12,0x39,0x11,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x11,0x14,0x2,0x4,0x23,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x33,0x32,0x36,0x36,0x35,0x3,0x11,0x21,0x11,0x4,0x46,0x1,0x52,0x8f,0xfe,0xf1,0xc1,0xaa,0x91,0xe1,0x9b,0x51,0x1,0x52,0x1a,0x3f,0x6f,0x55,0xaa,0x6f,0x6b,0x22,0xb9,0xfe,0xaf,0x4,0x8d,0xfe,0xe2,0xc5,0xfe,0xed,0x8f,0x51,0x9d,0xe5,0x94,0x1,0x1e,0xfe,0xe2,0x5b,0x85,0x58,0x2b,0x4d,0x9d,0x79,0x1,0x1e,0xfb,0x73,0x4,0x8d,0x0,0x3,0x0,0x35,0x0,0x0,0x4,0x8a,0x4,0x9d,0x0,0x2c,0x0,0x30,0x0,0x34,0x0,0x27,0x40,0x13,0x2d,0x34,0xa,0x2e,0x33,0xa,0x28,0x12,0x12,0x29,0x11,0x11,0x32,0x32,0x31,0xa,0x6,0x1d,0x7e,0x0,0x3f,0x33,0x3f,0x33,0x11,0x33,0x11,0x33,0x33,0x11,0x33,0x3f,0x33,0x3f,0x33,0x30,0x31,0x41,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x17,0x15,0x2e,0x3,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x7,0x35,0x3e,0x2,0x3,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x38,0x18,0x34,0x53,0x3b,0x3a,0x52,0x33,0x17,0x13,0x29,0x40,0x2d,0x5d,0xb5,0x92,0x58,0x4b,0x90,0xcd,0x81,0x82,0xce,0x90,0x4c,0x57,0x91,0xb3,0x5c,0x38,0x49,0x24,0xa5,0x1,0xe0,0xfb,0xe0,0x1,0xde,0x2,0x5c,0x33,0x3a,0x62,0x49,0x28,0x28,0x49,0x62,0x3a,0x33,0x42,0x6a,0x51,0x3d,0x16,0x6c,0xb,0x50,0x85,0xb1,0x6b,0x1f,0x5c,0xad,0x89,0x50,0x50,0x89,0xab,0x5c,0x21,0x6b,0xb1,0x84,0x51,0xb,0x6c,0x1e,0x59,0x81,0xfd,0xfc,0x1,0x8,0xfe,0xf8,0x1,0x8,0xfe,0xf8,0x0,0x0,0x3,0x0,0x1d,0xff,0xec,0x5,0x97,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0x23,0x0,0x1c,0x40,0xd,0x17,0x16,0xb,0x20,0xd,0xd,0x3,0x4,0xa,0x5,0x2,0x3,0x7d,0x0,0x3f,0x33,0x33,0x3f,0x12,0x39,0x2f,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0x35,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x35,0x32,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x4,0x15,0xfc,0x8,0x1,0x50,0x1,0x53,0x83,0x17,0x78,0x95,0x40,0x8c,0xe4,0x86,0x3d,0x7d,0xbb,0x7e,0x1f,0x3a,0x2e,0x1b,0x32,0x61,0x49,0x2a,0x65,0x6b,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x1,0xc2,0xfd,0x10,0x1e,0x15,0x56,0xb6,0x91,0x5a,0x8c,0x61,0x32,0xf3,0xc,0x1c,0x31,0x26,0x39,0x47,0x20,0xe,0x1b,0x0,0x2,0x0,0x30,0xff,0xf0,0x4,0x62,0x4,0x9e,0x0,0x3,0x0,0x2b,0x0,0x17,0x40,0xa,0x0,0x1,0x1,0x9,0x1d,0x14,0x7e,0x28,0x9,0xb,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x21,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x17,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x2,0x9d,0xfe,0xa8,0x1,0xc9,0x1,0x52,0x5,0x87,0xeb,0x9b,0x82,0xc9,0x8b,0x48,0x4c,0x8d,0xc3,0x78,0xaa,0xe9,0x80,0xb,0xfe,0xaf,0x1,0x27,0x5a,0x4d,0x30,0x49,0x30,0x19,0x16,0x31,0x4e,0x37,0x3b,0x57,0x30,0x2,0xc9,0xfe,0xfc,0x1,0x4,0xfe,0xce,0x81,0xbe,0x68,0x4f,0x96,0xd6,0x88,0x26,0x88,0xd7,0x97,0x4f,0x72,0xc4,0x7c,0x2d,0x50,0x31,0x25,0x4e,0x79,0x54,0x27,0x57,0x7b,0x4b,0x23,0x21,0x49,0x0,0x3,0x0,0x17,0x0,0x0,0x7,0x48,0x4,0x8d,0x0,0x11,0x0,0x29,0x0,0x2d,0x0,0x20,0x40,0xf,0x28,0x29,0x29,0x1c,0x2c,0x1d,0x1,0x2d,0x7d,0x1f,0x1c,0xa,0xb,0x8,0xa,0x0,0x3f,0x33,0x3f,0x33,0x3f,0x33,0x33,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x3,0xe,0x4,0x23,0x23,0x3,0x37,0x3e,0x4,0x37,0x25,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x11,0x3,0x11,0x21,0x11,0x1,0x4,0x1,0x54,0x15,0x7,0x26,0x48,0x73,0xa4,0x70,0x29,0x7,0x21,0x29,0x3b,0x29,0x1a,0x10,0x5,0x4,0x4e,0x9c,0xe9,0x81,0x4a,0x88,0xbf,0x75,0xfd,0xf6,0x1,0x53,0xb7,0x55,0x60,0x2b,0x51,0x39,0xfe,0xc1,0x62,0xfd,0xc2,0x4,0x8d,0xfe,0x13,0x97,0xe0,0x9d,0x60,0x2c,0x1,0x5,0x6,0x7,0x1d,0x3a,0x63,0x9c,0x70,0x57,0x66,0xb6,0x78,0x5a,0x96,0x6f,0x3c,0x4,0x8d,0xfc,0x77,0x5b,0x3e,0x29,0x40,0x25,0x1,0x4,0x1,0x5e,0xfe,0xfc,0x1,0x4,0x0,0x3,0x0,0x51,0x0,0x0,0x7,0x36,0x4,0x8d,0x0,0x17,0x0,0x1b,0x0,0x1f,0x0,0x21,0x40,0xf,0x17,0x16,0x16,0x1b,0x1a,0x1a,0x1e,0xb,0x1f,0x7d,0xd,0xa,0xa,0x1e,0xa,0x0,0x3f,0x33,0x11,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x2f,0x33,0x30,0x31,0x41,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x11,0x7,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x5,0x30,0x9c,0xe9,0x81,0x4a,0x88,0xbf,0x75,0xfd,0xf6,0x1,0x52,0xb8,0x55,0x5f,0x2b,0x50,0x39,0xfe,0xc1,0x53,0xfd,0x8b,0x7a,0xfe,0xae,0x3,0x2f,0x66,0xb6,0x78,0x5a,0x96,0x6f,0x3c,0x4,0x8d,0xfc,0x77,0x5b,0x3e,0x29,0x40,0x25,0x1,0x4,0x73,0xfe,0xfc,0x1,0x4,0x1,0xd1,0xfb,0x73,0x4,0x8d,0x0,0x3,0x0,0x1d,0x0,0x0,0x5,0x97,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0x1b,0x0,0x19,0x40,0xb,0x18,0xd,0xd,0x3,0x13,0x4,0xa,0x5,0x2,0x3,0x7d,0x0,0x3f,0x33,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0x35,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x4,0x15,0xfc,0x8,0x1,0x50,0x1,0x53,0x83,0x17,0x77,0x92,0x3c,0x90,0xe7,0x87,0xfe,0xae,0x31,0x61,0x49,0x2a,0x65,0x6b,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x1,0xc2,0xfd,0x10,0x1e,0x15,0x4f,0xc5,0xb1,0xfe,0xc3,0x1,0x3c,0x4f,0x53,0x20,0xe,0x1b,0x0,0x4,0x0,0x51,0xfe,0xac,0x4,0x98,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1b,0x40,0xc,0xf,0xb,0x7d,0x3,0x7,0x7,0xe,0xa,0x2,0x2,0xa,0xa,0x0,0x3f,0x33,0x2f,0x11,0x33,0x33,0x11,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0x30,0xfe,0xae,0x1,0xe0,0xfd,0x69,0x7c,0xfe,0xae,0x4,0x47,0xfe,0xad,0x1,0x4,0xfd,0xa8,0x2,0x58,0xfe,0xfc,0x1,0x4,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x2,0x0,0x51,0x0,0x0,0x4,0x61,0x4,0x8d,0x0,0x17,0x0,0x1b,0x0,0x1b,0x40,0xc,0x2,0x1,0x1,0xd,0xb,0xe,0xa,0x1b,0x1a,0x1a,0xd,0x7d,0x0,0x3f,0x33,0x11,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x3e,0x2,0x35,0x34,0x26,0x26,0x37,0x11,0x21,0x11,0x2,0x5b,0xfe,0xc1,0x1,0x3f,0x39,0x51,0x2b,0x60,0x55,0xb8,0xfe,0xae,0x2,0xa,0x75,0xbf,0x88,0x4a,0x81,0xe9,0xef,0xfd,0x53,0x3,0x7,0xfe,0xfc,0x18,0x36,0x2c,0x47,0x3e,0x3,0x89,0xfb,0x73,0x33,0x64,0x92,0x5e,0x7f,0xab,0x56,0x82,0x1,0x4,0xfe,0xfc,0x0,0x3,0x0,0x1b,0xfe,0xb5,0x5,0x61,0x4,0x8d,0x0,0x10,0x0,0x16,0x0,0x1e,0x0,0x23,0x40,0x10,0x1a,0x1d,0x1d,0x9,0x17,0xa,0xa,0x1c,0x14,0x9,0xa,0x16,0x11,0x11,0x0,0x7d,0x0,0x3f,0x32,0x11,0x33,0x3f,0x33,0x33,0x33,0x11,0x33,0x11,0x33,0x2f,0x33,0x30,0x31,0x41,0x21,0x3,0xe,0x4,0x7,0x23,0x3,0x33,0x3e,0x3,0x35,0x13,0x21,0x11,0x21,0x11,0x21,0x1,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x1,0x27,0x1,0x50,0x1,0x1,0x34,0x5d,0x7b,0x90,0x4d,0x24,0x7,0x1a,0x3c,0x45,0x20,0x9,0x5e,0x3,0x3c,0xfe,0xae,0xfe,0x16,0xfe,0x98,0x5,0x46,0xfe,0xaf,0xfd,0x5c,0xfe,0xaf,0x4,0x8d,0xfe,0x8b,0xa2,0xf7,0xb2,0x77,0x46,0x10,0x1,0x3,0x3c,0x6f,0x79,0x95,0x63,0x1,0x6e,0xfb,0x73,0x3,0x89,0xfd,0x7b,0xfd,0xb1,0x1,0x4b,0xfe,0xb5,0x0,0x0,0x5,0x0,0x13,0x0,0x0,0x6,0x96,0x4,0x8d,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x13,0x0,0x17,0x0,0x35,0x40,0x19,0x14,0x17,0x17,0x11,0xc,0xb,0xb,0x7,0x7,0x11,0x11,0x6,0xe,0xe,0xf,0xa,0x2,0x2,0x15,0xa,0x9,0x3,0x3,0xf,0x7d,0x0,0x3f,0x33,0x11,0x33,0x3f,0x33,0x11,0x33,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x13,0x33,0x13,0x13,0x3,0x25,0x9,0x2,0x21,0x13,0x33,0x13,0x27,0x3,0x21,0x1,0x3,0xfe,0xfe,0xae,0x3,0xcd,0xfe,0x9d,0xfe,0xbc,0x4,0x82,0x9d,0x8,0xbc,0x1,0x22,0x1,0x33,0xfa,0xf7,0xfe,0xa3,0x1,0x84,0x9d,0x82,0x4,0x6f,0xbc,0xfe,0x67,0x1,0x36,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfd,0x16,0x1,0x3b,0x1,0xaf,0xfb,0x73,0x1,0xe3,0xb7,0xfd,0x66,0x1,0xa3,0x2,0xea,0xfe,0x51,0xfe,0xc5,0x40,0xfe,0x1d,0x2,0x99,0x0,0x2,0x0,0x3b,0xff,0xf0,0x4,0xd,0x4,0x9d,0x0,0x1e,0x0,0x3e,0x0,0x1d,0x40,0xd,0x1f,0x2,0x2,0x1,0x3e,0x3e,0x15,0x34,0x2a,0xb,0xb,0x15,0x7e,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x25,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x23,0x2,0x7f,0xfc,0x97,0x36,0x3f,0x1a,0x18,0x3e,0x3a,0x1d,0x39,0x25,0xfe,0xae,0x47,0x7f,0xa9,0x62,0x79,0xb3,0x76,0x3b,0x36,0x64,0x8b,0xfe,0xae,0xfc,0x5d,0x93,0x68,0x36,0x42,0x7f,0xb8,0x77,0x60,0xae,0x86,0x4e,0x1,0x52,0x26,0x44,0x2c,0x40,0x42,0x18,0x16,0x2b,0x42,0x2c,0x8b,0x2,0x2c,0x8d,0x1f,0x35,0x22,0x1c,0x31,0x20,0x11,0x22,0x19,0x53,0x7d,0x53,0x2a,0x2d,0x53,0x74,0x47,0x40,0x71,0x55,0x30,0x48,0x2b,0x50,0x6f,0x44,0x4f,0x7f,0x59,0x2f,0x2a,0x57,0x87,0x5c,0x20,0x2d,0x17,0x24,0x39,0x21,0x20,0x2f,0x1f,0xf,0x0,0x3,0x0,0x51,0x0,0x0,0x4,0x80,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xc,0x0,0x3,0xa,0x7,0xb,0xa,0x1,0x2,0x5,0x5,0x8,0x7d,0x0,0x3f,0x33,0x11,0x33,0x33,0x3f,0x33,0x33,0x33,0x33,0x30,0x31,0x77,0x1,0x17,0x1,0x1,0x21,0x11,0x21,0x1,0x21,0x11,0x21,0xa4,0x2,0x8a,0xfc,0xfd,0x79,0x1,0x8b,0x1,0x52,0xfe,0xae,0xfd,0x23,0x1,0x52,0xfe,0xae,0x61,0x4,0x2c,0x61,0xfb,0xd4,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x0,0x0,0x3,0x0,0x51,0x0,0x0,0x4,0x65,0x4,0x8d,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1f,0x40,0xe,0xc,0xb,0xb,0x7,0x7,0x6,0x6,0x2,0x9,0x3,0x7d,0xa,0x2,0xa,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x1,0xa3,0xfe,0xae,0x3,0xee,0xfe,0x87,0xfe,0xb0,0x26,0xc9,0xa8,0x10,0xd6,0x1,0x11,0x1,0x59,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfd,0x16,0x1,0x3b,0x1,0xaf,0xfb,0x73,0x1,0xe3,0xb8,0xfd,0x65,0x0,0x0,0x3,0x0,0x17,0x0,0x0,0x4,0x8b,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0x19,0x0,0x18,0x40,0xb,0x13,0x10,0xa,0x7,0x2,0x3,0x3,0x8,0x7d,0x6,0xa,0x0,0x3f,0x3f,0x33,0x11,0x33,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x21,0x3,0xe,0x4,0x23,0x23,0x3,0x37,0x3e,0x4,0x37,0x3,0xa1,0xfd,0xc2,0x3,0x28,0xfe,0xad,0xfd,0xcc,0x1,0x54,0x15,0x6,0x26,0x49,0x72,0xa5,0x70,0x29,0x7,0x21,0x29,0x3b,0x29,0x1b,0x10,0x4,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfb,0x73,0x4,0x8d,0xfe,0x13,0x97,0xe0,0x9d,0x60,0x2c,0x1,0x5,0x6,0x7,0x1d,0x3a,0x63,0x9c,0x70,0x0,0x2,0x0,0x18,0xff,0xeb,0x4,0x9b,0x4,0x8d,0x0,0x12,0x0,0x17,0x0,0x17,0x40,0xa,0x1,0x17,0x7d,0x15,0x16,0x16,0xe,0xe,0x7,0xb,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x3f,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0xe,0x2,0x23,0x22,0x26,0x27,0x3,0x16,0x16,0x33,0x32,0x36,0x36,0x37,0x3,0x1,0x17,0x7,0x1,0x2,0x3e,0x1,0x0,0x1,0x5d,0xfe,0x69,0x27,0x63,0x92,0x71,0x16,0x3f,0x16,0x5,0xc,0x30,0xc,0x36,0x3c,0x26,0x13,0x7b,0x1,0x20,0x37,0xc5,0xfe,0x7,0x2,0x10,0x2,0x7d,0xfc,0x9b,0x53,0x91,0x59,0x1,0x1,0x1,0x6,0x2,0x2,0x20,0x3d,0x2b,0x3,0x16,0xfd,0xca,0xf0,0x73,0x3,0x99,0x0,0x4,0x0,0x51,0xfe,0xb5,0x5,0x7c,0x4,0x8d,0x0,0x5,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x1d,0x40,0xd,0x11,0xd,0x7d,0x5,0x9,0x9,0x10,0xb,0x8,0x2,0x2,0x8,0xa,0x0,0x3f,0x33,0x2f,0x11,0x33,0x33,0x33,0x11,0x33,0x3f,0x33,0x30,0x31,0x41,0x3,0x21,0x11,0x23,0x11,0x33,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0x7c,0x14,0xfe,0xc3,0x70,0x3,0xfd,0x69,0x7c,0xfe,0xae,0x4,0x47,0xfe,0xad,0x1,0x4,0xfd,0xb1,0x1,0x4b,0x1,0x4,0xfe,0xfc,0x1,0x4,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x0,0x2,0x0,0x4d,0x0,0x0,0x4,0x78,0x4,0x8d,0x0,0x3,0x0,0x17,0x0,0x13,0xb7,0x14,0x9,0x9,0x2,0x3,0xe,0x7d,0x2,0x0,0x2f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x15,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x4,0x78,0xfe,0xad,0x82,0x16,0x74,0x7e,0x25,0xa7,0xfb,0x8b,0x1,0x52,0x31,0x62,0x48,0x2b,0x64,0x6b,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfe,0x2a,0xfd,0xf,0x1f,0x15,0x4f,0xc6,0xb0,0x1,0x51,0xfe,0xb0,0x4e,0x54,0x20,0xe,0x1b,0x0,0x4,0x0,0x51,0x0,0x0,0x6,0x8a,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x19,0x40,0xb,0xb,0x7,0x7,0xf,0x10,0xa,0x6,0x6,0x3,0xe,0x7d,0x0,0x3f,0x33,0x33,0x11,0x33,0x3f,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0xb0,0xfb,0x6e,0x2,0xf9,0xfe,0xad,0x3,0xc6,0xfe,0xae,0xfc,0x6b,0xfe,0xae,0x1,0x4,0xfe,0xfc,0x1,0x4,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x0,0x5,0x0,0x51,0xfe,0xb5,0x7,0x6e,0x4,0x8d,0x0,0x5,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x15,0x0,0x27,0x40,0x12,0x11,0xd,0xd,0x15,0x7d,0x4,0x10,0x2,0x2,0x10,0x10,0xc,0xc,0x13,0x13,0x9,0x8,0xa,0x0,0x3f,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x2f,0x11,0x33,0x3f,0x33,0x11,0x33,0x30,0x31,0x41,0x3,0x21,0x11,0x23,0x11,0x33,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x7,0x6e,0x14,0xfe,0xc3,0x70,0x3,0xfb,0x6e,0x2,0xf9,0xfe,0xad,0x3,0xc6,0xfe,0xae,0xfc,0x6b,0xfe,0xae,0x1,0x4,0xfd,0xb1,0x1,0x4b,0x1,0x4,0xfe,0xfc,0x1,0x4,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x2,0x0,0xa,0x0,0x0,0x5,0xa8,0x4,0x8d,0x0,0x3,0x0,0x1a,0x0,0x17,0x40,0xa,0x6,0x5,0x5,0xf,0x12,0xa,0x11,0x1,0x0,0x7d,0x0,0x3f,0x32,0x32,0x3f,0x33,0x39,0x2f,0x33,0x30,0x31,0x53,0x11,0x21,0x11,0x1,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0xa,0x1,0xf1,0x1,0xa7,0xfe,0xc1,0x1,0x3f,0x39,0x50,0x2b,0x5f,0x55,0xb8,0xfe,0xae,0x2,0xa,0x9c,0xe9,0x81,0x81,0xe9,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfe,0xa2,0xfe,0xfc,0x25,0x40,0x29,0x3e,0x5b,0x3,0x89,0xfb,0x73,0x6a,0xb9,0x78,0x78,0xb6,0x66,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x6,0x6,0x4,0x8d,0x4,0x26,0x2,0x22,0x0,0x0,0x0,0x7,0x1,0xfd,0x4,0x4c,0x0,0x0,0x0,0x1,0x0,0x51,0x0,0x0,0x4,0x61,0x4,0x8d,0x0,0x16,0x0,0x15,0x40,0x9,0x15,0x16,0x16,0xa,0xc,0x9,0xa,0xa,0x7d,0x0,0x3f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x11,0x2,0x5b,0x9c,0xe9,0x81,0x81,0xe9,0x9c,0xfd,0xf6,0x1,0x52,0xb8,0x55,0x60,0x2b,0x51,0x39,0xfe,0xc1,0x3,0x2f,0x66,0xb6,0x78,0x78,0xb9,0x6a,0x4,0x8d,0xfc,0x77,0x5b,0x3e,0x29,0x40,0x25,0x1,0x4,0x0,0x0,0x2,0x0,0x25,0xff,0xf0,0x4,0x57,0x4,0x9e,0x0,0x3,0x0,0x2b,0x0,0x17,0x40,0xa,0x2,0x1,0x1,0x1c,0x8,0x27,0xb,0x13,0x1c,0x7e,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x1,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x6,0x17,0x21,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x27,0x3,0x43,0xfe,0xa8,0x1,0x58,0xfe,0x36,0x1,0x2f,0x58,0x3b,0x38,0x4d,0x30,0x16,0x19,0x30,0x49,0x30,0x4c,0x5b,0x26,0x1,0xfe,0xae,0xc,0x7f,0xea,0xa9,0x78,0xc4,0x8c,0x4c,0x48,0x8a,0xca,0x81,0x9b,0xec,0x86,0x5,0x1,0xc5,0x1,0x4,0xfe,0xce,0x3a,0x49,0x21,0x23,0x4b,0x7b,0x57,0x27,0x54,0x79,0x4e,0x25,0x31,0x50,0x2d,0x7c,0xc4,0x72,0x4f,0x97,0xd7,0x88,0x26,0x88,0xd6,0x96,0x4f,0x68,0xbe,0x81,0x0,0x4,0x0,0x51,0xff,0xf0,0x6,0x87,0x4,0x9d,0x0,0x3,0x0,0x7,0x0,0x1d,0x0,0x33,0x0,0x1d,0x40,0xe,0x24,0x19,0x7e,0x2f,0xe,0xb,0x3,0x2,0x2,0x6,0x7,0x7d,0x6,0xa,0x0,0x3f,0x3f,0x12,0x39,0x2f,0x33,0x3f,0x33,0x3f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x2,0xbf,0xfe,0xb8,0x2b,0xfe,0xaf,0x6,0x36,0x52,0x96,0xcc,0x7a,0x7c,0xcd,0x96,0x52,0x51,0x95,0xcd,0x7c,0x7a,0xcc,0x97,0x53,0xfe,0xad,0x1e,0x39,0x52,0x34,0x37,0x53,0x36,0x1b,0x1b,0x38,0x53,0x37,0x33,0x51,0x39,0x1e,0x2,0xba,0xfe,0xfc,0x1,0x4,0x1,0xd3,0xfb,0x73,0x4,0x8d,0xfd,0xcd,0x28,0x85,0xd6,0x97,0x50,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0x50,0x98,0xd5,0xae,0x29,0x4d,0x77,0x52,0x2b,0x2b,0x52,0x77,0x4d,0x29,0x4b,0x77,0x54,0x2c,0x2c,0x54,0x77,0x0,0x0,0x2,0x0,0x29,0x0,0x0,0x4,0x2d,0x4,0x8d,0x0,0x3,0x0,0x23,0x0,0x19,0x40,0xb,0x23,0x0,0x4,0x4,0x19,0x1b,0x16,0x7d,0x19,0x1,0xa,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x5,0x21,0x6,0x26,0x26,0x27,0x2e,0x2,0x23,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x21,0x11,0x21,0x11,0x23,0x22,0x6,0x15,0x14,0x16,0x16,0x33,0x21,0x2,0xbd,0xfe,0xdc,0xfe,0x90,0x1,0x22,0x2,0x17,0xfe,0xaa,0x21,0xc,0x5,0x17,0x3,0x4,0x3,0x3,0x67,0x8f,0x49,0x45,0x81,0xb3,0x6e,0x1,0xcf,0xfe,0xae,0x81,0x44,0x4f,0x24,0x42,0x2d,0x1,0xa,0x2,0x53,0xfd,0xad,0x2,0x53,0xcf,0x1,0x9,0xe,0x4,0x1,0x1e,0x1f,0x1b,0x5d,0x82,0x52,0x52,0x83,0x5e,0x32,0xfb,0x73,0x3,0x89,0x4b,0x32,0x28,0x3d,0x21,0x0,0x3,0x0,0xa,0x0,0x0,0x4,0x37,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xc,0xb,0xa,0xa,0x3,0x2,0x6,0x7,0x7,0x3,0x7d,0x2,0xa,0x0,0x3f,0x3f,0x33,0x11,0x33,0x11,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x2,0x20,0xfe,0xad,0x3,0x6a,0xfd,0x7d,0x1,0x31,0xfd,0x25,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfd,0xf5,0xbf,0xbf,0x0,0x0,0x6,0x0,0x13,0xfe,0xb5,0x7,0xa,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x17,0x0,0x1b,0x0,0x3b,0x40,0x1c,0x2,0xe,0x1,0x1,0xe,0xe,0x6,0x1b,0x18,0x18,0x15,0x12,0x12,0x10,0xf,0xc,0x9,0x9,0x13,0x6,0x6,0x19,0xa,0xd,0x7,0x7,0x13,0x7d,0x0,0x3f,0x33,0x11,0x33,0x3f,0x33,0x11,0x12,0x39,0x2f,0x33,0x33,0x33,0x33,0x11,0x33,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x2f,0x11,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x21,0x13,0x33,0x13,0x13,0x3,0x25,0x9,0x2,0x21,0x13,0x33,0x13,0x27,0x3,0x21,0x1,0x7,0xa,0xfe,0xf2,0x1,0xe,0xfc,0xf4,0xfe,0xae,0x3,0xcd,0xfe,0x9d,0xfe,0xbc,0x4,0x82,0x9d,0x8,0xbc,0x1,0x22,0x1,0x33,0xfa,0xf7,0xfe,0xa3,0x1,0x84,0x9d,0x82,0x4,0x6f,0xbc,0xfe,0x67,0x1,0x36,0xfe,0xb5,0x2,0x4f,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfd,0x16,0x1,0x3b,0x1,0xaf,0xfb,0x73,0x1,0xe3,0xb7,0xfd,0x66,0x1,0xa3,0x2,0xea,0xfe,0x51,0xfe,0xc5,0x40,0xfe,0x1d,0x2,0x99,0x0,0x4,0x0,0x51,0xfe,0xb5,0x4,0xd2,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x27,0x40,0x12,0x10,0xf,0xf,0xb,0xa,0xa,0x6,0xd,0x7,0x7d,0x2,0xe,0x1,0x1,0xe,0xe,0x6,0xa,0x0,0x3f,0x33,0x11,0x33,0x2f,0x11,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x21,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x4,0xd2,0xfe,0xf2,0x1,0xe,0xfc,0xd1,0xfe,0xae,0x3,0xee,0xfe,0x87,0xfe,0xb0,0x26,0xc9,0xa8,0x10,0xd6,0x1,0x11,0x1,0x59,0xfe,0xb5,0x2,0x4f,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfd,0x16,0x1,0x3b,0x1,0xaf,0xfb,0x73,0x1,0xe3,0xb8,0xfd,0x65,0x0,0x0,0x4,0x0,0x51,0x0,0x0,0x5,0x0,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x29,0x40,0x13,0x10,0xf,0xf,0xa,0x0,0xb,0xb,0xa,0x3,0x3,0xa,0xa,0x6,0xd,0x7,0x7d,0xe,0x6,0xa,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x11,0x23,0x3,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x21,0x13,0x13,0x3,0x25,0x1,0x1,0xdc,0xab,0xab,0x39,0xfe,0xae,0x4,0x89,0xfe,0x88,0xfe,0x14,0x26,0x1,0x65,0xa8,0xf,0xd6,0x1,0x12,0x1,0x58,0x3,0xb5,0xfd,0x21,0x3,0xb7,0xfb,0x73,0x4,0x8d,0xfd,0x16,0x1,0x3b,0x1,0xaf,0xfb,0x73,0x1,0xe3,0xb8,0xfd,0x65,0x0,0x0,0x4,0x0,0x1d,0x0,0x0,0x5,0xbf,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xd,0x0,0x11,0x0,0x21,0x40,0xf,0x10,0xf,0xf,0xb,0xa,0xa,0xe,0x6,0xa,0xd,0x7,0x7,0x3,0x0,0x7d,0x0,0x3f,0x32,0x32,0x11,0x33,0x3f,0x33,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x53,0x21,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x13,0x13,0x3,0x25,0x1,0x1d,0x1,0xf1,0xfe,0xf,0x2,0xe1,0xfe,0xad,0x3,0xee,0xfe,0x87,0xfe,0xb0,0x26,0xca,0xa7,0x10,0xd6,0x1,0x11,0x1,0x59,0x4,0x8d,0xfe,0xfc,0x1,0x4,0xfb,0x73,0x4,0x8d,0xfd,0x16,0x1,0x3b,0x1,0xaf,0xfb,0x73,0x1,0xe3,0xb8,0xfd,0x65,0x0,0x1,0x0,0x30,0xff,0xeb,0x6,0x15,0x4,0xb1,0x0,0x44,0x0,0x1b,0x40,0xc,0x0,0x1,0x1,0x2f,0x18,0xb,0x24,0x23,0x23,0x3a,0xd,0x7e,0x0,0x3f,0x33,0x33,0x11,0x33,0x3f,0x33,0x33,0x2f,0x33,0x30,0x31,0x65,0x15,0x22,0x24,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0x6,0x6,0x4,0x23,0x22,0x24,0x26,0x26,0x35,0x35,0x34,0x3e,0x2,0x33,0x11,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x6,0x15,0xa6,0xfe,0xde,0xea,0xa7,0x5a,0x45,0x7c,0xa6,0x62,0x6c,0xb1,0x80,0x46,0x75,0xd2,0xfe,0xe8,0xa3,0xa4,0xfe,0xf3,0xc2,0x69,0x4e,0x91,0xc8,0x7b,0x31,0x4d,0x36,0x1c,0x35,0x66,0x92,0x5d,0x4e,0x98,0x7e,0x4b,0x13,0x23,0x32,0x1f,0x20,0x37,0x29,0x17,0x57,0xa4,0xea,0xed,0xf8,0x33,0x66,0x9c,0xd2,0x85,0x2a,0x7a,0xc0,0x86,0x46,0x44,0x82,0xbd,0x79,0x59,0x82,0xe3,0xab,0x61,0x50,0x9a,0xde,0x8e,0x48,0x76,0xc9,0x96,0x53,0xfe,0xf1,0x2c,0x51,0x6d,0x42,0x2d,0x4d,0x7c,0x58,0x2e,0x29,0x5a,0x92,0x68,0x25,0x4c,0x66,0x3b,0x1a,0x1e,0x3d,0x5c,0x3f,0x2e,0x7c,0x9e,0x56,0x22,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x4,0x8d,0x4,0x26,0x1,0xed,0x0,0x0,0x0,0x7,0x2,0x40,0x0,0x35,0xfe,0xc2,0x0,0x2,0xff,0xf1,0xfe,0xb5,0x4,0xab,0x4,0x8d,0x0,0x3,0x0,0xf,0x0,0x22,0x40,0x11,0xb,0xe,0x8,0x5,0x4,0xa,0x6,0xf,0x7d,0x2,0xa,0x1,0x1,0xa,0xa,0xd,0xa,0x0,0x3f,0x33,0x11,0x33,0x2f,0x11,0x33,0x3f,0x33,0x12,0x17,0x39,0x30,0x31,0x41,0x21,0x11,0x21,0x1,0x13,0x13,0x21,0x1,0x1,0x21,0x3,0x3,0x21,0x1,0x1,0x4,0xab,0xfe,0xf2,0x1,0xe,0xfc,0xd0,0xa6,0xa9,0x1,0x82,0xfe,0xac,0x1,0x78,0xfe,0x71,0xbc,0xb1,0xfe,0x7d,0x1,0x5f,0xfe,0xab,0xfe,0xb5,0x2,0x4f,0x3,0x89,0xfe,0x9c,0x1,0x64,0xfd,0xbe,0xfd,0xb5,0x1,0x6b,0xfe,0x95,0x2,0x4b,0x2,0x42,0x0,0x5,0x0,0x1d,0xfe,0xb5,0x6,0x9c,0x4,0x8d,0x0,0x5,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x15,0x0,0x22,0x40,0x10,0x11,0xd,0xd,0x14,0x15,0x7d,0x10,0x12,0xc,0x9,0x4,0x8,0x2,0x2,0x8,0x12,0x0,0x3f,0x33,0x2f,0x11,0x33,0x33,0x33,0x3f,0x3f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x3,0x21,0x11,0x23,0x11,0x33,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x23,0x11,0x21,0x11,0x6,0x9c,0x14,0xfe,0xc2,0x6f,0x2,0xfd,0x6a,0x7b,0xfe,0xaf,0x4,0x45,0xfe,0xaf,0x72,0xfc,0x2a,0x1,0x4,0xfd,0xb1,0x1,0x4b,0x1,0x4,0xfe,0xfc,0x1,0x4,0x3,0x89,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfe,0xfc,0x1,0x4,0x0,0x0,0x3,0x0,0x4d,0x0,0x0,0x4,0x78,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0x1b,0x0,0x1f,0x40,0xe,0x0,0x18,0x18,0xd,0x3,0x3,0xd,0xd,0x6,0x7,0x12,0x7d,0x6,0xa,0x0,0x3f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x2f,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x11,0x23,0x1,0x11,0x21,0x11,0x13,0x15,0xe,0x2,0x23,0x22,0x26,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x2,0x16,0xab,0xab,0x2,0x62,0xfe,0xad,0x82,0x16,0x74,0x7e,0x25,0xa7,0xfb,0x8b,0x1,0x52,0x31,0x62,0x48,0x2b,0x64,0x6b,0x3,0x83,0xfd,0x21,0x3,0xe9,0xfb,0x73,0x4,0x8d,0xfe,0x2a,0xfd,0xf,0x1f,0x15,0x4f,0xc6,0xb0,0x1,0x51,0xfe,0xb0,0x4e,0x54,0x20,0xe,0x1b,0x0,0x2,0x0,0x51,0x0,0x0,0x4,0x7c,0x4,0x8d,0x0,0x3,0x0,0x17,0x0,0x14,0x40,0x9,0xf,0x12,0x14,0x9,0x9,0x1,0x7d,0x0,0x12,0x0,0x3f,0x3f,0x39,0x2f,0x33,0x3f,0x30,0x31,0x73,0x11,0x21,0x11,0x3,0x35,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x51,0x1,0x52,0x81,0x17,0x73,0x7e,0x25,0xa8,0xfa,0x8b,0xfe,0xae,0x31,0x61,0x49,0x2a,0x65,0x6b,0x4,0x8d,0xfb,0x73,0x1,0xd6,0xfd,0x10,0x1e,0x15,0x4f,0xc5,0xb1,0xfe,0xaf,0x1,0x50,0x4f,0x53,0x20,0xe,0x1b,0x0,0x1,0x0,0x22,0xff,0xf0,0x6,0x19,0x4,0xb1,0x0,0x34,0x0,0x1b,0x40,0xc,0x18,0x18,0x1d,0x1d,0x11,0x11,0x22,0xb,0x7e,0x2d,0x0,0xb,0x0,0x3f,0x32,0x3f,0x33,0x39,0x2f,0x33,0x11,0x33,0x2f,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x21,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x21,0x35,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0xe,0x2,0x4,0x34,0x93,0xf0,0xad,0x5d,0x5e,0xa3,0xd1,0x74,0x7b,0xcc,0x94,0x51,0xfb,0xa4,0x6c,0x9c,0x64,0x2f,0x1,0x1,0x24,0x45,0x31,0x3,0xb,0x38,0x62,0x3f,0x3f,0x5d,0x3d,0x1e,0x20,0x49,0x79,0x5a,0x70,0xa6,0x31,0x4c,0x12,0x74,0xaa,0x10,0x4a,0x91,0xd5,0x8b,0x5c,0x83,0xcd,0x8f,0x4b,0x44,0x8a,0xd4,0x8f,0xb9,0x4a,0x84,0xb2,0x67,0x45,0x66,0x38,0x12,0x44,0x5d,0x2f,0x28,0x4a,0x68,0x40,0x84,0x41,0x68,0x4a,0x28,0x20,0x10,0xf3,0x8,0x20,0x19,0x0,0x0,0x1,0x0,0x30,0xff,0xf0,0x4,0xa2,0x4,0xb1,0x0,0x2b,0x0,0x15,0x40,0x9,0x11,0x14,0x14,0x19,0xb,0xb,0x24,0x0,0x7e,0x0,0x3f,0x32,0x3f,0x33,0x39,0x2f,0x33,0x30,0x31,0x41,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x21,0x11,0x21,0x15,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x7,0x27,0x3e,0x2,0x2,0x13,0x94,0xf1,0xad,0x5d,0x5d,0xa3,0xd2,0x74,0x7b,0xcc,0x94,0x51,0x3,0x63,0xfd,0xee,0x38,0x62,0x3f,0x3f,0x5d,0x3d,0x1e,0x20,0x49,0x79,0x5a,0x6f,0xa6,0x32,0x4c,0x12,0x74,0xa9,0x4,0xb1,0x4a,0x91,0xd5,0x8b,0x5c,0x82,0xce,0x8f,0x4b,0x44,0x8b,0xd3,0x8f,0xb9,0xfe,0xfc,0x12,0x44,0x5d,0x2f,0x28,0x4a,0x68,0x40,0x84,0x41,0x68,0x4a,0x28,0x20,0x10,0xf3,0x9,0x1f,0x19,0x0,0x2,0x0,0x3b,0xff,0xec,0x4,0xf,0x4,0x8d,0x0,0x7,0x0,0x26,0x0,0x1b,0x40,0xc,0x8,0x5,0x5,0x4,0x26,0x26,0x1d,0x13,0xb,0x7,0x0,0x7d,0x0,0x3f,0x32,0x3f,0x33,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x53,0x21,0x17,0x1,0x23,0x35,0x37,0x21,0x5,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x65,0x3,0x83,0x1,0xfe,0x92,0xf9,0xdf,0xfe,0x4,0x1,0x1d,0xfd,0x5d,0x94,0x68,0x37,0x42,0x80,0xb9,0x77,0x60,0xae,0x86,0x4e,0x1,0x51,0x24,0x4a,0x38,0x37,0x3c,0x18,0x26,0x4e,0x3b,0x8c,0x4,0x8d,0xd7,0xfe,0x97,0x73,0xc9,0xd5,0x32,0x5d,0x80,0x4e,0x54,0x87,0x5e,0x32,0x2a,0x57,0x88,0x5f,0x20,0x2f,0x19,0x23,0x37,0x1e,0x2e,0x3e,0x20,0x0,0x0,0x3,0x0,0x30,0xff,0xf0,0x4,0x8f,0x4,0x9d,0x0,0x15,0x0,0x24,0x0,0x34,0x0,0x1b,0x40,0xe,0xb,0x25,0x6a,0x2d,0x1d,0x6a,0x2d,0x2d,0xb,0x0,0x16,0x6a,0x0,0xb,0x0,0x2f,0x2f,0x2b,0x12,0x39,0x2f,0x2b,0x2b,0x30,0x31,0x41,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x13,0x22,0x6,0x6,0x7,0x6,0x6,0x7,0x21,0x26,0x26,0x27,0x2e,0x2,0x3,0x32,0x36,0x36,0x37,0x36,0x36,0x37,0x21,0x16,0x16,0x17,0x1e,0x3,0x2,0x5f,0x7a,0xcc,0x97,0x53,0x52,0x96,0xcc,0x7a,0x7c,0xcd,0x96,0x52,0x51,0x95,0xcd,0x7c,0x38,0x52,0x36,0xe,0x1,0x2,0x2,0x1,0xa6,0x1,0x4,0x2,0xf,0x39,0x50,0x32,0x32,0x4f,0x39,0xf,0x2,0x4,0x1,0xfe,0x5c,0x2,0x3,0x2,0xb,0x24,0x33,0x42,0x4,0x9d,0x50,0x98,0xd5,0x86,0x28,0x85,0xd6,0x97,0x50,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0xfe,0xff,0x2b,0x53,0x3c,0x7,0xd,0x8,0x8,0x11,0x7,0x3b,0x51,0x2a,0xfd,0x54,0x2a,0x50,0x38,0x8,0xf,0x8,0x8,0xf,0x8,0x2a,0x43,0x2d,0x18,0x0,0x4,0x0,0x49,0x0,0x0,0x4,0x66,0x4,0x9d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x2a,0x0,0x21,0x40,0xf,0x6,0x7,0x3,0x2,0x2,0x9,0x26,0x1d,0x7e,0x12,0xa,0xa,0x11,0x9,0x12,0x0,0x3f,0x33,0x33,0x11,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0xce,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x5,0x15,0x21,0x35,0x1,0x21,0x11,0x21,0x1,0x17,0x16,0x6,0x6,0x7,0x27,0x3e,0x3,0x27,0x27,0x26,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x3,0x96,0xfc,0xb3,0x3,0x4d,0xfc,0xb3,0x4,0x1d,0xfc,0x2a,0x3,0xd6,0xfd,0xcf,0xd,0x6,0x4a,0x97,0x6f,0x5e,0x1b,0x21,0x11,0x5,0x1,0x7,0x3,0x3a,0x73,0xa6,0x67,0x98,0xc8,0x63,0xfe,0xad,0x19,0x30,0x23,0x1c,0x2b,0x1b,0xb,0x2,0xdc,0xb7,0xb7,0xf0,0xb7,0xb7,0xfe,0x14,0x1,0x4,0x1,0xd2,0xca,0x59,0x90,0x6d,0x24,0x72,0x7,0x2f,0x45,0x50,0x28,0xdf,0x6c,0xa9,0x75,0x3d,0x63,0xb1,0x76,0x33,0x3c,0x1a,0x1a,0x32,0x4a,0x0,0x0,0x3,0x0,0x48,0xff,0xf0,0x3,0xc9,0x4,0xa1,0x0,0x23,0x0,0x27,0x0,0x2b,0x0,0x1d,0x40,0xd,0x27,0x26,0x26,0x2a,0x2b,0x2b,0x7,0x19,0x12,0x7e,0x0,0x7,0xb,0x0,0x3f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x33,0x2f,0x33,0x30,0x31,0x65,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x17,0x7,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x13,0x15,0x21,0x35,0x5,0x15,0x21,0x35,0x2,0xeb,0x3b,0x5b,0x32,0x14,0x38,0x65,0x3f,0x7c,0xc5,0x8a,0x49,0x48,0x8a,0xc4,0x7c,0x40,0x64,0x3c,0x16,0x37,0x58,0x3b,0x34,0x49,0x2e,0x15,0x16,0x2e,0x4a,0xc8,0xfc,0xc9,0x3,0x37,0xfc,0xc9,0xf4,0x10,0xa,0xff,0xf,0x10,0x45,0x80,0xb4,0x6f,0xc6,0x77,0xbe,0x87,0x47,0x10,0x12,0xff,0xf,0xe,0x21,0x41,0x5e,0x3d,0xc8,0x39,0x55,0x39,0x1d,0x2,0x26,0xb8,0xb8,0xfa,0xb7,0xb7,0x0,0x0,0x4,0x0,0x51,0x0,0x0,0x7,0xe5,0x4,0xa1,0x0,0x3,0x0,0x15,0x0,0x27,0x0,0x31,0x0,0x29,0x40,0x12,0x2b,0x30,0x2e,0x2d,0x24,0x9,0x9,0x31,0x2e,0x7d,0x2a,0x2d,0xa,0x1b,0x12,0x12,0x2,0x3,0x0,0x2f,0x33,0x33,0x7c,0x2f,0x33,0x18,0x3f,0x33,0x3f,0x33,0x33,0x2f,0x33,0x11,0x12,0x39,0x39,0x30,0x31,0x41,0x15,0x21,0x35,0x3,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x37,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x1,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x11,0x7,0xae,0xfd,0xb0,0x2e,0x55,0x9b,0x6a,0x6c,0x9b,0x54,0x54,0x9a,0x6b,0x6b,0x9c,0x55,0xaf,0x26,0x4d,0x3a,0x39,0x4c,0x25,0x26,0x4c,0x3a,0x39,0x4c,0x26,0xfe,0x9f,0xfe,0xae,0xfe,0x77,0xfe,0xae,0x1,0x52,0x1,0x89,0x1,0x86,0x93,0x93,0x1,0x93,0x39,0x62,0x97,0x56,0x56,0x97,0x62,0x39,0x61,0x97,0x56,0x56,0x97,0x9a,0x39,0x36,0x55,0x31,0x31,0x55,0x36,0x39,0x35,0x55,0x31,0x31,0x55,0x1,0x6,0xfb,0x73,0x2,0xa6,0xfd,0x5a,0x4,0x8d,0xfd,0x5a,0x2,0xa6,0x0,0x2,0x0,0x28,0x0,0x0,0x5,0x2c,0x4,0x8d,0x0,0x18,0x0,0x1c,0x0,0x1b,0x40,0xb,0x1b,0x1c,0x2,0x1,0x1,0xe,0xc,0xf,0x7d,0xe,0xa,0x0,0x3f,0x3f,0x33,0x12,0x39,0x7c,0x2f,0x33,0x18,0xce,0x32,0x30,0x31,0x41,0x21,0x35,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x7,0x15,0x21,0x35,0x3,0x3c,0xfc,0xec,0x3,0x14,0x32,0x47,0x27,0x27,0x47,0x32,0xce,0xfe,0xaf,0x2,0x1f,0x96,0xdf,0x7b,0x46,0x83,0xb7,0xc,0xfc,0x88,0x1,0x91,0xe1,0x25,0x41,0x2a,0x29,0x3c,0x22,0xfc,0x77,0x4,0x8d,0x61,0xad,0x72,0x57,0x8d,0x63,0x35,0x3a,0xe1,0xe1,0x0,0x2,0x0,0x2a,0xff,0xf5,0x2,0xc2,0x3,0x21,0x0,0x19,0x0,0x33,0x0,0x19,0x40,0xa,0x1b,0x0,0x0,0x19,0x1a,0x1a,0x8,0x10,0x2c,0x24,0x0,0x2f,0x33,0xcc,0x32,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x15,0x23,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x23,0x15,0x35,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x26,0x23,0x1,0x15,0x5b,0x22,0x2b,0x16,0x29,0x37,0x23,0x36,0xe0,0x57,0x8c,0x4e,0x61,0x94,0x53,0x50,0x82,0x4d,0x7f,0x7f,0x52,0x89,0x53,0x5b,0x9b,0x61,0x49,0x94,0x64,0xe2,0x3c,0x34,0x38,0x2d,0x1b,0x33,0x23,0x1,0xda,0x14,0x25,0x19,0x17,0x2e,0x1a,0x19,0x4c,0x65,0x32,0x34,0x65,0x4a,0x40,0x56,0x2b,0x31,0x59,0x21,0x56,0x50,0x4a,0x68,0x37,0x30,0x6f,0x5d,0x1c,0x30,0x32,0x1f,0x20,0x25,0x11,0x0,0x2,0x0,0x36,0x0,0x0,0x2,0xc3,0x3,0x15,0x0,0x7,0x0,0xb,0x0,0x17,0x40,0x9,0x3,0x7,0x7,0x1,0x1,0x6,0x5,0x8,0xa,0x0,0x2f,0xcc,0x32,0x32,0x39,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x21,0x27,0x1,0x33,0x3,0x7,0x1,0x11,0x23,0x11,0x2,0xc3,0xfd,0x82,0xf,0x1,0x5c,0xb1,0xc0,0x7a,0x1,0x6a,0xe1,0x1,0x4f,0xb2,0x91,0x1,0xe7,0xfe,0xe2,0xa8,0x1,0xc6,0xfc,0xeb,0x3,0x15,0x0,0x0,0x1,0x0,0x3c,0xff,0xf5,0x2,0xb5,0x3,0x15,0x0,0x21,0x0,0x12,0xb6,0x1f,0x9,0x9,0x4,0x3,0x19,0x11,0x0,0x2f,0x33,0xcc,0x32,0x39,0x2f,0x33,0x30,0x31,0x53,0x27,0x13,0x21,0x15,0x21,0x7,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x6,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0xfe,0xb2,0x38,0x2,0x3,0xfe,0xb3,0x14,0xc,0x4c,0x29,0x59,0x78,0x3d,0x44,0x8b,0x6c,0x50,0x92,0x5c,0xe3,0x1,0x32,0x2a,0x3b,0x20,0x33,0x38,0x31,0x31,0x1,0x51,0x2b,0x1,0x99,0xaa,0x7d,0x5,0x15,0x3b,0x70,0x51,0x45,0x80,0x52,0x3a,0x6b,0x48,0x23,0x1a,0x3f,0x28,0x31,0x38,0x1c,0x0,0x0,0x1,0x0,0x40,0xff,0xf5,0x2,0xce,0x3,0x28,0x0,0x2d,0x0,0x13,0xb6,0x13,0x1c,0x1c,0x3,0x0,0xc,0x24,0x0,0x2f,0x33,0xcc,0x32,0x39,0x7d,0x2f,0x33,0x30,0x31,0x41,0x33,0x15,0x23,0x22,0x6,0x6,0x15,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x6,0x17,0x27,0x26,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x35,0x34,0x3e,0x2,0x2,0x1c,0x27,0xb,0x46,0x81,0x51,0x16,0x2f,0x25,0x1c,0x2d,0x1a,0x38,0x2e,0x25,0x34,0x1a,0x1,0x3a,0x3,0x37,0x71,0x54,0x4f,0x70,0x3b,0x53,0x8f,0x5b,0x5c,0x9a,0x5b,0x54,0x8c,0xa8,0x3,0x28,0xb3,0x1d,0x64,0x6c,0x78,0x26,0x30,0x16,0x1c,0x2f,0x1c,0x31,0x26,0x18,0x1e,0xb,0xd,0x31,0x69,0x48,0x41,0x77,0x50,0x4f,0x7c,0x48,0x41,0x8f,0x75,0x32,0x7e,0xab,0x66,0x2d,0x0,0x1,0x0,0x30,0x0,0x0,0x2,0xb8,0x3,0x15,0x0,0x6,0x0,0xc,0xb3,0x5,0x1,0x6,0x2,0x0,0x2f,0xcc,0x32,0x32,0x30,0x31,0x41,0x15,0x1,0x23,0x1,0x21,0x35,0x2,0xb8,0xfe,0xbc,0xec,0x1,0x44,0xfe,0x64,0x3,0x15,0x7a,0xfd,0x65,0x2,0x65,0xb0,0x0,0x4,0x0,0x44,0xff,0xf5,0x2,0xbc,0x3,0x21,0x0,0xf,0x0,0x1f,0x0,0x2f,0x0,0x3d,0x0,0x17,0x40,0xa,0xc,0x24,0x3b,0x3,0x14,0x14,0x34,0x2c,0x1c,0x4,0x0,0x2f,0x33,0xcc,0x32,0x39,0x2f,0x17,0x33,0x30,0x31,0x65,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x7,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x13,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x7,0x34,0x26,0x26,0x23,0x22,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x2,0xbc,0x51,0x8e,0x5c,0x5a,0x90,0x53,0x54,0x8f,0x58,0x5b,0x8f,0x53,0xe0,0x18,0x2a,0x1b,0x19,0x29,0x18,0x18,0x2a,0x1a,0x1b,0x29,0x17,0xce,0x4c,0x85,0x58,0x56,0x88,0x4d,0x4d,0x87,0x55,0x58,0x87,0x4c,0xe1,0xf,0x21,0x1a,0x24,0x24,0x10,0x21,0x19,0x26,0x22,0xdb,0x4d,0x67,0x32,0x32,0x67,0x4d,0x49,0x63,0x34,0x34,0x63,0x32,0x19,0x20,0xf,0xf,0x20,0x19,0x18,0x23,0x12,0x12,0x23,0x1,0x65,0x40,0x5e,0x32,0x32,0x5e,0x40,0x4b,0x64,0x33,0x33,0x64,0x5a,0x16,0x1c,0xf,0x21,0x20,0x14,0x20,0x12,0x27,0x0,0x0,0x1,0x0,0x41,0xff,0xf2,0x2,0xba,0x3,0x21,0x0,0x2e,0x0,0x13,0xb6,0x12,0x1b,0x1b,0xa,0x23,0x1,0x2d,0x0,0x2f,0x33,0xcc,0x32,0x39,0x7c,0x2f,0x33,0x30,0x31,0x77,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x27,0x17,0x16,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0xe,0x2,0x23,0x23,0xdb,0xd,0x46,0x6c,0x3f,0x14,0x28,0x1f,0x1c,0x29,0x16,0x17,0x2e,0x22,0x23,0x29,0x12,0x2,0x46,0x3,0x42,0x6a,0x39,0x4f,0x78,0x42,0x54,0x8f,0x5a,0x52,0x90,0x5a,0x4d,0x83,0xa6,0x59,0x10,0xa0,0x16,0x54,0x5d,0xa3,0x26,0x2d,0x14,0x20,0x35,0x20,0x21,0x2b,0x15,0x16,0x1c,0x7,0x9,0x37,0x60,0x3a,0x38,0x74,0x5a,0x4f,0x83,0x4f,0x3f,0x8e,0x78,0x39,0x84,0xaa,0x5e,0x25,0x0,0x0,0x1,0x0,0x8a,0x2,0x8b,0x3,0x65,0x3,0x4a,0x0,0x3,0x0,0x8,0xb1,0x3,0x2,0x0,0x2f,0x33,0x30,0x31,0x41,0x15,0x21,0x35,0x3,0x65,0xfd,0x25,0x3,0x4a,0xbf,0xbf,0x0,0x3,0x0,0x8b,0x4,0x64,0x3,0x5,0x6,0xe0,0x0,0x3,0x0,0xf,0x0,0x1b,0x0,0x19,0x40,0x9,0x13,0xd,0xd,0x7,0x1,0x3,0x3,0x19,0x7,0x0,0x2f,0x33,0x33,0x7c,0x2f,0x18,0xcd,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x37,0x21,0x5,0x5,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x6,0x23,0x22,0x26,0x37,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x1,0xc,0xd4,0x1,0x25,0xfe,0xdb,0xfe,0xab,0x7e,0x5b,0x5b,0x7b,0x7b,0x5b,0x5b,0x7e,0x7d,0x34,0x28,0x28,0x2f,0x2f,0x28,0x28,0x34,0x6,0x8,0xd8,0xd8,0xe6,0x52,0x6f,0x6f,0x52,0x53,0x6b,0x6c,0x52,0x28,0x32,0x32,0x28,0x29,0x33,0x33,0x0,0x0,0x4,0x0,0x51,0x0,0x0,0x3,0xc7,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1b,0x40,0xc,0xb,0xa,0xa,0x6,0xf,0xe,0x7,0x7d,0x3,0x2,0x6,0xa,0x0,0x3f,0x33,0x33,0x3f,0x33,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0xc2,0xfd,0x60,0x81,0xfe,0xae,0x3,0x1c,0xfd,0xb5,0x2,0xa5,0xfd,0x5b,0x1,0x3,0xfe,0xfd,0x1,0x3,0x3,0x8a,0xfb,0x73,0x4,0x8d,0xfe,0x4f,0xfe,0xfc,0x1,0x4,0x1,0xb1,0xfe,0xfc,0x1,0x4,0x0,0x4,0xff,0xeb,0xfe,0x4a,0x4,0x23,0x4,0x4e,0x0,0x12,0x0,0x24,0x0,0x5b,0x0,0x5f,0x0,0x33,0x40,0x1a,0x5d,0x5f,0x6,0x72,0x25,0x26,0x18,0x18,0xf,0x40,0x41,0x41,0x2e,0x53,0x53,0xf,0xf,0x5,0x4a,0x37,0xf,0x72,0x21,0x5,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x39,0x11,0x33,0x33,0x11,0x33,0x11,0x33,0x12,0x39,0x39,0x2b,0x32,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x26,0x25,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x13,0x17,0x6,0x6,0x15,0x14,0x16,0x16,0x33,0x33,0x32,0x16,0x16,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x34,0x36,0x36,0x37,0x17,0xe,0x2,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x23,0x22,0x26,0x26,0x35,0x34,0x36,0x36,0x1,0x17,0x21,0x27,0x1f,0x79,0xdc,0x94,0x96,0xdc,0x78,0x44,0x80,0xb4,0x70,0x95,0xdd,0x79,0x1,0x4f,0x24,0x46,0x32,0x32,0x44,0x23,0x24,0x45,0x32,0x31,0x45,0x24,0x7,0x53,0x1b,0x3e,0x22,0x39,0x24,0xbf,0x76,0xa6,0x59,0x4b,0x91,0xd1,0x87,0x7d,0xc0,0x83,0x43,0x67,0x98,0x4a,0x3d,0x14,0x24,0x15,0x18,0x32,0x4c,0x34,0x40,0x58,0x35,0x18,0x13,0x2d,0x28,0xbb,0x4e,0x84,0x50,0x4d,0x6c,0x2,0xda,0x2,0xfe,0x7c,0xa,0x2,0xc6,0x16,0x6f,0xa6,0x5d,0x5d,0xa6,0x6f,0x16,0x4e,0x87,0x65,0x39,0x63,0xa8,0x7e,0x16,0x23,0x3c,0x24,0x24,0x3c,0x23,0x16,0x26,0x3a,0x22,0x22,0x3a,0xfe,0xbf,0x32,0xb,0x29,0x27,0x1e,0x1e,0xa,0x49,0x89,0x5f,0x40,0x83,0x6d,0x43,0x2c,0x4d,0x64,0x37,0x52,0x74,0x46,0xc,0x63,0x4,0x1c,0x2a,0x1b,0x18,0x2a,0x20,0x13,0x14,0x20,0x28,0x14,0x13,0x27,0x1b,0x2a,0x5c,0x4c,0x44,0x5c,0x3d,0x2,0x8d,0x9a,0x9a,0x0,0x4,0x0,0x3d,0xff,0xeb,0x4,0x5b,0x4,0x4e,0x0,0x15,0x0,0x2b,0x0,0x2f,0x0,0x33,0x0,0x17,0x40,0xc,0x30,0xa,0x2d,0x6,0x1c,0x11,0xb,0x72,0x27,0x6,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x3f,0x3f,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x5,0x13,0x21,0xb,0x2,0x21,0x13,0x3d,0x39,0x71,0xa6,0x6d,0x66,0x91,0x62,0x3c,0x11,0x11,0x3c,0x62,0x92,0x67,0x6c,0xa5,0x71,0x39,0x1,0x52,0x10,0x27,0x41,0x30,0x31,0x44,0x29,0x11,0x2,0x2,0x11,0x29,0x43,0x30,0x2f,0x41,0x28,0x12,0x1,0x58,0x4b,0x1,0x22,0x6c,0xaf,0x52,0x1,0x1,0x73,0x2,0x6,0x15,0x7b,0xce,0x97,0x53,0x58,0x9c,0xce,0x75,0x19,0x6e,0xc0,0x92,0x53,0x4f,0x91,0xc5,0x8b,0x15,0x3d,0x66,0x4b,0x29,0x28,0x45,0x57,0x30,0x4f,0x38,0x65,0x4e,0x2d,0x2f,0x53,0x6e,0x3e,0x2,0x1e,0xfd,0xe2,0xfd,0xe4,0x2,0x1c,0xfd,0xe4,0x0,0x0,0x2,0x0,0x6d,0x0,0x0,0x5,0x6,0x5,0xb0,0x0,0x19,0x0,0x2e,0x0,0x1f,0x40,0xf,0x26,0x8,0x1b,0x1a,0x1a,0x2,0x1,0x1,0xe,0xc,0xf,0x2,0x72,0xe,0x8,0x0,0x3f,0x2b,0x32,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x3f,0x30,0x31,0x41,0x21,0x11,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0xf,0x2,0x37,0x1e,0x2,0x15,0x15,0x14,0x16,0x16,0x17,0x15,0x21,0x2e,0x2,0x35,0x35,0x34,0x26,0x26,0x2,0xe8,0xfe,0x60,0x1,0x5b,0x40,0x59,0x2f,0x29,0x55,0x43,0xdf,0xfe,0xa2,0x2,0x57,0xa9,0xe7,0x76,0x60,0xaa,0x70,0x12,0xa9,0x60,0xb0,0xc5,0x4f,0xc,0x21,0x20,0xfe,0x98,0x1e,0x1d,0x8,0x28,0x57,0x2,0x26,0x1,0xe,0x29,0x4d,0x37,0x38,0x57,0x31,0xfb,0x5f,0x5,0xb0,0x66,0xc0,0x89,0x69,0x8b,0x59,0x1f,0x51,0x1e,0xab,0x4,0x62,0xa7,0x6d,0x58,0x15,0x59,0x5b,0x18,0x1e,0x18,0x6b,0x6a,0x14,0x54,0x45,0x5d,0x2f,0x0,0x3,0x0,0x6d,0x0,0x0,0x5,0x45,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x20,0x40,0x10,0xa,0x8,0x9,0x2,0xc,0xb,0xb,0x7,0x6,0x6,0x2,0x3,0x2,0x72,0x2,0x8,0x0,0x3f,0x2b,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x3f,0x3f,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x1,0x13,0x1,0x37,0x1,0x1,0xcb,0xfe,0xa2,0x4,0xa6,0xfd,0xf5,0xfe,0x86,0x2a,0xef,0x1,0x18,0x3c,0xfe,0xab,0xff,0x1,0xf4,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfc,0x90,0x1,0x3d,0x2,0x33,0xfa,0x50,0x2,0x7d,0xeb,0xfc,0x98,0x0,0x0,0x3,0x0,0x61,0x0,0x0,0x4,0x68,0x6,0x0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1c,0x40,0xe,0xb,0x7,0x6,0x6,0x2,0x9,0x6,0x72,0x3,0x0,0x72,0xa,0x2,0xa,0x0,0x3f,0x33,0x2b,0x2b,0x12,0x39,0x2f,0x33,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x21,0x27,0x21,0x13,0x13,0x1,0x25,0x1,0x1,0xb2,0xfe,0xaf,0x3,0xe9,0xfe,0x4c,0xfe,0xca,0x95,0x1,0x1f,0xdc,0x21,0xfe,0xe8,0x1,0x4,0x1,0x95,0x6,0x0,0xfa,0x0,0x6,0x0,0xfe,0x3a,0xfd,0x74,0xff,0x1,0x8d,0xfb,0xc6,0x1,0xed,0xb1,0xfd,0x62,0x0,0x0,0x3,0x0,0x6d,0x0,0x0,0x5,0x27,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x1a,0x40,0xe,0x6,0xb,0x7,0x8,0xc,0x5,0x2,0x9,0x3,0x2,0x72,0xa,0x2,0x8,0x0,0x3f,0x33,0x2b,0x32,0x12,0x17,0x39,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x27,0x33,0x1,0x13,0x1,0x25,0x1,0x1,0xcb,0xfe,0xa2,0x4,0xa0,0xfd,0xcb,0xfe,0x96,0xa,0x62,0x1,0x95,0x15,0xfe,0x27,0x1,0x52,0x2,0x3e,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfc,0xdc,0xa4,0x2,0x80,0xfa,0x50,0x2,0xbd,0x66,0xfc,0xdd,0x0,0x0,0x3,0x0,0x61,0x0,0x0,0x4,0x6c,0x6,0x18,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x20,0x40,0x10,0xc,0xb,0xb,0x7,0x6,0x6,0x2,0x9,0x6,0x72,0x3,0x1,0x72,0xa,0x2,0xa,0x0,0x3f,0x33,0x2b,0x2b,0x12,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x21,0x27,0x33,0x1,0x13,0x1,0x25,0x1,0x1,0xb2,0xfe,0xaf,0x3,0xe0,0xfe,0x6d,0xfe,0x43,0x26,0xe7,0x1,0xe,0x20,0xfe,0x79,0x1,0x36,0x1,0xdd,0x6,0x18,0xf9,0xe8,0x6,0x18,0xfe,0x22,0xfd,0xcd,0xa6,0x1,0x8d,0xfb,0xc6,0x2,0x3e,0x60,0xfd,0x62,0x0,0x0,0x2,0x0,0x51,0x0,0x0,0x4,0x3e,0x4,0x8d,0x0,0x19,0x0,0x1d,0x0,0x16,0x40,0x9,0x1b,0x1a,0xf,0x2,0x1,0xe,0xf,0x7d,0x1,0x0,0x2f,0x3f,0x33,0x11,0x33,0x11,0x33,0x32,0x30,0x31,0x61,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x35,0x34,0x2e,0x2,0x23,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x15,0x14,0x6,0x4,0x3,0x11,0x21,0x11,0x1,0xfd,0xfe,0xe3,0x2,0x1,0x1b,0x5a,0x68,0x2c,0x18,0x38,0x60,0x49,0xfe,0xe9,0x1,0x17,0x80,0xd7,0x9e,0x57,0x97,0xfe,0xfb,0xff,0xfe,0xae,0x1,0x3,0x40,0x86,0x69,0x2a,0x4b,0x71,0x4b,0x26,0x1,0x4,0x54,0x98,0xcd,0x7a,0x28,0xa2,0xfe,0x92,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x0,0x1,0x0,0x30,0xff,0xf0,0x4,0x62,0x4,0x9e,0x0,0x27,0x0,0x11,0xb6,0x19,0x15,0x10,0x7e,0x24,0x0,0x5,0x0,0x2f,0xcc,0x33,0x3f,0xcc,0x33,0x30,0x31,0x41,0x21,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x17,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x3,0xe,0x1,0x52,0x5,0x87,0xeb,0x9b,0x82,0xc9,0x8b,0x48,0x4c,0x8d,0xc3,0x78,0xaa,0xe9,0x80,0xb,0xfe,0xaf,0x1,0x27,0x5a,0x4d,0x30,0x49,0x30,0x19,0x16,0x31,0x4e,0x37,0x3b,0x57,0x30,0x1,0x97,0x81,0xbe,0x68,0x4f,0x96,0xd6,0x88,0x26,0x88,0xd7,0x97,0x4f,0x72,0xc4,0x7c,0x2d,0x50,0x31,0x25,0x4e,0x79,0x54,0x27,0x57,0x7b,0x4b,0x23,0x21,0x49,0x0,0x2,0x0,0x51,0x0,0x0,0x4,0x3c,0x4,0x8d,0x0,0x19,0x0,0x31,0x0,0x28,0x40,0x13,0x1c,0x1b,0x29,0x19,0x2,0x2,0x1,0x1b,0x26,0x1,0x1,0x26,0x1b,0x3,0xd,0xc,0xf,0x7d,0xd,0x0,0x2f,0x3f,0x33,0x12,0x17,0x39,0x2f,0x2f,0x2f,0x11,0x33,0x12,0x39,0x39,0x11,0x33,0x30,0x31,0x41,0x21,0x27,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x14,0x6,0x6,0x27,0x3,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x37,0x21,0x17,0x36,0x16,0x16,0x15,0x14,0xe,0x2,0x2,0x63,0xfe,0xb9,0x2,0x1,0x21,0x36,0x42,0x1e,0x1d,0x3d,0x30,0xa4,0xfe,0xae,0x1,0xd4,0x7a,0xbd,0x84,0x44,0x3e,0x9b,0x8d,0x69,0xfe,0x7e,0x67,0x1,0x1b,0x39,0x42,0x1b,0x1a,0x3c,0x32,0xfe,0xfe,0x1,0x1,0x29,0x50,0x88,0x9a,0x3f,0x3d,0x79,0xb7,0x1,0xd6,0xd5,0x18,0x2f,0x24,0x2a,0x33,0x16,0xfc,0x77,0x4,0x8d,0x28,0x50,0x7a,0x51,0x47,0x84,0x51,0x3,0xfd,0xcf,0x1,0x3,0x1f,0x30,0x17,0x23,0x30,0x1a,0xd5,0x58,0xc,0x51,0x81,0x3f,0x58,0x7e,0x51,0x27,0x0,0x3,0xff,0xf3,0x0,0x0,0x4,0xc7,0x4,0x8d,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x1c,0x40,0xc,0xd,0x0,0x6,0x3,0xc,0xc,0x1,0x7,0x3,0x7d,0x5,0x1,0x0,0x2f,0x33,0x3f,0x33,0x12,0x39,0x2f,0x12,0x39,0x39,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x13,0x1,0x3,0x33,0x1,0x1,0x15,0x21,0x35,0x2,0x54,0xfe,0xf3,0xfe,0xac,0x1,0xc4,0xea,0xd3,0xfe,0xe9,0x4f,0xee,0x1,0xcb,0xfe,0xb1,0xfd,0x93,0x3,0x1c,0xfc,0xe4,0x4,0x8d,0xfb,0x73,0x3,0x1a,0x1,0x73,0xfb,0x73,0x1,0xb2,0xe6,0xe6,0x0,0x1,0x0,0x77,0x4,0x32,0x1,0xad,0x6,0x7,0x0,0xa,0x0,0xa,0xb2,0x5,0x80,0x0,0x0,0x2f,0x1a,0xcd,0x30,0x31,0x53,0x35,0x34,0x36,0x36,0x37,0x17,0x6,0x6,0x15,0x7,0x77,0x20,0x40,0x2e,0xa8,0x14,0x32,0x2,0x4,0x32,0x8c,0x4a,0x80,0x63,0x1c,0x49,0x29,0x8d,0x57,0x7f,0x0,0x0,0x2,0x0,0x5e,0x4,0xc1,0x3,0x40,0x6,0x63,0x0,0xf,0x0,0x13,0x0,0x12,0xb5,0x12,0x13,0xa,0x0,0xd,0x5,0x0,0x2f,0x33,0x7c,0xdc,0x32,0xd6,0x18,0xcd,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x27,0x27,0x33,0x17,0x2,0x71,0xcf,0x5a,0xa5,0x72,0x71,0xa6,0x5a,0xcf,0x49,0x59,0x59,0x49,0xed,0xb5,0xe1,0x82,0x5,0xb3,0x47,0x6e,0x3d,0x3d,0x6e,0x47,0x2b,0x45,0x45,0x23,0xb8,0xb8,0x0,0x2,0xfc,0x96,0x4,0xbb,0xfe,0xee,0x6,0x77,0x0,0x17,0x0,0x1b,0x0,0x1d,0x40,0xc,0x0,0x15,0x15,0x5,0x19,0x1b,0x1b,0x9,0x11,0x11,0xc,0x5,0x0,0x2f,0x33,0x33,0x11,0x33,0x33,0x2f,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x17,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x23,0x22,0x6,0x15,0x27,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x33,0x32,0x36,0x27,0x37,0x33,0x7,0xfe,0x63,0x8b,0x2a,0x49,0x30,0x34,0x4c,0x45,0x2b,0x19,0x23,0x89,0x29,0x49,0x2f,0x2b,0x4f,0x4e,0x28,0x19,0x23,0xfe,0x80,0xde,0xb2,0x5,0xab,0x27,0x30,0x52,0x33,0x21,0x20,0x31,0x24,0x26,0x30,0x52,0x33,0x20,0x20,0x31,0x38,0xb8,0xb8,0x0,0x0,0x2,0x0,0x8c,0x4,0xef,0x4,0xb7,0x6,0x78,0x0,0x6,0x0,0xa,0x0,0x14,0xb7,0x8,0x7,0x7,0x5,0x1,0x80,0x4,0x6,0x0,0x2f,0x33,0x1a,0xcd,0x39,0x33,0x2f,0xcd,0x30,0x31,0x53,0x25,0x33,0x5,0x23,0x27,0x7,0x25,0x13,0x33,0x3,0x8c,0x1,0x17,0xa4,0x1,0x19,0xdb,0x90,0x8f,0x1,0xb1,0xaf,0xf1,0xf0,0x4,0xef,0xda,0xda,0x74,0x74,0x76,0x1,0x13,0xfe,0xed,0x0,0x2,0xff,0x3d,0x4,0xef,0x3,0x68,0x6,0x78,0x0,0x6,0x0,0xa,0x0,0x17,0x40,0x9,0x7,0x40,0x8,0x8,0x3,0x6,0x80,0x2,0x4,0x0,0x2f,0x33,0x1a,0xcd,0x39,0x33,0x2f,0x1a,0xcd,0x30,0x31,0x41,0x5,0x23,0x27,0x7,0x23,0x25,0x25,0x13,0x23,0x3,0x2,0x51,0x1,0x17,0xda,0x8f,0x90,0xdb,0x1,0x18,0xfe,0x82,0xaf,0xb0,0xf0,0x5,0xc9,0xda,0x74,0x74,0xda,0xaf,0xfe,0xed,0x1,0x13,0x0,0x2,0x0,0x94,0x4,0xef,0x4,0x30,0x6,0xb9,0x0,0x6,0x0,0x1a,0x0,0x1f,0x40,0xd,0x11,0x12,0x8,0x40,0x1a,0x9,0x8,0x8,0x3,0x6,0x80,0x2,0x4,0x0,0x2f,0x33,0x1a,0xcd,0x39,0x33,0x11,0x33,0x33,0x1a,0x10,0xcc,0x32,0x30,0x31,0x41,0x5,0x23,0x27,0x7,0x23,0x25,0x5,0x23,0x27,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x37,0x32,0x1e,0x2,0x15,0x14,0x6,0x7,0x2,0x4e,0x1,0x1a,0xde,0x8b,0x8c,0xdf,0x1,0x1b,0x2,0x5,0xaa,0x14,0x29,0x32,0x18,0x1d,0x33,0x22,0x8,0x4b,0x72,0x4d,0x27,0x4e,0x2e,0x5,0xc9,0xda,0x74,0x74,0xda,0x5f,0x6a,0x2,0xc,0x16,0x10,0x17,0x18,0xa,0x78,0x16,0x2b,0x3c,0x27,0x38,0x38,0x7,0x0,0x2,0x0,0x94,0x4,0xef,0x3,0x68,0x6,0xc0,0x0,0x6,0x0,0x1e,0x0,0x25,0x40,0x10,0x8,0x7,0x7,0x10,0x18,0xc,0x40,0x14,0x13,0x13,0x1c,0xc,0xc,0x6,0x80,0x4,0x0,0x2f,0x1a,0xcd,0x32,0x11,0x33,0x33,0x11,0x33,0x1a,0x10,0xcd,0x32,0x32,0x11,0x33,0x30,0x31,0x41,0x5,0x23,0x27,0x7,0x23,0x25,0x37,0x17,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x23,0x22,0x6,0x15,0x27,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x33,0x32,0x36,0x2,0x52,0x1,0x16,0xde,0x8b,0x8c,0xdf,0x1,0x17,0xe3,0x72,0x1c,0x36,0x27,0x2a,0x48,0x44,0x23,0x14,0x10,0x70,0x1b,0x35,0x26,0x24,0x4b,0x4a,0x20,0x14,0x11,0x5,0xc9,0xda,0x74,0x74,0xda,0xf7,0x2a,0x26,0x48,0x2d,0x1f,0x1f,0x29,0x1d,0x20,0x27,0x47,0x2e,0x1e,0x1f,0x31,0x0,0x0,0x3,0x0,0x51,0x0,0x0,0x3,0xbb,0x5,0xc4,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1b,0x40,0xc,0x2,0xa,0xa,0xb,0xb,0x7,0x3,0x3,0x7,0x7d,0x6,0xa,0x0,0x3f,0x3f,0x33,0x2f,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x3,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x3,0xbb,0xfe,0xaf,0xc7,0xfe,0xae,0x3,0x6a,0xfd,0x7c,0x5,0xc4,0xfd,0xc5,0x2,0x3b,0xfe,0xc9,0xfb,0x73,0x4,0x8d,0xfe,0xfc,0x1,0x4,0x0,0x2,0x0,0x5e,0x4,0xbe,0x3,0x40,0x6,0x63,0x0,0xf,0x0,0x13,0x0,0x12,0xb5,0x11,0x13,0x0,0xa,0xd,0x5,0x0,0x2f,0x33,0x7c,0xdc,0x32,0x18,0xd6,0xcd,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x27,0x37,0x33,0x7,0x2,0x71,0xcf,0x5a,0xa5,0x72,0x71,0xa6,0x5a,0xcf,0x49,0x59,0x59,0x49,0xfc,0x82,0xe1,0xb5,0x5,0xb0,0x47,0x6e,0x3d,0x3d,0x6e,0x47,0x2b,0x45,0x45,0x26,0xb8,0xb8,0x0,0x2,0x0,0x5e,0x4,0xc1,0x3,0x52,0x7,0xc,0x0,0xf,0x0,0x25,0x0,0x28,0x40,0x11,0x1b,0x1c,0x1c,0x11,0x25,0x12,0x12,0x11,0x11,0x9,0xd,0x5,0x0,0x9,0x9,0x5,0x10,0x0,0x3f,0x33,0x7c,0x2f,0x33,0x11,0x33,0x11,0x33,0x18,0x2f,0x33,0x11,0x33,0x11,0x33,0x2f,0x33,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x27,0x23,0x27,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x37,0x32,0x1e,0x2,0x15,0x14,0x6,0x6,0x7,0x2,0x7e,0xd4,0x5c,0xa9,0x74,0x74,0xab,0x5c,0xd5,0x4a,0x5c,0x59,0x4c,0x4a,0xcc,0x18,0x30,0x3b,0x1c,0x13,0x24,0x31,0x1d,0x7,0x5b,0x89,0x5c,0x2e,0x2b,0x43,0x25,0x5,0xb0,0x48,0x6b,0x3c,0x3c,0x6b,0x48,0x2a,0x3f,0x3f,0x4d,0x63,0x2,0xb,0x14,0xf,0x10,0x14,0xb,0x5,0x72,0x15,0x27,0x3a,0x24,0x23,0x2e,0x1a,0x4,0x0,0xff,0xff,0x0,0x44,0x2,0x8d,0x2,0xbc,0x5,0xb8,0x6,0x7,0x1,0xe1,0x0,0x0,0x2,0x98,0xff,0xff,0x0,0x36,0x2,0x98,0x2,0xc3,0x5,0xad,0x6,0x7,0x2,0x3a,0x0,0x0,0x2,0x98,0xff,0xff,0x0,0x3c,0x2,0x8d,0x2,0xb5,0x5,0xad,0x6,0x7,0x2,0x3b,0x0,0x0,0x2,0x98,0xff,0xff,0x0,0x40,0x2,0x8d,0x2,0xce,0x5,0xc0,0x6,0x7,0x2,0x3c,0x0,0x0,0x2,0x98,0xff,0xff,0x0,0x30,0x2,0x98,0x2,0xb8,0x5,0xad,0x6,0x7,0x2,0x3d,0x0,0x0,0x2,0x98,0xff,0xff,0x0,0x44,0x2,0x8d,0x2,0xbc,0x5,0xb9,0x6,0x7,0x2,0x3e,0x0,0x0,0x2,0x98,0xff,0xff,0x0,0x41,0x2,0x8a,0x2,0xba,0x5,0xb9,0x6,0x7,0x2,0x3f,0x0,0x0,0x2,0x98,0x0,0x1,0x0,0x44,0xff,0xeb,0x5,0x27,0x5,0xc5,0x0,0x29,0x0,0x15,0x40,0xa,0x1a,0x16,0x11,0x3,0x72,0x26,0x0,0x5,0x9,0x72,0x0,0x2b,0xcc,0x33,0x2b,0xcc,0x33,0x30,0x31,0x41,0x21,0x6,0x6,0x4,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x4,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x36,0x36,0x3,0xc6,0x1,0x5e,0xe,0x97,0xfe,0xfb,0xb7,0x74,0xc6,0x9c,0x6f,0x3a,0x60,0xad,0xea,0x8b,0xbf,0x1,0x4,0x8f,0xf,0xfe,0xa1,0xa,0x32,0x69,0x5d,0x41,0x6b,0x4e,0x2a,0x17,0x2e,0x46,0x5c,0x3a,0x52,0x6c,0x3d,0x1,0xed,0xa7,0xe5,0x76,0x40,0x7c,0xb1,0xe3,0x87,0x2b,0xa9,0x1,0xd,0xbe,0x64,0x80,0xeb,0xa1,0x52,0x71,0x3a,0x3c,0x74,0xa9,0x6e,0x2d,0x57,0x90,0x6f,0x4c,0x27,0x3a,0x6e,0x0,0x1,0x0,0x44,0xff,0xeb,0x5,0x27,0x5,0xc5,0x0,0x2d,0x0,0x1b,0x40,0xd,0x2d,0x2c,0x2c,0x5,0x1a,0x16,0x11,0x3,0x72,0x26,0x5,0x9,0x72,0x0,0x2b,0x32,0x2b,0xcc,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0xe,0x2,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x12,0x36,0x36,0x33,0x32,0x4,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x36,0x36,0x37,0x35,0x23,0x35,0x5,0x27,0x23,0x92,0xdb,0x91,0x7c,0xd8,0xae,0x7d,0x43,0x5f,0xaf,0xee,0x90,0xbe,0x1,0x0,0x8b,0xd,0xfe,0xae,0x9,0x40,0x69,0x46,0x48,0x73,0x53,0x2c,0x1f,0x3b,0x56,0x70,0x44,0x33,0x4d,0x34,0xd,0xda,0x2,0xf9,0xfd,0xba,0x29,0x5d,0x42,0x43,0x7e,0xb0,0xdb,0x7e,0x3a,0xa3,0x1,0xb,0xc0,0x68,0x7f,0xdf,0x92,0x48,0x64,0x35,0x40,0x77,0xa7,0x67,0x3c,0x4e,0x87,0x6e,0x4f,0x2a,0xe,0x16,0xd,0xdd,0xf2,0x0,0x0,0x2,0x0,0x6d,0x0,0x0,0x5,0x19,0x5,0xb0,0x0,0x1b,0x0,0x1f,0x0,0x12,0xb7,0x1c,0xf,0x10,0x2,0x72,0x2,0x1d,0x0,0x0,0x2f,0x32,0x32,0x2b,0x32,0x32,0x30,0x31,0x61,0x21,0x13,0x21,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x21,0x11,0x21,0x32,0x4,0x16,0x12,0x15,0x15,0x14,0x2,0x6,0x4,0x1,0x11,0x21,0x11,0x2,0x3f,0xfe,0xc4,0x2,0x1,0x21,0x71,0x9b,0x5e,0x2b,0x2a,0x5f,0x9e,0x73,0xfe,0xdc,0x1,0x3d,0xaa,0x1,0xf,0xc0,0x66,0x66,0xbe,0xfe,0xf2,0xfe,0xe4,0xfe,0xa2,0x1,0xe,0x45,0x78,0x9e,0x59,0x2d,0x58,0x9d,0x78,0x45,0x1,0xf,0x6c,0xc1,0xfe,0xff,0x95,0x2b,0x95,0xfe,0xff,0xc0,0x6c,0x5,0xb0,0xfa,0x50,0x5,0xb0,0x0,0x2,0x0,0x44,0xff,0xeb,0x5,0x87,0x5,0xc5,0x0,0x19,0x0,0x31,0x0,0x10,0xb7,0x21,0x14,0x3,0x72,0x2d,0x7,0x9,0x72,0x0,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x15,0x14,0xe,0x3,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x3e,0x3,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x5,0x87,0x3e,0x76,0xa5,0xcf,0x79,0x79,0xd0,0xa6,0x75,0x3e,0x3e,0x74,0xa6,0xcf,0x79,0x79,0xcf,0xa6,0x76,0x3f,0xfe,0xa2,0x1b,0x35,0x4e,0x67,0x40,0x51,0x79,0x4f,0x28,0x1a,0x33,0x4e,0x67,0x41,0x50,0x78,0x52,0x29,0x2,0xed,0x2a,0x7a,0xdb,0xb5,0x85,0x49,0x49,0x85,0xb5,0xdb,0x7a,0x2a,0x79,0xdb,0xb6,0x85,0x49,0x49,0x85,0xb6,0xda,0xa4,0x2c,0x4a,0x87,0x73,0x55,0x2f,0x48,0x7f,0xa5,0x5c,0x2c,0x4a,0x89,0x73,0x55,0x30,0x49,0x80,0xa5,0x0,0x0,0x3,0x0,0x44,0xff,0x3,0x5,0x89,0x5,0xc5,0x0,0x3,0x0,0x1d,0x0,0x35,0x0,0x1b,0x40,0xd,0x25,0x18,0x3,0x72,0x0,0x3,0x3,0x31,0xb,0x9,0x72,0x1,0x2,0x0,0x2f,0x33,0x2b,0x32,0x32,0x11,0x33,0x2b,0x32,0x30,0x31,0x65,0x1,0x7,0x1,0x1,0x15,0x14,0xe,0x3,0x23,0x22,0x2e,0x3,0x35,0x35,0x34,0x3e,0x3,0x33,0x32,0x1e,0x3,0x5,0x35,0x34,0x2e,0x3,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x3,0x33,0x32,0x3e,0x2,0x4,0x17,0x1,0x72,0xda,0xfe,0x96,0x2,0x42,0x3e,0x76,0xa5,0xcf,0x79,0x79,0xd0,0xa6,0x75,0x3e,0x3e,0x74,0xa6,0xcf,0x79,0x79,0xcf,0xa6,0x76,0x3f,0xfe,0xa2,0x1b,0x35,0x4e,0x67,0x40,0x51,0x79,0x4f,0x28,0x1a,0x33,0x4e,0x67,0x41,0x50,0x78,0x52,0x29,0xfd,0xfe,0xbe,0xb8,0x1,0x42,0x2,0x9c,0x13,0x82,0xe2,0xb6,0x83,0x46,0x46,0x83,0xb6,0xe2,0x82,0x13,0x82,0xe2,0xb7,0x83,0x46,0x46,0x83,0xb7,0xe2,0x95,0x15,0x52,0x90,0x73,0x53,0x2c,0x44,0x7d,0xac,0x67,0x15,0x52,0x8f,0x74,0x54,0x2d,0x45,0x7f,0xac,0x0,0x0,0x1,0x0,0x86,0x0,0x0,0x3,0x23,0x4,0x8c,0x0,0x6,0x0,0x15,0x40,0x9,0x3,0x4,0x4,0x5,0x5,0x6,0x7d,0x2,0xa,0x0,0x3f,0x3f,0x33,0x2f,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0x11,0x25,0x3,0x23,0xfe,0xaf,0xfe,0xb4,0x2,0x7e,0x4,0x8c,0xfb,0x74,0x3,0x10,0x61,0x1,0x0,0xdd,0x0,0x1,0x0,0x42,0x0,0x0,0x4,0x49,0x4,0x9d,0x0,0x20,0x0,0x17,0x40,0xa,0x10,0x10,0xc,0x15,0x7e,0x3,0x20,0x20,0x2,0x12,0x0,0x3f,0x33,0x11,0x33,0x3f,0x33,0x33,0x2f,0x30,0x31,0x41,0x11,0x21,0x35,0x1,0x3e,0x2,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x7,0x7,0x4,0x49,0xfc,0xb,0x1,0xec,0x24,0x3f,0x27,0x14,0x41,0x43,0x30,0x47,0x27,0xfe,0xae,0x7b,0xdf,0x96,0x79,0xb6,0x79,0x3d,0x2f,0x5b,0x84,0x56,0x71,0x1,0x2,0xfe,0xfe,0xc5,0x1,0x8c,0x20,0x41,0x49,0x2a,0x1b,0x37,0x25,0x26,0x43,0x2d,0x79,0xb7,0x67,0x2f,0x59,0x80,0x51,0x48,0x74,0x69,0x6e,0x42,0x6d,0x0,0x1,0x0,0xf,0xfe,0xa3,0x4,0x22,0x4,0x8d,0x0,0x1f,0x0,0x1a,0x40,0xb,0x6,0x0,0x1e,0x1e,0x3,0x16,0xf,0x5,0x2,0x3,0x7d,0x0,0x3f,0x33,0x33,0x2f,0x33,0x12,0x39,0x2f,0x33,0x33,0x30,0x31,0x41,0x1,0x21,0x11,0x21,0x17,0x1,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x1,0x13,0x1,0xf,0xfe,0x36,0x3,0x77,0x1,0xfe,0xcd,0x6a,0xb0,0x6b,0x61,0xaf,0xef,0x8e,0x65,0xbd,0x64,0x39,0x46,0xa0,0x55,0x62,0x8c,0x4b,0x44,0x8f,0x6f,0x67,0x2,0x3b,0x1,0x4e,0x1,0x4,0xb5,0xfe,0x99,0x10,0x75,0xbd,0x7f,0x7e,0xc4,0x86,0x45,0x33,0x34,0xf7,0x28,0x30,0x48,0x7f,0x50,0x4e,0x66,0x32,0x0,0x2,0x0,0x23,0xfe,0xdc,0x4,0x5e,0x4,0x8c,0x0,0x7,0x0,0xb,0x0,0x16,0x40,0x9,0x6,0x4,0xb,0x7d,0xa,0x3,0x7,0x7,0x2,0x0,0x2f,0x33,0x11,0x33,0x2f,0x3f,0x33,0x33,0x30,0x31,0x41,0x11,0x21,0x27,0x1,0x21,0x9,0x2,0x11,0x21,0x11,0x4,0x5e,0xfb,0xd9,0x14,0x2,0x57,0x1,0xb,0xfe,0xdf,0xff,0x0,0x2,0x66,0xfe,0xaf,0x1,0x5,0xfe,0xfa,0xd0,0x3,0xbd,0xfe,0x27,0xfe,0x52,0x3,0x87,0xfa,0x50,0x5,0xb0,0x0,0x0,0x1,0x0,0x6b,0xfe,0x9f,0x4,0x50,0x4,0x8c,0x0,0x27,0x0,0x16,0x40,0x9,0x24,0x9,0x9,0x2,0x1a,0x13,0x5,0x2,0x7d,0x0,0x3f,0x33,0x2f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x25,0x13,0x21,0x11,0x21,0x3,0x36,0x36,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x34,0x2e,0x2,0x23,0x22,0x6,0x6,0x1,0xa9,0xfe,0xe7,0x3b,0x3,0x4e,0xfd,0xc7,0x1d,0x24,0x67,0x47,0x6c,0xa6,0x70,0x39,0x44,0x8c,0xd5,0x92,0x73,0xde,0x5d,0x65,0x2b,0x92,0x5f,0x50,0x6b,0x3e,0x1a,0x16,0x2e,0x4c,0x36,0x15,0x36,0x32,0x1,0x73,0x11,0x3,0x8,0xfe,0xfa,0xfe,0xec,0x14,0x14,0x41,0x7d,0xb6,0x75,0x66,0xbd,0x97,0x58,0x3f,0x3c,0xec,0x20,0x41,0x2d,0x4d,0x5f,0x31,0x39,0x5e,0x45,0x26,0xf,0x1c,0x0,0x0,0x1,0x0,0x35,0xfe,0xdc,0x4,0x55,0x4,0x8c,0x0,0x6,0x0,0xf,0xb5,0x1,0x5,0x5,0x6,0x7d,0x3,0x0,0x2f,0x3f,0x33,0x11,0x33,0x30,0x31,0x41,0x15,0x1,0x21,0x1,0x21,0x11,0x4,0x55,0xfd,0xe1,0xfe,0xae,0x2,0xd,0xfd,0x44,0x4,0x8c,0xb4,0xfb,0x4,0x4,0xac,0x1,0x4,0x0,0x0,0x2,0x0,0x5e,0x4,0xbc,0x3,0x42,0x6,0xea,0x0,0xf,0x0,0x27,0x0,0x29,0x40,0x11,0x11,0x10,0x10,0x19,0x21,0x21,0x15,0x1d,0x1c,0x1c,0x25,0x15,0x15,0x0,0x9,0xd,0x5,0x0,0x2f,0x33,0xcd,0x32,0x32,0x7c,0x2f,0x33,0x33,0x11,0x33,0x11,0x33,0x18,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x33,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x3,0x17,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x23,0x22,0x6,0x15,0x27,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x33,0x32,0x36,0x2,0x72,0xd0,0x5a,0xa6,0x72,0x71,0xa7,0x5a,0xd0,0x48,0x5a,0x59,0x49,0x8,0x8b,0x2a,0x49,0x30,0x34,0x4c,0x45,0x2b,0x19,0x23,0x89,0x29,0x48,0x30,0x2b,0x4f,0x4d,0x29,0x19,0x23,0x5,0xb0,0x48,0x6e,0x3e,0x3e,0x6e,0x48,0x2a,0x3f,0x3f,0x1,0x64,0x27,0x30,0x52,0x33,0x21,0x20,0x31,0x24,0x26,0x30,0x52,0x33,0x20,0x20,0x31,0x0,0x1,0x0,0x58,0xfe,0x9c,0x1,0xaa,0x0,0xdf,0x0,0x3,0x0,0x8,0xb1,0x1,0x0,0x0,0x2f,0xcd,0x30,0x31,0x65,0x11,0x21,0x11,0x1,0xaa,0xfe,0xae,0xdf,0xfd,0xbd,0x2,0x43,0x0,0x0,0x5,0x0,0x30,0xff,0xf0,0x6,0x76,0x4,0x9d,0x0,0x29,0x0,0x2d,0x0,0x31,0x0,0x35,0x0,0x39,0x0,0x31,0x40,0x18,0x38,0x39,0x39,0x31,0x7d,0x16,0x2d,0x2d,0x17,0x30,0xa,0x35,0x34,0x34,0x26,0x1b,0x1,0x6,0x6,0x26,0x7e,0x11,0x1b,0xb,0x0,0x3f,0x33,0x3f,0x33,0x11,0x33,0x11,0x12,0x39,0x2f,0x33,0x3f,0x33,0x33,0x11,0x33,0x3f,0x33,0x11,0x33,0x30,0x31,0x41,0x13,0x22,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x33,0x3,0x22,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x1,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0xd3,0x6,0x25,0x74,0x77,0x5c,0xe,0x37,0x53,0x36,0x1b,0x1b,0x38,0x53,0x37,0x11,0x64,0x7d,0x6d,0x18,0x6,0x48,0x92,0x76,0x21,0x7c,0xcd,0x96,0x52,0x51,0x95,0xcd,0x7c,0x21,0x7a,0x93,0x2,0xe4,0xfd,0x60,0x81,0xfe,0xae,0x3,0x1c,0xfd,0xb5,0x2,0xa5,0xfd,0x5b,0x4,0x8d,0xfe,0xfc,0x6,0x7,0x6,0x2b,0x52,0x77,0x4d,0x29,0x4b,0x77,0x54,0x2c,0x6,0x7,0x6,0xfe,0xfd,0x8,0x8,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0x8,0x8,0xfc,0x76,0xfe,0xfd,0x1,0x3,0x3,0x8a,0xfb,0x73,0x4,0x8d,0xfe,0x4f,0xfe,0xfc,0x1,0x4,0x1,0xb1,0xfe,0xfc,0x1,0x4,0x0,0x0,0x1,0x0,0x4c,0xfe,0xc6,0x4,0x6b,0x4,0xa0,0x0,0x3b,0x0,0x14,0xb7,0x0,0x15,0x1f,0x1f,0x35,0xb,0x29,0x35,0x0,0x2f,0x2f,0x33,0x12,0x39,0x2f,0x33,0x32,0x30,0x31,0x45,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x37,0x14,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x3,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x1,0xfa,0x49,0x6c,0x47,0x23,0x1d,0x34,0x45,0x28,0x2e,0x47,0x30,0x19,0x16,0x2c,0x44,0x2e,0x41,0x63,0x44,0x23,0x5f,0x7d,0xcf,0x7d,0x63,0x9d,0x6d,0x39,0x48,0x86,0xba,0x71,0x74,0xc8,0x96,0x54,0x3a,0x69,0x91,0xb0,0x63,0x52,0x9c,0x4f,0x3e,0x30,0x64,0x36,0x39,0x77,0xbb,0x82,0xd3,0x46,0x67,0x44,0x21,0x2d,0x4b,0x5d,0x2f,0x39,0x5f,0x45,0x26,0x21,0x37,0x40,0x1f,0x17,0x91,0xc8,0x68,0x46,0x83,0xba,0x73,0x6b,0xbc,0x8f,0x52,0x4c,0x93,0xd7,0x8a,0x92,0x9e,0xfb,0xb9,0x7a,0x3c,0x23,0x1c,0xf1,0x11,0x1b,0x0,0x1,0xff,0x8c,0xfe,0x4b,0x1,0xc6,0x1,0x29,0x0,0x11,0x0,0xa,0xb2,0xd,0x6,0x0,0x0,0x2f,0xcc,0x32,0x30,0x31,0x53,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x74,0x1,0x52,0x63,0xb7,0x7f,0x2b,0x4b,0x2b,0xe,0x1a,0x28,0x23,0x26,0x34,0x1b,0x1,0x29,0xfe,0xc8,0x88,0xbd,0x61,0x7,0xa,0xff,0x6,0x6,0x24,0x49,0x35,0x0,0xff,0xff,0x0,0x34,0xfe,0xa3,0x4,0x47,0x4,0x8d,0x4,0x6,0x2,0x66,0x25,0x0,0xff,0xff,0x0,0x56,0xfe,0x9f,0x4,0x3b,0x4,0x8c,0x4,0x6,0x2,0x68,0xeb,0x0,0xff,0xff,0x0,0x3d,0xfe,0xdc,0x4,0x78,0x4,0x8c,0x4,0x6,0x2,0x67,0x1a,0x0,0xff,0xff,0x0,0x40,0x0,0x0,0x4,0x47,0x4,0x9d,0x4,0x6,0x2,0x65,0xfe,0x0,0xff,0xff,0x0,0x37,0xfe,0xdc,0x4,0x57,0x4,0x8c,0x4,0x6,0x2,0x69,0x2,0x0,0xff,0xff,0x0,0x31,0xff,0xeb,0x4,0x73,0x4,0x9f,0x4,0x6,0x2,0x7f,0xfb,0x0,0xff,0xff,0x0,0x4d,0xff,0xec,0x4,0x62,0x5,0xc5,0x4,0x6,0x0,0x1a,0xf9,0x0,0xff,0xff,0x0,0x51,0xfe,0xc6,0x4,0x70,0x4,0xa0,0x4,0x6,0x2,0x6d,0x5,0x0,0xff,0xff,0x0,0x55,0xff,0xec,0x4,0x4d,0x5,0xc5,0x6,0x6,0x0,0x1c,0x0,0x0,0xff,0xff,0x0,0xcd,0x0,0x0,0x3,0x6a,0x4,0x8c,0x4,0x6,0x2,0x64,0x47,0x0,0xff,0xff,0xff,0xa3,0xfe,0x4b,0x1,0xdd,0x4,0x3a,0x4,0x6,0x0,0x9c,0x0,0x0,0xff,0xff,0xff,0xa3,0xfe,0x4b,0x1,0xdd,0x4,0x3a,0x6,0x6,0x0,0x9c,0x0,0x0,0xff,0xff,0x0,0x7c,0x0,0x0,0x1,0xce,0x4,0x3a,0x6,0x6,0x0,0x8d,0x0,0x0,0xff,0xff,0xff,0xfd,0xfe,0x69,0x1,0xce,0x4,0x3a,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x6,0x0,0xa4,0xe3,0xa,0x0,0xb,0xb6,0x1,0x4,0x2,0x0,0x0,0x43,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x7c,0x0,0x0,0x1,0xce,0x4,0x3a,0x6,0x6,0x0,0x8d,0x0,0x0,0x0,0x3,0x0,0x51,0xff,0xeb,0x4,0x4e,0x4,0x9c,0x0,0x3,0x0,0x16,0x0,0x31,0x0,0x29,0x40,0x14,0xf,0x26,0x26,0xd,0x23,0x23,0x9,0x1b,0x2f,0xb,0x72,0x4,0x0,0x0,0x2,0x13,0x9,0x7e,0x2,0xa,0x0,0x3f,0x3f,0x33,0x12,0x39,0x2f,0x33,0x2b,0x32,0x11,0x39,0x2f,0x33,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x5,0x21,0x34,0x36,0x36,0x33,0x32,0x16,0x17,0x1,0x27,0x35,0x37,0x26,0x26,0x23,0x22,0x6,0x6,0x13,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x35,0x37,0x32,0x1e,0x2,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x1,0x98,0xfe,0xb9,0x1,0x47,0xfe,0xb9,0x67,0xc8,0x91,0x95,0xe5,0x62,0xfe,0xc0,0xb8,0x91,0x19,0x3f,0x23,0x1a,0x36,0x23,0x3b,0x61,0xe,0x39,0x22,0x20,0x30,0x1b,0x2e,0x57,0x3e,0x50,0x66,0x75,0xb9,0x81,0x44,0x6b,0xae,0x67,0x58,0x79,0x2,0xe5,0xfd,0x1b,0x2,0xe5,0x2,0x92,0xc4,0x63,0x82,0x80,0xfe,0x85,0x9,0x7d,0xc0,0x1c,0x21,0x26,0x54,0xfd,0x1,0xea,0xd,0x21,0x1d,0x38,0x27,0x30,0x39,0x19,0xbd,0x15,0x2c,0x57,0x7e,0x53,0x7e,0xa6,0x52,0x25,0x0,0x2,0x0,0x36,0xff,0xeb,0x4,0x78,0x4,0x9f,0x0,0x15,0x0,0x2b,0x0,0xe,0xb5,0x1c,0x11,0x7e,0x27,0x6,0xb,0x0,0x3f,0x33,0x3f,0x33,0x30,0x31,0x41,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x4,0x78,0x56,0x96,0xc5,0x6f,0x6f,0xc6,0x97,0x56,0x55,0x97,0xc5,0x6f,0x6f,0xc5,0x98,0x56,0xfe,0xaf,0x24,0x3c,0x4a,0x27,0x27,0x49,0x3c,0x23,0x24,0x3b,0x4b,0x27,0x26,0x4a,0x3c,0x23,0x2,0x4b,0xc,0x98,0xe1,0x93,0x48,0x48,0x93,0xe1,0x98,0xc,0x98,0xe1,0x93,0x48,0x48,0x93,0xe1,0xb9,0x38,0x57,0x78,0x49,0x21,0x21,0x49,0x78,0x57,0x38,0x58,0x79,0x4a,0x20,0x20,0x4a,0x79,0x0,0x0,0x1,0x0,0x36,0x0,0x0,0x4,0x11,0x5,0xb0,0x0,0x6,0x0,0x13,0x40,0x9,0x1,0x5,0x5,0x6,0x4,0x72,0x3,0xc,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x41,0x15,0x1,0x21,0x1,0x21,0x11,0x4,0x11,0xfd,0xf9,0xfe,0xae,0x2,0xb,0xfd,0x73,0x5,0xb0,0xb4,0xfb,0x4,0x4,0xac,0x1,0x4,0x0,0x0,0x3,0x0,0x62,0xff,0xec,0x4,0x5f,0x6,0x0,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xe,0x21,0x16,0x7,0x72,0x2b,0xb,0xb,0x72,0x4,0xa,0x72,0x0,0x0,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x53,0x21,0x11,0x3,0x21,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x17,0x15,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x62,0x1,0x51,0x2d,0xfe,0xdc,0x3,0xfd,0x38,0x70,0xa4,0x6c,0x62,0x8c,0x5e,0x3a,0x11,0x11,0x3a,0x5e,0x8b,0x61,0x6d,0xa5,0x70,0x38,0xfe,0xaf,0x13,0x2c,0x48,0x36,0x36,0x4d,0x2f,0x15,0x1,0x2,0x28,0x59,0x49,0x36,0x49,0x2a,0x12,0x6,0x0,0xfb,0xa,0xfe,0xf6,0x2,0x26,0x15,0x76,0xc8,0x95,0x52,0x56,0x96,0xc3,0x6e,0x19,0x75,0xcb,0x97,0x55,0x4f,0x93,0xcb,0x90,0x15,0x3f,0x6b,0x4e,0x2c,0x23,0x43,0x65,0x42,0x4f,0x4d,0x73,0x3f,0x2d,0x4f,0x69,0x0,0x1,0x0,0x38,0xff,0xec,0x4,0x1e,0x4,0x4e,0x0,0x27,0x0,0x19,0x40,0xc,0x1d,0x19,0x19,0x14,0x7,0x72,0x4,0x4,0x0,0x9,0xb,0x72,0x0,0x2b,0x32,0x32,0x2f,0x2b,0x32,0x2f,0x32,0x30,0x31,0x65,0x32,0x36,0x36,0x37,0x21,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x17,0x21,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x2,0x42,0x2f,0x47,0x29,0x1,0x1,0x3c,0x3,0x7e,0xd1,0x82,0x7f,0xc5,0x88,0x46,0x46,0x88,0xc4,0x7e,0x87,0xd2,0x7a,0x3,0xfe,0xc4,0x1,0x26,0x47,0x34,0x34,0x47,0x2a,0x12,0x12,0x2a,0x48,0xf0,0x23,0x41,0x2e,0x7a,0xb7,0x65,0x53,0x95,0xc8,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x4f,0x2d,0x0,0x0,0x3,0x0,0x38,0xff,0xec,0x4,0x37,0x6,0x0,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xd,0x21,0x4,0x4,0x16,0xb,0x72,0x2b,0xb,0x7,0x72,0x1,0x0,0x72,0x0,0x2b,0x2b,0x32,0x2b,0x32,0x2f,0x32,0x30,0x31,0x65,0x11,0x21,0x11,0x21,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x2,0xe5,0x1,0x52,0xfe,0xdb,0xfd,0x26,0x3c,0x72,0xa4,0x67,0x5c,0x8b,0x62,0x3e,0x10,0x10,0x3f,0x62,0x8b,0x5d,0x67,0xa2,0x72,0x3c,0x1,0x52,0x16,0x2f,0x46,0x30,0x41,0x5b,0x2f,0x3,0x2,0x1a,0x33,0x4b,0x30,0x2f,0x47,0x2f,0x18,0xf8,0x5,0x8,0xfa,0x0,0x2,0x12,0x15,0x7b,0xcb,0x92,0x4f,0x55,0x97,0xca,0x75,0x19,0x6e,0xc4,0x96,0x56,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x69,0x4f,0x2d,0x3f,0x73,0x4d,0x4f,0x42,0x64,0x44,0x22,0x2b,0x4f,0x6a,0x0,0x0,0x3,0x0,0x38,0xfe,0x56,0x4,0x37,0x4,0x4e,0x0,0x13,0x0,0x29,0x0,0x3e,0x0,0x1b,0x40,0xf,0x30,0x25,0xb,0x72,0x3a,0x1a,0x7,0x72,0xe,0x6,0xf,0x72,0x0,0x6,0x72,0x0,0x2b,0x2b,0x32,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0xe,0x2,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x3,0xf,0x1,0x28,0x4c,0x8f,0xcb,0x7f,0x44,0xa0,0x47,0x26,0x37,0x5c,0x43,0x58,0x72,0x38,0xfd,0x53,0x3c,0x73,0xa3,0x67,0x6f,0x8f,0x57,0x31,0x11,0x11,0x3b,0x5e,0x8d,0x62,0x66,0xa3,0x72,0x3c,0x1,0x52,0x16,0x2f,0x46,0x30,0x49,0x5a,0x28,0x3,0x2,0x16,0x2f,0x4d,0x36,0x2f,0x47,0x2f,0x18,0x4,0x3a,0xfc,0x18,0x7a,0xbd,0x82,0x43,0x1b,0x23,0xe6,0x13,0x18,0x39,0x74,0x58,0x2,0xe6,0xfe,0xd9,0x15,0x7b,0xcb,0x91,0x4f,0x54,0x97,0xca,0x75,0x19,0x6e,0xc4,0x97,0x56,0x53,0x95,0xc9,0x8b,0x15,0x3d,0x69,0x50,0x2d,0x40,0x73,0x4d,0x4f,0x42,0x64,0x43,0x22,0x2b,0x4e,0x6a,0x0,0x2,0x0,0x2d,0xff,0xec,0x4,0x6c,0x4,0x4e,0x0,0x15,0x0,0x2b,0x0,0x10,0xb7,0x1c,0x11,0xb,0x72,0x27,0x6,0x7,0x72,0x0,0x2b,0x32,0x2b,0x32,0x30,0x31,0x53,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x35,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x2d,0x4a,0x8d,0xc9,0x7e,0x80,0xca,0x8d,0x4a,0x4a,0x8d,0xc9,0x7f,0x7f,0xca,0x8d,0x4a,0x1,0x51,0x18,0x32,0x4f,0x36,0x35,0x4e,0x32,0x18,0x18,0x32,0x4f,0x36,0x35,0x4d,0x33,0x18,0x2,0x12,0x15,0x77,0xc9,0x94,0x53,0x53,0x94,0xc9,0x77,0x15,0x76,0xc9,0x95,0x52,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x6a,0x4f,0x2c,0x2c,0x4f,0x6a,0x3d,0x15,0x3b,0x69,0x51,0x2e,0x2e,0x51,0x69,0x0,0x3,0x0,0x62,0xfe,0x60,0x4,0x5f,0x4,0x4e,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xe,0x21,0x16,0x7,0x72,0x2b,0xb,0xb,0x72,0x3,0x6,0x72,0x2,0xe,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x27,0x35,0x3e,0x3,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x17,0x15,0x6,0x16,0x16,0x33,0x32,0x3e,0x2,0x1,0xb3,0xfe,0xaf,0x1,0x3c,0x2,0xc1,0x3c,0x72,0xa3,0x67,0x61,0x8c,0x5e,0x3a,0x11,0x11,0x3a,0x5e,0x8b,0x61,0x67,0xa3,0x73,0x3c,0xfe,0xaf,0x18,0x2f,0x46,0x2f,0x36,0x4c,0x30,0x15,0x1,0x2,0x28,0x5a,0x48,0x30,0x46,0x2e,0x16,0x3,0x6a,0xfa,0xf6,0x5,0xda,0xfd,0xee,0x15,0x76,0xc9,0x95,0x53,0x56,0x96,0xc4,0x6d,0x1b,0x75,0xca,0x97,0x54,0x4f,0x91,0xcb,0x90,0x15,0x3f,0x6a,0x4e,0x2b,0x22,0x43,0x64,0x42,0x52,0x4c,0x72,0x3f,0x2d,0x50,0x69,0x0,0x3,0x0,0x38,0xfe,0x60,0x4,0x37,0x4,0x4e,0x0,0x4,0x0,0x1a,0x0,0x2f,0x0,0x19,0x40,0xe,0x21,0x16,0xb,0x72,0x2b,0xb,0x7,0x72,0x4,0xe,0x72,0x3,0x6,0x72,0x0,0x2b,0x2b,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x37,0x21,0x11,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x2,0xe5,0x2d,0x1,0x25,0xfc,0x1,0x3c,0x73,0xa3,0x67,0x61,0x8b,0x5e,0x3b,0x11,0x11,0x3b,0x5e,0x8c,0x62,0x66,0xa3,0x72,0x3c,0x1,0x52,0x16,0x2e,0x47,0x30,0x49,0x59,0x27,0x3,0x2,0x15,0x2f,0x4c,0x36,0x2f,0x47,0x2f,0x18,0xfe,0x60,0x4,0xf7,0xe3,0xfa,0x26,0x3,0xb2,0x15,0x7b,0xcb,0x92,0x4f,0x55,0x97,0xca,0x75,0x19,0x6e,0xc4,0x96,0x56,0x52,0x95,0xc9,0x8b,0x15,0x3d,0x69,0x4f,0x2d,0x3f,0x73,0x4d,0x4f,0x42,0x64,0x44,0x22,0x2b,0x4f,0x6a,0x0,0x1,0x0,0x3d,0xff,0xec,0x4,0x32,0x4,0x4e,0x0,0x2a,0x0,0x19,0x40,0xc,0x13,0x12,0x12,0x0,0x19,0xb,0x7,0x72,0x24,0x0,0xb,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x2f,0x33,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x21,0x35,0x21,0x35,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x2,0x71,0x83,0xd0,0x93,0x4e,0x42,0x82,0xc4,0x82,0x73,0xb6,0x7f,0x43,0xfc,0x8c,0x2,0x2b,0x22,0x48,0x38,0x37,0x48,0x29,0x10,0x1f,0x43,0x6c,0x4c,0x44,0xa5,0x3a,0x35,0x3d,0xcf,0x14,0x51,0x8f,0xbf,0x6e,0x26,0x77,0xcb,0x98,0x55,0x4a,0x8a,0xc4,0x7a,0x89,0xd3,0x1a,0x36,0x4c,0x28,0x30,0x53,0x6c,0x3c,0x26,0x3c,0x62,0x45,0x26,0x25,0x1d,0xe2,0x25,0x3f,0x0,0x3,0x0,0x34,0xfe,0x56,0x4,0x1f,0x4,0x4e,0x0,0x12,0x0,0x28,0x0,0x3d,0x0,0x1b,0x40,0xf,0x2f,0x24,0xb,0x72,0x39,0x19,0x7,0x72,0xd,0x6,0xf,0x72,0x0,0x6,0x72,0x0,0x2b,0x2b,0x32,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x11,0x1,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x17,0x15,0xe,0x3,0x23,0x22,0x2e,0x2,0x25,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x27,0x35,0x36,0x2e,0x2,0x23,0x22,0xe,0x2,0x2,0xf7,0x1,0x28,0x85,0xf6,0xaa,0x46,0xa2,0x48,0x26,0x38,0x5e,0x45,0x58,0x72,0x38,0xfd,0x67,0x36,0x6b,0x9e,0x67,0x6f,0x8f,0x56,0x31,0x11,0x11,0x3b,0x5e,0x8c,0x62,0x67,0x9d,0x6a,0x36,0x1,0x52,0x10,0x27,0x40,0x30,0x49,0x54,0x23,0x3,0x2,0x12,0x2c,0x49,0x36,0x2f,0x41,0x27,0x12,0x4,0x3a,0xfc,0x18,0xa3,0xe3,0x76,0x1b,0x23,0xe6,0x13,0x18,0x39,0x74,0x58,0x2,0xe6,0xfe,0xd9,0x15,0x7b,0xcb,0x91,0x4f,0x54,0x97,0xca,0x75,0x19,0x6e,0xc4,0x97,0x56,0x53,0x95,0xc9,0x8b,0x15,0x3d,0x69,0x50,0x2d,0x40,0x73,0x4d,0x4f,0x42,0x64,0x43,0x22,0x2b,0x4e,0x6a,0x0,0x2,0xff,0xf3,0xfe,0x4f,0x4,0x51,0x4,0x4b,0x0,0x3,0x0,0x25,0x0,0x19,0x40,0xc,0xe,0x15,0x1,0x1,0x15,0x1f,0x4,0x7,0x72,0x3,0x6,0x72,0x0,0x2b,0x2b,0x32,0x2f,0x33,0x2f,0x11,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x25,0x32,0x1e,0x2,0x17,0x1,0x1e,0x2,0x17,0x16,0x16,0x33,0x7,0x6,0x6,0x27,0x2e,0x3,0x27,0x1,0x2e,0x2,0x23,0x22,0x6,0x7,0x27,0x36,0x36,0x4,0x51,0xfd,0x19,0xfe,0xb9,0x2,0xd7,0xfd,0xb0,0x5d,0x77,0x4a,0x2e,0x12,0x1,0x89,0xa,0x1e,0x2a,0x1a,0xb,0x1b,0xb,0x9,0x26,0x5e,0x2f,0x40,0x61,0x45,0x2f,0xe,0xfe,0x98,0xd,0x35,0x43,0x25,0xb,0x2a,0xc,0x9,0x32,0x4e,0x4,0x3a,0xfa,0x26,0x5,0xda,0x11,0x37,0x56,0x5e,0x28,0xfc,0x95,0x1b,0x2e,0x22,0x8,0x4,0x2,0xfb,0x7,0x3,0x5,0x8,0x51,0x71,0x70,0x26,0x3,0x38,0x22,0x27,0x11,0x3,0x3,0xf1,0xc,0xe,0x0,0xff,0xff,0x0,0x71,0x0,0x0,0x3,0xe,0x5,0xb0,0x4,0x6,0x0,0x15,0xca,0x0,0x0,0x1,0x0,0x4f,0xff,0xeb,0x5,0x6,0x4,0x9d,0x0,0x41,0x0,0x17,0x40,0xb,0x38,0x38,0x10,0x22,0x7e,0x19,0xa,0x33,0x0,0xb,0x72,0x0,0x2b,0x32,0x3f,0x3f,0x33,0x39,0x2f,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x34,0x36,0x36,0x37,0x25,0x36,0x36,0x35,0x34,0x26,0x23,0x22,0x6,0x15,0x14,0x16,0x16,0x17,0x1,0x21,0x1,0x2e,0x2,0x35,0x34,0x36,0x36,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x7,0x5,0xe,0x2,0x15,0x14,0x16,0x16,0x33,0x32,0x3e,0x2,0x35,0x21,0x14,0x6,0x7,0x6,0x6,0x7,0x6,0x6,0x2,0x2b,0x6e,0xb0,0x7c,0x42,0x35,0x64,0x44,0x1,0x1,0x44,0x20,0x35,0x2f,0x32,0x34,0x1f,0x38,0x23,0x2,0xc5,0xfe,0x97,0xfd,0xd3,0x3c,0x55,0x2e,0x55,0xa7,0x79,0x77,0xaf,0x60,0x32,0x57,0x37,0xfe,0xf5,0x18,0x1c,0xc,0x22,0x3d,0x28,0x5d,0x8d,0x61,0x31,0x1,0x1a,0x6b,0x52,0x15,0x24,0x19,0x58,0xca,0x15,0x2f,0x57,0x76,0x46,0x43,0x66,0x55,0x29,0x9d,0x28,0x2e,0x1c,0x1a,0x30,0x34,0x25,0x19,0x33,0x38,0x23,0xfd,0x53,0x2,0x25,0x3a,0x65,0x6d,0x46,0x4a,0x87,0x55,0x4b,0x8d,0x63,0x38,0x62,0x52,0x22,0xa8,0x10,0x20,0x1f,0xf,0x1f,0x2c,0x17,0x2e,0x54,0x74,0x46,0x97,0xc5,0x43,0x12,0x1b,0xe,0x33,0x30,0x0,0x0,0x3,0x0,0xb,0x0,0x0,0x3,0xbf,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x1d,0x40,0xd,0x8,0x9,0x9,0xb,0xa,0xa,0x6,0x7,0x7d,0x3,0x2,0x6,0xa,0x0,0x3f,0x33,0x33,0x3f,0x12,0x39,0x2f,0x33,0x33,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x15,0x5,0x35,0x3,0xbf,0xfd,0x85,0x81,0xfe,0xae,0x2,0x42,0xfd,0x56,0x1,0x3,0xfe,0xfd,0x1,0x3,0x3,0x8a,0xfb,0x73,0x4,0x8d,0xfe,0xd6,0xb2,0xbb,0xb2,0x0,0x0,0x6,0xff,0xbb,0x0,0x0,0x6,0x22,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x10,0x0,0x14,0x0,0x18,0x0,0x33,0x40,0x18,0xa,0xb,0xb,0x18,0x18,0xf,0x7,0x6,0x14,0x13,0x6,0x13,0x6,0x13,0xd,0xf,0x7d,0x3,0x2,0x2,0x17,0x17,0xd,0xa,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x3f,0x12,0x39,0x39,0x2f,0x2f,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x7,0x1,0x21,0x1,0x33,0x13,0x15,0x21,0x35,0x1,0x13,0x21,0x3,0x6,0x22,0xfd,0x16,0x2,0x80,0xfd,0x61,0x2,0xdb,0xfd,0x16,0x20,0xfe,0x41,0xfe,0x90,0x2,0x23,0xec,0xe7,0xfd,0x55,0x2,0xde,0x2e,0xfe,0xb1,0x2d,0x1,0x2,0xfe,0xfe,0x1,0x2,0x1,0xdc,0xfe,0xfd,0x1,0x3,0x1,0xaf,0xfe,0xfe,0x1,0x2,0x76,0xfb,0xe9,0x4,0x8d,0xfd,0x38,0xfe,0xfe,0x2,0xc8,0xfb,0x73,0x4,0x8d,0x0,0x2,0x0,0x51,0x0,0x0,0x3,0xfd,0x4,0x8d,0x0,0x3,0x0,0x19,0x0,0x17,0x40,0xa,0xf,0x10,0x10,0x1,0x7d,0x5,0x4,0x4,0x0,0xa,0x0,0x3f,0x32,0x2f,0x33,0x3f,0x33,0x2f,0x33,0x30,0x31,0x73,0x11,0x21,0x11,0x27,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x23,0x11,0x33,0x32,0x16,0x16,0x15,0x14,0x6,0x6,0x23,0x51,0x1,0x52,0x87,0xf0,0x36,0x48,0x23,0x23,0x48,0x36,0xf0,0xf0,0x99,0xdf,0x79,0x79,0xdf,0x99,0x4,0x8d,0xfb,0x73,0xd7,0x1,0x4,0x26,0x40,0x28,0x25,0x3f,0x26,0x1,0x4,0x67,0xb3,0x72,0x76,0xb7,0x67,0x0,0x0,0x3,0x0,0x2e,0xff,0xc9,0x4,0x90,0x4,0xc3,0x0,0x15,0x0,0x2b,0x0,0x2f,0x0,0x1b,0x40,0xb,0x2f,0x2f,0x1c,0x11,0x7e,0x2d,0x2d,0x27,0x6,0xb,0x72,0x0,0x2b,0x32,0x32,0x7c,0x2f,0x18,0x3f,0x33,0x33,0x7c,0x2f,0x30,0x31,0x41,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x5,0x35,0x34,0x2e,0x2,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x3e,0x2,0x1,0x1,0x23,0x1,0x4,0x8f,0x52,0x96,0xcc,0x7a,0x7c,0xcd,0x96,0x52,0x51,0x95,0xcd,0x7c,0x7a,0xcc,0x97,0x53,0xfe,0xac,0x1e,0x39,0x51,0x34,0x37,0x53,0x36,0x1b,0x1b,0x38,0x53,0x37,0x33,0x51,0x38,0x1e,0x1,0x55,0xfc,0x4c,0xae,0x3,0xb5,0x2,0x5a,0x28,0x85,0xd6,0x97,0x50,0x50,0x97,0xd6,0x85,0x28,0x86,0xd5,0x98,0x50,0x50,0x98,0xd5,0xae,0x29,0x4d,0x77,0x52,0x2b,0x2b,0x52,0x77,0x4d,0x29,0x4b,0x77,0x54,0x2c,0x2c,0x54,0x77,0x2,0xdc,0xfb,0x6,0x4,0xfa,0x0,0x0,0x4,0x0,0x3c,0x0,0x0,0x5,0x1d,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1b,0x40,0xc,0x2,0x3,0x80,0xe,0xf,0xf,0xb,0x7,0x7d,0xa,0x6,0xa,0x0,0x3f,0x33,0x3f,0x33,0x33,0x2f,0x33,0x1a,0xcc,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x5,0x15,0x21,0x35,0x3,0xec,0xfd,0x82,0x7a,0xfe,0xae,0x4,0x2d,0xfe,0xb0,0x1,0xaa,0xfb,0x1f,0x2,0xbc,0xfe,0xfc,0x1,0x4,0x1,0xd1,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0x7b,0xbf,0xbf,0x0,0x0,0x2,0x0,0x51,0xfe,0x4b,0x4,0x7e,0x4,0x8d,0x0,0x9,0x0,0x1b,0x0,0x1f,0x40,0xf,0x17,0x10,0xf,0x72,0x9,0x3,0x6,0x7d,0x8,0xa,0xa,0x2,0x2,0x5,0xa,0x0,0x3f,0x33,0x11,0x33,0x11,0x33,0x3f,0x33,0x33,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x1,0x11,0x21,0x11,0x21,0x1,0x11,0x3,0x21,0x15,0x14,0x6,0x6,0x23,0x22,0x26,0x27,0x37,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x4,0x7e,0xfe,0xae,0xfe,0x77,0xfe,0xae,0x1,0x52,0x1,0x89,0x1,0x1,0x53,0x63,0xb7,0x80,0x2a,0x4b,0x2b,0xe,0x1a,0x28,0x22,0x26,0x34,0x1b,0x4,0x8d,0xfb,0x73,0x2,0xa6,0xfd,0x5a,0x4,0x8d,0xfd,0x5a,0x2,0xa6,0xfb,0xd4,0x70,0x88,0xbd,0x61,0x7,0xa,0xff,0x6,0x6,0x24,0x49,0x35,0x0,0xff,0xff,0x0,0x98,0x1,0xf1,0x2,0xf1,0x2,0xf6,0x6,0x6,0x0,0x11,0x0,0x0,0x0,0x3,0xff,0xff,0x0,0x0,0x5,0x4,0x5,0xb0,0x0,0x1a,0x0,0x1e,0x0,0x22,0x0,0x23,0x40,0x11,0x2,0x1,0x1,0x1d,0x22,0x21,0x21,0x1d,0xe,0xf,0xf,0x1e,0x2,0x72,0x1d,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x61,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x35,0x34,0x2e,0x2,0x23,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x15,0x14,0x2,0x6,0x6,0x1,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x2,0x66,0xfe,0xbd,0x2,0x1,0x41,0x64,0x8b,0x49,0x29,0x50,0x77,0x4d,0xfe,0xbc,0x1,0x44,0x94,0xf7,0xb5,0x63,0x63,0xb4,0xf5,0xfe,0xf4,0xfe,0xa1,0x2,0x4d,0xfd,0x25,0x1,0xe,0x60,0xbf,0x8c,0x3f,0x69,0x9f,0x6b,0x36,0x1,0xf,0x65,0xbb,0xff,0x9b,0x3d,0x9a,0xff,0x0,0xba,0x65,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfd,0x8a,0xbf,0xbf,0x0,0x0,0x3,0xff,0xff,0x0,0x0,0x5,0x4,0x5,0xb0,0x0,0x1a,0x0,0x1e,0x0,0x22,0x0,0x23,0x40,0x11,0x2,0x1,0x1,0x1d,0x22,0x21,0x21,0x1d,0xe,0xf,0xf,0x1e,0x2,0x72,0x1d,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x11,0x39,0x2f,0x33,0x11,0x33,0x11,0x33,0x30,0x31,0x61,0x21,0x13,0x21,0x32,0x36,0x36,0x35,0x35,0x34,0x2e,0x2,0x23,0x21,0x11,0x21,0x32,0x1e,0x2,0x15,0x15,0x14,0x2,0x6,0x6,0x1,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x2,0x66,0xfe,0xbd,0x2,0x1,0x41,0x64,0x8b,0x49,0x29,0x50,0x77,0x4d,0xfe,0xbc,0x1,0x44,0x94,0xf7,0xb5,0x63,0x63,0xb4,0xf5,0xfe,0xf4,0xfe,0xa1,0x2,0x4d,0xfd,0x25,0x1,0xe,0x60,0xbf,0x8c,0x3f,0x69,0x9f,0x6b,0x36,0x1,0xf,0x65,0xbb,0xff,0x9b,0x3d,0x9a,0xff,0x0,0xba,0x65,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfd,0x8a,0xbf,0xbf,0x0,0x0,0x3,0xff,0xe1,0x0,0x0,0x4,0x46,0x6,0x0,0x0,0x3,0x0,0x1a,0x0,0x1e,0x0,0x19,0x40,0xd,0x1e,0x1d,0x16,0xa,0x7,0x72,0x3,0x0,0x72,0x11,0x2,0xa,0x72,0x0,0x2b,0x32,0x2b,0x2b,0x32,0xc4,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x7,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x11,0x21,0x11,0x34,0x26,0x26,0x23,0x22,0xe,0x2,0x1,0x15,0x21,0x35,0x1,0xc7,0xfe,0xaf,0x1,0x29,0x4f,0x38,0x68,0x92,0x59,0x50,0x85,0x61,0x35,0xfe,0xad,0x25,0x44,0x31,0x3b,0x4a,0x27,0xe,0x1,0x1d,0xfd,0x25,0x6,0x0,0xfa,0x0,0x6,0x0,0xfc,0x42,0x2,0x72,0xc0,0x8e,0x4e,0x2e,0x66,0xa4,0x76,0xfd,0x60,0x2,0xa2,0x42,0x49,0x1d,0x28,0x47,0x60,0x2,0xff,0xbf,0xbf,0x0,0x3,0x0,0x25,0x0,0x0,0x4,0xe6,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0x15,0x40,0xa,0x3,0xa,0xb,0x6,0x7,0x2,0x72,0x1,0x8,0x72,0x0,0x2b,0x2b,0x32,0x2f,0x33,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x3,0x30,0xfe,0xa1,0x3,0x15,0xfb,0x3f,0x3,0xab,0xfd,0x25,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfe,0xf1,0x1,0xf,0xfd,0xe2,0xbf,0xbf,0x0,0x0,0x3,0xff,0xdc,0xff,0xec,0x2,0xb7,0x5,0x47,0x0,0x3,0x0,0x15,0x0,0x19,0x0,0x1d,0x40,0xe,0xa,0x11,0xb,0x72,0x18,0x19,0x19,0x2,0x2,0x4,0x4,0x3,0x6,0x72,0x0,0x2b,0x32,0x2f,0x32,0x11,0x33,0x2f,0x33,0x2b,0x32,0x30,0x31,0x41,0x15,0x21,0x35,0x13,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x37,0x15,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x1,0x15,0x21,0x35,0x2,0x99,0xfd,0x74,0x89,0x1,0x51,0x14,0x31,0x29,0x1d,0x26,0x11,0x2b,0x5e,0x35,0x6c,0x99,0x50,0x2,0x21,0xfd,0x25,0x4,0x3a,0xea,0xea,0x1,0xd,0xfc,0x1a,0x2b,0x2f,0x13,0x3,0x3,0xf1,0xe,0xf,0x44,0x92,0x75,0x1,0x83,0xbf,0xbf,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x36,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xf9,0x1,0x36,0x0,0xb,0xb6,0x3,0x10,0x7,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x36,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xc7,0x1,0x36,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x36,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xb7,0x1,0x36,0x0,0xb,0xb6,0x3,0x11,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x38,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xc7,0x1,0x31,0x0,0xb,0xb6,0x3,0x1c,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x10,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xbf,0x1,0x36,0x0,0xd,0xb7,0x4,0x3,0x23,0x7,0x1,0x1,0x78,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x8c,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xa3,0x1,0x66,0x1,0xb3,0x0,0xd,0xb7,0x4,0x3,0x19,0x7,0x1,0x1,0x47,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0xe3,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x41,0x1,0x55,0x1,0x3,0x0,0x12,0xb6,0x5,0x4,0x3,0x1b,0x7,0x1,0x0,0xb8,0xff,0xb2,0xb0,0x56,0x0,0x2b,0x34,0x34,0x34,0xff,0xff,0x0,0x46,0xfe,0x28,0x5,0xb,0x5,0xc5,0x6,0x26,0x0,0x27,0x0,0x0,0x1,0x7,0x0,0x79,0x1,0xbd,0x0,0x0,0x0,0xb,0xb6,0x1,0x28,0x5,0x0,0x0,0xa,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x36,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xc2,0x1,0x36,0x0,0xb,0xb6,0x4,0x12,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x36,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x90,0x1,0x36,0x0,0xb,0xb6,0x4,0x10,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x36,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x80,0x1,0x36,0x0,0xb,0xb6,0x4,0x13,0x7,0x1,0x1,0x77,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x10,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x88,0x1,0x36,0x0,0xd,0xb7,0x5,0x4,0x25,0x7,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xa9,0x0,0x0,0x1,0xe4,0x7,0x36,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x44,0xff,0x72,0x1,0x36,0x0,0xb,0xb6,0x1,0x6,0x3,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x2,0xc4,0x7,0x36,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x75,0x0,0x40,0x1,0x36,0x0,0xb,0xb6,0x1,0x4,0x3,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x92,0x0,0x0,0x2,0xdd,0x7,0x36,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x9e,0xff,0x30,0x1,0x36,0x0,0xb,0xb6,0x1,0x7,0x3,0x1,0x1,0x77,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x97,0x0,0x0,0x2,0xcc,0x7,0x10,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x38,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x19,0x3,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x2f,0x7,0x38,0x6,0x26,0x0,0x32,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xe2,0x1,0x31,0x0,0xb,0xb6,0x1,0x18,0x6,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x36,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xfe,0x1,0x36,0x0,0xb,0xb6,0x2,0x2e,0x11,0x1,0x1,0x4f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x36,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xcc,0x1,0x36,0x0,0xb,0xb6,0x2,0x2c,0x11,0x1,0x1,0x4f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x36,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xbc,0x1,0x36,0x0,0xb,0xb6,0x2,0x2f,0x11,0x1,0x1,0x5a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x38,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xcc,0x1,0x31,0x0,0xb,0xb6,0x2,0x3a,0x11,0x1,0x1,0x59,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x10,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xc4,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x41,0x11,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x36,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xe0,0x1,0x36,0x0,0xb,0xb6,0x1,0x18,0x0,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x36,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xae,0x1,0x36,0x0,0xb,0xb6,0x1,0x16,0xb,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x36,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x9e,0x1,0x36,0x0,0xb,0xb6,0x1,0x19,0x0,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x10,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xa6,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x2b,0x0,0x1,0x1,0x78,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0x36,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x90,0x1,0x36,0x0,0xb,0xb6,0x1,0x9,0x2,0x1,0x1,0x60,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x0,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x55,0x0,0x0,0x0,0xb,0xb6,0x2,0x3d,0xf,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x0,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x23,0x0,0x0,0x0,0xb,0xb6,0x2,0x3b,0xf,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x0,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x0,0x9e,0x13,0x0,0x0,0xb,0xb6,0x2,0x3e,0xf,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x2,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x0,0xa5,0x23,0xfb,0x0,0xb,0xb6,0x2,0x49,0xf,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x5,0xda,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x1b,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x50,0xf,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x56,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xa3,0x0,0xc2,0x0,0x7d,0x0,0xd,0xb7,0x3,0x2,0x46,0xf,0x1,0x1,0x72,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0xad,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x2,0x41,0x0,0xb1,0xff,0xcd,0x0,0x12,0xb6,0x4,0x3,0x2,0x48,0xf,0x0,0x0,0xb8,0xff,0xdd,0xb0,0x56,0x0,0x2b,0x34,0x34,0x34,0xff,0xff,0x0,0x35,0xfe,0x28,0x3,0xfa,0x4,0x4e,0x6,0x26,0x0,0x47,0x0,0x0,0x1,0x7,0x0,0x79,0x1,0x44,0x0,0x0,0x0,0xb,0xb6,0x1,0x28,0x9,0x0,0x0,0xa,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x1,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x54,0x0,0x1,0x0,0xb,0xb6,0x1,0x2e,0xb,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x1,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x22,0x0,0x1,0x0,0xb,0xb6,0x1,0x2c,0xb,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x1,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x0,0x9e,0x12,0x1,0x0,0xb,0xb6,0x1,0x2f,0xb,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x5,0xdb,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x1a,0x0,0x1,0x0,0xd,0xb7,0x2,0x1,0x41,0xb,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x9a,0x0,0x0,0x1,0xce,0x5,0xeb,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0x44,0xff,0x63,0xff,0xeb,0x0,0xb,0xb6,0x1,0x6,0x3,0x1,0x1,0x9e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x7c,0x0,0x0,0x2,0xb5,0x5,0xeb,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x6,0x0,0x75,0x31,0xeb,0x0,0xb,0xb6,0x1,0x4,0x3,0x1,0x1,0x9e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x83,0x0,0x0,0x2,0xce,0x5,0xeb,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0x9e,0xff,0x21,0xff,0xeb,0x0,0xb,0xb6,0x1,0x7,0x3,0x1,0x1,0xa9,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x88,0x0,0x0,0x2,0xbd,0x5,0xc5,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x29,0xff,0xeb,0x0,0xd,0xb7,0x2,0x1,0x19,0x3,0x1,0x1,0xb5,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x28,0x6,0x2,0x6,0x26,0x0,0x52,0x0,0x0,0x1,0x6,0x0,0xa5,0x4e,0xfb,0x0,0xb,0xb6,0x2,0x2a,0x3,0x1,0x1,0xaa,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x0,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x7e,0x0,0x0,0x0,0xb,0xb6,0x2,0x2e,0x6,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x0,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x4c,0x0,0x0,0x0,0xb,0xb6,0x2,0x2c,0x6,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x0,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x0,0x9e,0x3c,0x0,0x0,0xb,0xb6,0x2,0x2f,0x6,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x2,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x0,0xa5,0x4c,0xfb,0x0,0xb,0xb6,0x2,0x3a,0x6,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x5,0xda,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x44,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x41,0x6,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x0,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x7e,0x0,0x0,0x0,0xb,0xb6,0x2,0x1e,0x11,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x0,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x4c,0x0,0x0,0x0,0xb,0xb6,0x2,0x1c,0x11,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x0,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x6,0x0,0x9e,0x3c,0x0,0x0,0xb,0xb6,0x2,0x1f,0x11,0x1,0x1,0xab,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x5,0xda,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x44,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x31,0x11,0x1,0x1,0xb7,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x6,0x0,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x1b,0x0,0x0,0x0,0xb,0xb6,0x2,0x19,0x1,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x5,0xda,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x6,0x0,0x6a,0x14,0x0,0x0,0xd,0xb7,0x3,0x2,0x2e,0x1,0x1,0x1,0xb7,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x6,0xe2,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0xab,0x1,0x30,0x0,0xb,0xb6,0x3,0x10,0x3,0x1,0x1,0xa6,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x5,0xac,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x0,0x70,0x7,0xfa,0x0,0xb,0xb6,0x2,0x3d,0xf,0x1,0x1,0xd1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x38,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xeb,0x1,0x36,0x0,0xb,0xb6,0x3,0x13,0x7,0x1,0x1,0x53,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x2,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x47,0x0,0x0,0x0,0xb,0xb6,0x2,0x40,0xf,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x0,0x0,0x4,0xff,0xfc,0xfe,0x5f,0x5,0x78,0x5,0xb0,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x23,0x0,0x2b,0x40,0x15,0xd,0xc,0xc,0x3,0x16,0x1d,0x6,0x0,0x2,0x7,0x3,0x2,0x72,0xe,0xf,0xf,0x5,0x5,0x2,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x11,0x33,0x2b,0x32,0x12,0x39,0x39,0x2f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x13,0x1,0x3,0x33,0x1,0x1,0x11,0x21,0x11,0x1,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x2,0xd8,0xfe,0x9d,0xfe,0x87,0x2,0x17,0xef,0xfc,0xfe,0x9c,0x2e,0xf2,0x2,0x1a,0xfe,0x78,0xfd,0x15,0x3,0x4d,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x4,0x7e,0xfb,0x82,0x5,0xb0,0xfa,0x50,0x4,0x7e,0x1,0x32,0xfa,0x50,0x2,0x1f,0xfe,0xf1,0x1,0xf,0xfe,0x1d,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0x0,0x3,0x0,0x2e,0xfe,0x5f,0x4,0x12,0x4,0x4e,0x0,0x1b,0x0,0x3a,0x0,0x50,0x0,0x2b,0x40,0x17,0x1e,0x3a,0x3a,0xf,0x43,0x4a,0xf,0x72,0x27,0x31,0xb,0x72,0x3b,0x3c,0x3c,0x19,0xa,0x72,0x9,0x5,0xf,0x7,0x72,0x0,0x2b,0x32,0x32,0x2b,0x32,0x11,0x33,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x11,0x14,0x16,0x17,0x15,0x21,0x26,0x26,0x13,0x17,0x23,0x22,0xe,0x2,0x15,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x17,0xe,0x3,0x23,0x22,0x26,0x26,0x35,0x34,0x3e,0x2,0x33,0x13,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x2,0x91,0x1a,0x38,0x2f,0x26,0x36,0x1c,0xfe,0xaf,0x43,0x7d,0xaf,0x6c,0x81,0xcb,0x76,0x18,0x16,0xfe,0xae,0x18,0x17,0x29,0x2,0x95,0x2f,0x41,0x27,0x11,0x1d,0x32,0x1f,0x38,0x4f,0x2a,0x4a,0x14,0x33,0x4b,0x6c,0x4d,0x64,0xa7,0x64,0x3d,0x7c,0xc0,0x82,0xf7,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x1,0x10,0x1,0xbe,0x2e,0x42,0x25,0x1a,0x34,0x28,0x4b,0x81,0x60,0x35,0x56,0xab,0x81,0xfe,0x45,0x6a,0x6d,0x29,0x11,0x32,0x91,0x1,0xd2,0xb4,0x1a,0x2d,0x38,0x1f,0x1e,0x2f,0x1a,0x2b,0x3e,0x1b,0x8a,0x28,0x52,0x45,0x2b,0x52,0x93,0x60,0x54,0x84,0x5c,0x30,0xfd,0xa7,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0xb,0x7,0x36,0x6,0x26,0x0,0x27,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xc0,0x1,0x36,0x0,0xb,0xb6,0x1,0x28,0x10,0x1,0x1,0x6d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x3,0xfa,0x6,0x0,0x6,0x26,0x0,0x47,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x25,0x0,0x0,0x0,0xb,0xb6,0x1,0x28,0x14,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0xb,0x7,0x36,0x6,0x26,0x0,0x27,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xb0,0x1,0x36,0x0,0xb,0xb6,0x1,0x2b,0x10,0x1,0x1,0x78,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x3,0xfa,0x6,0x0,0x6,0x26,0x0,0x47,0x0,0x0,0x1,0x6,0x0,0x9e,0x15,0x0,0x0,0xb,0xb6,0x1,0x2b,0x14,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0xb,0x7,0x42,0x6,0x26,0x0,0x27,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0xa2,0x1,0x4d,0x0,0xb,0xb6,0x1,0x31,0x10,0x1,0x1,0x82,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x3,0xfa,0x6,0xc,0x6,0x26,0x0,0x47,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x7,0x0,0x17,0x0,0xb,0xb6,0x1,0x31,0x14,0x1,0x1,0xa1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0xb,0x7,0x37,0x6,0x26,0x0,0x27,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0xc8,0x1,0x36,0x0,0xb,0xb6,0x1,0x2e,0x10,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x3,0xfa,0x6,0x1,0x6,0x26,0x0,0x47,0x0,0x0,0x1,0x6,0x0,0x9f,0x2d,0x0,0x0,0xb,0xb6,0x1,0x2e,0x14,0x1,0x1,0x95,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0x0,0x0,0x4,0xe6,0x7,0x37,0x6,0x26,0x0,0x28,0x0,0x0,0x1,0x7,0x0,0x9f,0xff,0xf6,0x1,0x36,0x0,0xb,0xb6,0x2,0x25,0x1e,0x1,0x1,0x75,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x5,0xa5,0x6,0x1,0x4,0x26,0x0,0x48,0x0,0x0,0x1,0x7,0x1,0xd4,0x4,0x56,0x4,0xe4,0x0,0xb,0xb6,0x3,0x39,0x1,0x1,0x0,0x0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x6,0xe2,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0x74,0x1,0x30,0x0,0xb,0xb6,0x4,0x12,0x7,0x1,0x1,0xb1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x5,0xad,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x0,0x70,0x6,0xfb,0x0,0xb,0xb6,0x1,0x2e,0xb,0x1,0x1,0xd1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x38,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xb4,0x1,0x36,0x0,0xb,0xb6,0x4,0x15,0x7,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x3,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x46,0x0,0x1,0x0,0xb,0xb6,0x1,0x31,0xb,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x42,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x72,0x1,0x4d,0x0,0xb,0xb6,0x4,0x19,0x7,0x1,0x1,0x81,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0xd,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x4,0x0,0x18,0x0,0xb,0xb6,0x1,0x35,0xb,0x1,0x1,0xa1,0x56,0x0,0x2b,0x34,0x0,0x0,0x5,0x0,0x6f,0xfe,0x5f,0x4,0x5c,0x5,0xb0,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x25,0x0,0x29,0x40,0x14,0xa,0xb,0xb,0x18,0x1f,0xe,0xf,0xf,0x7,0x2,0x72,0x10,0x11,0x11,0x3,0x2,0x2,0x6,0x8,0x72,0x0,0x2b,0x32,0x11,0x33,0x32,0x11,0x33,0x2b,0x32,0x11,0x33,0x2f,0x33,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x4,0x59,0xfc,0xf8,0x7d,0xfe,0xa1,0x3,0x86,0xfd,0x5c,0x3,0xb,0xfc,0xf5,0x1,0x8c,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x1,0xe,0xfe,0xf2,0x1,0xe,0x4,0xa2,0xfa,0x50,0x5,0xb0,0xfd,0xbe,0xfe,0xfb,0x1,0x5,0x2,0x42,0xfe,0xf1,0x1,0xf,0xfa,0x8c,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0x0,0x0,0x2,0x0,0x3d,0xfe,0x82,0x4,0x32,0x4,0x4e,0x0,0x2b,0x0,0x41,0x0,0x25,0x40,0x13,0x12,0x13,0x13,0xb,0x34,0x3b,0xe,0x72,0x19,0xb,0x7,0x72,0x2c,0x2d,0x24,0x24,0x0,0xb,0x72,0x0,0x2b,0x32,0x11,0x39,0x39,0x2b,0x32,0x2b,0x32,0x12,0x39,0x2f,0x33,0x30,0x31,0x45,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x15,0x21,0x35,0x21,0x35,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x37,0x17,0xe,0x2,0x27,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x2,0x6b,0x84,0xd0,0x8f,0x4b,0x42,0x82,0xc4,0x82,0x73,0xb6,0x7f,0x43,0xfc,0x8c,0x2,0x2b,0x1,0x27,0x4a,0x35,0x37,0x47,0x27,0x10,0x21,0x3f,0x59,0x39,0x45,0x86,0x30,0x99,0x21,0x79,0xa8,0x1c,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x14,0x53,0x92,0xbe,0x6a,0x26,0x77,0xcb,0x98,0x55,0x4a,0x8a,0xc4,0x7a,0x89,0xd3,0x1a,0x36,0x4c,0x28,0x30,0x53,0x6c,0x3c,0x26,0x3c,0x62,0x45,0x26,0x34,0x3c,0xb6,0x2f,0x58,0x37,0x73,0x3c,0x1b,0x31,0x34,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x37,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0x98,0x1,0x36,0x0,0xb,0xb6,0x4,0x16,0x7,0x1,0x1,0x75,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x2,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x0,0x9f,0x2a,0x1,0x0,0xb,0xb6,0x1,0x32,0xb,0x1,0x1,0x95,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x52,0xff,0xec,0x5,0x16,0x7,0x36,0x6,0x26,0x0,0x2b,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xc2,0x1,0x36,0x0,0xb,0xb6,0x1,0x2f,0x10,0x1,0x1,0x78,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x38,0xfe,0x56,0x4,0x39,0x6,0x0,0x6,0x26,0x0,0x4b,0x0,0x0,0x1,0x6,0x0,0x9e,0x26,0x0,0x0,0xb,0xb6,0x3,0x42,0x1a,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x52,0xff,0xec,0x5,0x16,0x7,0x38,0x6,0x26,0x0,0x2b,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xf6,0x1,0x36,0x0,0xb,0xb6,0x1,0x31,0x10,0x1,0x1,0x5f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x38,0xfe,0x56,0x4,0x39,0x6,0x2,0x6,0x26,0x0,0x4b,0x0,0x0,0x1,0x6,0x0,0xa1,0x5a,0x0,0x0,0xb,0xb6,0x3,0x44,0x1a,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x52,0xff,0xec,0x5,0x16,0x7,0x42,0x6,0x26,0x0,0x2b,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0xb4,0x1,0x4d,0x0,0xb,0xb6,0x1,0x35,0x10,0x1,0x1,0x82,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x38,0xfe,0x56,0x4,0x39,0x6,0xc,0x4,0x26,0x0,0x4b,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x18,0x0,0x17,0x0,0xb,0xb6,0x3,0x48,0x1a,0x1,0x1,0xa1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x52,0xfd,0xfc,0x5,0x16,0x5,0xc5,0x6,0x26,0x0,0x2b,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xfa,0xfe,0x8e,0x0,0xe,0xb4,0x1,0x35,0x5,0x1,0x1,0xb8,0xff,0x98,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x38,0xfe,0x56,0x4,0x39,0x6,0xc2,0x4,0x26,0x0,0x4b,0x0,0x0,0x1,0x7,0x2,0x4e,0x1,0x38,0x0,0xbb,0x0,0xb,0xb6,0x3,0x3f,0x1a,0x1,0x1,0x98,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x30,0x7,0x36,0x6,0x26,0x0,0x2c,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xd4,0x1,0x36,0x0,0xb,0xb6,0x3,0xf,0xb,0x1,0x1,0x77,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x58,0x0,0x0,0x4,0x28,0x7,0x93,0x6,0x26,0x0,0x4c,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x14,0x1,0x93,0x0,0xb,0xb6,0x2,0x1e,0x3,0x1,0x1,0x26,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xb0,0x0,0x0,0x2,0xb6,0x7,0x38,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0xa5,0xff,0x40,0x1,0x31,0x0,0xb,0xb6,0x1,0x12,0x3,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xa1,0x0,0x0,0x2,0xa7,0x5,0xed,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0xa5,0xff,0x31,0xff,0xe6,0x0,0xb,0xb6,0x1,0x12,0x3,0x1,0x1,0xa8,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xd9,0x0,0x0,0x2,0x8f,0x6,0xe2,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x70,0xff,0x24,0x1,0x30,0x0,0xb,0xb6,0x1,0x6,0x3,0x1,0x1,0xb1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xca,0x0,0x0,0x2,0x80,0x5,0x97,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0x70,0xff,0x15,0xff,0xe5,0x0,0xb,0xb6,0x1,0x6,0x3,0x1,0x1,0xe3,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xc2,0x0,0x0,0x2,0xa7,0x7,0x38,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0xa1,0xff,0x64,0x1,0x36,0x0,0xb,0xb6,0x1,0x9,0x3,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xb3,0x0,0x0,0x2,0x98,0x5,0xed,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0xa1,0xff,0x55,0xff,0xeb,0x0,0xb,0xb6,0x1,0x9,0x3,0x1,0x1,0x90,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x19,0xfe,0x5f,0x1,0xe4,0x5,0xb0,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x6,0x0,0xa4,0xff,0x0,0x0,0xb,0xb6,0x1,0x5,0x2,0x0,0x0,0x0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x8,0xfe,0x5f,0x1,0xd3,0x5,0xf5,0x6,0x26,0x0,0x4d,0x0,0x0,0x1,0x6,0x0,0xa4,0xee,0x0,0x0,0xb,0xb6,0x2,0x11,0x2,0x0,0x0,0x0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x1,0xe4,0x7,0x42,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0xa2,0x0,0x22,0x1,0x4d,0x0,0xb,0xb6,0x1,0xd,0x3,0x1,0x1,0x81,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x86,0xff,0xec,0x6,0x7b,0x5,0xb0,0x4,0x26,0x0,0x2d,0x0,0x0,0x0,0x7,0x0,0x2e,0x2,0x6b,0x0,0x0,0xff,0xff,0x0,0x5d,0xfe,0x4b,0x4,0x8,0x5,0xf5,0x4,0x26,0x0,0x4d,0x0,0x0,0x0,0x7,0x0,0x4e,0x2,0x33,0x0,0x0,0xff,0xff,0x0,0x25,0xff,0xec,0x5,0x5,0x7,0x36,0x6,0x26,0x0,0x2e,0x0,0x0,0x1,0x7,0x0,0x9e,0x1,0x58,0x1,0x36,0x0,0xb,0xb6,0x1,0x17,0x1,0x1,0x1,0x6a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x71,0xfe,0x4b,0x2,0xbc,0x5,0xeb,0x6,0x26,0x0,0x9c,0x0,0x0,0x1,0x7,0x0,0x9e,0xff,0xf,0xff,0xeb,0x0,0xb,0xb6,0x1,0x15,0x0,0x1,0x1,0x82,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x31,0x5,0x33,0x5,0xb0,0x4,0x26,0x0,0x2f,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xaa,0xfe,0xc3,0x0,0xe,0xb4,0x3,0x17,0x2,0x1,0x0,0xb8,0xff,0xe7,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x62,0xfe,0x1b,0x4,0x80,0x6,0x1,0x6,0x26,0x0,0x4f,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x6a,0xfe,0xad,0x0,0xe,0xb4,0x3,0x17,0x2,0x1,0x1,0xb8,0xff,0xd4,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x31,0x7,0x36,0x6,0x26,0x0,0x30,0x0,0x0,0x1,0x7,0x0,0x75,0x0,0x35,0x1,0x36,0x0,0xb,0xb6,0x2,0x8,0x7,0x1,0x1,0x5c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x71,0x0,0x0,0x2,0xa9,0x7,0x83,0x6,0x26,0x0,0x50,0x0,0x0,0x1,0x7,0x0,0x75,0x0,0x25,0x1,0x83,0x0,0xb,0xb6,0x1,0x4,0x3,0x1,0x1,0x71,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x6,0x4,0x31,0x5,0xb0,0x4,0x26,0x0,0x30,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x74,0xfe,0x98,0x0,0xe,0xb4,0x2,0x11,0x2,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x5f,0xfe,0x6,0x1,0xc3,0x6,0x0,0x4,0x26,0x0,0x50,0x0,0x0,0x1,0x7,0x1,0xd4,0x0,0x3d,0xfe,0x98,0x0,0xe,0xb4,0x1,0xd,0x2,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x31,0x5,0xb1,0x6,0x26,0x0,0x30,0x0,0x0,0x1,0x7,0x1,0xd4,0x2,0x67,0x4,0x94,0x0,0xb,0xb6,0x2,0x11,0x7,0x0,0x0,0x1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x71,0x0,0x0,0x3,0x39,0x6,0x1,0x4,0x26,0x0,0x50,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xea,0x4,0xe4,0x0,0xb,0xb6,0x1,0xd,0x3,0x0,0x0,0x2,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x31,0x5,0xb0,0x6,0x26,0x0,0x30,0x0,0x0,0x0,0x7,0x0,0xa2,0x1,0xea,0xfd,0xe5,0xff,0xff,0x0,0x71,0x0,0x0,0x3,0x69,0x6,0x0,0x4,0x26,0x0,0x50,0x0,0x0,0x0,0x7,0x0,0xa2,0x1,0xb2,0xfd,0xa0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x2f,0x7,0x36,0x6,0x26,0x0,0x32,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xe2,0x1,0x36,0x0,0xb,0xb6,0x1,0xa,0x6,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x28,0x6,0x0,0x6,0x26,0x0,0x52,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x4e,0x0,0x0,0x0,0xb,0xb6,0x2,0x1c,0x3,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfd,0xfc,0x5,0x2f,0x5,0xb0,0x4,0x26,0x0,0x32,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xfb,0xfe,0x8e,0x0,0xe,0xb4,0x1,0x13,0x5,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x59,0xfe,0x6,0x4,0x28,0x4,0x4e,0x4,0x26,0x0,0x52,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x67,0xfe,0x98,0x0,0xe,0xb4,0x2,0x25,0x2,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x2f,0x7,0x37,0x6,0x26,0x0,0x32,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0xea,0x1,0x36,0x0,0xb,0xb6,0x1,0x10,0x9,0x1,0x1,0x6a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x28,0x6,0x1,0x6,0x26,0x0,0x52,0x0,0x0,0x1,0x6,0x0,0x9f,0x56,0x0,0x0,0xb,0xb6,0x2,0x22,0x3,0x1,0x1,0xa9,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x7b,0x0,0x0,0x4,0x28,0x5,0xff,0x6,0x26,0x0,0x52,0x0,0x0,0x1,0x7,0x1,0xd4,0xff,0x59,0x4,0xe2,0x0,0xb,0xb6,0x2,0x20,0x3,0x1,0x1,0x3a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x6,0xe2,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0xb0,0x1,0x30,0x0,0xb,0xb6,0x2,0x2e,0x11,0x1,0x1,0x94,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x5,0xac,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x0,0x70,0x30,0xfa,0x0,0xb,0xb6,0x2,0x2e,0x6,0x1,0x1,0xd1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x38,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xf0,0x1,0x36,0x0,0xb,0xb6,0x2,0x31,0x11,0x1,0x1,0x41,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x2,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x70,0x0,0x0,0x0,0xb,0xb6,0x2,0x31,0x6,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x35,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0xa6,0x1,0x4c,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x2c,0x11,0x1,0x1,0x45,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x71,0x5,0xff,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0xa6,0x0,0xcc,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x2c,0x6,0x1,0x1,0x82,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x4,0x7,0x36,0x6,0x26,0x0,0x36,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x5c,0x1,0x36,0x0,0xb,0xb6,0x2,0x1e,0x0,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x62,0x0,0x0,0x3,0x2d,0x6,0x0,0x6,0x26,0x0,0x56,0x0,0x0,0x1,0x7,0x0,0x75,0x0,0xa9,0x0,0x0,0x0,0xb,0xb6,0x2,0x17,0x3,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x6,0x5,0x4,0x5,0xb0,0x4,0x26,0x0,0x36,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x89,0xfe,0x98,0x0,0xe,0xb4,0x2,0x27,0x18,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x50,0xfe,0x6,0x2,0xf3,0x4,0x4e,0x4,0x26,0x0,0x56,0x0,0x0,0x1,0x7,0x1,0xd4,0x0,0x2e,0xfe,0x98,0x0,0xe,0xb4,0x2,0x20,0x2,0x1,0x1,0xb8,0xff,0x98,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x4,0x7,0x37,0x6,0x26,0x0,0x36,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0x64,0x1,0x36,0x0,0xb,0xb6,0x2,0x24,0x0,0x1,0x1,0x6a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xe9,0x0,0x0,0x3,0x4f,0x6,0x1,0x6,0x26,0x0,0x56,0x0,0x0,0x1,0x6,0x0,0x9f,0xb1,0x0,0x0,0xb,0xb6,0x2,0x1d,0x3,0x1,0x1,0xa9,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x40,0xff,0xec,0x4,0xbc,0x7,0x36,0x6,0x26,0x0,0x37,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xa3,0x1,0x36,0x0,0xb,0xb6,0x1,0x3a,0xf,0x1,0x1,0x4f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x24,0xff,0xec,0x3,0xdc,0x6,0x0,0x6,0x26,0x0,0x57,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x8,0x0,0x0,0x0,0xb,0xb6,0x1,0x36,0xe,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x40,0xff,0xec,0x4,0xbc,0x7,0x36,0x6,0x26,0x0,0x37,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x93,0x1,0x36,0x0,0xb,0xb6,0x1,0x3d,0xf,0x1,0x1,0x5a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x24,0xff,0xec,0x3,0xdc,0x6,0x0,0x6,0x26,0x0,0x57,0x0,0x0,0x1,0x6,0x0,0x9e,0xf8,0x0,0x0,0xb,0xb6,0x1,0x39,0xe,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x40,0xfe,0x28,0x4,0xbc,0x5,0xc4,0x6,0x26,0x0,0x37,0x0,0x0,0x1,0x7,0x0,0x79,0x1,0xa3,0x0,0x0,0x0,0xb,0xb6,0x1,0x3a,0x2b,0x0,0x0,0x13,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x24,0xfe,0x1e,0x3,0xdc,0x4,0x4e,0x6,0x26,0x0,0x57,0x0,0x0,0x1,0x7,0x0,0x79,0x1,0x9,0xff,0xf6,0x0,0xb,0xb6,0x1,0x36,0x29,0x0,0x0,0xa,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x40,0xfd,0xfc,0x4,0xbc,0x5,0xc4,0x6,0x26,0x0,0x37,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xba,0xfe,0x8e,0x0,0xe,0xb4,0x1,0x43,0x2b,0x1,0x1,0xb8,0xff,0xa0,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x24,0xfd,0xf2,0x3,0xdc,0x4,0x4e,0x6,0x26,0x0,0x57,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x20,0xfe,0x84,0x0,0xe,0xb4,0x1,0x3f,0x29,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x40,0xff,0xec,0x4,0xbc,0x7,0x37,0x6,0x26,0x0,0x37,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0xab,0x1,0x36,0x0,0xb,0xb6,0x1,0x40,0xf,0x1,0x1,0x58,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x24,0xff,0xec,0x3,0xdc,0x6,0x1,0x6,0x26,0x0,0x57,0x0,0x0,0x1,0x6,0x0,0x9f,0x10,0x0,0x0,0xb,0xb6,0x1,0x3c,0xe,0x1,0x1,0x95,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x25,0xfe,0x6,0x4,0xe6,0x5,0xb0,0x6,0x26,0x0,0x38,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xa1,0xfe,0x98,0x0,0xe,0xb4,0x2,0x11,0x2,0x1,0x1,0xb8,0xff,0x8d,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0xd,0xfd,0xfc,0x2,0xa9,0x5,0x47,0x6,0x26,0x0,0x58,0x0,0x0,0x1,0x7,0x1,0xd4,0x0,0xc9,0xfe,0x8e,0x0,0xe,0xb4,0x2,0x1f,0x11,0x1,0x1,0xb8,0xff,0xa1,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x25,0xfe,0x32,0x4,0xe6,0x5,0xb0,0x6,0x26,0x0,0x38,0x0,0x0,0x1,0x7,0x0,0x79,0x1,0x8a,0x0,0xa,0x0,0xb,0xb6,0x2,0x8,0x2,0x1,0x0,0x0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0xd,0xfe,0x28,0x2,0xb3,0x5,0x47,0x6,0x26,0x0,0x58,0x0,0x0,0x1,0x7,0x0,0x79,0x0,0xb2,0x0,0x0,0x0,0xb,0xb6,0x2,0x16,0x11,0x0,0x0,0x14,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x25,0x0,0x0,0x4,0xe6,0x7,0x37,0x6,0x26,0x0,0x38,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0x91,0x1,0x36,0x0,0xb,0xb6,0x2,0xe,0x3,0x1,0x1,0x69,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0xd,0xff,0xec,0x3,0x7e,0x6,0x85,0x4,0x26,0x0,0x58,0x0,0x0,0x1,0x7,0x1,0xd4,0x2,0x2f,0x5,0x68,0x0,0xe,0xb4,0x2,0x1a,0x4,0x1,0x0,0xb8,0xff,0xa8,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x38,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xae,0x1,0x31,0x0,0xb,0xb6,0x1,0x24,0xb,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x2,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x6,0x0,0xa5,0x4c,0xfb,0x0,0xb,0xb6,0x2,0x2a,0x11,0x1,0x1,0xaa,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x6,0xe2,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0x92,0x1,0x30,0x0,0xb,0xb6,0x1,0x18,0xb,0x1,0x1,0xa6,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x5,0xac,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x6,0x0,0x70,0x30,0xfa,0x0,0xb,0xb6,0x2,0x1e,0x11,0x1,0x1,0xe5,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x38,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xd2,0x1,0x36,0x0,0xb,0xb6,0x1,0x1b,0x0,0x1,0x1,0x53,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x2,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x70,0x0,0x0,0x0,0xb,0xb6,0x2,0x21,0x11,0x1,0x1,0x92,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x8c,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xa3,0x1,0x4d,0x1,0xb3,0x0,0xd,0xb7,0x2,0x1,0x21,0x0,0x1,0x1,0x47,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x56,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0xa3,0x0,0xeb,0x0,0x7d,0x0,0xd,0xb7,0x3,0x2,0x27,0x11,0x1,0x1,0x86,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0x35,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xa6,0x1,0x2e,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x16,0x0,0x1,0x1,0x57,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x71,0x5,0xff,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0xa6,0x0,0xcc,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x1c,0x11,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x34,0x0,0x0,0x2,0x0,0x6a,0xfe,0xab,0x4,0xe4,0x5,0xb0,0x0,0x15,0x0,0x2b,0x0,0x1b,0x40,0xd,0x1e,0x25,0x1,0xb,0x2,0x72,0x17,0x16,0x11,0x11,0x6,0x9,0x72,0x0,0x2b,0x32,0x12,0x39,0x39,0x2b,0x32,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x4,0x23,0x22,0x24,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x3,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x3,0x85,0x1,0x5f,0x8e,0xff,0x0,0xad,0xab,0xfe,0xfd,0x91,0x1,0x60,0x34,0x64,0x47,0x48,0x62,0x32,0x24,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x5,0xb0,0xfc,0x49,0xaa,0xeb,0x78,0x78,0xeb,0xaa,0x3,0xb7,0xfc,0x49,0x5a,0x71,0x34,0x34,0x71,0x5a,0xfe,0x8f,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0x0,0x0,0x3,0x0,0x59,0xfe,0x5f,0x4,0x29,0x4,0x3a,0x0,0x4,0x0,0x1b,0x0,0x31,0x0,0x21,0x40,0x11,0x24,0x2b,0xf,0x72,0x1,0x11,0x6,0x72,0x1c,0x1d,0x1d,0x4,0x4,0x18,0xb,0xb,0x72,0x0,0x2b,0x32,0x32,0x11,0x33,0x11,0x33,0x2b,0x32,0x2b,0x32,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x13,0x37,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x11,0x21,0x11,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x13,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x2,0xd7,0x1,0x52,0xfe,0xc4,0xa,0x58,0x34,0x65,0x93,0x60,0x50,0x85,0x60,0x35,0x1,0x51,0x12,0x22,0x33,0x21,0x4c,0x56,0x23,0x4e,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x1,0x7,0x3,0x33,0xfb,0xc6,0x1,0xe3,0x2,0x6d,0xb9,0x88,0x4b,0x2d,0x61,0x99,0x6b,0x2,0xbc,0xfd,0x42,0x24,0x34,0x23,0x11,0x40,0x6e,0xfe,0x9e,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0xff,0xff,0x0,0x16,0x0,0x0,0x6,0xd9,0x7,0x36,0x6,0x26,0x0,0x3b,0x0,0x0,0x1,0x7,0x0,0x9e,0x1,0x79,0x1,0x36,0x0,0xb,0xb6,0x4,0x19,0x15,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xb5,0x6,0x0,0x6,0x26,0x0,0x5b,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xe3,0x0,0x0,0x0,0xb,0xb6,0x4,0x19,0x15,0x1,0x1,0xab,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0x36,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x80,0x1,0x36,0x0,0xb,0xb6,0x1,0xc,0x2,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x6,0x0,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x6,0x0,0x9e,0xc,0x0,0x0,0xb,0xb6,0x2,0x1c,0x1,0x1,0x1,0xab,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0x10,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x88,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x1e,0x2,0x1,0x1,0x77,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3e,0x0,0x0,0x4,0xb1,0x7,0x36,0x6,0x26,0x0,0x3e,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x88,0x1,0x36,0x0,0xb,0xb6,0x3,0xe,0xd,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x43,0x0,0x0,0x3,0xd9,0x6,0x0,0x6,0x26,0x0,0x5e,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x1a,0x0,0x0,0x0,0xb,0xb6,0x3,0xe,0xd,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3e,0x0,0x0,0x4,0xb1,0x7,0x42,0x6,0x26,0x0,0x3e,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x6a,0x1,0x4d,0x0,0xb,0xb6,0x3,0x17,0x8,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x43,0x0,0x0,0x3,0xd9,0x6,0xc,0x6,0x26,0x0,0x5e,0x0,0x0,0x1,0x7,0x0,0xa2,0x0,0xfc,0x0,0x17,0x0,0xb,0xb6,0x3,0x17,0x8,0x1,0x1,0xb5,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3e,0x0,0x0,0x4,0xb1,0x7,0x37,0x6,0x26,0x0,0x3e,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0x90,0x1,0x36,0x0,0xb,0xb6,0x3,0x14,0x8,0x1,0x1,0x6a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x43,0x0,0x0,0x3,0xd9,0x6,0x1,0x6,0x26,0x0,0x5e,0x0,0x0,0x1,0x6,0x0,0x9f,0x22,0x0,0x0,0xb,0xb6,0x3,0x14,0x8,0x1,0x1,0xa9,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x10,0x0,0x0,0x7,0x3c,0x7,0x42,0x6,0x26,0x0,0x81,0x0,0x0,0x1,0x7,0x0,0x75,0x2,0xb2,0x1,0x42,0x0,0xb,0xb6,0x6,0x19,0x3,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x6,0x96,0x6,0x1,0x6,0x26,0x0,0x86,0x0,0x0,0x1,0x7,0x0,0x75,0x2,0x6c,0x0,0x1,0x0,0xb,0xb6,0x3,0x5f,0xf,0x1,0x1,0x8d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xff,0xa1,0x5,0x4b,0x7,0x80,0x6,0x26,0x0,0x83,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xd8,0x1,0x80,0x0,0xb,0xb6,0x3,0x34,0x16,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0x6f,0x4,0x49,0x5,0xfa,0x6,0x26,0x0,0x89,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x27,0xff,0xfa,0x0,0xb,0xb6,0x3,0x30,0xa,0x1,0x1,0x8b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x7d,0x0,0x0,0x4,0x3e,0x4,0x8d,0x6,0x26,0x2,0x4a,0x0,0x0,0x0,0x7,0x2,0x40,0xfe,0xf3,0xff,0x58,0xff,0xff,0xff,0x7d,0x0,0x0,0x4,0x3e,0x4,0x8d,0x6,0x26,0x2,0x4a,0x0,0x0,0x0,0x7,0x2,0x40,0xfe,0xf3,0xff,0x58,0xff,0xff,0x0,0x1d,0x0,0x0,0x4,0x4a,0x4,0x8d,0x6,0x26,0x1,0xf2,0x0,0x0,0x0,0x7,0x2,0x40,0x0,0x11,0xff,0x7a,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0x1e,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x9d,0x0,0x1e,0x0,0xb,0xb6,0x3,0x10,0x7,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0x1e,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x6b,0x0,0x1e,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0x1e,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x6,0x0,0x9e,0x5b,0x1e,0x0,0xb,0xb6,0x3,0x13,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0x20,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x6,0x0,0xa5,0x6b,0x19,0x0,0xb,0xb6,0x3,0x1b,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x5,0xf8,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x63,0x0,0x1e,0x0,0xd,0xb7,0x4,0x3,0x17,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0x74,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x7,0x0,0xa3,0x1,0xa,0x0,0x9b,0x0,0xd,0xb7,0x4,0x3,0x19,0x3,0x1,0x1,0x51,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0xcb,0x6,0x26,0x2,0x4d,0x0,0x0,0x0,0x7,0x2,0x41,0x0,0xf9,0xff,0xeb,0xff,0xff,0x0,0x30,0xfe,0x2d,0x4,0x62,0x4,0x9e,0x6,0x26,0x2,0x4b,0x0,0x0,0x0,0x7,0x0,0x79,0x1,0x5f,0x0,0x5,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x6,0x1e,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x70,0x0,0x1e,0x0,0xb,0xb6,0x4,0x12,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x6,0x1e,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x3e,0x0,0x1e,0x0,0xb,0xb6,0x4,0x10,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xdb,0x6,0x1e,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x6,0x0,0x9e,0x2e,0x1e,0x0,0xb,0xb6,0x4,0x16,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xca,0x5,0xf8,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x6,0x0,0x6a,0x36,0x1e,0x0,0xd,0xb7,0x5,0x4,0x19,0x7,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x87,0x0,0x0,0x1,0xba,0x6,0x1e,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0x44,0xff,0x50,0x0,0x1e,0x0,0xb,0xb6,0x1,0x6,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x68,0x0,0x0,0x2,0xa2,0x6,0x1e,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x6,0x0,0x75,0x1e,0x1e,0x0,0xb,0xb6,0x1,0x4,0x3,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x70,0x0,0x0,0x2,0xbb,0x6,0x1e,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0x9e,0xff,0xe,0x0,0x1e,0x0,0xb,0xb6,0x1,0x9,0x3,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x75,0x0,0x0,0x2,0xaa,0x5,0xf8,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x16,0x0,0x1e,0x0,0xd,0xb7,0x2,0x1,0xd,0x3,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7e,0x6,0x20,0x6,0x26,0x1,0xf8,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0x7c,0x0,0x19,0x0,0xb,0xb6,0x1,0x18,0x6,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x6,0x1e,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x99,0x0,0x1e,0x0,0xb,0xb6,0x2,0x2e,0x11,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x6,0x1e,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x67,0x0,0x1e,0x0,0xb,0xb6,0x2,0x2c,0x11,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x6,0x1e,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x57,0x0,0x1e,0x0,0xb,0xb6,0x2,0x31,0x11,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x6,0x20,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0x67,0x0,0x19,0x0,0xb,0xb6,0x2,0x31,0x11,0x1,0x1,0x6f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x5,0xf8,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x5f,0x0,0x1e,0x0,0xd,0xb7,0x3,0x2,0x35,0x11,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x6,0x1e,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x84,0x0,0x1e,0x0,0xb,0xb6,0x1,0x18,0xb,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x6,0x1e,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x52,0x0,0x1e,0x0,0xb,0xb6,0x1,0x16,0xb,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x6,0x1e,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x6,0x0,0x9e,0x42,0x1e,0x0,0xb,0xb6,0x1,0x1b,0xb,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x5,0xf8,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x4a,0x0,0x1e,0x0,0xd,0xb7,0x2,0x1,0x1f,0xb,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x6,0x1e,0x6,0x26,0x1,0xed,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x2b,0x0,0x1e,0x0,0xb,0xb6,0x3,0xe,0x9,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x5,0xca,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x6,0x0,0x70,0x4f,0x18,0x0,0xb,0xb6,0x3,0x10,0x3,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x6,0x20,0x6,0x26,0x2,0x4d,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x8f,0x0,0x1e,0x0,0xb,0xb6,0x3,0x13,0x3,0x1,0x1,0x5d,0x56,0x0,0x2b,0x34,0x0,0x0,0x4,0xff,0xf3,0xfe,0x5f,0x4,0xc7,0x4,0x8d,0x0,0x4,0x0,0x9,0x0,0xd,0x0,0x23,0x0,0x21,0x40,0xf,0xd,0xc,0xc,0x3,0x16,0x1d,0x8,0x3,0x7d,0xf,0xe,0x5,0x5,0x1,0x12,0x0,0x3f,0x33,0x11,0x33,0x33,0x3f,0x33,0x2f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x1,0x21,0x1,0x33,0x13,0x1,0x3,0x33,0x1,0x1,0x15,0x21,0x35,0x1,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x2,0x54,0xfe,0xf3,0xfe,0xac,0x1,0xc4,0xea,0xd3,0xfe,0xe9,0x4f,0xee,0x1,0xcb,0xfe,0xb1,0xfd,0x93,0x2,0xb7,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x3,0x1c,0xfc,0xe4,0x4,0x8d,0xfb,0x73,0x3,0x1a,0x1,0x73,0xfb,0x73,0x1,0xb2,0xe6,0xe6,0xfe,0x8a,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x62,0x6,0x1e,0x6,0x26,0x2,0x4b,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x63,0x0,0x1e,0x0,0xb,0xb6,0x1,0x28,0x10,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x62,0x6,0x1e,0x6,0x26,0x2,0x4b,0x0,0x0,0x1,0x6,0x0,0x9e,0x53,0x1e,0x0,0xb,0xb6,0x1,0x2d,0x10,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x62,0x6,0x2a,0x6,0x26,0x2,0x4b,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x45,0x0,0x35,0x0,0xb,0xb6,0x1,0x31,0x10,0x1,0x1,0x70,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x62,0x6,0x1f,0x6,0x26,0x2,0x4b,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0x6b,0x0,0x1e,0x0,0xb,0xb6,0x1,0x2e,0x10,0x1,0x1,0x64,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xbe,0x0,0x0,0x4,0x3e,0x6,0x1f,0x6,0x26,0x2,0x4a,0x0,0x0,0x1,0x6,0x0,0x9f,0x86,0x1e,0x0,0xb,0xb6,0x2,0x24,0x1d,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x5,0xca,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x6,0x0,0x70,0x22,0x18,0x0,0xb,0xb6,0x4,0x12,0x7,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x6,0x20,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x6,0x0,0xa1,0x62,0x1e,0x0,0xb,0xb6,0x4,0x15,0x7,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x6,0x2a,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x20,0x0,0x35,0x0,0xb,0xb6,0x4,0x19,0x7,0x1,0x1,0x80,0x56,0x0,0x2b,0x34,0x0,0x0,0x5,0x0,0x51,0xfe,0x5f,0x3,0xc7,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x25,0x0,0x23,0x40,0x10,0x18,0x1f,0xb,0xa,0xa,0x6,0xf,0xe,0x7,0x7d,0x11,0x10,0x10,0x5,0x6,0x12,0x0,0x3f,0x33,0x33,0x11,0x33,0x3f,0x33,0x33,0x12,0x39,0x2f,0x33,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x1,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x3,0xc2,0xfd,0x60,0x81,0xfe,0xae,0x3,0x1c,0xfd,0xb5,0x2,0xa5,0xfd,0x5b,0x1,0x42,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x1,0x3,0xfe,0xfd,0x1,0x3,0x3,0x8a,0xfb,0x73,0x4,0x8d,0xfe,0x4f,0xfe,0xfc,0x1,0x4,0x1,0xb1,0xfe,0xfc,0x1,0x4,0xfb,0xaf,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xe4,0x6,0x1f,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x6,0x0,0x9f,0x46,0x1e,0x0,0xb,0xb6,0x4,0x16,0x7,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3e,0xff,0xf0,0x4,0x6e,0x6,0x1e,0x6,0x26,0x1,0xff,0x0,0x0,0x1,0x6,0x0,0x9e,0x6c,0x1e,0x0,0xb,0xb6,0x1,0x30,0x10,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3e,0xff,0xf0,0x4,0x6e,0x6,0x20,0x6,0x26,0x1,0xff,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xa0,0x0,0x1e,0x0,0xb,0xb6,0x1,0x30,0x10,0x1,0x1,0x4d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3e,0xff,0xf0,0x4,0x6e,0x6,0x2a,0x6,0x26,0x1,0xff,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x5e,0x0,0x35,0x0,0xb,0xb6,0x1,0x34,0x10,0x1,0x1,0x70,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3e,0xfe,0x1,0x4,0x6e,0x4,0x9e,0x6,0x26,0x1,0xff,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0xb0,0xfe,0x93,0x0,0xe,0xb4,0x1,0x34,0x5,0x1,0x1,0xb8,0xff,0x99,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7f,0x6,0x1e,0x6,0x26,0x1,0xfe,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0x5d,0x0,0x1e,0x0,0xb,0xb6,0x3,0x11,0x7,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x8e,0x0,0x0,0x2,0x94,0x6,0x20,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0xa5,0xff,0x1e,0x0,0x19,0x0,0xb,0xb6,0x1,0x9,0x3,0x1,0x1,0x7f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xb7,0x0,0x0,0x2,0x6d,0x5,0xca,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0x70,0xff,0x2,0x0,0x18,0x0,0xb,0xb6,0x1,0x6,0x3,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xa0,0x0,0x0,0x2,0x85,0x6,0x20,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0xa1,0xff,0x42,0x0,0x1e,0x0,0xb,0xb6,0x1,0x9,0x3,0x1,0x1,0x5d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x37,0xfe,0x5f,0x1,0xd0,0x4,0x8d,0x6,0x26,0x1,0xfd,0x0,0x0,0x0,0x6,0x0,0xa4,0x1d,0x0,0xff,0xff,0x0,0x68,0x0,0x0,0x1,0xba,0x6,0x2a,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x6,0x0,0xa2,0x0,0x35,0x0,0xb,0xb6,0x1,0xd,0x3,0x1,0x1,0x80,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x1d,0xff,0xf0,0x4,0x91,0x6,0x1e,0x6,0x26,0x1,0xfc,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xe4,0x0,0x1e,0x0,0xb,0xb6,0x1,0x19,0x1,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xfe,0x5,0x4,0x83,0x4,0x8d,0x6,0x26,0x1,0xfb,0x0,0x0,0x0,0x7,0x1,0xd4,0x1,0x13,0xfe,0x97,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0x9e,0x6,0x1e,0x6,0x26,0x1,0xfa,0x0,0x0,0x1,0x6,0x0,0x75,0x15,0x1e,0x0,0xb,0xb6,0x2,0x8,0x7,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xfe,0x4,0x3,0x9e,0x4,0x8d,0x6,0x26,0x1,0xfa,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x17,0xfe,0x96,0x0,0xe,0xb4,0x2,0x11,0x6,0x1,0x1,0xb8,0xff,0x95,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0x9e,0x4,0x92,0x6,0x26,0x1,0xfa,0x0,0x0,0x0,0x7,0x1,0xd4,0x1,0xb4,0x3,0x75,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0x9e,0x4,0x8d,0x6,0x26,0x1,0xfa,0x0,0x0,0x0,0x7,0x0,0xa2,0x1,0x8e,0xfd,0x57,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7e,0x6,0x1e,0x6,0x26,0x1,0xf8,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x7c,0x0,0x1e,0x0,0xb,0xb6,0x1,0xa,0x6,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xfd,0xf7,0x4,0x7e,0x4,0x8d,0x6,0x26,0x1,0xf8,0x0,0x0,0x0,0x7,0x1,0xd4,0x1,0x98,0xfe,0x89,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7e,0x6,0x1f,0x6,0x26,0x1,0xf8,0x0,0x0,0x1,0x7,0x0,0x9f,0x0,0x84,0x0,0x1e,0x0,0xb,0xb6,0x1,0x10,0x6,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x5,0xca,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0x4b,0x0,0x18,0x0,0xb,0xb6,0x2,0x2e,0x11,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x6,0x20,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x8b,0x0,0x1e,0x0,0xb,0xb6,0x2,0x31,0x11,0x1,0x1,0x4d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x6,0x1d,0x6,0x26,0x1,0xf7,0x0,0x0,0x1,0x7,0x0,0xa6,0x0,0xe7,0x0,0x1e,0x0,0xd,0xb7,0x3,0x2,0x30,0x11,0x1,0x1,0x51,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x5f,0x6,0x1e,0x6,0x26,0x1,0xf4,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x3,0x0,0x1e,0x0,0xb,0xb6,0x2,0x1f,0x0,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xfe,0x4,0x4,0x5f,0x4,0x8d,0x6,0x26,0x1,0xf4,0x0,0x0,0x0,0x7,0x1,0xd4,0x1,0x33,0xfe,0x96,0xff,0xff,0x0,0x43,0x0,0x0,0x4,0x5f,0x6,0x1f,0x6,0x26,0x1,0xf4,0x0,0x0,0x1,0x6,0x0,0x9f,0xb,0x1e,0x0,0xb,0xb6,0x2,0x25,0x0,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x37,0xff,0xf0,0x4,0x15,0x6,0x1e,0x6,0x26,0x1,0xf3,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x56,0x0,0x1e,0x0,0xb,0xb6,0x1,0x3a,0xf,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x37,0xff,0xf0,0x4,0x15,0x6,0x1e,0x6,0x26,0x1,0xf3,0x0,0x0,0x1,0x6,0x0,0x9e,0x46,0x1e,0x0,0xb,0xb6,0x1,0x3f,0xf,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x37,0xfe,0x28,0x4,0x15,0x4,0x9d,0x6,0x26,0x1,0xf3,0x0,0x0,0x0,0x7,0x0,0x79,0x1,0x4f,0x0,0x0,0xff,0xff,0x0,0x37,0xff,0xf0,0x4,0x15,0x6,0x1f,0x6,0x26,0x1,0xf3,0x0,0x0,0x1,0x6,0x0,0x9f,0x5d,0x1e,0x0,0xb,0xb6,0x1,0x40,0xf,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x1d,0xfe,0x9,0x4,0x4a,0x4,0x8d,0x6,0x26,0x1,0xf2,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x4f,0xfe,0x9b,0x0,0xe,0xb4,0x2,0x11,0x2,0x1,0x1,0xb8,0xff,0x90,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x1d,0x0,0x0,0x4,0x4a,0x6,0x1f,0x6,0x26,0x1,0xf2,0x0,0x0,0x1,0x6,0x0,0x9f,0x40,0x1e,0x0,0xb,0xb6,0x2,0xe,0x7,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x1d,0xfe,0x35,0x4,0x4a,0x4,0x8d,0x6,0x26,0x1,0xf2,0x0,0x0,0x0,0x7,0x0,0x79,0x1,0x38,0x0,0xd,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x6,0x20,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x6,0x0,0xa5,0x52,0x19,0x0,0xb,0xb6,0x1,0x1b,0xb,0x1,0x1,0x7f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x5,0xca,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x6,0x0,0x70,0x36,0x18,0x0,0xb,0xb6,0x1,0x18,0xb,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x6,0x20,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x76,0x0,0x1e,0x0,0xb,0xb6,0x1,0x1b,0xb,0x1,0x1,0x5d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x44,0x6,0x74,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x7,0x0,0xa3,0x0,0xf1,0x0,0x9b,0x0,0xd,0xb7,0x2,0x1,0x21,0xb,0x1,0x1,0x51,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x54,0xff,0xf0,0x4,0x77,0x6,0x1d,0x6,0x26,0x1,0xf1,0x0,0x0,0x1,0x7,0x0,0xa6,0x0,0xd2,0x0,0x1e,0x0,0xd,0xb7,0x2,0x1,0x1a,0xb,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x34,0x0,0x0,0x2,0x0,0x54,0xfe,0xa2,0x4,0x44,0x4,0x8d,0x0,0x15,0x0,0x2b,0x0,0x1a,0x40,0xc,0x1e,0x25,0x17,0x16,0x16,0x11,0x6,0xb,0x72,0xc,0x0,0x7d,0x0,0x3f,0x32,0x2b,0x32,0x32,0x11,0x33,0x2f,0x33,0x30,0x31,0x41,0x21,0x11,0x14,0x6,0x6,0x23,0x22,0x26,0x26,0x35,0x11,0x21,0x11,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x3,0x17,0xe,0x2,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x6,0x6,0x23,0x22,0x26,0x35,0x34,0x36,0x36,0x2,0xf2,0x1,0x52,0x79,0xe0,0x9d,0x98,0xe4,0x7e,0x1,0x53,0x25,0x4b,0x37,0x38,0x48,0x24,0x2b,0xba,0x35,0x41,0x1c,0x1b,0x21,0x1a,0x1e,0xd,0x27,0x19,0x50,0x3d,0x65,0x8e,0x22,0x57,0x4,0x8d,0xfd,0x15,0x8b,0xc2,0x65,0x65,0xc2,0x8b,0x2,0xeb,0xfd,0x15,0x3e,0x4e,0x23,0x23,0x4e,0x3e,0xfe,0xdd,0x3c,0x1b,0x30,0x35,0x21,0x1a,0x24,0xc,0x6,0xa8,0xf,0x1d,0x6d,0x69,0x31,0x5d,0x55,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xd1,0x6,0x1e,0x6,0x26,0x1,0xef,0x0,0x0,0x1,0x7,0x0,0x9e,0x0,0xe1,0x0,0x1e,0x0,0xb,0xb6,0x4,0x1b,0xa,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x6,0x1e,0x6,0x26,0x1,0xed,0x0,0x0,0x1,0x6,0x0,0x9e,0x1b,0x1e,0x0,0xb,0xb6,0x3,0x13,0x9,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x5,0xf8,0x6,0x26,0x1,0xed,0x0,0x0,0x1,0x6,0x0,0x6a,0x23,0x1e,0x0,0xd,0xb7,0x4,0x3,0x17,0x9,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2c,0x0,0x0,0x4,0x17,0x6,0x1e,0x6,0x26,0x1,0xec,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x34,0x0,0x1e,0x0,0xb,0xb6,0x3,0xe,0xd,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2c,0x0,0x0,0x4,0x17,0x6,0x2a,0x6,0x26,0x1,0xec,0x0,0x0,0x1,0x7,0x0,0xa2,0x1,0x17,0x0,0x35,0x0,0xb,0xb6,0x3,0x17,0xd,0x1,0x1,0x80,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2c,0x0,0x0,0x4,0x17,0x6,0x1f,0x6,0x26,0x1,0xec,0x0,0x0,0x1,0x6,0x0,0x9f,0x3d,0x1e,0x0,0xb,0xb6,0x3,0x14,0xd,0x1,0x1,0x74,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x6,0x41,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xae,0xff,0x19,0xff,0xff,0x0,0xe,0xb4,0x3,0xe,0x3,0x0,0x0,0xb8,0xff,0x3e,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xfe,0xc2,0x0,0x0,0x4,0xc0,0x6,0x44,0x4,0x26,0x0,0x29,0x64,0x0,0x1,0x7,0x0,0xae,0xfd,0xd2,0x0,0x2,0x0,0xe,0xb4,0x4,0x10,0x7,0x0,0x0,0xb8,0xff,0x3f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xfe,0xc1,0x0,0x0,0x5,0x94,0x6,0x3e,0x4,0x26,0x0,0x2c,0x64,0x0,0x0,0x7,0x0,0xae,0xfd,0xd1,0xff,0xfc,0xff,0xff,0xfe,0xc0,0x0,0x0,0x2,0x48,0x6,0x44,0x4,0x26,0x0,0x2d,0x64,0x0,0x1,0x7,0x0,0xae,0xfd,0xd0,0x0,0x2,0x0,0xe,0xb4,0x1,0x4,0x3,0x0,0x0,0xb8,0xff,0x41,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xff,0x3c,0xff,0xec,0x5,0x53,0x6,0x41,0x4,0x26,0x0,0x33,0x14,0x0,0x1,0x7,0x0,0xae,0xfe,0x4c,0xff,0xff,0x0,0xe,0xb4,0x2,0x2c,0x11,0x0,0x0,0xb8,0xff,0x2a,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xfe,0xe5,0x0,0x0,0x5,0x6e,0x6,0x41,0x4,0x26,0x0,0x3d,0x64,0x0,0x1,0x7,0x0,0xae,0xfd,0xf5,0xff,0xff,0x0,0xb,0xb6,0x1,0xa,0x8,0x0,0x0,0x8e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0x5e,0x0,0x0,0x5,0xa,0x6,0x41,0x4,0x26,0x0,0xba,0x14,0x0,0x1,0x7,0x0,0xae,0xfe,0x6e,0xff,0xff,0x0,0xe,0xb4,0x3,0x36,0x1d,0x0,0x0,0xb8,0xff,0x2a,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xff,0x5e,0xff,0xf5,0x3,0x8,0x6,0xde,0x6,0x26,0x0,0xc3,0x0,0x0,0x1,0x7,0x0,0xaf,0xfe,0xf8,0xff,0xea,0x0,0x10,0x40,0x9,0x3,0x2,0x1,0x2b,0x0,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x34,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x5,0xb0,0x6,0x6,0x0,0x25,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0xd6,0x5,0xb0,0x6,0x6,0x0,0x26,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x5,0xb0,0x6,0x6,0x0,0x29,0x0,0x0,0xff,0xff,0x0,0x3e,0x0,0x0,0x4,0xb1,0x5,0xb0,0x6,0x6,0x0,0x3e,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x30,0x5,0xb0,0x6,0x6,0x0,0x2c,0x0,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x1,0xe4,0x5,0xb0,0x6,0x6,0x0,0x2d,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x33,0x5,0xb0,0x6,0x6,0x0,0x2f,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x6,0x92,0x5,0xb0,0x6,0x6,0x0,0x31,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x2f,0x5,0xb0,0x6,0x6,0x0,0x32,0x0,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x5,0xc4,0x6,0x6,0x0,0x33,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0xe8,0x5,0xb0,0x6,0x6,0x0,0x34,0x0,0x0,0xff,0xff,0x0,0x25,0x0,0x0,0x4,0xe6,0x5,0xb0,0x6,0x6,0x0,0x38,0x0,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x5,0xb0,0x6,0x6,0x0,0x3d,0x0,0x0,0xff,0xff,0x0,0x4,0x0,0x0,0x5,0x17,0x5,0xb0,0x6,0x6,0x0,0x3c,0x0,0x0,0xff,0xff,0xff,0x97,0x0,0x0,0x2,0xcc,0x7,0x10,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x38,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x19,0x3,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0x10,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x88,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x1e,0x2,0x1,0x1,0x77,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xeb,0x4,0x80,0x6,0x42,0x6,0x26,0x0,0xbb,0x0,0x0,0x1,0x7,0x0,0xae,0x0,0xfe,0x0,0x0,0x0,0xb,0xb6,0x3,0x42,0x6,0x1,0x1,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x5e,0xff,0xec,0x4,0x53,0x6,0x41,0x6,0x26,0x0,0xbf,0x0,0x0,0x1,0x7,0x0,0xae,0x0,0xf0,0xff,0xff,0x0,0xb,0xb6,0x2,0x40,0x2b,0x1,0x1,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x5a,0xfe,0x60,0x4,0x29,0x6,0x42,0x6,0x26,0x0,0xc1,0x0,0x0,0x1,0x7,0x0,0xae,0x0,0xd6,0x0,0x0,0x0,0xb,0xb6,0x2,0x1d,0x3,0x1,0x1,0xae,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6b,0xff,0xf5,0x2,0x7e,0x6,0x2c,0x6,0x26,0x0,0xc3,0x0,0x0,0x1,0x6,0x0,0xae,0xbb,0xea,0x0,0xb,0xb6,0x1,0x12,0x0,0x1,0x1,0x99,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x63,0xff,0xeb,0x4,0x21,0x6,0xf4,0x6,0x26,0x0,0xcb,0x0,0x0,0x1,0x6,0x0,0xaf,0x11,0x0,0x0,0x10,0x40,0x9,0x3,0x2,0x1,0x38,0xf,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x34,0xff,0xff,0x0,0x76,0x0,0x0,0x4,0xbb,0x4,0x3a,0x6,0x6,0x0,0x8e,0x0,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x4,0x4e,0x6,0x6,0x0,0x53,0x0,0x0,0xff,0xff,0x0,0x85,0xfe,0x60,0x4,0x80,0x4,0x3a,0x6,0x6,0x0,0x76,0x0,0x0,0xff,0xff,0x0,0x3,0x0,0x0,0x4,0x1d,0x4,0x3a,0x6,0x6,0x0,0x5a,0x0,0x0,0xff,0xff,0xff,0xf3,0xfe,0x4f,0x4,0x51,0x4,0x4b,0x6,0x6,0x2,0x8a,0x0,0x0,0xff,0xff,0xff,0x89,0xff,0xf5,0x2,0xbe,0x5,0xc4,0x6,0x26,0x0,0xc3,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x2a,0xff,0xea,0x0,0xd,0xb7,0x2,0x1,0x27,0x0,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x63,0xff,0xeb,0x4,0x1a,0x5,0xda,0x6,0x26,0x0,0xcb,0x0,0x0,0x1,0x6,0x0,0x6a,0x43,0x0,0x0,0xd,0xb7,0x2,0x1,0x34,0xf,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x42,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0xae,0x0,0xd5,0x0,0x0,0x0,0xb,0xb6,0x2,0x2c,0x6,0x1,0x1,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x63,0xff,0xeb,0x4,0x1a,0x6,0x42,0x6,0x26,0x0,0xcb,0x0,0x0,0x1,0x7,0x0,0xae,0x0,0xd4,0x0,0x0,0x0,0xb,0xb6,0x1,0x1f,0xf,0x1,0x1,0x99,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x41,0xff,0xec,0x6,0x55,0x6,0x42,0x6,0x26,0x0,0xce,0x0,0x0,0x1,0x7,0x0,0xae,0x1,0xd9,0x0,0x0,0x0,0xb,0xb6,0x2,0x40,0x1f,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x10,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x88,0x1,0x36,0x0,0xd,0xb7,0x5,0x4,0x25,0x7,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6d,0x0,0x0,0x4,0x44,0x7,0x36,0x6,0x26,0x0,0xb1,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x6e,0x1,0x36,0x0,0xb,0xb6,0x1,0x6,0x5,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0x0,0x1,0x0,0x40,0xff,0xec,0x4,0xbc,0x5,0xc4,0x0,0x39,0x0,0x1b,0x40,0xd,0xa,0x26,0xf,0x36,0x31,0x2b,0x9,0x72,0x18,0x14,0xf,0x3,0x72,0x0,0x2b,0xcc,0x33,0x2b,0xcc,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x34,0x2e,0x2,0x27,0x2e,0x3,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x15,0x21,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x14,0x1e,0x2,0x17,0x1e,0x3,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x3,0x5d,0x14,0x36,0x65,0x52,0x60,0xb2,0x8c,0x52,0x54,0x97,0xcc,0x79,0xa0,0xf5,0x8b,0xfe,0xa3,0x2d,0x5a,0x44,0x42,0x5a,0x2e,0x25,0x45,0x63,0x3e,0x74,0xb5,0x7d,0x41,0x4c,0x8e,0xc6,0x7a,0x70,0xd9,0xb0,0x69,0x1,0x60,0x22,0x42,0x60,0x3e,0x43,0x52,0x26,0x1,0x83,0x22,0x37,0x30,0x31,0x1b,0x20,0x51,0x6d,0x93,0x62,0x5e,0x97,0x6b,0x39,0x6f,0xcb,0x8a,0x37,0x54,0x30,0x28,0x43,0x28,0x21,0x35,0x2e,0x2a,0x14,0x25,0x5b,0x73,0x92,0x5c,0x62,0x98,0x69,0x36,0x39,0x77,0xbb,0x81,0x40,0x58,0x35,0x17,0x27,0x41,0xff,0xff,0x0,0x86,0x0,0x0,0x1,0xe4,0x5,0xb0,0x6,0x6,0x0,0x2d,0x0,0x0,0xff,0xff,0xff,0x97,0x0,0x0,0x2,0xcc,0x7,0x10,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x38,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x19,0x3,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x25,0xff,0xec,0x4,0x10,0x5,0xb0,0x6,0x6,0x0,0x2e,0x0,0x0,0xff,0xff,0x0,0x6d,0x0,0x0,0x5,0x45,0x5,0xb0,0x6,0x6,0x2,0x46,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x33,0x7,0x36,0x6,0x26,0x0,0x2f,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x5d,0x1,0x36,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x4,0xff,0xeb,0x5,0x7,0x7,0x38,0x6,0x26,0x0,0xde,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xd9,0x1,0x36,0x0,0xb,0xb6,0x2,0x1e,0x1,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x5,0xb0,0x6,0x6,0x0,0x25,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0xd6,0x5,0xb0,0x6,0x6,0x0,0x26,0x0,0x0,0xff,0xff,0x0,0x6d,0x0,0x0,0x4,0x44,0x5,0xb0,0x6,0x6,0x0,0xb1,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x5,0xb0,0x6,0x6,0x0,0x29,0x0,0x0,0xff,0xff,0x0,0x5b,0x0,0x0,0x5,0x24,0x7,0x38,0x6,0x26,0x0,0xdc,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xf1,0x1,0x36,0x0,0xb,0xb6,0x1,0xf,0x1,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x6,0x92,0x5,0xb0,0x6,0x6,0x0,0x31,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x30,0x5,0xb0,0x6,0x6,0x0,0x2c,0x0,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x5,0xc4,0x6,0x6,0x0,0x33,0x0,0x0,0xff,0xff,0x0,0x6d,0x0,0x0,0x5,0x35,0x5,0xb0,0x6,0x6,0x0,0xb6,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0xe8,0x5,0xb0,0x6,0x6,0x0,0x34,0x0,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0xb,0x5,0xc5,0x6,0x6,0x0,0x27,0x0,0x0,0xff,0xff,0x0,0x25,0x0,0x0,0x4,0xe6,0x5,0xb0,0x6,0x6,0x0,0x38,0x0,0x0,0xff,0xff,0x0,0x4,0x0,0x0,0x5,0x17,0x5,0xb0,0x6,0x6,0x0,0x3c,0x0,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x4,0x4e,0x6,0x6,0x0,0x45,0x0,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x4,0x4e,0x6,0x6,0x0,0x49,0x0,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x26,0x6,0x2,0x6,0x26,0x0,0xf0,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x77,0x0,0x0,0x0,0xb,0xb6,0x1,0xf,0x1,0x1,0x1,0x7d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x4,0x4e,0x6,0x6,0x0,0x53,0x0,0x0,0xff,0xff,0x0,0x62,0xfe,0x60,0x4,0x4b,0x4,0x4e,0x6,0x6,0x0,0x54,0x0,0x0,0x0,0x1,0x0,0x35,0xff,0xec,0x3,0xfa,0x4,0x4e,0x0,0x27,0x0,0x13,0x40,0x9,0x0,0x9,0x1d,0x14,0x7,0x72,0x9,0xb,0x72,0x0,0x2b,0x2b,0x32,0x11,0x33,0x30,0x31,0x65,0x32,0x36,0x36,0x27,0x21,0x16,0x6,0x6,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x7,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x2,0x28,0x2f,0x43,0x23,0x1,0x1,0x3d,0x1,0x79,0xcf,0x82,0x7f,0xbe,0x7f,0x3f,0x3f,0x7f,0xbd,0x7e,0x87,0xcf,0x76,0x1,0xfe,0xc3,0x1,0x20,0x43,0x34,0x34,0x40,0x21,0xb,0xb,0x22,0x40,0xf0,0x23,0x41,0x2e,0x7a,0xb7,0x65,0x53,0x95,0xc8,0x75,0x17,0x75,0xc9,0x95,0x53,0x66,0xc2,0x8a,0x31,0x4e,0x2f,0x2e,0x51,0x68,0x3b,0x17,0x3c,0x69,0x4f,0x2d,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x4,0x3a,0x6,0x6,0x0,0x5d,0x0,0x0,0xff,0xff,0x0,0xc,0x0,0x0,0x4,0x1f,0x4,0x3a,0x6,0x6,0x0,0x5c,0x0,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x5,0xdb,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x1a,0x0,0x1,0x0,0xd,0xb7,0x2,0x1,0x41,0xb,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x3,0x54,0x6,0x0,0x6,0x26,0x0,0xec,0x0,0x0,0x1,0x7,0x0,0x75,0x0,0xb3,0x0,0x0,0x0,0xb,0xb6,0x1,0x6,0x5,0x1,0x1,0x8b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x24,0xff,0xec,0x3,0xdc,0x4,0x4e,0x6,0x6,0x0,0x57,0x0,0x0,0xff,0xff,0x0,0x5d,0x0,0x0,0x1,0xd3,0x5,0xf5,0x6,0x6,0x0,0x4d,0x0,0x0,0xff,0xff,0xff,0x88,0x0,0x0,0x2,0xbd,0x5,0xc5,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x29,0xff,0xeb,0x0,0xd,0xb7,0x2,0x1,0x19,0x3,0x1,0x1,0xb5,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x8b,0xfe,0x4b,0x1,0xd5,0x5,0xf5,0x6,0x6,0x0,0x4e,0x0,0x0,0xff,0xff,0x0,0x76,0x0,0x0,0x4,0xa4,0x6,0x0,0x6,0x26,0x0,0xf1,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x65,0x0,0x0,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x1,0x8a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x6,0x2,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x6,0x0,0xa1,0x40,0x0,0x0,0xb,0xb6,0x2,0x1e,0x1,0x1,0x1,0x92,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x6,0xd9,0x7,0x36,0x6,0x26,0x0,0x3b,0x0,0x0,0x1,0x7,0x0,0x44,0x1,0xbb,0x1,0x36,0x0,0xb,0xb6,0x4,0x18,0x15,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xb5,0x6,0x0,0x6,0x26,0x0,0x5b,0x0,0x0,0x1,0x7,0x0,0x44,0x1,0x25,0x0,0x0,0x0,0xb,0xb6,0x4,0x18,0x15,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x6,0xd9,0x7,0x36,0x6,0x26,0x0,0x3b,0x0,0x0,0x1,0x7,0x0,0x75,0x2,0x89,0x1,0x36,0x0,0xb,0xb6,0x4,0x16,0x1,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xb5,0x6,0x0,0x6,0x26,0x0,0x5b,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xf3,0x0,0x0,0x0,0xb,0xb6,0x4,0x16,0x1,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x6,0xd9,0x7,0x10,0x6,0x26,0x0,0x3b,0x0,0x0,0x1,0x7,0x0,0x6a,0x1,0x81,0x1,0x36,0x0,0xd,0xb7,0x5,0x4,0x2b,0x15,0x1,0x1,0x78,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xb5,0x5,0xda,0x6,0x26,0x0,0x5b,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xeb,0x0,0x0,0x0,0xd,0xb7,0x5,0x4,0x2b,0x15,0x1,0x1,0xb7,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0x36,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xc2,0x1,0x36,0x0,0xb,0xb6,0x1,0xb,0x2,0x1,0x1,0x60,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x6,0x0,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x4e,0x0,0x0,0x0,0xb,0xb6,0x2,0x1b,0x1,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2c,0x3,0xc1,0x1,0x1c,0x6,0x0,0x6,0x6,0x0,0xb,0x0,0x0,0xff,0xff,0x0,0x1a,0x3,0xc9,0x2,0x5f,0x6,0x1,0x6,0x6,0x0,0x6,0x0,0x0,0xff,0xff,0x0,0x68,0xff,0xee,0x4,0x13,0x5,0xb0,0x4,0x26,0x0,0x5,0x0,0x0,0x0,0x7,0x0,0x5,0x2,0x36,0x0,0x0,0xff,0xff,0xff,0x5f,0xfe,0x4b,0x2,0xc5,0x5,0xec,0x6,0x26,0x0,0x9c,0x0,0x0,0x1,0x7,0x0,0x9f,0xff,0x27,0xff,0xeb,0x0,0xb,0xb6,0x1,0x18,0x0,0x1,0x1,0x80,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x42,0x3,0xe8,0x1,0x8d,0x6,0x0,0x6,0x6,0x1,0x85,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x6,0x92,0x7,0x36,0x6,0x26,0x0,0x31,0x0,0x0,0x1,0x7,0x0,0x75,0x2,0x89,0x1,0x36,0x0,0xb,0xb6,0x3,0x11,0x0,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x62,0x0,0x0,0x6,0x82,0x6,0x0,0x6,0x26,0x0,0x51,0x0,0x0,0x1,0x7,0x0,0x75,0x2,0x93,0x0,0x0,0x0,0xb,0xb6,0x3,0x33,0x3,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0xfe,0x7e,0x5,0x78,0x5,0xb0,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xa7,0x1,0x5e,0x0,0x9,0x0,0x10,0xb5,0x4,0x3,0x11,0x5,0x1,0x1,0xb8,0xff,0xb5,0xb0,0x56,0x0,0x2b,0x34,0x34,0xff,0xff,0x0,0x2e,0xfe,0x8b,0x4,0x12,0x4,0x4e,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xa7,0x0,0x6f,0x0,0x16,0x0,0x10,0xb5,0x3,0x2,0x3e,0x31,0x1,0x1,0xb8,0xff,0xc9,0xb0,0x56,0x0,0x2b,0x34,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x36,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xc2,0x1,0x36,0x0,0xb,0xb6,0x4,0x12,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x5b,0x0,0x0,0x5,0x24,0x7,0x36,0x6,0x26,0x0,0xdc,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0xff,0x1,0x36,0x0,0xb,0xb6,0x1,0xc,0x1,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x1,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x54,0x0,0x1,0x0,0xb,0xb6,0x1,0x2e,0xb,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x26,0x6,0x0,0x6,0x26,0x0,0xf0,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x85,0x0,0x0,0x0,0xb,0xb6,0x1,0xc,0x1,0x1,0x1,0x8b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x24,0x0,0x0,0x5,0xd7,0x5,0xb0,0x6,0x6,0x0,0xb9,0x0,0x0,0xff,0xff,0x0,0x39,0xfe,0x22,0x5,0xe7,0x4,0x3a,0x6,0x6,0x0,0xcd,0x0,0x0,0xff,0xff,0x0,0x6,0x0,0x0,0x5,0x1f,0x7,0x24,0x6,0x26,0x1,0x19,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x71,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x15,0x13,0x1,0x1,0x2d,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xe4,0x0,0x0,0x4,0x31,0x5,0xee,0x6,0x26,0x1,0x1a,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x11,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x19,0x17,0x1,0x1,0x7b,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xfe,0x4b,0x8,0xac,0x4,0x4e,0x4,0x26,0x0,0x53,0x0,0x0,0x0,0x7,0x0,0x5d,0x4,0x7f,0x0,0x0,0xff,0xff,0x0,0x46,0xfe,0x4b,0x9,0xb3,0x5,0xc4,0x4,0x26,0x0,0x33,0x0,0x0,0x0,0x7,0x0,0x5d,0x5,0x86,0x0,0x0,0xff,0xff,0x0,0x3e,0xfe,0xd,0x4,0xaa,0x5,0xc3,0x6,0x26,0x0,0xdb,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0x7d,0xff,0x71,0x0,0xb,0xb6,0x2,0x42,0x2a,0x0,0x0,0x64,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3c,0xfe,0xe,0x3,0xf4,0x4,0x4d,0x6,0x26,0x0,0xef,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0x1b,0xff,0x72,0x0,0xb,0xb6,0x2,0x3f,0x29,0x0,0x0,0x65,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xfe,0x17,0x5,0xb,0x5,0xc5,0x6,0x26,0x0,0x27,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0xaf,0xff,0x7b,0x0,0xb,0xb6,0x1,0x2b,0x5,0x0,0x0,0x64,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xfe,0x17,0x3,0xfa,0x4,0x4e,0x6,0x26,0x0,0x47,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0x36,0xff,0x7b,0x0,0xb,0xb6,0x1,0x2b,0x9,0x0,0x0,0x64,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x5,0xb0,0x6,0x6,0x0,0x3d,0x0,0x0,0xff,0xff,0x0,0x1,0xfe,0x5f,0x4,0x18,0x4,0x3a,0x6,0x6,0x0,0xbd,0x0,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x1,0xe4,0x5,0xb0,0x6,0x6,0x0,0x2d,0x0,0x0,0xff,0xff,0x0,0xb,0x0,0x0,0x8,0x5d,0x7,0x38,0x6,0x26,0x0,0xda,0x0,0x0,0x1,0x7,0x0,0xa1,0x2,0x5f,0x1,0x36,0x0,0xb,0xb6,0x5,0x1d,0xd,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x25,0x0,0x0,0x7,0x20,0x6,0x2,0x6,0x26,0x0,0xee,0x0,0x0,0x1,0x7,0x0,0xa1,0x1,0xde,0x0,0x0,0x0,0xb,0xb6,0x5,0x1d,0xd,0x1,0x1,0x7d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x1,0xe4,0x5,0xb0,0x6,0x6,0x0,0x2d,0x0,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x38,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xeb,0x1,0x36,0x0,0xb,0xb6,0x3,0x13,0x7,0x1,0x1,0x53,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x2,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x47,0x0,0x0,0x0,0xb,0xb6,0x2,0x40,0xf,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x10,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xbf,0x1,0x36,0x0,0xd,0xb7,0x4,0x3,0x23,0x7,0x1,0x1,0x78,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x5,0xda,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x1b,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x50,0xf,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x10,0x0,0x0,0x7,0x3c,0x5,0xb0,0x6,0x6,0x0,0x81,0x0,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x6,0x96,0x4,0x4f,0x6,0x6,0x0,0x86,0x0,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x38,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xb4,0x1,0x36,0x0,0xb,0xb6,0x4,0x15,0x7,0x1,0x1,0x5e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x3,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x46,0x0,0x1,0x0,0xb,0xb6,0x1,0x31,0xb,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x45,0xff,0xea,0x5,0x3f,0x6,0xe1,0x6,0x26,0x1,0x58,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xa3,0x1,0x7,0x0,0xd,0xb7,0x2,0x1,0x42,0x0,0x1,0x1,0x41,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x42,0xff,0xec,0x4,0xc,0x4,0x4f,0x6,0x6,0x0,0x9d,0x0,0x0,0xff,0xff,0x0,0x42,0xff,0xec,0x4,0xc,0x5,0xdb,0x6,0x26,0x0,0x9d,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x20,0x0,0x1,0x0,0xd,0xb7,0x2,0x1,0x40,0x0,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0xb,0x0,0x0,0x8,0x5d,0x7,0x10,0x6,0x26,0x0,0xda,0x0,0x0,0x1,0x7,0x0,0x6a,0x2,0x33,0x1,0x36,0x0,0xd,0xb7,0x6,0x5,0x2d,0xd,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x25,0x0,0x0,0x7,0x20,0x5,0xda,0x6,0x26,0x0,0xee,0x0,0x0,0x1,0x7,0x0,0x6a,0x1,0xb2,0x0,0x0,0x0,0xd,0xb7,0x6,0x5,0x2d,0xd,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3e,0xff,0xed,0x4,0xaa,0x7,0x10,0x6,0x26,0x0,0xdb,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x77,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x54,0x15,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3c,0xff,0xec,0x3,0xf4,0x5,0xd9,0x6,0x26,0x0,0xef,0x0,0x0,0x1,0x6,0x0,0x6a,0x20,0xff,0x0,0xd,0xb7,0x3,0x2,0x51,0x14,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x5b,0x0,0x0,0x5,0x24,0x6,0xe2,0x6,0x26,0x0,0xdc,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0xb1,0x1,0x30,0x0,0xb,0xb6,0x1,0xc,0x8,0x1,0x1,0xb1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x26,0x5,0xac,0x6,0x26,0x0,0xf0,0x0,0x0,0x1,0x6,0x0,0x70,0x37,0xfa,0x0,0xb,0xb6,0x1,0xc,0x8,0x1,0x1,0xd0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x5b,0x0,0x0,0x5,0x24,0x7,0x10,0x6,0x26,0x0,0xdc,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xc5,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x1f,0x1,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x26,0x5,0xda,0x6,0x26,0x0,0xf0,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x4b,0x0,0x0,0x0,0xd,0xb7,0x2,0x1,0x1f,0x1,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x10,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xc4,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x41,0x11,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x5,0xda,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x44,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x41,0x6,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x55,0xff,0xec,0x5,0x4f,0x5,0xc4,0x6,0x6,0x1,0x17,0x0,0x0,0xff,0xff,0x0,0x32,0xff,0xec,0x4,0x47,0x4,0x4e,0x6,0x6,0x1,0x18,0x0,0x0,0xff,0xff,0x0,0x55,0xff,0xec,0x5,0x4f,0x7,0x10,0x6,0x26,0x1,0x17,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xdb,0x1,0x36,0x0,0xd,0xb7,0x4,0x3,0x4f,0x0,0x1,0x1,0x6a,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x32,0xff,0xec,0x4,0x47,0x5,0xda,0x6,0x26,0x1,0x18,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x3f,0x0,0x0,0x0,0xd,0xb7,0x4,0x3,0x41,0x0,0x1,0x1,0xa5,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0xf,0xff,0xeb,0x4,0xd4,0x7,0x10,0x6,0x26,0x0,0xe7,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0x80,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x42,0x1e,0x1,0x1,0x85,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2d,0xff,0xec,0x3,0xf4,0x5,0xda,0x6,0x26,0x0,0xff,0x0,0x0,0x1,0x6,0x0,0x6a,0x4,0x0,0x0,0xd,0xb7,0x3,0x2,0x41,0x9,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x4,0xff,0xeb,0x5,0x7,0x6,0xe2,0x6,0x26,0x0,0xde,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0x99,0x1,0x30,0x0,0xb,0xb6,0x2,0x1b,0x18,0x1,0x1,0xb1,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x5,0xac,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x6,0x0,0x70,0x0,0xfa,0x0,0xb,0xb6,0x2,0x1b,0x18,0x1,0x1,0xe5,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x4,0xff,0xeb,0x5,0x7,0x7,0x10,0x6,0x26,0x0,0xde,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xad,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x2e,0x1,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x5,0xda,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x6,0x0,0x6a,0x14,0x0,0x0,0xd,0xb7,0x3,0x2,0x2e,0x1,0x1,0x1,0xb7,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x4,0xff,0xeb,0x5,0x7,0x7,0x35,0x6,0x26,0x0,0xde,0x0,0x0,0x1,0x7,0x0,0xa6,0x1,0x35,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x19,0x1,0x1,0x1,0x62,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x41,0x5,0xff,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x7,0x0,0xa6,0x0,0x9c,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x19,0x1,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x5,0x2c,0x7,0x10,0x6,0x26,0x0,0xe1,0x0,0x0,0x1,0x7,0x0,0x6a,0x1,0x17,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x2f,0x16,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x20,0x5,0xda,0x6,0x26,0x0,0xf9,0x0,0x0,0x1,0x6,0x0,0x6a,0x5e,0x0,0x0,0xd,0xb7,0x3,0x2,0x2d,0x3,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6e,0x0,0x0,0x6,0x90,0x7,0x10,0x6,0x26,0x0,0xe5,0x0,0x0,0x1,0x7,0x0,0x6a,0x1,0x8f,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x32,0x1c,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x76,0x0,0x0,0x6,0x5a,0x5,0xda,0x6,0x26,0x0,0xfd,0x0,0x0,0x1,0x7,0x0,0x6a,0x1,0x7f,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x32,0x1c,0x1,0x1,0xa2,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x20,0x6,0x0,0x6,0x6,0x0,0x48,0x0,0x0,0xff,0xff,0xff,0xfc,0xfe,0x8e,0x5,0x78,0x5,0xb0,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0x15,0x0,0x9,0x0,0xe,0xb4,0x3,0x11,0x5,0x1,0x1,0xb8,0xff,0x75,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x2e,0xfe,0x9b,0x4,0x12,0x4,0x4e,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x26,0x0,0x16,0x0,0xe,0xb4,0x2,0x3e,0x31,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0xb9,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xab,0x5,0x26,0x1,0x2d,0x0,0xb,0xb6,0x3,0xf,0x7,0x1,0x1,0x71,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x83,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0x82,0xff,0xf7,0x0,0xb,0xb6,0x2,0x3c,0xf,0x1,0x1,0x9c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x79,0x7,0x81,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x51,0x0,0xc2,0x1,0x9,0x0,0xd,0xb7,0x4,0x3,0x12,0x7,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0xd5,0x6,0x4b,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x2,0x51,0x1e,0xd3,0x0,0xd,0xb7,0x3,0x2,0x41,0xf,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfb,0x0,0x0,0x5,0x78,0x7,0x81,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x52,0x0,0xbe,0x1,0x9,0x0,0xd,0xb7,0x4,0x3,0x10,0x7,0x1,0x1,0x5c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x57,0xff,0xec,0x4,0x12,0x6,0x4b,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x2,0x52,0x1a,0xd3,0x0,0xd,0xb7,0x3,0x2,0x3d,0xf,0x1,0x1,0x87,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0xc2,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x53,0x0,0xba,0x1,0x9,0x0,0xd,0xb7,0x4,0x3,0x13,0x3,0x1,0x1,0x50,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x46,0x6,0x8c,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x2,0x53,0x16,0xd3,0x0,0xd,0xb7,0x3,0x2,0x40,0xf,0x1,0x1,0x7b,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0xc9,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x54,0x0,0xbe,0x1,0x9,0x0,0xd,0xb7,0x4,0x3,0x10,0x7,0x1,0x1,0x3a,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x93,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x6,0x2,0x54,0x1a,0xd3,0x0,0xd,0xb7,0x3,0x2,0x3d,0xf,0x1,0x1,0x65,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0xfe,0x8e,0x5,0x78,0x7,0x36,0x6,0x26,0x0,0x25,0x0,0x0,0x0,0x27,0x0,0x9e,0x0,0xb7,0x1,0x36,0x1,0x7,0x0,0xad,0x5,0x15,0x0,0x9,0x0,0x17,0xb4,0x4,0x1a,0x5,0x1,0x1,0xb8,0xff,0x75,0xb7,0x56,0x3,0x11,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xfe,0x9b,0x4,0x12,0x6,0x0,0x6,0x26,0x0,0x45,0x0,0x0,0x0,0x26,0x0,0x9e,0x13,0x0,0x1,0x7,0x0,0xad,0x4,0x26,0x0,0x16,0x0,0x17,0xb4,0x3,0x47,0x31,0x1,0x1,0xb8,0xff,0x89,0xb7,0x56,0x2,0x3e,0xf,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x9e,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x56,0x0,0xea,0x1,0x3b,0x0,0xd,0xb7,0x4,0x3,0x13,0x7,0x1,0x1,0x5c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x68,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x2,0x56,0x0,0x46,0x0,0x5,0x0,0xd,0xb7,0x3,0x2,0x40,0xf,0x1,0x1,0x87,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x9e,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x4f,0x0,0xea,0x1,0x3b,0x0,0xd,0xb7,0x4,0x3,0x13,0x7,0x1,0x1,0x5c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0x68,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x2,0x4f,0x0,0x46,0x0,0x5,0x0,0xd,0xb7,0x3,0x2,0x40,0xf,0x1,0x1,0x87,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x8,0x34,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x57,0x0,0xde,0x1,0x28,0x0,0xd,0xb7,0x4,0x3,0x13,0x7,0x1,0x1,0x6e,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0xfe,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x2,0x57,0x0,0x3a,0xff,0xf2,0x0,0xd,0xb7,0x3,0x2,0x40,0xf,0x1,0x1,0x99,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x8,0x15,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x2,0x6a,0x0,0xe7,0x1,0x2b,0x0,0xd,0xb7,0x4,0x3,0x13,0x7,0x1,0x1,0x6f,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xec,0x4,0x12,0x6,0xdf,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x2,0x6a,0x0,0x43,0xff,0xf5,0x0,0xd,0xb7,0x3,0x2,0x40,0xf,0x1,0x1,0x9a,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0xfe,0x8e,0x5,0x78,0x7,0x38,0x6,0x26,0x0,0x25,0x0,0x0,0x0,0x27,0x0,0xa1,0x0,0xeb,0x1,0x36,0x1,0x7,0x0,0xad,0x5,0x15,0x0,0x9,0x0,0x17,0xb4,0x4,0x20,0x5,0x1,0x1,0xb8,0xff,0x75,0xb7,0x56,0x3,0x13,0x7,0x1,0x1,0x53,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xfe,0x9b,0x4,0x12,0x6,0x2,0x6,0x26,0x0,0x45,0x0,0x0,0x0,0x27,0x0,0xa1,0x0,0x47,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x26,0x0,0x16,0x0,0x17,0xb4,0x3,0x4d,0x31,0x1,0x1,0xb8,0xff,0x89,0xb7,0x56,0x2,0x40,0xf,0x1,0x1,0x7e,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x4,0x5c,0x5,0xb0,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xdf,0x0,0xa,0x0,0xe,0xb4,0x4,0x13,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x3d,0xfe,0x85,0x4,0x32,0x4,0x4e,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x91,0x0,0x0,0x0,0xe,0xb4,0x1,0x2f,0x0,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0xb9,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0xef,0x1,0x2d,0x0,0xb,0xb6,0x4,0x11,0x7,0x1,0x1,0x7c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x84,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0x81,0xff,0xf8,0x0,0xb,0xb6,0x1,0x2d,0xb,0x1,0x1,0x9c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0x38,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0x90,0x1,0x31,0x0,0xb,0xb6,0x4,0x1e,0x7,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x3,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x0,0xa5,0x22,0xfc,0x0,0xb,0xb6,0x1,0x3a,0xb,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x42,0x7,0x81,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x2,0x51,0x0,0x8b,0x1,0x9,0x0,0xd,0xb7,0x5,0x4,0x14,0x7,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0xd4,0x6,0x4c,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x2,0x51,0x1d,0xd4,0x0,0xd,0xb7,0x2,0x1,0x30,0xb,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xc4,0x0,0x0,0x4,0x5c,0x7,0x81,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x2,0x52,0x0,0x87,0x1,0x9,0x0,0xd,0xb7,0x5,0x4,0x12,0x7,0x1,0x1,0x67,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x56,0xff,0xec,0x4,0x32,0x6,0x4c,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x2,0x52,0x19,0xd4,0x0,0xd,0xb7,0x2,0x1,0x2e,0xb,0x1,0x1,0x87,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0xb3,0x7,0xc2,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x2,0x53,0x0,0x83,0x1,0x9,0x0,0xd,0xb7,0x5,0x4,0x15,0x7,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x45,0x6,0x8d,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x2,0x53,0x15,0xd4,0x0,0xd,0xb7,0x2,0x1,0x31,0xb,0x1,0x1,0x7b,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0x5c,0x7,0xc9,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x2,0x54,0x0,0x87,0x1,0x9,0x0,0xd,0xb7,0x5,0x4,0x12,0x7,0x1,0x1,0x45,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x3d,0xff,0xec,0x4,0x32,0x6,0x94,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x6,0x2,0x54,0x19,0xd4,0x0,0xd,0xb7,0x2,0x1,0x2e,0xb,0x1,0x1,0x65,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x4,0x5c,0x7,0x36,0x6,0x26,0x0,0x29,0x0,0x0,0x0,0x27,0x0,0x9e,0x0,0x80,0x1,0x36,0x1,0x7,0x0,0xad,0x4,0xdf,0x0,0xa,0x0,0x17,0xb4,0x5,0x1c,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb7,0x56,0x4,0x13,0x7,0x1,0x1,0x77,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xfe,0x85,0x4,0x32,0x6,0x1,0x6,0x26,0x0,0x49,0x0,0x0,0x0,0x26,0x0,0x9e,0x12,0x1,0x1,0x7,0x0,0xad,0x4,0x91,0x0,0x0,0x0,0x17,0xb4,0x2,0x38,0x0,0x1,0x1,0xb8,0xff,0x89,0xb7,0x56,0x1,0x2f,0xb,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x86,0x0,0x0,0x2,0x47,0x7,0xb9,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0xab,0x3,0x9f,0x1,0x2d,0x0,0xb,0xb6,0x1,0x5,0x3,0x1,0x1,0x7c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x7c,0x0,0x0,0x2,0x38,0x6,0x6e,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0xab,0x3,0x90,0xff,0xe2,0x0,0xb,0xb6,0x1,0x5,0x3,0x1,0x1,0xae,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x7c,0xfe,0x85,0x1,0xf2,0x5,0xb0,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0xad,0x3,0x8c,0x0,0x0,0x0,0xe,0xb4,0x1,0x7,0x2,0x1,0x1,0xb8,0xff,0x7e,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x5d,0xfe,0x8f,0x1,0xd6,0x5,0xf5,0x6,0x26,0x0,0x4d,0x0,0x0,0x1,0x7,0x0,0xad,0x3,0x70,0x0,0xa,0x0,0xe,0xb4,0x2,0x13,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x46,0xfe,0x85,0x5,0x3f,0x5,0xc4,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0x1f,0x0,0x0,0x0,0xe,0xb4,0x2,0x2f,0x6,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x35,0xfe,0x7b,0x4,0x49,0x4,0x4e,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x96,0xff,0xf6,0x0,0xe,0xb4,0x2,0x2f,0x11,0x1,0x1,0xb8,0xff,0x88,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0xb9,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0xab,0x5,0x2b,0x1,0x2d,0x0,0xb,0xb6,0x2,0x2d,0x11,0x1,0x1,0x5f,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x83,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0xab,0xff,0xf7,0x0,0xb,0xb6,0x2,0x2d,0x6,0x1,0x1,0x9c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x7e,0x7,0x81,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x2,0x51,0x0,0xc7,0x1,0x9,0x0,0xd,0xb7,0x3,0x2,0x30,0x11,0x1,0x1,0x4f,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0xfe,0x6,0x4b,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x2,0x51,0x47,0xd3,0x0,0xd,0xb7,0x3,0x2,0x30,0x6,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x0,0xff,0xec,0x5,0x3f,0x7,0x81,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x2,0x52,0x0,0xc3,0x1,0x9,0x0,0xd,0xb7,0x3,0x2,0x2e,0x11,0x1,0x1,0x4a,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x80,0xff,0xec,0x4,0x49,0x6,0x4b,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x2,0x52,0x43,0xd3,0x0,0xd,0xb7,0x3,0x2,0x2e,0x6,0x1,0x1,0x87,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0xc2,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x2,0x53,0x0,0xbf,0x1,0x9,0x0,0xd,0xb7,0x3,0x2,0x31,0x11,0x1,0x1,0x3e,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x6f,0x6,0x8c,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x2,0x53,0x3f,0xd3,0x0,0xd,0xb7,0x3,0x2,0x31,0x6,0x1,0x1,0x7b,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0xc9,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x2,0x54,0x0,0xc3,0x1,0x9,0x0,0xd,0xb7,0x3,0x2,0x2e,0x11,0x1,0x1,0x28,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x35,0xff,0xec,0x4,0x49,0x6,0x93,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x6,0x2,0x54,0x43,0xd3,0x0,0xd,0xb7,0x3,0x2,0x2e,0x6,0x1,0x1,0x65,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x46,0xfe,0x85,0x5,0x3f,0x7,0x36,0x6,0x26,0x0,0x33,0x0,0x0,0x0,0x27,0x0,0x9e,0x0,0xbc,0x1,0x36,0x1,0x7,0x0,0xad,0x5,0x1f,0x0,0x0,0x0,0x17,0xb4,0x3,0x38,0x6,0x1,0x1,0xb8,0xff,0x89,0xb7,0x56,0x2,0x2f,0x11,0x1,0x1,0x5a,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xfe,0x7b,0x4,0x49,0x6,0x0,0x6,0x26,0x0,0x53,0x0,0x0,0x0,0x26,0x0,0x9e,0x3c,0x0,0x1,0x7,0x0,0xad,0x4,0x96,0xff,0xf6,0x0,0x17,0xb4,0x3,0x38,0x11,0x1,0x1,0xb8,0xff,0x88,0xb7,0x56,0x2,0x2f,0x6,0x1,0x1,0x97,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x49,0xff,0xec,0x5,0xcd,0x7,0x3d,0x6,0x26,0x0,0x98,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xd1,0x1,0x3d,0x0,0xb,0xb6,0x3,0x3a,0x1c,0x1,0x1,0x47,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x32,0xff,0xec,0x4,0xb3,0x6,0x0,0x6,0x26,0x0,0x99,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x4b,0x0,0x0,0x0,0xb,0xb6,0x3,0x36,0x10,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x49,0xff,0xec,0x5,0xcd,0x7,0x3d,0x6,0x26,0x0,0x98,0x0,0x0,0x1,0x7,0x0,0x44,0x1,0x3,0x1,0x3d,0x0,0xb,0xb6,0x3,0x3c,0x1c,0x1,0x1,0x47,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x32,0xff,0xec,0x4,0xb3,0x6,0x0,0x6,0x26,0x0,0x99,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x7d,0x0,0x0,0x0,0xb,0xb6,0x3,0x38,0x10,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x49,0xff,0xec,0x5,0xcd,0x7,0xc0,0x6,0x26,0x0,0x98,0x0,0x0,0x1,0x7,0x0,0xab,0x5,0x30,0x1,0x34,0x0,0xb,0xb6,0x3,0x3b,0x1c,0x1,0x1,0x57,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x32,0xff,0xec,0x4,0xb3,0x6,0x83,0x6,0x26,0x0,0x99,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0xaa,0xff,0xf7,0x0,0xb,0xb6,0x3,0x37,0x10,0x1,0x1,0x9c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x49,0xff,0xec,0x5,0xcd,0x7,0x3f,0x6,0x26,0x0,0x98,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xd1,0x1,0x38,0x0,0xb,0xb6,0x3,0x48,0x1c,0x1,0x1,0x51,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x32,0xff,0xec,0x4,0xb3,0x6,0x2,0x6,0x26,0x0,0x99,0x0,0x0,0x1,0x6,0x0,0xa5,0x4b,0xfb,0x0,0xb,0xb6,0x3,0x44,0x10,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x49,0xfe,0x85,0x5,0xcd,0x6,0x14,0x6,0x26,0x0,0x98,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xfe,0x0,0x0,0x0,0xe,0xb4,0x3,0x3d,0x10,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x32,0xfe,0x7b,0x4,0xb3,0x4,0x99,0x6,0x26,0x0,0x99,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x96,0xff,0xf6,0x0,0xe,0xb4,0x3,0x39,0x1b,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6a,0xfe,0x85,0x4,0xe4,0x5,0xb0,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xf9,0x0,0x0,0x0,0xe,0xb4,0x1,0x19,0x6,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x59,0xfe,0x85,0x4,0x29,0x4,0x3a,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x1c,0x0,0x0,0x0,0xe,0xb4,0x2,0x1f,0xb,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0xb9,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xab,0x5,0xd,0x1,0x2d,0x0,0xb,0xb6,0x1,0x17,0x0,0x1,0x1,0x71,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x4,0x29,0x6,0x83,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0xab,0xff,0xf7,0x0,0xb,0xb6,0x2,0x1d,0x11,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x6,0x6d,0x7,0x42,0x6,0x26,0x0,0x9a,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xe2,0x1,0x42,0x0,0xb,0xb6,0x2,0x20,0xa,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x5,0x46,0x5,0xeb,0x6,0x26,0x0,0x9b,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x4a,0xff,0xeb,0x0,0xb,0xb6,0x3,0x26,0x1b,0x1,0x1,0x8b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x6,0x6d,0x7,0x42,0x6,0x26,0x0,0x9a,0x0,0x0,0x1,0x7,0x0,0x44,0x1,0x14,0x1,0x42,0x0,0xb,0xb6,0x2,0x22,0xa,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x5,0x46,0x5,0xeb,0x6,0x26,0x0,0x9b,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x7c,0xff,0xeb,0x0,0xb,0xb6,0x3,0x28,0x1b,0x1,0x1,0x8b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x6,0x6d,0x7,0xc5,0x6,0x26,0x0,0x9a,0x0,0x0,0x1,0x7,0x0,0xab,0x5,0x41,0x1,0x39,0x0,0xb,0xb6,0x2,0x21,0xa,0x1,0x1,0x7c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x5,0x46,0x6,0x6e,0x6,0x26,0x0,0x9b,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0xa9,0xff,0xe2,0x0,0xb,0xb6,0x3,0x27,0x1b,0x1,0x1,0x9b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x6,0x6d,0x7,0x44,0x6,0x26,0x0,0x9a,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xe2,0x1,0x3d,0x0,0xb,0xb6,0x2,0x2e,0x15,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xff,0xec,0x5,0x46,0x5,0xed,0x6,0x26,0x0,0x9b,0x0,0x0,0x1,0x6,0x0,0xa5,0x4a,0xe6,0x0,0xb,0xb6,0x3,0x34,0x1b,0x1,0x1,0x95,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6a,0xfe,0x7b,0x6,0x6d,0x6,0x1,0x6,0x26,0x0,0x9a,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0x2d,0xff,0xf6,0x0,0xe,0xb4,0x2,0x23,0x10,0x1,0x1,0xb8,0xff,0x80,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x59,0xfe,0x85,0x5,0x46,0x4,0x9d,0x6,0x26,0x0,0x9b,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x98,0x0,0x0,0x0,0xe,0xb4,0x3,0x29,0x15,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xff,0xfc,0xfe,0xb4,0x5,0xa,0x5,0xb0,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xd8,0x0,0x2f,0x0,0xe,0xb4,0x1,0xc,0x6,0x1,0x1,0xb8,0xff,0x76,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xff,0xfb,0xfe,0x29,0x4,0x2d,0x4,0x3a,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0xa1,0xff,0xa4,0x0,0xe,0xb4,0x2,0x22,0x8,0x0,0x0,0xb8,0xff,0xb9,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0xb9,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0xef,0x1,0x2d,0x0,0xb,0xb6,0x1,0xa,0x2,0x1,0x1,0x70,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x6,0x83,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x7,0x0,0xab,0x4,0x7b,0xff,0xf7,0x0,0xb,0xb6,0x2,0x1a,0x1,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0xa,0x7,0x38,0x6,0x26,0x0,0x3d,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0x90,0x1,0x31,0x0,0xb,0xb6,0x1,0x17,0x8,0x1,0x1,0x6a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfb,0xfe,0x4b,0x4,0x2d,0x6,0x2,0x6,0x26,0x0,0x5d,0x0,0x0,0x1,0x6,0x0,0xa5,0x1c,0xfb,0x0,0xb,0xb6,0x2,0x27,0x18,0x1,0x1,0xaa,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x35,0xfe,0x81,0x4,0xac,0x6,0x0,0x4,0x26,0x0,0x48,0x0,0x0,0x0,0x27,0x2,0x40,0x1,0x47,0x2,0x34,0x1,0x7,0x0,0x43,0x0,0x8e,0xff,0x7c,0x0,0x17,0xb4,0x4,0x37,0x16,0x1,0x1,0xb8,0xff,0x77,0xb7,0x56,0x3,0x32,0xb,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x2b,0x34,0x0,0xff,0xff,0x0,0x25,0xfe,0x9c,0x4,0xe6,0x5,0xb0,0x6,0x26,0x0,0x38,0x0,0x0,0x1,0x7,0x2,0x6b,0x2,0x4f,0x0,0x0,0x0,0xb,0xb6,0x2,0xb,0x2,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x1b,0xfe,0x9c,0x4,0x13,0x4,0x3a,0x6,0x26,0x0,0xf6,0x0,0x0,0x1,0x7,0x2,0x6b,0x2,0x9,0x0,0x0,0x0,0xb,0xb6,0x2,0xb,0x2,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x86,0xfe,0x9c,0x5,0x2c,0x5,0xb0,0x6,0x26,0x0,0xe1,0x0,0x0,0x1,0x7,0x2,0x6b,0x2,0x7a,0x0,0x0,0x0,0xb,0xb6,0x2,0x1d,0x19,0x1,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0xfe,0x9c,0x4,0x20,0x4,0x3a,0x6,0x26,0x0,0xf9,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0x76,0x0,0x0,0x0,0xb,0xb6,0x2,0x1b,0x2,0x1,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6d,0xfe,0x9c,0x4,0x44,0x5,0xb0,0x6,0x26,0x0,0xb1,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0x11,0x0,0x0,0x0,0xb,0xb6,0x1,0x9,0x4,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0xfe,0x9c,0x3,0x54,0x4,0x3a,0x6,0x26,0x0,0xec,0x0,0x0,0x1,0x7,0x2,0x6b,0x0,0xf6,0x0,0x0,0x0,0xb,0xb6,0x1,0x9,0x4,0x0,0x0,0x9a,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xb0,0xfe,0x17,0x5,0xa4,0x5,0xc4,0x6,0x26,0x1,0x4c,0x0,0x0,0x1,0x7,0x2,0x6b,0x2,0x9b,0xff,0x7b,0x0,0xb,0xb6,0x2,0x3a,0xa,0x0,0x0,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xac,0xfe,0x24,0x4,0xdc,0x4,0x4e,0x6,0x26,0x1,0x4d,0x0,0x0,0x1,0x7,0x2,0x6b,0x1,0xd2,0xff,0x88,0x0,0xb,0xb6,0x2,0x39,0x9,0x0,0x0,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x58,0x0,0x0,0x4,0x28,0x6,0x0,0x6,0x6,0x0,0x4c,0x0,0x0,0x0,0x2,0xff,0xdc,0x0,0x0,0x4,0xca,0x5,0xb0,0x0,0x18,0x0,0x1c,0x0,0x1a,0x40,0xc,0x1c,0x1b,0x18,0x0,0x0,0xb,0xc,0x2,0x72,0xe,0xb,0x8,0x0,0x3f,0x33,0x2b,0x12,0x39,0x2f,0x33,0xcc,0x32,0x30,0x31,0x41,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x15,0x21,0x35,0x1,0x4b,0x1,0x39,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xec,0x1,0x60,0xb4,0x4b,0x67,0x36,0x36,0x67,0x4b,0xfe,0xc7,0x1,0x6c,0xfd,0x25,0x3,0xbb,0x76,0xd4,0x8e,0x6b,0xb1,0x81,0x46,0x5,0xb0,0xfb,0x5e,0x3a,0x61,0x3c,0x3a,0x5a,0x34,0x2,0x4f,0xbf,0xbf,0x0,0x2,0xff,0xdc,0x0,0x0,0x4,0xca,0x5,0xb0,0x0,0x18,0x0,0x1c,0x0,0x19,0x40,0xb,0x1c,0x1b,0x18,0x0,0x0,0xb,0xc,0x2,0xe,0xb,0x8,0x0,0x3f,0x33,0x3f,0x12,0x39,0x2f,0x33,0xcc,0x32,0x30,0x31,0x41,0x21,0x32,0x4,0x16,0x15,0x14,0xe,0x2,0x23,0x21,0x11,0x21,0x11,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x21,0x1,0x15,0x21,0x35,0x1,0x4b,0x1,0x39,0xb1,0x1,0x6,0x8f,0x52,0x99,0xd6,0x85,0xfd,0xec,0x1,0x60,0xb4,0x4b,0x67,0x36,0x36,0x67,0x4b,0xfe,0xc7,0x1,0x6c,0xfd,0x25,0x3,0xbb,0x76,0xd4,0x8e,0x6b,0xb1,0x81,0x46,0x5,0xb0,0xfb,0x5e,0x3a,0x61,0x3c,0x3a,0x5a,0x34,0x2,0x4f,0xbf,0xbf,0x0,0x0,0x2,0xff,0xda,0x0,0x0,0x4,0x44,0x5,0xb0,0x0,0x5,0x0,0x9,0x0,0x16,0x40,0xa,0x6,0x7,0x7,0x4,0x2,0x5,0x2,0x72,0x4,0x8,0x0,0x3f,0x2b,0x32,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x4,0x44,0xfd,0x87,0xfe,0xa2,0x2,0x48,0xfd,0x25,0x5,0xb0,0xfe,0xf1,0xfb,0x5f,0x5,0xb0,0xfd,0x9f,0xbf,0xbf,0x0,0x2,0xff,0xaa,0x0,0x0,0x3,0x54,0x4,0x3a,0x0,0x5,0x0,0x9,0x0,0x16,0x40,0xa,0x9,0x8,0x8,0x4,0x2,0x5,0x6,0x72,0x4,0xa,0x0,0x3f,0x2b,0x32,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x11,0x1,0x15,0x21,0x35,0x3,0x54,0xfe,0x56,0xfe,0xaf,0x2,0x2c,0xfd,0x25,0x4,0x3a,0xfe,0xfc,0xfc,0xca,0x4,0x3a,0xfe,0x43,0xbf,0xbf,0x0,0x4,0xff,0xc9,0x0,0x0,0x5,0x59,0x5,0xb0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x2b,0x40,0x15,0xc,0xb,0xb,0x7,0x7,0x6,0x10,0x11,0x6,0x11,0x6,0x11,0x2,0x9,0x3,0x2,0x72,0xa,0x2,0x8,0x72,0x0,0x2b,0x32,0x2b,0x32,0x11,0x39,0x39,0x2f,0x2f,0x11,0x33,0x11,0x33,0x12,0x39,0x11,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x21,0x1,0x21,0x3,0x33,0x1,0x13,0x1,0x37,0x1,0x1,0x15,0x21,0x35,0x1,0xdf,0xfe,0xa2,0x4,0xa6,0xfd,0xf5,0xfe,0x86,0x2a,0xef,0x1,0x18,0x3c,0xfe,0xab,0xff,0x1,0xf4,0xfd,0x4b,0xfd,0x25,0x5,0xb0,0xfa,0x50,0x5,0xb0,0xfc,0x90,0x1,0x3d,0x2,0x33,0xfa,0x50,0x2,0x7d,0xeb,0xfc,0x98,0x5,0x11,0xbf,0xbf,0x0,0x4,0xff,0xb7,0x0,0x0,0x4,0x7c,0x6,0x0,0x0,0x3,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0x2d,0x40,0x17,0x4,0x6,0x72,0xc,0xb,0xb,0x7,0x7,0x6,0x10,0x11,0x6,0x11,0x6,0x11,0x2,0x3,0x0,0x72,0xa,0x2,0xa,0x72,0x0,0x2b,0x32,0x2b,0x11,0x39,0x39,0x2f,0x2f,0x11,0x33,0x11,0x33,0x12,0x39,0x11,0x33,0x2b,0x30,0x31,0x41,0x11,0x21,0x11,0x1,0x1,0x21,0x27,0x21,0x13,0x13,0x1,0x25,0x1,0x1,0x15,0x21,0x35,0x1,0xc6,0xfe,0xaf,0x3,0xe9,0xfe,0x4c,0xfe,0xca,0x95,0x1,0x1f,0xdc,0x21,0xfe,0xe8,0x1,0x4,0x1,0x95,0xfe,0x16,0xfd,0x25,0x6,0x0,0xfa,0x0,0x6,0x0,0xfe,0x3a,0xfd,0x74,0xff,0x1,0x8d,0xfb,0xc6,0x1,0xed,0xb1,0xfd,0x62,0x5,0x76,0xbf,0xbf,0x0,0x2,0xff,0xfc,0x0,0x0,0x5,0xa,0x5,0xb0,0x0,0x8,0x0,0xc,0x0,0x1d,0x40,0xf,0xc,0x1,0x4,0x7,0x3,0xb,0xb,0x6,0x3,0x8,0x2,0x72,0x6,0x8,0x72,0x0,0x2b,0x2b,0x32,0x11,0x39,0x2f,0x17,0x39,0x33,0x30,0x31,0x49,0x2,0x21,0x1,0x11,0x21,0x11,0x1,0x1,0x15,0x21,0x35,0x1,0x77,0x1,0xc,0x1,0xd,0x1,0x7a,0xfe,0x2c,0xfe,0x9b,0xfe,0x2b,0x4,0x0,0xfd,0x25,0x5,0xb0,0xfd,0x88,0x2,0x78,0xfc,0x5b,0xfd,0xf5,0x2,0xb,0x3,0xa5,0xfd,0x10,0xbf,0xbf,0x0,0x0,0x4,0x0,0x1,0xfe,0x5f,0x4,0x18,0x4,0x3a,0x0,0x3,0x0,0x8,0x0,0xd,0x0,0x11,0x0,0x17,0x40,0xb,0x11,0x10,0x10,0x2,0x5,0xd,0x6,0x72,0x2,0xe,0x72,0x0,0x2b,0x2b,0x32,0x12,0x39,0x2f,0x33,0x30,0x31,0x65,0x11,0x21,0x11,0x37,0x13,0x21,0x1,0x23,0x3,0x13,0x13,0x23,0x1,0x1,0x15,0x21,0x35,0x2,0xb4,0xfe,0xae,0x97,0xbc,0x1,0x63,0xfe,0xa0,0xe5,0x6e,0xc6,0x1a,0xe5,0xfe,0xa1,0x3,0x80,0xfd,0x25,0x46,0xfe,0x19,0x1,0xe7,0xc8,0x3,0x2c,0xfb,0xc6,0x4,0x3a,0xfc,0xcc,0xfe,0xfa,0x4,0x3a,0xfc,0x99,0xbf,0xbf,0x0,0x2,0x0,0x4,0x0,0x0,0x5,0x17,0x5,0xb0,0x0,0xb,0x0,0xf,0x0,0x1f,0x40,0xf,0xf,0x7,0x5,0x1,0x4,0xa,0x3,0xe,0xe,0x9,0x5,0x3,0x0,0x2,0x72,0x0,0x2b,0x32,0x2f,0x33,0x39,0x2f,0x17,0x39,0x12,0x39,0x33,0x30,0x31,0x41,0x13,0x13,0x21,0x1,0x1,0x21,0x3,0x3,0x21,0x9,0x2,0x15,0x21,0x35,0x1,0xa0,0xee,0xee,0x1,0x90,0xfe,0x6a,0x1,0xa1,0xfe,0x6c,0xf5,0xf5,0xfe,0x6b,0x1,0xa2,0xfe,0x69,0x3,0xef,0xfd,0x25,0x5,0xb0,0xfe,0x1c,0x1,0xe4,0xfd,0x2e,0xfd,0x22,0x1,0xed,0xfe,0x13,0x2,0xde,0x2,0xd2,0xfd,0x9a,0xbf,0xbf,0x0,0x2,0x0,0xc,0x0,0x0,0x4,0x1f,0x4,0x3a,0x0,0xb,0x0,0xf,0x0,0x1f,0x40,0xf,0xf,0x7,0x5,0x1,0xa,0x4,0x3,0xe,0xe,0x9,0x5,0x3,0x0,0x6,0x72,0x0,0x2b,0x32,0x2f,0x33,0x39,0x2f,0x17,0x39,0x12,0x39,0x33,0x30,0x31,0x41,0x13,0x13,0x21,0x1,0x1,0x21,0x3,0x3,0x21,0x9,0x2,0x15,0x21,0x35,0x1,0x7d,0x98,0x9d,0x1,0x5e,0xfe,0xe4,0x1,0x2b,0xfe,0x9f,0xa9,0xa8,0xfe,0x9f,0x1,0x2b,0xfe,0xe5,0x3,0x6e,0xfd,0x25,0x4,0x3a,0xfe,0xd6,0x1,0x2a,0xfd,0xf1,0xfd,0xd5,0x1,0x40,0xfe,0xc0,0x2,0x2b,0x2,0xf,0xfe,0x51,0xbf,0xbf,0xff,0xff,0x0,0x5e,0xff,0xec,0x4,0x53,0x4,0x4d,0x6,0x6,0x0,0xbf,0x0,0x0,0xff,0xff,0xff,0xe3,0x0,0x0,0x4,0x3d,0x5,0xb0,0x6,0x26,0x0,0x2a,0x0,0x0,0x1,0x7,0x2,0x40,0xff,0x59,0xfe,0x3d,0x0,0xe,0xb4,0x3,0xe,0x2,0x2,0x0,0xb8,0x1,0x8,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x56,0x2,0x42,0x5,0xd4,0x3,0x4a,0x6,0x6,0x1,0x82,0x0,0x0,0xff,0xff,0x0,0x3c,0x0,0x0,0x4,0x52,0x5,0xc5,0x6,0x6,0x0,0x16,0x0,0x0,0xff,0xff,0x0,0x30,0xff,0xec,0x4,0x52,0x5,0xc5,0x6,0x6,0x0,0x17,0x0,0x0,0xff,0xff,0x0,0x3b,0x0,0x0,0x4,0x67,0x5,0xb0,0x6,0x6,0x0,0x18,0x0,0x0,0xff,0xff,0x0,0x50,0xff,0xec,0x4,0x4b,0x5,0xb0,0x6,0x6,0x0,0x19,0x0,0x0,0xff,0xff,0x0,0x68,0xff,0xec,0x4,0x7d,0x5,0xc5,0x4,0x6,0x0,0x1a,0x14,0x0,0xff,0xff,0x0,0x69,0xff,0xec,0x4,0x61,0x5,0xc5,0x4,0x6,0x0,0x1c,0x14,0x0,0xff,0xff,0x0,0x50,0xff,0xec,0x4,0x48,0x5,0xc5,0x4,0x6,0x0,0x1d,0x0,0x0,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0x61,0x5,0xc4,0x4,0x6,0x0,0x14,0x14,0x0,0xff,0xff,0x0,0x52,0xff,0xec,0x5,0x16,0x7,0x36,0x6,0x26,0x0,0x2b,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xd2,0x1,0x36,0x0,0xb,0xb6,0x1,0x2c,0x10,0x1,0x1,0x6d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x38,0xfe,0x56,0x4,0x39,0x6,0x0,0x6,0x26,0x0,0x4b,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x36,0x0,0x0,0x0,0xb,0xb6,0x3,0x3f,0x1a,0x1,0x1,0x8c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x2f,0x7,0x36,0x6,0x26,0x0,0x32,0x0,0x0,0x1,0x7,0x0,0x44,0x1,0x14,0x1,0x36,0x0,0xb,0xb6,0x1,0xc,0x9,0x1,0x1,0x61,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x59,0x0,0x0,0x4,0x28,0x6,0x0,0x6,0x26,0x0,0x52,0x0,0x0,0x1,0x7,0x0,0x44,0x0,0x80,0x0,0x0,0x0,0xb,0xb6,0x2,0x1e,0x3,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x78,0x7,0x24,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x94,0x1,0x36,0x0,0xd,0xb7,0x4,0x3,0xe,0x3,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xc3,0xff,0xec,0x4,0x12,0x5,0xee,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xac,0x3,0xf0,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x3c,0xf,0x1,0x1,0x91,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x30,0x0,0x0,0x4,0x5c,0x7,0x24,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x5d,0x1,0x36,0x0,0xd,0xb7,0x5,0x4,0x11,0x7,0x1,0x1,0x71,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xc2,0xff,0xec,0x4,0x32,0x5,0xef,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xac,0x3,0xef,0x0,0x1,0x0,0xd,0xb7,0x2,0x1,0x2d,0xb,0x1,0x1,0x91,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xfe,0xe0,0x0,0x0,0x2,0x86,0x7,0x24,0x6,0x26,0x0,0x2d,0x0,0x0,0x1,0x7,0x0,0xac,0x3,0xd,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x5,0x3,0x1,0x1,0x71,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xfe,0xd1,0x0,0x0,0x2,0x77,0x5,0xd9,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0xac,0x2,0xfe,0xff,0xeb,0x0,0xd,0xb7,0x2,0x1,0x5,0x3,0x1,0x1,0xa3,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0x24,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x99,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x2d,0x11,0x1,0x1,0x54,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xec,0xff,0xec,0x4,0x49,0x5,0xee,0x6,0x26,0x0,0x53,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x19,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x2d,0x6,0x1,0x1,0x91,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x4,0x7,0x24,0x6,0x26,0x0,0x36,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x29,0x1,0x36,0x0,0xd,0xb7,0x3,0x2,0x1f,0x0,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x49,0x0,0x0,0x2,0xf3,0x5,0xee,0x6,0x26,0x0,0x56,0x0,0x0,0x1,0x7,0x0,0xac,0x3,0x76,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x18,0x3,0x1,0x1,0xa5,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x4e,0xff,0xec,0x4,0xe4,0x7,0x24,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x7b,0x1,0x36,0x0,0xd,0xb7,0x2,0x1,0x17,0xb,0x1,0x1,0x66,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xec,0xff,0xec,0x4,0x29,0x5,0xee,0x6,0x26,0x0,0x59,0x0,0x0,0x1,0x7,0x0,0xac,0x4,0x19,0x0,0x0,0x0,0xd,0xb7,0x3,0x2,0x1d,0x11,0x1,0x1,0xa5,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xfe,0xbe,0x0,0x0,0x5,0x76,0x6,0x41,0x4,0x26,0x0,0xd0,0x64,0x0,0x0,0x7,0x0,0xae,0xfd,0xce,0xff,0xff,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x4,0xd6,0x5,0xb0,0x6,0x26,0x0,0x26,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xa7,0x0,0xa,0x0,0xe,0xb4,0x2,0x34,0x1b,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x62,0xfe,0x7b,0x4,0x4b,0x6,0x0,0x6,0x26,0x0,0x46,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0xa,0xff,0xf6,0x0,0xe,0xb4,0x3,0x33,0x4,0x1,0x1,0xb8,0xff,0x6b,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x4,0xe6,0x5,0xb0,0x6,0x26,0x0,0x28,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x38,0x0,0xa,0x0,0xe,0xb4,0x2,0x22,0x1d,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x35,0xfe,0x85,0x4,0x20,0x6,0x0,0x6,0x26,0x0,0x48,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x95,0x0,0x0,0x0,0xe,0xb4,0x3,0x33,0x16,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0xfe,0x6,0x4,0xe6,0x5,0xb0,0x6,0x26,0x0,0x28,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x5,0xfe,0x98,0x0,0xe,0xb4,0x2,0x28,0x1d,0x1,0x1,0xb8,0xff,0x97,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x35,0xfd,0xfc,0x4,0x20,0x6,0x0,0x6,0x26,0x0,0x48,0x0,0x0,0x1,0x7,0x1,0xd4,0x1,0x62,0xfe,0x8e,0x0,0xe,0xb4,0x3,0x39,0x16,0x1,0x1,0xb8,0xff,0xa1,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x5,0x30,0x5,0xb0,0x6,0x26,0x0,0x2c,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0x32,0x0,0xa,0x0,0xe,0xb4,0x3,0xf,0xa,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x58,0xfe,0x8f,0x4,0x28,0x6,0x0,0x6,0x26,0x0,0x4c,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x9b,0x0,0xa,0x0,0xe,0xb4,0x2,0x1e,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0x0,0x0,0x5,0x33,0x7,0x36,0x6,0x26,0x0,0x2f,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x5d,0x1,0x36,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x62,0x0,0x0,0x4,0x80,0x7,0x36,0x6,0x26,0x0,0x4f,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xce,0x1,0x36,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x0,0x1b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0xba,0x5,0x33,0x5,0xb0,0x6,0x26,0x0,0x2f,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xdd,0x0,0x35,0x0,0xe,0xb4,0x3,0x11,0x2,0x1,0x1,0xb8,0xff,0xcf,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x62,0xfe,0xa4,0x4,0x80,0x6,0x1,0x6,0x26,0x0,0x4f,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x9d,0x0,0x1f,0x0,0xe,0xb4,0x3,0x11,0x2,0x1,0x1,0xb8,0xff,0xbc,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x4,0x31,0x5,0xb0,0x6,0x26,0x0,0x30,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xa7,0x0,0xa,0x0,0xe,0xb4,0x2,0xb,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x60,0xfe,0x8f,0x1,0xd6,0x6,0x0,0x6,0x26,0x0,0x50,0x0,0x0,0x1,0x7,0x0,0xad,0x3,0x70,0x0,0xa,0x0,0xe,0xb4,0x1,0x7,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x6,0x92,0x5,0xb0,0x6,0x26,0x0,0x31,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0xd7,0x0,0xa,0x0,0xe,0xb4,0x3,0x14,0x6,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x62,0xfe,0x8f,0x6,0x82,0x4,0x4e,0x6,0x26,0x0,0x51,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0xe1,0x0,0xa,0x0,0xe,0xb4,0x3,0x36,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6f,0xfe,0x85,0x5,0x2f,0x5,0xb0,0x6,0x26,0x0,0x32,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0x2e,0x0,0x0,0x0,0xe,0xb4,0x1,0xd,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x59,0xfe,0x8f,0x4,0x28,0x4,0x4e,0x6,0x26,0x0,0x52,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x9a,0x0,0xa,0x0,0xe,0xb4,0x2,0x1f,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x46,0xff,0xec,0x5,0x3f,0x7,0xcd,0x6,0x26,0x0,0x33,0x0,0x0,0x1,0x7,0x2,0x50,0x4,0xea,0x1,0x56,0x0,0xd,0xb7,0x3,0x2,0x31,0x11,0x1,0x1,0x5a,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x6f,0x0,0x0,0x4,0xe8,0x7,0x42,0x6,0x26,0x0,0x34,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x5e,0x1,0x42,0x0,0xb,0xb6,0x1,0x18,0xf,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x62,0xfe,0x60,0x4,0x4b,0x5,0xf6,0x6,0x26,0x0,0x54,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xb4,0xff,0xf6,0x0,0xb,0xb6,0x3,0x30,0x3,0x1,0x1,0x96,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x8f,0x5,0x4,0x5,0xb0,0x6,0x26,0x0,0x36,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xbc,0x0,0xa,0x0,0xe,0xb4,0x2,0x21,0x18,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x51,0xfe,0x8f,0x2,0xf3,0x4,0x4e,0x6,0x26,0x0,0x56,0x0,0x0,0x1,0x7,0x0,0xad,0x3,0x61,0x0,0xa,0x0,0xe,0xb4,0x2,0x1a,0x2,0x1,0x1,0xb8,0xff,0x80,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x40,0xfe,0x85,0x4,0xbc,0x5,0xc4,0x6,0x26,0x0,0x37,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xed,0x0,0x0,0x0,0xe,0xb4,0x1,0x3d,0x2b,0x1,0x1,0xb8,0xff,0x88,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x24,0xfe,0x7b,0x3,0xdc,0x4,0x4e,0x6,0x26,0x0,0x57,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x53,0xff,0xf6,0x0,0xe,0xb4,0x1,0x39,0x29,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x25,0xfe,0x8f,0x4,0xe6,0x5,0xb0,0x6,0x26,0x0,0x38,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xd4,0x0,0xa,0x0,0xe,0xb4,0x2,0xb,0x2,0x1,0x1,0xb8,0xff,0x75,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0xd,0xfe,0x85,0x2,0xa9,0x5,0x47,0x6,0x26,0x0,0x58,0x0,0x0,0x1,0x7,0x0,0xad,0x3,0xfc,0x0,0x0,0x0,0xe,0xb4,0x2,0x19,0x11,0x1,0x1,0xb8,0xff,0x89,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x6a,0xff,0xec,0x4,0xe4,0x7,0xcd,0x6,0x26,0x0,0x39,0x0,0x0,0x1,0x7,0x2,0x50,0x4,0xcc,0x1,0x56,0x0,0xd,0xb7,0x2,0x1,0x1b,0x0,0x1,0x1,0x6c,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xfc,0x0,0x0,0x5,0x4e,0x7,0x44,0x6,0x26,0x0,0x3a,0x0,0x0,0x1,0x7,0x0,0xa5,0x0,0xaf,0x1,0x3d,0x0,0xb,0xb6,0x2,0x18,0x9,0x1,0x1,0x76,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3,0x0,0x0,0x4,0x1d,0x5,0xf8,0x6,0x26,0x0,0x5a,0x0,0x0,0x1,0x6,0x0,0xa5,0x1d,0xf1,0x0,0xb,0xb6,0x2,0x18,0x9,0x1,0x1,0xa0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xfc,0xfe,0x8f,0x5,0x4e,0x5,0xb0,0x6,0x26,0x0,0x3a,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xfa,0x0,0xa,0x0,0xe,0xb4,0x2,0xd,0x4,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x3,0xfe,0x8f,0x4,0x1d,0x4,0x3a,0x6,0x26,0x0,0x5a,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x66,0x0,0xa,0x0,0xe,0xb4,0x2,0xd,0x4,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x16,0xfe,0x8f,0x6,0xd9,0x5,0xb0,0x6,0x26,0x0,0x3b,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0xce,0x0,0xa,0x0,0xe,0xb4,0x4,0x19,0x13,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x16,0xfe,0x8f,0x5,0xb5,0x4,0x3a,0x6,0x26,0x0,0x5b,0x0,0x0,0x1,0x7,0x0,0xad,0x5,0x41,0x0,0xa,0x0,0xe,0xb4,0x4,0x19,0x13,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x3e,0xfe,0x8f,0x4,0xb1,0x5,0xb0,0x6,0x26,0x0,0x3e,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0xd4,0x0,0xa,0x0,0xe,0xb4,0x3,0x11,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0x0,0x43,0xfe,0x8f,0x3,0xd9,0x4,0x3a,0x6,0x26,0x0,0x5e,0x0,0x0,0x1,0x7,0x0,0xad,0x4,0x65,0x0,0xa,0x0,0xe,0xb4,0x3,0x11,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34,0xff,0xff,0xfe,0x57,0xff,0xec,0x5,0x85,0x5,0xd6,0x4,0x26,0x0,0x33,0x46,0x0,0x1,0x7,0x1,0x71,0xfe,0x8,0xff,0xff,0x0,0xd,0xb7,0x3,0x2,0x2e,0x11,0x0,0x0,0x12,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0x7a,0x0,0x0,0x4,0xc7,0x5,0x1e,0x6,0x26,0x2,0x4d,0x0,0x0,0x0,0x7,0x0,0xae,0xfe,0x8a,0xfe,0xdc,0xff,0xff,0xfe,0xfa,0x0,0x0,0x4,0x3,0x5,0x21,0x4,0x26,0x2,0x42,0x3c,0x0,0x0,0x7,0x0,0xae,0xfe,0xa,0xfe,0xdf,0xff,0xff,0xfe,0xe1,0x0,0x0,0x4,0xbb,0x5,0x19,0x4,0x26,0x1,0xfe,0x3c,0x0,0x0,0x7,0x0,0xae,0xfd,0xf1,0xfe,0xd7,0xff,0xff,0xfe,0xe0,0x0,0x0,0x1,0xf6,0x5,0x21,0x4,0x26,0x1,0xfd,0x3c,0x0,0x0,0x7,0x0,0xae,0xfd,0xf0,0xfe,0xdf,0xff,0xff,0xff,0x1e,0xff,0xf0,0x4,0x99,0x5,0x1e,0x4,0x26,0x1,0xf7,0xa,0x0,0x0,0x7,0x0,0xae,0xfe,0x2e,0xfe,0xdc,0xff,0xff,0xfe,0xc4,0x0,0x0,0x4,0xa5,0x5,0x1e,0x4,0x26,0x1,0xed,0x3c,0x0,0x0,0x7,0x0,0xae,0xfd,0xd4,0xfe,0xdc,0xff,0xff,0xff,0x27,0x0,0x0,0x4,0x94,0x5,0x21,0x4,0x26,0x2,0xd,0xa,0x0,0x0,0x7,0x0,0xae,0xfe,0x37,0xfe,0xdf,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x4,0x8d,0x6,0x6,0x2,0x4d,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x3c,0x4,0x8d,0x6,0x6,0x2,0x4c,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x4,0x8d,0x6,0x6,0x2,0x42,0x0,0x0,0xff,0xff,0x0,0x2c,0x0,0x0,0x4,0x17,0x4,0x8d,0x6,0x6,0x1,0xec,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7f,0x4,0x8d,0x6,0x6,0x1,0xfe,0x0,0x0,0xff,0xff,0x0,0x68,0x0,0x0,0x1,0xba,0x4,0x8d,0x6,0x6,0x1,0xfd,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x83,0x4,0x8d,0x6,0x6,0x1,0xfb,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x5,0xb7,0x4,0x8d,0x6,0x6,0x1,0xf9,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7e,0x4,0x8d,0x6,0x6,0x1,0xf8,0x0,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x4,0x9d,0x6,0x6,0x1,0xf7,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x3f,0x4,0x8d,0x6,0x6,0x1,0xf6,0x0,0x0,0xff,0xff,0x0,0x1d,0x0,0x0,0x4,0x4a,0x4,0x8d,0x6,0x6,0x1,0xf2,0x0,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x4,0x8d,0x6,0x6,0x1,0xed,0x0,0x0,0xff,0xff,0xff,0xf1,0x0,0x0,0x4,0x70,0x4,0x8d,0x6,0x6,0x1,0xee,0x0,0x0,0xff,0xff,0xff,0x75,0x0,0x0,0x2,0xaa,0x5,0xf8,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x16,0x0,0x1e,0x0,0xd,0xb7,0x2,0x1,0xd,0x3,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x5,0xf8,0x6,0x26,0x1,0xed,0x0,0x0,0x1,0x6,0x0,0x6a,0x23,0x1e,0x0,0xd,0xb7,0x4,0x3,0x17,0x9,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xca,0x5,0xf8,0x6,0x26,0x2,0x42,0x0,0x0,0x1,0x6,0x0,0x6a,0x36,0x1e,0x0,0xd,0xb7,0x5,0x4,0x19,0x7,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xbb,0x6,0x1e,0x6,0x26,0x2,0x4,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x4,0x0,0x1e,0x0,0xb,0xb6,0x2,0x8,0x3,0x1,0x1,0x83,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x37,0xff,0xf0,0x4,0x15,0x4,0x9d,0x6,0x6,0x1,0xf3,0x0,0x0,0xff,0xff,0x0,0x68,0x0,0x0,0x1,0xba,0x4,0x8d,0x6,0x6,0x1,0xfd,0x0,0x0,0xff,0xff,0xff,0x75,0x0,0x0,0x2,0xaa,0x5,0xf8,0x6,0x26,0x1,0xfd,0x0,0x0,0x1,0x7,0x0,0x6a,0xff,0x16,0x0,0x1e,0x0,0xd,0xb7,0x2,0x1,0xd,0x3,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0x0,0x1d,0xff,0xf0,0x3,0x8f,0x4,0x8d,0x6,0x6,0x1,0xfc,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x83,0x6,0x1e,0x6,0x26,0x1,0xfb,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x6,0x0,0x1e,0x0,0xb,0xb6,0x3,0xe,0x3,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x18,0xff,0xeb,0x4,0x9b,0x6,0x20,0x6,0x26,0x2,0x1b,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0xa4,0x0,0x1e,0x0,0xb,0xb6,0x2,0x1d,0x17,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0x0,0x0,0x4,0xc7,0x4,0x8d,0x6,0x6,0x2,0x4d,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x3c,0x4,0x8d,0x6,0x6,0x2,0x4c,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xbb,0x4,0x8d,0x6,0x6,0x2,0x4,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x3,0xc7,0x4,0x8d,0x6,0x6,0x2,0x42,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x80,0x6,0x20,0x6,0x26,0x2,0x18,0x0,0x0,0x1,0x7,0x0,0xa1,0x0,0x94,0x0,0x1e,0x0,0xb,0xb6,0x3,0x11,0x8,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x5,0xb7,0x4,0x8d,0x6,0x6,0x1,0xf9,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x7f,0x4,0x8d,0x6,0x6,0x1,0xfe,0x0,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x8f,0x4,0x9d,0x6,0x6,0x1,0xf7,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x98,0x4,0x8d,0x6,0x6,0x2,0x9,0x0,0x0,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x3f,0x4,0x8d,0x6,0x6,0x1,0xf6,0x0,0x0,0xff,0xff,0x0,0x30,0xff,0xf0,0x4,0x62,0x4,0x9e,0x6,0x6,0x2,0x4b,0x0,0x0,0xff,0xff,0x0,0x1d,0x0,0x0,0x4,0x4a,0x4,0x8d,0x6,0x6,0x1,0xf2,0x0,0x0,0xff,0xff,0xff,0xf1,0x0,0x0,0x4,0x70,0x4,0x8d,0x6,0x6,0x1,0xee,0x0,0x0,0x0,0x3,0x0,0x3b,0xfe,0xd,0x4,0xd,0x4,0x9d,0x0,0x1e,0x0,0x3e,0x0,0x42,0x0,0x28,0x40,0x13,0x1f,0x1,0x2,0x2,0x3e,0x3e,0x15,0x3f,0x34,0x34,0x40,0x30,0x2a,0xb,0x72,0xf,0xb,0x15,0x7e,0x0,0x3f,0x33,0xcc,0x2b,0xcc,0xcd,0x33,0x12,0x39,0x12,0x39,0x2f,0x33,0x12,0x39,0x39,0x30,0x31,0x41,0x23,0x35,0x33,0x32,0x36,0x36,0x35,0x34,0x26,0x26,0x23,0x22,0x6,0x6,0x15,0x21,0x34,0x3e,0x2,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x25,0x33,0x32,0x1e,0x2,0x15,0x14,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x21,0x14,0x16,0x16,0x33,0x32,0x36,0x36,0x35,0x34,0x2e,0x2,0x23,0x23,0x1,0x11,0x21,0x11,0x2,0x7f,0xfc,0x97,0x36,0x3f,0x1a,0x18,0x3e,0x3a,0x1d,0x39,0x25,0xfe,0xae,0x47,0x7f,0xa9,0x62,0x79,0xb3,0x76,0x3b,0x36,0x64,0x8b,0xfe,0xae,0xfc,0x5d,0x93,0x68,0x36,0x42,0x7f,0xb8,0x77,0x60,0xae,0x86,0x4e,0x1,0x52,0x26,0x44,0x2c,0x40,0x42,0x18,0x16,0x2b,0x42,0x2c,0x8b,0x1,0x45,0xfe,0xae,0x2,0x2c,0x8d,0x1f,0x35,0x22,0x1c,0x31,0x20,0x11,0x22,0x19,0x53,0x7d,0x53,0x2a,0x2d,0x53,0x74,0x47,0x40,0x71,0x55,0x30,0x48,0x2b,0x50,0x6f,0x44,0x4f,0x7f,0x59,0x2f,0x2a,0x57,0x87,0x5c,0x20,0x2d,0x17,0x24,0x39,0x21,0x20,0x2f,0x1f,0xf,0xfe,0x65,0xfd,0xbd,0x2,0x43,0x0,0x0,0x4,0x0,0x51,0xfe,0x9c,0x5,0x75,0x4,0x8d,0x0,0x3,0x0,0x7,0x0,0xb,0x0,0xf,0x0,0x1d,0x40,0xd,0x3,0x2,0x2,0x6,0xb,0x7,0x7d,0xf,0xe,0xa,0xa,0x6,0x12,0x0,0x3f,0x33,0x10,0xce,0x33,0x3f,0x33,0x12,0x39,0x2f,0x33,0x30,0x31,0x41,0x11,0x21,0x11,0x13,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x1,0x11,0x21,0x11,0x3,0xa7,0xfd,0x82,0x7a,0xfe,0xae,0x4,0x2e,0xfe,0xb0,0x2,0x46,0xfe,0xae,0x2,0xbc,0xfe,0xfc,0x1,0x4,0x1,0xd1,0xfb,0x73,0x4,0x8d,0xfb,0x73,0x4,0x8d,0xfc,0x52,0xfd,0xbd,0x2,0x43,0x0,0x2,0x0,0x30,0xfe,0x1c,0x4,0x62,0x4,0x9e,0x0,0x27,0x0,0x2b,0x0,0x18,0x40,0xb,0x19,0x10,0x7e,0x28,0x24,0x24,0x2a,0x2a,0x5,0xb,0x72,0x0,0x2b,0x32,0x2f,0x32,0x11,0x33,0x3f,0x33,0x30,0x31,0x41,0x21,0xe,0x2,0x23,0x22,0x2e,0x2,0x35,0x35,0x34,0x3e,0x2,0x33,0x32,0x16,0x16,0x17,0x21,0x36,0x26,0x26,0x23,0x22,0xe,0x2,0x15,0x15,0x14,0x1e,0x2,0x33,0x32,0x36,0x36,0x7,0x11,0x21,0x11,0x3,0xe,0x1,0x52,0x5,0x87,0xeb,0x9b,0x82,0xc9,0x8b,0x48,0x4c,0x8d,0xc3,0x78,0xaa,0xe9,0x80,0xb,0xfe,0xaf,0x1,0x27,0x5a,0x4d,0x30,0x49,0x30,0x19,0x16,0x31,0x4e,0x37,0x3b,0x57,0x30,0x15,0xfe,0xae,0x1,0x97,0x81,0xbe,0x68,0x4f,0x96,0xd6,0x88,0x26,0x88,0xd7,0x97,0x4f,0x72,0xc4,0x7c,0x2d,0x50,0x31,0x25,0x4e,0x79,0x54,0x27,0x57,0x7b,0x4b,0x23,0x21,0x49,0xfe,0xfd,0xbd,0x2,0x43,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x4,0x8d,0x6,0x6,0x1,0xed,0x0,0x0,0xff,0xff,0x0,0x22,0xfe,0xd,0x6,0x19,0x4,0xb1,0x6,0x26,0x2,0x31,0x0,0x0,0x0,0x7,0x2,0x6b,0x3,0x31,0xff,0x71,0xff,0xff,0x0,0x51,0x0,0x0,0x4,0x80,0x5,0xca,0x6,0x26,0x2,0x18,0x0,0x0,0x1,0x7,0x0,0x70,0x0,0x54,0x0,0x18,0x0,0xb,0xb6,0x3,0xe,0x8,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x18,0xff,0xeb,0x4,0x9b,0x5,0xca,0x6,0x26,0x2,0x1b,0x0,0x0,0x1,0x6,0x0,0x70,0x64,0x18,0x0,0xb,0xb6,0x2,0x1a,0x17,0x1,0x1,0xb0,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x31,0x0,0x0,0x5,0xe2,0x4,0x8d,0x6,0x6,0x2,0xb,0x0,0x0,0xff,0xff,0x0,0x68,0xff,0xf0,0x5,0xb1,0x4,0x8d,0x4,0x26,0x1,0xfd,0x0,0x0,0x0,0x7,0x1,0xfc,0x2,0x22,0x0,0x0,0xff,0xff,0xff,0xbb,0x0,0x0,0x6,0x22,0x6,0x0,0x6,0x26,0x2,0x8e,0x0,0x0,0x1,0x7,0x0,0x75,0x2,0x4c,0x0,0x0,0x0,0xb,0xb6,0x6,0x19,0xf,0x1,0x1,0x4d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xff,0xc9,0x4,0x90,0x6,0x1e,0x6,0x26,0x2,0x90,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0x67,0x0,0x1e,0x0,0xb,0xb6,0x3,0x30,0x11,0x1,0x1,0x5b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x37,0xfd,0xfc,0x4,0x15,0x4,0x9d,0x6,0x26,0x1,0xf3,0x0,0x0,0x0,0x7,0x1,0xd4,0x1,0x66,0xfe,0x8e,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xd1,0x6,0x1e,0x6,0x26,0x1,0xef,0x0,0x0,0x1,0x7,0x0,0x44,0x1,0x23,0x0,0x1e,0x0,0xb,0xb6,0x4,0x18,0xa,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xd1,0x6,0x1e,0x6,0x26,0x1,0xef,0x0,0x0,0x1,0x7,0x0,0x75,0x1,0xf1,0x0,0x1e,0x0,0xb,0xb6,0x4,0x16,0xa,0x1,0x1,0x6b,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x16,0x0,0x0,0x5,0xd1,0x5,0xf8,0x6,0x26,0x1,0xef,0x0,0x0,0x1,0x7,0x0,0x6a,0x0,0xe9,0x0,0x1e,0x0,0xd,0xb7,0x5,0x4,0x1f,0xa,0x1,0x1,0x84,0x56,0x0,0x2b,0x34,0x34,0x0,0xff,0xff,0xff,0xf7,0x0,0x0,0x4,0x69,0x6,0x1e,0x6,0x26,0x1,0xed,0x0,0x0,0x0,0x7,0x0,0x44,0x0,0x5d,0x0,0x1e,0xff,0xff,0xff,0xfc,0xfe,0x68,0x5,0x78,0x5,0xb0,0x6,0x26,0x0,0x25,0x0,0x0,0x1,0x7,0x0,0xa4,0x1,0x88,0x0,0x9,0x0,0xb,0xb6,0x3,0xe,0x5,0x1,0x1,0x39,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x2e,0xfe,0x75,0x4,0x12,0x4,0x4e,0x6,0x26,0x0,0x45,0x0,0x0,0x1,0x7,0x0,0xa4,0x0,0x99,0x0,0x16,0x0,0xb,0xb6,0x2,0x3b,0x31,0x0,0x0,0x4d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x6f,0xfe,0x69,0x4,0x5c,0x5,0xb0,0x6,0x26,0x0,0x29,0x0,0x0,0x1,0x7,0x0,0xa4,0x1,0x52,0x0,0xa,0x0,0xb,0xb6,0x4,0x10,0x2,0x0,0x0,0x43,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0x0,0x3d,0xfe,0x5f,0x4,0x32,0x4,0x4e,0x6,0x26,0x0,0x49,0x0,0x0,0x1,0x7,0x0,0xa4,0x1,0x4,0x0,0x0,0x0,0xb,0xb6,0x1,0x2c,0x0,0x0,0x0,0x4d,0x56,0x0,0x2b,0x34,0x0,0xff,0xff,0xff,0xf3,0xfe,0x5f,0x4,0xc7,0x4,0x8d,0x6,0x26,0x2,0x4d,0x0,0x0,0x0,0x7,0x0,0xa4,0x1,0x29,0x0,0x0,0xff,0xff,0x0,0x51,0xfe,0x67,0x3,0xc7,0x4,0x8d,0x6,0x26,0x2,0x42,0x0,0x0,0x0,0x7,0x0,0xa4,0x1,0x1,0x0,0x8,0xff,0xff,0x0,0x60,0xfe,0x8f,0x1,0xd6,0x4,0x3a,0x6,0x26,0x0,0x8d,0x0,0x0,0x1,0x7,0x0,0xad,0x3,0x70,0x0,0xa,0x0,0xe,0xb4,0x1,0x7,0x2,0x1,0x1,0xb8,0xff,0x7f,0xb0,0x56,0x0,0x2b,0x34, - }; - - CONST Vector DATA_DEBUG_FRAG = { - 0x3,0x2,0x23,0x7,0x0,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1,0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0,0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0x8,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x10,0x0,0x3,0x0,0x4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x4,0x0,0x9,0x0,0x47,0x4c,0x5f,0x41,0x52,0x42,0x5f,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x5f,0x73,0x68,0x61,0x64,0x65,0x72,0x5f,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0,0x0,0x4,0x0,0xa,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x63,0x70,0x70,0x5f,0x73,0x74,0x79,0x6c,0x65,0x5f,0x6c,0x69,0x6e,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x0,0x4,0x0,0x8,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x6f,0x75,0x74,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0xd,0x0,0x0,0x0,0x74,0x65,0x78,0x53,0x61,0x6d,0x70,0x6c,0x65,0x72,0x0,0x0,0x5,0x0,0x5,0x0,0x11,0x0,0x0,0x0,0x69,0x6e,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x0,0x5,0x0,0x6,0x0,0x20,0x0,0x0,0x0,0x69,0x6e,0x56,0x65,0x72,0x74,0x65,0x78,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x20,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21,0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x19,0x0,0x9,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x3,0x0,0xb,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0xcd,0xcc,0xcc,0x3d,0x14,0x0,0x2,0x0,0x1a,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1f,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x1f,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x57,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x16,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0xb8,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0xf7,0x0,0x3,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x4,0x0,0x1b,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x1c,0x0,0x0,0x0,0xfc,0x0,0x1,0x0,0xf8,0x0,0x2,0x0,0x1d,0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, - }; - - CONST Vector DATA_DEBUG_VERT = { - 0x3,0x2,0x23,0x7,0x0,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1,0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0,0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x4,0x0,0x9,0x0,0x47,0x4c,0x5f,0x41,0x52,0x42,0x5f,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x5f,0x73,0x68,0x61,0x64,0x65,0x72,0x5f,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0,0x0,0x4,0x0,0xa,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x63,0x70,0x70,0x5f,0x73,0x74,0x79,0x6c,0x65,0x5f,0x6c,0x69,0x6e,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x0,0x4,0x0,0x8,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x9,0x0,0x0,0x0,0x53,0x70,0x72,0x69,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x6,0x0,0x6,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0x9,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x73,0x0,0x0,0x0,0x6,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x73,0x70,0x72,0x69,0x74,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x5,0x0,0x7,0x0,0xc,0x0,0x0,0x0,0x53,0x70,0x72,0x69,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x6,0x0,0x6,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0xc,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x73,0x0,0x0,0x0,0x6,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0xe,0x0,0x0,0x0,0x53,0x42,0x4f,0x5f,0x53,0x70,0x72,0x69,0x74,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x6,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x61,0x74,0x61,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0x10,0x0,0x0,0x0,0x73,0x62,0x6f,0x53,0x70,0x72,0x69,0x74,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x14,0x0,0x0,0x0,0x67,0x6c,0x5f,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x6e,0x64,0x65,0x78,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0x26,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x65,0x72,0x56,0x65,0x72,0x74,0x65,0x78,0x0,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x6,0x0,0x7,0x0,0x26,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f,0x69,0x6e,0x74,0x53,0x69,0x7a,0x65,0x0,0x0,0x0,0x0,0x6,0x0,0x7,0x0,0x26,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x67,0x6c,0x5f,0x43,0x6c,0x69,0x70,0x44,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x0,0x6,0x0,0x7,0x0,0x26,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x67,0x6c,0x5f,0x43,0x75,0x6c,0x6c,0x44,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x0,0x5,0x0,0x3,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x29,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x53,0x63,0x65,0x6e,0x65,0x0,0x6,0x0,0x6,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0,0x0,0x5,0x0,0x5,0x0,0x2b,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x53,0x63,0x65,0x6e,0x65,0x0,0x5,0x0,0x7,0x0,0x2f,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x46,0x72,0x61,0x6d,0x65,0x0,0x6,0x0,0x5,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x69,0x65,0x77,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x31,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x46,0x72,0x61,0x6d,0x65,0x0,0x5,0x0,0x5,0x0,0x3a,0x0,0x0,0x0,0x69,0x6e,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x0,0x5,0x0,0x5,0x0,0x45,0x0,0x0,0x0,0x6f,0x75,0x74,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x5,0x0,0x5,0x0,0x53,0x0,0x0,0x0,0x69,0x6e,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x0,0x5,0x0,0x6,0x0,0x57,0x0,0x0,0x0,0x6f,0x75,0x74,0x56,0x65,0x72,0x74,0x65,0x78,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x48,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x10,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x26,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x29,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x2b,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x2b,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x2f,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x31,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x31,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x3a,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x45,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x53,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x57,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21,0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x18,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1e,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1d,0x0,0x3,0x0,0xd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x0,0x4,0x0,0x25,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1e,0x0,0x6,0x0,0x26,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x27,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x27,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x29,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x2a,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x2a,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x2c,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x2f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x30,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x30,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x39,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x39,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x80,0x3f,0x20,0x0,0x4,0x0,0x42,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x44,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x44,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x4c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x39,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x42,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x41,0x0,0x6,0x0,0x16,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x8,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x1b,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x1f,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x22,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x2c,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x2c,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x92,0x0,0x5,0x0,0x8,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x92,0x0,0x5,0x0,0x8,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x0,0x7,0x0,0x7,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x91,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x42,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x43,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x41,0x0,0x6,0x0,0x4c,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x41,0x0,0x6,0x0,0x4c,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x50,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x85,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x81,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x45,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x57,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, - }; - - CONST Vector DATA_GEOMETRY_FRAG = { - 0x3,0x2,0x23,0x7,0x0,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1,0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0,0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0x8,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x10,0x0,0x3,0x0,0x4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x4,0x0,0x9,0x0,0x47,0x4c,0x5f,0x41,0x52,0x42,0x5f,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x5f,0x73,0x68,0x61,0x64,0x65,0x72,0x5f,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0,0x0,0x4,0x0,0xa,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x63,0x70,0x70,0x5f,0x73,0x74,0x79,0x6c,0x65,0x5f,0x6c,0x69,0x6e,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x0,0x4,0x0,0x8,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0x75,0x76,0x0,0x0,0x5,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x69,0x6e,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x0,0x5,0x0,0x7,0x0,0xf,0x0,0x0,0x0,0x55,0x6e,0x69,0x66,0x6f,0x72,0x6d,0x42,0x75,0x66,0x66,0x65,0x72,0x4f,0x62,0x6a,0x65,0x63,0x74,0x0,0x6,0x0,0x6,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x6c,0x69,0x70,0x70,0x65,0x64,0x48,0x0,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0xf,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x6c,0x69,0x70,0x70,0x65,0x64,0x56,0x0,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0xf,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x75,0x76,0x4f,0x66,0x66,0x73,0x65,0x74,0x0,0x0,0x0,0x0,0x6,0x0,0x7,0x0,0xf,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x63,0x6f,0x6c,0x6f,0x72,0x4f,0x76,0x65,0x72,0x6c,0x61,0x79,0x0,0x0,0x0,0x0,0x5,0x0,0x3,0x0,0x11,0x0,0x0,0x0,0x75,0x62,0x6f,0x0,0x5,0x0,0x5,0x0,0x34,0x0,0x0,0x0,0x6f,0x75,0x74,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x74,0x65,0x78,0x53,0x61,0x6d,0x70,0x6c,0x65,0x72,0x0,0x0,0x5,0x0,0x6,0x0,0x3d,0x0,0x0,0x0,0x69,0x6e,0x56,0x65,0x72,0x74,0x65,0x78,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0xf,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xf,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xf,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xf,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x34,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x3d,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21,0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1e,0x0,0x6,0x0,0xf,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x14,0x0,0x2,0x0,0x1d,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x80,0x3f,0x20,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x33,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x33,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x19,0x0,0x9,0x0,0x35,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x3,0x0,0x36,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x37,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x3c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x3c,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x41,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x46,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xcd,0xcc,0xcc,0x3d,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x81,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xab,0x0,0x5,0x0,0x1d,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xf7,0x0,0x3,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x4,0x0,0x1f,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x20,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x23,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x83,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x23,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x27,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0xf9,0x0,0x2,0x0,0x21,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x21,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xab,0x0,0x5,0x0,0x1d,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xf7,0x0,0x3,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x4,0x0,0x2b,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x2c,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x23,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x83,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x23,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x32,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0xf9,0x0,0x2,0x0,0x2d,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x2d,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x36,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x57,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x85,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x41,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x85,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x34,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x46,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0xb8,0x0,0x5,0x0,0x1d,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xf7,0x0,0x3,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x4,0x0,0x4a,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x4b,0x0,0x0,0x0,0xfc,0x0,0x1,0x0,0xf8,0x0,0x2,0x0,0x4c,0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, - }; - - CONST Vector DATA_GEOMETRY_VERT = { - 0x3,0x2,0x23,0x7,0x0,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1,0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0,0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x4,0x0,0x9,0x0,0x47,0x4c,0x5f,0x41,0x52,0x42,0x5f,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x5f,0x73,0x68,0x61,0x64,0x65,0x72,0x5f,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0,0x0,0x4,0x0,0xa,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x63,0x70,0x70,0x5f,0x73,0x74,0x79,0x6c,0x65,0x5f,0x6c,0x69,0x6e,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x0,0x4,0x0,0x8,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0xb,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x65,0x72,0x56,0x65,0x72,0x74,0x65,0x78,0x0,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x6,0x0,0x7,0x0,0xb,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f,0x69,0x6e,0x74,0x53,0x69,0x7a,0x65,0x0,0x0,0x0,0x0,0x6,0x0,0x7,0x0,0xb,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x67,0x6c,0x5f,0x43,0x6c,0x69,0x70,0x44,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x0,0x6,0x0,0x7,0x0,0xb,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x67,0x6c,0x5f,0x43,0x75,0x6c,0x6c,0x44,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x0,0x5,0x0,0x3,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x11,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x53,0x63,0x65,0x6e,0x65,0x0,0x6,0x0,0x6,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0,0x0,0x5,0x0,0x5,0x0,0x13,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x53,0x63,0x65,0x6e,0x65,0x0,0x5,0x0,0x7,0x0,0x17,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x46,0x72,0x61,0x6d,0x65,0x0,0x6,0x0,0x5,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x69,0x65,0x77,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x19,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x46,0x72,0x61,0x6d,0x65,0x0,0x5,0x0,0x7,0x0,0x1d,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x44,0x72,0x61,0x77,0x0,0x0,0x6,0x0,0x5,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x6f,0x64,0x65,0x6c,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x1f,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x44,0x72,0x61,0x77,0x0,0x0,0x5,0x0,0x5,0x0,0x25,0x0,0x0,0x0,0x69,0x6e,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x0,0x5,0x0,0x5,0x0,0x30,0x0,0x0,0x0,0x6f,0x75,0x74,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x5,0x0,0x5,0x0,0x31,0x0,0x0,0x0,0x69,0x6e,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x0,0x5,0x0,0x6,0x0,0x33,0x0,0x0,0x0,0x6f,0x75,0x74,0x56,0x65,0x72,0x74,0x65,0x78,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x47,0x0,0x3,0x0,0xb,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x11,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x17,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x19,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x19,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x1d,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x1f,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x1f,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x25,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x30,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x31,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x33,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21,0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x6,0x0,0xb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x11,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x12,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x17,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x18,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x18,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x1d,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1e,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x1e,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x24,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x24,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x80,0x3f,0x20,0x0,0x4,0x0,0x2d,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x2f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x2f,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x24,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x2d,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x92,0x0,0x5,0x0,0x10,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x92,0x0,0x5,0x0,0x10,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x0,0x7,0x0,0x7,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x91,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x2d,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x2e,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x30,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, - }; - -} - -namespace ia::iae -{ - Map> EmbeddedResources::s_resources; - - VOID EmbeddedResources::Initialize() - { - s_resources["Images/Logo.png"] = DATA_LOGO_PNG; - s_resources["Fonts/Roboto.ttf"] = DATA_ROBOTO_TTF; - s_resources["Shaders/Debug.frag"] = DATA_DEBUG_FRAG; - s_resources["Shaders/Debug.vert"] = DATA_DEBUG_VERT; - s_resources["Shaders/Geometry.frag"] = DATA_GEOMETRY_FRAG; - s_resources["Shaders/Geometry.vert"] = DATA_GEOMETRY_VERT; - } - - VOID EmbeddedResources::Terminate() - { - for(auto& t: s_resources) - t->Value.reset(); - } - - CONST Vector& EmbeddedResources::GetResource(IN CONST String& name) - { - return s_resources[name]; - } -} diff --git a/Src/IAEngine/imp/cpp/IAEngine.cpp b/Src/IAEngine/imp/cpp/IAEngine.cpp index 286b8f1..12d5c12 100644 --- a/Src/IAEngine/imp/cpp/IAEngine.cpp +++ b/Src/IAEngine/imp/cpp/IAEngine.cpp @@ -14,14 +14,15 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -#include +//#include #include #include -#include #define STB_IMAGE_IMPLEMENTATION #include +#include + namespace ia::iae { struct Resource @@ -110,7 +111,7 @@ namespace ia::iae const auto gameVersion = g_gameVersion; SDL_SetAppMetadata(g_gameName.c_str(), IA_STRINGIFY_VERSION(gameVersion).c_str(), g_gamePackageName.c_str()); - EmbeddedResources::Initialize(); + //EmbeddedResources::Initialize(); IAEngine::Initialize(); @@ -136,7 +137,7 @@ namespace ia::iae IAEngine::Terminate(); - EmbeddedResources::Terminate(); + //EmbeddedResources::Terminate(); SDL_DestroyWindow(g_windowHandle); @@ -150,14 +151,7 @@ namespace ia::iae { VOID IAEngine::Initialize() { - Renderer::Initialize(IVec2{g_designViewport.x, g_designViewport.y}); - - { // Add default texture to resources - const auto t = new Resource_Texture(); - t->Type = Resource::EType::TEXTURE; - t->Texture = 0; - g_resources.pushBack(t); - } + RDC::Initialize(IVec2{g_designViewport.x, g_designViewport.y}, g_windowHandle, g_isDebugMode); GameData::Initialize(); @@ -173,7 +167,7 @@ namespace ia::iae GameData::Terminate(); - Renderer::Terminate(); + RDC::Terminate(); for (SIZE_T i = 0; i < g_resources.size(); i++) DestroyResource(i); @@ -182,7 +176,7 @@ namespace ia::iae VOID IAEngine::Draw() { g_activeScene->OnDraw(); - Renderer::Draw(); + RDC::RenderToWindow(); } VOID IAEngine::Update() @@ -219,7 +213,7 @@ namespace ia::iae auto pixels = stbi_load(path, &w, &h, &n, STBI_rgb_alpha); if (!pixels) THROW_INVALID_DATA(path); - const auto t = Renderer::CreateTexture(pixels, w, h, tileWidth == -1 ? 1 : w / tileWidth, + const auto t = RDC::CreateImage(pixels, w, h, tileWidth == -1 ? 1 : w / tileWidth, tileHeight == -1 ? 1 : h / tileHeight); stbi_image_free(pixels); return t; @@ -238,7 +232,7 @@ namespace ia::iae { const auto t = new Resource_Texture(); t->Type = Resource::EType::TEXTURE; - t->Texture = Renderer::CreateTexture(rgbaData, width, height); + t->Texture = RDC::CreateImage(rgbaData, width, height); g_resources.pushBack(t); return (Handle) g_resources.size() - 1; } @@ -274,7 +268,7 @@ namespace ia::iae { const auto t = new Resource_Texture(); t->Type = Resource::EType::TEXTURE; - t->Texture = Renderer::CreateTexture(rgbaData, width, height, width / tileWidth, height / tileHeight); + t->Texture = RDC::CreateImage(rgbaData, width, height, width / tileWidth, height / tileHeight); g_resources.pushBack(t); return (Handle) g_resources.size() - 1; } @@ -291,7 +285,7 @@ namespace ia::iae case Resource::EType::TEXTURE: case Resource::EType::SPRITE_SHEET: - Renderer::DestroyTexture(static_cast(g_resources[resource])->Texture); + RDC::DestroyImage(static_cast(g_resources[resource])->Texture); break; case Resource::EType::SOUND: @@ -341,7 +335,7 @@ namespace ia::iae } } - Renderer::BakeTextureAtlas(atlasTextures); + RDC::CompileTextures(atlasTextures); } } // namespace ia::iae @@ -351,7 +345,7 @@ namespace ia::iae IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, IN BOOL flipV, IN Vec2 uvOffset) { const auto t = static_cast(g_resources[tileSheet]); - Renderer::DrawStaticSpriteTopLeft(t->Texture, tileIndexX, tileIndexY, position, scale, rotation, flipH, flipV, + RDC::DrawSpriteTopLeft(t->Texture, tileIndexX, tileIndexY, position, scale, rotation, flipH, flipV, uvOffset); } @@ -359,14 +353,14 @@ namespace ia::iae IN BOOL flipV, IN Vec2 uvOffset) { const auto t = static_cast(g_resources[sprite]); - Renderer::DrawDynamicSpriteTopLeft(t->Texture, 0, 0, position, scale, rotation, flipH, flipV, uvOffset); + RDC::DrawSpriteTopLeft(t->Texture, 0, 0, position, scale, rotation, flipH, flipV, uvOffset); } VOID IAEngine::DrawSprite(IN Handle spriteSheet, IN INT32 animationIndex, IN INT32 frameIndex, IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, IN BOOL flipV, IN Vec2 uvOffset) { const auto t = static_cast(g_resources[spriteSheet]); - Renderer::DrawDynamicSpriteTopLeft(t->Texture, frameIndex, animationIndex, position, scale, rotation, flipH, + RDC::DrawSpriteTopLeft(t->Texture, frameIndex, animationIndex, position, scale, rotation, flipH, flipV, uvOffset); } } // namespace ia::iae diff --git a/Src/IAEngine/imp/cpp/Renderer.cpp b/Src/IAEngine/imp/cpp/Renderer.cpp deleted file mode 100644 index 1f36e32..0000000 --- a/Src/IAEngine/imp/cpp/Renderer.cpp +++ /dev/null @@ -1,746 +0,0 @@ -// IAEngine: 2D Game Engine by IA -// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -#include - -#include - -namespace ia::iae -{ - STATIC CONSTEXPR INT32 MAX_SPRITE_COUNT = 100000; - -#pragma pack(push, 1) - - struct SpriteInstanceData - { - Mat4 Transform{1.0f}; - Vec4 TexCoords{}; - Vec4 Color{1.0f, 1.0f, 1.0f, 1.0f}; - }; - -#pragma pack(pop) - - struct TextureData - { - PUINT8 Pixels{}; - INT32 Width{}; - INT32 Height{}; - INT32 TileWidth{}; - INT32 TileHeight{}; - INT32 TileCountX{}; - INT32 TileCountY{}; - SDL_GPUTexture *BakedHandle{}; - }; -} // namespace ia::iae - -namespace ia::iae -{ - IVec2 g_screenExtent{}; - - SDL_GPUDevice *g_gpuDevice{}; - - RenderPipeline *g_debugPipeline{}; - RenderPipeline *g_geometryPipeline{}; - SDL_GPUSampler *g_linearClampSampler{}; - SDL_GPUSampler *g_linearRepeatSampler{}; - - Mat4 g_viewMatrix{1.0f}; - Vec2 g_cameraPosition{}; - Mat4 g_projectionMatrix{1.0f}; - - Geometry *g_quadGeometry; - - Vector g_texureData; - - Vector g_staticSprites; - Vector g_dynamicSprites; - - SDL_GPUBuffer *g_staticSpriteDataBuffer{}; - SDL_GPUBuffer *g_dynamicSpriteDataBuffer{}; - - SDL_GPUTransferBuffer *g_spriteDataStagingBuffer{}; - - SDL_GPUTexture *g_defaultTexture{}; - - Vec2 g_activeTextureAtlasInverseSize{}; - SDL_GPUTexture *g_activeTextureAtlas{}; - Map g_activeTextureAtlasUVMap; - - EXTERN BOOL g_isDebugMode; - EXTERN Vec2 g_designViewport; - EXTERN SDL_Window *g_windowHandle; -} // namespace ia::iae - -namespace ia::iae -{ - VOID Renderer::Initialize(IN IVec2 screenExtent) - { - g_screenExtent = screenExtent; - - InitializeGPU(); - InitializeSampler(); - InitializePipelines(); - InitializeGeometries(); - InitializeDrawData(); - InitializeTextures(); - } - - VOID Renderer::Terminate() - { - SDL_WaitForGPUIdle(g_gpuDevice); - - delete g_debugPipeline; - delete g_geometryPipeline; - - for (SIZE_T i = 0; i < g_texureData.size(); i++) - DestroyTexture(i); - - if (g_activeTextureAtlas && (g_activeTextureAtlas != g_defaultTexture)) - DestroyTexture(g_activeTextureAtlas); - - DestroyBuffer(g_staticSpriteDataBuffer); - DestroyBuffer(g_dynamicSpriteDataBuffer); - - SDL_ReleaseGPUTransferBuffer(g_gpuDevice, g_spriteDataStagingBuffer); - - SDL_ReleaseGPUSampler(g_gpuDevice, g_linearClampSampler); - SDL_ReleaseGPUSampler(g_gpuDevice, g_linearRepeatSampler); - - DestroyGeometry(g_quadGeometry); - - SDL_ReleaseWindowFromGPUDevice(g_gpuDevice, g_windowHandle); - SDL_DestroyGPUDevice(g_gpuDevice); - } - - VOID Renderer::Draw() - { - Render(); - } - - VOID Renderer::Render() - { - STATIC SDL_GPURenderPass *ActiveRenderPass{}; - STATIC SDL_GPUCommandBuffer *ActiveCommandBuffer{}; - STATIC SDL_GPUColorTargetInfo ActiveColorTargetInfo{.clear_color = SDL_FColor{0.0f, 0.0f, 0.0f, 1.0f}, - .load_op = SDL_GPU_LOADOP_CLEAR, - .store_op = SDL_GPU_STOREOP_STORE}; - - if (!(ActiveCommandBuffer = SDL_AcquireGPUCommandBuffer(g_gpuDevice))) - THROW_UNKNOWN("Failed to acquire SDL GPU command buffer: ", SDL_GetError()); - - SDL_GPUTexture *swapChainTexture{}; - if (!SDL_WaitAndAcquireGPUSwapchainTexture(ActiveCommandBuffer, g_windowHandle, &swapChainTexture, nullptr, - nullptr)) - THROW_UNKNOWN("Failed to acquire SDL GPU Swapchain texture: ", SDL_GetError()); - - if (!swapChainTexture) - return; - - ActiveColorTargetInfo.texture = swapChainTexture; - ActiveColorTargetInfo.clear_color = SDL_FColor{0.3f, 0.3f, 0.3f, 1.0f}; - ActiveRenderPass = SDL_BeginGPURenderPass(ActiveCommandBuffer, &ActiveColorTargetInfo, 1, nullptr); - - SDL_BindGPUGraphicsPipeline(ActiveRenderPass, g_debugPipeline->GetHandle()); - SDL_PushGPUVertexUniformData(ActiveCommandBuffer, 0, &g_projectionMatrix, sizeof(Mat4)); - SDL_PushGPUVertexUniformData(ActiveCommandBuffer, 1, &g_viewMatrix, sizeof(Mat4)); - SDL_GPUBufferBinding bufferBindings[] = {{.buffer = ((Geometry *) g_quadGeometry)->VertexBuffer, .offset = 0}, - {.buffer = ((Geometry *) g_quadGeometry)->IndexBuffer, .offset = 0}}; - SDL_BindGPUVertexBuffers(ActiveRenderPass, 0, &bufferBindings[0], 1); - SDL_BindGPUIndexBuffer(ActiveRenderPass, &bufferBindings[1], SDL_GPU_INDEXELEMENTSIZE_32BIT); - - SDL_GPUTextureSamplerBinding textureBinding{.texture = g_activeTextureAtlas, - .sampler = GetSampler_LinearRepeat()}; - SDL_BindGPUFragmentSamplers(ActiveRenderPass, 0, &textureBinding, 1); - - if (g_staticSprites.size()) - { - CopyToDeviceLocalBuffer(g_spriteDataStagingBuffer, g_staticSpriteDataBuffer, g_staticSprites.data(), - g_staticSprites.size() * sizeof(SpriteInstanceData)); - SDL_BindGPUVertexStorageBuffers(ActiveRenderPass, 0, &g_staticSpriteDataBuffer, 1); - SDL_DrawGPUIndexedPrimitives(ActiveRenderPass, g_quadGeometry->IndexCount, g_staticSprites.size(), 0, 0, 0); - } - - if (g_dynamicSprites.size()) - { - CopyToDeviceLocalBuffer(g_spriteDataStagingBuffer, g_dynamicSpriteDataBuffer, g_dynamicSprites.data(), - g_dynamicSprites.size() * sizeof(SpriteInstanceData)); - SDL_BindGPUVertexStorageBuffers(ActiveRenderPass, 0, &g_dynamicSpriteDataBuffer, 1); - SDL_DrawGPUIndexedPrimitives(ActiveRenderPass, g_quadGeometry->IndexCount, g_dynamicSprites.size(), 0, 0, - 0); - } - - g_staticSprites.resize(0); - g_dynamicSprites.resize(0); - - SDL_EndGPURenderPass(ActiveRenderPass); - - SDL_SubmitGPUCommandBuffer(ActiveCommandBuffer); - } - - Vec2 Renderer::GetCameraPosition() - { - return g_cameraPosition; - } - - VOID Renderer::SetCameraPosition(IN Vec2 position) - { - if B_LIKELY (g_cameraPosition == position) - return; - g_cameraPosition = position; - g_viewMatrix = glm::lookAtLH(glm::vec3{g_cameraPosition, -1.0f}, {g_cameraPosition, 0.0f}, {0.0f, 1.0f, 0.0f}); - } -} // namespace ia::iae - -namespace ia::iae -{ - Vec2 Renderer::DrawStaticSpriteTopLeft(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, - IN BOOL flipV, IN Vec2 uvOffset) - { - const auto _s = Vec2{scale.x * g_texureData[texture].TileWidth, scale.y * g_texureData[texture].TileHeight}; - Mat4 transform = glm::translate(glm::mat4(1.0f), glm::vec3{position.x, position.y, 0}); - transform = glm::rotate(transform, rotation, glm::vec3(0.0f, 0.0f, 1.0f)); - transform = glm::scale(transform, glm::vec3(_s, 1.0f)); - g_staticSprites.pushBack( - {.Transform = transform, - .TexCoords = GetTextureAtlasCoordinates(texture, tileIndexX, tileIndexY, flipH, flipV, uvOffset), - .Color = {1.0f, 1.0f, 1.0f, 1.0f}}); - return _s; - } - - Vec2 Renderer::DrawStaticSpriteCentered(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, - IN BOOL flipV, IN Vec2 uvOffset) - { - const auto _s = Vec2{scale.x * g_texureData[texture].TileWidth, scale.y * g_texureData[texture].TileHeight}; - Mat4 transform = - glm::translate(glm::mat4(1.0f), glm::vec3{position.x - _s.x / 2.0f, position.y - _s.y / 2.0f, 0}); - transform = glm::rotate(transform, rotation, glm::vec3(0.0f, 0.0f, 1.0f)); - transform = glm::scale(transform, glm::vec3(_s, 1.0f)); - g_staticSprites.pushBack( - {.Transform = transform, - .TexCoords = GetTextureAtlasCoordinates(texture, tileIndexX, tileIndexY, flipH, flipV, uvOffset), - .Color = {1.0f, 1.0f, 1.0f, 1.0f}}); - return _s; - } - - Vec2 Renderer::DrawDynamicSpriteTopLeft(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, - IN BOOL flipV, IN Vec2 uvOffset) - { - const auto _s = Vec2{scale.x * g_texureData[texture].TileWidth, scale.y * g_texureData[texture].TileHeight}; - Mat4 transform = glm::translate(glm::mat4(1.0f), glm::vec3{position.x, position.y, 0}); - transform = glm::rotate(transform, rotation, glm::vec3(0.0f, 0.0f, 1.0f)); - transform = glm::scale(transform, glm::vec3{_s, 1.0f}); - g_dynamicSprites.pushBack( - {.Transform = transform, - .TexCoords = GetTextureAtlasCoordinates(texture, tileIndexX, tileIndexY, flipH, flipV, uvOffset), - .Color = {1.0f, 1.0f, 1.0f, 1.0f}}); - return _s; - } - - Vec2 Renderer::DrawDynamicSpriteCentered(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, - IN BOOL flipV, IN Vec2 uvOffset) - { - const auto _s = Vec2{scale.x * g_texureData[texture].TileWidth, scale.y * g_texureData[texture].TileHeight}; - Mat4 transform = - glm::translate(glm::mat4(1.0f), glm::vec3{position.x - _s.x / 2.0f, position.y - _s.y / 2.0f, 0}); - transform = glm::rotate(transform, rotation, glm::vec3(0.0f, 0.0f, 1.0f)); - transform = glm::scale(transform, glm::vec3{_s, 1.0f}); - g_dynamicSprites.pushBack( - {.Transform = transform, - .TexCoords = GetTextureAtlasCoordinates(texture, tileIndexX, tileIndexY, flipH, flipV, uvOffset), - .Color = {1.0f, 1.0f, 1.0f, 1.0f}}); - return _s; - } - - Geometry *Renderer::CreateGeometry(IN CONST Vector &vertices, IN CONST Vector &indices) - { - const auto mesh = new Geometry(); - mesh->VertexBuffer = CreateDeviceLocalBuffer(SDL_GPU_BUFFERUSAGE_VERTEX, vertices.data(), - static_cast(vertices.size() * sizeof(vertices[0]))); - mesh->IndexBuffer = CreateDeviceLocalBuffer(SDL_GPU_BUFFERUSAGE_INDEX, indices.data(), - static_cast(indices.size() * sizeof(indices[0]))); - mesh->IndexCount = static_cast(indices.size()); - return mesh; - } - - VOID Renderer::DestroyGeometry(IN Geometry *geometry) - { - DestroyBuffer(geometry->VertexBuffer); - DestroyBuffer(geometry->IndexBuffer); - delete geometry; - } -} // namespace ia::iae - -namespace ia::iae -{ - Handle Renderer::CreateTexture(IN PCUINT8 rgbaData, IN INT32 width, IN INT32 height, IN INT32 tileCountX, - IN INT32 tileCountY) - { - const auto pixelDataSize = width * height * 4; - - g_texureData.pushBack({.Pixels = new UINT8[pixelDataSize], - .Width = width, - .Height = height, - .TileWidth = width / tileCountX, - .TileHeight = height / tileCountY, - .TileCountX = tileCountX, - .TileCountY = tileCountY, - .BakedHandle = nullptr}); - - ia_memcpy(g_texureData.back().Pixels, rgbaData, pixelDataSize); - - return g_texureData.size() - 1; - } - - VOID Renderer::DestroyTexture(IN Handle texture) - { - auto &t = g_texureData[texture]; - if (t.Pixels) - delete[] t.Pixels; - if (t.BakedHandle) - DestroyTexture(t.BakedHandle); - t.Pixels = nullptr; - t.BakedHandle = nullptr; - } - - VOID Renderer::BakeTexture(IN Handle texture) - { - auto &t = g_texureData[texture]; - t.BakedHandle = CreateTexture(SDL_GPU_TEXTUREUSAGE_SAMPLER | SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, t.Width, - t.Height, t.Width, t.Pixels); - } - - VOID Renderer::BakeTextureAtlas(IN CONST Vector textures) - { - if (textures.empty()) - return; - - if (g_activeTextureAtlas && (g_activeTextureAtlas != g_defaultTexture)) - DestroyTexture(g_activeTextureAtlas); - - g_activeTextureAtlasUVMap = Map(); - - INT32 atlasWidth{0}, atlasHeight{0}; - for (const auto &t : textures) - { - const auto &d = g_texureData[t]; - atlasWidth += d.Width; - if (d.Height > atlasHeight) - atlasHeight = d.Height; - } - - g_activeTextureAtlasInverseSize = {1.0f / ((FLOAT32) atlasWidth), 1.0f / ((FLOAT32) atlasHeight)}; - - const auto pixels = new UINT8[atlasWidth * atlasHeight * 4]; - - INT32 atlasCursor{0}; - for (const auto &t : textures) - { - const auto &d = g_texureData[t]; - for (INT32 y = 0; y < d.Height; y++) - ia_memcpy(&pixels[(atlasCursor + (y * atlasWidth)) * 4], &d.Pixels[y * d.Width * 4], d.Width * 4); - g_activeTextureAtlasUVMap[t] = Vec2(((FLOAT32) atlasCursor) / ((FLOAT32) atlasWidth), 0.0f); - atlasCursor += d.Width; - } - - g_activeTextureAtlas = CreateTexture(SDL_GPU_TEXTUREUSAGE_SAMPLER | SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, - atlasWidth, atlasHeight, atlasWidth, pixels); - - delete[] pixels; - } - - Vec4 Renderer::GetTextureAtlasCoordinates(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN BOOL flipH, IN BOOL flipV, IN Vec2 uvOffset) - { - const auto &d = g_texureData[texture]; - const auto &t = g_activeTextureAtlasUVMap[texture]; - const auto pX = ((tileIndexX + uvOffset.x) * ((FLOAT32) d.TileWidth)) * g_activeTextureAtlasInverseSize.x; - const auto pY = ((tileIndexY + uvOffset.y) * ((FLOAT32) d.TileHeight)) * g_activeTextureAtlasInverseSize.y; - auto texCoords = Vec4(t.x + pX, t.y + pY, d.TileWidth * g_activeTextureAtlasInverseSize.x, - d.TileHeight * g_activeTextureAtlasInverseSize.y); - if (flipH) - { - texCoords.x += texCoords.z; - texCoords.z *= -1; - } - if (flipV) - { - texCoords.y += texCoords.w; - texCoords.w *= -1; - } - return texCoords; - } -} // namespace ia::iae - -namespace ia::iae -{ - SDL_GPUTexture *Renderer::CreateTexture(IN SDL_GPUTextureUsageFlags usage, IN INT32 width, IN INT32 height, - IN INT32 stride, IN PCUINT8 rgbaData, IN SDL_GPUTextureFormat format, - IN BOOL generateMipmaps) - { - const auto mipLevels = - generateMipmaps ? ia_max((UINT32) (floor(log2(ia_max(width, height))) + 1), (UINT32) 1) : (UINT32) 1; - - STATIC Vector TMP_COLOR_BUFFER; - - SDL_GPUTextureCreateInfo createInfo{.type = SDL_GPU_TEXTURETYPE_2D, - .format = format, - .usage = usage, - .width = (UINT32) width, - .height = (UINT32) height, - .layer_count_or_depth = 1, - .num_levels = (UINT32) mipLevels, - .sample_count = SDL_GPU_SAMPLECOUNT_1}; - const auto result = SDL_CreateGPUTexture(g_gpuDevice, &createInfo); - if (!result) - { - THROW_UNKNOWN("Failed to create a SDL GPU Texture: ", SDL_GetError()); - return nullptr; - } - if (rgbaData) - { - TMP_COLOR_BUFFER.resize(width * height * 4); - - if (stride == width) - { - for (SIZE_T i = 0; i < TMP_COLOR_BUFFER.size() >> 2; i++) - { - const auto a = static_cast(rgbaData[i * 4 + 3]) / 255.0f; - TMP_COLOR_BUFFER[i * 4 + 0] = static_cast(rgbaData[i * 4 + 0] * a); - TMP_COLOR_BUFFER[i * 4 + 1] = static_cast(rgbaData[i * 4 + 1] * a); - TMP_COLOR_BUFFER[i * 4 + 2] = static_cast(rgbaData[i * 4 + 2] * a); - TMP_COLOR_BUFFER[i * 4 + 3] = rgbaData[i * 4 + 3]; - } - } - else - { - for (INT32 y = 0; y < height; y++) - { - for (INT32 x = 0; x < width; x++) - { - const auto p = &rgbaData[(x + y * stride) * 4]; - const auto a = static_cast(p[3]) / 255.0f; - TMP_COLOR_BUFFER[(x + y * width) * 4 + 0] = static_cast(p[0] * a); - TMP_COLOR_BUFFER[(x + y * width) * 4 + 1] = static_cast(p[1] * a); - TMP_COLOR_BUFFER[(x + y * width) * 4 + 2] = static_cast(p[2] * a); - TMP_COLOR_BUFFER[(x + y * width) * 4 + 3] = p[3]; - } - } - } - - SDL_GPUTransferBufferCreateInfo stagingBufferCreateInfo{.usage = SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, - .size = (UINT32) width * (UINT32) height * 4}; - const auto stagingBuffer = SDL_CreateGPUTransferBuffer(g_gpuDevice, &stagingBufferCreateInfo); - const auto mappedPtr = SDL_MapGPUTransferBuffer(g_gpuDevice, stagingBuffer, false); - SDL_memcpy(mappedPtr, TMP_COLOR_BUFFER.data(), width * height * 4); - SDL_UnmapGPUTransferBuffer(g_gpuDevice, stagingBuffer); - - auto cmdBuffer = SDL_AcquireGPUCommandBuffer(g_gpuDevice); - const auto copyPass = SDL_BeginGPUCopyPass(cmdBuffer); - - SDL_GPUTextureTransferInfo transferInfo{.transfer_buffer = stagingBuffer, .offset = 0}; - SDL_GPUTextureRegion region{.texture = result, .w = (UINT32) width, .h = (UINT32) height, .d = 1}; - SDL_UploadToGPUTexture(copyPass, &transferInfo, ®ion, false); - - SDL_EndGPUCopyPass(copyPass); - SDL_SubmitGPUCommandBuffer(cmdBuffer); - SDL_WaitForGPUIdle(g_gpuDevice); - SDL_ReleaseGPUTransferBuffer(g_gpuDevice, stagingBuffer); - - if (mipLevels > 1) - { - cmdBuffer = SDL_AcquireGPUCommandBuffer(g_gpuDevice); - SDL_GenerateMipmapsForGPUTexture(cmdBuffer, result); - SDL_SubmitGPUCommandBuffer(cmdBuffer); - SDL_WaitForGPUIdle(g_gpuDevice); - } - } - return result; - } - - SDL_GPUBuffer *Renderer::CreateDeviceLocalBuffer(IN SDL_GPUBufferUsageFlags usage, IN PCVOID data, - IN UINT32 dataSize) - { - SDL_GPUBufferCreateInfo createInfo{.usage = usage, .size = dataSize}; - const auto result = SDL_CreateGPUBuffer(g_gpuDevice, &createInfo); - if (!result) - { - THROW_UNKNOWN("Failed to create a SDL GPU Buffer: ", SDL_GetError()); - return nullptr; - } - if (data && dataSize) - CopyToDeviceLocalBuffer(result, data, dataSize); - return result; - } - - VOID Renderer::CopyToDeviceLocalBuffer(IN SDL_GPUBuffer *buffer, IN PCVOID data, IN UINT32 dataSize) - { - SDL_GPUTransferBufferCreateInfo stagingBufferCreateInfo{.usage = SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, - .size = dataSize}; - const auto stagingBuffer = SDL_CreateGPUTransferBuffer(g_gpuDevice, &stagingBufferCreateInfo); - CopyToDeviceLocalBuffer(stagingBuffer, buffer, data, dataSize); - SDL_ReleaseGPUTransferBuffer(g_gpuDevice, stagingBuffer); - } - - VOID Renderer::CopyToDeviceLocalBuffer(IN SDL_GPUTransferBuffer *stagingBuffer, IN SDL_GPUBuffer *buffer, - IN PCVOID data, IN UINT32 dataSize) - { - const auto mappedPtr = SDL_MapGPUTransferBuffer(g_gpuDevice, stagingBuffer, false); - SDL_memcpy(mappedPtr, data, dataSize); - SDL_UnmapGPUTransferBuffer(g_gpuDevice, stagingBuffer); - - const auto cmdBuffer = SDL_AcquireGPUCommandBuffer(g_gpuDevice); - const auto copyPass = SDL_BeginGPUCopyPass(cmdBuffer); - - SDL_GPUTransferBufferLocation src{.transfer_buffer = stagingBuffer, .offset = 0}; - SDL_GPUBufferRegion dst{.buffer = buffer, .offset = 0, .size = dataSize}; - SDL_UploadToGPUBuffer(copyPass, &src, &dst, false); - - SDL_EndGPUCopyPass(copyPass); - SDL_SubmitGPUCommandBuffer(cmdBuffer); - SDL_WaitForGPUIdle(g_gpuDevice); - } - - VOID Renderer::DestroyTexture(IN SDL_GPUTexture *handle) - { - if (!handle) - return; - SDL_ReleaseGPUTexture(g_gpuDevice, handle); - } - - VOID Renderer::DestroyBuffer(IN SDL_GPUBuffer *handle) - { - if (!handle) - return; - SDL_ReleaseGPUBuffer(g_gpuDevice, handle); - } - - SDL_GPUSampler *Renderer::GetSampler_LinearClamp() - { - return g_linearClampSampler; - } - - SDL_GPUSampler *Renderer::GetSampler_LinearRepeat() - { - return g_linearRepeatSampler; - } -} // namespace ia::iae - -namespace ia::iae -{ - VOID Renderer::InitializePipelines() - { - g_debugPipeline = new RenderPipeline( - RenderPipeline::StageDesc{ - .SourceData = EmbeddedResources::GetResource("Shaders/Debug.vert"), - .SamplerCount = 0, - .UniformBufferCount = 2, - .StorageBufferCount = 1, - }, - RenderPipeline::StageDesc{ - .SourceData = EmbeddedResources::GetResource("Shaders/Debug.frag"), - .SamplerCount = 1, - .UniformBufferCount = 0, - .StorageBufferCount = 0, - }, - true); - - g_geometryPipeline = new RenderPipeline( - RenderPipeline::StageDesc{ - .SourceData = EmbeddedResources::GetResource("Shaders/Geometry.vert"), - .SamplerCount = 0, - .UniformBufferCount = 3, - .StorageBufferCount = 0, - }, - RenderPipeline::StageDesc{ - .SourceData = EmbeddedResources::GetResource("Shaders/Geometry.frag"), - .SamplerCount = 1, - .UniformBufferCount = 1, - .StorageBufferCount = 0, - }, - true); - } - - RenderPipeline::RenderPipeline(IN CONST StageDesc &vertexStageDesc, IN CONST StageDesc &pixelStageDesc, - IN BOOL enableVertexBuffer) - { - SDL_GPUShader *vertexShader{}; - SDL_GPUShader *pixelShader{}; - - SDL_GPUShaderCreateInfo shaderCreateInfo = { - .entrypoint = "main", - .format = SDL_GPU_SHADERFORMAT_SPIRV, - .num_storage_textures = 0, - .num_storage_buffers = 0, - }; - - shaderCreateInfo.stage = SDL_GPU_SHADERSTAGE_VERTEX; - shaderCreateInfo.code = vertexStageDesc.SourceData.data(); - shaderCreateInfo.code_size = vertexStageDesc.SourceData.size(); - shaderCreateInfo.num_samplers = vertexStageDesc.SamplerCount; - shaderCreateInfo.num_uniform_buffers = vertexStageDesc.UniformBufferCount; - shaderCreateInfo.num_storage_buffers = vertexStageDesc.StorageBufferCount; - if (!(vertexShader = SDL_CreateGPUShader(g_gpuDevice, &shaderCreateInfo))) - THROW_UNKNOWN("Failed to create a SDL shader: ", SDL_GetError()); - - shaderCreateInfo.stage = SDL_GPU_SHADERSTAGE_FRAGMENT; - shaderCreateInfo.code = pixelStageDesc.SourceData.data(); - shaderCreateInfo.code_size = pixelStageDesc.SourceData.size(); - shaderCreateInfo.num_samplers = pixelStageDesc.SamplerCount; - shaderCreateInfo.num_uniform_buffers = pixelStageDesc.UniformBufferCount; - shaderCreateInfo.num_storage_buffers = pixelStageDesc.StorageBufferCount; - if (!(pixelShader = SDL_CreateGPUShader(g_gpuDevice, &shaderCreateInfo))) - THROW_UNKNOWN("Failed to create a SDL shader: ", SDL_GetError()); - - SDL_GPUColorTargetDescription colorTargetDesc = { - .format = SDL_GetGPUSwapchainTextureFormat(g_gpuDevice, g_windowHandle), - .blend_state = {.src_color_blendfactor = SDL_GPU_BLENDFACTOR_ONE, - .dst_color_blendfactor = SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, - .color_blend_op = SDL_GPU_BLENDOP_ADD, - .src_alpha_blendfactor = SDL_GPU_BLENDFACTOR_ONE, - .dst_alpha_blendfactor = SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, - .alpha_blend_op = SDL_GPU_BLENDOP_ADD, - .enable_blend = true, - .enable_color_write_mask = false}}; - - SDL_GPUVertexBufferDescription vertexBufferDesc = { - .slot = 0, - .pitch = sizeof(GeometryVertex), - .input_rate = SDL_GPU_VERTEXINPUTRATE_VERTEX, - .instance_step_rate = 0, - }; - - SDL_GPUVertexAttribute vertexAttributes[] = { - {.location = 0, .buffer_slot = 0, .format = SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, .offset = 0}, - {.location = 1, .buffer_slot = 0, .format = SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, .offset = sizeof(Vec2)}}; - - SDL_GPUGraphicsPipelineCreateInfo createInfo = { - .vertex_shader = vertexShader, - .fragment_shader = pixelShader, - .vertex_input_state = SDL_GPUVertexInputState{.vertex_buffer_descriptions = &vertexBufferDesc, - .num_vertex_buffers = enableVertexBuffer ? (UINT32) 1 : 0, - .vertex_attributes = vertexAttributes, - .num_vertex_attributes = enableVertexBuffer ? (UINT32) 2 : 0}, - .primitive_type = SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, - .rasterizer_state = SDL_GPURasterizerState{.fill_mode = SDL_GPU_FILLMODE_FILL, - .cull_mode = SDL_GPU_CULLMODE_NONE, - .front_face = SDL_GPU_FRONTFACE_COUNTER_CLOCKWISE, - .enable_depth_clip = true}, - .target_info = {.color_target_descriptions = &colorTargetDesc, - .num_color_targets = 1, - .has_depth_stencil_target = false}, - }; - - if (!(m_handle = SDL_CreateGPUGraphicsPipeline(g_gpuDevice, &createInfo))) - THROW_UNKNOWN("Failed to create a SDL graphics pipeline: ", SDL_GetError()); - - SDL_ReleaseGPUShader(g_gpuDevice, pixelShader); - SDL_ReleaseGPUShader(g_gpuDevice, vertexShader); - } - - RenderPipeline::~RenderPipeline() - { - SDL_ReleaseGPUGraphicsPipeline(g_gpuDevice, m_handle); - } -} // namespace ia::iae - -namespace ia::iae -{ - VOID Renderer::InitializeGPU() - { - SDL_PropertiesID deviceCreateProps = SDL_CreateProperties(); - SDL_SetStringProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING, nullptr); - SDL_SetBooleanProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN, true); - SDL_SetBooleanProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN, g_isDebugMode); - SDL_SetBooleanProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_FEATURE_DEPTH_CLAMPING_BOOLEAN, false); - if (!(g_gpuDevice = SDL_CreateGPUDeviceWithProperties(deviceCreateProps))) - THROW_UNKNOWN("Failed to create the SDL GPU Device: ", SDL_GetError()); - SDL_DestroyProperties(deviceCreateProps); - - if (!SDL_ClaimWindowForGPUDevice(g_gpuDevice, g_windowHandle)) - THROW_UNKNOWN("Failed to initialize SDL GPU for the window: ", SDL_GetError()); - - SDL_SetGPUSwapchainParameters(g_gpuDevice, g_windowHandle, SDL_GPU_SWAPCHAINCOMPOSITION_SDR, - SDL_GPU_PRESENTMODE_VSYNC); - } - - VOID Renderer::InitializeSampler() - { - SDL_GPUSamplerCreateInfo createInfo{.min_filter = SDL_GPU_FILTER_NEAREST, - .mag_filter = SDL_GPU_FILTER_NEAREST, - .mipmap_mode = SDL_GPU_SAMPLERMIPMAPMODE_LINEAR, - .address_mode_u = SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE, - .address_mode_v = SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE, - .address_mode_w = SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE, - .enable_anisotropy = false}; - - g_linearClampSampler = SDL_CreateGPUSampler(g_gpuDevice, &createInfo); - - createInfo.min_filter = SDL_GPU_FILTER_NEAREST; - createInfo.mag_filter = SDL_GPU_FILTER_NEAREST; - createInfo.mipmap_mode = SDL_GPU_SAMPLERMIPMAPMODE_LINEAR; - createInfo.address_mode_u = SDL_GPU_SAMPLERADDRESSMODE_REPEAT, - createInfo.address_mode_v = SDL_GPU_SAMPLERADDRESSMODE_REPEAT, - createInfo.address_mode_w = SDL_GPU_SAMPLERADDRESSMODE_REPEAT, - - g_linearRepeatSampler = SDL_CreateGPUSampler(g_gpuDevice, &createInfo); - } - - VOID Renderer::InitializeGeometries() - { - g_quadGeometry = Renderer::CreateGeometry( - { - {glm::vec2{0, 1}, glm::vec2{0, 1}}, - {glm::vec2{1, 1}, glm::vec2{1, 1}}, - {glm::vec2{1, 0}, glm::vec2{1, 0}}, - {glm::vec2{0, 0}, glm::vec2{0, 0}}, - }, - {0, 1, 2, 2, 3, 0}); - } - - VOID Renderer::InitializeDrawData() - { - g_staticSpriteDataBuffer = CreateDeviceLocalBuffer(SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ, nullptr, - sizeof(SpriteInstanceData) * MAX_SPRITE_COUNT); - g_dynamicSpriteDataBuffer = CreateDeviceLocalBuffer(SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ, nullptr, - sizeof(SpriteInstanceData) * MAX_SPRITE_COUNT); - - SDL_GPUTransferBufferCreateInfo stagingBufferCreateInfo{.usage = SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, - .size = sizeof(SpriteInstanceData) * MAX_SPRITE_COUNT}; - g_spriteDataStagingBuffer = SDL_CreateGPUTransferBuffer(g_gpuDevice, &stagingBufferCreateInfo); - - g_projectionMatrix = - glm::orthoLH(0.0f, (FLOAT32) g_screenExtent.x, (FLOAT32) g_screenExtent.y, 0.0f, -1.0f, 1.0f); - SetCameraPosition({}); - } - - VOID Renderer::InitializeTextures() - { - { // Create Default Texture - const auto pixels = new UINT8[100 * 100 * 4]; - ia_memset(pixels, 0xFF, 100 * 100 * 4); - const auto t = CreateTexture(pixels, 100, 100); - BakeTexture(t); - g_defaultTexture = g_texureData[t].BakedHandle; - delete[] pixels; - } - - g_activeTextureAtlas = g_defaultTexture; - } -} // namespace ia::iae \ No newline at end of file diff --git a/Src/IAEngine/imp/cpp/Scene.cpp b/Src/IAEngine/imp/cpp/Scene.cpp index 5e4bb27..69bfc8c 100644 --- a/Src/IAEngine/imp/cpp/Scene.cpp +++ b/Src/IAEngine/imp/cpp/Scene.cpp @@ -15,7 +15,6 @@ // along with this program. If not, see . #include -#include namespace ia::iae { @@ -65,6 +64,6 @@ namespace ia::iae VOID Scene::OnUpdate(IN FLOAT32 deltaTime) { - Renderer::SetCameraPosition(m_cameraPosition); + //Renderer::SetCameraPosition(m_cameraPosition); } } // namespace ia::iae diff --git a/Src/IAEngine/imp/hpp/Renderer.hpp b/Src/IAEngine/imp/hpp/Renderer.hpp deleted file mode 100644 index a64e3cc..0000000 --- a/Src/IAEngine/imp/hpp/Renderer.hpp +++ /dev/null @@ -1,130 +0,0 @@ -// IAEngine: 2D Game Engine by IA -// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -#pragma once - -#include -#include - -namespace ia::iae -{ - struct GeometryVertex - { - Vec2 Position; - Vec2 TexCoords; - }; - - struct Geometry - { - INT32 IndexCount{}; - SDL_GPUBuffer *IndexBuffer; - SDL_GPUBuffer *VertexBuffer; - }; - - class RenderPipeline - { - public: - struct StageDesc - { - Vector SourceData{}; - UINT32 SamplerCount{}; - UINT32 UniformBufferCount{}; - UINT32 StorageBufferCount{}; - }; - - public: - RenderPipeline(IN CONST StageDesc &vertexStageDesc, IN CONST StageDesc &pixelStageDesc, - IN BOOL enableVertexBuffer); - ~RenderPipeline(); - - SDL_GPUGraphicsPipeline *GetHandle() CONST - { - return m_handle; - } - - private: - SDL_GPUGraphicsPipeline *m_handle{}; - }; - - class Renderer - { - public: - STATIC Vec2 GetCameraPosition(); - STATIC VOID SetCameraPosition(IN Vec2 position); - - public: - STATIC Vec2 DrawStaticSpriteTopLeft(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH = false, IN BOOL flipV = false, IN Vec2 uvOffset = {}); - STATIC Vec2 DrawStaticSpriteCentered(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH = false, IN BOOL flipV = false, IN Vec2 uvOffset = {}); - - STATIC Vec2 DrawDynamicSpriteTopLeft(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH = false, IN BOOL flipV = false, IN Vec2 uvOffset = {}); - STATIC Vec2 DrawDynamicSpriteCentered(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, - IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH = false, IN BOOL flipV = false, IN Vec2 uvOffset = {}); - - STATIC VOID ResizeScreen(IN IVec2 newSize); - - public: - STATIC Handle CreateTexture(IN PCUINT8 rgbaData, IN INT32 width, IN INT32 height, IN INT32 tileCountX = 1, - IN INT32 tileCountY = 1); - STATIC VOID DestroyTexture(IN Handle texture); - - STATIC VOID BakeTexture(IN Handle texture); - - STATIC VOID BakeTextureAtlas(IN CONST Vector textures); - - private: - STATIC SDL_GPUTexture *CreateTexture(IN SDL_GPUTextureUsageFlags usage, IN INT32 width, IN INT32 height, - IN INT32 stride, IN PCUINT8 rgbaData = nullptr, - IN SDL_GPUTextureFormat format = SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM, - IN BOOL generateMipmaps = false); - STATIC SDL_GPUBuffer *CreateDeviceLocalBuffer(IN SDL_GPUBufferUsageFlags usage, IN PCVOID data, - IN UINT32 dataSize); - - STATIC VOID DestroyTexture(IN SDL_GPUTexture *handle); - STATIC VOID DestroyBuffer(IN SDL_GPUBuffer *handle); - - STATIC VOID CopyToDeviceLocalBuffer(IN SDL_GPUBuffer *buffer, IN PCVOID data, IN UINT32 dataSize); - STATIC VOID CopyToDeviceLocalBuffer(IN SDL_GPUTransferBuffer *stagingBuffer, IN SDL_GPUBuffer *buffer, - IN PCVOID data, IN UINT32 dataSize); - - STATIC SDL_GPUSampler *GetSampler_LinearClamp(); - STATIC SDL_GPUSampler *GetSampler_LinearRepeat(); - - private: - STATIC VOID InitializeGPU(); - STATIC VOID InitializeSampler(); - STATIC VOID InitializePipelines(); - STATIC VOID InitializeGeometries(); - STATIC VOID InitializeDrawData(); - STATIC VOID InitializeTextures(); - - STATIC Geometry *CreateGeometry(IN CONST Vector &vertices, IN CONST Vector &indices); - STATIC VOID DestroyGeometry(IN Geometry *geometry); - - STATIC VOID Render(); - - STATIC Vec4 GetTextureAtlasCoordinates(IN Handle texture, IN INT32 tileIndexX, IN INT32 tileIndexY, IN BOOL flipH, IN BOOL flipV, IN Vec2 uvOffset); - - private: - STATIC VOID Initialize(IN IVec2 screenExtent); - STATIC VOID Terminate(); - STATIC VOID Draw(); - - friend class IAEngine; - }; -} // namespace ia::iae diff --git a/Src/IAEngine/inc/IAEngine/Base.hpp b/Src/IAEngine/inc/IAEngine/Base.hpp index c155628..1ea2e87 100644 --- a/Src/IAEngine/inc/IAEngine/Base.hpp +++ b/Src/IAEngine/inc/IAEngine/Base.hpp @@ -16,20 +16,7 @@ #pragma once -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include +#include #define IAE_LOG_TAG "IAE" @@ -40,14 +27,4 @@ namespace ia::iae { - using Handle = INT64; - STATIC CONSTEXPR Handle INVALID_HANDLE = -1; - - using Vec2 = glm::vec2; - using Vec3 = glm::vec3; - using Vec4 = glm::vec4; - using IVec2 = glm::ivec2; - using IVec3 = glm::ivec3; - using IVec4 = glm::ivec4; - using Mat4 = glm::mat4; } diff --git a/Src/RenderCore/CMakeLists.txt b/Src/RenderCore/CMakeLists.txt new file mode 100644 index 0000000..cbf2914 --- /dev/null +++ b/Src/RenderCore/CMakeLists.txt @@ -0,0 +1,16 @@ +set(SRC_FILES + "imp/cpp/Device.cpp" + "imp/cpp/Buffer.cpp" + "imp/cpp/Texture.cpp" + "imp/cpp/Pipeline.cpp" + "imp/cpp/RenderCore.cpp" + "imp/cpp/TextureAtlas.cpp" + "imp/cpp/EmbeddedResources.cpp" +) + +add_library(RenderCore STATIC ${SRC_FILES}) + +target_include_directories(RenderCore PUBLIC inc) +target_include_directories(RenderCore PRIVATE imp/hpp) + +target_link_libraries(RenderCore PUBLIC IACore SDL3::SDL3 glm::glm) diff --git a/Resources/Shaders/Debug.frag b/Src/RenderCore/Resources/Shaders/DynamicSprite.frag similarity index 82% rename from Resources/Shaders/Debug.frag rename to Src/RenderCore/Resources/Shaders/DynamicSprite.frag index 07baa45..38bd624 100644 --- a/Resources/Shaders/Debug.frag +++ b/Src/RenderCore/Resources/Shaders/DynamicSprite.frag @@ -10,7 +10,7 @@ layout(set = 2, binding = 0) uniform sampler2D texSampler; void main() { - outColor = texture(texSampler, inTexCoord); + outColor = texture(texSampler, inTexCoord) * inVertexColor; if(outColor.w < 0.1) discard; } \ No newline at end of file diff --git a/Resources/Shaders/Debug.vert b/Src/RenderCore/Resources/Shaders/DynamicSprite.vert similarity index 100% rename from Resources/Shaders/Debug.vert rename to Src/RenderCore/Resources/Shaders/DynamicSprite.vert diff --git a/Src/RenderCore/imp/cpp/Buffer.cpp b/Src/RenderCore/imp/cpp/Buffer.cpp new file mode 100644 index 0000000..75290ed --- /dev/null +++ b/Src/RenderCore/imp/cpp/Buffer.cpp @@ -0,0 +1,124 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +namespace ia::iae +{ + RDC_Buffer::RDC_Buffer() : m_type(EType::NONE), m_size(0) + { + } + + RDC_Buffer::RDC_Buffer(IN EType type, IN UINT32 size) : m_type(type), m_size(size) + { + } + + RDC_StagingBuffer::RDC_StagingBuffer(IN UINT32 size) : RDC_Buffer(EType::NONE, size) + { + SDL_GPUTransferBufferCreateInfo stagingBufferCreateInfo{.usage = SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + .size = size}; + m_buffer = SDL_CreateGPUTransferBuffer(RDC_Device::GetHandle(), &stagingBufferCreateInfo); + } + + RDC_StagingBuffer::~RDC_StagingBuffer() + { + SDL_ReleaseGPUTransferBuffer(RDC_Device::GetHandle(), m_buffer); + } + + VOID RDC_StagingBuffer::CopyFrom(IN PCVOID data, IN UINT32 size) + { + IA_ASSERT(size <= m_size); + const auto mappedPtr = SDL_MapGPUTransferBuffer(RDC_Device::GetHandle(), m_buffer, false); + SDL_memcpy(mappedPtr, data, size); + SDL_UnmapGPUTransferBuffer(RDC_Device::GetHandle(), m_buffer); + } + + RDC_DeviceLocalBuffer::RDC_DeviceLocalBuffer() + { + } + + RDC_DeviceLocalBuffer::RDC_DeviceLocalBuffer(IN RDC_Buffer::EType type, IN UINT32 size) : RDC_Buffer(type, size) + { + SDL_GPUBufferCreateInfo createInfo{.size = size}; + switch (type) + { + case RDC_Buffer::EType::NONE: + THROW_INVALID_DATA(); + break; + + case RDC_Buffer::EType::VERTEX: + createInfo.usage = SDL_GPU_BUFFERUSAGE_VERTEX; + break; + + case RDC_Buffer::EType::INDEX: + createInfo.usage = SDL_GPU_BUFFERUSAGE_INDEX; + break; + + case RDC_Buffer::EType::STORAGE: + createInfo.usage = SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ; + break; + } + m_buffer = SDL_CreateGPUBuffer(RDC_Device::GetHandle(), &createInfo); + } + + RDC_DeviceLocalBuffer::~RDC_DeviceLocalBuffer() + { + if (m_buffer) + SDL_ReleaseGPUBuffer(RDC_Device::GetHandle(), m_buffer); + } + + VOID RDC_DeviceLocalBuffer::CopyFrom(IN RDC_StagingBuffer *stagingBuffer, IN UINT32 size) + { + CopyFrom(stagingBuffer->m_buffer, size); + } + + VOID RDC_DeviceLocalBuffer::CopyFrom(IN SDL_GPUTransferBuffer *stagingBuffer, IN UINT32 size) + { + const auto cmdBuffer = SDL_AcquireGPUCommandBuffer(RDC_Device::GetHandle()); + const auto copyPass = SDL_BeginGPUCopyPass(cmdBuffer); + + SDL_GPUTransferBufferLocation src{.transfer_buffer = stagingBuffer, .offset = 0}; + SDL_GPUBufferRegion dst{.buffer = m_buffer, .offset = 0, .size = size}; + SDL_UploadToGPUBuffer(copyPass, &src, &dst, false); + + SDL_EndGPUCopyPass(copyPass); + SDL_SubmitGPUCommandBuffer(cmdBuffer); + SDL_WaitForGPUIdle(RDC_Device::GetHandle()); + } + + RDC_HostVisibleBuffer::RDC_HostVisibleBuffer(IN RDC_Buffer::EType type, IN UINT32 size) + : RDC_DeviceLocalBuffer(type, size) + { + SDL_GPUTransferBufferCreateInfo stagingBufferCreateInfo{.usage = SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + .size = size}; + m_stagingBuffer = SDL_CreateGPUTransferBuffer(RDC_Device::GetHandle(), &stagingBufferCreateInfo); + } + + RDC_HostVisibleBuffer::~RDC_HostVisibleBuffer() + { + SDL_ReleaseGPUTransferBuffer(RDC_Device::GetHandle(), m_stagingBuffer); + } + + VOID RDC_HostVisibleBuffer::CopyFrom(IN PCVOID data, IN UINT32 size) + { + IA_ASSERT(size <= m_size); + const auto mappedPtr = SDL_MapGPUTransferBuffer(RDC_Device::GetHandle(), m_stagingBuffer, false); + SDL_memcpy(mappedPtr, data, size); + SDL_UnmapGPUTransferBuffer(RDC_Device::GetHandle(), m_stagingBuffer); + + RDC_DeviceLocalBuffer::CopyFrom(m_stagingBuffer, size); + } +} // namespace ia::iae diff --git a/Src/RenderCore/imp/cpp/Device.cpp b/Src/RenderCore/imp/cpp/Device.cpp new file mode 100644 index 0000000..82a045d --- /dev/null +++ b/Src/RenderCore/imp/cpp/Device.cpp @@ -0,0 +1,108 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include +#include + +namespace ia::iae +{ + struct Geometry + { + INT32 IndexCount{}; + RDC_DeviceLocalBuffer IndexBuffer; + RDC_DeviceLocalBuffer VertexBuffer; + }; +} // namespace ia::iae + +namespace ia::iae +{ + SDL_GPUDevice *RDC_Device::s_handle{}; + SDL_Window *RDC_Device::s_windowHandle{}; + + VOID RDC_Device::Initialize(IN SDL_Window *windowHandle, IN BOOL isDebugMode) + { + s_windowHandle = windowHandle; + + SDL_PropertiesID deviceCreateProps = SDL_CreateProperties(); + SDL_SetStringProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING, nullptr); + SDL_SetBooleanProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN, true); + SDL_SetBooleanProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN, isDebugMode); + SDL_SetBooleanProperty(deviceCreateProps, SDL_PROP_GPU_DEVICE_CREATE_FEATURE_DEPTH_CLAMPING_BOOLEAN, false); + if (!(s_handle = SDL_CreateGPUDeviceWithProperties(deviceCreateProps))) + THROW_UNKNOWN("Failed to create the SDL GPU Device: ", SDL_GetError()); + SDL_DestroyProperties(deviceCreateProps); + + if (!SDL_ClaimWindowForGPUDevice(s_handle, windowHandle)) + THROW_UNKNOWN("Failed to initialize SDL GPU for the window: ", SDL_GetError()); + + SDL_SetGPUSwapchainParameters(s_handle, windowHandle, SDL_GPU_SWAPCHAINCOMPOSITION_SDR, + SDL_GPU_PRESENTMODE_VSYNC); + } + + VOID RDC_Device::Terminate() + { + WaitForIdle(); + + SDL_ReleaseWindowFromGPUDevice(s_handle, s_windowHandle); + SDL_DestroyGPUDevice(s_handle); + } + + VOID RDC_Device::WaitForIdle() + { + SDL_WaitForGPUIdle(s_handle); + } + + Handle RDC_Device::CreateGeometry(IN CONST Vector &vertices, IN CONST Vector &indices) + { + const auto geometry = new Geometry(); + + const auto vertexDataSize = static_cast(vertices.size() * sizeof(vertices[0])); + const auto indexDataSize = static_cast(indices.size() * sizeof(indices[0])); + + std::construct_at(&geometry->VertexBuffer, RDC_Buffer::EType::VERTEX, vertexDataSize); + std::construct_at(&geometry->IndexBuffer, RDC_Buffer::EType::INDEX, indexDataSize); + + const auto stagingBuffer = new RDC_StagingBuffer(ia_max(vertexDataSize, indexDataSize)); + stagingBuffer->CopyFrom(vertices.data(), vertexDataSize); + geometry->VertexBuffer.CopyFrom(stagingBuffer, vertexDataSize); + stagingBuffer->CopyFrom(indices.data(), indexDataSize); + geometry->IndexBuffer.CopyFrom(stagingBuffer, indexDataSize); + delete stagingBuffer; + + geometry->IndexCount = static_cast(indices.size()); + return (Handle) geometry; + } + + VOID RDC_Device::DestroyGeometry(IN Handle _geometry) + { + const auto geometry = (Geometry *) _geometry; + delete geometry; + } + + VOID RDC_Device::BindGeometry(IN SDL_GPURenderPass* renderPass, IN Handle _geometry) + { + const auto geometry = (Geometry *) _geometry; + SDL_GPUBufferBinding bufferBindings[] = {{.buffer = geometry->VertexBuffer.GetHandle(), .offset = 0}, + {.buffer = geometry->IndexBuffer.GetHandle(), .offset = 0}}; + SDL_BindGPUVertexBuffers(renderPass, 0, &bufferBindings[0], 1); + SDL_BindGPUIndexBuffer(renderPass, &bufferBindings[1], SDL_GPU_INDEXELEMENTSIZE_32BIT); + } + + SDL_GPUTextureFormat RDC_Device::GetSwapchainTextureFormat() + { + return SDL_GetGPUSwapchainTextureFormat(s_handle, s_windowHandle); + } +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/imp/cpp/EmbeddedResources.cpp b/Src/RenderCore/imp/cpp/EmbeddedResources.cpp new file mode 100644 index 0000000..e2f5fd9 --- /dev/null +++ b/Src/RenderCore/imp/cpp/EmbeddedResources.cpp @@ -0,0 +1,51 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +namespace ia::iae +{ + CONST Vector DATA_DYNAMICSPRITE_FRAG = { + 0x3,0x2,0x23,0x7,0x0,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1,0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0,0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0x8,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x10,0x0,0x3,0x0,0x4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x4,0x0,0x9,0x0,0x47,0x4c,0x5f,0x41,0x52,0x42,0x5f,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x5f,0x73,0x68,0x61,0x64,0x65,0x72,0x5f,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0,0x0,0x4,0x0,0xa,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x63,0x70,0x70,0x5f,0x73,0x74,0x79,0x6c,0x65,0x5f,0x6c,0x69,0x6e,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x0,0x4,0x0,0x8,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x6f,0x75,0x74,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0xd,0x0,0x0,0x0,0x74,0x65,0x78,0x53,0x61,0x6d,0x70,0x6c,0x65,0x72,0x0,0x0,0x5,0x0,0x5,0x0,0x11,0x0,0x0,0x0,0x69,0x6e,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x0,0x5,0x0,0x6,0x0,0x15,0x0,0x0,0x0,0x69,0x6e,0x56,0x65,0x72,0x74,0x65,0x78,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x15,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21,0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x19,0x0,0x9,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x3,0x0,0xb,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x18,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x18,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xcd,0xcc,0xcc,0x3d,0x14,0x0,0x2,0x0,0x1e,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x57,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x85,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xb8,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xf7,0x0,0x3,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x4,0x0,0x1f,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x20,0x0,0x0,0x0,0xfc,0x0,0x1,0x0,0xf8,0x0,0x2,0x0,0x21,0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, + }; + + CONST Vector DATA_DYNAMICSPRITE_VERT = { + 0x3,0x2,0x23,0x7,0x0,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1,0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0,0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x4,0x0,0x9,0x0,0x47,0x4c,0x5f,0x41,0x52,0x42,0x5f,0x73,0x65,0x70,0x61,0x72,0x61,0x74,0x65,0x5f,0x73,0x68,0x61,0x64,0x65,0x72,0x5f,0x6f,0x62,0x6a,0x65,0x63,0x74,0x73,0x0,0x0,0x4,0x0,0xa,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x63,0x70,0x70,0x5f,0x73,0x74,0x79,0x6c,0x65,0x5f,0x6c,0x69,0x6e,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x0,0x4,0x0,0x8,0x0,0x47,0x4c,0x5f,0x47,0x4f,0x4f,0x47,0x4c,0x45,0x5f,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x5f,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x76,0x65,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x9,0x0,0x0,0x0,0x53,0x70,0x72,0x69,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x6,0x0,0x6,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0x9,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x73,0x0,0x0,0x0,0x6,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x73,0x70,0x72,0x69,0x74,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x5,0x0,0x7,0x0,0xc,0x0,0x0,0x0,0x53,0x70,0x72,0x69,0x74,0x65,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x6,0x0,0x6,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,0x6d,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0xc,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x73,0x0,0x0,0x0,0x6,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0xe,0x0,0x0,0x0,0x53,0x42,0x4f,0x5f,0x53,0x70,0x72,0x69,0x74,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x6,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x61,0x74,0x61,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0x10,0x0,0x0,0x0,0x73,0x62,0x6f,0x53,0x70,0x72,0x69,0x74,0x65,0x44,0x61,0x74,0x61,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x14,0x0,0x0,0x0,0x67,0x6c,0x5f,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x6e,0x64,0x65,0x78,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0x26,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x65,0x72,0x56,0x65,0x72,0x74,0x65,0x78,0x0,0x0,0x0,0x0,0x6,0x0,0x6,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x6,0x0,0x7,0x0,0x26,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f,0x69,0x6e,0x74,0x53,0x69,0x7a,0x65,0x0,0x0,0x0,0x0,0x6,0x0,0x7,0x0,0x26,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x67,0x6c,0x5f,0x43,0x6c,0x69,0x70,0x44,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x0,0x6,0x0,0x7,0x0,0x26,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x67,0x6c,0x5f,0x43,0x75,0x6c,0x6c,0x44,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x0,0x5,0x0,0x3,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x7,0x0,0x29,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x53,0x63,0x65,0x6e,0x65,0x0,0x6,0x0,0x6,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x72,0x6f,0x6a,0x65,0x63,0x74,0x69,0x6f,0x6e,0x0,0x0,0x5,0x0,0x5,0x0,0x2b,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x53,0x63,0x65,0x6e,0x65,0x0,0x5,0x0,0x7,0x0,0x2f,0x0,0x0,0x0,0x55,0x42,0x4f,0x5f,0x56,0x65,0x72,0x74,0x65,0x78,0x5f,0x50,0x65,0x72,0x46,0x72,0x61,0x6d,0x65,0x0,0x6,0x0,0x5,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x69,0x65,0x77,0x0,0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x31,0x0,0x0,0x0,0x75,0x62,0x6f,0x50,0x65,0x72,0x46,0x72,0x61,0x6d,0x65,0x0,0x5,0x0,0x5,0x0,0x3a,0x0,0x0,0x0,0x69,0x6e,0x50,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x0,0x5,0x0,0x5,0x0,0x45,0x0,0x0,0x0,0x6f,0x75,0x74,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x5,0x0,0x5,0x0,0x53,0x0,0x0,0x0,0x69,0x6e,0x54,0x65,0x78,0x43,0x6f,0x6f,0x72,0x64,0x0,0x0,0x5,0x0,0x6,0x0,0x57,0x0,0x0,0x0,0x6f,0x75,0x74,0x56,0x65,0x72,0x74,0x65,0x78,0x43,0x6f,0x6c,0x6f,0x72,0x0,0x0,0x48,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x10,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x26,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x26,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x29,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x2b,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x2b,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x2f,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x31,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x31,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x3a,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x45,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x53,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x57,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21,0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x18,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1e,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1d,0x0,0x3,0x0,0xd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x1e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x0,0x4,0x0,0x25,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1e,0x0,0x6,0x0,0x26,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x27,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x27,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x29,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x2a,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x2a,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x2c,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x2f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x30,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x30,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x39,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x39,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x80,0x3f,0x20,0x0,0x4,0x0,0x42,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x44,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x44,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x4c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x23,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x39,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x42,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x41,0x0,0x6,0x0,0x16,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x8,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x1b,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x1f,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x22,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x2c,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x2c,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x92,0x0,0x5,0x0,0x8,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1a,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x92,0x0,0x5,0x0,0x8,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x0,0x7,0x0,0x7,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x91,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x42,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x43,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x41,0x0,0x6,0x0,0x4c,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x41,0x0,0x6,0x0,0x4c,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x50,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x38,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x85,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x81,0x0,0x5,0x0,0x38,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x45,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x57,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, + }; + +} + +namespace ia::iae +{ + Map> EmbeddedResources::s_resources; + + VOID EmbeddedResources::Initialize() + { + s_resources["Shaders/DynamicSprite.frag"] = DATA_DYNAMICSPRITE_FRAG; + s_resources["Shaders/DynamicSprite.vert"] = DATA_DYNAMICSPRITE_VERT; + } + + VOID EmbeddedResources::Terminate() + { + for(auto& t: s_resources) + t->Value.reset(); + } + + CONST Vector& EmbeddedResources::GetResource(IN CONST String& name) + { + return s_resources[name]; + } +} diff --git a/Src/RenderCore/imp/cpp/Pipeline.cpp b/Src/RenderCore/imp/cpp/Pipeline.cpp new file mode 100644 index 0000000..c07bd50 --- /dev/null +++ b/Src/RenderCore/imp/cpp/Pipeline.cpp @@ -0,0 +1,107 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +namespace ia::iae +{ + RDC_Pipeline::RDC_Pipeline(IN SDL_GPUTextureFormat renderTargetFormat, IN CONST StageDesc &vertexStageDesc, + IN CONST StageDesc &pixelStageDesc, IN BOOL enableVertexBuffer) + { + SDL_GPUShader *vertexShader{}; + SDL_GPUShader *pixelShader{}; + + SDL_GPUShaderCreateInfo shaderCreateInfo = { + .entrypoint = "main", + .format = SDL_GPU_SHADERFORMAT_SPIRV, + .num_storage_textures = 0, + .num_storage_buffers = 0, + }; + + shaderCreateInfo.stage = SDL_GPU_SHADERSTAGE_VERTEX; + shaderCreateInfo.code = vertexStageDesc.SourceData.data(); + shaderCreateInfo.code_size = vertexStageDesc.SourceData.size(); + shaderCreateInfo.num_samplers = vertexStageDesc.SamplerCount; + shaderCreateInfo.num_uniform_buffers = vertexStageDesc.UniformBufferCount; + shaderCreateInfo.num_storage_buffers = vertexStageDesc.StorageBufferCount; + if (!(vertexShader = SDL_CreateGPUShader(RDC_Device::GetHandle(), &shaderCreateInfo))) + THROW_UNKNOWN("Failed to create a SDL shader: ", SDL_GetError()); + + shaderCreateInfo.stage = SDL_GPU_SHADERSTAGE_FRAGMENT; + shaderCreateInfo.code = pixelStageDesc.SourceData.data(); + shaderCreateInfo.code_size = pixelStageDesc.SourceData.size(); + shaderCreateInfo.num_samplers = pixelStageDesc.SamplerCount; + shaderCreateInfo.num_uniform_buffers = pixelStageDesc.UniformBufferCount; + shaderCreateInfo.num_storage_buffers = pixelStageDesc.StorageBufferCount; + if (!(pixelShader = SDL_CreateGPUShader(RDC_Device::GetHandle(), &shaderCreateInfo))) + THROW_UNKNOWN("Failed to create a SDL shader: ", SDL_GetError()); + + SDL_GPUColorTargetDescription colorTargetDesc = { + .format = renderTargetFormat, + .blend_state = {.src_color_blendfactor = SDL_GPU_BLENDFACTOR_ONE, + .dst_color_blendfactor = SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, + .color_blend_op = SDL_GPU_BLENDOP_ADD, + .src_alpha_blendfactor = SDL_GPU_BLENDFACTOR_ONE, + .dst_alpha_blendfactor = SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, + .alpha_blend_op = SDL_GPU_BLENDOP_ADD, + .enable_blend = true, + .enable_color_write_mask = false}}; + + SDL_GPUVertexBufferDescription vertexBufferDesc = { + .slot = 0, + .pitch = sizeof(GeometryVertex), + .input_rate = SDL_GPU_VERTEXINPUTRATE_VERTEX, + .instance_step_rate = 0, + }; + + SDL_GPUVertexAttribute vertexAttributes[] = { + {.location = 0, .buffer_slot = 0, .format = SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, .offset = 0}, + {.location = 1, .buffer_slot = 0, .format = SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, .offset = sizeof(Vec2)}}; + + SDL_GPUGraphicsPipelineCreateInfo createInfo = { + .vertex_shader = vertexShader, + .fragment_shader = pixelShader, + .vertex_input_state = SDL_GPUVertexInputState{.vertex_buffer_descriptions = &vertexBufferDesc, + .num_vertex_buffers = enableVertexBuffer ? (UINT32) 1 : 0, + .vertex_attributes = vertexAttributes, + .num_vertex_attributes = enableVertexBuffer ? (UINT32) 2 : 0}, + .primitive_type = SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, + .rasterizer_state = SDL_GPURasterizerState{.fill_mode = SDL_GPU_FILLMODE_FILL, + .cull_mode = SDL_GPU_CULLMODE_NONE, + .front_face = SDL_GPU_FRONTFACE_COUNTER_CLOCKWISE, + .enable_depth_clip = true}, + .target_info = {.color_target_descriptions = &colorTargetDesc, + .num_color_targets = 1, + .has_depth_stencil_target = false}, + }; + + if (!(m_handle = SDL_CreateGPUGraphicsPipeline(RDC_Device::GetHandle(), &createInfo))) + THROW_UNKNOWN("Failed to create a SDL graphics pipeline: ", SDL_GetError()); + + SDL_ReleaseGPUShader(RDC_Device::GetHandle(), pixelShader); + SDL_ReleaseGPUShader(RDC_Device::GetHandle(), vertexShader); + } + + RDC_Pipeline::~RDC_Pipeline() + { + SDL_ReleaseGPUGraphicsPipeline(RDC_Device::GetHandle(), m_handle); + } + + VOID RDC_Pipeline::Bind(IN SDL_GPURenderPass *renderPass) + { + SDL_BindGPUGraphicsPipeline(renderPass, m_handle); + } +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/imp/cpp/RenderCore.cpp b/Src/RenderCore/imp/cpp/RenderCore.cpp new file mode 100644 index 0000000..26b6759 --- /dev/null +++ b/Src/RenderCore/imp/cpp/RenderCore.cpp @@ -0,0 +1,292 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include +#include +#include + +#include + +namespace ia::iae +{ + Mat4 RDC::s_viewMatrix; + Mat4 RDC::s_projectionMatrix; + SDL_Window *RDC::s_windowHandle; + Handle RDC::s_quadGeometry; + RDC_Pipeline *RDC::s_dynamicSpritePipeline; + SDL_GPUSampler *RDC::s_linearClampSampler; + SDL_GPUSampler *RDC::s_linearRepeatSampler; + Vec2 RDC::s_cameraPosition{}; + IVec2 RDC::s_viewportExtent; + RDC_TextureAtlas *RDC::s_staticSpriteAtlas{}; + RDC_TextureAtlas *RDC::s_dynamicSpriteAtlas{}; + INT32 RDC::s_spriteInstanceCount{}; + RDC_HostVisibleBuffer *RDC::s_staticSpriteInstanceBuffer{}; + RDC_HostVisibleBuffer *RDC::s_dynamicSpriteInstanceBuffer{}; + RDC_Texture *RDC::s_defaultTexture{}; + RDC_SpriteInstanceData RDC::s_spriteInstances[RDC::MAX_SPRITE_COUNT]; + + VOID RDC::Initialize(IN IVec2 viewportExtent, IN SDL_Window *windowHandle, IN BOOL isDebugMode) + { + EmbeddedResources::Initialize(); + + s_windowHandle = windowHandle; + + RDC_Device::Initialize(s_windowHandle, isDebugMode); + + InitializePipelines(); + InitializeSamplers(); + InitializeGeometries(); + InitializeTextures(); + InitializeDrawData(); + + ResizeScreen(viewportExtent); + s_viewMatrix = glm::lookAtLH(glm::vec3{s_cameraPosition, -1.0f}, {s_cameraPosition, 0.0f}, {0.0f, 1.0f, 0.0f}); + } + + VOID RDC::Terminate() + { + RDC_Device::WaitForIdle(); + + RDC_Device::DestroyGeometry(s_quadGeometry); + + SDL_ReleaseGPUSampler(RDC_Device::GetHandle(), s_linearClampSampler); + SDL_ReleaseGPUSampler(RDC_Device::GetHandle(), s_linearRepeatSampler); + + delete s_defaultTexture; + delete s_staticSpriteAtlas; + delete s_dynamicSpriteAtlas; + delete s_dynamicSpritePipeline; + delete s_staticSpriteInstanceBuffer; + delete s_dynamicSpriteInstanceBuffer; + + RDC_Device::Terminate(); + + EmbeddedResources::Terminate(); + } + + VOID RDC::ResizeScreen(IN IVec2 newExtent) + { + s_viewportExtent = newExtent; + s_projectionMatrix = + glm::orthoLH(0.0f, (FLOAT32) s_viewportExtent.x, (FLOAT32) s_viewportExtent.y, 0.0f, -1.0f, 1.0f); + } + + VOID RDC::RenderToWindow() + { + STATIC SDL_GPURenderPass *ActiveRenderPass{}; + STATIC SDL_GPUCommandBuffer *ActiveCommandBuffer{}; + STATIC SDL_GPUColorTargetInfo ActiveColorTargetInfo{.clear_color = SDL_FColor{0.0f, 0.0f, 0.0f, 1.0f}, + .load_op = SDL_GPU_LOADOP_CLEAR, + .store_op = SDL_GPU_STOREOP_STORE}; + + if (!(ActiveCommandBuffer = SDL_AcquireGPUCommandBuffer(RDC_Device::GetHandle()))) + THROW_UNKNOWN("Failed to acquire SDL GPU command buffer: ", SDL_GetError()); + + SDL_GPUTexture *swapChainTexture{}; + if (!SDL_WaitAndAcquireGPUSwapchainTexture(ActiveCommandBuffer, s_windowHandle, &swapChainTexture, nullptr, + nullptr)) + THROW_UNKNOWN("Failed to acquire SDL GPU Swapchain texture: ", SDL_GetError()); + + if (!swapChainTexture) + return; + + ActiveColorTargetInfo.texture = swapChainTexture; + ActiveColorTargetInfo.clear_color = SDL_FColor{0.3f, 0.3f, 0.3f, 1.0f}; + ActiveRenderPass = SDL_BeginGPURenderPass(ActiveCommandBuffer, &ActiveColorTargetInfo, 1, nullptr); + + s_dynamicSpritePipeline->Bind(ActiveRenderPass); + SDL_PushGPUVertexUniformData(ActiveCommandBuffer, 0, &s_projectionMatrix, sizeof(Mat4)); + SDL_PushGPUVertexUniformData(ActiveCommandBuffer, 1, &s_viewMatrix, sizeof(Mat4)); + SDL_GPUTextureSamplerBinding textureBinding{.texture = s_dynamicSpriteAtlas + ? s_dynamicSpriteAtlas->GetTexture()->GetHandle() + : s_defaultTexture->GetHandle(), + .sampler = s_linearRepeatSampler}; + SDL_BindGPUFragmentSamplers(ActiveRenderPass, 0, &textureBinding, 1); + RDC_Device::BindGeometry(ActiveRenderPass, s_quadGeometry); + if (s_spriteInstanceCount) + { + const auto spriteInstanceBuffer = s_dynamicSpriteInstanceBuffer->GetHandle(); + s_dynamicSpriteInstanceBuffer->CopyFrom(s_spriteInstances, + sizeof(RDC_SpriteInstanceData) * s_spriteInstanceCount); + SDL_BindGPUVertexStorageBuffers(ActiveRenderPass, 0, &spriteInstanceBuffer, 1); + SDL_DrawGPUIndexedPrimitives(ActiveRenderPass, 6, s_spriteInstanceCount, 0, 0, 0); + } + s_spriteInstanceCount = 0; + + SDL_EndGPURenderPass(ActiveRenderPass); + + SDL_SubmitGPUCommandBuffer(ActiveCommandBuffer); + } + + Vec2 RDC::DrawSpriteTopLeft(IN Handle _image, IN INT32 tileIndexX, IN INT32 tileIndexY, IN Vec2 position, + IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, IN BOOL flipV, IN Vec2 uvOffset) + { + const auto image = (ImageData *) _image; + + const auto _s = Vec2{scale.x * image->TileWidth, scale.y * image->TileHeight}; + Mat4 transform = glm::translate(glm::mat4(1.0f), glm::vec3{position.x, position.y, 0}); + transform = glm::rotate(transform, rotation, glm::vec3(0.0f, 0.0f, 1.0f)); + transform = glm::scale(transform, glm::vec3(_s, 1.0f)); + s_spriteInstances[s_spriteInstanceCount++] = { + .Transform = transform, + .TexCoords = s_dynamicSpriteAtlas ? s_dynamicSpriteAtlas->GetTextureCoordinates( + _image, tileIndexX, tileIndexY, flipH, flipV, uvOffset) + : Vec4{0.0f, 0.0f, 1.0f, 1.0f}, + .Color = {1.0f, 1.0f, 1.0f, 1.0f}}; + return _s; + } + + Vec2 RDC::DrawSpriteCentered(IN Handle _image, IN INT32 tileIndexX, IN INT32 tileIndexY, IN Vec2 position, + IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH, IN BOOL flipV, IN Vec2 uvOffset) + { + const auto image = (ImageData *) _image; + const auto _s = Vec2{scale.x * image->TileWidth, scale.y * image->TileHeight}; + Mat4 transform = + glm::translate(glm::mat4(1.0f), glm::vec3{position.x - _s.x / 2.0f, position.y - _s.y / 2.0f, 0}); + transform = glm::rotate(transform, rotation, glm::vec3(0.0f, 0.0f, 1.0f)); + transform = glm::scale(transform, glm::vec3(_s, 1.0f)); + s_spriteInstances[s_spriteInstanceCount++] = { + .Transform = transform, + .TexCoords = s_dynamicSpriteAtlas ? s_dynamicSpriteAtlas->GetTextureCoordinates( + _image, tileIndexX, tileIndexY, flipH, flipV, uvOffset) + : Vec4{0.0f, 0.0f, 1.0f, 1.0f}, + .Color = {1.0f, 1.0f, 1.0f, 1.0f}}; + return _s; + } +} // namespace ia::iae + +namespace ia::iae +{ + Vec2 RDC::GetCameraPosition() + { + return s_cameraPosition; + } + + VOID RDC::SetCameraPosition(IN Vec2 position) + { + if B_LIKELY (s_cameraPosition == position) + return; + s_cameraPosition = position; + s_viewMatrix = glm::lookAtLH(glm::vec3{s_cameraPosition, -1.0f}, {s_cameraPosition, 0.0f}, {0.0f, 1.0f, 0.0f}); + } + + Handle RDC::CreateImage(IN PCUINT8 rgbaData, IN INT32 width, IN INT32 height, IN INT32 tileCountX, + IN INT32 tileCountY) + { + const auto pixelDataSize = width * height * 4; + + const auto image = new ImageData{ + .Pixels = new UINT8[pixelDataSize], + .Width = width, + .Height = height, + .TileWidth = width / tileCountX, + .TileHeight = height / tileCountY, + .TileCountX = tileCountX, + .TileCountY = tileCountY, + }; + + ia_memcpy(image->Pixels, rgbaData, pixelDataSize); + + return (Handle) image; + } + + VOID RDC::DestroyImage(IN Handle _image) + { + const auto image = (ImageData *) _image; + delete[] image->Pixels; + delete image; + } + + VOID RDC::CompileTextures(IN CONST Vector &images) + { + delete s_dynamicSpriteAtlas; + s_dynamicSpriteAtlas = new RDC_TextureAtlas(images); + } +} // namespace ia::iae + +namespace ia::iae +{ + VOID RDC::InitializeSamplers() + { + SDL_GPUSamplerCreateInfo createInfo{.min_filter = SDL_GPU_FILTER_NEAREST, + .mag_filter = SDL_GPU_FILTER_NEAREST, + .mipmap_mode = SDL_GPU_SAMPLERMIPMAPMODE_LINEAR, + .address_mode_u = SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE, + .address_mode_v = SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE, + .address_mode_w = SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE, + .enable_anisotropy = false}; + + s_linearClampSampler = SDL_CreateGPUSampler(RDC_Device::GetHandle(), &createInfo); + + createInfo.min_filter = SDL_GPU_FILTER_NEAREST; + createInfo.mag_filter = SDL_GPU_FILTER_NEAREST; + createInfo.mipmap_mode = SDL_GPU_SAMPLERMIPMAPMODE_LINEAR; + createInfo.address_mode_u = SDL_GPU_SAMPLERADDRESSMODE_REPEAT, + createInfo.address_mode_v = SDL_GPU_SAMPLERADDRESSMODE_REPEAT, + createInfo.address_mode_w = SDL_GPU_SAMPLERADDRESSMODE_REPEAT, + + s_linearRepeatSampler = SDL_CreateGPUSampler(RDC_Device::GetHandle(), &createInfo); + } + + VOID RDC::InitializeDrawData() + { + s_dynamicSpriteInstanceBuffer = + new RDC_HostVisibleBuffer(RDC_Buffer::EType::STORAGE, sizeof(s_spriteInstances)); + } + + VOID RDC::InitializeTextures() + { + { // Create Default Texture + const auto pixels = new UINT8[100 * 100 * 4]; + ia_memset(pixels, 0xFF, 100 * 100 * 4); + s_defaultTexture = new RDC_Texture(RDC_Texture::EType::SAMPLED, 100, 100); + s_defaultTexture->SetImageData(pixels); + delete[] pixels; + } + } + + VOID RDC::InitializePipelines() + { + s_dynamicSpritePipeline = + new RDC_Pipeline(RDC_Device::GetSwapchainTextureFormat(), + RDC_Pipeline::StageDesc{ + .SourceData = EmbeddedResources::GetResource("Shaders/DynamicSprite.vert"), + .SamplerCount = 0, + .UniformBufferCount = 2, + .StorageBufferCount = 1, + }, + RDC_Pipeline::StageDesc{ + .SourceData = EmbeddedResources::GetResource("Shaders/DynamicSprite.frag"), + .SamplerCount = 1, + .UniformBufferCount = 0, + .StorageBufferCount = 0, + }, + true); + } + + VOID RDC::InitializeGeometries() + { + s_quadGeometry = RDC_Device::CreateGeometry( + { + {glm::vec2{0, 1}, glm::vec2{0, 1}}, + {glm::vec2{1, 1}, glm::vec2{1, 1}}, + {glm::vec2{1, 0}, glm::vec2{1, 0}}, + {glm::vec2{0, 0}, glm::vec2{0, 0}}, + }, + {0, 1, 2, 2, 3, 0}); + } +} // namespace ia::iae diff --git a/Src/RenderCore/imp/cpp/Texture.cpp b/Src/RenderCore/imp/cpp/Texture.cpp new file mode 100644 index 0000000..c410b26 --- /dev/null +++ b/Src/RenderCore/imp/cpp/Texture.cpp @@ -0,0 +1,121 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +namespace ia::iae +{ + RDC_Texture::RDC_Texture(IN EType type, IN INT32 width, IN INT32 height, IN BOOL generateMipMaps) + : m_type(type), m_width(width), m_height(height), + m_mipLevels(generateMipMaps ? ia_max((UINT32) (floor(log2(ia_max(width, height))) + 1), (UINT32) 1) + : (UINT32) 1) + { + SDL_GPUTextureCreateInfo createInfo{.type = SDL_GPU_TEXTURETYPE_2D, + .format = SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM, + .width = (UINT32) width, + .height = (UINT32) height, + .layer_count_or_depth = 1, + .num_levels = m_mipLevels, + .sample_count = SDL_GPU_SAMPLECOUNT_1}; + + switch (type) + { + case EType::SAMPLED: + createInfo.usage = SDL_GPU_TEXTUREUSAGE_COLOR_TARGET | SDL_GPU_TEXTUREUSAGE_SAMPLER; + break; + + case EType::RENDER_TARGET: + createInfo.usage = SDL_GPU_TEXTUREUSAGE_COLOR_TARGET; + break; + } + + m_handle = SDL_CreateGPUTexture(RDC_Device::GetHandle(), &createInfo); + if (!m_handle) + THROW_UNKNOWN("Failed to create a SDL GPU Texture: ", SDL_GetError()); + } + + RDC_Texture::~RDC_Texture() + { + SDL_ReleaseGPUTexture(RDC_Device::GetHandle(), m_handle); + } + + VOID RDC_Texture::SetImageData(IN PCUINT8 rgbaData, IN INT32 stride) + { + STATIC Vector TMP_COLOR_BUFFER; + + TMP_COLOR_BUFFER.resize(m_width * m_height * 4); + + if (stride == -1) + { + for (SIZE_T i = 0; i < TMP_COLOR_BUFFER.size() >> 2; i++) + { + const auto a = static_cast(rgbaData[i * 4 + 3]) / 255.0f; + TMP_COLOR_BUFFER[i * 4 + 0] = static_cast(rgbaData[i * 4 + 0] * a); + TMP_COLOR_BUFFER[i * 4 + 1] = static_cast(rgbaData[i * 4 + 1] * a); + TMP_COLOR_BUFFER[i * 4 + 2] = static_cast(rgbaData[i * 4 + 2] * a); + TMP_COLOR_BUFFER[i * 4 + 3] = rgbaData[i * 4 + 3]; + } + } + else + { + for (INT32 y = 0; y < m_height; y++) + { + for (INT32 x = 0; x < m_width; x++) + { + const auto p = &rgbaData[(x + y * stride) * 4]; + const auto a = static_cast(p[3]) / 255.0f; + TMP_COLOR_BUFFER[(x + y * m_width) * 4 + 0] = static_cast(p[0] * a); + TMP_COLOR_BUFFER[(x + y * m_width) * 4 + 1] = static_cast(p[1] * a); + TMP_COLOR_BUFFER[(x + y * m_width) * 4 + 2] = static_cast(p[2] * a); + TMP_COLOR_BUFFER[(x + y * m_width) * 4 + 3] = p[3]; + } + } + } + + SDL_GPUTransferBufferCreateInfo stagingBufferCreateInfo{.usage = SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + .size = (UINT32) m_width * (UINT32) m_height * 4}; + const auto stagingBuffer = SDL_CreateGPUTransferBuffer(RDC_Device::GetHandle(), &stagingBufferCreateInfo); + const auto mappedPtr = SDL_MapGPUTransferBuffer(RDC_Device::GetHandle(), stagingBuffer, false); + SDL_memcpy(mappedPtr, TMP_COLOR_BUFFER.data(), m_width * m_height * 4); + SDL_UnmapGPUTransferBuffer(RDC_Device::GetHandle(), stagingBuffer); + + auto cmdBuffer = SDL_AcquireGPUCommandBuffer(RDC_Device::GetHandle()); + const auto copyPass = SDL_BeginGPUCopyPass(cmdBuffer); + + SDL_GPUTextureTransferInfo transferInfo{.transfer_buffer = stagingBuffer, .offset = 0}; + SDL_GPUTextureRegion region{.texture = m_handle, .w = (UINT32) m_width, .h = (UINT32) m_height, .d = 1}; + SDL_UploadToGPUTexture(copyPass, &transferInfo, ®ion, false); + + SDL_EndGPUCopyPass(copyPass); + SDL_SubmitGPUCommandBuffer(cmdBuffer); + SDL_WaitForGPUIdle(RDC_Device::GetHandle()); + SDL_ReleaseGPUTransferBuffer(RDC_Device::GetHandle(), stagingBuffer); + + if (m_mipLevels > 1) + { + cmdBuffer = SDL_AcquireGPUCommandBuffer(RDC_Device::GetHandle()); + SDL_GenerateMipmapsForGPUTexture(cmdBuffer, m_handle); + SDL_SubmitGPUCommandBuffer(cmdBuffer); + SDL_WaitForGPUIdle(RDC_Device::GetHandle()); + } + } + + VOID RDC_Texture::BindAsSampler(IN SDL_GPURenderPass *renderPass, IN INT32 index, IN SDL_GPUSampler *sampler) + { + SDL_GPUTextureSamplerBinding textureBinding{.texture = m_handle, .sampler = sampler}; + SDL_BindGPUFragmentSamplers(renderPass, index, &textureBinding, 1); + } +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/imp/cpp/TextureAtlas.cpp b/Src/RenderCore/imp/cpp/TextureAtlas.cpp new file mode 100644 index 0000000..7d1fc62 --- /dev/null +++ b/Src/RenderCore/imp/cpp/TextureAtlas.cpp @@ -0,0 +1,82 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +namespace ia::iae +{ + RDC_TextureAtlas::RDC_TextureAtlas(IN CONST Vector &images) + { + if (images.empty()) + return; + + m_atlasSize.x = 0; + m_atlasSize.y = 0; + for (const auto &_image : images) + { + const auto d = (ImageData *) _image; + m_atlasSize.x += d->Width; + if (d->Height > m_atlasSize.y) + m_atlasSize.y = d->Height; + } + + m_inverseAtlasSize = {1.0f / ((FLOAT32) m_atlasSize.x), 1.0f / ((FLOAT32) m_atlasSize.y)}; + + const auto pixels = new UINT8[m_atlasSize.x * m_atlasSize.y * 4]; + + INT32 atlasCursor{0}; + for (const auto &_image : images) + { + const auto d = (ImageData *) _image; + for (INT32 y = 0; y < d->Height; y++) + ia_memcpy(&pixels[(atlasCursor + (y * m_atlasSize.x)) * 4], &d->Pixels[y * d->Width * 4], d->Width * 4); + m_texCoordMap[_image] = Vec2(((FLOAT32) atlasCursor) / ((FLOAT32) m_atlasSize.x), 0.0f); + atlasCursor += d->Width; + } + + m_texture = new RDC_Texture(RDC_Texture::EType::SAMPLED, m_atlasSize.x, m_atlasSize.y); + m_texture->SetImageData(pixels); + + delete[] pixels; + } + + RDC_TextureAtlas::~RDC_TextureAtlas() + { + delete m_texture; + } + + Vec4 RDC_TextureAtlas::GetTextureCoordinates(IN Handle _image, IN INT32 tileIndexX, IN INT32 tileIndexY, IN BOOL flipH, + IN BOOL flipV, IN Vec2 uvOffset) + { + const auto d = (ImageData *) _image; + const auto &t = m_texCoordMap[_image]; + const auto pX = ((tileIndexX + uvOffset.x) * ((FLOAT32) d->TileWidth)) * m_inverseAtlasSize.x; + const auto pY = ((tileIndexY + uvOffset.y) * ((FLOAT32) d->TileHeight)) * m_inverseAtlasSize.y; + auto texCoords = Vec4(t.x + pX, t.y + pY, d->TileWidth * m_inverseAtlasSize.x, + d->TileHeight * m_inverseAtlasSize.y); + if (flipH) + { + texCoords.x += texCoords.z; + texCoords.z *= -1; + } + if (flipV) + { + texCoords.y += texCoords.w; + texCoords.w *= -1; + } + return texCoords; + } +} // namespace ia::iae \ No newline at end of file diff --git a/Src/IAEngine/imp/hpp/EmbeddedResources.hpp b/Src/RenderCore/imp/hpp/EmbeddedResources.hpp similarity index 97% rename from Src/IAEngine/imp/hpp/EmbeddedResources.hpp rename to Src/RenderCore/imp/hpp/EmbeddedResources.hpp index 1dc018a..daceedc 100644 --- a/Src/IAEngine/imp/hpp/EmbeddedResources.hpp +++ b/Src/RenderCore/imp/hpp/EmbeddedResources.hpp @@ -16,7 +16,7 @@ #pragma once -#include +#include namespace ia::iae { diff --git a/Src/RenderCore/inc/RenderCore/Base.hpp b/Src/RenderCore/inc/RenderCore/Base.hpp new file mode 100644 index 0000000..d54107d --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/Base.hpp @@ -0,0 +1,64 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#define RDC_LOG_TAG "RDC" + +#define RDC_LOG_INFO(...) ia::Logger::Info(RDC_LOG_TAG, __VA_ARGS__) +#define RDC_LOG_WARN(...) ia::Logger::Warn(RDC_LOG_TAG, __VA_ARGS__) +#define RDC_LOG_ERROR(...) ia::Logger::Error(RDC_LOG_TAG, __VA_ARGS__) +#define RDC_LOG_SUCCESS(...) ia::Logger::Success(RDC_LOG_TAG, __VA_ARGS__) + +namespace ia::iae +{ + using Handle = INT64; + STATIC CONSTEXPR Handle INVALID_HANDLE = -1; + + using Vec2 = glm::vec2; + using Vec3 = glm::vec3; + using Vec4 = glm::vec4; + using IVec2 = glm::ivec2; + using IVec3 = glm::ivec3; + using IVec4 = glm::ivec4; + using Mat4 = glm::mat4; + + struct ImageData + { + PUINT8 Pixels{}; + INT32 Width{}; + INT32 Height{}; + INT32 TileWidth{}; + INT32 TileHeight{}; + INT32 TileCountX{}; + INT32 TileCountY{}; + }; +} // namespace ia::iae diff --git a/Src/RenderCore/inc/RenderCore/Buffer.hpp b/Src/RenderCore/inc/RenderCore/Buffer.hpp new file mode 100644 index 0000000..f6daf42 --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/Buffer.hpp @@ -0,0 +1,90 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include + +namespace ia::iae +{ + class RDC_StagingBuffer; + + class RDC_Buffer + { + public: + enum class EType + { + NONE, + + VERTEX, + INDEX, + STORAGE + }; + + public: + RDC_Buffer(); + RDC_Buffer(IN EType type, IN UINT32 size); + + protected: + CONST EType m_type; + CONST UINT32 m_size; + }; + + class RDC_DeviceLocalBuffer : public RDC_Buffer + { + public: + RDC_DeviceLocalBuffer(); + RDC_DeviceLocalBuffer(IN RDC_Buffer::EType type, IN UINT32 size); + ~RDC_DeviceLocalBuffer(); + + VOID CopyFrom(IN RDC_StagingBuffer *stagingBuffer, IN UINT32 size); + VOID CopyFrom(IN SDL_GPUTransferBuffer *stagingBuffer, IN UINT32 size); + + SDL_GPUBuffer *GetHandle() + { + return m_buffer; + } + + protected: + SDL_GPUBuffer *m_buffer{}; + }; + + class RDC_HostVisibleBuffer : public RDC_DeviceLocalBuffer + { + public: + RDC_HostVisibleBuffer(IN RDC_Buffer::EType type, IN UINT32 size); + ~RDC_HostVisibleBuffer(); + + VOID CopyFrom(IN PCVOID data, IN UINT32 size); + + private: + SDL_GPUTransferBuffer *m_stagingBuffer{}; + }; + + class RDC_StagingBuffer : public RDC_Buffer + { + public: + RDC_StagingBuffer(IN UINT32 size); + ~RDC_StagingBuffer(); + + VOID CopyFrom(IN PCVOID data, IN UINT32 size); + + private: + SDL_GPUTransferBuffer *m_buffer{}; + + friend class RDC_DeviceLocalBuffer; + }; +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/inc/RenderCore/Device.hpp b/Src/RenderCore/inc/RenderCore/Device.hpp new file mode 100644 index 0000000..524e323 --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/Device.hpp @@ -0,0 +1,56 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include +#include + +namespace ia::iae +{ + struct GeometryVertex + { + Vec2 Position; + Vec2 TexCoords; + }; + + class RDC_Device + { + public: + STATIC VOID Initialize(IN SDL_Window *windowHandle, IN BOOL isDebugMode); + STATIC VOID Terminate(); + + public: + STATIC VOID WaitForIdle(); + + STATIC Handle CreateGeometry(IN CONST Vector &vertices, IN CONST Vector &indices); + STATIC VOID DestroyGeometry(IN Handle geometry); + STATIC VOID BindGeometry(IN SDL_GPURenderPass* renderPass, IN Handle geometry); + + public: + STATIC SDL_GPUTextureFormat GetSwapchainTextureFormat(); + + public: + STATIC SDL_GPUDevice *GetHandle() + { + return s_handle; + } + + private: + STATIC SDL_GPUDevice *s_handle; + STATIC SDL_Window *s_windowHandle; + }; +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/inc/RenderCore/Pipeline.hpp b/Src/RenderCore/inc/RenderCore/Pipeline.hpp new file mode 100644 index 0000000..dce8222 --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/Pipeline.hpp @@ -0,0 +1,50 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include + +namespace ia::iae +{ + class RDC_Pipeline + { + public: + struct StageDesc + { + Vector SourceData{}; + UINT32 SamplerCount{}; + UINT32 UniformBufferCount{}; + UINT32 StorageBufferCount{}; + }; + + public: + RDC_Pipeline(IN SDL_GPUTextureFormat renderTargetFormat, IN CONST StageDesc &vertexStageDesc, IN CONST StageDesc &pixelStageDesc, + IN BOOL enableVertexBuffer); + ~RDC_Pipeline(); + + VOID Bind(IN SDL_GPURenderPass* renderPass); + + public: + SDL_GPUGraphicsPipeline *GetHandle() CONST + { + return m_handle; + } + + private: + SDL_GPUGraphicsPipeline *m_handle{}; + }; +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/inc/RenderCore/RenderCore.hpp b/Src/RenderCore/inc/RenderCore/RenderCore.hpp new file mode 100644 index 0000000..738cec5 --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/RenderCore.hpp @@ -0,0 +1,90 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include +#include +#include +#include + +namespace ia::iae +{ +#pragma pack(push, 1) + + struct RDC_SpriteInstanceData + { + Mat4 Transform{1.0f}; + Vec4 TexCoords{}; + Vec4 Color{1.0f, 1.0f, 1.0f, 1.0f}; + }; + +#pragma pack(pop) + + class RDC + { + public: + STATIC CONSTEXPR INT32 MAX_SPRITE_COUNT = 100000; + + public: + STATIC VOID Initialize(IN IVec2 viewportExtent, IN SDL_Window *windowHandle, IN BOOL isDebugMode); + STATIC VOID Terminate(); + + STATIC VOID ResizeScreen(IN IVec2 newExtent); + + STATIC VOID RenderToWindow(); + + public: + STATIC Vec2 GetCameraPosition(); + STATIC VOID SetCameraPosition(IN Vec2 position); + + STATIC Vec2 DrawSpriteTopLeft(IN Handle image, IN INT32 tileIndexX, IN INT32 tileIndexY, + IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH = false, IN BOOL flipV = false, IN Vec2 uvOffset = {}); + STATIC Vec2 DrawSpriteCentered(IN Handle image, IN INT32 tileIndexX, IN INT32 tileIndexY, + IN Vec2 position, IN Vec2 scale, IN FLOAT32 rotation, IN BOOL flipH = false, IN BOOL flipV = false, IN Vec2 uvOffset = {}); + + STATIC Handle CreateImage(IN PCUINT8 rgbaData, IN INT32 width, IN INT32 height, IN INT32 tileCountX = 1, + IN INT32 tileCountY = 1); + STATIC VOID DestroyImage(IN Handle image); + + STATIC VOID CompileTextures(IN CONST Vector& images); + + private: + STATIC VOID InitializeSamplers(); + STATIC VOID InitializeDrawData(); + STATIC VOID InitializeTextures(); + STATIC VOID InitializePipelines(); + STATIC VOID InitializeGeometries(); + + private: + STATIC Mat4 s_viewMatrix; + STATIC IVec2 s_viewportExtent; + STATIC Mat4 s_projectionMatrix; + STATIC Vec2 s_cameraPosition; + STATIC Handle s_quadGeometry; + STATIC SDL_Window *s_windowHandle; + STATIC RDC_Pipeline *s_dynamicSpritePipeline; + STATIC SDL_GPUSampler *s_linearClampSampler; + STATIC SDL_GPUSampler *s_linearRepeatSampler; + STATIC RDC_TextureAtlas *s_staticSpriteAtlas; + STATIC RDC_TextureAtlas *s_dynamicSpriteAtlas; + STATIC RDC_HostVisibleBuffer* s_staticSpriteInstanceBuffer; + STATIC RDC_HostVisibleBuffer* s_dynamicSpriteInstanceBuffer; + STATIC INT32 s_spriteInstanceCount; + STATIC RDC_Texture* s_defaultTexture; + STATIC RDC_SpriteInstanceData s_spriteInstances[MAX_SPRITE_COUNT]; + }; +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/inc/RenderCore/Texture.hpp b/Src/RenderCore/inc/RenderCore/Texture.hpp new file mode 100644 index 0000000..2026798 --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/Texture.hpp @@ -0,0 +1,63 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include + +namespace ia::iae +{ + class RDC_Texture + { + public: + enum class EType + { + SAMPLED, + RENDER_TARGET + }; + + public: + RDC_Texture(IN EType type, IN INT32 width, IN INT32 height, IN BOOL generateMipMaps = false); + ~RDC_Texture(); + + VOID SetImageData(IN PCUINT8 rgbaData, IN INT32 stride = -1); + + VOID BindAsSampler(IN SDL_GPURenderPass* renderPass, IN INT32 index, IN SDL_GPUSampler* sampler); + + public: + SDL_GPUTexture *GetHandle() CONST + { + return m_handle; + } + + INT32 Width() CONST + { + return m_width; + } + + INT32 Height() CONST + { + return m_height; + } + + private: + CONST EType m_type; + CONST INT32 m_width; + CONST INT32 m_height; + CONST UINT32 m_mipLevels; + SDL_GPUTexture *m_handle; + }; +} // namespace ia::iae \ No newline at end of file diff --git a/Src/RenderCore/inc/RenderCore/TextureAtlas.hpp b/Src/RenderCore/inc/RenderCore/TextureAtlas.hpp new file mode 100644 index 0000000..f582ad3 --- /dev/null +++ b/Src/RenderCore/inc/RenderCore/TextureAtlas.hpp @@ -0,0 +1,44 @@ +// IAEngine: 2D Game Engine by IA +// Copyright (C) 2025 IASoft (PVT) LTD (oss@iasoft.dev) +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#pragma once + +#include + +namespace ia::iae +{ + class RDC_TextureAtlas + { + public: + RDC_TextureAtlas(IN CONST Vector &images); + ~RDC_TextureAtlas(); + + Vec4 GetTextureCoordinates(IN Handle image, IN INT32 tileIndexX, IN INT32 tileIndexY, IN BOOL flipH, + IN BOOL flipV, IN Vec2 uvOffset); + + public: + CONST RDC_Texture *GetTexture() CONST + { + return m_texture; + } + + private: + IVec2 m_atlasSize; + RDC_Texture *m_texture; + Vec2 m_inverseAtlasSize; + Map m_texCoordMap; + }; +} // namespace ia::iae \ No newline at end of file diff --git a/Tools/Scripts/Srcgen/EmbedResources.py b/Tools/Scripts/Srcgen/EmbedResources.py index a6dbb2f..5da2289 100644 --- a/Tools/Scripts/Srcgen/EmbedResources.py +++ b/Tools/Scripts/Srcgen/EmbedResources.py @@ -30,10 +30,10 @@ class Resource: self.data = b'' self.Type = "" # Binary, Text, Shader -def load_resources() -> list[Resource]: +def load_resources(projectName: str) -> list[Resource]: result = [] - imagePaths = glob.glob("Resources/Images/*.*", recursive=True) + imagePaths = glob.glob(f"Src/{projectName}/Resources/Images/*.*", recursive=True) for t in imagePaths: r = Resource() r.path = t.replace('\\', '/') @@ -44,7 +44,7 @@ def load_resources() -> list[Resource]: r.data = f.read() result.append(r) - fontPaths = glob.glob("Resources/Fonts/*.ttf", recursive=True) + fontPaths = glob.glob(f"Src/{projectName}/Resources/Fonts/*.ttf", recursive=True) for t in fontPaths: r = Resource() r.path = t.replace('\\', '/') @@ -55,7 +55,7 @@ def load_resources() -> list[Resource]: r.data = f.read() result.append(r) - shaderPaths = glob.glob("Resources/Shaders/*.*", recursive=True) + shaderPaths = glob.glob(f"Src/{projectName}/Resources/Shaders/*.*", recursive=True) for t in shaderPaths: r = Resource() r.path = t.replace('\\', '/') @@ -70,10 +70,14 @@ def load_resources() -> list[Resource]: return result -def main(): - resoruces = load_resources() +def main(args: list[str]): + if len(args) < 2: + print(f"\033[33mUsage: {args[0]} \033[39m") + return - add_header_file("EmbeddedResources.hpp", "Src/IAEngine/imp/hpp", """ class EmbeddedResources + resoruces = load_resources(args[1]) + + add_header_file("EmbeddedResources.hpp", f"Src/{args[1]}/imp/hpp", """ class EmbeddedResources { public: STATIC VOID Initialize(); @@ -99,7 +103,7 @@ def main(): resourceInit.append(f"\t\ts_resources[\"{r.path}\"] = DATA_{r.name};") - add_source_file("EmbeddedResources.cpp", "Src/IAEngine/imp/cpp", f"""#include + add_source_file("EmbeddedResources.cpp", f"Src/{args[1]}/imp/cpp", f"""#include namespace ia::iae {{ @@ -129,4 +133,4 @@ namespace ia::iae """) if __name__ == "__main__": - main() \ No newline at end of file + main(sys.argv) \ No newline at end of file diff --git a/Vendor/CMakeLists.txt b/Vendor/CMakeLists.txt index 1b6e8e5..a1932c7 100644 --- a/Vendor/CMakeLists.txt +++ b/Vendor/CMakeLists.txt @@ -17,12 +17,6 @@ add_subdirectory(SDL/) set(SDLMIXER_VENDORED OFF) add_subdirectory(SDL_mixer/) -# ----------------------------------------------- -# FreeType -# ----------------------------------------------- -add_subdirectory(freetype/) -add_library(Freetype::Freetype ALIAS freetype) - # ----------------------------------------------- # zlib # ----------------------------------------------- diff --git a/Vendor/freetype b/Vendor/freetype deleted file mode 160000 index ae63cc0..0000000 --- a/Vendor/freetype +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ae63cc0d13318f2f93fd440cce277388d1b30a49