diff --git a/demo/common/app.cpp b/demo/common/app.cpp index af785c68..d85cbbe8 100644 --- a/demo/common/app.cpp +++ b/demo/common/app.cpp @@ -16,7 +16,7 @@ App::App(const std::shared_ptr &_device, canvas = std::make_shared(device, queue); // TEST: Clip path. - if (false) { + if (true) { Path2d path; path.add_rect(RectF(Vec2F(0.0, 0.0), Vec2F(360.0, 360.0))); @@ -87,7 +87,7 @@ App::App(const std::shared_ptr &_device, svg_scene.load_from_string(std::string(svg_input.begin(), svg_input.end()), *canvas); // TEST: Replace scene. - // canvas->set_scene(svg_scene.get_scene()); + // canvas->set_scene(svg_scene.get_scene()); // TEST: Append scene. canvas->get_scene()->append_scene(*svg_scene.get_scene(), Transform2::from_scale({1.0, 1.0})); diff --git a/src/core/d3d11/renderer.cpp b/src/core/d3d11/renderer.cpp index 3cbcfe83..c1d75b62 100644 --- a/src/core/d3d11/renderer.cpp +++ b/src/core/d3d11/renderer.cpp @@ -129,13 +129,7 @@ RendererD3D11::RendererD3D11(const std::shared_ptr &device, fill_ub_id = allocator->allocate_buffer(4 * sizeof(int32_t), BufferType::Uniform, "Fill uniform buffer"); propagate_ub_id = allocator->allocate_buffer(4 * sizeof(int32_t), BufferType::Uniform, "Propagate uniform buffer"); sort_ub_id = allocator->allocate_buffer(4 * sizeof(int32_t), BufferType::Uniform, "Sort uniform buffer"); - tile_ub0_id = allocator->allocate_buffer(8 * sizeof(float), BufferType::Uniform, "Tile uniform buffer 0"); - tile_ub1_id = allocator->allocate_buffer(8 * sizeof(int32_t), BufferType::Uniform, "Tile uniform buffer 1"); - - // Unlike D3D9, we use RGBA8 instead of RGBA16F for the mask texture. - mask_texture_id = allocator->allocate_texture({MASK_FRAMEBUFFER_WIDTH, MASK_FRAMEBUFFER_HEIGHT}, - TextureFormat::Rgba8Unorm, - "Mask texture"); + tile_ub_id = allocator->allocate_buffer(sizeof(TileUniformDx11), BufferType::Uniform, "Tile uniform buffer"); } void RendererD3D11::set_up_pipelines() { @@ -214,7 +208,7 @@ void RendererD3D11::set_up_pipelines() { Descriptor::storage(0, ShaderStage::Compute), // Read only. Descriptor::storage(1, ShaderStage::Compute), // Read only. Descriptor::storage(2, ShaderStage::Compute), // Read only. - Descriptor::image(3, ShaderStage::Compute, "uDest", allocator->get_texture(mask_texture_id)), + Descriptor::image(3, ShaderStage::Compute, "uDest"), Descriptor::sampled(4, ShaderStage::Compute, "uAreaLUT", @@ -230,20 +224,14 @@ void RendererD3D11::set_up_pipelines() { Descriptor::sampled(2, ShaderStage::Compute, "uTextureMetadata"), Descriptor::sampled(3, ShaderStage::Compute, "uZBuffer"), Descriptor::sampled(4, ShaderStage::Compute, "uColorTexture0"), - Descriptor::sampled(5, - ShaderStage::Compute, - "uMaskTexture0", - allocator->get_texture(mask_texture_id), - default_sampler), + Descriptor::sampled(5, ShaderStage::Compute, "uMaskTexture0"), Descriptor::sampled(6, ShaderStage::Compute, "uGammaLUT", allocator->get_texture(dummy_texture_id), default_sampler), // Unused binding. Descriptor::image(7, ShaderStage::Compute, "uDestImage"), - Descriptor::uniform(8, ShaderStage::Compute, "bConstantsUniform", allocator->get_buffer(constants_ub_id)), - Descriptor::uniform(9, ShaderStage::Compute, "bUniform0", allocator->get_buffer(tile_ub0_id)), - Descriptor::uniform(10, ShaderStage::Compute, "bUniform1", allocator->get_buffer(tile_ub1_id)), + Descriptor::uniform(8, ShaderStage::Compute, "bUniform", allocator->get_buffer(tile_ub_id)), }); // These pipelines will be called by order. @@ -362,25 +350,20 @@ void RendererD3D11::draw_tiles(uint64_t tiles_d3d11_buffer_id, Vec2F color_texture_size = color_texture->get_size().to_f32(); // Update uniform buffers. - std::array ubo_data0 = {0, - 0, - 0, - 0, // uClearColor - color_texture_size.x, - color_texture_size.y, // uColorTextureSize0 - (float)target_size.x, - (float)target_size.y}; // uFramebufferSize - - std::array ubo_data1 = {0, - 0, // uZBufferSize - (int32_t)framebuffer_tile_size0.x, - (int32_t)framebuffer_tile_size0.y, // uFramebufferTileSize - clear_op}; // uLoadAction + TileUniformDx11 uniform_data; + std::memset(uniform_data.clear_color, 0, 4 * sizeof(float)); + uniform_data.load_action = clear_op; + uniform_data.tile_size = {TILE_WIDTH, TILE_HEIGHT}; + uniform_data.color_texture_size = color_texture_size.to_f32(); + uniform_data.framebuffer_size = target_size.to_f32(); + uniform_data.framebuffer_tile_size = framebuffer_tile_size0; + uniform_data.mask_texture_size = {MASK_FRAMEBUFFER_WIDTH, + (float)(MASK_FRAMEBUFFER_HEIGHT * mask_storage.allocated_page_count)}; + uniform_data.texture_metadata_size = {TEXTURE_METADATA_TEXTURE_WIDTH, TEXTURE_METADATA_TEXTURE_HEIGHT}; auto encoder = device->create_command_encoder("Draw tiles"); - encoder->write_buffer(allocator->get_buffer(tile_ub0_id), 0, 8 * sizeof(float), ubo_data0.data()); - encoder->write_buffer(allocator->get_buffer(tile_ub1_id), 0, 5 * sizeof(int32_t), ubo_data1.data()); + encoder->write_buffer(allocator->get_buffer(tile_ub_id), 0, sizeof(TileUniformDx11), &uniform_data); // Update descriptor set. tile_descriptor_set->add_or_update({ @@ -399,6 +382,11 @@ void RendererD3D11::draw_tiles(uint64_t tiles_d3d11_buffer_id, allocator->get_texture(dummy_texture_id), default_sampler), Descriptor::sampled(4, ShaderStage::Compute, "uColorTexture0", color_texture, color_texture_sampler), + Descriptor::sampled(5, + ShaderStage::Compute, + "uMaskTexture0", + allocator->get_texture(mask_storage.framebuffer_id), + default_sampler), Descriptor::image(7, ShaderStage::Compute, "uDestImage", target_texture), }); @@ -562,6 +550,8 @@ void RendererD3D11::prepare_tiles(TileBatchDataD3D11 &batch) { // Free buffer. allocator->free_buffer(propagate_metadata_buffer_ids.backdrops); + reallocate_alpha_tile_pages_if_necessary(); + draw_fills(*fill_buffer_info, tiles_d3d11_buffer_id, alpha_tiles_buffer_id, propagate_tiles_info); // Free buffers. @@ -952,6 +942,7 @@ void RendererD3D11::draw_fills(FillBufferInfoD3D11 &fill_storage_info, Descriptor::storage(1, ShaderStage::Compute, tiles_d3d11_buffer), // Read only. Descriptor::storage(2, ShaderStage::Compute, alpha_tiles_buffer), + Descriptor::image(3, ShaderStage::Compute, "uDest", allocator->get_texture(mask_storage.framebuffer_id)), }); encoder->begin_compute_pass(); @@ -1021,6 +1012,29 @@ void RendererD3D11::free_tile_batch_buffers() { } } +TextureFormat RendererD3D11::mask_texture_format() const { + // Unlike D3D9, we use RGBA8 instead of RGBA16F for the mask texture. + return TextureFormat::Rgba8Unorm; +} + +void RendererD3D11::reallocate_alpha_tile_pages_if_necessary() { + uint32_t alpha_tile_pages_needed = (alpha_tile_count + 0xffff) >> 16; + + if (alpha_tile_pages_needed <= mask_storage.allocated_page_count) { + return; + } + + auto new_size = Vec2I(MASK_FRAMEBUFFER_WIDTH, MASK_FRAMEBUFFER_HEIGHT * alpha_tile_pages_needed); + auto format = mask_texture_format(); + + auto mask_texture_id = allocator->allocate_texture(new_size, format, "Mask texture"); + + mask_storage = MaskStorage{ + mask_texture_id, + alpha_tile_pages_needed, + }; +} + } // namespace Pathfinder #endif diff --git a/src/core/d3d11/renderer.h b/src/core/d3d11/renderer.h index 9fb4b941..d3119cb0 100644 --- a/src/core/d3d11/renderer.h +++ b/src/core/d3d11/renderer.h @@ -67,11 +67,6 @@ struct PropagateTilesInfoD3D11 { Range alpha_tile_range; }; -struct MaskStorage { - uint64_t framebuffer_id; - uint32_t allocated_page_count; -}; - struct ClipBufferIDs { /// Optional uint64_t metadata; @@ -79,6 +74,17 @@ struct ClipBufferIDs { uint64_t tiles; }; +struct TileUniformDx11 { + float clear_color[4]{}; + int32_t load_action{}, pad0, pad1, pad2; + Vec2F tile_size; + Vec2F texture_metadata_size; + Vec2F framebuffer_size; + Vec2I framebuffer_tile_size; + Vec2F mask_texture_size; + Vec2F color_texture_size; +}; + class RendererD3D11 : public Renderer { public: explicit RendererD3D11(const std::shared_ptr &device, const std::shared_ptr &queue); @@ -179,17 +185,21 @@ class RendererD3D11 : public Renderer { void free_tile_batch_buffers(); + TextureFormat mask_texture_format() const override; + + void reallocate_alpha_tile_pages_if_necessary(); + private: // Unlike D3D9, we only need mask/dest textures instead of mask/dest framebuffers. std::shared_ptr dest_texture; - uint64_t mask_texture_id; + + MaskStorage mask_storage; std::shared_ptr bound_pipeline, dice_pipeline, bin_pipeline, propagate_pipeline, sort_pipeline, fill_pipeline, tile_pipeline; /// Uniform buffers. - uint64_t bin_ub_id, bound_ub_id, dice_ub0_id, dice_ub1_id, fill_ub_id, propagate_ub_id, sort_ub_id, tile_ub0_id, - tile_ub1_id; + uint64_t bin_ub_id, bound_ub_id, dice_ub0_id, dice_ub1_id, fill_ub_id, propagate_ub_id, sort_ub_id, tile_ub_id; std::shared_ptr bound_descriptor_set, dice_descriptor_set, bin_descriptor_set, propagate_descriptor_set, sort_descriptor_set, fill_descriptor_set, tile_descriptor_set; diff --git a/src/core/d3d9/renderer.cpp b/src/core/d3d9/renderer.cpp index 7b9baddd..930936e0 100644 --- a/src/core/d3d9/renderer.cpp +++ b/src/core/d3d9/renderer.cpp @@ -8,6 +8,7 @@ #include "../../gpu/command_encoder.h" #include "../../gpu/device.h" #include "../../gpu/window.h" +#include "../paint/palette.h" #ifdef PATHFINDER_USE_VULKAN #include "../../shaders/generated/fill_frag_spv.h" @@ -55,10 +56,6 @@ RendererD3D9::RendererD3D9(const std::shared_ptr &_device, const std::sh dest_render_pass_load = device->create_render_pass(TextureFormat::Rgba8Unorm, AttachmentLoadOp::Load, "Dest render pass load"); - mask_framebuffer_id = allocator->allocate_framebuffer({MASK_FRAMEBUFFER_WIDTH, MASK_FRAMEBUFFER_HEIGHT}, - TextureFormat::Rgba16Float, - "Mask framebuffer"); - auto quad_vertex_data_size = sizeof(QUAD_VERTEX_POSITIONS); // Quad vertex buffer. Shared by fills and tiles drawing. @@ -113,10 +110,12 @@ void RendererD3D9::set_up_pipelines() { {1, 1, DataType::u32, stride, offsetof(Fill, link), VertexInputRate::Instance}); } + fill_ub_id = allocator->allocate_buffer(sizeof(FillUniformDx9), BufferType::Uniform, "Fill uniform buffer"); + // Set descriptor set. fill_descriptor_set = device->create_descriptor_set(); fill_descriptor_set->add_or_update({ - Descriptor::uniform(0, ShaderStage::Vertex, "bConstantSizes", allocator->get_buffer(constants_ub_id)), + Descriptor::uniform(0, ShaderStage::Vertex, "bUniform", allocator->get_buffer(fill_ub_id)), Descriptor::sampled(1, ShaderStage::Fragment, "uAreaLUT", @@ -166,40 +165,25 @@ void RendererD3D9::set_up_pipelines() { {1, 1, DataType::u32, stride, offsetof(TileObjectPrimitive, metadata_id), VertexInputRate::Instance}); } - // Create uniform buffers. - tile_transform_ub_id = - allocator->allocate_buffer(16 * sizeof(float), BufferType::Uniform, "Tile transform uniform buffer"); - tile_varying_sizes_ub_id = - allocator->allocate_buffer(8 * sizeof(float), BufferType::Uniform, "Tile varying sizes uniform buffer"); + // Create uniform buffer. + tile_ub_id = allocator->allocate_buffer(sizeof(TileUniformDx9), BufferType::Uniform, "Tile uniform buffer"); // Set descriptor set. tile_descriptor_set = device->create_descriptor_set(); tile_descriptor_set->add_or_update({ Descriptor::sampled(0, ShaderStage::Vertex, "uTextureMetadata"), Descriptor::sampled(1, ShaderStage::Vertex, "uZBuffer"), - Descriptor::uniform(2, ShaderStage::Vertex, "bTransform", allocator->get_buffer(tile_transform_ub_id)), - Descriptor::uniform(3, - ShaderStage::VertexAndFragment, - "bVaryingSizes", - allocator->get_buffer(tile_varying_sizes_ub_id)), - Descriptor::uniform(4, - ShaderStage::VertexAndFragment, - "bConstantSizes", - allocator->get_buffer(constants_ub_id)), - Descriptor::sampled(5, ShaderStage::Fragment, "uColorTexture0"), - Descriptor::sampled(6, - ShaderStage::Fragment, - "uMaskTexture0", - allocator->get_framebuffer(mask_framebuffer_id)->get_texture(), - get_default_sampler()), + Descriptor::uniform(2, ShaderStage::VertexAndFragment, "bUniform", allocator->get_buffer(tile_ub_id)), + Descriptor::sampled(3, ShaderStage::Fragment, "uColorTexture0"), + Descriptor::sampled(4, ShaderStage::Fragment, "uMaskTexture0"), // Unused binding. - Descriptor::sampled(7, + Descriptor::sampled(5, ShaderStage::Fragment, "uDestTexture", allocator->get_texture(dummy_texture_id), get_default_sampler()), // Unused binding. - Descriptor::sampled(8, + Descriptor::sampled(6, ShaderStage::Fragment, "uGammaLUT", allocator->get_texture(dummy_texture_id), @@ -220,6 +204,29 @@ void RendererD3D9::set_up_pipelines() { create_tile_clip_combine_pipeline(); } +TextureFormat RendererD3D9::mask_texture_format() const { + return TextureFormat::Rgba16Float; +} + +void RendererD3D9::reallocate_alpha_tile_pages_if_necessary() { + uint32_t alpha_tile_pages_needed = (alpha_tile_count + 0xffff) >> 16; + + if (alpha_tile_pages_needed <= mask_storage.allocated_page_count) { + return; + } + + auto new_size = Vec2I(MASK_FRAMEBUFFER_WIDTH, MASK_FRAMEBUFFER_HEIGHT * alpha_tile_pages_needed); + auto format = mask_texture_format(); + + auto mask_framebuffer_id = allocator->allocate_framebuffer(new_size, format, "Mask framebuffer"); + auto mask_framebuffer = allocator->get_framebuffer(mask_framebuffer_id); + + mask_storage = MaskStorage{ + mask_framebuffer_id, + alpha_tile_pages_needed, + }; +} + void RendererD3D9::create_tile_clip_copy_pipeline() { #ifdef PATHFINDER_USE_VULKAN const auto tile_clip_copy_vert_source = @@ -247,12 +254,8 @@ void RendererD3D9::create_tile_clip_copy_pipeline() { // Create descriptor set. tile_clip_copy_descriptor_set = device->create_descriptor_set(); tile_clip_copy_descriptor_set->add_or_update({ - Descriptor::uniform(0, ShaderStage::Vertex, "bConstantSizes", allocator->get_buffer(constants_ub_id)), - Descriptor::sampled(1, - ShaderStage::Fragment, - "uSrc", - allocator->get_framebuffer(mask_framebuffer_id)->get_texture(), - get_default_sampler()), + Descriptor::uniform(0, ShaderStage::Vertex, "bUniform", allocator->get_buffer(fill_ub_id)), + Descriptor::sampled(1, ShaderStage::Fragment, "uSrc", nullptr, get_default_sampler()), }); // We have to disable blend for tile clip copy. @@ -296,7 +299,7 @@ void RendererD3D9::create_tile_clip_combine_pipeline() { // Create descriptor set. tile_clip_combine_descriptor_set = device->create_descriptor_set(); tile_clip_combine_descriptor_set->add_or_update({ - Descriptor::uniform(0, ShaderStage::Vertex, "bConstantSizes", allocator->get_buffer(constants_ub_id)), + Descriptor::uniform(0, ShaderStage::Vertex, "bUniform", allocator->get_buffer(fill_ub_id)), Descriptor::sampled(1, ShaderStage::Fragment, "uSrc", nullptr, nullptr), }); @@ -317,6 +320,14 @@ void RendererD3D9::draw(const std::shared_ptr &_scene_builder) { // However, it seems not providing much performance boost. // So, we just leave it as it is for the sake of simplicity. + alpha_tile_count = 0; + + for (auto &fill : scene_builder->pending_fills) { + alpha_tile_count = std::max(alpha_tile_count, fill.link + 1); + } + + reallocate_alpha_tile_pages_if_necessary(); + // No fills to draw. if (!scene_builder->pending_fills.empty()) { auto encoder = device->create_command_encoder("Upload & draw fills"); @@ -418,7 +429,16 @@ void RendererD3D9::upload_and_draw_tiles(const std::vector &t void RendererD3D9::draw_fills(uint64_t fill_vertex_buffer_id, uint32_t fills_count, const std::shared_ptr &encoder) { - encoder->begin_render_pass(mask_render_pass_clear, allocator->get_framebuffer(mask_framebuffer_id), ColorF()); + FillUniformDx9 fill_uniform; + fill_uniform.tile_size = {TILE_WIDTH, TILE_HEIGHT}; + fill_uniform.framebuffer_size = {MASK_FRAMEBUFFER_WIDTH, + (float)(MASK_FRAMEBUFFER_HEIGHT * mask_storage.allocated_page_count)}; + + encoder->write_buffer(allocator->get_buffer(fill_ub_id), 0, sizeof(FillUniformDx9), &fill_uniform); + + encoder->begin_render_pass(mask_render_pass_clear, + allocator->get_framebuffer(mask_storage.framebuffer_id), + ColorF()); encoder->bind_render_pipeline(fill_pipeline); @@ -447,17 +467,28 @@ ClipBufferInfo RendererD3D9::upload_clip_tiles(const std::vector &clips, } void RendererD3D9::clip_tiles(const ClipBufferInfo &clip_buffer_info, const std::shared_ptr &encoder) { - // Temp mask framebuffer for clipping. - auto temp_mask_framebuffer_id = allocator->allocate_framebuffer({MASK_FRAMEBUFFER_WIDTH, MASK_FRAMEBUFFER_HEIGHT}, - TextureFormat::Rgba16Float, - "Temp mask framebuffer"); - auto mask_temp_framebuffer = allocator->get_framebuffer(temp_mask_framebuffer_id); + // A temporary mask framebuffer for clipping. + auto temp_mask_framebuffer_id = allocator->allocate_framebuffer( + Vec2I(MASK_FRAMEBUFFER_WIDTH, MASK_FRAMEBUFFER_HEIGHT * mask_storage.allocated_page_count), + TextureFormat::Rgba16Float, + "Temp mask framebuffer"); + + auto temp_mask_framebuffer = allocator->get_framebuffer(temp_mask_framebuffer_id); auto clip_vertex_buffer = allocator->get_buffer(clip_buffer_info.clip_buffer_id); + + tile_clip_copy_descriptor_set->add_or_update({ + Descriptor::sampled(1, + ShaderStage::Fragment, + "uSrc", + allocator->get_framebuffer(mask_storage.framebuffer_id)->get_texture(), + get_default_sampler()), + }); + // Copy out tiles. // TODO(pcwalton): Don't do this on GL4. { - encoder->begin_render_pass(mask_render_pass_clear, mask_temp_framebuffer, ColorF()); + encoder->begin_render_pass(mask_render_pass_clear, temp_mask_framebuffer, ColorF()); encoder->bind_render_pipeline(tile_clip_copy_pipeline); @@ -477,11 +508,13 @@ void RendererD3D9::clip_tiles(const ClipBufferInfo &clip_buffer_info, const std: Descriptor::sampled(1, ShaderStage::Fragment, "uSrc", - mask_temp_framebuffer->get_texture(), + temp_mask_framebuffer->get_texture(), get_default_sampler()), }); - encoder->begin_render_pass(mask_render_pass_load, allocator->get_framebuffer(mask_framebuffer_id), ColorF()); + encoder->begin_render_pass(mask_render_pass_load, + allocator->get_framebuffer(mask_storage.framebuffer_id), + ColorF()); encoder->bind_render_pipeline(tile_clip_combine_pipeline); @@ -539,18 +572,20 @@ void RendererD3D9::draw_tiles(uint64_t tile_vertex_buffer_id, // Update uniform buffers. { - // MVP (with only the model matrix). - auto model_mat = Mat4(1.f); + TileUniformDx9 tile_uniform; + tile_uniform.tile_size = {TILE_WIDTH, TILE_HEIGHT}; + tile_uniform.texture_metadata_size = {TEXTURE_METADATA_TEXTURE_WIDTH, TEXTURE_METADATA_TEXTURE_HEIGHT}; + tile_uniform.mask_texture_size = {MASK_FRAMEBUFFER_WIDTH, + (float)(MASK_FRAMEBUFFER_HEIGHT * mask_storage.allocated_page_count)}; + + // Transform matrix (i.e. the model matrix). + Mat4 model_mat = Mat4(1.f); model_mat = model_mat.translate(Vec3F(-1.f, -1.f, 0.f)); // Move to top-left. model_mat = model_mat.scale(Vec3F(2.f / target_framebuffer_size.x, 2.f / target_framebuffer_size.y, 1.f)); + tile_uniform.transform = model_mat; - Vec2F z_buffer_tex_size = z_buffer_texture->get_size().to_f32(); - std::array ubo_data = {z_buffer_tex_size.x, - z_buffer_tex_size.y, - 1, // Meaningless dummy size. - 1, - target_framebuffer_size.x, - target_framebuffer_size.y}; + tile_uniform.framebuffer_size = target_framebuffer_size.to_f32(); + tile_uniform.z_buffer_size = z_buffer_texture->get_size().to_f32(); if (color_texture_info) { auto color_texture_page = pattern_texture_pages[color_texture_info->page_id]; @@ -565,14 +600,11 @@ void RendererD3D9::draw_tiles(uint64_t tile_vertex_buffer_id, } } - Vec2F color_texture_size = color_texture->get_size().to_f32(); - ubo_data[2] = color_texture_size.x; - ubo_data[3] = color_texture_size.y; + tile_uniform.color_texture_size = color_texture->get_size().to_f32(); // We don't need to preserve the data until the upload commands are implemented because // these uniform buffers are host-visible/coherent. - encoder->write_buffer(allocator->get_buffer(tile_transform_ub_id), 0, 16 * sizeof(float), &model_mat); - encoder->write_buffer(allocator->get_buffer(tile_varying_sizes_ub_id), 0, 6 * sizeof(float), ubo_data.data()); + encoder->write_buffer(allocator->get_buffer(tile_ub_id), 0, sizeof(TileUniformDx9), &tile_uniform); } // Update descriptor set. @@ -583,7 +615,12 @@ void RendererD3D9::draw_tiles(uint64_t tile_vertex_buffer_id, allocator->get_texture(metadata_texture_id), default_sampler), Descriptor::sampled(1, ShaderStage::Vertex, "uZBuffer", z_buffer_texture, default_sampler), - Descriptor::sampled(5, ShaderStage::Fragment, "uColorTexture0", color_texture, color_texture_sampler), + Descriptor::sampled(3, ShaderStage::Fragment, "uColorTexture0", color_texture, color_texture_sampler), + Descriptor::sampled(4, + ShaderStage::Fragment, + "uMaskTexture0", + allocator->get_framebuffer(mask_storage.framebuffer_id)->get_texture(), + get_default_sampler()), }); encoder->bind_render_pipeline(tile_pipeline); diff --git a/src/core/d3d9/renderer.h b/src/core/d3d9/renderer.h index 4f70e2d7..9e7861e2 100644 --- a/src/core/d3d9/renderer.h +++ b/src/core/d3d9/renderer.h @@ -4,6 +4,7 @@ #include #include "../../common/global_macros.h" +#include "../../common/math/mat4.h" #include "../../gpu/descriptor_set.h" #include "../../gpu/framebuffer.h" #include "../../gpu/render_pass.h" @@ -19,6 +20,21 @@ struct ClipBufferInfo { uint32_t clip_count; }; +struct FillUniformDx9 { + Vec2F tile_size; // Fixed as (16, 16). + Vec2F framebuffer_size; // Mask framebuffer size. Dynamic as (4096, 1024 * page_count). +}; + +struct TileUniformDx9 { + Vec2F tile_size; // Fixed as (16, 16). + Vec2F texture_metadata_size; + Vec2F z_buffer_size; + Vec2F mask_texture_size; + Vec2F color_texture_size; + Vec2F framebuffer_size; + Mat4 transform; +}; + /// Renderer should run in a different thread than that of the builder. class RendererD3D9 : public Renderer { public: @@ -42,14 +58,14 @@ class RendererD3D9 : public Renderer { std::shared_ptr tile_clip_copy_descriptor_set, tile_clip_combine_descriptor_set; // For clip paths. /// Uniform buffers. - uint64_t tile_varying_sizes_ub_id, tile_transform_ub_id; + uint64_t fill_ub_id, tile_ub_id; /// Where the final rendering output goes. /// This is not managed by the memory allocator. std::shared_ptr dest_framebuffer; /// Where to draw the mask texture. - uint64_t mask_framebuffer_id; + MaskStorage mask_storage; std::shared_ptr mask_render_pass_clear, mask_render_pass_load; std::shared_ptr dest_render_pass_clear, dest_render_pass_load; @@ -67,6 +83,10 @@ class RendererD3D9 : public Renderer { void set_dest_texture(const std::shared_ptr &new_texture) override; private: + void reallocate_alpha_tile_pages_if_necessary(); + + TextureFormat mask_texture_format() const override; + void create_tile_clip_copy_pipeline(); void create_tile_clip_combine_pipeline(); diff --git a/src/core/renderer.cpp b/src/core/renderer.cpp index 4a0fb6b3..e93837b6 100644 --- a/src/core/renderer.cpp +++ b/src/core/renderer.cpp @@ -14,16 +14,6 @@ Renderer::Renderer(const std::shared_ptr &_device, const std::shared_ptr : device(_device), queue(_queue) { allocator = std::make_shared(device); - // Uniform buffer for some constants. - constants_ub_id = allocator->allocate_buffer(8 * sizeof(float), BufferType::Uniform, "Constants uniform buffer"); - - std::array constants = {MASK_FRAMEBUFFER_WIDTH, - MASK_FRAMEBUFFER_HEIGHT, - TILE_WIDTH, - TILE_HEIGHT, - TEXTURE_METADATA_TEXTURE_WIDTH, - TEXTURE_METADATA_TEXTURE_HEIGHT}; - // Area-Lut texture. auto image_buffer = ImageBuffer::from_memory({std::begin(area_lut_png), std::end(area_lut_png)}, false); @@ -37,9 +27,7 @@ Renderer::Renderer(const std::shared_ptr &_device, const std::shared_ptr TextureFormat::Rgba16Float, "Metadata texture"); - auto encoder = device->create_command_encoder("Upload constant data"); - - encoder->write_buffer(allocator->get_buffer(constants_ub_id), 0, 6 * sizeof(float), constants.data()); + auto encoder = device->create_command_encoder("Upload common renderer data"); encoder->write_texture(allocator->get_texture(area_lut_texture_id), {}, image_buffer->get_data()); diff --git a/src/core/renderer.h b/src/core/renderer.h index 06a24dc7..100f30c1 100644 --- a/src/core/renderer.h +++ b/src/core/renderer.h @@ -17,8 +17,8 @@ const uint32_t MASK_TILES_DOWN = 256; /// Mask framebuffer size. // Divide the height by 4 to compress the rows into rgba channels. -const int32_t MASK_FRAMEBUFFER_WIDTH = TILE_WIDTH * MASK_TILES_ACROSS; -const int32_t MASK_FRAMEBUFFER_HEIGHT = TILE_HEIGHT / 4 * MASK_TILES_DOWN; +const uint32_t MASK_FRAMEBUFFER_WIDTH = TILE_WIDTH * MASK_TILES_ACROSS; +const uint32_t MASK_FRAMEBUFFER_HEIGHT = TILE_HEIGHT / 4 * MASK_TILES_DOWN; struct RenderTarget { std::shared_ptr framebuffer; @@ -39,6 +39,12 @@ class PatternTexturePage { bool must_preserve_contents; }; +struct MaskStorage { + /// Texture ID for Dx11. + uint64_t framebuffer_id; + uint32_t allocated_page_count = 0; +}; + /// In most cases, we have only one renderer set up, while having /// multiple scenes prepared for rendering. /// All GPU operations happens in the renderer. @@ -91,17 +97,22 @@ class Renderer { std::shared_ptr queue; +protected: + virtual TextureFormat mask_texture_format() const = 0; + protected: /// If we should clear the dest framebuffer or texture. bool clear_dest_texture = true; + uint32_t alpha_tile_count = 0; + // Basic data. std::shared_ptr allocator; // Read-only static core resources. // ----------------------------------------------- /// Uniform buffer containing some constants. Shared by D3D9 and D3D10. - uint64_t constants_ub_id; + uint64_t common_sizes_ub_id; /// Pre-Defined texture used to draw the mask texture. Shared by D3D9 and D3D10. uint64_t area_lut_texture_id; diff --git a/src/gpu/gl/command_encoder.cpp b/src/gpu/gl/command_encoder.cpp index a72b9f6b..5359a93a 100644 --- a/src/gpu/gl/command_encoder.cpp +++ b/src/gpu/gl/command_encoder.cpp @@ -165,6 +165,8 @@ bool CommandEncoderGl::finish() { unsigned int ubo_index = glGetUniformBlockIndex(program_id, binding_name.c_str()); glUniformBlockBinding(program_id, ubo_index, binding_point); glBindBufferBase(GL_UNIFORM_BUFFER, binding_point, buffer_gl->get_handle()); + + gl_check_error("Mismatched uniform binding name!"); } break; case DescriptorType::Sampler: { auto texture_gl = static_cast(descriptor.texture.get()); @@ -172,6 +174,8 @@ bool CommandEncoderGl::finish() { if (!binding_name.empty()) { glUniform1i(glGetUniformLocation(program_id, binding_name.c_str()), (GLint)binding_point); + + gl_check_error("Mismatched texture binding name!"); } glActiveTexture(GL_TEXTURE0 + binding_point); diff --git a/src/shaders/d3d11/bin.comp b/src/shaders/d3d11/bin.comp index a7e9f098..408347d0 100644 --- a/src/shaders/d3d11/bin.comp +++ b/src/shaders/d3d11/bin.comp @@ -20,8 +20,8 @@ layout(local_size_x = 64) in; layout(std140, binding = 6) uniform bUniform { int uMicrolineCount; int uMaxFillCount; // How many slots we have allocated for fills. - int pad0; - int pad1; + int uPad0; + int uPad1; }; restrict readonly layout(std430, binding = 0) buffer bMicrolines { diff --git a/src/shaders/d3d11/bound.comp b/src/shaders/d3d11/bound.comp index e6a670f2..0d58c5b1 100644 --- a/src/shaders/d3d11/bound.comp +++ b/src/shaders/d3d11/bound.comp @@ -14,8 +14,8 @@ layout(local_size_x = 64) in; layout(std140, binding = 2) uniform bUniform { int uPathCount; int uTileCount; - int pad0; - int pad1; + int uPad0; + int uPad1; }; restrict readonly layout(std430, binding = 0) buffer bTilePathInfo { diff --git a/src/shaders/d3d11/dice.comp b/src/shaders/d3d11/dice.comp index ae591b1e..d0f613c6 100644 --- a/src/shaders/d3d11/dice.comp +++ b/src/shaders/d3d11/dice.comp @@ -21,14 +21,14 @@ layout(local_size_x = 64) in; layout(std140, binding = 5) uniform bUniform0 { mat2 uTransform; vec2 uTranslation; - vec2 pad0; + vec2 uPad0; }; layout(std140, binding = 6) uniform bUniform1 { int uPathCount; int uLastBatchSegmentIndex; int uMaxMicrolineCount; - int pad1; + int uPad1; }; layout(std430, binding = 0) restrict buffer bComputeIndirectParams { diff --git a/src/shaders/d3d11/fill.comp b/src/shaders/d3d11/fill.comp index 53ec2098..e47d09e2 100644 --- a/src/shaders/d3d11/fill.comp +++ b/src/shaders/d3d11/fill.comp @@ -30,7 +30,7 @@ layout(binding = 4) uniform sampler2D uAreaLUT; layout(std140, binding = 5) uniform bUniform { ivec2 uAlphaTileRange; - ivec2 pad; + ivec2 uPad0; }; // microlines_buffer diff --git a/src/shaders/d3d11/sort.comp b/src/shaders/d3d11/sort.comp index dfb3832b..f2e31063 100644 --- a/src/shaders/d3d11/sort.comp +++ b/src/shaders/d3d11/sort.comp @@ -11,9 +11,9 @@ precision highp float; layout(std140, binding = 3) uniform bUniform { int uTileCount; - int pad0; - int pad1; - int pad2; + int uPad0; + int uPad1; + int uPad2; }; restrict layout(std430, binding = 0) buffer bTiles { diff --git a/src/shaders/d3d11/tile.comp b/src/shaders/d3d11/tile.comp index 486ebe62..ec20597a 100644 --- a/src/shaders/d3d11/tile.comp +++ b/src/shaders/d3d11/tile.comp @@ -30,24 +30,15 @@ writeonly layout(rgba8, binding = 7) uniform image2D uDestImage; layout(rgba8, binding = 7) uniform image2D uDestImage; #endif -layout(std140, binding = 8) uniform bConstantsUniform { - vec2 uMaskTextureSize0; +layout(std140, binding = 8) uniform bUniform { + vec4 uClearColor; + int uLoadAction, uPad0, uPad1, uPad2; vec2 uTileSize; vec2 uTextureMetadataSize; - vec2 pad0; -}; - -layout(std140, binding = 9) uniform bUniform0 { - vec4 uClearColor; - vec2 uColorTextureSize0; vec2 uFramebufferSize; -}; - -layout(std140, binding = 10) uniform bUniform1 { - ivec2 uZBufferSize; ivec2 uFramebufferTileSize; - int uLoadAction; - int pad1, pad2, pad3; + vec2 uMaskTextureSize0; + vec2 uColorTextureSize0; }; restrict readonly layout(std430, binding = 0) buffer bTiles { diff --git a/src/shaders/d3d9/fill.vert b/src/shaders/d3d9/fill.vert index 289a3a9d..33f2511a 100644 --- a/src/shaders/d3d9/fill.vert +++ b/src/shaders/d3d9/fill.vert @@ -11,14 +11,12 @@ // except according to those terms. #ifdef VULKAN - layout(binding = 0) uniform bConstantSizes { + layout(binding = 0) uniform bUniform { #else - layout(std140) uniform bConstantSizes { + layout(std140) uniform bUniform { #endif - vec2 uFramebufferSize; // Fixed as (4096, 1024). vec2 uTileSize; // Fixed as (16, 16). - vec2 uTextureMetadataSize; // Fixed as (1280, 512). Not used here. - vec2 pad; + vec2 uFramebufferSize; // Mask framebuffer. Dynamic as (4096, 1024 * page_count). }; layout(location=0) in uvec2 aTessCoord; // Vertex coordinates in a quad, fixed. diff --git a/src/shaders/d3d9/tile.frag b/src/shaders/d3d9/tile.frag index 2f55b345..a0a86477 100644 --- a/src/shaders/d3d9/tile.frag +++ b/src/shaders/d3d9/tile.frag @@ -17,32 +17,24 @@ precision highp sampler2D; #endif #ifdef VULKAN -layout(binding = 3) uniform bVaryingSizes { +layout(binding = 2) uniform bUniform { #else -layout(std140) uniform bVaryingSizes { +layout(std140) uniform bUniform { #endif - vec2 uZBufferSize; // Will vary. - vec2 uColorTextureSize0; // Will vary. - vec2 uFramebufferSize; // Will vary. - vec2 pad0; + vec2 uTileSize; // Fixed as (16, 16). + vec2 uTextureMetadataSize; // Fixed as (1280, 512). + vec2 uZBufferSize; // Not used here. + vec2 uMaskTextureSize0; // Dynamic as (4096, 1024 * page_count). + vec2 uColorTextureSize0; + vec2 uFramebufferSize; // Dst framebuffer. + mat4 uTransform; }; #ifdef VULKAN -layout(binding = 4) uniform bConstantSizes { -#else -layout(std140) uniform bConstantSizes { -#endif - vec2 uMaskTextureSize0; // Fixed as (4096, 1024). - vec2 uTileSize; // Fixed as (16, 16). Not used here. - vec2 uTextureMetadataSize; // Fixed as (1280, 512). Not used here. - vec2 pad1; -}; - -#ifdef VULKAN -layout(binding = 5) uniform sampler2D uColorTexture0; // Pattern image. -layout(binding = 6) uniform sampler2D uMaskTexture0; -layout(binding = 7) uniform sampler2D uDestTexture; -layout(binding = 8) uniform sampler2D uGammaLUT; +layout(binding = 3) uniform sampler2D uColorTexture0; // Pattern image. +layout(binding = 4) uniform sampler2D uMaskTexture0; +layout(binding = 5) uniform sampler2D uDestTexture; +layout(binding = 6) uniform sampler2D uGammaLUT; layout(location = 0) in vec3 vMaskTexCoord0; layout(location = 1) in vec2 vColorTexCoord0; diff --git a/src/shaders/d3d9/tile.vert b/src/shaders/d3d9/tile.vert index f5bdf663..bdaaf253 100644 --- a/src/shaders/d3d9/tile.vert +++ b/src/shaders/d3d9/tile.vert @@ -23,33 +23,17 @@ uniform sampler2D uZBuffer; #endif #ifdef VULKAN -layout(binding = 2) uniform bTransform { +layout(binding = 2) uniform bUniform { #else -layout(std140) uniform bTransform { +layout(std140) uniform bUniform { #endif - mat4 uTransform; // Will vary. -}; - -#ifdef VULKAN -layout(binding = 3) uniform bVaryingSizes { -#else -layout(std140) uniform bVaryingSizes { -#endif - vec2 uZBufferSize; // Will vary. - vec2 uColorTextureSize0; // Will vary. - vec2 uFramebufferSize; // Will vary. - vec2 pad0; -}; - -#ifdef VULKAN -layout(binding = 4) uniform bConstantSizes { -#else -layout(std140) uniform bConstantSizes { -#endif - vec2 uMaskTextureSize0; // Fixed as (4096, 1024). Not used here. vec2 uTileSize; // Fixed as (16, 16). vec2 uTextureMetadataSize; // Fixed as (1280, 512). - vec2 pad1; + vec2 uZBufferSize; + vec2 uMaskTextureSize0; // Not used here. + vec2 uColorTextureSize0; // Not used here. + vec2 uFramebufferSize; // Not used here. + mat4 uTransform; }; layout(location = 0) in uvec2 aTileOffset; // Tile local coordinates diff --git a/src/shaders/d3d9/tile_clip_combine.vert b/src/shaders/d3d9/tile_clip_combine.vert index fc336e8e..dd019efe 100644 --- a/src/shaders/d3d9/tile_clip_combine.vert +++ b/src/shaders/d3d9/tile_clip_combine.vert @@ -17,14 +17,12 @@ precision highp sampler2D; #endif #ifdef VULKAN -layout(binding = 0) uniform bConstantSizes { +layout(binding = 0) uniform bUniform { #else -layout(std140) uniform bConstantSizes { +layout(std140) uniform bUniform { #endif - vec2 uFramebufferSize; // Fixed as (4096, 1024). - vec2 pad0; // Not used here. - vec2 pad1; - vec2 pad2; + vec2 uTileSize; // Fixed as (16, 16). + vec2 uFramebufferSize; // Mask framebuffer. Dynamic as (4096, 1024 * page_count). }; #ifdef VULKAN diff --git a/src/shaders/d3d9/tile_clip_copy.vert b/src/shaders/d3d9/tile_clip_copy.vert index a565eafa..e0fdd03f 100644 --- a/src/shaders/d3d9/tile_clip_copy.vert +++ b/src/shaders/d3d9/tile_clip_copy.vert @@ -17,14 +17,12 @@ precision highp sampler2D; #endif #ifdef VULKAN -layout(binding = 0) uniform bConstantSizes { +layout(binding = 0) uniform bUniform { #else -layout(std140) uniform bConstantSizes { +layout(std140) uniform bUniform { #endif - vec2 uFramebufferSize; // Fixed as (4096, 1024). - vec2 pad0; // Not used here. - vec2 pad1; - vec2 pad2; + vec2 uTileSize; // Fixed as (16, 16). + vec2 uFramebufferSize; // Mask framebuffer. Dynamic as (4096, 1024 * page_count). }; #ifdef VULKAN diff --git a/src/shaders/generated/bin_comp.h b/src/shaders/generated/bin_comp.h index 3edc88a2..3b9c1458 100644 --- a/src/shaders/generated/bin_comp.h +++ b/src/shaders/generated/bin_comp.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_BIN_COMP_H namespace Pathfinder { - static uint8_t bin_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,47,47,32,65,115,115,105,103,110,115,32,109,105,99,114,111,108,105,110,101,115,32,116,111,32,116,105,108,101,115,46,32,71,101,110,101,114,97,116,101,32,102,105,108,108,115,32,117,115,101,100,32,105,110,32,102,105,108,108,46,99,111,109,112,46,13,10,13,10,35,100,101,102,105,110,101,32,77,65,88,95,73,84,69,82,65,84,73,79,78,83,32,32,32,32,32,32,32,32,32,32,49,48,50,52,117,13,10,13,10,35,100,101,102,105,110,101,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,78,79,78,69,32,32,32,32,32,48,13,10,35,100,101,102,105,110,101,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,32,32,32,32,32,32,32,32,49,13,10,35,100,101,102,105,110,101,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,32,32,32,32,32,32,32,32,50,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,117,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,110,116,32,117,77,105,99,114,111,108,105,110,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,77,97,120,70,105,108,108,67,111,117,110,116,59,32,47,47,32,72,111,119,32,109,97,110,121,32,115,108,111,116,115,32,119,101,32,104,97,118,101,32,97,108,108,111,99,97,116,101,100,32,102,111,114,32,102,105,108,108,115,46,13,10,32,32,32,32,105,110,116,32,112,97,100,48,59,13,10,32,32,32,32,105,110,116,32,112,97,100,49,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,77,105,99,114,111,108,105,110,101,115,32,123,13,10,32,32,32,32,117,118,101,99,52,32,105,77,105,99,114,111,108,105,110,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,77,101,116,97,100,97,116,97,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,116,105,108,101,32,114,101,99,116,13,10,32,32,32,32,47,47,32,91,49,93,46,120,58,32,116,105,108,101,32,111,102,102,115,101,116,13,10,32,32,32,32,47,47,32,91,49,93,46,121,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,91,49,93,46,122,58,32,122,32,119,114,105,116,101,32,102,108,97,103,13,10,32,32,32,32,47,47,32,91,49,93,46,119,58,32,99,108,105,112,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,91,50,93,46,120,58,32,98,97,99,107,100,114,111,112,32,111,102,102,115,101,116,13,10,32,32,32,32,105,118,101,99,52,32,105,77,101,116,97,100,97,116,97,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,98,117,102,102,101,114,32,98,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,118,101,114,116,101,120,67,111,117,110,116,32,40,54,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,105,110,115,116,97,110,99,101,67,111,117,110,116,32,40,111,102,32,102,105,108,108,115,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,118,101,114,116,101,120,83,116,97,114,116,32,40,48,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,98,97,115,101,73,110,115,116,97,110,99,101,32,40,48,41,13,10,32,32,32,32,47,47,32,91,52,93,58,32,97,108,112,104,97,32,116,105,108,101,32,99,111,117,110,116,13,10,32,32,32,32,117,105,110,116,32,105,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,98,117,102,102,101,114,32,98,70,105,108,108,115,32,123,13,10,32,32,32,32,117,105,110,116,32,105,70,105,108,108,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,52,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,48,44,32,45,49,32,114,101,115,112,101,99,116,105,118,101,108,121,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,53,41,32,98,117,102,102,101,114,32,98,66,97,99,107,100,114,111,112,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,98,97,99,107,100,114,111,112,13,10,32,32,32,32,47,47,32,91,49,93,58,32,116,105,108,101,32,88,32,111,102,102,115,101,116,13,10,32,32,32,32,47,47,32,91,50,93,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,117,105,110,116,32,105,66,97,99,107,100,114,111,112,115,91,93,59,13,10,125,59,13,10,13,10,117,105,110,116,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,32,123,13,10,32,32,32,32,105,118,101,99,50,32,111,102,102,115,101,116,67,111,111,114,100,115,32,61,32,116,105,108,101,67,111,111,114,100,115,32,45,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,121,59,13,10,32,32,32,32,114,101,116,117,114,110,32,117,105,110,116,40,105,110,116,40,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,32,43,32,111,102,102,115,101,116,67,111,111,114,100,115,46,120,32,43,32,111,102,102,115,101,116,67,111,111,114,100,115,46,121,32,42,32,40,112,97,116,104,84,105,108,101,82,101,99,116,46,122,32,45,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,41,41,59,13,10,125,13,10,13,10,98,118,101,99,52,32,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,98,118,101,99,52,40,108,101,115,115,84,104,97,110,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,121,41,44,32,103,114,101,97,116,101,114,84,104,97,110,69,113,117,97,108,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,46,122,119,41,41,59,13,10,125,13,10,13,10,98,111,111,108,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,40,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,117,105,110,116,32,111,117,116,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,111,117,116,84,105,108,101,73,110,100,101,120,32,61,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,33,97,110,121,40,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,41,41,59,13,10,125,13,10,13,10,118,111,105,100,32,97,100,100,70,105,108,108,40,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,44,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,32,123,13,10,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,105,108,101,32,111,102,102,115,101,116,46,32,73,102,32,111,117,116,32,111,102,32,98,111,117,110,100,115,44,32,99,117,108,108,46,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,105,102,32,40,33,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,32,116,105,108,101,73,110,100,101,120,41,41,32,123,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,67,108,105,112,32,108,105,110,101,46,32,73,102,32,116,111,111,32,110,97,114,114,111,119,44,32,99,117,108,108,46,13,10,32,32,32,32,117,118,101,99,52,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,32,61,32,117,118,101,99,52,40,40,108,105,110,101,83,101,103,109,101,110,116,32,45,32,118,101,99,52,40,116,105,108,101,67,111,111,114,100,115,46,120,121,120,121,32,42,32,105,118,101,99,52,40,49,54,41,41,41,32,42,32,118,101,99,52,40,50,53,54,46,48,41,41,59,13,10,32,32,32,32,105,102,32,40,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,120,32,61,61,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,122,41,32,123,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,66,117,109,112,32,105,110,115,116,97,110,99,101,32,99,111,117,110,116,46,13,10,32,32,32,32,117,105,110,116,32,102,105,108,108,73,110,100,101,120,32,61,32,97,116,111,109,105,99,65,100,100,40,105,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,91,49,93,44,32,49,117,41,59,13,10,13,10,32,32,32,32,47,47,32,70,105,108,108,32,111,117,116,32,116,104,101,32,108,105,110,107,32,102,105,101,108,100,44,32,105,110,115,101,114,116,105,110,103,32,105,110,116,111,32,116,104,101,32,108,105,110,107,101,100,32,108,105,115,116,46,13,10,32,32,32,32,117,105,110,116,32,102,105,108,108,76,105,110,107,32,61,32,97,116,111,109,105,99,69,120,99,104,97,110,103,101,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,93,44,32,102,105,108,108,73,110,100,101,120,41,59,13,10,13,10,32,32,32,32,47,47,32,87,114,105,116,101,32,102,105,108,108,46,13,10,32,32,32,32,105,102,32,40,102,105,108,108,73,110,100,101,120,32,60,32,117,105,110,116,40,117,77,97,120,70,105,108,108,67,111,117,110,116,41,41,32,123,13,10,32,32,32,32,32,32,32,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,117,32,43,32,48,117,93,32,61,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,120,32,124,32,40,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,121,32,60,60,32,49,54,41,59,13,10,32,32,32,32,32,32,32,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,117,32,43,32,49,117,93,32,61,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,122,32,124,32,40,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,119,32,60,60,32,49,54,41,59,13,10,32,32,32,32,32,32,32,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,117,32,43,32,50,117,93,32,61,32,102,105,108,108,76,105,110,107,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,118,111,105,100,32,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,105,110,116,32,98,97,99,107,100,114,111,112,68,101,108,116,97,44,13,10,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,13,10,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,117,105,110,116,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,41,32,123,13,10,32,32,32,32,98,118,101,99,52,32,111,117,116,99,111,100,101,115,32,61,32,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,41,59,13,10,32,32,32,32,105,102,32,40,97,110,121,40,111,117,116,99,111,100,101,115,41,41,32,123,13,10,32,32,32,32,32,32,32,32,105,102,32,40,33,111,117,116,99,111,100,101,115,46,120,32,38,38,32,111,117,116,99,111,100,101,115,46,121,32,38,38,32,33,111,117,116,99,111,100,101,115,46,122,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,98,97,99,107,100,114,111,112,73,110,100,101,120,32,61,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,32,43,32,117,105,110,116,40,116,105,108,101,67,111,111,114,100,115,46,120,32,45,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,116,111,109,105,99,65,100,100,40,105,66,97,99,107,100,114,111,112,115,91,98,97,99,107,100,114,111,112,73,110,100,101,120,32,42,32,51,117,93,44,32,117,105,110,116,40,98,97,99,107,100,114,111,112,68,101,108,116,97,41,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,97,116,111,109,105,99,65,100,100,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,44,13,10,32,32,32,32,32,32,32,32,117,105,110,116,40,98,97,99,107,100,114,111,112,68,101,108,116,97,41,32,60,60,32,50,52,41,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,47,47,32,68,111,110,39,116,32,112,97,115,115,32,105,77,105,99,114,111,108,105,110,101,115,32,97,115,32,97,114,103,117,109,101,110,116,32,104,101,114,101,46,13,10,47,47,32,79,116,104,101,114,119,105,115,101,44,32,119,101,39,108,108,32,103,101,116,32,34,70,117,110,99,116,105,111,110,32,99,97,108,108,32,100,105,115,99,97,114,100,115,32,39,114,101,97,100,111,110,108,121,39,32,97,99,99,101,115,115,32,113,117,97,108,105,102,105,101,114,34,32,101,114,114,111,114,32,105,110,32,71,76,69,83,46,13,10,118,101,99,52,32,117,110,112,97,99,107,77,105,99,114,111,108,105,110,101,40,117,105,110,116,32,115,101,103,109,101,110,116,73,110,100,101,120,44,32,111,117,116,32,117,105,110,116,32,111,117,116,80,97,116,104,73,110,100,101,120,41,32,123,13,10,32,32,32,32,111,117,116,80,97,116,104,73,110,100,101,120,32,61,32,105,77,105,99,114,111,108,105,110,101,115,91,115,101,103,109,101,110,116,73,110,100,101,120,93,46,119,59,13,10,32,32,32,32,105,118,101,99,52,32,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,32,61,32,105,118,101,99,52,40,105,77,105,99,114,111,108,105,110,101,115,91,115,101,103,109,101,110,116,73,110,100,101,120,93,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,120,32,60,60,32,49,54,41,32,62,62,32,49,54,44,32,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,120,32,62,62,32,49,54,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,121,32,60,60,32,49,54,41,32,62,62,32,49,54,44,32,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,121,32,62,62,32,49,54,41,13,10,32,32,32,32,32,32,32,32,43,32,118,101,99,52,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,38,32,48,120,102,102,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,62,62,32,56,41,32,38,32,48,120,102,102,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,62,62,32,49,54,41,32,38,32,48,120,102,102,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,62,62,32,50,52,41,32,38,32,48,120,102,102,41,32,47,32,50,53,54,46,48,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,117,105,110,116,32,115,101,103,109,101,110,116,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,115,101,103,109,101,110,116,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,77,105,99,114,111,108,105,110,101,67,111,117,110,116,41,41,32,123,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,117,110,112,97,99,107,77,105,99,114,111,108,105,110,101,40,115,101,103,109,101,110,116,73,110,100,101,120,44,32,112,97,116,104,73,110,100,101,120,41,59,13,10,13,10,32,32,32,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,32,61,32,105,77,101,116,97,100,97,116,97,91,112,97,116,104,73,110,100,101,120,32,42,32,51,117,32,43,32,48,117,93,59,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,32,61,32,117,105,110,116,40,105,77,101,116,97,100,97,116,97,91,112,97,116,104,73,110,100,101,120,32,42,32,51,117,32,43,32,49,117,93,46,120,41,59,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,32,61,32,117,105,110,116,40,105,77,101,116,97,100,97,116,97,91,112,97,116,104,73,110,100,101,120,32,42,32,51,117,32,43,32,50,117,93,46,120,41,59,13,10,13,10,32,32,32,32,47,47,32,70,111,108,108,111,119,105,110,103,32,105,115,32,97,32,115,116,114,97,105,103,104,116,32,112,111,114,116,32,111,102,32,96,112,114,111,99,101,115,115,95,108,105,110,101,95,115,101,103,109,101,110,116,40,41,96,58,13,10,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,105,122,101,32,61,32,105,118,101,99,50,40,49,54,41,59,13,10,13,10,32,32,32,32,105,118,101,99,52,32,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,32,61,32,105,118,101,99,52,40,102,108,111,111,114,40,108,105,110,101,83,101,103,109,101,110,116,32,47,32,118,101,99,52,40,116,105,108,101,83,105,122,101,46,120,121,120,121,41,41,41,59,13,10,32,32,32,32,105,118,101,99,50,32,102,114,111,109,84,105,108,101,67,111,111,114,100,115,32,61,32,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,116,111,84,105,108,101,67,111,111,114,100,115,32,61,32,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,46,122,119,59,13,10,13,10,32,32,32,32,118,101,99,50,32,118,101,99,116,111,114,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,32,45,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,59,13,10,32,32,32,32,118,101,99,50,32,118,101,99,116,111,114,73,115,78,101,103,97,116,105,118,101,32,61,32,118,101,99,50,40,118,101,99,116,111,114,46,120,32,60,32,48,46,48,32,63,32,45,49,46,48,32,58,32,48,46,48,44,32,118,101,99,116,111,114,46,121,32,60,32,48,46,48,32,63,32,45,49,46,48,32,58,32,48,46,48,41,59,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,116,101,112,32,61,32,105,118,101,99,50,40,118,101,99,116,111,114,46,120,32,60,32,48,46,48,32,63,32,45,49,32,58,32,49,44,32,118,101,99,116,111,114,46,121,32,60,32,48,46,48,32,63,32,45,49,32,58,32,49,41,59,13,10,13,10,32,32,32,32,118,101,99,50,32,102,105,114,115,116,84,105,108,101,67,114,111,115,115,105,110,103,32,61,32,118,101,99,50,40,40,102,114,111,109,84,105,108,101,67,111,111,114,100,115,32,43,32,105,118,101,99,50,40,118,101,99,116,111,114,46,120,32,62,61,32,48,46,48,32,63,32,49,32,58,32,48,44,32,118,101,99,116,111,114,46,121,32,62,61,32,48,46,48,32,63,32,49,32,58,32,48,41,41,32,42,32,116,105,108,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,118,101,99,50,32,116,77,97,120,32,61,32,40,102,105,114,115,116,84,105,108,101,67,114,111,115,115,105,110,103,32,45,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,41,32,47,32,118,101,99,116,111,114,59,13,10,32,32,32,32,118,101,99,50,32,116,68,101,108,116,97,32,61,32,97,98,115,40,118,101,99,50,40,116,105,108,101,83,105,122,101,41,32,47,32,118,101,99,116,111,114,41,59,13,10,13,10,32,32,32,32,118,101,99,50,32,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,59,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,32,61,32,102,114,111,109,84,105,108,101,67,111,111,114,100,115,59,13,10,32,32,32,32,105,110,116,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,78,79,78,69,59,13,10,32,32,32,32,117,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,117,59,13,10,13,10,32,32,32,32,119,104,105,108,101,32,40,105,116,101,114,97,116,105,111,110,32,60,32,77,65,88,95,73,84,69,82,65,84,73,79,78,83,41,32,123,13,10,32,32,32,32,32,32,32,32,105,110,116,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,59,13,10,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,77,97,120,46,120,32,60,32,116,77,97,120,46,121,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,116,77,97,120,46,120,32,62,32,116,77,97,120,46,121,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,116,105,108,101,83,116,101,112,46,120,32,62,32,48,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,59,13,10,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,110,101,120,116,84,32,61,32,109,105,110,40,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,32,63,32,116,77,97,120,46,120,32,58,32,116,77,97,120,46,121,44,32,49,46,48,41,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,39,118,101,32,114,101,97,99,104,101,100,32,116,104,101,32,101,110,100,32,116,105,108,101,44,32,100,111,110,39,116,32,115,116,101,112,32,97,116,32,97,108,108,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,67,111,111,114,100,115,32,61,61,32,116,111,84,105,108,101,67,111,111,114,100,115,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,78,79,78,69,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,110,101,120,116,80,111,115,105,116,105,111,110,32,61,32,109,105,120,40,108,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,44,32,110,101,120,116,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,44,32,110,101,120,116,80,111,115,105,116,105,111,110,41,59,13,10,13,10,32,32,32,32,32,32,32,32,97,100,100,70,105,108,108,40,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,44,32,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,101,120,116,114,97,32,102,105,108,108,115,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,59,13,10,32,32,32,32,32,32,32,32,98,111,111,108,32,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,102,97,108,115,101,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,83,116,101,112,46,121,32,60,32,48,32,38,38,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,46,122,119,44,32,118,101,99,50,40,116,105,108,101,67,111,111,114,100,115,32,42,32,116,105,108,101,83,105,122,101,41,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,116,114,117,101,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,105,108,101,83,116,101,112,46,121,32,62,32,48,32,38,38,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,118,101,99,50,40,116,105,108,101,67,111,111,114,100,115,32,42,32,116,105,108,101,83,105,122,101,41,44,32,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,46,120,121,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,116,114,117,101,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,105,102,32,40,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,70,105,108,108,40,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,44,32,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,65,100,106,117,115,116,32,98,97,99,107,100,114,111,112,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,32,32,32,32,47,47,13,10,32,32,32,32,32,32,32,32,47,47,32,78,66,58,32,68,111,32,110,111,116,32,114,101,102,97,99,116,111,114,32,116,104,101,32,99,97,108,108,115,32,98,101,108,111,119,46,32,84,104,105,115,32,101,120,97,99,116,32,99,111,100,101,32,115,101,113,117,101,110,99,101,32,105,115,32,110,101,101,100,101,100,32,116,111,32,97,118,111,105,100,32,97,13,10,32,32,32,32,32,32,32,32,47,47,32,109,105,115,99,111,109,112,105,108,97,116,105,111,110,32,111,110,32,116,104,101,32,82,97,100,101,111,110,32,77,101,116,97,108,32,99,111,109,112,105,108,101,114,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,83,116,101,112,46,120,32,60,32,48,32,38,38,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,105,108,101,83,116,101,112,46,120,32,62,32,48,32,38,38,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,45,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,84,97,107,101,32,97,32,115,116,101,112,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,77,97,120,46,120,32,43,61,32,116,68,101,108,116,97,46,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,46,120,32,43,61,32,116,105,108,101,83,116,101,112,46,120,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,77,97,120,46,121,32,43,61,32,116,68,101,108,116,97,46,121,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,46,121,32,43,61,32,116,105,108,101,83,116,101,112,46,121,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,32,61,32,110,101,120,116,80,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,32,32,32,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,59,13,10,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,13,10,125,13,10}; + static uint8_t bin_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,47,47,32,65,115,115,105,103,110,115,32,109,105,99,114,111,108,105,110,101,115,32,116,111,32,116,105,108,101,115,46,32,71,101,110,101,114,97,116,101,32,102,105,108,108,115,32,117,115,101,100,32,105,110,32,102,105,108,108,46,99,111,109,112,46,13,10,13,10,35,100,101,102,105,110,101,32,77,65,88,95,73,84,69,82,65,84,73,79,78,83,32,32,32,32,32,32,32,32,32,32,49,48,50,52,117,13,10,13,10,35,100,101,102,105,110,101,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,78,79,78,69,32,32,32,32,32,48,13,10,35,100,101,102,105,110,101,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,32,32,32,32,32,32,32,32,49,13,10,35,100,101,102,105,110,101,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,32,32,32,32,32,32,32,32,50,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,117,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,110,116,32,117,77,105,99,114,111,108,105,110,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,77,97,120,70,105,108,108,67,111,117,110,116,59,32,47,47,32,72,111,119,32,109,97,110,121,32,115,108,111,116,115,32,119,101,32,104,97,118,101,32,97,108,108,111,99,97,116,101,100,32,102,111,114,32,102,105,108,108,115,46,13,10,32,32,32,32,105,110,116,32,117,80,97,100,48,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,49,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,77,105,99,114,111,108,105,110,101,115,32,123,13,10,32,32,32,32,117,118,101,99,52,32,105,77,105,99,114,111,108,105,110,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,77,101,116,97,100,97,116,97,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,116,105,108,101,32,114,101,99,116,13,10,32,32,32,32,47,47,32,91,49,93,46,120,58,32,116,105,108,101,32,111,102,102,115,101,116,13,10,32,32,32,32,47,47,32,91,49,93,46,121,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,91,49,93,46,122,58,32,122,32,119,114,105,116,101,32,102,108,97,103,13,10,32,32,32,32,47,47,32,91,49,93,46,119,58,32,99,108,105,112,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,91,50,93,46,120,58,32,98,97,99,107,100,114,111,112,32,111,102,102,115,101,116,13,10,32,32,32,32,105,118,101,99,52,32,105,77,101,116,97,100,97,116,97,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,98,117,102,102,101,114,32,98,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,118,101,114,116,101,120,67,111,117,110,116,32,40,54,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,105,110,115,116,97,110,99,101,67,111,117,110,116,32,40,111,102,32,102,105,108,108,115,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,118,101,114,116,101,120,83,116,97,114,116,32,40,48,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,98,97,115,101,73,110,115,116,97,110,99,101,32,40,48,41,13,10,32,32,32,32,47,47,32,91,52,93,58,32,97,108,112,104,97,32,116,105,108,101,32,99,111,117,110,116,13,10,32,32,32,32,117,105,110,116,32,105,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,98,117,102,102,101,114,32,98,70,105,108,108,115,32,123,13,10,32,32,32,32,117,105,110,116,32,105,70,105,108,108,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,52,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,48,44,32,45,49,32,114,101,115,112,101,99,116,105,118,101,108,121,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,53,41,32,98,117,102,102,101,114,32,98,66,97,99,107,100,114,111,112,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,98,97,99,107,100,114,111,112,13,10,32,32,32,32,47,47,32,91,49,93,58,32,116,105,108,101,32,88,32,111,102,102,115,101,116,13,10,32,32,32,32,47,47,32,91,50,93,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,117,105,110,116,32,105,66,97,99,107,100,114,111,112,115,91,93,59,13,10,125,59,13,10,13,10,117,105,110,116,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,32,123,13,10,32,32,32,32,105,118,101,99,50,32,111,102,102,115,101,116,67,111,111,114,100,115,32,61,32,116,105,108,101,67,111,111,114,100,115,32,45,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,121,59,13,10,32,32,32,32,114,101,116,117,114,110,32,117,105,110,116,40,105,110,116,40,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,32,43,32,111,102,102,115,101,116,67,111,111,114,100,115,46,120,32,43,32,111,102,102,115,101,116,67,111,111,114,100,115,46,121,32,42,32,40,112,97,116,104,84,105,108,101,82,101,99,116,46,122,32,45,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,41,41,59,13,10,125,13,10,13,10,98,118,101,99,52,32,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,98,118,101,99,52,40,108,101,115,115,84,104,97,110,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,121,41,44,32,103,114,101,97,116,101,114,84,104,97,110,69,113,117,97,108,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,46,122,119,41,41,59,13,10,125,13,10,13,10,98,111,111,108,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,40,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,117,105,110,116,32,111,117,116,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,111,117,116,84,105,108,101,73,110,100,101,120,32,61,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,33,97,110,121,40,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,41,41,59,13,10,125,13,10,13,10,118,111,105,100,32,97,100,100,70,105,108,108,40,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,44,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,32,123,13,10,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,116,105,108,101,32,111,102,102,115,101,116,46,32,73,102,32,111,117,116,32,111,102,32,98,111,117,110,100,115,44,32,99,117,108,108,46,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,105,102,32,40,33,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,32,116,105,108,101,73,110,100,101,120,41,41,32,123,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,67,108,105,112,32,108,105,110,101,46,32,73,102,32,116,111,111,32,110,97,114,114,111,119,44,32,99,117,108,108,46,13,10,32,32,32,32,117,118,101,99,52,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,32,61,32,117,118,101,99,52,40,40,108,105,110,101,83,101,103,109,101,110,116,32,45,32,118,101,99,52,40,116,105,108,101,67,111,111,114,100,115,46,120,121,120,121,32,42,32,105,118,101,99,52,40,49,54,41,41,41,32,42,32,118,101,99,52,40,50,53,54,46,48,41,41,59,13,10,32,32,32,32,105,102,32,40,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,120,32,61,61,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,122,41,32,123,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,66,117,109,112,32,105,110,115,116,97,110,99,101,32,99,111,117,110,116,46,13,10,32,32,32,32,117,105,110,116,32,102,105,108,108,73,110,100,101,120,32,61,32,97,116,111,109,105,99,65,100,100,40,105,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,91,49,93,44,32,49,117,41,59,13,10,13,10,32,32,32,32,47,47,32,70,105,108,108,32,111,117,116,32,116,104,101,32,108,105,110,107,32,102,105,101,108,100,44,32,105,110,115,101,114,116,105,110,103,32,105,110,116,111,32,116,104,101,32,108,105,110,107,101,100,32,108,105,115,116,46,13,10,32,32,32,32,117,105,110,116,32,102,105,108,108,76,105,110,107,32,61,32,97,116,111,109,105,99,69,120,99,104,97,110,103,101,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,93,44,32,102,105,108,108,73,110,100,101,120,41,59,13,10,13,10,32,32,32,32,47,47,32,87,114,105,116,101,32,102,105,108,108,46,13,10,32,32,32,32,105,102,32,40,102,105,108,108,73,110,100,101,120,32,60,32,117,105,110,116,40,117,77,97,120,70,105,108,108,67,111,117,110,116,41,41,32,123,13,10,32,32,32,32,32,32,32,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,117,32,43,32,48,117,93,32,61,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,120,32,124,32,40,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,121,32,60,60,32,49,54,41,59,13,10,32,32,32,32,32,32,32,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,117,32,43,32,49,117,93,32,61,32,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,122,32,124,32,40,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,46,119,32,60,60,32,49,54,41,59,13,10,32,32,32,32,32,32,32,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,117,32,43,32,50,117,93,32,61,32,102,105,108,108,76,105,110,107,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,118,111,105,100,32,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,105,110,116,32,98,97,99,107,100,114,111,112,68,101,108,116,97,44,13,10,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,44,13,10,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,117,105,110,116,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,41,32,123,13,10,32,32,32,32,98,118,101,99,52,32,111,117,116,99,111,100,101,115,32,61,32,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,41,59,13,10,32,32,32,32,105,102,32,40,97,110,121,40,111,117,116,99,111,100,101,115,41,41,32,123,13,10,32,32,32,32,32,32,32,32,105,102,32,40,33,111,117,116,99,111,100,101,115,46,120,32,38,38,32,111,117,116,99,111,100,101,115,46,121,32,38,38,32,33,111,117,116,99,111,100,101,115,46,122,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,98,97,99,107,100,114,111,112,73,110,100,101,120,32,61,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,32,43,32,117,105,110,116,40,116,105,108,101,67,111,111,114,100,115,46,120,32,45,32,112,97,116,104,84,105,108,101,82,101,99,116,46,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,116,111,109,105,99,65,100,100,40,105,66,97,99,107,100,114,111,112,115,91,98,97,99,107,100,114,111,112,73,110,100,101,120,32,42,32,51,117,93,44,32,117,105,110,116,40,98,97,99,107,100,114,111,112,68,101,108,116,97,41,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,97,116,111,109,105,99,65,100,100,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,44,13,10,32,32,32,32,32,32,32,32,117,105,110,116,40,98,97,99,107,100,114,111,112,68,101,108,116,97,41,32,60,60,32,50,52,41,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,47,47,32,68,111,110,39,116,32,112,97,115,115,32,105,77,105,99,114,111,108,105,110,101,115,32,97,115,32,97,114,103,117,109,101,110,116,32,104,101,114,101,46,13,10,47,47,32,79,116,104,101,114,119,105,115,101,44,32,119,101,39,108,108,32,103,101,116,32,34,70,117,110,99,116,105,111,110,32,99,97,108,108,32,100,105,115,99,97,114,100,115,32,39,114,101,97,100,111,110,108,121,39,32,97,99,99,101,115,115,32,113,117,97,108,105,102,105,101,114,34,32,101,114,114,111,114,32,105,110,32,71,76,69,83,46,13,10,118,101,99,52,32,117,110,112,97,99,107,77,105,99,114,111,108,105,110,101,40,117,105,110,116,32,115,101,103,109,101,110,116,73,110,100,101,120,44,32,111,117,116,32,117,105,110,116,32,111,117,116,80,97,116,104,73,110,100,101,120,41,32,123,13,10,32,32,32,32,111,117,116,80,97,116,104,73,110,100,101,120,32,61,32,105,77,105,99,114,111,108,105,110,101,115,91,115,101,103,109,101,110,116,73,110,100,101,120,93,46,119,59,13,10,32,32,32,32,105,118,101,99,52,32,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,32,61,32,105,118,101,99,52,40,105,77,105,99,114,111,108,105,110,101,115,91,115,101,103,109,101,110,116,73,110,100,101,120,93,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,120,32,60,60,32,49,54,41,32,62,62,32,49,54,44,32,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,120,32,62,62,32,49,54,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,121,32,60,60,32,49,54,41,32,62,62,32,49,54,44,32,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,121,32,62,62,32,49,54,41,13,10,32,32,32,32,32,32,32,32,43,32,118,101,99,52,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,38,32,48,120,102,102,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,62,62,32,56,41,32,38,32,48,120,102,102,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,62,62,32,49,54,41,32,38,32,48,120,102,102,44,32,40,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,46,122,32,62,62,32,50,52,41,32,38,32,48,120,102,102,41,32,47,32,50,53,54,46,48,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,117,105,110,116,32,115,101,103,109,101,110,116,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,115,101,103,109,101,110,116,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,77,105,99,114,111,108,105,110,101,67,111,117,110,116,41,41,32,123,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,117,110,112,97,99,107,77,105,99,114,111,108,105,110,101,40,115,101,103,109,101,110,116,73,110,100,101,120,44,32,112,97,116,104,73,110,100,101,120,41,59,13,10,13,10,32,32,32,32,105,118,101,99,52,32,112,97,116,104,84,105,108,101,82,101,99,116,32,61,32,105,77,101,116,97,100,97,116,97,91,112,97,116,104,73,110,100,101,120,32,42,32,51,117,32,43,32,48,117,93,59,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,32,61,32,117,105,110,116,40,105,77,101,116,97,100,97,116,97,91,112,97,116,104,73,110,100,101,120,32,42,32,51,117,32,43,32,49,117,93,46,120,41,59,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,32,61,32,117,105,110,116,40,105,77,101,116,97,100,97,116,97,91,112,97,116,104,73,110,100,101,120,32,42,32,51,117,32,43,32,50,117,93,46,120,41,59,13,10,13,10,32,32,32,32,47,47,32,70,111,108,108,111,119,105,110,103,32,105,115,32,97,32,115,116,114,97,105,103,104,116,32,112,111,114,116,32,111,102,32,96,112,114,111,99,101,115,115,95,108,105,110,101,95,115,101,103,109,101,110,116,40,41,96,58,13,10,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,105,122,101,32,61,32,105,118,101,99,50,40,49,54,41,59,13,10,13,10,32,32,32,32,105,118,101,99,52,32,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,32,61,32,105,118,101,99,52,40,102,108,111,111,114,40,108,105,110,101,83,101,103,109,101,110,116,32,47,32,118,101,99,52,40,116,105,108,101,83,105,122,101,46,120,121,120,121,41,41,41,59,13,10,32,32,32,32,105,118,101,99,50,32,102,114,111,109,84,105,108,101,67,111,111,114,100,115,32,61,32,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,116,111,84,105,108,101,67,111,111,114,100,115,32,61,32,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,46,122,119,59,13,10,13,10,32,32,32,32,118,101,99,50,32,118,101,99,116,111,114,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,32,45,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,59,13,10,32,32,32,32,118,101,99,50,32,118,101,99,116,111,114,73,115,78,101,103,97,116,105,118,101,32,61,32,118,101,99,50,40,118,101,99,116,111,114,46,120,32,60,32,48,46,48,32,63,32,45,49,46,48,32,58,32,48,46,48,44,32,118,101,99,116,111,114,46,121,32,60,32,48,46,48,32,63,32,45,49,46,48,32,58,32,48,46,48,41,59,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,116,101,112,32,61,32,105,118,101,99,50,40,118,101,99,116,111,114,46,120,32,60,32,48,46,48,32,63,32,45,49,32,58,32,49,44,32,118,101,99,116,111,114,46,121,32,60,32,48,46,48,32,63,32,45,49,32,58,32,49,41,59,13,10,13,10,32,32,32,32,118,101,99,50,32,102,105,114,115,116,84,105,108,101,67,114,111,115,115,105,110,103,32,61,32,118,101,99,50,40,40,102,114,111,109,84,105,108,101,67,111,111,114,100,115,32,43,32,105,118,101,99,50,40,118,101,99,116,111,114,46,120,32,62,61,32,48,46,48,32,63,32,49,32,58,32,48,44,32,118,101,99,116,111,114,46,121,32,62,61,32,48,46,48,32,63,32,49,32,58,32,48,41,41,32,42,32,116,105,108,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,118,101,99,50,32,116,77,97,120,32,61,32,40,102,105,114,115,116,84,105,108,101,67,114,111,115,115,105,110,103,32,45,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,41,32,47,32,118,101,99,116,111,114,59,13,10,32,32,32,32,118,101,99,50,32,116,68,101,108,116,97,32,61,32,97,98,115,40,118,101,99,50,40,116,105,108,101,83,105,122,101,41,32,47,32,118,101,99,116,111,114,41,59,13,10,13,10,32,32,32,32,118,101,99,50,32,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,59,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,32,61,32,102,114,111,109,84,105,108,101,67,111,111,114,100,115,59,13,10,32,32,32,32,105,110,116,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,78,79,78,69,59,13,10,32,32,32,32,117,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,117,59,13,10,13,10,32,32,32,32,119,104,105,108,101,32,40,105,116,101,114,97,116,105,111,110,32,60,32,77,65,88,95,73,84,69,82,65,84,73,79,78,83,41,32,123,13,10,32,32,32,32,32,32,32,32,105,110,116,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,59,13,10,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,77,97,120,46,120,32,60,32,116,77,97,120,46,121,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,116,77,97,120,46,120,32,62,32,116,77,97,120,46,121,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,32,105,102,32,40,116,105,108,101,83,116,101,112,46,120,32,62,32,48,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,59,13,10,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,110,101,120,116,84,32,61,32,109,105,110,40,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,32,63,32,116,77,97,120,46,120,32,58,32,116,77,97,120,46,121,44,32,49,46,48,41,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,73,102,32,119,101,39,118,101,32,114,101,97,99,104,101,100,32,116,104,101,32,101,110,100,32,116,105,108,101,44,32,100,111,110,39,116,32,115,116,101,112,32,97,116,32,97,108,108,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,67,111,111,114,100,115,32,61,61,32,116,111,84,105,108,101,67,111,111,114,100,115,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,78,79,78,69,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,110,101,120,116,80,111,115,105,116,105,111,110,32,61,32,109,105,120,40,108,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,44,32,110,101,120,116,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,44,32,110,101,120,116,80,111,115,105,116,105,111,110,41,59,13,10,13,10,32,32,32,32,32,32,32,32,97,100,100,70,105,108,108,40,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,44,32,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,65,100,100,32,101,120,116,114,97,32,102,105,108,108,115,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,59,13,10,32,32,32,32,32,32,32,32,98,111,111,108,32,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,102,97,108,115,101,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,83,116,101,112,46,121,32,60,32,48,32,38,38,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,46,122,119,44,32,118,101,99,50,40,116,105,108,101,67,111,111,114,100,115,32,42,32,116,105,108,101,83,105,122,101,41,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,116,114,117,101,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,105,108,101,83,116,101,112,46,121,32,62,32,48,32,38,38,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,118,101,99,50,40,116,105,108,101,67,111,111,114,100,115,32,42,32,116,105,108,101,83,105,122,101,41,44,32,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,46,120,121,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,32,61,32,116,114,117,101,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,105,102,32,40,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,70,105,108,108,40,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,44,32,116,105,108,101,67,111,111,114,100,115,44,32,112,97,116,104,84,105,108,101,82,101,99,116,44,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,65,100,106,117,115,116,32,98,97,99,107,100,114,111,112,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,32,32,32,32,47,47,13,10,32,32,32,32,32,32,32,32,47,47,32,78,66,58,32,68,111,32,110,111,116,32,114,101,102,97,99,116,111,114,32,116,104,101,32,99,97,108,108,115,32,98,101,108,111,119,46,32,84,104,105,115,32,101,120,97,99,116,32,99,111,100,101,32,115,101,113,117,101,110,99,101,32,105,115,32,110,101,101,100,101,100,32,116,111,32,97,118,111,105,100,32,97,13,10,32,32,32,32,32,32,32,32,47,47,32,109,105,115,99,111,109,112,105,108,97,116,105,111,110,32,111,110,32,116,104,101,32,82,97,100,101,111,110,32,77,101,116,97,108,32,99,111,109,112,105,108,101,114,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,83,116,101,112,46,120,32,60,32,48,32,38,38,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,116,105,108,101,83,116,101,112,46,120,32,62,32,48,32,38,38,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,45,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,82,101,99,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,84,105,108,101,79,102,102,115,101,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,84,97,107,101,32,97,32,115,116,101,112,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,88,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,77,97,120,46,120,32,43,61,32,116,68,101,108,116,97,46,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,46,120,32,43,61,32,116,105,108,101,83,116,101,112,46,120,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,61,32,83,84,69,80,95,68,73,82,69,67,84,73,79,78,95,89,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,77,97,120,46,121,32,43,61,32,116,68,101,108,116,97,46,121,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,111,111,114,100,115,46,121,32,43,61,32,116,105,108,101,83,116,101,112,46,121,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,32,61,32,110,101,120,116,80,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,32,32,32,32,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,32,61,32,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,59,13,10,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_BIN_COMP_H diff --git a/src/shaders/generated/bin_comp_spv.h b/src/shaders/generated/bin_comp_spv.h index e9024f78..05a2e1c4 100644 --- a/src/shaders/generated/bin_comp_spv.h +++ b/src/shaders/generated/bin_comp_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_BIN_COMP_SPV_H namespace Pathfinder { - static uint8_t bin_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,164,2,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,83,1,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,11,0,17,0,0,0,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,118,105,50,59,118,105,52,59,117,49,59,0,5,0,5,0,14,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,15,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,16,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,10,0,24,0,0,0,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,118,105,50,59,118,105,52,59,0,0,0,0,5,0,5,0,22,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,23,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,10,0,31,0,0,0,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,40,118,105,50,59,118,105,52,59,117,49,59,117,49,59,0,5,0,5,0,27,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,28,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,29,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,6,0,30,0,0,0,111,117,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,8,0,41,0,0,0,97,100,100,70,105,108,108,40,118,102,52,59,118,105,50,59,118,105,52,59,117,49,59,0,5,0,5,0,37,0,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,5,0,38,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,39,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,40,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,11,0,50,0,0,0,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,105,49,59,118,105,50,59,118,105,52,59,117,49,59,117,49,59,0,0,0,0,5,0,6,0,45,0,0,0,98,97,99,107,100,114,111,112,68,101,108,116,97,0,0,0,5,0,5,0,46,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,47,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,48,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,7,0,49,0,0,0,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,0,0,5,0,8,0,55,0,0,0,117,110,112,97,99,107,77,105,99,114,111,108,105,110,101,40,117,49,59,117,49,59,0,0,5,0,6,0,53,0,0,0,115,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,6,0,54,0,0,0,111,117,116,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,57,0,0,0,111,102,102,115,101,116,67,111,111,114,100,115,0,0,0,0,5,0,4,0,98,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,100,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,102,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,105,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,107,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,114,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,4,0,115,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,117,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,119,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,130,0,0,0,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,0,5,0,5,0,151,0,0,0,102,105,108,108,73,110,100,101,120,0,0,0,5,0,7,0,153,0,0,0,98,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,0,6,0,8,0,153,0,0,0,0,0,0,0,105,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,0,5,0,3,0,155,0,0,0,0,0,0,0,5,0,5,0,161,0,0,0,102,105,108,108,76,105,110,107,0,0,0,0,5,0,4,0,163,0,0,0,98,84,105,108,101,115,0,0,6,0,5,0,163,0,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,165,0,0,0,0,0,0,0,5,0,5,0,174,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,7,0,174,0,0,0,0,0,0,0,117,77,105,99,114,111,108,105,110,101,67,111,117,110,116,0,6,0,7,0,174,0,0,0,1,0,0,0,117,77,97,120,70,105,108,108,67,111,117,110,116,0,0,0,6,0,5,0,174,0,0,0,2,0,0,0,112,97,100,48,0,0,0,0,6,0,5,0,174,0,0,0,3,0,0,0,112,97,100,49,0,0,0,0,5,0,3,0,176,0,0,0,0,0,0,0,5,0,4,0,185,0,0,0,98,70,105,108,108,115,0,0,6,0,5,0,185,0,0,0,0,0,0,0,105,70,105,108,108,115,0,0,5,0,3,0,187,0,0,0,0,0,0,0,5,0,5,0,215,0,0,0,111,117,116,99,111,100,101,115,0,0,0,0,5,0,4,0,216,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,218,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,240,0,0,0,98,97,99,107,100,114,111,112,73,110,100,101,120,0,0,0,5,0,5,0,250,0,0,0,98,66,97,99,107,100,114,111,112,115,0,0,6,0,6,0,250,0,0,0,0,0,0,0,105,66,97,99,107,100,114,111,112,115,0,0,5,0,3,0,252,0,0,0,0,0,0,0,5,0,5,0,4,1,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,4,0,5,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,9,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,22,1,0,0,98,77,105,99,114,111,108,105,110,101,115,0,6,0,6,0,22,1,0,0,0,0,0,0,105,77,105,99,114,111,108,105,110,101,115,0,5,0,3,0,24,1,0,0,0,0,0,0,5,0,6,0,28,1,0,0,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,0,5,0,6,0,80,1,0,0,115,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,8,0,83,1,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,5,0,95,1,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,5,0,96,1,0,0,112,97,116,104,73,110,100,101,120,0,0,0,5,0,4,0,97,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,1,0,0,112,97,114,97,109,0,0,0,5,0,6,0,102,1,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,5,0,104,1,0,0,98,77,101,116,97,100,97,116,97,0,0,0,6,0,6,0,104,1,0,0,0,0,0,0,105,77,101,116,97,100,97,116,97,0,0,0,5,0,3,0,106,1,0,0,0,0,0,0,5,0,6,0,113,1,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,7,0,120,1,0,0,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,0,0,5,0,5,0,127,1,0,0,116,105,108,101,83,105,122,101,0,0,0,0,5,0,6,0,129,1,0,0,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,0,5,0,6,0,137,1,0,0,102,114,111,109,84,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,140,1,0,0,116,111,84,105,108,101,67,111,111,114,100,115,0,0,0,0,5,0,4,0,145,1,0,0,118,101,99,116,111,114,0,0,5,0,7,0,151,1,0,0,118,101,99,116,111,114,73,115,78,101,103,97,116,105,118,101,0,0,0,0,5,0,5,0,164,1,0,0,116,105,108,101,83,116,101,112,0,0,0,0,5,0,7,0,175,1,0,0,102,105,114,115,116,84,105,108,101,67,114,111,115,115,105,110,103,0,0,0,5,0,4,0,190,1,0,0,116,77,97,120,0,0,0,0,5,0,4,0,197,1,0,0,116,68,101,108,116,97,0,0,5,0,6,0,203,1,0,0,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,0,5,0,5,0,206,1,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,7,0,208,1,0,0,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,0,0,0,5,0,5,0,209,1,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,7,0,225,1,0,0,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,0,0,0,5,0,4,0,242,1,0,0,110,101,120,116,84,0,0,0,5,0,6,0,6,2,0,0,110,101,120,116,80,111,115,105,116,105,111,110,0,0,0,0,5,0,7,0,14,2,0,0,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,0,0,5,0,4,0,22,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,24,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,26,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,28,2,0,0,112,97,114,97,109,0,0,0,5,0,8,0,31,2,0,0,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,0,0,0,0,5,0,7,0,41,2,0,0,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,0,0,0,0,5,0,4,0,77,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,79,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,81,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,94,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,95,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,97,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,101,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,113,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,120,2,0,0,112,97,114,97,109,0,0,0,71,0,4,0,152,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,153,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,153,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,153,0,0,0,3,0,0,0,71,0,4,0,155,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,155,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,162,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,163,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,163,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,163,0,0,0,3,0,0,0,71,0,4,0,165,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,165,0,0,0,33,0,0,0,4,0,0,0,72,0,5,0,174,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,174,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,174,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,174,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,174,0,0,0,2,0,0,0,71,0,4,0,176,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,176,0,0,0,33,0,0,0,6,0,0,0,71,0,4,0,184,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,185,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,185,0,0,0,0,0,0,0,25,0,0,0,72,0,5,0,185,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,185,0,0,0,3,0,0,0,71,0,4,0,187,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,187,0,0,0,33,0,0,0,3,0,0,0,71,0,4,0,249,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,250,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,250,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,250,0,0,0,3,0,0,0,71,0,4,0,252,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,252,0,0,0,33,0,0,0,5,0,0,0,71,0,4,0,21,1,0,0,6,0,0,0,16,0,0,0,72,0,4,0,22,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,22,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,22,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,22,1,0,0,3,0,0,0,71,0,4,0,24,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,24,1,0,0,33,0,0,0,0,0,0,0,71,0,4,0,83,1,0,0,11,0,0,0,28,0,0,0,71,0,4,0,103,1,0,0,6,0,0,0,16,0,0,0,72,0,4,0,104,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,104,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,104,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,104,1,0,0,3,0,0,0,71,0,4,0,106,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,106,1,0,0,33,0,0,0,1,0,0,0,71,0,4,0,163,2,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,1,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,23,0,4,0,9,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,21,0,4,0,11,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,12,0,0,0,7,0,0,0,11,0,0,0,33,0,6,0,13,0,0,0,11,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,20,0,2,0,19,0,0,0,23,0,4,0,20,0,0,0,19,0,0,0,4,0,0,0,33,0,5,0,21,0,0,0,20,0,0,0,8,0,0,0,10,0,0,0,33,0,7,0,26,0,0,0,19,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,22,0,3,0,33,0,0,0,32,0,0,0,23,0,4,0,34,0,0,0,33,0,0,0,4,0,0,0,32,0,4,0,35,0,0,0,7,0,0,0,34,0,0,0,33,0,7,0,36,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,32,0,4,0,43,0,0,0,7,0,0,0,6,0,0,0,33,0,8,0,44,0,0,0,2,0,0,0,43,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,33,0,5,0,52,0,0,0,34,0,0,0,12,0,0,0,12,0,0,0,43,0,4,0,11,0,0,0,64,0,0,0,0,0,0,0,43,0,4,0,11,0,0,0,68,0,0,0,1,0,0,0,43,0,4,0,11,0,0,0,71,0,0,0,2,0,0,0,23,0,4,0,85,0,0,0,19,0,0,0,2,0,0,0,23,0,4,0,128,0,0,0,11,0,0,0,4,0,0,0,32,0,4,0,129,0,0,0,7,0,0,0,128,0,0,0,43,0,4,0,6,0,0,0,134,0,0,0,16,0,0,0,44,0,7,0,9,0,0,0,135,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,43,0,4,0,33,0,0,0,139,0,0,0,0,0,128,67,44,0,7,0,34,0,0,0,140,0,0,0,139,0,0,0,139,0,0,0,139,0,0,0,139,0,0,0,29,0,3,0,152,0,0,0,11,0,0,0,30,0,3,0,153,0,0,0,152,0,0,0,32,0,4,0,154,0,0,0,2,0,0,0,153,0,0,0,59,0,4,0,154,0,0,0,155,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,156,0,0,0,0,0,0,0,43,0,4,0,6,0,0,0,157,0,0,0,1,0,0,0,32,0,4,0,158,0,0,0,2,0,0,0,11,0,0,0,29,0,3,0,162,0,0,0,11,0,0,0,30,0,3,0,163,0,0,0,162,0,0,0,32,0,4,0,164,0,0,0,2,0,0,0,163,0,0,0,59,0,4,0,164,0,0,0,165,0,0,0,2,0,0,0,43,0,4,0,11,0,0,0,167,0,0,0,4,0,0,0,30,0,6,0,174,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,32,0,4,0,175,0,0,0,2,0,0,0,174,0,0,0,59,0,4,0,175,0,0,0,176,0,0,0,2,0,0,0,32,0,4,0,177,0,0,0,2,0,0,0,6,0,0,0,29,0,3,0,184,0,0,0,11,0,0,0,30,0,3,0,185,0,0,0,184,0,0,0,32,0,4,0,186,0,0,0,2,0,0,0,185,0,0,0,59,0,4,0,186,0,0,0,187,0,0,0,2,0,0,0,43,0,4,0,11,0,0,0,189,0,0,0,3,0,0,0,32,0,4,0,214,0,0,0,7,0,0,0,20,0,0,0,32,0,4,0,225,0,0,0,7,0,0,0,19,0,0,0,29,0,3,0,249,0,0,0,11,0,0,0,30,0,3,0,250,0,0,0,249,0,0,0,32,0,4,0,251,0,0,0,2,0,0,0,250,0,0,0,59,0,4,0,251,0,0,0,252,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,18,1,0,0,24,0,0,0,29,0,3,0,21,1,0,0,128,0,0,0,30,0,3,0,22,1,0,0,21,1,0,0,32,0,4,0,23,1,0,0,2,0,0,0,22,1,0,0,59,0,4,0,23,1,0,0,24,1,0,0,2,0,0,0,32,0,4,0,30,1,0,0,2,0,0,0,128,0,0,0,43,0,4,0,6,0,0,0,55,1,0,0,255,0,0,0,43,0,4,0,6,0,0,0,60,1,0,0,8,0,0,0,23,0,4,0,81,1,0,0,11,0,0,0,3,0,0,0,32,0,4,0,82,1,0,0,1,0,0,0,81,1,0,0,59,0,4,0,82,1,0,0,83,1,0,0,1,0,0,0,32,0,4,0,84,1,0,0,1,0,0,0,11,0,0,0,29,0,3,0,103,1,0,0,9,0,0,0,30,0,3,0,104,1,0,0,103,1,0,0,32,0,4,0,105,1,0,0,2,0,0,0,104,1,0,0,59,0,4,0,105,1,0,0,106,1,0,0,2,0,0,0,32,0,4,0,110,1,0,0,2,0,0,0,9,0,0,0,44,0,5,0,7,0,0,0,128,1,0,0,134,0,0,0,134,0,0,0,23,0,4,0,143,1,0,0,33,0,0,0,2,0,0,0,32,0,4,0,144,1,0,0,7,0,0,0,143,1,0,0,32,0,4,0,152,1,0,0,7,0,0,0,33,0,0,0,43,0,4,0,33,0,0,0,155,1,0,0,0,0,0,0,43,0,4,0,33,0,0,0,157,1,0,0,0,0,128,191,43,0,4,0,6,0,0,0,168,1,0,0,255,255,255,255,43,0,4,0,11,0,0,0,216,1,0,0,0,4,0,0,43,0,4,0,6,0,0,0,234,1,0,0,2,0,0,0,43,0,4,0,33,0,0,0,254,1,0,0,0,0,128,63,42,0,3,0,19,0,0,0,32,2,0,0,41,0,3,0,19,0,0,0,53,2,0,0,43,0,4,0,11,0,0,0,162,2,0,0,64,0,0,0,44,0,6,0,81,1,0,0,163,2,0,0,162,2,0,0,68,0,0,0,68,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,12,0,0,0,80,1,0,0,7,0,0,0,59,0,4,0,35,0,0,0,95,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,96,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,97,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,99,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,102,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,113,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,120,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,127,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,129,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,137,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,140,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,145,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,151,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,164,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,175,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,190,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,197,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,203,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,206,1,0,0,7,0,0,0,59,0,4,0,43,0,0,0,208,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,209,1,0,0,7,0,0,0,59,0,4,0,43,0,0,0,225,1,0,0,7,0,0,0,59,0,4,0,152,1,0,0,242,1,0,0,7,0,0,0,59,0,4,0,152,1,0,0,245,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,6,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,14,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,22,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,24,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,26,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,28,2,0,0,7,0,0,0,59,0,4,0,225,0,0,0,31,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,41,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,77,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,79,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,81,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,83,2,0,0,7,0,0,0,59,0,4,0,43,0,0,0,94,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,95,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,97,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,99,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,101,2,0,0,7,0,0,0,59,0,4,0,43,0,0,0,113,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,114,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,116,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,118,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,120,2,0,0,7,0,0,0,65,0,5,0,84,1,0,0,85,1,0,0,83,1,0,0,64,0,0,0,61,0,4,0,11,0,0,0,86,1,0,0,85,1,0,0,62,0,3,0,80,1,0,0,86,1,0,0,61,0,4,0,11,0,0,0,87,1,0,0,80,1,0,0,65,0,5,0,177,0,0,0,88,1,0,0,176,0,0,0,156,0,0,0,61,0,4,0,6,0,0,0,89,1,0,0,88,1,0,0,124,0,4,0,11,0,0,0,90,1,0,0,89,1,0,0,174,0,5,0,19,0,0,0,91,1,0,0,87,1,0,0,90,1,0,0,247,0,3,0,93,1,0,0,0,0,0,0,250,0,4,0,91,1,0,0,92,1,0,0,93,1,0,0,248,0,2,0,92,1,0,0,253,0,1,0,248,0,2,0,93,1,0,0,61,0,4,0,11,0,0,0,98,1,0,0,80,1,0,0,62,0,3,0,97,1,0,0,98,1,0,0,57,0,6,0,34,0,0,0,100,1,0,0,55,0,0,0,97,1,0,0,99,1,0,0,61,0,4,0,11,0,0,0,101,1,0,0,99,1,0,0,62,0,3,0,96,1,0,0,101,1,0,0,62,0,3,0,95,1,0,0,100,1,0,0,61,0,4,0,11,0,0,0,107,1,0,0,96,1,0,0,132,0,5,0,11,0,0,0,108,1,0,0,107,1,0,0,189,0,0,0,128,0,5,0,11,0,0,0,109,1,0,0,108,1,0,0,64,0,0,0,65,0,6,0,110,1,0,0,111,1,0,0,106,1,0,0,156,0,0,0,109,1,0,0,61,0,4,0,9,0,0,0,112,1,0,0,111,1,0,0,62,0,3,0,102,1,0,0,112,1,0,0,61,0,4,0,11,0,0,0,114,1,0,0,96,1,0,0,132,0,5,0,11,0,0,0,115,1,0,0,114,1,0,0,189,0,0,0,128,0,5,0,11,0,0,0,116,1,0,0,115,1,0,0,68,0,0,0,65,0,7,0,177,0,0,0,117,1,0,0,106,1,0,0,156,0,0,0,116,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,118,1,0,0,117,1,0,0,124,0,4,0,11,0,0,0,119,1,0,0,118,1,0,0,62,0,3,0,113,1,0,0,119,1,0,0,61,0,4,0,11,0,0,0,121,1,0,0,96,1,0,0,132,0,5,0,11,0,0,0,122,1,0,0,121,1,0,0,189,0,0,0,128,0,5,0,11,0,0,0,123,1,0,0,122,1,0,0,71,0,0,0,65,0,7,0,177,0,0,0,124,1,0,0,106,1,0,0,156,0,0,0,123,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,125,1,0,0,124,1,0,0,124,0,4,0,11,0,0,0,126,1,0,0,125,1,0,0,62,0,3,0,120,1,0,0,126,1,0,0,62,0,3,0,127,1,0,0,128,1,0,0,61,0,4,0,34,0,0,0,130,1,0,0,95,1,0,0,61,0,4,0,7,0,0,0,131,1,0,0,127,1,0,0,79,0,9,0,9,0,0,0,132,1,0,0,131,1,0,0,131,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,111,0,4,0,34,0,0,0,133,1,0,0,132,1,0,0,136,0,5,0,34,0,0,0,134,1,0,0,130,1,0,0,133,1,0,0,12,0,6,0,34,0,0,0,135,1,0,0,1,0,0,0,8,0,0,0,134,1,0,0,110,0,4,0,9,0,0,0,136,1,0,0,135,1,0,0,62,0,3,0,129,1,0,0,136,1,0,0,61,0,4,0,9,0,0,0,138,1,0,0,129,1,0,0,79,0,7,0,7,0,0,0,139,1,0,0,138,1,0,0,138,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,137,1,0,0,139,1,0,0,61,0,4,0,9,0,0,0,141,1,0,0,129,1,0,0,79,0,7,0,7,0,0,0,142,1,0,0,141,1,0,0,141,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,140,1,0,0,142,1,0,0,61,0,4,0,34,0,0,0,146,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,147,1,0,0,146,1,0,0,146,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,34,0,0,0,148,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,149,1,0,0,148,1,0,0,148,1,0,0,0,0,0,0,1,0,0,0,131,0,5,0,143,1,0,0,150,1,0,0,147,1,0,0,149,1,0,0,62,0,3,0,145,1,0,0,150,1,0,0,65,0,5,0,152,1,0,0,153,1,0,0,145,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,154,1,0,0,153,1,0,0,184,0,5,0,19,0,0,0,156,1,0,0,154,1,0,0,155,1,0,0,169,0,6,0,33,0,0,0,158,1,0,0,156,1,0,0,157,1,0,0,155,1,0,0,65,0,5,0,152,1,0,0,159,1,0,0,145,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,160,1,0,0,159,1,0,0,184,0,5,0,19,0,0,0,161,1,0,0,160,1,0,0,155,1,0,0,169,0,6,0,33,0,0,0,162,1,0,0,161,1,0,0,157,1,0,0,155,1,0,0,80,0,5,0,143,1,0,0,163,1,0,0,158,1,0,0,162,1,0,0,62,0,3,0,151,1,0,0,163,1,0,0,65,0,5,0,152,1,0,0,165,1,0,0,145,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,166,1,0,0,165,1,0,0,184,0,5,0,19,0,0,0,167,1,0,0,166,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,169,1,0,0,167,1,0,0,168,1,0,0,157,0,0,0,65,0,5,0,152,1,0,0,170,1,0,0,145,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,171,1,0,0,170,1,0,0,184,0,5,0,19,0,0,0,172,1,0,0,171,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,173,1,0,0,172,1,0,0,168,1,0,0,157,0,0,0,80,0,5,0,7,0,0,0,174,1,0,0,169,1,0,0,173,1,0,0,62,0,3,0,164,1,0,0,174,1,0,0,61,0,4,0,7,0,0,0,176,1,0,0,137,1,0,0,65,0,5,0,152,1,0,0,177,1,0,0,145,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,178,1,0,0,177,1,0,0,190,0,5,0,19,0,0,0,179,1,0,0,178,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,180,1,0,0,179,1,0,0,157,0,0,0,156,0,0,0,65,0,5,0,152,1,0,0,181,1,0,0,145,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,182,1,0,0,181,1,0,0,190,0,5,0,19,0,0,0,183,1,0,0,182,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,184,1,0,0,183,1,0,0,157,0,0,0,156,0,0,0,80,0,5,0,7,0,0,0,185,1,0,0,180,1,0,0,184,1,0,0,128,0,5,0,7,0,0,0,186,1,0,0,176,1,0,0,185,1,0,0,61,0,4,0,7,0,0,0,187,1,0,0,127,1,0,0,132,0,5,0,7,0,0,0,188,1,0,0,186,1,0,0,187,1,0,0,111,0,4,0,143,1,0,0,189,1,0,0,188,1,0,0,62,0,3,0,175,1,0,0,189,1,0,0,61,0,4,0,143,1,0,0,191,1,0,0,175,1,0,0,61,0,4,0,34,0,0,0,192,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,193,1,0,0,192,1,0,0,192,1,0,0,0,0,0,0,1,0,0,0,131,0,5,0,143,1,0,0,194,1,0,0,191,1,0,0,193,1,0,0,61,0,4,0,143,1,0,0,195,1,0,0,145,1,0,0,136,0,5,0,143,1,0,0,196,1,0,0,194,1,0,0,195,1,0,0,62,0,3,0,190,1,0,0,196,1,0,0,61,0,4,0,7,0,0,0,198,1,0,0,127,1,0,0,111,0,4,0,143,1,0,0,199,1,0,0,198,1,0,0,61,0,4,0,143,1,0,0,200,1,0,0,145,1,0,0,136,0,5,0,143,1,0,0,201,1,0,0,199,1,0,0,200,1,0,0,12,0,6,0,143,1,0,0,202,1,0,0,1,0,0,0,4,0,0,0,201,1,0,0,62,0,3,0,197,1,0,0,202,1,0,0,61,0,4,0,34,0,0,0,204,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,205,1,0,0,204,1,0,0,204,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,203,1,0,0,205,1,0,0,61,0,4,0,7,0,0,0,207,1,0,0,137,1,0,0,62,0,3,0,206,1,0,0,207,1,0,0,62,0,3,0,208,1,0,0,156,0,0,0,62,0,3,0,209,1,0,0,64,0,0,0,249,0,2,0,210,1,0,0,248,0,2,0,210,1,0,0,246,0,4,0,212,1,0,0,213,1,0,0,0,0,0,0,249,0,2,0,214,1,0,0,248,0,2,0,214,1,0,0,61,0,4,0,11,0,0,0,215,1,0,0,209,1,0,0,176,0,5,0,19,0,0,0,217,1,0,0,215,1,0,0,216,1,0,0,250,0,4,0,217,1,0,0,211,1,0,0,212,1,0,0,248,0,2,0,211,1,0,0,65,0,5,0,152,1,0,0,218,1,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,219,1,0,0,218,1,0,0,65,0,5,0,152,1,0,0,220,1,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,221,1,0,0,220,1,0,0,184,0,5,0,19,0,0,0,222,1,0,0,219,1,0,0,221,1,0,0,247,0,3,0,224,1,0,0,0,0,0,0,250,0,4,0,222,1,0,0,223,1,0,0,226,1,0,0,248,0,2,0,223,1,0,0,62,0,3,0,225,1,0,0,157,0,0,0,249,0,2,0,224,1,0,0,248,0,2,0,226,1,0,0,65,0,5,0,152,1,0,0,227,1,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,228,1,0,0,227,1,0,0,65,0,5,0,152,1,0,0,229,1,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,230,1,0,0,229,1,0,0,186,0,5,0,19,0,0,0,231,1,0,0,228,1,0,0,230,1,0,0,247,0,3,0,233,1,0,0,0,0,0,0,250,0,4,0,231,1,0,0,232,1,0,0,235,1,0,0,248,0,2,0,232,1,0,0,62,0,3,0,225,1,0,0,234,1,0,0,249,0,2,0,233,1,0,0,248,0,2,0,235,1,0,0,65,0,5,0,43,0,0,0,236,1,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,237,1,0,0,236,1,0,0,173,0,5,0,19,0,0,0,238,1,0,0,237,1,0,0,156,0,0,0,247,0,3,0,240,1,0,0,0,0,0,0,250,0,4,0,238,1,0,0,239,1,0,0,241,1,0,0,248,0,2,0,239,1,0,0,62,0,3,0,225,1,0,0,157,0,0,0,249,0,2,0,240,1,0,0,248,0,2,0,241,1,0,0,62,0,3,0,225,1,0,0,234,1,0,0,249,0,2,0,240,1,0,0,248,0,2,0,240,1,0,0,249,0,2,0,233,1,0,0,248,0,2,0,233,1,0,0,249,0,2,0,224,1,0,0,248,0,2,0,224,1,0,0,61,0,4,0,6,0,0,0,243,1,0,0,225,1,0,0,170,0,5,0,19,0,0,0,244,1,0,0,243,1,0,0,157,0,0,0,247,0,3,0,247,1,0,0,0,0,0,0,250,0,4,0,244,1,0,0,246,1,0,0,250,1,0,0,248,0,2,0,246,1,0,0,65,0,5,0,152,1,0,0,248,1,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,249,1,0,0,248,1,0,0,62,0,3,0,245,1,0,0,249,1,0,0,249,0,2,0,247,1,0,0,248,0,2,0,250,1,0,0,65,0,5,0,152,1,0,0,251,1,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,252,1,0,0,251,1,0,0,62,0,3,0,245,1,0,0,252,1,0,0,249,0,2,0,247,1,0,0,248,0,2,0,247,1,0,0,61,0,4,0,33,0,0,0,253,1,0,0,245,1,0,0,12,0,7,0,33,0,0,0,255,1,0,0,1,0,0,0,37,0,0,0,253,1,0,0,254,1,0,0,62,0,3,0,242,1,0,0,255,1,0,0,61,0,4,0,7,0,0,0,0,2,0,0,206,1,0,0,61,0,4,0,7,0,0,0,1,2,0,0,140,1,0,0,170,0,5,0,85,0,0,0,2,2,0,0,0,2,0,0,1,2,0,0,155,0,4,0,19,0,0,0,3,2,0,0,2,2,0,0,247,0,3,0,5,2,0,0,0,0,0,0,250,0,4,0,3,2,0,0,4,2,0,0,5,2,0,0,248,0,2,0,4,2,0,0,62,0,3,0,225,1,0,0,156,0,0,0,249,0,2,0,5,2,0,0,248,0,2,0,5,2,0,0,61,0,4,0,34,0,0,0,7,2,0,0,95,1,0,0,79,0,7,0,143,1,0,0,8,2,0,0,7,2,0,0,7,2,0,0,0,0,0,0,1,0,0,0,61,0,4,0,34,0,0,0,9,2,0,0,95,1,0,0,79,0,7,0,143,1,0,0,10,2,0,0,9,2,0,0,9,2,0,0,2,0,0,0,3,0,0,0,61,0,4,0,33,0,0,0,11,2,0,0,242,1,0,0,80,0,5,0,143,1,0,0,12,2,0,0,11,2,0,0,11,2,0,0,12,0,8,0,143,1,0,0,13,2,0,0,1,0,0,0,46,0,0,0,8,2,0,0,10,2,0,0,12,2,0,0,62,0,3,0,6,2,0,0,13,2,0,0,61,0,4,0,143,1,0,0,15,2,0,0,203,1,0,0,61,0,4,0,143,1,0,0,16,2,0,0,6,2,0,0,81,0,5,0,33,0,0,0,17,2,0,0,15,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,18,2,0,0,15,2,0,0,1,0,0,0,81,0,5,0,33,0,0,0,19,2,0,0,16,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,20,2,0,0,16,2,0,0,1,0,0,0,80,0,7,0,34,0,0,0,21,2,0,0,17,2,0,0,18,2,0,0,19,2,0,0,20,2,0,0,62,0,3,0,14,2,0,0,21,2,0,0,61,0,4,0,34,0,0,0,23,2,0,0,14,2,0,0,62,0,3,0,22,2,0,0,23,2,0,0,61,0,4,0,7,0,0,0,25,2,0,0,206,1,0,0,62,0,3,0,24,2,0,0,25,2,0,0,61,0,4,0,9,0,0,0,27,2,0,0,102,1,0,0,62,0,3,0,26,2,0,0,27,2,0,0,61,0,4,0,11,0,0,0,29,2,0,0,113,1,0,0,62,0,3,0,28,2,0,0,29,2,0,0,57,0,8,0,2,0,0,0,30,2,0,0,41,0,0,0,22,2,0,0,24,2,0,0,26,2,0,0,28,2,0,0,62,0,3,0,31,2,0,0,32,2,0,0,65,0,5,0,43,0,0,0,33,2,0,0,164,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,34,2,0,0,33,2,0,0,177,0,5,0,19,0,0,0,35,2,0,0,34,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,36,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,37,2,0,0,36,2,0,0,234,1,0,0,167,0,5,0,19,0,0,0,38,2,0,0,35,2,0,0,37,2,0,0,247,0,3,0,40,2,0,0,0,0,0,0,250,0,4,0,38,2,0,0,39,2,0,0,54,2,0,0,248,0,2,0,39,2,0,0,61,0,4,0,34,0,0,0,42,2,0,0,14,2,0,0,79,0,7,0,143,1,0,0,43,2,0,0,42,2,0,0,42,2,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,44,2,0,0,206,1,0,0,61,0,4,0,7,0,0,0,45,2,0,0,127,1,0,0,132,0,5,0,7,0,0,0,46,2,0,0,44,2,0,0,45,2,0,0,111,0,4,0,143,1,0,0,47,2,0,0,46,2,0,0,81,0,5,0,33,0,0,0,48,2,0,0,43,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,49,2,0,0,43,2,0,0,1,0,0,0,81,0,5,0,33,0,0,0,50,2,0,0,47,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,51,2,0,0,47,2,0,0,1,0,0,0,80,0,7,0,34,0,0,0,52,2,0,0,48,2,0,0,49,2,0,0,50,2,0,0,51,2,0,0,62,0,3,0,41,2,0,0,52,2,0,0,62,0,3,0,31,2,0,0,53,2,0,0,249,0,2,0,40,2,0,0,248,0,2,0,54,2,0,0,65,0,5,0,43,0,0,0,55,2,0,0,164,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,56,2,0,0,55,2,0,0,173,0,5,0,19,0,0,0,57,2,0,0,56,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,58,2,0,0,208,1,0,0,170,0,5,0,19,0,0,0,59,2,0,0,58,2,0,0,234,1,0,0,167,0,5,0,19,0,0,0,60,2,0,0,57,2,0,0,59,2,0,0,247,0,3,0,62,2,0,0,0,0,0,0,250,0,4,0,60,2,0,0,61,2,0,0,62,2,0,0,248,0,2,0,61,2,0,0,61,0,4,0,7,0,0,0,63,2,0,0,206,1,0,0,61,0,4,0,7,0,0,0,64,2,0,0,127,1,0,0,132,0,5,0,7,0,0,0,65,2,0,0,63,2,0,0,64,2,0,0,111,0,4,0,143,1,0,0,66,2,0,0,65,2,0,0,61,0,4,0,34,0,0,0,67,2,0,0,14,2,0,0,79,0,7,0,143,1,0,0,68,2,0,0,67,2,0,0,67,2,0,0,0,0,0,0,1,0,0,0,81,0,5,0,33,0,0,0,69,2,0,0,66,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,70,2,0,0,66,2,0,0,1,0,0,0,81,0,5,0,33,0,0,0,71,2,0,0,68,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,72,2,0,0,68,2,0,0,1,0,0,0,80,0,7,0,34,0,0,0,73,2,0,0,69,2,0,0,70,2,0,0,71,2,0,0,72,2,0,0,62,0,3,0,41,2,0,0,73,2,0,0,62,0,3,0,31,2,0,0,53,2,0,0,249,0,2,0,62,2,0,0,248,0,2,0,62,2,0,0,249,0,2,0,40,2,0,0,248,0,2,0,40,2,0,0,61,0,4,0,19,0,0,0,74,2,0,0,31,2,0,0,247,0,3,0,76,2,0,0,0,0,0,0,250,0,4,0,74,2,0,0,75,2,0,0,76,2,0,0,248,0,2,0,75,2,0,0,61,0,4,0,34,0,0,0,78,2,0,0,41,2,0,0,62,0,3,0,77,2,0,0,78,2,0,0,61,0,4,0,7,0,0,0,80,2,0,0,206,1,0,0,62,0,3,0,79,2,0,0,80,2,0,0,61,0,4,0,9,0,0,0,82,2,0,0,102,1,0,0,62,0,3,0,81,2,0,0,82,2,0,0,61,0,4,0,11,0,0,0,84,2,0,0,113,1,0,0,62,0,3,0,83,2,0,0,84,2,0,0,57,0,8,0,2,0,0,0,85,2,0,0,41,0,0,0,77,2,0,0,79,2,0,0,81,2,0,0,83,2,0,0,249,0,2,0,76,2,0,0,248,0,2,0,76,2,0,0,65,0,5,0,43,0,0,0,86,2,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,87,2,0,0,86,2,0,0,177,0,5,0,19,0,0,0,88,2,0,0,87,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,89,2,0,0,208,1,0,0,170,0,5,0,19,0,0,0,90,2,0,0,89,2,0,0,157,0,0,0,167,0,5,0,19,0,0,0,91,2,0,0,88,2,0,0,90,2,0,0,247,0,3,0,93,2,0,0,0,0,0,0,250,0,4,0,91,2,0,0,92,2,0,0,104,2,0,0,248,0,2,0,92,2,0,0,62,0,3,0,94,2,0,0,157,0,0,0,61,0,4,0,7,0,0,0,96,2,0,0,206,1,0,0,62,0,3,0,95,2,0,0,96,2,0,0,61,0,4,0,9,0,0,0,98,2,0,0,102,1,0,0,62,0,3,0,97,2,0,0,98,2,0,0,61,0,4,0,11,0,0,0,100,2,0,0,113,1,0,0,62,0,3,0,99,2,0,0,100,2,0,0,61,0,4,0,11,0,0,0,102,2,0,0,120,1,0,0,62,0,3,0,101,2,0,0,102,2,0,0,57,0,9,0,2,0,0,0,103,2,0,0,50,0,0,0,94,2,0,0,95,2,0,0,97,2,0,0,99,2,0,0,101,2,0,0,249,0,2,0,93,2,0,0,248,0,2,0,104,2,0,0,65,0,5,0,43,0,0,0,105,2,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,106,2,0,0,105,2,0,0,173,0,5,0,19,0,0,0,107,2,0,0,106,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,108,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,109,2,0,0,108,2,0,0,157,0,0,0,167,0,5,0,19,0,0,0,110,2,0,0,107,2,0,0,109,2,0,0,247,0,3,0,112,2,0,0,0,0,0,0,250,0,4,0,110,2,0,0,111,2,0,0,112,2,0,0,248,0,2,0,111,2,0,0,62,0,3,0,113,2,0,0,168,1,0,0,61,0,4,0,7,0,0,0,115,2,0,0,206,1,0,0,62,0,3,0,114,2,0,0,115,2,0,0,61,0,4,0,9,0,0,0,117,2,0,0,102,1,0,0,62,0,3,0,116,2,0,0,117,2,0,0,61,0,4,0,11,0,0,0,119,2,0,0,113,1,0,0,62,0,3,0,118,2,0,0,119,2,0,0,61,0,4,0,11,0,0,0,121,2,0,0,120,1,0,0,62,0,3,0,120,2,0,0,121,2,0,0,57,0,9,0,2,0,0,0,122,2,0,0,50,0,0,0,113,2,0,0,114,2,0,0,116,2,0,0,118,2,0,0,120,2,0,0,249,0,2,0,112,2,0,0,248,0,2,0,112,2,0,0,249,0,2,0,93,2,0,0,248,0,2,0,93,2,0,0,61,0,4,0,6,0,0,0,123,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,124,2,0,0,123,2,0,0,157,0,0,0,247,0,3,0,126,2,0,0,0,0,0,0,250,0,4,0,124,2,0,0,125,2,0,0,139,2,0,0,248,0,2,0,125,2,0,0,65,0,5,0,152,1,0,0,127,2,0,0,197,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,128,2,0,0,127,2,0,0,65,0,5,0,152,1,0,0,129,2,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,130,2,0,0,129,2,0,0,129,0,5,0,33,0,0,0,131,2,0,0,130,2,0,0,128,2,0,0,65,0,5,0,152,1,0,0,132,2,0,0,190,1,0,0,64,0,0,0,62,0,3,0,132,2,0,0,131,2,0,0,65,0,5,0,43,0,0,0,133,2,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,134,2,0,0,133,2,0,0,65,0,5,0,43,0,0,0,135,2,0,0,206,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,136,2,0,0,135,2,0,0,128,0,5,0,6,0,0,0,137,2,0,0,136,2,0,0,134,2,0,0,65,0,5,0,43,0,0,0,138,2,0,0,206,1,0,0,64,0,0,0,62,0,3,0,138,2,0,0,137,2,0,0,249,0,2,0,126,2,0,0,248,0,2,0,139,2,0,0,61,0,4,0,6,0,0,0,140,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,141,2,0,0,140,2,0,0,234,1,0,0,247,0,3,0,143,2,0,0,0,0,0,0,250,0,4,0,141,2,0,0,142,2,0,0,156,2,0,0,248,0,2,0,142,2,0,0,65,0,5,0,152,1,0,0,144,2,0,0,197,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,145,2,0,0,144,2,0,0,65,0,5,0,152,1,0,0,146,2,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,147,2,0,0,146,2,0,0,129,0,5,0,33,0,0,0,148,2,0,0,147,2,0,0,145,2,0,0,65,0,5,0,152,1,0,0,149,2,0,0,190,1,0,0,68,0,0,0,62,0,3,0,149,2,0,0,148,2,0,0,65,0,5,0,43,0,0,0,150,2,0,0,164,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,151,2,0,0,150,2,0,0,65,0,5,0,43,0,0,0,152,2,0,0,206,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,153,2,0,0,152,2,0,0,128,0,5,0,6,0,0,0,154,2,0,0,153,2,0,0,151,2,0,0,65,0,5,0,43,0,0,0,155,2,0,0,206,1,0,0,68,0,0,0,62,0,3,0,155,2,0,0,154,2,0,0,249,0,2,0,143,2,0,0,248,0,2,0,156,2,0,0,249,0,2,0,212,1,0,0,248,0,2,0,143,2,0,0,249,0,2,0,126,2,0,0,248,0,2,0,126,2,0,0,61,0,4,0,143,1,0,0,158,2,0,0,6,2,0,0,62,0,3,0,203,1,0,0,158,2,0,0,61,0,4,0,6,0,0,0,159,2,0,0,225,1,0,0,62,0,3,0,208,1,0,0,159,2,0,0,61,0,4,0,11,0,0,0,160,2,0,0,209,1,0,0,128,0,5,0,11,0,0,0,161,2,0,0,160,2,0,0,157,0,0,0,62,0,3,0,209,1,0,0,161,2,0,0,249,0,2,0,213,1,0,0,248,0,2,0,213,1,0,0,249,0,2,0,210,1,0,0,248,0,2,0,212,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,11,0,0,0,17,0,0,0,0,0,0,0,13,0,0,0,55,0,3,0,8,0,0,0,14,0,0,0,55,0,3,0,10,0,0,0,15,0,0,0,55,0,3,0,12,0,0,0,16,0,0,0,248,0,2,0,18,0,0,0,59,0,4,0,8,0,0,0,57,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,58,0,0,0,14,0,0,0,61,0,4,0,9,0,0,0,59,0,0,0,15,0,0,0,79,0,7,0,7,0,0,0,60,0,0,0,59,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,130,0,5,0,7,0,0,0,61,0,0,0,58,0,0,0,60,0,0,0,62,0,3,0,57,0,0,0,61,0,0,0,61,0,4,0,11,0,0,0,62,0,0,0,16,0,0,0,124,0,4,0,6,0,0,0,63,0,0,0,62,0,0,0,65,0,5,0,43,0,0,0,65,0,0,0,57,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,66,0,0,0,65,0,0,0,128,0,5,0,6,0,0,0,67,0,0,0,63,0,0,0,66,0,0,0,65,0,5,0,43,0,0,0,69,0,0,0,57,0,0,0,68,0,0,0,61,0,4,0,6,0,0,0,70,0,0,0,69,0,0,0,65,0,5,0,43,0,0,0,72,0,0,0,15,0,0,0,71,0,0,0,61,0,4,0,6,0,0,0,73,0,0,0,72,0,0,0,65,0,5,0,43,0,0,0,74,0,0,0,15,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,75,0,0,0,74,0,0,0,130,0,5,0,6,0,0,0,76,0,0,0,73,0,0,0,75,0,0,0,132,0,5,0,6,0,0,0,77,0,0,0,70,0,0,0,76,0,0,0,128,0,5,0,6,0,0,0,78,0,0,0,67,0,0,0,77,0,0,0,124,0,4,0,11,0,0,0,79,0,0,0,78,0,0,0,254,0,2,0,79,0,0,0,56,0,1,0,54,0,5,0,20,0,0,0,24,0,0,0,0,0,0,0,21,0,0,0,55,0,3,0,8,0,0,0,22,0,0,0,55,0,3,0,10,0,0,0,23,0,0,0,248,0,2,0,25,0,0,0,61,0,4,0,7,0,0,0,82,0,0,0,22,0,0,0,61,0,4,0,9,0,0,0,83,0,0,0,23,0,0,0,79,0,7,0,7,0,0,0,84,0,0,0,83,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,177,0,5,0,85,0,0,0,86,0,0,0,82,0,0,0,84,0,0,0,61,0,4,0,7,0,0,0,87,0,0,0,22,0,0,0,61,0,4,0,9,0,0,0,88,0,0,0,23,0,0,0,79,0,7,0,7,0,0,0,89,0,0,0,88,0,0,0,88,0,0,0,2,0,0,0,3,0,0,0,175,0,5,0,85,0,0,0,90,0,0,0,87,0,0,0,89,0,0,0,81,0,5,0,19,0,0,0,91,0,0,0,86,0,0,0,0,0,0,0,81,0,5,0,19,0,0,0,92,0,0,0,86,0,0,0,1,0,0,0,81,0,5,0,19,0,0,0,93,0,0,0,90,0,0,0,0,0,0,0,81,0,5,0,19,0,0,0,94,0,0,0,90,0,0,0,1,0,0,0,80,0,7,0,20,0,0,0,95,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,94,0,0,0,254,0,2,0,95,0,0,0,56,0,1,0,54,0,5,0,19,0,0,0,31,0,0,0,0,0,0,0,26,0,0,0,55,0,3,0,8,0,0,0,27,0,0,0,55,0,3,0,10,0,0,0,28,0,0,0,55,0,3,0,12,0,0,0,29,0,0,0,55,0,3,0,12,0,0,0,30,0,0,0,248,0,2,0,32,0,0,0,59,0,4,0,8,0,0,0,98,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,100,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,102,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,105,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,107,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,99,0,0,0,27,0,0,0,62,0,3,0,98,0,0,0,99,0,0,0,61,0,4,0,9,0,0,0,101,0,0,0,28,0,0,0,62,0,3,0,100,0,0,0,101,0,0,0,61,0,4,0,11,0,0,0,103,0,0,0,29,0,0,0,62,0,3,0,102,0,0,0,103,0,0,0,57,0,7,0,11,0,0,0,104,0,0,0,17,0,0,0,98,0,0,0,100,0,0,0,102,0,0,0,62,0,3,0,30,0,0,0,104,0,0,0,61,0,4,0,7,0,0,0,106,0,0,0,27,0,0,0,62,0,3,0,105,0,0,0,106,0,0,0,61,0,4,0,9,0,0,0,108,0,0,0,28,0,0,0,62,0,3,0,107,0,0,0,108,0,0,0,57,0,6,0,20,0,0,0,109,0,0,0,24,0,0,0,105,0,0,0,107,0,0,0,154,0,4,0,19,0,0,0,110,0,0,0,109,0,0,0,168,0,4,0,19,0,0,0,111,0,0,0,110,0,0,0,254,0,2,0,111,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,41,0,0,0,0,0,0,0,36,0,0,0,55,0,3,0,35,0,0,0,37,0,0,0,55,0,3,0,8,0,0,0,38,0,0,0,55,0,3,0,10,0,0,0,39,0,0,0,55,0,3,0,12,0,0,0,40,0,0,0,248,0,2,0,42,0,0,0,59,0,4,0,12,0,0,0,114,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,115,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,117,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,119,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,121,0,0,0,7,0,0,0,59,0,4,0,129,0,0,0,130,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,151,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,161,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,116,0,0,0,38,0,0,0,62,0,3,0,115,0,0,0,116,0,0,0,61,0,4,0,9,0,0,0,118,0,0,0,39,0,0,0,62,0,3,0,117,0,0,0,118,0,0,0,61,0,4,0,11,0,0,0,120,0,0,0,40,0,0,0,62,0,3,0,119,0,0,0,120,0,0,0,57,0,8,0,19,0,0,0,122,0,0,0,31,0,0,0,115,0,0,0,117,0,0,0,119,0,0,0,121,0,0,0,61,0,4,0,11,0,0,0,123,0,0,0,121,0,0,0,62,0,3,0,114,0,0,0,123,0,0,0,168,0,4,0,19,0,0,0,124,0,0,0,122,0,0,0,247,0,3,0,126,0,0,0,0,0,0,0,250,0,4,0,124,0,0,0,125,0,0,0,126,0,0,0,248,0,2,0,125,0,0,0,253,0,1,0,248,0,2,0,126,0,0,0,61,0,4,0,34,0,0,0,131,0,0,0,37,0,0,0,61,0,4,0,7,0,0,0,132,0,0,0,38,0,0,0,79,0,9,0,9,0,0,0,133,0,0,0,132,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,132,0,5,0,9,0,0,0,136,0,0,0,133,0,0,0,135,0,0,0,111,0,4,0,34,0,0,0,137,0,0,0,136,0,0,0,131,0,5,0,34,0,0,0,138,0,0,0,131,0,0,0,137,0,0,0,133,0,5,0,34,0,0,0,141,0,0,0,138,0,0,0,140,0,0,0,109,0,4,0,128,0,0,0,142,0,0,0,141,0,0,0,62,0,3,0,130,0,0,0,142,0,0,0,65,0,5,0,12,0,0,0,143,0,0,0,130,0,0,0,64,0,0,0,61,0,4,0,11,0,0,0,144,0,0,0,143,0,0,0,65,0,5,0,12,0,0,0,145,0,0,0,130,0,0,0,71,0,0,0,61,0,4,0,11,0,0,0,146,0,0,0,145,0,0,0,170,0,5,0,19,0,0,0,147,0,0,0,144,0,0,0,146,0,0,0,247,0,3,0,149,0,0,0,0,0,0,0,250,0,4,0,147,0,0,0,148,0,0,0,149,0,0,0,248,0,2,0,148,0,0,0,253,0,1,0,248,0,2,0,149,0,0,0,65,0,6,0,158,0,0,0,159,0,0,0,155,0,0,0,156,0,0,0,157,0,0,0,234,0,7,0,11,0,0,0,160,0,0,0,159,0,0,0,68,0,0,0,64,0,0,0,68,0,0,0,62,0,3,0,151,0,0,0,160,0,0,0,61,0,4,0,11,0,0,0,166,0,0,0,114,0,0,0,132,0,5,0,11,0,0,0,168,0,0,0,166,0,0,0,167,0,0,0,128,0,5,0,11,0,0,0,169,0,0,0,168,0,0,0,68,0,0,0,65,0,6,0,158,0,0,0,170,0,0,0,165,0,0,0,156,0,0,0,169,0,0,0,61,0,4,0,11,0,0,0,171,0,0,0,151,0,0,0,229,0,7,0,11,0,0,0,172,0,0,0,170,0,0,0,68,0,0,0,64,0,0,0,171,0,0,0,62,0,3,0,161,0,0,0,172,0,0,0,61,0,4,0,11,0,0,0,173,0,0,0,151,0,0,0,65,0,5,0,177,0,0,0,178,0,0,0,176,0,0,0,157,0,0,0,61,0,4,0,6,0,0,0,179,0,0,0,178,0,0,0,124,0,4,0,11,0,0,0,180,0,0,0,179,0,0,0,176,0,5,0,19,0,0,0,181,0,0,0,173,0,0,0,180,0,0,0,247,0,3,0,183,0,0,0,0,0,0,0,250,0,4,0,181,0,0,0,182,0,0,0,183,0,0,0,248,0,2,0,182,0,0,0,61,0,4,0,11,0,0,0,188,0,0,0,151,0,0,0,132,0,5,0,11,0,0,0,190,0,0,0,188,0,0,0,189,0,0,0,128,0,5,0,11,0,0,0,191,0,0,0,190,0,0,0,64,0,0,0,65,0,5,0,12,0,0,0,192,0,0,0,130,0,0,0,64,0,0,0,61,0,4,0,11,0,0,0,193,0,0,0,192,0,0,0,65,0,5,0,12,0,0,0,194,0,0,0,130,0,0,0,68,0,0,0,61,0,4,0,11,0,0,0,195,0,0,0,194,0,0,0,196,0,5,0,11,0,0,0,196,0,0,0,195,0,0,0,134,0,0,0,197,0,5,0,11,0,0,0,197,0,0,0,193,0,0,0,196,0,0,0,65,0,6,0,158,0,0,0,198,0,0,0,187,0,0,0,156,0,0,0,191,0,0,0,62,0,3,0,198,0,0,0,197,0,0,0,61,0,4,0,11,0,0,0,199,0,0,0,151,0,0,0,132,0,5,0,11,0,0,0,200,0,0,0,199,0,0,0,189,0,0,0,128,0,5,0,11,0,0,0,201,0,0,0,200,0,0,0,68,0,0,0,65,0,5,0,12,0,0,0,202,0,0,0,130,0,0,0,71,0,0,0,61,0,4,0,11,0,0,0,203,0,0,0,202,0,0,0,65,0,5,0,12,0,0,0,204,0,0,0,130,0,0,0,189,0,0,0,61,0,4,0,11,0,0,0,205,0,0,0,204,0,0,0,196,0,5,0,11,0,0,0,206,0,0,0,205,0,0,0,134,0,0,0,197,0,5,0,11,0,0,0,207,0,0,0,203,0,0,0,206,0,0,0,65,0,6,0,158,0,0,0,208,0,0,0,187,0,0,0,156,0,0,0,201,0,0,0,62,0,3,0,208,0,0,0,207,0,0,0,61,0,4,0,11,0,0,0,209,0,0,0,151,0,0,0,132,0,5,0,11,0,0,0,210,0,0,0,209,0,0,0,189,0,0,0,128,0,5,0,11,0,0,0,211,0,0,0,210,0,0,0,71,0,0,0,61,0,4,0,11,0,0,0,212,0,0,0,161,0,0,0,65,0,6,0,158,0,0,0,213,0,0,0,187,0,0,0,156,0,0,0,211,0,0,0,62,0,3,0,213,0,0,0,212,0,0,0,249,0,2,0,183,0,0,0,248,0,2,0,183,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,2,0,0,0,50,0,0,0,0,0,0,0,44,0,0,0,55,0,3,0,43,0,0,0,45,0,0,0,55,0,3,0,8,0,0,0,46,0,0,0,55,0,3,0,10,0,0,0,47,0,0,0,55,0,3,0,12,0,0,0,48,0,0,0,55,0,3,0,12,0,0,0,49,0,0,0,248,0,2,0,51,0,0,0,59,0,4,0,214,0,0,0,215,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,216,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,218,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,240,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,4,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,5,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,7,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,9,1,0,0,7,0,0,0,61,0,4,0,7,0,0,0,217,0,0,0,46,0,0,0,62,0,3,0,216,0,0,0,217,0,0,0,61,0,4,0,9,0,0,0,219,0,0,0,47,0,0,0,62,0,3,0,218,0,0,0,219,0,0,0,57,0,6,0,20,0,0,0,220,0,0,0,24,0,0,0,216,0,0,0,218,0,0,0,62,0,3,0,215,0,0,0,220,0,0,0,61,0,4,0,20,0,0,0,221,0,0,0,215,0,0,0,154,0,4,0,19,0,0,0,222,0,0,0,221,0,0,0,247,0,3,0,224,0,0,0,0,0,0,0,250,0,4,0,222,0,0,0,223,0,0,0,3,1,0,0,248,0,2,0,223,0,0,0,65,0,5,0,225,0,0,0,226,0,0,0,215,0,0,0,64,0,0,0,61,0,4,0,19,0,0,0,227,0,0,0,226,0,0,0,168,0,4,0,19,0,0,0,228,0,0,0,227,0,0,0,65,0,5,0,225,0,0,0,229,0,0,0,215,0,0,0,68,0,0,0,61,0,4,0,19,0,0,0,230,0,0,0,229,0,0,0,167,0,5,0,19,0,0,0,231,0,0,0,228,0,0,0,230,0,0,0,247,0,3,0,233,0,0,0,0,0,0,0,250,0,4,0,231,0,0,0,232,0,0,0,233,0,0,0,248,0,2,0,232,0,0,0,65,0,5,0,225,0,0,0,234,0,0,0,215,0,0,0,71,0,0,0,61,0,4,0,19,0,0,0,235,0,0,0,234,0,0,0,168,0,4,0,19,0,0,0,236,0,0,0,235,0,0,0,249,0,2,0,233,0,0,0,248,0,2,0,233,0,0,0,245,0,7,0,19,0,0,0,237,0,0,0,231,0,0,0,223,0,0,0,236,0,0,0,232,0,0,0,247,0,3,0,239,0,0,0,0,0,0,0,250,0,4,0,237,0,0,0,238,0,0,0,239,0,0,0,248,0,2,0,238,0,0,0,61,0,4,0,11,0,0,0,241,0,0,0,49,0,0,0,65,0,5,0,43,0,0,0,242,0,0,0,46,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,243,0,0,0,242,0,0,0,65,0,5,0,43,0,0,0,244,0,0,0,47,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,245,0,0,0,244,0,0,0,130,0,5,0,6,0,0,0,246,0,0,0,243,0,0,0,245,0,0,0,124,0,4,0,11,0,0,0,247,0,0,0,246,0,0,0,128,0,5,0,11,0,0,0,248,0,0,0,241,0,0,0,247,0,0,0,62,0,3,0,240,0,0,0,248,0,0,0,61,0,4,0,11,0,0,0,253,0,0,0,240,0,0,0,132,0,5,0,11,0,0,0,254,0,0,0,253,0,0,0,189,0,0,0,65,0,6,0,158,0,0,0,255,0,0,0,252,0,0,0,156,0,0,0,254,0,0,0,61,0,4,0,6,0,0,0,0,1,0,0,45,0,0,0,124,0,4,0,11,0,0,0,1,1,0,0,0,1,0,0,234,0,7,0,11,0,0,0,2,1,0,0,255,0,0,0,68,0,0,0,64,0,0,0,1,1,0,0,249,0,2,0,239,0,0,0,248,0,2,0,239,0,0,0,249,0,2,0,224,0,0,0,248,0,2,0,3,1,0,0,61,0,4,0,7,0,0,0,6,1,0,0,46,0,0,0,62,0,3,0,5,1,0,0,6,1,0,0,61,0,4,0,9,0,0,0,8,1,0,0,47,0,0,0,62,0,3,0,7,1,0,0,8,1,0,0,61,0,4,0,11,0,0,0,10,1,0,0,48,0,0,0,62,0,3,0,9,1,0,0,10,1,0,0,57,0,7,0,11,0,0,0,11,1,0,0,17,0,0,0,5,1,0,0,7,1,0,0,9,1,0,0,62,0,3,0,4,1,0,0,11,1,0,0,61,0,4,0,11,0,0,0,12,1,0,0,4,1,0,0,132,0,5,0,11,0,0,0,13,1,0,0,12,1,0,0,167,0,0,0,128,0,5,0,11,0,0,0,14,1,0,0,13,1,0,0,71,0,0,0,65,0,6,0,158,0,0,0,15,1,0,0,165,0,0,0,156,0,0,0,14,1,0,0,61,0,4,0,6,0,0,0,16,1,0,0,45,0,0,0,124,0,4,0,11,0,0,0,17,1,0,0,16,1,0,0,196,0,5,0,11,0,0,0,19,1,0,0,17,1,0,0,18,1,0,0,234,0,7,0,11,0,0,0,20,1,0,0,15,1,0,0,68,0,0,0,64,0,0,0,19,1,0,0,249,0,2,0,224,0,0,0,248,0,2,0,224,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,34,0,0,0,55,0,0,0,0,0,0,0,52,0,0,0,55,0,3,0,12,0,0,0,53,0,0,0,55,0,3,0,12,0,0,0,54,0,0,0,248,0,2,0,56,0,0,0,59,0,4,0,10,0,0,0,28,1,0,0,7,0,0,0,61,0,4,0,11,0,0,0,25,1,0,0,53,0,0,0,65,0,7,0,158,0,0,0,26,1,0,0,24,1,0,0,156,0,0,0,25,1,0,0,189,0,0,0,61,0,4,0,11,0,0,0,27,1,0,0,26,1,0,0,62,0,3,0,54,0,0,0,27,1,0,0,61,0,4,0,11,0,0,0,29,1,0,0,53,0,0,0,65,0,6,0,30,1,0,0,31,1,0,0,24,1,0,0,156,0,0,0,29,1,0,0,61,0,4,0,128,0,0,0,32,1,0,0,31,1,0,0,124,0,4,0,9,0,0,0,33,1,0,0,32,1,0,0,62,0,3,0,28,1,0,0,33,1,0,0,65,0,5,0,43,0,0,0,34,1,0,0,28,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,35,1,0,0,34,1,0,0,196,0,5,0,6,0,0,0,36,1,0,0,35,1,0,0,134,0,0,0,195,0,5,0,6,0,0,0,37,1,0,0,36,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,38,1,0,0,37,1,0,0,65,0,5,0,43,0,0,0,39,1,0,0,28,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,40,1,0,0,39,1,0,0,195,0,5,0,6,0,0,0,41,1,0,0,40,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,42,1,0,0,41,1,0,0,65,0,5,0,43,0,0,0,43,1,0,0,28,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,44,1,0,0,43,1,0,0,196,0,5,0,6,0,0,0,45,1,0,0,44,1,0,0,134,0,0,0,195,0,5,0,6,0,0,0,46,1,0,0,45,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,47,1,0,0,46,1,0,0,65,0,5,0,43,0,0,0,48,1,0,0,28,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,49,1,0,0,48,1,0,0,195,0,5,0,6,0,0,0,50,1,0,0,49,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,51,1,0,0,50,1,0,0,80,0,7,0,34,0,0,0,52,1,0,0,38,1,0,0,42,1,0,0,47,1,0,0,51,1,0,0,65,0,5,0,43,0,0,0,53,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,54,1,0,0,53,1,0,0,199,0,5,0,6,0,0,0,56,1,0,0,54,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,57,1,0,0,56,1,0,0,65,0,5,0,43,0,0,0,58,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,59,1,0,0,58,1,0,0,195,0,5,0,6,0,0,0,61,1,0,0,59,1,0,0,60,1,0,0,199,0,5,0,6,0,0,0,62,1,0,0,61,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,63,1,0,0,62,1,0,0,65,0,5,0,43,0,0,0,64,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,65,1,0,0,64,1,0,0,195,0,5,0,6,0,0,0,66,1,0,0,65,1,0,0,134,0,0,0,199,0,5,0,6,0,0,0,67,1,0,0,66,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,68,1,0,0,67,1,0,0,65,0,5,0,43,0,0,0,69,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,70,1,0,0,69,1,0,0,195,0,5,0,6,0,0,0,71,1,0,0,70,1,0,0,18,1,0,0,199,0,5,0,6,0,0,0,72,1,0,0,71,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,73,1,0,0,72,1,0,0,80,0,7,0,34,0,0,0,74,1,0,0,57,1,0,0,63,1,0,0,68,1,0,0,73,1,0,0,80,0,7,0,34,0,0,0,75,1,0,0,139,0,0,0,139,0,0,0,139,0,0,0,139,0,0,0,136,0,5,0,34,0,0,0,76,1,0,0,74,1,0,0,75,1,0,0,129,0,5,0,34,0,0,0,77,1,0,0,52,1,0,0,76,1,0,0,254,0,2,0,77,1,0,0,56,0,1,0}; + static uint8_t bin_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,164,2,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,83,1,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,11,0,17,0,0,0,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,78,111,67,104,101,99,107,40,118,105,50,59,118,105,52,59,117,49,59,0,5,0,5,0,14,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,15,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,16,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,10,0,24,0,0,0,99,111,109,112,117,116,101,84,105,108,101,79,117,116,99,111,100,101,115,40,118,105,50,59,118,105,52,59,0,0,0,0,5,0,5,0,22,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,23,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,10,0,31,0,0,0,99,111,109,112,117,116,101,84,105,108,101,73,110,100,101,120,40,118,105,50,59,118,105,52,59,117,49,59,117,49,59,0,5,0,5,0,27,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,28,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,29,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,6,0,30,0,0,0,111,117,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,8,0,41,0,0,0,97,100,100,70,105,108,108,40,118,102,52,59,118,105,50,59,118,105,52,59,117,49,59,0,5,0,5,0,37,0,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,5,0,38,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,39,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,40,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,11,0,50,0,0,0,97,100,106,117,115,116,66,97,99,107,100,114,111,112,40,105,49,59,118,105,50,59,118,105,52,59,117,49,59,117,49,59,0,0,0,0,5,0,6,0,45,0,0,0,98,97,99,107,100,114,111,112,68,101,108,116,97,0,0,0,5,0,5,0,46,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,47,0,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,6,0,48,0,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,7,0,49,0,0,0,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,0,0,5,0,8,0,55,0,0,0,117,110,112,97,99,107,77,105,99,114,111,108,105,110,101,40,117,49,59,117,49,59,0,0,5,0,6,0,53,0,0,0,115,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,6,0,54,0,0,0,111,117,116,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,57,0,0,0,111,102,102,115,101,116,67,111,111,114,100,115,0,0,0,0,5,0,4,0,98,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,100,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,102,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,105,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,107,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,114,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,4,0,115,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,117,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,119,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,130,0,0,0,115,99,97,108,101,100,76,111,99,97,108,76,105,110,101,0,5,0,5,0,151,0,0,0,102,105,108,108,73,110,100,101,120,0,0,0,5,0,7,0,153,0,0,0,98,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,0,6,0,8,0,153,0,0,0,0,0,0,0,105,73,110,100,105,114,101,99,116,68,114,97,119,80,97,114,97,109,115,0,5,0,3,0,155,0,0,0,0,0,0,0,5,0,5,0,161,0,0,0,102,105,108,108,76,105,110,107,0,0,0,0,5,0,4,0,163,0,0,0,98,84,105,108,101,115,0,0,6,0,5,0,163,0,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,165,0,0,0,0,0,0,0,5,0,5,0,174,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,7,0,174,0,0,0,0,0,0,0,117,77,105,99,114,111,108,105,110,101,67,111,117,110,116,0,6,0,7,0,174,0,0,0,1,0,0,0,117,77,97,120,70,105,108,108,67,111,117,110,116,0,0,0,6,0,5,0,174,0,0,0,2,0,0,0,117,80,97,100,48,0,0,0,6,0,5,0,174,0,0,0,3,0,0,0,117,80,97,100,49,0,0,0,5,0,3,0,176,0,0,0,0,0,0,0,5,0,4,0,185,0,0,0,98,70,105,108,108,115,0,0,6,0,5,0,185,0,0,0,0,0,0,0,105,70,105,108,108,115,0,0,5,0,3,0,187,0,0,0,0,0,0,0,5,0,5,0,215,0,0,0,111,117,116,99,111,100,101,115,0,0,0,0,5,0,4,0,216,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,218,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,240,0,0,0,98,97,99,107,100,114,111,112,73,110,100,101,120,0,0,0,5,0,5,0,250,0,0,0,98,66,97,99,107,100,114,111,112,115,0,0,6,0,6,0,250,0,0,0,0,0,0,0,105,66,97,99,107,100,114,111,112,115,0,0,5,0,3,0,252,0,0,0,0,0,0,0,5,0,5,0,4,1,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,4,0,5,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,9,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,22,1,0,0,98,77,105,99,114,111,108,105,110,101,115,0,6,0,6,0,22,1,0,0,0,0,0,0,105,77,105,99,114,111,108,105,110,101,115,0,5,0,3,0,24,1,0,0,0,0,0,0,5,0,6,0,28,1,0,0,115,105,103,110,101,100,77,105,99,114,111,108,105,110,101,0,5,0,6,0,80,1,0,0,115,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,8,0,83,1,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,5,0,95,1,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,5,0,96,1,0,0,112,97,116,104,73,110,100,101,120,0,0,0,5,0,4,0,97,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,1,0,0,112,97,114,97,109,0,0,0,5,0,6,0,102,1,0,0,112,97,116,104,84,105,108,101,82,101,99,116,0,0,0,0,5,0,5,0,104,1,0,0,98,77,101,116,97,100,97,116,97,0,0,0,6,0,6,0,104,1,0,0,0,0,0,0,105,77,101,116,97,100,97,116,97,0,0,0,5,0,3,0,106,1,0,0,0,0,0,0,5,0,6,0,113,1,0,0,112,97,116,104,84,105,108,101,79,102,102,115,101,116,0,0,5,0,7,0,120,1,0,0,112,97,116,104,66,97,99,107,100,114,111,112,79,102,102,115,101,116,0,0,5,0,5,0,127,1,0,0,116,105,108,101,83,105,122,101,0,0,0,0,5,0,6,0,129,1,0,0,116,105,108,101,76,105,110,101,83,101,103,109,101,110,116,0,5,0,6,0,137,1,0,0,102,114,111,109,84,105,108,101,67,111,111,114,100,115,0,0,5,0,6,0,140,1,0,0,116,111,84,105,108,101,67,111,111,114,100,115,0,0,0,0,5,0,4,0,145,1,0,0,118,101,99,116,111,114,0,0,5,0,7,0,151,1,0,0,118,101,99,116,111,114,73,115,78,101,103,97,116,105,118,101,0,0,0,0,5,0,5,0,164,1,0,0,116,105,108,101,83,116,101,112,0,0,0,0,5,0,7,0,175,1,0,0,102,105,114,115,116,84,105,108,101,67,114,111,115,115,105,110,103,0,0,0,5,0,4,0,190,1,0,0,116,77,97,120,0,0,0,0,5,0,4,0,197,1,0,0,116,68,101,108,116,97,0,0,5,0,6,0,203,1,0,0,99,117,114,114,101,110,116,80,111,115,105,116,105,111,110,0,5,0,5,0,206,1,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,7,0,208,1,0,0,108,97,115,116,83,116,101,112,68,105,114,101,99,116,105,111,110,0,0,0,5,0,5,0,209,1,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,7,0,225,1,0,0,110,101,120,116,83,116,101,112,68,105,114,101,99,116,105,111,110,0,0,0,5,0,4,0,242,1,0,0,110,101,120,116,84,0,0,0,5,0,6,0,6,2,0,0,110,101,120,116,80,111,115,105,116,105,111,110,0,0,0,0,5,0,7,0,14,2,0,0,99,108,105,112,112,101,100,76,105,110,101,83,101,103,109,101,110,116,0,0,5,0,4,0,22,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,24,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,26,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,28,2,0,0,112,97,114,97,109,0,0,0,5,0,8,0,31,2,0,0,104,97,118,101,65,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,0,0,0,0,5,0,7,0,41,2,0,0,97,117,120,105,108,105,97,114,121,83,101,103,109,101,110,116,0,0,0,0,5,0,4,0,77,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,79,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,81,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,94,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,95,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,97,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,101,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,113,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,120,2,0,0,112,97,114,97,109,0,0,0,71,0,4,0,152,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,153,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,153,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,153,0,0,0,3,0,0,0,71,0,4,0,155,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,155,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,162,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,163,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,163,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,163,0,0,0,3,0,0,0,71,0,4,0,165,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,165,0,0,0,33,0,0,0,4,0,0,0,72,0,5,0,174,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,174,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,174,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,174,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,174,0,0,0,2,0,0,0,71,0,4,0,176,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,176,0,0,0,33,0,0,0,6,0,0,0,71,0,4,0,184,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,185,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,185,0,0,0,0,0,0,0,25,0,0,0,72,0,5,0,185,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,185,0,0,0,3,0,0,0,71,0,4,0,187,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,187,0,0,0,33,0,0,0,3,0,0,0,71,0,4,0,249,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,250,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,250,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,250,0,0,0,3,0,0,0,71,0,4,0,252,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,252,0,0,0,33,0,0,0,5,0,0,0,71,0,4,0,21,1,0,0,6,0,0,0,16,0,0,0,72,0,4,0,22,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,22,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,22,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,22,1,0,0,3,0,0,0,71,0,4,0,24,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,24,1,0,0,33,0,0,0,0,0,0,0,71,0,4,0,83,1,0,0,11,0,0,0,28,0,0,0,71,0,4,0,103,1,0,0,6,0,0,0,16,0,0,0,72,0,4,0,104,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,104,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,104,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,104,1,0,0,3,0,0,0,71,0,4,0,106,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,106,1,0,0,33,0,0,0,1,0,0,0,71,0,4,0,163,2,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,1,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,23,0,4,0,9,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,21,0,4,0,11,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,12,0,0,0,7,0,0,0,11,0,0,0,33,0,6,0,13,0,0,0,11,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,20,0,2,0,19,0,0,0,23,0,4,0,20,0,0,0,19,0,0,0,4,0,0,0,33,0,5,0,21,0,0,0,20,0,0,0,8,0,0,0,10,0,0,0,33,0,7,0,26,0,0,0,19,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,22,0,3,0,33,0,0,0,32,0,0,0,23,0,4,0,34,0,0,0,33,0,0,0,4,0,0,0,32,0,4,0,35,0,0,0,7,0,0,0,34,0,0,0,33,0,7,0,36,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,32,0,4,0,43,0,0,0,7,0,0,0,6,0,0,0,33,0,8,0,44,0,0,0,2,0,0,0,43,0,0,0,8,0,0,0,10,0,0,0,12,0,0,0,12,0,0,0,33,0,5,0,52,0,0,0,34,0,0,0,12,0,0,0,12,0,0,0,43,0,4,0,11,0,0,0,64,0,0,0,0,0,0,0,43,0,4,0,11,0,0,0,68,0,0,0,1,0,0,0,43,0,4,0,11,0,0,0,71,0,0,0,2,0,0,0,23,0,4,0,85,0,0,0,19,0,0,0,2,0,0,0,23,0,4,0,128,0,0,0,11,0,0,0,4,0,0,0,32,0,4,0,129,0,0,0,7,0,0,0,128,0,0,0,43,0,4,0,6,0,0,0,134,0,0,0,16,0,0,0,44,0,7,0,9,0,0,0,135,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,134,0,0,0,43,0,4,0,33,0,0,0,139,0,0,0,0,0,128,67,44,0,7,0,34,0,0,0,140,0,0,0,139,0,0,0,139,0,0,0,139,0,0,0,139,0,0,0,29,0,3,0,152,0,0,0,11,0,0,0,30,0,3,0,153,0,0,0,152,0,0,0,32,0,4,0,154,0,0,0,2,0,0,0,153,0,0,0,59,0,4,0,154,0,0,0,155,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,156,0,0,0,0,0,0,0,43,0,4,0,6,0,0,0,157,0,0,0,1,0,0,0,32,0,4,0,158,0,0,0,2,0,0,0,11,0,0,0,29,0,3,0,162,0,0,0,11,0,0,0,30,0,3,0,163,0,0,0,162,0,0,0,32,0,4,0,164,0,0,0,2,0,0,0,163,0,0,0,59,0,4,0,164,0,0,0,165,0,0,0,2,0,0,0,43,0,4,0,11,0,0,0,167,0,0,0,4,0,0,0,30,0,6,0,174,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,32,0,4,0,175,0,0,0,2,0,0,0,174,0,0,0,59,0,4,0,175,0,0,0,176,0,0,0,2,0,0,0,32,0,4,0,177,0,0,0,2,0,0,0,6,0,0,0,29,0,3,0,184,0,0,0,11,0,0,0,30,0,3,0,185,0,0,0,184,0,0,0,32,0,4,0,186,0,0,0,2,0,0,0,185,0,0,0,59,0,4,0,186,0,0,0,187,0,0,0,2,0,0,0,43,0,4,0,11,0,0,0,189,0,0,0,3,0,0,0,32,0,4,0,214,0,0,0,7,0,0,0,20,0,0,0,32,0,4,0,225,0,0,0,7,0,0,0,19,0,0,0,29,0,3,0,249,0,0,0,11,0,0,0,30,0,3,0,250,0,0,0,249,0,0,0,32,0,4,0,251,0,0,0,2,0,0,0,250,0,0,0,59,0,4,0,251,0,0,0,252,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,18,1,0,0,24,0,0,0,29,0,3,0,21,1,0,0,128,0,0,0,30,0,3,0,22,1,0,0,21,1,0,0,32,0,4,0,23,1,0,0,2,0,0,0,22,1,0,0,59,0,4,0,23,1,0,0,24,1,0,0,2,0,0,0,32,0,4,0,30,1,0,0,2,0,0,0,128,0,0,0,43,0,4,0,6,0,0,0,55,1,0,0,255,0,0,0,43,0,4,0,6,0,0,0,60,1,0,0,8,0,0,0,23,0,4,0,81,1,0,0,11,0,0,0,3,0,0,0,32,0,4,0,82,1,0,0,1,0,0,0,81,1,0,0,59,0,4,0,82,1,0,0,83,1,0,0,1,0,0,0,32,0,4,0,84,1,0,0,1,0,0,0,11,0,0,0,29,0,3,0,103,1,0,0,9,0,0,0,30,0,3,0,104,1,0,0,103,1,0,0,32,0,4,0,105,1,0,0,2,0,0,0,104,1,0,0,59,0,4,0,105,1,0,0,106,1,0,0,2,0,0,0,32,0,4,0,110,1,0,0,2,0,0,0,9,0,0,0,44,0,5,0,7,0,0,0,128,1,0,0,134,0,0,0,134,0,0,0,23,0,4,0,143,1,0,0,33,0,0,0,2,0,0,0,32,0,4,0,144,1,0,0,7,0,0,0,143,1,0,0,32,0,4,0,152,1,0,0,7,0,0,0,33,0,0,0,43,0,4,0,33,0,0,0,155,1,0,0,0,0,0,0,43,0,4,0,33,0,0,0,157,1,0,0,0,0,128,191,43,0,4,0,6,0,0,0,168,1,0,0,255,255,255,255,43,0,4,0,11,0,0,0,216,1,0,0,0,4,0,0,43,0,4,0,6,0,0,0,234,1,0,0,2,0,0,0,43,0,4,0,33,0,0,0,254,1,0,0,0,0,128,63,42,0,3,0,19,0,0,0,32,2,0,0,41,0,3,0,19,0,0,0,53,2,0,0,43,0,4,0,11,0,0,0,162,2,0,0,64,0,0,0,44,0,6,0,81,1,0,0,163,2,0,0,162,2,0,0,68,0,0,0,68,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,12,0,0,0,80,1,0,0,7,0,0,0,59,0,4,0,35,0,0,0,95,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,96,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,97,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,99,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,102,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,113,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,120,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,127,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,129,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,137,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,140,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,145,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,151,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,164,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,175,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,190,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,197,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,203,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,206,1,0,0,7,0,0,0,59,0,4,0,43,0,0,0,208,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,209,1,0,0,7,0,0,0,59,0,4,0,43,0,0,0,225,1,0,0,7,0,0,0,59,0,4,0,152,1,0,0,242,1,0,0,7,0,0,0,59,0,4,0,152,1,0,0,245,1,0,0,7,0,0,0,59,0,4,0,144,1,0,0,6,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,14,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,22,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,24,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,26,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,28,2,0,0,7,0,0,0,59,0,4,0,225,0,0,0,31,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,41,2,0,0,7,0,0,0,59,0,4,0,35,0,0,0,77,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,79,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,81,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,83,2,0,0,7,0,0,0,59,0,4,0,43,0,0,0,94,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,95,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,97,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,99,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,101,2,0,0,7,0,0,0,59,0,4,0,43,0,0,0,113,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,114,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,116,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,118,2,0,0,7,0,0,0,59,0,4,0,12,0,0,0,120,2,0,0,7,0,0,0,65,0,5,0,84,1,0,0,85,1,0,0,83,1,0,0,64,0,0,0,61,0,4,0,11,0,0,0,86,1,0,0,85,1,0,0,62,0,3,0,80,1,0,0,86,1,0,0,61,0,4,0,11,0,0,0,87,1,0,0,80,1,0,0,65,0,5,0,177,0,0,0,88,1,0,0,176,0,0,0,156,0,0,0,61,0,4,0,6,0,0,0,89,1,0,0,88,1,0,0,124,0,4,0,11,0,0,0,90,1,0,0,89,1,0,0,174,0,5,0,19,0,0,0,91,1,0,0,87,1,0,0,90,1,0,0,247,0,3,0,93,1,0,0,0,0,0,0,250,0,4,0,91,1,0,0,92,1,0,0,93,1,0,0,248,0,2,0,92,1,0,0,253,0,1,0,248,0,2,0,93,1,0,0,61,0,4,0,11,0,0,0,98,1,0,0,80,1,0,0,62,0,3,0,97,1,0,0,98,1,0,0,57,0,6,0,34,0,0,0,100,1,0,0,55,0,0,0,97,1,0,0,99,1,0,0,61,0,4,0,11,0,0,0,101,1,0,0,99,1,0,0,62,0,3,0,96,1,0,0,101,1,0,0,62,0,3,0,95,1,0,0,100,1,0,0,61,0,4,0,11,0,0,0,107,1,0,0,96,1,0,0,132,0,5,0,11,0,0,0,108,1,0,0,107,1,0,0,189,0,0,0,128,0,5,0,11,0,0,0,109,1,0,0,108,1,0,0,64,0,0,0,65,0,6,0,110,1,0,0,111,1,0,0,106,1,0,0,156,0,0,0,109,1,0,0,61,0,4,0,9,0,0,0,112,1,0,0,111,1,0,0,62,0,3,0,102,1,0,0,112,1,0,0,61,0,4,0,11,0,0,0,114,1,0,0,96,1,0,0,132,0,5,0,11,0,0,0,115,1,0,0,114,1,0,0,189,0,0,0,128,0,5,0,11,0,0,0,116,1,0,0,115,1,0,0,68,0,0,0,65,0,7,0,177,0,0,0,117,1,0,0,106,1,0,0,156,0,0,0,116,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,118,1,0,0,117,1,0,0,124,0,4,0,11,0,0,0,119,1,0,0,118,1,0,0,62,0,3,0,113,1,0,0,119,1,0,0,61,0,4,0,11,0,0,0,121,1,0,0,96,1,0,0,132,0,5,0,11,0,0,0,122,1,0,0,121,1,0,0,189,0,0,0,128,0,5,0,11,0,0,0,123,1,0,0,122,1,0,0,71,0,0,0,65,0,7,0,177,0,0,0,124,1,0,0,106,1,0,0,156,0,0,0,123,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,125,1,0,0,124,1,0,0,124,0,4,0,11,0,0,0,126,1,0,0,125,1,0,0,62,0,3,0,120,1,0,0,126,1,0,0,62,0,3,0,127,1,0,0,128,1,0,0,61,0,4,0,34,0,0,0,130,1,0,0,95,1,0,0,61,0,4,0,7,0,0,0,131,1,0,0,127,1,0,0,79,0,9,0,9,0,0,0,132,1,0,0,131,1,0,0,131,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,111,0,4,0,34,0,0,0,133,1,0,0,132,1,0,0,136,0,5,0,34,0,0,0,134,1,0,0,130,1,0,0,133,1,0,0,12,0,6,0,34,0,0,0,135,1,0,0,1,0,0,0,8,0,0,0,134,1,0,0,110,0,4,0,9,0,0,0,136,1,0,0,135,1,0,0,62,0,3,0,129,1,0,0,136,1,0,0,61,0,4,0,9,0,0,0,138,1,0,0,129,1,0,0,79,0,7,0,7,0,0,0,139,1,0,0,138,1,0,0,138,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,137,1,0,0,139,1,0,0,61,0,4,0,9,0,0,0,141,1,0,0,129,1,0,0,79,0,7,0,7,0,0,0,142,1,0,0,141,1,0,0,141,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,140,1,0,0,142,1,0,0,61,0,4,0,34,0,0,0,146,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,147,1,0,0,146,1,0,0,146,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,34,0,0,0,148,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,149,1,0,0,148,1,0,0,148,1,0,0,0,0,0,0,1,0,0,0,131,0,5,0,143,1,0,0,150,1,0,0,147,1,0,0,149,1,0,0,62,0,3,0,145,1,0,0,150,1,0,0,65,0,5,0,152,1,0,0,153,1,0,0,145,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,154,1,0,0,153,1,0,0,184,0,5,0,19,0,0,0,156,1,0,0,154,1,0,0,155,1,0,0,169,0,6,0,33,0,0,0,158,1,0,0,156,1,0,0,157,1,0,0,155,1,0,0,65,0,5,0,152,1,0,0,159,1,0,0,145,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,160,1,0,0,159,1,0,0,184,0,5,0,19,0,0,0,161,1,0,0,160,1,0,0,155,1,0,0,169,0,6,0,33,0,0,0,162,1,0,0,161,1,0,0,157,1,0,0,155,1,0,0,80,0,5,0,143,1,0,0,163,1,0,0,158,1,0,0,162,1,0,0,62,0,3,0,151,1,0,0,163,1,0,0,65,0,5,0,152,1,0,0,165,1,0,0,145,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,166,1,0,0,165,1,0,0,184,0,5,0,19,0,0,0,167,1,0,0,166,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,169,1,0,0,167,1,0,0,168,1,0,0,157,0,0,0,65,0,5,0,152,1,0,0,170,1,0,0,145,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,171,1,0,0,170,1,0,0,184,0,5,0,19,0,0,0,172,1,0,0,171,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,173,1,0,0,172,1,0,0,168,1,0,0,157,0,0,0,80,0,5,0,7,0,0,0,174,1,0,0,169,1,0,0,173,1,0,0,62,0,3,0,164,1,0,0,174,1,0,0,61,0,4,0,7,0,0,0,176,1,0,0,137,1,0,0,65,0,5,0,152,1,0,0,177,1,0,0,145,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,178,1,0,0,177,1,0,0,190,0,5,0,19,0,0,0,179,1,0,0,178,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,180,1,0,0,179,1,0,0,157,0,0,0,156,0,0,0,65,0,5,0,152,1,0,0,181,1,0,0,145,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,182,1,0,0,181,1,0,0,190,0,5,0,19,0,0,0,183,1,0,0,182,1,0,0,155,1,0,0,169,0,6,0,6,0,0,0,184,1,0,0,183,1,0,0,157,0,0,0,156,0,0,0,80,0,5,0,7,0,0,0,185,1,0,0,180,1,0,0,184,1,0,0,128,0,5,0,7,0,0,0,186,1,0,0,176,1,0,0,185,1,0,0,61,0,4,0,7,0,0,0,187,1,0,0,127,1,0,0,132,0,5,0,7,0,0,0,188,1,0,0,186,1,0,0,187,1,0,0,111,0,4,0,143,1,0,0,189,1,0,0,188,1,0,0,62,0,3,0,175,1,0,0,189,1,0,0,61,0,4,0,143,1,0,0,191,1,0,0,175,1,0,0,61,0,4,0,34,0,0,0,192,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,193,1,0,0,192,1,0,0,192,1,0,0,0,0,0,0,1,0,0,0,131,0,5,0,143,1,0,0,194,1,0,0,191,1,0,0,193,1,0,0,61,0,4,0,143,1,0,0,195,1,0,0,145,1,0,0,136,0,5,0,143,1,0,0,196,1,0,0,194,1,0,0,195,1,0,0,62,0,3,0,190,1,0,0,196,1,0,0,61,0,4,0,7,0,0,0,198,1,0,0,127,1,0,0,111,0,4,0,143,1,0,0,199,1,0,0,198,1,0,0,61,0,4,0,143,1,0,0,200,1,0,0,145,1,0,0,136,0,5,0,143,1,0,0,201,1,0,0,199,1,0,0,200,1,0,0,12,0,6,0,143,1,0,0,202,1,0,0,1,0,0,0,4,0,0,0,201,1,0,0,62,0,3,0,197,1,0,0,202,1,0,0,61,0,4,0,34,0,0,0,204,1,0,0,95,1,0,0,79,0,7,0,143,1,0,0,205,1,0,0,204,1,0,0,204,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,203,1,0,0,205,1,0,0,61,0,4,0,7,0,0,0,207,1,0,0,137,1,0,0,62,0,3,0,206,1,0,0,207,1,0,0,62,0,3,0,208,1,0,0,156,0,0,0,62,0,3,0,209,1,0,0,64,0,0,0,249,0,2,0,210,1,0,0,248,0,2,0,210,1,0,0,246,0,4,0,212,1,0,0,213,1,0,0,0,0,0,0,249,0,2,0,214,1,0,0,248,0,2,0,214,1,0,0,61,0,4,0,11,0,0,0,215,1,0,0,209,1,0,0,176,0,5,0,19,0,0,0,217,1,0,0,215,1,0,0,216,1,0,0,250,0,4,0,217,1,0,0,211,1,0,0,212,1,0,0,248,0,2,0,211,1,0,0,65,0,5,0,152,1,0,0,218,1,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,219,1,0,0,218,1,0,0,65,0,5,0,152,1,0,0,220,1,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,221,1,0,0,220,1,0,0,184,0,5,0,19,0,0,0,222,1,0,0,219,1,0,0,221,1,0,0,247,0,3,0,224,1,0,0,0,0,0,0,250,0,4,0,222,1,0,0,223,1,0,0,226,1,0,0,248,0,2,0,223,1,0,0,62,0,3,0,225,1,0,0,157,0,0,0,249,0,2,0,224,1,0,0,248,0,2,0,226,1,0,0,65,0,5,0,152,1,0,0,227,1,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,228,1,0,0,227,1,0,0,65,0,5,0,152,1,0,0,229,1,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,230,1,0,0,229,1,0,0,186,0,5,0,19,0,0,0,231,1,0,0,228,1,0,0,230,1,0,0,247,0,3,0,233,1,0,0,0,0,0,0,250,0,4,0,231,1,0,0,232,1,0,0,235,1,0,0,248,0,2,0,232,1,0,0,62,0,3,0,225,1,0,0,234,1,0,0,249,0,2,0,233,1,0,0,248,0,2,0,235,1,0,0,65,0,5,0,43,0,0,0,236,1,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,237,1,0,0,236,1,0,0,173,0,5,0,19,0,0,0,238,1,0,0,237,1,0,0,156,0,0,0,247,0,3,0,240,1,0,0,0,0,0,0,250,0,4,0,238,1,0,0,239,1,0,0,241,1,0,0,248,0,2,0,239,1,0,0,62,0,3,0,225,1,0,0,157,0,0,0,249,0,2,0,240,1,0,0,248,0,2,0,241,1,0,0,62,0,3,0,225,1,0,0,234,1,0,0,249,0,2,0,240,1,0,0,248,0,2,0,240,1,0,0,249,0,2,0,233,1,0,0,248,0,2,0,233,1,0,0,249,0,2,0,224,1,0,0,248,0,2,0,224,1,0,0,61,0,4,0,6,0,0,0,243,1,0,0,225,1,0,0,170,0,5,0,19,0,0,0,244,1,0,0,243,1,0,0,157,0,0,0,247,0,3,0,247,1,0,0,0,0,0,0,250,0,4,0,244,1,0,0,246,1,0,0,250,1,0,0,248,0,2,0,246,1,0,0,65,0,5,0,152,1,0,0,248,1,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,249,1,0,0,248,1,0,0,62,0,3,0,245,1,0,0,249,1,0,0,249,0,2,0,247,1,0,0,248,0,2,0,250,1,0,0,65,0,5,0,152,1,0,0,251,1,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,252,1,0,0,251,1,0,0,62,0,3,0,245,1,0,0,252,1,0,0,249,0,2,0,247,1,0,0,248,0,2,0,247,1,0,0,61,0,4,0,33,0,0,0,253,1,0,0,245,1,0,0,12,0,7,0,33,0,0,0,255,1,0,0,1,0,0,0,37,0,0,0,253,1,0,0,254,1,0,0,62,0,3,0,242,1,0,0,255,1,0,0,61,0,4,0,7,0,0,0,0,2,0,0,206,1,0,0,61,0,4,0,7,0,0,0,1,2,0,0,140,1,0,0,170,0,5,0,85,0,0,0,2,2,0,0,0,2,0,0,1,2,0,0,155,0,4,0,19,0,0,0,3,2,0,0,2,2,0,0,247,0,3,0,5,2,0,0,0,0,0,0,250,0,4,0,3,2,0,0,4,2,0,0,5,2,0,0,248,0,2,0,4,2,0,0,62,0,3,0,225,1,0,0,156,0,0,0,249,0,2,0,5,2,0,0,248,0,2,0,5,2,0,0,61,0,4,0,34,0,0,0,7,2,0,0,95,1,0,0,79,0,7,0,143,1,0,0,8,2,0,0,7,2,0,0,7,2,0,0,0,0,0,0,1,0,0,0,61,0,4,0,34,0,0,0,9,2,0,0,95,1,0,0,79,0,7,0,143,1,0,0,10,2,0,0,9,2,0,0,9,2,0,0,2,0,0,0,3,0,0,0,61,0,4,0,33,0,0,0,11,2,0,0,242,1,0,0,80,0,5,0,143,1,0,0,12,2,0,0,11,2,0,0,11,2,0,0,12,0,8,0,143,1,0,0,13,2,0,0,1,0,0,0,46,0,0,0,8,2,0,0,10,2,0,0,12,2,0,0,62,0,3,0,6,2,0,0,13,2,0,0,61,0,4,0,143,1,0,0,15,2,0,0,203,1,0,0,61,0,4,0,143,1,0,0,16,2,0,0,6,2,0,0,81,0,5,0,33,0,0,0,17,2,0,0,15,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,18,2,0,0,15,2,0,0,1,0,0,0,81,0,5,0,33,0,0,0,19,2,0,0,16,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,20,2,0,0,16,2,0,0,1,0,0,0,80,0,7,0,34,0,0,0,21,2,0,0,17,2,0,0,18,2,0,0,19,2,0,0,20,2,0,0,62,0,3,0,14,2,0,0,21,2,0,0,61,0,4,0,34,0,0,0,23,2,0,0,14,2,0,0,62,0,3,0,22,2,0,0,23,2,0,0,61,0,4,0,7,0,0,0,25,2,0,0,206,1,0,0,62,0,3,0,24,2,0,0,25,2,0,0,61,0,4,0,9,0,0,0,27,2,0,0,102,1,0,0,62,0,3,0,26,2,0,0,27,2,0,0,61,0,4,0,11,0,0,0,29,2,0,0,113,1,0,0,62,0,3,0,28,2,0,0,29,2,0,0,57,0,8,0,2,0,0,0,30,2,0,0,41,0,0,0,22,2,0,0,24,2,0,0,26,2,0,0,28,2,0,0,62,0,3,0,31,2,0,0,32,2,0,0,65,0,5,0,43,0,0,0,33,2,0,0,164,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,34,2,0,0,33,2,0,0,177,0,5,0,19,0,0,0,35,2,0,0,34,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,36,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,37,2,0,0,36,2,0,0,234,1,0,0,167,0,5,0,19,0,0,0,38,2,0,0,35,2,0,0,37,2,0,0,247,0,3,0,40,2,0,0,0,0,0,0,250,0,4,0,38,2,0,0,39,2,0,0,54,2,0,0,248,0,2,0,39,2,0,0,61,0,4,0,34,0,0,0,42,2,0,0,14,2,0,0,79,0,7,0,143,1,0,0,43,2,0,0,42,2,0,0,42,2,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,44,2,0,0,206,1,0,0,61,0,4,0,7,0,0,0,45,2,0,0,127,1,0,0,132,0,5,0,7,0,0,0,46,2,0,0,44,2,0,0,45,2,0,0,111,0,4,0,143,1,0,0,47,2,0,0,46,2,0,0,81,0,5,0,33,0,0,0,48,2,0,0,43,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,49,2,0,0,43,2,0,0,1,0,0,0,81,0,5,0,33,0,0,0,50,2,0,0,47,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,51,2,0,0,47,2,0,0,1,0,0,0,80,0,7,0,34,0,0,0,52,2,0,0,48,2,0,0,49,2,0,0,50,2,0,0,51,2,0,0,62,0,3,0,41,2,0,0,52,2,0,0,62,0,3,0,31,2,0,0,53,2,0,0,249,0,2,0,40,2,0,0,248,0,2,0,54,2,0,0,65,0,5,0,43,0,0,0,55,2,0,0,164,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,56,2,0,0,55,2,0,0,173,0,5,0,19,0,0,0,57,2,0,0,56,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,58,2,0,0,208,1,0,0,170,0,5,0,19,0,0,0,59,2,0,0,58,2,0,0,234,1,0,0,167,0,5,0,19,0,0,0,60,2,0,0,57,2,0,0,59,2,0,0,247,0,3,0,62,2,0,0,0,0,0,0,250,0,4,0,60,2,0,0,61,2,0,0,62,2,0,0,248,0,2,0,61,2,0,0,61,0,4,0,7,0,0,0,63,2,0,0,206,1,0,0,61,0,4,0,7,0,0,0,64,2,0,0,127,1,0,0,132,0,5,0,7,0,0,0,65,2,0,0,63,2,0,0,64,2,0,0,111,0,4,0,143,1,0,0,66,2,0,0,65,2,0,0,61,0,4,0,34,0,0,0,67,2,0,0,14,2,0,0,79,0,7,0,143,1,0,0,68,2,0,0,67,2,0,0,67,2,0,0,0,0,0,0,1,0,0,0,81,0,5,0,33,0,0,0,69,2,0,0,66,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,70,2,0,0,66,2,0,0,1,0,0,0,81,0,5,0,33,0,0,0,71,2,0,0,68,2,0,0,0,0,0,0,81,0,5,0,33,0,0,0,72,2,0,0,68,2,0,0,1,0,0,0,80,0,7,0,34,0,0,0,73,2,0,0,69,2,0,0,70,2,0,0,71,2,0,0,72,2,0,0,62,0,3,0,41,2,0,0,73,2,0,0,62,0,3,0,31,2,0,0,53,2,0,0,249,0,2,0,62,2,0,0,248,0,2,0,62,2,0,0,249,0,2,0,40,2,0,0,248,0,2,0,40,2,0,0,61,0,4,0,19,0,0,0,74,2,0,0,31,2,0,0,247,0,3,0,76,2,0,0,0,0,0,0,250,0,4,0,74,2,0,0,75,2,0,0,76,2,0,0,248,0,2,0,75,2,0,0,61,0,4,0,34,0,0,0,78,2,0,0,41,2,0,0,62,0,3,0,77,2,0,0,78,2,0,0,61,0,4,0,7,0,0,0,80,2,0,0,206,1,0,0,62,0,3,0,79,2,0,0,80,2,0,0,61,0,4,0,9,0,0,0,82,2,0,0,102,1,0,0,62,0,3,0,81,2,0,0,82,2,0,0,61,0,4,0,11,0,0,0,84,2,0,0,113,1,0,0,62,0,3,0,83,2,0,0,84,2,0,0,57,0,8,0,2,0,0,0,85,2,0,0,41,0,0,0,77,2,0,0,79,2,0,0,81,2,0,0,83,2,0,0,249,0,2,0,76,2,0,0,248,0,2,0,76,2,0,0,65,0,5,0,43,0,0,0,86,2,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,87,2,0,0,86,2,0,0,177,0,5,0,19,0,0,0,88,2,0,0,87,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,89,2,0,0,208,1,0,0,170,0,5,0,19,0,0,0,90,2,0,0,89,2,0,0,157,0,0,0,167,0,5,0,19,0,0,0,91,2,0,0,88,2,0,0,90,2,0,0,247,0,3,0,93,2,0,0,0,0,0,0,250,0,4,0,91,2,0,0,92,2,0,0,104,2,0,0,248,0,2,0,92,2,0,0,62,0,3,0,94,2,0,0,157,0,0,0,61,0,4,0,7,0,0,0,96,2,0,0,206,1,0,0,62,0,3,0,95,2,0,0,96,2,0,0,61,0,4,0,9,0,0,0,98,2,0,0,102,1,0,0,62,0,3,0,97,2,0,0,98,2,0,0,61,0,4,0,11,0,0,0,100,2,0,0,113,1,0,0,62,0,3,0,99,2,0,0,100,2,0,0,61,0,4,0,11,0,0,0,102,2,0,0,120,1,0,0,62,0,3,0,101,2,0,0,102,2,0,0,57,0,9,0,2,0,0,0,103,2,0,0,50,0,0,0,94,2,0,0,95,2,0,0,97,2,0,0,99,2,0,0,101,2,0,0,249,0,2,0,93,2,0,0,248,0,2,0,104,2,0,0,65,0,5,0,43,0,0,0,105,2,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,106,2,0,0,105,2,0,0,173,0,5,0,19,0,0,0,107,2,0,0,106,2,0,0,156,0,0,0,61,0,4,0,6,0,0,0,108,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,109,2,0,0,108,2,0,0,157,0,0,0,167,0,5,0,19,0,0,0,110,2,0,0,107,2,0,0,109,2,0,0,247,0,3,0,112,2,0,0,0,0,0,0,250,0,4,0,110,2,0,0,111,2,0,0,112,2,0,0,248,0,2,0,111,2,0,0,62,0,3,0,113,2,0,0,168,1,0,0,61,0,4,0,7,0,0,0,115,2,0,0,206,1,0,0,62,0,3,0,114,2,0,0,115,2,0,0,61,0,4,0,9,0,0,0,117,2,0,0,102,1,0,0,62,0,3,0,116,2,0,0,117,2,0,0,61,0,4,0,11,0,0,0,119,2,0,0,113,1,0,0,62,0,3,0,118,2,0,0,119,2,0,0,61,0,4,0,11,0,0,0,121,2,0,0,120,1,0,0,62,0,3,0,120,2,0,0,121,2,0,0,57,0,9,0,2,0,0,0,122,2,0,0,50,0,0,0,113,2,0,0,114,2,0,0,116,2,0,0,118,2,0,0,120,2,0,0,249,0,2,0,112,2,0,0,248,0,2,0,112,2,0,0,249,0,2,0,93,2,0,0,248,0,2,0,93,2,0,0,61,0,4,0,6,0,0,0,123,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,124,2,0,0,123,2,0,0,157,0,0,0,247,0,3,0,126,2,0,0,0,0,0,0,250,0,4,0,124,2,0,0,125,2,0,0,139,2,0,0,248,0,2,0,125,2,0,0,65,0,5,0,152,1,0,0,127,2,0,0,197,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,128,2,0,0,127,2,0,0,65,0,5,0,152,1,0,0,129,2,0,0,190,1,0,0,64,0,0,0,61,0,4,0,33,0,0,0,130,2,0,0,129,2,0,0,129,0,5,0,33,0,0,0,131,2,0,0,130,2,0,0,128,2,0,0,65,0,5,0,152,1,0,0,132,2,0,0,190,1,0,0,64,0,0,0,62,0,3,0,132,2,0,0,131,2,0,0,65,0,5,0,43,0,0,0,133,2,0,0,164,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,134,2,0,0,133,2,0,0,65,0,5,0,43,0,0,0,135,2,0,0,206,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,136,2,0,0,135,2,0,0,128,0,5,0,6,0,0,0,137,2,0,0,136,2,0,0,134,2,0,0,65,0,5,0,43,0,0,0,138,2,0,0,206,1,0,0,64,0,0,0,62,0,3,0,138,2,0,0,137,2,0,0,249,0,2,0,126,2,0,0,248,0,2,0,139,2,0,0,61,0,4,0,6,0,0,0,140,2,0,0,225,1,0,0,170,0,5,0,19,0,0,0,141,2,0,0,140,2,0,0,234,1,0,0,247,0,3,0,143,2,0,0,0,0,0,0,250,0,4,0,141,2,0,0,142,2,0,0,156,2,0,0,248,0,2,0,142,2,0,0,65,0,5,0,152,1,0,0,144,2,0,0,197,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,145,2,0,0,144,2,0,0,65,0,5,0,152,1,0,0,146,2,0,0,190,1,0,0,68,0,0,0,61,0,4,0,33,0,0,0,147,2,0,0,146,2,0,0,129,0,5,0,33,0,0,0,148,2,0,0,147,2,0,0,145,2,0,0,65,0,5,0,152,1,0,0,149,2,0,0,190,1,0,0,68,0,0,0,62,0,3,0,149,2,0,0,148,2,0,0,65,0,5,0,43,0,0,0,150,2,0,0,164,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,151,2,0,0,150,2,0,0,65,0,5,0,43,0,0,0,152,2,0,0,206,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,153,2,0,0,152,2,0,0,128,0,5,0,6,0,0,0,154,2,0,0,153,2,0,0,151,2,0,0,65,0,5,0,43,0,0,0,155,2,0,0,206,1,0,0,68,0,0,0,62,0,3,0,155,2,0,0,154,2,0,0,249,0,2,0,143,2,0,0,248,0,2,0,156,2,0,0,249,0,2,0,212,1,0,0,248,0,2,0,143,2,0,0,249,0,2,0,126,2,0,0,248,0,2,0,126,2,0,0,61,0,4,0,143,1,0,0,158,2,0,0,6,2,0,0,62,0,3,0,203,1,0,0,158,2,0,0,61,0,4,0,6,0,0,0,159,2,0,0,225,1,0,0,62,0,3,0,208,1,0,0,159,2,0,0,61,0,4,0,11,0,0,0,160,2,0,0,209,1,0,0,128,0,5,0,11,0,0,0,161,2,0,0,160,2,0,0,157,0,0,0,62,0,3,0,209,1,0,0,161,2,0,0,249,0,2,0,213,1,0,0,248,0,2,0,213,1,0,0,249,0,2,0,210,1,0,0,248,0,2,0,212,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,11,0,0,0,17,0,0,0,0,0,0,0,13,0,0,0,55,0,3,0,8,0,0,0,14,0,0,0,55,0,3,0,10,0,0,0,15,0,0,0,55,0,3,0,12,0,0,0,16,0,0,0,248,0,2,0,18,0,0,0,59,0,4,0,8,0,0,0,57,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,58,0,0,0,14,0,0,0,61,0,4,0,9,0,0,0,59,0,0,0,15,0,0,0,79,0,7,0,7,0,0,0,60,0,0,0,59,0,0,0,59,0,0,0,0,0,0,0,1,0,0,0,130,0,5,0,7,0,0,0,61,0,0,0,58,0,0,0,60,0,0,0,62,0,3,0,57,0,0,0,61,0,0,0,61,0,4,0,11,0,0,0,62,0,0,0,16,0,0,0,124,0,4,0,6,0,0,0,63,0,0,0,62,0,0,0,65,0,5,0,43,0,0,0,65,0,0,0,57,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,66,0,0,0,65,0,0,0,128,0,5,0,6,0,0,0,67,0,0,0,63,0,0,0,66,0,0,0,65,0,5,0,43,0,0,0,69,0,0,0,57,0,0,0,68,0,0,0,61,0,4,0,6,0,0,0,70,0,0,0,69,0,0,0,65,0,5,0,43,0,0,0,72,0,0,0,15,0,0,0,71,0,0,0,61,0,4,0,6,0,0,0,73,0,0,0,72,0,0,0,65,0,5,0,43,0,0,0,74,0,0,0,15,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,75,0,0,0,74,0,0,0,130,0,5,0,6,0,0,0,76,0,0,0,73,0,0,0,75,0,0,0,132,0,5,0,6,0,0,0,77,0,0,0,70,0,0,0,76,0,0,0,128,0,5,0,6,0,0,0,78,0,0,0,67,0,0,0,77,0,0,0,124,0,4,0,11,0,0,0,79,0,0,0,78,0,0,0,254,0,2,0,79,0,0,0,56,0,1,0,54,0,5,0,20,0,0,0,24,0,0,0,0,0,0,0,21,0,0,0,55,0,3,0,8,0,0,0,22,0,0,0,55,0,3,0,10,0,0,0,23,0,0,0,248,0,2,0,25,0,0,0,61,0,4,0,7,0,0,0,82,0,0,0,22,0,0,0,61,0,4,0,9,0,0,0,83,0,0,0,23,0,0,0,79,0,7,0,7,0,0,0,84,0,0,0,83,0,0,0,83,0,0,0,0,0,0,0,1,0,0,0,177,0,5,0,85,0,0,0,86,0,0,0,82,0,0,0,84,0,0,0,61,0,4,0,7,0,0,0,87,0,0,0,22,0,0,0,61,0,4,0,9,0,0,0,88,0,0,0,23,0,0,0,79,0,7,0,7,0,0,0,89,0,0,0,88,0,0,0,88,0,0,0,2,0,0,0,3,0,0,0,175,0,5,0,85,0,0,0,90,0,0,0,87,0,0,0,89,0,0,0,81,0,5,0,19,0,0,0,91,0,0,0,86,0,0,0,0,0,0,0,81,0,5,0,19,0,0,0,92,0,0,0,86,0,0,0,1,0,0,0,81,0,5,0,19,0,0,0,93,0,0,0,90,0,0,0,0,0,0,0,81,0,5,0,19,0,0,0,94,0,0,0,90,0,0,0,1,0,0,0,80,0,7,0,20,0,0,0,95,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,94,0,0,0,254,0,2,0,95,0,0,0,56,0,1,0,54,0,5,0,19,0,0,0,31,0,0,0,0,0,0,0,26,0,0,0,55,0,3,0,8,0,0,0,27,0,0,0,55,0,3,0,10,0,0,0,28,0,0,0,55,0,3,0,12,0,0,0,29,0,0,0,55,0,3,0,12,0,0,0,30,0,0,0,248,0,2,0,32,0,0,0,59,0,4,0,8,0,0,0,98,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,100,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,102,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,105,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,107,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,99,0,0,0,27,0,0,0,62,0,3,0,98,0,0,0,99,0,0,0,61,0,4,0,9,0,0,0,101,0,0,0,28,0,0,0,62,0,3,0,100,0,0,0,101,0,0,0,61,0,4,0,11,0,0,0,103,0,0,0,29,0,0,0,62,0,3,0,102,0,0,0,103,0,0,0,57,0,7,0,11,0,0,0,104,0,0,0,17,0,0,0,98,0,0,0,100,0,0,0,102,0,0,0,62,0,3,0,30,0,0,0,104,0,0,0,61,0,4,0,7,0,0,0,106,0,0,0,27,0,0,0,62,0,3,0,105,0,0,0,106,0,0,0,61,0,4,0,9,0,0,0,108,0,0,0,28,0,0,0,62,0,3,0,107,0,0,0,108,0,0,0,57,0,6,0,20,0,0,0,109,0,0,0,24,0,0,0,105,0,0,0,107,0,0,0,154,0,4,0,19,0,0,0,110,0,0,0,109,0,0,0,168,0,4,0,19,0,0,0,111,0,0,0,110,0,0,0,254,0,2,0,111,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,41,0,0,0,0,0,0,0,36,0,0,0,55,0,3,0,35,0,0,0,37,0,0,0,55,0,3,0,8,0,0,0,38,0,0,0,55,0,3,0,10,0,0,0,39,0,0,0,55,0,3,0,12,0,0,0,40,0,0,0,248,0,2,0,42,0,0,0,59,0,4,0,12,0,0,0,114,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,115,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,117,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,119,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,121,0,0,0,7,0,0,0,59,0,4,0,129,0,0,0,130,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,151,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,161,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,116,0,0,0,38,0,0,0,62,0,3,0,115,0,0,0,116,0,0,0,61,0,4,0,9,0,0,0,118,0,0,0,39,0,0,0,62,0,3,0,117,0,0,0,118,0,0,0,61,0,4,0,11,0,0,0,120,0,0,0,40,0,0,0,62,0,3,0,119,0,0,0,120,0,0,0,57,0,8,0,19,0,0,0,122,0,0,0,31,0,0,0,115,0,0,0,117,0,0,0,119,0,0,0,121,0,0,0,61,0,4,0,11,0,0,0,123,0,0,0,121,0,0,0,62,0,3,0,114,0,0,0,123,0,0,0,168,0,4,0,19,0,0,0,124,0,0,0,122,0,0,0,247,0,3,0,126,0,0,0,0,0,0,0,250,0,4,0,124,0,0,0,125,0,0,0,126,0,0,0,248,0,2,0,125,0,0,0,253,0,1,0,248,0,2,0,126,0,0,0,61,0,4,0,34,0,0,0,131,0,0,0,37,0,0,0,61,0,4,0,7,0,0,0,132,0,0,0,38,0,0,0,79,0,9,0,9,0,0,0,133,0,0,0,132,0,0,0,132,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,132,0,5,0,9,0,0,0,136,0,0,0,133,0,0,0,135,0,0,0,111,0,4,0,34,0,0,0,137,0,0,0,136,0,0,0,131,0,5,0,34,0,0,0,138,0,0,0,131,0,0,0,137,0,0,0,133,0,5,0,34,0,0,0,141,0,0,0,138,0,0,0,140,0,0,0,109,0,4,0,128,0,0,0,142,0,0,0,141,0,0,0,62,0,3,0,130,0,0,0,142,0,0,0,65,0,5,0,12,0,0,0,143,0,0,0,130,0,0,0,64,0,0,0,61,0,4,0,11,0,0,0,144,0,0,0,143,0,0,0,65,0,5,0,12,0,0,0,145,0,0,0,130,0,0,0,71,0,0,0,61,0,4,0,11,0,0,0,146,0,0,0,145,0,0,0,170,0,5,0,19,0,0,0,147,0,0,0,144,0,0,0,146,0,0,0,247,0,3,0,149,0,0,0,0,0,0,0,250,0,4,0,147,0,0,0,148,0,0,0,149,0,0,0,248,0,2,0,148,0,0,0,253,0,1,0,248,0,2,0,149,0,0,0,65,0,6,0,158,0,0,0,159,0,0,0,155,0,0,0,156,0,0,0,157,0,0,0,234,0,7,0,11,0,0,0,160,0,0,0,159,0,0,0,68,0,0,0,64,0,0,0,68,0,0,0,62,0,3,0,151,0,0,0,160,0,0,0,61,0,4,0,11,0,0,0,166,0,0,0,114,0,0,0,132,0,5,0,11,0,0,0,168,0,0,0,166,0,0,0,167,0,0,0,128,0,5,0,11,0,0,0,169,0,0,0,168,0,0,0,68,0,0,0,65,0,6,0,158,0,0,0,170,0,0,0,165,0,0,0,156,0,0,0,169,0,0,0,61,0,4,0,11,0,0,0,171,0,0,0,151,0,0,0,229,0,7,0,11,0,0,0,172,0,0,0,170,0,0,0,68,0,0,0,64,0,0,0,171,0,0,0,62,0,3,0,161,0,0,0,172,0,0,0,61,0,4,0,11,0,0,0,173,0,0,0,151,0,0,0,65,0,5,0,177,0,0,0,178,0,0,0,176,0,0,0,157,0,0,0,61,0,4,0,6,0,0,0,179,0,0,0,178,0,0,0,124,0,4,0,11,0,0,0,180,0,0,0,179,0,0,0,176,0,5,0,19,0,0,0,181,0,0,0,173,0,0,0,180,0,0,0,247,0,3,0,183,0,0,0,0,0,0,0,250,0,4,0,181,0,0,0,182,0,0,0,183,0,0,0,248,0,2,0,182,0,0,0,61,0,4,0,11,0,0,0,188,0,0,0,151,0,0,0,132,0,5,0,11,0,0,0,190,0,0,0,188,0,0,0,189,0,0,0,128,0,5,0,11,0,0,0,191,0,0,0,190,0,0,0,64,0,0,0,65,0,5,0,12,0,0,0,192,0,0,0,130,0,0,0,64,0,0,0,61,0,4,0,11,0,0,0,193,0,0,0,192,0,0,0,65,0,5,0,12,0,0,0,194,0,0,0,130,0,0,0,68,0,0,0,61,0,4,0,11,0,0,0,195,0,0,0,194,0,0,0,196,0,5,0,11,0,0,0,196,0,0,0,195,0,0,0,134,0,0,0,197,0,5,0,11,0,0,0,197,0,0,0,193,0,0,0,196,0,0,0,65,0,6,0,158,0,0,0,198,0,0,0,187,0,0,0,156,0,0,0,191,0,0,0,62,0,3,0,198,0,0,0,197,0,0,0,61,0,4,0,11,0,0,0,199,0,0,0,151,0,0,0,132,0,5,0,11,0,0,0,200,0,0,0,199,0,0,0,189,0,0,0,128,0,5,0,11,0,0,0,201,0,0,0,200,0,0,0,68,0,0,0,65,0,5,0,12,0,0,0,202,0,0,0,130,0,0,0,71,0,0,0,61,0,4,0,11,0,0,0,203,0,0,0,202,0,0,0,65,0,5,0,12,0,0,0,204,0,0,0,130,0,0,0,189,0,0,0,61,0,4,0,11,0,0,0,205,0,0,0,204,0,0,0,196,0,5,0,11,0,0,0,206,0,0,0,205,0,0,0,134,0,0,0,197,0,5,0,11,0,0,0,207,0,0,0,203,0,0,0,206,0,0,0,65,0,6,0,158,0,0,0,208,0,0,0,187,0,0,0,156,0,0,0,201,0,0,0,62,0,3,0,208,0,0,0,207,0,0,0,61,0,4,0,11,0,0,0,209,0,0,0,151,0,0,0,132,0,5,0,11,0,0,0,210,0,0,0,209,0,0,0,189,0,0,0,128,0,5,0,11,0,0,0,211,0,0,0,210,0,0,0,71,0,0,0,61,0,4,0,11,0,0,0,212,0,0,0,161,0,0,0,65,0,6,0,158,0,0,0,213,0,0,0,187,0,0,0,156,0,0,0,211,0,0,0,62,0,3,0,213,0,0,0,212,0,0,0,249,0,2,0,183,0,0,0,248,0,2,0,183,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,2,0,0,0,50,0,0,0,0,0,0,0,44,0,0,0,55,0,3,0,43,0,0,0,45,0,0,0,55,0,3,0,8,0,0,0,46,0,0,0,55,0,3,0,10,0,0,0,47,0,0,0,55,0,3,0,12,0,0,0,48,0,0,0,55,0,3,0,12,0,0,0,49,0,0,0,248,0,2,0,51,0,0,0,59,0,4,0,214,0,0,0,215,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,216,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,218,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,240,0,0,0,7,0,0,0,59,0,4,0,12,0,0,0,4,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,5,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,7,1,0,0,7,0,0,0,59,0,4,0,12,0,0,0,9,1,0,0,7,0,0,0,61,0,4,0,7,0,0,0,217,0,0,0,46,0,0,0,62,0,3,0,216,0,0,0,217,0,0,0,61,0,4,0,9,0,0,0,219,0,0,0,47,0,0,0,62,0,3,0,218,0,0,0,219,0,0,0,57,0,6,0,20,0,0,0,220,0,0,0,24,0,0,0,216,0,0,0,218,0,0,0,62,0,3,0,215,0,0,0,220,0,0,0,61,0,4,0,20,0,0,0,221,0,0,0,215,0,0,0,154,0,4,0,19,0,0,0,222,0,0,0,221,0,0,0,247,0,3,0,224,0,0,0,0,0,0,0,250,0,4,0,222,0,0,0,223,0,0,0,3,1,0,0,248,0,2,0,223,0,0,0,65,0,5,0,225,0,0,0,226,0,0,0,215,0,0,0,64,0,0,0,61,0,4,0,19,0,0,0,227,0,0,0,226,0,0,0,168,0,4,0,19,0,0,0,228,0,0,0,227,0,0,0,65,0,5,0,225,0,0,0,229,0,0,0,215,0,0,0,68,0,0,0,61,0,4,0,19,0,0,0,230,0,0,0,229,0,0,0,167,0,5,0,19,0,0,0,231,0,0,0,228,0,0,0,230,0,0,0,247,0,3,0,233,0,0,0,0,0,0,0,250,0,4,0,231,0,0,0,232,0,0,0,233,0,0,0,248,0,2,0,232,0,0,0,65,0,5,0,225,0,0,0,234,0,0,0,215,0,0,0,71,0,0,0,61,0,4,0,19,0,0,0,235,0,0,0,234,0,0,0,168,0,4,0,19,0,0,0,236,0,0,0,235,0,0,0,249,0,2,0,233,0,0,0,248,0,2,0,233,0,0,0,245,0,7,0,19,0,0,0,237,0,0,0,231,0,0,0,223,0,0,0,236,0,0,0,232,0,0,0,247,0,3,0,239,0,0,0,0,0,0,0,250,0,4,0,237,0,0,0,238,0,0,0,239,0,0,0,248,0,2,0,238,0,0,0,61,0,4,0,11,0,0,0,241,0,0,0,49,0,0,0,65,0,5,0,43,0,0,0,242,0,0,0,46,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,243,0,0,0,242,0,0,0,65,0,5,0,43,0,0,0,244,0,0,0,47,0,0,0,64,0,0,0,61,0,4,0,6,0,0,0,245,0,0,0,244,0,0,0,130,0,5,0,6,0,0,0,246,0,0,0,243,0,0,0,245,0,0,0,124,0,4,0,11,0,0,0,247,0,0,0,246,0,0,0,128,0,5,0,11,0,0,0,248,0,0,0,241,0,0,0,247,0,0,0,62,0,3,0,240,0,0,0,248,0,0,0,61,0,4,0,11,0,0,0,253,0,0,0,240,0,0,0,132,0,5,0,11,0,0,0,254,0,0,0,253,0,0,0,189,0,0,0,65,0,6,0,158,0,0,0,255,0,0,0,252,0,0,0,156,0,0,0,254,0,0,0,61,0,4,0,6,0,0,0,0,1,0,0,45,0,0,0,124,0,4,0,11,0,0,0,1,1,0,0,0,1,0,0,234,0,7,0,11,0,0,0,2,1,0,0,255,0,0,0,68,0,0,0,64,0,0,0,1,1,0,0,249,0,2,0,239,0,0,0,248,0,2,0,239,0,0,0,249,0,2,0,224,0,0,0,248,0,2,0,3,1,0,0,61,0,4,0,7,0,0,0,6,1,0,0,46,0,0,0,62,0,3,0,5,1,0,0,6,1,0,0,61,0,4,0,9,0,0,0,8,1,0,0,47,0,0,0,62,0,3,0,7,1,0,0,8,1,0,0,61,0,4,0,11,0,0,0,10,1,0,0,48,0,0,0,62,0,3,0,9,1,0,0,10,1,0,0,57,0,7,0,11,0,0,0,11,1,0,0,17,0,0,0,5,1,0,0,7,1,0,0,9,1,0,0,62,0,3,0,4,1,0,0,11,1,0,0,61,0,4,0,11,0,0,0,12,1,0,0,4,1,0,0,132,0,5,0,11,0,0,0,13,1,0,0,12,1,0,0,167,0,0,0,128,0,5,0,11,0,0,0,14,1,0,0,13,1,0,0,71,0,0,0,65,0,6,0,158,0,0,0,15,1,0,0,165,0,0,0,156,0,0,0,14,1,0,0,61,0,4,0,6,0,0,0,16,1,0,0,45,0,0,0,124,0,4,0,11,0,0,0,17,1,0,0,16,1,0,0,196,0,5,0,11,0,0,0,19,1,0,0,17,1,0,0,18,1,0,0,234,0,7,0,11,0,0,0,20,1,0,0,15,1,0,0,68,0,0,0,64,0,0,0,19,1,0,0,249,0,2,0,224,0,0,0,248,0,2,0,224,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,34,0,0,0,55,0,0,0,0,0,0,0,52,0,0,0,55,0,3,0,12,0,0,0,53,0,0,0,55,0,3,0,12,0,0,0,54,0,0,0,248,0,2,0,56,0,0,0,59,0,4,0,10,0,0,0,28,1,0,0,7,0,0,0,61,0,4,0,11,0,0,0,25,1,0,0,53,0,0,0,65,0,7,0,158,0,0,0,26,1,0,0,24,1,0,0,156,0,0,0,25,1,0,0,189,0,0,0,61,0,4,0,11,0,0,0,27,1,0,0,26,1,0,0,62,0,3,0,54,0,0,0,27,1,0,0,61,0,4,0,11,0,0,0,29,1,0,0,53,0,0,0,65,0,6,0,30,1,0,0,31,1,0,0,24,1,0,0,156,0,0,0,29,1,0,0,61,0,4,0,128,0,0,0,32,1,0,0,31,1,0,0,124,0,4,0,9,0,0,0,33,1,0,0,32,1,0,0,62,0,3,0,28,1,0,0,33,1,0,0,65,0,5,0,43,0,0,0,34,1,0,0,28,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,35,1,0,0,34,1,0,0,196,0,5,0,6,0,0,0,36,1,0,0,35,1,0,0,134,0,0,0,195,0,5,0,6,0,0,0,37,1,0,0,36,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,38,1,0,0,37,1,0,0,65,0,5,0,43,0,0,0,39,1,0,0,28,1,0,0,64,0,0,0,61,0,4,0,6,0,0,0,40,1,0,0,39,1,0,0,195,0,5,0,6,0,0,0,41,1,0,0,40,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,42,1,0,0,41,1,0,0,65,0,5,0,43,0,0,0,43,1,0,0,28,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,44,1,0,0,43,1,0,0,196,0,5,0,6,0,0,0,45,1,0,0,44,1,0,0,134,0,0,0,195,0,5,0,6,0,0,0,46,1,0,0,45,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,47,1,0,0,46,1,0,0,65,0,5,0,43,0,0,0,48,1,0,0,28,1,0,0,68,0,0,0,61,0,4,0,6,0,0,0,49,1,0,0,48,1,0,0,195,0,5,0,6,0,0,0,50,1,0,0,49,1,0,0,134,0,0,0,111,0,4,0,33,0,0,0,51,1,0,0,50,1,0,0,80,0,7,0,34,0,0,0,52,1,0,0,38,1,0,0,42,1,0,0,47,1,0,0,51,1,0,0,65,0,5,0,43,0,0,0,53,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,54,1,0,0,53,1,0,0,199,0,5,0,6,0,0,0,56,1,0,0,54,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,57,1,0,0,56,1,0,0,65,0,5,0,43,0,0,0,58,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,59,1,0,0,58,1,0,0,195,0,5,0,6,0,0,0,61,1,0,0,59,1,0,0,60,1,0,0,199,0,5,0,6,0,0,0,62,1,0,0,61,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,63,1,0,0,62,1,0,0,65,0,5,0,43,0,0,0,64,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,65,1,0,0,64,1,0,0,195,0,5,0,6,0,0,0,66,1,0,0,65,1,0,0,134,0,0,0,199,0,5,0,6,0,0,0,67,1,0,0,66,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,68,1,0,0,67,1,0,0,65,0,5,0,43,0,0,0,69,1,0,0,28,1,0,0,71,0,0,0,61,0,4,0,6,0,0,0,70,1,0,0,69,1,0,0,195,0,5,0,6,0,0,0,71,1,0,0,70,1,0,0,18,1,0,0,199,0,5,0,6,0,0,0,72,1,0,0,71,1,0,0,55,1,0,0,111,0,4,0,33,0,0,0,73,1,0,0,72,1,0,0,80,0,7,0,34,0,0,0,74,1,0,0,57,1,0,0,63,1,0,0,68,1,0,0,73,1,0,0,80,0,7,0,34,0,0,0,75,1,0,0,139,0,0,0,139,0,0,0,139,0,0,0,139,0,0,0,136,0,5,0,34,0,0,0,76,1,0,0,74,1,0,0,75,1,0,0,129,0,5,0,34,0,0,0,77,1,0,0,52,1,0,0,76,1,0,0,254,0,2,0,77,1,0,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_BIN_COMP_SPV_H diff --git a/src/shaders/generated/bound_comp.h b/src/shaders/generated/bound_comp.h index 7af11191..2f7762c1 100644 --- a/src/shaders/generated/bound_comp.h +++ b/src/shaders/generated/bound_comp.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_BOUND_COMP_H namespace Pathfinder { - static uint8_t bound_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,47,47,32,73,110,105,116,105,97,108,105,122,101,115,32,116,104,101,32,116,105,108,101,32,109,97,112,115,46,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,117,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,110,116,32,117,80,97,116,104,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,84,105,108,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,112,97,100,48,59,13,10,32,32,32,32,105,110,116,32,112,97,100,49,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,84,105,108,101,80,97,116,104,73,110,102,111,32,123,13,10,32,32,32,32,47,47,32,120,58,32,116,105,108,101,32,117,112,112,101,114,32,108,101,102,116,44,32,49,54,45,98,105,116,32,112,97,99,107,101,100,32,120,47,121,13,10,32,32,32,32,47,47,32,121,58,32,116,105,108,101,32,108,111,119,101,114,32,114,105,103,104,116,44,32,49,54,45,98,105,116,32,112,97,99,107,101,100,32,120,47,121,13,10,32,32,32,32,47,47,32,122,58,32,102,105,114,115,116,32,116,105,108,101,32,105,110,100,101,120,32,105,110,32,116,104,105,115,32,112,97,116,104,13,10,32,32,32,32,47,47,32,119,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,118,101,99,52,32,105,84,105,108,101,80,97,116,104,73,110,102,111,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,48,44,32,45,49,32,114,101,115,112,101,99,116,105,118,101,108,121,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,84,105,108,101,67,111,117,110,116,41,41,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,117,105,110,116,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,48,117,44,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,117,105,110,116,40,117,80,97,116,104,67,111,117,110,116,41,59,13,10,32,32,32,32,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,59,13,10,32,32,32,32,119,104,105,108,101,32,40,105,116,101,114,97,116,105,111,110,32,60,32,49,48,50,52,32,38,38,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,49,117,32,60,32,104,105,103,104,80,97,116,104,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,80,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,40,104,105,103,104,80,97,116,104,73,110,100,101,120,32,45,32,108,111,119,80,97,116,104,73,110,100,101,120,41,32,47,32,50,117,59,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,84,105,108,101,73,110,100,101,120,32,61,32,105,84,105,108,101,80,97,116,104,73,110,102,111,91,109,105,100,80,97,116,104,73,110,100,101,120,93,46,122,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,60,32,109,105,100,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,61,61,32,109,105,100,84,105,108,101,73,110,100,101,120,41,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,117,118,101,99,52,32,112,97,116,104,73,110,102,111,32,61,32,105,84,105,108,101,80,97,116,104,73,110,102,111,91,112,97,116,104,73,110,100,101,120,93,59,13,10,13,10,32,32,32,32,105,118,101,99,50,32,112,97,99,107,101,100,84,105,108,101,82,101,99,116,32,61,32,105,118,101,99,50,40,112,97,116,104,73,110,102,111,46,120,121,41,59,13,10,32,32,32,32,105,118,101,99,52,32,116,105,108,101,82,101,99,116,32,61,32,105,118,101,99,52,40,13,10,32,32,32,32,40,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,120,32,60,60,32,49,54,41,32,62,62,32,49,54,44,13,10,32,32,32,32,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,120,32,62,62,32,49,54,44,13,10,32,32,32,32,40,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,121,32,60,60,32,49,54,41,32,62,62,32,49,54,44,13,10,32,32,32,32,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,121,32,62,62,32,49,54,41,59,13,10,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,79,102,102,115,101,116,32,61,32,116,105,108,101,73,110,100,101,120,32,45,32,112,97,116,104,73,110,102,111,46,122,59,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,87,105,100,116,104,32,61,32,117,105,110,116,40,116,105,108,101,82,101,99,116,46,122,32,45,32,116,105,108,101,82,101,99,116,46,120,41,59,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,32,61,32,116,105,108,101,82,101,99,116,46,120,121,32,43,32,105,118,101,99,50,40,116,105,108,101,79,102,102,115,101,116,32,37,32,116,105,108,101,87,105,100,116,104,44,32,116,105,108,101,79,102,102,115,101,116,32,47,32,116,105,108,101,87,105,100,116,104,41,59,13,10,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,32,61,32,126,48,117,59,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,93,32,61,32,126,48,117,59,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,32,61,32,48,120,48,48,102,102,102,102,102,102,117,59,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,93,32,61,32,112,97,116,104,73,110,102,111,46,119,59,13,10,125,13,10}; + static uint8_t bound_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,47,47,32,73,110,105,116,105,97,108,105,122,101,115,32,116,104,101,32,116,105,108,101,32,109,97,112,115,46,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,117,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,110,116,32,117,80,97,116,104,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,84,105,108,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,48,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,49,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,84,105,108,101,80,97,116,104,73,110,102,111,32,123,13,10,32,32,32,32,47,47,32,120,58,32,116,105,108,101,32,117,112,112,101,114,32,108,101,102,116,44,32,49,54,45,98,105,116,32,112,97,99,107,101,100,32,120,47,121,13,10,32,32,32,32,47,47,32,121,58,32,116,105,108,101,32,108,111,119,101,114,32,114,105,103,104,116,44,32,49,54,45,98,105,116,32,112,97,99,107,101,100,32,120,47,121,13,10,32,32,32,32,47,47,32,122,58,32,102,105,114,115,116,32,116,105,108,101,32,105,110,100,101,120,32,105,110,32,116,104,105,115,32,112,97,116,104,13,10,32,32,32,32,47,47,32,119,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,118,101,99,52,32,105,84,105,108,101,80,97,116,104,73,110,102,111,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,45,49,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,40,105,110,105,116,105,97,108,105,122,101,100,32,116,111,32,48,44,32,45,49,32,114,101,115,112,101,99,116,105,118,101,108,121,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,84,105,108,101,67,111,117,110,116,41,41,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,117,105,110,116,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,48,117,44,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,117,105,110,116,40,117,80,97,116,104,67,111,117,110,116,41,59,13,10,32,32,32,32,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,59,13,10,32,32,32,32,119,104,105,108,101,32,40,105,116,101,114,97,116,105,111,110,32,60,32,49,48,50,52,32,38,38,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,49,117,32,60,32,104,105,103,104,80,97,116,104,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,80,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,40,104,105,103,104,80,97,116,104,73,110,100,101,120,32,45,32,108,111,119,80,97,116,104,73,110,100,101,120,41,32,47,32,50,117,59,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,84,105,108,101,73,110,100,101,120,32,61,32,105,84,105,108,101,80,97,116,104,73,110,102,111,91,109,105,100,80,97,116,104,73,110,100,101,120,93,46,122,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,60,32,109,105,100,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,61,61,32,109,105,100,84,105,108,101,73,110,100,101,120,41,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,117,105,110,116,32,112,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,117,118,101,99,52,32,112,97,116,104,73,110,102,111,32,61,32,105,84,105,108,101,80,97,116,104,73,110,102,111,91,112,97,116,104,73,110,100,101,120,93,59,13,10,13,10,32,32,32,32,105,118,101,99,50,32,112,97,99,107,101,100,84,105,108,101,82,101,99,116,32,61,32,105,118,101,99,50,40,112,97,116,104,73,110,102,111,46,120,121,41,59,13,10,32,32,32,32,105,118,101,99,52,32,116,105,108,101,82,101,99,116,32,61,32,105,118,101,99,52,40,13,10,32,32,32,32,40,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,120,32,60,60,32,49,54,41,32,62,62,32,49,54,44,13,10,32,32,32,32,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,120,32,62,62,32,49,54,44,13,10,32,32,32,32,40,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,121,32,60,60,32,49,54,41,32,62,62,32,49,54,44,13,10,32,32,32,32,112,97,99,107,101,100,84,105,108,101,82,101,99,116,46,121,32,62,62,32,49,54,41,59,13,10,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,79,102,102,115,101,116,32,61,32,116,105,108,101,73,110,100,101,120,32,45,32,112,97,116,104,73,110,102,111,46,122,59,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,87,105,100,116,104,32,61,32,117,105,110,116,40,116,105,108,101,82,101,99,116,46,122,32,45,32,116,105,108,101,82,101,99,116,46,120,41,59,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,115,32,61,32,116,105,108,101,82,101,99,116,46,120,121,32,43,32,105,118,101,99,50,40,116,105,108,101,79,102,102,115,101,116,32,37,32,116,105,108,101,87,105,100,116,104,44,32,116,105,108,101,79,102,102,115,101,116,32,47,32,116,105,108,101,87,105,100,116,104,41,59,13,10,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,32,61,32,126,48,117,59,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,93,32,61,32,126,48,117,59,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,32,61,32,48,120,48,48,102,102,102,102,102,102,117,59,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,93,32,61,32,112,97,116,104,73,110,102,111,46,119,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_BOUND_COMP_H diff --git a/src/shaders/generated/bound_comp_spv.h b/src/shaders/generated/bound_comp_spv.h index 1ebe9c68..7e154606 100644 --- a/src/shaders/generated/bound_comp_spv.h +++ b/src/shaders/generated/bound_comp_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_BOUND_COMP_SPV_H namespace Pathfinder { - static uint8_t bound_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,176,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,11,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,5,0,8,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,8,0,11,0,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,5,0,18,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,18,0,0,0,0,0,0,0,117,80,97,116,104,67,111,117,110,116,0,0,6,0,6,0,18,0,0,0,1,0,0,0,117,84,105,108,101,67,111,117,110,116,0,0,6,0,5,0,18,0,0,0,2,0,0,0,112,97,100,48,0,0,0,0,6,0,5,0,18,0,0,0,3,0,0,0,112,97,100,49,0,0,0,0,5,0,3,0,20,0,0,0,0,0,0,0,5,0,6,0,31,0,0,0,108,111,119,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,32,0,0,0,104,105,103,104,80,97,116,104,73,110,100,101,120,0,0,0,5,0,5,0,38,0,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,6,0,55,0,0,0,109,105,100,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,63,0,0,0,109,105,100,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,6,0,66,0,0,0,98,84,105,108,101,80,97,116,104,73,110,102,111,0,0,0,6,0,7,0,66,0,0,0,0,0,0,0,105,84,105,108,101,80,97,116,104,73,110,102,111,0,0,0,5,0,3,0,68,0,0,0,0,0,0,0,5,0,5,0,89,0,0,0,112,97,116,104,73,110,100,101,120,0,0,0,5,0,5,0,92,0,0,0,112,97,116,104,73,110,102,111,0,0,0,0,5,0,6,0,99,0,0,0,112,97,99,107,101,100,84,105,108,101,82,101,99,116,0,0,5,0,5,0,106,0,0,0,116,105,108,101,82,101,99,116,0,0,0,0,5,0,5,0,123,0,0,0,116,105,108,101,79,102,102,115,101,116,0,0,5,0,5,0,128,0,0,0,116,105,108,101,87,105,100,116,104,0,0,0,5,0,5,0,135,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,4,0,149,0,0,0,98,84,105,108,101,115,0,0,6,0,5,0,149,0,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,151,0,0,0,0,0,0,0,71,0,4,0,11,0,0,0,11,0,0,0,28,0,0,0,72,0,5,0,18,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,18,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,18,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,18,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,18,0,0,0,2,0,0,0,71,0,4,0,20,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,20,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,65,0,0,0,6,0,0,0,16,0,0,0,72,0,4,0,66,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,66,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,66,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,66,0,0,0,3,0,0,0,71,0,4,0,68,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,68,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,148,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,149,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,149,0,0,0,0,0,0,0,25,0,0,0,72,0,5,0,149,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,149,0,0,0,3,0,0,0,71,0,4,0,151,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,151,0,0,0,33,0,0,0,1,0,0,0,71,0,4,0,175,0,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,7,0,0,0,7,0,0,0,6,0,0,0,23,0,4,0,9,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,10,0,0,0,1,0,0,0,9,0,0,0,59,0,4,0,10,0,0,0,11,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,12,0,0,0,0,0,0,0,32,0,4,0,13,0,0,0,1,0,0,0,6,0,0,0,21,0,4,0,17,0,0,0,32,0,0,0,1,0,0,0,30,0,6,0,18,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,32,0,4,0,19,0,0,0,2,0,0,0,18,0,0,0,59,0,4,0,19,0,0,0,20,0,0,0,2,0,0,0,43,0,4,0,17,0,0,0,21,0,0,0,1,0,0,0,32,0,4,0,22,0,0,0,2,0,0,0,17,0,0,0,20,0,2,0,26,0,0,0,43,0,4,0,17,0,0,0,33,0,0,0,0,0,0,0,32,0,4,0,37,0,0,0,7,0,0,0,17,0,0,0,43,0,4,0,17,0,0,0,45,0,0,0,0,4,0,0,43,0,4,0,6,0,0,0,50,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,60,0,0,0,2,0,0,0,23,0,4,0,64,0,0,0,6,0,0,0,4,0,0,0,29,0,3,0,65,0,0,0,64,0,0,0,30,0,3,0,66,0,0,0,65,0,0,0,32,0,4,0,67,0,0,0,2,0,0,0,66,0,0,0,59,0,4,0,67,0,0,0,68,0,0,0,2,0,0,0,32,0,4,0,70,0,0,0,2,0,0,0,6,0,0,0,32,0,4,0,91,0,0,0,7,0,0,0,64,0,0,0,32,0,4,0,94,0,0,0,2,0,0,0,64,0,0,0,23,0,4,0,97,0,0,0,17,0,0,0,2,0,0,0,32,0,4,0,98,0,0,0,7,0,0,0,97,0,0,0,23,0,4,0,100,0,0,0,6,0,0,0,2,0,0,0,23,0,4,0,104,0,0,0,17,0,0,0,4,0,0,0,32,0,4,0,105,0,0,0,7,0,0,0,104,0,0,0,43,0,4,0,17,0,0,0,109,0,0,0,16,0,0,0,29,0,3,0,148,0,0,0,6,0,0,0,30,0,3,0,149,0,0,0,148,0,0,0,32,0,4,0,150,0,0,0,2,0,0,0,149,0,0,0,59,0,4,0,150,0,0,0,151,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,153,0,0,0,4,0,0,0,43,0,4,0,6,0,0,0,156,0,0,0,255,255,255,255,43,0,4,0,6,0,0,0,165,0,0,0,255,255,255,0,43,0,4,0,6,0,0,0,169,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,174,0,0,0,64,0,0,0,44,0,6,0,9,0,0,0,175,0,0,0,174,0,0,0,50,0,0,0,50,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,7,0,0,0,8,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,31,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,32,0,0,0,7,0,0,0,59,0,4,0,37,0,0,0,38,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,55,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,63,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,89,0,0,0,7,0,0,0,59,0,4,0,91,0,0,0,92,0,0,0,7,0,0,0,59,0,4,0,98,0,0,0,99,0,0,0,7,0,0,0,59,0,4,0,105,0,0,0,106,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,123,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,128,0,0,0,7,0,0,0,59,0,4,0,98,0,0,0,135,0,0,0,7,0,0,0,65,0,5,0,13,0,0,0,14,0,0,0,11,0,0,0,12,0,0,0,61,0,4,0,6,0,0,0,15,0,0,0,14,0,0,0,62,0,3,0,8,0,0,0,15,0,0,0,61,0,4,0,6,0,0,0,16,0,0,0,8,0,0,0,65,0,5,0,22,0,0,0,23,0,0,0,20,0,0,0,21,0,0,0,61,0,4,0,17,0,0,0,24,0,0,0,23,0,0,0,124,0,4,0,6,0,0,0,25,0,0,0,24,0,0,0,174,0,5,0,26,0,0,0,27,0,0,0,16,0,0,0,25,0,0,0,247,0,3,0,29,0,0,0,0,0,0,0,250,0,4,0,27,0,0,0,28,0,0,0,29,0,0,0,248,0,2,0,28,0,0,0,253,0,1,0,248,0,2,0,29,0,0,0,62,0,3,0,31,0,0,0,12,0,0,0,65,0,5,0,22,0,0,0,34,0,0,0,20,0,0,0,33,0,0,0,61,0,4,0,17,0,0,0,35,0,0,0,34,0,0,0,124,0,4,0,6,0,0,0,36,0,0,0,35,0,0,0,62,0,3,0,32,0,0,0,36,0,0,0,62,0,3,0,38,0,0,0,33,0,0,0,249,0,2,0,39,0,0,0,248,0,2,0,39,0,0,0,246,0,4,0,41,0,0,0,42,0,0,0,0,0,0,0,249,0,2,0,43,0,0,0,248,0,2,0,43,0,0,0,61,0,4,0,17,0,0,0,44,0,0,0,38,0,0,0,177,0,5,0,26,0,0,0,46,0,0,0,44,0,0,0,45,0,0,0,247,0,3,0,48,0,0,0,0,0,0,0,250,0,4,0,46,0,0,0,47,0,0,0,48,0,0,0,248,0,2,0,47,0,0,0,61,0,4,0,6,0,0,0,49,0,0,0,31,0,0,0,128,0,5,0,6,0,0,0,51,0,0,0,49,0,0,0,50,0,0,0,61,0,4,0,6,0,0,0,52,0,0,0,32,0,0,0,176,0,5,0,26,0,0,0,53,0,0,0,51,0,0,0,52,0,0,0,249,0,2,0,48,0,0,0,248,0,2,0,48,0,0,0,245,0,7,0,26,0,0,0,54,0,0,0,46,0,0,0,43,0,0,0,53,0,0,0,47,0,0,0,250,0,4,0,54,0,0,0,40,0,0,0,41,0,0,0,248,0,2,0,40,0,0,0,61,0,4,0,6,0,0,0,56,0,0,0,31,0,0,0,61,0,4,0,6,0,0,0,57,0,0,0,32,0,0,0,61,0,4,0,6,0,0,0,58,0,0,0,31,0,0,0,130,0,5,0,6,0,0,0,59,0,0,0,57,0,0,0,58,0,0,0,134,0,5,0,6,0,0,0,61,0,0,0,59,0,0,0,60,0,0,0,128,0,5,0,6,0,0,0,62,0,0,0,56,0,0,0,61,0,0,0,62,0,3,0,55,0,0,0,62,0,0,0,61,0,4,0,6,0,0,0,69,0,0,0,55,0,0,0,65,0,7,0,70,0,0,0,71,0,0,0,68,0,0,0,33,0,0,0,69,0,0,0,60,0,0,0,61,0,4,0,6,0,0,0,72,0,0,0,71,0,0,0,62,0,3,0,63,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,73,0,0,0,8,0,0,0,61,0,4,0,6,0,0,0,74,0,0,0,63,0,0,0,176,0,5,0,26,0,0,0,75,0,0,0,73,0,0,0,74,0,0,0,247,0,3,0,77,0,0,0,0,0,0,0,250,0,4,0,75,0,0,0,76,0,0,0,79,0,0,0,248,0,2,0,76,0,0,0,61,0,4,0,6,0,0,0,78,0,0,0,55,0,0,0,62,0,3,0,32,0,0,0,78,0,0,0,249,0,2,0,77,0,0,0,248,0,2,0,79,0,0,0,61,0,4,0,6,0,0,0,80,0,0,0,55,0,0,0,62,0,3,0,31,0,0,0,80,0,0,0,61,0,4,0,6,0,0,0,81,0,0,0,8,0,0,0,61,0,4,0,6,0,0,0,82,0,0,0,63,0,0,0,170,0,5,0,26,0,0,0,83,0,0,0,81,0,0,0,82,0,0,0,247,0,3,0,85,0,0,0,0,0,0,0,250,0,4,0,83,0,0,0,84,0,0,0,85,0,0,0,248,0,2,0,84,0,0,0,249,0,2,0,41,0,0,0,248,0,2,0,85,0,0,0,249,0,2,0,77,0,0,0,248,0,2,0,77,0,0,0,61,0,4,0,17,0,0,0,87,0,0,0,38,0,0,0,128,0,5,0,17,0,0,0,88,0,0,0,87,0,0,0,21,0,0,0,62,0,3,0,38,0,0,0,88,0,0,0,249,0,2,0,42,0,0,0,248,0,2,0,42,0,0,0,249,0,2,0,39,0,0,0,248,0,2,0,41,0,0,0,61,0,4,0,6,0,0,0,90,0,0,0,31,0,0,0,62,0,3,0,89,0,0,0,90,0,0,0,61,0,4,0,6,0,0,0,93,0,0,0,89,0,0,0,65,0,6,0,94,0,0,0,95,0,0,0,68,0,0,0,33,0,0,0,93,0,0,0,61,0,4,0,64,0,0,0,96,0,0,0,95,0,0,0,62,0,3,0,92,0,0,0,96,0,0,0,61,0,4,0,64,0,0,0,101,0,0,0,92,0,0,0,79,0,7,0,100,0,0,0,102,0,0,0,101,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,124,0,4,0,97,0,0,0,103,0,0,0,102,0,0,0,62,0,3,0,99,0,0,0,103,0,0,0,65,0,5,0,37,0,0,0,107,0,0,0,99,0,0,0,12,0,0,0,61,0,4,0,17,0,0,0,108,0,0,0,107,0,0,0,196,0,5,0,17,0,0,0,110,0,0,0,108,0,0,0,109,0,0,0,195,0,5,0,17,0,0,0,111,0,0,0,110,0,0,0,109,0,0,0,65,0,5,0,37,0,0,0,112,0,0,0,99,0,0,0,12,0,0,0,61,0,4,0,17,0,0,0,113,0,0,0,112,0,0,0,195,0,5,0,17,0,0,0,114,0,0,0,113,0,0,0,109,0,0,0,65,0,5,0,37,0,0,0,115,0,0,0,99,0,0,0,50,0,0,0,61,0,4,0,17,0,0,0,116,0,0,0,115,0,0,0,196,0,5,0,17,0,0,0,117,0,0,0,116,0,0,0,109,0,0,0,195,0,5,0,17,0,0,0,118,0,0,0,117,0,0,0,109,0,0,0,65,0,5,0,37,0,0,0,119,0,0,0,99,0,0,0,50,0,0,0,61,0,4,0,17,0,0,0,120,0,0,0,119,0,0,0,195,0,5,0,17,0,0,0,121,0,0,0,120,0,0,0,109,0,0,0,80,0,7,0,104,0,0,0,122,0,0,0,111,0,0,0,114,0,0,0,118,0,0,0,121,0,0,0,62,0,3,0,106,0,0,0,122,0,0,0,61,0,4,0,6,0,0,0,124,0,0,0,8,0,0,0,65,0,5,0,7,0,0,0,125,0,0,0,92,0,0,0,60,0,0,0,61,0,4,0,6,0,0,0,126,0,0,0,125,0,0,0,130,0,5,0,6,0,0,0,127,0,0,0,124,0,0,0,126,0,0,0,62,0,3,0,123,0,0,0,127,0,0,0,65,0,5,0,37,0,0,0,129,0,0,0,106,0,0,0,60,0,0,0,61,0,4,0,17,0,0,0,130,0,0,0,129,0,0,0,65,0,5,0,37,0,0,0,131,0,0,0,106,0,0,0,12,0,0,0,61,0,4,0,17,0,0,0,132,0,0,0,131,0,0,0,130,0,5,0,17,0,0,0,133,0,0,0,130,0,0,0,132,0,0,0,124,0,4,0,6,0,0,0,134,0,0,0,133,0,0,0,62,0,3,0,128,0,0,0,134,0,0,0,61,0,4,0,104,0,0,0,136,0,0,0,106,0,0,0,79,0,7,0,97,0,0,0,137,0,0,0,136,0,0,0,136,0,0,0,0,0,0,0,1,0,0,0,61,0,4,0,6,0,0,0,138,0,0,0,123,0,0,0,61,0,4,0,6,0,0,0,139,0,0,0,128,0,0,0,137,0,5,0,6,0,0,0,140,0,0,0,138,0,0,0,139,0,0,0,124,0,4,0,17,0,0,0,141,0,0,0,140,0,0,0,61,0,4,0,6,0,0,0,142,0,0,0,123,0,0,0,61,0,4,0,6,0,0,0,143,0,0,0,128,0,0,0,134,0,5,0,6,0,0,0,144,0,0,0,142,0,0,0,143,0,0,0,124,0,4,0,17,0,0,0,145,0,0,0,144,0,0,0,80,0,5,0,97,0,0,0,146,0,0,0,141,0,0,0,145,0,0,0,128,0,5,0,97,0,0,0,147,0,0,0,137,0,0,0,146,0,0,0,62,0,3,0,135,0,0,0,147,0,0,0,61,0,4,0,6,0,0,0,152,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,154,0,0,0,152,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,155,0,0,0,154,0,0,0,12,0,0,0,65,0,6,0,70,0,0,0,157,0,0,0,151,0,0,0,33,0,0,0,155,0,0,0,62,0,3,0,157,0,0,0,156,0,0,0,61,0,4,0,6,0,0,0,158,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,159,0,0,0,158,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,160,0,0,0,159,0,0,0,50,0,0,0,65,0,6,0,70,0,0,0,161,0,0,0,151,0,0,0,33,0,0,0,160,0,0,0,62,0,3,0,161,0,0,0,156,0,0,0,61,0,4,0,6,0,0,0,162,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,163,0,0,0,162,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,164,0,0,0,163,0,0,0,60,0,0,0,65,0,6,0,70,0,0,0,166,0,0,0,151,0,0,0,33,0,0,0,164,0,0,0,62,0,3,0,166,0,0,0,165,0,0,0,61,0,4,0,6,0,0,0,167,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,168,0,0,0,167,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,170,0,0,0,168,0,0,0,169,0,0,0,65,0,5,0,7,0,0,0,171,0,0,0,92,0,0,0,169,0,0,0,61,0,4,0,6,0,0,0,172,0,0,0,171,0,0,0,65,0,6,0,70,0,0,0,173,0,0,0,151,0,0,0,33,0,0,0,170,0,0,0,62,0,3,0,173,0,0,0,172,0,0,0,253,0,1,0,56,0,1,0}; + static uint8_t bound_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,176,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,11,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,5,0,8,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,8,0,11,0,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,5,0,18,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,18,0,0,0,0,0,0,0,117,80,97,116,104,67,111,117,110,116,0,0,6,0,6,0,18,0,0,0,1,0,0,0,117,84,105,108,101,67,111,117,110,116,0,0,6,0,5,0,18,0,0,0,2,0,0,0,117,80,97,100,48,0,0,0,6,0,5,0,18,0,0,0,3,0,0,0,117,80,97,100,49,0,0,0,5,0,3,0,20,0,0,0,0,0,0,0,5,0,6,0,31,0,0,0,108,111,119,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,32,0,0,0,104,105,103,104,80,97,116,104,73,110,100,101,120,0,0,0,5,0,5,0,38,0,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,6,0,55,0,0,0,109,105,100,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,63,0,0,0,109,105,100,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,6,0,66,0,0,0,98,84,105,108,101,80,97,116,104,73,110,102,111,0,0,0,6,0,7,0,66,0,0,0,0,0,0,0,105,84,105,108,101,80,97,116,104,73,110,102,111,0,0,0,5,0,3,0,68,0,0,0,0,0,0,0,5,0,5,0,89,0,0,0,112,97,116,104,73,110,100,101,120,0,0,0,5,0,5,0,92,0,0,0,112,97,116,104,73,110,102,111,0,0,0,0,5,0,6,0,99,0,0,0,112,97,99,107,101,100,84,105,108,101,82,101,99,116,0,0,5,0,5,0,106,0,0,0,116,105,108,101,82,101,99,116,0,0,0,0,5,0,5,0,123,0,0,0,116,105,108,101,79,102,102,115,101,116,0,0,5,0,5,0,128,0,0,0,116,105,108,101,87,105,100,116,104,0,0,0,5,0,5,0,135,0,0,0,116,105,108,101,67,111,111,114,100,115,0,0,5,0,4,0,149,0,0,0,98,84,105,108,101,115,0,0,6,0,5,0,149,0,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,151,0,0,0,0,0,0,0,71,0,4,0,11,0,0,0,11,0,0,0,28,0,0,0,72,0,5,0,18,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,18,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,18,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,18,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,18,0,0,0,2,0,0,0,71,0,4,0,20,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,20,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,65,0,0,0,6,0,0,0,16,0,0,0,72,0,4,0,66,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,66,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,66,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,66,0,0,0,3,0,0,0,71,0,4,0,68,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,68,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,148,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,149,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,149,0,0,0,0,0,0,0,25,0,0,0,72,0,5,0,149,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,149,0,0,0,3,0,0,0,71,0,4,0,151,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,151,0,0,0,33,0,0,0,1,0,0,0,71,0,4,0,175,0,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,7,0,0,0,7,0,0,0,6,0,0,0,23,0,4,0,9,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,10,0,0,0,1,0,0,0,9,0,0,0,59,0,4,0,10,0,0,0,11,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,12,0,0,0,0,0,0,0,32,0,4,0,13,0,0,0,1,0,0,0,6,0,0,0,21,0,4,0,17,0,0,0,32,0,0,0,1,0,0,0,30,0,6,0,18,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,17,0,0,0,32,0,4,0,19,0,0,0,2,0,0,0,18,0,0,0,59,0,4,0,19,0,0,0,20,0,0,0,2,0,0,0,43,0,4,0,17,0,0,0,21,0,0,0,1,0,0,0,32,0,4,0,22,0,0,0,2,0,0,0,17,0,0,0,20,0,2,0,26,0,0,0,43,0,4,0,17,0,0,0,33,0,0,0,0,0,0,0,32,0,4,0,37,0,0,0,7,0,0,0,17,0,0,0,43,0,4,0,17,0,0,0,45,0,0,0,0,4,0,0,43,0,4,0,6,0,0,0,50,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,60,0,0,0,2,0,0,0,23,0,4,0,64,0,0,0,6,0,0,0,4,0,0,0,29,0,3,0,65,0,0,0,64,0,0,0,30,0,3,0,66,0,0,0,65,0,0,0,32,0,4,0,67,0,0,0,2,0,0,0,66,0,0,0,59,0,4,0,67,0,0,0,68,0,0,0,2,0,0,0,32,0,4,0,70,0,0,0,2,0,0,0,6,0,0,0,32,0,4,0,91,0,0,0,7,0,0,0,64,0,0,0,32,0,4,0,94,0,0,0,2,0,0,0,64,0,0,0,23,0,4,0,97,0,0,0,17,0,0,0,2,0,0,0,32,0,4,0,98,0,0,0,7,0,0,0,97,0,0,0,23,0,4,0,100,0,0,0,6,0,0,0,2,0,0,0,23,0,4,0,104,0,0,0,17,0,0,0,4,0,0,0,32,0,4,0,105,0,0,0,7,0,0,0,104,0,0,0,43,0,4,0,17,0,0,0,109,0,0,0,16,0,0,0,29,0,3,0,148,0,0,0,6,0,0,0,30,0,3,0,149,0,0,0,148,0,0,0,32,0,4,0,150,0,0,0,2,0,0,0,149,0,0,0,59,0,4,0,150,0,0,0,151,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,153,0,0,0,4,0,0,0,43,0,4,0,6,0,0,0,156,0,0,0,255,255,255,255,43,0,4,0,6,0,0,0,165,0,0,0,255,255,255,0,43,0,4,0,6,0,0,0,169,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,174,0,0,0,64,0,0,0,44,0,6,0,9,0,0,0,175,0,0,0,174,0,0,0,50,0,0,0,50,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,7,0,0,0,8,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,31,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,32,0,0,0,7,0,0,0,59,0,4,0,37,0,0,0,38,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,55,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,63,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,89,0,0,0,7,0,0,0,59,0,4,0,91,0,0,0,92,0,0,0,7,0,0,0,59,0,4,0,98,0,0,0,99,0,0,0,7,0,0,0,59,0,4,0,105,0,0,0,106,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,123,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,128,0,0,0,7,0,0,0,59,0,4,0,98,0,0,0,135,0,0,0,7,0,0,0,65,0,5,0,13,0,0,0,14,0,0,0,11,0,0,0,12,0,0,0,61,0,4,0,6,0,0,0,15,0,0,0,14,0,0,0,62,0,3,0,8,0,0,0,15,0,0,0,61,0,4,0,6,0,0,0,16,0,0,0,8,0,0,0,65,0,5,0,22,0,0,0,23,0,0,0,20,0,0,0,21,0,0,0,61,0,4,0,17,0,0,0,24,0,0,0,23,0,0,0,124,0,4,0,6,0,0,0,25,0,0,0,24,0,0,0,174,0,5,0,26,0,0,0,27,0,0,0,16,0,0,0,25,0,0,0,247,0,3,0,29,0,0,0,0,0,0,0,250,0,4,0,27,0,0,0,28,0,0,0,29,0,0,0,248,0,2,0,28,0,0,0,253,0,1,0,248,0,2,0,29,0,0,0,62,0,3,0,31,0,0,0,12,0,0,0,65,0,5,0,22,0,0,0,34,0,0,0,20,0,0,0,33,0,0,0,61,0,4,0,17,0,0,0,35,0,0,0,34,0,0,0,124,0,4,0,6,0,0,0,36,0,0,0,35,0,0,0,62,0,3,0,32,0,0,0,36,0,0,0,62,0,3,0,38,0,0,0,33,0,0,0,249,0,2,0,39,0,0,0,248,0,2,0,39,0,0,0,246,0,4,0,41,0,0,0,42,0,0,0,0,0,0,0,249,0,2,0,43,0,0,0,248,0,2,0,43,0,0,0,61,0,4,0,17,0,0,0,44,0,0,0,38,0,0,0,177,0,5,0,26,0,0,0,46,0,0,0,44,0,0,0,45,0,0,0,247,0,3,0,48,0,0,0,0,0,0,0,250,0,4,0,46,0,0,0,47,0,0,0,48,0,0,0,248,0,2,0,47,0,0,0,61,0,4,0,6,0,0,0,49,0,0,0,31,0,0,0,128,0,5,0,6,0,0,0,51,0,0,0,49,0,0,0,50,0,0,0,61,0,4,0,6,0,0,0,52,0,0,0,32,0,0,0,176,0,5,0,26,0,0,0,53,0,0,0,51,0,0,0,52,0,0,0,249,0,2,0,48,0,0,0,248,0,2,0,48,0,0,0,245,0,7,0,26,0,0,0,54,0,0,0,46,0,0,0,43,0,0,0,53,0,0,0,47,0,0,0,250,0,4,0,54,0,0,0,40,0,0,0,41,0,0,0,248,0,2,0,40,0,0,0,61,0,4,0,6,0,0,0,56,0,0,0,31,0,0,0,61,0,4,0,6,0,0,0,57,0,0,0,32,0,0,0,61,0,4,0,6,0,0,0,58,0,0,0,31,0,0,0,130,0,5,0,6,0,0,0,59,0,0,0,57,0,0,0,58,0,0,0,134,0,5,0,6,0,0,0,61,0,0,0,59,0,0,0,60,0,0,0,128,0,5,0,6,0,0,0,62,0,0,0,56,0,0,0,61,0,0,0,62,0,3,0,55,0,0,0,62,0,0,0,61,0,4,0,6,0,0,0,69,0,0,0,55,0,0,0,65,0,7,0,70,0,0,0,71,0,0,0,68,0,0,0,33,0,0,0,69,0,0,0,60,0,0,0,61,0,4,0,6,0,0,0,72,0,0,0,71,0,0,0,62,0,3,0,63,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,73,0,0,0,8,0,0,0,61,0,4,0,6,0,0,0,74,0,0,0,63,0,0,0,176,0,5,0,26,0,0,0,75,0,0,0,73,0,0,0,74,0,0,0,247,0,3,0,77,0,0,0,0,0,0,0,250,0,4,0,75,0,0,0,76,0,0,0,79,0,0,0,248,0,2,0,76,0,0,0,61,0,4,0,6,0,0,0,78,0,0,0,55,0,0,0,62,0,3,0,32,0,0,0,78,0,0,0,249,0,2,0,77,0,0,0,248,0,2,0,79,0,0,0,61,0,4,0,6,0,0,0,80,0,0,0,55,0,0,0,62,0,3,0,31,0,0,0,80,0,0,0,61,0,4,0,6,0,0,0,81,0,0,0,8,0,0,0,61,0,4,0,6,0,0,0,82,0,0,0,63,0,0,0,170,0,5,0,26,0,0,0,83,0,0,0,81,0,0,0,82,0,0,0,247,0,3,0,85,0,0,0,0,0,0,0,250,0,4,0,83,0,0,0,84,0,0,0,85,0,0,0,248,0,2,0,84,0,0,0,249,0,2,0,41,0,0,0,248,0,2,0,85,0,0,0,249,0,2,0,77,0,0,0,248,0,2,0,77,0,0,0,61,0,4,0,17,0,0,0,87,0,0,0,38,0,0,0,128,0,5,0,17,0,0,0,88,0,0,0,87,0,0,0,21,0,0,0,62,0,3,0,38,0,0,0,88,0,0,0,249,0,2,0,42,0,0,0,248,0,2,0,42,0,0,0,249,0,2,0,39,0,0,0,248,0,2,0,41,0,0,0,61,0,4,0,6,0,0,0,90,0,0,0,31,0,0,0,62,0,3,0,89,0,0,0,90,0,0,0,61,0,4,0,6,0,0,0,93,0,0,0,89,0,0,0,65,0,6,0,94,0,0,0,95,0,0,0,68,0,0,0,33,0,0,0,93,0,0,0,61,0,4,0,64,0,0,0,96,0,0,0,95,0,0,0,62,0,3,0,92,0,0,0,96,0,0,0,61,0,4,0,64,0,0,0,101,0,0,0,92,0,0,0,79,0,7,0,100,0,0,0,102,0,0,0,101,0,0,0,101,0,0,0,0,0,0,0,1,0,0,0,124,0,4,0,97,0,0,0,103,0,0,0,102,0,0,0,62,0,3,0,99,0,0,0,103,0,0,0,65,0,5,0,37,0,0,0,107,0,0,0,99,0,0,0,12,0,0,0,61,0,4,0,17,0,0,0,108,0,0,0,107,0,0,0,196,0,5,0,17,0,0,0,110,0,0,0,108,0,0,0,109,0,0,0,195,0,5,0,17,0,0,0,111,0,0,0,110,0,0,0,109,0,0,0,65,0,5,0,37,0,0,0,112,0,0,0,99,0,0,0,12,0,0,0,61,0,4,0,17,0,0,0,113,0,0,0,112,0,0,0,195,0,5,0,17,0,0,0,114,0,0,0,113,0,0,0,109,0,0,0,65,0,5,0,37,0,0,0,115,0,0,0,99,0,0,0,50,0,0,0,61,0,4,0,17,0,0,0,116,0,0,0,115,0,0,0,196,0,5,0,17,0,0,0,117,0,0,0,116,0,0,0,109,0,0,0,195,0,5,0,17,0,0,0,118,0,0,0,117,0,0,0,109,0,0,0,65,0,5,0,37,0,0,0,119,0,0,0,99,0,0,0,50,0,0,0,61,0,4,0,17,0,0,0,120,0,0,0,119,0,0,0,195,0,5,0,17,0,0,0,121,0,0,0,120,0,0,0,109,0,0,0,80,0,7,0,104,0,0,0,122,0,0,0,111,0,0,0,114,0,0,0,118,0,0,0,121,0,0,0,62,0,3,0,106,0,0,0,122,0,0,0,61,0,4,0,6,0,0,0,124,0,0,0,8,0,0,0,65,0,5,0,7,0,0,0,125,0,0,0,92,0,0,0,60,0,0,0,61,0,4,0,6,0,0,0,126,0,0,0,125,0,0,0,130,0,5,0,6,0,0,0,127,0,0,0,124,0,0,0,126,0,0,0,62,0,3,0,123,0,0,0,127,0,0,0,65,0,5,0,37,0,0,0,129,0,0,0,106,0,0,0,60,0,0,0,61,0,4,0,17,0,0,0,130,0,0,0,129,0,0,0,65,0,5,0,37,0,0,0,131,0,0,0,106,0,0,0,12,0,0,0,61,0,4,0,17,0,0,0,132,0,0,0,131,0,0,0,130,0,5,0,17,0,0,0,133,0,0,0,130,0,0,0,132,0,0,0,124,0,4,0,6,0,0,0,134,0,0,0,133,0,0,0,62,0,3,0,128,0,0,0,134,0,0,0,61,0,4,0,104,0,0,0,136,0,0,0,106,0,0,0,79,0,7,0,97,0,0,0,137,0,0,0,136,0,0,0,136,0,0,0,0,0,0,0,1,0,0,0,61,0,4,0,6,0,0,0,138,0,0,0,123,0,0,0,61,0,4,0,6,0,0,0,139,0,0,0,128,0,0,0,137,0,5,0,6,0,0,0,140,0,0,0,138,0,0,0,139,0,0,0,124,0,4,0,17,0,0,0,141,0,0,0,140,0,0,0,61,0,4,0,6,0,0,0,142,0,0,0,123,0,0,0,61,0,4,0,6,0,0,0,143,0,0,0,128,0,0,0,134,0,5,0,6,0,0,0,144,0,0,0,142,0,0,0,143,0,0,0,124,0,4,0,17,0,0,0,145,0,0,0,144,0,0,0,80,0,5,0,97,0,0,0,146,0,0,0,141,0,0,0,145,0,0,0,128,0,5,0,97,0,0,0,147,0,0,0,137,0,0,0,146,0,0,0,62,0,3,0,135,0,0,0,147,0,0,0,61,0,4,0,6,0,0,0,152,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,154,0,0,0,152,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,155,0,0,0,154,0,0,0,12,0,0,0,65,0,6,0,70,0,0,0,157,0,0,0,151,0,0,0,33,0,0,0,155,0,0,0,62,0,3,0,157,0,0,0,156,0,0,0,61,0,4,0,6,0,0,0,158,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,159,0,0,0,158,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,160,0,0,0,159,0,0,0,50,0,0,0,65,0,6,0,70,0,0,0,161,0,0,0,151,0,0,0,33,0,0,0,160,0,0,0,62,0,3,0,161,0,0,0,156,0,0,0,61,0,4,0,6,0,0,0,162,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,163,0,0,0,162,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,164,0,0,0,163,0,0,0,60,0,0,0,65,0,6,0,70,0,0,0,166,0,0,0,151,0,0,0,33,0,0,0,164,0,0,0,62,0,3,0,166,0,0,0,165,0,0,0,61,0,4,0,6,0,0,0,167,0,0,0,8,0,0,0,132,0,5,0,6,0,0,0,168,0,0,0,167,0,0,0,153,0,0,0,128,0,5,0,6,0,0,0,170,0,0,0,168,0,0,0,169,0,0,0,65,0,5,0,7,0,0,0,171,0,0,0,92,0,0,0,169,0,0,0,61,0,4,0,6,0,0,0,172,0,0,0,171,0,0,0,65,0,6,0,70,0,0,0,173,0,0,0,151,0,0,0,33,0,0,0,170,0,0,0,62,0,3,0,173,0,0,0,172,0,0,0,253,0,1,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_BOUND_COMP_SPV_H diff --git a/src/shaders/generated/dice_comp.h b/src/shaders/generated/dice_comp.h index 6a577871..1f1585d7 100644 --- a/src/shaders/generated/dice_comp.h +++ b/src/shaders/generated/dice_comp.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_DICE_COMP_H namespace Pathfinder { - static uint8_t dice_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,47,47,32,67,104,111,112,115,32,108,105,110,101,115,32,97,110,100,32,99,117,114,118,101,115,32,105,110,116,111,32,109,105,99,114,111,108,105,110,101,115,46,13,10,13,10,35,100,101,102,105,110,101,32,66,73,78,95,87,79,82,75,71,82,79,85,80,95,83,73,90,69,32,54,52,13,10,13,10,35,100,101,102,105,110,101,32,77,65,88,95,67,85,82,86,69,95,83,84,65,67,75,95,83,73,90,69,32,51,50,13,10,13,10,35,100,101,102,105,110,101,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,32,48,120,56,48,48,48,48,48,48,48,117,13,10,35,100,101,102,105,110,101,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,67,85,66,73,67,32,48,120,52,48,48,48,48,48,48,48,117,13,10,13,10,35,100,101,102,105,110,101,32,66,73,78,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,77,73,67,82,79,76,73,78,69,95,67,79,85,78,84,95,73,78,68,69,88,32,51,13,10,13,10,35,100,101,102,105,110,101,32,84,79,76,69,82,65,78,67,69,32,48,46,50,53,13,10,35,100,101,102,105,110,101,32,77,73,67,82,79,76,73,78,69,95,76,69,78,71,84,72,32,49,54,46,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,48,32,123,13,10,32,32,32,32,109,97,116,50,32,117,84,114,97,110,115,102,111,114,109,59,13,10,32,32,32,32,118,101,99,50,32,117,84,114,97,110,115,108,97,116,105,111,110,59,13,10,32,32,32,32,118,101,99,50,32,112,97,100,48,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,49,32,123,13,10,32,32,32,32,105,110,116,32,117,80,97,116,104,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,76,97,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,59,13,10,32,32,32,32,105,110,116,32,117,77,97,120,77,105,99,114,111,108,105,110,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,112,97,100,49,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,114,101,115,116,114,105,99,116,32,98,117,102,102,101,114,32,98,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,117,109,98,101,114,32,111,102,32,120,32,119,111,114,107,103,114,111,117,112,115,32,40,97,99,116,117,97,108,108,121,32,110,111,116,32,117,115,101,100,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,110,117,109,98,101,114,32,111,102,32,121,32,119,111,114,107,103,114,111,117,112,115,32,40,97,108,119,97,121,115,32,49,41,32,40,97,99,116,117,97,108,108,121,32,110,111,116,32,117,115,101,100,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,110,117,109,98,101,114,32,111,102,32,122,32,119,111,114,107,103,114,111,117,112,115,32,40,97,108,119,97,121,115,32,49,41,32,40,97,99,116,117,97,108,108,121,32,110,111,116,32,117,115,101,100,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,110,117,109,98,101,114,32,111,102,32,111,117,116,112,117,116,32,109,105,99,114,111,108,105,110,101,115,13,10,32,32,32,32,117,105,110,116,32,105,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,91,93,59,13,10,125,59,13,10,13,10,47,47,32,73,110,100,101,120,101,100,32,98,121,32,98,97,116,99,104,32,112,97,116,104,32,105,110,100,101,120,46,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,98,117,102,102,101,114,32,98,68,105,99,101,77,101,116,97,100,97,116,97,32,123,13,10,32,32,32,32,47,47,32,120,58,32,103,108,111,98,97,108,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,121,58,32,102,105,114,115,116,32,103,108,111,98,97,108,32,115,101,103,109,101,110,116,32,105,110,100,101,120,13,10,32,32,32,32,47,47,32,122,58,32,102,105,114,115,116,32,98,97,116,99,104,32,115,101,103,109,101,110,116,32,105,110,100,101,120,13,10,32,32,32,32,47,47,32,119,58,32,117,110,117,115,101,100,13,10,32,32,32,32,117,118,101,99,52,32,105,68,105,99,101,77,101,116,97,100,97,116,97,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,98,117,102,102,101,114,32,98,80,111,105,110,116,115,32,123,13,10,32,32,32,32,118,101,99,50,32,105,80,111,105,110,116,115,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,98,117,102,102,101,114,32,98,73,110,112,117,116,73,110,100,105,99,101,115,32,123,13,10,32,32,32,32,117,118,101,99,50,32,105,73,110,112,117,116,73,110,100,105,99,101,115,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,52,41,32,114,101,115,116,114,105,99,116,32,119,114,105,116,101,111,110,108,121,32,98,117,102,102,101,114,32,98,77,105,99,114,111,108,105,110,101,115,32,123,13,10,32,32,32,32,47,47,32,120,58,32,102,114,111,109,32,40,88,44,32,89,41,32,119,104,111,108,101,32,112,105,120,101,108,115,44,32,112,97,99,107,101,100,32,115,105,103,110,101,100,32,49,54,45,98,105,116,13,10,32,32,32,32,47,47,32,121,58,32,116,111,32,40,88,44,32,89,41,32,119,104,111,108,101,32,112,105,120,101,108,115,44,32,112,97,99,107,101,100,32,115,105,103,110,101,100,32,49,54,45,98,105,116,13,10,32,32,32,32,47,47,32,122,58,32,40,102,114,111,109,32,88,44,32,102,114,111,109,32,89,44,32,116,111,32,88,44,32,116,111,32,89,41,32,102,114,97,99,116,105,111,110,97,108,32,112,105,120,101,108,115,44,32,112,97,99,107,101,100,32,117,110,115,105,103,110,101,100,32,56,45,98,105,116,32,40,48,46,56,32,102,105,120,101,100,32,112,111,105,110,116,41,13,10,32,32,32,32,47,47,32,119,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,117,118,101,99,52,32,105,77,105,99,114,111,108,105,110,101,115,91,93,59,13,10,125,59,13,10,13,10,47,47,47,32,83,97,118,101,32,116,104,101,32,111,98,116,97,105,110,101,100,32,109,105,99,114,111,108,105,110,101,46,13,10,118,111,105,100,32,101,109,105,116,77,105,99,114,111,108,105,110,101,40,118,101,99,52,32,109,105,99,114,111,108,105,110,101,83,101,103,109,101,110,116,44,32,117,105,110,116,32,112,97,116,104,73,110,100,101,120,44,32,117,105,110,116,32,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,105,102,32,40,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,77,97,120,77,105,99,114,111,108,105,110,101,67,111,117,110,116,41,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,47,47,32,105,49,54,40,45,51,50,55,54,56,44,32,51,50,55,54,56,41,46,13,10,32,32,32,32,47,47,32,120,50,53,54,32,97,110,116,105,45,97,108,105,97,115,105,110,103,63,13,10,32,32,32,32,105,118,101,99,52,32,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,32,61,32,105,118,101,99,52,40,114,111,117,110,100,40,99,108,97,109,112,40,109,105,99,114,111,108,105,110,101,83,101,103,109,101,110,116,44,32,45,51,50,55,54,56,46,48,44,32,51,50,55,54,55,46,48,41,32,42,32,50,53,54,46,48,41,41,59,13,10,32,32,32,32,105,118,101,99,52,32,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,32,61,32,105,118,101,99,52,40,102,108,111,111,114,40,118,101,99,52,40,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,41,32,47,32,50,53,54,46,48,41,41,59,13,10,32,32,32,32,105,118,101,99,52,32,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,32,61,32,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,32,45,32,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,32,42,32,50,53,54,59,13,10,13,10,32,32,32,32,47,47,32,80,97,99,107,46,13,10,32,32,32,32,105,77,105,99,114,111,108,105,110,101,115,91,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,93,32,61,13,10,32,32,32,32,32,32,32,32,117,118,101,99,52,40,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,120,41,32,38,32,48,120,102,102,102,102,117,41,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,121,41,32,60,60,32,49,54,41,44,13,10,32,32,32,32,32,32,32,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,122,41,32,38,32,48,120,102,102,102,102,117,41,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,119,41,32,60,60,32,49,54,41,44,13,10,32,32,32,32,32,32,32,32,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,120,41,32,32,32,32,32,32,32,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,121,41,32,60,60,32,56,41,32,124,13,10,32,32,32,32,32,32,32,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,122,41,32,60,60,32,49,54,41,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,119,41,32,60,60,32,50,52,41,44,13,10,32,32,32,32,32,32,32,32,112,97,116,104,73,110,100,101,120,41,59,13,10,125,13,10,13,10,47,47,32,83,101,101,32,75,97,115,112,97,114,32,70,105,115,99,104,101,114,44,32,34,80,105,101,99,101,119,105,115,101,32,76,105,110,101,97,114,32,65,112,112,114,111,120,105,109,97,116,105,111,110,32,111,102,32,66,195,169,122,105,101,114,32,67,117,114,118,101,115,34,44,32,50,48,48,48,46,13,10,98,111,111,108,32,99,117,114,118,101,73,115,70,108,97,116,40,118,101,99,52,32,98,97,115,101,108,105,110,101,44,32,118,101,99,52,32,99,116,114,108,41,32,123,13,10,32,32,32,32,118,101,99,52,32,117,118,32,61,32,118,101,99,52,40,51,46,48,41,32,42,32,99,116,114,108,32,45,32,118,101,99,52,40,50,46,48,41,32,42,32,98,97,115,101,108,105,110,101,32,45,32,98,97,115,101,108,105,110,101,46,122,119,120,121,59,13,10,32,32,32,32,117,118,32,42,61,32,117,118,59,13,10,32,32,32,32,117,118,32,61,32,109,97,120,40,117,118,44,32,117,118,46,122,119,120,121,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,117,118,46,120,32,43,32,117,118,46,121,32,60,61,32,49,54,46,48,32,42,32,84,79,76,69,82,65,78,67,69,32,42,32,84,79,76,69,82,65,78,67,69,59,13,10,125,13,10,13,10,118,111,105,100,32,115,117,98,100,105,118,105,100,101,67,117,114,118,101,40,118,101,99,52,32,98,97,115,101,108,105,110,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,99,116,114,108,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,108,111,97,116,32,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,112,114,101,118,66,97,115,101,108,105,110,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,112,114,101,118,67,116,114,108,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,110,101,120,116,66,97,115,101,108,105,110,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,110,101,120,116,67,116,114,108,41,32,123,13,10,32,32,32,32,118,101,99,50,32,112,48,32,61,32,98,97,115,101,108,105,110,101,46,120,121,44,32,112,49,32,61,32,99,116,114,108,46,120,121,44,32,112,50,32,61,32,99,116,114,108,46,122,119,44,32,112,51,32,61,32,98,97,115,101,108,105,110,101,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,32,61,32,109,105,120,40,112,48,44,32,112,49,44,32,116,41,44,32,112,49,112,50,32,61,32,109,105,120,40,112,49,44,32,112,50,44,32,116,41,44,32,112,50,112,51,32,61,32,109,105,120,40,112,50,44,32,112,51,44,32,116,41,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,112,50,32,61,32,109,105,120,40,112,48,112,49,44,32,112,49,112,50,44,32,116,41,44,32,112,49,112,50,112,51,32,61,32,109,105,120,40,112,49,112,50,44,32,112,50,112,51,44,32,116,41,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,112,50,112,51,32,61,32,109,105,120,40,112,48,112,49,112,50,44,32,112,49,112,50,112,51,44,32,116,41,59,13,10,32,32,32,32,112,114,101,118,66,97,115,101,108,105,110,101,32,61,32,118,101,99,52,40,112,48,44,32,112,48,112,49,112,50,112,51,41,59,13,10,32,32,32,32,112,114,101,118,67,116,114,108,32,61,32,118,101,99,52,40,112,48,112,49,44,32,112,48,112,49,112,50,41,59,13,10,32,32,32,32,110,101,120,116,66,97,115,101,108,105,110,101,32,61,32,118,101,99,52,40,112,48,112,49,112,50,112,51,44,32,112,51,41,59,13,10,32,32,32,32,110,101,120,116,67,116,114,108,32,61,32,118,101,99,52,40,112,49,112,50,112,51,44,32,112,50,112,51,41,59,13,10,125,13,10,13,10,118,101,99,50,32,115,97,109,112,108,101,67,117,114,118,101,40,118,101,99,52,32,98,97,115,101,108,105,110,101,44,32,118,101,99,52,32,99,116,114,108,44,32,102,108,111,97,116,32,116,41,32,123,13,10,32,32,32,32,118,101,99,50,32,112,48,32,61,32,98,97,115,101,108,105,110,101,46,120,121,44,32,112,49,32,61,32,99,116,114,108,46,120,121,44,32,112,50,32,61,32,99,116,114,108,46,122,119,44,32,112,51,32,61,32,98,97,115,101,108,105,110,101,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,32,61,32,109,105,120,40,112,48,44,32,112,49,44,32,116,41,44,32,112,49,112,50,32,61,32,109,105,120,40,112,49,44,32,112,50,44,32,116,41,44,32,112,50,112,51,32,61,32,109,105,120,40,112,50,44,32,112,51,44,32,116,41,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,112,50,32,61,32,109,105,120,40,112,48,112,49,44,32,112,49,112,50,44,32,116,41,44,32,112,49,112,50,112,51,32,61,32,109,105,120,40,112,49,112,50,44,32,112,50,112,51,44,32,116,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,120,40,112,48,112,49,112,50,44,32,112,49,112,50,112,51,44,32,116,41,59,13,10,125,13,10,13,10,118,101,99,50,32,115,97,109,112,108,101,76,105,110,101,40,118,101,99,52,32,108,105,110,101,44,32,102,108,111,97,116,32,116,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,120,40,108,105,110,101,46,120,121,44,32,108,105,110,101,46,122,119,44,32,116,41,59,13,10,125,13,10,13,10,118,101,99,50,32,103,101,116,80,111,105,110,116,40,117,105,110,116,32,112,111,105,110,116,73,110,100,101,120,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,117,84,114,97,110,115,102,111,114,109,32,42,32,105,80,111,105,110,116,115,91,112,111,105,110,116,73,110,100,101,120,93,32,43,32,117,84,114,97,110,115,108,97,116,105,111,110,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,47,47,32,79,110,101,32,112,97,116,104,32,112,101,114,32,116,104,114,101,97,100,46,13,10,32,32,32,32,117,105,110,116,32,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,76,97,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,41,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,112,97,116,104,32,105,110,100,101,120,46,13,10,32,32,32,32,117,105,110,116,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,48,117,44,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,117,105,110,116,40,117,80,97,116,104,67,111,117,110,116,41,59,13,10,32,32,32,32,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,59,13,10,32,32,32,32,119,104,105,108,101,32,40,105,116,101,114,97,116,105,111,110,32,60,32,49,48,50,52,32,38,38,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,49,117,32,60,32,104,105,103,104,80,97,116,104,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,80,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,40,104,105,103,104,80,97,116,104,73,110,100,101,120,32,45,32,108,111,119,80,97,116,104,73,110,100,101,120,41,32,47,32,50,117,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,105,68,105,99,101,77,101,116,97,100,97,116,97,46,122,58,32,102,105,114,115,116,32,98,97,116,99,104,32,115,101,103,109,101,110,116,32,105,110,100,101,120,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,61,32,105,68,105,99,101,77,101,116,97,100,97,116,97,91,109,105,100,80,97,116,104,73,110,100,101,120,93,46,122,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,60,32,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,61,61,32,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,117,105,110,116,32,98,97,116,99,104,80,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,59,13,10,13,10,32,32,32,32,47,47,32,67,72,89,58,32,70,101,116,99,104,32,116,104,101,32,100,105,99,101,32,109,101,116,97,100,97,116,97,32,111,102,32,78,111,46,98,97,116,99,104,80,97,116,104,73,110,100,101,120,32,112,97,116,104,46,13,10,32,32,32,32,117,118,101,99,52,32,100,105,99,101,77,101,116,97,100,97,116,97,32,61,32,105,68,105,99,101,77,101,116,97,100,97,116,97,91,98,97,116,99,104,80,97,116,104,73,110,100,101,120,93,59,13,10,32,32,32,32,117,105,110,116,32,102,105,114,115,116,71,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,32,61,32,100,105,99,101,77,101,116,97,100,97,116,97,46,121,59,13,10,32,32,32,32,117,105,110,116,32,102,105,114,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,32,61,32,100,105,99,101,77,101,116,97,100,97,116,97,46,122,59,13,10,32,32,32,32,117,105,110,116,32,103,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,32,61,32,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,45,32,102,105,114,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,32,43,13,10,32,32,32,32,102,105,114,115,116,71,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,59,13,10,13,10,32,32,32,32,117,118,101,99,50,32,105,110,112,117,116,73,110,100,105,99,101,115,32,61,32,105,73,110,112,117,116,73,110,100,105,99,101,115,91,103,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,93,59,13,10,32,32,32,32,117,105,110,116,32,102,114,111,109,80,111,105,110,116,73,110,100,101,120,32,61,32,105,110,112,117,116,73,110,100,105,99,101,115,46,120,44,32,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,61,32,105,110,112,117,116,73,110,100,105,99,101,115,46,121,59,13,10,13,10,32,32,32,32,117,105,110,116,32,116,111,80,111,105,110,116,73,110,100,101,120,32,61,32,102,114,111,109,80,111,105,110,116,73,110,100,101,120,59,13,10,32,32,32,32,105,102,32,40,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,67,85,66,73,67,41,32,33,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,116,111,80,111,105,110,116,73,110,100,101,120,32,43,61,32,51,117,59,13,10,32,32,32,32,101,108,115,101,32,105,102,32,40,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,41,32,33,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,116,111,80,111,105,110,116,73,110,100,101,120,32,43,61,32,50,117,59,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,116,111,80,111,105,110,116,73,110,100,101,120,32,43,61,32,49,117,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,112,111,105,110,116,32,112,111,115,105,116,105,111,110,115,32,98,121,32,105,110,100,101,120,46,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,108,105,110,101,32,61,32,118,101,99,52,40,103,101,116,80,111,105,110,116,40,102,114,111,109,80,111,105,110,116,73,110,100,101,120,41,44,32,103,101,116,80,111,105,110,116,40,116,111,80,111,105,110,116,73,110,100,101,120,41,41,59,13,10,13,10,32,32,32,32,47,47,32,82,101,97,100,32,99,111,110,116,114,111,108,32,112,111,105,110,116,115,32,105,102,32,97,112,112,108,105,99,97,98,108,101,44,32,97,110,100,32,99,97,108,99,117,108,97,116,101,32,110,117,109,98,101,114,32,111,102,32,115,101,103,109,101,110,116,115,46,13,10,32,32,32,32,47,47,13,10,32,32,32,32,47,47,32,84,104,101,32,116,101,99,104,110,105,113,117,101,32,105,115,32,102,114,111,109,32,84,104,111,109,97,115,32,83,101,100,101,114,98,101,114,103,44,32,34,67,111,109,112,117,116,101,114,45,65,105,100,101,100,32,71,101,111,109,101,116,114,105,99,32,68,101,115,105,103,110,34,32,110,111,116,101,115,44,32,115,101,99,116,105,111,110,13,10,32,32,32,32,47,47,32,49,48,46,54,32,34,69,114,114,111,114,32,66,111,117,110,100,115,34,46,13,10,32,32,32,32,118,101,99,52,32,99,116,114,108,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,102,108,111,97,116,32,115,101,103,109,101,110,116,67,111,117,110,116,70,59,13,10,32,32,32,32,98,111,111,108,32,105,115,67,117,114,118,101,32,61,32,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,40,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,67,85,66,73,67,32,124,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,41,41,32,33,61,32,48,117,59,13,10,32,32,32,32,105,102,32,40,105,115,67,117,114,118,101,41,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,99,116,114,108,48,32,61,32,103,101,116,80,111,105,110,116,40,102,114,111,109,80,111,105,110,116,73,110,100,101,120,32,43,32,49,117,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,41,32,33,61,32,48,117,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,99,116,114,108,48,95,50,32,61,32,99,116,114,108,48,32,42,32,118,101,99,50,40,50,46,48,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,32,61,32,40,98,97,115,101,108,105,110,101,32,43,32,40,99,116,114,108,48,32,42,32,118,101,99,50,40,50,46,48,41,41,46,120,121,120,121,41,32,42,32,118,101,99,52,40,49,46,48,32,47,32,51,46,48,41,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,32,61,32,118,101,99,52,40,99,116,114,108,48,44,32,103,101,116,80,111,105,110,116,40,102,114,111,109,80,111,105,110,116,73,110,100,101,120,32,43,32,50,117,41,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,98,111,117,110,100,32,61,32,118,101,99,50,40,54,46,48,41,32,42,32,109,97,120,40,97,98,115,40,99,116,114,108,46,122,119,32,45,32,50,46,48,32,42,32,99,116,114,108,46,120,121,32,43,32,98,97,115,101,108,105,110,101,46,120,121,41,44,13,10,32,32,32,32,32,32,32,32,97,98,115,40,98,97,115,101,108,105,110,101,46,122,119,32,45,32,50,46,48,32,42,32,99,116,114,108,46,122,119,32,43,32,99,116,114,108,46,120,121,41,41,59,13,10,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,67,111,117,110,116,70,32,61,32,115,113,114,116,40,108,101,110,103,116,104,40,98,111,117,110,100,41,32,47,32,40,56,46,48,32,42,32,84,79,76,69,82,65,78,67,69,41,41,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,67,111,117,110,116,70,32,61,32,108,101,110,103,116,104,40,98,97,115,101,108,105,110,101,46,122,119,32,45,32,98,97,115,101,108,105,110,101,46,120,121,41,32,47,32,77,73,67,82,79,76,73,78,69,95,76,69,78,71,84,72,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,77,105,99,114,111,108,105,110,101,32,99,111,117,110,116,46,13,10,32,32,32,32,105,110,116,32,115,101,103,109,101,110,116,67,111,117,110,116,32,61,32,109,97,120,40,105,110,116,40,99,101,105,108,40,115,101,103,109,101,110,116,67,111,117,110,116,70,41,41,44,32,49,41,59,13,10,13,10,32,32,32,32,47,47,32,85,112,100,97,116,101,32,109,105,99,114,111,108,105,110,101,95,99,111,117,110,116,32,105,110,32,116,104,101,32,105,110,100,105,114,101,99,116,95,99,111,109,112,117,116,101,95,112,97,114,97,109,115,46,13,10,32,32,32,32,117,105,110,116,32,102,105,114,115,116,79,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,32,61,32,97,116,111,109,105,99,65,100,100,40,105,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,91,66,73,78,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,77,73,67,82,79,76,73,78,69,95,67,79,85,78,84,95,73,78,68,69,88,93,44,32,117,105,110,116,40,115,101,103,109,101,110,116,67,111,117,110,116,41,41,59,13,10,13,10,32,32,32,32,47,47,32,79,110,45,112,97,116,104,32,116,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,46,13,10,32,32,32,32,102,108,111,97,116,32,112,114,101,118,84,32,61,32,48,46,48,59,13,10,13,10,32,32,32,32,47,47,32,67,72,89,58,32,82,101,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,46,13,10,32,32,32,32,118,101,99,50,32,112,114,101,118,80,111,105,110,116,32,61,32,98,97,115,101,108,105,110,101,46,120,121,59,13,10,13,10,32,32,32,32,47,47,32,68,111,32,116,104,101,32,99,117,116,46,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,115,101,103,109,101,110,116,73,110,100,101,120,32,61,32,48,59,32,115,101,103,109,101,110,116,73,110,100,101,120,32,60,32,115,101,103,109,101,110,116,67,111,117,110,116,59,32,115,101,103,109,101,110,116,73,110,100,101,120,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,110,101,120,116,84,32,61,32,102,108,111,97,116,40,115,101,103,109,101,110,116,73,110,100,101,120,32,43,32,49,41,32,47,32,102,108,111,97,116,40,115,101,103,109,101,110,116,67,111,117,110,116,41,59,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,110,101,120,116,80,111,105,110,116,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,83,97,109,112,108,101,32,112,111,105,110,116,32,111,110,32,112,97,116,104,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,117,114,118,101,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,80,111,105,110,116,32,61,32,115,97,109,112,108,101,67,117,114,118,101,40,98,97,115,101,108,105,110,101,44,32,99,116,114,108,44,32,110,101,120,116,84,41,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,80,111,105,110,116,32,61,32,115,97,109,112,108,101,76,105,110,101,40,98,97,115,101,108,105,110,101,44,32,110,101,120,116,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,101,109,105,116,77,105,99,114,111,108,105,110,101,40,118,101,99,52,40,112,114,101,118,80,111,105,110,116,44,32,110,101,120,116,80,111,105,110,116,41,44,32,98,97,116,99,104,80,97,116,104,73,110,100,101,120,44,32,102,105,114,115,116,79,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,32,43,32,117,105,110,116,40,115,101,103,109,101,110,116,73,110,100,101,120,41,41,59,13,10,32,32,32,32,32,32,32,32,112,114,101,118,84,32,61,32,110,101,120,116,84,59,13,10,32,32,32,32,32,32,32,32,112,114,101,118,80,111,105,110,116,32,61,32,110,101,120,116,80,111,105,110,116,59,13,10,32,32,32,32,125,13,10,125,13,10}; + static uint8_t dice_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,47,47,32,67,104,111,112,115,32,108,105,110,101,115,32,97,110,100,32,99,117,114,118,101,115,32,105,110,116,111,32,109,105,99,114,111,108,105,110,101,115,46,13,10,13,10,35,100,101,102,105,110,101,32,66,73,78,95,87,79,82,75,71,82,79,85,80,95,83,73,90,69,32,54,52,13,10,13,10,35,100,101,102,105,110,101,32,77,65,88,95,67,85,82,86,69,95,83,84,65,67,75,95,83,73,90,69,32,51,50,13,10,13,10,35,100,101,102,105,110,101,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,32,48,120,56,48,48,48,48,48,48,48,117,13,10,35,100,101,102,105,110,101,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,67,85,66,73,67,32,48,120,52,48,48,48,48,48,48,48,117,13,10,13,10,35,100,101,102,105,110,101,32,66,73,78,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,77,73,67,82,79,76,73,78,69,95,67,79,85,78,84,95,73,78,68,69,88,32,51,13,10,13,10,35,100,101,102,105,110,101,32,84,79,76,69,82,65,78,67,69,32,48,46,50,53,13,10,35,100,101,102,105,110,101,32,77,73,67,82,79,76,73,78,69,95,76,69,78,71,84,72,32,49,54,46,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,48,32,123,13,10,32,32,32,32,109,97,116,50,32,117,84,114,97,110,115,102,111,114,109,59,13,10,32,32,32,32,118,101,99,50,32,117,84,114,97,110,115,108,97,116,105,111,110,59,13,10,32,32,32,32,118,101,99,50,32,117,80,97,100,48,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,49,32,123,13,10,32,32,32,32,105,110,116,32,117,80,97,116,104,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,76,97,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,59,13,10,32,32,32,32,105,110,116,32,117,77,97,120,77,105,99,114,111,108,105,110,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,49,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,114,101,115,116,114,105,99,116,32,98,117,102,102,101,114,32,98,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,117,109,98,101,114,32,111,102,32,120,32,119,111,114,107,103,114,111,117,112,115,32,40,97,99,116,117,97,108,108,121,32,110,111,116,32,117,115,101,100,41,13,10,32,32,32,32,47,47,32,91,49,93,58,32,110,117,109,98,101,114,32,111,102,32,121,32,119,111,114,107,103,114,111,117,112,115,32,40,97,108,119,97,121,115,32,49,41,32,40,97,99,116,117,97,108,108,121,32,110,111,116,32,117,115,101,100,41,13,10,32,32,32,32,47,47,32,91,50,93,58,32,110,117,109,98,101,114,32,111,102,32,122,32,119,111,114,107,103,114,111,117,112,115,32,40,97,108,119,97,121,115,32,49,41,32,40,97,99,116,117,97,108,108,121,32,110,111,116,32,117,115,101,100,41,13,10,32,32,32,32,47,47,32,91,51,93,58,32,110,117,109,98,101,114,32,111,102,32,111,117,116,112,117,116,32,109,105,99,114,111,108,105,110,101,115,13,10,32,32,32,32,117,105,110,116,32,105,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,91,93,59,13,10,125,59,13,10,13,10,47,47,32,73,110,100,101,120,101,100,32,98,121,32,98,97,116,99,104,32,112,97,116,104,32,105,110,100,101,120,46,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,98,117,102,102,101,114,32,98,68,105,99,101,77,101,116,97,100,97,116,97,32,123,13,10,32,32,32,32,47,47,32,120,58,32,103,108,111,98,97,108,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,121,58,32,102,105,114,115,116,32,103,108,111,98,97,108,32,115,101,103,109,101,110,116,32,105,110,100,101,120,13,10,32,32,32,32,47,47,32,122,58,32,102,105,114,115,116,32,98,97,116,99,104,32,115,101,103,109,101,110,116,32,105,110,100,101,120,13,10,32,32,32,32,47,47,32,119,58,32,117,110,117,115,101,100,13,10,32,32,32,32,117,118,101,99,52,32,105,68,105,99,101,77,101,116,97,100,97,116,97,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,98,117,102,102,101,114,32,98,80,111,105,110,116,115,32,123,13,10,32,32,32,32,118,101,99,50,32,105,80,111,105,110,116,115,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,98,117,102,102,101,114,32,98,73,110,112,117,116,73,110,100,105,99,101,115,32,123,13,10,32,32,32,32,117,118,101,99,50,32,105,73,110,112,117,116,73,110,100,105,99,101,115,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,52,41,32,114,101,115,116,114,105,99,116,32,119,114,105,116,101,111,110,108,121,32,98,117,102,102,101,114,32,98,77,105,99,114,111,108,105,110,101,115,32,123,13,10,32,32,32,32,47,47,32,120,58,32,102,114,111,109,32,40,88,44,32,89,41,32,119,104,111,108,101,32,112,105,120,101,108,115,44,32,112,97,99,107,101,100,32,115,105,103,110,101,100,32,49,54,45,98,105,116,13,10,32,32,32,32,47,47,32,121,58,32,116,111,32,40,88,44,32,89,41,32,119,104,111,108,101,32,112,105,120,101,108,115,44,32,112,97,99,107,101,100,32,115,105,103,110,101,100,32,49,54,45,98,105,116,13,10,32,32,32,32,47,47,32,122,58,32,40,102,114,111,109,32,88,44,32,102,114,111,109,32,89,44,32,116,111,32,88,44,32,116,111,32,89,41,32,102,114,97,99,116,105,111,110,97,108,32,112,105,120,101,108,115,44,32,112,97,99,107,101,100,32,117,110,115,105,103,110,101,100,32,56,45,98,105,116,32,40,48,46,56,32,102,105,120,101,100,32,112,111,105,110,116,41,13,10,32,32,32,32,47,47,32,119,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,117,118,101,99,52,32,105,77,105,99,114,111,108,105,110,101,115,91,93,59,13,10,125,59,13,10,13,10,47,47,47,32,83,97,118,101,32,116,104,101,32,111,98,116,97,105,110,101,100,32,109,105,99,114,111,108,105,110,101,46,13,10,118,111,105,100,32,101,109,105,116,77,105,99,114,111,108,105,110,101,40,118,101,99,52,32,109,105,99,114,111,108,105,110,101,83,101,103,109,101,110,116,44,32,117,105,110,116,32,112,97,116,104,73,110,100,101,120,44,32,117,105,110,116,32,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,105,102,32,40,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,77,97,120,77,105,99,114,111,108,105,110,101,67,111,117,110,116,41,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,47,47,32,105,49,54,40,45,51,50,55,54,56,44,32,51,50,55,54,56,41,46,13,10,32,32,32,32,47,47,32,120,50,53,54,32,97,110,116,105,45,97,108,105,97,115,105,110,103,63,13,10,32,32,32,32,105,118,101,99,52,32,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,32,61,32,105,118,101,99,52,40,114,111,117,110,100,40,99,108,97,109,112,40,109,105,99,114,111,108,105,110,101,83,101,103,109,101,110,116,44,32,45,51,50,55,54,56,46,48,44,32,51,50,55,54,55,46,48,41,32,42,32,50,53,54,46,48,41,41,59,13,10,32,32,32,32,105,118,101,99,52,32,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,32,61,32,105,118,101,99,52,40,102,108,111,111,114,40,118,101,99,52,40,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,41,32,47,32,50,53,54,46,48,41,41,59,13,10,32,32,32,32,105,118,101,99,52,32,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,32,61,32,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,32,45,32,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,32,42,32,50,53,54,59,13,10,13,10,32,32,32,32,47,47,32,80,97,99,107,46,13,10,32,32,32,32,105,77,105,99,114,111,108,105,110,101,115,91,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,93,32,61,13,10,32,32,32,32,32,32,32,32,117,118,101,99,52,40,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,120,41,32,38,32,48,120,102,102,102,102,117,41,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,121,41,32,60,60,32,49,54,41,44,13,10,32,32,32,32,32,32,32,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,122,41,32,38,32,48,120,102,102,102,102,117,41,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,46,119,41,32,60,60,32,49,54,41,44,13,10,32,32,32,32,32,32,32,32,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,120,41,32,32,32,32,32,32,32,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,121,41,32,60,60,32,56,41,32,124,13,10,32,32,32,32,32,32,32,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,122,41,32,60,60,32,49,54,41,32,124,32,40,117,105,110,116,40,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,46,119,41,32,60,60,32,50,52,41,44,13,10,32,32,32,32,32,32,32,32,112,97,116,104,73,110,100,101,120,41,59,13,10,125,13,10,13,10,47,47,32,83,101,101,32,75,97,115,112,97,114,32,70,105,115,99,104,101,114,44,32,34,80,105,101,99,101,119,105,115,101,32,76,105,110,101,97,114,32,65,112,112,114,111,120,105,109,97,116,105,111,110,32,111,102,32,66,195,169,122,105,101,114,32,67,117,114,118,101,115,34,44,32,50,48,48,48,46,13,10,98,111,111,108,32,99,117,114,118,101,73,115,70,108,97,116,40,118,101,99,52,32,98,97,115,101,108,105,110,101,44,32,118,101,99,52,32,99,116,114,108,41,32,123,13,10,32,32,32,32,118,101,99,52,32,117,118,32,61,32,118,101,99,52,40,51,46,48,41,32,42,32,99,116,114,108,32,45,32,118,101,99,52,40,50,46,48,41,32,42,32,98,97,115,101,108,105,110,101,32,45,32,98,97,115,101,108,105,110,101,46,122,119,120,121,59,13,10,32,32,32,32,117,118,32,42,61,32,117,118,59,13,10,32,32,32,32,117,118,32,61,32,109,97,120,40,117,118,44,32,117,118,46,122,119,120,121,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,117,118,46,120,32,43,32,117,118,46,121,32,60,61,32,49,54,46,48,32,42,32,84,79,76,69,82,65,78,67,69,32,42,32,84,79,76,69,82,65,78,67,69,59,13,10,125,13,10,13,10,118,111,105,100,32,115,117,98,100,105,118,105,100,101,67,117,114,118,101,40,118,101,99,52,32,98,97,115,101,108,105,110,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,99,116,114,108,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,108,111,97,116,32,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,112,114,101,118,66,97,115,101,108,105,110,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,112,114,101,118,67,116,114,108,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,110,101,120,116,66,97,115,101,108,105,110,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,52,32,110,101,120,116,67,116,114,108,41,32,123,13,10,32,32,32,32,118,101,99,50,32,112,48,32,61,32,98,97,115,101,108,105,110,101,46,120,121,44,32,112,49,32,61,32,99,116,114,108,46,120,121,44,32,112,50,32,61,32,99,116,114,108,46,122,119,44,32,112,51,32,61,32,98,97,115,101,108,105,110,101,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,32,61,32,109,105,120,40,112,48,44,32,112,49,44,32,116,41,44,32,112,49,112,50,32,61,32,109,105,120,40,112,49,44,32,112,50,44,32,116,41,44,32,112,50,112,51,32,61,32,109,105,120,40,112,50,44,32,112,51,44,32,116,41,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,112,50,32,61,32,109,105,120,40,112,48,112,49,44,32,112,49,112,50,44,32,116,41,44,32,112,49,112,50,112,51,32,61,32,109,105,120,40,112,49,112,50,44,32,112,50,112,51,44,32,116,41,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,112,50,112,51,32,61,32,109,105,120,40,112,48,112,49,112,50,44,32,112,49,112,50,112,51,44,32,116,41,59,13,10,32,32,32,32,112,114,101,118,66,97,115,101,108,105,110,101,32,61,32,118,101,99,52,40,112,48,44,32,112,48,112,49,112,50,112,51,41,59,13,10,32,32,32,32,112,114,101,118,67,116,114,108,32,61,32,118,101,99,52,40,112,48,112,49,44,32,112,48,112,49,112,50,41,59,13,10,32,32,32,32,110,101,120,116,66,97,115,101,108,105,110,101,32,61,32,118,101,99,52,40,112,48,112,49,112,50,112,51,44,32,112,51,41,59,13,10,32,32,32,32,110,101,120,116,67,116,114,108,32,61,32,118,101,99,52,40,112,49,112,50,112,51,44,32,112,50,112,51,41,59,13,10,125,13,10,13,10,118,101,99,50,32,115,97,109,112,108,101,67,117,114,118,101,40,118,101,99,52,32,98,97,115,101,108,105,110,101,44,32,118,101,99,52,32,99,116,114,108,44,32,102,108,111,97,116,32,116,41,32,123,13,10,32,32,32,32,118,101,99,50,32,112,48,32,61,32,98,97,115,101,108,105,110,101,46,120,121,44,32,112,49,32,61,32,99,116,114,108,46,120,121,44,32,112,50,32,61,32,99,116,114,108,46,122,119,44,32,112,51,32,61,32,98,97,115,101,108,105,110,101,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,32,61,32,109,105,120,40,112,48,44,32,112,49,44,32,116,41,44,32,112,49,112,50,32,61,32,109,105,120,40,112,49,44,32,112,50,44,32,116,41,44,32,112,50,112,51,32,61,32,109,105,120,40,112,50,44,32,112,51,44,32,116,41,59,13,10,32,32,32,32,118,101,99,50,32,112,48,112,49,112,50,32,61,32,109,105,120,40,112,48,112,49,44,32,112,49,112,50,44,32,116,41,44,32,112,49,112,50,112,51,32,61,32,109,105,120,40,112,49,112,50,44,32,112,50,112,51,44,32,116,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,120,40,112,48,112,49,112,50,44,32,112,49,112,50,112,51,44,32,116,41,59,13,10,125,13,10,13,10,118,101,99,50,32,115,97,109,112,108,101,76,105,110,101,40,118,101,99,52,32,108,105,110,101,44,32,102,108,111,97,116,32,116,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,120,40,108,105,110,101,46,120,121,44,32,108,105,110,101,46,122,119,44,32,116,41,59,13,10,125,13,10,13,10,118,101,99,50,32,103,101,116,80,111,105,110,116,40,117,105,110,116,32,112,111,105,110,116,73,110,100,101,120,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,117,84,114,97,110,115,102,111,114,109,32,42,32,105,80,111,105,110,116,115,91,112,111,105,110,116,73,110,100,101,120,93,32,43,32,117,84,114,97,110,115,108,97,116,105,111,110,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,47,47,32,79,110,101,32,112,97,116,104,32,112,101,114,32,116,104,114,101,97,100,46,13,10,32,32,32,32,117,105,110,116,32,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,76,97,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,41,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,47,47,32,70,105,110,100,32,116,104,101,32,112,97,116,104,32,105,110,100,101,120,46,13,10,32,32,32,32,117,105,110,116,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,48,117,44,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,117,105,110,116,40,117,80,97,116,104,67,111,117,110,116,41,59,13,10,32,32,32,32,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,59,13,10,32,32,32,32,119,104,105,108,101,32,40,105,116,101,114,97,116,105,111,110,32,60,32,49,48,50,52,32,38,38,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,49,117,32,60,32,104,105,103,104,80,97,116,104,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,80,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,32,43,32,40,104,105,103,104,80,97,116,104,73,110,100,101,120,32,45,32,108,111,119,80,97,116,104,73,110,100,101,120,41,32,47,32,50,117,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,105,68,105,99,101,77,101,116,97,100,97,116,97,46,122,58,32,102,105,114,115,116,32,98,97,116,99,104,32,115,101,103,109,101,110,116,32,105,110,100,101,120,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,61,32,105,68,105,99,101,77,101,116,97,100,97,116,97,91,109,105,100,80,97,116,104,73,110,100,101,120,93,46,122,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,60,32,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,104,105,103,104,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,119,80,97,116,104,73,110,100,101,120,32,61,32,109,105,100,80,97,116,104,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,61,61,32,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,117,105,110,116,32,98,97,116,99,104,80,97,116,104,73,110,100,101,120,32,61,32,108,111,119,80,97,116,104,73,110,100,101,120,59,13,10,13,10,32,32,32,32,47,47,32,67,72,89,58,32,70,101,116,99,104,32,116,104,101,32,100,105,99,101,32,109,101,116,97,100,97,116,97,32,111,102,32,78,111,46,98,97,116,99,104,80,97,116,104,73,110,100,101,120,32,112,97,116,104,46,13,10,32,32,32,32,117,118,101,99,52,32,100,105,99,101,77,101,116,97,100,97,116,97,32,61,32,105,68,105,99,101,77,101,116,97,100,97,116,97,91,98,97,116,99,104,80,97,116,104,73,110,100,101,120,93,59,13,10,32,32,32,32,117,105,110,116,32,102,105,114,115,116,71,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,32,61,32,100,105,99,101,77,101,116,97,100,97,116,97,46,121,59,13,10,32,32,32,32,117,105,110,116,32,102,105,114,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,32,61,32,100,105,99,101,77,101,116,97,100,97,116,97,46,122,59,13,10,32,32,32,32,117,105,110,116,32,103,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,32,61,32,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,32,45,32,102,105,114,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,32,43,13,10,32,32,32,32,102,105,114,115,116,71,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,59,13,10,13,10,32,32,32,32,117,118,101,99,50,32,105,110,112,117,116,73,110,100,105,99,101,115,32,61,32,105,73,110,112,117,116,73,110,100,105,99,101,115,91,103,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,93,59,13,10,32,32,32,32,117,105,110,116,32,102,114,111,109,80,111,105,110,116,73,110,100,101,120,32,61,32,105,110,112,117,116,73,110,100,105,99,101,115,46,120,44,32,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,61,32,105,110,112,117,116,73,110,100,105,99,101,115,46,121,59,13,10,13,10,32,32,32,32,117,105,110,116,32,116,111,80,111,105,110,116,73,110,100,101,120,32,61,32,102,114,111,109,80,111,105,110,116,73,110,100,101,120,59,13,10,32,32,32,32,105,102,32,40,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,67,85,66,73,67,41,32,33,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,116,111,80,111,105,110,116,73,110,100,101,120,32,43,61,32,51,117,59,13,10,32,32,32,32,101,108,115,101,32,105,102,32,40,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,41,32,33,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,116,111,80,111,105,110,116,73,110,100,101,120,32,43,61,32,50,117,59,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,116,111,80,111,105,110,116,73,110,100,101,120,32,43,61,32,49,117,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,115,116,97,114,116,32,97,110,100,32,101,110,100,32,112,111,105,110,116,32,112,111,115,105,116,105,111,110,115,32,98,121,32,105,110,100,101,120,46,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,108,105,110,101,32,61,32,118,101,99,52,40,103,101,116,80,111,105,110,116,40,102,114,111,109,80,111,105,110,116,73,110,100,101,120,41,44,32,103,101,116,80,111,105,110,116,40,116,111,80,111,105,110,116,73,110,100,101,120,41,41,59,13,10,13,10,32,32,32,32,47,47,32,82,101,97,100,32,99,111,110,116,114,111,108,32,112,111,105,110,116,115,32,105,102,32,97,112,112,108,105,99,97,98,108,101,44,32,97,110,100,32,99,97,108,99,117,108,97,116,101,32,110,117,109,98,101,114,32,111,102,32,115,101,103,109,101,110,116,115,46,13,10,32,32,32,32,47,47,13,10,32,32,32,32,47,47,32,84,104,101,32,116,101,99,104,110,105,113,117,101,32,105,115,32,102,114,111,109,32,84,104,111,109,97,115,32,83,101,100,101,114,98,101,114,103,44,32,34,67,111,109,112,117,116,101,114,45,65,105,100,101,100,32,71,101,111,109,101,116,114,105,99,32,68,101,115,105,103,110,34,32,110,111,116,101,115,44,32,115,101,99,116,105,111,110,13,10,32,32,32,32,47,47,32,49,48,46,54,32,34,69,114,114,111,114,32,66,111,117,110,100,115,34,46,13,10,32,32,32,32,118,101,99,52,32,99,116,114,108,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,102,108,111,97,116,32,115,101,103,109,101,110,116,67,111,117,110,116,70,59,13,10,32,32,32,32,98,111,111,108,32,105,115,67,117,114,118,101,32,61,32,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,40,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,67,85,66,73,67,32,124,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,41,41,32,33,61,32,48,117,59,13,10,32,32,32,32,105,102,32,40,105,115,67,117,114,118,101,41,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,99,116,114,108,48,32,61,32,103,101,116,80,111,105,110,116,40,102,114,111,109,80,111,105,110,116,73,110,100,101,120,32,43,32,49,117,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,40,102,108,97,103,115,80,97,116,104,73,110,100,101,120,32,38,32,70,76,65,71,83,95,80,65,84,72,95,73,78,68,69,88,95,67,85,82,86,69,95,73,83,95,81,85,65,68,82,65,84,73,67,41,32,33,61,32,48,117,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,99,116,114,108,48,95,50,32,61,32,99,116,114,108,48,32,42,32,118,101,99,50,40,50,46,48,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,32,61,32,40,98,97,115,101,108,105,110,101,32,43,32,40,99,116,114,108,48,32,42,32,118,101,99,50,40,50,46,48,41,41,46,120,121,120,121,41,32,42,32,118,101,99,52,40,49,46,48,32,47,32,51,46,48,41,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,32,61,32,118,101,99,52,40,99,116,114,108,48,44,32,103,101,116,80,111,105,110,116,40,102,114,111,109,80,111,105,110,116,73,110,100,101,120,32,43,32,50,117,41,41,59,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,98,111,117,110,100,32,61,32,118,101,99,50,40,54,46,48,41,32,42,32,109,97,120,40,97,98,115,40,99,116,114,108,46,122,119,32,45,32,50,46,48,32,42,32,99,116,114,108,46,120,121,32,43,32,98,97,115,101,108,105,110,101,46,120,121,41,44,13,10,32,32,32,32,32,32,32,32,97,98,115,40,98,97,115,101,108,105,110,101,46,122,119,32,45,32,50,46,48,32,42,32,99,116,114,108,46,122,119,32,43,32,99,116,114,108,46,120,121,41,41,59,13,10,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,67,111,117,110,116,70,32,61,32,115,113,114,116,40,108,101,110,103,116,104,40,98,111,117,110,100,41,32,47,32,40,56,46,48,32,42,32,84,79,76,69,82,65,78,67,69,41,41,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,115,101,103,109,101,110,116,67,111,117,110,116,70,32,61,32,108,101,110,103,116,104,40,98,97,115,101,108,105,110,101,46,122,119,32,45,32,98,97,115,101,108,105,110,101,46,120,121,41,32,47,32,77,73,67,82,79,76,73,78,69,95,76,69,78,71,84,72,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,77,105,99,114,111,108,105,110,101,32,99,111,117,110,116,46,13,10,32,32,32,32,105,110,116,32,115,101,103,109,101,110,116,67,111,117,110,116,32,61,32,109,97,120,40,105,110,116,40,99,101,105,108,40,115,101,103,109,101,110,116,67,111,117,110,116,70,41,41,44,32,49,41,59,13,10,13,10,32,32,32,32,47,47,32,85,112,100,97,116,101,32,109,105,99,114,111,108,105,110,101,95,99,111,117,110,116,32,105,110,32,116,104,101,32,105,110,100,105,114,101,99,116,95,99,111,109,112,117,116,101,95,112,97,114,97,109,115,46,13,10,32,32,32,32,117,105,110,116,32,102,105,114,115,116,79,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,32,61,32,97,116,111,109,105,99,65,100,100,40,105,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,91,66,73,78,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,77,73,67,82,79,76,73,78,69,95,67,79,85,78,84,95,73,78,68,69,88,93,44,32,117,105,110,116,40,115,101,103,109,101,110,116,67,111,117,110,116,41,41,59,13,10,13,10,32,32,32,32,47,47,32,79,110,45,112,97,116,104,32,116,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,46,13,10,32,32,32,32,102,108,111,97,116,32,112,114,101,118,84,32,61,32,48,46,48,59,13,10,13,10,32,32,32,32,47,47,32,67,72,89,58,32,82,101,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,112,114,101,118,105,111,117,115,32,112,111,105,110,116,46,13,10,32,32,32,32,118,101,99,50,32,112,114,101,118,80,111,105,110,116,32,61,32,98,97,115,101,108,105,110,101,46,120,121,59,13,10,13,10,32,32,32,32,47,47,32,68,111,32,116,104,101,32,99,117,116,46,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,115,101,103,109,101,110,116,73,110,100,101,120,32,61,32,48,59,32,115,101,103,109,101,110,116,73,110,100,101,120,32,60,32,115,101,103,109,101,110,116,67,111,117,110,116,59,32,115,101,103,109,101,110,116,73,110,100,101,120,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,110,101,120,116,84,32,61,32,102,108,111,97,116,40,115,101,103,109,101,110,116,73,110,100,101,120,32,43,32,49,41,32,47,32,102,108,111,97,116,40,115,101,103,109,101,110,116,67,111,117,110,116,41,59,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,110,101,120,116,80,111,105,110,116,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,83,97,109,112,108,101,32,112,111,105,110,116,32,111,110,32,112,97,116,104,46,13,10,32,32,32,32,32,32,32,32,105,102,32,40,105,115,67,117,114,118,101,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,80,111,105,110,116,32,61,32,115,97,109,112,108,101,67,117,114,118,101,40,98,97,115,101,108,105,110,101,44,32,99,116,114,108,44,32,110,101,120,116,84,41,59,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,110,101,120,116,80,111,105,110,116,32,61,32,115,97,109,112,108,101,76,105,110,101,40,98,97,115,101,108,105,110,101,44,32,110,101,120,116,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,101,109,105,116,77,105,99,114,111,108,105,110,101,40,118,101,99,52,40,112,114,101,118,80,111,105,110,116,44,32,110,101,120,116,80,111,105,110,116,41,44,32,98,97,116,99,104,80,97,116,104,73,110,100,101,120,44,32,102,105,114,115,116,79,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,32,43,32,117,105,110,116,40,115,101,103,109,101,110,116,73,110,100,101,120,41,41,59,13,10,32,32,32,32,32,32,32,32,112,114,101,118,84,32,61,32,110,101,120,116,84,59,13,10,32,32,32,32,32,32,32,32,112,114,101,118,80,111,105,110,116,32,61,32,110,101,120,116,80,111,105,110,116,59,13,10,32,32,32,32,125,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_DICE_COMP_H diff --git a/src/shaders/generated/dice_comp_spv.h b/src/shaders/generated/dice_comp_spv.h index 655ff478..faf89a02 100644 --- a/src/shaders/generated/dice_comp_spv.h +++ b/src/shaders/generated/dice_comp_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_DICE_COMP_SPV_H namespace Pathfinder { - static uint8_t dice_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,254,1,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,216,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,9,0,15,0,0,0,101,109,105,116,77,105,99,114,111,108,105,110,101,40,118,102,52,59,117,49,59,117,49,59,0,0,0,0,5,0,7,0,12,0,0,0,109,105,99,114,111,108,105,110,101,83,101,103,109,101,110,116,0,0,0,0,5,0,5,0,13,0,0,0,112,97,116,104,73,110,100,101,120,0,0,0,5,0,8,0,14,0,0,0,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,0,0,0,0,5,0,8,0,23,0,0,0,115,97,109,112,108,101,67,117,114,118,101,40,118,102,52,59,118,102,52,59,102,49,59,0,5,0,5,0,20,0,0,0,98,97,115,101,108,105,110,101,0,0,0,0,5,0,4,0,21,0,0,0,99,116,114,108,0,0,0,0,5,0,3,0,22,0,0,0,116,0,0,0,5,0,7,0,28,0,0,0,115,97,109,112,108,101,76,105,110,101,40,118,102,52,59,102,49,59,0,0,5,0,4,0,26,0,0,0,108,105,110,101,0,0,0,0,5,0,3,0,27,0,0,0,116,0,0,0,5,0,6,0,32,0,0,0,103,101,116,80,111,105,110,116,40,117,49,59,0,0,0,0,5,0,5,0,31,0,0,0,112,111,105,110,116,73,110,100,101,120,0,0,5,0,5,0,36,0,0,0,98,85,110,105,102,111,114,109,49,0,0,0,6,0,6,0,36,0,0,0,0,0,0,0,117,80,97,116,104,67,111,117,110,116,0,0,6,0,9,0,36,0,0,0,1,0,0,0,117,76,97,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,0,0,6,0,8,0,36,0,0,0,2,0,0,0,117,77,97,120,77,105,99,114,111,108,105,110,101,67,111,117,110,116,0,0,6,0,5,0,36,0,0,0,3,0,0,0,112,97,100,49,0,0,0,0,5,0,3,0,38,0,0,0,0,0,0,0,5,0,7,0,51,0,0,0,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,0,0,5,0,6,0,62,0,0,0,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,0,5,0,8,0,69,0,0,0,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,0,0,0,0,5,0,5,0,78,0,0,0,98,77,105,99,114,111,108,105,110,101,115,0,6,0,6,0,78,0,0,0,0,0,0,0,105,77,105,99,114,111,108,105,110,101,115,0,5,0,3,0,80,0,0,0,0,0,0,0,5,0,3,0,133,0,0,0,112,48,0,0,5,0,3,0,136,0,0,0,112,49,0,0,5,0,3,0,139,0,0,0,112,50,0,0,5,0,3,0,142,0,0,0,112,51,0,0,5,0,4,0,145,0,0,0,112,48,112,49,0,0,0,0,5,0,4,0,151,0,0,0,112,49,112,50,0,0,0,0,5,0,4,0,157,0,0,0,112,50,112,51,0,0,0,0,5,0,4,0,163,0,0,0,112,48,112,49,112,50,0,0,5,0,4,0,169,0,0,0,112,49,112,50,112,51,0,0,5,0,5,0,192,0,0,0,98,85,110,105,102,111,114,109,48,0,0,0,6,0,6,0,192,0,0,0,0,0,0,0,117,84,114,97,110,115,102,111,114,109,0,0,6,0,7,0,192,0,0,0,1,0,0,0,117,84,114,97,110,115,108,97,116,105,111,110,0,0,0,0,6,0,5,0,192,0,0,0,2,0,0,0,112,97,100,48,0,0,0,0,5,0,3,0,194,0,0,0,0,0,0,0,5,0,4,0,199,0,0,0,98,80,111,105,110,116,115,0,6,0,5,0,199,0,0,0,0,0,0,0,105,80,111,105,110,116,115,0,5,0,3,0,201,0,0,0,0,0,0,0,5,0,7,0,213,0,0,0,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,0,0,0,5,0,8,0,216,0,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,6,0,228,0,0,0,108,111,119,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,229,0,0,0,104,105,103,104,80,97,116,104,73,110,100,101,120,0,0,0,5,0,5,0,233,0,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,6,0,249,0,0,0,109,105,100,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,8,0,0,1,0,0,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,6,0,2,1,0,0,98,68,105,99,101,77,101,116,97,100,97,116,97,0,0,0,6,0,7,0,2,1,0,0,0,0,0,0,105,68,105,99,101,77,101,116,97,100,97,116,97,0,0,0,5,0,3,0,4,1,0,0,0,0,0,0,5,0,6,0,25,1,0,0,98,97,116,99,104,80,97,116,104,73,110,100,101,120,0,0,5,0,6,0,28,1,0,0,100,105,99,101,77,101,116,97,100,97,116,97,0,0,0,0,5,0,10,0,32,1,0,0,102,105,114,115,116,71,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,0,0,0,5,0,10,0,35,1,0,0,102,105,114,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,0,0,0,0,5,0,7,0,38,1,0,0,103,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,0,0,5,0,6,0,46,1,0,0,105,110,112,117,116,73,110,100,105,99,101,115,0,0,0,0,5,0,6,0,48,1,0,0,98,73,110,112,117,116,73,110,100,105,99,101,115,0,0,0,6,0,7,0,48,1,0,0,0,0,0,0,105,73,110,112,117,116,73,110,100,105,99,101,115,0,0,0,5,0,3,0,50,1,0,0,0,0,0,0,5,0,6,0,55,1,0,0,102,114,111,109,80,111,105,110,116,73,110,100,101,120,0,0,5,0,6,0,58,1,0,0,102,108,97,103,115,80,97,116,104,73,110,100,101,120,0,0,5,0,6,0,61,1,0,0,116,111,80,111,105,110,116,73,110,100,101,120,0,0,0,0,5,0,5,0,83,1,0,0,98,97,115,101,108,105,110,101,0,0,0,0,5,0,4,0,84,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,87,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,95,1,0,0,99,116,114,108,0,0,0,0,5,0,4,0,99,1,0,0,105,115,67,117,114,118,101,0,5,0,4,0,107,1,0,0,99,116,114,108,48,0,0,0,5,0,4,0,110,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,117,1,0,0,99,116,114,108,48,95,50,0,5,0,4,0,134,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,141,1,0,0,98,111,117,110,100,0,0,0,5,0,6,0,166,1,0,0,115,101,103,109,101,110,116,67,111,117,110,116,70,0,0,0,5,0,6,0,180,1,0,0,115,101,103,109,101,110,116,67,111,117,110,116,0,0,0,0,5,0,9,0,185,1,0,0,102,105,114,115,116,79,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,0,0,0,5,0,8,0,187,1,0,0,98,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,0,0,6,0,9,0,187,1,0,0,0,0,0,0,105,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,0,0,5,0,3,0,189,1,0,0,0,0,0,0,5,0,4,0,195,1,0,0,112,114,101,118,84,0,0,0,5,0,5,0,196,1,0,0,112,114,101,118,80,111,105,110,116,0,0,0,5,0,6,0,199,1,0,0,115,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,4,0,208,1,0,0,110,101,120,116,84,0,0,0,5,0,5,0,218,1,0,0,110,101,120,116,80,111,105,110,116,0,0,0,5,0,4,0,219,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,221,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,223,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,227,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,229,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,243,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,244,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,246,1,0,0,112,97,114,97,109,0,0,0,72,0,5,0,36,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,36,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,36,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,36,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,36,0,0,0,2,0,0,0,71,0,4,0,38,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,38,0,0,0,33,0,0,0,6,0,0,0,71,0,4,0,77,0,0,0,6,0,0,0,16,0,0,0,72,0,4,0,78,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,78,0,0,0,0,0,0,0,25,0,0,0,72,0,5,0,78,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,78,0,0,0,3,0,0,0,71,0,4,0,80,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,80,0,0,0,33,0,0,0,4,0,0,0,72,0,4,0,192,0,0,0,0,0,0,0,5,0,0,0,72,0,5,0,192,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,192,0,0,0,0,0,0,0,7,0,0,0,16,0,0,0,72,0,5,0,192,0,0,0,1,0,0,0,35,0,0,0,32,0,0,0,72,0,5,0,192,0,0,0,2,0,0,0,35,0,0,0,40,0,0,0,71,0,3,0,192,0,0,0,2,0,0,0,71,0,4,0,194,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,194,0,0,0,33,0,0,0,5,0,0,0,71,0,4,0,198,0,0,0,6,0,0,0,8,0,0,0,72,0,4,0,199,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,199,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,199,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,199,0,0,0,3,0,0,0,71,0,4,0,201,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,201,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,216,0,0,0,11,0,0,0,28,0,0,0,71,0,4,0,1,1,0,0,6,0,0,0,16,0,0,0,72,0,4,0,2,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,2,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,2,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,2,1,0,0,3,0,0,0,71,0,4,0,4,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,4,1,0,0,33,0,0,0,1,0,0,0,71,0,4,0,47,1,0,0,6,0,0,0,8,0,0,0,72,0,4,0,48,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,48,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,48,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,48,1,0,0,3,0,0,0,71,0,4,0,50,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,50,1,0,0,33,0,0,0,3,0,0,0,71,0,4,0,186,1,0,0,6,0,0,0,4,0,0,0,72,0,4,0,187,1,0,0,0,0,0,0,19,0,0,0,72,0,5,0,187,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,187,1,0,0,3,0,0,0,71,0,4,0,189,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,189,1,0,0,33,0,0,0,0,0,0,0,71,0,4,0,253,1,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,9,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,33,0,6,0,11,0,0,0,2,0,0,0,8,0,0,0,10,0,0,0,10,0,0,0,32,0,4,0,17,0,0,0,7,0,0,0,6,0,0,0,23,0,4,0,18,0,0,0,6,0,0,0,2,0,0,0,33,0,6,0,19,0,0,0,18,0,0,0,8,0,0,0,8,0,0,0,17,0,0,0,33,0,5,0,25,0,0,0,18,0,0,0,8,0,0,0,17,0,0,0,33,0,4,0,30,0,0,0,18,0,0,0,10,0,0,0,21,0,4,0,35,0,0,0,32,0,0,0,1,0,0,0,30,0,6,0,36,0,0,0,35,0,0,0,35,0,0,0,35,0,0,0,35,0,0,0,32,0,4,0,37,0,0,0,2,0,0,0,36,0,0,0,59,0,4,0,37,0,0,0,38,0,0,0,2,0,0,0,43,0,4,0,35,0,0,0,39,0,0,0,2,0,0,0,32,0,4,0,40,0,0,0,2,0,0,0,35,0,0,0,20,0,2,0,44,0,0,0,23,0,4,0,49,0,0,0,35,0,0,0,4,0,0,0,32,0,4,0,50,0,0,0,7,0,0,0,49,0,0,0,43,0,4,0,6,0,0,0,53,0,0,0,0,0,0,199,43,0,4,0,6,0,0,0,54,0,0,0,0,254,255,70,43,0,4,0,6,0,0,0,58,0,0,0,0,0,128,67,43,0,4,0,35,0,0,0,72,0,0,0,0,1,0,0,23,0,4,0,76,0,0,0,9,0,0,0,4,0,0,0,29,0,3,0,77,0,0,0,76,0,0,0,30,0,3,0,78,0,0,0,77,0,0,0,32,0,4,0,79,0,0,0,2,0,0,0,78,0,0,0,59,0,4,0,79,0,0,0,80,0,0,0,2,0,0,0,43,0,4,0,35,0,0,0,81,0,0,0,0,0,0,0,43,0,4,0,9,0,0,0,83,0,0,0,0,0,0,0,32,0,4,0,84,0,0,0,7,0,0,0,35,0,0,0,43,0,4,0,9,0,0,0,88,0,0,0,255,255,0,0,43,0,4,0,9,0,0,0,90,0,0,0,1,0,0,0,43,0,4,0,35,0,0,0,94,0,0,0,16,0,0,0,43,0,4,0,9,0,0,0,97,0,0,0,2,0,0,0,43,0,4,0,9,0,0,0,102,0,0,0,3,0,0,0,43,0,4,0,35,0,0,0,114,0,0,0,8,0,0,0,43,0,4,0,35,0,0,0,125,0,0,0,24,0,0,0,32,0,4,0,130,0,0,0,2,0,0,0,76,0,0,0,32,0,4,0,132,0,0,0,7,0,0,0,18,0,0,0,24,0,4,0,191,0,0,0,18,0,0,0,2,0,0,0,30,0,5,0,192,0,0,0,191,0,0,0,18,0,0,0,18,0,0,0,32,0,4,0,193,0,0,0,2,0,0,0,192,0,0,0,59,0,4,0,193,0,0,0,194,0,0,0,2,0,0,0,32,0,4,0,195,0,0,0,2,0,0,0,191,0,0,0,29,0,3,0,198,0,0,0,18,0,0,0,30,0,3,0,199,0,0,0,198,0,0,0,32,0,4,0,200,0,0,0,2,0,0,0,199,0,0,0,59,0,4,0,200,0,0,0,201,0,0,0,2,0,0,0,32,0,4,0,203,0,0,0,2,0,0,0,18,0,0,0,43,0,4,0,35,0,0,0,207,0,0,0,1,0,0,0,23,0,4,0,214,0,0,0,9,0,0,0,3,0,0,0,32,0,4,0,215,0,0,0,1,0,0,0,214,0,0,0,59,0,4,0,215,0,0,0,216,0,0,0,1,0,0,0,32,0,4,0,217,0,0,0,1,0,0,0,9,0,0,0,43,0,4,0,35,0,0,0,240,0,0,0,0,4,0,0,29,0,3,0,1,1,0,0,76,0,0,0,30,0,3,0,2,1,0,0,1,1,0,0,32,0,4,0,3,1,0,0,2,0,0,0,2,1,0,0,59,0,4,0,3,1,0,0,4,1,0,0,2,0,0,0,32,0,4,0,6,1,0,0,2,0,0,0,9,0,0,0,32,0,4,0,27,1,0,0,7,0,0,0,76,0,0,0,23,0,4,0,44,1,0,0,9,0,0,0,2,0,0,0,32,0,4,0,45,1,0,0,7,0,0,0,44,1,0,0,29,0,3,0,47,1,0,0,44,1,0,0,30,0,3,0,48,1,0,0,47,1,0,0,32,0,4,0,49,1,0,0,2,0,0,0,48,1,0,0,59,0,4,0,49,1,0,0,50,1,0,0,2,0,0,0,32,0,4,0,52,1,0,0,2,0,0,0,44,1,0,0,43,0,4,0,9,0,0,0,64,1,0,0,0,0,0,64,43,0,4,0,9,0,0,0,73,1,0,0,0,0,0,128,43,0,4,0,6,0,0,0,96,1,0,0,0,0,0,0,44,0,7,0,7,0,0,0,97,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,32,0,4,0,98,1,0,0,7,0,0,0,44,0,0,0,43,0,4,0,9,0,0,0,101,1,0,0,0,0,0,192,43,0,4,0,6,0,0,0,119,1,0,0,0,0,0,64,44,0,5,0,18,0,0,0,120,1,0,0,119,1,0,0,119,1,0,0,43,0,4,0,6,0,0,0,127,1,0,0,171,170,170,62,44,0,7,0,7,0,0,0,128,1,0,0,127,1,0,0,127,1,0,0,127,1,0,0,127,1,0,0,43,0,4,0,6,0,0,0,142,1,0,0,0,0,192,64,44,0,5,0,18,0,0,0,143,1,0,0,142,1,0,0,142,1,0,0,43,0,4,0,6,0,0,0,178,1,0,0,0,0,128,65,29,0,3,0,186,1,0,0,9,0,0,0,30,0,3,0,187,1,0,0,186,1,0,0,32,0,4,0,188,1,0,0,2,0,0,0,187,1,0,0,59,0,4,0,188,1,0,0,189,1,0,0,2,0,0,0,43,0,4,0,35,0,0,0,190,1,0,0,3,0,0,0,43,0,4,0,9,0,0,0,252,1,0,0,64,0,0,0,44,0,6,0,214,0,0,0,253,1,0,0,252,1,0,0,90,0,0,0,90,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,10,0,0,0,213,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,228,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,229,0,0,0,7,0,0,0,59,0,4,0,84,0,0,0,233,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,249,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,0,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,25,1,0,0,7,0,0,0,59,0,4,0,27,1,0,0,28,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,32,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,35,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,38,1,0,0,7,0,0,0,59,0,4,0,45,1,0,0,46,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,55,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,58,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,61,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,83,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,84,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,87,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,95,1,0,0,7,0,0,0,59,0,4,0,98,1,0,0,99,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,107,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,110,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,117,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,134,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,141,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,166,1,0,0,7,0,0,0,59,0,4,0,84,0,0,0,180,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,185,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,195,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,196,1,0,0,7,0,0,0,59,0,4,0,84,0,0,0,199,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,208,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,218,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,219,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,221,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,223,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,227,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,229,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,243,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,244,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,246,1,0,0,7,0,0,0,65,0,5,0,217,0,0,0,218,0,0,0,216,0,0,0,83,0,0,0,61,0,4,0,9,0,0,0,219,0,0,0,218,0,0,0,62,0,3,0,213,0,0,0,219,0,0,0,61,0,4,0,9,0,0,0,220,0,0,0,213,0,0,0,65,0,5,0,40,0,0,0,221,0,0,0,38,0,0,0,207,0,0,0,61,0,4,0,35,0,0,0,222,0,0,0,221,0,0,0,124,0,4,0,9,0,0,0,223,0,0,0,222,0,0,0,174,0,5,0,44,0,0,0,224,0,0,0,220,0,0,0,223,0,0,0,247,0,3,0,226,0,0,0,0,0,0,0,250,0,4,0,224,0,0,0,225,0,0,0,226,0,0,0,248,0,2,0,225,0,0,0,253,0,1,0,248,0,2,0,226,0,0,0,62,0,3,0,228,0,0,0,83,0,0,0,65,0,5,0,40,0,0,0,230,0,0,0,38,0,0,0,81,0,0,0,61,0,4,0,35,0,0,0,231,0,0,0,230,0,0,0,124,0,4,0,9,0,0,0,232,0,0,0,231,0,0,0,62,0,3,0,229,0,0,0,232,0,0,0,62,0,3,0,233,0,0,0,81,0,0,0,249,0,2,0,234,0,0,0,248,0,2,0,234,0,0,0,246,0,4,0,236,0,0,0,237,0,0,0,0,0,0,0,249,0,2,0,238,0,0,0,248,0,2,0,238,0,0,0,61,0,4,0,35,0,0,0,239,0,0,0,233,0,0,0,177,0,5,0,44,0,0,0,241,0,0,0,239,0,0,0,240,0,0,0,247,0,3,0,243,0,0,0,0,0,0,0,250,0,4,0,241,0,0,0,242,0,0,0,243,0,0,0,248,0,2,0,242,0,0,0,61,0,4,0,9,0,0,0,244,0,0,0,228,0,0,0,128,0,5,0,9,0,0,0,245,0,0,0,244,0,0,0,90,0,0,0,61,0,4,0,9,0,0,0,246,0,0,0,229,0,0,0,176,0,5,0,44,0,0,0,247,0,0,0,245,0,0,0,246,0,0,0,249,0,2,0,243,0,0,0,248,0,2,0,243,0,0,0,245,0,7,0,44,0,0,0,248,0,0,0,241,0,0,0,238,0,0,0,247,0,0,0,242,0,0,0,250,0,4,0,248,0,0,0,235,0,0,0,236,0,0,0,248,0,2,0,235,0,0,0,61,0,4,0,9,0,0,0,250,0,0,0,228,0,0,0,61,0,4,0,9,0,0,0,251,0,0,0,229,0,0,0,61,0,4,0,9,0,0,0,252,0,0,0,228,0,0,0,130,0,5,0,9,0,0,0,253,0,0,0,251,0,0,0,252,0,0,0,134,0,5,0,9,0,0,0,254,0,0,0,253,0,0,0,97,0,0,0,128,0,5,0,9,0,0,0,255,0,0,0,250,0,0,0,254,0,0,0,62,0,3,0,249,0,0,0,255,0,0,0,61,0,4,0,9,0,0,0,5,1,0,0,249,0,0,0,65,0,7,0,6,1,0,0,7,1,0,0,4,1,0,0,81,0,0,0,5,1,0,0,97,0,0,0,61,0,4,0,9,0,0,0,8,1,0,0,7,1,0,0,62,0,3,0,0,1,0,0,8,1,0,0,61,0,4,0,9,0,0,0,9,1,0,0,213,0,0,0,61,0,4,0,9,0,0,0,10,1,0,0,0,1,0,0,176,0,5,0,44,0,0,0,11,1,0,0,9,1,0,0,10,1,0,0,247,0,3,0,13,1,0,0,0,0,0,0,250,0,4,0,11,1,0,0,12,1,0,0,15,1,0,0,248,0,2,0,12,1,0,0,61,0,4,0,9,0,0,0,14,1,0,0,249,0,0,0,62,0,3,0,229,0,0,0,14,1,0,0,249,0,2,0,13,1,0,0,248,0,2,0,15,1,0,0,61,0,4,0,9,0,0,0,16,1,0,0,249,0,0,0,62,0,3,0,228,0,0,0,16,1,0,0,61,0,4,0,9,0,0,0,17,1,0,0,213,0,0,0,61,0,4,0,9,0,0,0,18,1,0,0,0,1,0,0,170,0,5,0,44,0,0,0,19,1,0,0,17,1,0,0,18,1,0,0,247,0,3,0,21,1,0,0,0,0,0,0,250,0,4,0,19,1,0,0,20,1,0,0,21,1,0,0,248,0,2,0,20,1,0,0,249,0,2,0,236,0,0,0,248,0,2,0,21,1,0,0,249,0,2,0,13,1,0,0,248,0,2,0,13,1,0,0,61,0,4,0,35,0,0,0,23,1,0,0,233,0,0,0,128,0,5,0,35,0,0,0,24,1,0,0,23,1,0,0,207,0,0,0,62,0,3,0,233,0,0,0,24,1,0,0,249,0,2,0,237,0,0,0,248,0,2,0,237,0,0,0,249,0,2,0,234,0,0,0,248,0,2,0,236,0,0,0,61,0,4,0,9,0,0,0,26,1,0,0,228,0,0,0,62,0,3,0,25,1,0,0,26,1,0,0,61,0,4,0,9,0,0,0,29,1,0,0,25,1,0,0,65,0,6,0,130,0,0,0,30,1,0,0,4,1,0,0,81,0,0,0,29,1,0,0,61,0,4,0,76,0,0,0,31,1,0,0,30,1,0,0,62,0,3,0,28,1,0,0,31,1,0,0,65,0,5,0,10,0,0,0,33,1,0,0,28,1,0,0,90,0,0,0,61,0,4,0,9,0,0,0,34,1,0,0,33,1,0,0,62,0,3,0,32,1,0,0,34,1,0,0,65,0,5,0,10,0,0,0,36,1,0,0,28,1,0,0,97,0,0,0,61,0,4,0,9,0,0,0,37,1,0,0,36,1,0,0,62,0,3,0,35,1,0,0,37,1,0,0,61,0,4,0,9,0,0,0,39,1,0,0,213,0,0,0,61,0,4,0,9,0,0,0,40,1,0,0,35,1,0,0,130,0,5,0,9,0,0,0,41,1,0,0,39,1,0,0,40,1,0,0,61,0,4,0,9,0,0,0,42,1,0,0,32,1,0,0,128,0,5,0,9,0,0,0,43,1,0,0,41,1,0,0,42,1,0,0,62,0,3,0,38,1,0,0,43,1,0,0,61,0,4,0,9,0,0,0,51,1,0,0,38,1,0,0,65,0,6,0,52,1,0,0,53,1,0,0,50,1,0,0,81,0,0,0,51,1,0,0,61,0,4,0,44,1,0,0,54,1,0,0,53,1,0,0,62,0,3,0,46,1,0,0,54,1,0,0,65,0,5,0,10,0,0,0,56,1,0,0,46,1,0,0,83,0,0,0,61,0,4,0,9,0,0,0,57,1,0,0,56,1,0,0,62,0,3,0,55,1,0,0,57,1,0,0,65,0,5,0,10,0,0,0,59,1,0,0,46,1,0,0,90,0,0,0,61,0,4,0,9,0,0,0,60,1,0,0,59,1,0,0,62,0,3,0,58,1,0,0,60,1,0,0,61,0,4,0,9,0,0,0,62,1,0,0,55,1,0,0,62,0,3,0,61,1,0,0,62,1,0,0,61,0,4,0,9,0,0,0,63,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,65,1,0,0,63,1,0,0,64,1,0,0,171,0,5,0,44,0,0,0,66,1,0,0,65,1,0,0,83,0,0,0,247,0,3,0,68,1,0,0,0,0,0,0,250,0,4,0,66,1,0,0,67,1,0,0,71,1,0,0,248,0,2,0,67,1,0,0,61,0,4,0,9,0,0,0,69,1,0,0,61,1,0,0,128,0,5,0,9,0,0,0,70,1,0,0,69,1,0,0,102,0,0,0,62,0,3,0,61,1,0,0,70,1,0,0,249,0,2,0,68,1,0,0,248,0,2,0,71,1,0,0,61,0,4,0,9,0,0,0,72,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,74,1,0,0,72,1,0,0,73,1,0,0,171,0,5,0,44,0,0,0,75,1,0,0,74,1,0,0,83,0,0,0,247,0,3,0,77,1,0,0,0,0,0,0,250,0,4,0,75,1,0,0,76,1,0,0,80,1,0,0,248,0,2,0,76,1,0,0,61,0,4,0,9,0,0,0,78,1,0,0,61,1,0,0,128,0,5,0,9,0,0,0,79,1,0,0,78,1,0,0,97,0,0,0,62,0,3,0,61,1,0,0,79,1,0,0,249,0,2,0,77,1,0,0,248,0,2,0,80,1,0,0,61,0,4,0,9,0,0,0,81,1,0,0,61,1,0,0,128,0,5,0,9,0,0,0,82,1,0,0,81,1,0,0,90,0,0,0,62,0,3,0,61,1,0,0,82,1,0,0,249,0,2,0,77,1,0,0,248,0,2,0,77,1,0,0,249,0,2,0,68,1,0,0,248,0,2,0,68,1,0,0,61,0,4,0,9,0,0,0,85,1,0,0,55,1,0,0,62,0,3,0,84,1,0,0,85,1,0,0,57,0,5,0,18,0,0,0,86,1,0,0,32,0,0,0,84,1,0,0,61,0,4,0,9,0,0,0,88,1,0,0,61,1,0,0,62,0,3,0,87,1,0,0,88,1,0,0,57,0,5,0,18,0,0,0,89,1,0,0,32,0,0,0,87,1,0,0,81,0,5,0,6,0,0,0,90,1,0,0,86,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,91,1,0,0,86,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,92,1,0,0,89,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,93,1,0,0,89,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,94,1,0,0,90,1,0,0,91,1,0,0,92,1,0,0,93,1,0,0,62,0,3,0,83,1,0,0,94,1,0,0,62,0,3,0,95,1,0,0,97,1,0,0,61,0,4,0,9,0,0,0,100,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,102,1,0,0,100,1,0,0,101,1,0,0,171,0,5,0,44,0,0,0,103,1,0,0,102,1,0,0,83,0,0,0,62,0,3,0,99,1,0,0,103,1,0,0,61,0,4,0,44,0,0,0,104,1,0,0,99,1,0,0,247,0,3,0,106,1,0,0,0,0,0,0,250,0,4,0,104,1,0,0,105,1,0,0,171,1,0,0,248,0,2,0,105,1,0,0,61,0,4,0,9,0,0,0,108,1,0,0,55,1,0,0,128,0,5,0,9,0,0,0,109,1,0,0,108,1,0,0,90,0,0,0,62,0,3,0,110,1,0,0,109,1,0,0,57,0,5,0,18,0,0,0,111,1,0,0,32,0,0,0,110,1,0,0,62,0,3,0,107,1,0,0,111,1,0,0,61,0,4,0,9,0,0,0,112,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,113,1,0,0,112,1,0,0,73,1,0,0,171,0,5,0,44,0,0,0,114,1,0,0,113,1,0,0,83,0,0,0,247,0,3,0,116,1,0,0,0,0,0,0,250,0,4,0,114,1,0,0,115,1,0,0,130,1,0,0,248,0,2,0,115,1,0,0,61,0,4,0,18,0,0,0,118,1,0,0,107,1,0,0,133,0,5,0,18,0,0,0,121,1,0,0,118,1,0,0,120,1,0,0,62,0,3,0,117,1,0,0,121,1,0,0,61,0,4,0,7,0,0,0,122,1,0,0,83,1,0,0,61,0,4,0,18,0,0,0,123,1,0,0,107,1,0,0,133,0,5,0,18,0,0,0,124,1,0,0,123,1,0,0,120,1,0,0,79,0,9,0,7,0,0,0,125,1,0,0,124,1,0,0,124,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,129,0,5,0,7,0,0,0,126,1,0,0,122,1,0,0,125,1,0,0,133,0,5,0,7,0,0,0,129,1,0,0,126,1,0,0,128,1,0,0,62,0,3,0,95,1,0,0,129,1,0,0,249,0,2,0,116,1,0,0,248,0,2,0,130,1,0,0,61,0,4,0,18,0,0,0,131,1,0,0,107,1,0,0,61,0,4,0,9,0,0,0,132,1,0,0,55,1,0,0,128,0,5,0,9,0,0,0,133,1,0,0,132,1,0,0,97,0,0,0,62,0,3,0,134,1,0,0,133,1,0,0,57,0,5,0,18,0,0,0,135,1,0,0,32,0,0,0,134,1,0,0,81,0,5,0,6,0,0,0,136,1,0,0,131,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,137,1,0,0,131,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,138,1,0,0,135,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,139,1,0,0,135,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,140,1,0,0,136,1,0,0,137,1,0,0,138,1,0,0,139,1,0,0,62,0,3,0,95,1,0,0,140,1,0,0,249,0,2,0,116,1,0,0,248,0,2,0,116,1,0,0,61,0,4,0,7,0,0,0,144,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,145,1,0,0,144,1,0,0,144,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,146,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,147,1,0,0,146,1,0,0,146,1,0,0,0,0,0,0,1,0,0,0,142,0,5,0,18,0,0,0,148,1,0,0,147,1,0,0,119,1,0,0,131,0,5,0,18,0,0,0,149,1,0,0,145,1,0,0,148,1,0,0,61,0,4,0,7,0,0,0,150,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,151,1,0,0,150,1,0,0,150,1,0,0,0,0,0,0,1,0,0,0,129,0,5,0,18,0,0,0,152,1,0,0,149,1,0,0,151,1,0,0,12,0,6,0,18,0,0,0,153,1,0,0,1,0,0,0,4,0,0,0,152,1,0,0,61,0,4,0,7,0,0,0,154,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,155,1,0,0,154,1,0,0,154,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,156,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,157,1,0,0,156,1,0,0,156,1,0,0,2,0,0,0,3,0,0,0,142,0,5,0,18,0,0,0,158,1,0,0,157,1,0,0,119,1,0,0,131,0,5,0,18,0,0,0,159,1,0,0,155,1,0,0,158,1,0,0,61,0,4,0,7,0,0,0,160,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,161,1,0,0,160,1,0,0,160,1,0,0,0,0,0,0,1,0,0,0,129,0,5,0,18,0,0,0,162,1,0,0,159,1,0,0,161,1,0,0,12,0,6,0,18,0,0,0,163,1,0,0,1,0,0,0,4,0,0,0,162,1,0,0,12,0,7,0,18,0,0,0,164,1,0,0,1,0,0,0,40,0,0,0,153,1,0,0,163,1,0,0,133,0,5,0,18,0,0,0,165,1,0,0,143,1,0,0,164,1,0,0,62,0,3,0,141,1,0,0,165,1,0,0,61,0,4,0,18,0,0,0,167,1,0,0,141,1,0,0,12,0,6,0,6,0,0,0,168,1,0,0,1,0,0,0,66,0,0,0,167,1,0,0,136,0,5,0,6,0,0,0,169,1,0,0,168,1,0,0,119,1,0,0,12,0,6,0,6,0,0,0,170,1,0,0,1,0,0,0,31,0,0,0,169,1,0,0,62,0,3,0,166,1,0,0,170,1,0,0,249,0,2,0,106,1,0,0,248,0,2,0,171,1,0,0,61,0,4,0,7,0,0,0,172,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,173,1,0,0,172,1,0,0,172,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,174,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,175,1,0,0,174,1,0,0,174,1,0,0,0,0,0,0,1,0,0,0,131,0,5,0,18,0,0,0,176,1,0,0,173,1,0,0,175,1,0,0,12,0,6,0,6,0,0,0,177,1,0,0,1,0,0,0,66,0,0,0,176,1,0,0,136,0,5,0,6,0,0,0,179,1,0,0,177,1,0,0,178,1,0,0,62,0,3,0,166,1,0,0,179,1,0,0,249,0,2,0,106,1,0,0,248,0,2,0,106,1,0,0,61,0,4,0,6,0,0,0,181,1,0,0,166,1,0,0,12,0,6,0,6,0,0,0,182,1,0,0,1,0,0,0,9,0,0,0,181,1,0,0,110,0,4,0,35,0,0,0,183,1,0,0,182,1,0,0,12,0,7,0,35,0,0,0,184,1,0,0,1,0,0,0,42,0,0,0,183,1,0,0,207,0,0,0,62,0,3,0,180,1,0,0,184,1,0,0,65,0,6,0,6,1,0,0,191,1,0,0,189,1,0,0,81,0,0,0,190,1,0,0,61,0,4,0,35,0,0,0,192,1,0,0,180,1,0,0,124,0,4,0,9,0,0,0,193,1,0,0,192,1,0,0,234,0,7,0,9,0,0,0,194,1,0,0,191,1,0,0,90,0,0,0,83,0,0,0,193,1,0,0,62,0,3,0,185,1,0,0,194,1,0,0,62,0,3,0,195,1,0,0,96,1,0,0,61,0,4,0,7,0,0,0,197,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,198,1,0,0,197,1,0,0,197,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,196,1,0,0,198,1,0,0,62,0,3,0,199,1,0,0,81,0,0,0,249,0,2,0,200,1,0,0,248,0,2,0,200,1,0,0,246,0,4,0,202,1,0,0,203,1,0,0,0,0,0,0,249,0,2,0,204,1,0,0,248,0,2,0,204,1,0,0,61,0,4,0,35,0,0,0,205,1,0,0,199,1,0,0,61,0,4,0,35,0,0,0,206,1,0,0,180,1,0,0,177,0,5,0,44,0,0,0,207,1,0,0,205,1,0,0,206,1,0,0,250,0,4,0,207,1,0,0,201,1,0,0,202,1,0,0,248,0,2,0,201,1,0,0,61,0,4,0,35,0,0,0,209,1,0,0,199,1,0,0,128,0,5,0,35,0,0,0,210,1,0,0,209,1,0,0,207,0,0,0,111,0,4,0,6,0,0,0,211,1,0,0,210,1,0,0,61,0,4,0,35,0,0,0,212,1,0,0,180,1,0,0,111,0,4,0,6,0,0,0,213,1,0,0,212,1,0,0,136,0,5,0,6,0,0,0,214,1,0,0,211,1,0,0,213,1,0,0,62,0,3,0,208,1,0,0,214,1,0,0,61,0,4,0,44,0,0,0,215,1,0,0,99,1,0,0,247,0,3,0,217,1,0,0,0,0,0,0,250,0,4,0,215,1,0,0,216,1,0,0,226,1,0,0,248,0,2,0,216,1,0,0,61,0,4,0,7,0,0,0,220,1,0,0,83,1,0,0,62,0,3,0,219,1,0,0,220,1,0,0,61,0,4,0,7,0,0,0,222,1,0,0,95,1,0,0,62,0,3,0,221,1,0,0,222,1,0,0,61,0,4,0,6,0,0,0,224,1,0,0,208,1,0,0,62,0,3,0,223,1,0,0,224,1,0,0,57,0,7,0,18,0,0,0,225,1,0,0,23,0,0,0,219,1,0,0,221,1,0,0,223,1,0,0,62,0,3,0,218,1,0,0,225,1,0,0,249,0,2,0,217,1,0,0,248,0,2,0,226,1,0,0,61,0,4,0,7,0,0,0,228,1,0,0,83,1,0,0,62,0,3,0,227,1,0,0,228,1,0,0,61,0,4,0,6,0,0,0,230,1,0,0,208,1,0,0,62,0,3,0,229,1,0,0,230,1,0,0,57,0,6,0,18,0,0,0,231,1,0,0,28,0,0,0,227,1,0,0,229,1,0,0,62,0,3,0,218,1,0,0,231,1,0,0,249,0,2,0,217,1,0,0,248,0,2,0,217,1,0,0,61,0,4,0,18,0,0,0,232,1,0,0,196,1,0,0,61,0,4,0,18,0,0,0,233,1,0,0,218,1,0,0,81,0,5,0,6,0,0,0,234,1,0,0,232,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,235,1,0,0,232,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,236,1,0,0,233,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,237,1,0,0,233,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,238,1,0,0,234,1,0,0,235,1,0,0,236,1,0,0,237,1,0,0,61,0,4,0,9,0,0,0,239,1,0,0,185,1,0,0,61,0,4,0,35,0,0,0,240,1,0,0,199,1,0,0,124,0,4,0,9,0,0,0,241,1,0,0,240,1,0,0,128,0,5,0,9,0,0,0,242,1,0,0,239,1,0,0,241,1,0,0,62,0,3,0,243,1,0,0,238,1,0,0,61,0,4,0,9,0,0,0,245,1,0,0,25,1,0,0,62,0,3,0,244,1,0,0,245,1,0,0,62,0,3,0,246,1,0,0,242,1,0,0,57,0,7,0,2,0,0,0,247,1,0,0,15,0,0,0,243,1,0,0,244,1,0,0,246,1,0,0,61,0,4,0,6,0,0,0,248,1,0,0,208,1,0,0,62,0,3,0,195,1,0,0,248,1,0,0,61,0,4,0,18,0,0,0,249,1,0,0,218,1,0,0,62,0,3,0,196,1,0,0,249,1,0,0,249,0,2,0,203,1,0,0,248,0,2,0,203,1,0,0,61,0,4,0,35,0,0,0,250,1,0,0,199,1,0,0,128,0,5,0,35,0,0,0,251,1,0,0,250,1,0,0,207,0,0,0,62,0,3,0,199,1,0,0,251,1,0,0,249,0,2,0,200,1,0,0,248,0,2,0,202,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,2,0,0,0,15,0,0,0,0,0,0,0,11,0,0,0,55,0,3,0,8,0,0,0,12,0,0,0,55,0,3,0,10,0,0,0,13,0,0,0,55,0,3,0,10,0,0,0,14,0,0,0,248,0,2,0,16,0,0,0,59,0,4,0,50,0,0,0,51,0,0,0,7,0,0,0,59,0,4,0,50,0,0,0,62,0,0,0,7,0,0,0,59,0,4,0,50,0,0,0,69,0,0,0,7,0,0,0,61,0,4,0,9,0,0,0,34,0,0,0,14,0,0,0,65,0,5,0,40,0,0,0,41,0,0,0,38,0,0,0,39,0,0,0,61,0,4,0,35,0,0,0,42,0,0,0,41,0,0,0,124,0,4,0,9,0,0,0,43,0,0,0,42,0,0,0,174,0,5,0,44,0,0,0,45,0,0,0,34,0,0,0,43,0,0,0,247,0,3,0,47,0,0,0,0,0,0,0,250,0,4,0,45,0,0,0,46,0,0,0,47,0,0,0,248,0,2,0,46,0,0,0,253,0,1,0,248,0,2,0,47,0,0,0,61,0,4,0,7,0,0,0,52,0,0,0,12,0,0,0,80,0,7,0,7,0,0,0,55,0,0,0,53,0,0,0,53,0,0,0,53,0,0,0,53,0,0,0,80,0,7,0,7,0,0,0,56,0,0,0,54,0,0,0,54,0,0,0,54,0,0,0,54,0,0,0,12,0,8,0,7,0,0,0,57,0,0,0,1,0,0,0,43,0,0,0,52,0,0,0,55,0,0,0,56,0,0,0,142,0,5,0,7,0,0,0,59,0,0,0,57,0,0,0,58,0,0,0,12,0,6,0,7,0,0,0,60,0,0,0,1,0,0,0,1,0,0,0,59,0,0,0,110,0,4,0,49,0,0,0,61,0,0,0,60,0,0,0,62,0,3,0,51,0,0,0,61,0,0,0,61,0,4,0,49,0,0,0,63,0,0,0,51,0,0,0,111,0,4,0,7,0,0,0,64,0,0,0,63,0,0,0,80,0,7,0,7,0,0,0,65,0,0,0,58,0,0,0,58,0,0,0,58,0,0,0,58,0,0,0,136,0,5,0,7,0,0,0,66,0,0,0,64,0,0,0,65,0,0,0,12,0,6,0,7,0,0,0,67,0,0,0,1,0,0,0,8,0,0,0,66,0,0,0,110,0,4,0,49,0,0,0,68,0,0,0,67,0,0,0,62,0,3,0,62,0,0,0,68,0,0,0,61,0,4,0,49,0,0,0,70,0,0,0,51,0,0,0,61,0,4,0,49,0,0,0,71,0,0,0,62,0,0,0,80,0,7,0,49,0,0,0,73,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,132,0,5,0,49,0,0,0,74,0,0,0,71,0,0,0,73,0,0,0,130,0,5,0,49,0,0,0,75,0,0,0,70,0,0,0,74,0,0,0,62,0,3,0,69,0,0,0,75,0,0,0,61,0,4,0,9,0,0,0,82,0,0,0,14,0,0,0,65,0,5,0,84,0,0,0,85,0,0,0,62,0,0,0,83,0,0,0,61,0,4,0,35,0,0,0,86,0,0,0,85,0,0,0,124,0,4,0,9,0,0,0,87,0,0,0,86,0,0,0,199,0,5,0,9,0,0,0,89,0,0,0,87,0,0,0,88,0,0,0,65,0,5,0,84,0,0,0,91,0,0,0,62,0,0,0,90,0,0,0,61,0,4,0,35,0,0,0,92,0,0,0,91,0,0,0,124,0,4,0,9,0,0,0,93,0,0,0,92,0,0,0,196,0,5,0,9,0,0,0,95,0,0,0,93,0,0,0,94,0,0,0,197,0,5,0,9,0,0,0,96,0,0,0,89,0,0,0,95,0,0,0,65,0,5,0,84,0,0,0,98,0,0,0,62,0,0,0,97,0,0,0,61,0,4,0,35,0,0,0,99,0,0,0,98,0,0,0,124,0,4,0,9,0,0,0,100,0,0,0,99,0,0,0,199,0,5,0,9,0,0,0,101,0,0,0,100,0,0,0,88,0,0,0,65,0,5,0,84,0,0,0,103,0,0,0,62,0,0,0,102,0,0,0,61,0,4,0,35,0,0,0,104,0,0,0,103,0,0,0,124,0,4,0,9,0,0,0,105,0,0,0,104,0,0,0,196,0,5,0,9,0,0,0,106,0,0,0,105,0,0,0,94,0,0,0,197,0,5,0,9,0,0,0,107,0,0,0,101,0,0,0,106,0,0,0,65,0,5,0,84,0,0,0,108,0,0,0,69,0,0,0,83,0,0,0,61,0,4,0,35,0,0,0,109,0,0,0,108,0,0,0,124,0,4,0,9,0,0,0,110,0,0,0,109,0,0,0,65,0,5,0,84,0,0,0,111,0,0,0,69,0,0,0,90,0,0,0,61,0,4,0,35,0,0,0,112,0,0,0,111,0,0,0,124,0,4,0,9,0,0,0,113,0,0,0,112,0,0,0,196,0,5,0,9,0,0,0,115,0,0,0,113,0,0,0,114,0,0,0,197,0,5,0,9,0,0,0,116,0,0,0,110,0,0,0,115,0,0,0,65,0,5,0,84,0,0,0,117,0,0,0,69,0,0,0,97,0,0,0,61,0,4,0,35,0,0,0,118,0,0,0,117,0,0,0,124,0,4,0,9,0,0,0,119,0,0,0,118,0,0,0,196,0,5,0,9,0,0,0,120,0,0,0,119,0,0,0,94,0,0,0,197,0,5,0,9,0,0,0,121,0,0,0,116,0,0,0,120,0,0,0,65,0,5,0,84,0,0,0,122,0,0,0,69,0,0,0,102,0,0,0,61,0,4,0,35,0,0,0,123,0,0,0,122,0,0,0,124,0,4,0,9,0,0,0,124,0,0,0,123,0,0,0,196,0,5,0,9,0,0,0,126,0,0,0,124,0,0,0,125,0,0,0,197,0,5,0,9,0,0,0,127,0,0,0,121,0,0,0,126,0,0,0,61,0,4,0,9,0,0,0,128,0,0,0,13,0,0,0,80,0,7,0,76,0,0,0,129,0,0,0,96,0,0,0,107,0,0,0,127,0,0,0,128,0,0,0,65,0,6,0,130,0,0,0,131,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,62,0,3,0,131,0,0,0,129,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,18,0,0,0,23,0,0,0,0,0,0,0,19,0,0,0,55,0,3,0,8,0,0,0,20,0,0,0,55,0,3,0,8,0,0,0,21,0,0,0,55,0,3,0,17,0,0,0,22,0,0,0,248,0,2,0,24,0,0,0,59,0,4,0,132,0,0,0,133,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,136,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,139,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,142,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,145,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,151,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,157,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,163,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,169,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,134,0,0,0,20,0,0,0,79,0,7,0,18,0,0,0,135,0,0,0,134,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,133,0,0,0,135,0,0,0,61,0,4,0,7,0,0,0,137,0,0,0,21,0,0,0,79,0,7,0,18,0,0,0,138,0,0,0,137,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,136,0,0,0,138,0,0,0,61,0,4,0,7,0,0,0,140,0,0,0,21,0,0,0,79,0,7,0,18,0,0,0,141,0,0,0,140,0,0,0,140,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,139,0,0,0,141,0,0,0,61,0,4,0,7,0,0,0,143,0,0,0,20,0,0,0,79,0,7,0,18,0,0,0,144,0,0,0,143,0,0,0,143,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,142,0,0,0,144,0,0,0,61,0,4,0,18,0,0,0,146,0,0,0,133,0,0,0,61,0,4,0,18,0,0,0,147,0,0,0,136,0,0,0,61,0,4,0,6,0,0,0,148,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,149,0,0,0,148,0,0,0,148,0,0,0,12,0,8,0,18,0,0,0,150,0,0,0,1,0,0,0,46,0,0,0,146,0,0,0,147,0,0,0,149,0,0,0,62,0,3,0,145,0,0,0,150,0,0,0,61,0,4,0,18,0,0,0,152,0,0,0,136,0,0,0,61,0,4,0,18,0,0,0,153,0,0,0,139,0,0,0,61,0,4,0,6,0,0,0,154,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,155,0,0,0,154,0,0,0,154,0,0,0,12,0,8,0,18,0,0,0,156,0,0,0,1,0,0,0,46,0,0,0,152,0,0,0,153,0,0,0,155,0,0,0,62,0,3,0,151,0,0,0,156,0,0,0,61,0,4,0,18,0,0,0,158,0,0,0,139,0,0,0,61,0,4,0,18,0,0,0,159,0,0,0,142,0,0,0,61,0,4,0,6,0,0,0,160,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,161,0,0,0,160,0,0,0,160,0,0,0,12,0,8,0,18,0,0,0,162,0,0,0,1,0,0,0,46,0,0,0,158,0,0,0,159,0,0,0,161,0,0,0,62,0,3,0,157,0,0,0,162,0,0,0,61,0,4,0,18,0,0,0,164,0,0,0,145,0,0,0,61,0,4,0,18,0,0,0,165,0,0,0,151,0,0,0,61,0,4,0,6,0,0,0,166,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,167,0,0,0,166,0,0,0,166,0,0,0,12,0,8,0,18,0,0,0,168,0,0,0,1,0,0,0,46,0,0,0,164,0,0,0,165,0,0,0,167,0,0,0,62,0,3,0,163,0,0,0,168,0,0,0,61,0,4,0,18,0,0,0,170,0,0,0,151,0,0,0,61,0,4,0,18,0,0,0,171,0,0,0,157,0,0,0,61,0,4,0,6,0,0,0,172,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,173,0,0,0,172,0,0,0,172,0,0,0,12,0,8,0,18,0,0,0,174,0,0,0,1,0,0,0,46,0,0,0,170,0,0,0,171,0,0,0,173,0,0,0,62,0,3,0,169,0,0,0,174,0,0,0,61,0,4,0,18,0,0,0,175,0,0,0,163,0,0,0,61,0,4,0,18,0,0,0,176,0,0,0,169,0,0,0,61,0,4,0,6,0,0,0,177,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,178,0,0,0,177,0,0,0,177,0,0,0,12,0,8,0,18,0,0,0,179,0,0,0,1,0,0,0,46,0,0,0,175,0,0,0,176,0,0,0,178,0,0,0,254,0,2,0,179,0,0,0,56,0,1,0,54,0,5,0,18,0,0,0,28,0,0,0,0,0,0,0,25,0,0,0,55,0,3,0,8,0,0,0,26,0,0,0,55,0,3,0,17,0,0,0,27,0,0,0,248,0,2,0,29,0,0,0,61,0,4,0,7,0,0,0,182,0,0,0,26,0,0,0,79,0,7,0,18,0,0,0,183,0,0,0,182,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,61,0,4,0,7,0,0,0,184,0,0,0,26,0,0,0,79,0,7,0,18,0,0,0,185,0,0,0,184,0,0,0,184,0,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,186,0,0,0,27,0,0,0,80,0,5,0,18,0,0,0,187,0,0,0,186,0,0,0,186,0,0,0,12,0,8,0,18,0,0,0,188,0,0,0,1,0,0,0,46,0,0,0,183,0,0,0,185,0,0,0,187,0,0,0,254,0,2,0,188,0,0,0,56,0,1,0,54,0,5,0,18,0,0,0,32,0,0,0,0,0,0,0,30,0,0,0,55,0,3,0,10,0,0,0,31,0,0,0,248,0,2,0,33,0,0,0,65,0,5,0,195,0,0,0,196,0,0,0,194,0,0,0,81,0,0,0,61,0,4,0,191,0,0,0,197,0,0,0,196,0,0,0,61,0,4,0,9,0,0,0,202,0,0,0,31,0,0,0,65,0,6,0,203,0,0,0,204,0,0,0,201,0,0,0,81,0,0,0,202,0,0,0,61,0,4,0,18,0,0,0,205,0,0,0,204,0,0,0,145,0,5,0,18,0,0,0,206,0,0,0,197,0,0,0,205,0,0,0,65,0,5,0,203,0,0,0,208,0,0,0,194,0,0,0,207,0,0,0,61,0,4,0,18,0,0,0,209,0,0,0,208,0,0,0,129,0,5,0,18,0,0,0,210,0,0,0,206,0,0,0,209,0,0,0,254,0,2,0,210,0,0,0,56,0,1,0}; + static uint8_t dice_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,254,1,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,216,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,9,0,15,0,0,0,101,109,105,116,77,105,99,114,111,108,105,110,101,40,118,102,52,59,117,49,59,117,49,59,0,0,0,0,5,0,7,0,12,0,0,0,109,105,99,114,111,108,105,110,101,83,101,103,109,101,110,116,0,0,0,0,5,0,5,0,13,0,0,0,112,97,116,104,73,110,100,101,120,0,0,0,5,0,8,0,14,0,0,0,111,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,0,0,0,0,5,0,8,0,23,0,0,0,115,97,109,112,108,101,67,117,114,118,101,40,118,102,52,59,118,102,52,59,102,49,59,0,5,0,5,0,20,0,0,0,98,97,115,101,108,105,110,101,0,0,0,0,5,0,4,0,21,0,0,0,99,116,114,108,0,0,0,0,5,0,3,0,22,0,0,0,116,0,0,0,5,0,7,0,28,0,0,0,115,97,109,112,108,101,76,105,110,101,40,118,102,52,59,102,49,59,0,0,5,0,4,0,26,0,0,0,108,105,110,101,0,0,0,0,5,0,3,0,27,0,0,0,116,0,0,0,5,0,6,0,32,0,0,0,103,101,116,80,111,105,110,116,40,117,49,59,0,0,0,0,5,0,5,0,31,0,0,0,112,111,105,110,116,73,110,100,101,120,0,0,5,0,5,0,36,0,0,0,98,85,110,105,102,111,114,109,49,0,0,0,6,0,6,0,36,0,0,0,0,0,0,0,117,80,97,116,104,67,111,117,110,116,0,0,6,0,9,0,36,0,0,0,1,0,0,0,117,76,97,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,0,0,6,0,8,0,36,0,0,0,2,0,0,0,117,77,97,120,77,105,99,114,111,108,105,110,101,67,111,117,110,116,0,0,6,0,5,0,36,0,0,0,3,0,0,0,117,80,97,100,49,0,0,0,5,0,3,0,38,0,0,0,0,0,0,0,5,0,7,0,51,0,0,0,109,105,99,114,111,108,105,110,101,83,117,98,112,105,120,101,108,115,0,0,5,0,6,0,62,0,0,0,109,105,99,114,111,108,105,110,101,80,105,120,101,108,115,0,5,0,8,0,69,0,0,0,109,105,99,114,111,108,105,110,101,70,114,97,99,116,80,105,120,101,108,115,0,0,0,0,5,0,5,0,78,0,0,0,98,77,105,99,114,111,108,105,110,101,115,0,6,0,6,0,78,0,0,0,0,0,0,0,105,77,105,99,114,111,108,105,110,101,115,0,5,0,3,0,80,0,0,0,0,0,0,0,5,0,3,0,133,0,0,0,112,48,0,0,5,0,3,0,136,0,0,0,112,49,0,0,5,0,3,0,139,0,0,0,112,50,0,0,5,0,3,0,142,0,0,0,112,51,0,0,5,0,4,0,145,0,0,0,112,48,112,49,0,0,0,0,5,0,4,0,151,0,0,0,112,49,112,50,0,0,0,0,5,0,4,0,157,0,0,0,112,50,112,51,0,0,0,0,5,0,4,0,163,0,0,0,112,48,112,49,112,50,0,0,5,0,4,0,169,0,0,0,112,49,112,50,112,51,0,0,5,0,5,0,192,0,0,0,98,85,110,105,102,111,114,109,48,0,0,0,6,0,6,0,192,0,0,0,0,0,0,0,117,84,114,97,110,115,102,111,114,109,0,0,6,0,7,0,192,0,0,0,1,0,0,0,117,84,114,97,110,115,108,97,116,105,111,110,0,0,0,0,6,0,5,0,192,0,0,0,2,0,0,0,117,80,97,100,48,0,0,0,5,0,3,0,194,0,0,0,0,0,0,0,5,0,4,0,199,0,0,0,98,80,111,105,110,116,115,0,6,0,5,0,199,0,0,0,0,0,0,0,105,80,111,105,110,116,115,0,5,0,3,0,201,0,0,0,0,0,0,0,5,0,7,0,213,0,0,0,98,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,0,0,0,5,0,8,0,216,0,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,6,0,228,0,0,0,108,111,119,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,6,0,229,0,0,0,104,105,103,104,80,97,116,104,73,110,100,101,120,0,0,0,5,0,5,0,233,0,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,6,0,249,0,0,0,109,105,100,80,97,116,104,73,110,100,101,120,0,0,0,0,5,0,8,0,0,1,0,0,109,105,100,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,6,0,2,1,0,0,98,68,105,99,101,77,101,116,97,100,97,116,97,0,0,0,6,0,7,0,2,1,0,0,0,0,0,0,105,68,105,99,101,77,101,116,97,100,97,116,97,0,0,0,5,0,3,0,4,1,0,0,0,0,0,0,5,0,6,0,25,1,0,0,98,97,116,99,104,80,97,116,104,73,110,100,101,120,0,0,5,0,6,0,28,1,0,0,100,105,99,101,77,101,116,97,100,97,116,97,0,0,0,0,5,0,10,0,32,1,0,0,102,105,114,115,116,71,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,0,0,0,5,0,10,0,35,1,0,0,102,105,114,115,116,66,97,116,99,104,83,101,103,109,101,110,116,73,110,100,101,120,73,110,80,97,116,104,0,0,0,0,5,0,7,0,38,1,0,0,103,108,111,98,97,108,83,101,103,109,101,110,116,73,110,100,101,120,0,0,5,0,6,0,46,1,0,0,105,110,112,117,116,73,110,100,105,99,101,115,0,0,0,0,5,0,6,0,48,1,0,0,98,73,110,112,117,116,73,110,100,105,99,101,115,0,0,0,6,0,7,0,48,1,0,0,0,0,0,0,105,73,110,112,117,116,73,110,100,105,99,101,115,0,0,0,5,0,3,0,50,1,0,0,0,0,0,0,5,0,6,0,55,1,0,0,102,114,111,109,80,111,105,110,116,73,110,100,101,120,0,0,5,0,6,0,58,1,0,0,102,108,97,103,115,80,97,116,104,73,110,100,101,120,0,0,5,0,6,0,61,1,0,0,116,111,80,111,105,110,116,73,110,100,101,120,0,0,0,0,5,0,5,0,83,1,0,0,98,97,115,101,108,105,110,101,0,0,0,0,5,0,4,0,84,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,87,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,95,1,0,0,99,116,114,108,0,0,0,0,5,0,4,0,99,1,0,0,105,115,67,117,114,118,101,0,5,0,4,0,107,1,0,0,99,116,114,108,48,0,0,0,5,0,4,0,110,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,117,1,0,0,99,116,114,108,48,95,50,0,5,0,4,0,134,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,141,1,0,0,98,111,117,110,100,0,0,0,5,0,6,0,166,1,0,0,115,101,103,109,101,110,116,67,111,117,110,116,70,0,0,0,5,0,6,0,180,1,0,0,115,101,103,109,101,110,116,67,111,117,110,116,0,0,0,0,5,0,9,0,185,1,0,0,102,105,114,115,116,79,117,116,112,117,116,77,105,99,114,111,108,105,110,101,73,110,100,101,120,0,0,0,5,0,8,0,187,1,0,0,98,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,0,0,6,0,9,0,187,1,0,0,0,0,0,0,105,67,111,109,112,117,116,101,73,110,100,105,114,101,99,116,80,97,114,97,109,115,0,0,5,0,3,0,189,1,0,0,0,0,0,0,5,0,4,0,195,1,0,0,112,114,101,118,84,0,0,0,5,0,5,0,196,1,0,0,112,114,101,118,80,111,105,110,116,0,0,0,5,0,6,0,199,1,0,0,115,101,103,109,101,110,116,73,110,100,101,120,0,0,0,0,5,0,4,0,208,1,0,0,110,101,120,116,84,0,0,0,5,0,5,0,218,1,0,0,110,101,120,116,80,111,105,110,116,0,0,0,5,0,4,0,219,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,221,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,223,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,227,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,229,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,243,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,244,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,246,1,0,0,112,97,114,97,109,0,0,0,72,0,5,0,36,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,36,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,36,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,36,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,36,0,0,0,2,0,0,0,71,0,4,0,38,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,38,0,0,0,33,0,0,0,6,0,0,0,71,0,4,0,77,0,0,0,6,0,0,0,16,0,0,0,72,0,4,0,78,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,78,0,0,0,0,0,0,0,25,0,0,0,72,0,5,0,78,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,78,0,0,0,3,0,0,0,71,0,4,0,80,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,80,0,0,0,33,0,0,0,4,0,0,0,72,0,4,0,192,0,0,0,0,0,0,0,5,0,0,0,72,0,5,0,192,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,192,0,0,0,0,0,0,0,7,0,0,0,16,0,0,0,72,0,5,0,192,0,0,0,1,0,0,0,35,0,0,0,32,0,0,0,72,0,5,0,192,0,0,0,2,0,0,0,35,0,0,0,40,0,0,0,71,0,3,0,192,0,0,0,2,0,0,0,71,0,4,0,194,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,194,0,0,0,33,0,0,0,5,0,0,0,71,0,4,0,198,0,0,0,6,0,0,0,8,0,0,0,72,0,4,0,199,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,199,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,199,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,199,0,0,0,3,0,0,0,71,0,4,0,201,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,201,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,216,0,0,0,11,0,0,0,28,0,0,0,71,0,4,0,1,1,0,0,6,0,0,0,16,0,0,0,72,0,4,0,2,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,2,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,2,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,2,1,0,0,3,0,0,0,71,0,4,0,4,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,4,1,0,0,33,0,0,0,1,0,0,0,71,0,4,0,47,1,0,0,6,0,0,0,8,0,0,0,72,0,4,0,48,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,48,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,48,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,48,1,0,0,3,0,0,0,71,0,4,0,50,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,50,1,0,0,33,0,0,0,3,0,0,0,71,0,4,0,186,1,0,0,6,0,0,0,4,0,0,0,72,0,4,0,187,1,0,0,0,0,0,0,19,0,0,0,72,0,5,0,187,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,187,1,0,0,3,0,0,0,71,0,4,0,189,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,189,1,0,0,33,0,0,0,0,0,0,0,71,0,4,0,253,1,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,9,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,33,0,6,0,11,0,0,0,2,0,0,0,8,0,0,0,10,0,0,0,10,0,0,0,32,0,4,0,17,0,0,0,7,0,0,0,6,0,0,0,23,0,4,0,18,0,0,0,6,0,0,0,2,0,0,0,33,0,6,0,19,0,0,0,18,0,0,0,8,0,0,0,8,0,0,0,17,0,0,0,33,0,5,0,25,0,0,0,18,0,0,0,8,0,0,0,17,0,0,0,33,0,4,0,30,0,0,0,18,0,0,0,10,0,0,0,21,0,4,0,35,0,0,0,32,0,0,0,1,0,0,0,30,0,6,0,36,0,0,0,35,0,0,0,35,0,0,0,35,0,0,0,35,0,0,0,32,0,4,0,37,0,0,0,2,0,0,0,36,0,0,0,59,0,4,0,37,0,0,0,38,0,0,0,2,0,0,0,43,0,4,0,35,0,0,0,39,0,0,0,2,0,0,0,32,0,4,0,40,0,0,0,2,0,0,0,35,0,0,0,20,0,2,0,44,0,0,0,23,0,4,0,49,0,0,0,35,0,0,0,4,0,0,0,32,0,4,0,50,0,0,0,7,0,0,0,49,0,0,0,43,0,4,0,6,0,0,0,53,0,0,0,0,0,0,199,43,0,4,0,6,0,0,0,54,0,0,0,0,254,255,70,43,0,4,0,6,0,0,0,58,0,0,0,0,0,128,67,43,0,4,0,35,0,0,0,72,0,0,0,0,1,0,0,23,0,4,0,76,0,0,0,9,0,0,0,4,0,0,0,29,0,3,0,77,0,0,0,76,0,0,0,30,0,3,0,78,0,0,0,77,0,0,0,32,0,4,0,79,0,0,0,2,0,0,0,78,0,0,0,59,0,4,0,79,0,0,0,80,0,0,0,2,0,0,0,43,0,4,0,35,0,0,0,81,0,0,0,0,0,0,0,43,0,4,0,9,0,0,0,83,0,0,0,0,0,0,0,32,0,4,0,84,0,0,0,7,0,0,0,35,0,0,0,43,0,4,0,9,0,0,0,88,0,0,0,255,255,0,0,43,0,4,0,9,0,0,0,90,0,0,0,1,0,0,0,43,0,4,0,35,0,0,0,94,0,0,0,16,0,0,0,43,0,4,0,9,0,0,0,97,0,0,0,2,0,0,0,43,0,4,0,9,0,0,0,102,0,0,0,3,0,0,0,43,0,4,0,35,0,0,0,114,0,0,0,8,0,0,0,43,0,4,0,35,0,0,0,125,0,0,0,24,0,0,0,32,0,4,0,130,0,0,0,2,0,0,0,76,0,0,0,32,0,4,0,132,0,0,0,7,0,0,0,18,0,0,0,24,0,4,0,191,0,0,0,18,0,0,0,2,0,0,0,30,0,5,0,192,0,0,0,191,0,0,0,18,0,0,0,18,0,0,0,32,0,4,0,193,0,0,0,2,0,0,0,192,0,0,0,59,0,4,0,193,0,0,0,194,0,0,0,2,0,0,0,32,0,4,0,195,0,0,0,2,0,0,0,191,0,0,0,29,0,3,0,198,0,0,0,18,0,0,0,30,0,3,0,199,0,0,0,198,0,0,0,32,0,4,0,200,0,0,0,2,0,0,0,199,0,0,0,59,0,4,0,200,0,0,0,201,0,0,0,2,0,0,0,32,0,4,0,203,0,0,0,2,0,0,0,18,0,0,0,43,0,4,0,35,0,0,0,207,0,0,0,1,0,0,0,23,0,4,0,214,0,0,0,9,0,0,0,3,0,0,0,32,0,4,0,215,0,0,0,1,0,0,0,214,0,0,0,59,0,4,0,215,0,0,0,216,0,0,0,1,0,0,0,32,0,4,0,217,0,0,0,1,0,0,0,9,0,0,0,43,0,4,0,35,0,0,0,240,0,0,0,0,4,0,0,29,0,3,0,1,1,0,0,76,0,0,0,30,0,3,0,2,1,0,0,1,1,0,0,32,0,4,0,3,1,0,0,2,0,0,0,2,1,0,0,59,0,4,0,3,1,0,0,4,1,0,0,2,0,0,0,32,0,4,0,6,1,0,0,2,0,0,0,9,0,0,0,32,0,4,0,27,1,0,0,7,0,0,0,76,0,0,0,23,0,4,0,44,1,0,0,9,0,0,0,2,0,0,0,32,0,4,0,45,1,0,0,7,0,0,0,44,1,0,0,29,0,3,0,47,1,0,0,44,1,0,0,30,0,3,0,48,1,0,0,47,1,0,0,32,0,4,0,49,1,0,0,2,0,0,0,48,1,0,0,59,0,4,0,49,1,0,0,50,1,0,0,2,0,0,0,32,0,4,0,52,1,0,0,2,0,0,0,44,1,0,0,43,0,4,0,9,0,0,0,64,1,0,0,0,0,0,64,43,0,4,0,9,0,0,0,73,1,0,0,0,0,0,128,43,0,4,0,6,0,0,0,96,1,0,0,0,0,0,0,44,0,7,0,7,0,0,0,97,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,96,1,0,0,32,0,4,0,98,1,0,0,7,0,0,0,44,0,0,0,43,0,4,0,9,0,0,0,101,1,0,0,0,0,0,192,43,0,4,0,6,0,0,0,119,1,0,0,0,0,0,64,44,0,5,0,18,0,0,0,120,1,0,0,119,1,0,0,119,1,0,0,43,0,4,0,6,0,0,0,127,1,0,0,171,170,170,62,44,0,7,0,7,0,0,0,128,1,0,0,127,1,0,0,127,1,0,0,127,1,0,0,127,1,0,0,43,0,4,0,6,0,0,0,142,1,0,0,0,0,192,64,44,0,5,0,18,0,0,0,143,1,0,0,142,1,0,0,142,1,0,0,43,0,4,0,6,0,0,0,178,1,0,0,0,0,128,65,29,0,3,0,186,1,0,0,9,0,0,0,30,0,3,0,187,1,0,0,186,1,0,0,32,0,4,0,188,1,0,0,2,0,0,0,187,1,0,0,59,0,4,0,188,1,0,0,189,1,0,0,2,0,0,0,43,0,4,0,35,0,0,0,190,1,0,0,3,0,0,0,43,0,4,0,9,0,0,0,252,1,0,0,64,0,0,0,44,0,6,0,214,0,0,0,253,1,0,0,252,1,0,0,90,0,0,0,90,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,10,0,0,0,213,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,228,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,229,0,0,0,7,0,0,0,59,0,4,0,84,0,0,0,233,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,249,0,0,0,7,0,0,0,59,0,4,0,10,0,0,0,0,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,25,1,0,0,7,0,0,0,59,0,4,0,27,1,0,0,28,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,32,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,35,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,38,1,0,0,7,0,0,0,59,0,4,0,45,1,0,0,46,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,55,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,58,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,61,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,83,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,84,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,87,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,95,1,0,0,7,0,0,0,59,0,4,0,98,1,0,0,99,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,107,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,110,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,117,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,134,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,141,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,166,1,0,0,7,0,0,0,59,0,4,0,84,0,0,0,180,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,185,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,195,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,196,1,0,0,7,0,0,0,59,0,4,0,84,0,0,0,199,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,208,1,0,0,7,0,0,0,59,0,4,0,132,0,0,0,218,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,219,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,221,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,223,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,227,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,229,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,243,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,244,1,0,0,7,0,0,0,59,0,4,0,10,0,0,0,246,1,0,0,7,0,0,0,65,0,5,0,217,0,0,0,218,0,0,0,216,0,0,0,83,0,0,0,61,0,4,0,9,0,0,0,219,0,0,0,218,0,0,0,62,0,3,0,213,0,0,0,219,0,0,0,61,0,4,0,9,0,0,0,220,0,0,0,213,0,0,0,65,0,5,0,40,0,0,0,221,0,0,0,38,0,0,0,207,0,0,0,61,0,4,0,35,0,0,0,222,0,0,0,221,0,0,0,124,0,4,0,9,0,0,0,223,0,0,0,222,0,0,0,174,0,5,0,44,0,0,0,224,0,0,0,220,0,0,0,223,0,0,0,247,0,3,0,226,0,0,0,0,0,0,0,250,0,4,0,224,0,0,0,225,0,0,0,226,0,0,0,248,0,2,0,225,0,0,0,253,0,1,0,248,0,2,0,226,0,0,0,62,0,3,0,228,0,0,0,83,0,0,0,65,0,5,0,40,0,0,0,230,0,0,0,38,0,0,0,81,0,0,0,61,0,4,0,35,0,0,0,231,0,0,0,230,0,0,0,124,0,4,0,9,0,0,0,232,0,0,0,231,0,0,0,62,0,3,0,229,0,0,0,232,0,0,0,62,0,3,0,233,0,0,0,81,0,0,0,249,0,2,0,234,0,0,0,248,0,2,0,234,0,0,0,246,0,4,0,236,0,0,0,237,0,0,0,0,0,0,0,249,0,2,0,238,0,0,0,248,0,2,0,238,0,0,0,61,0,4,0,35,0,0,0,239,0,0,0,233,0,0,0,177,0,5,0,44,0,0,0,241,0,0,0,239,0,0,0,240,0,0,0,247,0,3,0,243,0,0,0,0,0,0,0,250,0,4,0,241,0,0,0,242,0,0,0,243,0,0,0,248,0,2,0,242,0,0,0,61,0,4,0,9,0,0,0,244,0,0,0,228,0,0,0,128,0,5,0,9,0,0,0,245,0,0,0,244,0,0,0,90,0,0,0,61,0,4,0,9,0,0,0,246,0,0,0,229,0,0,0,176,0,5,0,44,0,0,0,247,0,0,0,245,0,0,0,246,0,0,0,249,0,2,0,243,0,0,0,248,0,2,0,243,0,0,0,245,0,7,0,44,0,0,0,248,0,0,0,241,0,0,0,238,0,0,0,247,0,0,0,242,0,0,0,250,0,4,0,248,0,0,0,235,0,0,0,236,0,0,0,248,0,2,0,235,0,0,0,61,0,4,0,9,0,0,0,250,0,0,0,228,0,0,0,61,0,4,0,9,0,0,0,251,0,0,0,229,0,0,0,61,0,4,0,9,0,0,0,252,0,0,0,228,0,0,0,130,0,5,0,9,0,0,0,253,0,0,0,251,0,0,0,252,0,0,0,134,0,5,0,9,0,0,0,254,0,0,0,253,0,0,0,97,0,0,0,128,0,5,0,9,0,0,0,255,0,0,0,250,0,0,0,254,0,0,0,62,0,3,0,249,0,0,0,255,0,0,0,61,0,4,0,9,0,0,0,5,1,0,0,249,0,0,0,65,0,7,0,6,1,0,0,7,1,0,0,4,1,0,0,81,0,0,0,5,1,0,0,97,0,0,0,61,0,4,0,9,0,0,0,8,1,0,0,7,1,0,0,62,0,3,0,0,1,0,0,8,1,0,0,61,0,4,0,9,0,0,0,9,1,0,0,213,0,0,0,61,0,4,0,9,0,0,0,10,1,0,0,0,1,0,0,176,0,5,0,44,0,0,0,11,1,0,0,9,1,0,0,10,1,0,0,247,0,3,0,13,1,0,0,0,0,0,0,250,0,4,0,11,1,0,0,12,1,0,0,15,1,0,0,248,0,2,0,12,1,0,0,61,0,4,0,9,0,0,0,14,1,0,0,249,0,0,0,62,0,3,0,229,0,0,0,14,1,0,0,249,0,2,0,13,1,0,0,248,0,2,0,15,1,0,0,61,0,4,0,9,0,0,0,16,1,0,0,249,0,0,0,62,0,3,0,228,0,0,0,16,1,0,0,61,0,4,0,9,0,0,0,17,1,0,0,213,0,0,0,61,0,4,0,9,0,0,0,18,1,0,0,0,1,0,0,170,0,5,0,44,0,0,0,19,1,0,0,17,1,0,0,18,1,0,0,247,0,3,0,21,1,0,0,0,0,0,0,250,0,4,0,19,1,0,0,20,1,0,0,21,1,0,0,248,0,2,0,20,1,0,0,249,0,2,0,236,0,0,0,248,0,2,0,21,1,0,0,249,0,2,0,13,1,0,0,248,0,2,0,13,1,0,0,61,0,4,0,35,0,0,0,23,1,0,0,233,0,0,0,128,0,5,0,35,0,0,0,24,1,0,0,23,1,0,0,207,0,0,0,62,0,3,0,233,0,0,0,24,1,0,0,249,0,2,0,237,0,0,0,248,0,2,0,237,0,0,0,249,0,2,0,234,0,0,0,248,0,2,0,236,0,0,0,61,0,4,0,9,0,0,0,26,1,0,0,228,0,0,0,62,0,3,0,25,1,0,0,26,1,0,0,61,0,4,0,9,0,0,0,29,1,0,0,25,1,0,0,65,0,6,0,130,0,0,0,30,1,0,0,4,1,0,0,81,0,0,0,29,1,0,0,61,0,4,0,76,0,0,0,31,1,0,0,30,1,0,0,62,0,3,0,28,1,0,0,31,1,0,0,65,0,5,0,10,0,0,0,33,1,0,0,28,1,0,0,90,0,0,0,61,0,4,0,9,0,0,0,34,1,0,0,33,1,0,0,62,0,3,0,32,1,0,0,34,1,0,0,65,0,5,0,10,0,0,0,36,1,0,0,28,1,0,0,97,0,0,0,61,0,4,0,9,0,0,0,37,1,0,0,36,1,0,0,62,0,3,0,35,1,0,0,37,1,0,0,61,0,4,0,9,0,0,0,39,1,0,0,213,0,0,0,61,0,4,0,9,0,0,0,40,1,0,0,35,1,0,0,130,0,5,0,9,0,0,0,41,1,0,0,39,1,0,0,40,1,0,0,61,0,4,0,9,0,0,0,42,1,0,0,32,1,0,0,128,0,5,0,9,0,0,0,43,1,0,0,41,1,0,0,42,1,0,0,62,0,3,0,38,1,0,0,43,1,0,0,61,0,4,0,9,0,0,0,51,1,0,0,38,1,0,0,65,0,6,0,52,1,0,0,53,1,0,0,50,1,0,0,81,0,0,0,51,1,0,0,61,0,4,0,44,1,0,0,54,1,0,0,53,1,0,0,62,0,3,0,46,1,0,0,54,1,0,0,65,0,5,0,10,0,0,0,56,1,0,0,46,1,0,0,83,0,0,0,61,0,4,0,9,0,0,0,57,1,0,0,56,1,0,0,62,0,3,0,55,1,0,0,57,1,0,0,65,0,5,0,10,0,0,0,59,1,0,0,46,1,0,0,90,0,0,0,61,0,4,0,9,0,0,0,60,1,0,0,59,1,0,0,62,0,3,0,58,1,0,0,60,1,0,0,61,0,4,0,9,0,0,0,62,1,0,0,55,1,0,0,62,0,3,0,61,1,0,0,62,1,0,0,61,0,4,0,9,0,0,0,63,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,65,1,0,0,63,1,0,0,64,1,0,0,171,0,5,0,44,0,0,0,66,1,0,0,65,1,0,0,83,0,0,0,247,0,3,0,68,1,0,0,0,0,0,0,250,0,4,0,66,1,0,0,67,1,0,0,71,1,0,0,248,0,2,0,67,1,0,0,61,0,4,0,9,0,0,0,69,1,0,0,61,1,0,0,128,0,5,0,9,0,0,0,70,1,0,0,69,1,0,0,102,0,0,0,62,0,3,0,61,1,0,0,70,1,0,0,249,0,2,0,68,1,0,0,248,0,2,0,71,1,0,0,61,0,4,0,9,0,0,0,72,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,74,1,0,0,72,1,0,0,73,1,0,0,171,0,5,0,44,0,0,0,75,1,0,0,74,1,0,0,83,0,0,0,247,0,3,0,77,1,0,0,0,0,0,0,250,0,4,0,75,1,0,0,76,1,0,0,80,1,0,0,248,0,2,0,76,1,0,0,61,0,4,0,9,0,0,0,78,1,0,0,61,1,0,0,128,0,5,0,9,0,0,0,79,1,0,0,78,1,0,0,97,0,0,0,62,0,3,0,61,1,0,0,79,1,0,0,249,0,2,0,77,1,0,0,248,0,2,0,80,1,0,0,61,0,4,0,9,0,0,0,81,1,0,0,61,1,0,0,128,0,5,0,9,0,0,0,82,1,0,0,81,1,0,0,90,0,0,0,62,0,3,0,61,1,0,0,82,1,0,0,249,0,2,0,77,1,0,0,248,0,2,0,77,1,0,0,249,0,2,0,68,1,0,0,248,0,2,0,68,1,0,0,61,0,4,0,9,0,0,0,85,1,0,0,55,1,0,0,62,0,3,0,84,1,0,0,85,1,0,0,57,0,5,0,18,0,0,0,86,1,0,0,32,0,0,0,84,1,0,0,61,0,4,0,9,0,0,0,88,1,0,0,61,1,0,0,62,0,3,0,87,1,0,0,88,1,0,0,57,0,5,0,18,0,0,0,89,1,0,0,32,0,0,0,87,1,0,0,81,0,5,0,6,0,0,0,90,1,0,0,86,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,91,1,0,0,86,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,92,1,0,0,89,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,93,1,0,0,89,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,94,1,0,0,90,1,0,0,91,1,0,0,92,1,0,0,93,1,0,0,62,0,3,0,83,1,0,0,94,1,0,0,62,0,3,0,95,1,0,0,97,1,0,0,61,0,4,0,9,0,0,0,100,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,102,1,0,0,100,1,0,0,101,1,0,0,171,0,5,0,44,0,0,0,103,1,0,0,102,1,0,0,83,0,0,0,62,0,3,0,99,1,0,0,103,1,0,0,61,0,4,0,44,0,0,0,104,1,0,0,99,1,0,0,247,0,3,0,106,1,0,0,0,0,0,0,250,0,4,0,104,1,0,0,105,1,0,0,171,1,0,0,248,0,2,0,105,1,0,0,61,0,4,0,9,0,0,0,108,1,0,0,55,1,0,0,128,0,5,0,9,0,0,0,109,1,0,0,108,1,0,0,90,0,0,0,62,0,3,0,110,1,0,0,109,1,0,0,57,0,5,0,18,0,0,0,111,1,0,0,32,0,0,0,110,1,0,0,62,0,3,0,107,1,0,0,111,1,0,0,61,0,4,0,9,0,0,0,112,1,0,0,58,1,0,0,199,0,5,0,9,0,0,0,113,1,0,0,112,1,0,0,73,1,0,0,171,0,5,0,44,0,0,0,114,1,0,0,113,1,0,0,83,0,0,0,247,0,3,0,116,1,0,0,0,0,0,0,250,0,4,0,114,1,0,0,115,1,0,0,130,1,0,0,248,0,2,0,115,1,0,0,61,0,4,0,18,0,0,0,118,1,0,0,107,1,0,0,133,0,5,0,18,0,0,0,121,1,0,0,118,1,0,0,120,1,0,0,62,0,3,0,117,1,0,0,121,1,0,0,61,0,4,0,7,0,0,0,122,1,0,0,83,1,0,0,61,0,4,0,18,0,0,0,123,1,0,0,107,1,0,0,133,0,5,0,18,0,0,0,124,1,0,0,123,1,0,0,120,1,0,0,79,0,9,0,7,0,0,0,125,1,0,0,124,1,0,0,124,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,129,0,5,0,7,0,0,0,126,1,0,0,122,1,0,0,125,1,0,0,133,0,5,0,7,0,0,0,129,1,0,0,126,1,0,0,128,1,0,0,62,0,3,0,95,1,0,0,129,1,0,0,249,0,2,0,116,1,0,0,248,0,2,0,130,1,0,0,61,0,4,0,18,0,0,0,131,1,0,0,107,1,0,0,61,0,4,0,9,0,0,0,132,1,0,0,55,1,0,0,128,0,5,0,9,0,0,0,133,1,0,0,132,1,0,0,97,0,0,0,62,0,3,0,134,1,0,0,133,1,0,0,57,0,5,0,18,0,0,0,135,1,0,0,32,0,0,0,134,1,0,0,81,0,5,0,6,0,0,0,136,1,0,0,131,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,137,1,0,0,131,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,138,1,0,0,135,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,139,1,0,0,135,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,140,1,0,0,136,1,0,0,137,1,0,0,138,1,0,0,139,1,0,0,62,0,3,0,95,1,0,0,140,1,0,0,249,0,2,0,116,1,0,0,248,0,2,0,116,1,0,0,61,0,4,0,7,0,0,0,144,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,145,1,0,0,144,1,0,0,144,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,146,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,147,1,0,0,146,1,0,0,146,1,0,0,0,0,0,0,1,0,0,0,142,0,5,0,18,0,0,0,148,1,0,0,147,1,0,0,119,1,0,0,131,0,5,0,18,0,0,0,149,1,0,0,145,1,0,0,148,1,0,0,61,0,4,0,7,0,0,0,150,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,151,1,0,0,150,1,0,0,150,1,0,0,0,0,0,0,1,0,0,0,129,0,5,0,18,0,0,0,152,1,0,0,149,1,0,0,151,1,0,0,12,0,6,0,18,0,0,0,153,1,0,0,1,0,0,0,4,0,0,0,152,1,0,0,61,0,4,0,7,0,0,0,154,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,155,1,0,0,154,1,0,0,154,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,156,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,157,1,0,0,156,1,0,0,156,1,0,0,2,0,0,0,3,0,0,0,142,0,5,0,18,0,0,0,158,1,0,0,157,1,0,0,119,1,0,0,131,0,5,0,18,0,0,0,159,1,0,0,155,1,0,0,158,1,0,0,61,0,4,0,7,0,0,0,160,1,0,0,95,1,0,0,79,0,7,0,18,0,0,0,161,1,0,0,160,1,0,0,160,1,0,0,0,0,0,0,1,0,0,0,129,0,5,0,18,0,0,0,162,1,0,0,159,1,0,0,161,1,0,0,12,0,6,0,18,0,0,0,163,1,0,0,1,0,0,0,4,0,0,0,162,1,0,0,12,0,7,0,18,0,0,0,164,1,0,0,1,0,0,0,40,0,0,0,153,1,0,0,163,1,0,0,133,0,5,0,18,0,0,0,165,1,0,0,143,1,0,0,164,1,0,0,62,0,3,0,141,1,0,0,165,1,0,0,61,0,4,0,18,0,0,0,167,1,0,0,141,1,0,0,12,0,6,0,6,0,0,0,168,1,0,0,1,0,0,0,66,0,0,0,167,1,0,0,136,0,5,0,6,0,0,0,169,1,0,0,168,1,0,0,119,1,0,0,12,0,6,0,6,0,0,0,170,1,0,0,1,0,0,0,31,0,0,0,169,1,0,0,62,0,3,0,166,1,0,0,170,1,0,0,249,0,2,0,106,1,0,0,248,0,2,0,171,1,0,0,61,0,4,0,7,0,0,0,172,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,173,1,0,0,172,1,0,0,172,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,7,0,0,0,174,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,175,1,0,0,174,1,0,0,174,1,0,0,0,0,0,0,1,0,0,0,131,0,5,0,18,0,0,0,176,1,0,0,173,1,0,0,175,1,0,0,12,0,6,0,6,0,0,0,177,1,0,0,1,0,0,0,66,0,0,0,176,1,0,0,136,0,5,0,6,0,0,0,179,1,0,0,177,1,0,0,178,1,0,0,62,0,3,0,166,1,0,0,179,1,0,0,249,0,2,0,106,1,0,0,248,0,2,0,106,1,0,0,61,0,4,0,6,0,0,0,181,1,0,0,166,1,0,0,12,0,6,0,6,0,0,0,182,1,0,0,1,0,0,0,9,0,0,0,181,1,0,0,110,0,4,0,35,0,0,0,183,1,0,0,182,1,0,0,12,0,7,0,35,0,0,0,184,1,0,0,1,0,0,0,42,0,0,0,183,1,0,0,207,0,0,0,62,0,3,0,180,1,0,0,184,1,0,0,65,0,6,0,6,1,0,0,191,1,0,0,189,1,0,0,81,0,0,0,190,1,0,0,61,0,4,0,35,0,0,0,192,1,0,0,180,1,0,0,124,0,4,0,9,0,0,0,193,1,0,0,192,1,0,0,234,0,7,0,9,0,0,0,194,1,0,0,191,1,0,0,90,0,0,0,83,0,0,0,193,1,0,0,62,0,3,0,185,1,0,0,194,1,0,0,62,0,3,0,195,1,0,0,96,1,0,0,61,0,4,0,7,0,0,0,197,1,0,0,83,1,0,0,79,0,7,0,18,0,0,0,198,1,0,0,197,1,0,0,197,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,196,1,0,0,198,1,0,0,62,0,3,0,199,1,0,0,81,0,0,0,249,0,2,0,200,1,0,0,248,0,2,0,200,1,0,0,246,0,4,0,202,1,0,0,203,1,0,0,0,0,0,0,249,0,2,0,204,1,0,0,248,0,2,0,204,1,0,0,61,0,4,0,35,0,0,0,205,1,0,0,199,1,0,0,61,0,4,0,35,0,0,0,206,1,0,0,180,1,0,0,177,0,5,0,44,0,0,0,207,1,0,0,205,1,0,0,206,1,0,0,250,0,4,0,207,1,0,0,201,1,0,0,202,1,0,0,248,0,2,0,201,1,0,0,61,0,4,0,35,0,0,0,209,1,0,0,199,1,0,0,128,0,5,0,35,0,0,0,210,1,0,0,209,1,0,0,207,0,0,0,111,0,4,0,6,0,0,0,211,1,0,0,210,1,0,0,61,0,4,0,35,0,0,0,212,1,0,0,180,1,0,0,111,0,4,0,6,0,0,0,213,1,0,0,212,1,0,0,136,0,5,0,6,0,0,0,214,1,0,0,211,1,0,0,213,1,0,0,62,0,3,0,208,1,0,0,214,1,0,0,61,0,4,0,44,0,0,0,215,1,0,0,99,1,0,0,247,0,3,0,217,1,0,0,0,0,0,0,250,0,4,0,215,1,0,0,216,1,0,0,226,1,0,0,248,0,2,0,216,1,0,0,61,0,4,0,7,0,0,0,220,1,0,0,83,1,0,0,62,0,3,0,219,1,0,0,220,1,0,0,61,0,4,0,7,0,0,0,222,1,0,0,95,1,0,0,62,0,3,0,221,1,0,0,222,1,0,0,61,0,4,0,6,0,0,0,224,1,0,0,208,1,0,0,62,0,3,0,223,1,0,0,224,1,0,0,57,0,7,0,18,0,0,0,225,1,0,0,23,0,0,0,219,1,0,0,221,1,0,0,223,1,0,0,62,0,3,0,218,1,0,0,225,1,0,0,249,0,2,0,217,1,0,0,248,0,2,0,226,1,0,0,61,0,4,0,7,0,0,0,228,1,0,0,83,1,0,0,62,0,3,0,227,1,0,0,228,1,0,0,61,0,4,0,6,0,0,0,230,1,0,0,208,1,0,0,62,0,3,0,229,1,0,0,230,1,0,0,57,0,6,0,18,0,0,0,231,1,0,0,28,0,0,0,227,1,0,0,229,1,0,0,62,0,3,0,218,1,0,0,231,1,0,0,249,0,2,0,217,1,0,0,248,0,2,0,217,1,0,0,61,0,4,0,18,0,0,0,232,1,0,0,196,1,0,0,61,0,4,0,18,0,0,0,233,1,0,0,218,1,0,0,81,0,5,0,6,0,0,0,234,1,0,0,232,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,235,1,0,0,232,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,236,1,0,0,233,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,237,1,0,0,233,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,238,1,0,0,234,1,0,0,235,1,0,0,236,1,0,0,237,1,0,0,61,0,4,0,9,0,0,0,239,1,0,0,185,1,0,0,61,0,4,0,35,0,0,0,240,1,0,0,199,1,0,0,124,0,4,0,9,0,0,0,241,1,0,0,240,1,0,0,128,0,5,0,9,0,0,0,242,1,0,0,239,1,0,0,241,1,0,0,62,0,3,0,243,1,0,0,238,1,0,0,61,0,4,0,9,0,0,0,245,1,0,0,25,1,0,0,62,0,3,0,244,1,0,0,245,1,0,0,62,0,3,0,246,1,0,0,242,1,0,0,57,0,7,0,2,0,0,0,247,1,0,0,15,0,0,0,243,1,0,0,244,1,0,0,246,1,0,0,61,0,4,0,6,0,0,0,248,1,0,0,208,1,0,0,62,0,3,0,195,1,0,0,248,1,0,0,61,0,4,0,18,0,0,0,249,1,0,0,218,1,0,0,62,0,3,0,196,1,0,0,249,1,0,0,249,0,2,0,203,1,0,0,248,0,2,0,203,1,0,0,61,0,4,0,35,0,0,0,250,1,0,0,199,1,0,0,128,0,5,0,35,0,0,0,251,1,0,0,250,1,0,0,207,0,0,0,62,0,3,0,199,1,0,0,251,1,0,0,249,0,2,0,200,1,0,0,248,0,2,0,202,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,2,0,0,0,15,0,0,0,0,0,0,0,11,0,0,0,55,0,3,0,8,0,0,0,12,0,0,0,55,0,3,0,10,0,0,0,13,0,0,0,55,0,3,0,10,0,0,0,14,0,0,0,248,0,2,0,16,0,0,0,59,0,4,0,50,0,0,0,51,0,0,0,7,0,0,0,59,0,4,0,50,0,0,0,62,0,0,0,7,0,0,0,59,0,4,0,50,0,0,0,69,0,0,0,7,0,0,0,61,0,4,0,9,0,0,0,34,0,0,0,14,0,0,0,65,0,5,0,40,0,0,0,41,0,0,0,38,0,0,0,39,0,0,0,61,0,4,0,35,0,0,0,42,0,0,0,41,0,0,0,124,0,4,0,9,0,0,0,43,0,0,0,42,0,0,0,174,0,5,0,44,0,0,0,45,0,0,0,34,0,0,0,43,0,0,0,247,0,3,0,47,0,0,0,0,0,0,0,250,0,4,0,45,0,0,0,46,0,0,0,47,0,0,0,248,0,2,0,46,0,0,0,253,0,1,0,248,0,2,0,47,0,0,0,61,0,4,0,7,0,0,0,52,0,0,0,12,0,0,0,80,0,7,0,7,0,0,0,55,0,0,0,53,0,0,0,53,0,0,0,53,0,0,0,53,0,0,0,80,0,7,0,7,0,0,0,56,0,0,0,54,0,0,0,54,0,0,0,54,0,0,0,54,0,0,0,12,0,8,0,7,0,0,0,57,0,0,0,1,0,0,0,43,0,0,0,52,0,0,0,55,0,0,0,56,0,0,0,142,0,5,0,7,0,0,0,59,0,0,0,57,0,0,0,58,0,0,0,12,0,6,0,7,0,0,0,60,0,0,0,1,0,0,0,1,0,0,0,59,0,0,0,110,0,4,0,49,0,0,0,61,0,0,0,60,0,0,0,62,0,3,0,51,0,0,0,61,0,0,0,61,0,4,0,49,0,0,0,63,0,0,0,51,0,0,0,111,0,4,0,7,0,0,0,64,0,0,0,63,0,0,0,80,0,7,0,7,0,0,0,65,0,0,0,58,0,0,0,58,0,0,0,58,0,0,0,58,0,0,0,136,0,5,0,7,0,0,0,66,0,0,0,64,0,0,0,65,0,0,0,12,0,6,0,7,0,0,0,67,0,0,0,1,0,0,0,8,0,0,0,66,0,0,0,110,0,4,0,49,0,0,0,68,0,0,0,67,0,0,0,62,0,3,0,62,0,0,0,68,0,0,0,61,0,4,0,49,0,0,0,70,0,0,0,51,0,0,0,61,0,4,0,49,0,0,0,71,0,0,0,62,0,0,0,80,0,7,0,49,0,0,0,73,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,72,0,0,0,132,0,5,0,49,0,0,0,74,0,0,0,71,0,0,0,73,0,0,0,130,0,5,0,49,0,0,0,75,0,0,0,70,0,0,0,74,0,0,0,62,0,3,0,69,0,0,0,75,0,0,0,61,0,4,0,9,0,0,0,82,0,0,0,14,0,0,0,65,0,5,0,84,0,0,0,85,0,0,0,62,0,0,0,83,0,0,0,61,0,4,0,35,0,0,0,86,0,0,0,85,0,0,0,124,0,4,0,9,0,0,0,87,0,0,0,86,0,0,0,199,0,5,0,9,0,0,0,89,0,0,0,87,0,0,0,88,0,0,0,65,0,5,0,84,0,0,0,91,0,0,0,62,0,0,0,90,0,0,0,61,0,4,0,35,0,0,0,92,0,0,0,91,0,0,0,124,0,4,0,9,0,0,0,93,0,0,0,92,0,0,0,196,0,5,0,9,0,0,0,95,0,0,0,93,0,0,0,94,0,0,0,197,0,5,0,9,0,0,0,96,0,0,0,89,0,0,0,95,0,0,0,65,0,5,0,84,0,0,0,98,0,0,0,62,0,0,0,97,0,0,0,61,0,4,0,35,0,0,0,99,0,0,0,98,0,0,0,124,0,4,0,9,0,0,0,100,0,0,0,99,0,0,0,199,0,5,0,9,0,0,0,101,0,0,0,100,0,0,0,88,0,0,0,65,0,5,0,84,0,0,0,103,0,0,0,62,0,0,0,102,0,0,0,61,0,4,0,35,0,0,0,104,0,0,0,103,0,0,0,124,0,4,0,9,0,0,0,105,0,0,0,104,0,0,0,196,0,5,0,9,0,0,0,106,0,0,0,105,0,0,0,94,0,0,0,197,0,5,0,9,0,0,0,107,0,0,0,101,0,0,0,106,0,0,0,65,0,5,0,84,0,0,0,108,0,0,0,69,0,0,0,83,0,0,0,61,0,4,0,35,0,0,0,109,0,0,0,108,0,0,0,124,0,4,0,9,0,0,0,110,0,0,0,109,0,0,0,65,0,5,0,84,0,0,0,111,0,0,0,69,0,0,0,90,0,0,0,61,0,4,0,35,0,0,0,112,0,0,0,111,0,0,0,124,0,4,0,9,0,0,0,113,0,0,0,112,0,0,0,196,0,5,0,9,0,0,0,115,0,0,0,113,0,0,0,114,0,0,0,197,0,5,0,9,0,0,0,116,0,0,0,110,0,0,0,115,0,0,0,65,0,5,0,84,0,0,0,117,0,0,0,69,0,0,0,97,0,0,0,61,0,4,0,35,0,0,0,118,0,0,0,117,0,0,0,124,0,4,0,9,0,0,0,119,0,0,0,118,0,0,0,196,0,5,0,9,0,0,0,120,0,0,0,119,0,0,0,94,0,0,0,197,0,5,0,9,0,0,0,121,0,0,0,116,0,0,0,120,0,0,0,65,0,5,0,84,0,0,0,122,0,0,0,69,0,0,0,102,0,0,0,61,0,4,0,35,0,0,0,123,0,0,0,122,0,0,0,124,0,4,0,9,0,0,0,124,0,0,0,123,0,0,0,196,0,5,0,9,0,0,0,126,0,0,0,124,0,0,0,125,0,0,0,197,0,5,0,9,0,0,0,127,0,0,0,121,0,0,0,126,0,0,0,61,0,4,0,9,0,0,0,128,0,0,0,13,0,0,0,80,0,7,0,76,0,0,0,129,0,0,0,96,0,0,0,107,0,0,0,127,0,0,0,128,0,0,0,65,0,6,0,130,0,0,0,131,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,62,0,3,0,131,0,0,0,129,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,18,0,0,0,23,0,0,0,0,0,0,0,19,0,0,0,55,0,3,0,8,0,0,0,20,0,0,0,55,0,3,0,8,0,0,0,21,0,0,0,55,0,3,0,17,0,0,0,22,0,0,0,248,0,2,0,24,0,0,0,59,0,4,0,132,0,0,0,133,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,136,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,139,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,142,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,145,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,151,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,157,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,163,0,0,0,7,0,0,0,59,0,4,0,132,0,0,0,169,0,0,0,7,0,0,0,61,0,4,0,7,0,0,0,134,0,0,0,20,0,0,0,79,0,7,0,18,0,0,0,135,0,0,0,134,0,0,0,134,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,133,0,0,0,135,0,0,0,61,0,4,0,7,0,0,0,137,0,0,0,21,0,0,0,79,0,7,0,18,0,0,0,138,0,0,0,137,0,0,0,137,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,136,0,0,0,138,0,0,0,61,0,4,0,7,0,0,0,140,0,0,0,21,0,0,0,79,0,7,0,18,0,0,0,141,0,0,0,140,0,0,0,140,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,139,0,0,0,141,0,0,0,61,0,4,0,7,0,0,0,143,0,0,0,20,0,0,0,79,0,7,0,18,0,0,0,144,0,0,0,143,0,0,0,143,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,142,0,0,0,144,0,0,0,61,0,4,0,18,0,0,0,146,0,0,0,133,0,0,0,61,0,4,0,18,0,0,0,147,0,0,0,136,0,0,0,61,0,4,0,6,0,0,0,148,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,149,0,0,0,148,0,0,0,148,0,0,0,12,0,8,0,18,0,0,0,150,0,0,0,1,0,0,0,46,0,0,0,146,0,0,0,147,0,0,0,149,0,0,0,62,0,3,0,145,0,0,0,150,0,0,0,61,0,4,0,18,0,0,0,152,0,0,0,136,0,0,0,61,0,4,0,18,0,0,0,153,0,0,0,139,0,0,0,61,0,4,0,6,0,0,0,154,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,155,0,0,0,154,0,0,0,154,0,0,0,12,0,8,0,18,0,0,0,156,0,0,0,1,0,0,0,46,0,0,0,152,0,0,0,153,0,0,0,155,0,0,0,62,0,3,0,151,0,0,0,156,0,0,0,61,0,4,0,18,0,0,0,158,0,0,0,139,0,0,0,61,0,4,0,18,0,0,0,159,0,0,0,142,0,0,0,61,0,4,0,6,0,0,0,160,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,161,0,0,0,160,0,0,0,160,0,0,0,12,0,8,0,18,0,0,0,162,0,0,0,1,0,0,0,46,0,0,0,158,0,0,0,159,0,0,0,161,0,0,0,62,0,3,0,157,0,0,0,162,0,0,0,61,0,4,0,18,0,0,0,164,0,0,0,145,0,0,0,61,0,4,0,18,0,0,0,165,0,0,0,151,0,0,0,61,0,4,0,6,0,0,0,166,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,167,0,0,0,166,0,0,0,166,0,0,0,12,0,8,0,18,0,0,0,168,0,0,0,1,0,0,0,46,0,0,0,164,0,0,0,165,0,0,0,167,0,0,0,62,0,3,0,163,0,0,0,168,0,0,0,61,0,4,0,18,0,0,0,170,0,0,0,151,0,0,0,61,0,4,0,18,0,0,0,171,0,0,0,157,0,0,0,61,0,4,0,6,0,0,0,172,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,173,0,0,0,172,0,0,0,172,0,0,0,12,0,8,0,18,0,0,0,174,0,0,0,1,0,0,0,46,0,0,0,170,0,0,0,171,0,0,0,173,0,0,0,62,0,3,0,169,0,0,0,174,0,0,0,61,0,4,0,18,0,0,0,175,0,0,0,163,0,0,0,61,0,4,0,18,0,0,0,176,0,0,0,169,0,0,0,61,0,4,0,6,0,0,0,177,0,0,0,22,0,0,0,80,0,5,0,18,0,0,0,178,0,0,0,177,0,0,0,177,0,0,0,12,0,8,0,18,0,0,0,179,0,0,0,1,0,0,0,46,0,0,0,175,0,0,0,176,0,0,0,178,0,0,0,254,0,2,0,179,0,0,0,56,0,1,0,54,0,5,0,18,0,0,0,28,0,0,0,0,0,0,0,25,0,0,0,55,0,3,0,8,0,0,0,26,0,0,0,55,0,3,0,17,0,0,0,27,0,0,0,248,0,2,0,29,0,0,0,61,0,4,0,7,0,0,0,182,0,0,0,26,0,0,0,79,0,7,0,18,0,0,0,183,0,0,0,182,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,61,0,4,0,7,0,0,0,184,0,0,0,26,0,0,0,79,0,7,0,18,0,0,0,185,0,0,0,184,0,0,0,184,0,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,186,0,0,0,27,0,0,0,80,0,5,0,18,0,0,0,187,0,0,0,186,0,0,0,186,0,0,0,12,0,8,0,18,0,0,0,188,0,0,0,1,0,0,0,46,0,0,0,183,0,0,0,185,0,0,0,187,0,0,0,254,0,2,0,188,0,0,0,56,0,1,0,54,0,5,0,18,0,0,0,32,0,0,0,0,0,0,0,30,0,0,0,55,0,3,0,10,0,0,0,31,0,0,0,248,0,2,0,33,0,0,0,65,0,5,0,195,0,0,0,196,0,0,0,194,0,0,0,81,0,0,0,61,0,4,0,191,0,0,0,197,0,0,0,196,0,0,0,61,0,4,0,9,0,0,0,202,0,0,0,31,0,0,0,65,0,6,0,203,0,0,0,204,0,0,0,201,0,0,0,81,0,0,0,202,0,0,0,61,0,4,0,18,0,0,0,205,0,0,0,204,0,0,0,145,0,5,0,18,0,0,0,206,0,0,0,197,0,0,0,205,0,0,0,65,0,5,0,203,0,0,0,208,0,0,0,194,0,0,0,207,0,0,0,61,0,4,0,18,0,0,0,209,0,0,0,208,0,0,0,129,0,5,0,18,0,0,0,210,0,0,0,206,0,0,0,209,0,0,0,254,0,2,0,210,0,0,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_DICE_COMP_SPV_H diff --git a/src/shaders/generated/fill_comp.h b/src/shaders/generated/fill_comp.h index 58bbd9e9..4b5a6fa7 100644 --- a/src/shaders/generated/fill_comp.h +++ b/src/shaders/generated/fill_comp.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_FILL_COMP_H namespace Pathfinder { - static uint8_t fill_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,105,109,97,103,101,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,49,54,44,32,108,111,99,97,108,95,115,105,122,101,95,121,32,61,32,52,41,32,105,110,59,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,117,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,13,10,47,47,32,78,111,32,115,105,109,117,108,116,97,110,101,111,117,115,32,105,109,97,103,101,32,82,69,65,68,32,38,32,87,82,73,84,69,32,102,111,114,32,71,76,69,83,46,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,59,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,65,114,101,97,76,85,84,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,118,101,99,50,32,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,59,13,10,32,32,32,32,105,118,101,99,50,32,112,97,100,59,13,10,125,59,13,10,13,10,47,47,32,109,105,99,114,111,108,105,110,101,115,95,98,117,102,102,101,114,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,70,105,108,108,115,32,123,13,10,32,32,32,32,117,105,110,116,32,105,70,105,108,108,115,91,93,59,13,10,125,59,13,10,13,10,47,47,32,112,114,111,112,97,103,97,116,101,95,109,101,116,97,100,97,116,97,95,98,117,102,102,101,114,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,91,49,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,13,10,32,32,32,32,47,47,32,91,50,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,13,10,32,32,32,32,47,47,32,91,51,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,98,105,116,115,13,10,32,32,32,32,47,47,32,91,52,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,47,47,32,122,95,98,117,102,102,101,114,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,98,117,102,102,101,114,32,98,65,108,112,104,97,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,97,108,112,104,97,32,116,105,108,101,32,105,110,100,101,120,13,10,32,32,32,32,47,47,32,91,49,93,58,32,99,108,105,112,32,116,105,108,101,32,105,110,100,101,120,13,10,32,32,32,32,117,105,110,116,32,105,65,108,112,104,97,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,118,101,99,52,32,99,111,109,112,117,116,101,67,111,118,101,114,97,103,101,40,118,101,99,50,32,102,114,111,109,44,32,118,101,99,50,32,116,111,44,32,115,97,109,112,108,101,114,50,68,32,97,114,101,97,76,85,84,41,32,123,13,10,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,119,105,110,100,105,110,103,44,32,97,110,100,32,115,111,114,116,32,105,110,116,111,32,97,32,99,111,110,115,105,115,116,101,110,116,32,111,114,100,101,114,32,115,111,32,119,101,32,111,110,108,121,32,110,101,101,100,32,116,111,32,102,105,110,100,32,111,110,101,32,114,111,111,116,32,98,101,108,111,119,46,13,10,32,32,32,32,118,101,99,50,32,108,101,102,116,32,61,32,102,114,111,109,46,120,32,60,32,116,111,46,120,32,63,32,102,114,111,109,32,58,32,116,111,44,32,114,105,103,104,116,32,61,32,102,114,111,109,46,120,32,60,32,116,111,46,120,32,63,32,116,111,32,58,32,102,114,111,109,59,13,10,13,10,32,32,32,32,47,47,32,83,104,111,111,116,32,97,32,118,101,114,116,105,99,97,108,32,114,97,121,32,116,111,119,97,114,100,32,116,104,101,32,99,117,114,118,101,46,13,10,32,32,32,32,118,101,99,50,32,119,105,110,100,111,119,32,61,32,99,108,97,109,112,40,118,101,99,50,40,102,114,111,109,46,120,44,32,116,111,46,120,41,44,32,45,48,46,53,44,32,48,46,53,41,59,13,10,32,32,32,32,102,108,111,97,116,32,111,102,102,115,101,116,32,61,32,109,105,120,40,119,105,110,100,111,119,46,120,44,32,119,105,110,100,111,119,46,121,44,32,48,46,53,41,32,45,32,108,101,102,116,46,120,59,13,10,13,10,32,32,32,32,47,47,32,79,110,45,115,101,103,109,101,110,116,32,99,111,111,114,100,105,110,97,116,101,46,13,10,32,32,32,32,102,108,111,97,116,32,116,32,61,32,111,102,102,115,101,116,32,47,32,40,114,105,103,104,116,46,120,32,45,32,108,101,102,116,46,120,41,59,13,10,13,10,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,112,111,115,105,116,105,111,110,32,97,110,100,32,100,101,114,105,118,97,116,105,118,101,32,116,111,32,102,111,114,109,32,97,32,108,105,110,101,32,97,112,112,114,111,120,105,109,97,116,105,111,110,46,13,10,32,32,32,32,102,108,111,97,116,32,121,32,61,32,109,105,120,40,108,101,102,116,46,121,44,32,114,105,103,104,116,46,121,44,32,116,41,59,32,47,47,32,67,72,89,58,32,121,32,112,111,115,105,116,105,111,110,32,99,97,108,99,117,108,97,116,101,100,32,102,114,111,109,32,116,46,13,10,32,32,32,32,102,108,111,97,116,32,100,32,61,32,40,114,105,103,104,116,46,121,32,45,32,108,101,102,116,46,121,41,32,47,32,40,114,105,103,104,116,46,120,32,45,32,108,101,102,116,46,120,41,59,32,47,47,32,67,72,89,58,32,68,101,114,105,118,97,116,105,118,101,32,111,102,32,116,104,101,32,115,101,103,109,101,110,116,46,13,10,13,10,32,32,32,32,47,47,32,76,111,111,107,32,117,112,32,97,114,101,97,32,117,110,100,101,114,32,116,104,97,116,32,108,105,110,101,44,32,97,110,100,32,115,99,97,108,101,32,104,111,114,105,122,111,110,116,97,108,108,121,32,116,111,32,116,104,101,32,119,105,110,100,111,119,32,115,105,122,101,46,13,10,32,32,32,32,102,108,111,97,116,32,100,88,32,61,32,119,105,110,100,111,119,46,120,32,45,32,119,105,110,100,111,119,46,121,59,13,10,13,10,32,32,32,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,99,111,108,111,114,32,97,116,32,116,104,101,32,115,112,101,99,105,102,105,99,32,112,111,115,105,116,105,111,110,32,105,110,32,116,101,120,116,117,114,101,32,97,114,101,97,76,85,84,46,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,97,114,101,97,76,85,84,44,32,118,101,99,50,40,121,32,43,32,56,46,48,44,32,97,98,115,40,100,32,42,32,100,88,41,41,32,47,32,49,54,46,48,41,32,42,32,100,88,59,13,10,125,13,10,13,10,118,101,99,52,32,97,99,99,117,109,117,108,97,116,101,67,111,118,101,114,97,103,101,70,111,114,70,105,108,108,76,105,115,116,40,105,110,116,32,102,105,108,108,73,110,100,101,120,44,32,105,118,101,99,50,32,116,105,108,101,83,117,98,67,111,111,114,100,41,32,123,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,70,114,97,103,67,111,111,114,100,32,61,32,118,101,99,50,40,116,105,108,101,83,117,98,67,111,111,114,100,41,32,43,32,118,101,99,50,40,48,46,53,41,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,109,105,103,104,116,32,98,101,32,116,104,101,32,99,111,118,101,114,97,103,101,32,109,97,115,107,46,13,10,32,32,32,32,118,101,99,52,32,99,111,118,101,114,97,103,101,115,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,13,10,32,32,32,32,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,59,13,10,32,32,32,32,100,111,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,105,70,105,108,108,115,91,102,105,108,108,70,114,111,109,44,32,102,105,108,108,84,111,44,32,63,44,32,102,105,108,108,70,114,111,109,44,32,102,105,108,108,84,111,44,32,63,44,32,46,46,46,93,13,10,32,32,32,32,32,32,32,32,47,47,32,87,104,97,116,32,105,115,32,116,104,101,32,116,104,105,114,100,32,101,108,101,109,101,110,116,63,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,102,105,108,108,70,114,111,109,32,61,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,32,43,32,48,93,44,32,102,105,108,108,84,111,32,61,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,32,43,32,49,93,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,80,97,99,107,58,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,102,114,111,109,46,120,44,32,102,114,111,109,46,121,44,32,116,111,46,120,44,32,116,111,46,121,41,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,102,105,108,108,70,114,111,109,32,38,32,48,120,102,102,102,102,117,44,32,102,105,108,108,70,114,111,109,32,62,62,32,49,54,44,32,102,105,108,108,84,111,32,38,32,48,120,102,102,102,102,117,44,32,102,105,108,108,84,111,32,62,62,32,49,54,41,32,47,32,50,53,54,46,48,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,111,32,116,105,108,101,39,115,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,32,32,32,32,108,105,110,101,83,101,103,109,101,110,116,32,45,61,32,116,105,108,101,70,114,97,103,67,111,111,114,100,46,120,121,120,121,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,105,102,32,116,104,105,115,32,116,101,120,101,108,32,105,115,32,99,111,118,101,114,101,100,32,98,121,32,116,104,101,32,102,105,108,108,63,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,43,61,32,99,111,109,112,117,116,101,67,111,118,101,114,97,103,101,40,108,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,44,32,117,65,114,101,97,76,85,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,102,105,108,108,73,110,100,101,120,32,61,32,105,110,116,40,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,32,43,32,50,93,41,59,13,10,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,32,119,104,105,108,101,32,40,102,105,108,108,73,110,100,101,120,32,62,61,32,48,32,38,38,32,105,116,101,114,97,116,105,111,110,32,60,32,49,48,50,52,41,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,118,101,114,97,103,101,115,59,13,10,125,13,10,13,10,105,118,101,99,50,32,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,117,105,110,116,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,117,105,110,116,32,120,32,61,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,38,32,48,120,102,102,117,59,13,10,32,32,32,32,117,105,110,116,32,121,32,61,32,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,62,32,56,117,41,32,38,32,48,120,102,102,117,32,43,32,40,40,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,62,32,49,54,117,41,32,38,32,48,120,102,102,117,41,32,60,60,32,56,117,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,105,118,101,99,50,40,49,54,44,32,52,41,32,42,32,105,118,101,99,50,40,120,44,32,121,41,32,43,32,105,118,101,99,50,40,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,121,41,59,13,10,125,13,10,13,10,47,47,47,32,70,105,108,108,32,97,108,112,104,97,32,116,105,108,101,115,46,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,47,47,32,76,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,117,116,32,111,102,32,108,111,99,97,108,32,115,105,122,101,32,40,49,54,44,32,52,41,32,42,32,105,118,101,99,50,40,49,44,32,52,41,46,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,117,98,67,111,111,114,100,32,61,32,105,118,101,99,50,40,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,121,41,32,42,32,105,118,101,99,50,40,49,44,32,52,41,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,119,111,114,107,97,114,111,117,110,100,32,102,111,114,32,116,104,101,32,54,52,75,32,119,111,114,107,103,114,111,117,112,32,100,105,115,112,97,116,99,104,32,108,105,109,105,116,32,105,110,32,79,112,101,110,71,76,46,13,10,32,32,32,32,117,105,110,116,32,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,61,32,40,103,108,95,87,111,114,107,71,114,111,117,112,73,68,46,120,32,124,32,40,103,108,95,87,111,114,107,71,114,111,117,112,73,68,46,121,32,60,60,32,49,53,41,41,59,13,10,13,10,32,32,32,32,117,105,110,116,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,61,32,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,43,32,117,105,110,116,40,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,46,120,41,59,13,10,32,32,32,32,105,102,32,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,46,121,41,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,105,65,108,112,104,97,84,105,108,101,115,91,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,42,32,50,117,32,43,32,48,117,93,59,13,10,13,10,32,32,32,32,47,47,32,124,63,40,56,98,105,116,41,124,120,40,50,52,98,105,116,41,124,32,45,62,32,124,48,40,56,98,105,116,41,124,120,40,50,52,98,105,116,41,124,13,10,32,32,32,32,105,102,32,40,40,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,32,60,60,32,56,41,32,62,62,32,56,41,32,60,32,48,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,105,110,116,32,102,105,108,108,73,110,100,101,120,32,61,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,93,41,59,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,61,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,93,59,13,10,32,32,32,32,105,110,116,32,98,97,99,107,100,114,111,112,32,61,32,105,110,116,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,41,32,62,62,32,50,52,59,13,10,13,10,32,32,32,32,118,101,99,52,32,99,111,118,101,114,97,103,101,115,32,61,32,118,101,99,52,40,98,97,99,107,100,114,111,112,41,59,13,10,32,32,32,32,99,111,118,101,114,97,103,101,115,32,43,61,32,97,99,99,117,109,117,108,97,116,101,67,111,118,101,114,97,103,101,70,111,114,70,105,108,108,76,105,115,116,40,102,105,108,108,73,110,100,101,120,44,32,116,105,108,101,83,117,98,67,111,111,114,100,41,59,13,10,13,10,32,32,32,32,105,110,116,32,116,105,108,101,67,116,114,108,32,61,32,105,110,116,40,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,62,62,32,49,54,41,32,38,32,48,120,102,102,117,41,59,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,41,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,61,32,99,108,97,109,112,40,97,98,115,40,99,111,118,101,114,97,103,101,115,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,61,32,99,108,97,109,112,40,49,46,48,32,45,32,97,98,115,40,49,46,48,32,45,32,109,111,100,40,99,111,118,101,114,97,103,101,115,44,32,50,46,48,41,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,78,111,116,32,97,118,97,105,108,97,98,108,101,32,102,111,114,32,71,76,69,83,46,13,10,32,32,32,32,35,105,102,110,100,101,102,32,71,76,95,69,83,13,10,32,32,32,32,47,47,32,72,97,110,100,108,101,32,99,108,105,112,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,13,10,32,32,32,32,47,47,32,99,108,105,112,84,105,108,101,73,110,100,101,120,32,115,104,111,117,108,100,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,105,110,116,32,102,105,114,115,116,44,32,97,115,32,105,116,32,109,105,103,104,116,32,98,101,32,110,101,103,97,116,105,118,101,46,13,10,32,32,32,32,105,110,116,32,99,108,105,112,84,105,108,101,73,110,100,101,120,32,61,32,105,110,116,40,105,65,108,112,104,97,84,105,108,101,115,91,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,42,32,50,117,32,43,32,49,117,93,41,59,13,10,32,32,32,32,105,102,32,40,99,108,105,112,84,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,61,32,109,105,110,40,99,111,118,101,114,97,103,101,115,44,32,105,109,97,103,101,76,111,97,100,40,117,68,101,115,116,44,32,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,117,105,110,116,40,99,108,105,112,84,105,108,101,73,110,100,101,120,41,41,41,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,35,101,110,100,105,102,13,10,13,10,32,32,32,32,105,109,97,103,101,83,116,111,114,101,40,117,68,101,115,116,44,32,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,41,44,32,99,111,118,101,114,97,103,101,115,41,59,13,10,125,13,10}; + static uint8_t fill_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,105,109,97,103,101,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,49,54,44,32,108,111,99,97,108,95,115,105,122,101,95,121,32,61,32,52,41,32,105,110,59,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,117,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,117,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,13,10,47,47,32,78,111,32,115,105,109,117,108,116,97,110,101,111,117,115,32,105,109,97,103,101,32,82,69,65,68,32,38,32,87,82,73,84,69,32,102,111,114,32,71,76,69,83,46,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,59,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,65,114,101,97,76,85,84,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,118,101,99,50,32,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,59,13,10,32,32,32,32,105,118,101,99,50,32,117,80,97,100,48,59,13,10,125,59,13,10,13,10,47,47,32,109,105,99,114,111,108,105,110,101,115,95,98,117,102,102,101,114,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,70,105,108,108,115,32,123,13,10,32,32,32,32,117,105,110,116,32,105,70,105,108,108,115,91,93,59,13,10,125,59,13,10,13,10,47,47,32,112,114,111,112,97,103,97,116,101,95,109,101,116,97,100,97,116,97,95,98,117,102,102,101,114,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,112,97,116,104,32,73,68,13,10,32,32,32,32,47,47,32,91,49,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,13,10,32,32,32,32,47,47,32,91,50,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,13,10,32,32,32,32,47,47,32,91,51,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,98,105,116,115,13,10,32,32,32,32,47,47,32,91,52,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,47,47,32,122,95,98,117,102,102,101,114,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,98,117,102,102,101,114,32,98,65,108,112,104,97,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,97,108,112,104,97,32,116,105,108,101,32,105,110,100,101,120,13,10,32,32,32,32,47,47,32,91,49,93,58,32,99,108,105,112,32,116,105,108,101,32,105,110,100,101,120,13,10,32,32,32,32,117,105,110,116,32,105,65,108,112,104,97,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,118,101,99,52,32,99,111,109,112,117,116,101,67,111,118,101,114,97,103,101,40,118,101,99,50,32,102,114,111,109,44,32,118,101,99,50,32,116,111,44,32,115,97,109,112,108,101,114,50,68,32,97,114,101,97,76,85,84,41,32,123,13,10,32,32,32,32,47,47,32,68,101,116,101,114,109,105,110,101,32,119,105,110,100,105,110,103,44,32,97,110,100,32,115,111,114,116,32,105,110,116,111,32,97,32,99,111,110,115,105,115,116,101,110,116,32,111,114,100,101,114,32,115,111,32,119,101,32,111,110,108,121,32,110,101,101,100,32,116,111,32,102,105,110,100,32,111,110,101,32,114,111,111,116,32,98,101,108,111,119,46,13,10,32,32,32,32,118,101,99,50,32,108,101,102,116,32,61,32,102,114,111,109,46,120,32,60,32,116,111,46,120,32,63,32,102,114,111,109,32,58,32,116,111,44,32,114,105,103,104,116,32,61,32,102,114,111,109,46,120,32,60,32,116,111,46,120,32,63,32,116,111,32,58,32,102,114,111,109,59,13,10,13,10,32,32,32,32,47,47,32,83,104,111,111,116,32,97,32,118,101,114,116,105,99,97,108,32,114,97,121,32,116,111,119,97,114,100,32,116,104,101,32,99,117,114,118,101,46,13,10,32,32,32,32,118,101,99,50,32,119,105,110,100,111,119,32,61,32,99,108,97,109,112,40,118,101,99,50,40,102,114,111,109,46,120,44,32,116,111,46,120,41,44,32,45,48,46,53,44,32,48,46,53,41,59,13,10,32,32,32,32,102,108,111,97,116,32,111,102,102,115,101,116,32,61,32,109,105,120,40,119,105,110,100,111,119,46,120,44,32,119,105,110,100,111,119,46,121,44,32,48,46,53,41,32,45,32,108,101,102,116,46,120,59,13,10,13,10,32,32,32,32,47,47,32,79,110,45,115,101,103,109,101,110,116,32,99,111,111,114,100,105,110,97,116,101,46,13,10,32,32,32,32,102,108,111,97,116,32,116,32,61,32,111,102,102,115,101,116,32,47,32,40,114,105,103,104,116,46,120,32,45,32,108,101,102,116,46,120,41,59,13,10,13,10,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,112,111,115,105,116,105,111,110,32,97,110,100,32,100,101,114,105,118,97,116,105,118,101,32,116,111,32,102,111,114,109,32,97,32,108,105,110,101,32,97,112,112,114,111,120,105,109,97,116,105,111,110,46,13,10,32,32,32,32,102,108,111,97,116,32,121,32,61,32,109,105,120,40,108,101,102,116,46,121,44,32,114,105,103,104,116,46,121,44,32,116,41,59,32,47,47,32,67,72,89,58,32,121,32,112,111,115,105,116,105,111,110,32,99,97,108,99,117,108,97,116,101,100,32,102,114,111,109,32,116,46,13,10,32,32,32,32,102,108,111,97,116,32,100,32,61,32,40,114,105,103,104,116,46,121,32,45,32,108,101,102,116,46,121,41,32,47,32,40,114,105,103,104,116,46,120,32,45,32,108,101,102,116,46,120,41,59,32,47,47,32,67,72,89,58,32,68,101,114,105,118,97,116,105,118,101,32,111,102,32,116,104,101,32,115,101,103,109,101,110,116,46,13,10,13,10,32,32,32,32,47,47,32,76,111,111,107,32,117,112,32,97,114,101,97,32,117,110,100,101,114,32,116,104,97,116,32,108,105,110,101,44,32,97,110,100,32,115,99,97,108,101,32,104,111,114,105,122,111,110,116,97,108,108,121,32,116,111,32,116,104,101,32,119,105,110,100,111,119,32,115,105,122,101,46,13,10,32,32,32,32,102,108,111,97,116,32,100,88,32,61,32,119,105,110,100,111,119,46,120,32,45,32,119,105,110,100,111,119,46,121,59,13,10,13,10,32,32,32,32,47,47,32,82,101,116,117,114,110,32,116,104,101,32,99,111,108,111,114,32,97,116,32,116,104,101,32,115,112,101,99,105,102,105,99,32,112,111,115,105,116,105,111,110,32,105,110,32,116,101,120,116,117,114,101,32,97,114,101,97,76,85,84,46,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,97,114,101,97,76,85,84,44,32,118,101,99,50,40,121,32,43,32,56,46,48,44,32,97,98,115,40,100,32,42,32,100,88,41,41,32,47,32,49,54,46,48,41,32,42,32,100,88,59,13,10,125,13,10,13,10,118,101,99,52,32,97,99,99,117,109,117,108,97,116,101,67,111,118,101,114,97,103,101,70,111,114,70,105,108,108,76,105,115,116,40,105,110,116,32,102,105,108,108,73,110,100,101,120,44,32,105,118,101,99,50,32,116,105,108,101,83,117,98,67,111,111,114,100,41,32,123,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,70,114,97,103,67,111,111,114,100,32,61,32,118,101,99,50,40,116,105,108,101,83,117,98,67,111,111,114,100,41,32,43,32,118,101,99,50,40,48,46,53,41,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,109,105,103,104,116,32,98,101,32,116,104,101,32,99,111,118,101,114,97,103,101,32,109,97,115,107,46,13,10,32,32,32,32,118,101,99,52,32,99,111,118,101,114,97,103,101,115,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,13,10,32,32,32,32,105,110,116,32,105,116,101,114,97,116,105,111,110,32,61,32,48,59,13,10,32,32,32,32,100,111,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,105,70,105,108,108,115,91,102,105,108,108,70,114,111,109,44,32,102,105,108,108,84,111,44,32,63,44,32,102,105,108,108,70,114,111,109,44,32,102,105,108,108,84,111,44,32,63,44,32,46,46,46,93,13,10,32,32,32,32,32,32,32,32,47,47,32,87,104,97,116,32,105,115,32,116,104,101,32,116,104,105,114,100,32,101,108,101,109,101,110,116,63,13,10,32,32,32,32,32,32,32,32,117,105,110,116,32,102,105,108,108,70,114,111,109,32,61,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,32,43,32,48,93,44,32,102,105,108,108,84,111,32,61,32,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,32,43,32,49,93,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,80,97,99,107,58,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,102,114,111,109,46,120,44,32,102,114,111,109,46,121,44,32,116,111,46,120,44,32,116,111,46,121,41,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,102,105,108,108,70,114,111,109,32,38,32,48,120,102,102,102,102,117,44,32,102,105,108,108,70,114,111,109,32,62,62,32,49,54,44,32,102,105,108,108,84,111,32,38,32,48,120,102,102,102,102,117,44,32,102,105,108,108,84,111,32,62,62,32,49,54,41,32,47,32,50,53,54,46,48,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,67,111,110,118,101,114,116,32,116,111,32,116,105,108,101,39,115,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,32,32,32,32,108,105,110,101,83,101,103,109,101,110,116,32,45,61,32,116,105,108,101,70,114,97,103,67,111,111,114,100,46,120,121,120,121,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,67,111,109,112,117,116,101,32,105,102,32,116,104,105,115,32,116,101,120,101,108,32,105,115,32,99,111,118,101,114,101,100,32,98,121,32,116,104,101,32,102,105,108,108,63,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,43,61,32,99,111,109,112,117,116,101,67,111,118,101,114,97,103,101,40,108,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,44,32,117,65,114,101,97,76,85,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,102,105,108,108,73,110,100,101,120,32,61,32,105,110,116,40,105,70,105,108,108,115,91,102,105,108,108,73,110,100,101,120,32,42,32,51,32,43,32,50,93,41,59,13,10,13,10,32,32,32,32,32,32,32,32,105,116,101,114,97,116,105,111,110,43,43,59,13,10,32,32,32,32,125,32,119,104,105,108,101,32,40,102,105,108,108,73,110,100,101,120,32,62,61,32,48,32,38,38,32,105,116,101,114,97,116,105,111,110,32,60,32,49,48,50,52,41,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,118,101,114,97,103,101,115,59,13,10,125,13,10,13,10,105,118,101,99,50,32,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,117,105,110,116,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,117,105,110,116,32,120,32,61,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,38,32,48,120,102,102,117,59,13,10,32,32,32,32,117,105,110,116,32,121,32,61,32,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,62,32,56,117,41,32,38,32,48,120,102,102,117,32,43,32,40,40,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,62,32,49,54,117,41,32,38,32,48,120,102,102,117,41,32,60,60,32,56,117,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,105,118,101,99,50,40,49,54,44,32,52,41,32,42,32,105,118,101,99,50,40,120,44,32,121,41,32,43,32,105,118,101,99,50,40,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,121,41,59,13,10,125,13,10,13,10,47,47,47,32,70,105,108,108,32,97,108,112,104,97,32,116,105,108,101,115,46,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,47,47,32,76,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,117,116,32,111,102,32,108,111,99,97,108,32,115,105,122,101,32,40,49,54,44,32,52,41,32,42,32,105,118,101,99,50,40,49,44,32,52,41,46,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,117,98,67,111,111,114,100,32,61,32,105,118,101,99,50,40,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,121,41,32,42,32,105,118,101,99,50,40,49,44,32,52,41,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,119,111,114,107,97,114,111,117,110,100,32,102,111,114,32,116,104,101,32,54,52,75,32,119,111,114,107,103,114,111,117,112,32,100,105,115,112,97,116,99,104,32,108,105,109,105,116,32,105,110,32,79,112,101,110,71,76,46,13,10,32,32,32,32,117,105,110,116,32,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,61,32,40,103,108,95,87,111,114,107,71,114,111,117,112,73,68,46,120,32,124,32,40,103,108,95,87,111,114,107,71,114,111,117,112,73,68,46,121,32,60,60,32,49,53,41,41,59,13,10,13,10,32,32,32,32,117,105,110,116,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,61,32,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,43,32,117,105,110,116,40,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,46,120,41,59,13,10,32,32,32,32,105,102,32,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,46,121,41,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,105,65,108,112,104,97,84,105,108,101,115,91,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,42,32,50,117,32,43,32,48,117,93,59,13,10,13,10,32,32,32,32,47,47,32,124,63,40,56,98,105,116,41,124,120,40,50,52,98,105,116,41,124,32,45,62,32,124,48,40,56,98,105,116,41,124,120,40,50,52,98,105,116,41,124,13,10,32,32,32,32,105,102,32,40,40,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,32,60,60,32,56,41,32,62,62,32,56,41,32,60,32,48,41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,105,110,116,32,102,105,108,108,73,110,100,101,120,32,61,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,93,41,59,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,61,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,117,32,43,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,93,59,13,10,32,32,32,32,105,110,116,32,98,97,99,107,100,114,111,112,32,61,32,105,110,116,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,41,32,62,62,32,50,52,59,13,10,13,10,32,32,32,32,118,101,99,52,32,99,111,118,101,114,97,103,101,115,32,61,32,118,101,99,52,40,98,97,99,107,100,114,111,112,41,59,13,10,32,32,32,32,99,111,118,101,114,97,103,101,115,32,43,61,32,97,99,99,117,109,117,108,97,116,101,67,111,118,101,114,97,103,101,70,111,114,70,105,108,108,76,105,115,116,40,102,105,108,108,73,110,100,101,120,44,32,116,105,108,101,83,117,98,67,111,111,114,100,41,59,13,10,13,10,32,32,32,32,105,110,116,32,116,105,108,101,67,116,114,108,32,61,32,105,110,116,40,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,62,62,32,49,54,41,32,38,32,48,120,102,102,117,41,59,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,41,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,61,32,99,108,97,109,112,40,97,98,115,40,99,111,118,101,114,97,103,101,115,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,61,32,99,108,97,109,112,40,49,46,48,32,45,32,97,98,115,40,49,46,48,32,45,32,109,111,100,40,99,111,118,101,114,97,103,101,115,44,32,50,46,48,41,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,78,111,116,32,97,118,97,105,108,97,98,108,101,32,102,111,114,32,71,76,69,83,46,13,10,32,32,32,32,35,105,102,110,100,101,102,32,71,76,95,69,83,13,10,32,32,32,32,47,47,32,72,97,110,100,108,101,32,99,108,105,112,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,13,10,32,32,32,32,47,47,32,99,108,105,112,84,105,108,101,73,110,100,101,120,32,115,104,111,117,108,100,32,98,101,32,99,111,110,118,101,114,116,101,100,32,116,111,32,105,110,116,32,102,105,114,115,116,44,32,97,115,32,105,116,32,109,105,103,104,116,32,98,101,32,110,101,103,97,116,105,118,101,46,13,10,32,32,32,32,105,110,116,32,99,108,105,112,84,105,108,101,73,110,100,101,120,32,61,32,105,110,116,40,105,65,108,112,104,97,84,105,108,101,115,91,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,32,42,32,50,117,32,43,32,49,117,93,41,59,13,10,32,32,32,32,105,102,32,40,99,108,105,112,84,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,115,32,61,32,109,105,110,40,99,111,118,101,114,97,103,101,115,44,32,105,109,97,103,101,76,111,97,100,40,117,68,101,115,116,44,32,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,117,105,110,116,40,99,108,105,112,84,105,108,101,73,110,100,101,120,41,41,41,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,35,101,110,100,105,102,13,10,13,10,32,32,32,32,105,109,97,103,101,83,116,111,114,101,40,117,68,101,115,116,44,32,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,41,44,32,99,111,118,101,114,97,103,101,115,41,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_FILL_COMP_H diff --git a/src/shaders/generated/fill_comp_spv.h b/src/shaders/generated/fill_comp_spv.h index e992b83e..43ede25c 100644 --- a/src/shaders/generated/fill_comp_spv.h +++ b/src/shaders/generated/fill_comp_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_FILL_COMP_SPV_H namespace Pathfinder { - static uint8_t fill_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,145,1,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,7,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,239,0,0,0,254,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,16,0,0,0,4,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,10,0,17,0,0,0,99,111,109,112,117,116,101,67,111,118,101,114,97,103,101,40,118,102,50,59,118,102,50,59,115,50,49,59,0,0,0,0,5,0,4,0,14,0,0,0,102,114,111,109,0,0,0,0,5,0,3,0,15,0,0,0,116,111,0,0,5,0,4,0,16,0,0,0,97,114,101,97,76,85,84,0,5,0,12,0,26,0,0,0,97,99,99,117,109,117,108,97,116,101,67,111,118,101,114,97,103,101,70,111,114,70,105,108,108,76,105,115,116,40,105,49,59,118,105,50,59,0,0,0,5,0,5,0,24,0,0,0,102,105,108,108,73,110,100,101,120,0,0,0,5,0,6,0,25,0,0,0,116,105,108,101,83,117,98,67,111,111,114,100,0,0,0,0,5,0,8,0,32,0,0,0,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,117,49,59,0,0,0,0,5,0,6,0,31,0,0,0,97,108,112,104,97,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,34,0,0,0,108,101,102,116,0,0,0,0,5,0,4,0,48,0,0,0,114,105,103,104,116,0,0,0,5,0,4,0,58,0,0,0,119,105,110,100,111,119,0,0,5,0,4,0,69,0,0,0,111,102,102,115,101,116,0,0,5,0,3,0,79,0,0,0,116,0,0,0,5,0,3,0,87,0,0,0,121,0,0,0,5,0,3,0,94,0,0,0,100,0,0,0,5,0,3,0,106,0,0,0,100,88,0,0,5,0,6,0,130,0,0,0,116,105,108,101,70,114,97,103,67,111,111,114,100,0,0,0,5,0,5,0,136,0,0,0,99,111,118,101,114,97,103,101,115,0,0,0,5,0,5,0,138,0,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,5,0,144,0,0,0,102,105,108,108,70,114,111,109,0,0,0,0,5,0,4,0,146,0,0,0,98,70,105,108,108,115,0,0,6,0,5,0,146,0,0,0,0,0,0,0,105,70,105,108,108,115,0,0,5,0,3,0,148,0,0,0,0,0,0,0,5,0,4,0,156,0,0,0,102,105,108,108,84,111,0,0,5,0,5,0,163,0,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,5,0,186,0,0,0,117,65,114,101,97,76,85,84,0,0,0,0,5,0,4,0,187,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,190,0,0,0,112,97,114,97,109,0,0,0,5,0,3,0,214,0,0,0,120,0,0,0,5,0,3,0,218,0,0,0,121,0,0,0,5,0,8,0,239,0,0,0,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,0,5,0,6,0,247,0,0,0,116,105,108,101,83,117,98,67,111,111,114,100,0,0,0,0,5,0,7,0,253,0,0,0,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,0,5,0,6,0,254,0,0,0,103,108,95,87,111,114,107,71,114,111,117,112,73,68,0,0,5,0,6,0,7,1,0,0,97,108,112,104,97,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,9,1,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,7,0,9,1,0,0,0,0,0,0,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,0,6,0,4,0,9,1,0,0,1,0,0,0,112,97,100,0,5,0,3,0,11,1,0,0,0,0,0,0,5,0,5,0,25,1,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,5,0,27,1,0,0,98,65,108,112,104,97,84,105,108,101,115,0,6,0,6,0,27,1,0,0,0,0,0,0,105,65,108,112,104,97,84,105,108,101,115,0,5,0,3,0,29,1,0,0,0,0,0,0,5,0,4,0,37,1,0,0,98,84,105,108,101,115,0,0,6,0,5,0,37,1,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,39,1,0,0,0,0,0,0,5,0,5,0,54,1,0,0,102,105,108,108,73,110,100,101,120,0,0,0,5,0,6,0,61,1,0,0,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,0,5,0,5,0,68,1,0,0,98,97,99,107,100,114,111,112,0,0,0,0,5,0,5,0,73,1,0,0,99,111,118,101,114,97,103,101,115,0,0,0,5,0,4,0,77,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,79,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,84,1,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,5,0,89,1,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,6,0,117,1,0,0,99,108,105,112,84,105,108,101,73,110,100,101,120,0,0,0,5,0,4,0,131,1,0,0,117,68,101,115,116,0,0,0,5,0,4,0,135,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,140,1,0,0,112,97,114,97,109,0,0,0,71,0,4,0,145,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,146,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,146,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,146,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,146,0,0,0,3,0,0,0,71,0,4,0,148,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,148,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,186,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,186,0,0,0,33,0,0,0,4,0,0,0,71,0,4,0,239,0,0,0,11,0,0,0,27,0,0,0,71,0,4,0,254,0,0,0,11,0,0,0,26,0,0,0,72,0,5,0,9,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,9,1,0,0,1,0,0,0,35,0,0,0,8,0,0,0,71,0,3,0,9,1,0,0,2,0,0,0,71,0,4,0,11,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,11,1,0,0,33,0,0,0,5,0,0,0,71,0,4,0,26,1,0,0,6,0,0,0,4,0,0,0,72,0,4,0,27,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,27,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,27,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,27,1,0,0,3,0,0,0,71,0,4,0,29,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,29,1,0,0,33,0,0,0,2,0,0,0,71,0,4,0,36,1,0,0,6,0,0,0,4,0,0,0,72,0,4,0,37,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,37,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,37,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,37,1,0,0,3,0,0,0,71,0,4,0,39,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,39,1,0,0,33,0,0,0,1,0,0,0,71,0,4,0,131,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,131,1,0,0,33,0,0,0,3,0,0,0,71,0,4,0,144,1,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,25,0,9,0,9,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,10,0,0,0,9,0,0,0,32,0,4,0,11,0,0,0,0,0,0,0,10,0,0,0,23,0,4,0,12,0,0,0,6,0,0,0,4,0,0,0,33,0,6,0,13,0,0,0,12,0,0,0,8,0,0,0,8,0,0,0,11,0,0,0,21,0,4,0,19,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,20,0,0,0,7,0,0,0,19,0,0,0,23,0,4,0,21,0,0,0,19,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,7,0,0,0,21,0,0,0,33,0,5,0,23,0,0,0,12,0,0,0,20,0,0,0,22,0,0,0,21,0,4,0,28,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,29,0,0,0,7,0,0,0,28,0,0,0,33,0,4,0,30,0,0,0,21,0,0,0,29,0,0,0,43,0,4,0,28,0,0,0,35,0,0,0,0,0,0,0,32,0,4,0,36,0,0,0,7,0,0,0,6,0,0,0,20,0,2,0,41,0,0,0,23,0,4,0,45,0,0,0,41,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,64,0,0,0,0,0,0,191,43,0,4,0,6,0,0,0,65,0,0,0,0,0,0,63,43,0,4,0,28,0,0,0,72,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,114,0,0,0,0,0,0,65,43,0,4,0,6,0,0,0,121,0,0,0,0,0,128,65,43,0,4,0,6,0,0,0,124,0,0,0,0,0,0,0,44,0,5,0,7,0,0,0,133,0,0,0,65,0,0,0,65,0,0,0,32,0,4,0,135,0,0,0,7,0,0,0,12,0,0,0,44,0,7,0,12,0,0,0,137,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,43,0,4,0,19,0,0,0,139,0,0,0,0,0,0,0,29,0,3,0,145,0,0,0,28,0,0,0,30,0,3,0,146,0,0,0,145,0,0,0,32,0,4,0,147,0,0,0,2,0,0,0,146,0,0,0,59,0,4,0,147,0,0,0,148,0,0,0,2,0,0,0,43,0,4,0,19,0,0,0,150,0,0,0,3,0,0,0,32,0,4,0,153,0,0,0,2,0,0,0,28,0,0,0,43,0,4,0,19,0,0,0,159,0,0,0,1,0,0,0,43,0,4,0,28,0,0,0,165,0,0,0,255,255,0,0,43,0,4,0,19,0,0,0,169,0,0,0,16,0,0,0,43,0,4,0,6,0,0,0,179,0,0,0,0,0,128,67,59,0,4,0,11,0,0,0,186,0,0,0,0,0,0,0,43,0,4,0,19,0,0,0,198,0,0,0,2,0,0,0,43,0,4,0,19,0,0,0,208,0,0,0,0,4,0,0,43,0,4,0,28,0,0,0,216,0,0,0,255,0,0,0,43,0,4,0,28,0,0,0,220,0,0,0,8,0,0,0,43,0,4,0,28,0,0,0,223,0,0,0,16,0,0,0,43,0,4,0,19,0,0,0,229,0,0,0,4,0,0,0,44,0,5,0,21,0,0,0,230,0,0,0,169,0,0,0,229,0,0,0,23,0,4,0,237,0,0,0,28,0,0,0,3,0,0,0,32,0,4,0,238,0,0,0,1,0,0,0,237,0,0,0,59,0,4,0,238,0,0,0,239,0,0,0,1,0,0,0,23,0,4,0,240,0,0,0,28,0,0,0,2,0,0,0,44,0,5,0,21,0,0,0,251,0,0,0,159,0,0,0,229,0,0,0,59,0,4,0,238,0,0,0,254,0,0,0,1,0,0,0,32,0,4,0,255,0,0,0,1,0,0,0,28,0,0,0,43,0,4,0,19,0,0,0,4,1,0,0,15,0,0,0,30,0,4,0,9,1,0,0,21,0,0,0,21,0,0,0,32,0,4,0,10,1,0,0,2,0,0,0,9,1,0,0,59,0,4,0,10,1,0,0,11,1,0,0,2,0,0,0,32,0,4,0,12,1,0,0,2,0,0,0,19,0,0,0,29,0,3,0,26,1,0,0,28,0,0,0,30,0,3,0,27,1,0,0,26,1,0,0,32,0,4,0,28,1,0,0,2,0,0,0,27,1,0,0,59,0,4,0,28,1,0,0,29,1,0,0,2,0,0,0,43,0,4,0,28,0,0,0,31,1,0,0,2,0,0,0,29,0,3,0,36,1,0,0,28,0,0,0,30,0,3,0,37,1,0,0,36,1,0,0,32,0,4,0,38,1,0,0,2,0,0,0,37,1,0,0,59,0,4,0,38,1,0,0,39,1,0,0,2,0,0,0,43,0,4,0,28,0,0,0,41,1,0,0,4,0,0,0,43,0,4,0,19,0,0,0,46,1,0,0,8,0,0,0,43,0,4,0,28,0,0,0,64,1,0,0,3,0,0,0,43,0,4,0,19,0,0,0,71,1,0,0,24,0,0,0,43,0,4,0,6,0,0,0,100,1,0,0,0,0,128,63,43,0,4,0,6,0,0,0,106,1,0,0,0,0,0,64,25,0,9,0,129,1,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,32,0,4,0,130,1,0,0,0,0,0,0,129,1,0,0,59,0,4,0,130,1,0,0,131,1,0,0,0,0,0,0,44,0,6,0,237,0,0,0,144,1,0,0,223,0,0,0,41,1,0,0,72,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,22,0,0,0,247,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,253,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,7,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,25,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,54,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,61,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,68,1,0,0,7,0,0,0,59,0,4,0,135,0,0,0,73,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,77,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,79,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,84,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,89,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,117,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,135,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,140,1,0,0,7,0,0,0,61,0,4,0,237,0,0,0,248,0,0,0,239,0,0,0,79,0,7,0,240,0,0,0,249,0,0,0,248,0,0,0,248,0,0,0,0,0,0,0,1,0,0,0,124,0,4,0,21,0,0,0,250,0,0,0,249,0,0,0,132,0,5,0,21,0,0,0,252,0,0,0,250,0,0,0,251,0,0,0,62,0,3,0,247,0,0,0,252,0,0,0,65,0,5,0,255,0,0,0,0,1,0,0,254,0,0,0,35,0,0,0,61,0,4,0,28,0,0,0,1,1,0,0,0,1,0,0,65,0,5,0,255,0,0,0,2,1,0,0,254,0,0,0,72,0,0,0,61,0,4,0,28,0,0,0,3,1,0,0,2,1,0,0,196,0,5,0,28,0,0,0,5,1,0,0,3,1,0,0,4,1,0,0,197,0,5,0,28,0,0,0,6,1,0,0,1,1,0,0,5,1,0,0,62,0,3,0,253,0,0,0,6,1,0,0,61,0,4,0,28,0,0,0,8,1,0,0,253,0,0,0,65,0,6,0,12,1,0,0,13,1,0,0,11,1,0,0,139,0,0,0,35,0,0,0,61,0,4,0,19,0,0,0,14,1,0,0,13,1,0,0,124,0,4,0,28,0,0,0,15,1,0,0,14,1,0,0,128,0,5,0,28,0,0,0,16,1,0,0,8,1,0,0,15,1,0,0,62,0,3,0,7,1,0,0,16,1,0,0,61,0,4,0,28,0,0,0,17,1,0,0,7,1,0,0,65,0,6,0,12,1,0,0,18,1,0,0,11,1,0,0,139,0,0,0,72,0,0,0,61,0,4,0,19,0,0,0,19,1,0,0,18,1,0,0,124,0,4,0,28,0,0,0,20,1,0,0,19,1,0,0,174,0,5,0,41,0,0,0,21,1,0,0,17,1,0,0,20,1,0,0,247,0,3,0,23,1,0,0,0,0,0,0,250,0,4,0,21,1,0,0,22,1,0,0,23,1,0,0,248,0,2,0,22,1,0,0,253,0,1,0,248,0,2,0,23,1,0,0,61,0,4,0,28,0,0,0,30,1,0,0,253,0,0,0,132,0,5,0,28,0,0,0,32,1,0,0,30,1,0,0,31,1,0,0,128,0,5,0,28,0,0,0,33,1,0,0,32,1,0,0,35,0,0,0,65,0,6,0,153,0,0,0,34,1,0,0,29,1,0,0,139,0,0,0,33,1,0,0,61,0,4,0,28,0,0,0,35,1,0,0,34,1,0,0,62,0,3,0,25,1,0,0,35,1,0,0,61,0,4,0,28,0,0,0,40,1,0,0,25,1,0,0,132,0,5,0,28,0,0,0,42,1,0,0,40,1,0,0,41,1,0,0,128,0,5,0,28,0,0,0,43,1,0,0,42,1,0,0,31,1,0,0,65,0,6,0,153,0,0,0,44,1,0,0,39,1,0,0,139,0,0,0,43,1,0,0,61,0,4,0,28,0,0,0,45,1,0,0,44,1,0,0,196,0,5,0,28,0,0,0,47,1,0,0,45,1,0,0,46,1,0,0,124,0,4,0,19,0,0,0,48,1,0,0,47,1,0,0,195,0,5,0,19,0,0,0,49,1,0,0,48,1,0,0,46,1,0,0,177,0,5,0,41,0,0,0,50,1,0,0,49,1,0,0,139,0,0,0,247,0,3,0,52,1,0,0,0,0,0,0,250,0,4,0,50,1,0,0,51,1,0,0,52,1,0,0,248,0,2,0,51,1,0,0,253,0,1,0,248,0,2,0,52,1,0,0,61,0,4,0,28,0,0,0,55,1,0,0,25,1,0,0,132,0,5,0,28,0,0,0,56,1,0,0,55,1,0,0,41,1,0,0,128,0,5,0,28,0,0,0,57,1,0,0,56,1,0,0,72,0,0,0,65,0,6,0,153,0,0,0,58,1,0,0,39,1,0,0,139,0,0,0,57,1,0,0,61,0,4,0,28,0,0,0,59,1,0,0,58,1,0,0,124,0,4,0,19,0,0,0,60,1,0,0,59,1,0,0,62,0,3,0,54,1,0,0,60,1,0,0,61,0,4,0,28,0,0,0,62,1,0,0,25,1,0,0,132,0,5,0,28,0,0,0,63,1,0,0,62,1,0,0,41,1,0,0,128,0,5,0,28,0,0,0,65,1,0,0,63,1,0,0,64,1,0,0,65,0,6,0,153,0,0,0,66,1,0,0,39,1,0,0,139,0,0,0,65,1,0,0,61,0,4,0,28,0,0,0,67,1,0,0,66,1,0,0,62,0,3,0,61,1,0,0,67,1,0,0,61,0,4,0,28,0,0,0,69,1,0,0,61,1,0,0,124,0,4,0,19,0,0,0,70,1,0,0,69,1,0,0,195,0,5,0,19,0,0,0,72,1,0,0,70,1,0,0,71,1,0,0,62,0,3,0,68,1,0,0,72,1,0,0,61,0,4,0,19,0,0,0,74,1,0,0,68,1,0,0,111,0,4,0,6,0,0,0,75,1,0,0,74,1,0,0,80,0,7,0,12,0,0,0,76,1,0,0,75,1,0,0,75,1,0,0,75,1,0,0,75,1,0,0,62,0,3,0,73,1,0,0,76,1,0,0,61,0,4,0,19,0,0,0,78,1,0,0,54,1,0,0,62,0,3,0,77,1,0,0,78,1,0,0,61,0,4,0,21,0,0,0,80,1,0,0,247,0,0,0,62,0,3,0,79,1,0,0,80,1,0,0,57,0,6,0,12,0,0,0,81,1,0,0,26,0,0,0,77,1,0,0,79,1,0,0,61,0,4,0,12,0,0,0,82,1,0,0,73,1,0,0,129,0,5,0,12,0,0,0,83,1,0,0,82,1,0,0,81,1,0,0,62,0,3,0,73,1,0,0,83,1,0,0,61,0,4,0,28,0,0,0,85,1,0,0,61,1,0,0,194,0,5,0,28,0,0,0,86,1,0,0,85,1,0,0,169,0,0,0,199,0,5,0,28,0,0,0,87,1,0,0,86,1,0,0,216,0,0,0,124,0,4,0,19,0,0,0,88,1,0,0,87,1,0,0,62,0,3,0,84,1,0,0,88,1,0,0,61,0,4,0,19,0,0,0,90,1,0,0,84,1,0,0,195,0,5,0,19,0,0,0,91,1,0,0,90,1,0,0,139,0,0,0,199,0,5,0,19,0,0,0,92,1,0,0,91,1,0,0,150,0,0,0,62,0,3,0,89,1,0,0,92,1,0,0,61,0,4,0,19,0,0,0,93,1,0,0,89,1,0,0,199,0,5,0,19,0,0,0,94,1,0,0,93,1,0,0,159,0,0,0,171,0,5,0,41,0,0,0,95,1,0,0,94,1,0,0,139,0,0,0,247,0,3,0,97,1,0,0,0,0,0,0,250,0,4,0,95,1,0,0,96,1,0,0,104,1,0,0,248,0,2,0,96,1,0,0,61,0,4,0,12,0,0,0,98,1,0,0,73,1,0,0,12,0,6,0,12,0,0,0,99,1,0,0,1,0,0,0,4,0,0,0,98,1,0,0,80,0,7,0,12,0,0,0,101,1,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,80,0,7,0,12,0,0,0,102,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,12,0,8,0,12,0,0,0,103,1,0,0,1,0,0,0,43,0,0,0,99,1,0,0,101,1,0,0,102,1,0,0,62,0,3,0,73,1,0,0,103,1,0,0,249,0,2,0,97,1,0,0,248,0,2,0,104,1,0,0,61,0,4,0,12,0,0,0,105,1,0,0,73,1,0,0,80,0,7,0,12,0,0,0,107,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,141,0,5,0,12,0,0,0,108,1,0,0,105,1,0,0,107,1,0,0,80,0,7,0,12,0,0,0,109,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,131,0,5,0,12,0,0,0,110,1,0,0,109,1,0,0,108,1,0,0,12,0,6,0,12,0,0,0,111,1,0,0,1,0,0,0,4,0,0,0,110,1,0,0,80,0,7,0,12,0,0,0,112,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,131,0,5,0,12,0,0,0,113,1,0,0,112,1,0,0,111,1,0,0,80,0,7,0,12,0,0,0,114,1,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,80,0,7,0,12,0,0,0,115,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,12,0,8,0,12,0,0,0,116,1,0,0,1,0,0,0,43,0,0,0,113,1,0,0,114,1,0,0,115,1,0,0,62,0,3,0,73,1,0,0,116,1,0,0,249,0,2,0,97,1,0,0,248,0,2,0,97,1,0,0,61,0,4,0,28,0,0,0,118,1,0,0,253,0,0,0,132,0,5,0,28,0,0,0,119,1,0,0,118,1,0,0,31,1,0,0,128,0,5,0,28,0,0,0,120,1,0,0,119,1,0,0,72,0,0,0,65,0,6,0,153,0,0,0,121,1,0,0,29,1,0,0,139,0,0,0,120,1,0,0,61,0,4,0,28,0,0,0,122,1,0,0,121,1,0,0,124,0,4,0,19,0,0,0,123,1,0,0,122,1,0,0,62,0,3,0,117,1,0,0,123,1,0,0,61,0,4,0,19,0,0,0,124,1,0,0,117,1,0,0,175,0,5,0,41,0,0,0,125,1,0,0,124,1,0,0,139,0,0,0,247,0,3,0,127,1,0,0,0,0,0,0,250,0,4,0,125,1,0,0,126,1,0,0,127,1,0,0,248,0,2,0,126,1,0,0,61,0,4,0,12,0,0,0,128,1,0,0,73,1,0,0,61,0,4,0,129,1,0,0,132,1,0,0,131,1,0,0,61,0,4,0,19,0,0,0,133,1,0,0,117,1,0,0,124,0,4,0,28,0,0,0,134,1,0,0,133,1,0,0,62,0,3,0,135,1,0,0,134,1,0,0,57,0,5,0,21,0,0,0,136,1,0,0,32,0,0,0,135,1,0,0,98,0,5,0,12,0,0,0,137,1,0,0,132,1,0,0,136,1,0,0,12,0,7,0,12,0,0,0,138,1,0,0,1,0,0,0,37,0,0,0,128,1,0,0,137,1,0,0,62,0,3,0,73,1,0,0,138,1,0,0,249,0,2,0,127,1,0,0,248,0,2,0,127,1,0,0,61,0,4,0,129,1,0,0,139,1,0,0,131,1,0,0,61,0,4,0,28,0,0,0,141,1,0,0,7,1,0,0,62,0,3,0,140,1,0,0,141,1,0,0,57,0,5,0,21,0,0,0,142,1,0,0,32,0,0,0,140,1,0,0,61,0,4,0,12,0,0,0,143,1,0,0,73,1,0,0,99,0,4,0,139,1,0,0,142,1,0,0,143,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,12,0,0,0,17,0,0,0,0,0,0,0,13,0,0,0,55,0,3,0,8,0,0,0,14,0,0,0,55,0,3,0,8,0,0,0,15,0,0,0,55,0,3,0,11,0,0,0,16,0,0,0,248,0,2,0,18,0,0,0,59,0,4,0,8,0,0,0,34,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,48,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,58,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,69,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,79,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,87,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,94,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,106,0,0,0,7,0,0,0,65,0,5,0,36,0,0,0,37,0,0,0,14,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,38,0,0,0,37,0,0,0,65,0,5,0,36,0,0,0,39,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,40,0,0,0,39,0,0,0,184,0,5,0,41,0,0,0,42,0,0,0,38,0,0,0,40,0,0,0,61,0,4,0,7,0,0,0,43,0,0,0,14,0,0,0,61,0,4,0,7,0,0,0,44,0,0,0,15,0,0,0,80,0,5,0,45,0,0,0,46,0,0,0,42,0,0,0,42,0,0,0,169,0,6,0,7,0,0,0,47,0,0,0,46,0,0,0,43,0,0,0,44,0,0,0,62,0,3,0,34,0,0,0,47,0,0,0,65,0,5,0,36,0,0,0,49,0,0,0,14,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,50,0,0,0,49,0,0,0,65,0,5,0,36,0,0,0,51,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,52,0,0,0,51,0,0,0,184,0,5,0,41,0,0,0,53,0,0,0,50,0,0,0,52,0,0,0,61,0,4,0,7,0,0,0,54,0,0,0,15,0,0,0,61,0,4,0,7,0,0,0,55,0,0,0,14,0,0,0,80,0,5,0,45,0,0,0,56,0,0,0,53,0,0,0,53,0,0,0,169,0,6,0,7,0,0,0,57,0,0,0,56,0,0,0,54,0,0,0,55,0,0,0,62,0,3,0,48,0,0,0,57,0,0,0,65,0,5,0,36,0,0,0,59,0,0,0,14,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,60,0,0,0,59,0,0,0,65,0,5,0,36,0,0,0,61,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,62,0,0,0,61,0,0,0,80,0,5,0,7,0,0,0,63,0,0,0,60,0,0,0,62,0,0,0,80,0,5,0,7,0,0,0,66,0,0,0,64,0,0,0,64,0,0,0,80,0,5,0,7,0,0,0,67,0,0,0,65,0,0,0,65,0,0,0,12,0,8,0,7,0,0,0,68,0,0,0,1,0,0,0,43,0,0,0,63,0,0,0,66,0,0,0,67,0,0,0,62,0,3,0,58,0,0,0,68,0,0,0,65,0,5,0,36,0,0,0,70,0,0,0,58,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,71,0,0,0,70,0,0,0,65,0,5,0,36,0,0,0,73,0,0,0,58,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,74,0,0,0,73,0,0,0,12,0,8,0,6,0,0,0,75,0,0,0,1,0,0,0,46,0,0,0,71,0,0,0,74,0,0,0,65,0,0,0,65,0,5,0,36,0,0,0,76,0,0,0,34,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,77,0,0,0,76,0,0,0,131,0,5,0,6,0,0,0,78,0,0,0,75,0,0,0,77,0,0,0,62,0,3,0,69,0,0,0,78,0,0,0,61,0,4,0,6,0,0,0,80,0,0,0,69,0,0,0,65,0,5,0,36,0,0,0,81,0,0,0,48,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,82,0,0,0,81,0,0,0,65,0,5,0,36,0,0,0,83,0,0,0,34,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,84,0,0,0,83,0,0,0,131,0,5,0,6,0,0,0,85,0,0,0,82,0,0,0,84,0,0,0,136,0,5,0,6,0,0,0,86,0,0,0,80,0,0,0,85,0,0,0,62,0,3,0,79,0,0,0,86,0,0,0,65,0,5,0,36,0,0,0,88,0,0,0,34,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,89,0,0,0,88,0,0,0,65,0,5,0,36,0,0,0,90,0,0,0,48,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,91,0,0,0,90,0,0,0,61,0,4,0,6,0,0,0,92,0,0,0,79,0,0,0,12,0,8,0,6,0,0,0,93,0,0,0,1,0,0,0,46,0,0,0,89,0,0,0,91,0,0,0,92,0,0,0,62,0,3,0,87,0,0,0,93,0,0,0,65,0,5,0,36,0,0,0,95,0,0,0,48,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,96,0,0,0,95,0,0,0,65,0,5,0,36,0,0,0,97,0,0,0,34,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,98,0,0,0,97,0,0,0,131,0,5,0,6,0,0,0,99,0,0,0,96,0,0,0,98,0,0,0,65,0,5,0,36,0,0,0,100,0,0,0,48,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,101,0,0,0,100,0,0,0,65,0,5,0,36,0,0,0,102,0,0,0,34,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,103,0,0,0,102,0,0,0,131,0,5,0,6,0,0,0,104,0,0,0,101,0,0,0,103,0,0,0,136,0,5,0,6,0,0,0,105,0,0,0,99,0,0,0,104,0,0,0,62,0,3,0,94,0,0,0,105,0,0,0,65,0,5,0,36,0,0,0,107,0,0,0,58,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,108,0,0,0,107,0,0,0,65,0,5,0,36,0,0,0,109,0,0,0,58,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,110,0,0,0,109,0,0,0,131,0,5,0,6,0,0,0,111,0,0,0,108,0,0,0,110,0,0,0,62,0,3,0,106,0,0,0,111,0,0,0,61,0,4,0,10,0,0,0,112,0,0,0,16,0,0,0,61,0,4,0,6,0,0,0,113,0,0,0,87,0,0,0,129,0,5,0,6,0,0,0,115,0,0,0,113,0,0,0,114,0,0,0,61,0,4,0,6,0,0,0,116,0,0,0,94,0,0,0,61,0,4,0,6,0,0,0,117,0,0,0,106,0,0,0,133,0,5,0,6,0,0,0,118,0,0,0,116,0,0,0,117,0,0,0,12,0,6,0,6,0,0,0,119,0,0,0,1,0,0,0,4,0,0,0,118,0,0,0,80,0,5,0,7,0,0,0,120,0,0,0,115,0,0,0,119,0,0,0,80,0,5,0,7,0,0,0,122,0,0,0,121,0,0,0,121,0,0,0,136,0,5,0,7,0,0,0,123,0,0,0,120,0,0,0,122,0,0,0,88,0,7,0,12,0,0,0,125,0,0,0,112,0,0,0,123,0,0,0,2,0,0,0,124,0,0,0,61,0,4,0,6,0,0,0,126,0,0,0,106,0,0,0,142,0,5,0,12,0,0,0,127,0,0,0,125,0,0,0,126,0,0,0,254,0,2,0,127,0,0,0,56,0,1,0,54,0,5,0,12,0,0,0,26,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,20,0,0,0,24,0,0,0,55,0,3,0,22,0,0,0,25,0,0,0,248,0,2,0,27,0,0,0,59,0,4,0,8,0,0,0,130,0,0,0,7,0,0,0,59,0,4,0,135,0,0,0,136,0,0,0,7,0,0,0,59,0,4,0,20,0,0,0,138,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,144,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,156,0,0,0,7,0,0,0,59,0,4,0,135,0,0,0,163,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,187,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,190,0,0,0,7,0,0,0,61,0,4,0,21,0,0,0,131,0,0,0,25,0,0,0,111,0,4,0,7,0,0,0,132,0,0,0,131,0,0,0,129,0,5,0,7,0,0,0,134,0,0,0,132,0,0,0,133,0,0,0,62,0,3,0,130,0,0,0,134,0,0,0,62,0,3,0,136,0,0,0,137,0,0,0,62,0,3,0,138,0,0,0,139,0,0,0,249,0,2,0,140,0,0,0,248,0,2,0,140,0,0,0,246,0,4,0,142,0,0,0,143,0,0,0,0,0,0,0,249,0,2,0,141,0,0,0,248,0,2,0,141,0,0,0,61,0,4,0,19,0,0,0,149,0,0,0,24,0,0,0,132,0,5,0,19,0,0,0,151,0,0,0,149,0,0,0,150,0,0,0,128,0,5,0,19,0,0,0,152,0,0,0,151,0,0,0,139,0,0,0,65,0,6,0,153,0,0,0,154,0,0,0,148,0,0,0,139,0,0,0,152,0,0,0,61,0,4,0,28,0,0,0,155,0,0,0,154,0,0,0,62,0,3,0,144,0,0,0,155,0,0,0,61,0,4,0,19,0,0,0,157,0,0,0,24,0,0,0,132,0,5,0,19,0,0,0,158,0,0,0,157,0,0,0,150,0,0,0,128,0,5,0,19,0,0,0,160,0,0,0,158,0,0,0,159,0,0,0,65,0,6,0,153,0,0,0,161,0,0,0,148,0,0,0,139,0,0,0,160,0,0,0,61,0,4,0,28,0,0,0,162,0,0,0,161,0,0,0,62,0,3,0,156,0,0,0,162,0,0,0,61,0,4,0,28,0,0,0,164,0,0,0,144,0,0,0,199,0,5,0,28,0,0,0,166,0,0,0,164,0,0,0,165,0,0,0,112,0,4,0,6,0,0,0,167,0,0,0,166,0,0,0,61,0,4,0,28,0,0,0,168,0,0,0,144,0,0,0,194,0,5,0,28,0,0,0,170,0,0,0,168,0,0,0,169,0,0,0,112,0,4,0,6,0,0,0,171,0,0,0,170,0,0,0,61,0,4,0,28,0,0,0,172,0,0,0,156,0,0,0,199,0,5,0,28,0,0,0,173,0,0,0,172,0,0,0,165,0,0,0,112,0,4,0,6,0,0,0,174,0,0,0,173,0,0,0,61,0,4,0,28,0,0,0,175,0,0,0,156,0,0,0,194,0,5,0,28,0,0,0,176,0,0,0,175,0,0,0,169,0,0,0,112,0,4,0,6,0,0,0,177,0,0,0,176,0,0,0,80,0,7,0,12,0,0,0,178,0,0,0,167,0,0,0,171,0,0,0,174,0,0,0,177,0,0,0,80,0,7,0,12,0,0,0,180,0,0,0,179,0,0,0,179,0,0,0,179,0,0,0,179,0,0,0,136,0,5,0,12,0,0,0,181,0,0,0,178,0,0,0,180,0,0,0,62,0,3,0,163,0,0,0,181,0,0,0,61,0,4,0,7,0,0,0,182,0,0,0,130,0,0,0,79,0,9,0,12,0,0,0,183,0,0,0,182,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,61,0,4,0,12,0,0,0,184,0,0,0,163,0,0,0,131,0,5,0,12,0,0,0,185,0,0,0,184,0,0,0,183,0,0,0,62,0,3,0,163,0,0,0,185,0,0,0,61,0,4,0,12,0,0,0,188,0,0,0,163,0,0,0,79,0,7,0,7,0,0,0,189,0,0,0,188,0,0,0,188,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,187,0,0,0,189,0,0,0,61,0,4,0,12,0,0,0,191,0,0,0,163,0,0,0,79,0,7,0,7,0,0,0,192,0,0,0,191,0,0,0,191,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,190,0,0,0,192,0,0,0,57,0,7,0,12,0,0,0,193,0,0,0,17,0,0,0,187,0,0,0,190,0,0,0,186,0,0,0,61,0,4,0,12,0,0,0,194,0,0,0,136,0,0,0,129,0,5,0,12,0,0,0,195,0,0,0,194,0,0,0,193,0,0,0,62,0,3,0,136,0,0,0,195,0,0,0,61,0,4,0,19,0,0,0,196,0,0,0,24,0,0,0,132,0,5,0,19,0,0,0,197,0,0,0,196,0,0,0,150,0,0,0,128,0,5,0,19,0,0,0,199,0,0,0,197,0,0,0,198,0,0,0,65,0,6,0,153,0,0,0,200,0,0,0,148,0,0,0,139,0,0,0,199,0,0,0,61,0,4,0,28,0,0,0,201,0,0,0,200,0,0,0,124,0,4,0,19,0,0,0,202,0,0,0,201,0,0,0,62,0,3,0,24,0,0,0,202,0,0,0,61,0,4,0,19,0,0,0,203,0,0,0,138,0,0,0,128,0,5,0,19,0,0,0,204,0,0,0,203,0,0,0,159,0,0,0,62,0,3,0,138,0,0,0,204,0,0,0,249,0,2,0,143,0,0,0,248,0,2,0,143,0,0,0,61,0,4,0,19,0,0,0,205,0,0,0,24,0,0,0,175,0,5,0,41,0,0,0,206,0,0,0,205,0,0,0,139,0,0,0,61,0,4,0,19,0,0,0,207,0,0,0,138,0,0,0,177,0,5,0,41,0,0,0,209,0,0,0,207,0,0,0,208,0,0,0,167,0,5,0,41,0,0,0,210,0,0,0,206,0,0,0,209,0,0,0,250,0,4,0,210,0,0,0,140,0,0,0,142,0,0,0,248,0,2,0,142,0,0,0,61,0,4,0,12,0,0,0,211,0,0,0,136,0,0,0,254,0,2,0,211,0,0,0,56,0,1,0,54,0,5,0,21,0,0,0,32,0,0,0,0,0,0,0,30,0,0,0,55,0,3,0,29,0,0,0,31,0,0,0,248,0,2,0,33,0,0,0,59,0,4,0,29,0,0,0,214,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,218,0,0,0,7,0,0,0,61,0,4,0,28,0,0,0,215,0,0,0,31,0,0,0,199,0,5,0,28,0,0,0,217,0,0,0,215,0,0,0,216,0,0,0,62,0,3,0,214,0,0,0,217,0,0,0,61,0,4,0,28,0,0,0,219,0,0,0,31,0,0,0,194,0,5,0,28,0,0,0,221,0,0,0,219,0,0,0,220,0,0,0,61,0,4,0,28,0,0,0,222,0,0,0,31,0,0,0,194,0,5,0,28,0,0,0,224,0,0,0,222,0,0,0,223,0,0,0,199,0,5,0,28,0,0,0,225,0,0,0,224,0,0,0,216,0,0,0,196,0,5,0,28,0,0,0,226,0,0,0,225,0,0,0,220,0,0,0,128,0,5,0,28,0,0,0,227,0,0,0,216,0,0,0,226,0,0,0,199,0,5,0,28,0,0,0,228,0,0,0,221,0,0,0,227,0,0,0,62,0,3,0,218,0,0,0,228,0,0,0,61,0,4,0,28,0,0,0,231,0,0,0,214,0,0,0,124,0,4,0,19,0,0,0,232,0,0,0,231,0,0,0,61,0,4,0,28,0,0,0,233,0,0,0,218,0,0,0,124,0,4,0,19,0,0,0,234,0,0,0,233,0,0,0,80,0,5,0,21,0,0,0,235,0,0,0,232,0,0,0,234,0,0,0,132,0,5,0,21,0,0,0,236,0,0,0,230,0,0,0,235,0,0,0,61,0,4,0,237,0,0,0,241,0,0,0,239,0,0,0,79,0,7,0,240,0,0,0,242,0,0,0,241,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,124,0,4,0,21,0,0,0,243,0,0,0,242,0,0,0,128,0,5,0,21,0,0,0,244,0,0,0,236,0,0,0,243,0,0,0,254,0,2,0,244,0,0,0,56,0,1,0}; + static uint8_t fill_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,145,1,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,7,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,239,0,0,0,254,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,16,0,0,0,4,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,10,0,17,0,0,0,99,111,109,112,117,116,101,67,111,118,101,114,97,103,101,40,118,102,50,59,118,102,50,59,115,50,49,59,0,0,0,0,5,0,4,0,14,0,0,0,102,114,111,109,0,0,0,0,5,0,3,0,15,0,0,0,116,111,0,0,5,0,4,0,16,0,0,0,97,114,101,97,76,85,84,0,5,0,12,0,26,0,0,0,97,99,99,117,109,117,108,97,116,101,67,111,118,101,114,97,103,101,70,111,114,70,105,108,108,76,105,115,116,40,105,49,59,118,105,50,59,0,0,0,5,0,5,0,24,0,0,0,102,105,108,108,73,110,100,101,120,0,0,0,5,0,6,0,25,0,0,0,116,105,108,101,83,117,98,67,111,111,114,100,0,0,0,0,5,0,8,0,32,0,0,0,99,111,109,112,117,116,101,84,105,108,101,67,111,111,114,100,40,117,49,59,0,0,0,0,5,0,6,0,31,0,0,0,97,108,112,104,97,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,34,0,0,0,108,101,102,116,0,0,0,0,5,0,4,0,48,0,0,0,114,105,103,104,116,0,0,0,5,0,4,0,58,0,0,0,119,105,110,100,111,119,0,0,5,0,4,0,69,0,0,0,111,102,102,115,101,116,0,0,5,0,3,0,79,0,0,0,116,0,0,0,5,0,3,0,87,0,0,0,121,0,0,0,5,0,3,0,94,0,0,0,100,0,0,0,5,0,3,0,106,0,0,0,100,88,0,0,5,0,6,0,130,0,0,0,116,105,108,101,70,114,97,103,67,111,111,114,100,0,0,0,5,0,5,0,136,0,0,0,99,111,118,101,114,97,103,101,115,0,0,0,5,0,5,0,138,0,0,0,105,116,101,114,97,116,105,111,110,0,0,0,5,0,5,0,144,0,0,0,102,105,108,108,70,114,111,109,0,0,0,0,5,0,4,0,146,0,0,0,98,70,105,108,108,115,0,0,6,0,5,0,146,0,0,0,0,0,0,0,105,70,105,108,108,115,0,0,5,0,3,0,148,0,0,0,0,0,0,0,5,0,4,0,156,0,0,0,102,105,108,108,84,111,0,0,5,0,5,0,163,0,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,5,0,186,0,0,0,117,65,114,101,97,76,85,84,0,0,0,0,5,0,4,0,187,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,190,0,0,0,112,97,114,97,109,0,0,0,5,0,3,0,214,0,0,0,120,0,0,0,5,0,3,0,218,0,0,0,121,0,0,0,5,0,8,0,239,0,0,0,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,0,5,0,6,0,247,0,0,0,116,105,108,101,83,117,98,67,111,111,114,100,0,0,0,0,5,0,7,0,253,0,0,0,98,97,116,99,104,65,108,112,104,97,84,105,108,101,73,110,100,101,120,0,5,0,6,0,254,0,0,0,103,108,95,87,111,114,107,71,114,111,117,112,73,68,0,0,5,0,6,0,7,1,0,0,97,108,112,104,97,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,9,1,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,7,0,9,1,0,0,0,0,0,0,117,65,108,112,104,97,84,105,108,101,82,97,110,103,101,0,6,0,5,0,9,1,0,0,1,0,0,0,117,80,97,100,48,0,0,0,5,0,3,0,11,1,0,0,0,0,0,0,5,0,5,0,25,1,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,5,0,27,1,0,0,98,65,108,112,104,97,84,105,108,101,115,0,6,0,6,0,27,1,0,0,0,0,0,0,105,65,108,112,104,97,84,105,108,101,115,0,5,0,3,0,29,1,0,0,0,0,0,0,5,0,4,0,37,1,0,0,98,84,105,108,101,115,0,0,6,0,5,0,37,1,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,39,1,0,0,0,0,0,0,5,0,5,0,54,1,0,0,102,105,108,108,73,110,100,101,120,0,0,0,5,0,6,0,61,1,0,0,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,0,5,0,5,0,68,1,0,0,98,97,99,107,100,114,111,112,0,0,0,0,5,0,5,0,73,1,0,0,99,111,118,101,114,97,103,101,115,0,0,0,5,0,4,0,77,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,79,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,84,1,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,5,0,89,1,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,6,0,117,1,0,0,99,108,105,112,84,105,108,101,73,110,100,101,120,0,0,0,5,0,4,0,131,1,0,0,117,68,101,115,116,0,0,0,5,0,4,0,135,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,140,1,0,0,112,97,114,97,109,0,0,0,71,0,4,0,145,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,146,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,146,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,146,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,146,0,0,0,3,0,0,0,71,0,4,0,148,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,148,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,186,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,186,0,0,0,33,0,0,0,4,0,0,0,71,0,4,0,239,0,0,0,11,0,0,0,27,0,0,0,71,0,4,0,254,0,0,0,11,0,0,0,26,0,0,0,72,0,5,0,9,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,9,1,0,0,1,0,0,0,35,0,0,0,8,0,0,0,71,0,3,0,9,1,0,0,2,0,0,0,71,0,4,0,11,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,11,1,0,0,33,0,0,0,5,0,0,0,71,0,4,0,26,1,0,0,6,0,0,0,4,0,0,0,72,0,4,0,27,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,27,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,27,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,27,1,0,0,3,0,0,0,71,0,4,0,29,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,29,1,0,0,33,0,0,0,2,0,0,0,71,0,4,0,36,1,0,0,6,0,0,0,4,0,0,0,72,0,4,0,37,1,0,0,0,0,0,0,19,0,0,0,72,0,4,0,37,1,0,0,0,0,0,0,24,0,0,0,72,0,5,0,37,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,37,1,0,0,3,0,0,0,71,0,4,0,39,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,39,1,0,0,33,0,0,0,1,0,0,0,71,0,4,0,131,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,131,1,0,0,33,0,0,0,3,0,0,0,71,0,4,0,144,1,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,25,0,9,0,9,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,10,0,0,0,9,0,0,0,32,0,4,0,11,0,0,0,0,0,0,0,10,0,0,0,23,0,4,0,12,0,0,0,6,0,0,0,4,0,0,0,33,0,6,0,13,0,0,0,12,0,0,0,8,0,0,0,8,0,0,0,11,0,0,0,21,0,4,0,19,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,20,0,0,0,7,0,0,0,19,0,0,0,23,0,4,0,21,0,0,0,19,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,7,0,0,0,21,0,0,0,33,0,5,0,23,0,0,0,12,0,0,0,20,0,0,0,22,0,0,0,21,0,4,0,28,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,29,0,0,0,7,0,0,0,28,0,0,0,33,0,4,0,30,0,0,0,21,0,0,0,29,0,0,0,43,0,4,0,28,0,0,0,35,0,0,0,0,0,0,0,32,0,4,0,36,0,0,0,7,0,0,0,6,0,0,0,20,0,2,0,41,0,0,0,23,0,4,0,45,0,0,0,41,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,64,0,0,0,0,0,0,191,43,0,4,0,6,0,0,0,65,0,0,0,0,0,0,63,43,0,4,0,28,0,0,0,72,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,114,0,0,0,0,0,0,65,43,0,4,0,6,0,0,0,121,0,0,0,0,0,128,65,43,0,4,0,6,0,0,0,124,0,0,0,0,0,0,0,44,0,5,0,7,0,0,0,133,0,0,0,65,0,0,0,65,0,0,0,32,0,4,0,135,0,0,0,7,0,0,0,12,0,0,0,44,0,7,0,12,0,0,0,137,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,43,0,4,0,19,0,0,0,139,0,0,0,0,0,0,0,29,0,3,0,145,0,0,0,28,0,0,0,30,0,3,0,146,0,0,0,145,0,0,0,32,0,4,0,147,0,0,0,2,0,0,0,146,0,0,0,59,0,4,0,147,0,0,0,148,0,0,0,2,0,0,0,43,0,4,0,19,0,0,0,150,0,0,0,3,0,0,0,32,0,4,0,153,0,0,0,2,0,0,0,28,0,0,0,43,0,4,0,19,0,0,0,159,0,0,0,1,0,0,0,43,0,4,0,28,0,0,0,165,0,0,0,255,255,0,0,43,0,4,0,19,0,0,0,169,0,0,0,16,0,0,0,43,0,4,0,6,0,0,0,179,0,0,0,0,0,128,67,59,0,4,0,11,0,0,0,186,0,0,0,0,0,0,0,43,0,4,0,19,0,0,0,198,0,0,0,2,0,0,0,43,0,4,0,19,0,0,0,208,0,0,0,0,4,0,0,43,0,4,0,28,0,0,0,216,0,0,0,255,0,0,0,43,0,4,0,28,0,0,0,220,0,0,0,8,0,0,0,43,0,4,0,28,0,0,0,223,0,0,0,16,0,0,0,43,0,4,0,19,0,0,0,229,0,0,0,4,0,0,0,44,0,5,0,21,0,0,0,230,0,0,0,169,0,0,0,229,0,0,0,23,0,4,0,237,0,0,0,28,0,0,0,3,0,0,0,32,0,4,0,238,0,0,0,1,0,0,0,237,0,0,0,59,0,4,0,238,0,0,0,239,0,0,0,1,0,0,0,23,0,4,0,240,0,0,0,28,0,0,0,2,0,0,0,44,0,5,0,21,0,0,0,251,0,0,0,159,0,0,0,229,0,0,0,59,0,4,0,238,0,0,0,254,0,0,0,1,0,0,0,32,0,4,0,255,0,0,0,1,0,0,0,28,0,0,0,43,0,4,0,19,0,0,0,4,1,0,0,15,0,0,0,30,0,4,0,9,1,0,0,21,0,0,0,21,0,0,0,32,0,4,0,10,1,0,0,2,0,0,0,9,1,0,0,59,0,4,0,10,1,0,0,11,1,0,0,2,0,0,0,32,0,4,0,12,1,0,0,2,0,0,0,19,0,0,0,29,0,3,0,26,1,0,0,28,0,0,0,30,0,3,0,27,1,0,0,26,1,0,0,32,0,4,0,28,1,0,0,2,0,0,0,27,1,0,0,59,0,4,0,28,1,0,0,29,1,0,0,2,0,0,0,43,0,4,0,28,0,0,0,31,1,0,0,2,0,0,0,29,0,3,0,36,1,0,0,28,0,0,0,30,0,3,0,37,1,0,0,36,1,0,0,32,0,4,0,38,1,0,0,2,0,0,0,37,1,0,0,59,0,4,0,38,1,0,0,39,1,0,0,2,0,0,0,43,0,4,0,28,0,0,0,41,1,0,0,4,0,0,0,43,0,4,0,19,0,0,0,46,1,0,0,8,0,0,0,43,0,4,0,28,0,0,0,64,1,0,0,3,0,0,0,43,0,4,0,19,0,0,0,71,1,0,0,24,0,0,0,43,0,4,0,6,0,0,0,100,1,0,0,0,0,128,63,43,0,4,0,6,0,0,0,106,1,0,0,0,0,0,64,25,0,9,0,129,1,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,32,0,4,0,130,1,0,0,0,0,0,0,129,1,0,0,59,0,4,0,130,1,0,0,131,1,0,0,0,0,0,0,44,0,6,0,237,0,0,0,144,1,0,0,223,0,0,0,41,1,0,0,72,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,22,0,0,0,247,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,253,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,7,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,25,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,54,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,61,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,68,1,0,0,7,0,0,0,59,0,4,0,135,0,0,0,73,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,77,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,79,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,84,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,89,1,0,0,7,0,0,0,59,0,4,0,20,0,0,0,117,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,135,1,0,0,7,0,0,0,59,0,4,0,29,0,0,0,140,1,0,0,7,0,0,0,61,0,4,0,237,0,0,0,248,0,0,0,239,0,0,0,79,0,7,0,240,0,0,0,249,0,0,0,248,0,0,0,248,0,0,0,0,0,0,0,1,0,0,0,124,0,4,0,21,0,0,0,250,0,0,0,249,0,0,0,132,0,5,0,21,0,0,0,252,0,0,0,250,0,0,0,251,0,0,0,62,0,3,0,247,0,0,0,252,0,0,0,65,0,5,0,255,0,0,0,0,1,0,0,254,0,0,0,35,0,0,0,61,0,4,0,28,0,0,0,1,1,0,0,0,1,0,0,65,0,5,0,255,0,0,0,2,1,0,0,254,0,0,0,72,0,0,0,61,0,4,0,28,0,0,0,3,1,0,0,2,1,0,0,196,0,5,0,28,0,0,0,5,1,0,0,3,1,0,0,4,1,0,0,197,0,5,0,28,0,0,0,6,1,0,0,1,1,0,0,5,1,0,0,62,0,3,0,253,0,0,0,6,1,0,0,61,0,4,0,28,0,0,0,8,1,0,0,253,0,0,0,65,0,6,0,12,1,0,0,13,1,0,0,11,1,0,0,139,0,0,0,35,0,0,0,61,0,4,0,19,0,0,0,14,1,0,0,13,1,0,0,124,0,4,0,28,0,0,0,15,1,0,0,14,1,0,0,128,0,5,0,28,0,0,0,16,1,0,0,8,1,0,0,15,1,0,0,62,0,3,0,7,1,0,0,16,1,0,0,61,0,4,0,28,0,0,0,17,1,0,0,7,1,0,0,65,0,6,0,12,1,0,0,18,1,0,0,11,1,0,0,139,0,0,0,72,0,0,0,61,0,4,0,19,0,0,0,19,1,0,0,18,1,0,0,124,0,4,0,28,0,0,0,20,1,0,0,19,1,0,0,174,0,5,0,41,0,0,0,21,1,0,0,17,1,0,0,20,1,0,0,247,0,3,0,23,1,0,0,0,0,0,0,250,0,4,0,21,1,0,0,22,1,0,0,23,1,0,0,248,0,2,0,22,1,0,0,253,0,1,0,248,0,2,0,23,1,0,0,61,0,4,0,28,0,0,0,30,1,0,0,253,0,0,0,132,0,5,0,28,0,0,0,32,1,0,0,30,1,0,0,31,1,0,0,128,0,5,0,28,0,0,0,33,1,0,0,32,1,0,0,35,0,0,0,65,0,6,0,153,0,0,0,34,1,0,0,29,1,0,0,139,0,0,0,33,1,0,0,61,0,4,0,28,0,0,0,35,1,0,0,34,1,0,0,62,0,3,0,25,1,0,0,35,1,0,0,61,0,4,0,28,0,0,0,40,1,0,0,25,1,0,0,132,0,5,0,28,0,0,0,42,1,0,0,40,1,0,0,41,1,0,0,128,0,5,0,28,0,0,0,43,1,0,0,42,1,0,0,31,1,0,0,65,0,6,0,153,0,0,0,44,1,0,0,39,1,0,0,139,0,0,0,43,1,0,0,61,0,4,0,28,0,0,0,45,1,0,0,44,1,0,0,196,0,5,0,28,0,0,0,47,1,0,0,45,1,0,0,46,1,0,0,124,0,4,0,19,0,0,0,48,1,0,0,47,1,0,0,195,0,5,0,19,0,0,0,49,1,0,0,48,1,0,0,46,1,0,0,177,0,5,0,41,0,0,0,50,1,0,0,49,1,0,0,139,0,0,0,247,0,3,0,52,1,0,0,0,0,0,0,250,0,4,0,50,1,0,0,51,1,0,0,52,1,0,0,248,0,2,0,51,1,0,0,253,0,1,0,248,0,2,0,52,1,0,0,61,0,4,0,28,0,0,0,55,1,0,0,25,1,0,0,132,0,5,0,28,0,0,0,56,1,0,0,55,1,0,0,41,1,0,0,128,0,5,0,28,0,0,0,57,1,0,0,56,1,0,0,72,0,0,0,65,0,6,0,153,0,0,0,58,1,0,0,39,1,0,0,139,0,0,0,57,1,0,0,61,0,4,0,28,0,0,0,59,1,0,0,58,1,0,0,124,0,4,0,19,0,0,0,60,1,0,0,59,1,0,0,62,0,3,0,54,1,0,0,60,1,0,0,61,0,4,0,28,0,0,0,62,1,0,0,25,1,0,0,132,0,5,0,28,0,0,0,63,1,0,0,62,1,0,0,41,1,0,0,128,0,5,0,28,0,0,0,65,1,0,0,63,1,0,0,64,1,0,0,65,0,6,0,153,0,0,0,66,1,0,0,39,1,0,0,139,0,0,0,65,1,0,0,61,0,4,0,28,0,0,0,67,1,0,0,66,1,0,0,62,0,3,0,61,1,0,0,67,1,0,0,61,0,4,0,28,0,0,0,69,1,0,0,61,1,0,0,124,0,4,0,19,0,0,0,70,1,0,0,69,1,0,0,195,0,5,0,19,0,0,0,72,1,0,0,70,1,0,0,71,1,0,0,62,0,3,0,68,1,0,0,72,1,0,0,61,0,4,0,19,0,0,0,74,1,0,0,68,1,0,0,111,0,4,0,6,0,0,0,75,1,0,0,74,1,0,0,80,0,7,0,12,0,0,0,76,1,0,0,75,1,0,0,75,1,0,0,75,1,0,0,75,1,0,0,62,0,3,0,73,1,0,0,76,1,0,0,61,0,4,0,19,0,0,0,78,1,0,0,54,1,0,0,62,0,3,0,77,1,0,0,78,1,0,0,61,0,4,0,21,0,0,0,80,1,0,0,247,0,0,0,62,0,3,0,79,1,0,0,80,1,0,0,57,0,6,0,12,0,0,0,81,1,0,0,26,0,0,0,77,1,0,0,79,1,0,0,61,0,4,0,12,0,0,0,82,1,0,0,73,1,0,0,129,0,5,0,12,0,0,0,83,1,0,0,82,1,0,0,81,1,0,0,62,0,3,0,73,1,0,0,83,1,0,0,61,0,4,0,28,0,0,0,85,1,0,0,61,1,0,0,194,0,5,0,28,0,0,0,86,1,0,0,85,1,0,0,169,0,0,0,199,0,5,0,28,0,0,0,87,1,0,0,86,1,0,0,216,0,0,0,124,0,4,0,19,0,0,0,88,1,0,0,87,1,0,0,62,0,3,0,84,1,0,0,88,1,0,0,61,0,4,0,19,0,0,0,90,1,0,0,84,1,0,0,195,0,5,0,19,0,0,0,91,1,0,0,90,1,0,0,139,0,0,0,199,0,5,0,19,0,0,0,92,1,0,0,91,1,0,0,150,0,0,0,62,0,3,0,89,1,0,0,92,1,0,0,61,0,4,0,19,0,0,0,93,1,0,0,89,1,0,0,199,0,5,0,19,0,0,0,94,1,0,0,93,1,0,0,159,0,0,0,171,0,5,0,41,0,0,0,95,1,0,0,94,1,0,0,139,0,0,0,247,0,3,0,97,1,0,0,0,0,0,0,250,0,4,0,95,1,0,0,96,1,0,0,104,1,0,0,248,0,2,0,96,1,0,0,61,0,4,0,12,0,0,0,98,1,0,0,73,1,0,0,12,0,6,0,12,0,0,0,99,1,0,0,1,0,0,0,4,0,0,0,98,1,0,0,80,0,7,0,12,0,0,0,101,1,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,80,0,7,0,12,0,0,0,102,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,12,0,8,0,12,0,0,0,103,1,0,0,1,0,0,0,43,0,0,0,99,1,0,0,101,1,0,0,102,1,0,0,62,0,3,0,73,1,0,0,103,1,0,0,249,0,2,0,97,1,0,0,248,0,2,0,104,1,0,0,61,0,4,0,12,0,0,0,105,1,0,0,73,1,0,0,80,0,7,0,12,0,0,0,107,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,106,1,0,0,141,0,5,0,12,0,0,0,108,1,0,0,105,1,0,0,107,1,0,0,80,0,7,0,12,0,0,0,109,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,131,0,5,0,12,0,0,0,110,1,0,0,109,1,0,0,108,1,0,0,12,0,6,0,12,0,0,0,111,1,0,0,1,0,0,0,4,0,0,0,110,1,0,0,80,0,7,0,12,0,0,0,112,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,131,0,5,0,12,0,0,0,113,1,0,0,112,1,0,0,111,1,0,0,80,0,7,0,12,0,0,0,114,1,0,0,124,0,0,0,124,0,0,0,124,0,0,0,124,0,0,0,80,0,7,0,12,0,0,0,115,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,100,1,0,0,12,0,8,0,12,0,0,0,116,1,0,0,1,0,0,0,43,0,0,0,113,1,0,0,114,1,0,0,115,1,0,0,62,0,3,0,73,1,0,0,116,1,0,0,249,0,2,0,97,1,0,0,248,0,2,0,97,1,0,0,61,0,4,0,28,0,0,0,118,1,0,0,253,0,0,0,132,0,5,0,28,0,0,0,119,1,0,0,118,1,0,0,31,1,0,0,128,0,5,0,28,0,0,0,120,1,0,0,119,1,0,0,72,0,0,0,65,0,6,0,153,0,0,0,121,1,0,0,29,1,0,0,139,0,0,0,120,1,0,0,61,0,4,0,28,0,0,0,122,1,0,0,121,1,0,0,124,0,4,0,19,0,0,0,123,1,0,0,122,1,0,0,62,0,3,0,117,1,0,0,123,1,0,0,61,0,4,0,19,0,0,0,124,1,0,0,117,1,0,0,175,0,5,0,41,0,0,0,125,1,0,0,124,1,0,0,139,0,0,0,247,0,3,0,127,1,0,0,0,0,0,0,250,0,4,0,125,1,0,0,126,1,0,0,127,1,0,0,248,0,2,0,126,1,0,0,61,0,4,0,12,0,0,0,128,1,0,0,73,1,0,0,61,0,4,0,129,1,0,0,132,1,0,0,131,1,0,0,61,0,4,0,19,0,0,0,133,1,0,0,117,1,0,0,124,0,4,0,28,0,0,0,134,1,0,0,133,1,0,0,62,0,3,0,135,1,0,0,134,1,0,0,57,0,5,0,21,0,0,0,136,1,0,0,32,0,0,0,135,1,0,0,98,0,5,0,12,0,0,0,137,1,0,0,132,1,0,0,136,1,0,0,12,0,7,0,12,0,0,0,138,1,0,0,1,0,0,0,37,0,0,0,128,1,0,0,137,1,0,0,62,0,3,0,73,1,0,0,138,1,0,0,249,0,2,0,127,1,0,0,248,0,2,0,127,1,0,0,61,0,4,0,129,1,0,0,139,1,0,0,131,1,0,0,61,0,4,0,28,0,0,0,141,1,0,0,7,1,0,0,62,0,3,0,140,1,0,0,141,1,0,0,57,0,5,0,21,0,0,0,142,1,0,0,32,0,0,0,140,1,0,0,61,0,4,0,12,0,0,0,143,1,0,0,73,1,0,0,99,0,4,0,139,1,0,0,142,1,0,0,143,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,12,0,0,0,17,0,0,0,0,0,0,0,13,0,0,0,55,0,3,0,8,0,0,0,14,0,0,0,55,0,3,0,8,0,0,0,15,0,0,0,55,0,3,0,11,0,0,0,16,0,0,0,248,0,2,0,18,0,0,0,59,0,4,0,8,0,0,0,34,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,48,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,58,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,69,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,79,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,87,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,94,0,0,0,7,0,0,0,59,0,4,0,36,0,0,0,106,0,0,0,7,0,0,0,65,0,5,0,36,0,0,0,37,0,0,0,14,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,38,0,0,0,37,0,0,0,65,0,5,0,36,0,0,0,39,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,40,0,0,0,39,0,0,0,184,0,5,0,41,0,0,0,42,0,0,0,38,0,0,0,40,0,0,0,61,0,4,0,7,0,0,0,43,0,0,0,14,0,0,0,61,0,4,0,7,0,0,0,44,0,0,0,15,0,0,0,80,0,5,0,45,0,0,0,46,0,0,0,42,0,0,0,42,0,0,0,169,0,6,0,7,0,0,0,47,0,0,0,46,0,0,0,43,0,0,0,44,0,0,0,62,0,3,0,34,0,0,0,47,0,0,0,65,0,5,0,36,0,0,0,49,0,0,0,14,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,50,0,0,0,49,0,0,0,65,0,5,0,36,0,0,0,51,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,52,0,0,0,51,0,0,0,184,0,5,0,41,0,0,0,53,0,0,0,50,0,0,0,52,0,0,0,61,0,4,0,7,0,0,0,54,0,0,0,15,0,0,0,61,0,4,0,7,0,0,0,55,0,0,0,14,0,0,0,80,0,5,0,45,0,0,0,56,0,0,0,53,0,0,0,53,0,0,0,169,0,6,0,7,0,0,0,57,0,0,0,56,0,0,0,54,0,0,0,55,0,0,0,62,0,3,0,48,0,0,0,57,0,0,0,65,0,5,0,36,0,0,0,59,0,0,0,14,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,60,0,0,0,59,0,0,0,65,0,5,0,36,0,0,0,61,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,62,0,0,0,61,0,0,0,80,0,5,0,7,0,0,0,63,0,0,0,60,0,0,0,62,0,0,0,80,0,5,0,7,0,0,0,66,0,0,0,64,0,0,0,64,0,0,0,80,0,5,0,7,0,0,0,67,0,0,0,65,0,0,0,65,0,0,0,12,0,8,0,7,0,0,0,68,0,0,0,1,0,0,0,43,0,0,0,63,0,0,0,66,0,0,0,67,0,0,0,62,0,3,0,58,0,0,0,68,0,0,0,65,0,5,0,36,0,0,0,70,0,0,0,58,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,71,0,0,0,70,0,0,0,65,0,5,0,36,0,0,0,73,0,0,0,58,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,74,0,0,0,73,0,0,0,12,0,8,0,6,0,0,0,75,0,0,0,1,0,0,0,46,0,0,0,71,0,0,0,74,0,0,0,65,0,0,0,65,0,5,0,36,0,0,0,76,0,0,0,34,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,77,0,0,0,76,0,0,0,131,0,5,0,6,0,0,0,78,0,0,0,75,0,0,0,77,0,0,0,62,0,3,0,69,0,0,0,78,0,0,0,61,0,4,0,6,0,0,0,80,0,0,0,69,0,0,0,65,0,5,0,36,0,0,0,81,0,0,0,48,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,82,0,0,0,81,0,0,0,65,0,5,0,36,0,0,0,83,0,0,0,34,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,84,0,0,0,83,0,0,0,131,0,5,0,6,0,0,0,85,0,0,0,82,0,0,0,84,0,0,0,136,0,5,0,6,0,0,0,86,0,0,0,80,0,0,0,85,0,0,0,62,0,3,0,79,0,0,0,86,0,0,0,65,0,5,0,36,0,0,0,88,0,0,0,34,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,89,0,0,0,88,0,0,0,65,0,5,0,36,0,0,0,90,0,0,0,48,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,91,0,0,0,90,0,0,0,61,0,4,0,6,0,0,0,92,0,0,0,79,0,0,0,12,0,8,0,6,0,0,0,93,0,0,0,1,0,0,0,46,0,0,0,89,0,0,0,91,0,0,0,92,0,0,0,62,0,3,0,87,0,0,0,93,0,0,0,65,0,5,0,36,0,0,0,95,0,0,0,48,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,96,0,0,0,95,0,0,0,65,0,5,0,36,0,0,0,97,0,0,0,34,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,98,0,0,0,97,0,0,0,131,0,5,0,6,0,0,0,99,0,0,0,96,0,0,0,98,0,0,0,65,0,5,0,36,0,0,0,100,0,0,0,48,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,101,0,0,0,100,0,0,0,65,0,5,0,36,0,0,0,102,0,0,0,34,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,103,0,0,0,102,0,0,0,131,0,5,0,6,0,0,0,104,0,0,0,101,0,0,0,103,0,0,0,136,0,5,0,6,0,0,0,105,0,0,0,99,0,0,0,104,0,0,0,62,0,3,0,94,0,0,0,105,0,0,0,65,0,5,0,36,0,0,0,107,0,0,0,58,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,108,0,0,0,107,0,0,0,65,0,5,0,36,0,0,0,109,0,0,0,58,0,0,0,72,0,0,0,61,0,4,0,6,0,0,0,110,0,0,0,109,0,0,0,131,0,5,0,6,0,0,0,111,0,0,0,108,0,0,0,110,0,0,0,62,0,3,0,106,0,0,0,111,0,0,0,61,0,4,0,10,0,0,0,112,0,0,0,16,0,0,0,61,0,4,0,6,0,0,0,113,0,0,0,87,0,0,0,129,0,5,0,6,0,0,0,115,0,0,0,113,0,0,0,114,0,0,0,61,0,4,0,6,0,0,0,116,0,0,0,94,0,0,0,61,0,4,0,6,0,0,0,117,0,0,0,106,0,0,0,133,0,5,0,6,0,0,0,118,0,0,0,116,0,0,0,117,0,0,0,12,0,6,0,6,0,0,0,119,0,0,0,1,0,0,0,4,0,0,0,118,0,0,0,80,0,5,0,7,0,0,0,120,0,0,0,115,0,0,0,119,0,0,0,80,0,5,0,7,0,0,0,122,0,0,0,121,0,0,0,121,0,0,0,136,0,5,0,7,0,0,0,123,0,0,0,120,0,0,0,122,0,0,0,88,0,7,0,12,0,0,0,125,0,0,0,112,0,0,0,123,0,0,0,2,0,0,0,124,0,0,0,61,0,4,0,6,0,0,0,126,0,0,0,106,0,0,0,142,0,5,0,12,0,0,0,127,0,0,0,125,0,0,0,126,0,0,0,254,0,2,0,127,0,0,0,56,0,1,0,54,0,5,0,12,0,0,0,26,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,20,0,0,0,24,0,0,0,55,0,3,0,22,0,0,0,25,0,0,0,248,0,2,0,27,0,0,0,59,0,4,0,8,0,0,0,130,0,0,0,7,0,0,0,59,0,4,0,135,0,0,0,136,0,0,0,7,0,0,0,59,0,4,0,20,0,0,0,138,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,144,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,156,0,0,0,7,0,0,0,59,0,4,0,135,0,0,0,163,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,187,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,190,0,0,0,7,0,0,0,61,0,4,0,21,0,0,0,131,0,0,0,25,0,0,0,111,0,4,0,7,0,0,0,132,0,0,0,131,0,0,0,129,0,5,0,7,0,0,0,134,0,0,0,132,0,0,0,133,0,0,0,62,0,3,0,130,0,0,0,134,0,0,0,62,0,3,0,136,0,0,0,137,0,0,0,62,0,3,0,138,0,0,0,139,0,0,0,249,0,2,0,140,0,0,0,248,0,2,0,140,0,0,0,246,0,4,0,142,0,0,0,143,0,0,0,0,0,0,0,249,0,2,0,141,0,0,0,248,0,2,0,141,0,0,0,61,0,4,0,19,0,0,0,149,0,0,0,24,0,0,0,132,0,5,0,19,0,0,0,151,0,0,0,149,0,0,0,150,0,0,0,128,0,5,0,19,0,0,0,152,0,0,0,151,0,0,0,139,0,0,0,65,0,6,0,153,0,0,0,154,0,0,0,148,0,0,0,139,0,0,0,152,0,0,0,61,0,4,0,28,0,0,0,155,0,0,0,154,0,0,0,62,0,3,0,144,0,0,0,155,0,0,0,61,0,4,0,19,0,0,0,157,0,0,0,24,0,0,0,132,0,5,0,19,0,0,0,158,0,0,0,157,0,0,0,150,0,0,0,128,0,5,0,19,0,0,0,160,0,0,0,158,0,0,0,159,0,0,0,65,0,6,0,153,0,0,0,161,0,0,0,148,0,0,0,139,0,0,0,160,0,0,0,61,0,4,0,28,0,0,0,162,0,0,0,161,0,0,0,62,0,3,0,156,0,0,0,162,0,0,0,61,0,4,0,28,0,0,0,164,0,0,0,144,0,0,0,199,0,5,0,28,0,0,0,166,0,0,0,164,0,0,0,165,0,0,0,112,0,4,0,6,0,0,0,167,0,0,0,166,0,0,0,61,0,4,0,28,0,0,0,168,0,0,0,144,0,0,0,194,0,5,0,28,0,0,0,170,0,0,0,168,0,0,0,169,0,0,0,112,0,4,0,6,0,0,0,171,0,0,0,170,0,0,0,61,0,4,0,28,0,0,0,172,0,0,0,156,0,0,0,199,0,5,0,28,0,0,0,173,0,0,0,172,0,0,0,165,0,0,0,112,0,4,0,6,0,0,0,174,0,0,0,173,0,0,0,61,0,4,0,28,0,0,0,175,0,0,0,156,0,0,0,194,0,5,0,28,0,0,0,176,0,0,0,175,0,0,0,169,0,0,0,112,0,4,0,6,0,0,0,177,0,0,0,176,0,0,0,80,0,7,0,12,0,0,0,178,0,0,0,167,0,0,0,171,0,0,0,174,0,0,0,177,0,0,0,80,0,7,0,12,0,0,0,180,0,0,0,179,0,0,0,179,0,0,0,179,0,0,0,179,0,0,0,136,0,5,0,12,0,0,0,181,0,0,0,178,0,0,0,180,0,0,0,62,0,3,0,163,0,0,0,181,0,0,0,61,0,4,0,7,0,0,0,182,0,0,0,130,0,0,0,79,0,9,0,12,0,0,0,183,0,0,0,182,0,0,0,182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,61,0,4,0,12,0,0,0,184,0,0,0,163,0,0,0,131,0,5,0,12,0,0,0,185,0,0,0,184,0,0,0,183,0,0,0,62,0,3,0,163,0,0,0,185,0,0,0,61,0,4,0,12,0,0,0,188,0,0,0,163,0,0,0,79,0,7,0,7,0,0,0,189,0,0,0,188,0,0,0,188,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,187,0,0,0,189,0,0,0,61,0,4,0,12,0,0,0,191,0,0,0,163,0,0,0,79,0,7,0,7,0,0,0,192,0,0,0,191,0,0,0,191,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,190,0,0,0,192,0,0,0,57,0,7,0,12,0,0,0,193,0,0,0,17,0,0,0,187,0,0,0,190,0,0,0,186,0,0,0,61,0,4,0,12,0,0,0,194,0,0,0,136,0,0,0,129,0,5,0,12,0,0,0,195,0,0,0,194,0,0,0,193,0,0,0,62,0,3,0,136,0,0,0,195,0,0,0,61,0,4,0,19,0,0,0,196,0,0,0,24,0,0,0,132,0,5,0,19,0,0,0,197,0,0,0,196,0,0,0,150,0,0,0,128,0,5,0,19,0,0,0,199,0,0,0,197,0,0,0,198,0,0,0,65,0,6,0,153,0,0,0,200,0,0,0,148,0,0,0,139,0,0,0,199,0,0,0,61,0,4,0,28,0,0,0,201,0,0,0,200,0,0,0,124,0,4,0,19,0,0,0,202,0,0,0,201,0,0,0,62,0,3,0,24,0,0,0,202,0,0,0,61,0,4,0,19,0,0,0,203,0,0,0,138,0,0,0,128,0,5,0,19,0,0,0,204,0,0,0,203,0,0,0,159,0,0,0,62,0,3,0,138,0,0,0,204,0,0,0,249,0,2,0,143,0,0,0,248,0,2,0,143,0,0,0,61,0,4,0,19,0,0,0,205,0,0,0,24,0,0,0,175,0,5,0,41,0,0,0,206,0,0,0,205,0,0,0,139,0,0,0,61,0,4,0,19,0,0,0,207,0,0,0,138,0,0,0,177,0,5,0,41,0,0,0,209,0,0,0,207,0,0,0,208,0,0,0,167,0,5,0,41,0,0,0,210,0,0,0,206,0,0,0,209,0,0,0,250,0,4,0,210,0,0,0,140,0,0,0,142,0,0,0,248,0,2,0,142,0,0,0,61,0,4,0,12,0,0,0,211,0,0,0,136,0,0,0,254,0,2,0,211,0,0,0,56,0,1,0,54,0,5,0,21,0,0,0,32,0,0,0,0,0,0,0,30,0,0,0,55,0,3,0,29,0,0,0,31,0,0,0,248,0,2,0,33,0,0,0,59,0,4,0,29,0,0,0,214,0,0,0,7,0,0,0,59,0,4,0,29,0,0,0,218,0,0,0,7,0,0,0,61,0,4,0,28,0,0,0,215,0,0,0,31,0,0,0,199,0,5,0,28,0,0,0,217,0,0,0,215,0,0,0,216,0,0,0,62,0,3,0,214,0,0,0,217,0,0,0,61,0,4,0,28,0,0,0,219,0,0,0,31,0,0,0,194,0,5,0,28,0,0,0,221,0,0,0,219,0,0,0,220,0,0,0,61,0,4,0,28,0,0,0,222,0,0,0,31,0,0,0,194,0,5,0,28,0,0,0,224,0,0,0,222,0,0,0,223,0,0,0,199,0,5,0,28,0,0,0,225,0,0,0,224,0,0,0,216,0,0,0,196,0,5,0,28,0,0,0,226,0,0,0,225,0,0,0,220,0,0,0,128,0,5,0,28,0,0,0,227,0,0,0,216,0,0,0,226,0,0,0,199,0,5,0,28,0,0,0,228,0,0,0,221,0,0,0,227,0,0,0,62,0,3,0,218,0,0,0,228,0,0,0,61,0,4,0,28,0,0,0,231,0,0,0,214,0,0,0,124,0,4,0,19,0,0,0,232,0,0,0,231,0,0,0,61,0,4,0,28,0,0,0,233,0,0,0,218,0,0,0,124,0,4,0,19,0,0,0,234,0,0,0,233,0,0,0,80,0,5,0,21,0,0,0,235,0,0,0,232,0,0,0,234,0,0,0,132,0,5,0,21,0,0,0,236,0,0,0,230,0,0,0,235,0,0,0,61,0,4,0,237,0,0,0,241,0,0,0,239,0,0,0,79,0,7,0,240,0,0,0,242,0,0,0,241,0,0,0,241,0,0,0,0,0,0,0,1,0,0,0,124,0,4,0,21,0,0,0,243,0,0,0,242,0,0,0,128,0,5,0,21,0,0,0,244,0,0,0,236,0,0,0,243,0,0,0,254,0,2,0,244,0,0,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_FILL_COMP_SPV_H diff --git a/src/shaders/generated/fill_vert.h b/src/shaders/generated/fill_vert.h index f29d7594..357b4281 100644 --- a/src/shaders/generated/fill_vert.h +++ b/src/shaders/generated/fill_vert.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_FILL_VERT_H namespace Pathfinder { - static uint8_t fill_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,102,105,108,108,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,32,32,32,32,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,32,32,32,32,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,41,46,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,50,56,48,44,32,53,49,50,41,46,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,48,41,32,105,110,32,117,118,101,99,50,32,97,84,101,115,115,67,111,111,114,100,59,32,47,47,32,86,101,114,116,101,120,32,99,111,111,114,100,105,110,97,116,101,115,32,105,110,32,97,32,113,117,97,100,44,32,102,105,120,101,100,46,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,49,41,32,105,110,32,117,118,101,99,52,32,97,76,105,110,101,83,101,103,109,101,110,116,59,32,47,47,32,76,105,110,101,32,115,101,103,109,101,110,116,32,102,114,111,109,32,116,104,101,32,98,117,105,108,116,32,98,97,116,99,104,46,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,50,41,32,105,110,32,117,105,110,116,32,97,84,105,108,101,73,110,100,101,120,59,32,47,47,32,65,108,112,104,97,32,116,105,108,101,32,105,110,100,101,120,46,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,48,41,32,111,117,116,32,118,101,99,50,32,118,70,114,111,109,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,49,41,32,111,117,116,32,118,101,99,50,32,118,84,111,59,13,10,35,101,108,115,101,13,10,111,117,116,32,118,101,99,50,32,118,70,114,111,109,59,13,10,111,117,116,32,118,101,99,50,32,118,84,111,59,13,10,35,101,110,100,105,102,13,10,13,10,47,47,47,32,84,105,108,101,32,105,110,100,101,120,32,45,62,32,105,110,100,101,120,32,99,111,111,114,100,105,110,97,116,101,115,32,45,62,32,112,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,118,101,99,50,32,99,111,109,112,117,116,101,84,105,108,101,79,102,102,115,101,116,40,117,105,110,116,32,116,105,108,101,73,110,100,101,120,44,32,102,108,111,97,116,32,115,116,101,110,99,105,108,84,101,120,116,117,114,101,87,105,100,116,104,44,32,118,101,99,50,32,116,105,108,101,83,105,122,101,41,32,123,13,10,32,32,32,32,47,47,32,84,105,108,101,115,32,99,111,117,110,116,32,112,101,114,32,114,111,119,32,105,110,32,116,104,101,32,109,97,115,107,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,115,80,101,114,82,111,119,32,61,32,117,105,110,116,40,115,116,101,110,99,105,108,84,101,120,116,117,114,101,87,105,100,116,104,32,47,32,116,105,108,101,83,105,122,101,46,120,41,59,13,10,13,10,32,32,32,32,47,47,32,84,105,108,101,32,105,110,100,101,120,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,117,118,101,99,50,32,116,105,108,101,79,102,102,115,101,116,32,61,32,117,118,101,99,50,40,116,105,108,101,73,110,100,101,120,32,37,32,116,105,108,101,115,80,101,114,82,111,119,44,32,116,105,108,101,73,110,100,101,120,32,47,32,116,105,108,101,115,80,101,114,82,111,119,41,59,13,10,13,10,32,32,32,32,47,47,32,80,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,39,115,32,111,114,105,103,105,110,46,13,10,32,32,32,32,47,47,32,87,101,32,99,111,109,112,114,101,115,115,32,100,97,116,97,32,105,110,116,111,32,82,71,66,65,32,99,104,97,110,110,101,108,115,32,105,110,32,116,104,101,32,118,101,114,116,105,99,97,108,32,100,105,114,101,99,116,105,111,110,46,13,10,32,32,32,32,47,47,32,84,104,97,116,39,115,32,119,104,121,32,119,101,32,104,97,118,101,32,118,101,99,50,40,49,46,48,102,44,32,48,46,50,53,102,41,32,104,101,114,101,46,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,50,40,116,105,108,101,79,102,102,115,101,116,41,32,42,32,116,105,108,101,83,105,122,101,32,42,32,118,101,99,50,40,49,46,48,102,44,32,48,46,50,53,102,41,59,13,10,125,13,10,13,10,118,101,99,52,32,99,111,109,112,117,116,101,86,101,114,116,101,120,80,111,115,105,116,105,111,110,40,117,105,110,116,32,116,105,108,101,73,110,100,101,120,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,118,101,99,50,32,116,101,115,115,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,118,101,99,52,32,112,97,99,107,101,100,76,105,110,101,83,101,103,109,101,110,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,116,105,108,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,50,32,111,117,116,70,114,111,109,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,50,32,111,117,116,84,111,41,32,123,13,10,32,32,32,32,47,47,32,80,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,39,115,32,111,114,105,103,105,110,32,105,110,32,116,104,101,32,109,97,115,107,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,79,114,105,103,105,110,32,61,32,99,111,109,112,117,116,101,84,105,108,101,79,102,102,115,101,116,40,116,105,108,101,73,110,100,101,120,44,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,46,120,44,32,116,105,108,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,32,116,104,101,32,112,97,99,107,101,100,32,105,110,116,101,103,101,114,32,108,105,110,101,32,115,101,103,109,101,110,116,32,116,111,32,97,32,117,110,112,97,99,107,101,100,32,102,108,111,97,116,32,111,110,101,32,98,121,32,100,105,118,105,100,105,110,103,32,105,116,32,98,121,32,50,53,54,46,48,46,13,10,32,32,32,32,47,47,32,50,53,54,46,48,102,32,105,115,32,117,115,101,100,32,116,111,32,99,111,110,118,101,114,116,32,105,110,116,101,103,101,114,115,32,98,97,99,107,32,116,111,32,102,108,111,97,116,115,46,13,10,32,32,32,32,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,112,97,99,107,101,100,76,105,110,101,83,101,103,109,101,110,116,41,32,47,32,50,53,54,46,48,102,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,105,110,32,116,104,101,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,46,13,10,32,32,32,32,118,101,99,50,32,102,114,111,109,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,116,111,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,108,115,111,32,105,110,32,116,104,101,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,46,13,10,32,32,32,32,118,101,99,50,32,112,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,47,47,32,67,79,82,69,32,83,84,69,80,13,10,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,115,113,117,97,114,101,32,113,117,97,100,32,45,62,32,116,104,101,32,102,105,108,108,32,113,117,97,100,32,101,110,99,105,114,99,108,101,100,32,98,121,32,116,104,101,32,108,105,110,101,32,115,101,103,109,101,110,116,44,32,116,104,101,32,98,111,116,116,111,109,32,98,111,117,110,100,32,111,102,32,116,104,101,32,116,105,108,101,44,13,10,32,32,32,32,47,47,32,97,110,100,32,116,119,111,32,118,101,114,116,105,99,97,108,32,97,117,120,105,108,105,97,114,121,32,115,101,103,109,101,110,116,115,46,13,10,32,32,32,32,105,102,32,40,116,101,115,115,67,111,111,114,100,46,120,32,61,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,120,32,61,32,102,108,111,111,114,40,109,105,110,40,102,114,111,109,46,120,44,32,116,111,46,120,41,41,59,32,47,47,32,76,101,102,116,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,120,32,61,32,99,101,105,108,40,109,97,120,40,102,114,111,109,46,120,44,32,116,111,46,120,41,41,59,32,47,47,32,82,105,103,104,116,13,10,13,10,32,32,32,32,105,102,32,40,116,101,115,115,67,111,111,114,100,46,121,32,61,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,121,32,61,32,102,108,111,111,114,40,109,105,110,40,102,114,111,109,46,121,44,32,116,111,46,121,41,41,59,32,47,47,32,84,111,112,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,121,32,61,32,116,105,108,101,83,105,122,101,46,121,59,32,47,47,32,66,111,116,116,111,109,44,32,119,104,105,99,104,32,105,115,32,97,108,119,97,121,115,32,116,104,101,32,98,111,116,116,111,109,32,98,111,117,110,100,32,111,102,32,116,104,101,32,116,105,108,101,46,13,10,13,10,32,32,32,32,47,47,32,67,111,109,112,114,101,115,115,32,116,104,101,32,102,105,108,108,32,113,117,97,100,32,105,110,32,116,104,101,32,118,101,114,116,105,99,97,108,32,100,105,114,101,99,116,105,111,110,46,13,10,32,32,32,32,112,111,115,105,116,105,111,110,46,121,32,61,32,102,108,111,111,114,40,112,111,115,105,116,105,111,110,46,121,32,42,32,48,46,50,53,41,59,13,10,13,10,32,32,32,32,47,47,32,83,105,110,99,101,32,101,97,99,104,32,102,114,97,103,109,101,110,116,32,99,111,114,114,101,115,112,111,110,100,115,32,116,111,32,52,32,112,105,120,101,108,115,32,111,110,32,97,32,115,99,97,110,108,105,110,101,44,32,116,104,101,32,118,97,114,121,105,110,103,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,108,108,13,10,32,32,32,32,47,47,32,108,97,110,100,32,116,104,101,32,102,114,97,103,109,101,110,116,32,104,97,108,102,119,97,121,32,98,101,116,119,101,101,110,32,116,104,101,32,102,111,117,114,45,112,105,120,101,108,32,115,116,114,105,112,44,32,97,116,32,112,105,120,101,108,32,111,102,102,115,101,116,32,50,46,48,46,32,66,117,116,32,119,101,32,119,97,110,116,32,116,111,13,10,32,32,32,32,47,47,32,100,111,32,111,117,114,32,99,111,118,101,114,97,103,101,32,99,97,108,99,117,108,97,116,105,111,110,32,111,110,32,116,104,101,32,99,101,110,116,101,114,32,111,102,32,116,104,101,32,102,105,114,115,116,32,112,105,120,101,108,32,105,110,32,116,104,101,32,115,116,114,105,112,32,105,110,115,116,101,97,100,44,32,97,116,32,112,105,120,101,108,13,10,32,32,32,32,47,47,32,111,102,102,115,101,116,32,48,46,53,46,32,84,104,105,115,32,97,100,106,117,115,116,109,101,110,116,32,111,102,32,49,46,53,32,97,99,99,111,109,112,108,105,115,104,101,115,32,116,104,97,116,46,13,10,32,32,32,32,118,101,99,50,32,111,102,102,115,101,116,32,61,32,118,101,99,50,40,48,46,48,44,32,49,46,53,41,32,45,32,112,111,115,105,116,105,111,110,32,42,32,118,101,99,50,40,49,46,48,44,32,52,46,48,41,59,13,10,32,32,32,32,111,117,116,70,114,111,109,32,61,32,102,114,111,109,32,43,32,111,102,102,115,101,116,59,13,10,32,32,32,32,111,117,116,84,111,32,61,32,116,111,32,43,32,111,102,102,115,101,116,59,13,10,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,112,105,120,101,108,32,112,111,115,105,116,105,111,110,32,45,62,32,110,111,114,109,97,108,105,122,101,100,32,85,86,32,112,111,115,105,116,105,111,110,46,13,10,32,32,32,32,118,101,99,50,32,103,108,111,98,97,108,80,111,115,105,116,105,111,110,32,61,32,40,116,105,108,101,79,114,105,103,105,110,32,43,32,112,111,115,105,116,105,111,110,41,32,47,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,32,42,32,50,46,48,32,45,32,49,46,48,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,103,108,111,98,97,108,80,111,115,105,116,105,111,110,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,99,111,109,112,117,116,101,86,101,114,116,101,120,80,111,115,105,116,105,111,110,40,13,10,32,32,32,32,32,32,32,32,97,84,105,108,101,73,110,100,101,120,44,13,10,32,32,32,32,32,32,32,32,97,84,101,115,115,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,97,76,105,110,101,83,101,103,109,101,110,116,44,13,10,32,32,32,32,32,32,32,32,117,84,105,108,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,118,70,114,111,109,44,13,10,32,32,32,32,32,32,32,32,118,84,111,13,10,32,32,32,32,41,59,13,10,125,13,10}; + static uint8_t fill_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,102,105,108,108,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,32,32,32,32,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,108,115,101,13,10,32,32,32,32,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,77,97,115,107,32,102,114,97,109,101,98,117,102,102,101,114,46,32,68,121,110,97,109,105,99,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,32,42,32,112,97,103,101,95,99,111,117,110,116,41,46,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,48,41,32,105,110,32,117,118,101,99,50,32,97,84,101,115,115,67,111,111,114,100,59,32,47,47,32,86,101,114,116,101,120,32,99,111,111,114,100,105,110,97,116,101,115,32,105,110,32,97,32,113,117,97,100,44,32,102,105,120,101,100,46,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,49,41,32,105,110,32,117,118,101,99,52,32,97,76,105,110,101,83,101,103,109,101,110,116,59,32,47,47,32,76,105,110,101,32,115,101,103,109,101,110,116,32,102,114,111,109,32,116,104,101,32,98,117,105,108,116,32,98,97,116,99,104,46,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,50,41,32,105,110,32,117,105,110,116,32,97,84,105,108,101,73,110,100,101,120,59,32,47,47,32,65,108,112,104,97,32,116,105,108,101,32,105,110,100,101,120,46,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,48,41,32,111,117,116,32,118,101,99,50,32,118,70,114,111,109,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,61,49,41,32,111,117,116,32,118,101,99,50,32,118,84,111,59,13,10,35,101,108,115,101,13,10,111,117,116,32,118,101,99,50,32,118,70,114,111,109,59,13,10,111,117,116,32,118,101,99,50,32,118,84,111,59,13,10,35,101,110,100,105,102,13,10,13,10,47,47,47,32,84,105,108,101,32,105,110,100,101,120,32,45,62,32,105,110,100,101,120,32,99,111,111,114,100,105,110,97,116,101,115,32,45,62,32,112,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,118,101,99,50,32,99,111,109,112,117,116,101,84,105,108,101,79,102,102,115,101,116,40,117,105,110,116,32,116,105,108,101,73,110,100,101,120,44,32,102,108,111,97,116,32,115,116,101,110,99,105,108,84,101,120,116,117,114,101,87,105,100,116,104,44,32,118,101,99,50,32,116,105,108,101,83,105,122,101,41,32,123,13,10,32,32,32,32,47,47,32,84,105,108,101,115,32,99,111,117,110,116,32,112,101,114,32,114,111,119,32,105,110,32,116,104,101,32,109,97,115,107,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,117,105,110,116,32,116,105,108,101,115,80,101,114,82,111,119,32,61,32,117,105,110,116,40,115,116,101,110,99,105,108,84,101,120,116,117,114,101,87,105,100,116,104,32,47,32,116,105,108,101,83,105,122,101,46,120,41,59,13,10,13,10,32,32,32,32,47,47,32,84,105,108,101,32,105,110,100,101,120,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,117,118,101,99,50,32,116,105,108,101,79,102,102,115,101,116,32,61,32,117,118,101,99,50,40,116,105,108,101,73,110,100,101,120,32,37,32,116,105,108,101,115,80,101,114,82,111,119,44,32,116,105,108,101,73,110,100,101,120,32,47,32,116,105,108,101,115,80,101,114,82,111,119,41,59,13,10,13,10,32,32,32,32,47,47,32,80,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,39,115,32,111,114,105,103,105,110,46,13,10,32,32,32,32,47,47,32,87,101,32,99,111,109,112,114,101,115,115,32,100,97,116,97,32,105,110,116,111,32,82,71,66,65,32,99,104,97,110,110,101,108,115,32,105,110,32,116,104,101,32,118,101,114,116,105,99,97,108,32,100,105,114,101,99,116,105,111,110,46,13,10,32,32,32,32,47,47,32,84,104,97,116,39,115,32,119,104,121,32,119,101,32,104,97,118,101,32,118,101,99,50,40,49,46,48,102,44,32,48,46,50,53,102,41,32,104,101,114,101,46,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,50,40,116,105,108,101,79,102,102,115,101,116,41,32,42,32,116,105,108,101,83,105,122,101,32,42,32,118,101,99,50,40,49,46,48,102,44,32,48,46,50,53,102,41,59,13,10,125,13,10,13,10,118,101,99,52,32,99,111,109,112,117,116,101,86,101,114,116,101,120,80,111,115,105,116,105,111,110,40,117,105,110,116,32,116,105,108,101,73,110,100,101,120,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,118,101,99,50,32,116,101,115,115,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,118,101,99,52,32,112,97,99,107,101,100,76,105,110,101,83,101,103,109,101,110,116,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,116,105,108,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,50,32,111,117,116,70,114,111,109,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,117,116,32,118,101,99,50,32,111,117,116,84,111,41,32,123,13,10,32,32,32,32,47,47,32,80,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,39,115,32,111,114,105,103,105,110,32,105,110,32,116,104,101,32,109,97,115,107,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,79,114,105,103,105,110,32,61,32,99,111,109,112,117,116,101,84,105,108,101,79,102,102,115,101,116,40,116,105,108,101,73,110,100,101,120,44,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,46,120,44,32,116,105,108,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,32,116,104,101,32,112,97,99,107,101,100,32,105,110,116,101,103,101,114,32,108,105,110,101,32,115,101,103,109,101,110,116,32,116,111,32,97,32,117,110,112,97,99,107,101,100,32,102,108,111,97,116,32,111,110,101,32,98,121,32,100,105,118,105,100,105,110,103,32,105,116,32,98,121,32,50,53,54,46,48,46,13,10,32,32,32,32,47,47,32,50,53,54,46,48,102,32,105,115,32,117,115,101,100,32,116,111,32,99,111,110,118,101,114,116,32,105,110,116,101,103,101,114,115,32,98,97,99,107,32,116,111,32,102,108,111,97,116,115,46,13,10,32,32,32,32,118,101,99,52,32,108,105,110,101,83,101,103,109,101,110,116,32,61,32,118,101,99,52,40,112,97,99,107,101,100,76,105,110,101,83,101,103,109,101,110,116,41,32,47,32,50,53,54,46,48,102,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,105,110,32,116,104,101,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,46,13,10,32,32,32,32,118,101,99,50,32,102,114,111,109,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,120,121,44,32,116,111,32,61,32,108,105,110,101,83,101,103,109,101,110,116,46,122,119,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,108,115,111,32,105,110,32,116,104,101,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,46,13,10,32,32,32,32,118,101,99,50,32,112,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,47,47,32,67,79,82,69,32,83,84,69,80,13,10,32,32,32,32,47,47,32,68,101,102,97,117,108,116,32,115,113,117,97,114,101,32,113,117,97,100,32,45,62,32,116,104,101,32,102,105,108,108,32,113,117,97,100,32,101,110,99,105,114,99,108,101,100,32,98,121,32,116,104,101,32,108,105,110,101,32,115,101,103,109,101,110,116,44,32,116,104,101,32,98,111,116,116,111,109,32,98,111,117,110,100,32,111,102,32,116,104,101,32,116,105,108,101,44,13,10,32,32,32,32,47,47,32,97,110,100,32,116,119,111,32,118,101,114,116,105,99,97,108,32,97,117,120,105,108,105,97,114,121,32,115,101,103,109,101,110,116,115,46,13,10,32,32,32,32,105,102,32,40,116,101,115,115,67,111,111,114,100,46,120,32,61,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,120,32,61,32,102,108,111,111,114,40,109,105,110,40,102,114,111,109,46,120,44,32,116,111,46,120,41,41,59,32,47,47,32,76,101,102,116,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,120,32,61,32,99,101,105,108,40,109,97,120,40,102,114,111,109,46,120,44,32,116,111,46,120,41,41,59,32,47,47,32,82,105,103,104,116,13,10,13,10,32,32,32,32,105,102,32,40,116,101,115,115,67,111,111,114,100,46,121,32,61,61,32,48,117,41,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,121,32,61,32,102,108,111,111,114,40,109,105,110,40,102,114,111,109,46,121,44,32,116,111,46,121,41,41,59,32,47,47,32,84,111,112,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,46,121,32,61,32,116,105,108,101,83,105,122,101,46,121,59,32,47,47,32,66,111,116,116,111,109,44,32,119,104,105,99,104,32,105,115,32,97,108,119,97,121,115,32,116,104,101,32,98,111,116,116,111,109,32,98,111,117,110,100,32,111,102,32,116,104,101,32,116,105,108,101,46,13,10,13,10,32,32,32,32,47,47,32,67,111,109,112,114,101,115,115,32,116,104,101,32,102,105,108,108,32,113,117,97,100,32,105,110,32,116,104,101,32,118,101,114,116,105,99,97,108,32,100,105,114,101,99,116,105,111,110,46,13,10,32,32,32,32,112,111,115,105,116,105,111,110,46,121,32,61,32,102,108,111,111,114,40,112,111,115,105,116,105,111,110,46,121,32,42,32,48,46,50,53,41,59,13,10,13,10,32,32,32,32,47,47,32,83,105,110,99,101,32,101,97,99,104,32,102,114,97,103,109,101,110,116,32,99,111,114,114,101,115,112,111,110,100,115,32,116,111,32,52,32,112,105,120,101,108,115,32,111,110,32,97,32,115,99,97,110,108,105,110,101,44,32,116,104,101,32,118,97,114,121,105,110,103,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,108,108,13,10,32,32,32,32,47,47,32,108,97,110,100,32,116,104,101,32,102,114,97,103,109,101,110,116,32,104,97,108,102,119,97,121,32,98,101,116,119,101,101,110,32,116,104,101,32,102,111,117,114,45,112,105,120,101,108,32,115,116,114,105,112,44,32,97,116,32,112,105,120,101,108,32,111,102,102,115,101,116,32,50,46,48,46,32,66,117,116,32,119,101,32,119,97,110,116,32,116,111,13,10,32,32,32,32,47,47,32,100,111,32,111,117,114,32,99,111,118,101,114,97,103,101,32,99,97,108,99,117,108,97,116,105,111,110,32,111,110,32,116,104,101,32,99,101,110,116,101,114,32,111,102,32,116,104,101,32,102,105,114,115,116,32,112,105,120,101,108,32,105,110,32,116,104,101,32,115,116,114,105,112,32,105,110,115,116,101,97,100,44,32,97,116,32,112,105,120,101,108,13,10,32,32,32,32,47,47,32,111,102,102,115,101,116,32,48,46,53,46,32,84,104,105,115,32,97,100,106,117,115,116,109,101,110,116,32,111,102,32,49,46,53,32,97,99,99,111,109,112,108,105,115,104,101,115,32,116,104,97,116,46,13,10,32,32,32,32,118,101,99,50,32,111,102,102,115,101,116,32,61,32,118,101,99,50,40,48,46,48,44,32,49,46,53,41,32,45,32,112,111,115,105,116,105,111,110,32,42,32,118,101,99,50,40,49,46,48,44,32,52,46,48,41,59,13,10,32,32,32,32,111,117,116,70,114,111,109,32,61,32,102,114,111,109,32,43,32,111,102,102,115,101,116,59,13,10,32,32,32,32,111,117,116,84,111,32,61,32,116,111,32,43,32,111,102,102,115,101,116,59,13,10,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,112,105,120,101,108,32,112,111,115,105,116,105,111,110,32,45,62,32,110,111,114,109,97,108,105,122,101,100,32,85,86,32,112,111,115,105,116,105,111,110,46,13,10,32,32,32,32,118,101,99,50,32,103,108,111,98,97,108,80,111,115,105,116,105,111,110,32,61,32,40,116,105,108,101,79,114,105,103,105,110,32,43,32,112,111,115,105,116,105,111,110,41,32,47,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,32,42,32,50,46,48,32,45,32,49,46,48,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,103,108,111,98,97,108,80,111,115,105,116,105,111,110,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,99,111,109,112,117,116,101,86,101,114,116,101,120,80,111,115,105,116,105,111,110,40,13,10,32,32,32,32,32,32,32,32,97,84,105,108,101,73,110,100,101,120,44,13,10,32,32,32,32,32,32,32,32,97,84,101,115,115,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,97,76,105,110,101,83,101,103,109,101,110,116,44,13,10,32,32,32,32,32,32,32,32,117,84,105,108,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,118,70,114,111,109,44,13,10,32,32,32,32,32,32,32,32,118,84,111,13,10,32,32,32,32,41,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_FILL_VERT_H diff --git a/src/shaders/generated/fill_vert_spv.h b/src/shaders/generated/fill_vert_spv.h index 452dcfbf..cd283115 100644 --- a/src/shaders/generated/fill_vert_spv.h +++ b/src/shaders/generated/fill_vert_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_FILL_VERT_SPV_H namespace Pathfinder { - static uint8_t fill_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,193,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,11,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,157,0,0,0,161,0,0,0,163,0,0,0,165,0,0,0,171,0,0,0,172,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,10,0,16,0,0,0,99,111,109,112,117,116,101,84,105,108,101,79,102,102,115,101,116,40,117,49,59,102,49,59,118,102,50,59,0,0,0,0,5,0,5,0,13,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,7,0,14,0,0,0,115,116,101,110,99,105,108,84,101,120,116,117,114,101,87,105,100,116,104,0,5,0,5,0,15,0,0,0,116,105,108,101,83,105,122,101,0,0,0,0,5,0,15,0,31,0,0,0,99,111,109,112,117,116,101,86,101,114,116,101,120,80,111,115,105,116,105,111,110,40,117,49,59,118,117,50,59,118,117,52,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,50,59,0,0,0,5,0,5,0,24,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,5,0,25,0,0,0,116,101,115,115,67,111,111,114,100,0,0,0,5,0,7,0,26,0,0,0,112,97,99,107,101,100,76,105,110,101,83,101,103,109,101,110,116,0,0,0,5,0,5,0,27,0,0,0,116,105,108,101,83,105,122,101,0,0,0,0,5,0,6,0,28,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,4,0,29,0,0,0,111,117,116,70,114,111,109,0,5,0,4,0,30,0,0,0,111,117,116,84,111,0,0,0,5,0,5,0,33,0,0,0,116,105,108,101,115,80,101,114,82,111,119,0,5,0,5,0,40,0,0,0,116,105,108,101,79,102,102,115,101,116,0,0,5,0,5,0,58,0,0,0,116,105,108,101,79,114,105,103,105,110,0,0,5,0,4,0,59,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,61,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,64,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,68,0,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,4,0,74,0,0,0,102,114,111,109,0,0,0,0,5,0,3,0,77,0,0,0,116,111,0,0,5,0,5,0,86,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,4,0,124,0,0,0,111,102,102,115,101,116,0,0,5,0,6,0,139,0,0,0,103,108,111,98,97,108,80,111,115,105,116,105,111,110,0,0,5,0,6,0,155,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,155,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,155,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,157,0,0,0,0,0,0,0,5,0,5,0,161,0,0,0,97,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,163,0,0,0,97,84,101,115,115,67,111,111,114,100,0,0,5,0,6,0,165,0,0,0,97,76,105,110,101,83,101,103,109,101,110,116,0,0,0,0,5,0,6,0,166,0,0,0,98,67,111,110,115,116,97,110,116,83,105,122,101,115,0,0,6,0,8,0,166,0,0,0,0,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,6,0,166,0,0,0,1,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,166,0,0,0,2,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,4,0,166,0,0,0,3,0,0,0,112,97,100,0,5,0,3,0,168,0,0,0,0,0,0,0,5,0,4,0,171,0,0,0,118,70,114,111,109,0,0,0,5,0,3,0,172,0,0,0,118,84,111,0,5,0,4,0,173,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,175,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,177,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,179,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,183,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,186,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,187,0,0,0,112,97,114,97,109,0,0,0,72,0,5,0,155,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,155,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,155,0,0,0,2,0,0,0,71,0,4,0,161,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,163,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,165,0,0,0,30,0,0,0,1,0,0,0,72,0,5,0,166,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,166,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,166,0,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,166,0,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,166,0,0,0,2,0,0,0,71,0,4,0,168,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,168,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,171,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,172,0,0,0,30,0,0,0,1,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,7,0,0,0,7,0,0,0,6,0,0,0,22,0,3,0,8,0,0,0,32,0,0,0,32,0,4,0,9,0,0,0,7,0,0,0,8,0,0,0,23,0,4,0,10,0,0,0,8,0,0,0,2,0,0,0,32,0,4,0,11,0,0,0,7,0,0,0,10,0,0,0,33,0,6,0,12,0,0,0,10,0,0,0,7,0,0,0,9,0,0,0,11,0,0,0,23,0,4,0,18,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,19,0,0,0,7,0,0,0,18,0,0,0,23,0,4,0,20,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,21,0,0,0,7,0,0,0,20,0,0,0,23,0,4,0,22,0,0,0,8,0,0,0,4,0,0,0,33,0,10,0,23,0,0,0,22,0,0,0,7,0,0,0,19,0,0,0,21,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,43,0,4,0,6,0,0,0,35,0,0,0,0,0,0,0,43,0,4,0,8,0,0,0,52,0,0,0,0,0,128,63,43,0,4,0,8,0,0,0,53,0,0,0,0,0,128,62,44,0,5,0,10,0,0,0,54,0,0,0,52,0,0,0,53,0,0,0,32,0,4,0,67,0,0,0,7,0,0,0,22,0,0,0,43,0,4,0,8,0,0,0,71,0,0,0,0,0,128,67,20,0,2,0,82,0,0,0,43,0,4,0,6,0,0,0,102,0,0,0,1,0,0,0,43,0,4,0,8,0,0,0,125,0,0,0,0,0,0,0,43,0,4,0,8,0,0,0,126,0,0,0,0,0,192,63,44,0,5,0,10,0,0,0,127,0,0,0,125,0,0,0,126,0,0,0,43,0,4,0,8,0,0,0,129,0,0,0,0,0,128,64,44,0,5,0,10,0,0,0,130,0,0,0,52,0,0,0,129,0,0,0,43,0,4,0,8,0,0,0,145,0,0,0,0,0,0,64,30,0,4,0,155,0,0,0,22,0,0,0,8,0,0,0,32,0,4,0,156,0,0,0,3,0,0,0,155,0,0,0,59,0,4,0,156,0,0,0,157,0,0,0,3,0,0,0,21,0,4,0,158,0,0,0,32,0,0,0,1,0,0,0,43,0,4,0,158,0,0,0,159,0,0,0,0,0,0,0,32,0,4,0,160,0,0,0,1,0,0,0,6,0,0,0,59,0,4,0,160,0,0,0,161,0,0,0,1,0,0,0,32,0,4,0,162,0,0,0,1,0,0,0,18,0,0,0,59,0,4,0,162,0,0,0,163,0,0,0,1,0,0,0,32,0,4,0,164,0,0,0,1,0,0,0,20,0,0,0,59,0,4,0,164,0,0,0,165,0,0,0,1,0,0,0,30,0,6,0,166,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,32,0,4,0,167,0,0,0,2,0,0,0,166,0,0,0,59,0,4,0,167,0,0,0,168,0,0,0,2,0,0,0,43,0,4,0,158,0,0,0,169,0,0,0,1,0,0,0,32,0,4,0,170,0,0,0,3,0,0,0,10,0,0,0,59,0,4,0,170,0,0,0,171,0,0,0,3,0,0,0,59,0,4,0,170,0,0,0,172,0,0,0,3,0,0,0,32,0,4,0,180,0,0,0,2,0,0,0,10,0,0,0,32,0,4,0,191,0,0,0,3,0,0,0,22,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,7,0,0,0,173,0,0,0,7,0,0,0,59,0,4,0,19,0,0,0,175,0,0,0,7,0,0,0,59,0,4,0,21,0,0,0,177,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,179,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,183,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,186,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,187,0,0,0,7,0,0,0,61,0,4,0,6,0,0,0,174,0,0,0,161,0,0,0,62,0,3,0,173,0,0,0,174,0,0,0,61,0,4,0,18,0,0,0,176,0,0,0,163,0,0,0,62,0,3,0,175,0,0,0,176,0,0,0,61,0,4,0,20,0,0,0,178,0,0,0,165,0,0,0,62,0,3,0,177,0,0,0,178,0,0,0,65,0,5,0,180,0,0,0,181,0,0,0,168,0,0,0,169,0,0,0,61,0,4,0,10,0,0,0,182,0,0,0,181,0,0,0,62,0,3,0,179,0,0,0,182,0,0,0,65,0,5,0,180,0,0,0,184,0,0,0,168,0,0,0,159,0,0,0,61,0,4,0,10,0,0,0,185,0,0,0,184,0,0,0,62,0,3,0,183,0,0,0,185,0,0,0,57,0,11,0,22,0,0,0,188,0,0,0,31,0,0,0,173,0,0,0,175,0,0,0,177,0,0,0,179,0,0,0,183,0,0,0,186,0,0,0,187,0,0,0,61,0,4,0,10,0,0,0,189,0,0,0,186,0,0,0,62,0,3,0,171,0,0,0,189,0,0,0,61,0,4,0,10,0,0,0,190,0,0,0,187,0,0,0,62,0,3,0,172,0,0,0,190,0,0,0,65,0,5,0,191,0,0,0,192,0,0,0,157,0,0,0,159,0,0,0,62,0,3,0,192,0,0,0,188,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,10,0,0,0,16,0,0,0,0,0,0,0,12,0,0,0,55,0,3,0,7,0,0,0,13,0,0,0,55,0,3,0,9,0,0,0,14,0,0,0,55,0,3,0,11,0,0,0,15,0,0,0,248,0,2,0,17,0,0,0,59,0,4,0,7,0,0,0,33,0,0,0,7,0,0,0,59,0,4,0,19,0,0,0,40,0,0,0,7,0,0,0,61,0,4,0,8,0,0,0,34,0,0,0,14,0,0,0,65,0,5,0,9,0,0,0,36,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,37,0,0,0,36,0,0,0,136,0,5,0,8,0,0,0,38,0,0,0,34,0,0,0,37,0,0,0,109,0,4,0,6,0,0,0,39,0,0,0,38,0,0,0,62,0,3,0,33,0,0,0,39,0,0,0,61,0,4,0,6,0,0,0,41,0,0,0,13,0,0,0,61,0,4,0,6,0,0,0,42,0,0,0,33,0,0,0,137,0,5,0,6,0,0,0,43,0,0,0,41,0,0,0,42,0,0,0,61,0,4,0,6,0,0,0,44,0,0,0,13,0,0,0,61,0,4,0,6,0,0,0,45,0,0,0,33,0,0,0,134,0,5,0,6,0,0,0,46,0,0,0,44,0,0,0,45,0,0,0,80,0,5,0,18,0,0,0,47,0,0,0,43,0,0,0,46,0,0,0,62,0,3,0,40,0,0,0,47,0,0,0,61,0,4,0,18,0,0,0,48,0,0,0,40,0,0,0,112,0,4,0,10,0,0,0,49,0,0,0,48,0,0,0,61,0,4,0,10,0,0,0,50,0,0,0,15,0,0,0,133,0,5,0,10,0,0,0,51,0,0,0,49,0,0,0,50,0,0,0,133,0,5,0,10,0,0,0,55,0,0,0,51,0,0,0,54,0,0,0,254,0,2,0,55,0,0,0,56,0,1,0,54,0,5,0,22,0,0,0,31,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,7,0,0,0,24,0,0,0,55,0,3,0,19,0,0,0,25,0,0,0,55,0,3,0,21,0,0,0,26,0,0,0,55,0,3,0,11,0,0,0,27,0,0,0,55,0,3,0,11,0,0,0,28,0,0,0,55,0,3,0,11,0,0,0,29,0,0,0,55,0,3,0,11,0,0,0,30,0,0,0,248,0,2,0,32,0,0,0,59,0,4,0,11,0,0,0,58,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,59,0,0,0,7,0,0,0,59,0,4,0,9,0,0,0,61,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,64,0,0,0,7,0,0,0,59,0,4,0,67,0,0,0,68,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,74,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,77,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,86,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,124,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,139,0,0,0,7,0,0,0,61,0,4,0,6,0,0,0,60,0,0,0,24,0,0,0,62,0,3,0,59,0,0,0,60,0,0,0,65,0,5,0,9,0,0,0,62,0,0,0,28,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,63,0,0,0,62,0,0,0,62,0,3,0,61,0,0,0,63,0,0,0,61,0,4,0,10,0,0,0,65,0,0,0,27,0,0,0,62,0,3,0,64,0,0,0,65,0,0,0,57,0,7,0,10,0,0,0,66,0,0,0,16,0,0,0,59,0,0,0,61,0,0,0,64,0,0,0,62,0,3,0,58,0,0,0,66,0,0,0,61,0,4,0,20,0,0,0,69,0,0,0,26,0,0,0,112,0,4,0,22,0,0,0,70,0,0,0,69,0,0,0,80,0,7,0,22,0,0,0,72,0,0,0,71,0,0,0,71,0,0,0,71,0,0,0,71,0,0,0,136,0,5,0,22,0,0,0,73,0,0,0,70,0,0,0,72,0,0,0,62,0,3,0,68,0,0,0,73,0,0,0,61,0,4,0,22,0,0,0,75,0,0,0,68,0,0,0,79,0,7,0,10,0,0,0,76,0,0,0,75,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,74,0,0,0,76,0,0,0,61,0,4,0,22,0,0,0,78,0,0,0,68,0,0,0,79,0,7,0,10,0,0,0,79,0,0,0,78,0,0,0,78,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,77,0,0,0,79,0,0,0,65,0,5,0,7,0,0,0,80,0,0,0,25,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,81,0,0,0,80,0,0,0,170,0,5,0,82,0,0,0,83,0,0,0,81,0,0,0,35,0,0,0,247,0,3,0,85,0,0,0,0,0,0,0,250,0,4,0,83,0,0,0,84,0,0,0,94,0,0,0,248,0,2,0,84,0,0,0,65,0,5,0,9,0,0,0,87,0,0,0,74,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,88,0,0,0,87,0,0,0,65,0,5,0,9,0,0,0,89,0,0,0,77,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,90,0,0,0,89,0,0,0,12,0,7,0,8,0,0,0,91,0,0,0,1,0,0,0,37,0,0,0,88,0,0,0,90,0,0,0,12,0,6,0,8,0,0,0,92,0,0,0,1,0,0,0,8,0,0,0,91,0,0,0,65,0,5,0,9,0,0,0,93,0,0,0,86,0,0,0,35,0,0,0,62,0,3,0,93,0,0,0,92,0,0,0,249,0,2,0,85,0,0,0,248,0,2,0,94,0,0,0,65,0,5,0,9,0,0,0,95,0,0,0,74,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,96,0,0,0,95,0,0,0,65,0,5,0,9,0,0,0,97,0,0,0,77,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,98,0,0,0,97,0,0,0,12,0,7,0,8,0,0,0,99,0,0,0,1,0,0,0,40,0,0,0,96,0,0,0,98,0,0,0,12,0,6,0,8,0,0,0,100,0,0,0,1,0,0,0,9,0,0,0,99,0,0,0,65,0,5,0,9,0,0,0,101,0,0,0,86,0,0,0,35,0,0,0,62,0,3,0,101,0,0,0,100,0,0,0,249,0,2,0,85,0,0,0,248,0,2,0,85,0,0,0,65,0,5,0,7,0,0,0,103,0,0,0,25,0,0,0,102,0,0,0,61,0,4,0,6,0,0,0,104,0,0,0,103,0,0,0,170,0,5,0,82,0,0,0,105,0,0,0,104,0,0,0,35,0,0,0,247,0,3,0,107,0,0,0,0,0,0,0,250,0,4,0,105,0,0,0,106,0,0,0,115,0,0,0,248,0,2,0,106,0,0,0,65,0,5,0,9,0,0,0,108,0,0,0,74,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,109,0,0,0,108,0,0,0,65,0,5,0,9,0,0,0,110,0,0,0,77,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,111,0,0,0,110,0,0,0,12,0,7,0,8,0,0,0,112,0,0,0,1,0,0,0,37,0,0,0,109,0,0,0,111,0,0,0,12,0,6,0,8,0,0,0,113,0,0,0,1,0,0,0,8,0,0,0,112,0,0,0,65,0,5,0,9,0,0,0,114,0,0,0,86,0,0,0,102,0,0,0,62,0,3,0,114,0,0,0,113,0,0,0,249,0,2,0,107,0,0,0,248,0,2,0,115,0,0,0,65,0,5,0,9,0,0,0,116,0,0,0,27,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,117,0,0,0,116,0,0,0,65,0,5,0,9,0,0,0,118,0,0,0,86,0,0,0,102,0,0,0,62,0,3,0,118,0,0,0,117,0,0,0,249,0,2,0,107,0,0,0,248,0,2,0,107,0,0,0,65,0,5,0,9,0,0,0,119,0,0,0,86,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,120,0,0,0,119,0,0,0,133,0,5,0,8,0,0,0,121,0,0,0,120,0,0,0,53,0,0,0,12,0,6,0,8,0,0,0,122,0,0,0,1,0,0,0,8,0,0,0,121,0,0,0,65,0,5,0,9,0,0,0,123,0,0,0,86,0,0,0,102,0,0,0,62,0,3,0,123,0,0,0,122,0,0,0,61,0,4,0,10,0,0,0,128,0,0,0,86,0,0,0,133,0,5,0,10,0,0,0,131,0,0,0,128,0,0,0,130,0,0,0,131,0,5,0,10,0,0,0,132,0,0,0,127,0,0,0,131,0,0,0,62,0,3,0,124,0,0,0,132,0,0,0,61,0,4,0,10,0,0,0,133,0,0,0,74,0,0,0,61,0,4,0,10,0,0,0,134,0,0,0,124,0,0,0,129,0,5,0,10,0,0,0,135,0,0,0,133,0,0,0,134,0,0,0,62,0,3,0,29,0,0,0,135,0,0,0,61,0,4,0,10,0,0,0,136,0,0,0,77,0,0,0,61,0,4,0,10,0,0,0,137,0,0,0,124,0,0,0,129,0,5,0,10,0,0,0,138,0,0,0,136,0,0,0,137,0,0,0,62,0,3,0,30,0,0,0,138,0,0,0,61,0,4,0,10,0,0,0,140,0,0,0,58,0,0,0,61,0,4,0,10,0,0,0,141,0,0,0,86,0,0,0,129,0,5,0,10,0,0,0,142,0,0,0,140,0,0,0,141,0,0,0,61,0,4,0,10,0,0,0,143,0,0,0,28,0,0,0,136,0,5,0,10,0,0,0,144,0,0,0,142,0,0,0,143,0,0,0,142,0,5,0,10,0,0,0,146,0,0,0,144,0,0,0,145,0,0,0,80,0,5,0,10,0,0,0,147,0,0,0,52,0,0,0,52,0,0,0,131,0,5,0,10,0,0,0,148,0,0,0,146,0,0,0,147,0,0,0,62,0,3,0,139,0,0,0,148,0,0,0,61,0,4,0,10,0,0,0,149,0,0,0,139,0,0,0,81,0,5,0,8,0,0,0,150,0,0,0,149,0,0,0,0,0,0,0,81,0,5,0,8,0,0,0,151,0,0,0,149,0,0,0,1,0,0,0,80,0,7,0,22,0,0,0,152,0,0,0,150,0,0,0,151,0,0,0,125,0,0,0,52,0,0,0,254,0,2,0,152,0,0,0,56,0,1,0}; + static uint8_t fill_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,193,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,11,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,157,0,0,0,161,0,0,0,163,0,0,0,165,0,0,0,171,0,0,0,172,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,10,0,16,0,0,0,99,111,109,112,117,116,101,84,105,108,101,79,102,102,115,101,116,40,117,49,59,102,49,59,118,102,50,59,0,0,0,0,5,0,5,0,13,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,7,0,14,0,0,0,115,116,101,110,99,105,108,84,101,120,116,117,114,101,87,105,100,116,104,0,5,0,5,0,15,0,0,0,116,105,108,101,83,105,122,101,0,0,0,0,5,0,15,0,31,0,0,0,99,111,109,112,117,116,101,86,101,114,116,101,120,80,111,115,105,116,105,111,110,40,117,49,59,118,117,50,59,118,117,52,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,50,59,0,0,0,5,0,5,0,24,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,5,0,25,0,0,0,116,101,115,115,67,111,111,114,100,0,0,0,5,0,7,0,26,0,0,0,112,97,99,107,101,100,76,105,110,101,83,101,103,109,101,110,116,0,0,0,5,0,5,0,27,0,0,0,116,105,108,101,83,105,122,101,0,0,0,0,5,0,6,0,28,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,4,0,29,0,0,0,111,117,116,70,114,111,109,0,5,0,4,0,30,0,0,0,111,117,116,84,111,0,0,0,5,0,5,0,33,0,0,0,116,105,108,101,115,80,101,114,82,111,119,0,5,0,5,0,40,0,0,0,116,105,108,101,79,102,102,115,101,116,0,0,5,0,5,0,58,0,0,0,116,105,108,101,79,114,105,103,105,110,0,0,5,0,4,0,59,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,61,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,64,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,68,0,0,0,108,105,110,101,83,101,103,109,101,110,116,0,5,0,4,0,74,0,0,0,102,114,111,109,0,0,0,0,5,0,3,0,77,0,0,0,116,111,0,0,5,0,5,0,86,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,4,0,124,0,0,0,111,102,102,115,101,116,0,0,5,0,6,0,139,0,0,0,103,108,111,98,97,108,80,111,115,105,116,105,111,110,0,0,5,0,6,0,155,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,155,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,155,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,157,0,0,0,0,0,0,0,5,0,5,0,161,0,0,0,97,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,163,0,0,0,97,84,101,115,115,67,111,111,114,100,0,0,5,0,6,0,165,0,0,0,97,76,105,110,101,83,101,103,109,101,110,116,0,0,0,0,5,0,5,0,166,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,166,0,0,0,0,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,8,0,166,0,0,0,1,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,5,0,3,0,168,0,0,0,0,0,0,0,5,0,4,0,171,0,0,0,118,70,114,111,109,0,0,0,5,0,3,0,172,0,0,0,118,84,111,0,5,0,4,0,173,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,175,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,177,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,179,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,183,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,186,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,187,0,0,0,112,97,114,97,109,0,0,0,72,0,5,0,155,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,155,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,155,0,0,0,2,0,0,0,71,0,4,0,161,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,163,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,165,0,0,0,30,0,0,0,1,0,0,0,72,0,5,0,166,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,166,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,71,0,3,0,166,0,0,0,2,0,0,0,71,0,4,0,168,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,168,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,171,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,172,0,0,0,30,0,0,0,1,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,7,0,0,0,7,0,0,0,6,0,0,0,22,0,3,0,8,0,0,0,32,0,0,0,32,0,4,0,9,0,0,0,7,0,0,0,8,0,0,0,23,0,4,0,10,0,0,0,8,0,0,0,2,0,0,0,32,0,4,0,11,0,0,0,7,0,0,0,10,0,0,0,33,0,6,0,12,0,0,0,10,0,0,0,7,0,0,0,9,0,0,0,11,0,0,0,23,0,4,0,18,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,19,0,0,0,7,0,0,0,18,0,0,0,23,0,4,0,20,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,21,0,0,0,7,0,0,0,20,0,0,0,23,0,4,0,22,0,0,0,8,0,0,0,4,0,0,0,33,0,10,0,23,0,0,0,22,0,0,0,7,0,0,0,19,0,0,0,21,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,11,0,0,0,43,0,4,0,6,0,0,0,35,0,0,0,0,0,0,0,43,0,4,0,8,0,0,0,52,0,0,0,0,0,128,63,43,0,4,0,8,0,0,0,53,0,0,0,0,0,128,62,44,0,5,0,10,0,0,0,54,0,0,0,52,0,0,0,53,0,0,0,32,0,4,0,67,0,0,0,7,0,0,0,22,0,0,0,43,0,4,0,8,0,0,0,71,0,0,0,0,0,128,67,20,0,2,0,82,0,0,0,43,0,4,0,6,0,0,0,102,0,0,0,1,0,0,0,43,0,4,0,8,0,0,0,125,0,0,0,0,0,0,0,43,0,4,0,8,0,0,0,126,0,0,0,0,0,192,63,44,0,5,0,10,0,0,0,127,0,0,0,125,0,0,0,126,0,0,0,43,0,4,0,8,0,0,0,129,0,0,0,0,0,128,64,44,0,5,0,10,0,0,0,130,0,0,0,52,0,0,0,129,0,0,0,43,0,4,0,8,0,0,0,145,0,0,0,0,0,0,64,30,0,4,0,155,0,0,0,22,0,0,0,8,0,0,0,32,0,4,0,156,0,0,0,3,0,0,0,155,0,0,0,59,0,4,0,156,0,0,0,157,0,0,0,3,0,0,0,21,0,4,0,158,0,0,0,32,0,0,0,1,0,0,0,43,0,4,0,158,0,0,0,159,0,0,0,0,0,0,0,32,0,4,0,160,0,0,0,1,0,0,0,6,0,0,0,59,0,4,0,160,0,0,0,161,0,0,0,1,0,0,0,32,0,4,0,162,0,0,0,1,0,0,0,18,0,0,0,59,0,4,0,162,0,0,0,163,0,0,0,1,0,0,0,32,0,4,0,164,0,0,0,1,0,0,0,20,0,0,0,59,0,4,0,164,0,0,0,165,0,0,0,1,0,0,0,30,0,4,0,166,0,0,0,10,0,0,0,10,0,0,0,32,0,4,0,167,0,0,0,2,0,0,0,166,0,0,0,59,0,4,0,167,0,0,0,168,0,0,0,2,0,0,0,43,0,4,0,158,0,0,0,169,0,0,0,1,0,0,0,32,0,4,0,170,0,0,0,3,0,0,0,10,0,0,0,59,0,4,0,170,0,0,0,171,0,0,0,3,0,0,0,59,0,4,0,170,0,0,0,172,0,0,0,3,0,0,0,32,0,4,0,180,0,0,0,2,0,0,0,10,0,0,0,32,0,4,0,191,0,0,0,3,0,0,0,22,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,7,0,0,0,173,0,0,0,7,0,0,0,59,0,4,0,19,0,0,0,175,0,0,0,7,0,0,0,59,0,4,0,21,0,0,0,177,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,179,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,183,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,186,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,187,0,0,0,7,0,0,0,61,0,4,0,6,0,0,0,174,0,0,0,161,0,0,0,62,0,3,0,173,0,0,0,174,0,0,0,61,0,4,0,18,0,0,0,176,0,0,0,163,0,0,0,62,0,3,0,175,0,0,0,176,0,0,0,61,0,4,0,20,0,0,0,178,0,0,0,165,0,0,0,62,0,3,0,177,0,0,0,178,0,0,0,65,0,5,0,180,0,0,0,181,0,0,0,168,0,0,0,159,0,0,0,61,0,4,0,10,0,0,0,182,0,0,0,181,0,0,0,62,0,3,0,179,0,0,0,182,0,0,0,65,0,5,0,180,0,0,0,184,0,0,0,168,0,0,0,169,0,0,0,61,0,4,0,10,0,0,0,185,0,0,0,184,0,0,0,62,0,3,0,183,0,0,0,185,0,0,0,57,0,11,0,22,0,0,0,188,0,0,0,31,0,0,0,173,0,0,0,175,0,0,0,177,0,0,0,179,0,0,0,183,0,0,0,186,0,0,0,187,0,0,0,61,0,4,0,10,0,0,0,189,0,0,0,186,0,0,0,62,0,3,0,171,0,0,0,189,0,0,0,61,0,4,0,10,0,0,0,190,0,0,0,187,0,0,0,62,0,3,0,172,0,0,0,190,0,0,0,65,0,5,0,191,0,0,0,192,0,0,0,157,0,0,0,159,0,0,0,62,0,3,0,192,0,0,0,188,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,10,0,0,0,16,0,0,0,0,0,0,0,12,0,0,0,55,0,3,0,7,0,0,0,13,0,0,0,55,0,3,0,9,0,0,0,14,0,0,0,55,0,3,0,11,0,0,0,15,0,0,0,248,0,2,0,17,0,0,0,59,0,4,0,7,0,0,0,33,0,0,0,7,0,0,0,59,0,4,0,19,0,0,0,40,0,0,0,7,0,0,0,61,0,4,0,8,0,0,0,34,0,0,0,14,0,0,0,65,0,5,0,9,0,0,0,36,0,0,0,15,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,37,0,0,0,36,0,0,0,136,0,5,0,8,0,0,0,38,0,0,0,34,0,0,0,37,0,0,0,109,0,4,0,6,0,0,0,39,0,0,0,38,0,0,0,62,0,3,0,33,0,0,0,39,0,0,0,61,0,4,0,6,0,0,0,41,0,0,0,13,0,0,0,61,0,4,0,6,0,0,0,42,0,0,0,33,0,0,0,137,0,5,0,6,0,0,0,43,0,0,0,41,0,0,0,42,0,0,0,61,0,4,0,6,0,0,0,44,0,0,0,13,0,0,0,61,0,4,0,6,0,0,0,45,0,0,0,33,0,0,0,134,0,5,0,6,0,0,0,46,0,0,0,44,0,0,0,45,0,0,0,80,0,5,0,18,0,0,0,47,0,0,0,43,0,0,0,46,0,0,0,62,0,3,0,40,0,0,0,47,0,0,0,61,0,4,0,18,0,0,0,48,0,0,0,40,0,0,0,112,0,4,0,10,0,0,0,49,0,0,0,48,0,0,0,61,0,4,0,10,0,0,0,50,0,0,0,15,0,0,0,133,0,5,0,10,0,0,0,51,0,0,0,49,0,0,0,50,0,0,0,133,0,5,0,10,0,0,0,55,0,0,0,51,0,0,0,54,0,0,0,254,0,2,0,55,0,0,0,56,0,1,0,54,0,5,0,22,0,0,0,31,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,7,0,0,0,24,0,0,0,55,0,3,0,19,0,0,0,25,0,0,0,55,0,3,0,21,0,0,0,26,0,0,0,55,0,3,0,11,0,0,0,27,0,0,0,55,0,3,0,11,0,0,0,28,0,0,0,55,0,3,0,11,0,0,0,29,0,0,0,55,0,3,0,11,0,0,0,30,0,0,0,248,0,2,0,32,0,0,0,59,0,4,0,11,0,0,0,58,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,59,0,0,0,7,0,0,0,59,0,4,0,9,0,0,0,61,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,64,0,0,0,7,0,0,0,59,0,4,0,67,0,0,0,68,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,74,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,77,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,86,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,124,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,139,0,0,0,7,0,0,0,61,0,4,0,6,0,0,0,60,0,0,0,24,0,0,0,62,0,3,0,59,0,0,0,60,0,0,0,65,0,5,0,9,0,0,0,62,0,0,0,28,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,63,0,0,0,62,0,0,0,62,0,3,0,61,0,0,0,63,0,0,0,61,0,4,0,10,0,0,0,65,0,0,0,27,0,0,0,62,0,3,0,64,0,0,0,65,0,0,0,57,0,7,0,10,0,0,0,66,0,0,0,16,0,0,0,59,0,0,0,61,0,0,0,64,0,0,0,62,0,3,0,58,0,0,0,66,0,0,0,61,0,4,0,20,0,0,0,69,0,0,0,26,0,0,0,112,0,4,0,22,0,0,0,70,0,0,0,69,0,0,0,80,0,7,0,22,0,0,0,72,0,0,0,71,0,0,0,71,0,0,0,71,0,0,0,71,0,0,0,136,0,5,0,22,0,0,0,73,0,0,0,70,0,0,0,72,0,0,0,62,0,3,0,68,0,0,0,73,0,0,0,61,0,4,0,22,0,0,0,75,0,0,0,68,0,0,0,79,0,7,0,10,0,0,0,76,0,0,0,75,0,0,0,75,0,0,0,0,0,0,0,1,0,0,0,62,0,3,0,74,0,0,0,76,0,0,0,61,0,4,0,22,0,0,0,78,0,0,0,68,0,0,0,79,0,7,0,10,0,0,0,79,0,0,0,78,0,0,0,78,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,77,0,0,0,79,0,0,0,65,0,5,0,7,0,0,0,80,0,0,0,25,0,0,0,35,0,0,0,61,0,4,0,6,0,0,0,81,0,0,0,80,0,0,0,170,0,5,0,82,0,0,0,83,0,0,0,81,0,0,0,35,0,0,0,247,0,3,0,85,0,0,0,0,0,0,0,250,0,4,0,83,0,0,0,84,0,0,0,94,0,0,0,248,0,2,0,84,0,0,0,65,0,5,0,9,0,0,0,87,0,0,0,74,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,88,0,0,0,87,0,0,0,65,0,5,0,9,0,0,0,89,0,0,0,77,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,90,0,0,0,89,0,0,0,12,0,7,0,8,0,0,0,91,0,0,0,1,0,0,0,37,0,0,0,88,0,0,0,90,0,0,0,12,0,6,0,8,0,0,0,92,0,0,0,1,0,0,0,8,0,0,0,91,0,0,0,65,0,5,0,9,0,0,0,93,0,0,0,86,0,0,0,35,0,0,0,62,0,3,0,93,0,0,0,92,0,0,0,249,0,2,0,85,0,0,0,248,0,2,0,94,0,0,0,65,0,5,0,9,0,0,0,95,0,0,0,74,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,96,0,0,0,95,0,0,0,65,0,5,0,9,0,0,0,97,0,0,0,77,0,0,0,35,0,0,0,61,0,4,0,8,0,0,0,98,0,0,0,97,0,0,0,12,0,7,0,8,0,0,0,99,0,0,0,1,0,0,0,40,0,0,0,96,0,0,0,98,0,0,0,12,0,6,0,8,0,0,0,100,0,0,0,1,0,0,0,9,0,0,0,99,0,0,0,65,0,5,0,9,0,0,0,101,0,0,0,86,0,0,0,35,0,0,0,62,0,3,0,101,0,0,0,100,0,0,0,249,0,2,0,85,0,0,0,248,0,2,0,85,0,0,0,65,0,5,0,7,0,0,0,103,0,0,0,25,0,0,0,102,0,0,0,61,0,4,0,6,0,0,0,104,0,0,0,103,0,0,0,170,0,5,0,82,0,0,0,105,0,0,0,104,0,0,0,35,0,0,0,247,0,3,0,107,0,0,0,0,0,0,0,250,0,4,0,105,0,0,0,106,0,0,0,115,0,0,0,248,0,2,0,106,0,0,0,65,0,5,0,9,0,0,0,108,0,0,0,74,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,109,0,0,0,108,0,0,0,65,0,5,0,9,0,0,0,110,0,0,0,77,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,111,0,0,0,110,0,0,0,12,0,7,0,8,0,0,0,112,0,0,0,1,0,0,0,37,0,0,0,109,0,0,0,111,0,0,0,12,0,6,0,8,0,0,0,113,0,0,0,1,0,0,0,8,0,0,0,112,0,0,0,65,0,5,0,9,0,0,0,114,0,0,0,86,0,0,0,102,0,0,0,62,0,3,0,114,0,0,0,113,0,0,0,249,0,2,0,107,0,0,0,248,0,2,0,115,0,0,0,65,0,5,0,9,0,0,0,116,0,0,0,27,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,117,0,0,0,116,0,0,0,65,0,5,0,9,0,0,0,118,0,0,0,86,0,0,0,102,0,0,0,62,0,3,0,118,0,0,0,117,0,0,0,249,0,2,0,107,0,0,0,248,0,2,0,107,0,0,0,65,0,5,0,9,0,0,0,119,0,0,0,86,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,120,0,0,0,119,0,0,0,133,0,5,0,8,0,0,0,121,0,0,0,120,0,0,0,53,0,0,0,12,0,6,0,8,0,0,0,122,0,0,0,1,0,0,0,8,0,0,0,121,0,0,0,65,0,5,0,9,0,0,0,123,0,0,0,86,0,0,0,102,0,0,0,62,0,3,0,123,0,0,0,122,0,0,0,61,0,4,0,10,0,0,0,128,0,0,0,86,0,0,0,133,0,5,0,10,0,0,0,131,0,0,0,128,0,0,0,130,0,0,0,131,0,5,0,10,0,0,0,132,0,0,0,127,0,0,0,131,0,0,0,62,0,3,0,124,0,0,0,132,0,0,0,61,0,4,0,10,0,0,0,133,0,0,0,74,0,0,0,61,0,4,0,10,0,0,0,134,0,0,0,124,0,0,0,129,0,5,0,10,0,0,0,135,0,0,0,133,0,0,0,134,0,0,0,62,0,3,0,29,0,0,0,135,0,0,0,61,0,4,0,10,0,0,0,136,0,0,0,77,0,0,0,61,0,4,0,10,0,0,0,137,0,0,0,124,0,0,0,129,0,5,0,10,0,0,0,138,0,0,0,136,0,0,0,137,0,0,0,62,0,3,0,30,0,0,0,138,0,0,0,61,0,4,0,10,0,0,0,140,0,0,0,58,0,0,0,61,0,4,0,10,0,0,0,141,0,0,0,86,0,0,0,129,0,5,0,10,0,0,0,142,0,0,0,140,0,0,0,141,0,0,0,61,0,4,0,10,0,0,0,143,0,0,0,28,0,0,0,136,0,5,0,10,0,0,0,144,0,0,0,142,0,0,0,143,0,0,0,142,0,5,0,10,0,0,0,146,0,0,0,144,0,0,0,145,0,0,0,80,0,5,0,10,0,0,0,147,0,0,0,52,0,0,0,52,0,0,0,131,0,5,0,10,0,0,0,148,0,0,0,146,0,0,0,147,0,0,0,62,0,3,0,139,0,0,0,148,0,0,0,61,0,4,0,10,0,0,0,149,0,0,0,139,0,0,0,81,0,5,0,8,0,0,0,150,0,0,0,149,0,0,0,0,0,0,0,81,0,5,0,8,0,0,0,151,0,0,0,149,0,0,0,1,0,0,0,80,0,7,0,22,0,0,0,152,0,0,0,150,0,0,0,151,0,0,0,125,0,0,0,52,0,0,0,254,0,2,0,152,0,0,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_FILL_VERT_SPV_H diff --git a/src/shaders/generated/sort_comp.h b/src/shaders/generated/sort_comp.h index 9cd046a2..df6b7507 100644 --- a/src/shaders/generated/sort_comp.h +++ b/src/shaders/generated/sort_comp.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_SORT_COMP_H namespace Pathfinder { - static uint8_t sort_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,13,10,13,10,35,100,101,102,105,110,101,32,70,73,76,76,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,83,73,90,69,32,32,32,32,32,32,56,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,110,116,32,117,84,105,108,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,112,97,100,48,59,13,10,32,32,32,32,105,110,116,32,112,97,100,49,59,13,10,32,32,32,32,105,110,116,32,112,97,100,50,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,13,10,32,32,32,32,47,47,32,91,49,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,13,10,32,32,32,32,47,47,32,91,50,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,13,10,32,32,32,32,47,47,32,91,51,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,70,105,114,115,116,84,105,108,101,77,97,112,32,123,13,10,32,32,32,32,105,110,116,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,98,117,102,102,101,114,32,98,90,66,117,102,102,101,114,32,123,13,10,32,32,32,32,105,110,116,32,105,90,66,117,102,102,101,114,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,105,110,116,32,103,101,116,70,105,114,115,116,40,117,105,110,116,32,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,93,59,13,10,125,13,10,13,10,105,110,116,32,103,101,116,78,101,120,116,84,105,108,101,40,105,110,116,32,116,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,41,59,13,10,125,13,10,13,10,118,111,105,100,32,115,101,116,78,101,120,116,84,105,108,101,40,105,110,116,32,116,105,108,101,73,110,100,101,120,44,32,105,110,116,32,110,101,119,78,101,120,116,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,32,61,32,117,105,110,116,40,110,101,119,78,101,120,116,84,105,108,101,73,110,100,101,120,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,117,105,110,116,32,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,84,105,108,101,67,111,117,110,116,41,41,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,105,110,116,32,122,86,97,108,117,101,32,61,32,105,90,66,117,102,102,101,114,91,70,73,76,76,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,83,73,90,69,32,43,32,105,110,116,40,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,41,93,59,13,10,13,10,32,32,32,32,105,110,116,32,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,103,101,116,70,105,114,115,116,40,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,105,110,116,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,45,49,59,13,10,13,10,32,32,32,32,119,104,105,108,101,32,40,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,105,110,116,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,32,61,32,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,103,101,116,78,101,120,116,84,105,108,101,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,41,59,13,10,13,10,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,32,62,61,32,122,86,97,108,117,101,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,45,49,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,105,97,108,84,105,108,101,73,110,100,101,120,32,60,32,48,32,124,124,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,32,60,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,32,60,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,78,101,120,116,84,105,108,101,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,44,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,78,101,120,116,84,105,108,101,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,44,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,78,101,120,116,84,105,108,101,40,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,44,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,103,101,116,78,101,120,116,84,105,108,101,40,116,114,105,97,108,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,93,32,61,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,59,13,10,125,13,10}; + static uint8_t sort_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,13,10,13,10,35,100,101,102,105,110,101,32,70,73,76,76,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,83,73,90,69,32,32,32,32,32,32,56,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,105,110,116,32,117,84,105,108,101,67,111,117,110,116,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,48,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,49,59,13,10,32,32,32,32,105,110,116,32,117,80,97,100,50,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,32,32,32,32,47,47,32,91,48,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,13,10,32,32,32,32,47,47,32,91,49,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,13,10,32,32,32,32,47,47,32,91,50,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,13,10,32,32,32,32,47,47,32,91,51,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,70,105,114,115,116,84,105,108,101,77,97,112,32,123,13,10,32,32,32,32,105,110,116,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,50,41,32,98,117,102,102,101,114,32,98,90,66,117,102,102,101,114,32,123,13,10,32,32,32,32,105,110,116,32,105,90,66,117,102,102,101,114,91,93,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,54,52,41,32,105,110,59,13,10,13,10,105,110,116,32,103,101,116,70,105,114,115,116,40,117,105,110,116,32,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,93,59,13,10,125,13,10,13,10,105,110,116,32,103,101,116,78,101,120,116,84,105,108,101,40,105,110,116,32,116,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,41,59,13,10,125,13,10,13,10,118,111,105,100,32,115,101,116,78,101,120,116,84,105,108,101,40,105,110,116,32,116,105,108,101,73,110,100,101,120,44,32,105,110,116,32,110,101,119,78,101,120,116,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,32,61,32,117,105,110,116,40,110,101,119,78,101,120,116,84,105,108,101,73,110,100,101,120,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,117,105,110,116,32,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,32,61,32,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,59,13,10,32,32,32,32,105,102,32,40,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,32,62,61,32,117,105,110,116,40,117,84,105,108,101,67,111,117,110,116,41,41,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,105,110,116,32,122,86,97,108,117,101,32,61,32,105,90,66,117,102,102,101,114,91,70,73,76,76,95,73,78,68,73,82,69,67,84,95,68,82,65,87,95,80,65,82,65,77,83,95,83,73,90,69,32,43,32,105,110,116,40,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,41,93,59,13,10,13,10,32,32,32,32,105,110,116,32,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,103,101,116,70,105,114,115,116,40,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,105,110,116,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,45,49,59,13,10,13,10,32,32,32,32,119,104,105,108,101,32,40,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,105,110,116,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,32,61,32,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,103,101,116,78,101,120,116,84,105,108,101,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,41,59,13,10,13,10,32,32,32,32,32,32,32,32,105,102,32,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,32,62,61,32,122,86,97,108,117,101,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,45,49,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,119,104,105,108,101,32,40,116,114,117,101,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,114,105,97,108,84,105,108,101,73,110,100,101,120,32,60,32,48,32,124,124,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,32,60,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,32,60,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,78,101,120,116,84,105,108,101,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,44,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,32,61,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,78,101,120,116,84,105,108,101,40,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,44,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,101,116,78,101,120,116,84,105,108,101,40,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,44,32,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,105,97,108,84,105,108,101,73,110,100,101,120,32,61,32,103,101,116,78,101,120,116,84,105,108,101,40,116,114,105,97,108,84,105,108,101,73,110,100,101,120,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,93,32,61,32,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_SORT_COMP_H diff --git a/src/shaders/generated/sort_comp_spv.h b/src/shaders/generated/sort_comp_spv.h index f13483f8..dd0d7fa8 100644 --- a/src/shaders/generated/sort_comp_spv.h +++ b/src/shaders/generated/sort_comp_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_SORT_COMP_SPV_H namespace Pathfinder { - static uint8_t sort_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,157,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,57,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,6,0,11,0,0,0,103,101,116,70,105,114,115,116,40,117,49,59,0,0,0,0,5,0,6,0,10,0,0,0,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,0,5,0,6,0,16,0,0,0,103,101,116,78,101,120,116,84,105,108,101,40,105,49,59,0,5,0,5,0,15,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,7,0,21,0,0,0,115,101,116,78,101,120,116,84,105,108,101,40,105,49,59,105,49,59,0,0,5,0,5,0,19,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,7,0,20,0,0,0,110,101,119,78,101,120,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,6,0,24,0,0,0,98,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,6,0,7,0,24,0,0,0,0,0,0,0,105,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,5,0,3,0,26,0,0,0,0,0,0,0,5,0,4,0,35,0,0,0,98,84,105,108,101,115,0,0,6,0,5,0,35,0,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,37,0,0,0,0,0,0,0,5,0,6,0,54,0,0,0,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,0,5,0,8,0,57,0,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,5,0,63,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,63,0,0,0,0,0,0,0,117,84,105,108,101,67,111,117,110,116,0,0,6,0,5,0,63,0,0,0,1,0,0,0,112,97,100,48,0,0,0,0,6,0,5,0,63,0,0,0,2,0,0,0,112,97,100,49,0,0,0,0,6,0,5,0,63,0,0,0,3,0,0,0,112,97,100,50,0,0,0,0,5,0,3,0,65,0,0,0,0,0,0,0,5,0,4,0,74,0,0,0,122,86,97,108,117,101,0,0,5,0,5,0,76,0,0,0,98,90,66,117,102,102,101,114,0,0,0,0,6,0,6,0,76,0,0,0,0,0,0,0,105,90,66,117,102,102,101,114,0,0,0,0,5,0,3,0,78,0,0,0,0,0,0,0,5,0,8,0,85,0,0,0,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,86,0,0,0,112,97,114,97,109,0,0,0,5,0,8,0,89,0,0,0,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,7,0,98,0,0,0,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,4,0,100,0,0,0,112,97,114,97,109,0,0,0,5,0,7,0,108,0,0,0,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,0,0,5,0,6,0,109,0,0,0,116,114,105,97,108,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,129,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,131,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,136,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,138,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,141,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,143,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,148,0,0,0,112,97,114,97,109,0,0,0,71,0,4,0,23,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,24,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,24,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,24,0,0,0,3,0,0,0,71,0,4,0,26,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,26,0,0,0,33,0,0,0,1,0,0,0,71,0,4,0,34,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,35,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,35,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,35,0,0,0,3,0,0,0,71,0,4,0,37,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,37,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,57,0,0,0,11,0,0,0,28,0,0,0,72,0,5,0,63,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,63,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,63,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,63,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,63,0,0,0,2,0,0,0,71,0,4,0,65,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,65,0,0,0,33,0,0,0,3,0,0,0,71,0,4,0,75,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,76,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,76,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,76,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,76,0,0,0,3,0,0,0,71,0,4,0,78,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,78,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,156,0,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,7,0,0,0,7,0,0,0,6,0,0,0,21,0,4,0,8,0,0,0,32,0,0,0,1,0,0,0,33,0,4,0,9,0,0,0,8,0,0,0,7,0,0,0,32,0,4,0,13,0,0,0,7,0,0,0,8,0,0,0,33,0,4,0,14,0,0,0,8,0,0,0,13,0,0,0,33,0,5,0,18,0,0,0,2,0,0,0,13,0,0,0,13,0,0,0,29,0,3,0,23,0,0,0,8,0,0,0,30,0,3,0,24,0,0,0,23,0,0,0,32,0,4,0,25,0,0,0,2,0,0,0,24,0,0,0,59,0,4,0,25,0,0,0,26,0,0,0,2,0,0,0,43,0,4,0,8,0,0,0,27,0,0,0,0,0,0,0,32,0,4,0,29,0,0,0,2,0,0,0,8,0,0,0,29,0,3,0,34,0,0,0,6,0,0,0,30,0,3,0,35,0,0,0,34,0,0,0,32,0,4,0,36,0,0,0,2,0,0,0,35,0,0,0,59,0,4,0,36,0,0,0,37,0,0,0,2,0,0,0,43,0,4,0,8,0,0,0,39,0,0,0,4,0,0,0,32,0,4,0,42,0,0,0,2,0,0,0,6,0,0,0,23,0,4,0,55,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,56,0,0,0,1,0,0,0,55,0,0,0,59,0,4,0,56,0,0,0,57,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,58,0,0,0,0,0,0,0,32,0,4,0,59,0,0,0,1,0,0,0,6,0,0,0,30,0,6,0,63,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,32,0,4,0,64,0,0,0,2,0,0,0,63,0,0,0,59,0,4,0,64,0,0,0,65,0,0,0,2,0,0,0,20,0,2,0,69,0,0,0,29,0,3,0,75,0,0,0,8,0,0,0,30,0,3,0,76,0,0,0,75,0,0,0,32,0,4,0,77,0,0,0,2,0,0,0,76,0,0,0,59,0,4,0,77,0,0,0,78,0,0,0,2,0,0,0,43,0,4,0,8,0,0,0,79,0,0,0,8,0,0,0,43,0,4,0,8,0,0,0,90,0,0,0,255,255,255,255,41,0,3,0,69,0,0,0,116,0,0,0,43,0,4,0,6,0,0,0,154,0,0,0,64,0,0,0,43,0,4,0,6,0,0,0,155,0,0,0,1,0,0,0,44,0,6,0,55,0,0,0,156,0,0,0,154,0,0,0,155,0,0,0,155,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,7,0,0,0,54,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,74,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,85,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,86,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,89,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,98,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,100,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,108,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,109,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,129,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,131,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,136,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,138,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,141,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,143,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,148,0,0,0,7,0,0,0,65,0,5,0,59,0,0,0,60,0,0,0,57,0,0,0,58,0,0,0,61,0,4,0,6,0,0,0,61,0,0,0,60,0,0,0,62,0,3,0,54,0,0,0,61,0,0,0,61,0,4,0,6,0,0,0,62,0,0,0,54,0,0,0,65,0,5,0,29,0,0,0,66,0,0,0,65,0,0,0,27,0,0,0,61,0,4,0,8,0,0,0,67,0,0,0,66,0,0,0,124,0,4,0,6,0,0,0,68,0,0,0,67,0,0,0,174,0,5,0,69,0,0,0,70,0,0,0,62,0,0,0,68,0,0,0,247,0,3,0,72,0,0,0,0,0,0,0,250,0,4,0,70,0,0,0,71,0,0,0,72,0,0,0,248,0,2,0,71,0,0,0,253,0,1,0,248,0,2,0,72,0,0,0,61,0,4,0,6,0,0,0,80,0,0,0,54,0,0,0,124,0,4,0,8,0,0,0,81,0,0,0,80,0,0,0,128,0,5,0,8,0,0,0,82,0,0,0,79,0,0,0,81,0,0,0,65,0,6,0,29,0,0,0,83,0,0,0,78,0,0,0,27,0,0,0,82,0,0,0,61,0,4,0,8,0,0,0,84,0,0,0,83,0,0,0,62,0,3,0,74,0,0,0,84,0,0,0,61,0,4,0,6,0,0,0,87,0,0,0,54,0,0,0,62,0,3,0,86,0,0,0,87,0,0,0,57,0,5,0,8,0,0,0,88,0,0,0,11,0,0,0,86,0,0,0,62,0,3,0,85,0,0,0,88,0,0,0,62,0,3,0,89,0,0,0,90,0,0,0,249,0,2,0,91,0,0,0,248,0,2,0,91,0,0,0,246,0,4,0,93,0,0,0,94,0,0,0,0,0,0,0,249,0,2,0,95,0,0,0,248,0,2,0,95,0,0,0,61,0,4,0,8,0,0,0,96,0,0,0,85,0,0,0,175,0,5,0,69,0,0,0,97,0,0,0,96,0,0,0,27,0,0,0,250,0,4,0,97,0,0,0,92,0,0,0,93,0,0,0,248,0,2,0,92,0,0,0,61,0,4,0,8,0,0,0,99,0,0,0,85,0,0,0,62,0,3,0,98,0,0,0,99,0,0,0,61,0,4,0,8,0,0,0,101,0,0,0,98,0,0,0,62,0,3,0,100,0,0,0,101,0,0,0,57,0,5,0,8,0,0,0,102,0,0,0,16,0,0,0,100,0,0,0,62,0,3,0,85,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,103,0,0,0,98,0,0,0,61,0,4,0,8,0,0,0,104,0,0,0,74,0,0,0,175,0,5,0,69,0,0,0,105,0,0,0,103,0,0,0,104,0,0,0,247,0,3,0,107,0,0,0,0,0,0,0,250,0,4,0,105,0,0,0,106,0,0,0,107,0,0,0,248,0,2,0,106,0,0,0,62,0,3,0,108,0,0,0,90,0,0,0,61,0,4,0,8,0,0,0,110,0,0,0,89,0,0,0,62,0,3,0,109,0,0,0,110,0,0,0,249,0,2,0,111,0,0,0,248,0,2,0,111,0,0,0,246,0,4,0,113,0,0,0,114,0,0,0,0,0,0,0,249,0,2,0,115,0,0,0,248,0,2,0,115,0,0,0,250,0,4,0,116,0,0,0,112,0,0,0,113,0,0,0,248,0,2,0,112,0,0,0,61,0,4,0,8,0,0,0,117,0,0,0,109,0,0,0,177,0,5,0,69,0,0,0,118,0,0,0,117,0,0,0,27,0,0,0,61,0,4,0,8,0,0,0,119,0,0,0,98,0,0,0,61,0,4,0,8,0,0,0,120,0,0,0,109,0,0,0,177,0,5,0,69,0,0,0,121,0,0,0,119,0,0,0,120,0,0,0,166,0,5,0,69,0,0,0,122,0,0,0,118,0,0,0,121,0,0,0,247,0,3,0,124,0,0,0,0,0,0,0,250,0,4,0,122,0,0,0,123,0,0,0,124,0,0,0,248,0,2,0,123,0,0,0,61,0,4,0,8,0,0,0,125,0,0,0,108,0,0,0,177,0,5,0,69,0,0,0,126,0,0,0,125,0,0,0,27,0,0,0,247,0,3,0,128,0,0,0,0,0,0,0,250,0,4,0,126,0,0,0,127,0,0,0,135,0,0,0,248,0,2,0,127,0,0,0,61,0,4,0,8,0,0,0,130,0,0,0,98,0,0,0,62,0,3,0,129,0,0,0,130,0,0,0,61,0,4,0,8,0,0,0,132,0,0,0,89,0,0,0,62,0,3,0,131,0,0,0,132,0,0,0,57,0,6,0,2,0,0,0,133,0,0,0,21,0,0,0,129,0,0,0,131,0,0,0,61,0,4,0,8,0,0,0,134,0,0,0,98,0,0,0,62,0,3,0,89,0,0,0,134,0,0,0,249,0,2,0,128,0,0,0,248,0,2,0,135,0,0,0,61,0,4,0,8,0,0,0,137,0,0,0,98,0,0,0,62,0,3,0,136,0,0,0,137,0,0,0,61,0,4,0,8,0,0,0,139,0,0,0,109,0,0,0,62,0,3,0,138,0,0,0,139,0,0,0,57,0,6,0,2,0,0,0,140,0,0,0,21,0,0,0,136,0,0,0,138,0,0,0,61,0,4,0,8,0,0,0,142,0,0,0,108,0,0,0,62,0,3,0,141,0,0,0,142,0,0,0,61,0,4,0,8,0,0,0,144,0,0,0,98,0,0,0,62,0,3,0,143,0,0,0,144,0,0,0,57,0,6,0,2,0,0,0,145,0,0,0,21,0,0,0,141,0,0,0,143,0,0,0,249,0,2,0,128,0,0,0,248,0,2,0,128,0,0,0,249,0,2,0,113,0,0,0,248,0,2,0,124,0,0,0,61,0,4,0,8,0,0,0,147,0,0,0,109,0,0,0,62,0,3,0,108,0,0,0,147,0,0,0,61,0,4,0,8,0,0,0,149,0,0,0,109,0,0,0,62,0,3,0,148,0,0,0,149,0,0,0,57,0,5,0,8,0,0,0,150,0,0,0,16,0,0,0,148,0,0,0,62,0,3,0,109,0,0,0,150,0,0,0,249,0,2,0,114,0,0,0,248,0,2,0,114,0,0,0,249,0,2,0,111,0,0,0,248,0,2,0,113,0,0,0,249,0,2,0,107,0,0,0,248,0,2,0,107,0,0,0,249,0,2,0,94,0,0,0,248,0,2,0,94,0,0,0,249,0,2,0,91,0,0,0,248,0,2,0,93,0,0,0,61,0,4,0,6,0,0,0,151,0,0,0,54,0,0,0,61,0,4,0,8,0,0,0,152,0,0,0,89,0,0,0,65,0,6,0,29,0,0,0,153,0,0,0,26,0,0,0,27,0,0,0,151,0,0,0,62,0,3,0,153,0,0,0,152,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,8,0,0,0,11,0,0,0,0,0,0,0,9,0,0,0,55,0,3,0,7,0,0,0,10,0,0,0,248,0,2,0,12,0,0,0,61,0,4,0,6,0,0,0,28,0,0,0,10,0,0,0,65,0,6,0,29,0,0,0,30,0,0,0,26,0,0,0,27,0,0,0,28,0,0,0,61,0,4,0,8,0,0,0,31,0,0,0,30,0,0,0,254,0,2,0,31,0,0,0,56,0,1,0,54,0,5,0,8,0,0,0,16,0,0,0,0,0,0,0,14,0,0,0,55,0,3,0,13,0,0,0,15,0,0,0,248,0,2,0,17,0,0,0,61,0,4,0,8,0,0,0,38,0,0,0,15,0,0,0,132,0,5,0,8,0,0,0,40,0,0,0,38,0,0,0,39,0,0,0,128,0,5,0,8,0,0,0,41,0,0,0,40,0,0,0,27,0,0,0,65,0,6,0,42,0,0,0,43,0,0,0,37,0,0,0,27,0,0,0,41,0,0,0,61,0,4,0,6,0,0,0,44,0,0,0,43,0,0,0,124,0,4,0,8,0,0,0,45,0,0,0,44,0,0,0,254,0,2,0,45,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,21,0,0,0,0,0,0,0,18,0,0,0,55,0,3,0,13,0,0,0,19,0,0,0,55,0,3,0,13,0,0,0,20,0,0,0,248,0,2,0,22,0,0,0,61,0,4,0,8,0,0,0,48,0,0,0,19,0,0,0,132,0,5,0,8,0,0,0,49,0,0,0,48,0,0,0,39,0,0,0,128,0,5,0,8,0,0,0,50,0,0,0,49,0,0,0,27,0,0,0,61,0,4,0,8,0,0,0,51,0,0,0,20,0,0,0,124,0,4,0,6,0,0,0,52,0,0,0,51,0,0,0,65,0,6,0,42,0,0,0,53,0,0,0,37,0,0,0,27,0,0,0,50,0,0,0,62,0,3,0,53,0,0,0,52,0,0,0,253,0,1,0,56,0,1,0}; + static uint8_t sort_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,157,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,6,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,57,0,0,0,16,0,6,0,4,0,0,0,17,0,0,0,64,0,0,0,1,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,6,0,11,0,0,0,103,101,116,70,105,114,115,116,40,117,49,59,0,0,0,0,5,0,6,0,10,0,0,0,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,0,5,0,6,0,16,0,0,0,103,101,116,78,101,120,116,84,105,108,101,40,105,49,59,0,5,0,5,0,15,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,7,0,21,0,0,0,115,101,116,78,101,120,116,84,105,108,101,40,105,49,59,105,49,59,0,0,5,0,5,0,19,0,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,7,0,20,0,0,0,110,101,119,78,101,120,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,6,0,24,0,0,0,98,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,6,0,7,0,24,0,0,0,0,0,0,0,105,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,5,0,3,0,26,0,0,0,0,0,0,0,5,0,4,0,35,0,0,0,98,84,105,108,101,115,0,0,6,0,5,0,35,0,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,37,0,0,0,0,0,0,0,5,0,6,0,54,0,0,0,103,108,111,98,97,108,84,105,108,101,73,110,100,101,120,0,5,0,8,0,57,0,0,0,103,108,95,71,108,111,98,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,5,0,5,0,63,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,63,0,0,0,0,0,0,0,117,84,105,108,101,67,111,117,110,116,0,0,6,0,5,0,63,0,0,0,1,0,0,0,117,80,97,100,48,0,0,0,6,0,5,0,63,0,0,0,2,0,0,0,117,80,97,100,49,0,0,0,6,0,5,0,63,0,0,0,3,0,0,0,117,80,97,100,50,0,0,0,5,0,3,0,65,0,0,0,0,0,0,0,5,0,4,0,74,0,0,0,122,86,97,108,117,101,0,0,5,0,5,0,76,0,0,0,98,90,66,117,102,102,101,114,0,0,0,0,6,0,6,0,76,0,0,0,0,0,0,0,105,90,66,117,102,102,101,114,0,0,0,0,5,0,3,0,78,0,0,0,0,0,0,0,5,0,8,0,85,0,0,0,117,110,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,86,0,0,0,112,97,114,97,109,0,0,0,5,0,8,0,89,0,0,0,115,111,114,116,101,100,70,105,114,115,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,7,0,98,0,0,0,99,117,114,114,101,110,116,84,105,108,101,73,110,100,101,120,0,0,0,0,5,0,4,0,100,0,0,0,112,97,114,97,109,0,0,0,5,0,7,0,108,0,0,0,112,114,101,118,84,114,105,97,108,84,105,108,101,73,110,100,101,120,0,0,5,0,6,0,109,0,0,0,116,114,105,97,108,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,129,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,131,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,136,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,138,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,141,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,143,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,148,0,0,0,112,97,114,97,109,0,0,0,71,0,4,0,23,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,24,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,24,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,24,0,0,0,3,0,0,0,71,0,4,0,26,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,26,0,0,0,33,0,0,0,1,0,0,0,71,0,4,0,34,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,35,0,0,0,0,0,0,0,19,0,0,0,72,0,5,0,35,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,35,0,0,0,3,0,0,0,71,0,4,0,37,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,37,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,57,0,0,0,11,0,0,0,28,0,0,0,72,0,5,0,63,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,63,0,0,0,1,0,0,0,35,0,0,0,4,0,0,0,72,0,5,0,63,0,0,0,2,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,63,0,0,0,3,0,0,0,35,0,0,0,12,0,0,0,71,0,3,0,63,0,0,0,2,0,0,0,71,0,4,0,65,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,65,0,0,0,33,0,0,0,3,0,0,0,71,0,4,0,75,0,0,0,6,0,0,0,4,0,0,0,72,0,4,0,76,0,0,0,0,0,0,0,19,0,0,0,72,0,4,0,76,0,0,0,0,0,0,0,24,0,0,0,72,0,5,0,76,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,76,0,0,0,3,0,0,0,71,0,4,0,78,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,78,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,156,0,0,0,11,0,0,0,25,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,21,0,4,0,6,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,7,0,0,0,7,0,0,0,6,0,0,0,21,0,4,0,8,0,0,0,32,0,0,0,1,0,0,0,33,0,4,0,9,0,0,0,8,0,0,0,7,0,0,0,32,0,4,0,13,0,0,0,7,0,0,0,8,0,0,0,33,0,4,0,14,0,0,0,8,0,0,0,13,0,0,0,33,0,5,0,18,0,0,0,2,0,0,0,13,0,0,0,13,0,0,0,29,0,3,0,23,0,0,0,8,0,0,0,30,0,3,0,24,0,0,0,23,0,0,0,32,0,4,0,25,0,0,0,2,0,0,0,24,0,0,0,59,0,4,0,25,0,0,0,26,0,0,0,2,0,0,0,43,0,4,0,8,0,0,0,27,0,0,0,0,0,0,0,32,0,4,0,29,0,0,0,2,0,0,0,8,0,0,0,29,0,3,0,34,0,0,0,6,0,0,0,30,0,3,0,35,0,0,0,34,0,0,0,32,0,4,0,36,0,0,0,2,0,0,0,35,0,0,0,59,0,4,0,36,0,0,0,37,0,0,0,2,0,0,0,43,0,4,0,8,0,0,0,39,0,0,0,4,0,0,0,32,0,4,0,42,0,0,0,2,0,0,0,6,0,0,0,23,0,4,0,55,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,56,0,0,0,1,0,0,0,55,0,0,0,59,0,4,0,56,0,0,0,57,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,58,0,0,0,0,0,0,0,32,0,4,0,59,0,0,0,1,0,0,0,6,0,0,0,30,0,6,0,63,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,32,0,4,0,64,0,0,0,2,0,0,0,63,0,0,0,59,0,4,0,64,0,0,0,65,0,0,0,2,0,0,0,20,0,2,0,69,0,0,0,29,0,3,0,75,0,0,0,8,0,0,0,30,0,3,0,76,0,0,0,75,0,0,0,32,0,4,0,77,0,0,0,2,0,0,0,76,0,0,0,59,0,4,0,77,0,0,0,78,0,0,0,2,0,0,0,43,0,4,0,8,0,0,0,79,0,0,0,8,0,0,0,43,0,4,0,8,0,0,0,90,0,0,0,255,255,255,255,41,0,3,0,69,0,0,0,116,0,0,0,43,0,4,0,6,0,0,0,154,0,0,0,64,0,0,0,43,0,4,0,6,0,0,0,155,0,0,0,1,0,0,0,44,0,6,0,55,0,0,0,156,0,0,0,154,0,0,0,155,0,0,0,155,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,7,0,0,0,54,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,74,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,85,0,0,0,7,0,0,0,59,0,4,0,7,0,0,0,86,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,89,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,98,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,100,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,108,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,109,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,129,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,131,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,136,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,138,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,141,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,143,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,148,0,0,0,7,0,0,0,65,0,5,0,59,0,0,0,60,0,0,0,57,0,0,0,58,0,0,0,61,0,4,0,6,0,0,0,61,0,0,0,60,0,0,0,62,0,3,0,54,0,0,0,61,0,0,0,61,0,4,0,6,0,0,0,62,0,0,0,54,0,0,0,65,0,5,0,29,0,0,0,66,0,0,0,65,0,0,0,27,0,0,0,61,0,4,0,8,0,0,0,67,0,0,0,66,0,0,0,124,0,4,0,6,0,0,0,68,0,0,0,67,0,0,0,174,0,5,0,69,0,0,0,70,0,0,0,62,0,0,0,68,0,0,0,247,0,3,0,72,0,0,0,0,0,0,0,250,0,4,0,70,0,0,0,71,0,0,0,72,0,0,0,248,0,2,0,71,0,0,0,253,0,1,0,248,0,2,0,72,0,0,0,61,0,4,0,6,0,0,0,80,0,0,0,54,0,0,0,124,0,4,0,8,0,0,0,81,0,0,0,80,0,0,0,128,0,5,0,8,0,0,0,82,0,0,0,79,0,0,0,81,0,0,0,65,0,6,0,29,0,0,0,83,0,0,0,78,0,0,0,27,0,0,0,82,0,0,0,61,0,4,0,8,0,0,0,84,0,0,0,83,0,0,0,62,0,3,0,74,0,0,0,84,0,0,0,61,0,4,0,6,0,0,0,87,0,0,0,54,0,0,0,62,0,3,0,86,0,0,0,87,0,0,0,57,0,5,0,8,0,0,0,88,0,0,0,11,0,0,0,86,0,0,0,62,0,3,0,85,0,0,0,88,0,0,0,62,0,3,0,89,0,0,0,90,0,0,0,249,0,2,0,91,0,0,0,248,0,2,0,91,0,0,0,246,0,4,0,93,0,0,0,94,0,0,0,0,0,0,0,249,0,2,0,95,0,0,0,248,0,2,0,95,0,0,0,61,0,4,0,8,0,0,0,96,0,0,0,85,0,0,0,175,0,5,0,69,0,0,0,97,0,0,0,96,0,0,0,27,0,0,0,250,0,4,0,97,0,0,0,92,0,0,0,93,0,0,0,248,0,2,0,92,0,0,0,61,0,4,0,8,0,0,0,99,0,0,0,85,0,0,0,62,0,3,0,98,0,0,0,99,0,0,0,61,0,4,0,8,0,0,0,101,0,0,0,98,0,0,0,62,0,3,0,100,0,0,0,101,0,0,0,57,0,5,0,8,0,0,0,102,0,0,0,16,0,0,0,100,0,0,0,62,0,3,0,85,0,0,0,102,0,0,0,61,0,4,0,8,0,0,0,103,0,0,0,98,0,0,0,61,0,4,0,8,0,0,0,104,0,0,0,74,0,0,0,175,0,5,0,69,0,0,0,105,0,0,0,103,0,0,0,104,0,0,0,247,0,3,0,107,0,0,0,0,0,0,0,250,0,4,0,105,0,0,0,106,0,0,0,107,0,0,0,248,0,2,0,106,0,0,0,62,0,3,0,108,0,0,0,90,0,0,0,61,0,4,0,8,0,0,0,110,0,0,0,89,0,0,0,62,0,3,0,109,0,0,0,110,0,0,0,249,0,2,0,111,0,0,0,248,0,2,0,111,0,0,0,246,0,4,0,113,0,0,0,114,0,0,0,0,0,0,0,249,0,2,0,115,0,0,0,248,0,2,0,115,0,0,0,250,0,4,0,116,0,0,0,112,0,0,0,113,0,0,0,248,0,2,0,112,0,0,0,61,0,4,0,8,0,0,0,117,0,0,0,109,0,0,0,177,0,5,0,69,0,0,0,118,0,0,0,117,0,0,0,27,0,0,0,61,0,4,0,8,0,0,0,119,0,0,0,98,0,0,0,61,0,4,0,8,0,0,0,120,0,0,0,109,0,0,0,177,0,5,0,69,0,0,0,121,0,0,0,119,0,0,0,120,0,0,0,166,0,5,0,69,0,0,0,122,0,0,0,118,0,0,0,121,0,0,0,247,0,3,0,124,0,0,0,0,0,0,0,250,0,4,0,122,0,0,0,123,0,0,0,124,0,0,0,248,0,2,0,123,0,0,0,61,0,4,0,8,0,0,0,125,0,0,0,108,0,0,0,177,0,5,0,69,0,0,0,126,0,0,0,125,0,0,0,27,0,0,0,247,0,3,0,128,0,0,0,0,0,0,0,250,0,4,0,126,0,0,0,127,0,0,0,135,0,0,0,248,0,2,0,127,0,0,0,61,0,4,0,8,0,0,0,130,0,0,0,98,0,0,0,62,0,3,0,129,0,0,0,130,0,0,0,61,0,4,0,8,0,0,0,132,0,0,0,89,0,0,0,62,0,3,0,131,0,0,0,132,0,0,0,57,0,6,0,2,0,0,0,133,0,0,0,21,0,0,0,129,0,0,0,131,0,0,0,61,0,4,0,8,0,0,0,134,0,0,0,98,0,0,0,62,0,3,0,89,0,0,0,134,0,0,0,249,0,2,0,128,0,0,0,248,0,2,0,135,0,0,0,61,0,4,0,8,0,0,0,137,0,0,0,98,0,0,0,62,0,3,0,136,0,0,0,137,0,0,0,61,0,4,0,8,0,0,0,139,0,0,0,109,0,0,0,62,0,3,0,138,0,0,0,139,0,0,0,57,0,6,0,2,0,0,0,140,0,0,0,21,0,0,0,136,0,0,0,138,0,0,0,61,0,4,0,8,0,0,0,142,0,0,0,108,0,0,0,62,0,3,0,141,0,0,0,142,0,0,0,61,0,4,0,8,0,0,0,144,0,0,0,98,0,0,0,62,0,3,0,143,0,0,0,144,0,0,0,57,0,6,0,2,0,0,0,145,0,0,0,21,0,0,0,141,0,0,0,143,0,0,0,249,0,2,0,128,0,0,0,248,0,2,0,128,0,0,0,249,0,2,0,113,0,0,0,248,0,2,0,124,0,0,0,61,0,4,0,8,0,0,0,147,0,0,0,109,0,0,0,62,0,3,0,108,0,0,0,147,0,0,0,61,0,4,0,8,0,0,0,149,0,0,0,109,0,0,0,62,0,3,0,148,0,0,0,149,0,0,0,57,0,5,0,8,0,0,0,150,0,0,0,16,0,0,0,148,0,0,0,62,0,3,0,109,0,0,0,150,0,0,0,249,0,2,0,114,0,0,0,248,0,2,0,114,0,0,0,249,0,2,0,111,0,0,0,248,0,2,0,113,0,0,0,249,0,2,0,107,0,0,0,248,0,2,0,107,0,0,0,249,0,2,0,94,0,0,0,248,0,2,0,94,0,0,0,249,0,2,0,91,0,0,0,248,0,2,0,93,0,0,0,61,0,4,0,6,0,0,0,151,0,0,0,54,0,0,0,61,0,4,0,8,0,0,0,152,0,0,0,89,0,0,0,65,0,6,0,29,0,0,0,153,0,0,0,26,0,0,0,27,0,0,0,151,0,0,0,62,0,3,0,153,0,0,0,152,0,0,0,253,0,1,0,56,0,1,0,54,0,5,0,8,0,0,0,11,0,0,0,0,0,0,0,9,0,0,0,55,0,3,0,7,0,0,0,10,0,0,0,248,0,2,0,12,0,0,0,61,0,4,0,6,0,0,0,28,0,0,0,10,0,0,0,65,0,6,0,29,0,0,0,30,0,0,0,26,0,0,0,27,0,0,0,28,0,0,0,61,0,4,0,8,0,0,0,31,0,0,0,30,0,0,0,254,0,2,0,31,0,0,0,56,0,1,0,54,0,5,0,8,0,0,0,16,0,0,0,0,0,0,0,14,0,0,0,55,0,3,0,13,0,0,0,15,0,0,0,248,0,2,0,17,0,0,0,61,0,4,0,8,0,0,0,38,0,0,0,15,0,0,0,132,0,5,0,8,0,0,0,40,0,0,0,38,0,0,0,39,0,0,0,128,0,5,0,8,0,0,0,41,0,0,0,40,0,0,0,27,0,0,0,65,0,6,0,42,0,0,0,43,0,0,0,37,0,0,0,27,0,0,0,41,0,0,0,61,0,4,0,6,0,0,0,44,0,0,0,43,0,0,0,124,0,4,0,8,0,0,0,45,0,0,0,44,0,0,0,254,0,2,0,45,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,21,0,0,0,0,0,0,0,18,0,0,0,55,0,3,0,13,0,0,0,19,0,0,0,55,0,3,0,13,0,0,0,20,0,0,0,248,0,2,0,22,0,0,0,61,0,4,0,8,0,0,0,48,0,0,0,19,0,0,0,132,0,5,0,8,0,0,0,49,0,0,0,48,0,0,0,39,0,0,0,128,0,5,0,8,0,0,0,50,0,0,0,49,0,0,0,27,0,0,0,61,0,4,0,8,0,0,0,51,0,0,0,20,0,0,0,124,0,4,0,6,0,0,0,52,0,0,0,51,0,0,0,65,0,6,0,42,0,0,0,53,0,0,0,37,0,0,0,27,0,0,0,50,0,0,0,62,0,3,0,53,0,0,0,52,0,0,0,253,0,1,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_SORT_COMP_SPV_H diff --git a/src/shaders/generated/tile_clip_combine_vert.h b/src/shaders/generated/tile_clip_combine_vert.h index dd019c87..5494e839 100644 --- a/src/shaders/generated/tile_clip_combine_vert.h +++ b/src/shaders/generated/tile_clip_combine_vert.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_CLIP_COMBINE_VERT_H namespace Pathfinder { - static uint8_t tile_clip_combine_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,99,108,105,112,95,99,111,109,98,105,110,101,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,41,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,48,59,32,47,47,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,49,59,13,10,32,32,32,32,118,101,99,50,32,112,97,100,50,59,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,105,110,116,32,97,68,101,115,116,84,105,108,101,73,110,100,101,120,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,105,110,32,105,110,116,32,97,68,101,115,116,66,97,99,107,100,114,111,112,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,105,110,32,105,110,116,32,97,83,114,99,84,105,108,101,73,110,100,101,120,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,105,110,32,105,110,116,32,97,83,114,99,66,97,99,107,100,114,111,112,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,49,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,49,59,13,10,35,101,108,115,101,13,10,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,105,110,32,105,110,116,32,97,68,101,115,116,84,105,108,101,73,110,100,101,120,59,13,10,105,110,32,105,110,116,32,97,68,101,115,116,66,97,99,107,100,114,111,112,59,13,10,105,110,32,105,110,116,32,97,83,114,99,84,105,108,101,73,110,100,101,120,59,13,10,105,110,32,105,110,116,32,97,83,114,99,66,97,99,107,100,114,111,112,59,13,10,13,10,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,48,59,13,10,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,48,59,13,10,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,49,59,13,10,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,49,59,13,10,35,101,110,100,105,102,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,118,101,99,50,32,100,101,115,116,80,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,105,118,101,99,50,40,97,68,101,115,116,84,105,108,101,73,110,100,101,120,32,37,32,50,53,54,44,32,97,68,101,115,116,84,105,108,101,73,110,100,101,120,32,47,32,50,53,54,41,32,43,32,105,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,41,59,13,10,32,32,32,32,118,101,99,50,32,115,114,99,80,111,115,105,116,105,111,110,32,32,61,32,118,101,99,50,40,105,118,101,99,50,40,97,83,114,99,84,105,108,101,73,110,100,101,120,32,32,37,32,50,53,54,44,32,97,83,114,99,84,105,108,101,73,110,100,101,120,32,32,47,32,50,53,54,41,32,43,32,105,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,41,59,13,10,32,32,32,32,100,101,115,116,80,111,115,105,116,105,111,110,32,42,61,32,118,101,99,50,40,49,54,46,48,44,32,52,46,48,41,32,47,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,32,32,32,32,115,114,99,80,111,115,105,116,105,111,110,32,32,42,61,32,118,101,99,50,40,49,54,46,48,44,32,52,46,48,41,32,47,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,13,10,32,32,32,32,118,84,101,120,67,111,111,114,100,48,32,61,32,100,101,115,116,80,111,115,105,116,105,111,110,59,13,10,32,32,32,32,118,84,101,120,67,111,111,114,100,49,32,61,32,115,114,99,80,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,118,66,97,99,107,100,114,111,112,48,32,61,32,102,108,111,97,116,40,97,68,101,115,116,66,97,99,107,100,114,111,112,41,59,13,10,32,32,32,32,118,66,97,99,107,100,114,111,112,49,32,61,32,102,108,111,97,116,40,97,83,114,99,66,97,99,107,100,114,111,112,41,59,13,10,13,10,32,32,32,32,105,102,32,40,97,68,101,115,116,84,105,108,101,73,110,100,101,120,32,60,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,100,101,115,116,80,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,48,46,48,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,109,105,120,40,118,101,99,50,40,45,49,46,48,41,44,32,118,101,99,50,40,49,46,48,41,44,32,100,101,115,116,80,111,115,105,116,105,111,110,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10}; + static uint8_t tile_clip_combine_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,99,108,105,112,95,99,111,109,98,105,110,101,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,77,97,115,107,32,102,114,97,109,101,98,117,102,102,101,114,46,32,68,121,110,97,109,105,99,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,32,42,32,112,97,103,101,95,99,111,117,110,116,41,46,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,105,110,116,32,97,68,101,115,116,84,105,108,101,73,110,100,101,120,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,105,110,32,105,110,116,32,97,68,101,115,116,66,97,99,107,100,114,111,112,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,105,110,32,105,110,116,32,97,83,114,99,84,105,108,101,73,110,100,101,120,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,105,110,32,105,110,116,32,97,83,114,99,66,97,99,107,100,114,111,112,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,49,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,49,59,13,10,35,101,108,115,101,13,10,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,105,110,32,105,110,116,32,97,68,101,115,116,84,105,108,101,73,110,100,101,120,59,13,10,105,110,32,105,110,116,32,97,68,101,115,116,66,97,99,107,100,114,111,112,59,13,10,105,110,32,105,110,116,32,97,83,114,99,84,105,108,101,73,110,100,101,120,59,13,10,105,110,32,105,110,116,32,97,83,114,99,66,97,99,107,100,114,111,112,59,13,10,13,10,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,48,59,13,10,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,48,59,13,10,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,49,59,13,10,111,117,116,32,102,108,111,97,116,32,118,66,97,99,107,100,114,111,112,49,59,13,10,35,101,110,100,105,102,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,118,101,99,50,32,100,101,115,116,80,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,105,118,101,99,50,40,97,68,101,115,116,84,105,108,101,73,110,100,101,120,32,37,32,50,53,54,44,32,97,68,101,115,116,84,105,108,101,73,110,100,101,120,32,47,32,50,53,54,41,32,43,32,105,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,41,59,13,10,32,32,32,32,118,101,99,50,32,115,114,99,80,111,115,105,116,105,111,110,32,32,61,32,118,101,99,50,40,105,118,101,99,50,40,97,83,114,99,84,105,108,101,73,110,100,101,120,32,32,37,32,50,53,54,44,32,97,83,114,99,84,105,108,101,73,110,100,101,120,32,32,47,32,50,53,54,41,32,43,32,105,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,41,59,13,10,32,32,32,32,100,101,115,116,80,111,115,105,116,105,111,110,32,42,61,32,118,101,99,50,40,49,54,46,48,44,32,52,46,48,41,32,47,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,32,32,32,32,115,114,99,80,111,115,105,116,105,111,110,32,32,42,61,32,118,101,99,50,40,49,54,46,48,44,32,52,46,48,41,32,47,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,13,10,32,32,32,32,118,84,101,120,67,111,111,114,100,48,32,61,32,100,101,115,116,80,111,115,105,116,105,111,110,59,13,10,32,32,32,32,118,84,101,120,67,111,111,114,100,49,32,61,32,115,114,99,80,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,118,66,97,99,107,100,114,111,112,48,32,61,32,102,108,111,97,116,40,97,68,101,115,116,66,97,99,107,100,114,111,112,41,59,13,10,32,32,32,32,118,66,97,99,107,100,114,111,112,49,32,61,32,102,108,111,97,116,40,97,83,114,99,66,97,99,107,100,114,111,112,41,59,13,10,13,10,32,32,32,32,105,102,32,40,97,68,101,115,116,84,105,108,101,73,110,100,101,120,32,60,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,100,101,115,116,80,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,48,46,48,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,109,105,120,40,118,101,99,50,40,45,49,46,48,41,44,32,118,101,99,50,40,49,46,48,41,44,32,100,101,115,116,80,111,115,105,116,105,111,110,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_TILE_CLIP_COMBINE_VERT_H diff --git a/src/shaders/generated/tile_clip_combine_vert_spv.h b/src/shaders/generated/tile_clip_combine_vert_spv.h index 4702d39c..e20a47c6 100644 --- a/src/shaders/generated/tile_clip_combine_vert_spv.h +++ b/src/shaders/generated/tile_clip_combine_vert_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_CLIP_COMBINE_VERT_SPV_H namespace Pathfinder { - static uint8_t tile_clip_combine_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,93,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,15,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,12,0,0,0,23,0,0,0,29,0,0,0,58,0,0,0,60,0,0,0,63,0,0,0,64,0,0,0,67,0,0,0,68,0,0,0,81,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,6,0,9,0,0,0,100,101,115,116,80,111,115,105,116,105,111,110,0,0,0,0,5,0,6,0,12,0,0,0,97,68,101,115,116,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,23,0,0,0,97,84,105,108,101,79,102,102,115,101,116,0,5,0,5,0,28,0,0,0,115,114,99,80,111,115,105,116,105,111,110,0,5,0,6,0,29,0,0,0,97,83,114,99,84,105,108,101,73,110,100,101,120,0,0,0,5,0,6,0,42,0,0,0,98,67,111,110,115,116,97,110,116,83,105,122,101,115,0,0,6,0,8,0,42,0,0,0,0,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,5,0,42,0,0,0,1,0,0,0,112,97,100,48,0,0,0,0,6,0,5,0,42,0,0,0,2,0,0,0,112,97,100,49,0,0,0,0,6,0,5,0,42,0,0,0,3,0,0,0,112,97,100,50,0,0,0,0,5,0,3,0,44,0,0,0,0,0,0,0,5,0,5,0,58,0,0,0,118,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,60,0,0,0,118,84,101,120,67,111,111,114,100,49,0,0,5,0,5,0,63,0,0,0,118,66,97,99,107,100,114,111,112,48,0,0,5,0,6,0,64,0,0,0,97,68,101,115,116,66,97,99,107,100,114,111,112,0,0,0,5,0,5,0,67,0,0,0,118,66,97,99,107,100,114,111,112,49,0,0,5,0,6,0,68,0,0,0,97,83,114,99,66,97,99,107,100,114,111,112,0,0,0,0,5,0,6,0,79,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,79,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,79,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,81,0,0,0,0,0,0,0,71,0,4,0,12,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,23,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,29,0,0,0,30,0,0,0,3,0,0,0,72,0,5,0,42,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,42,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,42,0,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,42,0,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,42,0,0,0,2,0,0,0,71,0,4,0,44,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,44,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,58,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,60,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,63,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,64,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,67,0,0,0,30,0,0,0,3,0,0,0,71,0,4,0,68,0,0,0,30,0,0,0,4,0,0,0,72,0,5,0,79,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,79,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,79,0,0,0,2,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,10,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,11,0,0,0,1,0,0,0,10,0,0,0,59,0,4,0,11,0,0,0,12,0,0,0,1,0,0,0,43,0,4,0,10,0,0,0,14,0,0,0,0,1,0,0,23,0,4,0,18,0,0,0,10,0,0,0,2,0,0,0,21,0,4,0,20,0,0,0,32,0,0,0,0,0,0,0,23,0,4,0,21,0,0,0,20,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,1,0,0,0,21,0,0,0,59,0,4,0,22,0,0,0,23,0,0,0,1,0,0,0,59,0,4,0,11,0,0,0,29,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,39,0,0,0,0,0,128,65,43,0,4,0,6,0,0,0,40,0,0,0,0,0,128,64,44,0,5,0,7,0,0,0,41,0,0,0,39,0,0,0,40,0,0,0,30,0,6,0,42,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,32,0,4,0,43,0,0,0,2,0,0,0,42,0,0,0,59,0,4,0,43,0,0,0,44,0,0,0,2,0,0,0,43,0,4,0,10,0,0,0,45,0,0,0,0,0,0,0,32,0,4,0,46,0,0,0,2,0,0,0,7,0,0,0,32,0,4,0,57,0,0,0,3,0,0,0,7,0,0,0,59,0,4,0,57,0,0,0,58,0,0,0,3,0,0,0,59,0,4,0,57,0,0,0,60,0,0,0,3,0,0,0,32,0,4,0,62,0,0,0,3,0,0,0,6,0,0,0,59,0,4,0,62,0,0,0,63,0,0,0,3,0,0,0,59,0,4,0,11,0,0,0,64,0,0,0,1,0,0,0,59,0,4,0,62,0,0,0,67,0,0,0,3,0,0,0,59,0,4,0,11,0,0,0,68,0,0,0,1,0,0,0,20,0,2,0,72,0,0,0,43,0,4,0,6,0,0,0,76,0,0,0,0,0,0,0,44,0,5,0,7,0,0,0,77,0,0,0,76,0,0,0,76,0,0,0,23,0,4,0,78,0,0,0,6,0,0,0,4,0,0,0,30,0,4,0,79,0,0,0,78,0,0,0,6,0,0,0,32,0,4,0,80,0,0,0,3,0,0,0,79,0,0,0,59,0,4,0,80,0,0,0,81,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,82,0,0,0,0,0,128,191,44,0,5,0,7,0,0,0,83,0,0,0,82,0,0,0,82,0,0,0,43,0,4,0,6,0,0,0,84,0,0,0,0,0,128,63,44,0,5,0,7,0,0,0,85,0,0,0,84,0,0,0,84,0,0,0,32,0,4,0,91,0,0,0,3,0,0,0,78,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,8,0,0,0,9,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,28,0,0,0,7,0,0,0,61,0,4,0,10,0,0,0,13,0,0,0,12,0,0,0,139,0,5,0,10,0,0,0,15,0,0,0,13,0,0,0,14,0,0,0,61,0,4,0,10,0,0,0,16,0,0,0,12,0,0,0,135,0,5,0,10,0,0,0,17,0,0,0,16,0,0,0,14,0,0,0,80,0,5,0,18,0,0,0,19,0,0,0,15,0,0,0,17,0,0,0,61,0,4,0,21,0,0,0,24,0,0,0,23,0,0,0,124,0,4,0,18,0,0,0,25,0,0,0,24,0,0,0,128,0,5,0,18,0,0,0,26,0,0,0,19,0,0,0,25,0,0,0,111,0,4,0,7,0,0,0,27,0,0,0,26,0,0,0,62,0,3,0,9,0,0,0,27,0,0,0,61,0,4,0,10,0,0,0,30,0,0,0,29,0,0,0,139,0,5,0,10,0,0,0,31,0,0,0,30,0,0,0,14,0,0,0,61,0,4,0,10,0,0,0,32,0,0,0,29,0,0,0,135,0,5,0,10,0,0,0,33,0,0,0,32,0,0,0,14,0,0,0,80,0,5,0,18,0,0,0,34,0,0,0,31,0,0,0,33,0,0,0,61,0,4,0,21,0,0,0,35,0,0,0,23,0,0,0,124,0,4,0,18,0,0,0,36,0,0,0,35,0,0,0,128,0,5,0,18,0,0,0,37,0,0,0,34,0,0,0,36,0,0,0,111,0,4,0,7,0,0,0,38,0,0,0,37,0,0,0,62,0,3,0,28,0,0,0,38,0,0,0,65,0,5,0,46,0,0,0,47,0,0,0,44,0,0,0,45,0,0,0,61,0,4,0,7,0,0,0,48,0,0,0,47,0,0,0,136,0,5,0,7,0,0,0,49,0,0,0,41,0,0,0,48,0,0,0,61,0,4,0,7,0,0,0,50,0,0,0,9,0,0,0,133,0,5,0,7,0,0,0,51,0,0,0,50,0,0,0,49,0,0,0,62,0,3,0,9,0,0,0,51,0,0,0,65,0,5,0,46,0,0,0,52,0,0,0,44,0,0,0,45,0,0,0,61,0,4,0,7,0,0,0,53,0,0,0,52,0,0,0,136,0,5,0,7,0,0,0,54,0,0,0,41,0,0,0,53,0,0,0,61,0,4,0,7,0,0,0,55,0,0,0,28,0,0,0,133,0,5,0,7,0,0,0,56,0,0,0,55,0,0,0,54,0,0,0,62,0,3,0,28,0,0,0,56,0,0,0,61,0,4,0,7,0,0,0,59,0,0,0,9,0,0,0,62,0,3,0,58,0,0,0,59,0,0,0,61,0,4,0,7,0,0,0,61,0,0,0,28,0,0,0,62,0,3,0,60,0,0,0,61,0,0,0,61,0,4,0,10,0,0,0,65,0,0,0,64,0,0,0,111,0,4,0,6,0,0,0,66,0,0,0,65,0,0,0,62,0,3,0,63,0,0,0,66,0,0,0,61,0,4,0,10,0,0,0,69,0,0,0,68,0,0,0,111,0,4,0,6,0,0,0,70,0,0,0,69,0,0,0,62,0,3,0,67,0,0,0,70,0,0,0,61,0,4,0,10,0,0,0,71,0,0,0,12,0,0,0,177,0,5,0,72,0,0,0,73,0,0,0,71,0,0,0,45,0,0,0,247,0,3,0,75,0,0,0,0,0,0,0,250,0,4,0,73,0,0,0,74,0,0,0,75,0,0,0,248,0,2,0,74,0,0,0,62,0,3,0,9,0,0,0,77,0,0,0,249,0,2,0,75,0,0,0,248,0,2,0,75,0,0,0,61,0,4,0,7,0,0,0,86,0,0,0,9,0,0,0,12,0,8,0,7,0,0,0,87,0,0,0,1,0,0,0,46,0,0,0,83,0,0,0,85,0,0,0,86,0,0,0,81,0,5,0,6,0,0,0,88,0,0,0,87,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,89,0,0,0,87,0,0,0,1,0,0,0,80,0,7,0,78,0,0,0,90,0,0,0,88,0,0,0,89,0,0,0,76,0,0,0,84,0,0,0,65,0,5,0,91,0,0,0,92,0,0,0,81,0,0,0,45,0,0,0,62,0,3,0,92,0,0,0,90,0,0,0,253,0,1,0,56,0,1,0}; + static uint8_t tile_clip_combine_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,94,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,15,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,12,0,0,0,23,0,0,0,29,0,0,0,58,0,0,0,60,0,0,0,63,0,0,0,64,0,0,0,67,0,0,0,68,0,0,0,82,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,6,0,9,0,0,0,100,101,115,116,80,111,115,105,116,105,111,110,0,0,0,0,5,0,6,0,12,0,0,0,97,68,101,115,116,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,23,0,0,0,97,84,105,108,101,79,102,102,115,101,116,0,5,0,5,0,28,0,0,0,115,114,99,80,111,115,105,116,105,111,110,0,5,0,6,0,29,0,0,0,97,83,114,99,84,105,108,101,73,110,100,101,120,0,0,0,5,0,5,0,42,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,42,0,0,0,0,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,8,0,42,0,0,0,1,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,5,0,3,0,44,0,0,0,0,0,0,0,5,0,5,0,58,0,0,0,118,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,60,0,0,0,118,84,101,120,67,111,111,114,100,49,0,0,5,0,5,0,63,0,0,0,118,66,97,99,107,100,114,111,112,48,0,0,5,0,6,0,64,0,0,0,97,68,101,115,116,66,97,99,107,100,114,111,112,0,0,0,5,0,5,0,67,0,0,0,118,66,97,99,107,100,114,111,112,49,0,0,5,0,6,0,68,0,0,0,97,83,114,99,66,97,99,107,100,114,111,112,0,0,0,0,5,0,6,0,80,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,80,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,80,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,82,0,0,0,0,0,0,0,71,0,4,0,12,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,23,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,29,0,0,0,30,0,0,0,3,0,0,0,72,0,5,0,42,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,42,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,71,0,3,0,42,0,0,0,2,0,0,0,71,0,4,0,44,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,44,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,58,0,0,0,30,0,0,0,0,0,0,0,71,0,4,0,60,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,63,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,64,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,67,0,0,0,30,0,0,0,3,0,0,0,71,0,4,0,68,0,0,0,30,0,0,0,4,0,0,0,72,0,5,0,80,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,80,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,80,0,0,0,2,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,10,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,11,0,0,0,1,0,0,0,10,0,0,0,59,0,4,0,11,0,0,0,12,0,0,0,1,0,0,0,43,0,4,0,10,0,0,0,14,0,0,0,0,1,0,0,23,0,4,0,18,0,0,0,10,0,0,0,2,0,0,0,21,0,4,0,20,0,0,0,32,0,0,0,0,0,0,0,23,0,4,0,21,0,0,0,20,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,1,0,0,0,21,0,0,0,59,0,4,0,22,0,0,0,23,0,0,0,1,0,0,0,59,0,4,0,11,0,0,0,29,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,39,0,0,0,0,0,128,65,43,0,4,0,6,0,0,0,40,0,0,0,0,0,128,64,44,0,5,0,7,0,0,0,41,0,0,0,39,0,0,0,40,0,0,0,30,0,4,0,42,0,0,0,7,0,0,0,7,0,0,0,32,0,4,0,43,0,0,0,2,0,0,0,42,0,0,0,59,0,4,0,43,0,0,0,44,0,0,0,2,0,0,0,43,0,4,0,10,0,0,0,45,0,0,0,1,0,0,0,32,0,4,0,46,0,0,0,2,0,0,0,7,0,0,0,32,0,4,0,57,0,0,0,3,0,0,0,7,0,0,0,59,0,4,0,57,0,0,0,58,0,0,0,3,0,0,0,59,0,4,0,57,0,0,0,60,0,0,0,3,0,0,0,32,0,4,0,62,0,0,0,3,0,0,0,6,0,0,0,59,0,4,0,62,0,0,0,63,0,0,0,3,0,0,0,59,0,4,0,11,0,0,0,64,0,0,0,1,0,0,0,59,0,4,0,62,0,0,0,67,0,0,0,3,0,0,0,59,0,4,0,11,0,0,0,68,0,0,0,1,0,0,0,43,0,4,0,10,0,0,0,72,0,0,0,0,0,0,0,20,0,2,0,73,0,0,0,43,0,4,0,6,0,0,0,77,0,0,0,0,0,0,0,44,0,5,0,7,0,0,0,78,0,0,0,77,0,0,0,77,0,0,0,23,0,4,0,79,0,0,0,6,0,0,0,4,0,0,0,30,0,4,0,80,0,0,0,79,0,0,0,6,0,0,0,32,0,4,0,81,0,0,0,3,0,0,0,80,0,0,0,59,0,4,0,81,0,0,0,82,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,83,0,0,0,0,0,128,191,44,0,5,0,7,0,0,0,84,0,0,0,83,0,0,0,83,0,0,0,43,0,4,0,6,0,0,0,85,0,0,0,0,0,128,63,44,0,5,0,7,0,0,0,86,0,0,0,85,0,0,0,85,0,0,0,32,0,4,0,92,0,0,0,3,0,0,0,79,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,8,0,0,0,9,0,0,0,7,0,0,0,59,0,4,0,8,0,0,0,28,0,0,0,7,0,0,0,61,0,4,0,10,0,0,0,13,0,0,0,12,0,0,0,139,0,5,0,10,0,0,0,15,0,0,0,13,0,0,0,14,0,0,0,61,0,4,0,10,0,0,0,16,0,0,0,12,0,0,0,135,0,5,0,10,0,0,0,17,0,0,0,16,0,0,0,14,0,0,0,80,0,5,0,18,0,0,0,19,0,0,0,15,0,0,0,17,0,0,0,61,0,4,0,21,0,0,0,24,0,0,0,23,0,0,0,124,0,4,0,18,0,0,0,25,0,0,0,24,0,0,0,128,0,5,0,18,0,0,0,26,0,0,0,19,0,0,0,25,0,0,0,111,0,4,0,7,0,0,0,27,0,0,0,26,0,0,0,62,0,3,0,9,0,0,0,27,0,0,0,61,0,4,0,10,0,0,0,30,0,0,0,29,0,0,0,139,0,5,0,10,0,0,0,31,0,0,0,30,0,0,0,14,0,0,0,61,0,4,0,10,0,0,0,32,0,0,0,29,0,0,0,135,0,5,0,10,0,0,0,33,0,0,0,32,0,0,0,14,0,0,0,80,0,5,0,18,0,0,0,34,0,0,0,31,0,0,0,33,0,0,0,61,0,4,0,21,0,0,0,35,0,0,0,23,0,0,0,124,0,4,0,18,0,0,0,36,0,0,0,35,0,0,0,128,0,5,0,18,0,0,0,37,0,0,0,34,0,0,0,36,0,0,0,111,0,4,0,7,0,0,0,38,0,0,0,37,0,0,0,62,0,3,0,28,0,0,0,38,0,0,0,65,0,5,0,46,0,0,0,47,0,0,0,44,0,0,0,45,0,0,0,61,0,4,0,7,0,0,0,48,0,0,0,47,0,0,0,136,0,5,0,7,0,0,0,49,0,0,0,41,0,0,0,48,0,0,0,61,0,4,0,7,0,0,0,50,0,0,0,9,0,0,0,133,0,5,0,7,0,0,0,51,0,0,0,50,0,0,0,49,0,0,0,62,0,3,0,9,0,0,0,51,0,0,0,65,0,5,0,46,0,0,0,52,0,0,0,44,0,0,0,45,0,0,0,61,0,4,0,7,0,0,0,53,0,0,0,52,0,0,0,136,0,5,0,7,0,0,0,54,0,0,0,41,0,0,0,53,0,0,0,61,0,4,0,7,0,0,0,55,0,0,0,28,0,0,0,133,0,5,0,7,0,0,0,56,0,0,0,55,0,0,0,54,0,0,0,62,0,3,0,28,0,0,0,56,0,0,0,61,0,4,0,7,0,0,0,59,0,0,0,9,0,0,0,62,0,3,0,58,0,0,0,59,0,0,0,61,0,4,0,7,0,0,0,61,0,0,0,28,0,0,0,62,0,3,0,60,0,0,0,61,0,0,0,61,0,4,0,10,0,0,0,65,0,0,0,64,0,0,0,111,0,4,0,6,0,0,0,66,0,0,0,65,0,0,0,62,0,3,0,63,0,0,0,66,0,0,0,61,0,4,0,10,0,0,0,69,0,0,0,68,0,0,0,111,0,4,0,6,0,0,0,70,0,0,0,69,0,0,0,62,0,3,0,67,0,0,0,70,0,0,0,61,0,4,0,10,0,0,0,71,0,0,0,12,0,0,0,177,0,5,0,73,0,0,0,74,0,0,0,71,0,0,0,72,0,0,0,247,0,3,0,76,0,0,0,0,0,0,0,250,0,4,0,74,0,0,0,75,0,0,0,76,0,0,0,248,0,2,0,75,0,0,0,62,0,3,0,9,0,0,0,78,0,0,0,249,0,2,0,76,0,0,0,248,0,2,0,76,0,0,0,61,0,4,0,7,0,0,0,87,0,0,0,9,0,0,0,12,0,8,0,7,0,0,0,88,0,0,0,1,0,0,0,46,0,0,0,84,0,0,0,86,0,0,0,87,0,0,0,81,0,5,0,6,0,0,0,89,0,0,0,88,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,90,0,0,0,88,0,0,0,1,0,0,0,80,0,7,0,79,0,0,0,91,0,0,0,89,0,0,0,90,0,0,0,77,0,0,0,85,0,0,0,65,0,5,0,92,0,0,0,93,0,0,0,82,0,0,0,72,0,0,0,62,0,3,0,93,0,0,0,91,0,0,0,253,0,1,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_TILE_CLIP_COMBINE_VERT_SPV_H diff --git a/src/shaders/generated/tile_clip_copy_vert.h b/src/shaders/generated/tile_clip_copy_vert.h index 491e3e5a..498fda96 100644 --- a/src/shaders/generated/tile_clip_copy_vert.h +++ b/src/shaders/generated/tile_clip_copy_vert.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_CLIP_COPY_VERT_H namespace Pathfinder { - static uint8_t tile_clip_copy_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,99,108,105,112,95,99,111,112,121,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,41,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,48,59,32,47,47,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,49,59,13,10,32,32,32,32,118,101,99,50,32,112,97,100,50,59,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,105,110,116,32,97,84,105,108,101,73,110,100,101,120,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,59,13,10,35,101,108,115,101,13,10,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,105,110,32,105,110,116,32,97,84,105,108,101,73,110,100,101,120,59,13,10,13,10,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,59,13,10,35,101,110,100,105,102,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,118,101,99,50,32,112,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,105,118,101,99,50,40,97,84,105,108,101,73,110,100,101,120,32,37,32,50,53,54,44,32,97,84,105,108,101,73,110,100,101,120,32,47,32,50,53,54,41,32,43,32,105,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,41,59,13,10,32,32,32,32,112,111,115,105,116,105,111,110,32,42,61,32,118,101,99,50,40,49,54,46,48,44,32,52,46,48,41,32,47,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,13,10,32,32,32,32,118,84,101,120,67,111,111,114,100,32,61,32,112,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,105,102,32,40,97,84,105,108,101,73,110,100,101,120,32,60,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,48,46,48,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,109,105,120,40,118,101,99,50,40,45,49,46,48,41,44,32,118,101,99,50,40,49,46,48,41,44,32,112,111,115,105,116,105,111,110,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10}; + static uint8_t tile_clip_copy_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,99,108,105,112,95,99,111,112,121,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,77,97,115,107,32,102,114,97,109,101,98,117,102,102,101,114,46,32,68,121,110,97,109,105,99,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,32,42,32,112,97,103,101,95,99,111,117,110,116,41,46,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,105,110,116,32,97,84,105,108,101,73,110,100,101,120,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,59,13,10,35,101,108,115,101,13,10,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,13,10,105,110,32,105,110,116,32,97,84,105,108,101,73,110,100,101,120,59,13,10,13,10,111,117,116,32,118,101,99,50,32,118,84,101,120,67,111,111,114,100,59,13,10,35,101,110,100,105,102,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,118,101,99,50,32,112,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,105,118,101,99,50,40,97,84,105,108,101,73,110,100,101,120,32,37,32,50,53,54,44,32,97,84,105,108,101,73,110,100,101,120,32,47,32,50,53,54,41,32,43,32,105,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,41,59,13,10,32,32,32,32,112,111,115,105,116,105,111,110,32,42,61,32,118,101,99,50,40,49,54,46,48,44,32,52,46,48,41,32,47,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,13,10,32,32,32,32,118,84,101,120,67,111,111,114,100,32,61,32,112,111,115,105,116,105,111,110,59,13,10,13,10,32,32,32,32,105,102,32,40,97,84,105,108,101,73,110,100,101,120,32,60,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,32,61,32,118,101,99,50,40,48,46,48,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,109,105,120,40,118,101,99,50,40,45,49,46,48,41,44,32,118,101,99,50,40,49,46,48,41,44,32,112,111,115,105,116,105,111,110,41,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_TILE_CLIP_COPY_VERT_H diff --git a/src/shaders/generated/tile_clip_copy_vert_spv.h b/src/shaders/generated/tile_clip_copy_vert_spv.h index bd5c0ae2..90ea6225 100644 --- a/src/shaders/generated/tile_clip_copy_vert_spv.h +++ b/src/shaders/generated/tile_clip_copy_vert_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_CLIP_COPY_VERT_SPV_H namespace Pathfinder { - static uint8_t tile_clip_copy_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,66,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,9,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,12,0,0,0,23,0,0,0,42,0,0,0,54,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,5,0,9,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,5,0,12,0,0,0,97,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,23,0,0,0,97,84,105,108,101,79,102,102,115,101,116,0,5,0,6,0,31,0,0,0,98,67,111,110,115,116,97,110,116,83,105,122,101,115,0,0,6,0,8,0,31,0,0,0,0,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,5,0,31,0,0,0,1,0,0,0,112,97,100,48,0,0,0,0,6,0,5,0,31,0,0,0,2,0,0,0,112,97,100,49,0,0,0,0,6,0,5,0,31,0,0,0,3,0,0,0,112,97,100,50,0,0,0,0,5,0,3,0,33,0,0,0,0,0,0,0,5,0,5,0,42,0,0,0,118,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,52,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,52,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,52,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,54,0,0,0,0,0,0,0,71,0,4,0,12,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,23,0,0,0,30,0,0,0,0,0,0,0,72,0,5,0,31,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,31,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,31,0,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,31,0,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,31,0,0,0,2,0,0,0,71,0,4,0,33,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,33,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,42,0,0,0,30,0,0,0,0,0,0,0,72,0,5,0,52,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,52,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,52,0,0,0,2,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,10,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,11,0,0,0,1,0,0,0,10,0,0,0,59,0,4,0,11,0,0,0,12,0,0,0,1,0,0,0,43,0,4,0,10,0,0,0,14,0,0,0,0,1,0,0,23,0,4,0,18,0,0,0,10,0,0,0,2,0,0,0,21,0,4,0,20,0,0,0,32,0,0,0,0,0,0,0,23,0,4,0,21,0,0,0,20,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,1,0,0,0,21,0,0,0,59,0,4,0,22,0,0,0,23,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,28,0,0,0,0,0,128,65,43,0,4,0,6,0,0,0,29,0,0,0,0,0,128,64,44,0,5,0,7,0,0,0,30,0,0,0,28,0,0,0,29,0,0,0,30,0,6,0,31,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,32,0,4,0,32,0,0,0,2,0,0,0,31,0,0,0,59,0,4,0,32,0,0,0,33,0,0,0,2,0,0,0,43,0,4,0,10,0,0,0,34,0,0,0,0,0,0,0,32,0,4,0,35,0,0,0,2,0,0,0,7,0,0,0,32,0,4,0,41,0,0,0,3,0,0,0,7,0,0,0,59,0,4,0,41,0,0,0,42,0,0,0,3,0,0,0,20,0,2,0,45,0,0,0,43,0,4,0,6,0,0,0,49,0,0,0,0,0,0,0,44,0,5,0,7,0,0,0,50,0,0,0,49,0,0,0,49,0,0,0,23,0,4,0,51,0,0,0,6,0,0,0,4,0,0,0,30,0,4,0,52,0,0,0,51,0,0,0,6,0,0,0,32,0,4,0,53,0,0,0,3,0,0,0,52,0,0,0,59,0,4,0,53,0,0,0,54,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,55,0,0,0,0,0,128,191,44,0,5,0,7,0,0,0,56,0,0,0,55,0,0,0,55,0,0,0,43,0,4,0,6,0,0,0,57,0,0,0,0,0,128,63,44,0,5,0,7,0,0,0,58,0,0,0,57,0,0,0,57,0,0,0,32,0,4,0,64,0,0,0,3,0,0,0,51,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,8,0,0,0,9,0,0,0,7,0,0,0,61,0,4,0,10,0,0,0,13,0,0,0,12,0,0,0,139,0,5,0,10,0,0,0,15,0,0,0,13,0,0,0,14,0,0,0,61,0,4,0,10,0,0,0,16,0,0,0,12,0,0,0,135,0,5,0,10,0,0,0,17,0,0,0,16,0,0,0,14,0,0,0,80,0,5,0,18,0,0,0,19,0,0,0,15,0,0,0,17,0,0,0,61,0,4,0,21,0,0,0,24,0,0,0,23,0,0,0,124,0,4,0,18,0,0,0,25,0,0,0,24,0,0,0,128,0,5,0,18,0,0,0,26,0,0,0,19,0,0,0,25,0,0,0,111,0,4,0,7,0,0,0,27,0,0,0,26,0,0,0,62,0,3,0,9,0,0,0,27,0,0,0,65,0,5,0,35,0,0,0,36,0,0,0,33,0,0,0,34,0,0,0,61,0,4,0,7,0,0,0,37,0,0,0,36,0,0,0,136,0,5,0,7,0,0,0,38,0,0,0,30,0,0,0,37,0,0,0,61,0,4,0,7,0,0,0,39,0,0,0,9,0,0,0,133,0,5,0,7,0,0,0,40,0,0,0,39,0,0,0,38,0,0,0,62,0,3,0,9,0,0,0,40,0,0,0,61,0,4,0,7,0,0,0,43,0,0,0,9,0,0,0,62,0,3,0,42,0,0,0,43,0,0,0,61,0,4,0,10,0,0,0,44,0,0,0,12,0,0,0,177,0,5,0,45,0,0,0,46,0,0,0,44,0,0,0,34,0,0,0,247,0,3,0,48,0,0,0,0,0,0,0,250,0,4,0,46,0,0,0,47,0,0,0,48,0,0,0,248,0,2,0,47,0,0,0,62,0,3,0,9,0,0,0,50,0,0,0,249,0,2,0,48,0,0,0,248,0,2,0,48,0,0,0,61,0,4,0,7,0,0,0,59,0,0,0,9,0,0,0,12,0,8,0,7,0,0,0,60,0,0,0,1,0,0,0,46,0,0,0,56,0,0,0,58,0,0,0,59,0,0,0,81,0,5,0,6,0,0,0,61,0,0,0,60,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,62,0,0,0,60,0,0,0,1,0,0,0,80,0,7,0,51,0,0,0,63,0,0,0,61,0,0,0,62,0,0,0,49,0,0,0,57,0,0,0,65,0,5,0,64,0,0,0,65,0,0,0,54,0,0,0,34,0,0,0,62,0,3,0,65,0,0,0,63,0,0,0,253,0,1,0,56,0,1,0}; + static uint8_t tile_clip_copy_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,67,0,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,9,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,12,0,0,0,23,0,0,0,42,0,0,0,55,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,5,0,9,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,5,0,12,0,0,0,97,84,105,108,101,73,110,100,101,120,0,0,5,0,5,0,23,0,0,0,97,84,105,108,101,79,102,102,115,101,116,0,5,0,5,0,31,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,31,0,0,0,0,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,8,0,31,0,0,0,1,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,5,0,3,0,33,0,0,0,0,0,0,0,5,0,5,0,42,0,0,0,118,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,53,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,53,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,53,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,55,0,0,0,0,0,0,0,71,0,4,0,12,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,23,0,0,0,30,0,0,0,0,0,0,0,72,0,5,0,31,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,31,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,71,0,3,0,31,0,0,0,2,0,0,0,71,0,4,0,33,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,33,0,0,0,33,0,0,0,0,0,0,0,71,0,4,0,42,0,0,0,30,0,0,0,0,0,0,0,72,0,5,0,53,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,53,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,53,0,0,0,2,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,10,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,11,0,0,0,1,0,0,0,10,0,0,0,59,0,4,0,11,0,0,0,12,0,0,0,1,0,0,0,43,0,4,0,10,0,0,0,14,0,0,0,0,1,0,0,23,0,4,0,18,0,0,0,10,0,0,0,2,0,0,0,21,0,4,0,20,0,0,0,32,0,0,0,0,0,0,0,23,0,4,0,21,0,0,0,20,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,1,0,0,0,21,0,0,0,59,0,4,0,22,0,0,0,23,0,0,0,1,0,0,0,43,0,4,0,6,0,0,0,28,0,0,0,0,0,128,65,43,0,4,0,6,0,0,0,29,0,0,0,0,0,128,64,44,0,5,0,7,0,0,0,30,0,0,0,28,0,0,0,29,0,0,0,30,0,4,0,31,0,0,0,7,0,0,0,7,0,0,0,32,0,4,0,32,0,0,0,2,0,0,0,31,0,0,0,59,0,4,0,32,0,0,0,33,0,0,0,2,0,0,0,43,0,4,0,10,0,0,0,34,0,0,0,1,0,0,0,32,0,4,0,35,0,0,0,2,0,0,0,7,0,0,0,32,0,4,0,41,0,0,0,3,0,0,0,7,0,0,0,59,0,4,0,41,0,0,0,42,0,0,0,3,0,0,0,43,0,4,0,10,0,0,0,45,0,0,0,0,0,0,0,20,0,2,0,46,0,0,0,43,0,4,0,6,0,0,0,50,0,0,0,0,0,0,0,44,0,5,0,7,0,0,0,51,0,0,0,50,0,0,0,50,0,0,0,23,0,4,0,52,0,0,0,6,0,0,0,4,0,0,0,30,0,4,0,53,0,0,0,52,0,0,0,6,0,0,0,32,0,4,0,54,0,0,0,3,0,0,0,53,0,0,0,59,0,4,0,54,0,0,0,55,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,56,0,0,0,0,0,128,191,44,0,5,0,7,0,0,0,57,0,0,0,56,0,0,0,56,0,0,0,43,0,4,0,6,0,0,0,58,0,0,0,0,0,128,63,44,0,5,0,7,0,0,0,59,0,0,0,58,0,0,0,58,0,0,0,32,0,4,0,65,0,0,0,3,0,0,0,52,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,8,0,0,0,9,0,0,0,7,0,0,0,61,0,4,0,10,0,0,0,13,0,0,0,12,0,0,0,139,0,5,0,10,0,0,0,15,0,0,0,13,0,0,0,14,0,0,0,61,0,4,0,10,0,0,0,16,0,0,0,12,0,0,0,135,0,5,0,10,0,0,0,17,0,0,0,16,0,0,0,14,0,0,0,80,0,5,0,18,0,0,0,19,0,0,0,15,0,0,0,17,0,0,0,61,0,4,0,21,0,0,0,24,0,0,0,23,0,0,0,124,0,4,0,18,0,0,0,25,0,0,0,24,0,0,0,128,0,5,0,18,0,0,0,26,0,0,0,19,0,0,0,25,0,0,0,111,0,4,0,7,0,0,0,27,0,0,0,26,0,0,0,62,0,3,0,9,0,0,0,27,0,0,0,65,0,5,0,35,0,0,0,36,0,0,0,33,0,0,0,34,0,0,0,61,0,4,0,7,0,0,0,37,0,0,0,36,0,0,0,136,0,5,0,7,0,0,0,38,0,0,0,30,0,0,0,37,0,0,0,61,0,4,0,7,0,0,0,39,0,0,0,9,0,0,0,133,0,5,0,7,0,0,0,40,0,0,0,39,0,0,0,38,0,0,0,62,0,3,0,9,0,0,0,40,0,0,0,61,0,4,0,7,0,0,0,43,0,0,0,9,0,0,0,62,0,3,0,42,0,0,0,43,0,0,0,61,0,4,0,10,0,0,0,44,0,0,0,12,0,0,0,177,0,5,0,46,0,0,0,47,0,0,0,44,0,0,0,45,0,0,0,247,0,3,0,49,0,0,0,0,0,0,0,250,0,4,0,47,0,0,0,48,0,0,0,49,0,0,0,248,0,2,0,48,0,0,0,62,0,3,0,9,0,0,0,51,0,0,0,249,0,2,0,49,0,0,0,248,0,2,0,49,0,0,0,61,0,4,0,7,0,0,0,60,0,0,0,9,0,0,0,12,0,8,0,7,0,0,0,61,0,0,0,1,0,0,0,46,0,0,0,57,0,0,0,59,0,0,0,60,0,0,0,81,0,5,0,6,0,0,0,62,0,0,0,61,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,63,0,0,0,61,0,0,0,1,0,0,0,80,0,7,0,52,0,0,0,64,0,0,0,62,0,0,0,63,0,0,0,50,0,0,0,58,0,0,0,65,0,5,0,65,0,0,0,66,0,0,0,55,0,0,0,45,0,0,0,62,0,3,0,66,0,0,0,64,0,0,0,253,0,1,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_TILE_CLIP_COPY_VERT_SPV_H diff --git a/src/shaders/generated/tile_comp.h b/src/shaders/generated/tile_comp.h index 7d10cc45..4421474a 100644 --- a/src/shaders/generated/tile_comp.h +++ b/src/shaders/generated/tile_comp.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_COMP_H namespace Pathfinder { - static uint8_t tile_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,105,109,97,103,101,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,49,54,44,32,108,111,99,97,108,95,115,105,122,101,95,121,32,61,32,52,41,32,105,110,59,13,10,13,10,35,100,101,102,105,110,101,32,76,79,65,68,95,65,67,84,73,79,78,95,67,76,69,65,82,32,32,32,48,13,10,35,100,101,102,105,110,101,32,76,79,65,68,95,65,67,84,73,79,78,95,76,79,65,68,32,32,32,32,49,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,13,10,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,90,66,117,102,102,101,114,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,77,97,115,107,84,101,120,116,117,114,101,48,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,71,97,109,109,97,76,85,84,59,13,10,13,10,47,47,32,78,111,32,115,105,109,117,108,116,97,110,101,111,117,115,32,105,109,97,103,101,32,82,69,65,68,32,38,32,87,82,73,84,69,32,102,111,114,32,71,76,69,83,46,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,55,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,73,109,97,103,101,59,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,55,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,73,109,97,103,101,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,56,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,115,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,118,101,99,50,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,59,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,112,97,100,48,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,57,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,48,32,123,13,10,32,32,32,32,118,101,99,52,32,117,67,108,101,97,114,67,111,108,111,114,59,13,10,32,32,32,32,118,101,99,50,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,59,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,49,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,49,32,123,13,10,32,32,32,32,105,118,101,99,50,32,117,90,66,117,102,102,101,114,83,105,122,101,59,13,10,32,32,32,32,105,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,84,105,108,101,83,105,122,101,59,13,10,32,32,32,32,105,110,116,32,117,76,111,97,100,65,99,116,105,111,110,59,13,10,32,32,32,32,105,110,116,32,112,97,100,49,44,32,112,97,100,50,44,32,112,97,100,51,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,47,47,32,91,48,93,58,32,112,97,116,104,32,73,68,13,10,47,47,32,91,49,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,13,10,47,47,32,91,50,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,13,10,47,47,32,91,51,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,98,105,116,115,13,10,47,47,32,91,52,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,70,105,114,115,116,84,105,108,101,77,97,112,32,123,13,10,32,32,32,32,105,110,116,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,93,59,13,10,125,59,13,10,13,10,47,47,35,105,110,99,108,117,100,101,32,34,116,105,108,101,95,102,114,97,103,109,101,110,116,46,105,110,99,46,103,108,115,108,34,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,102,114,97,103,109,101,110,116,46,105,110,99,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,47,47,32,32,32,32,32,32,77,97,115,107,32,85,86,32,48,32,32,32,32,32,32,32,32,32,77,97,115,107,32,85,86,32,49,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,77,73,78,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,77,97,115,107,32,32,48,32,32,43,45,45,45,45,45,62,32,32,77,97,115,107,32,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,118,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,65,112,112,108,121,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,71,80,85,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,97,115,107,32,43,45,45,45,45,62,32,32,67,111,109,112,111,115,105,116,101,32,32,43,45,45,45,45,62,66,108,101,110,100,101,114,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,94,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,124,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,67,111,108,111,114,32,48,32,32,43,45,45,45,45,45,62,32,32,67,111,108,111,114,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,70,105,108,116,101,114,32,32,32,124,32,32,195,151,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,67,111,108,111,114,32,85,86,32,48,32,32,32,32,32,32,32,32,67,111,108,111,114,32,85,86,32,49,13,10,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,54,95,80,73,32,32,32,49,46,57,48,57,56,53,57,51,49,55,49,48,50,55,52,52,51,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,80,73,95,51,32,32,32,49,46,48,52,55,49,57,55,53,53,49,49,57,54,53,57,55,54,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,32,32,32,32,32,32,32,48,120,52,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,32,32,32,32,32,32,32,32,32,32,48,120,48,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,32,32,32,32,32,32,32,32,32,32,48,120,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,32,32,32,32,32,32,32,32,32,48,120,53,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,32,32,32,32,32,48,120,54,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,32,32,32,32,32,32,48,120,55,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,32,32,32,32,32,32,48,120,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,32,32,32,32,32,32,48,120,57,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,32,32,32,32,32,32,48,120,97,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,32,32,32,32,32,32,32,48,120,98,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,99,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,32,32,32,32,32,32,48,120,100,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,32,32,32,32,32,32,32,32,32,32,32,48,120,101,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,32,32,32,32,32,32,48,120,102,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,32,32,32,32,32,32,32,32,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,32,32,32,32,32,32,32,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,49,48,13,10,13,10,47,47,32,67,111,108,111,114,32,99,111,109,98,105,110,105,110,103,13,10,13,10,118,101,99,52,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,101,99,52,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,52,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,84,101,120,116,32,102,105,108,116,101,114,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,108,111,97,116,32,111,102,102,115,101,116,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,118,101,99,50,40,111,102,102,115,101,116,44,32,48,46,48,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,83,97,109,112,108,101,115,32,57,32,116,97,112,115,32,97,114,111,117,110,100,32,116,104,101,32,99,117,114,114,101,110,116,32,112,105,120,101,108,46,13,10,118,111,105,100,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,76,101,102,116,44,13,10,111,117,116,32,102,108,111,97,116,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,82,105,103,104,116,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,118,101,99,52,32,107,101,114,110,101,108,44,13,10,102,108,111,97,116,32,111,110,101,80,105,120,101,108,41,32,123,13,10,32,32,32,32,98,111,111,108,32,119,105,100,101,32,61,32,107,101,114,110,101,108,46,120,32,62,32,48,46,48,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,76,101,102,116,32,61,13,10,32,32,32,32,118,101,99,52,40,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,32,61,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,48,46,48,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,82,105,103,104,116,32,61,13,10,32,32,32,32,118,101,99,52,40,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,32,97,108,112,104,97,48,44,32,118,101,99,51,32,97,108,112,104,97,49,44,32,118,101,99,52,32,107,101,114,110,101,108,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,111,116,40,97,108,112,104,97,48,44,32,107,101,114,110,101,108,41,32,43,32,100,111,116,40,97,108,112,104,97,49,44,32,107,101,114,110,101,108,46,122,121,120,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,108,111,97,116,32,98,103,67,111,108,111,114,44,32,102,108,111,97,116,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,103,97,109,109,97,76,85,84,44,32,118,101,99,50,40,102,103,67,111,108,111,114,44,32,49,46,48,32,45,32,98,103,67,111,108,111,114,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,96,102,103,67,111,108,111,114,96,32,105,115,32,105,110,32,108,105,110,101,97,114,32,115,112,97,99,101,46,13,10,118,101,99,51,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,101,99,51,32,98,103,67,111,108,111,114,44,32,118,101,99,51,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,114,44,32,102,103,67,111,108,111,114,46,114,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,103,44,32,102,103,67,111,108,111,114,46,103,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,98,44,32,102,103,67,111,108,111,114,46,98,44,32,103,97,109,109,97,76,85,84,41,41,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,107,101,114,110,101,108,91,48,93,32,32,107,101,114,110,101,108,91,49,93,32,32,107,101,114,110,101,108,91,50,93,32,32,107,101,114,110,101,108,91,51,93,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,98,103,67,111,108,111,114,46,114,32,32,98,103,67,111,108,111,114,46,103,32,32,98,103,67,111,108,111,114,46,98,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,102,103,67,111,108,111,114,46,114,32,32,102,103,67,111,108,111,114,46,103,32,32,102,103,67,111,108,111,114,46,98,32,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,13,10,118,101,99,52,32,102,105,108,116,101,114,84,101,120,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,52,32,107,101,114,110,101,108,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,118,101,99,51,32,98,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,114,103,98,59,13,10,32,32,32,32,118,101,99,51,32,102,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,114,103,98,59,13,10,32,32,32,32,98,111,111,108,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,97,32,33,61,32,48,46,48,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,100,101,102,114,105,110,103,105,110,103,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,118,101,99,51,32,97,108,112,104,97,59,13,10,32,32,32,32,105,102,32,40,107,101,114,110,101,108,46,119,32,61,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,46,114,114,114,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,97,108,112,104,97,76,101,102,116,44,32,97,108,112,104,97,82,105,103,104,116,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,97,108,112,104,97,67,101,110,116,101,114,59,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,97,108,112,104,97,76,101,102,116,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,67,101,110,116,101,114,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,44,13,10,32,32,32,32,32,32,32,32,49,46,48,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,46,120,41,59,13,10,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,114,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,97,108,112,104,97,76,101,102,116,44,32,118,101,99,51,40,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,41,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,121,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,41,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,122,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,98,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,41,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,46,121,122,119,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,118,101,99,51,40,114,44,32,103,44,32,98,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,103,97,109,109,97,32,99,111,114,114,101,99,116,105,111,110,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,105,102,32,40,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,41,13,10,32,32,32,32,97,108,112,104,97,32,61,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,98,103,67,111,108,111,114,44,32,97,108,112,104,97,44,32,103,97,109,109,97,76,85,84,41,59,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,109,105,120,40,98,103,67,111,108,111,114,44,32,102,103,67,111,108,111,114,44,32,97,108,112,104,97,41,44,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,79,116,104,101,114,32,102,105,108,116,101,114,115,13,10,13,10,47,47,32,84,104,105,115,32,105,115,32,98,97,115,101,100,32,111,110,32,80,105,120,109,97,110,32,40,77,73,84,32,108,105,99,101,110,115,101,41,46,32,67,111,112,121,32,97,110,100,32,112,97,115,116,105,110,103,32,116,104,101,32,101,120,99,101,108,108,101,110,116,32,99,111,109,109,101,110,116,13,10,47,47,32,102,114,111,109,32,116,104,101,114,101,58,13,10,13,10,47,47,32,73,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,115,32,102,111,108,108,111,119,105,110,103,32,116,104,101,32,80,68,70,32,115,112,101,99,105,102,105,99,97,116,105,111,110,46,13,10,47,47,32,83,101,101,32,115,101,99,116,105,111,110,32,56,46,55,46,52,46,53,46,52,32,84,121,112,101,32,51,32,40,82,97,100,105,97,108,41,32,83,104,97,100,105,110,103,115,32,111,102,32,116,104,101,32,80,68,70,32,82,101,102,101,114,101,110,99,101,13,10,47,47,32,77,97,110,117,97,108,32,40,80,68,70,32,51,50,48,48,48,45,49,58,50,48,48,56,32,97,116,32,116,104,101,32,116,105,109,101,32,111,102,32,116,104,105,115,32,119,114,105,116,105,110,103,41,46,13,10,47,47,13,10,47,47,32,73,110,32,116,104,101,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,32,112,114,111,98,108,101,109,32,119,101,32,97,114,101,32,103,105,118,101,110,32,116,119,111,32,99,105,114,99,108,101,115,32,40,99,226,130,129,44,114,226,130,129,41,32,97,110,100,13,10,47,47,32,40,99,226,130,130,44,114,226,130,130,41,32,116,104,97,116,32,100,101,102,105,110,101,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,116,115,101,108,102,46,13,10,47,47,13,10,47,47,32,77,97,116,104,101,109,97,116,105,99,97,108,108,121,32,116,104,101,32,103,114,97,100,105,101,110,116,32,99,97,110,32,98,101,32,100,101,102,105,110,101,100,32,97,115,32,116,104,101,32,102,97,109,105,108,121,32,111,102,32,99,105,114,99,108,101,115,13,10,47,47,13,10,47,47,32,32,32,32,32,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,44,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,41,13,10,47,47,13,10,47,47,32,101,120,99,108,117,100,105,110,103,32,116,104,111,115,101,32,99,105,114,99,108,101,115,32,119,104,111,115,101,32,114,97,100,105,117,115,32,119,111,117,108,100,32,98,101,32,60,32,48,46,32,87,104,101,110,32,97,32,112,111,105,110,116,13,10,47,47,32,98,101,108,111,110,103,115,32,116,111,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,99,105,114,99,108,101,44,32,116,104,101,32,111,110,101,32,119,105,116,104,32,97,32,98,105,103,103,101,114,32,116,32,105,115,32,116,104,101,32,111,110,108,121,13,10,47,47,32,111,110,101,32,116,104,97,116,32,99,111,110,116,114,105,98,117,116,101,115,32,116,111,32,105,116,115,32,99,111,108,111,114,46,32,87,104,101,110,32,97,32,112,111,105,110,116,32,100,111,101,115,32,110,111,116,32,98,101,108,111,110,103,13,10,47,47,32,116,111,32,97,110,121,32,111,102,32,116,104,101,32,99,105,114,99,108,101,115,44,32,105,116,32,105,115,32,116,114,97,110,115,112,97,114,101,110,116,32,98,108,97,99,107,44,32,105,46,101,46,32,82,71,66,65,32,40,48,44,32,48,44,32,48,44,32,48,41,46,13,10,47,47,32,70,117,114,116,104,101,114,32,108,105,109,105,116,97,116,105,111,110,115,32,111,110,32,116,104,101,32,114,97,110,103,101,32,111,102,32,118,97,108,117,101,115,32,102,111,114,32,116,32,97,114,101,32,105,109,112,111,115,101,100,32,119,104,101,110,13,10,47,47,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,44,32,110,97,109,101,108,121,32,116,32,109,117,115,116,32,98,101,108,111,110,103,32,116,111,32,91,48,44,49,93,46,13,10,47,47,13,10,47,47,32,84,104,101,32,103,114,97,112,104,105,99,97,108,32,114,101,115,117,108,116,32,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,100,114,97,119,105,110,103,32,116,104,101,32,118,97,108,105,100,32,40,114,97,100,105,117,115,32,62,32,48,41,13,10,47,47,32,99,105,114,99,108,101,115,32,119,105,116,104,32,105,110,99,114,101,97,115,105,110,103,32,116,32,105,110,32,91,45,226,136,158,44,32,43,226,136,158,93,32,40,111,114,32,105,110,32,91,48,44,49,93,32,105,102,32,116,104,101,32,103,114,97,100,105,101,110,116,13,10,47,47,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,41,32,117,115,105,110,103,32,83,79,85,82,67,69,32,111,112,101,114,97,116,111,114,32,99,111,109,112,111,115,105,116,105,111,110,46,13,10,47,47,13,10,47,47,32,73,116,32,108,111,111,107,115,32,108,105,107,101,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,116,111,119,97,114,100,115,32,116,104,101,32,118,105,101,119,101,114,32,105,102,32,116,104,101,32,101,110,100,105,110,103,32,99,105,114,99,108,101,13,10,47,47,32,105,115,32,115,109,97,108,108,101,114,32,116,104,97,110,32,116,104,101,32,115,116,97,114,116,105,110,103,32,111,110,101,44,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,105,110,115,105,100,101,32,116,104,101,32,112,97,103,101,32,105,102,13,10,47,47,32,116,104,101,32,115,116,97,114,116,105,110,103,32,99,105,114,99,108,101,32,105,115,32,116,104,101,32,115,109,97,108,108,101,114,32,111,110,101,32,97,110,100,32,108,105,107,101,32,97,32,99,121,108,105,110,100,101,114,32,105,102,32,116,104,101,121,13,10,47,47,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,114,97,100,105,117,115,46,13,10,47,47,13,10,47,47,32,87,104,97,116,32,119,101,32,97,99,116,117,97,108,108,121,32,100,111,32,105,115,44,32,103,105,118,101,110,32,116,104,101,32,112,111,105,110,116,32,119,104,111,115,101,32,99,111,108,111,114,32,119,101,32,97,114,101,32,105,110,116,101,114,101,115,116,101,100,13,10,47,47,32,105,110,44,32,99,111,109,112,117,116,101,32,116,104,101,32,116,32,118,97,108,117,101,115,32,102,111,114,32,116,104,97,116,32,112,111,105,110,116,44,32,115,111,108,118,105,110,103,32,102,111,114,32,116,32,105,110,58,13,10,47,47,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,32,45,32,112,41,32,61,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,13,10,47,47,13,10,47,47,32,76,101,116,39,115,32,114,101,119,114,105,116,101,32,105,116,32,105,110,32,97,32,115,105,109,112,108,101,114,32,119,97,121,44,32,98,121,32,100,101,102,105,110,105,110,103,32,115,111,109,101,32,97,117,120,105,108,105,97,114,121,13,10,47,47,32,118,97,114,105,97,98,108,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,99,100,32,61,32,99,226,130,130,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,112,100,32,61,32,112,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,100,114,32,61,32,114,226,130,130,32,45,32,114,226,130,129,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,116,194,183,99,100,32,45,32,112,100,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,119,104,105,99,104,32,97,99,116,117,97,108,108,121,32,109,101,97,110,115,13,10,47,47,13,10,47,47,32,32,32,32,32,104,121,112,111,116,40,116,194,183,99,100,120,32,45,32,112,100,120,44,32,116,194,183,99,100,121,32,45,32,112,100,121,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,111,114,13,10,47,47,13,10,47,47,32,32,32,32,32,226,142,183,40,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,46,13,10,47,47,13,10,47,47,32,73,102,32,119,101,32,105,109,112,111,115,101,32,40,97,115,32,115,116,97,116,101,100,32,101,97,114,108,105,101,114,41,32,116,104,97,116,32,114,226,130,129,32,43,32,116,194,183,100,114,32,226,137,165,32,48,44,32,105,116,32,98,101,99,111,109,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,32,61,32,40,114,226,130,129,32,43,32,116,194,183,100,114,41,194,178,13,10,47,47,13,10,47,47,32,119,104,101,114,101,32,119,101,32,99,97,110,32,97,99,116,117,97,108,108,121,32,101,120,112,97,110,100,32,116,104,101,32,115,113,117,97,114,101,115,32,97,110,100,32,115,111,108,118,101,32,102,111,114,32,116,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,194,178,99,100,120,194,178,32,45,32,50,116,194,183,99,100,120,194,183,112,100,120,32,43,32,112,100,120,194,178,32,43,32,116,194,178,99,100,121,194,178,32,45,32,50,116,194,183,99,100,121,194,183,112,100,121,32,43,32,112,100,121,194,178,32,61,13,10,47,47,32,32,32,32,32,32,32,61,32,114,226,130,129,194,178,32,43,32,50,194,183,114,226,130,129,194,183,116,194,183,100,114,32,43,32,116,194,178,194,183,100,114,194,178,13,10,47,47,13,10,47,47,32,32,32,32,32,40,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,41,116,194,178,32,45,32,50,40,99,100,120,194,183,112,100,120,32,43,32,99,100,121,194,183,112,100,121,32,43,32,114,226,130,129,194,183,100,114,41,116,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,40,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,41,32,61,32,48,13,10,47,47,13,10,47,47,32,32,32,32,32,65,32,61,32,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,13,10,47,47,32,32,32,32,32,66,32,61,32,112,100,120,194,183,99,100,120,32,43,32,112,100,121,194,183,99,100,121,32,43,32,114,226,130,129,194,183,100,114,13,10,47,47,32,32,32,32,32,67,32,61,32,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,13,10,47,47,32,32,32,32,32,65,116,194,178,32,45,32,50,66,116,32,43,32,67,32,61,32,48,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,115,32,40,117,110,108,101,115,115,32,116,104,101,32,101,113,117,97,116,105,111,110,32,100,101,103,101,110,101,114,97,116,101,115,32,98,101,99,97,117,115,101,32,111,102,32,65,32,61,32,48,41,32,97,114,101,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,32,61,32,40,66,32,194,177,32,226,142,183,40,66,194,178,32,45,32,65,194,183,67,41,41,32,47,32,65,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,32,119,101,32,97,114,101,32,103,111,105,110,103,32,116,111,32,112,114,101,102,101,114,32,105,115,32,116,104,101,32,98,105,103,103,101,114,32,111,110,101,44,32,117,110,108,101,115,115,32,116,104,101,13,10,47,47,32,114,97,100,105,117,115,32,97,115,115,111,99,105,97,116,101,100,32,116,111,32,105,116,32,105,115,32,110,101,103,97,116,105,118,101,32,40,111,114,32,105,116,32,102,97,108,108,115,32,111,117,116,115,105,100,101,32,116,104,101,32,118,97,108,105,100,32,116,13,10,47,47,32,114,97,110,103,101,41,46,13,10,47,47,13,10,47,47,32,65,100,100,105,116,105,111,110,97,108,32,111,98,115,101,114,118,97,116,105,111,110,115,32,40,117,115,101,102,117,108,32,102,111,114,32,111,112,116,105,109,105,122,97,116,105,111,110,115,41,58,13,10,47,47,32,65,32,100,111,101,115,32,110,111,116,32,100,101,112,101,110,100,32,111,110,32,112,13,10,47,47,13,10,47,47,32,65,32,60,32,48,32,226,159,186,32,111,110,101,32,111,102,32,116,104,101,32,116,119,111,32,99,105,114,99,108,101,115,32,99,111,109,112,108,101,116,101,108,121,32,99,111,110,116,97,105,110,115,32,116,104,101,32,111,116,104,101,114,32,111,110,101,13,10,47,47,32,32,32,226,159,186,32,102,111,114,32,101,118,101,114,121,32,112,44,32,116,104,101,32,114,97,100,105,105,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,101,32,116,119,111,32,116,32,115,111,108,117,116,105,111,110,115,32,104,97,118,101,13,10,47,47,32,32,32,32,32,32,32,111,112,112,111,115,105,116,101,32,115,105,103,110,13,10,47,47,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,108,105,110,101,70,114,111,109,46,120,32,32,108,105,110,101,70,114,111,109,46,121,32,32,108,105,110,101,86,101,99,116,111,114,46,120,32,32,32,32,108,105,110,101,86,101,99,116,111,114,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,114,97,100,105,105,46,120,32,32,32,32,32,114,97,100,105,105,46,121,32,32,32,32,32,117,118,79,114,105,103,105,110,46,120,32,32,32,32,32,32,117,118,79,114,105,103,105,110,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,118,101,99,50,32,108,105,110,101,70,114,111,109,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,44,32,108,105,110,101,86,101,99,116,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,114,97,100,105,105,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,44,32,117,118,79,114,105,103,105,110,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,122,119,59,13,10,13,10,32,32,32,32,118,101,99,50,32,100,80,32,61,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,108,105,110,101,70,114,111,109,44,32,100,67,32,61,32,108,105,110,101,86,101,99,116,111,114,59,13,10,32,32,32,32,102,108,111,97,116,32,100,82,32,61,32,114,97,100,105,105,46,121,32,45,32,114,97,100,105,105,46,120,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,100,111,116,40,100,67,44,32,100,67,41,32,45,32,100,82,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,98,32,61,32,100,111,116,40,100,80,44,32,100,67,41,32,43,32,114,97,100,105,105,46,120,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,100,111,116,40,100,80,44,32,100,80,41,32,45,32,114,97,100,105,105,46,120,32,42,32,114,97,100,105,105,46,120,59,13,10,32,32,32,32,102,108,111,97,116,32,100,105,115,99,114,105,109,32,61,32,98,32,42,32,98,32,45,32,97,32,42,32,99,59,13,10,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,105,102,32,40,100,105,115,99,114,105,109,32,33,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,116,115,32,61,32,118,101,99,50,40,115,113,114,116,40,100,105,115,99,114,105,109,41,32,42,32,118,101,99,50,40,49,46,48,44,32,45,49,46,48,41,32,43,32,118,101,99,50,40,98,41,41,32,47,32,118,101,99,50,40,97,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,115,46,120,32,62,32,116,115,46,121,41,13,10,32,32,32,32,32,32,32,32,116,115,32,61,32,116,115,46,121,120,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,116,32,61,32,116,115,46,120,32,62,61,32,48,46,48,32,63,32,116,115,46,120,32,58,32,116,115,46,121,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,117,118,79,114,105,103,105,110,32,43,32,118,101,99,50,40,116,44,32,48,46,48,41,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,115,114,99,79,102,102,115,101,116,46,120,32,32,32,115,114,99,79,102,102,115,101,116,46,121,32,32,32,115,117,112,112,111,114,116,32,32,32,32,32,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,103,97,117,115,115,67,111,101,102,102,46,120,32,32,103,97,117,115,115,67,111,101,102,102,46,121,32,32,103,97,117,115,115,67,111,101,102,102,46,122,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,66,108,117,114,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,105,110,116,32,115,117,112,112,111,114,116,32,61,32,105,110,116,40,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,103,97,117,115,115,67,111,101,102,102,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,122,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,117,112,32,111,117,114,32,105,110,99,114,101,109,101,110,116,97,108,32,99,97,108,99,117,108,97,116,105,111,110,46,13,10,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,42,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,99,111,109,109,111,110,32,116,114,105,99,107,32,116,104,97,116,32,108,101,116,115,32,117,115,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,102,105,108,116,101,114,105,110,103,32,104,97,114,100,119,97,114,101,32,116,111,32,101,118,97,108,117,97,116,101,32,116,119,111,13,10,32,32,32,32,47,47,32,116,101,120,101,108,115,32,97,116,32,97,32,116,105,109,101,46,32,84,104,101,32,98,97,115,105,99,32,112,114,105,110,99,105,112,108,101,32,105,115,32,116,104,97,116,44,32,105,102,32,99,48,32,97,110,100,32,99,49,32,97,114,101,32,99,111,108,111,114,115,32,111,102,32,97,100,106,97,99,101,110,116,32,116,101,120,101,108,115,13,10,32,32,32,32,47,47,32,97,110,100,32,107,48,32,97,110,100,32,107,49,32,97,114,101,32,97,114,98,105,116,114,97,114,121,32,102,97,99,116,111,114,115,44,32,116,104,101,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,13,10,32,32,32,32,47,47,32,96,40,107,48,32,43,32,107,49,41,32,42,32,108,101,114,112,40,99,48,44,32,99,49,44,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,41,96,46,32,76,105,110,101,97,114,32,105,110,116,101,114,112,111,108,97,116,105,111,110,44,32,97,115,32,112,101,114,102,111,114,109,101,100,32,98,121,32,116,104,101,13,10,32,32,32,32,47,47,32,116,101,120,116,117,114,105,110,103,32,104,97,114,100,119,97,114,101,32,119,104,101,110,32,115,97,109,112,108,105,110,103,32,97,100,106,97,99,101,110,116,32,112,105,120,101,108,115,32,105,110,32,111,110,101,32,100,105,114,101,99,116,105,111,110,44,32,101,118,97,108,117,97,116,101,115,13,10,32,32,32,32,47,47,32,96,108,101,114,112,40,99,48,44,32,99,49,44,32,116,41,96,32,119,104,101,114,101,32,116,32,105,115,32,116,104,101,32,111,102,102,115,101,116,32,102,114,111,109,32,116,104,101,32,116,101,120,101,108,32,119,105,116,104,32,99,111,108,111,114,32,96,99,48,96,46,32,84,111,32,101,118,97,108,117,97,116,101,32,116,104,101,13,10,32,32,32,32,47,47,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,44,32,116,104,101,114,101,102,111,114,101,44,32,119,101,32,99,97,110,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,104,97,114,100,119,97,114,101,32,116,111,32,112,101,114,102,111,114,109,32,108,105,110,101,97,114,13,10,32,32,32,32,47,47,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,116,104,32,96,116,32,61,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,96,46,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,105,32,61,32,49,59,32,105,32,60,61,32,115,117,112,112,111,114,116,59,32,105,32,43,61,32,50,41,32,123,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,43,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,32,61,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,42,32,40,102,108,111,97,116,40,105,41,32,43,32,103,97,117,115,115,67,111,101,102,102,46,120,32,47,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,41,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,43,61,32,40,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,115,114,99,79,102,102,115,101,116,41,32,43,13,10,32,32,32,32,32,32,32,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,115,114,99,79,102,102,115,101,116,41,41,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,83,117,109,32,43,61,32,50,46,48,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,32,47,32,103,97,117,115,115,83,117,109,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,32,123,13,10,32,32,32,32,118,101,99,52,32,115,114,99,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,109,97,116,52,32,99,111,108,111,114,77,97,116,114,105,120,32,61,32,109,97,116,52,40,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,32,102,105,108,116,101,114,80,97,114,97,109,115,51,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,77,97,116,114,105,120,32,42,32,115,114,99,67,111,108,111,114,32,43,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,78,111,110,101,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,105,110,116,32,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,66,108,117,114,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,84,101,120,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,78,111,110,101,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,99,111,108,111,114,84,101,120,116,117,114,101,41,59,13,10,125,13,10,13,10,47,47,32,67,111,109,112,111,115,105,116,105,110,103,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,98,118,101,99,51,32,99,111,110,100,44,32,118,101,99,51,32,105,102,84,114,117,101,44,32,118,101,99,51,32,105,102,70,97,108,115,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,99,111,110,100,46,120,32,63,32,105,102,84,114,117,101,46,120,32,58,32,105,102,70,97,108,115,101,46,120,44,13,10,32,32,32,32,99,111,110,100,46,121,32,63,32,105,102,84,114,117,101,46,121,32,58,32,105,102,70,97,108,115,101,46,121,44,13,10,32,32,32,32,99,111,110,100,46,122,32,63,32,105,102,84,114,117,101,46,122,32,58,32,105,102,70,97,108,115,101,46,122,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,108,111,97,116,32,110,117,109,44,32,102,108,111,97,116,32,100,101,110,111,109,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,110,111,109,32,33,61,32,48,46,48,32,63,32,110,117,109,32,47,32,100,101,110,111,109,32,58,32,48,46,48,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,98,118,101,99,51,32,100,101,115,116,90,101,114,111,32,61,32,101,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,48,41,41,44,32,115,114,99,79,110,101,32,61,32,101,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,100,101,115,116,90,101,114,111,44,13,10,32,32,32,32,118,101,99,51,40,48,46,48,41,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,115,114,99,79,110,101,44,32,118,101,99,51,40,49,46,48,41,44,32,100,101,115,116,67,111,108,111,114,32,47,32,40,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,41,41,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,72,83,76,95,116,111,95,82,71,66,95,97,108,116,101,114,110,97,116,105,118,101,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,101,99,51,32,104,115,108,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,104,115,108,46,121,32,42,32,109,105,110,40,104,115,108,46,122,44,32,49,46,48,32,45,32,104,115,108,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,107,115,32,61,32,109,111,100,40,118,101,99,51,40,48,46,48,44,32,56,46,48,44,32,52,46,48,41,32,43,32,118,101,99,51,40,104,115,108,46,120,32,42,32,70,82,65,67,95,54,95,80,73,41,44,32,49,50,46,48,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,104,115,108,46,122,122,122,32,45,32,99,108,97,109,112,40,109,105,110,40,107,115,32,45,32,118,101,99,51,40,51,46,48,41,44,32,118,101,99,51,40,57,46,48,41,32,45,32,107,115,41,44,32,45,49,46,48,44,32,49,46,48,41,32,42,32,97,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,70,114,111,109,95,82,71,66,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,101,99,51,32,114,103,98,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,118,32,61,32,109,97,120,40,109,97,120,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,44,32,120,77,105,110,32,61,32,109,105,110,40,109,105,110,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,118,32,45,32,120,77,105,110,44,32,108,32,61,32,109,105,120,40,120,77,105,110,44,32,118,44,32,48,46,53,41,59,13,10,32,32,32,32,118,101,99,51,32,116,101,114,109,115,32,61,32,114,103,98,46,114,32,61,61,32,118,32,63,32,118,101,99,51,40,48,46,48,44,32,114,103,98,46,103,98,41,32,58,13,10,32,32,32,32,114,103,98,46,103,32,61,61,32,118,32,63,32,118,101,99,51,40,50,46,48,44,32,114,103,98,46,98,114,41,32,58,13,10,32,32,32,32,118,101,99,51,40,52,46,48,44,32,114,103,98,46,114,103,41,59,13,10,32,32,32,32,102,108,111,97,116,32,104,32,61,32,70,82,65,67,95,80,73,95,51,32,42,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,116,101,114,109,115,46,120,32,42,32,99,32,43,32,116,101,114,109,115,46,121,32,45,32,116,101,114,109,115,46,122,44,32,99,41,59,13,10,32,32,32,32,102,108,111,97,116,32,115,32,61,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,99,44,32,118,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,104,44,32,115,44,32,108,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,49,46,48,41,41,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,118,101,99,51,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,61,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,50,53,41,41,44,13,10,32,32,32,32,40,40,118,101,99,51,40,49,54,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,45,32,49,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,43,32,52,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,44,13,10,32,32,32,32,115,113,114,116,40,100,101,115,116,67,111,108,111,114,41,41,59,13,10,32,32,32,32,118,101,99,51,32,102,97,99,116,111,114,32,61,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,40,115,114,99,67,111,108,111,114,32,42,32,50,46,48,32,45,32,49,46,48,41,32,42,32,102,97,99,116,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,100,101,115,116,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,115,114,99,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,115,114,99,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,32,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,100,101,115,116,67,111,108,111,114,46,121,44,32,115,114,99,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,115,114,99,67,111,108,111,114,44,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,120,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,49,46,48,41,32,45,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,98,115,40,100,101,115,116,67,111,108,111,114,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,99,111,109,112,111,115,105,116,101,72,83,76,40,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,115,114,99,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,111,112,41,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,52,32,99,111,109,112,111,115,105,116,101,40,118,101,99,52,32,115,114,99,67,111,108,111,114,44,13,10,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,105,102,32,40,111,112,32,61,61,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,41,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,70,73,88,77,69,40,112,99,119,97,108,116,111,110,41,58,32,87,104,97,116,32,115,104,111,117,108,100,32,116,104,101,32,111,117,116,112,117,116,32,97,108,112,104,97,32,98,101,32,104,101,114,101,63,13,10,32,32,32,32,118,101,99,50,32,100,101,115,116,84,101,120,67,111,111,114,100,32,61,32,102,114,97,103,67,111,111,114,100,32,47,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,52,32,100,101,115,116,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,100,101,115,116,84,101,120,116,117,114,101,44,32,100,101,115,116,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,118,101,99,51,32,98,108,101,110,100,101,100,82,71,66,32,61,32,99,111,109,112,111,115,105,116,101,82,71,66,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,114,103,98,44,32,111,112,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,97,32,42,32,40,49,46,48,32,45,32,100,101,115,116,67,111,108,111,114,46,97,41,32,42,32,115,114,99,67,111,108,111,114,46,114,103,98,32,43,13,10,32,32,32,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,32,42,32,98,108,101,110,100,101,100,82,71,66,32,43,13,10,32,32,32,32,40,49,46,48,32,45,32,115,114,99,67,111,108,111,114,46,97,41,32,42,32,100,101,115,116,67,111,108,111,114,46,114,103,98,44,13,10,32,32,32,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,77,97,115,107,115,13,10,13,10,102,108,111,97,116,32,115,97,109,112,108,101,77,97,115,107,40,13,10,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,44,13,10,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,44,13,10,105,110,116,32,109,97,115,107,67,116,114,108,41,32,123,13,10,32,32,32,32,105,102,32,40,109,97,115,107,67,116,114,108,32,61,61,32,48,41,32,114,101,116,117,114,110,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,105,118,101,99,50,32,109,97,115,107,84,101,120,67,111,111,114,100,73,32,61,32,105,118,101,99,50,40,102,108,111,111,114,40,109,97,115,107,84,101,120,67,111,111,114,100,46,120,121,41,41,59,13,10,13,10,32,32,32,32,118,101,99,52,32,116,101,120,101,108,32,61,32,116,101,120,116,117,114,101,40,109,97,115,107,84,101,120,116,117,114,101,44,32,40,118,101,99,50,40,109,97,115,107,84,101,120,67,111,111,114,100,73,32,47,32,105,118,101,99,50,40,49,44,32,52,41,41,32,43,32,48,46,53,41,32,47,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,99,111,118,101,114,97,103,101,32,61,32,116,101,120,101,108,91,109,97,115,107,84,101,120,67,111,111,114,100,73,46,121,32,37,32,52,93,32,43,32,109,97,115,107,84,101,120,67,111,111,114,100,46,122,59,13,10,13,10,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,41,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,97,98,115,40,99,111,118,101,114,97,103,101,41,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,49,46,48,32,45,32,97,98,115,40,49,46,48,32,45,32,109,111,100,40,99,111,118,101,114,97,103,101,44,32,50,46,48,41,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,109,97,115,107,65,108,112,104,97,44,32,99,111,118,101,114,97,103,101,41,59,13,10,125,13,10,13,10,47,47,32,77,97,105,110,32,102,117,110,99,116,105,111,110,13,10,13,10,118,101,99,52,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,48,44,13,10,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,105,110,116,32,99,116,114,108,44,13,10,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,118,101,99,52,32,98,97,115,101,67,111,108,111,114,44,13,10,105,110,116,32,116,105,108,101,67,116,114,108,41,32,123,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,109,97,115,107,46,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,48,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,32,32,32,32,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,32,61,32,49,46,48,59,13,10,32,32,32,32,109,97,115,107,65,108,112,104,97,32,61,32,115,97,109,112,108,101,77,97,115,107,40,109,97,115,107,65,108,112,104,97,44,32,109,97,115,107,84,101,120,116,117,114,101,48,44,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,32,109,97,115,107,67,116,114,108,48,41,59,13,10,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,99,111,108,111,114,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,99,111,109,98,105,110,101,32,102,108,97,103,46,13,10,32,32,32,32,105,110,116,32,99,111,108,111,114,48,67,111,109,98,105,110,101,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,59,13,10,13,10,32,32,32,32,47,47,32,68,111,32,99,111,109,98,105,110,105,110,103,46,13,10,32,32,32,32,105,102,32,40,99,111,108,111,114,48,67,111,109,98,105,110,101,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,102,105,108,116,101,114,32,102,108,97,103,46,13,10,32,32,32,32,32,32,32,32,105,110,116,32,99,111,108,111,114,48,70,105,108,116,101,114,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,68,111,32,102,105,108,116,101,114,105,110,103,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,99,111,108,111,114,48,32,61,32,102,105,108,116,101,114,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,48,70,105,108,116,101,114,13,10,32,32,32,32,32,32,32,32,41,59,13,10,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,99,111,108,111,114,44,32,99,111,108,111,114,48,44,32,99,111,108,111,114,48,67,111,109,98,105,110,101,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,109,97,115,107,46,13,10,32,32,32,32,99,111,108,111,114,46,97,32,42,61,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,99,111,109,112,111,115,105,116,101,46,13,10,32,32,32,32,105,110,116,32,99,111,109,112,111,115,105,116,101,79,112,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,59,13,10,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,112,111,115,105,116,101,40,99,111,108,111,114,44,32,100,101,115,116,84,101,120,116,117,114,101,44,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,32,102,114,97,103,67,111,111,114,100,44,32,99,111,109,112,111,115,105,116,101,79,112,41,59,13,10,13,10,32,32,32,32,47,47,32,80,114,101,109,117,108,116,105,112,108,121,32,97,108,112,104,97,46,13,10,32,32,32,32,99,111,108,111,114,46,114,103,98,32,42,61,32,99,111,108,111,114,46,97,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,47,47,35,105,110,99,108,117,100,101,32,34,116,105,108,101,95,118,101,114,116,101,120,46,105,110,99,46,103,108,115,108,34,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,118,101,114,116,101,120,46,105,110,99,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,118,101,99,52,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,97,109,112,108,101,114,50,68,32,115,114,99,84,101,120,116,117,114,101,44,32,118,101,99,50,32,115,99,97,108,101,44,32,118,101,99,50,32,111,114,105,103,105,110,67,111,111,114,100,44,32,105,110,116,32,101,110,116,114,121,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,115,114,99,84,101,120,116,117,114,101,44,32,40,111,114,105,103,105,110,67,111,111,114,100,32,43,32,118,101,99,50,40,48,46,53,41,32,43,32,118,101,99,50,40,101,110,116,114,121,44,32,48,41,41,32,42,32,115,99,97,108,101,41,59,13,10,125,13,10,13,10,118,111,105,100,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,13,10,118,101,99,50,32,112,111,115,105,116,105,111,110,44,13,10,105,110,116,32,99,111,108,111,114,69,110,116,114,121,44,13,10,115,97,109,112,108,101,114,50,68,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,118,101,99,50,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,13,10,111,117,116,32,118,101,99,50,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,66,97,115,101,67,111,108,111,114,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,111,117,116,32,105,110,116,32,111,117,116,67,116,114,108,41,32,123,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,83,99,97,108,101,32,61,32,118,101,99,50,40,49,46,48,41,32,47,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,32,61,32,118,101,99,50,40,99,111,108,111,114,69,110,116,114,121,32,37,32,49,50,56,32,42,32,49,48,44,32,99,111,108,111,114,69,110,116,114,121,32,47,32,49,50,56,41,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,48,41,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,49,41,59,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,50,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,51,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,52,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,53,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,54,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,55,41,59,13,10,32,32,32,32,118,101,99,52,32,101,120,116,114,97,32,32,32,32,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,56,41,59,13,10,32,32,32,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,32,61,32,109,97,116,50,40,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,41,32,42,32,112,111,115,105,116,105,111,110,32,43,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,46,120,121,59,13,10,32,32,32,32,111,117,116,66,97,115,101,67,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,32,32,32,32,111,117,116,67,116,114,108,32,61,32,105,110,116,40,101,120,116,114,97,46,120,41,59,13,10,125,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,117,105,110,116,32,99,97,108,99,117,108,97,116,101,84,105,108,101,73,110,100,101,120,40,117,105,110,116,32,98,117,102,102,101,114,79,102,102,115,101,116,44,32,117,118,101,99,52,32,116,105,108,101,82,101,99,116,44,32,117,118,101,99,50,32,116,105,108,101,67,111,111,114,100,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,98,117,102,102,101,114,79,102,102,115,101,116,32,43,32,116,105,108,101,67,111,111,114,100,46,121,32,42,32,40,116,105,108,101,82,101,99,116,46,122,32,45,32,116,105,108,101,82,101,99,116,46,120,41,32,43,32,116,105,108,101,67,111,111,114,100,46,120,59,13,10,125,13,10,13,10,105,118,101,99,50,32,116,111,73,109,97,103,101,67,111,111,114,100,115,40,105,118,101,99,50,32,99,111,111,114,100,115,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,105,118,101,99,50,40,99,111,111,114,100,115,46,120,44,32,105,110,116,40,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,46,121,41,32,45,32,99,111,111,114,100,115,46,121,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,32,61,32,105,118,101,99,50,40,103,108,95,87,111,114,107,71,114,111,117,112,73,68,46,120,121,41,59,13,10,32,32,32,32,105,118,101,99,50,32,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,32,61,32,105,118,101,99,50,40,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,121,41,32,42,32,105,118,101,99,50,40,49,44,32,52,41,59,13,10,32,32,32,32,105,118,101,99,50,32,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,61,32,116,105,108,101,67,111,111,114,100,32,42,32,105,118,101,99,50,40,117,84,105,108,101,83,105,122,101,41,32,43,32,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,59,13,10,13,10,32,32,32,32,47,47,32,81,117,105,99,107,32,101,120,105,116,32,105,102,32,116,104,105,115,32,105,115,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32,98,101,32,101,109,112,116,121,46,13,10,32,32,32,32,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,116,105,108,101,67,111,111,114,100,46,120,32,43,32,117,70,114,97,109,101,98,117,102,102,101,114,84,105,108,101,83,105,122,101,46,120,32,42,32,116,105,108,101,67,111,111,114,100,46,121,93,59,13,10,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,60,32,48,32,38,38,32,117,76,111,97,100,65,99,116,105,111,110,32,33,61,32,76,79,65,68,95,65,67,84,73,79,78,95,67,76,69,65,82,41,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,109,97,116,52,32,100,101,115,116,67,111,108,111,114,115,59,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,115,117,98,89,32,61,32,48,59,32,115,117,98,89,32,60,32,52,59,32,115,117,98,89,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,105,102,32,40,117,76,111,97,100,65,99,116,105,111,110,32,61,61,32,76,79,65,68,95,65,67,84,73,79,78,95,67,76,69,65,82,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,61,32,117,67,108,101,97,114,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,32,97,118,97,105,108,97,98,108,101,32,102,111,114,32,71,76,69,83,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,35,105,102,110,100,101,102,32,71,76,95,69,83,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,118,101,99,50,32,105,109,97,103,101,67,111,111,114,100,115,32,61,32,116,111,73,109,97,103,101,67,111,111,114,100,115,40,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,61,32,105,109,97,103,101,76,111,97,100,40,117,68,101,115,116,73,109,97,103,101,44,32,105,109,97,103,101,67,111,111,114,100,115,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,35,101,110,100,105,102,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,119,104,105,108,101,32,40,116,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,102,111,114,32,40,105,110,116,32,115,117,98,89,32,61,32,48,59,32,115,117,98,89,32,60,32,52,59,32,115,117,98,89,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,117,98,67,111,111,114,100,32,61,32,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,102,114,97,103,67,111,111,114,100,32,61,32,118,101,99,50,40,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,41,32,43,32,118,101,99,50,40,48,46,53,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,91,32,43,45,56,32,124,32,43,45,50,52,32,93,32,110,111,116,101,32,116,104,97,116,32,65,76,80,72,65,95,84,73,76,69,95,73,68,32,105,115,32,115,105,103,110,101,100,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,61,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,32,60,60,32,56,41,32,62,62,32,56,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,61,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,93,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,99,111,108,111,114,69,110,116,114,121,32,61,32,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,38,32,48,120,102,102,102,102,117,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,116,105,108,101,67,116,114,108,32,61,32,105,110,116,40,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,62,62,32,49,54,41,32,38,32,48,120,102,102,117,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,98,97,99,107,100,114,111,112,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,118,101,99,50,32,109,97,115,107,84,105,108,101,67,111,111,114,100,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,61,32,48,32,45,62,32,97,108,112,104,97,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,60,32,48,32,45,62,32,115,111,108,105,100,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,100,114,111,112,32,61,32,48,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,115,107,84,105,108,101,67,111,111,114,100,32,61,32,117,118,101,99,50,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,38,32,48,120,102,102,44,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,62,32,56,41,32,42,32,117,118,101,99,50,40,117,84,105,108,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,99,111,109,109,101,110,116,32,116,104,105,115,32,116,111,32,104,105,100,101,32,97,108,112,104,97,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,114,101,116,117,114,110,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,104,97,118,101,32,110,111,32,97,108,112,104,97,32,109,97,115,107,46,32,67,108,101,97,114,32,116,104,101,32,109,97,115,107,32,98,105,116,115,32,115,111,32,119,101,32,100,111,110,39,116,32,116,114,121,32,116,111,32,108,111,111,107,32,111,110,101,32,117,112,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,100,114,111,112,32,61,32,105,110,116,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,41,32,62,62,32,50,52,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,115,111,108,105,100,32,116,105,108,101,115,32,104,105,100,101,110,32,98,121,32,116,104,101,32,101,118,101,110,45,111,100,100,32,102,105,108,108,32,114,117,108,101,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,97,99,107,100,114,111,112,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,41,32,33,61,32,48,32,38,38,32,105,110,116,40,109,111,100,40,102,108,111,97,116,40,97,98,115,40,98,97,99,107,100,114,111,112,41,41,44,32,50,46,48,41,41,32,61,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,115,107,84,105,108,101,67,111,111,114,100,32,61,32,117,118,101,99,50,40,48,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,116,114,108,32,38,61,32,126,40,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,60,60,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,99,111,109,109,101,110,116,32,116,104,105,115,32,116,111,32,104,105,100,101,32,115,111,108,105,100,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,114,101,116,117,114,110,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,48,32,61,32,118,101,99,51,40,118,101,99,50,40,105,118,101,99,50,40,109,97,115,107,84,105,108,101,67,111,111,114,100,41,32,43,32,116,105,108,101,83,117,98,67,111,111,114,100,41,44,32,98,97,99,107,100,114,111,112,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,44,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,99,116,114,108,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,40,99,111,108,111,114,69,110,116,114,121,41,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,73,88,77,69,40,112,99,119,97,108,116,111,110,41,58,32,84,104,101,32,96,117,67,111,108,111,114,84,101,120,116,117,114,101,48,96,32,98,101,108,111,119,32,105,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,97,110,100,32,110,101,101,100,115,32,116,111,32,98,101,32,114,101,112,108,97,99,101,100,33,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,115,114,99,67,111,108,111,114,32,61,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,71,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,116,114,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,61,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,42,32,40,49,46,48,32,45,32,115,114,99,67,111,108,111,114,46,97,41,32,43,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,116,105,108,101,73,110,100,101,120,32,61,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,115,117,98,89,32,61,32,48,59,32,115,117,98,89,32,60,32,52,59,32,115,117,98,89,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,105,109,97,103,101,83,116,111,114,101,40,117,68,101,115,116,73,109,97,103,101,44,32,116,111,73,109,97,103,101,67,111,111,114,100,115,40,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,41,44,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,41,59,13,10,32,32,32,32,125,13,10,125,13,10}; + static uint8_t tile_comp[] = {35,118,101,114,115,105,111,110,32,52,51,48,13,10,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,105,109,97,103,101,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,108,95,115,105,122,101,95,120,32,61,32,49,54,44,32,108,111,99,97,108,95,115,105,122,101,95,121,32,61,32,52,41,32,105,110,59,13,10,13,10,35,100,101,102,105,110,101,32,76,79,65,68,95,65,67,84,73,79,78,95,67,76,69,65,82,32,32,32,48,13,10,35,100,101,102,105,110,101,32,76,79,65,68,95,65,67,84,73,79,78,95,76,79,65,68,32,32,32,32,49,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,70,73,82,83,84,95,70,73,76,76,95,73,68,32,32,32,32,32,32,32,32,32,32,32,32,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,32,32,32,50,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,51,13,10,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,90,66,117,102,102,101,114,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,77,97,115,107,84,101,120,116,117,114,101,48,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,71,97,109,109,97,76,85,84,59,13,10,13,10,47,47,32,78,111,32,115,105,109,117,108,116,97,110,101,111,117,115,32,105,109,97,103,101,32,82,69,65,68,32,38,32,87,82,73,84,69,32,102,111,114,32,71,76,69,83,46,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,119,114,105,116,101,111,110,108,121,32,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,55,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,73,109,97,103,101,59,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,114,103,98,97,56,44,32,98,105,110,100,105,110,103,32,61,32,55,41,32,117,110,105,102,111,114,109,32,105,109,97,103,101,50,68,32,117,68,101,115,116,73,109,97,103,101,59,13,10,35,101,110,100,105,102,13,10,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,44,32,98,105,110,100,105,110,103,32,61,32,56,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,32,32,32,32,118,101,99,52,32,117,67,108,101,97,114,67,111,108,111,114,59,13,10,32,32,32,32,105,110,116,32,117,76,111,97,100,65,99,116,105,111,110,44,32,117,80,97,100,48,44,32,117,80,97,100,49,44,32,117,80,97,100,50,59,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,13,10,32,32,32,32,105,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,84,105,108,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,59,13,10,32,32,32,32,118,101,99,50,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,48,41,32,98,117,102,102,101,114,32,98,84,105,108,101,115,32,123,13,10,47,47,32,91,48,93,58,32,112,97,116,104,32,73,68,13,10,47,47,32,91,49,93,58,32,110,101,120,116,32,116,105,108,101,32,73,68,13,10,47,47,32,91,50,93,58,32,102,105,114,115,116,32,102,105,108,108,32,73,68,13,10,47,47,32,91,51,93,58,32,98,97,99,107,100,114,111,112,32,100,101,108,116,97,32,117,112,112,101,114,32,56,32,98,105,116,115,44,32,97,108,112,104,97,32,116,105,108,101,32,73,68,32,108,111,119,101,114,32,50,52,32,98,105,116,115,13,10,47,47,32,91,52,93,58,32,99,111,108,111,114,47,99,116,114,108,47,98,97,99,107,100,114,111,112,32,119,111,114,100,13,10,32,32,32,32,117,105,110,116,32,105,84,105,108,101,115,91,93,59,13,10,125,59,13,10,13,10,114,101,115,116,114,105,99,116,32,114,101,97,100,111,110,108,121,32,108,97,121,111,117,116,40,115,116,100,52,51,48,44,32,98,105,110,100,105,110,103,32,61,32,49,41,32,98,117,102,102,101,114,32,98,70,105,114,115,116,84,105,108,101,77,97,112,32,123,13,10,32,32,32,32,105,110,116,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,93,59,13,10,125,59,13,10,13,10,47,47,35,105,110,99,108,117,100,101,32,34,116,105,108,101,95,102,114,97,103,109,101,110,116,46,105,110,99,46,103,108,115,108,34,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,102,114,97,103,109,101,110,116,46,105,110,99,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,47,47,32,32,32,32,32,32,77,97,115,107,32,85,86,32,48,32,32,32,32,32,32,32,32,32,77,97,115,107,32,85,86,32,49,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,77,73,78,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,77,97,115,107,32,32,48,32,32,43,45,45,45,45,45,62,32,32,77,97,115,107,32,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,118,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,65,112,112,108,121,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,71,80,85,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,97,115,107,32,43,45,45,45,45,62,32,32,67,111,109,112,111,115,105,116,101,32,32,43,45,45,45,45,62,66,108,101,110,100,101,114,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,94,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,124,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,67,111,108,111,114,32,48,32,32,43,45,45,45,45,45,62,32,32,67,111,108,111,114,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,70,105,108,116,101,114,32,32,32,124,32,32,195,151,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,67,111,108,111,114,32,85,86,32,48,32,32,32,32,32,32,32,32,67,111,108,111,114,32,85,86,32,49,13,10,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,54,95,80,73,32,32,32,49,46,57,48,57,56,53,57,51,49,55,49,48,50,55,52,52,51,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,80,73,95,51,32,32,32,49,46,48,52,55,49,57,55,53,53,49,49,57,54,53,57,55,54,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,32,32,32,32,32,32,32,48,120,52,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,32,32,32,32,32,32,32,32,32,32,48,120,48,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,32,32,32,32,32,32,32,32,32,32,48,120,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,32,32,32,32,32,32,32,32,32,48,120,53,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,32,32,32,32,32,48,120,54,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,32,32,32,32,32,32,48,120,55,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,32,32,32,32,32,32,48,120,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,32,32,32,32,32,32,48,120,57,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,32,32,32,32,32,32,48,120,97,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,32,32,32,32,32,32,32,48,120,98,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,99,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,32,32,32,32,32,32,48,120,100,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,32,32,32,32,32,32,32,32,32,32,32,48,120,101,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,32,32,32,32,32,32,48,120,102,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,32,32,32,32,32,32,32,32,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,32,32,32,32,32,32,32,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,49,48,13,10,13,10,47,47,32,67,111,108,111,114,32,99,111,109,98,105,110,105,110,103,13,10,13,10,118,101,99,52,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,101,99,52,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,52,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,84,101,120,116,32,102,105,108,116,101,114,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,108,111,97,116,32,111,102,102,115,101,116,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,118,101,99,50,40,111,102,102,115,101,116,44,32,48,46,48,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,83,97,109,112,108,101,115,32,57,32,116,97,112,115,32,97,114,111,117,110,100,32,116,104,101,32,99,117,114,114,101,110,116,32,112,105,120,101,108,46,13,10,118,111,105,100,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,76,101,102,116,44,13,10,111,117,116,32,102,108,111,97,116,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,82,105,103,104,116,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,118,101,99,52,32,107,101,114,110,101,108,44,13,10,102,108,111,97,116,32,111,110,101,80,105,120,101,108,41,32,123,13,10,32,32,32,32,98,111,111,108,32,119,105,100,101,32,61,32,107,101,114,110,101,108,46,120,32,62,32,48,46,48,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,76,101,102,116,32,61,13,10,32,32,32,32,118,101,99,52,40,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,32,61,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,48,46,48,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,82,105,103,104,116,32,61,13,10,32,32,32,32,118,101,99,52,40,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,32,97,108,112,104,97,48,44,32,118,101,99,51,32,97,108,112,104,97,49,44,32,118,101,99,52,32,107,101,114,110,101,108,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,111,116,40,97,108,112,104,97,48,44,32,107,101,114,110,101,108,41,32,43,32,100,111,116,40,97,108,112,104,97,49,44,32,107,101,114,110,101,108,46,122,121,120,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,108,111,97,116,32,98,103,67,111,108,111,114,44,32,102,108,111,97,116,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,103,97,109,109,97,76,85,84,44,32,118,101,99,50,40,102,103,67,111,108,111,114,44,32,49,46,48,32,45,32,98,103,67,111,108,111,114,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,96,102,103,67,111,108,111,114,96,32,105,115,32,105,110,32,108,105,110,101,97,114,32,115,112,97,99,101,46,13,10,118,101,99,51,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,101,99,51,32,98,103,67,111,108,111,114,44,32,118,101,99,51,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,114,44,32,102,103,67,111,108,111,114,46,114,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,103,44,32,102,103,67,111,108,111,114,46,103,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,98,44,32,102,103,67,111,108,111,114,46,98,44,32,103,97,109,109,97,76,85,84,41,41,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,107,101,114,110,101,108,91,48,93,32,32,107,101,114,110,101,108,91,49,93,32,32,107,101,114,110,101,108,91,50,93,32,32,107,101,114,110,101,108,91,51,93,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,98,103,67,111,108,111,114,46,114,32,32,98,103,67,111,108,111,114,46,103,32,32,98,103,67,111,108,111,114,46,98,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,102,103,67,111,108,111,114,46,114,32,32,102,103,67,111,108,111,114,46,103,32,32,102,103,67,111,108,111,114,46,98,32,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,13,10,118,101,99,52,32,102,105,108,116,101,114,84,101,120,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,52,32,107,101,114,110,101,108,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,118,101,99,51,32,98,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,114,103,98,59,13,10,32,32,32,32,118,101,99,51,32,102,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,114,103,98,59,13,10,32,32,32,32,98,111,111,108,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,97,32,33,61,32,48,46,48,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,100,101,102,114,105,110,103,105,110,103,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,118,101,99,51,32,97,108,112,104,97,59,13,10,32,32,32,32,105,102,32,40,107,101,114,110,101,108,46,119,32,61,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,46,114,114,114,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,97,108,112,104,97,76,101,102,116,44,32,97,108,112,104,97,82,105,103,104,116,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,97,108,112,104,97,67,101,110,116,101,114,59,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,97,108,112,104,97,76,101,102,116,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,67,101,110,116,101,114,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,44,13,10,32,32,32,32,32,32,32,32,49,46,48,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,46,120,41,59,13,10,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,114,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,97,108,112,104,97,76,101,102,116,44,32,118,101,99,51,40,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,41,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,121,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,41,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,122,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,98,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,41,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,46,121,122,119,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,118,101,99,51,40,114,44,32,103,44,32,98,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,103,97,109,109,97,32,99,111,114,114,101,99,116,105,111,110,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,105,102,32,40,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,41,13,10,32,32,32,32,97,108,112,104,97,32,61,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,98,103,67,111,108,111,114,44,32,97,108,112,104,97,44,32,103,97,109,109,97,76,85,84,41,59,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,109,105,120,40,98,103,67,111,108,111,114,44,32,102,103,67,111,108,111,114,44,32,97,108,112,104,97,41,44,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,79,116,104,101,114,32,102,105,108,116,101,114,115,13,10,13,10,47,47,32,84,104,105,115,32,105,115,32,98,97,115,101,100,32,111,110,32,80,105,120,109,97,110,32,40,77,73,84,32,108,105,99,101,110,115,101,41,46,32,67,111,112,121,32,97,110,100,32,112,97,115,116,105,110,103,32,116,104,101,32,101,120,99,101,108,108,101,110,116,32,99,111,109,109,101,110,116,13,10,47,47,32,102,114,111,109,32,116,104,101,114,101,58,13,10,13,10,47,47,32,73,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,115,32,102,111,108,108,111,119,105,110,103,32,116,104,101,32,80,68,70,32,115,112,101,99,105,102,105,99,97,116,105,111,110,46,13,10,47,47,32,83,101,101,32,115,101,99,116,105,111,110,32,56,46,55,46,52,46,53,46,52,32,84,121,112,101,32,51,32,40,82,97,100,105,97,108,41,32,83,104,97,100,105,110,103,115,32,111,102,32,116,104,101,32,80,68,70,32,82,101,102,101,114,101,110,99,101,13,10,47,47,32,77,97,110,117,97,108,32,40,80,68,70,32,51,50,48,48,48,45,49,58,50,48,48,56,32,97,116,32,116,104,101,32,116,105,109,101,32,111,102,32,116,104,105,115,32,119,114,105,116,105,110,103,41,46,13,10,47,47,13,10,47,47,32,73,110,32,116,104,101,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,32,112,114,111,98,108,101,109,32,119,101,32,97,114,101,32,103,105,118,101,110,32,116,119,111,32,99,105,114,99,108,101,115,32,40,99,226,130,129,44,114,226,130,129,41,32,97,110,100,13,10,47,47,32,40,99,226,130,130,44,114,226,130,130,41,32,116,104,97,116,32,100,101,102,105,110,101,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,116,115,101,108,102,46,13,10,47,47,13,10,47,47,32,77,97,116,104,101,109,97,116,105,99,97,108,108,121,32,116,104,101,32,103,114,97,100,105,101,110,116,32,99,97,110,32,98,101,32,100,101,102,105,110,101,100,32,97,115,32,116,104,101,32,102,97,109,105,108,121,32,111,102,32,99,105,114,99,108,101,115,13,10,47,47,13,10,47,47,32,32,32,32,32,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,44,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,41,13,10,47,47,13,10,47,47,32,101,120,99,108,117,100,105,110,103,32,116,104,111,115,101,32,99,105,114,99,108,101,115,32,119,104,111,115,101,32,114,97,100,105,117,115,32,119,111,117,108,100,32,98,101,32,60,32,48,46,32,87,104,101,110,32,97,32,112,111,105,110,116,13,10,47,47,32,98,101,108,111,110,103,115,32,116,111,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,99,105,114,99,108,101,44,32,116,104,101,32,111,110,101,32,119,105,116,104,32,97,32,98,105,103,103,101,114,32,116,32,105,115,32,116,104,101,32,111,110,108,121,13,10,47,47,32,111,110,101,32,116,104,97,116,32,99,111,110,116,114,105,98,117,116,101,115,32,116,111,32,105,116,115,32,99,111,108,111,114,46,32,87,104,101,110,32,97,32,112,111,105,110,116,32,100,111,101,115,32,110,111,116,32,98,101,108,111,110,103,13,10,47,47,32,116,111,32,97,110,121,32,111,102,32,116,104,101,32,99,105,114,99,108,101,115,44,32,105,116,32,105,115,32,116,114,97,110,115,112,97,114,101,110,116,32,98,108,97,99,107,44,32,105,46,101,46,32,82,71,66,65,32,40,48,44,32,48,44,32,48,44,32,48,41,46,13,10,47,47,32,70,117,114,116,104,101,114,32,108,105,109,105,116,97,116,105,111,110,115,32,111,110,32,116,104,101,32,114,97,110,103,101,32,111,102,32,118,97,108,117,101,115,32,102,111,114,32,116,32,97,114,101,32,105,109,112,111,115,101,100,32,119,104,101,110,13,10,47,47,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,44,32,110,97,109,101,108,121,32,116,32,109,117,115,116,32,98,101,108,111,110,103,32,116,111,32,91,48,44,49,93,46,13,10,47,47,13,10,47,47,32,84,104,101,32,103,114,97,112,104,105,99,97,108,32,114,101,115,117,108,116,32,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,100,114,97,119,105,110,103,32,116,104,101,32,118,97,108,105,100,32,40,114,97,100,105,117,115,32,62,32,48,41,13,10,47,47,32,99,105,114,99,108,101,115,32,119,105,116,104,32,105,110,99,114,101,97,115,105,110,103,32,116,32,105,110,32,91,45,226,136,158,44,32,43,226,136,158,93,32,40,111,114,32,105,110,32,91,48,44,49,93,32,105,102,32,116,104,101,32,103,114,97,100,105,101,110,116,13,10,47,47,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,41,32,117,115,105,110,103,32,83,79,85,82,67,69,32,111,112,101,114,97,116,111,114,32,99,111,109,112,111,115,105,116,105,111,110,46,13,10,47,47,13,10,47,47,32,73,116,32,108,111,111,107,115,32,108,105,107,101,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,116,111,119,97,114,100,115,32,116,104,101,32,118,105,101,119,101,114,32,105,102,32,116,104,101,32,101,110,100,105,110,103,32,99,105,114,99,108,101,13,10,47,47,32,105,115,32,115,109,97,108,108,101,114,32,116,104,97,110,32,116,104,101,32,115,116,97,114,116,105,110,103,32,111,110,101,44,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,105,110,115,105,100,101,32,116,104,101,32,112,97,103,101,32,105,102,13,10,47,47,32,116,104,101,32,115,116,97,114,116,105,110,103,32,99,105,114,99,108,101,32,105,115,32,116,104,101,32,115,109,97,108,108,101,114,32,111,110,101,32,97,110,100,32,108,105,107,101,32,97,32,99,121,108,105,110,100,101,114,32,105,102,32,116,104,101,121,13,10,47,47,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,114,97,100,105,117,115,46,13,10,47,47,13,10,47,47,32,87,104,97,116,32,119,101,32,97,99,116,117,97,108,108,121,32,100,111,32,105,115,44,32,103,105,118,101,110,32,116,104,101,32,112,111,105,110,116,32,119,104,111,115,101,32,99,111,108,111,114,32,119,101,32,97,114,101,32,105,110,116,101,114,101,115,116,101,100,13,10,47,47,32,105,110,44,32,99,111,109,112,117,116,101,32,116,104,101,32,116,32,118,97,108,117,101,115,32,102,111,114,32,116,104,97,116,32,112,111,105,110,116,44,32,115,111,108,118,105,110,103,32,102,111,114,32,116,32,105,110,58,13,10,47,47,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,32,45,32,112,41,32,61,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,13,10,47,47,13,10,47,47,32,76,101,116,39,115,32,114,101,119,114,105,116,101,32,105,116,32,105,110,32,97,32,115,105,109,112,108,101,114,32,119,97,121,44,32,98,121,32,100,101,102,105,110,105,110,103,32,115,111,109,101,32,97,117,120,105,108,105,97,114,121,13,10,47,47,32,118,97,114,105,97,98,108,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,99,100,32,61,32,99,226,130,130,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,112,100,32,61,32,112,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,100,114,32,61,32,114,226,130,130,32,45,32,114,226,130,129,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,116,194,183,99,100,32,45,32,112,100,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,119,104,105,99,104,32,97,99,116,117,97,108,108,121,32,109,101,97,110,115,13,10,47,47,13,10,47,47,32,32,32,32,32,104,121,112,111,116,40,116,194,183,99,100,120,32,45,32,112,100,120,44,32,116,194,183,99,100,121,32,45,32,112,100,121,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,111,114,13,10,47,47,13,10,47,47,32,32,32,32,32,226,142,183,40,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,46,13,10,47,47,13,10,47,47,32,73,102,32,119,101,32,105,109,112,111,115,101,32,40,97,115,32,115,116,97,116,101,100,32,101,97,114,108,105,101,114,41,32,116,104,97,116,32,114,226,130,129,32,43,32,116,194,183,100,114,32,226,137,165,32,48,44,32,105,116,32,98,101,99,111,109,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,32,61,32,40,114,226,130,129,32,43,32,116,194,183,100,114,41,194,178,13,10,47,47,13,10,47,47,32,119,104,101,114,101,32,119,101,32,99,97,110,32,97,99,116,117,97,108,108,121,32,101,120,112,97,110,100,32,116,104,101,32,115,113,117,97,114,101,115,32,97,110,100,32,115,111,108,118,101,32,102,111,114,32,116,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,194,178,99,100,120,194,178,32,45,32,50,116,194,183,99,100,120,194,183,112,100,120,32,43,32,112,100,120,194,178,32,43,32,116,194,178,99,100,121,194,178,32,45,32,50,116,194,183,99,100,121,194,183,112,100,121,32,43,32,112,100,121,194,178,32,61,13,10,47,47,32,32,32,32,32,32,32,61,32,114,226,130,129,194,178,32,43,32,50,194,183,114,226,130,129,194,183,116,194,183,100,114,32,43,32,116,194,178,194,183,100,114,194,178,13,10,47,47,13,10,47,47,32,32,32,32,32,40,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,41,116,194,178,32,45,32,50,40,99,100,120,194,183,112,100,120,32,43,32,99,100,121,194,183,112,100,121,32,43,32,114,226,130,129,194,183,100,114,41,116,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,40,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,41,32,61,32,48,13,10,47,47,13,10,47,47,32,32,32,32,32,65,32,61,32,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,13,10,47,47,32,32,32,32,32,66,32,61,32,112,100,120,194,183,99,100,120,32,43,32,112,100,121,194,183,99,100,121,32,43,32,114,226,130,129,194,183,100,114,13,10,47,47,32,32,32,32,32,67,32,61,32,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,13,10,47,47,32,32,32,32,32,65,116,194,178,32,45,32,50,66,116,32,43,32,67,32,61,32,48,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,115,32,40,117,110,108,101,115,115,32,116,104,101,32,101,113,117,97,116,105,111,110,32,100,101,103,101,110,101,114,97,116,101,115,32,98,101,99,97,117,115,101,32,111,102,32,65,32,61,32,48,41,32,97,114,101,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,32,61,32,40,66,32,194,177,32,226,142,183,40,66,194,178,32,45,32,65,194,183,67,41,41,32,47,32,65,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,32,119,101,32,97,114,101,32,103,111,105,110,103,32,116,111,32,112,114,101,102,101,114,32,105,115,32,116,104,101,32,98,105,103,103,101,114,32,111,110,101,44,32,117,110,108,101,115,115,32,116,104,101,13,10,47,47,32,114,97,100,105,117,115,32,97,115,115,111,99,105,97,116,101,100,32,116,111,32,105,116,32,105,115,32,110,101,103,97,116,105,118,101,32,40,111,114,32,105,116,32,102,97,108,108,115,32,111,117,116,115,105,100,101,32,116,104,101,32,118,97,108,105,100,32,116,13,10,47,47,32,114,97,110,103,101,41,46,13,10,47,47,13,10,47,47,32,65,100,100,105,116,105,111,110,97,108,32,111,98,115,101,114,118,97,116,105,111,110,115,32,40,117,115,101,102,117,108,32,102,111,114,32,111,112,116,105,109,105,122,97,116,105,111,110,115,41,58,13,10,47,47,32,65,32,100,111,101,115,32,110,111,116,32,100,101,112,101,110,100,32,111,110,32,112,13,10,47,47,13,10,47,47,32,65,32,60,32,48,32,226,159,186,32,111,110,101,32,111,102,32,116,104,101,32,116,119,111,32,99,105,114,99,108,101,115,32,99,111,109,112,108,101,116,101,108,121,32,99,111,110,116,97,105,110,115,32,116,104,101,32,111,116,104,101,114,32,111,110,101,13,10,47,47,32,32,32,226,159,186,32,102,111,114,32,101,118,101,114,121,32,112,44,32,116,104,101,32,114,97,100,105,105,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,101,32,116,119,111,32,116,32,115,111,108,117,116,105,111,110,115,32,104,97,118,101,13,10,47,47,32,32,32,32,32,32,32,111,112,112,111,115,105,116,101,32,115,105,103,110,13,10,47,47,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,108,105,110,101,70,114,111,109,46,120,32,32,108,105,110,101,70,114,111,109,46,121,32,32,108,105,110,101,86,101,99,116,111,114,46,120,32,32,32,32,108,105,110,101,86,101,99,116,111,114,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,114,97,100,105,105,46,120,32,32,32,32,32,114,97,100,105,105,46,121,32,32,32,32,32,117,118,79,114,105,103,105,110,46,120,32,32,32,32,32,32,117,118,79,114,105,103,105,110,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,118,101,99,50,32,108,105,110,101,70,114,111,109,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,44,32,108,105,110,101,86,101,99,116,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,114,97,100,105,105,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,44,32,117,118,79,114,105,103,105,110,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,122,119,59,13,10,13,10,32,32,32,32,118,101,99,50,32,100,80,32,61,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,108,105,110,101,70,114,111,109,44,32,100,67,32,61,32,108,105,110,101,86,101,99,116,111,114,59,13,10,32,32,32,32,102,108,111,97,116,32,100,82,32,61,32,114,97,100,105,105,46,121,32,45,32,114,97,100,105,105,46,120,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,100,111,116,40,100,67,44,32,100,67,41,32,45,32,100,82,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,98,32,61,32,100,111,116,40,100,80,44,32,100,67,41,32,43,32,114,97,100,105,105,46,120,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,100,111,116,40,100,80,44,32,100,80,41,32,45,32,114,97,100,105,105,46,120,32,42,32,114,97,100,105,105,46,120,59,13,10,32,32,32,32,102,108,111,97,116,32,100,105,115,99,114,105,109,32,61,32,98,32,42,32,98,32,45,32,97,32,42,32,99,59,13,10,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,105,102,32,40,100,105,115,99,114,105,109,32,33,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,116,115,32,61,32,118,101,99,50,40,115,113,114,116,40,100,105,115,99,114,105,109,41,32,42,32,118,101,99,50,40,49,46,48,44,32,45,49,46,48,41,32,43,32,118,101,99,50,40,98,41,41,32,47,32,118,101,99,50,40,97,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,115,46,120,32,62,32,116,115,46,121,41,13,10,32,32,32,32,32,32,32,32,116,115,32,61,32,116,115,46,121,120,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,116,32,61,32,116,115,46,120,32,62,61,32,48,46,48,32,63,32,116,115,46,120,32,58,32,116,115,46,121,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,117,118,79,114,105,103,105,110,32,43,32,118,101,99,50,40,116,44,32,48,46,48,41,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,115,114,99,79,102,102,115,101,116,46,120,32,32,32,115,114,99,79,102,102,115,101,116,46,121,32,32,32,115,117,112,112,111,114,116,32,32,32,32,32,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,103,97,117,115,115,67,111,101,102,102,46,120,32,32,103,97,117,115,115,67,111,101,102,102,46,121,32,32,103,97,117,115,115,67,111,101,102,102,46,122,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,66,108,117,114,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,105,110,116,32,115,117,112,112,111,114,116,32,61,32,105,110,116,40,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,103,97,117,115,115,67,111,101,102,102,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,122,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,117,112,32,111,117,114,32,105,110,99,114,101,109,101,110,116,97,108,32,99,97,108,99,117,108,97,116,105,111,110,46,13,10,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,42,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,99,111,109,109,111,110,32,116,114,105,99,107,32,116,104,97,116,32,108,101,116,115,32,117,115,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,102,105,108,116,101,114,105,110,103,32,104,97,114,100,119,97,114,101,32,116,111,32,101,118,97,108,117,97,116,101,32,116,119,111,13,10,32,32,32,32,47,47,32,116,101,120,101,108,115,32,97,116,32,97,32,116,105,109,101,46,32,84,104,101,32,98,97,115,105,99,32,112,114,105,110,99,105,112,108,101,32,105,115,32,116,104,97,116,44,32,105,102,32,99,48,32,97,110,100,32,99,49,32,97,114,101,32,99,111,108,111,114,115,32,111,102,32,97,100,106,97,99,101,110,116,32,116,101,120,101,108,115,13,10,32,32,32,32,47,47,32,97,110,100,32,107,48,32,97,110,100,32,107,49,32,97,114,101,32,97,114,98,105,116,114,97,114,121,32,102,97,99,116,111,114,115,44,32,116,104,101,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,13,10,32,32,32,32,47,47,32,96,40,107,48,32,43,32,107,49,41,32,42,32,108,101,114,112,40,99,48,44,32,99,49,44,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,41,96,46,32,76,105,110,101,97,114,32,105,110,116,101,114,112,111,108,97,116,105,111,110,44,32,97,115,32,112,101,114,102,111,114,109,101,100,32,98,121,32,116,104,101,13,10,32,32,32,32,47,47,32,116,101,120,116,117,114,105,110,103,32,104,97,114,100,119,97,114,101,32,119,104,101,110,32,115,97,109,112,108,105,110,103,32,97,100,106,97,99,101,110,116,32,112,105,120,101,108,115,32,105,110,32,111,110,101,32,100,105,114,101,99,116,105,111,110,44,32,101,118,97,108,117,97,116,101,115,13,10,32,32,32,32,47,47,32,96,108,101,114,112,40,99,48,44,32,99,49,44,32,116,41,96,32,119,104,101,114,101,32,116,32,105,115,32,116,104,101,32,111,102,102,115,101,116,32,102,114,111,109,32,116,104,101,32,116,101,120,101,108,32,119,105,116,104,32,99,111,108,111,114,32,96,99,48,96,46,32,84,111,32,101,118,97,108,117,97,116,101,32,116,104,101,13,10,32,32,32,32,47,47,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,44,32,116,104,101,114,101,102,111,114,101,44,32,119,101,32,99,97,110,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,104,97,114,100,119,97,114,101,32,116,111,32,112,101,114,102,111,114,109,32,108,105,110,101,97,114,13,10,32,32,32,32,47,47,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,116,104,32,96,116,32,61,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,96,46,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,105,32,61,32,49,59,32,105,32,60,61,32,115,117,112,112,111,114,116,59,32,105,32,43,61,32,50,41,32,123,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,43,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,32,61,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,42,32,40,102,108,111,97,116,40,105,41,32,43,32,103,97,117,115,115,67,111,101,102,102,46,120,32,47,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,41,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,43,61,32,40,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,115,114,99,79,102,102,115,101,116,41,32,43,13,10,32,32,32,32,32,32,32,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,115,114,99,79,102,102,115,101,116,41,41,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,83,117,109,32,43,61,32,50,46,48,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,32,47,32,103,97,117,115,115,83,117,109,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,32,123,13,10,32,32,32,32,118,101,99,52,32,115,114,99,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,109,97,116,52,32,99,111,108,111,114,77,97,116,114,105,120,32,61,32,109,97,116,52,40,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,32,102,105,108,116,101,114,80,97,114,97,109,115,51,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,77,97,116,114,105,120,32,42,32,115,114,99,67,111,108,111,114,32,43,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,78,111,110,101,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,105,110,116,32,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,66,108,117,114,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,84,101,120,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,78,111,110,101,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,99,111,108,111,114,84,101,120,116,117,114,101,41,59,13,10,125,13,10,13,10,47,47,32,67,111,109,112,111,115,105,116,105,110,103,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,98,118,101,99,51,32,99,111,110,100,44,32,118,101,99,51,32,105,102,84,114,117,101,44,32,118,101,99,51,32,105,102,70,97,108,115,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,99,111,110,100,46,120,32,63,32,105,102,84,114,117,101,46,120,32,58,32,105,102,70,97,108,115,101,46,120,44,13,10,32,32,32,32,99,111,110,100,46,121,32,63,32,105,102,84,114,117,101,46,121,32,58,32,105,102,70,97,108,115,101,46,121,44,13,10,32,32,32,32,99,111,110,100,46,122,32,63,32,105,102,84,114,117,101,46,122,32,58,32,105,102,70,97,108,115,101,46,122,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,108,111,97,116,32,110,117,109,44,32,102,108,111,97,116,32,100,101,110,111,109,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,110,111,109,32,33,61,32,48,46,48,32,63,32,110,117,109,32,47,32,100,101,110,111,109,32,58,32,48,46,48,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,98,118,101,99,51,32,100,101,115,116,90,101,114,111,32,61,32,101,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,48,41,41,44,32,115,114,99,79,110,101,32,61,32,101,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,100,101,115,116,90,101,114,111,44,13,10,32,32,32,32,118,101,99,51,40,48,46,48,41,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,115,114,99,79,110,101,44,32,118,101,99,51,40,49,46,48,41,44,32,100,101,115,116,67,111,108,111,114,32,47,32,40,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,41,41,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,72,83,76,95,116,111,95,82,71,66,95,97,108,116,101,114,110,97,116,105,118,101,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,101,99,51,32,104,115,108,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,104,115,108,46,121,32,42,32,109,105,110,40,104,115,108,46,122,44,32,49,46,48,32,45,32,104,115,108,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,107,115,32,61,32,109,111,100,40,118,101,99,51,40,48,46,48,44,32,56,46,48,44,32,52,46,48,41,32,43,32,118,101,99,51,40,104,115,108,46,120,32,42,32,70,82,65,67,95,54,95,80,73,41,44,32,49,50,46,48,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,104,115,108,46,122,122,122,32,45,32,99,108,97,109,112,40,109,105,110,40,107,115,32,45,32,118,101,99,51,40,51,46,48,41,44,32,118,101,99,51,40,57,46,48,41,32,45,32,107,115,41,44,32,45,49,46,48,44,32,49,46,48,41,32,42,32,97,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,70,114,111,109,95,82,71,66,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,101,99,51,32,114,103,98,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,118,32,61,32,109,97,120,40,109,97,120,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,44,32,120,77,105,110,32,61,32,109,105,110,40,109,105,110,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,118,32,45,32,120,77,105,110,44,32,108,32,61,32,109,105,120,40,120,77,105,110,44,32,118,44,32,48,46,53,41,59,13,10,32,32,32,32,118,101,99,51,32,116,101,114,109,115,32,61,32,114,103,98,46,114,32,61,61,32,118,32,63,32,118,101,99,51,40,48,46,48,44,32,114,103,98,46,103,98,41,32,58,13,10,32,32,32,32,114,103,98,46,103,32,61,61,32,118,32,63,32,118,101,99,51,40,50,46,48,44,32,114,103,98,46,98,114,41,32,58,13,10,32,32,32,32,118,101,99,51,40,52,46,48,44,32,114,103,98,46,114,103,41,59,13,10,32,32,32,32,102,108,111,97,116,32,104,32,61,32,70,82,65,67,95,80,73,95,51,32,42,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,116,101,114,109,115,46,120,32,42,32,99,32,43,32,116,101,114,109,115,46,121,32,45,32,116,101,114,109,115,46,122,44,32,99,41,59,13,10,32,32,32,32,102,108,111,97,116,32,115,32,61,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,99,44,32,118,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,104,44,32,115,44,32,108,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,49,46,48,41,41,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,118,101,99,51,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,61,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,50,53,41,41,44,13,10,32,32,32,32,40,40,118,101,99,51,40,49,54,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,45,32,49,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,43,32,52,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,44,13,10,32,32,32,32,115,113,114,116,40,100,101,115,116,67,111,108,111,114,41,41,59,13,10,32,32,32,32,118,101,99,51,32,102,97,99,116,111,114,32,61,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,40,115,114,99,67,111,108,111,114,32,42,32,50,46,48,32,45,32,49,46,48,41,32,42,32,102,97,99,116,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,100,101,115,116,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,115,114,99,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,115,114,99,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,32,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,100,101,115,116,67,111,108,111,114,46,121,44,32,115,114,99,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,115,114,99,67,111,108,111,114,44,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,120,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,49,46,48,41,32,45,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,98,115,40,100,101,115,116,67,111,108,111,114,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,99,111,109,112,111,115,105,116,101,72,83,76,40,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,115,114,99,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,111,112,41,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,52,32,99,111,109,112,111,115,105,116,101,40,118,101,99,52,32,115,114,99,67,111,108,111,114,44,13,10,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,105,102,32,40,111,112,32,61,61,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,41,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,70,73,88,77,69,40,112,99,119,97,108,116,111,110,41,58,32,87,104,97,116,32,115,104,111,117,108,100,32,116,104,101,32,111,117,116,112,117,116,32,97,108,112,104,97,32,98,101,32,104,101,114,101,63,13,10,32,32,32,32,118,101,99,50,32,100,101,115,116,84,101,120,67,111,111,114,100,32,61,32,102,114,97,103,67,111,111,114,100,32,47,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,52,32,100,101,115,116,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,100,101,115,116,84,101,120,116,117,114,101,44,32,100,101,115,116,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,118,101,99,51,32,98,108,101,110,100,101,100,82,71,66,32,61,32,99,111,109,112,111,115,105,116,101,82,71,66,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,114,103,98,44,32,111,112,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,97,32,42,32,40,49,46,48,32,45,32,100,101,115,116,67,111,108,111,114,46,97,41,32,42,32,115,114,99,67,111,108,111,114,46,114,103,98,32,43,13,10,32,32,32,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,32,42,32,98,108,101,110,100,101,100,82,71,66,32,43,13,10,32,32,32,32,40,49,46,48,32,45,32,115,114,99,67,111,108,111,114,46,97,41,32,42,32,100,101,115,116,67,111,108,111,114,46,114,103,98,44,13,10,32,32,32,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,77,97,115,107,115,13,10,13,10,102,108,111,97,116,32,115,97,109,112,108,101,77,97,115,107,40,13,10,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,44,13,10,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,44,13,10,105,110,116,32,109,97,115,107,67,116,114,108,41,32,123,13,10,32,32,32,32,105,102,32,40,109,97,115,107,67,116,114,108,32,61,61,32,48,41,32,114,101,116,117,114,110,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,105,118,101,99,50,32,109,97,115,107,84,101,120,67,111,111,114,100,73,32,61,32,105,118,101,99,50,40,102,108,111,111,114,40,109,97,115,107,84,101,120,67,111,111,114,100,46,120,121,41,41,59,13,10,13,10,32,32,32,32,118,101,99,52,32,116,101,120,101,108,32,61,32,116,101,120,116,117,114,101,40,109,97,115,107,84,101,120,116,117,114,101,44,32,40,118,101,99,50,40,109,97,115,107,84,101,120,67,111,111,114,100,73,32,47,32,105,118,101,99,50,40,49,44,32,52,41,41,32,43,32,48,46,53,41,32,47,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,99,111,118,101,114,97,103,101,32,61,32,116,101,120,101,108,91,109,97,115,107,84,101,120,67,111,111,114,100,73,46,121,32,37,32,52,93,32,43,32,109,97,115,107,84,101,120,67,111,111,114,100,46,122,59,13,10,13,10,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,41,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,97,98,115,40,99,111,118,101,114,97,103,101,41,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,49,46,48,32,45,32,97,98,115,40,49,46,48,32,45,32,109,111,100,40,99,111,118,101,114,97,103,101,44,32,50,46,48,41,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,109,97,115,107,65,108,112,104,97,44,32,99,111,118,101,114,97,103,101,41,59,13,10,125,13,10,13,10,47,47,32,77,97,105,110,32,102,117,110,99,116,105,111,110,13,10,13,10,118,101,99,52,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,48,44,13,10,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,105,110,116,32,99,116,114,108,44,13,10,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,118,101,99,52,32,98,97,115,101,67,111,108,111,114,44,13,10,105,110,116,32,116,105,108,101,67,116,114,108,41,32,123,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,109,97,115,107,46,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,48,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,32,32,32,32,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,32,61,32,49,46,48,59,13,10,32,32,32,32,109,97,115,107,65,108,112,104,97,32,61,32,115,97,109,112,108,101,77,97,115,107,40,109,97,115,107,65,108,112,104,97,44,32,109,97,115,107,84,101,120,116,117,114,101,48,44,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,32,109,97,115,107,67,116,114,108,48,41,59,13,10,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,99,111,108,111,114,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,99,111,109,98,105,110,101,32,102,108,97,103,46,13,10,32,32,32,32,105,110,116,32,99,111,108,111,114,48,67,111,109,98,105,110,101,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,59,13,10,13,10,32,32,32,32,47,47,32,68,111,32,99,111,109,98,105,110,105,110,103,46,13,10,32,32,32,32,105,102,32,40,99,111,108,111,114,48,67,111,109,98,105,110,101,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,102,105,108,116,101,114,32,102,108,97,103,46,13,10,32,32,32,32,32,32,32,32,105,110,116,32,99,111,108,111,114,48,70,105,108,116,101,114,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,68,111,32,102,105,108,116,101,114,105,110,103,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,99,111,108,111,114,48,32,61,32,102,105,108,116,101,114,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,48,70,105,108,116,101,114,13,10,32,32,32,32,32,32,32,32,41,59,13,10,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,99,111,108,111,114,44,32,99,111,108,111,114,48,44,32,99,111,108,111,114,48,67,111,109,98,105,110,101,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,109,97,115,107,46,13,10,32,32,32,32,99,111,108,111,114,46,97,32,42,61,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,99,111,109,112,111,115,105,116,101,46,13,10,32,32,32,32,105,110,116,32,99,111,109,112,111,115,105,116,101,79,112,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,59,13,10,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,112,111,115,105,116,101,40,99,111,108,111,114,44,32,100,101,115,116,84,101,120,116,117,114,101,44,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,32,102,114,97,103,67,111,111,114,100,44,32,99,111,109,112,111,115,105,116,101,79,112,41,59,13,10,13,10,32,32,32,32,47,47,32,80,114,101,109,117,108,116,105,112,108,121,32,97,108,112,104,97,46,13,10,32,32,32,32,99,111,108,111,114,46,114,103,98,32,42,61,32,99,111,108,111,114,46,97,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,47,47,35,105,110,99,108,117,100,101,32,34,116,105,108,101,95,118,101,114,116,101,120,46,105,110,99,46,103,108,115,108,34,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,95,118,101,114,116,101,120,46,105,110,99,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,118,101,99,52,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,97,109,112,108,101,114,50,68,32,115,114,99,84,101,120,116,117,114,101,44,32,118,101,99,50,32,115,99,97,108,101,44,32,118,101,99,50,32,111,114,105,103,105,110,67,111,111,114,100,44,32,105,110,116,32,101,110,116,114,121,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,115,114,99,84,101,120,116,117,114,101,44,32,40,111,114,105,103,105,110,67,111,111,114,100,32,43,32,118,101,99,50,40,48,46,53,41,32,43,32,118,101,99,50,40,101,110,116,114,121,44,32,48,41,41,32,42,32,115,99,97,108,101,41,59,13,10,125,13,10,13,10,118,111,105,100,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,13,10,118,101,99,50,32,112,111,115,105,116,105,111,110,44,13,10,105,110,116,32,99,111,108,111,114,69,110,116,114,121,44,13,10,115,97,109,112,108,101,114,50,68,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,118,101,99,50,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,13,10,111,117,116,32,118,101,99,50,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,66,97,115,101,67,111,108,111,114,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,111,117,116,32,105,110,116,32,111,117,116,67,116,114,108,41,32,123,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,83,99,97,108,101,32,61,32,118,101,99,50,40,49,46,48,41,32,47,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,32,61,32,118,101,99,50,40,99,111,108,111,114,69,110,116,114,121,32,37,32,49,50,56,32,42,32,49,48,44,32,99,111,108,111,114,69,110,116,114,121,32,47,32,49,50,56,41,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,48,41,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,49,41,59,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,50,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,51,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,52,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,53,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,54,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,55,41,59,13,10,32,32,32,32,118,101,99,52,32,101,120,116,114,97,32,32,32,32,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,56,41,59,13,10,32,32,32,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,32,61,32,109,97,116,50,40,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,41,32,42,32,112,111,115,105,116,105,111,110,32,43,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,46,120,121,59,13,10,32,32,32,32,111,117,116,66,97,115,101,67,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,32,32,32,32,111,117,116,67,116,114,108,32,61,32,105,110,116,40,101,120,116,114,97,46,120,41,59,13,10,125,13,10,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,117,105,110,116,32,99,97,108,99,117,108,97,116,101,84,105,108,101,73,110,100,101,120,40,117,105,110,116,32,98,117,102,102,101,114,79,102,102,115,101,116,44,32,117,118,101,99,52,32,116,105,108,101,82,101,99,116,44,32,117,118,101,99,50,32,116,105,108,101,67,111,111,114,100,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,98,117,102,102,101,114,79,102,102,115,101,116,32,43,32,116,105,108,101,67,111,111,114,100,46,121,32,42,32,40,116,105,108,101,82,101,99,116,46,122,32,45,32,116,105,108,101,82,101,99,116,46,120,41,32,43,32,116,105,108,101,67,111,111,114,100,46,120,59,13,10,125,13,10,13,10,105,118,101,99,50,32,116,111,73,109,97,103,101,67,111,111,114,100,115,40,105,118,101,99,50,32,99,111,111,114,100,115,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,105,118,101,99,50,40,99,111,111,114,100,115,46,120,44,32,105,110,116,40,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,46,121,41,32,45,32,99,111,111,114,100,115,46,121,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,105,118,101,99,50,32,116,105,108,101,67,111,111,114,100,32,61,32,105,118,101,99,50,40,103,108,95,87,111,114,107,71,114,111,117,112,73,68,46,120,121,41,59,13,10,32,32,32,32,105,118,101,99,50,32,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,32,61,32,105,118,101,99,50,40,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,46,120,121,41,32,42,32,105,118,101,99,50,40,49,44,32,52,41,59,13,10,32,32,32,32,105,118,101,99,50,32,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,61,32,116,105,108,101,67,111,111,114,100,32,42,32,105,118,101,99,50,40,117,84,105,108,101,83,105,122,101,41,32,43,32,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,59,13,10,13,10,32,32,32,32,47,47,32,81,117,105,99,107,32,101,120,105,116,32,105,102,32,116,104,105,115,32,105,115,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32,98,101,32,101,109,112,116,121,46,13,10,32,32,32,32,105,110,116,32,116,105,108,101,73,110,100,101,120,32,61,32,105,70,105,114,115,116,84,105,108,101,77,97,112,91,116,105,108,101,67,111,111,114,100,46,120,32,43,32,117,70,114,97,109,101,98,117,102,102,101,114,84,105,108,101,83,105,122,101,46,120,32,42,32,116,105,108,101,67,111,111,114,100,46,121,93,59,13,10,32,32,32,32,105,102,32,40,116,105,108,101,73,110,100,101,120,32,60,32,48,32,38,38,32,117,76,111,97,100,65,99,116,105,111,110,32,33,61,32,76,79,65,68,95,65,67,84,73,79,78,95,67,76,69,65,82,41,32,114,101,116,117,114,110,59,13,10,13,10,32,32,32,32,109,97,116,52,32,100,101,115,116,67,111,108,111,114,115,59,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,115,117,98,89,32,61,32,48,59,32,115,117,98,89,32,60,32,52,59,32,115,117,98,89,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,105,102,32,40,117,76,111,97,100,65,99,116,105,111,110,32,61,61,32,76,79,65,68,95,65,67,84,73,79,78,95,67,76,69,65,82,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,61,32,117,67,108,101,97,114,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,78,111,116,32,97,118,97,105,108,97,98,108,101,32,102,111,114,32,71,76,69,83,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,35,105,102,110,100,101,102,32,71,76,95,69,83,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,118,101,99,50,32,105,109,97,103,101,67,111,111,114,100,115,32,61,32,116,111,73,109,97,103,101,67,111,111,114,100,115,40,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,61,32,105,109,97,103,101,76,111,97,100,40,117,68,101,115,116,73,109,97,103,101,44,32,105,109,97,103,101,67,111,111,114,100,115,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,35,101,110,100,105,102,13,10,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,119,104,105,108,101,32,40,116,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,102,111,114,32,40,105,110,116,32,115,117,98,89,32,61,32,48,59,32,115,117,98,89,32,60,32,52,59,32,115,117,98,89,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,118,101,99,50,32,116,105,108,101,83,117,98,67,111,111,114,100,32,61,32,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,102,114,97,103,67,111,111,114,100,32,61,32,118,101,99,50,40,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,41,32,43,32,118,101,99,50,40,48,46,53,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,91,32,43,45,56,32,124,32,43,45,50,52,32,93,32,110,111,116,101,32,116,104,97,116,32,65,76,80,72,65,95,84,73,76,69,95,73,68,32,105,115,32,115,105,103,110,101,100,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,61,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,66,65,67,75,68,82,79,80,95,65,76,80,72,65,95,84,73,76,69,95,73,68,93,32,60,60,32,56,41,32,62,62,32,56,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,61,32,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,67,79,78,84,82,79,76,93,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,105,110,116,32,99,111,108,111,114,69,110,116,114,121,32,61,32,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,38,32,48,120,102,102,102,102,117,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,116,105,108,101,67,116,114,108,32,61,32,105,110,116,40,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,32,62,62,32,49,54,41,32,38,32,48,120,102,102,117,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,98,97,99,107,100,114,111,112,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,118,101,99,50,32,109,97,115,107,84,105,108,101,67,111,111,114,100,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,61,32,48,32,45,62,32,97,108,112,104,97,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,60,32,48,32,45,62,32,115,111,108,105,100,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,100,114,111,112,32,61,32,48,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,115,107,84,105,108,101,67,111,111,114,100,32,61,32,117,118,101,99,50,40,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,38,32,48,120,102,102,44,32,97,108,112,104,97,84,105,108,101,73,110,100,101,120,32,62,62,32,56,41,32,42,32,117,118,101,99,50,40,117,84,105,108,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,99,111,109,109,101,110,116,32,116,104,105,115,32,116,111,32,104,105,100,101,32,97,108,112,104,97,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,114,101,116,117,114,110,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,87,101,32,104,97,118,101,32,110,111,32,97,108,112,104,97,32,109,97,115,107,46,32,67,108,101,97,114,32,116,104,101,32,109,97,115,107,32,98,105,116,115,32,115,111,32,119,101,32,100,111,110,39,116,32,116,114,121,32,116,111,32,108,111,111,107,32,111,110,101,32,117,112,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,97,99,107,100,114,111,112,32,61,32,105,110,116,40,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,41,32,62,62,32,50,52,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,97,110,100,108,101,32,115,111,108,105,100,32,116,105,108,101,115,32,104,105,100,101,110,32,98,121,32,116,104,101,32,101,118,101,110,45,111,100,100,32,102,105,108,108,32,114,117,108,101,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,98,97,99,107,100,114,111,112,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,41,32,33,61,32,48,32,38,38,32,105,110,116,40,109,111,100,40,102,108,111,97,116,40,97,98,115,40,98,97,99,107,100,114,111,112,41,41,44,32,50,46,48,41,41,32,61,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,115,107,84,105,108,101,67,111,111,114,100,32,61,32,117,118,101,99,50,40,48,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,116,114,108,32,38,61,32,126,40,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,60,60,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,85,110,99,111,109,109,101,110,116,32,116,104,105,115,32,116,111,32,104,105,100,101,32,115,111,108,105,100,32,116,105,108,101,115,46,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,114,101,116,117,114,110,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,48,32,61,32,118,101,99,51,40,118,101,99,50,40,105,118,101,99,50,40,109,97,115,107,84,105,108,101,67,111,111,114,100,41,32,43,32,116,105,108,101,83,117,98,67,111,111,114,100,41,44,32,98,97,99,107,100,114,111,112,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,44,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,32,99,116,114,108,59,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,116,40,99,111,108,111,114,69,110,116,114,121,41,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,70,73,88,77,69,40,112,99,119,97,108,116,111,110,41,58,32,84,104,101,32,96,117,67,111,108,111,114,84,101,120,116,117,114,101,48,96,32,98,101,108,111,119,32,105,115,32,97,32,112,108,97,99,101,104,111,108,100,101,114,32,97,110,100,32,110,101,101,100,115,32,116,111,32,98,101,32,114,101,112,108,97,99,101,100,33,13,10,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,115,114,99,67,111,108,111,114,32,61,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,71,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,116,114,108,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,98,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,108,101,67,116,114,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,61,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,32,42,32,40,49,46,48,32,45,32,115,114,99,67,111,108,111,114,46,97,41,32,43,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,125,13,10,13,10,32,32,32,32,32,32,32,32,116,105,108,101,73,110,100,101,120,32,61,32,105,110,116,40,105,84,105,108,101,115,91,116,105,108,101,73,110,100,101,120,32,42,32,52,32,43,32,84,73,76,69,95,70,73,69,76,68,95,78,69,88,84,95,84,73,76,69,95,73,68,93,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,115,117,98,89,32,61,32,48,59,32,115,117,98,89,32,60,32,52,59,32,115,117,98,89,43,43,41,32,123,13,10,32,32,32,32,32,32,32,32,105,109,97,103,101,83,116,111,114,101,40,117,68,101,115,116,73,109,97,103,101,44,32,116,111,73,109,97,103,101,67,111,111,114,100,115,40,102,105,114,115,116,70,114,97,103,67,111,111,114,100,32,43,32,105,118,101,99,50,40,48,44,32,115,117,98,89,41,41,44,32,100,101,115,116,67,111,108,111,114,115,91,115,117,98,89,93,41,59,13,10,32,32,32,32,125,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_TILE_COMP_H diff --git a/src/shaders/generated/tile_comp_spv.h b/src/shaders/generated/tile_comp_spv.h index 6e8b43ec..31f572f6 100644 --- a/src/shaders/generated/tile_comp_spv.h +++ b/src/shaders/generated/tile_comp_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_COMP_SPV_H namespace Pathfinder { - static uint8_t tile_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,107,7,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,7,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,39,6,0,0,45,6,0,0,16,0,6,0,4,0,0,0,17,0,0,0,16,0,0,0,4,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,9,0,15,0,0,0,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,102,52,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,12,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,13,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,14,0,0,0,111,112,0,0,5,0,11,0,27,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,49,59,115,50,49,59,118,102,50,59,0,0,0,0,5,0,4,0,24,0,0,0,111,102,102,115,101,116,0,0,5,0,6,0,25,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,26,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,14,0,37,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,118,102,52,59,102,49,59,118,102,52,59,115,50,49,59,118,102,50,59,118,102,52,59,102,49,59,0,5,0,6,0,30,0,0,0,111,117,116,65,108,112,104,97,76,101,102,116,0,0,0,0,5,0,6,0,31,0,0,0,111,117,116,65,108,112,104,97,67,101,110,116,101,114,0,0,5,0,6,0,32,0,0,0,111,117,116,65,108,112,104,97,82,105,103,104,116,0,0,0,5,0,6,0,33,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,34,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,4,0,35,0,0,0,107,101,114,110,101,108,0,0,5,0,5,0,36,0,0,0,111,110,101,80,105,120,101,108,0,0,0,0,5,0,11,0,45,0,0,0,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,102,52,59,118,102,51,59,118,102,52,59,0,5,0,4,0,42,0,0,0,97,108,112,104,97,48,0,0,5,0,4,0,43,0,0,0,97,108,112,104,97,49,0,0,5,0,4,0,44,0,0,0,107,101,114,110,101,108,0,0,5,0,13,0,51,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,49,59,102,49,59,115,50,49,59,0,0,0,0,5,0,4,0,48,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,49,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,50,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,11,0,57,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,102,51,59,118,102,51,59,115,50,49,59,0,5,0,4,0,54,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,55,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,56,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,12,0,67,0,0,0,102,105,108,116,101,114,84,101,120,116,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,0,5,0,6,0,60,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,61,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,62,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,63,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,64,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,65,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,66,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,15,0,77,0,0,0,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,0,0,0,5,0,6,0,70,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,71,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,72,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,73,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,74,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,75,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,76,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,10,0,85,0,0,0,102,105,108,116,101,114,66,108,117,114,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,0,5,0,6,0,80,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,81,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,82,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,83,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,84,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,14,0,95,0,0,0,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,102,50,59,115,50,49,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,0,0,5,0,6,0,88,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,89,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,90,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,91,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,92,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,93,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,94,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,7,0,100,0,0,0,102,105,108,116,101,114,78,111,110,101,40,118,102,50,59,115,50,49,59,0,5,0,6,0,98,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,99,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,17,0,115,0,0,0,102,105,108,116,101,114,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,5,0,6,0,103,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,104,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,105,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,106,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,107,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,108,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,109,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,110,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,111,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,112,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,113,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,5,0,114,0,0,0,99,111,108,111,114,70,105,108,116,101,114,0,5,0,10,0,124,0,0,0,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,118,98,51,59,118,102,51,59,118,102,51,59,0,0,0,0,5,0,4,0,121,0,0,0,99,111,110,100,0,0,0,0,5,0,4,0,122,0,0,0,105,102,84,114,117,101,0,0,5,0,4,0,123,0,0,0,105,102,70,97,108,115,101,0,5,0,8,0,129,0,0,0,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,49,59,102,49,59,0,0,5,0,3,0,127,0,0,0,110,117,109,0,5,0,4,0,128,0,0,0,100,101,110,111,109,0,0,0,5,0,10,0,134,0,0,0,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,132,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,133,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,8,0,138,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,102,51,59,0,0,5,0,3,0,137,0,0,0,104,115,108,0,5,0,8,0,141,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,102,51,59,0,0,5,0,3,0,140,0,0,0,114,103,98,0,5,0,9,0,145,0,0,0,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,143,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,144,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,149,0,0,0,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,147,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,148,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,153,0,0,0,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,151,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,152,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,159,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,156,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,157,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,158,0,0,0,111,112,0,0,5,0,9,0,164,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,161,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,162,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,163,0,0,0,111,112,0,0,5,0,10,0,172,0,0,0,99,111,109,112,111,115,105,116,101,40,118,102,52,59,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,167,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,168,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,6,0,169,0,0,0,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,0,5,0,5,0,170,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,3,0,171,0,0,0,111,112,0,0,5,0,10,0,180,0,0,0,115,97,109,112,108,101,77,97,115,107,40,102,49,59,115,50,49,59,118,102,50,59,118,102,51,59,105,49,59,0,0,0,5,0,5,0,175,0,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,5,0,176,0,0,0,109,97,115,107,84,101,120,116,117,114,101,0,5,0,6,0,177,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,0,5,0,6,0,178,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,179,0,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,24,0,201,0,0,0,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,50,59,105,49,59,118,102,51,59,118,102,50,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,183,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,184,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,48,0,0,0,5,0,6,0,185,0,0,0,109,97,115,107,84,101,120,116,117,114,101,48,0,0,0,0,5,0,5,0,186,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,5,0,187,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,188,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,5,0,7,0,189,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,0,5,0,6,0,190,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,191,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,192,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,193,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,194,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,6,0,195,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,4,0,196,0,0,0,99,116,114,108,0,0,0,0,5,0,6,0,197,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,198,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,199,0,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,5,0,200,0,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,10,0,208,0,0,0,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,204,0,0,0,115,114,99,84,101,120,116,117,114,101,0,0,5,0,4,0,205,0,0,0,115,99,97,108,101,0,0,0,5,0,5,0,206,0,0,0,111,114,105,103,105,110,67,111,111,114,100,0,5,0,4,0,207,0,0,0,101,110,116,114,121,0,0,0,5,0,19,0,223,0,0,0,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,118,102,50,59,105,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,0,5,0,5,0,211,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,5,0,212,0,0,0,99,111,108,111,114,69,110,116,114,121,0,0,5,0,6,0,213,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,5,0,7,0,214,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,5,0,7,0,215,0,0,0,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,216,0,0,0,111,117,116,66,97,115,101,67,111,108,111,114,0,0,0,0,5,0,7,0,217,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,0,5,0,7,0,218,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,0,5,0,7,0,219,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,0,5,0,7,0,220,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,0,5,0,7,0,221,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,0,5,0,4,0,222,0,0,0,111,117,116,67,116,114,108,0,5,0,7,0,229,0,0,0,116,111,73,109,97,103,101,67,111,111,114,100,115,40,118,105,50,59,0,0,5,0,4,0,228,0,0,0,99,111,111,114,100,115,0,0,5,0,4,0,21,1,0,0,119,105,100,101,0,0,0,0,5,0,4,0,32,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,33,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,42,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,48,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,49,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,55,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,56,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,60,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,61,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,67,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,68,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,74,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,75,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,81,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,82,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,92,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,125,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,129,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,133,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,137,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,144,1,0,0,107,101,114,110,101,108,0,0,5,0,4,0,146,1,0,0,98,103,67,111,108,111,114,0,5,0,4,0,149,1,0,0,102,103,67,111,108,111,114,0,5,0,8,0,152,1,0,0,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,0,0,5,0,4,0,161,1,0,0,97,108,112,104,97,0,0,0,5,0,5,0,167,1,0,0,97,108,112,104,97,76,101,102,116,0,0,0,5,0,5,0,168,1,0,0,97,108,112,104,97,67,101,110,116,101,114,0,5,0,5,0,169,1,0,0,97,108,112,104,97,82,105,103,104,116,0,0,5,0,4,0,173,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,174,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,175,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,176,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,178,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,180,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,185,1,0,0,114,0,0,0,5,0,4,0,192,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,194,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,195,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,198,1,0,0,103,0,0,0,5,0,4,0,206,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,207,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,210,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,213,1,0,0,98,0,0,0,5,0,4,0,222,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,223,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,226,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,236,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,238,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,251,1,0,0,108,105,110,101,70,114,111,109,0,0,0,0,5,0,5,0,254,1,0,0,108,105,110,101,86,101,99,116,111,114,0,0,5,0,4,0,1,2,0,0,114,97,100,105,105,0,0,0,5,0,5,0,4,2,0,0,117,118,79,114,105,103,105,110,0,0,0,0,5,0,3,0,7,2,0,0,100,80,0,0,5,0,3,0,11,2,0,0,100,67,0,0,5,0,3,0,13,2,0,0,100,82,0,0,5,0,3,0,19,2,0,0,97,0,0,0,5,0,3,0,27,2,0,0,98,0,0,0,5,0,3,0,36,2,0,0,99,0,0,0,5,0,4,0,46,2,0,0,100,105,115,99,114,105,109,0,5,0,4,0,54,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,60,2,0,0,116,115,0,0,5,0,3,0,83,2,0,0,116,0,0,0,5,0,6,0,105,2,0,0,115,114,99,79,102,102,115,101,116,83,99,97,108,101,0,0,5,0,4,0,110,2,0,0,115,117,112,112,111,114,116,0,5,0,5,0,114,2,0,0,103,97,117,115,115,67,111,101,102,102,0,0,5,0,5,0,117,2,0,0,103,97,117,115,115,83,117,109,0,0,0,0,5,0,4,0,120,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,136,2,0,0,105,0,0,0,5,0,6,0,146,2,0,0,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,0,5,0,5,0,162,2,0,0,115,114,99,79,102,102,115,101,116,0,0,0,5,0,5,0,209,2,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,215,2,0,0,99,111,108,111,114,77,97,116,114,105,120,0,5,0,4,0,3,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,9,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,11,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,17,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,19,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,21,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,23,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,29,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,31,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,33,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,35,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,39,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,43,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,45,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,47,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,49,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,3,0,0,112,97,114,97,109,0,0,0,5,0,5,0,107,3,0,0,100,101,115,116,90,101,114,111,0,0,0,0,5,0,4,0,111,3,0,0,115,114,99,79,110,101,0,0,5,0,4,0,119,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,122,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,124,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,126,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,127,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,131,3,0,0,97,0,0,0,5,0,3,0,141,3,0,0,107,115,0,0,5,0,3,0,171,3,0,0,118,0,0,0,5,0,4,0,180,3,0,0,120,77,105,110,0,0,0,0,5,0,3,0,189,3,0,0,99,0,0,0,5,0,3,0,193,3,0,0,108,0,0,0,5,0,4,0,198,3,0,0,116,101,114,109,115,0,0,0,5,0,3,0,232,3,0,0,104,0,0,0,5,0,4,0,244,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,245,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,249,3,0,0,115,0,0,0,5,0,4,0,250,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,252,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,25,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,29,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,30,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,31,4,0,0,112,97,114,97,109,0,0,0,5,0,7,0,35,4,0,0,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,0,0,0,5,0,4,0,54,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,55,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,56,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,58,4,0,0,102,97,99,116,111,114,0,0,5,0,4,0,68,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,69,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,70,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,140,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,142,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,146,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,148,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,160,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,162,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,170,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,171,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,175,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,177,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,181,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,183,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,201,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,204,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,207,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,208,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,209,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,212,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,226,4,0,0,100,101,115,116,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,230,4,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,234,4,0,0,98,108,101,110,100,101,100,82,71,66,0,0,5,0,4,0,235,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,238,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,241,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,24,5,0,0,109,97,115,107,84,101,120,67,111,111,114,100,73,0,0,0,5,0,4,0,29,5,0,0,116,101,120,101,108,0,0,0,5,0,5,0,41,5,0,0,99,111,118,101,114,97,103,101,0,0,0,0,5,0,5,0,68,5,0,0,109,97,115,107,67,116,114,108,48,0,0,0,5,0,5,0,73,5,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,4,0,74,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,76,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,78,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,80,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,5,0,0,99,111,108,111,114,0,0,0,5,0,6,0,85,5,0,0,99,111,108,111,114,48,67,111,109,98,105,110,101,0,0,0,5,0,6,0,94,5,0,0,99,111,108,111,114,48,70,105,108,116,101,114,0,0,0,0,5,0,4,0,99,5,0,0,99,111,108,111,114,48,0,0,5,0,4,0,100,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,102,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,104,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,106,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,108,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,110,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,112,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,123,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,125,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,133,5,0,0,99,111,109,112,111,115,105,116,101,79,112,0,5,0,4,0,138,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,140,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,142,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,144,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,174,5,0,0,109,101,116,97,100,97,116,97,83,99,97,108,101,0,0,0,5,0,7,0,178,5,0,0,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,0,0,5,0,6,0,188,5,0,0,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,0,5,0,4,0,189,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,191,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,193,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,195,5,0,0,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,0,5,0,4,0,196,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,198,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,200,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,202,5,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,4,0,203,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,205,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,207,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,209,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,4,0,210,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,212,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,214,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,216,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,4,0,217,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,219,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,221,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,223,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,4,0,225,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,227,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,229,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,231,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,4,0,233,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,235,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,237,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,239,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,4,0,241,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,243,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,245,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,247,5,0,0,101,120,116,114,97,0,0,0,5,0,4,0,248,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,250,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,252,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,23,6,0,0,98,85,110,105,102,111,114,109,48,0,0,0,6,0,6,0,23,6,0,0,0,0,0,0,117,67,108,101,97,114,67,111,108,111,114,0,6,0,8,0,23,6,0,0,1,0,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,6,0,8,0,23,6,0,0,2,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,5,0,3,0,25,6,0,0,0,0,0,0,5,0,5,0,36,6,0,0,116,105,108,101,67,111,111,114,100,0,0,0,5,0,6,0,39,6,0,0,103,108,95,87,111,114,107,71,114,111,117,112,73,68,0,0,5,0,7,0,44,6,0,0,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,0,0,0,5,0,8,0,45,6,0,0,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,0,5,0,6,0,50,6,0,0,102,105,114,115,116,70,114,97,103,67,111,111,114,100,0,0,5,0,7,0,52,6,0,0,98,67,111,110,115,116,97,110,116,115,85,110,105,102,111,114,109,0,0,0,6,0,8,0,52,6,0,0,0,0,0,0,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,6,0,6,0,52,6,0,0,1,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,52,6,0,0,2,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,5,0,52,6,0,0,3,0,0,0,112,97,100,48,0,0,0,0,5,0,3,0,54,6,0,0,0,0,0,0,5,0,5,0,62,6,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,6,0,64,6,0,0,98,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,6,0,7,0,64,6,0,0,0,0,0,0,105,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,5,0,3,0,66,6,0,0,0,0,0,0,5,0,5,0,69,6,0,0,98,85,110,105,102,111,114,109,49,0,0,0,6,0,7,0,69,6,0,0,0,0,0,0,117,90,66,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,9,0,69,6,0,0,1,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,84,105,108,101,83,105,122,101,0,0,0,0,6,0,6,0,69,6,0,0,2,0,0,0,117,76,111,97,100,65,99,116,105,111,110,0,6,0,5,0,69,6,0,0,3,0,0,0,112,97,100,49,0,0,0,0,6,0,5,0,69,6,0,0,4,0,0,0,112,97,100,50,0,0,0,0,6,0,5,0,69,6,0,0,5,0,0,0,112,97,100,51,0,0,0,0,5,0,3,0,71,6,0,0,0,0,0,0,5,0,4,0,92,6,0,0,115,117,98,89,0,0,0,0,5,0,5,0,105,6,0,0,100,101,115,116,67,111,108,111,114,115,0,0,5,0,5,0,112,6,0,0,105,109,97,103,101,67,111,111,114,100,115,0,5,0,4,0,117,6,0,0,112,97,114,97,109,0,0,0,5,0,5,0,122,6,0,0,117,68,101,115,116,73,109,97,103,101,0,0,5,0,4,0,136,6,0,0,115,117,98,89,0,0,0,0,5,0,6,0,144,6,0,0,116,105,108,101,83,117,98,67,111,111,114,100,0,0,0,0,5,0,5,0,149,6,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,156,6,0,0,97,108,112,104,97,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,158,6,0,0,98,84,105,108,101,115,0,0,6,0,5,0,158,6,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,160,6,0,0,0,0,0,0,5,0,6,0,171,6,0,0,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,0,5,0,5,0,177,6,0,0,99,111,108,111,114,69,110,116,114,121,0,0,5,0,5,0,181,6,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,5,0,192,6,0,0,98,97,99,107,100,114,111,112,0,0,0,0,5,0,6,0,194,6,0,0,109,97,115,107,84,105,108,101,67,111,111,114,100,0,0,0,5,0,5,0,216,6,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,6,0,239,6,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,7,0,252,6,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,0,0,0,5,0,6,0,253,6,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,254,6,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,6,0,255,6,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,0,7,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,1,7,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,2,7,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,3,7,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,4,0,4,7,0,0,99,116,114,108,0,0,0,0,5,0,4,0,5,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,8,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,11,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,12,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,14,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,15,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,16,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,17,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,18,7,0,0,112,97,114,97,109,0,0,0,5,0,5,0,28,7,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,6,0,29,7,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,48,0,0,5,0,6,0,30,7,0,0,117,77,97,115,107,84,101,120,116,117,114,101,48,0,0,0,5,0,5,0,31,7,0,0,117,71,97,109,109,97,76,85,84,0,0,0,5,0,4,0,32,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,34,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,37,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,40,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,42,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,44,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,46,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,48,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,50,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,53,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,55,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,57,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,59,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,61,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,7,0,0,115,117,98,89,0,0,0,0,5,0,4,0,96,7,0,0,112,97,114,97,109,0,0,0,5,0,5,0,106,7,0,0,117,90,66,117,102,102,101,114,0,0,0,0,72,0,5,0,23,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,23,6,0,0,1,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,23,6,0,0,2,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,23,6,0,0,2,0,0,0,71,0,4,0,25,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,25,6,0,0,33,0,0,0,9,0,0,0,71,0,4,0,39,6,0,0,11,0,0,0,26,0,0,0,71,0,4,0,45,6,0,0,11,0,0,0,27,0,0,0,72,0,5,0,52,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,52,6,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,52,6,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,52,6,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,52,6,0,0,2,0,0,0,71,0,4,0,54,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,54,6,0,0,33,0,0,0,8,0,0,0,71,0,4,0,63,6,0,0,6,0,0,0,4,0,0,0,72,0,4,0,64,6,0,0,0,0,0,0,19,0,0,0,72,0,4,0,64,6,0,0,0,0,0,0,24,0,0,0,72,0,5,0,64,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,64,6,0,0,3,0,0,0,71,0,4,0,66,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,66,6,0,0,33,0,0,0,1,0,0,0,72,0,5,0,69,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,69,6,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,69,6,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,69,6,0,0,3,0,0,0,35,0,0,0,20,0,0,0,72,0,5,0,69,6,0,0,4,0,0,0,35,0,0,0,24,0,0,0,72,0,5,0,69,6,0,0,5,0,0,0,35,0,0,0,28,0,0,0,71,0,3,0,69,6,0,0,2,0,0,0,71,0,4,0,71,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,71,6,0,0,33,0,0,0,10,0,0,0,71,0,4,0,122,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,122,6,0,0,33,0,0,0,7,0,0,0,71,0,4,0,157,6,0,0,6,0,0,0,4,0,0,0,72,0,4,0,158,6,0,0,0,0,0,0,19,0,0,0,72,0,4,0,158,6,0,0,0,0,0,0,24,0,0,0,72,0,5,0,158,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,158,6,0,0,3,0,0,0,71,0,4,0,160,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,160,6,0,0,33,0,0,0,0,0,0,0,71,0,4,0,252,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,252,6,0,0,33,0,0,0,2,0,0,0,71,0,4,0,29,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,29,7,0,0,33,0,0,0,4,0,0,0,71,0,4,0,30,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,30,7,0,0,33,0,0,0,5,0,0,0,71,0,4,0,31,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,31,7,0,0,33,0,0,0,6,0,0,0,71,0,4,0,105,7,0,0,11,0,0,0,25,0,0,0,71,0,4,0,106,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,106,7,0,0,33,0,0,0,3,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,9,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,33,0,6,0,11,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,32,0,4,0,17,0,0,0,7,0,0,0,6,0,0,0,25,0,9,0,18,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,19,0,0,0,18,0,0,0,32,0,4,0,20,0,0,0,0,0,0,0,19,0,0,0,23,0,4,0,21,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,7,0,0,0,21,0,0,0,33,0,6,0,23,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,33,0,10,0,29,0,0,0,2,0,0,0,8,0,0,0,17,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,17,0,0,0,23,0,4,0,39,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,40,0,0,0,7,0,0,0,39,0,0,0,33,0,6,0,41,0,0,0,6,0,0,0,8,0,0,0,40,0,0,0,8,0,0,0,33,0,6,0,47,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,20,0,0,0,33,0,6,0,53,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,20,0,0,0,33,0,10,0,59,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,69,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,8,0,79,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,87,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,5,0,97,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,33,0,15,0,102,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,20,0,2,0,117,0,0,0,23,0,4,0,118,0,0,0,117,0,0,0,3,0,0,0,32,0,4,0,119,0,0,0,7,0,0,0,118,0,0,0,33,0,6,0,120,0,0,0,39,0,0,0,119,0,0,0,40,0,0,0,40,0,0,0,33,0,5,0,126,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,33,0,5,0,131,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,33,0,4,0,136,0,0,0,39,0,0,0,40,0,0,0,33,0,6,0,155,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,10,0,0,0,33,0,8,0,166,0,0,0,7,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,10,0,0,0,33,0,8,0,174,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,40,0,0,0,10,0,0,0,33,0,21,0,182,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,22,0,0,0,10,0,0,0,40,0,0,0,22,0,0,0,8,0,0,0,10,0,0,0,33,0,7,0,203,0,0,0,7,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,10,0,0,0,33,0,15,0,210,0,0,0,2,0,0,0,22,0,0,0,10,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,23,0,4,0,225,0,0,0,9,0,0,0,2,0,0,0,32,0,4,0,226,0,0,0,7,0,0,0,225,0,0,0,33,0,4,0,227,0,0,0,225,0,0,0,226,0,0,0,21,0,4,0,237,0,0,0,32,0,0,0,0,0,0,0,43,0,4,0,237,0,0,0,238,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,12,1,0,0,0,0,0,0,43,0,4,0,237,0,0,0,16,1,0,0,0,0,0,0,32,0,4,0,20,1,0,0,7,0,0,0,117,0,0,0,43,0,4,0,6,0,0,0,29,1,0,0,0,0,128,192,43,0,4,0,6,0,0,0,38,1,0,0,0,0,64,192,43,0,4,0,6,0,0,0,45,1,0,0,0,0,0,192,43,0,4,0,6,0,0,0,52,1,0,0,0,0,128,191,43,0,4,0,6,0,0,0,64,1,0,0,0,0,128,63,43,0,4,0,6,0,0,0,71,1,0,0,0,0,0,64,43,0,4,0,6,0,0,0,78,1,0,0,0,0,64,64,43,0,4,0,6,0,0,0,89,1,0,0,0,0,128,64,43,0,4,0,237,0,0,0,126,1,0,0,1,0,0,0,43,0,4,0,237,0,0,0,134,1,0,0,2,0,0,0,44,0,7,0,7,0,0,0,55,2,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,44,0,5,0,21,0,0,0,63,2,0,0,64,1,0,0,52,1,0,0,43,0,4,0,9,0,0,0,137,2,0,0,1,0,0,0,43,0,4,0,9,0,0,0,200,2,0,0,2,0,0,0,24,0,4,0,213,2,0,0,7,0,0,0,4,0,0,0,32,0,4,0,214,2,0,0,7,0,0,0,213,2,0,0,44,0,6,0,39,0,0,0,109,3,0,0,12,1,0,0,12,1,0,0,12,1,0,0,44,0,6,0,39,0,0,0,113,3,0,0,64,1,0,0,64,1,0,0,64,1,0,0,43,0,4,0,6,0,0,0,142,3,0,0,0,0,0,65,44,0,6,0,39,0,0,0,143,3,0,0,12,1,0,0,142,3,0,0,89,1,0,0,43,0,4,0,6,0,0,0,146,3,0,0,69,118,244,63,43,0,4,0,6,0,0,0,150,3,0,0,0,0,64,65,44,0,6,0,39,0,0,0,156,3,0,0,78,1,0,0,78,1,0,0,78,1,0,0,43,0,4,0,6,0,0,0,158,3,0,0,0,0,16,65,44,0,6,0,39,0,0,0,159,3,0,0,158,3,0,0,158,3,0,0,158,3,0,0,43,0,4,0,6,0,0,0,196,3,0,0,0,0,0,63,43,0,4,0,6,0,0,0,233,3,0,0,146,10,134,63,44,0,6,0,39,0,0,0,15,4,0,0,196,3,0,0,196,3,0,0,196,3,0,0,44,0,6,0,39,0,0,0,18,4,0,0,71,1,0,0,71,1,0,0,71,1,0,0,43,0,4,0,6,0,0,0,37,4,0,0,0,0,128,62,44,0,6,0,39,0,0,0,38,4,0,0,37,4,0,0,37,4,0,0,37,4,0,0,43,0,4,0,6,0,0,0,40,4,0,0,0,0,128,65,44,0,6,0,39,0,0,0,41,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,43,0,4,0,9,0,0,0,220,4,0,0,0,0,0,0,43,0,4,0,9,0,0,0,32,5,0,0,4,0,0,0,44,0,5,0,225,0,0,0,33,5,0,0,137,2,0,0,32,5,0,0,43,0,4,0,9,0,0,0,71,5,0,0,3,0,0,0,43,0,4,0,9,0,0,0,87,5,0,0,8,0,0,0,43,0,4,0,9,0,0,0,97,5,0,0,15,0,0,0,43,0,4,0,9,0,0,0,135,5,0,0,10,0,0,0,44,0,5,0,21,0,0,0,163,5,0,0,196,3,0,0,196,3,0,0,44,0,5,0,21,0,0,0,175,5,0,0,64,1,0,0,64,1,0,0,43,0,4,0,9,0,0,0,180,5,0,0,128,0,0,0,43,0,4,0,9,0,0,0,224,5,0,0,5,0,0,0,43,0,4,0,9,0,0,0,232,5,0,0,6,0,0,0,43,0,4,0,9,0,0,0,240,5,0,0,7,0,0,0,24,0,4,0,255,5,0,0,21,0,0,0,2,0,0,0,30,0,5,0,23,6,0,0,7,0,0,0,21,0,0,0,21,0,0,0,32,0,4,0,24,6,0,0,2,0,0,0,23,6,0,0,59,0,4,0,24,6,0,0,25,6,0,0,2,0,0,0,32,0,4,0,26,6,0,0,2,0,0,0,6,0,0,0,23,0,4,0,37,6,0,0,237,0,0,0,3,0,0,0,32,0,4,0,38,6,0,0,1,0,0,0,37,6,0,0,59,0,4,0,38,6,0,0,39,6,0,0,1,0,0,0,23,0,4,0,40,6,0,0,237,0,0,0,2,0,0,0,59,0,4,0,38,6,0,0,45,6,0,0,1,0,0,0,30,0,6,0,52,6,0,0,21,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,32,0,4,0,53,6,0,0,2,0,0,0,52,6,0,0,59,0,4,0,53,6,0,0,54,6,0,0,2,0,0,0,32,0,4,0,55,6,0,0,2,0,0,0,21,0,0,0,29,0,3,0,63,6,0,0,9,0,0,0,30,0,3,0,64,6,0,0,63,6,0,0,32,0,4,0,65,6,0,0,2,0,0,0,64,6,0,0,59,0,4,0,65,6,0,0,66,6,0,0,2,0,0,0,30,0,8,0,69,6,0,0,225,0,0,0,225,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,32,0,4,0,70,6,0,0,2,0,0,0,69,6,0,0,59,0,4,0,70,6,0,0,71,6,0,0,2,0,0,0,32,0,4,0,72,6,0,0,2,0,0,0,9,0,0,0,32,0,4,0,107,6,0,0,2,0,0,0,7,0,0,0,25,0,9,0,120,6,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,32,0,4,0,121,6,0,0,0,0,0,0,120,6,0,0,59,0,4,0,121,6,0,0,122,6,0,0,0,0,0,0,29,0,3,0,157,6,0,0,237,0,0,0,30,0,3,0,158,6,0,0,157,6,0,0,32,0,4,0,159,6,0,0,2,0,0,0,158,6,0,0,59,0,4,0,159,6,0,0,160,6,0,0,2,0,0,0,32,0,4,0,164,6,0,0,2,0,0,0,237,0,0,0,32,0,4,0,170,6,0,0,7,0,0,0,237,0,0,0,43,0,4,0,237,0,0,0,179,6,0,0,255,255,0,0,43,0,4,0,9,0,0,0,183,6,0,0,16,0,0,0,43,0,4,0,237,0,0,0,185,6,0,0,255,0,0,0,32,0,4,0,193,6,0,0,7,0,0,0,40,6,0,0,43,0,4,0,9,0,0,0,196,6,0,0,255,0,0,0,43,0,4,0,9,0,0,0,210,6,0,0,24,0,0,0,44,0,5,0,40,6,0,0,235,6,0,0,16,1,0,0,16,1,0,0,43,0,4,0,9,0,0,0,236,6,0,0,252,255,255,255,59,0,4,0,20,0,0,0,252,6,0,0,0,0,0,0,59,0,4,0,20,0,0,0,29,7,0,0,0,0,0,0,59,0,4,0,20,0,0,0,30,7,0,0,0,0,0,0,59,0,4,0,20,0,0,0,31,7,0,0,0,0,0,0,43,0,4,0,237,0,0,0,103,7,0,0,16,0,0,0,43,0,4,0,237,0,0,0,104,7,0,0,4,0,0,0,44,0,6,0,37,6,0,0,105,7,0,0,103,7,0,0,104,7,0,0,126,1,0,0,59,0,4,0,20,0,0,0,106,7,0,0,0,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,226,0,0,0,36,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,44,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,50,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,62,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,92,6,0,0,7,0,0,0,59,0,4,0,214,2,0,0,105,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,112,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,117,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,136,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,144,6,0,0,7,0,0,0,59,0,4,0,22,0,0,0,149,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,156,6,0,0,7,0,0,0,59,0,4,0,170,6,0,0,171,6,0,0,7,0,0,0,59,0,4,0,170,6,0,0,177,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,181,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,192,6,0,0,7,0,0,0,59,0,4,0,193,6,0,0,194,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,216,6,0,0,7,0,0,0,59,0,4,0,40,0,0,0,239,6,0,0,7,0,0,0,59,0,4,0,22,0,0,0,253,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,254,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,255,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,0,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,1,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,2,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,3,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,4,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,5,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,7,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,8,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,11,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,12,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,13,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,14,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,15,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,16,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,17,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,18,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,28,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,32,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,34,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,37,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,40,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,42,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,44,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,46,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,48,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,50,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,53,7,0,0,7,0,0,0,59,0,4,0,40,0,0,0,55,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,57,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,59,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,61,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,83,7,0,0,7,0,0,0,59,0,4,0,226,0,0,0,96,7,0,0,7,0,0,0,61,0,4,0,37,6,0,0,41,6,0,0,39,6,0,0,79,0,7,0,40,6,0,0,42,6,0,0,41,6,0,0,41,6,0,0,0,0,0,0,1,0,0,0,124,0,4,0,225,0,0,0,43,6,0,0,42,6,0,0,62,0,3,0,36,6,0,0,43,6,0,0,61,0,4,0,37,6,0,0,46,6,0,0,45,6,0,0,79,0,7,0,40,6,0,0,47,6,0,0,46,6,0,0,46,6,0,0,0,0,0,0,1,0,0,0,124,0,4,0,225,0,0,0,48,6,0,0,47,6,0,0,132,0,5,0,225,0,0,0,49,6,0,0,48,6,0,0,33,5,0,0,62,0,3,0,44,6,0,0,49,6,0,0,61,0,4,0,225,0,0,0,51,6,0,0,36,6,0,0,65,0,5,0,55,6,0,0,56,6,0,0,54,6,0,0,137,2,0,0,61,0,4,0,21,0,0,0,57,6,0,0,56,6,0,0,110,0,4,0,225,0,0,0,58,6,0,0,57,6,0,0,132,0,5,0,225,0,0,0,59,6,0,0,51,6,0,0,58,6,0,0,61,0,4,0,225,0,0,0,60,6,0,0,44,6,0,0,128,0,5,0,225,0,0,0,61,6,0,0,59,6,0,0,60,6,0,0,62,0,3,0,50,6,0,0,61,6,0,0,65,0,5,0,10,0,0,0,67,6,0,0,36,6,0,0,16,1,0,0,61,0,4,0,9,0,0,0,68,6,0,0,67,6,0,0,65,0,6,0,72,6,0,0,73,6,0,0,71,6,0,0,137,2,0,0,16,1,0,0,61,0,4,0,9,0,0,0,74,6,0,0,73,6,0,0,65,0,5,0,10,0,0,0,75,6,0,0,36,6,0,0,126,1,0,0,61,0,4,0,9,0,0,0,76,6,0,0,75,6,0,0,132,0,5,0,9,0,0,0,77,6,0,0,74,6,0,0,76,6,0,0,128,0,5,0,9,0,0,0,78,6,0,0,68,6,0,0,77,6,0,0,65,0,6,0,72,6,0,0,79,6,0,0,66,6,0,0,220,4,0,0,78,6,0,0,61,0,4,0,9,0,0,0,80,6,0,0,79,6,0,0,62,0,3,0,62,6,0,0,80,6,0,0,61,0,4,0,9,0,0,0,81,6,0,0,62,6,0,0,177,0,5,0,117,0,0,0,82,6,0,0,81,6,0,0,220,4,0,0,247,0,3,0,84,6,0,0,0,0,0,0,250,0,4,0,82,6,0,0,83,6,0,0,84,6,0,0,248,0,2,0,83,6,0,0,65,0,5,0,72,6,0,0,85,6,0,0,71,6,0,0,200,2,0,0,61,0,4,0,9,0,0,0,86,6,0,0,85,6,0,0,171,0,5,0,117,0,0,0,87,6,0,0,86,6,0,0,220,4,0,0,249,0,2,0,84,6,0,0,248,0,2,0,84,6,0,0,245,0,7,0,117,0,0,0,88,6,0,0,82,6,0,0,5,0,0,0,87,6,0,0,83,6,0,0,247,0,3,0,90,6,0,0,0,0,0,0,250,0,4,0,88,6,0,0,89,6,0,0,90,6,0,0,248,0,2,0,89,6,0,0,253,0,1,0,248,0,2,0,90,6,0,0,62,0,3,0,92,6,0,0,220,4,0,0,249,0,2,0,93,6,0,0,248,0,2,0,93,6,0,0,246,0,4,0,95,6,0,0,96,6,0,0,0,0,0,0,249,0,2,0,97,6,0,0,248,0,2,0,97,6,0,0,61,0,4,0,9,0,0,0,98,6,0,0,92,6,0,0,177,0,5,0,117,0,0,0,99,6,0,0,98,6,0,0,32,5,0,0,250,0,4,0,99,6,0,0,94,6,0,0,95,6,0,0,248,0,2,0,94,6,0,0,65,0,5,0,72,6,0,0,100,6,0,0,71,6,0,0,200,2,0,0,61,0,4,0,9,0,0,0,101,6,0,0,100,6,0,0,170,0,5,0,117,0,0,0,102,6,0,0,101,6,0,0,220,4,0,0,247,0,3,0,104,6,0,0,0,0,0,0,250,0,4,0,102,6,0,0,103,6,0,0,111,6,0,0,248,0,2,0,103,6,0,0,61,0,4,0,9,0,0,0,106,6,0,0,92,6,0,0,65,0,5,0,107,6,0,0,108,6,0,0,25,6,0,0,220,4,0,0,61,0,4,0,7,0,0,0,109,6,0,0,108,6,0,0,65,0,5,0,8,0,0,0,110,6,0,0,105,6,0,0,106,6,0,0,62,0,3,0,110,6,0,0,109,6,0,0,249,0,2,0,104,6,0,0,248,0,2,0,111,6,0,0,61,0,4,0,225,0,0,0,113,6,0,0,50,6,0,0,61,0,4,0,9,0,0,0,114,6,0,0,92,6,0,0,80,0,5,0,225,0,0,0,115,6,0,0,220,4,0,0,114,6,0,0,128,0,5,0,225,0,0,0,116,6,0,0,113,6,0,0,115,6,0,0,62,0,3,0,117,6,0,0,116,6,0,0,57,0,5,0,225,0,0,0,118,6,0,0,229,0,0,0,117,6,0,0,62,0,3,0,112,6,0,0,118,6,0,0,61,0,4,0,9,0,0,0,119,6,0,0,92,6,0,0,61,0,4,0,120,6,0,0,123,6,0,0,122,6,0,0,61,0,4,0,225,0,0,0,124,6,0,0,112,6,0,0,98,0,5,0,7,0,0,0,125,6,0,0,123,6,0,0,124,6,0,0,65,0,5,0,8,0,0,0,126,6,0,0,105,6,0,0,119,6,0,0,62,0,3,0,126,6,0,0,125,6,0,0,249,0,2,0,104,6,0,0,248,0,2,0,104,6,0,0,249,0,2,0,96,6,0,0,248,0,2,0,96,6,0,0,61,0,4,0,9,0,0,0,127,6,0,0,92,6,0,0,128,0,5,0,9,0,0,0,128,6,0,0,127,6,0,0,137,2,0,0,62,0,3,0,92,6,0,0,128,6,0,0,249,0,2,0,93,6,0,0,248,0,2,0,95,6,0,0,249,0,2,0,129,6,0,0,248,0,2,0,129,6,0,0,246,0,4,0,131,6,0,0,132,6,0,0,0,0,0,0,249,0,2,0,133,6,0,0,248,0,2,0,133,6,0,0,61,0,4,0,9,0,0,0,134,6,0,0,62,6,0,0,175,0,5,0,117,0,0,0,135,6,0,0,134,6,0,0,220,4,0,0,250,0,4,0,135,6,0,0,130,6,0,0,131,6,0,0,248,0,2,0,130,6,0,0,62,0,3,0,136,6,0,0,220,4,0,0,249,0,2,0,137,6,0,0,248,0,2,0,137,6,0,0,246,0,4,0,139,6,0,0,140,6,0,0,0,0,0,0,249,0,2,0,141,6,0,0,248,0,2,0,141,6,0,0,61,0,4,0,9,0,0,0,142,6,0,0,136,6,0,0,177,0,5,0,117,0,0,0,143,6,0,0,142,6,0,0,32,5,0,0,250,0,4,0,143,6,0,0,138,6,0,0,139,6,0,0,248,0,2,0,138,6,0,0,61,0,4,0,225,0,0,0,145,6,0,0,44,6,0,0,61,0,4,0,9,0,0,0,146,6,0,0,136,6,0,0,80,0,5,0,225,0,0,0,147,6,0,0,220,4,0,0,146,6,0,0,128,0,5,0,225,0,0,0,148,6,0,0,145,6,0,0,147,6,0,0,62,0,3,0,144,6,0,0,148,6,0,0,61,0,4,0,225,0,0,0,150,6,0,0,50,6,0,0,61,0,4,0,9,0,0,0,151,6,0,0,136,6,0,0,80,0,5,0,225,0,0,0,152,6,0,0,220,4,0,0,151,6,0,0,128,0,5,0,225,0,0,0,153,6,0,0,150,6,0,0,152,6,0,0,111,0,4,0,21,0,0,0,154,6,0,0,153,6,0,0,129,0,5,0,21,0,0,0,155,6,0,0,154,6,0,0,163,5,0,0,62,0,3,0,149,6,0,0,155,6,0,0,61,0,4,0,9,0,0,0,161,6,0,0,62,6,0,0,132,0,5,0,9,0,0,0,162,6,0,0,161,6,0,0,32,5,0,0,128,0,5,0,9,0,0,0,163,6,0,0,162,6,0,0,200,2,0,0,65,0,6,0,164,6,0,0,165,6,0,0,160,6,0,0,220,4,0,0,163,6,0,0,61,0,4,0,237,0,0,0,166,6,0,0,165,6,0,0,196,0,5,0,237,0,0,0,167,6,0,0,166,6,0,0,87,5,0,0,124,0,4,0,9,0,0,0,168,6,0,0,167,6,0,0,195,0,5,0,9,0,0,0,169,6,0,0,168,6,0,0,87,5,0,0,62,0,3,0,156,6,0,0,169,6,0,0,61,0,4,0,9,0,0,0,172,6,0,0,62,6,0,0,132,0,5,0,9,0,0,0,173,6,0,0,172,6,0,0,32,5,0,0,128,0,5,0,9,0,0,0,174,6,0,0,173,6,0,0,71,5,0,0,65,0,6,0,164,6,0,0,175,6,0,0,160,6,0,0,220,4,0,0,174,6,0,0,61,0,4,0,237,0,0,0,176,6,0,0,175,6,0,0,62,0,3,0,171,6,0,0,176,6,0,0,61,0,4,0,237,0,0,0,178,6,0,0,171,6,0,0,199,0,5,0,237,0,0,0,180,6,0,0,178,6,0,0,179,6,0,0,62,0,3,0,177,6,0,0,180,6,0,0,61,0,4,0,237,0,0,0,182,6,0,0,171,6,0,0,194,0,5,0,237,0,0,0,184,6,0,0,182,6,0,0,183,6,0,0,199,0,5,0,237,0,0,0,186,6,0,0,184,6,0,0,185,6,0,0,124,0,4,0,9,0,0,0,187,6,0,0,186,6,0,0,62,0,3,0,181,6,0,0,187,6,0,0,61,0,4,0,9,0,0,0,188,6,0,0,156,6,0,0,175,0,5,0,117,0,0,0,189,6,0,0,188,6,0,0,220,4,0,0,247,0,3,0,191,6,0,0,0,0,0,0,250,0,4,0,189,6,0,0,190,6,0,0,207,6,0,0,248,0,2,0,190,6,0,0,62,0,3,0,192,6,0,0,220,4,0,0,61,0,4,0,9,0,0,0,195,6,0,0,156,6,0,0,199,0,5,0,9,0,0,0,197,6,0,0,195,6,0,0,196,6,0,0,124,0,4,0,237,0,0,0,198,6,0,0,197,6,0,0,61,0,4,0,9,0,0,0,199,6,0,0,156,6,0,0,195,0,5,0,9,0,0,0,200,6,0,0,199,6,0,0,87,5,0,0,124,0,4,0,237,0,0,0,201,6,0,0,200,6,0,0,80,0,5,0,40,6,0,0,202,6,0,0,198,6,0,0,201,6,0,0,65,0,5,0,55,6,0,0,203,6,0,0,54,6,0,0,137,2,0,0,61,0,4,0,21,0,0,0,204,6,0,0,203,6,0,0,109,0,4,0,40,6,0,0,205,6,0,0,204,6,0,0,132,0,5,0,40,6,0,0,206,6,0,0,202,6,0,0,205,6,0,0,62,0,3,0,194,6,0,0,206,6,0,0,249,0,2,0,191,6,0,0,248,0,2,0,207,6,0,0,61,0,4,0,237,0,0,0,208,6,0,0,171,6,0,0,124,0,4,0,9,0,0,0,209,6,0,0,208,6,0,0,195,0,5,0,9,0,0,0,211,6,0,0,209,6,0,0,210,6,0,0,62,0,3,0,192,6,0,0,211,6,0,0,61,0,4,0,9,0,0,0,212,6,0,0,192,6,0,0,171,0,5,0,117,0,0,0,213,6,0,0,212,6,0,0,220,4,0,0,247,0,3,0,215,6,0,0,0,0,0,0,250,0,4,0,213,6,0,0,214,6,0,0,215,6,0,0,248,0,2,0,214,6,0,0,61,0,4,0,9,0,0,0,217,6,0,0,181,6,0,0,195,0,5,0,9,0,0,0,218,6,0,0,217,6,0,0,220,4,0,0,199,0,5,0,9,0,0,0,219,6,0,0,218,6,0,0,71,5,0,0,62,0,3,0,216,6,0,0,219,6,0,0,61,0,4,0,9,0,0,0,220,6,0,0,216,6,0,0,199,0,5,0,9,0,0,0,221,6,0,0,220,6,0,0,200,2,0,0,171,0,5,0,117,0,0,0,222,6,0,0,221,6,0,0,220,4,0,0,247,0,3,0,224,6,0,0,0,0,0,0,250,0,4,0,222,6,0,0,223,6,0,0,224,6,0,0,248,0,2,0,223,6,0,0,61,0,4,0,9,0,0,0,225,6,0,0,192,6,0,0,12,0,6,0,9,0,0,0,226,6,0,0,1,0,0,0,5,0,0,0,225,6,0,0,111,0,4,0,6,0,0,0,227,6,0,0,226,6,0,0,141,0,5,0,6,0,0,0,228,6,0,0,227,6,0,0,71,1,0,0,110,0,4,0,9,0,0,0,229,6,0,0,228,6,0,0,170,0,5,0,117,0,0,0,230,6,0,0,229,6,0,0,220,4,0,0,249,0,2,0,224,6,0,0,248,0,2,0,224,6,0,0,245,0,7,0,117,0,0,0,231,6,0,0,222,6,0,0,214,6,0,0,230,6,0,0,223,6,0,0,247,0,3,0,233,6,0,0,0,0,0,0,250,0,4,0,231,6,0,0,232,6,0,0,233,6,0,0,248,0,2,0,232,6,0,0,249,0,2,0,139,6,0,0,248,0,2,0,233,6,0,0,249,0,2,0,215,6,0,0,248,0,2,0,215,6,0,0,62,0,3,0,194,6,0,0,235,6,0,0,61,0,4,0,9,0,0,0,237,6,0,0,181,6,0,0,199,0,5,0,9,0,0,0,238,6,0,0,237,6,0,0,236,6,0,0,62,0,3,0,181,6,0,0,238,6,0,0,249,0,2,0,191,6,0,0,248,0,2,0,191,6,0,0,61,0,4,0,40,6,0,0,240,6,0,0,194,6,0,0,124,0,4,0,225,0,0,0,241,6,0,0,240,6,0,0,61,0,4,0,225,0,0,0,242,6,0,0,144,6,0,0,128,0,5,0,225,0,0,0,243,6,0,0,241,6,0,0,242,6,0,0,111,0,4,0,21,0,0,0,244,6,0,0,243,6,0,0,61,0,4,0,9,0,0,0,245,6,0,0,192,6,0,0,111,0,4,0,6,0,0,0,246,6,0,0,245,6,0,0,81,0,5,0,6,0,0,0,247,6,0,0,244,6,0,0,0,0,0,0,81,0,5,0,6,0,0,0,248,6,0,0,244,6,0,0,1,0,0,0,80,0,6,0,39,0,0,0,249,6,0,0,247,6,0,0,248,6,0,0,246,6,0,0,62,0,3,0,239,6,0,0,249,6,0,0,61,0,4,0,237,0,0,0,250,6,0,0,177,6,0,0,124,0,4,0,9,0,0,0,251,6,0,0,250,6,0,0,61,0,4,0,21,0,0,0,6,7,0,0,149,6,0,0,62,0,3,0,5,7,0,0,6,7,0,0,62,0,3,0,7,7,0,0,251,6,0,0,65,0,5,0,55,6,0,0,9,7,0,0,54,6,0,0,200,2,0,0,61,0,4,0,21,0,0,0,10,7,0,0,9,7,0,0,62,0,3,0,8,7,0,0,10,7,0,0,57,0,16,0,2,0,0,0,19,7,0,0,223,0,0,0,5,7,0,0,7,7,0,0,252,6,0,0,8,7,0,0,11,7,0,0,12,7,0,0,13,7,0,0,14,7,0,0,15,7,0,0,16,7,0,0,17,7,0,0,18,7,0,0,61,0,4,0,21,0,0,0,20,7,0,0,11,7,0,0,62,0,3,0,253,6,0,0,20,7,0,0,61,0,4,0,7,0,0,0,21,7,0,0,12,7,0,0,62,0,3,0,254,6,0,0,21,7,0,0,61,0,4,0,7,0,0,0,22,7,0,0,13,7,0,0,62,0,3,0,255,6,0,0,22,7,0,0,61,0,4,0,7,0,0,0,23,7,0,0,14,7,0,0,62,0,3,0,0,7,0,0,23,7,0,0,61,0,4,0,7,0,0,0,24,7,0,0,15,7,0,0,62,0,3,0,1,7,0,0,24,7,0,0,61,0,4,0,7,0,0,0,25,7,0,0,16,7,0,0,62,0,3,0,2,7,0,0,25,7,0,0,61,0,4,0,7,0,0,0,26,7,0,0,17,7,0,0,62,0,3,0,3,7,0,0,26,7,0,0,61,0,4,0,9,0,0,0,27,7,0,0,18,7,0,0,62,0,3,0,4,7,0,0,27,7,0,0,61,0,4,0,21,0,0,0,33,7,0,0,149,6,0,0,62,0,3,0,32,7,0,0,33,7,0,0,65,0,5,0,55,6,0,0,35,7,0,0,25,6,0,0,137,2,0,0,61,0,4,0,21,0,0,0,36,7,0,0,35,7,0,0,62,0,3,0,34,7,0,0,36,7,0,0,65,0,5,0,55,6,0,0,38,7,0,0,54,6,0,0,220,4,0,0,61,0,4,0,21,0,0,0,39,7,0,0,38,7,0,0,62,0,3,0,37,7,0,0,39,7,0,0,61,0,4,0,7,0,0,0,41,7,0,0,255,6,0,0,62,0,3,0,40,7,0,0,41,7,0,0,61,0,4,0,7,0,0,0,43,7,0,0,0,7,0,0,62,0,3,0,42,7,0,0,43,7,0,0,61,0,4,0,7,0,0,0,45,7,0,0,1,7,0,0,62,0,3,0,44,7,0,0,45,7,0,0,61,0,4,0,7,0,0,0,47,7,0,0,2,7,0,0,62,0,3,0,46,7,0,0,47,7,0,0,61,0,4,0,7,0,0,0,49,7,0,0,3,7,0,0,62,0,3,0,48,7,0,0,49,7,0,0,65,0,5,0,55,6,0,0,51,7,0,0,25,6,0,0,200,2,0,0,61,0,4,0,21,0,0,0,52,7,0,0,51,7,0,0,62,0,3,0,50,7,0,0,52,7,0,0,61,0,4,0,9,0,0,0,54,7,0,0,4,7,0,0,62,0,3,0,53,7,0,0,54,7,0,0,61,0,4,0,39,0,0,0,56,7,0,0,239,6,0,0,62,0,3,0,55,7,0,0,56,7,0,0,61,0,4,0,21,0,0,0,58,7,0,0,253,6,0,0,62,0,3,0,57,7,0,0,58,7,0,0,61,0,4,0,7,0,0,0,60,7,0,0,254,6,0,0,62,0,3,0,59,7,0,0,60,7,0,0,61,0,4,0,9,0,0,0,62,7,0,0,181,6,0,0,62,0,3,0,61,7,0,0,62,7,0,0,57,0,22,0,7,0,0,0,63,7,0,0,201,0,0,0,32,7,0,0,29,7,0,0,30,7,0,0,29,7,0,0,31,7,0,0,34,7,0,0,37,7,0,0,40,7,0,0,42,7,0,0,44,7,0,0,46,7,0,0,48,7,0,0,50,7,0,0,53,7,0,0,55,7,0,0,57,7,0,0,59,7,0,0,61,7,0,0,62,0,3,0,28,7,0,0,63,7,0,0,61,0,4,0,9,0,0,0,64,7,0,0,136,6,0,0,61,0,4,0,9,0,0,0,65,7,0,0,136,6,0,0,65,0,5,0,8,0,0,0,66,7,0,0,105,6,0,0,65,7,0,0,61,0,4,0,7,0,0,0,67,7,0,0,66,7,0,0,65,0,5,0,17,0,0,0,68,7,0,0,28,7,0,0,238,0,0,0,61,0,4,0,6,0,0,0,69,7,0,0,68,7,0,0,131,0,5,0,6,0,0,0,70,7,0,0,64,1,0,0,69,7,0,0,142,0,5,0,7,0,0,0,71,7,0,0,67,7,0,0,70,7,0,0,61,0,4,0,7,0,0,0,72,7,0,0,28,7,0,0,129,0,5,0,7,0,0,0,73,7,0,0,71,7,0,0,72,7,0,0,65,0,5,0,8,0,0,0,74,7,0,0,105,6,0,0,64,7,0,0,62,0,3,0,74,7,0,0,73,7,0,0,249,0,2,0,140,6,0,0,248,0,2,0,140,6,0,0,61,0,4,0,9,0,0,0,75,7,0,0,136,6,0,0,128,0,5,0,9,0,0,0,76,7,0,0,75,7,0,0,137,2,0,0,62,0,3,0,136,6,0,0,76,7,0,0,249,0,2,0,137,6,0,0,248,0,2,0,139,6,0,0,61,0,4,0,9,0,0,0,77,7,0,0,62,6,0,0,132,0,5,0,9,0,0,0,78,7,0,0,77,7,0,0,32,5,0,0,128,0,5,0,9,0,0,0,79,7,0,0,78,7,0,0,220,4,0,0,65,0,6,0,164,6,0,0,80,7,0,0,160,6,0,0,220,4,0,0,79,7,0,0,61,0,4,0,237,0,0,0,81,7,0,0,80,7,0,0,124,0,4,0,9,0,0,0,82,7,0,0,81,7,0,0,62,0,3,0,62,6,0,0,82,7,0,0,249,0,2,0,132,6,0,0,248,0,2,0,132,6,0,0,249,0,2,0,129,6,0,0,248,0,2,0,131,6,0,0,62,0,3,0,83,7,0,0,220,4,0,0,249,0,2,0,84,7,0,0,248,0,2,0,84,7,0,0,246,0,4,0,86,7,0,0,87,7,0,0,0,0,0,0,249,0,2,0,88,7,0,0,248,0,2,0,88,7,0,0,61,0,4,0,9,0,0,0,89,7,0,0,83,7,0,0,177,0,5,0,117,0,0,0,90,7,0,0,89,7,0,0,32,5,0,0,250,0,4,0,90,7,0,0,85,7,0,0,86,7,0,0,248,0,2,0,85,7,0,0,61,0,4,0,120,6,0,0,91,7,0,0,122,6,0,0,61,0,4,0,225,0,0,0,92,7,0,0,50,6,0,0,61,0,4,0,9,0,0,0,93,7,0,0,83,7,0,0,80,0,5,0,225,0,0,0,94,7,0,0,220,4,0,0,93,7,0,0,128,0,5,0,225,0,0,0,95,7,0,0,92,7,0,0,94,7,0,0,62,0,3,0,96,7,0,0,95,7,0,0,57,0,5,0,225,0,0,0,97,7,0,0,229,0,0,0,96,7,0,0,61,0,4,0,9,0,0,0,98,7,0,0,83,7,0,0,65,0,5,0,8,0,0,0,99,7,0,0,105,6,0,0,98,7,0,0,61,0,4,0,7,0,0,0,100,7,0,0,99,7,0,0,99,0,4,0,91,7,0,0,97,7,0,0,100,7,0,0,249,0,2,0,87,7,0,0,248,0,2,0,87,7,0,0,61,0,4,0,9,0,0,0,101,7,0,0,83,7,0,0,128,0,5,0,9,0,0,0,102,7,0,0,101,7,0,0,137,2,0,0,62,0,3,0,83,7,0,0,102,7,0,0,249,0,2,0,84,7,0,0,248,0,2,0,86,7,0,0,253,0,1,0,56,0,1,0,54,0,5,0,7,0,0,0,15,0,0,0,0,0,0,0,11,0,0,0,55,0,3,0,8,0,0,0,12,0,0,0,55,0,3,0,8,0,0,0,13,0,0,0,55,0,3,0,10,0,0,0,14,0,0,0,248,0,2,0,16,0,0,0,61,0,4,0,9,0,0,0,231,0,0,0,14,0,0,0,247,0,3,0,234,0,0,0,0,0,0,0,251,0,7,0,231,0,0,0,234,0,0,0,1,0,0,0,232,0,0,0,2,0,0,0,233,0,0,0,248,0,2,0,232,0,0,0,61,0,4,0,7,0,0,0,235,0,0,0,13,0,0,0,79,0,8,0,39,0,0,0,236,0,0,0,235,0,0,0,235,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,239,0,0,0,13,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,240,0,0,0,239,0,0,0,65,0,5,0,17,0,0,0,241,0,0,0,12,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,242,0,0,0,241,0,0,0,133,0,5,0,6,0,0,0,243,0,0,0,240,0,0,0,242,0,0,0,81,0,5,0,6,0,0,0,244,0,0,0,236,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,245,0,0,0,236,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,246,0,0,0,236,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,247,0,0,0,244,0,0,0,245,0,0,0,246,0,0,0,243,0,0,0,254,0,2,0,247,0,0,0,248,0,2,0,233,0,0,0,61,0,4,0,7,0,0,0,249,0,0,0,12,0,0,0,79,0,8,0,39,0,0,0,250,0,0,0,249,0,0,0,249,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,251,0,0,0,13,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,252,0,0,0,251,0,0,0,65,0,5,0,17,0,0,0,253,0,0,0,12,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,254,0,0,0,253,0,0,0,133,0,5,0,6,0,0,0,255,0,0,0,252,0,0,0,254,0,0,0,81,0,5,0,6,0,0,0,0,1,0,0,250,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,1,1,0,0,250,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,2,1,0,0,250,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,3,1,0,0,0,1,0,0,1,1,0,0,2,1,0,0,255,0,0,0,254,0,2,0,3,1,0,0,248,0,2,0,234,0,0,0,61,0,4,0,7,0,0,0,6,1,0,0,12,0,0,0,254,0,2,0,6,1,0,0,56,0,1,0,54,0,5,0,6,0,0,0,27,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,17,0,0,0,24,0,0,0,55,0,3,0,20,0,0,0,25,0,0,0,55,0,3,0,22,0,0,0,26,0,0,0,248,0,2,0,28,0,0,0,61,0,4,0,19,0,0,0,9,1,0,0,25,0,0,0,61,0,4,0,21,0,0,0,10,1,0,0,26,0,0,0,61,0,4,0,6,0,0,0,11,1,0,0,24,0,0,0,80,0,5,0,21,0,0,0,13,1,0,0,11,1,0,0,12,1,0,0,129,0,5,0,21,0,0,0,14,1,0,0,10,1,0,0,13,1,0,0,88,0,7,0,7,0,0,0,15,1,0,0,9,1,0,0,14,1,0,0,2,0,0,0,12,1,0,0,81,0,5,0,6,0,0,0,17,1,0,0,15,1,0,0,0,0,0,0,254,0,2,0,17,1,0,0,56,0,1,0,54,0,5,0,2,0,0,0,37,0,0,0,0,0,0,0,29,0,0,0,55,0,3,0,8,0,0,0,30,0,0,0,55,0,3,0,17,0,0,0,31,0,0,0,55,0,3,0,8,0,0,0,32,0,0,0,55,0,3,0,20,0,0,0,33,0,0,0,55,0,3,0,22,0,0,0,34,0,0,0,55,0,3,0,8,0,0,0,35,0,0,0,55,0,3,0,17,0,0,0,36,0,0,0,248,0,2,0,38,0,0,0,59,0,4,0,20,1,0,0,21,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,26,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,32,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,33,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,41,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,42,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,48,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,49,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,55,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,56,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,60,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,61,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,67,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,68,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,74,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,75,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,81,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,82,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,86,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,92,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,93,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,22,1,0,0,35,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,23,1,0,0,22,1,0,0,186,0,5,0,117,0,0,0,24,1,0,0,23,1,0,0,12,1,0,0,62,0,3,0,21,1,0,0,24,1,0,0,61,0,4,0,117,0,0,0,25,1,0,0,21,1,0,0,247,0,3,0,28,1,0,0,0,0,0,0,250,0,4,0,25,1,0,0,27,1,0,0,36,1,0,0,248,0,2,0,27,1,0,0,61,0,4,0,6,0,0,0,30,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,31,1,0,0,29,1,0,0,30,1,0,0,62,0,3,0,32,1,0,0,31,1,0,0,61,0,4,0,21,0,0,0,34,1,0,0,34,0,0,0,62,0,3,0,33,1,0,0,34,1,0,0,57,0,7,0,6,0,0,0,35,1,0,0,27,0,0,0,32,1,0,0,33,0,0,0,33,1,0,0,62,0,3,0,26,1,0,0,35,1,0,0,249,0,2,0,28,1,0,0,248,0,2,0,36,1,0,0,62,0,3,0,26,1,0,0,12,1,0,0,249,0,2,0,28,1,0,0,248,0,2,0,28,1,0,0,61,0,4,0,6,0,0,0,37,1,0,0,26,1,0,0,61,0,4,0,6,0,0,0,39,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,40,1,0,0,38,1,0,0,39,1,0,0,62,0,3,0,41,1,0,0,40,1,0,0,61,0,4,0,21,0,0,0,43,1,0,0,34,0,0,0,62,0,3,0,42,1,0,0,43,1,0,0,57,0,7,0,6,0,0,0,44,1,0,0,27,0,0,0,41,1,0,0,33,0,0,0,42,1,0,0,61,0,4,0,6,0,0,0,46,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,47,1,0,0,45,1,0,0,46,1,0,0,62,0,3,0,48,1,0,0,47,1,0,0,61,0,4,0,21,0,0,0,50,1,0,0,34,0,0,0,62,0,3,0,49,1,0,0,50,1,0,0,57,0,7,0,6,0,0,0,51,1,0,0,27,0,0,0,48,1,0,0,33,0,0,0,49,1,0,0,61,0,4,0,6,0,0,0,53,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,54,1,0,0,52,1,0,0,53,1,0,0,62,0,3,0,55,1,0,0,54,1,0,0,61,0,4,0,21,0,0,0,57,1,0,0,34,0,0,0,62,0,3,0,56,1,0,0,57,1,0,0,57,0,7,0,6,0,0,0,58,1,0,0,27,0,0,0,55,1,0,0,33,0,0,0,56,1,0,0,80,0,7,0,7,0,0,0,59,1,0,0,37,1,0,0,44,1,0,0,51,1,0,0,58,1,0,0,62,0,3,0,30,0,0,0,59,1,0,0,62,0,3,0,60,1,0,0,12,1,0,0,61,0,4,0,21,0,0,0,62,1,0,0,34,0,0,0,62,0,3,0,61,1,0,0,62,1,0,0,57,0,7,0,6,0,0,0,63,1,0,0,27,0,0,0,60,1,0,0,33,0,0,0,61,1,0,0,62,0,3,0,31,0,0,0,63,1,0,0,61,0,4,0,6,0,0,0,65,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,66,1,0,0,64,1,0,0,65,1,0,0,62,0,3,0,67,1,0,0,66,1,0,0,61,0,4,0,21,0,0,0,69,1,0,0,34,0,0,0,62,0,3,0,68,1,0,0,69,1,0,0,57,0,7,0,6,0,0,0,70,1,0,0,27,0,0,0,67,1,0,0,33,0,0,0,68,1,0,0,61,0,4,0,6,0,0,0,72,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,73,1,0,0,71,1,0,0,72,1,0,0,62,0,3,0,74,1,0,0,73,1,0,0,61,0,4,0,21,0,0,0,76,1,0,0,34,0,0,0,62,0,3,0,75,1,0,0,76,1,0,0,57,0,7,0,6,0,0,0,77,1,0,0,27,0,0,0,74,1,0,0,33,0,0,0,75,1,0,0,61,0,4,0,6,0,0,0,79,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,80,1,0,0,78,1,0,0,79,1,0,0,62,0,3,0,81,1,0,0,80,1,0,0,61,0,4,0,21,0,0,0,83,1,0,0,34,0,0,0,62,0,3,0,82,1,0,0,83,1,0,0,57,0,7,0,6,0,0,0,84,1,0,0,27,0,0,0,81,1,0,0,33,0,0,0,82,1,0,0,61,0,4,0,117,0,0,0,85,1,0,0,21,1,0,0,247,0,3,0,88,1,0,0,0,0,0,0,250,0,4,0,85,1,0,0,87,1,0,0,96,1,0,0,248,0,2,0,87,1,0,0,61,0,4,0,6,0,0,0,90,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,91,1,0,0,89,1,0,0,90,1,0,0,62,0,3,0,92,1,0,0,91,1,0,0,61,0,4,0,21,0,0,0,94,1,0,0,34,0,0,0,62,0,3,0,93,1,0,0,94,1,0,0,57,0,7,0,6,0,0,0,95,1,0,0,27,0,0,0,92,1,0,0,33,0,0,0,93,1,0,0,62,0,3,0,86,1,0,0,95,1,0,0,249,0,2,0,88,1,0,0,248,0,2,0,96,1,0,0,62,0,3,0,86,1,0,0,12,1,0,0,249,0,2,0,88,1,0,0,248,0,2,0,88,1,0,0,61,0,4,0,6,0,0,0,97,1,0,0,86,1,0,0,80,0,7,0,7,0,0,0,98,1,0,0,70,1,0,0,77,1,0,0,84,1,0,0,97,1,0,0,62,0,3,0,32,0,0,0,98,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,6,0,0,0,45,0,0,0,0,0,0,0,41,0,0,0,55,0,3,0,8,0,0,0,42,0,0,0,55,0,3,0,40,0,0,0,43,0,0,0,55,0,3,0,8,0,0,0,44,0,0,0,248,0,2,0,46,0,0,0,61,0,4,0,7,0,0,0,99,1,0,0,42,0,0,0,61,0,4,0,7,0,0,0,100,1,0,0,44,0,0,0,148,0,5,0,6,0,0,0,101,1,0,0,99,1,0,0,100,1,0,0,61,0,4,0,39,0,0,0,102,1,0,0,43,0,0,0,61,0,4,0,7,0,0,0,103,1,0,0,44,0,0,0,79,0,8,0,39,0,0,0,104,1,0,0,103,1,0,0,103,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,148,0,5,0,6,0,0,0,105,1,0,0,102,1,0,0,104,1,0,0,129,0,5,0,6,0,0,0,106,1,0,0,101,1,0,0,105,1,0,0,254,0,2,0,106,1,0,0,56,0,1,0,54,0,5,0,6,0,0,0,51,0,0,0,0,0,0,0,47,0,0,0,55,0,3,0,17,0,0,0,48,0,0,0,55,0,3,0,17,0,0,0,49,0,0,0,55,0,3,0,20,0,0,0,50,0,0,0,248,0,2,0,52,0,0,0,61,0,4,0,19,0,0,0,109,1,0,0,50,0,0,0,61,0,4,0,6,0,0,0,110,1,0,0,49,0,0,0,61,0,4,0,6,0,0,0,111,1,0,0,48,0,0,0,131,0,5,0,6,0,0,0,112,1,0,0,64,1,0,0,111,1,0,0,80,0,5,0,21,0,0,0,113,1,0,0,110,1,0,0,112,1,0,0,88,0,7,0,7,0,0,0,114,1,0,0,109,1,0,0,113,1,0,0,2,0,0,0,12,1,0,0,81,0,5,0,6,0,0,0,115,1,0,0,114,1,0,0,0,0,0,0,254,0,2,0,115,1,0,0,56,0,1,0,54,0,5,0,39,0,0,0,57,0,0,0,0,0,0,0,53,0,0,0,55,0,3,0,40,0,0,0,54,0,0,0,55,0,3,0,40,0,0,0,55,0,0,0,55,0,3,0,20,0,0,0,56,0,0,0,248,0,2,0,58,0,0,0,59,0,4,0,17,0,0,0,118,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,121,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,125,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,129,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,133,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,137,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,119,1,0,0,54,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,120,1,0,0,119,1,0,0,62,0,3,0,118,1,0,0,120,1,0,0,65,0,5,0,17,0,0,0,122,1,0,0,55,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,123,1,0,0,122,1,0,0,62,0,3,0,121,1,0,0,123,1,0,0,57,0,7,0,6,0,0,0,124,1,0,0,51,0,0,0,118,1,0,0,121,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,127,1,0,0,54,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,128,1,0,0,127,1,0,0,62,0,3,0,125,1,0,0,128,1,0,0,65,0,5,0,17,0,0,0,130,1,0,0,55,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,131,1,0,0,130,1,0,0,62,0,3,0,129,1,0,0,131,1,0,0,57,0,7,0,6,0,0,0,132,1,0,0,51,0,0,0,125,1,0,0,129,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,135,1,0,0,54,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,136,1,0,0,135,1,0,0,62,0,3,0,133,1,0,0,136,1,0,0,65,0,5,0,17,0,0,0,138,1,0,0,55,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,139,1,0,0,138,1,0,0,62,0,3,0,137,1,0,0,139,1,0,0,57,0,7,0,6,0,0,0,140,1,0,0,51,0,0,0,133,1,0,0,137,1,0,0,56,0,0,0,80,0,6,0,39,0,0,0,141,1,0,0,124,1,0,0,132,1,0,0,140,1,0,0,254,0,2,0,141,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,67,0,0,0,0,0,0,0,59,0,0,0,55,0,3,0,22,0,0,0,60,0,0,0,55,0,3,0,20,0,0,0,61,0,0,0,55,0,3,0,20,0,0,0,62,0,0,0,55,0,3,0,22,0,0,0,63,0,0,0,55,0,3,0,8,0,0,0,64,0,0,0,55,0,3,0,8,0,0,0,65,0,0,0,55,0,3,0,8,0,0,0,66,0,0,0,248,0,2,0,68,0,0,0,59,0,4,0,8,0,0,0,144,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,146,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,149,1,0,0,7,0,0,0,59,0,4,0,20,1,0,0,152,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,161,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,167,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,168,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,169,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,173,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,174,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,175,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,176,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,178,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,180,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,185,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,192,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,194,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,195,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,198,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,206,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,207,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,210,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,213,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,222,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,223,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,226,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,236,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,238,1,0,0,7,0,0,0,61,0,4,0,7,0,0,0,145,1,0,0,64,0,0,0,62,0,3,0,144,1,0,0,145,1,0,0,61,0,4,0,7,0,0,0,147,1,0,0,65,0,0,0,79,0,8,0,39,0,0,0,148,1,0,0,147,1,0,0,147,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,146,1,0,0,148,1,0,0,61,0,4,0,7,0,0,0,150,1,0,0,66,0,0,0,79,0,8,0,39,0,0,0,151,1,0,0,150,1,0,0,150,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,149,1,0,0,151,1,0,0,65,0,5,0,17,0,0,0,153,1,0,0,66,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,154,1,0,0,153,1,0,0,183,0,5,0,117,0,0,0,155,1,0,0,154,1,0,0,12,1,0,0,62,0,3,0,152,1,0,0,155,1,0,0,65,0,5,0,17,0,0,0,156,1,0,0,144,1,0,0,238,0,0,0,61,0,4,0,6,0,0,0,157,1,0,0,156,1,0,0,180,0,5,0,117,0,0,0,158,1,0,0,157,1,0,0,12,1,0,0,247,0,3,0,160,1,0,0,0,0,0,0,250,0,4,0,158,1,0,0,159,1,0,0,166,1,0,0,248,0,2,0,159,1,0,0,61,0,4,0,19,0,0,0,162,1,0,0,61,0,0,0,61,0,4,0,21,0,0,0,163,1,0,0,60,0,0,0,88,0,7,0,7,0,0,0,164,1,0,0,162,1,0,0,163,1,0,0,2,0,0,0,12,1,0,0,79,0,8,0,39,0,0,0,165,1,0,0,164,1,0,0,164,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,3,0,161,1,0,0,165,1,0,0,249,0,2,0,160,1,0,0,248,0,2,0,166,1,0,0,65,0,5,0,17,0,0,0,170,1,0,0,63,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,171,1,0,0,170,1,0,0,136,0,5,0,6,0,0,0,172,1,0,0,64,1,0,0,171,1,0,0,61,0,4,0,21,0,0,0,177,1,0,0,60,0,0,0,62,0,3,0,176,1,0,0,177,1,0,0,61,0,4,0,7,0,0,0,179,1,0,0,144,1,0,0,62,0,3,0,178,1,0,0,179,1,0,0,62,0,3,0,180,1,0,0,172,1,0,0,57,0,11,0,2,0,0,0,181,1,0,0,37,0,0,0,173,1,0,0,174,1,0,0,175,1,0,0,61,0,0,0,176,1,0,0,178,1,0,0,180,1,0,0,61,0,4,0,7,0,0,0,182,1,0,0,173,1,0,0,62,0,3,0,167,1,0,0,182,1,0,0,61,0,4,0,6,0,0,0,183,1,0,0,174,1,0,0,62,0,3,0,168,1,0,0,183,1,0,0,61,0,4,0,7,0,0,0,184,1,0,0,175,1,0,0,62,0,3,0,169,1,0,0,184,1,0,0,61,0,4,0,6,0,0,0,186,1,0,0,168,1,0,0,61,0,4,0,7,0,0,0,187,1,0,0,169,1,0,0,79,0,7,0,21,0,0,0,188,1,0,0,187,1,0,0,187,1,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,189,1,0,0,188,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,190,1,0,0,188,1,0,0,1,0,0,0,80,0,6,0,39,0,0,0,191,1,0,0,186,1,0,0,189,1,0,0,190,1,0,0,61,0,4,0,7,0,0,0,193,1,0,0,167,1,0,0,62,0,3,0,192,1,0,0,193,1,0,0,62,0,3,0,194,1,0,0,191,1,0,0,61,0,4,0,7,0,0,0,196,1,0,0,144,1,0,0,62,0,3,0,195,1,0,0,196,1,0,0,57,0,7,0,6,0,0,0,197,1,0,0,45,0,0,0,192,1,0,0,194,1,0,0,195,1,0,0,62,0,3,0,185,1,0,0,197,1,0,0,61,0,4,0,7,0,0,0,199,1,0,0,167,1,0,0,79,0,8,0,39,0,0,0,200,1,0,0,199,1,0,0,199,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,201,1,0,0,168,1,0,0,81,0,5,0,6,0,0,0,202,1,0,0,200,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,203,1,0,0,200,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,204,1,0,0,200,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,205,1,0,0,202,1,0,0,203,1,0,0,204,1,0,0,201,1,0,0,62,0,3,0,206,1,0,0,205,1,0,0,61,0,4,0,7,0,0,0,208,1,0,0,169,1,0,0,79,0,8,0,39,0,0,0,209,1,0,0,208,1,0,0,208,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,207,1,0,0,209,1,0,0,61,0,4,0,7,0,0,0,211,1,0,0,144,1,0,0,62,0,3,0,210,1,0,0,211,1,0,0,57,0,7,0,6,0,0,0,212,1,0,0,45,0,0,0,206,1,0,0,207,1,0,0,210,1,0,0,62,0,3,0,198,1,0,0,212,1,0,0,61,0,4,0,7,0,0,0,214,1,0,0,167,1,0,0,79,0,7,0,21,0,0,0,215,1,0,0,214,1,0,0,214,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,216,1,0,0,168,1,0,0,65,0,5,0,17,0,0,0,217,1,0,0,169,1,0,0,16,1,0,0,61,0,4,0,6,0,0,0,218,1,0,0,217,1,0,0,81,0,5,0,6,0,0,0,219,1,0,0,215,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,220,1,0,0,215,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,221,1,0,0,219,1,0,0,220,1,0,0,216,1,0,0,218,1,0,0,62,0,3,0,222,1,0,0,221,1,0,0,61,0,4,0,7,0,0,0,224,1,0,0,169,1,0,0,79,0,8,0,39,0,0,0,225,1,0,0,224,1,0,0,224,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,223,1,0,0,225,1,0,0,61,0,4,0,7,0,0,0,227,1,0,0,144,1,0,0,62,0,3,0,226,1,0,0,227,1,0,0,57,0,7,0,6,0,0,0,228,1,0,0,45,0,0,0,222,1,0,0,223,1,0,0,226,1,0,0,62,0,3,0,213,1,0,0,228,1,0,0,61,0,4,0,6,0,0,0,229,1,0,0,185,1,0,0,61,0,4,0,6,0,0,0,230,1,0,0,198,1,0,0,61,0,4,0,6,0,0,0,231,1,0,0,213,1,0,0,80,0,6,0,39,0,0,0,232,1,0,0,229,1,0,0,230,1,0,0,231,1,0,0,62,0,3,0,161,1,0,0,232,1,0,0,249,0,2,0,160,1,0,0,248,0,2,0,160,1,0,0,61,0,4,0,117,0,0,0,233,1,0,0,152,1,0,0,247,0,3,0,235,1,0,0,0,0,0,0,250,0,4,0,233,1,0,0,234,1,0,0,235,1,0,0,248,0,2,0,234,1,0,0,61,0,4,0,39,0,0,0,237,1,0,0,146,1,0,0,62,0,3,0,236,1,0,0,237,1,0,0,61,0,4,0,39,0,0,0,239,1,0,0,161,1,0,0,62,0,3,0,238,1,0,0,239,1,0,0,57,0,7,0,39,0,0,0,240,1,0,0,57,0,0,0,236,1,0,0,238,1,0,0,62,0,0,0,62,0,3,0,161,1,0,0,240,1,0,0,249,0,2,0,235,1,0,0,248,0,2,0,235,1,0,0,61,0,4,0,39,0,0,0,241,1,0,0,146,1,0,0,61,0,4,0,39,0,0,0,242,1,0,0,149,1,0,0,61,0,4,0,39,0,0,0,243,1,0,0,161,1,0,0,12,0,8,0,39,0,0,0,244,1,0,0,1,0,0,0,46,0,0,0,241,1,0,0,242,1,0,0,243,1,0,0,81,0,5,0,6,0,0,0,245,1,0,0,244,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,246,1,0,0,244,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,247,1,0,0,244,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,248,1,0,0,245,1,0,0,246,1,0,0,247,1,0,0,64,1,0,0,254,0,2,0,248,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,77,0,0,0,0,0,0,0,69,0,0,0,55,0,3,0,22,0,0,0,70,0,0,0,55,0,3,0,20,0,0,0,71,0,0,0,55,0,3,0,22,0,0,0,72,0,0,0,55,0,3,0,22,0,0,0,73,0,0,0,55,0,3,0,22,0,0,0,74,0,0,0,55,0,3,0,8,0,0,0,75,0,0,0,55,0,3,0,8,0,0,0,76,0,0,0,248,0,2,0,78,0,0,0,59,0,4,0,22,0,0,0,251,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,254,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,1,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,4,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,7,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,11,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,13,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,19,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,27,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,36,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,46,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,54,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,60,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,83,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,87,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,252,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,253,1,0,0,252,1,0,0,252,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,251,1,0,0,253,1,0,0,61,0,4,0,7,0,0,0,255,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,0,2,0,0,255,1,0,0,255,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,254,1,0,0,0,2,0,0,61,0,4,0,7,0,0,0,2,2,0,0,76,0,0,0,79,0,7,0,21,0,0,0,3,2,0,0,2,2,0,0,2,2,0,0,0,0,0,0,1,0,0,0,62,0,3,0,1,2,0,0,3,2,0,0,61,0,4,0,7,0,0,0,5,2,0,0,76,0,0,0,79,0,7,0,21,0,0,0,6,2,0,0,5,2,0,0,5,2,0,0,2,0,0,0,3,0,0,0,62,0,3,0,4,2,0,0,6,2,0,0,61,0,4,0,21,0,0,0,8,2,0,0,70,0,0,0,61,0,4,0,21,0,0,0,9,2,0,0,251,1,0,0,131,0,5,0,21,0,0,0,10,2,0,0,8,2,0,0,9,2,0,0,62,0,3,0,7,2,0,0,10,2,0,0,61,0,4,0,21,0,0,0,12,2,0,0,254,1,0,0,62,0,3,0,11,2,0,0,12,2,0,0,65,0,5,0,17,0,0,0,14,2,0,0,1,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,15,2,0,0,14,2,0,0,65,0,5,0,17,0,0,0,16,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,17,2,0,0,16,2,0,0,131,0,5,0,6,0,0,0,18,2,0,0,15,2,0,0,17,2,0,0,62,0,3,0,13,2,0,0,18,2,0,0,61,0,4,0,21,0,0,0,20,2,0,0,11,2,0,0,61,0,4,0,21,0,0,0,21,2,0,0,11,2,0,0,148,0,5,0,6,0,0,0,22,2,0,0,20,2,0,0,21,2,0,0,61,0,4,0,6,0,0,0,23,2,0,0,13,2,0,0,61,0,4,0,6,0,0,0,24,2,0,0,13,2,0,0,133,0,5,0,6,0,0,0,25,2,0,0,23,2,0,0,24,2,0,0,131,0,5,0,6,0,0,0,26,2,0,0,22,2,0,0,25,2,0,0,62,0,3,0,19,2,0,0,26,2,0,0,61,0,4,0,21,0,0,0,28,2,0,0,7,2,0,0,61,0,4,0,21,0,0,0,29,2,0,0,11,2,0,0,148,0,5,0,6,0,0,0,30,2,0,0,28,2,0,0,29,2,0,0,65,0,5,0,17,0,0,0,31,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,32,2,0,0,31,2,0,0,61,0,4,0,6,0,0,0,33,2,0,0,13,2,0,0,133,0,5,0,6,0,0,0,34,2,0,0,32,2,0,0,33,2,0,0,129,0,5,0,6,0,0,0,35,2,0,0,30,2,0,0,34,2,0,0,62,0,3,0,27,2,0,0,35,2,0,0,61,0,4,0,21,0,0,0,37,2,0,0,7,2,0,0,61,0,4,0,21,0,0,0,38,2,0,0,7,2,0,0,148,0,5,0,6,0,0,0,39,2,0,0,37,2,0,0,38,2,0,0,65,0,5,0,17,0,0,0,40,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,41,2,0,0,40,2,0,0,65,0,5,0,17,0,0,0,42,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,43,2,0,0,42,2,0,0,133,0,5,0,6,0,0,0,44,2,0,0,41,2,0,0,43,2,0,0,131,0,5,0,6,0,0,0,45,2,0,0,39,2,0,0,44,2,0,0,62,0,3,0,36,2,0,0,45,2,0,0,61,0,4,0,6,0,0,0,47,2,0,0,27,2,0,0,61,0,4,0,6,0,0,0,48,2,0,0,27,2,0,0,133,0,5,0,6,0,0,0,49,2,0,0,47,2,0,0,48,2,0,0,61,0,4,0,6,0,0,0,50,2,0,0,19,2,0,0,61,0,4,0,6,0,0,0,51,2,0,0,36,2,0,0,133,0,5,0,6,0,0,0,52,2,0,0,50,2,0,0,51,2,0,0,131,0,5,0,6,0,0,0,53,2,0,0,49,2,0,0,52,2,0,0,62,0,3,0,46,2,0,0,53,2,0,0,62,0,3,0,54,2,0,0,55,2,0,0,61,0,4,0,6,0,0,0,56,2,0,0,46,2,0,0,183,0,5,0,117,0,0,0,57,2,0,0,56,2,0,0,12,1,0,0,247,0,3,0,59,2,0,0,0,0,0,0,250,0,4,0,57,2,0,0,58,2,0,0,59,2,0,0,248,0,2,0,58,2,0,0,61,0,4,0,6,0,0,0,61,2,0,0,46,2,0,0,12,0,6,0,6,0,0,0,62,2,0,0,1,0,0,0,31,0,0,0,61,2,0,0,142,0,5,0,21,0,0,0,64,2,0,0,63,2,0,0,62,2,0,0,61,0,4,0,6,0,0,0,65,2,0,0,27,2,0,0,80,0,5,0,21,0,0,0,66,2,0,0,65,2,0,0,65,2,0,0,129,0,5,0,21,0,0,0,67,2,0,0,64,2,0,0,66,2,0,0,81,0,5,0,6,0,0,0,68,2,0,0,67,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,69,2,0,0,67,2,0,0,1,0,0,0,80,0,5,0,21,0,0,0,70,2,0,0,68,2,0,0,69,2,0,0,61,0,4,0,6,0,0,0,71,2,0,0,19,2,0,0,80,0,5,0,21,0,0,0,72,2,0,0,71,2,0,0,71,2,0,0,136,0,5,0,21,0,0,0,73,2,0,0,70,2,0,0,72,2,0,0,62,0,3,0,60,2,0,0,73,2,0,0,65,0,5,0,17,0,0,0,74,2,0,0,60,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,75,2,0,0,74,2,0,0,65,0,5,0,17,0,0,0,76,2,0,0,60,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,77,2,0,0,76,2,0,0,186,0,5,0,117,0,0,0,78,2,0,0,75,2,0,0,77,2,0,0,247,0,3,0,80,2,0,0,0,0,0,0,250,0,4,0,78,2,0,0,79,2,0,0,80,2,0,0,248,0,2,0,79,2,0,0,61,0,4,0,21,0,0,0,81,2,0,0,60,2,0,0,79,0,7,0,21,0,0,0,82,2,0,0,81,2,0,0,81,2,0,0,1,0,0,0,0,0,0,0,62,0,3,0,60,2,0,0,82,2,0,0,249,0,2,0,80,2,0,0,248,0,2,0,80,2,0,0,65,0,5,0,17,0,0,0,84,2,0,0,60,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,85,2,0,0,84,2,0,0,190,0,5,0,117,0,0,0,86,2,0,0,85,2,0,0,12,1,0,0,247,0,3,0,89,2,0,0,0,0,0,0,250,0,4,0,86,2,0,0,88,2,0,0,92,2,0,0,248,0,2,0,88,2,0,0,65,0,5,0,17,0,0,0,90,2,0,0,60,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,91,2,0,0,90,2,0,0,62,0,3,0,87,2,0,0,91,2,0,0,249,0,2,0,89,2,0,0,248,0,2,0,92,2,0,0,65,0,5,0,17,0,0,0,93,2,0,0,60,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,94,2,0,0,93,2,0,0,62,0,3,0,87,2,0,0,94,2,0,0,249,0,2,0,89,2,0,0,248,0,2,0,89,2,0,0,61,0,4,0,6,0,0,0,95,2,0,0,87,2,0,0,62,0,3,0,83,2,0,0,95,2,0,0,61,0,4,0,19,0,0,0,96,2,0,0,71,0,0,0,61,0,4,0,21,0,0,0,97,2,0,0,4,2,0,0,61,0,4,0,6,0,0,0,98,2,0,0,83,2,0,0,80,0,5,0,21,0,0,0,99,2,0,0,98,2,0,0,12,1,0,0,129,0,5,0,21,0,0,0,100,2,0,0,97,2,0,0,99,2,0,0,88,0,7,0,7,0,0,0,101,2,0,0,96,2,0,0,100,2,0,0,2,0,0,0,12,1,0,0,62,0,3,0,54,2,0,0,101,2,0,0,249,0,2,0,59,2,0,0,248,0,2,0,59,2,0,0,61,0,4,0,7,0,0,0,102,2,0,0,54,2,0,0,254,0,2,0,102,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,85,0,0,0,0,0,0,0,79,0,0,0,55,0,3,0,22,0,0,0,80,0,0,0,55,0,3,0,20,0,0,0,81,0,0,0,55,0,3,0,22,0,0,0,82,0,0,0,55,0,3,0,8,0,0,0,83,0,0,0,55,0,3,0,8,0,0,0,84,0,0,0,248,0,2,0,86,0,0,0,59,0,4,0,22,0,0,0,105,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,110,2,0,0,7,0,0,0,59,0,4,0,40,0,0,0,114,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,117,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,120,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,136,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,146,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,162,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,106,2,0,0,83,0,0,0,79,0,7,0,21,0,0,0,107,2,0,0,106,2,0,0,106,2,0,0,0,0,0,0,1,0,0,0,61,0,4,0,21,0,0,0,108,2,0,0,82,0,0,0,136,0,5,0,21,0,0,0,109,2,0,0,107,2,0,0,108,2,0,0,62,0,3,0,105,2,0,0,109,2,0,0,65,0,5,0,17,0,0,0,111,2,0,0,83,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,112,2,0,0,111,2,0,0,110,0,4,0,9,0,0,0,113,2,0,0,112,2,0,0,62,0,3,0,110,2,0,0,113,2,0,0,61,0,4,0,7,0,0,0,115,2,0,0,84,0,0,0,79,0,8,0,39,0,0,0,116,2,0,0,115,2,0,0,115,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,114,2,0,0,116,2,0,0,65,0,5,0,17,0,0,0,118,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,119,2,0,0,118,2,0,0,62,0,3,0,117,2,0,0,119,2,0,0,61,0,4,0,19,0,0,0,121,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,122,2,0,0,80,0,0,0,88,0,7,0,7,0,0,0,123,2,0,0,121,2,0,0,122,2,0,0,2,0,0,0,12,1,0,0,65,0,5,0,17,0,0,0,124,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,125,2,0,0,124,2,0,0,142,0,5,0,7,0,0,0,126,2,0,0,123,2,0,0,125,2,0,0,62,0,3,0,120,2,0,0,126,2,0,0,61,0,4,0,39,0,0,0,127,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,128,2,0,0,127,2,0,0,127,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,129,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,130,2,0,0,129,2,0,0,129,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,131,2,0,0,130,2,0,0,128,2,0,0,65,0,5,0,17,0,0,0,132,2,0,0,114,2,0,0,16,1,0,0,81,0,5,0,6,0,0,0,133,2,0,0,131,2,0,0,0,0,0,0,62,0,3,0,132,2,0,0,133,2,0,0,65,0,5,0,17,0,0,0,134,2,0,0,114,2,0,0,126,1,0,0,81,0,5,0,6,0,0,0,135,2,0,0,131,2,0,0,1,0,0,0,62,0,3,0,134,2,0,0,135,2,0,0,62,0,3,0,136,2,0,0,137,2,0,0,249,0,2,0,138,2,0,0,248,0,2,0,138,2,0,0,246,0,4,0,140,2,0,0,141,2,0,0,0,0,0,0,249,0,2,0,142,2,0,0,248,0,2,0,142,2,0,0,61,0,4,0,9,0,0,0,143,2,0,0,136,2,0,0,61,0,4,0,9,0,0,0,144,2,0,0,110,2,0,0,179,0,5,0,117,0,0,0,145,2,0,0,143,2,0,0,144,2,0,0,250,0,4,0,145,2,0,0,139,2,0,0,140,2,0,0,248,0,2,0,139,2,0,0,65,0,5,0,17,0,0,0,147,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,148,2,0,0,147,2,0,0,62,0,3,0,146,2,0,0,148,2,0,0,61,0,4,0,39,0,0,0,149,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,150,2,0,0,149,2,0,0,149,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,151,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,152,2,0,0,151,2,0,0,151,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,153,2,0,0,152,2,0,0,150,2,0,0,65,0,5,0,17,0,0,0,154,2,0,0,114,2,0,0,16,1,0,0,81,0,5,0,6,0,0,0,155,2,0,0,153,2,0,0,0,0,0,0,62,0,3,0,154,2,0,0,155,2,0,0,65,0,5,0,17,0,0,0,156,2,0,0,114,2,0,0,126,1,0,0,81,0,5,0,6,0,0,0,157,2,0,0,153,2,0,0,1,0,0,0,62,0,3,0,156,2,0,0,157,2,0,0,65,0,5,0,17,0,0,0,158,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,159,2,0,0,158,2,0,0,61,0,4,0,6,0,0,0,160,2,0,0,146,2,0,0,129,0,5,0,6,0,0,0,161,2,0,0,160,2,0,0,159,2,0,0,62,0,3,0,146,2,0,0,161,2,0,0,61,0,4,0,21,0,0,0,163,2,0,0,105,2,0,0,61,0,4,0,9,0,0,0,164,2,0,0,136,2,0,0,111,0,4,0,6,0,0,0,165,2,0,0,164,2,0,0,65,0,5,0,17,0,0,0,166,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,167,2,0,0,166,2,0,0,61,0,4,0,6,0,0,0,168,2,0,0,146,2,0,0,136,0,5,0,6,0,0,0,169,2,0,0,167,2,0,0,168,2,0,0,129,0,5,0,6,0,0,0,170,2,0,0,165,2,0,0,169,2,0,0,142,0,5,0,21,0,0,0,171,2,0,0,163,2,0,0,170,2,0,0,62,0,3,0,162,2,0,0,171,2,0,0,61,0,4,0,19,0,0,0,172,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,173,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,174,2,0,0,162,2,0,0,131,0,5,0,21,0,0,0,175,2,0,0,173,2,0,0,174,2,0,0,88,0,7,0,7,0,0,0,176,2,0,0,172,2,0,0,175,2,0,0,2,0,0,0,12,1,0,0,61,0,4,0,19,0,0,0,177,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,178,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,179,2,0,0,162,2,0,0,129,0,5,0,21,0,0,0,180,2,0,0,178,2,0,0,179,2,0,0,88,0,7,0,7,0,0,0,181,2,0,0,177,2,0,0,180,2,0,0,2,0,0,0,12,1,0,0,129,0,5,0,7,0,0,0,182,2,0,0,176,2,0,0,181,2,0,0,61,0,4,0,6,0,0,0,183,2,0,0,146,2,0,0,142,0,5,0,7,0,0,0,184,2,0,0,182,2,0,0,183,2,0,0,61,0,4,0,7,0,0,0,185,2,0,0,120,2,0,0,129,0,5,0,7,0,0,0,186,2,0,0,185,2,0,0,184,2,0,0,62,0,3,0,120,2,0,0,186,2,0,0,61,0,4,0,6,0,0,0,187,2,0,0,146,2,0,0,133,0,5,0,6,0,0,0,188,2,0,0,71,1,0,0,187,2,0,0,61,0,4,0,6,0,0,0,189,2,0,0,117,2,0,0,129,0,5,0,6,0,0,0,190,2,0,0,189,2,0,0,188,2,0,0,62,0,3,0,117,2,0,0,190,2,0,0,61,0,4,0,39,0,0,0,191,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,192,2,0,0,191,2,0,0,191,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,193,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,194,2,0,0,193,2,0,0,193,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,195,2,0,0,194,2,0,0,192,2,0,0,65,0,5,0,17,0,0,0,196,2,0,0,114,2,0,0,16,1,0,0,81,0,5,0,6,0,0,0,197,2,0,0,195,2,0,0,0,0,0,0,62,0,3,0,196,2,0,0,197,2,0,0,65,0,5,0,17,0,0,0,198,2,0,0,114,2,0,0,126,1,0,0,81,0,5,0,6,0,0,0,199,2,0,0,195,2,0,0,1,0,0,0,62,0,3,0,198,2,0,0,199,2,0,0,249,0,2,0,141,2,0,0,248,0,2,0,141,2,0,0,61,0,4,0,9,0,0,0,201,2,0,0,136,2,0,0,128,0,5,0,9,0,0,0,202,2,0,0,201,2,0,0,200,2,0,0,62,0,3,0,136,2,0,0,202,2,0,0,249,0,2,0,138,2,0,0,248,0,2,0,140,2,0,0,61,0,4,0,7,0,0,0,203,2,0,0,120,2,0,0,61,0,4,0,6,0,0,0,204,2,0,0,117,2,0,0,80,0,7,0,7,0,0,0,205,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,136,0,5,0,7,0,0,0,206,2,0,0,203,2,0,0,205,2,0,0,254,0,2,0,206,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,95,0,0,0,0,0,0,0,87,0,0,0,55,0,3,0,22,0,0,0,88,0,0,0,55,0,3,0,20,0,0,0,89,0,0,0,55,0,3,0,8,0,0,0,90,0,0,0,55,0,3,0,8,0,0,0,91,0,0,0,55,0,3,0,8,0,0,0,92,0,0,0,55,0,3,0,8,0,0,0,93,0,0,0,55,0,3,0,8,0,0,0,94,0,0,0,248,0,2,0,96,0,0,0,59,0,4,0,8,0,0,0,209,2,0,0,7,0,0,0,59,0,4,0,214,2,0,0,215,2,0,0,7,0,0,0,61,0,4,0,19,0,0,0,210,2,0,0,89,0,0,0,61,0,4,0,21,0,0,0,211,2,0,0,88,0,0,0,88,0,7,0,7,0,0,0,212,2,0,0,210,2,0,0,211,2,0,0,2,0,0,0,12,1,0,0,62,0,3,0,209,2,0,0,212,2,0,0,61,0,4,0,7,0,0,0,216,2,0,0,90,0,0,0,61,0,4,0,7,0,0,0,217,2,0,0,91,0,0,0,61,0,4,0,7,0,0,0,218,2,0,0,92,0,0,0,61,0,4,0,7,0,0,0,219,2,0,0,93,0,0,0,81,0,5,0,6,0,0,0,220,2,0,0,216,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,221,2,0,0,216,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,222,2,0,0,216,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,223,2,0,0,216,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,224,2,0,0,217,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,225,2,0,0,217,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,226,2,0,0,217,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,227,2,0,0,217,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,228,2,0,0,218,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,229,2,0,0,218,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,230,2,0,0,218,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,231,2,0,0,218,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,232,2,0,0,219,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,233,2,0,0,219,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,234,2,0,0,219,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,235,2,0,0,219,2,0,0,3,0,0,0,80,0,7,0,7,0,0,0,236,2,0,0,220,2,0,0,221,2,0,0,222,2,0,0,223,2,0,0,80,0,7,0,7,0,0,0,237,2,0,0,224,2,0,0,225,2,0,0,226,2,0,0,227,2,0,0,80,0,7,0,7,0,0,0,238,2,0,0,228,2,0,0,229,2,0,0,230,2,0,0,231,2,0,0,80,0,7,0,7,0,0,0,239,2,0,0,232,2,0,0,233,2,0,0,234,2,0,0,235,2,0,0,80,0,7,0,213,2,0,0,240,2,0,0,236,2,0,0,237,2,0,0,238,2,0,0,239,2,0,0,62,0,3,0,215,2,0,0,240,2,0,0,61,0,4,0,213,2,0,0,241,2,0,0,215,2,0,0,61,0,4,0,7,0,0,0,242,2,0,0,209,2,0,0,145,0,5,0,7,0,0,0,243,2,0,0,241,2,0,0,242,2,0,0,61,0,4,0,7,0,0,0,244,2,0,0,94,0,0,0,129,0,5,0,7,0,0,0,245,2,0,0,243,2,0,0,244,2,0,0,254,0,2,0,245,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,100,0,0,0,0,0,0,0,97,0,0,0,55,0,3,0,22,0,0,0,98,0,0,0,55,0,3,0,20,0,0,0,99,0,0,0,248,0,2,0,101,0,0,0,61,0,4,0,19,0,0,0,248,2,0,0,99,0,0,0,61,0,4,0,21,0,0,0,249,2,0,0,98,0,0,0,88,0,7,0,7,0,0,0,250,2,0,0,248,2,0,0,249,2,0,0,2,0,0,0,12,1,0,0,254,0,2,0,250,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,115,0,0,0,0,0,0,0,102,0,0,0,55,0,3,0,22,0,0,0,103,0,0,0,55,0,3,0,20,0,0,0,104,0,0,0,55,0,3,0,20,0,0,0,105,0,0,0,55,0,3,0,22,0,0,0,106,0,0,0,55,0,3,0,22,0,0,0,107,0,0,0,55,0,3,0,22,0,0,0,108,0,0,0,55,0,3,0,8,0,0,0,109,0,0,0,55,0,3,0,8,0,0,0,110,0,0,0,55,0,3,0,8,0,0,0,111,0,0,0,55,0,3,0,8,0,0,0,112,0,0,0,55,0,3,0,8,0,0,0,113,0,0,0,55,0,3,0,10,0,0,0,114,0,0,0,248,0,2,0,116,0,0,0,59,0,4,0,22,0,0,0,3,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,5,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,7,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,9,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,11,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,13,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,17,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,19,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,21,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,23,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,27,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,29,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,31,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,33,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,35,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,39,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,41,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,43,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,45,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,47,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,49,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,54,3,0,0,7,0,0,0,61,0,4,0,9,0,0,0,253,2,0,0,114,0,0,0,247,0,3,0,2,3,0,0,0,0,0,0,251,0,11,0,253,2,0,0,2,3,0,0,1,0,0,0,254,2,0,0,3,0,0,0,255,2,0,0,2,0,0,0,0,3,0,0,4,0,0,0,1,3,0,0,248,0,2,0,254,2,0,0,61,0,4,0,21,0,0,0,4,3,0,0,103,0,0,0,62,0,3,0,3,3,0,0,4,3,0,0,61,0,4,0,21,0,0,0,6,3,0,0,106,0,0,0,62,0,3,0,5,3,0,0,6,3,0,0,61,0,4,0,21,0,0,0,8,3,0,0,107,0,0,0,62,0,3,0,7,3,0,0,8,3,0,0,61,0,4,0,21,0,0,0,10,3,0,0,108,0,0,0,62,0,3,0,9,3,0,0,10,3,0,0,61,0,4,0,7,0,0,0,12,3,0,0,109,0,0,0,62,0,3,0,11,3,0,0,12,3,0,0,61,0,4,0,7,0,0,0,14,3,0,0,110,0,0,0,62,0,3,0,13,3,0,0,14,3,0,0,57,0,11,0,7,0,0,0,15,3,0,0,77,0,0,0,3,3,0,0,104,0,0,0,5,3,0,0,7,3,0,0,9,3,0,0,11,3,0,0,13,3,0,0,254,0,2,0,15,3,0,0,248,0,2,0,255,2,0,0,61,0,4,0,21,0,0,0,18,3,0,0,103,0,0,0,62,0,3,0,17,3,0,0,18,3,0,0,61,0,4,0,21,0,0,0,20,3,0,0,106,0,0,0,62,0,3,0,19,3,0,0,20,3,0,0,61,0,4,0,7,0,0,0,22,3,0,0,109,0,0,0,62,0,3,0,21,3,0,0,22,3,0,0,61,0,4,0,7,0,0,0,24,3,0,0,110,0,0,0,62,0,3,0,23,3,0,0,24,3,0,0,57,0,9,0,7,0,0,0,25,3,0,0,85,0,0,0,17,3,0,0,104,0,0,0,19,3,0,0,21,3,0,0,23,3,0,0,254,0,2,0,25,3,0,0,248,0,2,0,0,3,0,0,61,0,4,0,21,0,0,0,28,3,0,0,103,0,0,0,62,0,3,0,27,3,0,0,28,3,0,0,61,0,4,0,21,0,0,0,30,3,0,0,106,0,0,0,62,0,3,0,29,3,0,0,30,3,0,0,61,0,4,0,7,0,0,0,32,3,0,0,109,0,0,0,62,0,3,0,31,3,0,0,32,3,0,0,61,0,4,0,7,0,0,0,34,3,0,0,110,0,0,0,62,0,3,0,33,3,0,0,34,3,0,0,61,0,4,0,7,0,0,0,36,3,0,0,111,0,0,0,62,0,3,0,35,3,0,0,36,3,0,0,57,0,11,0,7,0,0,0,37,3,0,0,67,0,0,0,27,3,0,0,104,0,0,0,105,0,0,0,29,3,0,0,31,3,0,0,33,3,0,0,35,3,0,0,254,0,2,0,37,3,0,0,248,0,2,0,1,3,0,0,61,0,4,0,21,0,0,0,40,3,0,0,103,0,0,0,62,0,3,0,39,3,0,0,40,3,0,0,61,0,4,0,7,0,0,0,42,3,0,0,109,0,0,0,62,0,3,0,41,3,0,0,42,3,0,0,61,0,4,0,7,0,0,0,44,3,0,0,110,0,0,0,62,0,3,0,43,3,0,0,44,3,0,0,61,0,4,0,7,0,0,0,46,3,0,0,111,0,0,0,62,0,3,0,45,3,0,0,46,3,0,0,61,0,4,0,7,0,0,0,48,3,0,0,112,0,0,0,62,0,3,0,47,3,0,0,48,3,0,0,61,0,4,0,7,0,0,0,50,3,0,0,113,0,0,0,62,0,3,0,49,3,0,0,50,3,0,0,57,0,11,0,7,0,0,0,51,3,0,0,95,0,0,0,39,3,0,0,104,0,0,0,41,3,0,0,43,3,0,0,45,3,0,0,47,3,0,0,49,3,0,0,254,0,2,0,51,3,0,0,248,0,2,0,2,3,0,0,61,0,4,0,21,0,0,0,55,3,0,0,103,0,0,0,62,0,3,0,54,3,0,0,55,3,0,0,57,0,6,0,7,0,0,0,56,3,0,0,100,0,0,0,54,3,0,0,104,0,0,0,254,0,2,0,56,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,124,0,0,0,0,0,0,0,120,0,0,0,55,0,3,0,119,0,0,0,121,0,0,0,55,0,3,0,40,0,0,0,122,0,0,0,55,0,3,0,40,0,0,0,123,0,0,0,248,0,2,0,125,0,0,0,59,0,4,0,17,0,0,0,61,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,72,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,83,3,0,0,7,0,0,0,65,0,5,0,20,1,0,0,59,3,0,0,121,0,0,0,16,1,0,0,61,0,4,0,117,0,0,0,60,3,0,0,59,3,0,0,247,0,3,0,63,3,0,0,0,0,0,0,250,0,4,0,60,3,0,0,62,3,0,0,66,3,0,0,248,0,2,0,62,3,0,0,65,0,5,0,17,0,0,0,64,3,0,0,122,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,65,3,0,0,64,3,0,0,62,0,3,0,61,3,0,0,65,3,0,0,249,0,2,0,63,3,0,0,248,0,2,0,66,3,0,0,65,0,5,0,17,0,0,0,67,3,0,0,123,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,68,3,0,0,67,3,0,0,62,0,3,0,61,3,0,0,68,3,0,0,249,0,2,0,63,3,0,0,248,0,2,0,63,3,0,0,61,0,4,0,6,0,0,0,69,3,0,0,61,3,0,0,65,0,5,0,20,1,0,0,70,3,0,0,121,0,0,0,126,1,0,0,61,0,4,0,117,0,0,0,71,3,0,0,70,3,0,0,247,0,3,0,74,3,0,0,0,0,0,0,250,0,4,0,71,3,0,0,73,3,0,0,77,3,0,0,248,0,2,0,73,3,0,0,65,0,5,0,17,0,0,0,75,3,0,0,122,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,76,3,0,0,75,3,0,0,62,0,3,0,72,3,0,0,76,3,0,0,249,0,2,0,74,3,0,0,248,0,2,0,77,3,0,0,65,0,5,0,17,0,0,0,78,3,0,0,123,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,79,3,0,0,78,3,0,0,62,0,3,0,72,3,0,0,79,3,0,0,249,0,2,0,74,3,0,0,248,0,2,0,74,3,0,0,61,0,4,0,6,0,0,0,80,3,0,0,72,3,0,0,65,0,5,0,20,1,0,0,81,3,0,0,121,0,0,0,134,1,0,0,61,0,4,0,117,0,0,0,82,3,0,0,81,3,0,0,247,0,3,0,85,3,0,0,0,0,0,0,250,0,4,0,82,3,0,0,84,3,0,0,88,3,0,0,248,0,2,0,84,3,0,0,65,0,5,0,17,0,0,0,86,3,0,0,122,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,87,3,0,0,86,3,0,0,62,0,3,0,83,3,0,0,87,3,0,0,249,0,2,0,85,3,0,0,248,0,2,0,88,3,0,0,65,0,5,0,17,0,0,0,89,3,0,0,123,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,90,3,0,0,89,3,0,0,62,0,3,0,83,3,0,0,90,3,0,0,249,0,2,0,85,3,0,0,248,0,2,0,85,3,0,0,61,0,4,0,6,0,0,0,91,3,0,0,83,3,0,0,80,0,6,0,39,0,0,0,92,3,0,0,69,3,0,0,80,3,0,0,91,3,0,0,254,0,2,0,92,3,0,0,56,0,1,0,54,0,5,0,6,0,0,0,129,0,0,0,0,0,0,0,126,0,0,0,55,0,3,0,17,0,0,0,127,0,0,0,55,0,3,0,17,0,0,0,128,0,0,0,248,0,2,0,130,0,0,0,59,0,4,0,17,0,0,0,97,3,0,0,7,0,0,0,61,0,4,0,6,0,0,0,95,3,0,0,128,0,0,0,183,0,5,0,117,0,0,0,96,3,0,0,95,3,0,0,12,1,0,0,247,0,3,0,99,3,0,0,0,0,0,0,250,0,4,0,96,3,0,0,98,3,0,0,103,3,0,0,248,0,2,0,98,3,0,0,61,0,4,0,6,0,0,0,100,3,0,0,127,0,0,0,61,0,4,0,6,0,0,0,101,3,0,0,128,0,0,0,136,0,5,0,6,0,0,0,102,3,0,0,100,3,0,0,101,3,0,0,62,0,3,0,97,3,0,0,102,3,0,0,249,0,2,0,99,3,0,0,248,0,2,0,103,3,0,0,62,0,3,0,97,3,0,0,12,1,0,0,249,0,2,0,99,3,0,0,248,0,2,0,99,3,0,0,61,0,4,0,6,0,0,0,104,3,0,0,97,3,0,0,254,0,2,0,104,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,134,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,132,0,0,0,55,0,3,0,40,0,0,0,133,0,0,0,248,0,2,0,135,0,0,0,59,0,4,0,119,0,0,0,107,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,111,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,119,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,121,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,122,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,124,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,126,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,127,3,0,0,7,0,0,0,61,0,4,0,39,0,0,0,108,3,0,0,132,0,0,0,180,0,5,0,118,0,0,0,110,3,0,0,108,3,0,0,109,3,0,0,62,0,3,0,107,3,0,0,110,3,0,0,61,0,4,0,39,0,0,0,112,3,0,0,133,0,0,0,180,0,5,0,118,0,0,0,114,3,0,0,112,3,0,0,113,3,0,0,62,0,3,0,111,3,0,0,114,3,0,0,61,0,4,0,39,0,0,0,115,3,0,0,132,0,0,0,61,0,4,0,39,0,0,0,116,3,0,0,133,0,0,0,131,0,5,0,39,0,0,0,117,3,0,0,113,3,0,0,116,3,0,0,136,0,5,0,39,0,0,0,118,3,0,0,115,3,0,0,117,3,0,0,61,0,4,0,118,0,0,0,120,3,0,0,111,3,0,0,62,0,3,0,119,3,0,0,120,3,0,0,62,0,3,0,121,3,0,0,113,3,0,0,62,0,3,0,122,3,0,0,118,3,0,0,57,0,7,0,39,0,0,0,123,3,0,0,124,0,0,0,119,3,0,0,121,3,0,0,122,3,0,0,61,0,4,0,118,0,0,0,125,3,0,0,107,3,0,0,62,0,3,0,124,3,0,0,125,3,0,0,62,0,3,0,126,3,0,0,109,3,0,0,62,0,3,0,127,3,0,0,123,3,0,0,57,0,7,0,39,0,0,0,128,3,0,0,124,0,0,0,124,3,0,0,126,3,0,0,127,3,0,0,254,0,2,0,128,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,138,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,137,0,0,0,248,0,2,0,139,0,0,0,59,0,4,0,17,0,0,0,131,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,141,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,132,3,0,0,137,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,133,3,0,0,132,3,0,0,65,0,5,0,17,0,0,0,134,3,0,0,137,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,135,3,0,0,134,3,0,0,65,0,5,0,17,0,0,0,136,3,0,0,137,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,137,3,0,0,136,3,0,0,131,0,5,0,6,0,0,0,138,3,0,0,64,1,0,0,137,3,0,0,12,0,7,0,6,0,0,0,139,3,0,0,1,0,0,0,37,0,0,0,135,3,0,0,138,3,0,0,133,0,5,0,6,0,0,0,140,3,0,0,133,3,0,0,139,3,0,0,62,0,3,0,131,3,0,0,140,3,0,0,65,0,5,0,17,0,0,0,144,3,0,0,137,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,145,3,0,0,144,3,0,0,133,0,5,0,6,0,0,0,147,3,0,0,145,3,0,0,146,3,0,0,80,0,6,0,39,0,0,0,148,3,0,0,147,3,0,0,147,3,0,0,147,3,0,0,129,0,5,0,39,0,0,0,149,3,0,0,143,3,0,0,148,3,0,0,80,0,6,0,39,0,0,0,151,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,141,0,5,0,39,0,0,0,152,3,0,0,149,3,0,0,151,3,0,0,62,0,3,0,141,3,0,0,152,3,0,0,61,0,4,0,39,0,0,0,153,3,0,0,137,0,0,0,79,0,8,0,39,0,0,0,154,3,0,0,153,3,0,0,153,3,0,0,2,0,0,0,2,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,155,3,0,0,141,3,0,0,131,0,5,0,39,0,0,0,157,3,0,0,155,3,0,0,156,3,0,0,61,0,4,0,39,0,0,0,160,3,0,0,141,3,0,0,131,0,5,0,39,0,0,0,161,3,0,0,159,3,0,0,160,3,0,0,12,0,7,0,39,0,0,0,162,3,0,0,1,0,0,0,37,0,0,0,157,3,0,0,161,3,0,0,80,0,6,0,39,0,0,0,163,3,0,0,52,1,0,0,52,1,0,0,52,1,0,0,80,0,6,0,39,0,0,0,164,3,0,0,64,1,0,0,64,1,0,0,64,1,0,0,12,0,8,0,39,0,0,0,165,3,0,0,1,0,0,0,43,0,0,0,162,3,0,0,163,3,0,0,164,3,0,0,61,0,4,0,6,0,0,0,166,3,0,0,131,3,0,0,142,0,5,0,39,0,0,0,167,3,0,0,165,3,0,0,166,3,0,0,131,0,5,0,39,0,0,0,168,3,0,0,154,3,0,0,167,3,0,0,254,0,2,0,168,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,141,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,140,0,0,0,248,0,2,0,142,0,0,0,59,0,4,0,17,0,0,0,171,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,180,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,189,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,193,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,198,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,203,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,216,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,232,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,244,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,245,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,249,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,250,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,252,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,172,3,0,0,140,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,173,3,0,0,172,3,0,0,65,0,5,0,17,0,0,0,174,3,0,0,140,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,175,3,0,0,174,3,0,0,12,0,7,0,6,0,0,0,176,3,0,0,1,0,0,0,40,0,0,0,173,3,0,0,175,3,0,0,65,0,5,0,17,0,0,0,177,3,0,0,140,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,178,3,0,0,177,3,0,0,12,0,7,0,6,0,0,0,179,3,0,0,1,0,0,0,40,0,0,0,176,3,0,0,178,3,0,0,62,0,3,0,171,3,0,0,179,3,0,0,65,0,5,0,17,0,0,0,181,3,0,0,140,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,182,3,0,0,181,3,0,0,65,0,5,0,17,0,0,0,183,3,0,0,140,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,184,3,0,0,183,3,0,0,12,0,7,0,6,0,0,0,185,3,0,0,1,0,0,0,37,0,0,0,182,3,0,0,184,3,0,0,65,0,5,0,17,0,0,0,186,3,0,0,140,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,187,3,0,0,186,3,0,0,12,0,7,0,6,0,0,0,188,3,0,0,1,0,0,0,37,0,0,0,185,3,0,0,187,3,0,0,62,0,3,0,180,3,0,0,188,3,0,0,61,0,4,0,6,0,0,0,190,3,0,0,171,3,0,0,61,0,4,0,6,0,0,0,191,3,0,0,180,3,0,0,131,0,5,0,6,0,0,0,192,3,0,0,190,3,0,0,191,3,0,0,62,0,3,0,189,3,0,0,192,3,0,0,61,0,4,0,6,0,0,0,194,3,0,0,180,3,0,0,61,0,4,0,6,0,0,0,195,3,0,0,171,3,0,0,12,0,8,0,6,0,0,0,197,3,0,0,1,0,0,0,46,0,0,0,194,3,0,0,195,3,0,0,196,3,0,0,62,0,3,0,193,3,0,0,197,3,0,0,65,0,5,0,17,0,0,0,199,3,0,0,140,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,200,3,0,0,199,3,0,0,61,0,4,0,6,0,0,0,201,3,0,0,171,3,0,0,180,0,5,0,117,0,0,0,202,3,0,0,200,3,0,0,201,3,0,0,247,0,3,0,205,3,0,0,0,0,0,0,250,0,4,0,202,3,0,0,204,3,0,0,211,3,0,0,248,0,2,0,204,3,0,0,61,0,4,0,39,0,0,0,206,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,207,3,0,0,206,3,0,0,206,3,0,0,1,0,0,0,2,0,0,0,81,0,5,0,6,0,0,0,208,3,0,0,207,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,209,3,0,0,207,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,210,3,0,0,12,1,0,0,208,3,0,0,209,3,0,0,62,0,3,0,203,3,0,0,210,3,0,0,249,0,2,0,205,3,0,0,248,0,2,0,211,3,0,0,65,0,5,0,17,0,0,0,212,3,0,0,140,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,213,3,0,0,212,3,0,0,61,0,4,0,6,0,0,0,214,3,0,0,171,3,0,0,180,0,5,0,117,0,0,0,215,3,0,0,213,3,0,0,214,3,0,0,247,0,3,0,218,3,0,0,0,0,0,0,250,0,4,0,215,3,0,0,217,3,0,0,224,3,0,0,248,0,2,0,217,3,0,0,61,0,4,0,39,0,0,0,219,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,220,3,0,0,219,3,0,0,219,3,0,0,2,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,221,3,0,0,220,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,222,3,0,0,220,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,223,3,0,0,71,1,0,0,221,3,0,0,222,3,0,0,62,0,3,0,216,3,0,0,223,3,0,0,249,0,2,0,218,3,0,0,248,0,2,0,224,3,0,0,61,0,4,0,39,0,0,0,225,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,226,3,0,0,225,3,0,0,225,3,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,227,3,0,0,226,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,228,3,0,0,226,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,229,3,0,0,89,1,0,0,227,3,0,0,228,3,0,0,62,0,3,0,216,3,0,0,229,3,0,0,249,0,2,0,218,3,0,0,248,0,2,0,218,3,0,0,61,0,4,0,39,0,0,0,230,3,0,0,216,3,0,0,62,0,3,0,203,3,0,0,230,3,0,0,249,0,2,0,205,3,0,0,248,0,2,0,205,3,0,0,61,0,4,0,39,0,0,0,231,3,0,0,203,3,0,0,62,0,3,0,198,3,0,0,231,3,0,0,65,0,5,0,17,0,0,0,234,3,0,0,198,3,0,0,16,1,0,0,61,0,4,0,6,0,0,0,235,3,0,0,234,3,0,0,61,0,4,0,6,0,0,0,236,3,0,0,189,3,0,0,133,0,5,0,6,0,0,0,237,3,0,0,235,3,0,0,236,3,0,0,65,0,5,0,17,0,0,0,238,3,0,0,198,3,0,0,126,1,0,0,61,0,4,0,6,0,0,0,239,3,0,0,238,3,0,0,129,0,5,0,6,0,0,0,240,3,0,0,237,3,0,0,239,3,0,0,65,0,5,0,17,0,0,0,241,3,0,0,198,3,0,0,134,1,0,0,61,0,4,0,6,0,0,0,242,3,0,0,241,3,0,0,131,0,5,0,6,0,0,0,243,3,0,0,240,3,0,0,242,3,0,0,62,0,3,0,244,3,0,0,243,3,0,0,61,0,4,0,6,0,0,0,246,3,0,0,189,3,0,0,62,0,3,0,245,3,0,0,246,3,0,0,57,0,6,0,6,0,0,0,247,3,0,0,129,0,0,0,244,3,0,0,245,3,0,0,133,0,5,0,6,0,0,0,248,3,0,0,233,3,0,0,247,3,0,0,62,0,3,0,232,3,0,0,248,3,0,0,61,0,4,0,6,0,0,0,251,3,0,0,189,3,0,0,62,0,3,0,250,3,0,0,251,3,0,0,61,0,4,0,6,0,0,0,253,3,0,0,171,3,0,0,62,0,3,0,252,3,0,0,253,3,0,0,57,0,6,0,6,0,0,0,254,3,0,0,129,0,0,0,250,3,0,0,252,3,0,0,62,0,3,0,249,3,0,0,254,3,0,0,61,0,4,0,6,0,0,0,255,3,0,0,232,3,0,0,61,0,4,0,6,0,0,0,0,4,0,0,249,3,0,0,61,0,4,0,6,0,0,0,1,4,0,0,193,3,0,0,80,0,6,0,39,0,0,0,2,4,0,0,255,3,0,0,0,4,0,0,1,4,0,0,254,0,2,0,2,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,145,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,143,0,0,0,55,0,3,0,40,0,0,0,144,0,0,0,248,0,2,0,146,0,0,0,61,0,4,0,39,0,0,0,5,4,0,0,143,0,0,0,61,0,4,0,39,0,0,0,6,4,0,0,144,0,0,0,129,0,5,0,39,0,0,0,7,4,0,0,5,4,0,0,6,4,0,0,61,0,4,0,39,0,0,0,8,4,0,0,143,0,0,0,61,0,4,0,39,0,0,0,9,4,0,0,144,0,0,0,133,0,5,0,39,0,0,0,10,4,0,0,8,4,0,0,9,4,0,0,131,0,5,0,39,0,0,0,11,4,0,0,7,4,0,0,10,4,0,0,254,0,2,0,11,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,149,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,147,0,0,0,55,0,3,0,40,0,0,0,148,0,0,0,248,0,2,0,150,0,0,0,59,0,4,0,40,0,0,0,25,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,27,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,29,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,30,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,31,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,14,4,0,0,148,0,0,0,188,0,5,0,118,0,0,0,16,4,0,0,14,4,0,0,15,4,0,0,61,0,4,0,39,0,0,0,17,4,0,0,147,0,0,0,133,0,5,0,39,0,0,0,19,4,0,0,17,4,0,0,18,4,0,0,61,0,4,0,39,0,0,0,20,4,0,0,148,0,0,0,133,0,5,0,39,0,0,0,21,4,0,0,19,4,0,0,20,4,0,0,61,0,4,0,39,0,0,0,22,4,0,0,148,0,0,0,133,0,5,0,39,0,0,0,23,4,0,0,18,4,0,0,22,4,0,0,131,0,5,0,39,0,0,0,24,4,0,0,23,4,0,0,113,3,0,0,61,0,4,0,39,0,0,0,26,4,0,0,147,0,0,0,62,0,3,0,25,4,0,0,26,4,0,0,62,0,3,0,27,4,0,0,24,4,0,0,57,0,6,0,39,0,0,0,28,4,0,0,145,0,0,0,25,4,0,0,27,4,0,0,62,0,3,0,29,4,0,0,16,4,0,0,62,0,3,0,30,4,0,0,21,4,0,0,62,0,3,0,31,4,0,0,28,4,0,0,57,0,7,0,39,0,0,0,32,4,0,0,124,0,0,0,29,4,0,0,30,4,0,0,31,4,0,0,254,0,2,0,32,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,153,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,151,0,0,0,55,0,3,0,40,0,0,0,152,0,0,0,248,0,2,0,154,0,0,0,59,0,4,0,40,0,0,0,35,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,54,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,55,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,56,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,58,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,68,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,69,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,70,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,36,4,0,0,151,0,0,0,188,0,5,0,118,0,0,0,39,4,0,0,36,4,0,0,38,4,0,0,61,0,4,0,39,0,0,0,42,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,43,4,0,0,41,4,0,0,42,4,0,0,80,0,6,0,39,0,0,0,44,4,0,0,150,3,0,0,150,3,0,0,150,3,0,0,131,0,5,0,39,0,0,0,45,4,0,0,43,4,0,0,44,4,0,0,61,0,4,0,39,0,0,0,46,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,47,4,0,0,45,4,0,0,46,4,0,0,80,0,6,0,39,0,0,0,48,4,0,0,89,1,0,0,89,1,0,0,89,1,0,0,129,0,5,0,39,0,0,0,49,4,0,0,47,4,0,0,48,4,0,0,61,0,4,0,39,0,0,0,50,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,51,4,0,0,49,4,0,0,50,4,0,0,61,0,4,0,39,0,0,0,52,4,0,0,151,0,0,0,12,0,6,0,39,0,0,0,53,4,0,0,1,0,0,0,31,0,0,0,52,4,0,0,62,0,3,0,54,4,0,0,39,4,0,0,62,0,3,0,55,4,0,0,51,4,0,0,62,0,3,0,56,4,0,0,53,4,0,0,57,0,7,0,39,0,0,0,57,4,0,0,124,0,0,0,54,4,0,0,55,4,0,0,56,4,0,0,62,0,3,0,35,4,0,0,57,4,0,0,61,0,4,0,39,0,0,0,59,4,0,0,152,0,0,0,188,0,5,0,118,0,0,0,60,4,0,0,59,4,0,0,15,4,0,0,61,0,4,0,39,0,0,0,61,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,62,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,63,4,0,0,113,3,0,0,62,4,0,0,133,0,5,0,39,0,0,0,64,4,0,0,61,4,0,0,63,4,0,0,61,0,4,0,39,0,0,0,65,4,0,0,35,4,0,0,61,0,4,0,39,0,0,0,66,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,67,4,0,0,65,4,0,0,66,4,0,0,62,0,3,0,68,4,0,0,60,4,0,0,62,0,3,0,69,4,0,0,64,4,0,0,62,0,3,0,70,4,0,0,67,4,0,0,57,0,7,0,39,0,0,0,71,4,0,0,124,0,0,0,68,4,0,0,69,4,0,0,70,4,0,0,62,0,3,0,58,4,0,0,71,4,0,0,61,0,4,0,39,0,0,0,72,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,73,4,0,0,152,0,0,0,142,0,5,0,39,0,0,0,74,4,0,0,73,4,0,0,71,1,0,0,80,0,6,0,39,0,0,0,75,4,0,0,64,1,0,0,64,1,0,0,64,1,0,0,131,0,5,0,39,0,0,0,76,4,0,0,74,4,0,0,75,4,0,0,61,0,4,0,39,0,0,0,77,4,0,0,58,4,0,0,133,0,5,0,39,0,0,0,78,4,0,0,76,4,0,0,77,4,0,0,129,0,5,0,39,0,0,0,79,4,0,0,72,4,0,0,78,4,0,0,254,0,2,0,79,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,159,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,156,0,0,0,55,0,3,0,40,0,0,0,157,0,0,0,55,0,3,0,10,0,0,0,158,0,0,0,248,0,2,0,160,0,0,0,61,0,4,0,9,0,0,0,82,4,0,0,158,0,0,0,247,0,3,0,87,4,0,0,0,0,0,0,251,0,9,0,82,4,0,0,86,4,0,0,12,0,0,0,83,4,0,0,13,0,0,0,84,4,0,0,14,0,0,0,85,4,0,0,248,0,2,0,86,4,0,0,65,0,5,0,17,0,0,0,112,4,0,0,156,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,113,4,0,0,112,4,0,0,65,0,5,0,17,0,0,0,114,4,0,0,156,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,115,4,0,0,114,4,0,0,65,0,5,0,17,0,0,0,116,4,0,0,157,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,117,4,0,0,116,4,0,0,80,0,6,0,39,0,0,0,118,4,0,0,113,4,0,0,115,4,0,0,117,4,0,0,254,0,2,0,118,4,0,0,248,0,2,0,83,4,0,0,65,0,5,0,17,0,0,0,88,4,0,0,157,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,89,4,0,0,88,4,0,0,65,0,5,0,17,0,0,0,90,4,0,0,156,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,91,4,0,0,90,4,0,0,65,0,5,0,17,0,0,0,92,4,0,0,156,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,93,4,0,0,92,4,0,0,80,0,6,0,39,0,0,0,94,4,0,0,89,4,0,0,91,4,0,0,93,4,0,0,254,0,2,0,94,4,0,0,248,0,2,0,84,4,0,0,65,0,5,0,17,0,0,0,96,4,0,0,156,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,97,4,0,0,96,4,0,0,65,0,5,0,17,0,0,0,98,4,0,0,157,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,99,4,0,0,98,4,0,0,65,0,5,0,17,0,0,0,100,4,0,0,156,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,101,4,0,0,100,4,0,0,80,0,6,0,39,0,0,0,102,4,0,0,97,4,0,0,99,4,0,0,101,4,0,0,254,0,2,0,102,4,0,0,248,0,2,0,85,4,0,0,65,0,5,0,17,0,0,0,104,4,0,0,157,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,105,4,0,0,104,4,0,0,65,0,5,0,17,0,0,0,106,4,0,0,157,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,107,4,0,0,106,4,0,0,65,0,5,0,17,0,0,0,108,4,0,0,156,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,109,4,0,0,108,4,0,0,80,0,6,0,39,0,0,0,110,4,0,0,105,4,0,0,107,4,0,0,109,4,0,0,254,0,2,0,110,4,0,0,248,0,2,0,87,4,0,0,255,0,1,0,56,0,1,0,54,0,5,0,39,0,0,0,164,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,161,0,0,0,55,0,3,0,40,0,0,0,162,0,0,0,55,0,3,0,10,0,0,0,163,0,0,0,248,0,2,0,165,0,0,0,59,0,4,0,40,0,0,0,140,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,142,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,146,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,148,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,160,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,162,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,170,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,171,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,175,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,177,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,181,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,183,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,201,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,204,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,207,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,208,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,209,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,212,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,122,4,0,0,163,0,0,0,247,0,3,0,135,4,0,0,0,0,0,0,251,0,33,0,122,4,0,0,135,4,0,0,1,0,0,0,123,4,0,0,2,0,0,0,124,4,0,0,3,0,0,0,125,4,0,0,4,0,0,0,126,4,0,0,5,0,0,0,127,4,0,0,6,0,0,0,128,4,0,0,7,0,0,0,129,4,0,0,8,0,0,0,130,4,0,0,9,0,0,0,131,4,0,0,10,0,0,0,132,4,0,0,11,0,0,0,133,4,0,0,12,0,0,0,134,4,0,0,13,0,0,0,134,4,0,0,14,0,0,0,134,4,0,0,15,0,0,0,134,4,0,0,248,0,2,0,123,4,0,0,61,0,4,0,39,0,0,0,136,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,137,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,138,4,0,0,136,4,0,0,137,4,0,0,254,0,2,0,138,4,0,0,248,0,2,0,124,4,0,0,61,0,4,0,39,0,0,0,141,4,0,0,161,0,0,0,62,0,3,0,140,4,0,0,141,4,0,0,61,0,4,0,39,0,0,0,143,4,0,0,162,0,0,0,62,0,3,0,142,4,0,0,143,4,0,0,57,0,6,0,39,0,0,0,144,4,0,0,145,0,0,0,140,4,0,0,142,4,0,0,254,0,2,0,144,4,0,0,248,0,2,0,125,4,0,0,61,0,4,0,39,0,0,0,147,4,0,0,162,0,0,0,62,0,3,0,146,4,0,0,147,4,0,0,61,0,4,0,39,0,0,0,149,4,0,0,161,0,0,0,62,0,3,0,148,4,0,0,149,4,0,0,57,0,6,0,39,0,0,0,150,4,0,0,149,0,0,0,146,4,0,0,148,4,0,0,254,0,2,0,150,4,0,0,248,0,2,0,126,4,0,0,61,0,4,0,39,0,0,0,152,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,153,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,154,4,0,0,1,0,0,0,37,0,0,0,152,4,0,0,153,4,0,0,254,0,2,0,154,4,0,0,248,0,2,0,127,4,0,0,61,0,4,0,39,0,0,0,156,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,157,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,158,4,0,0,1,0,0,0,40,0,0,0,156,4,0,0,157,4,0,0,254,0,2,0,158,4,0,0,248,0,2,0,128,4,0,0,61,0,4,0,39,0,0,0,161,4,0,0,161,0,0,0,62,0,3,0,160,4,0,0,161,4,0,0,61,0,4,0,39,0,0,0,163,4,0,0,162,0,0,0,62,0,3,0,162,4,0,0,163,4,0,0,57,0,6,0,39,0,0,0,164,4,0,0,134,0,0,0,160,4,0,0,162,4,0,0,254,0,2,0,164,4,0,0,248,0,2,0,129,4,0,0,61,0,4,0,39,0,0,0,166,4,0,0,161,0,0,0,131,0,5,0,39,0,0,0,167,4,0,0,113,3,0,0,166,4,0,0,61,0,4,0,39,0,0,0,168,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,169,4,0,0,113,3,0,0,168,4,0,0,62,0,3,0,170,4,0,0,167,4,0,0,62,0,3,0,171,4,0,0,169,4,0,0,57,0,6,0,39,0,0,0,172,4,0,0,134,0,0,0,170,4,0,0,171,4,0,0,131,0,5,0,39,0,0,0,173,4,0,0,113,3,0,0,172,4,0,0,254,0,2,0,173,4,0,0,248,0,2,0,130,4,0,0,61,0,4,0,39,0,0,0,176,4,0,0,161,0,0,0,62,0,3,0,175,4,0,0,176,4,0,0,61,0,4,0,39,0,0,0,178,4,0,0,162,0,0,0,62,0,3,0,177,4,0,0,178,4,0,0,57,0,6,0,39,0,0,0,179,4,0,0,149,0,0,0,175,4,0,0,177,4,0,0,254,0,2,0,179,4,0,0,248,0,2,0,131,4,0,0,61,0,4,0,39,0,0,0,182,4,0,0,161,0,0,0,62,0,3,0,181,4,0,0,182,4,0,0,61,0,4,0,39,0,0,0,184,4,0,0,162,0,0,0,62,0,3,0,183,4,0,0,184,4,0,0,57,0,6,0,39,0,0,0,185,4,0,0,153,0,0,0,181,4,0,0,183,4,0,0,254,0,2,0,185,4,0,0,248,0,2,0,132,4,0,0,61,0,4,0,39,0,0,0,187,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,188,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,189,4,0,0,187,4,0,0,188,4,0,0,12,0,6,0,39,0,0,0,190,4,0,0,1,0,0,0,4,0,0,0,189,4,0,0,254,0,2,0,190,4,0,0,248,0,2,0,133,4,0,0,61,0,4,0,39,0,0,0,192,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,193,4,0,0,162,0,0,0,129,0,5,0,39,0,0,0,194,4,0,0,192,4,0,0,193,4,0,0,61,0,4,0,39,0,0,0,195,4,0,0,161,0,0,0,133,0,5,0,39,0,0,0,196,4,0,0,18,4,0,0,195,4,0,0,61,0,4,0,39,0,0,0,197,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,198,4,0,0,196,4,0,0,197,4,0,0,131,0,5,0,39,0,0,0,199,4,0,0,194,4,0,0,198,4,0,0,254,0,2,0,199,4,0,0,248,0,2,0,134,4,0,0,61,0,4,0,39,0,0,0,202,4,0,0,161,0,0,0,62,0,3,0,201,4,0,0,202,4,0,0,57,0,5,0,39,0,0,0,203,4,0,0,141,0,0,0,201,4,0,0,61,0,4,0,39,0,0,0,205,4,0,0,162,0,0,0,62,0,3,0,204,4,0,0,205,4,0,0,57,0,5,0,39,0,0,0,206,4,0,0,141,0,0,0,204,4,0,0,62,0,3,0,207,4,0,0,203,4,0,0,62,0,3,0,208,4,0,0,206,4,0,0,61,0,4,0,9,0,0,0,210,4,0,0,163,0,0,0,62,0,3,0,209,4,0,0,210,4,0,0,57,0,7,0,39,0,0,0,211,4,0,0,159,0,0,0,207,4,0,0,208,4,0,0,209,4,0,0,62,0,3,0,212,4,0,0,211,4,0,0,57,0,5,0,39,0,0,0,213,4,0,0,138,0,0,0,212,4,0,0,254,0,2,0,213,4,0,0,248,0,2,0,135,4,0,0,61,0,4,0,39,0,0,0,216,4,0,0,162,0,0,0,254,0,2,0,216,4,0,0,56,0,1,0,54,0,5,0,7,0,0,0,172,0,0,0,0,0,0,0,166,0,0,0,55,0,3,0,8,0,0,0,167,0,0,0,55,0,3,0,20,0,0,0,168,0,0,0,55,0,3,0,22,0,0,0,169,0,0,0,55,0,3,0,22,0,0,0,170,0,0,0,55,0,3,0,10,0,0,0,171,0,0,0,248,0,2,0,173,0,0,0,59,0,4,0,22,0,0,0,226,4,0,0,7,0,0,0,59,0,4,0,8,0,0,0,230,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,234,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,235,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,238,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,241,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,219,4,0,0,171,0,0,0,170,0,5,0,117,0,0,0,221,4,0,0,219,4,0,0,220,4,0,0,247,0,3,0,223,4,0,0,0,0,0,0,250,0,4,0,221,4,0,0,222,4,0,0,223,4,0,0,248,0,2,0,222,4,0,0,61,0,4,0,7,0,0,0,224,4,0,0,167,0,0,0,254,0,2,0,224,4,0,0,248,0,2,0,223,4,0,0,61,0,4,0,21,0,0,0,227,4,0,0,170,0,0,0,61,0,4,0,21,0,0,0,228,4,0,0,169,0,0,0,136,0,5,0,21,0,0,0,229,4,0,0,227,4,0,0,228,4,0,0,62,0,3,0,226,4,0,0,229,4,0,0,61,0,4,0,19,0,0,0,231,4,0,0,168,0,0,0,61,0,4,0,21,0,0,0,232,4,0,0,226,4,0,0,88,0,7,0,7,0,0,0,233,4,0,0,231,4,0,0,232,4,0,0,2,0,0,0,12,1,0,0,62,0,3,0,230,4,0,0,233,4,0,0,61,0,4,0,7,0,0,0,236,4,0,0,230,4,0,0,79,0,8,0,39,0,0,0,237,4,0,0,236,4,0,0,236,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,235,4,0,0,237,4,0,0,61,0,4,0,7,0,0,0,239,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,240,4,0,0,239,4,0,0,239,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,238,4,0,0,240,4,0,0,61,0,4,0,9,0,0,0,242,4,0,0,171,0,0,0,62,0,3,0,241,4,0,0,242,4,0,0,57,0,7,0,39,0,0,0,243,4,0,0,164,0,0,0,235,4,0,0,238,4,0,0,241,4,0,0,62,0,3,0,234,4,0,0,243,4,0,0,65,0,5,0,17,0,0,0,244,4,0,0,167,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,245,4,0,0,244,4,0,0,65,0,5,0,17,0,0,0,246,4,0,0,230,4,0,0,238,0,0,0,61,0,4,0,6,0,0,0,247,4,0,0,246,4,0,0,131,0,5,0,6,0,0,0,248,4,0,0,64,1,0,0,247,4,0,0,133,0,5,0,6,0,0,0,249,4,0,0,245,4,0,0,248,4,0,0,61,0,4,0,7,0,0,0,250,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,251,4,0,0,250,4,0,0,250,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,252,4,0,0,251,4,0,0,249,4,0,0,65,0,5,0,17,0,0,0,253,4,0,0,167,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,254,4,0,0,253,4,0,0,65,0,5,0,17,0,0,0,255,4,0,0,230,4,0,0,238,0,0,0,61,0,4,0,6,0,0,0,0,5,0,0,255,4,0,0,133,0,5,0,6,0,0,0,1,5,0,0,254,4,0,0,0,5,0,0,61,0,4,0,39,0,0,0,2,5,0,0,234,4,0,0,142,0,5,0,39,0,0,0,3,5,0,0,2,5,0,0,1,5,0,0,129,0,5,0,39,0,0,0,4,5,0,0,252,4,0,0,3,5,0,0,65,0,5,0,17,0,0,0,5,5,0,0,167,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,6,5,0,0,5,5,0,0,131,0,5,0,6,0,0,0,7,5,0,0,64,1,0,0,6,5,0,0,61,0,4,0,7,0,0,0,8,5,0,0,230,4,0,0,79,0,8,0,39,0,0,0,9,5,0,0,8,5,0,0,8,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,10,5,0,0,9,5,0,0,7,5,0,0,129,0,5,0,39,0,0,0,11,5,0,0,4,5,0,0,10,5,0,0,81,0,5,0,6,0,0,0,12,5,0,0,11,5,0,0,0,0,0,0,81,0,5,0,6,0,0,0,13,5,0,0,11,5,0,0,1,0,0,0,81,0,5,0,6,0,0,0,14,5,0,0,11,5,0,0,2,0,0,0,80,0,7,0,7,0,0,0,15,5,0,0,12,5,0,0,13,5,0,0,14,5,0,0,64,1,0,0,254,0,2,0,15,5,0,0,56,0,1,0,54,0,5,0,6,0,0,0,180,0,0,0,0,0,0,0,174,0,0,0,55,0,3,0,17,0,0,0,175,0,0,0,55,0,3,0,20,0,0,0,176,0,0,0,55,0,3,0,22,0,0,0,177,0,0,0,55,0,3,0,40,0,0,0,178,0,0,0,55,0,3,0,10,0,0,0,179,0,0,0,248,0,2,0,181,0,0,0,59,0,4,0,226,0,0,0,24,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,29,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,41,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,18,5,0,0,179,0,0,0,170,0,5,0,117,0,0,0,19,5,0,0,18,5,0,0,220,4,0,0,247,0,3,0,21,5,0,0,0,0,0,0,250,0,4,0,19,5,0,0,20,5,0,0,21,5,0,0,248,0,2,0,20,5,0,0,61,0,4,0,6,0,0,0,22,5,0,0,175,0,0,0,254,0,2,0,22,5,0,0,248,0,2,0,21,5,0,0,61,0,4,0,39,0,0,0,25,5,0,0,178,0,0,0,79,0,7,0,21,0,0,0,26,5,0,0,25,5,0,0,25,5,0,0,0,0,0,0,1,0,0,0,12,0,6,0,21,0,0,0,27,5,0,0,1,0,0,0,8,0,0,0,26,5,0,0,110,0,4,0,225,0,0,0,28,5,0,0,27,5,0,0,62,0,3,0,24,5,0,0,28,5,0,0,61,0,4,0,19,0,0,0,30,5,0,0,176,0,0,0,61,0,4,0,225,0,0,0,31,5,0,0,24,5,0,0,135,0,5,0,225,0,0,0,34,5,0,0,31,5,0,0,33,5,0,0,111,0,4,0,21,0,0,0,35,5,0,0,34,5,0,0,80,0,5,0,21,0,0,0,36,5,0,0,196,3,0,0,196,3,0,0,129,0,5,0,21,0,0,0,37,5,0,0,35,5,0,0,36,5,0,0,61,0,4,0,21,0,0,0,38,5,0,0,177,0,0,0,136,0,5,0,21,0,0,0,39,5,0,0,37,5,0,0,38,5,0,0,88,0,7,0,7,0,0,0,40,5,0,0,30,5,0,0,39,5,0,0,2,0,0,0,12,1,0,0,62,0,3,0,29,5,0,0,40,5,0,0,65,0,5,0,10,0,0,0,42,5,0,0,24,5,0,0,126,1,0,0,61,0,4,0,9,0,0,0,43,5,0,0,42,5,0,0,139,0,5,0,9,0,0,0,44,5,0,0,43,5,0,0,32,5,0,0,65,0,5,0,17,0,0,0,45,5,0,0,29,5,0,0,44,5,0,0,61,0,4,0,6,0,0,0,46,5,0,0,45,5,0,0,65,0,5,0,17,0,0,0,47,5,0,0,178,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,48,5,0,0,47,5,0,0,129,0,5,0,6,0,0,0,49,5,0,0,46,5,0,0,48,5,0,0,62,0,3,0,41,5,0,0,49,5,0,0,61,0,4,0,9,0,0,0,50,5,0,0,179,0,0,0,199,0,5,0,9,0,0,0,51,5,0,0,50,5,0,0,137,2,0,0,171,0,5,0,117,0,0,0,52,5,0,0,51,5,0,0,220,4,0,0,247,0,3,0,54,5,0,0,0,0,0,0,250,0,4,0,52,5,0,0,53,5,0,0,57,5,0,0,248,0,2,0,53,5,0,0,61,0,4,0,6,0,0,0,55,5,0,0,41,5,0,0,12,0,6,0,6,0,0,0,56,5,0,0,1,0,0,0,4,0,0,0,55,5,0,0,62,0,3,0,41,5,0,0,56,5,0,0,249,0,2,0,54,5,0,0,248,0,2,0,57,5,0,0,61,0,4,0,6,0,0,0,58,5,0,0,41,5,0,0,141,0,5,0,6,0,0,0,59,5,0,0,58,5,0,0,71,1,0,0,131,0,5,0,6,0,0,0,60,5,0,0,64,1,0,0,59,5,0,0,12,0,6,0,6,0,0,0,61,5,0,0,1,0,0,0,4,0,0,0,60,5,0,0,131,0,5,0,6,0,0,0,62,5,0,0,64,1,0,0,61,5,0,0,62,0,3,0,41,5,0,0,62,5,0,0,249,0,2,0,54,5,0,0,248,0,2,0,54,5,0,0,61,0,4,0,6,0,0,0,63,5,0,0,175,0,0,0,61,0,4,0,6,0,0,0,64,5,0,0,41,5,0,0,12,0,7,0,6,0,0,0,65,5,0,0,1,0,0,0,37,0,0,0,63,5,0,0,64,5,0,0,254,0,2,0,65,5,0,0,56,0,1,0,54,0,5,0,7,0,0,0,201,0,0,0,0,0,0,0,182,0,0,0,55,0,3,0,22,0,0,0,183,0,0,0,55,0,3,0,20,0,0,0,184,0,0,0,55,0,3,0,20,0,0,0,185,0,0,0,55,0,3,0,20,0,0,0,186,0,0,0,55,0,3,0,20,0,0,0,187,0,0,0,55,0,3,0,22,0,0,0,188,0,0,0,55,0,3,0,22,0,0,0,189,0,0,0,55,0,3,0,8,0,0,0,190,0,0,0,55,0,3,0,8,0,0,0,191,0,0,0,55,0,3,0,8,0,0,0,192,0,0,0,55,0,3,0,8,0,0,0,193,0,0,0,55,0,3,0,8,0,0,0,194,0,0,0,55,0,3,0,22,0,0,0,195,0,0,0,55,0,3,0,10,0,0,0,196,0,0,0,55,0,3,0,40,0,0,0,197,0,0,0,55,0,3,0,22,0,0,0,198,0,0,0,55,0,3,0,8,0,0,0,199,0,0,0,55,0,3,0,10,0,0,0,200,0,0,0,248,0,2,0,202,0,0,0,59,0,4,0,10,0,0,0,68,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,73,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,74,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,76,5,0,0,7,0,0,0,59,0,4,0,40,0,0,0,78,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,80,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,83,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,85,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,94,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,99,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,100,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,102,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,104,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,106,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,108,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,110,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,112,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,114,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,116,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,118,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,121,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,123,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,125,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,133,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,138,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,140,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,142,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,144,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,69,5,0,0,200,0,0,0,195,0,5,0,9,0,0,0,70,5,0,0,69,5,0,0,220,4,0,0,199,0,5,0,9,0,0,0,72,5,0,0,70,5,0,0,71,5,0,0,62,0,3,0,68,5,0,0,72,5,0,0,62,0,3,0,73,5,0,0,64,1,0,0,61,0,4,0,6,0,0,0,75,5,0,0,73,5,0,0,62,0,3,0,74,5,0,0,75,5,0,0,61,0,4,0,21,0,0,0,77,5,0,0,189,0,0,0,62,0,3,0,76,5,0,0,77,5,0,0,61,0,4,0,39,0,0,0,79,5,0,0,197,0,0,0,62,0,3,0,78,5,0,0,79,5,0,0,61,0,4,0,9,0,0,0,81,5,0,0,68,5,0,0,62,0,3,0,80,5,0,0,81,5,0,0,57,0,9,0,6,0,0,0,82,5,0,0,180,0,0,0,74,5,0,0,185,0,0,0,76,5,0,0,78,5,0,0,80,5,0,0,62,0,3,0,73,5,0,0,82,5,0,0,61,0,4,0,7,0,0,0,84,5,0,0,199,0,0,0,62,0,3,0,83,5,0,0,84,5,0,0,61,0,4,0,9,0,0,0,86,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,88,5,0,0,86,5,0,0,87,5,0,0,199,0,5,0,9,0,0,0,89,5,0,0,88,5,0,0,71,5,0,0,62,0,3,0,85,5,0,0,89,5,0,0,61,0,4,0,9,0,0,0,90,5,0,0,85,5,0,0,171,0,5,0,117,0,0,0,91,5,0,0,90,5,0,0,220,4,0,0,247,0,3,0,93,5,0,0,0,0,0,0,250,0,4,0,91,5,0,0,92,5,0,0,93,5,0,0,248,0,2,0,92,5,0,0,61,0,4,0,9,0,0,0,95,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,96,5,0,0,95,5,0,0,32,5,0,0,199,0,5,0,9,0,0,0,98,5,0,0,96,5,0,0,97,5,0,0,62,0,3,0,94,5,0,0,98,5,0,0,61,0,4,0,21,0,0,0,101,5,0,0,198,0,0,0,62,0,3,0,100,5,0,0,101,5,0,0,61,0,4,0,21,0,0,0,103,5,0,0,188,0,0,0,62,0,3,0,102,5,0,0,103,5,0,0,61,0,4,0,21,0,0,0,105,5,0,0,183,0,0,0,62,0,3,0,104,5,0,0,105,5,0,0,61,0,4,0,21,0,0,0,107,5,0,0,195,0,0,0,62,0,3,0,106,5,0,0,107,5,0,0,61,0,4,0,7,0,0,0,109,5,0,0,190,0,0,0,62,0,3,0,108,5,0,0,109,5,0,0,61,0,4,0,7,0,0,0,111,5,0,0,191,0,0,0,62,0,3,0,110,5,0,0,111,5,0,0,61,0,4,0,7,0,0,0,113,5,0,0,192,0,0,0,62,0,3,0,112,5,0,0,113,5,0,0,61,0,4,0,7,0,0,0,115,5,0,0,193,0,0,0,62,0,3,0,114,5,0,0,115,5,0,0,61,0,4,0,7,0,0,0,117,5,0,0,194,0,0,0,62,0,3,0,116,5,0,0,117,5,0,0,61,0,4,0,9,0,0,0,119,5,0,0,94,5,0,0,62,0,3,0,118,5,0,0,119,5,0,0,57,0,16,0,7,0,0,0,120,5,0,0,115,0,0,0,100,5,0,0,184,0,0,0,187,0,0,0,102,5,0,0,104,5,0,0,106,5,0,0,108,5,0,0,110,5,0,0,112,5,0,0,114,5,0,0,116,5,0,0,118,5,0,0,62,0,3,0,99,5,0,0,120,5,0,0,61,0,4,0,7,0,0,0,122,5,0,0,83,5,0,0,62,0,3,0,121,5,0,0,122,5,0,0,61,0,4,0,7,0,0,0,124,5,0,0,99,5,0,0,62,0,3,0,123,5,0,0,124,5,0,0,61,0,4,0,9,0,0,0,126,5,0,0,85,5,0,0,62,0,3,0,125,5,0,0,126,5,0,0,57,0,7,0,7,0,0,0,127,5,0,0,15,0,0,0,121,5,0,0,123,5,0,0,125,5,0,0,62,0,3,0,83,5,0,0,127,5,0,0,249,0,2,0,93,5,0,0,248,0,2,0,93,5,0,0,61,0,4,0,6,0,0,0,128,5,0,0,73,5,0,0,65,0,5,0,17,0,0,0,129,5,0,0,83,5,0,0,238,0,0,0,61,0,4,0,6,0,0,0,130,5,0,0,129,5,0,0,133,0,5,0,6,0,0,0,131,5,0,0,130,5,0,0,128,5,0,0,65,0,5,0,17,0,0,0,132,5,0,0,83,5,0,0,238,0,0,0,62,0,3,0,132,5,0,0,131,5,0,0,61,0,4,0,9,0,0,0,134,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,136,5,0,0,134,5,0,0,135,5,0,0,199,0,5,0,9,0,0,0,137,5,0,0,136,5,0,0,97,5,0,0,62,0,3,0,133,5,0,0,137,5,0,0,61,0,4,0,7,0,0,0,139,5,0,0,83,5,0,0,62,0,3,0,138,5,0,0,139,5,0,0,61,0,4,0,21,0,0,0,141,5,0,0,195,0,0,0,62,0,3,0,140,5,0,0,141,5,0,0,61,0,4,0,21,0,0,0,143,5,0,0,183,0,0,0,62,0,3,0,142,5,0,0,143,5,0,0,61,0,4,0,9,0,0,0,145,5,0,0,133,5,0,0,62,0,3,0,144,5,0,0,145,5,0,0,57,0,9,0,7,0,0,0,146,5,0,0,172,0,0,0,138,5,0,0,186,0,0,0,140,5,0,0,142,5,0,0,144,5,0,0,62,0,3,0,83,5,0,0,146,5,0,0,65,0,5,0,17,0,0,0,147,5,0,0,83,5,0,0,238,0,0,0,61,0,4,0,6,0,0,0,148,5,0,0,147,5,0,0,61,0,4,0,7,0,0,0,149,5,0,0,83,5,0,0,79,0,8,0,39,0,0,0,150,5,0,0,149,5,0,0,149,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,151,5,0,0,150,5,0,0,148,5,0,0,65,0,5,0,17,0,0,0,152,5,0,0,83,5,0,0,16,1,0,0,81,0,5,0,6,0,0,0,153,5,0,0,151,5,0,0,0,0,0,0,62,0,3,0,152,5,0,0,153,5,0,0,65,0,5,0,17,0,0,0,154,5,0,0,83,5,0,0,126,1,0,0,81,0,5,0,6,0,0,0,155,5,0,0,151,5,0,0,1,0,0,0,62,0,3,0,154,5,0,0,155,5,0,0,65,0,5,0,17,0,0,0,156,5,0,0,83,5,0,0,134,1,0,0,81,0,5,0,6,0,0,0,157,5,0,0,151,5,0,0,2,0,0,0,62,0,3,0,156,5,0,0,157,5,0,0,61,0,4,0,7,0,0,0,158,5,0,0,83,5,0,0,254,0,2,0,158,5,0,0,56,0,1,0,54,0,5,0,7,0,0,0,208,0,0,0,0,0,0,0,203,0,0,0,55,0,3,0,20,0,0,0,204,0,0,0,55,0,3,0,22,0,0,0,205,0,0,0,55,0,3,0,22,0,0,0,206,0,0,0,55,0,3,0,10,0,0,0,207,0,0,0,248,0,2,0,209,0,0,0,61,0,4,0,19,0,0,0,161,5,0,0,204,0,0,0,61,0,4,0,21,0,0,0,162,5,0,0,206,0,0,0,129,0,5,0,21,0,0,0,164,5,0,0,162,5,0,0,163,5,0,0,61,0,4,0,9,0,0,0,165,5,0,0,207,0,0,0,111,0,4,0,6,0,0,0,166,5,0,0,165,5,0,0,80,0,5,0,21,0,0,0,167,5,0,0,166,5,0,0,12,1,0,0,129,0,5,0,21,0,0,0,168,5,0,0,164,5,0,0,167,5,0,0,61,0,4,0,21,0,0,0,169,5,0,0,205,0,0,0,133,0,5,0,21,0,0,0,170,5,0,0,168,5,0,0,169,5,0,0,88,0,7,0,7,0,0,0,171,5,0,0,161,5,0,0,170,5,0,0,2,0,0,0,12,1,0,0,254,0,2,0,171,5,0,0,56,0,1,0,54,0,5,0,2,0,0,0,223,0,0,0,0,0,0,0,210,0,0,0,55,0,3,0,22,0,0,0,211,0,0,0,55,0,3,0,10,0,0,0,212,0,0,0,55,0,3,0,20,0,0,0,213,0,0,0,55,0,3,0,22,0,0,0,214,0,0,0,55,0,3,0,22,0,0,0,215,0,0,0,55,0,3,0,8,0,0,0,216,0,0,0,55,0,3,0,8,0,0,0,217,0,0,0,55,0,3,0,8,0,0,0,218,0,0,0,55,0,3,0,8,0,0,0,219,0,0,0,55,0,3,0,8,0,0,0,220,0,0,0,55,0,3,0,8,0,0,0,221,0,0,0,55,0,3,0,10,0,0,0,222,0,0,0,248,0,2,0,224,0,0,0,59,0,4,0,22,0,0,0,174,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,178,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,188,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,189,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,191,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,193,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,195,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,196,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,198,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,200,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,202,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,203,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,205,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,207,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,209,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,210,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,212,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,214,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,216,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,217,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,219,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,221,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,223,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,225,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,227,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,229,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,231,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,233,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,235,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,237,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,239,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,241,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,243,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,245,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,247,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,248,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,250,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,252,5,0,0,7,0,0,0,61,0,4,0,21,0,0,0,176,5,0,0,214,0,0,0,136,0,5,0,21,0,0,0,177,5,0,0,175,5,0,0,176,5,0,0,62,0,3,0,174,5,0,0,177,5,0,0,61,0,4,0,9,0,0,0,179,5,0,0,212,0,0,0,139,0,5,0,9,0,0,0,181,5,0,0,179,5,0,0,180,5,0,0,132,0,5,0,9,0,0,0,182,5,0,0,181,5,0,0,135,5,0,0,111,0,4,0,6,0,0,0,183,5,0,0,182,5,0,0,61,0,4,0,9,0,0,0,184,5,0,0,212,0,0,0,135,0,5,0,9,0,0,0,185,5,0,0,184,5,0,0,180,5,0,0,111,0,4,0,6,0,0,0,186,5,0,0,185,5,0,0,80,0,5,0,21,0,0,0,187,5,0,0,183,5,0,0,186,5,0,0,62,0,3,0,178,5,0,0,187,5,0,0,61,0,4,0,21,0,0,0,190,5,0,0,174,5,0,0,62,0,3,0,189,5,0,0,190,5,0,0,61,0,4,0,21,0,0,0,192,5,0,0,178,5,0,0,62,0,3,0,191,5,0,0,192,5,0,0,62,0,3,0,193,5,0,0,220,4,0,0,57,0,8,0,7,0,0,0,194,5,0,0,208,0,0,0,213,0,0,0,189,5,0,0,191,5,0,0,193,5,0,0,62,0,3,0,188,5,0,0,194,5,0,0,61,0,4,0,21,0,0,0,197,5,0,0,174,5,0,0,62,0,3,0,196,5,0,0,197,5,0,0,61,0,4,0,21,0,0,0,199,5,0,0,178,5,0,0,62,0,3,0,198,5,0,0,199,5,0,0,62,0,3,0,200,5,0,0,137,2,0,0,57,0,8,0,7,0,0,0,201,5,0,0,208,0,0,0,213,0,0,0,196,5,0,0,198,5,0,0,200,5,0,0,62,0,3,0,195,5,0,0,201,5,0,0,61,0,4,0,21,0,0,0,204,5,0,0,174,5,0,0,62,0,3,0,203,5,0,0,204,5,0,0,61,0,4,0,21,0,0,0,206,5,0,0,178,5,0,0,62,0,3,0,205,5,0,0,206,5,0,0,62,0,3,0,207,5,0,0,200,2,0,0,57,0,8,0,7,0,0,0,208,5,0,0,208,0,0,0,213,0,0,0,203,5,0,0,205,5,0,0,207,5,0,0,62,0,3,0,202,5,0,0,208,5,0,0,61,0,4,0,21,0,0,0,211,5,0,0,174,5,0,0,62,0,3,0,210,5,0,0,211,5,0,0,61,0,4,0,21,0,0,0,213,5,0,0,178,5,0,0,62,0,3,0,212,5,0,0,213,5,0,0,62,0,3,0,214,5,0,0,71,5,0,0,57,0,8,0,7,0,0,0,215,5,0,0,208,0,0,0,213,0,0,0,210,5,0,0,212,5,0,0,214,5,0,0,62,0,3,0,209,5,0,0,215,5,0,0,61,0,4,0,21,0,0,0,218,5,0,0,174,5,0,0,62,0,3,0,217,5,0,0,218,5,0,0,61,0,4,0,21,0,0,0,220,5,0,0,178,5,0,0,62,0,3,0,219,5,0,0,220,5,0,0,62,0,3,0,221,5,0,0,32,5,0,0,57,0,8,0,7,0,0,0,222,5,0,0,208,0,0,0,213,0,0,0,217,5,0,0,219,5,0,0,221,5,0,0,62,0,3,0,216,5,0,0,222,5,0,0,61,0,4,0,21,0,0,0,226,5,0,0,174,5,0,0,62,0,3,0,225,5,0,0,226,5,0,0,61,0,4,0,21,0,0,0,228,5,0,0,178,5,0,0,62,0,3,0,227,5,0,0,228,5,0,0,62,0,3,0,229,5,0,0,224,5,0,0,57,0,8,0,7,0,0,0,230,5,0,0,208,0,0,0,213,0,0,0,225,5,0,0,227,5,0,0,229,5,0,0,62,0,3,0,223,5,0,0,230,5,0,0,61,0,4,0,21,0,0,0,234,5,0,0,174,5,0,0,62,0,3,0,233,5,0,0,234,5,0,0,61,0,4,0,21,0,0,0,236,5,0,0,178,5,0,0,62,0,3,0,235,5,0,0,236,5,0,0,62,0,3,0,237,5,0,0,232,5,0,0,57,0,8,0,7,0,0,0,238,5,0,0,208,0,0,0,213,0,0,0,233,5,0,0,235,5,0,0,237,5,0,0,62,0,3,0,231,5,0,0,238,5,0,0,61,0,4,0,21,0,0,0,242,5,0,0,174,5,0,0,62,0,3,0,241,5,0,0,242,5,0,0,61,0,4,0,21,0,0,0,244,5,0,0,178,5,0,0,62,0,3,0,243,5,0,0,244,5,0,0,62,0,3,0,245,5,0,0,240,5,0,0,57,0,8,0,7,0,0,0,246,5,0,0,208,0,0,0,213,0,0,0,241,5,0,0,243,5,0,0,245,5,0,0,62,0,3,0,239,5,0,0,246,5,0,0,61,0,4,0,21,0,0,0,249,5,0,0,174,5,0,0,62,0,3,0,248,5,0,0,249,5,0,0,61,0,4,0,21,0,0,0,251,5,0,0,178,5,0,0,62,0,3,0,250,5,0,0,251,5,0,0,62,0,3,0,252,5,0,0,87,5,0,0,57,0,8,0,7,0,0,0,253,5,0,0,208,0,0,0,213,0,0,0,248,5,0,0,250,5,0,0,252,5,0,0,62,0,3,0,247,5,0,0,253,5,0,0,61,0,4,0,7,0,0,0,254,5,0,0,188,5,0,0,81,0,5,0,6,0,0,0,0,6,0,0,254,5,0,0,0,0,0,0,81,0,5,0,6,0,0,0,1,6,0,0,254,5,0,0,1,0,0,0,81,0,5,0,6,0,0,0,2,6,0,0,254,5,0,0,2,0,0,0,81,0,5,0,6,0,0,0,3,6,0,0,254,5,0,0,3,0,0,0,80,0,5,0,21,0,0,0,4,6,0,0,0,6,0,0,1,6,0,0,80,0,5,0,21,0,0,0,5,6,0,0,2,6,0,0,3,6,0,0,80,0,5,0,255,5,0,0,6,6,0,0,4,6,0,0,5,6,0,0,61,0,4,0,21,0,0,0,7,6,0,0,211,0,0,0,145,0,5,0,21,0,0,0,8,6,0,0,6,6,0,0,7,6,0,0,61,0,4,0,7,0,0,0,9,6,0,0,195,5,0,0,79,0,7,0,21,0,0,0,10,6,0,0,9,6,0,0,9,6,0,0,0,0,0,0,1,0,0,0,129,0,5,0,21,0,0,0,11,6,0,0,8,6,0,0,10,6,0,0,62,0,3,0,215,0,0,0,11,6,0,0,61,0,4,0,7,0,0,0,12,6,0,0,202,5,0,0,62,0,3,0,216,0,0,0,12,6,0,0,61,0,4,0,7,0,0,0,13,6,0,0,209,5,0,0,62,0,3,0,217,0,0,0,13,6,0,0,61,0,4,0,7,0,0,0,14,6,0,0,216,5,0,0,62,0,3,0,218,0,0,0,14,6,0,0,61,0,4,0,7,0,0,0,15,6,0,0,223,5,0,0,62,0,3,0,219,0,0,0,15,6,0,0,61,0,4,0,7,0,0,0,16,6,0,0,231,5,0,0,62,0,3,0,220,0,0,0,16,6,0,0,61,0,4,0,7,0,0,0,17,6,0,0,239,5,0,0,62,0,3,0,221,0,0,0,17,6,0,0,65,0,5,0,17,0,0,0,18,6,0,0,247,5,0,0,16,1,0,0,61,0,4,0,6,0,0,0,19,6,0,0,18,6,0,0,110,0,4,0,9,0,0,0,20,6,0,0,19,6,0,0,62,0,3,0,222,0,0,0,20,6,0,0,253,0,1,0,56,0,1,0,54,0,5,0,225,0,0,0,229,0,0,0,0,0,0,0,227,0,0,0,55,0,3,0,226,0,0,0,228,0,0,0,248,0,2,0,230,0,0,0,65,0,5,0,10,0,0,0,21,6,0,0,228,0,0,0,16,1,0,0,61,0,4,0,9,0,0,0,22,6,0,0,21,6,0,0,65,0,6,0,26,6,0,0,27,6,0,0,25,6,0,0,200,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,28,6,0,0,27,6,0,0,110,0,4,0,9,0,0,0,29,6,0,0,28,6,0,0,65,0,5,0,10,0,0,0,30,6,0,0,228,0,0,0,126,1,0,0,61,0,4,0,9,0,0,0,31,6,0,0,30,6,0,0,130,0,5,0,9,0,0,0,32,6,0,0,29,6,0,0,31,6,0,0,80,0,5,0,225,0,0,0,33,6,0,0,22,6,0,0,32,6,0,0,254,0,2,0,33,6,0,0,56,0,1,0}; + static uint8_t tile_comp_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,102,7,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,7,0,5,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,39,6,0,0,45,6,0,0,16,0,6,0,4,0,0,0,17,0,0,0,16,0,0,0,4,0,0,0,1,0,0,0,3,0,3,0,2,0,0,0,174,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,9,0,15,0,0,0,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,102,52,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,12,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,13,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,14,0,0,0,111,112,0,0,5,0,11,0,27,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,49,59,115,50,49,59,118,102,50,59,0,0,0,0,5,0,4,0,24,0,0,0,111,102,102,115,101,116,0,0,5,0,6,0,25,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,26,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,14,0,37,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,118,102,52,59,102,49,59,118,102,52,59,115,50,49,59,118,102,50,59,118,102,52,59,102,49,59,0,5,0,6,0,30,0,0,0,111,117,116,65,108,112,104,97,76,101,102,116,0,0,0,0,5,0,6,0,31,0,0,0,111,117,116,65,108,112,104,97,67,101,110,116,101,114,0,0,5,0,6,0,32,0,0,0,111,117,116,65,108,112,104,97,82,105,103,104,116,0,0,0,5,0,6,0,33,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,34,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,4,0,35,0,0,0,107,101,114,110,101,108,0,0,5,0,5,0,36,0,0,0,111,110,101,80,105,120,101,108,0,0,0,0,5,0,11,0,45,0,0,0,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,102,52,59,118,102,51,59,118,102,52,59,0,5,0,4,0,42,0,0,0,97,108,112,104,97,48,0,0,5,0,4,0,43,0,0,0,97,108,112,104,97,49,0,0,5,0,4,0,44,0,0,0,107,101,114,110,101,108,0,0,5,0,13,0,51,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,49,59,102,49,59,115,50,49,59,0,0,0,0,5,0,4,0,48,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,49,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,50,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,11,0,57,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,102,51,59,118,102,51,59,115,50,49,59,0,5,0,4,0,54,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,55,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,56,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,12,0,67,0,0,0,102,105,108,116,101,114,84,101,120,116,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,0,5,0,6,0,60,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,61,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,62,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,63,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,64,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,65,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,66,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,15,0,77,0,0,0,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,0,0,0,5,0,6,0,70,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,71,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,72,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,73,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,74,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,75,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,76,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,10,0,85,0,0,0,102,105,108,116,101,114,66,108,117,114,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,0,5,0,6,0,80,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,81,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,82,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,83,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,84,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,14,0,95,0,0,0,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,102,50,59,115,50,49,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,0,0,5,0,6,0,88,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,89,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,90,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,91,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,92,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,93,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,94,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,7,0,100,0,0,0,102,105,108,116,101,114,78,111,110,101,40,118,102,50,59,115,50,49,59,0,5,0,6,0,98,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,99,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,17,0,115,0,0,0,102,105,108,116,101,114,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,5,0,6,0,103,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,104,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,105,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,106,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,107,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,108,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,109,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,110,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,111,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,112,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,113,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,5,0,114,0,0,0,99,111,108,111,114,70,105,108,116,101,114,0,5,0,10,0,124,0,0,0,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,118,98,51,59,118,102,51,59,118,102,51,59,0,0,0,0,5,0,4,0,121,0,0,0,99,111,110,100,0,0,0,0,5,0,4,0,122,0,0,0,105,102,84,114,117,101,0,0,5,0,4,0,123,0,0,0,105,102,70,97,108,115,101,0,5,0,8,0,129,0,0,0,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,49,59,102,49,59,0,0,5,0,3,0,127,0,0,0,110,117,109,0,5,0,4,0,128,0,0,0,100,101,110,111,109,0,0,0,5,0,10,0,134,0,0,0,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,132,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,133,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,8,0,138,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,102,51,59,0,0,5,0,3,0,137,0,0,0,104,115,108,0,5,0,8,0,141,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,102,51,59,0,0,5,0,3,0,140,0,0,0,114,103,98,0,5,0,9,0,145,0,0,0,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,143,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,144,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,149,0,0,0,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,147,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,148,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,153,0,0,0,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,151,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,152,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,159,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,156,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,157,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,158,0,0,0,111,112,0,0,5,0,9,0,164,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,161,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,162,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,163,0,0,0,111,112,0,0,5,0,10,0,172,0,0,0,99,111,109,112,111,115,105,116,101,40,118,102,52,59,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,167,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,168,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,6,0,169,0,0,0,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,0,5,0,5,0,170,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,3,0,171,0,0,0,111,112,0,0,5,0,10,0,180,0,0,0,115,97,109,112,108,101,77,97,115,107,40,102,49,59,115,50,49,59,118,102,50,59,118,102,51,59,105,49,59,0,0,0,5,0,5,0,175,0,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,5,0,176,0,0,0,109,97,115,107,84,101,120,116,117,114,101,0,5,0,6,0,177,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,0,5,0,6,0,178,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,179,0,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,24,0,201,0,0,0,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,50,59,105,49,59,118,102,51,59,118,102,50,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,183,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,184,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,48,0,0,0,5,0,6,0,185,0,0,0,109,97,115,107,84,101,120,116,117,114,101,48,0,0,0,0,5,0,5,0,186,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,5,0,187,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,188,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,5,0,7,0,189,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,0,5,0,6,0,190,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,191,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,192,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,193,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,194,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,6,0,195,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,4,0,196,0,0,0,99,116,114,108,0,0,0,0,5,0,6,0,197,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,198,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,199,0,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,5,0,200,0,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,10,0,208,0,0,0,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,204,0,0,0,115,114,99,84,101,120,116,117,114,101,0,0,5,0,4,0,205,0,0,0,115,99,97,108,101,0,0,0,5,0,5,0,206,0,0,0,111,114,105,103,105,110,67,111,111,114,100,0,5,0,4,0,207,0,0,0,101,110,116,114,121,0,0,0,5,0,19,0,223,0,0,0,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,118,102,50,59,105,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,0,5,0,5,0,211,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,5,0,212,0,0,0,99,111,108,111,114,69,110,116,114,121,0,0,5,0,6,0,213,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,5,0,7,0,214,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,5,0,7,0,215,0,0,0,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,216,0,0,0,111,117,116,66,97,115,101,67,111,108,111,114,0,0,0,0,5,0,7,0,217,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,0,5,0,7,0,218,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,0,5,0,7,0,219,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,0,5,0,7,0,220,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,0,5,0,7,0,221,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,0,5,0,4,0,222,0,0,0,111,117,116,67,116,114,108,0,5,0,7,0,229,0,0,0,116,111,73,109,97,103,101,67,111,111,114,100,115,40,118,105,50,59,0,0,5,0,4,0,228,0,0,0,99,111,111,114,100,115,0,0,5,0,4,0,21,1,0,0,119,105,100,101,0,0,0,0,5,0,4,0,32,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,33,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,42,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,48,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,49,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,55,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,56,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,60,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,61,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,67,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,68,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,74,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,75,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,81,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,82,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,92,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,125,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,129,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,133,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,137,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,144,1,0,0,107,101,114,110,101,108,0,0,5,0,4,0,146,1,0,0,98,103,67,111,108,111,114,0,5,0,4,0,149,1,0,0,102,103,67,111,108,111,114,0,5,0,8,0,152,1,0,0,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,0,0,5,0,4,0,161,1,0,0,97,108,112,104,97,0,0,0,5,0,5,0,167,1,0,0,97,108,112,104,97,76,101,102,116,0,0,0,5,0,5,0,168,1,0,0,97,108,112,104,97,67,101,110,116,101,114,0,5,0,5,0,169,1,0,0,97,108,112,104,97,82,105,103,104,116,0,0,5,0,4,0,173,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,174,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,175,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,176,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,178,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,180,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,185,1,0,0,114,0,0,0,5,0,4,0,192,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,194,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,195,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,198,1,0,0,103,0,0,0,5,0,4,0,206,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,207,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,210,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,213,1,0,0,98,0,0,0,5,0,4,0,222,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,223,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,226,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,236,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,238,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,251,1,0,0,108,105,110,101,70,114,111,109,0,0,0,0,5,0,5,0,254,1,0,0,108,105,110,101,86,101,99,116,111,114,0,0,5,0,4,0,1,2,0,0,114,97,100,105,105,0,0,0,5,0,5,0,4,2,0,0,117,118,79,114,105,103,105,110,0,0,0,0,5,0,3,0,7,2,0,0,100,80,0,0,5,0,3,0,11,2,0,0,100,67,0,0,5,0,3,0,13,2,0,0,100,82,0,0,5,0,3,0,19,2,0,0,97,0,0,0,5,0,3,0,27,2,0,0,98,0,0,0,5,0,3,0,36,2,0,0,99,0,0,0,5,0,4,0,46,2,0,0,100,105,115,99,114,105,109,0,5,0,4,0,54,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,60,2,0,0,116,115,0,0,5,0,3,0,83,2,0,0,116,0,0,0,5,0,6,0,105,2,0,0,115,114,99,79,102,102,115,101,116,83,99,97,108,101,0,0,5,0,4,0,110,2,0,0,115,117,112,112,111,114,116,0,5,0,5,0,114,2,0,0,103,97,117,115,115,67,111,101,102,102,0,0,5,0,5,0,117,2,0,0,103,97,117,115,115,83,117,109,0,0,0,0,5,0,4,0,120,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,136,2,0,0,105,0,0,0,5,0,6,0,146,2,0,0,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,0,5,0,5,0,162,2,0,0,115,114,99,79,102,102,115,101,116,0,0,0,5,0,5,0,209,2,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,215,2,0,0,99,111,108,111,114,77,97,116,114,105,120,0,5,0,4,0,3,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,9,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,11,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,17,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,19,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,21,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,23,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,29,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,31,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,33,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,35,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,39,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,43,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,45,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,47,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,49,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,3,0,0,112,97,114,97,109,0,0,0,5,0,5,0,107,3,0,0,100,101,115,116,90,101,114,111,0,0,0,0,5,0,4,0,111,3,0,0,115,114,99,79,110,101,0,0,5,0,4,0,119,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,122,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,124,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,126,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,127,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,131,3,0,0,97,0,0,0,5,0,3,0,141,3,0,0,107,115,0,0,5,0,3,0,171,3,0,0,118,0,0,0,5,0,4,0,180,3,0,0,120,77,105,110,0,0,0,0,5,0,3,0,189,3,0,0,99,0,0,0,5,0,3,0,193,3,0,0,108,0,0,0,5,0,4,0,198,3,0,0,116,101,114,109,115,0,0,0,5,0,3,0,232,3,0,0,104,0,0,0,5,0,4,0,244,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,245,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,249,3,0,0,115,0,0,0,5,0,4,0,250,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,252,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,25,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,29,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,30,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,31,4,0,0,112,97,114,97,109,0,0,0,5,0,7,0,35,4,0,0,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,0,0,0,5,0,4,0,54,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,55,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,56,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,58,4,0,0,102,97,99,116,111,114,0,0,5,0,4,0,68,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,69,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,70,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,140,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,142,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,146,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,148,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,160,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,162,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,170,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,171,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,175,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,177,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,181,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,183,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,201,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,204,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,207,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,208,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,209,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,212,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,226,4,0,0,100,101,115,116,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,230,4,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,234,4,0,0,98,108,101,110,100,101,100,82,71,66,0,0,5,0,4,0,235,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,238,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,241,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,24,5,0,0,109,97,115,107,84,101,120,67,111,111,114,100,73,0,0,0,5,0,4,0,29,5,0,0,116,101,120,101,108,0,0,0,5,0,5,0,41,5,0,0,99,111,118,101,114,97,103,101,0,0,0,0,5,0,5,0,68,5,0,0,109,97,115,107,67,116,114,108,48,0,0,0,5,0,5,0,73,5,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,4,0,74,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,76,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,78,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,80,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,5,0,0,99,111,108,111,114,0,0,0,5,0,6,0,85,5,0,0,99,111,108,111,114,48,67,111,109,98,105,110,101,0,0,0,5,0,6,0,94,5,0,0,99,111,108,111,114,48,70,105,108,116,101,114,0,0,0,0,5,0,4,0,99,5,0,0,99,111,108,111,114,48,0,0,5,0,4,0,100,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,102,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,104,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,106,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,108,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,110,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,112,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,121,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,123,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,125,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,133,5,0,0,99,111,109,112,111,115,105,116,101,79,112,0,5,0,4,0,138,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,140,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,142,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,144,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,174,5,0,0,109,101,116,97,100,97,116,97,83,99,97,108,101,0,0,0,5,0,7,0,178,5,0,0,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,0,0,5,0,6,0,188,5,0,0,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,0,5,0,4,0,189,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,191,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,193,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,195,5,0,0,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,0,5,0,4,0,196,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,198,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,200,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,202,5,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,4,0,203,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,205,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,207,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,209,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,4,0,210,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,212,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,214,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,216,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,4,0,217,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,219,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,221,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,223,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,4,0,225,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,227,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,229,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,231,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,4,0,233,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,235,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,237,5,0,0,112,97,114,97,109,0,0,0,5,0,6,0,239,5,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,4,0,241,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,243,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,245,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,247,5,0,0,101,120,116,114,97,0,0,0,5,0,4,0,248,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,250,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,252,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,23,6,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,23,6,0,0,0,0,0,0,117,67,108,101,97,114,67,111,108,111,114,0,6,0,6,0,23,6,0,0,1,0,0,0,117,76,111,97,100,65,99,116,105,111,110,0,6,0,5,0,23,6,0,0,2,0,0,0,117,80,97,100,48,0,0,0,6,0,5,0,23,6,0,0,3,0,0,0,117,80,97,100,49,0,0,0,6,0,5,0,23,6,0,0,4,0,0,0,117,80,97,100,50,0,0,0,6,0,6,0,23,6,0,0,5,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,23,6,0,0,6,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,8,0,23,6,0,0,7,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,9,0,23,6,0,0,8,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,84,105,108,101,83,105,122,101,0,0,0,0,6,0,8,0,23,6,0,0,9,0,0,0,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,6,0,8,0,23,6,0,0,10,0,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,5,0,3,0,25,6,0,0,0,0,0,0,5,0,5,0,36,6,0,0,116,105,108,101,67,111,111,114,100,0,0,0,5,0,6,0,39,6,0,0,103,108,95,87,111,114,107,71,114,111,117,112,73,68,0,0,5,0,7,0,44,6,0,0,102,105,114,115,116,84,105,108,101,83,117,98,67,111,111,114,100,0,0,0,5,0,8,0,45,6,0,0,103,108,95,76,111,99,97,108,73,110,118,111,99,97,116,105,111,110,73,68,0,0,0,0,5,0,6,0,50,6,0,0,102,105,114,115,116,70,114,97,103,67,111,111,114,100,0,0,5,0,5,0,59,6,0,0,116,105,108,101,73,110,100,101,120,0,0,0,5,0,6,0,61,6,0,0,98,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,6,0,7,0,61,6,0,0,0,0,0,0,105,70,105,114,115,116,84,105,108,101,77,97,112,0,0,0,5,0,3,0,63,6,0,0,0,0,0,0,5,0,4,0,86,6,0,0,115,117,98,89,0,0,0,0,5,0,5,0,99,6,0,0,100,101,115,116,67,111,108,111,114,115,0,0,5,0,5,0,106,6,0,0,105,109,97,103,101,67,111,111,114,100,115,0,5,0,4,0,111,6,0,0,112,97,114,97,109,0,0,0,5,0,5,0,116,6,0,0,117,68,101,115,116,73,109,97,103,101,0,0,5,0,4,0,130,6,0,0,115,117,98,89,0,0,0,0,5,0,6,0,138,6,0,0,116,105,108,101,83,117,98,67,111,111,114,100,0,0,0,0,5,0,5,0,143,6,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,150,6,0,0,97,108,112,104,97,84,105,108,101,73,110,100,101,120,0,0,5,0,4,0,152,6,0,0,98,84,105,108,101,115,0,0,6,0,5,0,152,6,0,0,0,0,0,0,105,84,105,108,101,115,0,0,5,0,3,0,154,6,0,0,0,0,0,0,5,0,6,0,165,6,0,0,116,105,108,101,67,111,110,116,114,111,108,87,111,114,100,0,5,0,5,0,171,6,0,0,99,111,108,111,114,69,110,116,114,121,0,0,5,0,5,0,175,6,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,5,0,186,6,0,0,98,97,99,107,100,114,111,112,0,0,0,0,5,0,6,0,188,6,0,0,109,97,115,107,84,105,108,101,67,111,111,114,100,0,0,0,5,0,5,0,210,6,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,6,0,233,6,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,7,0,246,6,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,0,0,0,5,0,6,0,247,6,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,248,6,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,6,0,249,6,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,250,6,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,251,6,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,252,6,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,253,6,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,4,0,254,6,0,0,99,116,114,108,0,0,0,0,5,0,4,0,255,6,0,0,112,97,114,97,109,0,0,0,5,0,4,0,1,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,2,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,6,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,8,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,9,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,10,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,11,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,12,7,0,0,112,97,114,97,109,0,0,0,5,0,5,0,22,7,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,6,0,23,7,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,48,0,0,5,0,6,0,24,7,0,0,117,77,97,115,107,84,101,120,116,117,114,101,48,0,0,0,5,0,5,0,25,7,0,0,117,71,97,109,109,97,76,85,84,0,0,0,5,0,4,0,27,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,29,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,32,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,35,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,37,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,39,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,43,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,45,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,48,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,50,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,52,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,56,7,0,0,112,97,114,97,109,0,0,0,5,0,4,0,78,7,0,0,115,117,98,89,0,0,0,0,5,0,4,0,91,7,0,0,112,97,114,97,109,0,0,0,5,0,5,0,101,7,0,0,117,90,66,117,102,102,101,114,0,0,0,0,72,0,5,0,23,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,23,6,0,0,1,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,23,6,0,0,2,0,0,0,35,0,0,0,20,0,0,0,72,0,5,0,23,6,0,0,3,0,0,0,35,0,0,0,24,0,0,0,72,0,5,0,23,6,0,0,4,0,0,0,35,0,0,0,28,0,0,0,72,0,5,0,23,6,0,0,5,0,0,0,35,0,0,0,32,0,0,0,72,0,5,0,23,6,0,0,6,0,0,0,35,0,0,0,40,0,0,0,72,0,5,0,23,6,0,0,7,0,0,0,35,0,0,0,48,0,0,0,72,0,5,0,23,6,0,0,8,0,0,0,35,0,0,0,56,0,0,0,72,0,5,0,23,6,0,0,9,0,0,0,35,0,0,0,64,0,0,0,72,0,5,0,23,6,0,0,10,0,0,0,35,0,0,0,72,0,0,0,71,0,3,0,23,6,0,0,2,0,0,0,71,0,4,0,25,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,25,6,0,0,33,0,0,0,8,0,0,0,71,0,4,0,39,6,0,0,11,0,0,0,26,0,0,0,71,0,4,0,45,6,0,0,11,0,0,0,27,0,0,0,71,0,4,0,60,6,0,0,6,0,0,0,4,0,0,0,72,0,4,0,61,6,0,0,0,0,0,0,19,0,0,0,72,0,4,0,61,6,0,0,0,0,0,0,24,0,0,0,72,0,5,0,61,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,61,6,0,0,3,0,0,0,71,0,4,0,63,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,63,6,0,0,33,0,0,0,1,0,0,0,71,0,4,0,116,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,116,6,0,0,33,0,0,0,7,0,0,0,71,0,4,0,151,6,0,0,6,0,0,0,4,0,0,0,72,0,4,0,152,6,0,0,0,0,0,0,19,0,0,0,72,0,4,0,152,6,0,0,0,0,0,0,24,0,0,0,72,0,5,0,152,6,0,0,0,0,0,0,35,0,0,0,0,0,0,0,71,0,3,0,152,6,0,0,3,0,0,0,71,0,4,0,154,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,154,6,0,0,33,0,0,0,0,0,0,0,71,0,4,0,246,6,0,0,34,0,0,0,0,0,0,0,71,0,4,0,246,6,0,0,33,0,0,0,2,0,0,0,71,0,4,0,23,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,23,7,0,0,33,0,0,0,4,0,0,0,71,0,4,0,24,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,24,7,0,0,33,0,0,0,5,0,0,0,71,0,4,0,25,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,25,7,0,0,33,0,0,0,6,0,0,0,71,0,4,0,100,7,0,0,11,0,0,0,25,0,0,0,71,0,4,0,101,7,0,0,34,0,0,0,0,0,0,0,71,0,4,0,101,7,0,0,33,0,0,0,3,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,9,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,33,0,6,0,11,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,32,0,4,0,17,0,0,0,7,0,0,0,6,0,0,0,25,0,9,0,18,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,19,0,0,0,18,0,0,0,32,0,4,0,20,0,0,0,0,0,0,0,19,0,0,0,23,0,4,0,21,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,7,0,0,0,21,0,0,0,33,0,6,0,23,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,33,0,10,0,29,0,0,0,2,0,0,0,8,0,0,0,17,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,17,0,0,0,23,0,4,0,39,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,40,0,0,0,7,0,0,0,39,0,0,0,33,0,6,0,41,0,0,0,6,0,0,0,8,0,0,0,40,0,0,0,8,0,0,0,33,0,6,0,47,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,20,0,0,0,33,0,6,0,53,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,20,0,0,0,33,0,10,0,59,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,69,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,8,0,79,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,87,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,5,0,97,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,33,0,15,0,102,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,20,0,2,0,117,0,0,0,23,0,4,0,118,0,0,0,117,0,0,0,3,0,0,0,32,0,4,0,119,0,0,0,7,0,0,0,118,0,0,0,33,0,6,0,120,0,0,0,39,0,0,0,119,0,0,0,40,0,0,0,40,0,0,0,33,0,5,0,126,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,33,0,5,0,131,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,33,0,4,0,136,0,0,0,39,0,0,0,40,0,0,0,33,0,6,0,155,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,10,0,0,0,33,0,8,0,166,0,0,0,7,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,10,0,0,0,33,0,8,0,174,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,40,0,0,0,10,0,0,0,33,0,21,0,182,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,22,0,0,0,10,0,0,0,40,0,0,0,22,0,0,0,8,0,0,0,10,0,0,0,33,0,7,0,203,0,0,0,7,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,10,0,0,0,33,0,15,0,210,0,0,0,2,0,0,0,22,0,0,0,10,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,23,0,4,0,225,0,0,0,9,0,0,0,2,0,0,0,32,0,4,0,226,0,0,0,7,0,0,0,225,0,0,0,33,0,4,0,227,0,0,0,225,0,0,0,226,0,0,0,21,0,4,0,237,0,0,0,32,0,0,0,0,0,0,0,43,0,4,0,237,0,0,0,238,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,12,1,0,0,0,0,0,0,43,0,4,0,237,0,0,0,16,1,0,0,0,0,0,0,32,0,4,0,20,1,0,0,7,0,0,0,117,0,0,0,43,0,4,0,6,0,0,0,29,1,0,0,0,0,128,192,43,0,4,0,6,0,0,0,38,1,0,0,0,0,64,192,43,0,4,0,6,0,0,0,45,1,0,0,0,0,0,192,43,0,4,0,6,0,0,0,52,1,0,0,0,0,128,191,43,0,4,0,6,0,0,0,64,1,0,0,0,0,128,63,43,0,4,0,6,0,0,0,71,1,0,0,0,0,0,64,43,0,4,0,6,0,0,0,78,1,0,0,0,0,64,64,43,0,4,0,6,0,0,0,89,1,0,0,0,0,128,64,43,0,4,0,237,0,0,0,126,1,0,0,1,0,0,0,43,0,4,0,237,0,0,0,134,1,0,0,2,0,0,0,44,0,7,0,7,0,0,0,55,2,0,0,12,1,0,0,12,1,0,0,12,1,0,0,12,1,0,0,44,0,5,0,21,0,0,0,63,2,0,0,64,1,0,0,52,1,0,0,43,0,4,0,9,0,0,0,137,2,0,0,1,0,0,0,43,0,4,0,9,0,0,0,200,2,0,0,2,0,0,0,24,0,4,0,213,2,0,0,7,0,0,0,4,0,0,0,32,0,4,0,214,2,0,0,7,0,0,0,213,2,0,0,44,0,6,0,39,0,0,0,109,3,0,0,12,1,0,0,12,1,0,0,12,1,0,0,44,0,6,0,39,0,0,0,113,3,0,0,64,1,0,0,64,1,0,0,64,1,0,0,43,0,4,0,6,0,0,0,142,3,0,0,0,0,0,65,44,0,6,0,39,0,0,0,143,3,0,0,12,1,0,0,142,3,0,0,89,1,0,0,43,0,4,0,6,0,0,0,146,3,0,0,69,118,244,63,43,0,4,0,6,0,0,0,150,3,0,0,0,0,64,65,44,0,6,0,39,0,0,0,156,3,0,0,78,1,0,0,78,1,0,0,78,1,0,0,43,0,4,0,6,0,0,0,158,3,0,0,0,0,16,65,44,0,6,0,39,0,0,0,159,3,0,0,158,3,0,0,158,3,0,0,158,3,0,0,43,0,4,0,6,0,0,0,196,3,0,0,0,0,0,63,43,0,4,0,6,0,0,0,233,3,0,0,146,10,134,63,44,0,6,0,39,0,0,0,15,4,0,0,196,3,0,0,196,3,0,0,196,3,0,0,44,0,6,0,39,0,0,0,18,4,0,0,71,1,0,0,71,1,0,0,71,1,0,0,43,0,4,0,6,0,0,0,37,4,0,0,0,0,128,62,44,0,6,0,39,0,0,0,38,4,0,0,37,4,0,0,37,4,0,0,37,4,0,0,43,0,4,0,6,0,0,0,40,4,0,0,0,0,128,65,44,0,6,0,39,0,0,0,41,4,0,0,40,4,0,0,40,4,0,0,40,4,0,0,43,0,4,0,9,0,0,0,220,4,0,0,0,0,0,0,43,0,4,0,9,0,0,0,32,5,0,0,4,0,0,0,44,0,5,0,225,0,0,0,33,5,0,0,137,2,0,0,32,5,0,0,43,0,4,0,9,0,0,0,71,5,0,0,3,0,0,0,43,0,4,0,9,0,0,0,87,5,0,0,8,0,0,0,43,0,4,0,9,0,0,0,97,5,0,0,15,0,0,0,43,0,4,0,9,0,0,0,135,5,0,0,10,0,0,0,44,0,5,0,21,0,0,0,163,5,0,0,196,3,0,0,196,3,0,0,44,0,5,0,21,0,0,0,175,5,0,0,64,1,0,0,64,1,0,0,43,0,4,0,9,0,0,0,180,5,0,0,128,0,0,0,43,0,4,0,9,0,0,0,224,5,0,0,5,0,0,0,43,0,4,0,9,0,0,0,232,5,0,0,6,0,0,0,43,0,4,0,9,0,0,0,240,5,0,0,7,0,0,0,24,0,4,0,255,5,0,0,21,0,0,0,2,0,0,0,30,0,13,0,23,6,0,0,7,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,225,0,0,0,21,0,0,0,21,0,0,0,32,0,4,0,24,6,0,0,2,0,0,0,23,6,0,0,59,0,4,0,24,6,0,0,25,6,0,0,2,0,0,0,32,0,4,0,26,6,0,0,2,0,0,0,6,0,0,0,23,0,4,0,37,6,0,0,237,0,0,0,3,0,0,0,32,0,4,0,38,6,0,0,1,0,0,0,37,6,0,0,59,0,4,0,38,6,0,0,39,6,0,0,1,0,0,0,23,0,4,0,40,6,0,0,237,0,0,0,2,0,0,0,59,0,4,0,38,6,0,0,45,6,0,0,1,0,0,0,32,0,4,0,52,6,0,0,2,0,0,0,21,0,0,0,29,0,3,0,60,6,0,0,9,0,0,0,30,0,3,0,61,6,0,0,60,6,0,0,32,0,4,0,62,6,0,0,2,0,0,0,61,6,0,0,59,0,4,0,62,6,0,0,63,6,0,0,2,0,0,0,32,0,4,0,66,6,0,0,2,0,0,0,9,0,0,0,32,0,4,0,101,6,0,0,2,0,0,0,7,0,0,0,25,0,9,0,114,6,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4,0,0,0,32,0,4,0,115,6,0,0,0,0,0,0,114,6,0,0,59,0,4,0,115,6,0,0,116,6,0,0,0,0,0,0,29,0,3,0,151,6,0,0,237,0,0,0,30,0,3,0,152,6,0,0,151,6,0,0,32,0,4,0,153,6,0,0,2,0,0,0,152,6,0,0,59,0,4,0,153,6,0,0,154,6,0,0,2,0,0,0,32,0,4,0,158,6,0,0,2,0,0,0,237,0,0,0,32,0,4,0,164,6,0,0,7,0,0,0,237,0,0,0,43,0,4,0,237,0,0,0,173,6,0,0,255,255,0,0,43,0,4,0,9,0,0,0,177,6,0,0,16,0,0,0,43,0,4,0,237,0,0,0,179,6,0,0,255,0,0,0,32,0,4,0,187,6,0,0,7,0,0,0,40,6,0,0,43,0,4,0,9,0,0,0,190,6,0,0,255,0,0,0,43,0,4,0,9,0,0,0,204,6,0,0,24,0,0,0,44,0,5,0,40,6,0,0,229,6,0,0,16,1,0,0,16,1,0,0,43,0,4,0,9,0,0,0,230,6,0,0,252,255,255,255,59,0,4,0,20,0,0,0,246,6,0,0,0,0,0,0,59,0,4,0,20,0,0,0,23,7,0,0,0,0,0,0,59,0,4,0,20,0,0,0,24,7,0,0,0,0,0,0,59,0,4,0,20,0,0,0,25,7,0,0,0,0,0,0,43,0,4,0,9,0,0,0,26,7,0,0,9,0,0,0,43,0,4,0,237,0,0,0,98,7,0,0,16,0,0,0,43,0,4,0,237,0,0,0,99,7,0,0,4,0,0,0,44,0,6,0,37,6,0,0,100,7,0,0,98,7,0,0,99,7,0,0,126,1,0,0,59,0,4,0,20,0,0,0,101,7,0,0,0,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,226,0,0,0,36,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,44,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,50,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,59,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,86,6,0,0,7,0,0,0,59,0,4,0,214,2,0,0,99,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,106,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,111,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,130,6,0,0,7,0,0,0,59,0,4,0,226,0,0,0,138,6,0,0,7,0,0,0,59,0,4,0,22,0,0,0,143,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,150,6,0,0,7,0,0,0,59,0,4,0,164,6,0,0,165,6,0,0,7,0,0,0,59,0,4,0,164,6,0,0,171,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,175,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,186,6,0,0,7,0,0,0,59,0,4,0,187,6,0,0,188,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,210,6,0,0,7,0,0,0,59,0,4,0,40,0,0,0,233,6,0,0,7,0,0,0,59,0,4,0,22,0,0,0,247,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,248,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,249,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,250,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,251,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,252,6,0,0,7,0,0,0,59,0,4,0,8,0,0,0,253,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,254,6,0,0,7,0,0,0,59,0,4,0,22,0,0,0,255,6,0,0,7,0,0,0,59,0,4,0,10,0,0,0,1,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,2,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,5,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,6,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,7,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,8,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,9,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,10,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,11,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,12,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,22,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,27,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,29,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,32,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,35,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,37,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,39,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,41,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,43,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,45,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,48,7,0,0,7,0,0,0,59,0,4,0,40,0,0,0,50,7,0,0,7,0,0,0,59,0,4,0,22,0,0,0,52,7,0,0,7,0,0,0,59,0,4,0,8,0,0,0,54,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,56,7,0,0,7,0,0,0,59,0,4,0,10,0,0,0,78,7,0,0,7,0,0,0,59,0,4,0,226,0,0,0,91,7,0,0,7,0,0,0,61,0,4,0,37,6,0,0,41,6,0,0,39,6,0,0,79,0,7,0,40,6,0,0,42,6,0,0,41,6,0,0,41,6,0,0,0,0,0,0,1,0,0,0,124,0,4,0,225,0,0,0,43,6,0,0,42,6,0,0,62,0,3,0,36,6,0,0,43,6,0,0,61,0,4,0,37,6,0,0,46,6,0,0,45,6,0,0,79,0,7,0,40,6,0,0,47,6,0,0,46,6,0,0,46,6,0,0,0,0,0,0,1,0,0,0,124,0,4,0,225,0,0,0,48,6,0,0,47,6,0,0,132,0,5,0,225,0,0,0,49,6,0,0,48,6,0,0,33,5,0,0,62,0,3,0,44,6,0,0,49,6,0,0,61,0,4,0,225,0,0,0,51,6,0,0,36,6,0,0,65,0,5,0,52,6,0,0,53,6,0,0,25,6,0,0,224,5,0,0,61,0,4,0,21,0,0,0,54,6,0,0,53,6,0,0,110,0,4,0,225,0,0,0,55,6,0,0,54,6,0,0,132,0,5,0,225,0,0,0,56,6,0,0,51,6,0,0,55,6,0,0,61,0,4,0,225,0,0,0,57,6,0,0,44,6,0,0,128,0,5,0,225,0,0,0,58,6,0,0,56,6,0,0,57,6,0,0,62,0,3,0,50,6,0,0,58,6,0,0,65,0,5,0,10,0,0,0,64,6,0,0,36,6,0,0,16,1,0,0,61,0,4,0,9,0,0,0,65,6,0,0,64,6,0,0,65,0,6,0,66,6,0,0,67,6,0,0,25,6,0,0,87,5,0,0,16,1,0,0,61,0,4,0,9,0,0,0,68,6,0,0,67,6,0,0,65,0,5,0,10,0,0,0,69,6,0,0,36,6,0,0,126,1,0,0,61,0,4,0,9,0,0,0,70,6,0,0,69,6,0,0,132,0,5,0,9,0,0,0,71,6,0,0,68,6,0,0,70,6,0,0,128,0,5,0,9,0,0,0,72,6,0,0,65,6,0,0,71,6,0,0,65,0,6,0,66,6,0,0,73,6,0,0,63,6,0,0,220,4,0,0,72,6,0,0,61,0,4,0,9,0,0,0,74,6,0,0,73,6,0,0,62,0,3,0,59,6,0,0,74,6,0,0,61,0,4,0,9,0,0,0,75,6,0,0,59,6,0,0,177,0,5,0,117,0,0,0,76,6,0,0,75,6,0,0,220,4,0,0,247,0,3,0,78,6,0,0,0,0,0,0,250,0,4,0,76,6,0,0,77,6,0,0,78,6,0,0,248,0,2,0,77,6,0,0,65,0,5,0,66,6,0,0,79,6,0,0,25,6,0,0,137,2,0,0,61,0,4,0,9,0,0,0,80,6,0,0,79,6,0,0,171,0,5,0,117,0,0,0,81,6,0,0,80,6,0,0,220,4,0,0,249,0,2,0,78,6,0,0,248,0,2,0,78,6,0,0,245,0,7,0,117,0,0,0,82,6,0,0,76,6,0,0,5,0,0,0,81,6,0,0,77,6,0,0,247,0,3,0,84,6,0,0,0,0,0,0,250,0,4,0,82,6,0,0,83,6,0,0,84,6,0,0,248,0,2,0,83,6,0,0,253,0,1,0,248,0,2,0,84,6,0,0,62,0,3,0,86,6,0,0,220,4,0,0,249,0,2,0,87,6,0,0,248,0,2,0,87,6,0,0,246,0,4,0,89,6,0,0,90,6,0,0,0,0,0,0,249,0,2,0,91,6,0,0,248,0,2,0,91,6,0,0,61,0,4,0,9,0,0,0,92,6,0,0,86,6,0,0,177,0,5,0,117,0,0,0,93,6,0,0,92,6,0,0,32,5,0,0,250,0,4,0,93,6,0,0,88,6,0,0,89,6,0,0,248,0,2,0,88,6,0,0,65,0,5,0,66,6,0,0,94,6,0,0,25,6,0,0,137,2,0,0,61,0,4,0,9,0,0,0,95,6,0,0,94,6,0,0,170,0,5,0,117,0,0,0,96,6,0,0,95,6,0,0,220,4,0,0,247,0,3,0,98,6,0,0,0,0,0,0,250,0,4,0,96,6,0,0,97,6,0,0,105,6,0,0,248,0,2,0,97,6,0,0,61,0,4,0,9,0,0,0,100,6,0,0,86,6,0,0,65,0,5,0,101,6,0,0,102,6,0,0,25,6,0,0,220,4,0,0,61,0,4,0,7,0,0,0,103,6,0,0,102,6,0,0,65,0,5,0,8,0,0,0,104,6,0,0,99,6,0,0,100,6,0,0,62,0,3,0,104,6,0,0,103,6,0,0,249,0,2,0,98,6,0,0,248,0,2,0,105,6,0,0,61,0,4,0,225,0,0,0,107,6,0,0,50,6,0,0,61,0,4,0,9,0,0,0,108,6,0,0,86,6,0,0,80,0,5,0,225,0,0,0,109,6,0,0,220,4,0,0,108,6,0,0,128,0,5,0,225,0,0,0,110,6,0,0,107,6,0,0,109,6,0,0,62,0,3,0,111,6,0,0,110,6,0,0,57,0,5,0,225,0,0,0,112,6,0,0,229,0,0,0,111,6,0,0,62,0,3,0,106,6,0,0,112,6,0,0,61,0,4,0,9,0,0,0,113,6,0,0,86,6,0,0,61,0,4,0,114,6,0,0,117,6,0,0,116,6,0,0,61,0,4,0,225,0,0,0,118,6,0,0,106,6,0,0,98,0,5,0,7,0,0,0,119,6,0,0,117,6,0,0,118,6,0,0,65,0,5,0,8,0,0,0,120,6,0,0,99,6,0,0,113,6,0,0,62,0,3,0,120,6,0,0,119,6,0,0,249,0,2,0,98,6,0,0,248,0,2,0,98,6,0,0,249,0,2,0,90,6,0,0,248,0,2,0,90,6,0,0,61,0,4,0,9,0,0,0,121,6,0,0,86,6,0,0,128,0,5,0,9,0,0,0,122,6,0,0,121,6,0,0,137,2,0,0,62,0,3,0,86,6,0,0,122,6,0,0,249,0,2,0,87,6,0,0,248,0,2,0,89,6,0,0,249,0,2,0,123,6,0,0,248,0,2,0,123,6,0,0,246,0,4,0,125,6,0,0,126,6,0,0,0,0,0,0,249,0,2,0,127,6,0,0,248,0,2,0,127,6,0,0,61,0,4,0,9,0,0,0,128,6,0,0,59,6,0,0,175,0,5,0,117,0,0,0,129,6,0,0,128,6,0,0,220,4,0,0,250,0,4,0,129,6,0,0,124,6,0,0,125,6,0,0,248,0,2,0,124,6,0,0,62,0,3,0,130,6,0,0,220,4,0,0,249,0,2,0,131,6,0,0,248,0,2,0,131,6,0,0,246,0,4,0,133,6,0,0,134,6,0,0,0,0,0,0,249,0,2,0,135,6,0,0,248,0,2,0,135,6,0,0,61,0,4,0,9,0,0,0,136,6,0,0,130,6,0,0,177,0,5,0,117,0,0,0,137,6,0,0,136,6,0,0,32,5,0,0,250,0,4,0,137,6,0,0,132,6,0,0,133,6,0,0,248,0,2,0,132,6,0,0,61,0,4,0,225,0,0,0,139,6,0,0,44,6,0,0,61,0,4,0,9,0,0,0,140,6,0,0,130,6,0,0,80,0,5,0,225,0,0,0,141,6,0,0,220,4,0,0,140,6,0,0,128,0,5,0,225,0,0,0,142,6,0,0,139,6,0,0,141,6,0,0,62,0,3,0,138,6,0,0,142,6,0,0,61,0,4,0,225,0,0,0,144,6,0,0,50,6,0,0,61,0,4,0,9,0,0,0,145,6,0,0,130,6,0,0,80,0,5,0,225,0,0,0,146,6,0,0,220,4,0,0,145,6,0,0,128,0,5,0,225,0,0,0,147,6,0,0,144,6,0,0,146,6,0,0,111,0,4,0,21,0,0,0,148,6,0,0,147,6,0,0,129,0,5,0,21,0,0,0,149,6,0,0,148,6,0,0,163,5,0,0,62,0,3,0,143,6,0,0,149,6,0,0,61,0,4,0,9,0,0,0,155,6,0,0,59,6,0,0,132,0,5,0,9,0,0,0,156,6,0,0,155,6,0,0,32,5,0,0,128,0,5,0,9,0,0,0,157,6,0,0,156,6,0,0,200,2,0,0,65,0,6,0,158,6,0,0,159,6,0,0,154,6,0,0,220,4,0,0,157,6,0,0,61,0,4,0,237,0,0,0,160,6,0,0,159,6,0,0,196,0,5,0,237,0,0,0,161,6,0,0,160,6,0,0,87,5,0,0,124,0,4,0,9,0,0,0,162,6,0,0,161,6,0,0,195,0,5,0,9,0,0,0,163,6,0,0,162,6,0,0,87,5,0,0,62,0,3,0,150,6,0,0,163,6,0,0,61,0,4,0,9,0,0,0,166,6,0,0,59,6,0,0,132,0,5,0,9,0,0,0,167,6,0,0,166,6,0,0,32,5,0,0,128,0,5,0,9,0,0,0,168,6,0,0,167,6,0,0,71,5,0,0,65,0,6,0,158,6,0,0,169,6,0,0,154,6,0,0,220,4,0,0,168,6,0,0,61,0,4,0,237,0,0,0,170,6,0,0,169,6,0,0,62,0,3,0,165,6,0,0,170,6,0,0,61,0,4,0,237,0,0,0,172,6,0,0,165,6,0,0,199,0,5,0,237,0,0,0,174,6,0,0,172,6,0,0,173,6,0,0,62,0,3,0,171,6,0,0,174,6,0,0,61,0,4,0,237,0,0,0,176,6,0,0,165,6,0,0,194,0,5,0,237,0,0,0,178,6,0,0,176,6,0,0,177,6,0,0,199,0,5,0,237,0,0,0,180,6,0,0,178,6,0,0,179,6,0,0,124,0,4,0,9,0,0,0,181,6,0,0,180,6,0,0,62,0,3,0,175,6,0,0,181,6,0,0,61,0,4,0,9,0,0,0,182,6,0,0,150,6,0,0,175,0,5,0,117,0,0,0,183,6,0,0,182,6,0,0,220,4,0,0,247,0,3,0,185,6,0,0,0,0,0,0,250,0,4,0,183,6,0,0,184,6,0,0,201,6,0,0,248,0,2,0,184,6,0,0,62,0,3,0,186,6,0,0,220,4,0,0,61,0,4,0,9,0,0,0,189,6,0,0,150,6,0,0,199,0,5,0,9,0,0,0,191,6,0,0,189,6,0,0,190,6,0,0,124,0,4,0,237,0,0,0,192,6,0,0,191,6,0,0,61,0,4,0,9,0,0,0,193,6,0,0,150,6,0,0,195,0,5,0,9,0,0,0,194,6,0,0,193,6,0,0,87,5,0,0,124,0,4,0,237,0,0,0,195,6,0,0,194,6,0,0,80,0,5,0,40,6,0,0,196,6,0,0,192,6,0,0,195,6,0,0,65,0,5,0,52,6,0,0,197,6,0,0,25,6,0,0,224,5,0,0,61,0,4,0,21,0,0,0,198,6,0,0,197,6,0,0,109,0,4,0,40,6,0,0,199,6,0,0,198,6,0,0,132,0,5,0,40,6,0,0,200,6,0,0,196,6,0,0,199,6,0,0,62,0,3,0,188,6,0,0,200,6,0,0,249,0,2,0,185,6,0,0,248,0,2,0,201,6,0,0,61,0,4,0,237,0,0,0,202,6,0,0,165,6,0,0,124,0,4,0,9,0,0,0,203,6,0,0,202,6,0,0,195,0,5,0,9,0,0,0,205,6,0,0,203,6,0,0,204,6,0,0,62,0,3,0,186,6,0,0,205,6,0,0,61,0,4,0,9,0,0,0,206,6,0,0,186,6,0,0,171,0,5,0,117,0,0,0,207,6,0,0,206,6,0,0,220,4,0,0,247,0,3,0,209,6,0,0,0,0,0,0,250,0,4,0,207,6,0,0,208,6,0,0,209,6,0,0,248,0,2,0,208,6,0,0,61,0,4,0,9,0,0,0,211,6,0,0,175,6,0,0,195,0,5,0,9,0,0,0,212,6,0,0,211,6,0,0,220,4,0,0,199,0,5,0,9,0,0,0,213,6,0,0,212,6,0,0,71,5,0,0,62,0,3,0,210,6,0,0,213,6,0,0,61,0,4,0,9,0,0,0,214,6,0,0,210,6,0,0,199,0,5,0,9,0,0,0,215,6,0,0,214,6,0,0,200,2,0,0,171,0,5,0,117,0,0,0,216,6,0,0,215,6,0,0,220,4,0,0,247,0,3,0,218,6,0,0,0,0,0,0,250,0,4,0,216,6,0,0,217,6,0,0,218,6,0,0,248,0,2,0,217,6,0,0,61,0,4,0,9,0,0,0,219,6,0,0,186,6,0,0,12,0,6,0,9,0,0,0,220,6,0,0,1,0,0,0,5,0,0,0,219,6,0,0,111,0,4,0,6,0,0,0,221,6,0,0,220,6,0,0,141,0,5,0,6,0,0,0,222,6,0,0,221,6,0,0,71,1,0,0,110,0,4,0,9,0,0,0,223,6,0,0,222,6,0,0,170,0,5,0,117,0,0,0,224,6,0,0,223,6,0,0,220,4,0,0,249,0,2,0,218,6,0,0,248,0,2,0,218,6,0,0,245,0,7,0,117,0,0,0,225,6,0,0,216,6,0,0,208,6,0,0,224,6,0,0,217,6,0,0,247,0,3,0,227,6,0,0,0,0,0,0,250,0,4,0,225,6,0,0,226,6,0,0,227,6,0,0,248,0,2,0,226,6,0,0,249,0,2,0,133,6,0,0,248,0,2,0,227,6,0,0,249,0,2,0,209,6,0,0,248,0,2,0,209,6,0,0,62,0,3,0,188,6,0,0,229,6,0,0,61,0,4,0,9,0,0,0,231,6,0,0,175,6,0,0,199,0,5,0,9,0,0,0,232,6,0,0,231,6,0,0,230,6,0,0,62,0,3,0,175,6,0,0,232,6,0,0,249,0,2,0,185,6,0,0,248,0,2,0,185,6,0,0,61,0,4,0,40,6,0,0,234,6,0,0,188,6,0,0,124,0,4,0,225,0,0,0,235,6,0,0,234,6,0,0,61,0,4,0,225,0,0,0,236,6,0,0,138,6,0,0,128,0,5,0,225,0,0,0,237,6,0,0,235,6,0,0,236,6,0,0,111,0,4,0,21,0,0,0,238,6,0,0,237,6,0,0,61,0,4,0,9,0,0,0,239,6,0,0,186,6,0,0,111,0,4,0,6,0,0,0,240,6,0,0,239,6,0,0,81,0,5,0,6,0,0,0,241,6,0,0,238,6,0,0,0,0,0,0,81,0,5,0,6,0,0,0,242,6,0,0,238,6,0,0,1,0,0,0,80,0,6,0,39,0,0,0,243,6,0,0,241,6,0,0,242,6,0,0,240,6,0,0,62,0,3,0,233,6,0,0,243,6,0,0,61,0,4,0,237,0,0,0,244,6,0,0,171,6,0,0,124,0,4,0,9,0,0,0,245,6,0,0,244,6,0,0,61,0,4,0,21,0,0,0,0,7,0,0,143,6,0,0,62,0,3,0,255,6,0,0,0,7,0,0,62,0,3,0,1,7,0,0,245,6,0,0,65,0,5,0,52,6,0,0,3,7,0,0,25,6,0,0,232,5,0,0,61,0,4,0,21,0,0,0,4,7,0,0,3,7,0,0,62,0,3,0,2,7,0,0,4,7,0,0,57,0,16,0,2,0,0,0,13,7,0,0,223,0,0,0,255,6,0,0,1,7,0,0,246,6,0,0,2,7,0,0,5,7,0,0,6,7,0,0,7,7,0,0,8,7,0,0,9,7,0,0,10,7,0,0,11,7,0,0,12,7,0,0,61,0,4,0,21,0,0,0,14,7,0,0,5,7,0,0,62,0,3,0,247,6,0,0,14,7,0,0,61,0,4,0,7,0,0,0,15,7,0,0,6,7,0,0,62,0,3,0,248,6,0,0,15,7,0,0,61,0,4,0,7,0,0,0,16,7,0,0,7,7,0,0,62,0,3,0,249,6,0,0,16,7,0,0,61,0,4,0,7,0,0,0,17,7,0,0,8,7,0,0,62,0,3,0,250,6,0,0,17,7,0,0,61,0,4,0,7,0,0,0,18,7,0,0,9,7,0,0,62,0,3,0,251,6,0,0,18,7,0,0,61,0,4,0,7,0,0,0,19,7,0,0,10,7,0,0,62,0,3,0,252,6,0,0,19,7,0,0,61,0,4,0,7,0,0,0,20,7,0,0,11,7,0,0,62,0,3,0,253,6,0,0,20,7,0,0,61,0,4,0,9,0,0,0,21,7,0,0,12,7,0,0,62,0,3,0,254,6,0,0,21,7,0,0,61,0,4,0,21,0,0,0,28,7,0,0,143,6,0,0,62,0,3,0,27,7,0,0,28,7,0,0,65,0,5,0,52,6,0,0,30,7,0,0,25,6,0,0,135,5,0,0,61,0,4,0,21,0,0,0,31,7,0,0,30,7,0,0,62,0,3,0,29,7,0,0,31,7,0,0,65,0,5,0,52,6,0,0,33,7,0,0,25,6,0,0,26,7,0,0,61,0,4,0,21,0,0,0,34,7,0,0,33,7,0,0,62,0,3,0,32,7,0,0,34,7,0,0,61,0,4,0,7,0,0,0,36,7,0,0,249,6,0,0,62,0,3,0,35,7,0,0,36,7,0,0,61,0,4,0,7,0,0,0,38,7,0,0,250,6,0,0,62,0,3,0,37,7,0,0,38,7,0,0,61,0,4,0,7,0,0,0,40,7,0,0,251,6,0,0,62,0,3,0,39,7,0,0,40,7,0,0,61,0,4,0,7,0,0,0,42,7,0,0,252,6,0,0,62,0,3,0,41,7,0,0,42,7,0,0,61,0,4,0,7,0,0,0,44,7,0,0,253,6,0,0,62,0,3,0,43,7,0,0,44,7,0,0,65,0,5,0,52,6,0,0,46,7,0,0,25,6,0,0,240,5,0,0,61,0,4,0,21,0,0,0,47,7,0,0,46,7,0,0,62,0,3,0,45,7,0,0,47,7,0,0,61,0,4,0,9,0,0,0,49,7,0,0,254,6,0,0,62,0,3,0,48,7,0,0,49,7,0,0,61,0,4,0,39,0,0,0,51,7,0,0,233,6,0,0,62,0,3,0,50,7,0,0,51,7,0,0,61,0,4,0,21,0,0,0,53,7,0,0,247,6,0,0,62,0,3,0,52,7,0,0,53,7,0,0,61,0,4,0,7,0,0,0,55,7,0,0,248,6,0,0,62,0,3,0,54,7,0,0,55,7,0,0,61,0,4,0,9,0,0,0,57,7,0,0,175,6,0,0,62,0,3,0,56,7,0,0,57,7,0,0,57,0,22,0,7,0,0,0,58,7,0,0,201,0,0,0,27,7,0,0,23,7,0,0,24,7,0,0,23,7,0,0,25,7,0,0,29,7,0,0,32,7,0,0,35,7,0,0,37,7,0,0,39,7,0,0,41,7,0,0,43,7,0,0,45,7,0,0,48,7,0,0,50,7,0,0,52,7,0,0,54,7,0,0,56,7,0,0,62,0,3,0,22,7,0,0,58,7,0,0,61,0,4,0,9,0,0,0,59,7,0,0,130,6,0,0,61,0,4,0,9,0,0,0,60,7,0,0,130,6,0,0,65,0,5,0,8,0,0,0,61,7,0,0,99,6,0,0,60,7,0,0,61,0,4,0,7,0,0,0,62,7,0,0,61,7,0,0,65,0,5,0,17,0,0,0,63,7,0,0,22,7,0,0,238,0,0,0,61,0,4,0,6,0,0,0,64,7,0,0,63,7,0,0,131,0,5,0,6,0,0,0,65,7,0,0,64,1,0,0,64,7,0,0,142,0,5,0,7,0,0,0,66,7,0,0,62,7,0,0,65,7,0,0,61,0,4,0,7,0,0,0,67,7,0,0,22,7,0,0,129,0,5,0,7,0,0,0,68,7,0,0,66,7,0,0,67,7,0,0,65,0,5,0,8,0,0,0,69,7,0,0,99,6,0,0,59,7,0,0,62,0,3,0,69,7,0,0,68,7,0,0,249,0,2,0,134,6,0,0,248,0,2,0,134,6,0,0,61,0,4,0,9,0,0,0,70,7,0,0,130,6,0,0,128,0,5,0,9,0,0,0,71,7,0,0,70,7,0,0,137,2,0,0,62,0,3,0,130,6,0,0,71,7,0,0,249,0,2,0,131,6,0,0,248,0,2,0,133,6,0,0,61,0,4,0,9,0,0,0,72,7,0,0,59,6,0,0,132,0,5,0,9,0,0,0,73,7,0,0,72,7,0,0,32,5,0,0,128,0,5,0,9,0,0,0,74,7,0,0,73,7,0,0,220,4,0,0,65,0,6,0,158,6,0,0,75,7,0,0,154,6,0,0,220,4,0,0,74,7,0,0,61,0,4,0,237,0,0,0,76,7,0,0,75,7,0,0,124,0,4,0,9,0,0,0,77,7,0,0,76,7,0,0,62,0,3,0,59,6,0,0,77,7,0,0,249,0,2,0,126,6,0,0,248,0,2,0,126,6,0,0,249,0,2,0,123,6,0,0,248,0,2,0,125,6,0,0,62,0,3,0,78,7,0,0,220,4,0,0,249,0,2,0,79,7,0,0,248,0,2,0,79,7,0,0,246,0,4,0,81,7,0,0,82,7,0,0,0,0,0,0,249,0,2,0,83,7,0,0,248,0,2,0,83,7,0,0,61,0,4,0,9,0,0,0,84,7,0,0,78,7,0,0,177,0,5,0,117,0,0,0,85,7,0,0,84,7,0,0,32,5,0,0,250,0,4,0,85,7,0,0,80,7,0,0,81,7,0,0,248,0,2,0,80,7,0,0,61,0,4,0,114,6,0,0,86,7,0,0,116,6,0,0,61,0,4,0,225,0,0,0,87,7,0,0,50,6,0,0,61,0,4,0,9,0,0,0,88,7,0,0,78,7,0,0,80,0,5,0,225,0,0,0,89,7,0,0,220,4,0,0,88,7,0,0,128,0,5,0,225,0,0,0,90,7,0,0,87,7,0,0,89,7,0,0,62,0,3,0,91,7,0,0,90,7,0,0,57,0,5,0,225,0,0,0,92,7,0,0,229,0,0,0,91,7,0,0,61,0,4,0,9,0,0,0,93,7,0,0,78,7,0,0,65,0,5,0,8,0,0,0,94,7,0,0,99,6,0,0,93,7,0,0,61,0,4,0,7,0,0,0,95,7,0,0,94,7,0,0,99,0,4,0,86,7,0,0,92,7,0,0,95,7,0,0,249,0,2,0,82,7,0,0,248,0,2,0,82,7,0,0,61,0,4,0,9,0,0,0,96,7,0,0,78,7,0,0,128,0,5,0,9,0,0,0,97,7,0,0,96,7,0,0,137,2,0,0,62,0,3,0,78,7,0,0,97,7,0,0,249,0,2,0,79,7,0,0,248,0,2,0,81,7,0,0,253,0,1,0,56,0,1,0,54,0,5,0,7,0,0,0,15,0,0,0,0,0,0,0,11,0,0,0,55,0,3,0,8,0,0,0,12,0,0,0,55,0,3,0,8,0,0,0,13,0,0,0,55,0,3,0,10,0,0,0,14,0,0,0,248,0,2,0,16,0,0,0,61,0,4,0,9,0,0,0,231,0,0,0,14,0,0,0,247,0,3,0,234,0,0,0,0,0,0,0,251,0,7,0,231,0,0,0,234,0,0,0,1,0,0,0,232,0,0,0,2,0,0,0,233,0,0,0,248,0,2,0,232,0,0,0,61,0,4,0,7,0,0,0,235,0,0,0,13,0,0,0,79,0,8,0,39,0,0,0,236,0,0,0,235,0,0,0,235,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,239,0,0,0,13,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,240,0,0,0,239,0,0,0,65,0,5,0,17,0,0,0,241,0,0,0,12,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,242,0,0,0,241,0,0,0,133,0,5,0,6,0,0,0,243,0,0,0,240,0,0,0,242,0,0,0,81,0,5,0,6,0,0,0,244,0,0,0,236,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,245,0,0,0,236,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,246,0,0,0,236,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,247,0,0,0,244,0,0,0,245,0,0,0,246,0,0,0,243,0,0,0,254,0,2,0,247,0,0,0,248,0,2,0,233,0,0,0,61,0,4,0,7,0,0,0,249,0,0,0,12,0,0,0,79,0,8,0,39,0,0,0,250,0,0,0,249,0,0,0,249,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,251,0,0,0,13,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,252,0,0,0,251,0,0,0,65,0,5,0,17,0,0,0,253,0,0,0,12,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,254,0,0,0,253,0,0,0,133,0,5,0,6,0,0,0,255,0,0,0,252,0,0,0,254,0,0,0,81,0,5,0,6,0,0,0,0,1,0,0,250,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,1,1,0,0,250,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,2,1,0,0,250,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,3,1,0,0,0,1,0,0,1,1,0,0,2,1,0,0,255,0,0,0,254,0,2,0,3,1,0,0,248,0,2,0,234,0,0,0,61,0,4,0,7,0,0,0,6,1,0,0,12,0,0,0,254,0,2,0,6,1,0,0,56,0,1,0,54,0,5,0,6,0,0,0,27,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,17,0,0,0,24,0,0,0,55,0,3,0,20,0,0,0,25,0,0,0,55,0,3,0,22,0,0,0,26,0,0,0,248,0,2,0,28,0,0,0,61,0,4,0,19,0,0,0,9,1,0,0,25,0,0,0,61,0,4,0,21,0,0,0,10,1,0,0,26,0,0,0,61,0,4,0,6,0,0,0,11,1,0,0,24,0,0,0,80,0,5,0,21,0,0,0,13,1,0,0,11,1,0,0,12,1,0,0,129,0,5,0,21,0,0,0,14,1,0,0,10,1,0,0,13,1,0,0,88,0,7,0,7,0,0,0,15,1,0,0,9,1,0,0,14,1,0,0,2,0,0,0,12,1,0,0,81,0,5,0,6,0,0,0,17,1,0,0,15,1,0,0,0,0,0,0,254,0,2,0,17,1,0,0,56,0,1,0,54,0,5,0,2,0,0,0,37,0,0,0,0,0,0,0,29,0,0,0,55,0,3,0,8,0,0,0,30,0,0,0,55,0,3,0,17,0,0,0,31,0,0,0,55,0,3,0,8,0,0,0,32,0,0,0,55,0,3,0,20,0,0,0,33,0,0,0,55,0,3,0,22,0,0,0,34,0,0,0,55,0,3,0,8,0,0,0,35,0,0,0,55,0,3,0,17,0,0,0,36,0,0,0,248,0,2,0,38,0,0,0,59,0,4,0,20,1,0,0,21,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,26,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,32,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,33,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,41,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,42,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,48,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,49,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,55,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,56,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,60,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,61,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,67,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,68,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,74,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,75,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,81,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,82,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,86,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,92,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,93,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,22,1,0,0,35,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,23,1,0,0,22,1,0,0,186,0,5,0,117,0,0,0,24,1,0,0,23,1,0,0,12,1,0,0,62,0,3,0,21,1,0,0,24,1,0,0,61,0,4,0,117,0,0,0,25,1,0,0,21,1,0,0,247,0,3,0,28,1,0,0,0,0,0,0,250,0,4,0,25,1,0,0,27,1,0,0,36,1,0,0,248,0,2,0,27,1,0,0,61,0,4,0,6,0,0,0,30,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,31,1,0,0,29,1,0,0,30,1,0,0,62,0,3,0,32,1,0,0,31,1,0,0,61,0,4,0,21,0,0,0,34,1,0,0,34,0,0,0,62,0,3,0,33,1,0,0,34,1,0,0,57,0,7,0,6,0,0,0,35,1,0,0,27,0,0,0,32,1,0,0,33,0,0,0,33,1,0,0,62,0,3,0,26,1,0,0,35,1,0,0,249,0,2,0,28,1,0,0,248,0,2,0,36,1,0,0,62,0,3,0,26,1,0,0,12,1,0,0,249,0,2,0,28,1,0,0,248,0,2,0,28,1,0,0,61,0,4,0,6,0,0,0,37,1,0,0,26,1,0,0,61,0,4,0,6,0,0,0,39,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,40,1,0,0,38,1,0,0,39,1,0,0,62,0,3,0,41,1,0,0,40,1,0,0,61,0,4,0,21,0,0,0,43,1,0,0,34,0,0,0,62,0,3,0,42,1,0,0,43,1,0,0,57,0,7,0,6,0,0,0,44,1,0,0,27,0,0,0,41,1,0,0,33,0,0,0,42,1,0,0,61,0,4,0,6,0,0,0,46,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,47,1,0,0,45,1,0,0,46,1,0,0,62,0,3,0,48,1,0,0,47,1,0,0,61,0,4,0,21,0,0,0,50,1,0,0,34,0,0,0,62,0,3,0,49,1,0,0,50,1,0,0,57,0,7,0,6,0,0,0,51,1,0,0,27,0,0,0,48,1,0,0,33,0,0,0,49,1,0,0,61,0,4,0,6,0,0,0,53,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,54,1,0,0,52,1,0,0,53,1,0,0,62,0,3,0,55,1,0,0,54,1,0,0,61,0,4,0,21,0,0,0,57,1,0,0,34,0,0,0,62,0,3,0,56,1,0,0,57,1,0,0,57,0,7,0,6,0,0,0,58,1,0,0,27,0,0,0,55,1,0,0,33,0,0,0,56,1,0,0,80,0,7,0,7,0,0,0,59,1,0,0,37,1,0,0,44,1,0,0,51,1,0,0,58,1,0,0,62,0,3,0,30,0,0,0,59,1,0,0,62,0,3,0,60,1,0,0,12,1,0,0,61,0,4,0,21,0,0,0,62,1,0,0,34,0,0,0,62,0,3,0,61,1,0,0,62,1,0,0,57,0,7,0,6,0,0,0,63,1,0,0,27,0,0,0,60,1,0,0,33,0,0,0,61,1,0,0,62,0,3,0,31,0,0,0,63,1,0,0,61,0,4,0,6,0,0,0,65,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,66,1,0,0,64,1,0,0,65,1,0,0,62,0,3,0,67,1,0,0,66,1,0,0,61,0,4,0,21,0,0,0,69,1,0,0,34,0,0,0,62,0,3,0,68,1,0,0,69,1,0,0,57,0,7,0,6,0,0,0,70,1,0,0,27,0,0,0,67,1,0,0,33,0,0,0,68,1,0,0,61,0,4,0,6,0,0,0,72,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,73,1,0,0,71,1,0,0,72,1,0,0,62,0,3,0,74,1,0,0,73,1,0,0,61,0,4,0,21,0,0,0,76,1,0,0,34,0,0,0,62,0,3,0,75,1,0,0,76,1,0,0,57,0,7,0,6,0,0,0,77,1,0,0,27,0,0,0,74,1,0,0,33,0,0,0,75,1,0,0,61,0,4,0,6,0,0,0,79,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,80,1,0,0,78,1,0,0,79,1,0,0,62,0,3,0,81,1,0,0,80,1,0,0,61,0,4,0,21,0,0,0,83,1,0,0,34,0,0,0,62,0,3,0,82,1,0,0,83,1,0,0,57,0,7,0,6,0,0,0,84,1,0,0,27,0,0,0,81,1,0,0,33,0,0,0,82,1,0,0,61,0,4,0,117,0,0,0,85,1,0,0,21,1,0,0,247,0,3,0,88,1,0,0,0,0,0,0,250,0,4,0,85,1,0,0,87,1,0,0,96,1,0,0,248,0,2,0,87,1,0,0,61,0,4,0,6,0,0,0,90,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,91,1,0,0,89,1,0,0,90,1,0,0,62,0,3,0,92,1,0,0,91,1,0,0,61,0,4,0,21,0,0,0,94,1,0,0,34,0,0,0,62,0,3,0,93,1,0,0,94,1,0,0,57,0,7,0,6,0,0,0,95,1,0,0,27,0,0,0,92,1,0,0,33,0,0,0,93,1,0,0,62,0,3,0,86,1,0,0,95,1,0,0,249,0,2,0,88,1,0,0,248,0,2,0,96,1,0,0,62,0,3,0,86,1,0,0,12,1,0,0,249,0,2,0,88,1,0,0,248,0,2,0,88,1,0,0,61,0,4,0,6,0,0,0,97,1,0,0,86,1,0,0,80,0,7,0,7,0,0,0,98,1,0,0,70,1,0,0,77,1,0,0,84,1,0,0,97,1,0,0,62,0,3,0,32,0,0,0,98,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,6,0,0,0,45,0,0,0,0,0,0,0,41,0,0,0,55,0,3,0,8,0,0,0,42,0,0,0,55,0,3,0,40,0,0,0,43,0,0,0,55,0,3,0,8,0,0,0,44,0,0,0,248,0,2,0,46,0,0,0,61,0,4,0,7,0,0,0,99,1,0,0,42,0,0,0,61,0,4,0,7,0,0,0,100,1,0,0,44,0,0,0,148,0,5,0,6,0,0,0,101,1,0,0,99,1,0,0,100,1,0,0,61,0,4,0,39,0,0,0,102,1,0,0,43,0,0,0,61,0,4,0,7,0,0,0,103,1,0,0,44,0,0,0,79,0,8,0,39,0,0,0,104,1,0,0,103,1,0,0,103,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,148,0,5,0,6,0,0,0,105,1,0,0,102,1,0,0,104,1,0,0,129,0,5,0,6,0,0,0,106,1,0,0,101,1,0,0,105,1,0,0,254,0,2,0,106,1,0,0,56,0,1,0,54,0,5,0,6,0,0,0,51,0,0,0,0,0,0,0,47,0,0,0,55,0,3,0,17,0,0,0,48,0,0,0,55,0,3,0,17,0,0,0,49,0,0,0,55,0,3,0,20,0,0,0,50,0,0,0,248,0,2,0,52,0,0,0,61,0,4,0,19,0,0,0,109,1,0,0,50,0,0,0,61,0,4,0,6,0,0,0,110,1,0,0,49,0,0,0,61,0,4,0,6,0,0,0,111,1,0,0,48,0,0,0,131,0,5,0,6,0,0,0,112,1,0,0,64,1,0,0,111,1,0,0,80,0,5,0,21,0,0,0,113,1,0,0,110,1,0,0,112,1,0,0,88,0,7,0,7,0,0,0,114,1,0,0,109,1,0,0,113,1,0,0,2,0,0,0,12,1,0,0,81,0,5,0,6,0,0,0,115,1,0,0,114,1,0,0,0,0,0,0,254,0,2,0,115,1,0,0,56,0,1,0,54,0,5,0,39,0,0,0,57,0,0,0,0,0,0,0,53,0,0,0,55,0,3,0,40,0,0,0,54,0,0,0,55,0,3,0,40,0,0,0,55,0,0,0,55,0,3,0,20,0,0,0,56,0,0,0,248,0,2,0,58,0,0,0,59,0,4,0,17,0,0,0,118,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,121,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,125,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,129,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,133,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,137,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,119,1,0,0,54,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,120,1,0,0,119,1,0,0,62,0,3,0,118,1,0,0,120,1,0,0,65,0,5,0,17,0,0,0,122,1,0,0,55,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,123,1,0,0,122,1,0,0,62,0,3,0,121,1,0,0,123,1,0,0,57,0,7,0,6,0,0,0,124,1,0,0,51,0,0,0,118,1,0,0,121,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,127,1,0,0,54,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,128,1,0,0,127,1,0,0,62,0,3,0,125,1,0,0,128,1,0,0,65,0,5,0,17,0,0,0,130,1,0,0,55,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,131,1,0,0,130,1,0,0,62,0,3,0,129,1,0,0,131,1,0,0,57,0,7,0,6,0,0,0,132,1,0,0,51,0,0,0,125,1,0,0,129,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,135,1,0,0,54,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,136,1,0,0,135,1,0,0,62,0,3,0,133,1,0,0,136,1,0,0,65,0,5,0,17,0,0,0,138,1,0,0,55,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,139,1,0,0,138,1,0,0,62,0,3,0,137,1,0,0,139,1,0,0,57,0,7,0,6,0,0,0,140,1,0,0,51,0,0,0,133,1,0,0,137,1,0,0,56,0,0,0,80,0,6,0,39,0,0,0,141,1,0,0,124,1,0,0,132,1,0,0,140,1,0,0,254,0,2,0,141,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,67,0,0,0,0,0,0,0,59,0,0,0,55,0,3,0,22,0,0,0,60,0,0,0,55,0,3,0,20,0,0,0,61,0,0,0,55,0,3,0,20,0,0,0,62,0,0,0,55,0,3,0,22,0,0,0,63,0,0,0,55,0,3,0,8,0,0,0,64,0,0,0,55,0,3,0,8,0,0,0,65,0,0,0,55,0,3,0,8,0,0,0,66,0,0,0,248,0,2,0,68,0,0,0,59,0,4,0,8,0,0,0,144,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,146,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,149,1,0,0,7,0,0,0,59,0,4,0,20,1,0,0,152,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,161,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,167,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,168,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,169,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,173,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,174,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,175,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,176,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,178,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,180,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,185,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,192,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,194,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,195,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,198,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,206,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,207,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,210,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,213,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,222,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,223,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,226,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,236,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,238,1,0,0,7,0,0,0,61,0,4,0,7,0,0,0,145,1,0,0,64,0,0,0,62,0,3,0,144,1,0,0,145,1,0,0,61,0,4,0,7,0,0,0,147,1,0,0,65,0,0,0,79,0,8,0,39,0,0,0,148,1,0,0,147,1,0,0,147,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,146,1,0,0,148,1,0,0,61,0,4,0,7,0,0,0,150,1,0,0,66,0,0,0,79,0,8,0,39,0,0,0,151,1,0,0,150,1,0,0,150,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,149,1,0,0,151,1,0,0,65,0,5,0,17,0,0,0,153,1,0,0,66,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,154,1,0,0,153,1,0,0,183,0,5,0,117,0,0,0,155,1,0,0,154,1,0,0,12,1,0,0,62,0,3,0,152,1,0,0,155,1,0,0,65,0,5,0,17,0,0,0,156,1,0,0,144,1,0,0,238,0,0,0,61,0,4,0,6,0,0,0,157,1,0,0,156,1,0,0,180,0,5,0,117,0,0,0,158,1,0,0,157,1,0,0,12,1,0,0,247,0,3,0,160,1,0,0,0,0,0,0,250,0,4,0,158,1,0,0,159,1,0,0,166,1,0,0,248,0,2,0,159,1,0,0,61,0,4,0,19,0,0,0,162,1,0,0,61,0,0,0,61,0,4,0,21,0,0,0,163,1,0,0,60,0,0,0,88,0,7,0,7,0,0,0,164,1,0,0,162,1,0,0,163,1,0,0,2,0,0,0,12,1,0,0,79,0,8,0,39,0,0,0,165,1,0,0,164,1,0,0,164,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,3,0,161,1,0,0,165,1,0,0,249,0,2,0,160,1,0,0,248,0,2,0,166,1,0,0,65,0,5,0,17,0,0,0,170,1,0,0,63,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,171,1,0,0,170,1,0,0,136,0,5,0,6,0,0,0,172,1,0,0,64,1,0,0,171,1,0,0,61,0,4,0,21,0,0,0,177,1,0,0,60,0,0,0,62,0,3,0,176,1,0,0,177,1,0,0,61,0,4,0,7,0,0,0,179,1,0,0,144,1,0,0,62,0,3,0,178,1,0,0,179,1,0,0,62,0,3,0,180,1,0,0,172,1,0,0,57,0,11,0,2,0,0,0,181,1,0,0,37,0,0,0,173,1,0,0,174,1,0,0,175,1,0,0,61,0,0,0,176,1,0,0,178,1,0,0,180,1,0,0,61,0,4,0,7,0,0,0,182,1,0,0,173,1,0,0,62,0,3,0,167,1,0,0,182,1,0,0,61,0,4,0,6,0,0,0,183,1,0,0,174,1,0,0,62,0,3,0,168,1,0,0,183,1,0,0,61,0,4,0,7,0,0,0,184,1,0,0,175,1,0,0,62,0,3,0,169,1,0,0,184,1,0,0,61,0,4,0,6,0,0,0,186,1,0,0,168,1,0,0,61,0,4,0,7,0,0,0,187,1,0,0,169,1,0,0,79,0,7,0,21,0,0,0,188,1,0,0,187,1,0,0,187,1,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,189,1,0,0,188,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,190,1,0,0,188,1,0,0,1,0,0,0,80,0,6,0,39,0,0,0,191,1,0,0,186,1,0,0,189,1,0,0,190,1,0,0,61,0,4,0,7,0,0,0,193,1,0,0,167,1,0,0,62,0,3,0,192,1,0,0,193,1,0,0,62,0,3,0,194,1,0,0,191,1,0,0,61,0,4,0,7,0,0,0,196,1,0,0,144,1,0,0,62,0,3,0,195,1,0,0,196,1,0,0,57,0,7,0,6,0,0,0,197,1,0,0,45,0,0,0,192,1,0,0,194,1,0,0,195,1,0,0,62,0,3,0,185,1,0,0,197,1,0,0,61,0,4,0,7,0,0,0,199,1,0,0,167,1,0,0,79,0,8,0,39,0,0,0,200,1,0,0,199,1,0,0,199,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,201,1,0,0,168,1,0,0,81,0,5,0,6,0,0,0,202,1,0,0,200,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,203,1,0,0,200,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,204,1,0,0,200,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,205,1,0,0,202,1,0,0,203,1,0,0,204,1,0,0,201,1,0,0,62,0,3,0,206,1,0,0,205,1,0,0,61,0,4,0,7,0,0,0,208,1,0,0,169,1,0,0,79,0,8,0,39,0,0,0,209,1,0,0,208,1,0,0,208,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,207,1,0,0,209,1,0,0,61,0,4,0,7,0,0,0,211,1,0,0,144,1,0,0,62,0,3,0,210,1,0,0,211,1,0,0,57,0,7,0,6,0,0,0,212,1,0,0,45,0,0,0,206,1,0,0,207,1,0,0,210,1,0,0,62,0,3,0,198,1,0,0,212,1,0,0,61,0,4,0,7,0,0,0,214,1,0,0,167,1,0,0,79,0,7,0,21,0,0,0,215,1,0,0,214,1,0,0,214,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,216,1,0,0,168,1,0,0,65,0,5,0,17,0,0,0,217,1,0,0,169,1,0,0,16,1,0,0,61,0,4,0,6,0,0,0,218,1,0,0,217,1,0,0,81,0,5,0,6,0,0,0,219,1,0,0,215,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,220,1,0,0,215,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,221,1,0,0,219,1,0,0,220,1,0,0,216,1,0,0,218,1,0,0,62,0,3,0,222,1,0,0,221,1,0,0,61,0,4,0,7,0,0,0,224,1,0,0,169,1,0,0,79,0,8,0,39,0,0,0,225,1,0,0,224,1,0,0,224,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,223,1,0,0,225,1,0,0,61,0,4,0,7,0,0,0,227,1,0,0,144,1,0,0,62,0,3,0,226,1,0,0,227,1,0,0,57,0,7,0,6,0,0,0,228,1,0,0,45,0,0,0,222,1,0,0,223,1,0,0,226,1,0,0,62,0,3,0,213,1,0,0,228,1,0,0,61,0,4,0,6,0,0,0,229,1,0,0,185,1,0,0,61,0,4,0,6,0,0,0,230,1,0,0,198,1,0,0,61,0,4,0,6,0,0,0,231,1,0,0,213,1,0,0,80,0,6,0,39,0,0,0,232,1,0,0,229,1,0,0,230,1,0,0,231,1,0,0,62,0,3,0,161,1,0,0,232,1,0,0,249,0,2,0,160,1,0,0,248,0,2,0,160,1,0,0,61,0,4,0,117,0,0,0,233,1,0,0,152,1,0,0,247,0,3,0,235,1,0,0,0,0,0,0,250,0,4,0,233,1,0,0,234,1,0,0,235,1,0,0,248,0,2,0,234,1,0,0,61,0,4,0,39,0,0,0,237,1,0,0,146,1,0,0,62,0,3,0,236,1,0,0,237,1,0,0,61,0,4,0,39,0,0,0,239,1,0,0,161,1,0,0,62,0,3,0,238,1,0,0,239,1,0,0,57,0,7,0,39,0,0,0,240,1,0,0,57,0,0,0,236,1,0,0,238,1,0,0,62,0,0,0,62,0,3,0,161,1,0,0,240,1,0,0,249,0,2,0,235,1,0,0,248,0,2,0,235,1,0,0,61,0,4,0,39,0,0,0,241,1,0,0,146,1,0,0,61,0,4,0,39,0,0,0,242,1,0,0,149,1,0,0,61,0,4,0,39,0,0,0,243,1,0,0,161,1,0,0,12,0,8,0,39,0,0,0,244,1,0,0,1,0,0,0,46,0,0,0,241,1,0,0,242,1,0,0,243,1,0,0,81,0,5,0,6,0,0,0,245,1,0,0,244,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,246,1,0,0,244,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,247,1,0,0,244,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,248,1,0,0,245,1,0,0,246,1,0,0,247,1,0,0,64,1,0,0,254,0,2,0,248,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,77,0,0,0,0,0,0,0,69,0,0,0,55,0,3,0,22,0,0,0,70,0,0,0,55,0,3,0,20,0,0,0,71,0,0,0,55,0,3,0,22,0,0,0,72,0,0,0,55,0,3,0,22,0,0,0,73,0,0,0,55,0,3,0,22,0,0,0,74,0,0,0,55,0,3,0,8,0,0,0,75,0,0,0,55,0,3,0,8,0,0,0,76,0,0,0,248,0,2,0,78,0,0,0,59,0,4,0,22,0,0,0,251,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,254,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,1,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,4,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,7,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,11,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,13,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,19,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,27,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,36,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,46,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,54,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,60,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,83,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,87,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,252,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,253,1,0,0,252,1,0,0,252,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,251,1,0,0,253,1,0,0,61,0,4,0,7,0,0,0,255,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,0,2,0,0,255,1,0,0,255,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,254,1,0,0,0,2,0,0,61,0,4,0,7,0,0,0,2,2,0,0,76,0,0,0,79,0,7,0,21,0,0,0,3,2,0,0,2,2,0,0,2,2,0,0,0,0,0,0,1,0,0,0,62,0,3,0,1,2,0,0,3,2,0,0,61,0,4,0,7,0,0,0,5,2,0,0,76,0,0,0,79,0,7,0,21,0,0,0,6,2,0,0,5,2,0,0,5,2,0,0,2,0,0,0,3,0,0,0,62,0,3,0,4,2,0,0,6,2,0,0,61,0,4,0,21,0,0,0,8,2,0,0,70,0,0,0,61,0,4,0,21,0,0,0,9,2,0,0,251,1,0,0,131,0,5,0,21,0,0,0,10,2,0,0,8,2,0,0,9,2,0,0,62,0,3,0,7,2,0,0,10,2,0,0,61,0,4,0,21,0,0,0,12,2,0,0,254,1,0,0,62,0,3,0,11,2,0,0,12,2,0,0,65,0,5,0,17,0,0,0,14,2,0,0,1,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,15,2,0,0,14,2,0,0,65,0,5,0,17,0,0,0,16,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,17,2,0,0,16,2,0,0,131,0,5,0,6,0,0,0,18,2,0,0,15,2,0,0,17,2,0,0,62,0,3,0,13,2,0,0,18,2,0,0,61,0,4,0,21,0,0,0,20,2,0,0,11,2,0,0,61,0,4,0,21,0,0,0,21,2,0,0,11,2,0,0,148,0,5,0,6,0,0,0,22,2,0,0,20,2,0,0,21,2,0,0,61,0,4,0,6,0,0,0,23,2,0,0,13,2,0,0,61,0,4,0,6,0,0,0,24,2,0,0,13,2,0,0,133,0,5,0,6,0,0,0,25,2,0,0,23,2,0,0,24,2,0,0,131,0,5,0,6,0,0,0,26,2,0,0,22,2,0,0,25,2,0,0,62,0,3,0,19,2,0,0,26,2,0,0,61,0,4,0,21,0,0,0,28,2,0,0,7,2,0,0,61,0,4,0,21,0,0,0,29,2,0,0,11,2,0,0,148,0,5,0,6,0,0,0,30,2,0,0,28,2,0,0,29,2,0,0,65,0,5,0,17,0,0,0,31,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,32,2,0,0,31,2,0,0,61,0,4,0,6,0,0,0,33,2,0,0,13,2,0,0,133,0,5,0,6,0,0,0,34,2,0,0,32,2,0,0,33,2,0,0,129,0,5,0,6,0,0,0,35,2,0,0,30,2,0,0,34,2,0,0,62,0,3,0,27,2,0,0,35,2,0,0,61,0,4,0,21,0,0,0,37,2,0,0,7,2,0,0,61,0,4,0,21,0,0,0,38,2,0,0,7,2,0,0,148,0,5,0,6,0,0,0,39,2,0,0,37,2,0,0,38,2,0,0,65,0,5,0,17,0,0,0,40,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,41,2,0,0,40,2,0,0,65,0,5,0,17,0,0,0,42,2,0,0,1,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,43,2,0,0,42,2,0,0,133,0,5,0,6,0,0,0,44,2,0,0,41,2,0,0,43,2,0,0,131,0,5,0,6,0,0,0,45,2,0,0,39,2,0,0,44,2,0,0,62,0,3,0,36,2,0,0,45,2,0,0,61,0,4,0,6,0,0,0,47,2,0,0,27,2,0,0,61,0,4,0,6,0,0,0,48,2,0,0,27,2,0,0,133,0,5,0,6,0,0,0,49,2,0,0,47,2,0,0,48,2,0,0,61,0,4,0,6,0,0,0,50,2,0,0,19,2,0,0,61,0,4,0,6,0,0,0,51,2,0,0,36,2,0,0,133,0,5,0,6,0,0,0,52,2,0,0,50,2,0,0,51,2,0,0,131,0,5,0,6,0,0,0,53,2,0,0,49,2,0,0,52,2,0,0,62,0,3,0,46,2,0,0,53,2,0,0,62,0,3,0,54,2,0,0,55,2,0,0,61,0,4,0,6,0,0,0,56,2,0,0,46,2,0,0,183,0,5,0,117,0,0,0,57,2,0,0,56,2,0,0,12,1,0,0,247,0,3,0,59,2,0,0,0,0,0,0,250,0,4,0,57,2,0,0,58,2,0,0,59,2,0,0,248,0,2,0,58,2,0,0,61,0,4,0,6,0,0,0,61,2,0,0,46,2,0,0,12,0,6,0,6,0,0,0,62,2,0,0,1,0,0,0,31,0,0,0,61,2,0,0,142,0,5,0,21,0,0,0,64,2,0,0,63,2,0,0,62,2,0,0,61,0,4,0,6,0,0,0,65,2,0,0,27,2,0,0,80,0,5,0,21,0,0,0,66,2,0,0,65,2,0,0,65,2,0,0,129,0,5,0,21,0,0,0,67,2,0,0,64,2,0,0,66,2,0,0,81,0,5,0,6,0,0,0,68,2,0,0,67,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,69,2,0,0,67,2,0,0,1,0,0,0,80,0,5,0,21,0,0,0,70,2,0,0,68,2,0,0,69,2,0,0,61,0,4,0,6,0,0,0,71,2,0,0,19,2,0,0,80,0,5,0,21,0,0,0,72,2,0,0,71,2,0,0,71,2,0,0,136,0,5,0,21,0,0,0,73,2,0,0,70,2,0,0,72,2,0,0,62,0,3,0,60,2,0,0,73,2,0,0,65,0,5,0,17,0,0,0,74,2,0,0,60,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,75,2,0,0,74,2,0,0,65,0,5,0,17,0,0,0,76,2,0,0,60,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,77,2,0,0,76,2,0,0,186,0,5,0,117,0,0,0,78,2,0,0,75,2,0,0,77,2,0,0,247,0,3,0,80,2,0,0,0,0,0,0,250,0,4,0,78,2,0,0,79,2,0,0,80,2,0,0,248,0,2,0,79,2,0,0,61,0,4,0,21,0,0,0,81,2,0,0,60,2,0,0,79,0,7,0,21,0,0,0,82,2,0,0,81,2,0,0,81,2,0,0,1,0,0,0,0,0,0,0,62,0,3,0,60,2,0,0,82,2,0,0,249,0,2,0,80,2,0,0,248,0,2,0,80,2,0,0,65,0,5,0,17,0,0,0,84,2,0,0,60,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,85,2,0,0,84,2,0,0,190,0,5,0,117,0,0,0,86,2,0,0,85,2,0,0,12,1,0,0,247,0,3,0,89,2,0,0,0,0,0,0,250,0,4,0,86,2,0,0,88,2,0,0,92,2,0,0,248,0,2,0,88,2,0,0,65,0,5,0,17,0,0,0,90,2,0,0,60,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,91,2,0,0,90,2,0,0,62,0,3,0,87,2,0,0,91,2,0,0,249,0,2,0,89,2,0,0,248,0,2,0,92,2,0,0,65,0,5,0,17,0,0,0,93,2,0,0,60,2,0,0,126,1,0,0,61,0,4,0,6,0,0,0,94,2,0,0,93,2,0,0,62,0,3,0,87,2,0,0,94,2,0,0,249,0,2,0,89,2,0,0,248,0,2,0,89,2,0,0,61,0,4,0,6,0,0,0,95,2,0,0,87,2,0,0,62,0,3,0,83,2,0,0,95,2,0,0,61,0,4,0,19,0,0,0,96,2,0,0,71,0,0,0,61,0,4,0,21,0,0,0,97,2,0,0,4,2,0,0,61,0,4,0,6,0,0,0,98,2,0,0,83,2,0,0,80,0,5,0,21,0,0,0,99,2,0,0,98,2,0,0,12,1,0,0,129,0,5,0,21,0,0,0,100,2,0,0,97,2,0,0,99,2,0,0,88,0,7,0,7,0,0,0,101,2,0,0,96,2,0,0,100,2,0,0,2,0,0,0,12,1,0,0,62,0,3,0,54,2,0,0,101,2,0,0,249,0,2,0,59,2,0,0,248,0,2,0,59,2,0,0,61,0,4,0,7,0,0,0,102,2,0,0,54,2,0,0,254,0,2,0,102,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,85,0,0,0,0,0,0,0,79,0,0,0,55,0,3,0,22,0,0,0,80,0,0,0,55,0,3,0,20,0,0,0,81,0,0,0,55,0,3,0,22,0,0,0,82,0,0,0,55,0,3,0,8,0,0,0,83,0,0,0,55,0,3,0,8,0,0,0,84,0,0,0,248,0,2,0,86,0,0,0,59,0,4,0,22,0,0,0,105,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,110,2,0,0,7,0,0,0,59,0,4,0,40,0,0,0,114,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,117,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,120,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,136,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,146,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,162,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,106,2,0,0,83,0,0,0,79,0,7,0,21,0,0,0,107,2,0,0,106,2,0,0,106,2,0,0,0,0,0,0,1,0,0,0,61,0,4,0,21,0,0,0,108,2,0,0,82,0,0,0,136,0,5,0,21,0,0,0,109,2,0,0,107,2,0,0,108,2,0,0,62,0,3,0,105,2,0,0,109,2,0,0,65,0,5,0,17,0,0,0,111,2,0,0,83,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,112,2,0,0,111,2,0,0,110,0,4,0,9,0,0,0,113,2,0,0,112,2,0,0,62,0,3,0,110,2,0,0,113,2,0,0,61,0,4,0,7,0,0,0,115,2,0,0,84,0,0,0,79,0,8,0,39,0,0,0,116,2,0,0,115,2,0,0,115,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,114,2,0,0,116,2,0,0,65,0,5,0,17,0,0,0,118,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,119,2,0,0,118,2,0,0,62,0,3,0,117,2,0,0,119,2,0,0,61,0,4,0,19,0,0,0,121,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,122,2,0,0,80,0,0,0,88,0,7,0,7,0,0,0,123,2,0,0,121,2,0,0,122,2,0,0,2,0,0,0,12,1,0,0,65,0,5,0,17,0,0,0,124,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,125,2,0,0,124,2,0,0,142,0,5,0,7,0,0,0,126,2,0,0,123,2,0,0,125,2,0,0,62,0,3,0,120,2,0,0,126,2,0,0,61,0,4,0,39,0,0,0,127,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,128,2,0,0,127,2,0,0,127,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,129,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,130,2,0,0,129,2,0,0,129,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,131,2,0,0,130,2,0,0,128,2,0,0,65,0,5,0,17,0,0,0,132,2,0,0,114,2,0,0,16,1,0,0,81,0,5,0,6,0,0,0,133,2,0,0,131,2,0,0,0,0,0,0,62,0,3,0,132,2,0,0,133,2,0,0,65,0,5,0,17,0,0,0,134,2,0,0,114,2,0,0,126,1,0,0,81,0,5,0,6,0,0,0,135,2,0,0,131,2,0,0,1,0,0,0,62,0,3,0,134,2,0,0,135,2,0,0,62,0,3,0,136,2,0,0,137,2,0,0,249,0,2,0,138,2,0,0,248,0,2,0,138,2,0,0,246,0,4,0,140,2,0,0,141,2,0,0,0,0,0,0,249,0,2,0,142,2,0,0,248,0,2,0,142,2,0,0,61,0,4,0,9,0,0,0,143,2,0,0,136,2,0,0,61,0,4,0,9,0,0,0,144,2,0,0,110,2,0,0,179,0,5,0,117,0,0,0,145,2,0,0,143,2,0,0,144,2,0,0,250,0,4,0,145,2,0,0,139,2,0,0,140,2,0,0,248,0,2,0,139,2,0,0,65,0,5,0,17,0,0,0,147,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,148,2,0,0,147,2,0,0,62,0,3,0,146,2,0,0,148,2,0,0,61,0,4,0,39,0,0,0,149,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,150,2,0,0,149,2,0,0,149,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,151,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,152,2,0,0,151,2,0,0,151,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,153,2,0,0,152,2,0,0,150,2,0,0,65,0,5,0,17,0,0,0,154,2,0,0,114,2,0,0,16,1,0,0,81,0,5,0,6,0,0,0,155,2,0,0,153,2,0,0,0,0,0,0,62,0,3,0,154,2,0,0,155,2,0,0,65,0,5,0,17,0,0,0,156,2,0,0,114,2,0,0,126,1,0,0,81,0,5,0,6,0,0,0,157,2,0,0,153,2,0,0,1,0,0,0,62,0,3,0,156,2,0,0,157,2,0,0,65,0,5,0,17,0,0,0,158,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,159,2,0,0,158,2,0,0,61,0,4,0,6,0,0,0,160,2,0,0,146,2,0,0,129,0,5,0,6,0,0,0,161,2,0,0,160,2,0,0,159,2,0,0,62,0,3,0,146,2,0,0,161,2,0,0,61,0,4,0,21,0,0,0,163,2,0,0,105,2,0,0,61,0,4,0,9,0,0,0,164,2,0,0,136,2,0,0,111,0,4,0,6,0,0,0,165,2,0,0,164,2,0,0,65,0,5,0,17,0,0,0,166,2,0,0,114,2,0,0,16,1,0,0,61,0,4,0,6,0,0,0,167,2,0,0,166,2,0,0,61,0,4,0,6,0,0,0,168,2,0,0,146,2,0,0,136,0,5,0,6,0,0,0,169,2,0,0,167,2,0,0,168,2,0,0,129,0,5,0,6,0,0,0,170,2,0,0,165,2,0,0,169,2,0,0,142,0,5,0,21,0,0,0,171,2,0,0,163,2,0,0,170,2,0,0,62,0,3,0,162,2,0,0,171,2,0,0,61,0,4,0,19,0,0,0,172,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,173,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,174,2,0,0,162,2,0,0,131,0,5,0,21,0,0,0,175,2,0,0,173,2,0,0,174,2,0,0,88,0,7,0,7,0,0,0,176,2,0,0,172,2,0,0,175,2,0,0,2,0,0,0,12,1,0,0,61,0,4,0,19,0,0,0,177,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,178,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,179,2,0,0,162,2,0,0,129,0,5,0,21,0,0,0,180,2,0,0,178,2,0,0,179,2,0,0,88,0,7,0,7,0,0,0,181,2,0,0,177,2,0,0,180,2,0,0,2,0,0,0,12,1,0,0,129,0,5,0,7,0,0,0,182,2,0,0,176,2,0,0,181,2,0,0,61,0,4,0,6,0,0,0,183,2,0,0,146,2,0,0,142,0,5,0,7,0,0,0,184,2,0,0,182,2,0,0,183,2,0,0,61,0,4,0,7,0,0,0,185,2,0,0,120,2,0,0,129,0,5,0,7,0,0,0,186,2,0,0,185,2,0,0,184,2,0,0,62,0,3,0,120,2,0,0,186,2,0,0,61,0,4,0,6,0,0,0,187,2,0,0,146,2,0,0,133,0,5,0,6,0,0,0,188,2,0,0,71,1,0,0,187,2,0,0,61,0,4,0,6,0,0,0,189,2,0,0,117,2,0,0,129,0,5,0,6,0,0,0,190,2,0,0,189,2,0,0,188,2,0,0,62,0,3,0,117,2,0,0,190,2,0,0,61,0,4,0,39,0,0,0,191,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,192,2,0,0,191,2,0,0,191,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,193,2,0,0,114,2,0,0,79,0,7,0,21,0,0,0,194,2,0,0,193,2,0,0,193,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,195,2,0,0,194,2,0,0,192,2,0,0,65,0,5,0,17,0,0,0,196,2,0,0,114,2,0,0,16,1,0,0,81,0,5,0,6,0,0,0,197,2,0,0,195,2,0,0,0,0,0,0,62,0,3,0,196,2,0,0,197,2,0,0,65,0,5,0,17,0,0,0,198,2,0,0,114,2,0,0,126,1,0,0,81,0,5,0,6,0,0,0,199,2,0,0,195,2,0,0,1,0,0,0,62,0,3,0,198,2,0,0,199,2,0,0,249,0,2,0,141,2,0,0,248,0,2,0,141,2,0,0,61,0,4,0,9,0,0,0,201,2,0,0,136,2,0,0,128,0,5,0,9,0,0,0,202,2,0,0,201,2,0,0,200,2,0,0,62,0,3,0,136,2,0,0,202,2,0,0,249,0,2,0,138,2,0,0,248,0,2,0,140,2,0,0,61,0,4,0,7,0,0,0,203,2,0,0,120,2,0,0,61,0,4,0,6,0,0,0,204,2,0,0,117,2,0,0,80,0,7,0,7,0,0,0,205,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,204,2,0,0,136,0,5,0,7,0,0,0,206,2,0,0,203,2,0,0,205,2,0,0,254,0,2,0,206,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,95,0,0,0,0,0,0,0,87,0,0,0,55,0,3,0,22,0,0,0,88,0,0,0,55,0,3,0,20,0,0,0,89,0,0,0,55,0,3,0,8,0,0,0,90,0,0,0,55,0,3,0,8,0,0,0,91,0,0,0,55,0,3,0,8,0,0,0,92,0,0,0,55,0,3,0,8,0,0,0,93,0,0,0,55,0,3,0,8,0,0,0,94,0,0,0,248,0,2,0,96,0,0,0,59,0,4,0,8,0,0,0,209,2,0,0,7,0,0,0,59,0,4,0,214,2,0,0,215,2,0,0,7,0,0,0,61,0,4,0,19,0,0,0,210,2,0,0,89,0,0,0,61,0,4,0,21,0,0,0,211,2,0,0,88,0,0,0,88,0,7,0,7,0,0,0,212,2,0,0,210,2,0,0,211,2,0,0,2,0,0,0,12,1,0,0,62,0,3,0,209,2,0,0,212,2,0,0,61,0,4,0,7,0,0,0,216,2,0,0,90,0,0,0,61,0,4,0,7,0,0,0,217,2,0,0,91,0,0,0,61,0,4,0,7,0,0,0,218,2,0,0,92,0,0,0,61,0,4,0,7,0,0,0,219,2,0,0,93,0,0,0,81,0,5,0,6,0,0,0,220,2,0,0,216,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,221,2,0,0,216,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,222,2,0,0,216,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,223,2,0,0,216,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,224,2,0,0,217,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,225,2,0,0,217,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,226,2,0,0,217,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,227,2,0,0,217,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,228,2,0,0,218,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,229,2,0,0,218,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,230,2,0,0,218,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,231,2,0,0,218,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,232,2,0,0,219,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,233,2,0,0,219,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,234,2,0,0,219,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,235,2,0,0,219,2,0,0,3,0,0,0,80,0,7,0,7,0,0,0,236,2,0,0,220,2,0,0,221,2,0,0,222,2,0,0,223,2,0,0,80,0,7,0,7,0,0,0,237,2,0,0,224,2,0,0,225,2,0,0,226,2,0,0,227,2,0,0,80,0,7,0,7,0,0,0,238,2,0,0,228,2,0,0,229,2,0,0,230,2,0,0,231,2,0,0,80,0,7,0,7,0,0,0,239,2,0,0,232,2,0,0,233,2,0,0,234,2,0,0,235,2,0,0,80,0,7,0,213,2,0,0,240,2,0,0,236,2,0,0,237,2,0,0,238,2,0,0,239,2,0,0,62,0,3,0,215,2,0,0,240,2,0,0,61,0,4,0,213,2,0,0,241,2,0,0,215,2,0,0,61,0,4,0,7,0,0,0,242,2,0,0,209,2,0,0,145,0,5,0,7,0,0,0,243,2,0,0,241,2,0,0,242,2,0,0,61,0,4,0,7,0,0,0,244,2,0,0,94,0,0,0,129,0,5,0,7,0,0,0,245,2,0,0,243,2,0,0,244,2,0,0,254,0,2,0,245,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,100,0,0,0,0,0,0,0,97,0,0,0,55,0,3,0,22,0,0,0,98,0,0,0,55,0,3,0,20,0,0,0,99,0,0,0,248,0,2,0,101,0,0,0,61,0,4,0,19,0,0,0,248,2,0,0,99,0,0,0,61,0,4,0,21,0,0,0,249,2,0,0,98,0,0,0,88,0,7,0,7,0,0,0,250,2,0,0,248,2,0,0,249,2,0,0,2,0,0,0,12,1,0,0,254,0,2,0,250,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,115,0,0,0,0,0,0,0,102,0,0,0,55,0,3,0,22,0,0,0,103,0,0,0,55,0,3,0,20,0,0,0,104,0,0,0,55,0,3,0,20,0,0,0,105,0,0,0,55,0,3,0,22,0,0,0,106,0,0,0,55,0,3,0,22,0,0,0,107,0,0,0,55,0,3,0,22,0,0,0,108,0,0,0,55,0,3,0,8,0,0,0,109,0,0,0,55,0,3,0,8,0,0,0,110,0,0,0,55,0,3,0,8,0,0,0,111,0,0,0,55,0,3,0,8,0,0,0,112,0,0,0,55,0,3,0,8,0,0,0,113,0,0,0,55,0,3,0,10,0,0,0,114,0,0,0,248,0,2,0,116,0,0,0,59,0,4,0,22,0,0,0,3,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,5,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,7,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,9,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,11,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,13,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,17,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,19,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,21,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,23,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,27,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,29,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,31,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,33,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,35,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,39,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,41,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,43,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,45,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,47,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,49,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,54,3,0,0,7,0,0,0,61,0,4,0,9,0,0,0,253,2,0,0,114,0,0,0,247,0,3,0,2,3,0,0,0,0,0,0,251,0,11,0,253,2,0,0,2,3,0,0,1,0,0,0,254,2,0,0,3,0,0,0,255,2,0,0,2,0,0,0,0,3,0,0,4,0,0,0,1,3,0,0,248,0,2,0,254,2,0,0,61,0,4,0,21,0,0,0,4,3,0,0,103,0,0,0,62,0,3,0,3,3,0,0,4,3,0,0,61,0,4,0,21,0,0,0,6,3,0,0,106,0,0,0,62,0,3,0,5,3,0,0,6,3,0,0,61,0,4,0,21,0,0,0,8,3,0,0,107,0,0,0,62,0,3,0,7,3,0,0,8,3,0,0,61,0,4,0,21,0,0,0,10,3,0,0,108,0,0,0,62,0,3,0,9,3,0,0,10,3,0,0,61,0,4,0,7,0,0,0,12,3,0,0,109,0,0,0,62,0,3,0,11,3,0,0,12,3,0,0,61,0,4,0,7,0,0,0,14,3,0,0,110,0,0,0,62,0,3,0,13,3,0,0,14,3,0,0,57,0,11,0,7,0,0,0,15,3,0,0,77,0,0,0,3,3,0,0,104,0,0,0,5,3,0,0,7,3,0,0,9,3,0,0,11,3,0,0,13,3,0,0,254,0,2,0,15,3,0,0,248,0,2,0,255,2,0,0,61,0,4,0,21,0,0,0,18,3,0,0,103,0,0,0,62,0,3,0,17,3,0,0,18,3,0,0,61,0,4,0,21,0,0,0,20,3,0,0,106,0,0,0,62,0,3,0,19,3,0,0,20,3,0,0,61,0,4,0,7,0,0,0,22,3,0,0,109,0,0,0,62,0,3,0,21,3,0,0,22,3,0,0,61,0,4,0,7,0,0,0,24,3,0,0,110,0,0,0,62,0,3,0,23,3,0,0,24,3,0,0,57,0,9,0,7,0,0,0,25,3,0,0,85,0,0,0,17,3,0,0,104,0,0,0,19,3,0,0,21,3,0,0,23,3,0,0,254,0,2,0,25,3,0,0,248,0,2,0,0,3,0,0,61,0,4,0,21,0,0,0,28,3,0,0,103,0,0,0,62,0,3,0,27,3,0,0,28,3,0,0,61,0,4,0,21,0,0,0,30,3,0,0,106,0,0,0,62,0,3,0,29,3,0,0,30,3,0,0,61,0,4,0,7,0,0,0,32,3,0,0,109,0,0,0,62,0,3,0,31,3,0,0,32,3,0,0,61,0,4,0,7,0,0,0,34,3,0,0,110,0,0,0,62,0,3,0,33,3,0,0,34,3,0,0,61,0,4,0,7,0,0,0,36,3,0,0,111,0,0,0,62,0,3,0,35,3,0,0,36,3,0,0,57,0,11,0,7,0,0,0,37,3,0,0,67,0,0,0,27,3,0,0,104,0,0,0,105,0,0,0,29,3,0,0,31,3,0,0,33,3,0,0,35,3,0,0,254,0,2,0,37,3,0,0,248,0,2,0,1,3,0,0,61,0,4,0,21,0,0,0,40,3,0,0,103,0,0,0,62,0,3,0,39,3,0,0,40,3,0,0,61,0,4,0,7,0,0,0,42,3,0,0,109,0,0,0,62,0,3,0,41,3,0,0,42,3,0,0,61,0,4,0,7,0,0,0,44,3,0,0,110,0,0,0,62,0,3,0,43,3,0,0,44,3,0,0,61,0,4,0,7,0,0,0,46,3,0,0,111,0,0,0,62,0,3,0,45,3,0,0,46,3,0,0,61,0,4,0,7,0,0,0,48,3,0,0,112,0,0,0,62,0,3,0,47,3,0,0,48,3,0,0,61,0,4,0,7,0,0,0,50,3,0,0,113,0,0,0,62,0,3,0,49,3,0,0,50,3,0,0,57,0,11,0,7,0,0,0,51,3,0,0,95,0,0,0,39,3,0,0,104,0,0,0,41,3,0,0,43,3,0,0,45,3,0,0,47,3,0,0,49,3,0,0,254,0,2,0,51,3,0,0,248,0,2,0,2,3,0,0,61,0,4,0,21,0,0,0,55,3,0,0,103,0,0,0,62,0,3,0,54,3,0,0,55,3,0,0,57,0,6,0,7,0,0,0,56,3,0,0,100,0,0,0,54,3,0,0,104,0,0,0,254,0,2,0,56,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,124,0,0,0,0,0,0,0,120,0,0,0,55,0,3,0,119,0,0,0,121,0,0,0,55,0,3,0,40,0,0,0,122,0,0,0,55,0,3,0,40,0,0,0,123,0,0,0,248,0,2,0,125,0,0,0,59,0,4,0,17,0,0,0,61,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,72,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,83,3,0,0,7,0,0,0,65,0,5,0,20,1,0,0,59,3,0,0,121,0,0,0,16,1,0,0,61,0,4,0,117,0,0,0,60,3,0,0,59,3,0,0,247,0,3,0,63,3,0,0,0,0,0,0,250,0,4,0,60,3,0,0,62,3,0,0,66,3,0,0,248,0,2,0,62,3,0,0,65,0,5,0,17,0,0,0,64,3,0,0,122,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,65,3,0,0,64,3,0,0,62,0,3,0,61,3,0,0,65,3,0,0,249,0,2,0,63,3,0,0,248,0,2,0,66,3,0,0,65,0,5,0,17,0,0,0,67,3,0,0,123,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,68,3,0,0,67,3,0,0,62,0,3,0,61,3,0,0,68,3,0,0,249,0,2,0,63,3,0,0,248,0,2,0,63,3,0,0,61,0,4,0,6,0,0,0,69,3,0,0,61,3,0,0,65,0,5,0,20,1,0,0,70,3,0,0,121,0,0,0,126,1,0,0,61,0,4,0,117,0,0,0,71,3,0,0,70,3,0,0,247,0,3,0,74,3,0,0,0,0,0,0,250,0,4,0,71,3,0,0,73,3,0,0,77,3,0,0,248,0,2,0,73,3,0,0,65,0,5,0,17,0,0,0,75,3,0,0,122,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,76,3,0,0,75,3,0,0,62,0,3,0,72,3,0,0,76,3,0,0,249,0,2,0,74,3,0,0,248,0,2,0,77,3,0,0,65,0,5,0,17,0,0,0,78,3,0,0,123,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,79,3,0,0,78,3,0,0,62,0,3,0,72,3,0,0,79,3,0,0,249,0,2,0,74,3,0,0,248,0,2,0,74,3,0,0,61,0,4,0,6,0,0,0,80,3,0,0,72,3,0,0,65,0,5,0,20,1,0,0,81,3,0,0,121,0,0,0,134,1,0,0,61,0,4,0,117,0,0,0,82,3,0,0,81,3,0,0,247,0,3,0,85,3,0,0,0,0,0,0,250,0,4,0,82,3,0,0,84,3,0,0,88,3,0,0,248,0,2,0,84,3,0,0,65,0,5,0,17,0,0,0,86,3,0,0,122,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,87,3,0,0,86,3,0,0,62,0,3,0,83,3,0,0,87,3,0,0,249,0,2,0,85,3,0,0,248,0,2,0,88,3,0,0,65,0,5,0,17,0,0,0,89,3,0,0,123,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,90,3,0,0,89,3,0,0,62,0,3,0,83,3,0,0,90,3,0,0,249,0,2,0,85,3,0,0,248,0,2,0,85,3,0,0,61,0,4,0,6,0,0,0,91,3,0,0,83,3,0,0,80,0,6,0,39,0,0,0,92,3,0,0,69,3,0,0,80,3,0,0,91,3,0,0,254,0,2,0,92,3,0,0,56,0,1,0,54,0,5,0,6,0,0,0,129,0,0,0,0,0,0,0,126,0,0,0,55,0,3,0,17,0,0,0,127,0,0,0,55,0,3,0,17,0,0,0,128,0,0,0,248,0,2,0,130,0,0,0,59,0,4,0,17,0,0,0,97,3,0,0,7,0,0,0,61,0,4,0,6,0,0,0,95,3,0,0,128,0,0,0,183,0,5,0,117,0,0,0,96,3,0,0,95,3,0,0,12,1,0,0,247,0,3,0,99,3,0,0,0,0,0,0,250,0,4,0,96,3,0,0,98,3,0,0,103,3,0,0,248,0,2,0,98,3,0,0,61,0,4,0,6,0,0,0,100,3,0,0,127,0,0,0,61,0,4,0,6,0,0,0,101,3,0,0,128,0,0,0,136,0,5,0,6,0,0,0,102,3,0,0,100,3,0,0,101,3,0,0,62,0,3,0,97,3,0,0,102,3,0,0,249,0,2,0,99,3,0,0,248,0,2,0,103,3,0,0,62,0,3,0,97,3,0,0,12,1,0,0,249,0,2,0,99,3,0,0,248,0,2,0,99,3,0,0,61,0,4,0,6,0,0,0,104,3,0,0,97,3,0,0,254,0,2,0,104,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,134,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,132,0,0,0,55,0,3,0,40,0,0,0,133,0,0,0,248,0,2,0,135,0,0,0,59,0,4,0,119,0,0,0,107,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,111,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,119,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,121,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,122,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,124,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,126,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,127,3,0,0,7,0,0,0,61,0,4,0,39,0,0,0,108,3,0,0,132,0,0,0,180,0,5,0,118,0,0,0,110,3,0,0,108,3,0,0,109,3,0,0,62,0,3,0,107,3,0,0,110,3,0,0,61,0,4,0,39,0,0,0,112,3,0,0,133,0,0,0,180,0,5,0,118,0,0,0,114,3,0,0,112,3,0,0,113,3,0,0,62,0,3,0,111,3,0,0,114,3,0,0,61,0,4,0,39,0,0,0,115,3,0,0,132,0,0,0,61,0,4,0,39,0,0,0,116,3,0,0,133,0,0,0,131,0,5,0,39,0,0,0,117,3,0,0,113,3,0,0,116,3,0,0,136,0,5,0,39,0,0,0,118,3,0,0,115,3,0,0,117,3,0,0,61,0,4,0,118,0,0,0,120,3,0,0,111,3,0,0,62,0,3,0,119,3,0,0,120,3,0,0,62,0,3,0,121,3,0,0,113,3,0,0,62,0,3,0,122,3,0,0,118,3,0,0,57,0,7,0,39,0,0,0,123,3,0,0,124,0,0,0,119,3,0,0,121,3,0,0,122,3,0,0,61,0,4,0,118,0,0,0,125,3,0,0,107,3,0,0,62,0,3,0,124,3,0,0,125,3,0,0,62,0,3,0,126,3,0,0,109,3,0,0,62,0,3,0,127,3,0,0,123,3,0,0,57,0,7,0,39,0,0,0,128,3,0,0,124,0,0,0,124,3,0,0,126,3,0,0,127,3,0,0,254,0,2,0,128,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,138,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,137,0,0,0,248,0,2,0,139,0,0,0,59,0,4,0,17,0,0,0,131,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,141,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,132,3,0,0,137,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,133,3,0,0,132,3,0,0,65,0,5,0,17,0,0,0,134,3,0,0,137,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,135,3,0,0,134,3,0,0,65,0,5,0,17,0,0,0,136,3,0,0,137,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,137,3,0,0,136,3,0,0,131,0,5,0,6,0,0,0,138,3,0,0,64,1,0,0,137,3,0,0,12,0,7,0,6,0,0,0,139,3,0,0,1,0,0,0,37,0,0,0,135,3,0,0,138,3,0,0,133,0,5,0,6,0,0,0,140,3,0,0,133,3,0,0,139,3,0,0,62,0,3,0,131,3,0,0,140,3,0,0,65,0,5,0,17,0,0,0,144,3,0,0,137,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,145,3,0,0,144,3,0,0,133,0,5,0,6,0,0,0,147,3,0,0,145,3,0,0,146,3,0,0,80,0,6,0,39,0,0,0,148,3,0,0,147,3,0,0,147,3,0,0,147,3,0,0,129,0,5,0,39,0,0,0,149,3,0,0,143,3,0,0,148,3,0,0,80,0,6,0,39,0,0,0,151,3,0,0,150,3,0,0,150,3,0,0,150,3,0,0,141,0,5,0,39,0,0,0,152,3,0,0,149,3,0,0,151,3,0,0,62,0,3,0,141,3,0,0,152,3,0,0,61,0,4,0,39,0,0,0,153,3,0,0,137,0,0,0,79,0,8,0,39,0,0,0,154,3,0,0,153,3,0,0,153,3,0,0,2,0,0,0,2,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,155,3,0,0,141,3,0,0,131,0,5,0,39,0,0,0,157,3,0,0,155,3,0,0,156,3,0,0,61,0,4,0,39,0,0,0,160,3,0,0,141,3,0,0,131,0,5,0,39,0,0,0,161,3,0,0,159,3,0,0,160,3,0,0,12,0,7,0,39,0,0,0,162,3,0,0,1,0,0,0,37,0,0,0,157,3,0,0,161,3,0,0,80,0,6,0,39,0,0,0,163,3,0,0,52,1,0,0,52,1,0,0,52,1,0,0,80,0,6,0,39,0,0,0,164,3,0,0,64,1,0,0,64,1,0,0,64,1,0,0,12,0,8,0,39,0,0,0,165,3,0,0,1,0,0,0,43,0,0,0,162,3,0,0,163,3,0,0,164,3,0,0,61,0,4,0,6,0,0,0,166,3,0,0,131,3,0,0,142,0,5,0,39,0,0,0,167,3,0,0,165,3,0,0,166,3,0,0,131,0,5,0,39,0,0,0,168,3,0,0,154,3,0,0,167,3,0,0,254,0,2,0,168,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,141,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,140,0,0,0,248,0,2,0,142,0,0,0,59,0,4,0,17,0,0,0,171,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,180,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,189,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,193,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,198,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,203,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,216,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,232,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,244,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,245,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,249,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,250,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,252,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,172,3,0,0,140,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,173,3,0,0,172,3,0,0,65,0,5,0,17,0,0,0,174,3,0,0,140,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,175,3,0,0,174,3,0,0,12,0,7,0,6,0,0,0,176,3,0,0,1,0,0,0,40,0,0,0,173,3,0,0,175,3,0,0,65,0,5,0,17,0,0,0,177,3,0,0,140,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,178,3,0,0,177,3,0,0,12,0,7,0,6,0,0,0,179,3,0,0,1,0,0,0,40,0,0,0,176,3,0,0,178,3,0,0,62,0,3,0,171,3,0,0,179,3,0,0,65,0,5,0,17,0,0,0,181,3,0,0,140,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,182,3,0,0,181,3,0,0,65,0,5,0,17,0,0,0,183,3,0,0,140,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,184,3,0,0,183,3,0,0,12,0,7,0,6,0,0,0,185,3,0,0,1,0,0,0,37,0,0,0,182,3,0,0,184,3,0,0,65,0,5,0,17,0,0,0,186,3,0,0,140,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,187,3,0,0,186,3,0,0,12,0,7,0,6,0,0,0,188,3,0,0,1,0,0,0,37,0,0,0,185,3,0,0,187,3,0,0,62,0,3,0,180,3,0,0,188,3,0,0,61,0,4,0,6,0,0,0,190,3,0,0,171,3,0,0,61,0,4,0,6,0,0,0,191,3,0,0,180,3,0,0,131,0,5,0,6,0,0,0,192,3,0,0,190,3,0,0,191,3,0,0,62,0,3,0,189,3,0,0,192,3,0,0,61,0,4,0,6,0,0,0,194,3,0,0,180,3,0,0,61,0,4,0,6,0,0,0,195,3,0,0,171,3,0,0,12,0,8,0,6,0,0,0,197,3,0,0,1,0,0,0,46,0,0,0,194,3,0,0,195,3,0,0,196,3,0,0,62,0,3,0,193,3,0,0,197,3,0,0,65,0,5,0,17,0,0,0,199,3,0,0,140,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,200,3,0,0,199,3,0,0,61,0,4,0,6,0,0,0,201,3,0,0,171,3,0,0,180,0,5,0,117,0,0,0,202,3,0,0,200,3,0,0,201,3,0,0,247,0,3,0,205,3,0,0,0,0,0,0,250,0,4,0,202,3,0,0,204,3,0,0,211,3,0,0,248,0,2,0,204,3,0,0,61,0,4,0,39,0,0,0,206,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,207,3,0,0,206,3,0,0,206,3,0,0,1,0,0,0,2,0,0,0,81,0,5,0,6,0,0,0,208,3,0,0,207,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,209,3,0,0,207,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,210,3,0,0,12,1,0,0,208,3,0,0,209,3,0,0,62,0,3,0,203,3,0,0,210,3,0,0,249,0,2,0,205,3,0,0,248,0,2,0,211,3,0,0,65,0,5,0,17,0,0,0,212,3,0,0,140,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,213,3,0,0,212,3,0,0,61,0,4,0,6,0,0,0,214,3,0,0,171,3,0,0,180,0,5,0,117,0,0,0,215,3,0,0,213,3,0,0,214,3,0,0,247,0,3,0,218,3,0,0,0,0,0,0,250,0,4,0,215,3,0,0,217,3,0,0,224,3,0,0,248,0,2,0,217,3,0,0,61,0,4,0,39,0,0,0,219,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,220,3,0,0,219,3,0,0,219,3,0,0,2,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,221,3,0,0,220,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,222,3,0,0,220,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,223,3,0,0,71,1,0,0,221,3,0,0,222,3,0,0,62,0,3,0,216,3,0,0,223,3,0,0,249,0,2,0,218,3,0,0,248,0,2,0,224,3,0,0,61,0,4,0,39,0,0,0,225,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,226,3,0,0,225,3,0,0,225,3,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,227,3,0,0,226,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,228,3,0,0,226,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,229,3,0,0,89,1,0,0,227,3,0,0,228,3,0,0,62,0,3,0,216,3,0,0,229,3,0,0,249,0,2,0,218,3,0,0,248,0,2,0,218,3,0,0,61,0,4,0,39,0,0,0,230,3,0,0,216,3,0,0,62,0,3,0,203,3,0,0,230,3,0,0,249,0,2,0,205,3,0,0,248,0,2,0,205,3,0,0,61,0,4,0,39,0,0,0,231,3,0,0,203,3,0,0,62,0,3,0,198,3,0,0,231,3,0,0,65,0,5,0,17,0,0,0,234,3,0,0,198,3,0,0,16,1,0,0,61,0,4,0,6,0,0,0,235,3,0,0,234,3,0,0,61,0,4,0,6,0,0,0,236,3,0,0,189,3,0,0,133,0,5,0,6,0,0,0,237,3,0,0,235,3,0,0,236,3,0,0,65,0,5,0,17,0,0,0,238,3,0,0,198,3,0,0,126,1,0,0,61,0,4,0,6,0,0,0,239,3,0,0,238,3,0,0,129,0,5,0,6,0,0,0,240,3,0,0,237,3,0,0,239,3,0,0,65,0,5,0,17,0,0,0,241,3,0,0,198,3,0,0,134,1,0,0,61,0,4,0,6,0,0,0,242,3,0,0,241,3,0,0,131,0,5,0,6,0,0,0,243,3,0,0,240,3,0,0,242,3,0,0,62,0,3,0,244,3,0,0,243,3,0,0,61,0,4,0,6,0,0,0,246,3,0,0,189,3,0,0,62,0,3,0,245,3,0,0,246,3,0,0,57,0,6,0,6,0,0,0,247,3,0,0,129,0,0,0,244,3,0,0,245,3,0,0,133,0,5,0,6,0,0,0,248,3,0,0,233,3,0,0,247,3,0,0,62,0,3,0,232,3,0,0,248,3,0,0,61,0,4,0,6,0,0,0,251,3,0,0,189,3,0,0,62,0,3,0,250,3,0,0,251,3,0,0,61,0,4,0,6,0,0,0,253,3,0,0,171,3,0,0,62,0,3,0,252,3,0,0,253,3,0,0,57,0,6,0,6,0,0,0,254,3,0,0,129,0,0,0,250,3,0,0,252,3,0,0,62,0,3,0,249,3,0,0,254,3,0,0,61,0,4,0,6,0,0,0,255,3,0,0,232,3,0,0,61,0,4,0,6,0,0,0,0,4,0,0,249,3,0,0,61,0,4,0,6,0,0,0,1,4,0,0,193,3,0,0,80,0,6,0,39,0,0,0,2,4,0,0,255,3,0,0,0,4,0,0,1,4,0,0,254,0,2,0,2,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,145,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,143,0,0,0,55,0,3,0,40,0,0,0,144,0,0,0,248,0,2,0,146,0,0,0,61,0,4,0,39,0,0,0,5,4,0,0,143,0,0,0,61,0,4,0,39,0,0,0,6,4,0,0,144,0,0,0,129,0,5,0,39,0,0,0,7,4,0,0,5,4,0,0,6,4,0,0,61,0,4,0,39,0,0,0,8,4,0,0,143,0,0,0,61,0,4,0,39,0,0,0,9,4,0,0,144,0,0,0,133,0,5,0,39,0,0,0,10,4,0,0,8,4,0,0,9,4,0,0,131,0,5,0,39,0,0,0,11,4,0,0,7,4,0,0,10,4,0,0,254,0,2,0,11,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,149,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,147,0,0,0,55,0,3,0,40,0,0,0,148,0,0,0,248,0,2,0,150,0,0,0,59,0,4,0,40,0,0,0,25,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,27,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,29,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,30,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,31,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,14,4,0,0,148,0,0,0,188,0,5,0,118,0,0,0,16,4,0,0,14,4,0,0,15,4,0,0,61,0,4,0,39,0,0,0,17,4,0,0,147,0,0,0,133,0,5,0,39,0,0,0,19,4,0,0,17,4,0,0,18,4,0,0,61,0,4,0,39,0,0,0,20,4,0,0,148,0,0,0,133,0,5,0,39,0,0,0,21,4,0,0,19,4,0,0,20,4,0,0,61,0,4,0,39,0,0,0,22,4,0,0,148,0,0,0,133,0,5,0,39,0,0,0,23,4,0,0,18,4,0,0,22,4,0,0,131,0,5,0,39,0,0,0,24,4,0,0,23,4,0,0,113,3,0,0,61,0,4,0,39,0,0,0,26,4,0,0,147,0,0,0,62,0,3,0,25,4,0,0,26,4,0,0,62,0,3,0,27,4,0,0,24,4,0,0,57,0,6,0,39,0,0,0,28,4,0,0,145,0,0,0,25,4,0,0,27,4,0,0,62,0,3,0,29,4,0,0,16,4,0,0,62,0,3,0,30,4,0,0,21,4,0,0,62,0,3,0,31,4,0,0,28,4,0,0,57,0,7,0,39,0,0,0,32,4,0,0,124,0,0,0,29,4,0,0,30,4,0,0,31,4,0,0,254,0,2,0,32,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,153,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,151,0,0,0,55,0,3,0,40,0,0,0,152,0,0,0,248,0,2,0,154,0,0,0,59,0,4,0,40,0,0,0,35,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,54,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,55,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,56,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,58,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,68,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,69,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,70,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,36,4,0,0,151,0,0,0,188,0,5,0,118,0,0,0,39,4,0,0,36,4,0,0,38,4,0,0,61,0,4,0,39,0,0,0,42,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,43,4,0,0,41,4,0,0,42,4,0,0,80,0,6,0,39,0,0,0,44,4,0,0,150,3,0,0,150,3,0,0,150,3,0,0,131,0,5,0,39,0,0,0,45,4,0,0,43,4,0,0,44,4,0,0,61,0,4,0,39,0,0,0,46,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,47,4,0,0,45,4,0,0,46,4,0,0,80,0,6,0,39,0,0,0,48,4,0,0,89,1,0,0,89,1,0,0,89,1,0,0,129,0,5,0,39,0,0,0,49,4,0,0,47,4,0,0,48,4,0,0,61,0,4,0,39,0,0,0,50,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,51,4,0,0,49,4,0,0,50,4,0,0,61,0,4,0,39,0,0,0,52,4,0,0,151,0,0,0,12,0,6,0,39,0,0,0,53,4,0,0,1,0,0,0,31,0,0,0,52,4,0,0,62,0,3,0,54,4,0,0,39,4,0,0,62,0,3,0,55,4,0,0,51,4,0,0,62,0,3,0,56,4,0,0,53,4,0,0,57,0,7,0,39,0,0,0,57,4,0,0,124,0,0,0,54,4,0,0,55,4,0,0,56,4,0,0,62,0,3,0,35,4,0,0,57,4,0,0,61,0,4,0,39,0,0,0,59,4,0,0,152,0,0,0,188,0,5,0,118,0,0,0,60,4,0,0,59,4,0,0,15,4,0,0,61,0,4,0,39,0,0,0,61,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,62,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,63,4,0,0,113,3,0,0,62,4,0,0,133,0,5,0,39,0,0,0,64,4,0,0,61,4,0,0,63,4,0,0,61,0,4,0,39,0,0,0,65,4,0,0,35,4,0,0,61,0,4,0,39,0,0,0,66,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,67,4,0,0,65,4,0,0,66,4,0,0,62,0,3,0,68,4,0,0,60,4,0,0,62,0,3,0,69,4,0,0,64,4,0,0,62,0,3,0,70,4,0,0,67,4,0,0,57,0,7,0,39,0,0,0,71,4,0,0,124,0,0,0,68,4,0,0,69,4,0,0,70,4,0,0,62,0,3,0,58,4,0,0,71,4,0,0,61,0,4,0,39,0,0,0,72,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,73,4,0,0,152,0,0,0,142,0,5,0,39,0,0,0,74,4,0,0,73,4,0,0,71,1,0,0,80,0,6,0,39,0,0,0,75,4,0,0,64,1,0,0,64,1,0,0,64,1,0,0,131,0,5,0,39,0,0,0,76,4,0,0,74,4,0,0,75,4,0,0,61,0,4,0,39,0,0,0,77,4,0,0,58,4,0,0,133,0,5,0,39,0,0,0,78,4,0,0,76,4,0,0,77,4,0,0,129,0,5,0,39,0,0,0,79,4,0,0,72,4,0,0,78,4,0,0,254,0,2,0,79,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,159,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,156,0,0,0,55,0,3,0,40,0,0,0,157,0,0,0,55,0,3,0,10,0,0,0,158,0,0,0,248,0,2,0,160,0,0,0,61,0,4,0,9,0,0,0,82,4,0,0,158,0,0,0,247,0,3,0,87,4,0,0,0,0,0,0,251,0,9,0,82,4,0,0,86,4,0,0,12,0,0,0,83,4,0,0,13,0,0,0,84,4,0,0,14,0,0,0,85,4,0,0,248,0,2,0,86,4,0,0,65,0,5,0,17,0,0,0,112,4,0,0,156,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,113,4,0,0,112,4,0,0,65,0,5,0,17,0,0,0,114,4,0,0,156,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,115,4,0,0,114,4,0,0,65,0,5,0,17,0,0,0,116,4,0,0,157,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,117,4,0,0,116,4,0,0,80,0,6,0,39,0,0,0,118,4,0,0,113,4,0,0,115,4,0,0,117,4,0,0,254,0,2,0,118,4,0,0,248,0,2,0,83,4,0,0,65,0,5,0,17,0,0,0,88,4,0,0,157,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,89,4,0,0,88,4,0,0,65,0,5,0,17,0,0,0,90,4,0,0,156,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,91,4,0,0,90,4,0,0,65,0,5,0,17,0,0,0,92,4,0,0,156,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,93,4,0,0,92,4,0,0,80,0,6,0,39,0,0,0,94,4,0,0,89,4,0,0,91,4,0,0,93,4,0,0,254,0,2,0,94,4,0,0,248,0,2,0,84,4,0,0,65,0,5,0,17,0,0,0,96,4,0,0,156,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,97,4,0,0,96,4,0,0,65,0,5,0,17,0,0,0,98,4,0,0,157,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,99,4,0,0,98,4,0,0,65,0,5,0,17,0,0,0,100,4,0,0,156,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,101,4,0,0,100,4,0,0,80,0,6,0,39,0,0,0,102,4,0,0,97,4,0,0,99,4,0,0,101,4,0,0,254,0,2,0,102,4,0,0,248,0,2,0,85,4,0,0,65,0,5,0,17,0,0,0,104,4,0,0,157,0,0,0,16,1,0,0,61,0,4,0,6,0,0,0,105,4,0,0,104,4,0,0,65,0,5,0,17,0,0,0,106,4,0,0,157,0,0,0,126,1,0,0,61,0,4,0,6,0,0,0,107,4,0,0,106,4,0,0,65,0,5,0,17,0,0,0,108,4,0,0,156,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,109,4,0,0,108,4,0,0,80,0,6,0,39,0,0,0,110,4,0,0,105,4,0,0,107,4,0,0,109,4,0,0,254,0,2,0,110,4,0,0,248,0,2,0,87,4,0,0,255,0,1,0,56,0,1,0,54,0,5,0,39,0,0,0,164,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,161,0,0,0,55,0,3,0,40,0,0,0,162,0,0,0,55,0,3,0,10,0,0,0,163,0,0,0,248,0,2,0,165,0,0,0,59,0,4,0,40,0,0,0,140,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,142,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,146,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,148,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,160,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,162,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,170,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,171,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,175,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,177,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,181,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,183,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,201,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,204,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,207,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,208,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,209,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,212,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,122,4,0,0,163,0,0,0,247,0,3,0,135,4,0,0,0,0,0,0,251,0,33,0,122,4,0,0,135,4,0,0,1,0,0,0,123,4,0,0,2,0,0,0,124,4,0,0,3,0,0,0,125,4,0,0,4,0,0,0,126,4,0,0,5,0,0,0,127,4,0,0,6,0,0,0,128,4,0,0,7,0,0,0,129,4,0,0,8,0,0,0,130,4,0,0,9,0,0,0,131,4,0,0,10,0,0,0,132,4,0,0,11,0,0,0,133,4,0,0,12,0,0,0,134,4,0,0,13,0,0,0,134,4,0,0,14,0,0,0,134,4,0,0,15,0,0,0,134,4,0,0,248,0,2,0,123,4,0,0,61,0,4,0,39,0,0,0,136,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,137,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,138,4,0,0,136,4,0,0,137,4,0,0,254,0,2,0,138,4,0,0,248,0,2,0,124,4,0,0,61,0,4,0,39,0,0,0,141,4,0,0,161,0,0,0,62,0,3,0,140,4,0,0,141,4,0,0,61,0,4,0,39,0,0,0,143,4,0,0,162,0,0,0,62,0,3,0,142,4,0,0,143,4,0,0,57,0,6,0,39,0,0,0,144,4,0,0,145,0,0,0,140,4,0,0,142,4,0,0,254,0,2,0,144,4,0,0,248,0,2,0,125,4,0,0,61,0,4,0,39,0,0,0,147,4,0,0,162,0,0,0,62,0,3,0,146,4,0,0,147,4,0,0,61,0,4,0,39,0,0,0,149,4,0,0,161,0,0,0,62,0,3,0,148,4,0,0,149,4,0,0,57,0,6,0,39,0,0,0,150,4,0,0,149,0,0,0,146,4,0,0,148,4,0,0,254,0,2,0,150,4,0,0,248,0,2,0,126,4,0,0,61,0,4,0,39,0,0,0,152,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,153,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,154,4,0,0,1,0,0,0,37,0,0,0,152,4,0,0,153,4,0,0,254,0,2,0,154,4,0,0,248,0,2,0,127,4,0,0,61,0,4,0,39,0,0,0,156,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,157,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,158,4,0,0,1,0,0,0,40,0,0,0,156,4,0,0,157,4,0,0,254,0,2,0,158,4,0,0,248,0,2,0,128,4,0,0,61,0,4,0,39,0,0,0,161,4,0,0,161,0,0,0,62,0,3,0,160,4,0,0,161,4,0,0,61,0,4,0,39,0,0,0,163,4,0,0,162,0,0,0,62,0,3,0,162,4,0,0,163,4,0,0,57,0,6,0,39,0,0,0,164,4,0,0,134,0,0,0,160,4,0,0,162,4,0,0,254,0,2,0,164,4,0,0,248,0,2,0,129,4,0,0,61,0,4,0,39,0,0,0,166,4,0,0,161,0,0,0,131,0,5,0,39,0,0,0,167,4,0,0,113,3,0,0,166,4,0,0,61,0,4,0,39,0,0,0,168,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,169,4,0,0,113,3,0,0,168,4,0,0,62,0,3,0,170,4,0,0,167,4,0,0,62,0,3,0,171,4,0,0,169,4,0,0,57,0,6,0,39,0,0,0,172,4,0,0,134,0,0,0,170,4,0,0,171,4,0,0,131,0,5,0,39,0,0,0,173,4,0,0,113,3,0,0,172,4,0,0,254,0,2,0,173,4,0,0,248,0,2,0,130,4,0,0,61,0,4,0,39,0,0,0,176,4,0,0,161,0,0,0,62,0,3,0,175,4,0,0,176,4,0,0,61,0,4,0,39,0,0,0,178,4,0,0,162,0,0,0,62,0,3,0,177,4,0,0,178,4,0,0,57,0,6,0,39,0,0,0,179,4,0,0,149,0,0,0,175,4,0,0,177,4,0,0,254,0,2,0,179,4,0,0,248,0,2,0,131,4,0,0,61,0,4,0,39,0,0,0,182,4,0,0,161,0,0,0,62,0,3,0,181,4,0,0,182,4,0,0,61,0,4,0,39,0,0,0,184,4,0,0,162,0,0,0,62,0,3,0,183,4,0,0,184,4,0,0,57,0,6,0,39,0,0,0,185,4,0,0,153,0,0,0,181,4,0,0,183,4,0,0,254,0,2,0,185,4,0,0,248,0,2,0,132,4,0,0,61,0,4,0,39,0,0,0,187,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,188,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,189,4,0,0,187,4,0,0,188,4,0,0,12,0,6,0,39,0,0,0,190,4,0,0,1,0,0,0,4,0,0,0,189,4,0,0,254,0,2,0,190,4,0,0,248,0,2,0,133,4,0,0,61,0,4,0,39,0,0,0,192,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,193,4,0,0,162,0,0,0,129,0,5,0,39,0,0,0,194,4,0,0,192,4,0,0,193,4,0,0,61,0,4,0,39,0,0,0,195,4,0,0,161,0,0,0,133,0,5,0,39,0,0,0,196,4,0,0,18,4,0,0,195,4,0,0,61,0,4,0,39,0,0,0,197,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,198,4,0,0,196,4,0,0,197,4,0,0,131,0,5,0,39,0,0,0,199,4,0,0,194,4,0,0,198,4,0,0,254,0,2,0,199,4,0,0,248,0,2,0,134,4,0,0,61,0,4,0,39,0,0,0,202,4,0,0,161,0,0,0,62,0,3,0,201,4,0,0,202,4,0,0,57,0,5,0,39,0,0,0,203,4,0,0,141,0,0,0,201,4,0,0,61,0,4,0,39,0,0,0,205,4,0,0,162,0,0,0,62,0,3,0,204,4,0,0,205,4,0,0,57,0,5,0,39,0,0,0,206,4,0,0,141,0,0,0,204,4,0,0,62,0,3,0,207,4,0,0,203,4,0,0,62,0,3,0,208,4,0,0,206,4,0,0,61,0,4,0,9,0,0,0,210,4,0,0,163,0,0,0,62,0,3,0,209,4,0,0,210,4,0,0,57,0,7,0,39,0,0,0,211,4,0,0,159,0,0,0,207,4,0,0,208,4,0,0,209,4,0,0,62,0,3,0,212,4,0,0,211,4,0,0,57,0,5,0,39,0,0,0,213,4,0,0,138,0,0,0,212,4,0,0,254,0,2,0,213,4,0,0,248,0,2,0,135,4,0,0,61,0,4,0,39,0,0,0,216,4,0,0,162,0,0,0,254,0,2,0,216,4,0,0,56,0,1,0,54,0,5,0,7,0,0,0,172,0,0,0,0,0,0,0,166,0,0,0,55,0,3,0,8,0,0,0,167,0,0,0,55,0,3,0,20,0,0,0,168,0,0,0,55,0,3,0,22,0,0,0,169,0,0,0,55,0,3,0,22,0,0,0,170,0,0,0,55,0,3,0,10,0,0,0,171,0,0,0,248,0,2,0,173,0,0,0,59,0,4,0,22,0,0,0,226,4,0,0,7,0,0,0,59,0,4,0,8,0,0,0,230,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,234,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,235,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,238,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,241,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,219,4,0,0,171,0,0,0,170,0,5,0,117,0,0,0,221,4,0,0,219,4,0,0,220,4,0,0,247,0,3,0,223,4,0,0,0,0,0,0,250,0,4,0,221,4,0,0,222,4,0,0,223,4,0,0,248,0,2,0,222,4,0,0,61,0,4,0,7,0,0,0,224,4,0,0,167,0,0,0,254,0,2,0,224,4,0,0,248,0,2,0,223,4,0,0,61,0,4,0,21,0,0,0,227,4,0,0,170,0,0,0,61,0,4,0,21,0,0,0,228,4,0,0,169,0,0,0,136,0,5,0,21,0,0,0,229,4,0,0,227,4,0,0,228,4,0,0,62,0,3,0,226,4,0,0,229,4,0,0,61,0,4,0,19,0,0,0,231,4,0,0,168,0,0,0,61,0,4,0,21,0,0,0,232,4,0,0,226,4,0,0,88,0,7,0,7,0,0,0,233,4,0,0,231,4,0,0,232,4,0,0,2,0,0,0,12,1,0,0,62,0,3,0,230,4,0,0,233,4,0,0,61,0,4,0,7,0,0,0,236,4,0,0,230,4,0,0,79,0,8,0,39,0,0,0,237,4,0,0,236,4,0,0,236,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,235,4,0,0,237,4,0,0,61,0,4,0,7,0,0,0,239,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,240,4,0,0,239,4,0,0,239,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,238,4,0,0,240,4,0,0,61,0,4,0,9,0,0,0,242,4,0,0,171,0,0,0,62,0,3,0,241,4,0,0,242,4,0,0,57,0,7,0,39,0,0,0,243,4,0,0,164,0,0,0,235,4,0,0,238,4,0,0,241,4,0,0,62,0,3,0,234,4,0,0,243,4,0,0,65,0,5,0,17,0,0,0,244,4,0,0,167,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,245,4,0,0,244,4,0,0,65,0,5,0,17,0,0,0,246,4,0,0,230,4,0,0,238,0,0,0,61,0,4,0,6,0,0,0,247,4,0,0,246,4,0,0,131,0,5,0,6,0,0,0,248,4,0,0,64,1,0,0,247,4,0,0,133,0,5,0,6,0,0,0,249,4,0,0,245,4,0,0,248,4,0,0,61,0,4,0,7,0,0,0,250,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,251,4,0,0,250,4,0,0,250,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,252,4,0,0,251,4,0,0,249,4,0,0,65,0,5,0,17,0,0,0,253,4,0,0,167,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,254,4,0,0,253,4,0,0,65,0,5,0,17,0,0,0,255,4,0,0,230,4,0,0,238,0,0,0,61,0,4,0,6,0,0,0,0,5,0,0,255,4,0,0,133,0,5,0,6,0,0,0,1,5,0,0,254,4,0,0,0,5,0,0,61,0,4,0,39,0,0,0,2,5,0,0,234,4,0,0,142,0,5,0,39,0,0,0,3,5,0,0,2,5,0,0,1,5,0,0,129,0,5,0,39,0,0,0,4,5,0,0,252,4,0,0,3,5,0,0,65,0,5,0,17,0,0,0,5,5,0,0,167,0,0,0,238,0,0,0,61,0,4,0,6,0,0,0,6,5,0,0,5,5,0,0,131,0,5,0,6,0,0,0,7,5,0,0,64,1,0,0,6,5,0,0,61,0,4,0,7,0,0,0,8,5,0,0,230,4,0,0,79,0,8,0,39,0,0,0,9,5,0,0,8,5,0,0,8,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,10,5,0,0,9,5,0,0,7,5,0,0,129,0,5,0,39,0,0,0,11,5,0,0,4,5,0,0,10,5,0,0,81,0,5,0,6,0,0,0,12,5,0,0,11,5,0,0,0,0,0,0,81,0,5,0,6,0,0,0,13,5,0,0,11,5,0,0,1,0,0,0,81,0,5,0,6,0,0,0,14,5,0,0,11,5,0,0,2,0,0,0,80,0,7,0,7,0,0,0,15,5,0,0,12,5,0,0,13,5,0,0,14,5,0,0,64,1,0,0,254,0,2,0,15,5,0,0,56,0,1,0,54,0,5,0,6,0,0,0,180,0,0,0,0,0,0,0,174,0,0,0,55,0,3,0,17,0,0,0,175,0,0,0,55,0,3,0,20,0,0,0,176,0,0,0,55,0,3,0,22,0,0,0,177,0,0,0,55,0,3,0,40,0,0,0,178,0,0,0,55,0,3,0,10,0,0,0,179,0,0,0,248,0,2,0,181,0,0,0,59,0,4,0,226,0,0,0,24,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,29,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,41,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,18,5,0,0,179,0,0,0,170,0,5,0,117,0,0,0,19,5,0,0,18,5,0,0,220,4,0,0,247,0,3,0,21,5,0,0,0,0,0,0,250,0,4,0,19,5,0,0,20,5,0,0,21,5,0,0,248,0,2,0,20,5,0,0,61,0,4,0,6,0,0,0,22,5,0,0,175,0,0,0,254,0,2,0,22,5,0,0,248,0,2,0,21,5,0,0,61,0,4,0,39,0,0,0,25,5,0,0,178,0,0,0,79,0,7,0,21,0,0,0,26,5,0,0,25,5,0,0,25,5,0,0,0,0,0,0,1,0,0,0,12,0,6,0,21,0,0,0,27,5,0,0,1,0,0,0,8,0,0,0,26,5,0,0,110,0,4,0,225,0,0,0,28,5,0,0,27,5,0,0,62,0,3,0,24,5,0,0,28,5,0,0,61,0,4,0,19,0,0,0,30,5,0,0,176,0,0,0,61,0,4,0,225,0,0,0,31,5,0,0,24,5,0,0,135,0,5,0,225,0,0,0,34,5,0,0,31,5,0,0,33,5,0,0,111,0,4,0,21,0,0,0,35,5,0,0,34,5,0,0,80,0,5,0,21,0,0,0,36,5,0,0,196,3,0,0,196,3,0,0,129,0,5,0,21,0,0,0,37,5,0,0,35,5,0,0,36,5,0,0,61,0,4,0,21,0,0,0,38,5,0,0,177,0,0,0,136,0,5,0,21,0,0,0,39,5,0,0,37,5,0,0,38,5,0,0,88,0,7,0,7,0,0,0,40,5,0,0,30,5,0,0,39,5,0,0,2,0,0,0,12,1,0,0,62,0,3,0,29,5,0,0,40,5,0,0,65,0,5,0,10,0,0,0,42,5,0,0,24,5,0,0,126,1,0,0,61,0,4,0,9,0,0,0,43,5,0,0,42,5,0,0,139,0,5,0,9,0,0,0,44,5,0,0,43,5,0,0,32,5,0,0,65,0,5,0,17,0,0,0,45,5,0,0,29,5,0,0,44,5,0,0,61,0,4,0,6,0,0,0,46,5,0,0,45,5,0,0,65,0,5,0,17,0,0,0,47,5,0,0,178,0,0,0,134,1,0,0,61,0,4,0,6,0,0,0,48,5,0,0,47,5,0,0,129,0,5,0,6,0,0,0,49,5,0,0,46,5,0,0,48,5,0,0,62,0,3,0,41,5,0,0,49,5,0,0,61,0,4,0,9,0,0,0,50,5,0,0,179,0,0,0,199,0,5,0,9,0,0,0,51,5,0,0,50,5,0,0,137,2,0,0,171,0,5,0,117,0,0,0,52,5,0,0,51,5,0,0,220,4,0,0,247,0,3,0,54,5,0,0,0,0,0,0,250,0,4,0,52,5,0,0,53,5,0,0,57,5,0,0,248,0,2,0,53,5,0,0,61,0,4,0,6,0,0,0,55,5,0,0,41,5,0,0,12,0,6,0,6,0,0,0,56,5,0,0,1,0,0,0,4,0,0,0,55,5,0,0,62,0,3,0,41,5,0,0,56,5,0,0,249,0,2,0,54,5,0,0,248,0,2,0,57,5,0,0,61,0,4,0,6,0,0,0,58,5,0,0,41,5,0,0,141,0,5,0,6,0,0,0,59,5,0,0,58,5,0,0,71,1,0,0,131,0,5,0,6,0,0,0,60,5,0,0,64,1,0,0,59,5,0,0,12,0,6,0,6,0,0,0,61,5,0,0,1,0,0,0,4,0,0,0,60,5,0,0,131,0,5,0,6,0,0,0,62,5,0,0,64,1,0,0,61,5,0,0,62,0,3,0,41,5,0,0,62,5,0,0,249,0,2,0,54,5,0,0,248,0,2,0,54,5,0,0,61,0,4,0,6,0,0,0,63,5,0,0,175,0,0,0,61,0,4,0,6,0,0,0,64,5,0,0,41,5,0,0,12,0,7,0,6,0,0,0,65,5,0,0,1,0,0,0,37,0,0,0,63,5,0,0,64,5,0,0,254,0,2,0,65,5,0,0,56,0,1,0,54,0,5,0,7,0,0,0,201,0,0,0,0,0,0,0,182,0,0,0,55,0,3,0,22,0,0,0,183,0,0,0,55,0,3,0,20,0,0,0,184,0,0,0,55,0,3,0,20,0,0,0,185,0,0,0,55,0,3,0,20,0,0,0,186,0,0,0,55,0,3,0,20,0,0,0,187,0,0,0,55,0,3,0,22,0,0,0,188,0,0,0,55,0,3,0,22,0,0,0,189,0,0,0,55,0,3,0,8,0,0,0,190,0,0,0,55,0,3,0,8,0,0,0,191,0,0,0,55,0,3,0,8,0,0,0,192,0,0,0,55,0,3,0,8,0,0,0,193,0,0,0,55,0,3,0,8,0,0,0,194,0,0,0,55,0,3,0,22,0,0,0,195,0,0,0,55,0,3,0,10,0,0,0,196,0,0,0,55,0,3,0,40,0,0,0,197,0,0,0,55,0,3,0,22,0,0,0,198,0,0,0,55,0,3,0,8,0,0,0,199,0,0,0,55,0,3,0,10,0,0,0,200,0,0,0,248,0,2,0,202,0,0,0,59,0,4,0,10,0,0,0,68,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,73,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,74,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,76,5,0,0,7,0,0,0,59,0,4,0,40,0,0,0,78,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,80,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,83,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,85,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,94,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,99,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,100,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,102,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,104,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,106,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,108,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,110,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,112,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,114,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,116,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,118,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,121,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,123,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,125,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,133,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,138,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,140,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,142,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,144,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,69,5,0,0,200,0,0,0,195,0,5,0,9,0,0,0,70,5,0,0,69,5,0,0,220,4,0,0,199,0,5,0,9,0,0,0,72,5,0,0,70,5,0,0,71,5,0,0,62,0,3,0,68,5,0,0,72,5,0,0,62,0,3,0,73,5,0,0,64,1,0,0,61,0,4,0,6,0,0,0,75,5,0,0,73,5,0,0,62,0,3,0,74,5,0,0,75,5,0,0,61,0,4,0,21,0,0,0,77,5,0,0,189,0,0,0,62,0,3,0,76,5,0,0,77,5,0,0,61,0,4,0,39,0,0,0,79,5,0,0,197,0,0,0,62,0,3,0,78,5,0,0,79,5,0,0,61,0,4,0,9,0,0,0,81,5,0,0,68,5,0,0,62,0,3,0,80,5,0,0,81,5,0,0,57,0,9,0,6,0,0,0,82,5,0,0,180,0,0,0,74,5,0,0,185,0,0,0,76,5,0,0,78,5,0,0,80,5,0,0,62,0,3,0,73,5,0,0,82,5,0,0,61,0,4,0,7,0,0,0,84,5,0,0,199,0,0,0,62,0,3,0,83,5,0,0,84,5,0,0,61,0,4,0,9,0,0,0,86,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,88,5,0,0,86,5,0,0,87,5,0,0,199,0,5,0,9,0,0,0,89,5,0,0,88,5,0,0,71,5,0,0,62,0,3,0,85,5,0,0,89,5,0,0,61,0,4,0,9,0,0,0,90,5,0,0,85,5,0,0,171,0,5,0,117,0,0,0,91,5,0,0,90,5,0,0,220,4,0,0,247,0,3,0,93,5,0,0,0,0,0,0,250,0,4,0,91,5,0,0,92,5,0,0,93,5,0,0,248,0,2,0,92,5,0,0,61,0,4,0,9,0,0,0,95,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,96,5,0,0,95,5,0,0,32,5,0,0,199,0,5,0,9,0,0,0,98,5,0,0,96,5,0,0,97,5,0,0,62,0,3,0,94,5,0,0,98,5,0,0,61,0,4,0,21,0,0,0,101,5,0,0,198,0,0,0,62,0,3,0,100,5,0,0,101,5,0,0,61,0,4,0,21,0,0,0,103,5,0,0,188,0,0,0,62,0,3,0,102,5,0,0,103,5,0,0,61,0,4,0,21,0,0,0,105,5,0,0,183,0,0,0,62,0,3,0,104,5,0,0,105,5,0,0,61,0,4,0,21,0,0,0,107,5,0,0,195,0,0,0,62,0,3,0,106,5,0,0,107,5,0,0,61,0,4,0,7,0,0,0,109,5,0,0,190,0,0,0,62,0,3,0,108,5,0,0,109,5,0,0,61,0,4,0,7,0,0,0,111,5,0,0,191,0,0,0,62,0,3,0,110,5,0,0,111,5,0,0,61,0,4,0,7,0,0,0,113,5,0,0,192,0,0,0,62,0,3,0,112,5,0,0,113,5,0,0,61,0,4,0,7,0,0,0,115,5,0,0,193,0,0,0,62,0,3,0,114,5,0,0,115,5,0,0,61,0,4,0,7,0,0,0,117,5,0,0,194,0,0,0,62,0,3,0,116,5,0,0,117,5,0,0,61,0,4,0,9,0,0,0,119,5,0,0,94,5,0,0,62,0,3,0,118,5,0,0,119,5,0,0,57,0,16,0,7,0,0,0,120,5,0,0,115,0,0,0,100,5,0,0,184,0,0,0,187,0,0,0,102,5,0,0,104,5,0,0,106,5,0,0,108,5,0,0,110,5,0,0,112,5,0,0,114,5,0,0,116,5,0,0,118,5,0,0,62,0,3,0,99,5,0,0,120,5,0,0,61,0,4,0,7,0,0,0,122,5,0,0,83,5,0,0,62,0,3,0,121,5,0,0,122,5,0,0,61,0,4,0,7,0,0,0,124,5,0,0,99,5,0,0,62,0,3,0,123,5,0,0,124,5,0,0,61,0,4,0,9,0,0,0,126,5,0,0,85,5,0,0,62,0,3,0,125,5,0,0,126,5,0,0,57,0,7,0,7,0,0,0,127,5,0,0,15,0,0,0,121,5,0,0,123,5,0,0,125,5,0,0,62,0,3,0,83,5,0,0,127,5,0,0,249,0,2,0,93,5,0,0,248,0,2,0,93,5,0,0,61,0,4,0,6,0,0,0,128,5,0,0,73,5,0,0,65,0,5,0,17,0,0,0,129,5,0,0,83,5,0,0,238,0,0,0,61,0,4,0,6,0,0,0,130,5,0,0,129,5,0,0,133,0,5,0,6,0,0,0,131,5,0,0,130,5,0,0,128,5,0,0,65,0,5,0,17,0,0,0,132,5,0,0,83,5,0,0,238,0,0,0,62,0,3,0,132,5,0,0,131,5,0,0,61,0,4,0,9,0,0,0,134,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,136,5,0,0,134,5,0,0,135,5,0,0,199,0,5,0,9,0,0,0,137,5,0,0,136,5,0,0,97,5,0,0,62,0,3,0,133,5,0,0,137,5,0,0,61,0,4,0,7,0,0,0,139,5,0,0,83,5,0,0,62,0,3,0,138,5,0,0,139,5,0,0,61,0,4,0,21,0,0,0,141,5,0,0,195,0,0,0,62,0,3,0,140,5,0,0,141,5,0,0,61,0,4,0,21,0,0,0,143,5,0,0,183,0,0,0,62,0,3,0,142,5,0,0,143,5,0,0,61,0,4,0,9,0,0,0,145,5,0,0,133,5,0,0,62,0,3,0,144,5,0,0,145,5,0,0,57,0,9,0,7,0,0,0,146,5,0,0,172,0,0,0,138,5,0,0,186,0,0,0,140,5,0,0,142,5,0,0,144,5,0,0,62,0,3,0,83,5,0,0,146,5,0,0,65,0,5,0,17,0,0,0,147,5,0,0,83,5,0,0,238,0,0,0,61,0,4,0,6,0,0,0,148,5,0,0,147,5,0,0,61,0,4,0,7,0,0,0,149,5,0,0,83,5,0,0,79,0,8,0,39,0,0,0,150,5,0,0,149,5,0,0,149,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,151,5,0,0,150,5,0,0,148,5,0,0,65,0,5,0,17,0,0,0,152,5,0,0,83,5,0,0,16,1,0,0,81,0,5,0,6,0,0,0,153,5,0,0,151,5,0,0,0,0,0,0,62,0,3,0,152,5,0,0,153,5,0,0,65,0,5,0,17,0,0,0,154,5,0,0,83,5,0,0,126,1,0,0,81,0,5,0,6,0,0,0,155,5,0,0,151,5,0,0,1,0,0,0,62,0,3,0,154,5,0,0,155,5,0,0,65,0,5,0,17,0,0,0,156,5,0,0,83,5,0,0,134,1,0,0,81,0,5,0,6,0,0,0,157,5,0,0,151,5,0,0,2,0,0,0,62,0,3,0,156,5,0,0,157,5,0,0,61,0,4,0,7,0,0,0,158,5,0,0,83,5,0,0,254,0,2,0,158,5,0,0,56,0,1,0,54,0,5,0,7,0,0,0,208,0,0,0,0,0,0,0,203,0,0,0,55,0,3,0,20,0,0,0,204,0,0,0,55,0,3,0,22,0,0,0,205,0,0,0,55,0,3,0,22,0,0,0,206,0,0,0,55,0,3,0,10,0,0,0,207,0,0,0,248,0,2,0,209,0,0,0,61,0,4,0,19,0,0,0,161,5,0,0,204,0,0,0,61,0,4,0,21,0,0,0,162,5,0,0,206,0,0,0,129,0,5,0,21,0,0,0,164,5,0,0,162,5,0,0,163,5,0,0,61,0,4,0,9,0,0,0,165,5,0,0,207,0,0,0,111,0,4,0,6,0,0,0,166,5,0,0,165,5,0,0,80,0,5,0,21,0,0,0,167,5,0,0,166,5,0,0,12,1,0,0,129,0,5,0,21,0,0,0,168,5,0,0,164,5,0,0,167,5,0,0,61,0,4,0,21,0,0,0,169,5,0,0,205,0,0,0,133,0,5,0,21,0,0,0,170,5,0,0,168,5,0,0,169,5,0,0,88,0,7,0,7,0,0,0,171,5,0,0,161,5,0,0,170,5,0,0,2,0,0,0,12,1,0,0,254,0,2,0,171,5,0,0,56,0,1,0,54,0,5,0,2,0,0,0,223,0,0,0,0,0,0,0,210,0,0,0,55,0,3,0,22,0,0,0,211,0,0,0,55,0,3,0,10,0,0,0,212,0,0,0,55,0,3,0,20,0,0,0,213,0,0,0,55,0,3,0,22,0,0,0,214,0,0,0,55,0,3,0,22,0,0,0,215,0,0,0,55,0,3,0,8,0,0,0,216,0,0,0,55,0,3,0,8,0,0,0,217,0,0,0,55,0,3,0,8,0,0,0,218,0,0,0,55,0,3,0,8,0,0,0,219,0,0,0,55,0,3,0,8,0,0,0,220,0,0,0,55,0,3,0,8,0,0,0,221,0,0,0,55,0,3,0,10,0,0,0,222,0,0,0,248,0,2,0,224,0,0,0,59,0,4,0,22,0,0,0,174,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,178,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,188,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,189,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,191,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,193,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,195,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,196,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,198,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,200,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,202,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,203,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,205,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,207,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,209,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,210,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,212,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,214,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,216,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,217,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,219,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,221,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,223,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,225,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,227,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,229,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,231,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,233,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,235,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,237,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,239,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,241,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,243,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,245,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,247,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,248,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,250,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,252,5,0,0,7,0,0,0,61,0,4,0,21,0,0,0,176,5,0,0,214,0,0,0,136,0,5,0,21,0,0,0,177,5,0,0,175,5,0,0,176,5,0,0,62,0,3,0,174,5,0,0,177,5,0,0,61,0,4,0,9,0,0,0,179,5,0,0,212,0,0,0,139,0,5,0,9,0,0,0,181,5,0,0,179,5,0,0,180,5,0,0,132,0,5,0,9,0,0,0,182,5,0,0,181,5,0,0,135,5,0,0,111,0,4,0,6,0,0,0,183,5,0,0,182,5,0,0,61,0,4,0,9,0,0,0,184,5,0,0,212,0,0,0,135,0,5,0,9,0,0,0,185,5,0,0,184,5,0,0,180,5,0,0,111,0,4,0,6,0,0,0,186,5,0,0,185,5,0,0,80,0,5,0,21,0,0,0,187,5,0,0,183,5,0,0,186,5,0,0,62,0,3,0,178,5,0,0,187,5,0,0,61,0,4,0,21,0,0,0,190,5,0,0,174,5,0,0,62,0,3,0,189,5,0,0,190,5,0,0,61,0,4,0,21,0,0,0,192,5,0,0,178,5,0,0,62,0,3,0,191,5,0,0,192,5,0,0,62,0,3,0,193,5,0,0,220,4,0,0,57,0,8,0,7,0,0,0,194,5,0,0,208,0,0,0,213,0,0,0,189,5,0,0,191,5,0,0,193,5,0,0,62,0,3,0,188,5,0,0,194,5,0,0,61,0,4,0,21,0,0,0,197,5,0,0,174,5,0,0,62,0,3,0,196,5,0,0,197,5,0,0,61,0,4,0,21,0,0,0,199,5,0,0,178,5,0,0,62,0,3,0,198,5,0,0,199,5,0,0,62,0,3,0,200,5,0,0,137,2,0,0,57,0,8,0,7,0,0,0,201,5,0,0,208,0,0,0,213,0,0,0,196,5,0,0,198,5,0,0,200,5,0,0,62,0,3,0,195,5,0,0,201,5,0,0,61,0,4,0,21,0,0,0,204,5,0,0,174,5,0,0,62,0,3,0,203,5,0,0,204,5,0,0,61,0,4,0,21,0,0,0,206,5,0,0,178,5,0,0,62,0,3,0,205,5,0,0,206,5,0,0,62,0,3,0,207,5,0,0,200,2,0,0,57,0,8,0,7,0,0,0,208,5,0,0,208,0,0,0,213,0,0,0,203,5,0,0,205,5,0,0,207,5,0,0,62,0,3,0,202,5,0,0,208,5,0,0,61,0,4,0,21,0,0,0,211,5,0,0,174,5,0,0,62,0,3,0,210,5,0,0,211,5,0,0,61,0,4,0,21,0,0,0,213,5,0,0,178,5,0,0,62,0,3,0,212,5,0,0,213,5,0,0,62,0,3,0,214,5,0,0,71,5,0,0,57,0,8,0,7,0,0,0,215,5,0,0,208,0,0,0,213,0,0,0,210,5,0,0,212,5,0,0,214,5,0,0,62,0,3,0,209,5,0,0,215,5,0,0,61,0,4,0,21,0,0,0,218,5,0,0,174,5,0,0,62,0,3,0,217,5,0,0,218,5,0,0,61,0,4,0,21,0,0,0,220,5,0,0,178,5,0,0,62,0,3,0,219,5,0,0,220,5,0,0,62,0,3,0,221,5,0,0,32,5,0,0,57,0,8,0,7,0,0,0,222,5,0,0,208,0,0,0,213,0,0,0,217,5,0,0,219,5,0,0,221,5,0,0,62,0,3,0,216,5,0,0,222,5,0,0,61,0,4,0,21,0,0,0,226,5,0,0,174,5,0,0,62,0,3,0,225,5,0,0,226,5,0,0,61,0,4,0,21,0,0,0,228,5,0,0,178,5,0,0,62,0,3,0,227,5,0,0,228,5,0,0,62,0,3,0,229,5,0,0,224,5,0,0,57,0,8,0,7,0,0,0,230,5,0,0,208,0,0,0,213,0,0,0,225,5,0,0,227,5,0,0,229,5,0,0,62,0,3,0,223,5,0,0,230,5,0,0,61,0,4,0,21,0,0,0,234,5,0,0,174,5,0,0,62,0,3,0,233,5,0,0,234,5,0,0,61,0,4,0,21,0,0,0,236,5,0,0,178,5,0,0,62,0,3,0,235,5,0,0,236,5,0,0,62,0,3,0,237,5,0,0,232,5,0,0,57,0,8,0,7,0,0,0,238,5,0,0,208,0,0,0,213,0,0,0,233,5,0,0,235,5,0,0,237,5,0,0,62,0,3,0,231,5,0,0,238,5,0,0,61,0,4,0,21,0,0,0,242,5,0,0,174,5,0,0,62,0,3,0,241,5,0,0,242,5,0,0,61,0,4,0,21,0,0,0,244,5,0,0,178,5,0,0,62,0,3,0,243,5,0,0,244,5,0,0,62,0,3,0,245,5,0,0,240,5,0,0,57,0,8,0,7,0,0,0,246,5,0,0,208,0,0,0,213,0,0,0,241,5,0,0,243,5,0,0,245,5,0,0,62,0,3,0,239,5,0,0,246,5,0,0,61,0,4,0,21,0,0,0,249,5,0,0,174,5,0,0,62,0,3,0,248,5,0,0,249,5,0,0,61,0,4,0,21,0,0,0,251,5,0,0,178,5,0,0,62,0,3,0,250,5,0,0,251,5,0,0,62,0,3,0,252,5,0,0,87,5,0,0,57,0,8,0,7,0,0,0,253,5,0,0,208,0,0,0,213,0,0,0,248,5,0,0,250,5,0,0,252,5,0,0,62,0,3,0,247,5,0,0,253,5,0,0,61,0,4,0,7,0,0,0,254,5,0,0,188,5,0,0,81,0,5,0,6,0,0,0,0,6,0,0,254,5,0,0,0,0,0,0,81,0,5,0,6,0,0,0,1,6,0,0,254,5,0,0,1,0,0,0,81,0,5,0,6,0,0,0,2,6,0,0,254,5,0,0,2,0,0,0,81,0,5,0,6,0,0,0,3,6,0,0,254,5,0,0,3,0,0,0,80,0,5,0,21,0,0,0,4,6,0,0,0,6,0,0,1,6,0,0,80,0,5,0,21,0,0,0,5,6,0,0,2,6,0,0,3,6,0,0,80,0,5,0,255,5,0,0,6,6,0,0,4,6,0,0,5,6,0,0,61,0,4,0,21,0,0,0,7,6,0,0,211,0,0,0,145,0,5,0,21,0,0,0,8,6,0,0,6,6,0,0,7,6,0,0,61,0,4,0,7,0,0,0,9,6,0,0,195,5,0,0,79,0,7,0,21,0,0,0,10,6,0,0,9,6,0,0,9,6,0,0,0,0,0,0,1,0,0,0,129,0,5,0,21,0,0,0,11,6,0,0,8,6,0,0,10,6,0,0,62,0,3,0,215,0,0,0,11,6,0,0,61,0,4,0,7,0,0,0,12,6,0,0,202,5,0,0,62,0,3,0,216,0,0,0,12,6,0,0,61,0,4,0,7,0,0,0,13,6,0,0,209,5,0,0,62,0,3,0,217,0,0,0,13,6,0,0,61,0,4,0,7,0,0,0,14,6,0,0,216,5,0,0,62,0,3,0,218,0,0,0,14,6,0,0,61,0,4,0,7,0,0,0,15,6,0,0,223,5,0,0,62,0,3,0,219,0,0,0,15,6,0,0,61,0,4,0,7,0,0,0,16,6,0,0,231,5,0,0,62,0,3,0,220,0,0,0,16,6,0,0,61,0,4,0,7,0,0,0,17,6,0,0,239,5,0,0,62,0,3,0,221,0,0,0,17,6,0,0,65,0,5,0,17,0,0,0,18,6,0,0,247,5,0,0,16,1,0,0,61,0,4,0,6,0,0,0,19,6,0,0,18,6,0,0,110,0,4,0,9,0,0,0,20,6,0,0,19,6,0,0,62,0,3,0,222,0,0,0,20,6,0,0,253,0,1,0,56,0,1,0,54,0,5,0,225,0,0,0,229,0,0,0,0,0,0,0,227,0,0,0,55,0,3,0,226,0,0,0,228,0,0,0,248,0,2,0,230,0,0,0,65,0,5,0,10,0,0,0,21,6,0,0,228,0,0,0,16,1,0,0,61,0,4,0,9,0,0,0,22,6,0,0,21,6,0,0,65,0,6,0,26,6,0,0,27,6,0,0,25,6,0,0,240,5,0,0,126,1,0,0,61,0,4,0,6,0,0,0,28,6,0,0,27,6,0,0,110,0,4,0,9,0,0,0,29,6,0,0,28,6,0,0,65,0,5,0,10,0,0,0,30,6,0,0,228,0,0,0,126,1,0,0,61,0,4,0,9,0,0,0,31,6,0,0,30,6,0,0,130,0,5,0,9,0,0,0,32,6,0,0,29,6,0,0,31,6,0,0,80,0,5,0,225,0,0,0,33,6,0,0,22,6,0,0,32,6,0,0,254,0,2,0,33,6,0,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_TILE_COMP_SPV_H diff --git a/src/shaders/generated/tile_frag.h b/src/shaders/generated/tile_frag.h index a7b998ca..7bccfd26 100644 --- a/src/shaders/generated/tile_frag.h +++ b/src/shaders/generated/tile_frag.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_FRAG_H namespace Pathfinder { - static uint8_t tile_frag[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,46,102,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,105,110,116,59,32,47,47,32,70,105,120,32,65,110,100,114,111,105,100,32,114,101,110,100,101,114,105,110,103,32,97,114,116,105,102,97,99,116,115,46,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,98,86,97,114,121,105,110,103,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,86,97,114,121,105,110,103,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,90,66,117,102,102,101,114,83,105,122,101,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,32,32,32,32,118,101,99,50,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,48,59,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,41,46,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,50,56,48,44,32,53,49,50,41,46,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,49,59,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,59,32,47,47,32,80,97,116,116,101,114,110,32,105,109,97,103,101,46,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,77,97,115,107,84,101,120,116,117,114,101,48,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,55,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,68,101,115,116,84,101,120,116,117,114,101,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,56,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,71,97,109,109,97,76,85,84,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,105,110,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,105,110,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,53,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,54,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,55,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,56,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,57,41,32,105,110,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,52,32,111,70,114,97,103,67,111,108,111,114,59,13,10,35,101,108,115,101,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,59,32,47,47,32,80,97,116,116,101,114,110,32,105,109,97,103,101,46,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,77,97,115,107,84,101,120,116,117,114,101,48,59,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,68,101,115,116,84,101,120,116,117,114,101,59,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,71,97,109,109,97,76,85,84,59,32,47,47,32,70,111,114,32,116,101,120,116,46,13,10,13,10,105,110,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,105,110,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,105,110,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,105,110,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,105,110,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,13,10,111,117,116,32,118,101,99,52,32,111,70,114,97,103,67,111,108,111,114,59,13,10,35,101,110,100,105,102,13,10,13,10,47,47,32,32,32,32,32,32,77,97,115,107,32,85,86,32,48,32,32,32,32,32,32,32,32,32,77,97,115,107,32,85,86,32,49,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,77,73,78,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,77,97,115,107,32,32,48,32,32,43,45,45,45,45,45,62,32,32,77,97,115,107,32,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,118,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,65,112,112,108,121,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,71,80,85,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,97,115,107,32,43,45,45,45,45,62,32,32,67,111,109,112,111,115,105,116,101,32,32,43,45,45,45,45,62,66,108,101,110,100,101,114,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,94,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,124,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,67,111,108,111,114,32,48,32,32,43,45,45,45,45,45,62,32,32,67,111,108,111,114,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,70,105,108,116,101,114,32,32,32,124,32,32,195,151,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,67,111,108,111,114,32,85,86,32,48,32,32,32,32,32,32,32,32,67,111,108,111,114,32,85,86,32,49,13,10,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,54,95,80,73,32,32,32,49,46,57,48,57,56,53,57,51,49,55,49,48,50,55,52,52,51,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,80,73,95,51,32,32,32,49,46,48,52,55,49,57,55,53,53,49,49,57,54,53,57,55,54,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,32,32,32,32,32,32,32,48,120,52,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,32,32,32,32,32,32,32,32,32,32,48,120,48,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,32,32,32,32,32,32,32,32,32,32,48,120,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,32,32,32,32,32,32,32,32,32,48,120,53,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,32,32,32,32,32,48,120,54,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,32,32,32,32,32,32,48,120,55,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,32,32,32,32,32,32,48,120,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,32,32,32,32,32,32,48,120,57,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,32,32,32,32,32,32,48,120,97,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,32,32,32,32,32,32,32,48,120,98,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,99,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,32,32,32,32,32,32,48,120,100,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,32,32,32,32,32,32,32,32,32,32,32,48,120,101,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,32,32,32,32,32,32,48,120,102,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,32,32,32,32,32,32,32,32,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,32,32,32,32,32,32,32,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,49,48,13,10,13,10,47,47,32,67,111,108,111,114,32,99,111,109,98,105,110,105,110,103,13,10,13,10,118,101,99,52,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,101,99,52,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,52,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,84,101,120,116,32,102,105,108,116,101,114,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,108,111,97,116,32,111,102,102,115,101,116,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,118,101,99,50,40,111,102,102,115,101,116,44,32,48,46,48,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,83,97,109,112,108,101,115,32,57,32,116,97,112,115,32,97,114,111,117,110,100,32,116,104,101,32,99,117,114,114,101,110,116,32,112,105,120,101,108,46,13,10,118,111,105,100,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,76,101,102,116,44,13,10,111,117,116,32,102,108,111,97,116,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,82,105,103,104,116,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,118,101,99,52,32,107,101,114,110,101,108,44,13,10,102,108,111,97,116,32,111,110,101,80,105,120,101,108,41,32,123,13,10,32,32,32,32,98,111,111,108,32,119,105,100,101,32,61,32,107,101,114,110,101,108,46,120,32,62,32,48,46,48,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,76,101,102,116,32,61,13,10,32,32,32,32,118,101,99,52,40,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,32,61,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,48,46,48,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,82,105,103,104,116,32,61,13,10,32,32,32,32,118,101,99,52,40,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,32,97,108,112,104,97,48,44,32,118,101,99,51,32,97,108,112,104,97,49,44,32,118,101,99,52,32,107,101,114,110,101,108,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,111,116,40,97,108,112,104,97,48,44,32,107,101,114,110,101,108,41,32,43,32,100,111,116,40,97,108,112,104,97,49,44,32,107,101,114,110,101,108,46,122,121,120,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,108,111,97,116,32,98,103,67,111,108,111,114,44,32,102,108,111,97,116,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,103,97,109,109,97,76,85,84,44,32,118,101,99,50,40,102,103,67,111,108,111,114,44,32,49,46,48,32,45,32,98,103,67,111,108,111,114,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,96,102,103,67,111,108,111,114,96,32,105,115,32,105,110,32,108,105,110,101,97,114,32,115,112,97,99,101,46,13,10,118,101,99,51,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,101,99,51,32,98,103,67,111,108,111,114,44,32,118,101,99,51,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,114,44,32,102,103,67,111,108,111,114,46,114,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,103,44,32,102,103,67,111,108,111,114,46,103,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,98,44,32,102,103,67,111,108,111,114,46,98,44,32,103,97,109,109,97,76,85,84,41,41,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,107,101,114,110,101,108,91,48,93,32,32,107,101,114,110,101,108,91,49,93,32,32,107,101,114,110,101,108,91,50,93,32,32,107,101,114,110,101,108,91,51,93,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,98,103,67,111,108,111,114,46,114,32,32,98,103,67,111,108,111,114,46,103,32,32,98,103,67,111,108,111,114,46,98,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,102,103,67,111,108,111,114,46,114,32,32,102,103,67,111,108,111,114,46,103,32,32,102,103,67,111,108,111,114,46,98,32,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,13,10,118,101,99,52,32,102,105,108,116,101,114,84,101,120,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,52,32,107,101,114,110,101,108,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,118,101,99,51,32,98,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,114,103,98,59,13,10,32,32,32,32,118,101,99,51,32,102,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,114,103,98,59,13,10,32,32,32,32,98,111,111,108,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,97,32,33,61,32,48,46,48,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,100,101,102,114,105,110,103,105,110,103,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,118,101,99,51,32,97,108,112,104,97,59,13,10,32,32,32,32,105,102,32,40,107,101,114,110,101,108,46,119,32,61,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,46,114,114,114,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,97,108,112,104,97,76,101,102,116,44,32,97,108,112,104,97,82,105,103,104,116,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,97,108,112,104,97,67,101,110,116,101,114,59,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,97,108,112,104,97,76,101,102,116,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,67,101,110,116,101,114,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,44,13,10,32,32,32,32,32,32,32,32,49,46,48,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,46,120,41,59,13,10,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,114,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,97,108,112,104,97,76,101,102,116,44,32,118,101,99,51,40,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,41,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,121,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,41,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,122,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,98,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,41,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,46,121,122,119,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,118,101,99,51,40,114,44,32,103,44,32,98,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,103,97,109,109,97,32,99,111,114,114,101,99,116,105,111,110,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,105,102,32,40,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,41,32,97,108,112,104,97,32,61,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,98,103,67,111,108,111,114,44,32,97,108,112,104,97,44,32,103,97,109,109,97,76,85,84,41,59,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,109,105,120,40,98,103,67,111,108,111,114,44,32,102,103,67,111,108,111,114,44,32,97,108,112,104,97,41,44,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,79,116,104,101,114,32,102,105,108,116,101,114,115,13,10,13,10,47,47,32,84,104,105,115,32,105,115,32,98,97,115,101,100,32,111,110,32,80,105,120,109,97,110,32,40,77,73,84,32,108,105,99,101,110,115,101,41,46,32,67,111,112,121,32,97,110,100,32,112,97,115,116,105,110,103,32,116,104,101,32,101,120,99,101,108,108,101,110,116,32,99,111,109,109,101,110,116,13,10,47,47,32,102,114,111,109,32,116,104,101,114,101,58,13,10,13,10,47,47,32,73,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,115,32,102,111,108,108,111,119,105,110,103,32,116,104,101,32,80,68,70,32,115,112,101,99,105,102,105,99,97,116,105,111,110,46,13,10,47,47,32,83,101,101,32,115,101,99,116,105,111,110,32,56,46,55,46,52,46,53,46,52,32,84,121,112,101,32,51,32,40,82,97,100,105,97,108,41,32,83,104,97,100,105,110,103,115,32,111,102,32,116,104,101,32,80,68,70,32,82,101,102,101,114,101,110,99,101,13,10,47,47,32,77,97,110,117,97,108,32,40,80,68,70,32,51,50,48,48,48,45,49,58,50,48,48,56,32,97,116,32,116,104,101,32,116,105,109,101,32,111,102,32,116,104,105,115,32,119,114,105,116,105,110,103,41,46,13,10,47,47,13,10,47,47,32,73,110,32,116,104,101,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,32,112,114,111,98,108,101,109,32,119,101,32,97,114,101,32,103,105,118,101,110,32,116,119,111,32,99,105,114,99,108,101,115,32,40,99,226,130,129,44,114,226,130,129,41,32,97,110,100,13,10,47,47,32,40,99,226,130,130,44,114,226,130,130,41,32,116,104,97,116,32,100,101,102,105,110,101,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,116,115,101,108,102,46,13,10,47,47,13,10,47,47,32,77,97,116,104,101,109,97,116,105,99,97,108,108,121,32,116,104,101,32,103,114,97,100,105,101,110,116,32,99,97,110,32,98,101,32,100,101,102,105,110,101,100,32,97,115,32,116,104,101,32,102,97,109,105,108,121,32,111,102,32,99,105,114,99,108,101,115,13,10,47,47,13,10,47,47,32,32,32,32,32,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,44,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,41,13,10,47,47,13,10,47,47,32,101,120,99,108,117,100,105,110,103,32,116,104,111,115,101,32,99,105,114,99,108,101,115,32,119,104,111,115,101,32,114,97,100,105,117,115,32,119,111,117,108,100,32,98,101,32,60,32,48,46,32,87,104,101,110,32,97,32,112,111,105,110,116,13,10,47,47,32,98,101,108,111,110,103,115,32,116,111,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,99,105,114,99,108,101,44,32,116,104,101,32,111,110,101,32,119,105,116,104,32,97,32,98,105,103,103,101,114,32,116,32,105,115,32,116,104,101,32,111,110,108,121,13,10,47,47,32,111,110,101,32,116,104,97,116,32,99,111,110,116,114,105,98,117,116,101,115,32,116,111,32,105,116,115,32,99,111,108,111,114,46,32,87,104,101,110,32,97,32,112,111,105,110,116,32,100,111,101,115,32,110,111,116,32,98,101,108,111,110,103,13,10,47,47,32,116,111,32,97,110,121,32,111,102,32,116,104,101,32,99,105,114,99,108,101,115,44,32,105,116,32,105,115,32,116,114,97,110,115,112,97,114,101,110,116,32,98,108,97,99,107,44,32,105,46,101,46,32,82,71,66,65,32,40,48,44,32,48,44,32,48,44,32,48,41,46,13,10,47,47,32,70,117,114,116,104,101,114,32,108,105,109,105,116,97,116,105,111,110,115,32,111,110,32,116,104,101,32,114,97,110,103,101,32,111,102,32,118,97,108,117,101,115,32,102,111,114,32,116,32,97,114,101,32,105,109,112,111,115,101,100,32,119,104,101,110,13,10,47,47,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,44,32,110,97,109,101,108,121,32,116,32,109,117,115,116,32,98,101,108,111,110,103,32,116,111,32,91,48,44,49,93,46,13,10,47,47,13,10,47,47,32,84,104,101,32,103,114,97,112,104,105,99,97,108,32,114,101,115,117,108,116,32,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,100,114,97,119,105,110,103,32,116,104,101,32,118,97,108,105,100,32,40,114,97,100,105,117,115,32,62,32,48,41,13,10,47,47,32,99,105,114,99,108,101,115,32,119,105,116,104,32,105,110,99,114,101,97,115,105,110,103,32,116,32,105,110,32,91,45,226,136,158,44,32,43,226,136,158,93,32,40,111,114,32,105,110,32,91,48,44,49,93,32,105,102,32,116,104,101,32,103,114,97,100,105,101,110,116,13,10,47,47,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,41,32,117,115,105,110,103,32,83,79,85,82,67,69,32,111,112,101,114,97,116,111,114,32,99,111,109,112,111,115,105,116,105,111,110,46,13,10,47,47,13,10,47,47,32,73,116,32,108,111,111,107,115,32,108,105,107,101,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,116,111,119,97,114,100,115,32,116,104,101,32,118,105,101,119,101,114,32,105,102,32,116,104,101,32,101,110,100,105,110,103,32,99,105,114,99,108,101,13,10,47,47,32,105,115,32,115,109,97,108,108,101,114,32,116,104,97,110,32,116,104,101,32,115,116,97,114,116,105,110,103,32,111,110,101,44,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,105,110,115,105,100,101,32,116,104,101,32,112,97,103,101,32,105,102,13,10,47,47,32,116,104,101,32,115,116,97,114,116,105,110,103,32,99,105,114,99,108,101,32,105,115,32,116,104,101,32,115,109,97,108,108,101,114,32,111,110,101,32,97,110,100,32,108,105,107,101,32,97,32,99,121,108,105,110,100,101,114,32,105,102,32,116,104,101,121,13,10,47,47,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,114,97,100,105,117,115,46,13,10,47,47,13,10,47,47,32,87,104,97,116,32,119,101,32,97,99,116,117,97,108,108,121,32,100,111,32,105,115,44,32,103,105,118,101,110,32,116,104,101,32,112,111,105,110,116,32,119,104,111,115,101,32,99,111,108,111,114,32,119,101,32,97,114,101,32,105,110,116,101,114,101,115,116,101,100,13,10,47,47,32,105,110,44,32,99,111,109,112,117,116,101,32,116,104,101,32,116,32,118,97,108,117,101,115,32,102,111,114,32,116,104,97,116,32,112,111,105,110,116,44,32,115,111,108,118,105,110,103,32,102,111,114,32,116,32,105,110,58,13,10,47,47,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,32,45,32,112,41,32,61,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,13,10,47,47,13,10,47,47,32,76,101,116,39,115,32,114,101,119,114,105,116,101,32,105,116,32,105,110,32,97,32,115,105,109,112,108,101,114,32,119,97,121,44,32,98,121,32,100,101,102,105,110,105,110,103,32,115,111,109,101,32,97,117,120,105,108,105,97,114,121,13,10,47,47,32,118,97,114,105,97,98,108,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,99,100,32,61,32,99,226,130,130,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,112,100,32,61,32,112,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,100,114,32,61,32,114,226,130,130,32,45,32,114,226,130,129,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,116,194,183,99,100,32,45,32,112,100,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,119,104,105,99,104,32,97,99,116,117,97,108,108,121,32,109,101,97,110,115,13,10,47,47,13,10,47,47,32,32,32,32,32,104,121,112,111,116,40,116,194,183,99,100,120,32,45,32,112,100,120,44,32,116,194,183,99,100,121,32,45,32,112,100,121,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,111,114,13,10,47,47,13,10,47,47,32,32,32,32,32,226,142,183,40,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,46,13,10,47,47,13,10,47,47,32,73,102,32,119,101,32,105,109,112,111,115,101,32,40,97,115,32,115,116,97,116,101,100,32,101,97,114,108,105,101,114,41,32,116,104,97,116,32,114,226,130,129,32,43,32,116,194,183,100,114,32,226,137,165,32,48,44,32,105,116,32,98,101,99,111,109,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,32,61,32,40,114,226,130,129,32,43,32,116,194,183,100,114,41,194,178,13,10,47,47,13,10,47,47,32,119,104,101,114,101,32,119,101,32,99,97,110,32,97,99,116,117,97,108,108,121,32,101,120,112,97,110,100,32,116,104,101,32,115,113,117,97,114,101,115,32,97,110,100,32,115,111,108,118,101,32,102,111,114,32,116,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,194,178,99,100,120,194,178,32,45,32,50,116,194,183,99,100,120,194,183,112,100,120,32,43,32,112,100,120,194,178,32,43,32,116,194,178,99,100,121,194,178,32,45,32,50,116,194,183,99,100,121,194,183,112,100,121,32,43,32,112,100,121,194,178,32,61,13,10,47,47,32,32,32,32,32,32,32,61,32,114,226,130,129,194,178,32,43,32,50,194,183,114,226,130,129,194,183,116,194,183,100,114,32,43,32,116,194,178,194,183,100,114,194,178,13,10,47,47,13,10,47,47,32,32,32,32,32,40,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,41,116,194,178,32,45,32,50,40,99,100,120,194,183,112,100,120,32,43,32,99,100,121,194,183,112,100,121,32,43,32,114,226,130,129,194,183,100,114,41,116,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,40,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,41,32,61,32,48,13,10,47,47,13,10,47,47,32,32,32,32,32,65,32,61,32,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,13,10,47,47,32,32,32,32,32,66,32,61,32,112,100,120,194,183,99,100,120,32,43,32,112,100,121,194,183,99,100,121,32,43,32,114,226,130,129,194,183,100,114,13,10,47,47,32,32,32,32,32,67,32,61,32,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,13,10,47,47,32,32,32,32,32,65,116,194,178,32,45,32,50,66,116,32,43,32,67,32,61,32,48,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,115,32,40,117,110,108,101,115,115,32,116,104,101,32,101,113,117,97,116,105,111,110,32,100,101,103,101,110,101,114,97,116,101,115,32,98,101,99,97,117,115,101,32,111,102,32,65,32,61,32,48,41,32,97,114,101,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,32,61,32,40,66,32,194,177,32,226,142,183,40,66,194,178,32,45,32,65,194,183,67,41,41,32,47,32,65,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,32,119,101,32,97,114,101,32,103,111,105,110,103,32,116,111,32,112,114,101,102,101,114,32,105,115,32,116,104,101,32,98,105,103,103,101,114,32,111,110,101,44,32,117,110,108,101,115,115,32,116,104,101,13,10,47,47,32,114,97,100,105,117,115,32,97,115,115,111,99,105,97,116,101,100,32,116,111,32,105,116,32,105,115,32,110,101,103,97,116,105,118,101,32,40,111,114,32,105,116,32,102,97,108,108,115,32,111,117,116,115,105,100,101,32,116,104,101,32,118,97,108,105,100,32,116,13,10,47,47,32,114,97,110,103,101,41,46,13,10,47,47,13,10,47,47,32,65,100,100,105,116,105,111,110,97,108,32,111,98,115,101,114,118,97,116,105,111,110,115,32,40,117,115,101,102,117,108,32,102,111,114,32,111,112,116,105,109,105,122,97,116,105,111,110,115,41,58,13,10,47,47,32,65,32,100,111,101,115,32,110,111,116,32,100,101,112,101,110,100,32,111,110,32,112,13,10,47,47,13,10,47,47,32,65,32,60,32,48,32,226,159,186,32,111,110,101,32,111,102,32,116,104,101,32,116,119,111,32,99,105,114,99,108,101,115,32,99,111,109,112,108,101,116,101,108,121,32,99,111,110,116,97,105,110,115,32,116,104,101,32,111,116,104,101,114,32,111,110,101,13,10,47,47,32,32,32,226,159,186,32,102,111,114,32,101,118,101,114,121,32,112,44,32,116,104,101,32,114,97,100,105,105,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,101,32,116,119,111,32,116,32,115,111,108,117,116,105,111,110,115,32,104,97,118,101,13,10,47,47,32,32,32,32,32,32,32,111,112,112,111,115,105,116,101,32,115,105,103,110,13,10,47,47,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,108,105,110,101,70,114,111,109,46,120,32,32,108,105,110,101,70,114,111,109,46,121,32,32,108,105,110,101,86,101,99,116,111,114,46,120,32,32,32,32,108,105,110,101,86,101,99,116,111,114,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,114,97,100,105,105,46,120,32,32,32,32,32,114,97,100,105,105,46,121,32,32,32,32,32,117,118,79,114,105,103,105,110,46,120,32,32,32,32,32,32,117,118,79,114,105,103,105,110,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,118,101,99,50,32,108,105,110,101,70,114,111,109,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,44,32,108,105,110,101,86,101,99,116,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,114,97,100,105,105,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,44,32,117,118,79,114,105,103,105,110,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,122,119,59,13,10,13,10,32,32,32,32,118,101,99,50,32,100,80,32,61,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,108,105,110,101,70,114,111,109,44,32,100,67,32,61,32,108,105,110,101,86,101,99,116,111,114,59,13,10,32,32,32,32,102,108,111,97,116,32,100,82,32,61,32,114,97,100,105,105,46,121,32,45,32,114,97,100,105,105,46,120,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,100,111,116,40,100,67,44,32,100,67,41,32,45,32,100,82,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,98,32,61,32,100,111,116,40,100,80,44,32,100,67,41,32,43,32,114,97,100,105,105,46,120,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,100,111,116,40,100,80,44,32,100,80,41,32,45,32,114,97,100,105,105,46,120,32,42,32,114,97,100,105,105,46,120,59,13,10,32,32,32,32,102,108,111,97,116,32,100,105,115,99,114,105,109,32,61,32,98,32,42,32,98,32,45,32,97,32,42,32,99,59,13,10,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,105,102,32,40,100,105,115,99,114,105,109,32,33,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,116,115,32,61,32,118,101,99,50,40,115,113,114,116,40,100,105,115,99,114,105,109,41,32,42,32,118,101,99,50,40,49,46,48,44,32,45,49,46,48,41,32,43,32,118,101,99,50,40,98,41,41,32,47,32,118,101,99,50,40,97,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,115,46,120,32,62,32,116,115,46,121,41,13,10,32,32,32,32,32,32,32,32,116,115,32,61,32,116,115,46,121,120,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,116,32,61,32,116,115,46,120,32,62,61,32,48,46,48,32,63,32,116,115,46,120,32,58,32,116,115,46,121,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,117,118,79,114,105,103,105,110,32,43,32,118,101,99,50,40,116,44,32,48,46,48,41,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,115,114,99,79,102,102,115,101,116,46,120,32,32,32,115,114,99,79,102,102,115,101,116,46,121,32,32,32,115,117,112,112,111,114,116,32,32,32,32,32,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,103,97,117,115,115,67,111,101,102,102,46,120,32,32,103,97,117,115,115,67,111,101,102,102,46,121,32,32,103,97,117,115,115,67,111,101,102,102,46,122,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,66,108,117,114,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,105,110,116,32,115,117,112,112,111,114,116,32,61,32,105,110,116,40,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,103,97,117,115,115,67,111,101,102,102,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,122,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,117,112,32,111,117,114,32,105,110,99,114,101,109,101,110,116,97,108,32,99,97,108,99,117,108,97,116,105,111,110,46,13,10,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,32,47,47,32,119,101,105,103,104,116,91,48,93,13,10,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,99,111,108,111,114,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,42,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,13,10,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,99,111,109,109,111,110,32,116,114,105,99,107,32,116,104,97,116,32,108,101,116,115,32,117,115,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,102,105,108,116,101,114,105,110,103,32,104,97,114,100,119,97,114,101,32,116,111,32,101,118,97,108,117,97,116,101,32,116,119,111,13,10,32,32,32,32,47,47,32,116,101,120,101,108,115,32,97,116,32,97,32,116,105,109,101,46,32,84,104,101,32,98,97,115,105,99,32,112,114,105,110,99,105,112,108,101,32,105,115,32,116,104,97,116,44,32,105,102,32,99,48,32,97,110,100,32,99,49,32,97,114,101,32,99,111,108,111,114,115,32,111,102,32,97,100,106,97,99,101,110,116,32,116,101,120,101,108,115,13,10,32,32,32,32,47,47,32,97,110,100,32,107,48,32,97,110,100,32,107,49,32,97,114,101,32,97,114,98,105,116,114,97,114,121,32,102,97,99,116,111,114,115,44,32,116,104,101,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,13,10,32,32,32,32,47,47,32,96,40,107,48,32,43,32,107,49,41,32,42,32,108,101,114,112,40,99,48,44,32,99,49,44,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,41,96,46,32,76,105,110,101,97,114,32,105,110,116,101,114,112,111,108,97,116,105,111,110,44,32,97,115,32,112,101,114,102,111,114,109,101,100,32,98,121,32,116,104,101,13,10,32,32,32,32,47,47,32,116,101,120,116,117,114,105,110,103,32,104,97,114,100,119,97,114,101,32,119,104,101,110,32,115,97,109,112,108,105,110,103,32,97,100,106,97,99,101,110,116,32,112,105,120,101,108,115,32,105,110,32,111,110,101,32,100,105,114,101,99,116,105,111,110,44,32,101,118,97,108,117,97,116,101,115,13,10,32,32,32,32,47,47,32,96,108,101,114,112,40,99,48,44,32,99,49,44,32,116,41,96,32,119,104,101,114,101,32,116,32,105,115,32,116,104,101,32,111,102,102,115,101,116,32,102,114,111,109,32,116,104,101,32,116,101,120,101,108,32,119,105,116,104,32,99,111,108,111,114,32,96,99,48,96,46,32,84,111,32,101,118,97,108,117,97,116,101,32,116,104,101,13,10,32,32,32,32,47,47,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,44,32,116,104,101,114,101,102,111,114,101,44,32,119,101,32,99,97,110,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,104,97,114,100,119,97,114,101,32,116,111,32,112,101,114,102,111,114,109,32,108,105,110,101,97,114,13,10,32,32,32,32,47,47,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,116,104,32,96,116,32,61,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,96,46,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,105,32,61,32,49,59,32,105,32,60,61,32,115,117,112,112,111,114,116,59,32,105,32,43,61,32,50,41,32,123,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,43,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,32,61,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,42,32,40,102,108,111,97,116,40,105,41,32,43,32,103,97,117,115,115,67,111,101,102,102,46,120,32,47,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,41,59,13,10,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,43,61,32,40,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,115,114,99,79,102,102,115,101,116,41,32,43,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,115,114,99,79,102,102,115,101,116,41,41,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,83,117,109,32,43,61,32,50,46,48,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,32,47,32,103,97,117,115,115,83,117,109,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,32,123,13,10,32,32,32,32,118,101,99,52,32,115,114,99,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,109,97,116,52,32,99,111,108,111,114,77,97,116,114,105,120,32,61,32,109,97,116,52,40,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,32,102,105,108,116,101,114,80,97,114,97,109,115,51,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,77,97,116,114,105,120,32,42,32,115,114,99,67,111,108,111,114,32,43,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,78,111,110,101,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,40,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,105,110,116,32,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,66,108,117,114,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,84,101,120,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,78,111,110,101,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,99,111,108,111,114,84,101,120,116,117,114,101,41,59,13,10,125,13,10,13,10,47,47,32,67,111,109,112,111,115,105,116,105,110,103,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,98,118,101,99,51,32,99,111,110,100,44,32,118,101,99,51,32,105,102,84,114,117,101,44,32,118,101,99,51,32,105,102,70,97,108,115,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,99,111,110,100,46,120,32,63,32,105,102,84,114,117,101,46,120,32,58,32,105,102,70,97,108,115,101,46,120,44,13,10,32,32,32,32,99,111,110,100,46,121,32,63,32,105,102,84,114,117,101,46,121,32,58,32,105,102,70,97,108,115,101,46,121,44,13,10,32,32,32,32,99,111,110,100,46,122,32,63,32,105,102,84,114,117,101,46,122,32,58,32,105,102,70,97,108,115,101,46,122,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,108,111,97,116,32,110,117,109,44,32,102,108,111,97,116,32,100,101,110,111,109,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,110,111,109,32,33,61,32,48,46,48,32,63,32,110,117,109,32,47,32,100,101,110,111,109,32,58,32,48,46,48,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,98,118,101,99,51,32,100,101,115,116,90,101,114,111,32,61,32,101,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,48,41,41,44,32,115,114,99,79,110,101,32,61,32,101,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,100,101,115,116,90,101,114,111,44,13,10,32,32,32,32,118,101,99,51,40,48,46,48,41,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,115,114,99,79,110,101,44,32,118,101,99,51,40,49,46,48,41,44,32,100,101,115,116,67,111,108,111,114,32,47,32,40,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,41,41,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,72,83,76,95,116,111,95,82,71,66,95,97,108,116,101,114,110,97,116,105,118,101,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,101,99,51,32,104,115,108,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,104,115,108,46,121,32,42,32,109,105,110,40,104,115,108,46,122,44,32,49,46,48,32,45,32,104,115,108,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,107,115,32,61,32,109,111,100,40,118,101,99,51,40,48,46,48,44,32,56,46,48,44,32,52,46,48,41,32,43,32,118,101,99,51,40,104,115,108,46,120,32,42,32,70,82,65,67,95,54,95,80,73,41,44,32,49,50,46,48,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,104,115,108,46,122,122,122,32,45,32,99,108,97,109,112,40,109,105,110,40,107,115,32,45,32,118,101,99,51,40,51,46,48,41,44,32,118,101,99,51,40,57,46,48,41,32,45,32,107,115,41,44,32,45,49,46,48,44,32,49,46,48,41,32,42,32,97,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,70,114,111,109,95,82,71,66,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,101,99,51,32,114,103,98,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,118,32,61,32,109,97,120,40,109,97,120,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,44,32,120,77,105,110,32,61,32,109,105,110,40,109,105,110,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,118,32,45,32,120,77,105,110,44,32,108,32,61,32,109,105,120,40,120,77,105,110,44,32,118,44,32,48,46,53,41,59,13,10,32,32,32,32,118,101,99,51,32,116,101,114,109,115,32,61,32,114,103,98,46,114,32,61,61,32,118,32,63,32,118,101,99,51,40,48,46,48,44,32,114,103,98,46,103,98,41,32,58,13,10,32,32,32,32,114,103,98,46,103,32,61,61,32,118,32,63,32,118,101,99,51,40,50,46,48,44,32,114,103,98,46,98,114,41,32,58,13,10,32,32,32,32,118,101,99,51,40,52,46,48,44,32,114,103,98,46,114,103,41,59,13,10,32,32,32,32,102,108,111,97,116,32,104,32,61,32,70,82,65,67,95,80,73,95,51,32,42,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,116,101,114,109,115,46,120,32,42,32,99,32,43,32,116,101,114,109,115,46,121,32,45,32,116,101,114,109,115,46,122,44,32,99,41,59,13,10,32,32,32,32,102,108,111,97,116,32,115,32,61,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,99,44,32,118,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,104,44,32,115,44,32,108,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,49,46,48,41,41,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,118,101,99,51,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,61,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,50,53,41,41,44,13,10,32,32,32,32,40,40,118,101,99,51,40,49,54,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,45,32,49,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,43,32,52,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,44,13,10,32,32,32,32,115,113,114,116,40,100,101,115,116,67,111,108,111,114,41,41,59,13,10,32,32,32,32,118,101,99,51,32,102,97,99,116,111,114,32,61,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,40,115,114,99,67,111,108,111,114,32,42,32,50,46,48,32,45,32,49,46,48,41,32,42,32,102,97,99,116,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,32,100,101,115,116,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,115,114,99,67,111,108,111,114,46,121,44,32,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,32,115,114,99,67,111,108,111,114,46,121,44,32,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,100,101,115,116,67,111,108,111,114,46,121,44,32,115,114,99,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,115,114,99,67,111,108,111,114,44,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,120,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,49,46,48,41,32,45,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,98,115,40,100,101,115,116,67,111,108,111,114,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,99,111,109,112,111,115,105,116,101,72,83,76,40,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,115,114,99,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,111,112,41,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,52,32,99,111,109,112,111,115,105,116,101,40,118,101,99,52,32,115,114,99,67,111,108,111,114,44,13,10,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,105,102,32,40,111,112,32,61,61,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,41,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,70,73,88,77,69,40,112,99,119,97,108,116,111,110,41,58,32,87,104,97,116,32,115,104,111,117,108,100,32,116,104,101,32,111,117,116,112,117,116,32,97,108,112,104,97,32,98,101,32,104,101,114,101,63,13,10,32,32,32,32,118,101,99,50,32,100,101,115,116,84,101,120,67,111,111,114,100,32,61,32,102,114,97,103,67,111,111,114,100,32,47,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,52,32,100,101,115,116,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,100,101,115,116,84,101,120,116,117,114,101,44,32,100,101,115,116,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,118,101,99,51,32,98,108,101,110,100,101,100,82,71,66,32,61,32,99,111,109,112,111,115,105,116,101,82,71,66,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,114,103,98,44,32,111,112,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,97,32,42,32,40,49,46,48,32,45,32,100,101,115,116,67,111,108,111,114,46,97,41,32,42,32,115,114,99,67,111,108,111,114,46,114,103,98,32,43,13,10,32,32,32,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,32,42,32,98,108,101,110,100,101,100,82,71,66,32,43,13,10,32,32,32,32,40,49,46,48,32,45,32,115,114,99,67,111,108,111,114,46,97,41,32,42,32,100,101,115,116,67,111,108,111,114,46,114,103,98,44,13,10,32,32,32,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,77,97,115,107,115,13,10,102,108,111,97,116,32,115,97,109,112,108,101,77,97,115,107,40,13,10,32,32,32,32,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,44,13,10,32,32,32,32,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,41,32,123,13,10,32,32,32,32,105,102,32,40,109,97,115,107,67,116,114,108,32,61,61,32,48,41,32,114,101,116,117,114,110,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,105,118,101,99,50,32,109,97,115,107,84,101,120,67,111,111,114,100,73,32,61,32,105,118,101,99,50,40,102,108,111,111,114,40,109,97,115,107,84,101,120,67,111,111,114,100,46,120,121,41,41,59,13,10,32,32,32,32,118,101,99,52,32,116,101,120,101,108,32,61,32,116,101,120,116,117,114,101,40,109,97,115,107,84,101,120,116,117,114,101,44,32,40,118,101,99,50,40,109,97,115,107,84,101,120,67,111,111,114,100,73,32,47,32,105,118,101,99,50,40,49,44,32,52,41,41,32,43,32,48,46,53,41,32,47,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,99,111,118,101,114,97,103,101,32,61,32,116,101,120,101,108,91,109,97,115,107,84,101,120,67,111,111,114,100,73,46,121,32,37,32,52,93,32,43,32,109,97,115,107,84,101,120,67,111,111,114,100,46,122,59,13,10,13,10,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,41,32,33,61,32,48,41,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,97,98,115,40,99,111,118,101,114,97,103,101,41,59,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,49,46,48,32,45,32,97,98,115,40,49,46,48,32,45,32,109,111,100,40,99,111,118,101,114,97,103,101,44,32,50,46,48,41,41,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,109,97,115,107,65,108,112,104,97,44,32,99,111,118,101,114,97,103,101,41,59,13,10,125,13,10,13,10,47,47,32,77,97,105,110,32,102,117,110,99,116,105,111,110,13,10,118,101,99,52,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,32,32,32,32,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,105,110,116,32,99,116,114,108,44,13,10,32,32,32,32,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,105,110,116,32,116,105,108,101,67,116,114,108,41,32,123,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,97,108,112,104,97,32,102,114,111,109,32,116,104,101,32,109,97,115,107,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,48,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,32,32,32,32,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,32,61,32,49,46,48,59,13,10,32,32,32,32,109,97,115,107,65,108,112,104,97,32,61,32,115,97,109,112,108,101,77,97,115,107,40,109,97,115,107,65,108,112,104,97,44,32,109,97,115,107,84,101,120,116,117,114,101,48,44,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,32,109,97,115,107,67,116,114,108,48,41,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,98,97,115,101,32,99,111,108,111,114,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,99,111,109,98,105,110,101,32,102,108,97,103,46,13,10,32,32,32,32,105,110,116,32,99,111,108,111,114,48,67,111,109,98,105,110,101,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,59,13,10,13,10,32,32,32,32,47,47,32,68,111,32,99,111,109,98,105,110,105,110,103,46,13,10,32,32,32,32,105,102,32,40,99,111,108,111,114,48,67,111,109,98,105,110,101,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,102,105,108,116,101,114,32,102,108,97,103,46,13,10,32,32,32,32,32,32,32,32,105,110,116,32,99,111,108,111,114,48,70,105,108,116,101,114,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,68,111,32,102,105,108,116,101,114,105,110,103,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,99,111,108,111,114,48,32,61,32,102,105,108,116,101,114,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,48,70,105,108,116,101,114,13,10,32,32,32,32,32,32,32,32,41,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,99,111,108,111,114,44,32,99,111,108,111,114,48,44,32,99,111,108,111,114,48,67,111,109,98,105,110,101,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,109,97,115,107,32,97,108,112,104,97,46,13,10,32,32,32,32,99,111,108,111,114,46,97,32,42,61,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,99,111,109,112,111,115,105,116,101,46,13,10,32,32,32,32,105,110,116,32,99,111,109,112,111,115,105,116,101,79,112,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,59,13,10,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,112,111,115,105,116,101,40,99,111,108,111,114,44,32,100,101,115,116,84,101,120,116,117,114,101,44,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,32,102,114,97,103,67,111,111,114,100,44,32,99,111,109,112,111,115,105,116,101,79,112,41,59,13,10,13,10,32,32,32,32,47,47,32,80,114,101,109,117,108,116,105,112,108,121,32,97,108,112,104,97,46,13,10,32,32,32,32,99,111,108,111,114,46,114,103,98,32,42,61,32,99,111,108,111,114,46,97,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,111,70,114,97,103,67,111,108,111,114,32,61,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,103,108,95,70,114,97,103,67,111,111,114,100,46,120,121,44,13,10,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,117,68,101,115,116,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,117,71,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,105,110,116,40,118,67,116,114,108,41,44,13,10,32,32,32,32,32,32,32,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,118,66,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,105,110,116,40,118,84,105,108,101,67,116,114,108,41,13,10,32,32,32,32,41,59,13,10,125,13,10}; + static uint8_t tile_frag[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,46,102,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,102,108,111,97,116,59,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,105,110,116,59,32,47,47,32,70,105,120,32,65,110,100,114,111,105,100,32,114,101,110,100,101,114,105,110,103,32,97,114,116,105,102,97,99,116,115,46,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,50,56,48,44,32,53,49,50,41,46,13,10,32,32,32,32,118,101,99,50,32,117,90,66,117,102,102,101,114,83,105,122,101,59,32,47,47,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,68,121,110,97,109,105,99,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,32,42,32,112,97,103,101,95,99,111,117,110,116,41,46,13,10,32,32,32,32,118,101,99,50,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,59,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,68,115,116,32,102,114,97,109,101,98,117,102,102,101,114,46,13,10,32,32,32,32,109,97,116,52,32,117,84,114,97,110,115,102,111,114,109,59,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,59,32,47,47,32,80,97,116,116,101,114,110,32,105,109,97,103,101,46,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,77,97,115,107,84,101,120,116,117,114,101,48,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,53,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,68,101,115,116,84,101,120,116,117,114,101,59,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,54,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,71,97,109,109,97,76,85,84,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,105,110,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,105,110,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,53,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,54,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,55,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,56,41,32,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,57,41,32,105,110,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,52,32,111,70,114,97,103,67,111,108,111,114,59,13,10,35,101,108,115,101,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,59,32,47,47,32,80,97,116,116,101,114,110,32,105,109,97,103,101,46,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,77,97,115,107,84,101,120,116,117,114,101,48,59,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,68,101,115,116,84,101,120,116,117,114,101,59,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,71,97,109,109,97,76,85,84,59,32,47,47,32,70,111,114,32,116,101,120,116,46,13,10,13,10,105,110,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,105,110,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,105,110,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,105,110,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,105,110,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,105,110,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,13,10,111,117,116,32,118,101,99,52,32,111,70,114,97,103,67,111,108,111,114,59,13,10,35,101,110,100,105,102,13,10,13,10,47,47,32,32,32,32,32,32,77,97,115,107,32,85,86,32,48,32,32,32,32,32,32,32,32,32,77,97,115,107,32,85,86,32,49,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,118,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,77,73,78,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,77,97,115,107,32,32,48,32,32,43,45,45,45,45,45,62,32,32,77,97,115,107,32,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,118,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,65,112,112,108,121,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,71,80,85,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,77,97,115,107,32,43,45,45,45,45,62,32,32,67,111,109,112,111,115,105,116,101,32,32,43,45,45,45,45,62,66,108,101,110,100,101,114,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,94,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,43,32,32,32,32,32,32,124,32,32,32,32,32,32,32,43,45,45,45,45,45,45,45,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,67,111,108,111,114,32,48,32,32,43,45,45,45,45,45,62,32,32,67,111,108,111,114,32,49,32,32,43,45,45,45,45,45,45,43,13,10,47,47,32,32,32,32,124,32,32,70,105,108,116,101,114,32,32,32,124,32,32,195,151,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,32,32,32,32,32,43,45,45,45,45,45,94,45,45,45,45,45,43,13,10,47,47,32,32,32,32,32,32,32,32,32,32,124,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,13,10,47,47,32,32,32,32,32,32,32,32,32,32,43,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,43,13,10,47,47,32,32,32,32,32,67,111,108,111,114,32,85,86,32,48,32,32,32,32,32,32,32,32,67,111,108,111,114,32,85,86,32,49,13,10,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,54,95,80,73,32,32,32,49,46,57,48,57,56,53,57,51,49,55,49,48,50,55,52,52,51,13,10,35,100,101,102,105,110,101,32,70,82,65,67,95,80,73,95,51,32,32,32,49,46,48,52,55,49,57,55,53,53,49,49,57,54,53,57,55,54,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,69,86,69,78,95,79,68,68,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,32,32,32,32,32,48,120,50,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,32,32,32,32,32,32,32,48,120,52,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,32,32,32,32,32,32,32,32,32,32,32,32,48,120,102,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,32,32,32,32,32,32,32,32,32,32,48,120,48,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,32,32,32,32,32,32,32,32,48,120,49,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,32,32,32,32,32,32,32,32,32,32,48,120,50,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,32,32,32,32,32,32,32,32,32,48,120,51,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,32,32,32,32,32,32,32,32,32,32,48,120,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,32,32,32,32,32,32,32,32,32,48,120,53,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,32,32,32,32,32,48,120,54,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,32,32,32,32,32,32,48,120,55,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,32,32,32,32,32,32,48,120,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,32,32,32,32,32,32,48,120,57,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,32,32,32,32,32,32,48,120,97,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,32,32,32,32,32,32,32,48,120,98,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,32,32,32,32,32,32,32,32,32,32,32,32,32,48,120,99,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,32,32,32,32,32,32,48,120,100,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,32,32,32,32,32,32,32,32,32,32,32,48,120,101,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,32,32,32,32,32,32,48,120,102,13,10,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,32,32,32,32,32,32,32,32,52,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,32,32,32,32,32,32,32,56,13,10,35,100,101,102,105,110,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,32,32,32,32,32,32,32,32,32,32,49,48,13,10,13,10,47,47,32,67,111,108,111,114,32,99,111,109,98,105,110,105,110,103,13,10,13,10,118,101,99,52,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,101,99,52,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,52,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,82,67,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,68,69,83,84,95,73,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,84,101,120,116,32,102,105,108,116,101,114,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,108,111,97,116,32,111,102,102,115,101,116,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,118,101,99,50,40,111,102,102,115,101,116,44,32,48,46,48,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,83,97,109,112,108,101,115,32,57,32,116,97,112,115,32,97,114,111,117,110,100,32,116,104,101,32,99,117,114,114,101,110,116,32,112,105,120,101,108,46,13,10,118,111,105,100,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,76,101,102,116,44,13,10,111,117,116,32,102,108,111,97,116,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,44,13,10,111,117,116,32,118,101,99,52,32,111,117,116,65,108,112,104,97,82,105,103,104,116,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,118,101,99,52,32,107,101,114,110,101,108,44,13,10,102,108,111,97,116,32,111,110,101,80,105,120,101,108,41,32,123,13,10,32,32,32,32,98,111,111,108,32,119,105,100,101,32,61,32,107,101,114,110,101,108,46,120,32,62,32,48,46,48,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,76,101,102,116,32,61,13,10,32,32,32,32,118,101,99,52,40,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,45,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,67,101,110,116,101,114,32,61,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,48,46,48,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,111,117,116,65,108,112,104,97,82,105,103,104,116,32,61,13,10,32,32,32,32,118,101,99,52,40,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,49,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,50,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,51,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,44,13,10,32,32,32,32,119,105,100,101,32,63,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,52,46,48,32,42,32,111,110,101,80,105,120,101,108,44,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,58,32,48,46,48,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,32,97,108,112,104,97,48,44,32,118,101,99,51,32,97,108,112,104,97,49,44,32,118,101,99,52,32,107,101,114,110,101,108,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,111,116,40,97,108,112,104,97,48,44,32,107,101,114,110,101,108,41,32,43,32,100,111,116,40,97,108,112,104,97,49,44,32,107,101,114,110,101,108,46,122,121,120,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,108,111,97,116,32,98,103,67,111,108,111,114,44,32,102,108,111,97,116,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,103,97,109,109,97,76,85,84,44,32,118,101,99,50,40,102,103,67,111,108,111,114,44,32,49,46,48,32,45,32,98,103,67,111,108,111,114,41,41,46,114,59,13,10,125,13,10,13,10,47,47,32,96,102,103,67,111,108,111,114,96,32,105,115,32,105,110,32,108,105,110,101,97,114,32,115,112,97,99,101,46,13,10,118,101,99,51,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,101,99,51,32,98,103,67,111,108,111,114,44,32,118,101,99,51,32,102,103,67,111,108,111,114,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,114,44,32,102,103,67,111,108,111,114,46,114,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,103,44,32,102,103,67,111,108,111,114,46,103,44,32,103,97,109,109,97,76,85,84,41,44,13,10,32,32,32,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,98,103,67,111,108,111,114,46,98,44,32,102,103,67,111,108,111,114,46,98,44,32,103,97,109,109,97,76,85,84,41,41,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,107,101,114,110,101,108,91,48,93,32,32,107,101,114,110,101,108,91,49,93,32,32,107,101,114,110,101,108,91,50,93,32,32,107,101,114,110,101,108,91,51,93,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,98,103,67,111,108,111,114,46,114,32,32,98,103,67,111,108,111,114,46,103,32,32,98,103,67,111,108,111,114,46,98,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,102,103,67,111,108,111,114,46,114,32,32,102,103,67,111,108,111,114,46,103,32,32,102,103,67,111,108,111,114,46,98,32,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,13,10,118,101,99,52,32,102,105,108,116,101,114,84,101,120,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,52,32,107,101,114,110,101,108,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,118,101,99,51,32,98,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,114,103,98,59,13,10,32,32,32,32,118,101,99,51,32,102,103,67,111,108,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,114,103,98,59,13,10,32,32,32,32,98,111,111,108,32,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,46,97,32,33,61,32,48,46,48,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,100,101,102,114,105,110,103,105,110,103,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,118,101,99,51,32,97,108,112,104,97,59,13,10,32,32,32,32,105,102,32,40,107,101,114,110,101,108,46,119,32,61,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,46,114,114,114,59,13,10,32,32,32,32,125,32,101,108,115,101,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,97,108,112,104,97,76,101,102,116,44,32,97,108,112,104,97,82,105,103,104,116,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,97,108,112,104,97,67,101,110,116,101,114,59,13,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,97,108,112,104,97,76,101,102,116,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,67,101,110,116,101,114,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,44,13,10,32,32,32,32,32,32,32,32,49,46,48,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,46,120,41,59,13,10,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,114,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,97,108,112,104,97,76,101,102,116,44,32,118,101,99,51,40,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,41,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,121,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,41,44,32,97,108,112,104,97,82,105,103,104,116,46,120,121,122,44,32,107,101,114,110,101,108,41,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,98,32,61,32,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,101,99,52,40,97,108,112,104,97,76,101,102,116,46,122,119,44,32,97,108,112,104,97,67,101,110,116,101,114,44,32,97,108,112,104,97,82,105,103,104,116,46,120,41,44,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,82,105,103,104,116,46,121,122,119,44,13,10,32,32,32,32,32,32,32,32,107,101,114,110,101,108,41,59,13,10,13,10,32,32,32,32,32,32,32,32,97,108,112,104,97,32,61,32,118,101,99,51,40,114,44,32,103,44,32,98,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,103,97,109,109,97,32,99,111,114,114,101,99,116,105,111,110,32,105,102,32,110,101,99,101,115,115,97,114,121,46,13,10,32,32,32,32,105,102,32,40,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,41,32,97,108,112,104,97,32,61,32,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,98,103,67,111,108,111,114,44,32,97,108,112,104,97,44,32,103,97,109,109,97,76,85,84,41,59,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,109,105,120,40,98,103,67,111,108,111,114,44,32,102,103,67,111,108,111,114,44,32,97,108,112,104,97,41,44,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,79,116,104,101,114,32,102,105,108,116,101,114,115,13,10,13,10,47,47,32,84,104,105,115,32,105,115,32,98,97,115,101,100,32,111,110,32,80,105,120,109,97,110,32,40,77,73,84,32,108,105,99,101,110,115,101,41,46,32,67,111,112,121,32,97,110,100,32,112,97,115,116,105,110,103,32,116,104,101,32,101,120,99,101,108,108,101,110,116,32,99,111,109,109,101,110,116,13,10,47,47,32,102,114,111,109,32,116,104,101,114,101,58,13,10,13,10,47,47,32,73,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,115,32,102,111,108,108,111,119,105,110,103,32,116,104,101,32,80,68,70,32,115,112,101,99,105,102,105,99,97,116,105,111,110,46,13,10,47,47,32,83,101,101,32,115,101,99,116,105,111,110,32,56,46,55,46,52,46,53,46,52,32,84,121,112,101,32,51,32,40,82,97,100,105,97,108,41,32,83,104,97,100,105,110,103,115,32,111,102,32,116,104,101,32,80,68,70,32,82,101,102,101,114,101,110,99,101,13,10,47,47,32,77,97,110,117,97,108,32,40,80,68,70,32,51,50,48,48,48,45,49,58,50,48,48,56,32,97,116,32,116,104,101,32,116,105,109,101,32,111,102,32,116,104,105,115,32,119,114,105,116,105,110,103,41,46,13,10,47,47,13,10,47,47,32,73,110,32,116,104,101,32,114,97,100,105,97,108,32,103,114,97,100,105,101,110,116,32,112,114,111,98,108,101,109,32,119,101,32,97,114,101,32,103,105,118,101,110,32,116,119,111,32,99,105,114,99,108,101,115,32,40,99,226,130,129,44,114,226,130,129,41,32,97,110,100,13,10,47,47,32,40,99,226,130,130,44,114,226,130,130,41,32,116,104,97,116,32,100,101,102,105,110,101,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,116,115,101,108,102,46,13,10,47,47,13,10,47,47,32,77,97,116,104,101,109,97,116,105,99,97,108,108,121,32,116,104,101,32,103,114,97,100,105,101,110,116,32,99,97,110,32,98,101,32,100,101,102,105,110,101,100,32,97,115,32,116,104,101,32,102,97,109,105,108,121,32,111,102,32,99,105,114,99,108,101,115,13,10,47,47,13,10,47,47,32,32,32,32,32,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,44,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,41,13,10,47,47,13,10,47,47,32,101,120,99,108,117,100,105,110,103,32,116,104,111,115,101,32,99,105,114,99,108,101,115,32,119,104,111,115,101,32,114,97,100,105,117,115,32,119,111,117,108,100,32,98,101,32,60,32,48,46,32,87,104,101,110,32,97,32,112,111,105,110,116,13,10,47,47,32,98,101,108,111,110,103,115,32,116,111,32,109,111,114,101,32,116,104,97,110,32,111,110,101,32,99,105,114,99,108,101,44,32,116,104,101,32,111,110,101,32,119,105,116,104,32,97,32,98,105,103,103,101,114,32,116,32,105,115,32,116,104,101,32,111,110,108,121,13,10,47,47,32,111,110,101,32,116,104,97,116,32,99,111,110,116,114,105,98,117,116,101,115,32,116,111,32,105,116,115,32,99,111,108,111,114,46,32,87,104,101,110,32,97,32,112,111,105,110,116,32,100,111,101,115,32,110,111,116,32,98,101,108,111,110,103,13,10,47,47,32,116,111,32,97,110,121,32,111,102,32,116,104,101,32,99,105,114,99,108,101,115,44,32,105,116,32,105,115,32,116,114,97,110,115,112,97,114,101,110,116,32,98,108,97,99,107,44,32,105,46,101,46,32,82,71,66,65,32,40,48,44,32,48,44,32,48,44,32,48,41,46,13,10,47,47,32,70,117,114,116,104,101,114,32,108,105,109,105,116,97,116,105,111,110,115,32,111,110,32,116,104,101,32,114,97,110,103,101,32,111,102,32,118,97,108,117,101,115,32,102,111,114,32,116,32,97,114,101,32,105,109,112,111,115,101,100,32,119,104,101,110,13,10,47,47,32,116,104,101,32,103,114,97,100,105,101,110,116,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,44,32,110,97,109,101,108,121,32,116,32,109,117,115,116,32,98,101,108,111,110,103,32,116,111,32,91,48,44,49,93,46,13,10,47,47,13,10,47,47,32,84,104,101,32,103,114,97,112,104,105,99,97,108,32,114,101,115,117,108,116,32,105,115,32,116,104,101,32,115,97,109,101,32,97,115,32,100,114,97,119,105,110,103,32,116,104,101,32,118,97,108,105,100,32,40,114,97,100,105,117,115,32,62,32,48,41,13,10,47,47,32,99,105,114,99,108,101,115,32,119,105,116,104,32,105,110,99,114,101,97,115,105,110,103,32,116,32,105,110,32,91,45,226,136,158,44,32,43,226,136,158,93,32,40,111,114,32,105,110,32,91,48,44,49,93,32,105,102,32,116,104,101,32,103,114,97,100,105,101,110,116,13,10,47,47,32,105,115,32,110,111,116,32,114,101,112,101,97,116,101,100,41,32,117,115,105,110,103,32,83,79,85,82,67,69,32,111,112,101,114,97,116,111,114,32,99,111,109,112,111,115,105,116,105,111,110,46,13,10,47,47,13,10,47,47,32,73,116,32,108,111,111,107,115,32,108,105,107,101,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,116,111,119,97,114,100,115,32,116,104,101,32,118,105,101,119,101,114,32,105,102,32,116,104,101,32,101,110,100,105,110,103,32,99,105,114,99,108,101,13,10,47,47,32,105,115,32,115,109,97,108,108,101,114,32,116,104,97,110,32,116,104,101,32,115,116,97,114,116,105,110,103,32,111,110,101,44,32,97,32,99,111,110,101,32,112,111,105,110,116,105,110,103,32,105,110,115,105,100,101,32,116,104,101,32,112,97,103,101,32,105,102,13,10,47,47,32,116,104,101,32,115,116,97,114,116,105,110,103,32,99,105,114,99,108,101,32,105,115,32,116,104,101,32,115,109,97,108,108,101,114,32,111,110,101,32,97,110,100,32,108,105,107,101,32,97,32,99,121,108,105,110,100,101,114,32,105,102,32,116,104,101,121,13,10,47,47,32,104,97,118,101,32,116,104,101,32,115,97,109,101,32,114,97,100,105,117,115,46,13,10,47,47,13,10,47,47,32,87,104,97,116,32,119,101,32,97,99,116,117,97,108,108,121,32,100,111,32,105,115,44,32,103,105,118,101,110,32,116,104,101,32,112,111,105,110,116,32,119,104,111,115,101,32,99,111,108,111,114,32,119,101,32,97,114,101,32,105,110,116,101,114,101,115,116,101,100,13,10,47,47,32,105,110,44,32,99,111,109,112,117,116,101,32,116,104,101,32,116,32,118,97,108,117,101,115,32,102,111,114,32,116,104,97,116,32,112,111,105,110,116,44,32,115,111,108,118,105,110,103,32,102,111,114,32,116,32,105,110,58,13,10,47,47,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,40,49,45,116,41,194,183,99,226,130,129,32,43,32,116,194,183,40,99,226,130,130,41,32,45,32,112,41,32,61,32,40,49,45,116,41,194,183,114,226,130,129,32,43,32,116,194,183,114,226,130,130,13,10,47,47,13,10,47,47,32,76,101,116,39,115,32,114,101,119,114,105,116,101,32,105,116,32,105,110,32,97,32,115,105,109,112,108,101,114,32,119,97,121,44,32,98,121,32,100,101,102,105,110,105,110,103,32,115,111,109,101,32,97,117,120,105,108,105,97,114,121,13,10,47,47,32,118,97,114,105,97,98,108,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,99,100,32,61,32,99,226,130,130,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,112,100,32,61,32,112,32,45,32,99,226,130,129,13,10,47,47,32,32,32,32,32,100,114,32,61,32,114,226,130,130,32,45,32,114,226,130,129,13,10,47,47,32,32,32,32,32,108,101,110,103,116,104,40,116,194,183,99,100,32,45,32,112,100,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,119,104,105,99,104,32,97,99,116,117,97,108,108,121,32,109,101,97,110,115,13,10,47,47,13,10,47,47,32,32,32,32,32,104,121,112,111,116,40,116,194,183,99,100,120,32,45,32,112,100,120,44,32,116,194,183,99,100,121,32,45,32,112,100,121,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,13,10,47,47,13,10,47,47,32,111,114,13,10,47,47,13,10,47,47,32,32,32,32,32,226,142,183,40,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,41,32,61,32,114,226,130,129,32,43,32,116,194,183,100,114,46,13,10,47,47,13,10,47,47,32,73,102,32,119,101,32,105,109,112,111,115,101,32,40,97,115,32,115,116,97,116,101,100,32,101,97,114,108,105,101,114,41,32,116,104,97,116,32,114,226,130,129,32,43,32,116,194,183,100,114,32,226,137,165,32,48,44,32,105,116,32,98,101,99,111,109,101,115,58,13,10,47,47,13,10,47,47,32,32,32,32,32,40,116,194,183,99,100,120,32,45,32,112,100,120,41,194,178,32,43,32,40,116,194,183,99,100,121,32,45,32,112,100,121,41,194,178,32,61,32,40,114,226,130,129,32,43,32,116,194,183,100,114,41,194,178,13,10,47,47,13,10,47,47,32,119,104,101,114,101,32,119,101,32,99,97,110,32,97,99,116,117,97,108,108,121,32,101,120,112,97,110,100,32,116,104,101,32,115,113,117,97,114,101,115,32,97,110,100,32,115,111,108,118,101,32,102,111,114,32,116,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,194,178,99,100,120,194,178,32,45,32,50,116,194,183,99,100,120,194,183,112,100,120,32,43,32,112,100,120,194,178,32,43,32,116,194,178,99,100,121,194,178,32,45,32,50,116,194,183,99,100,121,194,183,112,100,121,32,43,32,112,100,121,194,178,32,61,13,10,47,47,32,32,32,32,32,32,32,61,32,114,226,130,129,194,178,32,43,32,50,194,183,114,226,130,129,194,183,116,194,183,100,114,32,43,32,116,194,178,194,183,100,114,194,178,13,10,47,47,13,10,47,47,32,32,32,32,32,40,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,41,116,194,178,32,45,32,50,40,99,100,120,194,183,112,100,120,32,43,32,99,100,121,194,183,112,100,121,32,43,32,114,226,130,129,194,183,100,114,41,116,32,43,13,10,47,47,32,32,32,32,32,32,32,32,32,40,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,41,32,61,32,48,13,10,47,47,13,10,47,47,32,32,32,32,32,65,32,61,32,99,100,120,194,178,32,43,32,99,100,121,194,178,32,45,32,100,114,194,178,13,10,47,47,32,32,32,32,32,66,32,61,32,112,100,120,194,183,99,100,120,32,43,32,112,100,121,194,183,99,100,121,32,43,32,114,226,130,129,194,183,100,114,13,10,47,47,32,32,32,32,32,67,32,61,32,112,100,120,194,178,32,43,32,112,100,121,194,178,32,45,32,114,226,130,129,194,178,13,10,47,47,32,32,32,32,32,65,116,194,178,32,45,32,50,66,116,32,43,32,67,32,61,32,48,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,115,32,40,117,110,108,101,115,115,32,116,104,101,32,101,113,117,97,116,105,111,110,32,100,101,103,101,110,101,114,97,116,101,115,32,98,101,99,97,117,115,101,32,111,102,32,65,32,61,32,48,41,32,97,114,101,58,13,10,47,47,13,10,47,47,32,32,32,32,32,116,32,61,32,40,66,32,194,177,32,226,142,183,40,66,194,178,32,45,32,65,194,183,67,41,41,32,47,32,65,13,10,47,47,13,10,47,47,32,84,104,101,32,115,111,108,117,116,105,111,110,32,119,101,32,97,114,101,32,103,111,105,110,103,32,116,111,32,112,114,101,102,101,114,32,105,115,32,116,104,101,32,98,105,103,103,101,114,32,111,110,101,44,32,117,110,108,101,115,115,32,116,104,101,13,10,47,47,32,114,97,100,105,117,115,32,97,115,115,111,99,105,97,116,101,100,32,116,111,32,105,116,32,105,115,32,110,101,103,97,116,105,118,101,32,40,111,114,32,105,116,32,102,97,108,108,115,32,111,117,116,115,105,100,101,32,116,104,101,32,118,97,108,105,100,32,116,13,10,47,47,32,114,97,110,103,101,41,46,13,10,47,47,13,10,47,47,32,65,100,100,105,116,105,111,110,97,108,32,111,98,115,101,114,118,97,116,105,111,110,115,32,40,117,115,101,102,117,108,32,102,111,114,32,111,112,116,105,109,105,122,97,116,105,111,110,115,41,58,13,10,47,47,32,65,32,100,111,101,115,32,110,111,116,32,100,101,112,101,110,100,32,111,110,32,112,13,10,47,47,13,10,47,47,32,65,32,60,32,48,32,226,159,186,32,111,110,101,32,111,102,32,116,104,101,32,116,119,111,32,99,105,114,99,108,101,115,32,99,111,109,112,108,101,116,101,108,121,32,99,111,110,116,97,105,110,115,32,116,104,101,32,111,116,104,101,114,32,111,110,101,13,10,47,47,32,32,32,226,159,186,32,102,111,114,32,101,118,101,114,121,32,112,44,32,116,104,101,32,114,97,100,105,105,32,97,115,115,111,99,105,97,116,101,100,32,119,105,116,104,32,116,104,101,32,116,119,111,32,116,32,115,111,108,117,116,105,111,110,115,32,104,97,118,101,13,10,47,47,32,32,32,32,32,32,32,111,112,112,111,115,105,116,101,32,115,105,103,110,13,10,47,47,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,108,105,110,101,70,114,111,109,46,120,32,32,108,105,110,101,70,114,111,109,46,121,32,32,108,105,110,101,86,101,99,116,111,114,46,120,32,32,32,32,108,105,110,101,86,101,99,116,111,114,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,114,97,100,105,105,46,120,32,32,32,32,32,114,97,100,105,105,46,121,32,32,32,32,32,117,118,79,114,105,103,105,110,46,120,32,32,32,32,32,32,117,118,79,114,105,103,105,110,46,121,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,118,101,99,50,32,108,105,110,101,70,114,111,109,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,44,32,108,105,110,101,86,101,99,116,111,114,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,119,59,13,10,32,32,32,32,118,101,99,50,32,114,97,100,105,105,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,44,32,117,118,79,114,105,103,105,110,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,122,119,59,13,10,13,10,32,32,32,32,118,101,99,50,32,100,80,32,61,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,108,105,110,101,70,114,111,109,44,32,100,67,32,61,32,108,105,110,101,86,101,99,116,111,114,59,13,10,32,32,32,32,102,108,111,97,116,32,100,82,32,61,32,114,97,100,105,105,46,121,32,45,32,114,97,100,105,105,46,120,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,100,111,116,40,100,67,44,32,100,67,41,32,45,32,100,82,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,98,32,61,32,100,111,116,40,100,80,44,32,100,67,41,32,43,32,114,97,100,105,105,46,120,32,42,32,100,82,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,100,111,116,40,100,80,44,32,100,80,41,32,45,32,114,97,100,105,105,46,120,32,42,32,114,97,100,105,105,46,120,59,13,10,32,32,32,32,102,108,111,97,116,32,100,105,115,99,114,105,109,32,61,32,98,32,42,32,98,32,45,32,97,32,42,32,99,59,13,10,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,105,102,32,40,100,105,115,99,114,105,109,32,33,61,32,48,46,48,41,32,123,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,116,115,32,61,32,118,101,99,50,40,115,113,114,116,40,100,105,115,99,114,105,109,41,32,42,32,118,101,99,50,40,49,46,48,44,32,45,49,46,48,41,32,43,32,118,101,99,50,40,98,41,41,32,47,32,118,101,99,50,40,97,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,40,116,115,46,120,32,62,32,116,115,46,121,41,13,10,32,32,32,32,32,32,32,32,116,115,32,61,32,116,115,46,121,120,59,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,116,32,61,32,116,115,46,120,32,62,61,32,48,46,48,32,63,32,116,115,46,120,32,58,32,116,115,46,121,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,117,118,79,114,105,103,105,110,32,43,32,118,101,99,50,40,116,44,32,48,46,48,41,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,13,10,47,47,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,124,32,120,32,32,32,32,32,32,32,32,32,32,32,32,32,121,32,32,32,32,32,32,32,32,32,32,32,32,32,122,32,32,32,32,32,32,32,32,32,32,32,32,32,119,13,10,47,47,32,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,124,32,115,114,99,79,102,102,115,101,116,46,120,32,32,32,115,114,99,79,102,102,115,101,116,46,121,32,32,32,115,117,112,112,111,114,116,32,32,32,32,32,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,124,32,103,97,117,115,115,67,111,101,102,102,46,120,32,32,103,97,117,115,115,67,111,101,102,102,46,121,32,32,103,97,117,115,115,67,111,101,102,102,46,122,32,32,45,13,10,47,47,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,124,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,32,32,32,32,32,32,32,32,32,32,32,32,32,45,13,10,118,101,99,52,32,102,105,108,116,101,114,66,108,117,114,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,32,123,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,46,13,10,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,46,120,121,32,47,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,105,110,116,32,115,117,112,112,111,114,116,32,61,32,105,110,116,40,102,105,108,116,101,114,80,97,114,97,109,115,48,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,103,97,117,115,115,67,111,101,102,102,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,46,120,121,122,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,117,112,32,111,117,114,32,105,110,99,114,101,109,101,110,116,97,108,32,99,97,108,99,117,108,97,116,105,111,110,46,13,10,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,32,47,47,32,119,101,105,103,104,116,91,48,93,13,10,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,99,111,108,111,114,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,32,42,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,13,10,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,13,10,32,32,32,32,47,47,32,84,104,105,115,32,105,115,32,97,32,99,111,109,109,111,110,32,116,114,105,99,107,32,116,104,97,116,32,108,101,116,115,32,117,115,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,102,105,108,116,101,114,105,110,103,32,104,97,114,100,119,97,114,101,32,116,111,32,101,118,97,108,117,97,116,101,32,116,119,111,13,10,32,32,32,32,47,47,32,116,101,120,101,108,115,32,97,116,32,97,32,116,105,109,101,46,32,84,104,101,32,98,97,115,105,99,32,112,114,105,110,99,105,112,108,101,32,105,115,32,116,104,97,116,44,32,105,102,32,99,48,32,97,110,100,32,99,49,32,97,114,101,32,99,111,108,111,114,115,32,111,102,32,97,100,106,97,99,101,110,116,32,116,101,120,101,108,115,13,10,32,32,32,32,47,47,32,97,110,100,32,107,48,32,97,110,100,32,107,49,32,97,114,101,32,97,114,98,105,116,114,97,114,121,32,102,97,99,116,111,114,115,44,32,116,104,101,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,32,105,115,32,101,113,117,105,118,97,108,101,110,116,32,116,111,13,10,32,32,32,32,47,47,32,96,40,107,48,32,43,32,107,49,41,32,42,32,108,101,114,112,40,99,48,44,32,99,49,44,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,41,96,46,32,76,105,110,101,97,114,32,105,110,116,101,114,112,111,108,97,116,105,111,110,44,32,97,115,32,112,101,114,102,111,114,109,101,100,32,98,121,32,116,104,101,13,10,32,32,32,32,47,47,32,116,101,120,116,117,114,105,110,103,32,104,97,114,100,119,97,114,101,32,119,104,101,110,32,115,97,109,112,108,105,110,103,32,97,100,106,97,99,101,110,116,32,112,105,120,101,108,115,32,105,110,32,111,110,101,32,100,105,114,101,99,116,105,111,110,44,32,101,118,97,108,117,97,116,101,115,13,10,32,32,32,32,47,47,32,96,108,101,114,112,40,99,48,44,32,99,49,44,32,116,41,96,32,119,104,101,114,101,32,116,32,105,115,32,116,104,101,32,111,102,102,115,101,116,32,102,114,111,109,32,116,104,101,32,116,101,120,101,108,32,119,105,116,104,32,99,111,108,111,114,32,96,99,48,96,46,32,84,111,32,101,118,97,108,117,97,116,101,32,116,104,101,13,10,32,32,32,32,47,47,32,102,111,114,109,117,108,97,32,96,107,48,32,42,32,99,48,32,43,32,107,49,32,42,32,99,49,96,44,32,116,104,101,114,101,102,111,114,101,44,32,119,101,32,99,97,110,32,117,115,101,32,116,104,101,32,116,101,120,116,117,114,101,32,104,97,114,100,119,97,114,101,32,116,111,32,112,101,114,102,111,114,109,32,108,105,110,101,97,114,13,10,32,32,32,32,47,47,32,105,110,116,101,114,112,111,108,97,116,105,111,110,32,119,105,116,104,32,96,116,32,61,32,107,49,32,47,32,40,107,48,32,43,32,107,49,41,96,46,13,10,32,32,32,32,102,111,114,32,40,105,110,116,32,105,32,61,32,49,59,32,105,32,60,61,32,115,117,112,112,111,114,116,59,32,105,32,43,61,32,50,41,32,123,13,10,32,32,32,32,32,32,32,32,102,108,111,97,116,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,32,43,61,32,103,97,117,115,115,67,111,101,102,102,46,120,59,13,10,13,10,32,32,32,32,32,32,32,32,118,101,99,50,32,115,114,99,79,102,102,115,101,116,32,61,32,115,114,99,79,102,102,115,101,116,83,99,97,108,101,32,42,32,40,102,108,111,97,116,40,105,41,32,43,32,103,97,117,115,115,67,111,101,102,102,46,120,32,47,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,41,59,13,10,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,43,61,32,40,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,45,32,115,114,99,79,102,102,115,101,116,41,32,43,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,32,43,32,115,114,99,79,102,102,115,101,116,41,41,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,83,117,109,32,43,61,32,50,46,48,32,42,32,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,59,13,10,32,32,32,32,32,32,32,32,103,97,117,115,115,67,111,101,102,102,46,120,121,32,42,61,32,103,97,117,115,115,67,111,101,102,102,46,121,122,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,70,105,110,105,115,104,46,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,32,47,32,103,97,117,115,115,83,117,109,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,32,123,13,10,32,32,32,32,118,101,99,52,32,115,114,99,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,109,97,116,52,32,99,111,108,111,114,77,97,116,114,105,120,32,61,32,109,97,116,52,40,102,105,108,116,101,114,80,97,114,97,109,115,48,44,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,32,102,105,108,116,101,114,80,97,114,97,109,115,51,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,77,97,116,114,105,120,32,42,32,115,114,99,67,111,108,111,114,32,43,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,78,111,110,101,40,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,99,111,108,111,114,84,101,120,116,117,114,101,44,32,99,111,108,111,114,84,101,120,67,111,111,114,100,41,59,13,10,125,13,10,13,10,118,101,99,52,32,102,105,108,116,101,114,67,111,108,111,114,40,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,105,110,116,32,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,99,111,108,111,114,70,105,108,116,101,114,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,82,65,68,73,65,76,95,71,82,65,68,73,69,78,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,66,76,85,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,66,108,117,114,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,84,69,88,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,84,101,120,116,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,67,79,76,79,82,95,77,65,84,82,73,88,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,102,105,108,116,101,114,78,111,110,101,40,99,111,108,111,114,84,101,120,67,111,111,114,100,44,32,99,111,108,111,114,84,101,120,116,117,114,101,41,59,13,10,125,13,10,13,10,47,47,32,67,111,109,112,111,115,105,116,105,110,103,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,98,118,101,99,51,32,99,111,110,100,44,32,118,101,99,51,32,105,102,84,114,117,101,44,32,118,101,99,51,32,105,102,70,97,108,115,101,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,99,111,110,100,46,120,32,63,32,105,102,84,114,117,101,46,120,32,58,32,105,102,70,97,108,115,101,46,120,44,13,10,32,32,32,32,99,111,110,100,46,121,32,63,32,105,102,84,114,117,101,46,121,32,58,32,105,102,70,97,108,115,101,46,121,44,13,10,32,32,32,32,99,111,110,100,46,122,32,63,32,105,102,84,114,117,101,46,122,32,58,32,105,102,70,97,108,115,101,46,122,41,59,13,10,125,13,10,13,10,102,108,111,97,116,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,108,111,97,116,32,110,117,109,44,32,102,108,111,97,116,32,100,101,110,111,109,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,110,111,109,32,33,61,32,48,46,48,32,63,32,110,117,109,32,47,32,100,101,110,111,109,32,58,32,48,46,48,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,98,118,101,99,51,32,100,101,115,116,90,101,114,111,32,61,32,101,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,48,41,41,44,32,115,114,99,79,110,101,32,61,32,101,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,100,101,115,116,90,101,114,111,44,13,10,32,32,32,32,118,101,99,51,40,48,46,48,41,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,115,114,99,79,110,101,44,32,118,101,99,51,40,49,46,48,41,44,32,100,101,115,116,67,111,108,111,114,32,47,32,40,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,41,41,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,72,83,76,95,116,111,95,82,71,66,95,97,108,116,101,114,110,97,116,105,118,101,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,101,99,51,32,104,115,108,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,97,32,61,32,104,115,108,46,121,32,42,32,109,105,110,40,104,115,108,46,122,44,32,49,46,48,32,45,32,104,115,108,46,122,41,59,13,10,32,32,32,32,118,101,99,51,32,107,115,32,61,32,109,111,100,40,118,101,99,51,40,48,46,48,44,32,56,46,48,44,32,52,46,48,41,32,43,32,118,101,99,51,40,104,115,108,46,120,32,42,32,70,82,65,67,95,54,95,80,73,41,44,32,49,50,46,48,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,104,115,108,46,122,122,122,32,45,32,99,108,97,109,112,40,109,105,110,40,107,115,32,45,32,118,101,99,51,40,51,46,48,41,44,32,118,101,99,51,40,57,46,48,41,32,45,32,107,115,41,44,32,45,49,46,48,44,32,49,46,48,41,32,42,32,97,59,13,10,125,13,10,13,10,47,47,32,104,116,116,112,115,58,47,47,101,110,46,119,105,107,105,112,101,100,105,97,46,111,114,103,47,119,105,107,105,47,72,83,76,95,97,110,100,95,72,83,86,35,70,114,111,109,95,82,71,66,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,101,99,51,32,114,103,98,41,32,123,13,10,32,32,32,32,102,108,111,97,116,32,118,32,61,32,109,97,120,40,109,97,120,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,44,32,120,77,105,110,32,61,32,109,105,110,40,109,105,110,40,114,103,98,46,114,44,32,114,103,98,46,103,41,44,32,114,103,98,46,98,41,59,13,10,32,32,32,32,102,108,111,97,116,32,99,32,61,32,118,32,45,32,120,77,105,110,44,32,108,32,61,32,109,105,120,40,120,77,105,110,44,32,118,44,32,48,46,53,41,59,13,10,32,32,32,32,118,101,99,51,32,116,101,114,109,115,32,61,32,114,103,98,46,114,32,61,61,32,118,32,63,32,118,101,99,51,40,48,46,48,44,32,114,103,98,46,103,98,41,32,58,13,10,32,32,32,32,114,103,98,46,103,32,61,61,32,118,32,63,32,118,101,99,51,40,50,46,48,44,32,114,103,98,46,98,114,41,32,58,13,10,32,32,32,32,118,101,99,51,40,52,46,48,44,32,114,103,98,46,114,103,41,59,13,10,32,32,32,32,102,108,111,97,116,32,104,32,61,32,70,82,65,67,95,80,73,95,51,32,42,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,116,101,114,109,115,46,120,32,42,32,99,32,43,32,116,101,114,109,115,46,121,32,45,32,116,101,114,109,115,46,122,44,32,99,41,59,13,10,32,32,32,32,102,108,111,97,116,32,115,32,61,32,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,99,44,32,118,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,104,44,32,115,44,32,108,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,44,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,50,46,48,41,32,42,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,49,46,48,41,41,41,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,41,32,123,13,10,32,32,32,32,118,101,99,51,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,61,13,10,32,32,32,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,48,46,50,53,41,41,44,13,10,32,32,32,32,40,40,118,101,99,51,40,49,54,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,45,32,49,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,43,32,52,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,44,13,10,32,32,32,32,115,113,114,116,40,100,101,115,116,67,111,108,111,114,41,41,59,13,10,32,32,32,32,118,101,99,51,32,102,97,99,116,111,114,32,61,32,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,108,101,115,115,84,104,97,110,69,113,117,97,108,40,115,114,99,67,111,108,111,114,44,32,118,101,99,51,40,48,46,53,41,41,44,13,10,32,32,32,32,100,101,115,116,67,111,108,111,114,32,42,32,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,32,45,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,40,115,114,99,67,111,108,111,114,32,42,32,50,46,48,32,45,32,49,46,48,41,32,42,32,102,97,99,116,111,114,59,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,72,83,76,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,32,100,101,115,116,67,111,108,111,114,46,121,44,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,115,114,99,67,111,108,111,114,46,121,44,32,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,115,114,99,67,111,108,111,114,46,120,44,32,32,115,114,99,67,111,108,111,114,46,121,44,32,32,100,101,115,116,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,32,32,32,32,100,101,102,97,117,108,116,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,100,101,115,116,67,111,108,111,114,46,120,44,32,100,101,115,116,67,111,108,111,114,46,121,44,32,115,114,99,67,111,108,111,114,46,122,41,59,13,10,32,32,32,32,125,13,10,125,13,10,13,10,118,101,99,51,32,99,111,109,112,111,115,105,116,101,82,71,66,40,118,101,99,51,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,32,115,114,99,67,111,108,111,114,44,32,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,115,119,105,116,99,104,32,40,111,112,41,32,123,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,85,76,84,73,80,76,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,67,82,69,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,79,86,69,82,76,65,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,115,114,99,67,111,108,111,114,44,32,100,101,115,116,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,65,82,75,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,73,71,72,84,69,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,109,97,120,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,68,79,68,71,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,95,66,85,82,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,118,101,99,51,40,49,46,48,41,32,45,32,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,101,99,51,40,49,46,48,41,32,45,32,100,101,115,116,67,111,108,111,114,44,32,118,101,99,51,40,49,46,48,41,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,65,82,68,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,79,70,84,95,76,73,71,72,84,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,100,101,115,116,67,111,108,111,114,44,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,68,73,70,70,69,82,69,78,67,69,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,97,98,115,40,100,101,115,116,67,111,108,111,114,32,45,32,115,114,99,67,111,108,111,114,41,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,69,88,67,76,85,83,73,79,78,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,100,101,115,116,67,111,108,111,114,32,43,32,115,114,99,67,111,108,111,114,32,45,32,118,101,99,51,40,50,46,48,41,32,42,32,100,101,115,116,67,111,108,111,114,32,42,32,115,114,99,67,111,108,111,114,59,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,72,85,69,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,65,84,85,82,65,84,73,79,78,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,67,79,76,79,82,58,13,10,32,32,32,32,32,32,32,32,99,97,115,101,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,76,85,77,73,78,79,83,73,84,89,58,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,99,111,109,112,111,115,105,116,101,72,83,76,40,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,100,101,115,116,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,115,114,99,67,111,108,111,114,41,44,13,10,32,32,32,32,32,32,32,32,111,112,41,41,59,13,10,32,32,32,32,125,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,125,13,10,13,10,118,101,99,52,32,99,111,109,112,111,115,105,116,101,40,118,101,99,52,32,115,114,99,67,111,108,111,114,44,13,10,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,118,101,99,50,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,44,13,10,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,105,110,116,32,111,112,41,32,123,13,10,32,32,32,32,105,102,32,40,111,112,32,61,61,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,78,79,82,77,65,76,41,13,10,32,32,32,32,114,101,116,117,114,110,32,115,114,99,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,70,73,88,77,69,40,112,99,119,97,108,116,111,110,41,58,32,87,104,97,116,32,115,104,111,117,108,100,32,116,104,101,32,111,117,116,112,117,116,32,97,108,112,104,97,32,98,101,32,104,101,114,101,63,13,10,32,32,32,32,118,101,99,50,32,100,101,115,116,84,101,120,67,111,111,114,100,32,61,32,102,114,97,103,67,111,111,114,100,32,47,32,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,59,13,10,32,32,32,32,118,101,99,52,32,100,101,115,116,67,111,108,111,114,32,61,32,116,101,120,116,117,114,101,40,100,101,115,116,84,101,120,116,117,114,101,44,32,100,101,115,116,84,101,120,67,111,111,114,100,41,59,13,10,32,32,32,32,118,101,99,51,32,98,108,101,110,100,101,100,82,71,66,32,61,32,99,111,109,112,111,115,105,116,101,82,71,66,40,100,101,115,116,67,111,108,111,114,46,114,103,98,44,32,115,114,99,67,111,108,111,114,46,114,103,98,44,32,111,112,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,101,99,52,40,115,114,99,67,111,108,111,114,46,97,32,42,32,40,49,46,48,32,45,32,100,101,115,116,67,111,108,111,114,46,97,41,32,42,32,115,114,99,67,111,108,111,114,46,114,103,98,32,43,13,10,32,32,32,32,115,114,99,67,111,108,111,114,46,97,32,42,32,100,101,115,116,67,111,108,111,114,46,97,32,42,32,98,108,101,110,100,101,100,82,71,66,32,43,13,10,32,32,32,32,40,49,46,48,32,45,32,115,114,99,67,111,108,111,114,46,97,41,32,42,32,100,101,115,116,67,111,108,111,114,46,114,103,98,44,13,10,32,32,32,32,49,46,48,41,59,13,10,125,13,10,13,10,47,47,32,77,97,115,107,115,13,10,102,108,111,97,116,32,115,97,109,112,108,101,77,97,115,107,40,13,10,32,32,32,32,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,44,13,10,32,32,32,32,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,44,13,10,32,32,32,32,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,44,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,41,32,123,13,10,32,32,32,32,105,102,32,40,109,97,115,107,67,116,114,108,32,61,61,32,48,41,32,114,101,116,117,114,110,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,105,118,101,99,50,32,109,97,115,107,84,101,120,67,111,111,114,100,73,32,61,32,105,118,101,99,50,40,102,108,111,111,114,40,109,97,115,107,84,101,120,67,111,111,114,100,46,120,121,41,41,59,13,10,32,32,32,32,118,101,99,52,32,116,101,120,101,108,32,61,32,116,101,120,116,117,114,101,40,109,97,115,107,84,101,120,116,117,114,101,44,32,40,118,101,99,50,40,109,97,115,107,84,101,120,67,111,111,114,100,73,32,47,32,105,118,101,99,50,40,49,44,32,52,41,41,32,43,32,48,46,53,41,32,47,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,41,59,13,10,13,10,32,32,32,32,102,108,111,97,116,32,99,111,118,101,114,97,103,101,32,61,32,116,101,120,101,108,91,109,97,115,107,84,101,120,67,111,111,114,100,73,46,121,32,37,32,52,93,32,43,32,109,97,115,107,84,101,120,67,111,111,114,100,46,122,59,13,10,13,10,32,32,32,32,105,102,32,40,40,109,97,115,107,67,116,114,108,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,87,73,78,68,73,78,71,41,32,33,61,32,48,41,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,97,98,115,40,99,111,118,101,114,97,103,101,41,59,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,99,111,118,101,114,97,103,101,32,61,32,49,46,48,32,45,32,97,98,115,40,49,46,48,32,45,32,109,111,100,40,99,111,118,101,114,97,103,101,44,32,50,46,48,41,41,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,109,105,110,40,109,97,115,107,65,108,112,104,97,44,32,99,111,118,101,114,97,103,101,41,59,13,10,125,13,10,13,10,47,47,32,77,97,105,110,32,102,117,110,99,116,105,111,110,13,10,118,101,99,52,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,32,32,32,32,118,101,99,50,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,109,97,115,107,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,100,101,115,116,84,101,120,116,117,114,101,44,13,10,32,32,32,32,115,97,109,112,108,101,114,50,68,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,118,101,99,50,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,118,101,99,50,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,105,110,116,32,99,116,114,108,44,13,10,32,32,32,32,118,101,99,51,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,118,101,99,50,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,105,110,116,32,116,105,108,101,67,116,114,108,41,32,123,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,97,108,112,104,97,32,102,114,111,109,32,116,104,101,32,109,97,115,107,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,105,110,116,32,109,97,115,107,67,116,114,108,48,32,61,32,40,116,105,108,101,67,116,114,108,32,62,62,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,48,95,83,72,73,70,84,41,32,38,32,84,73,76,69,95,67,84,82,76,95,77,65,83,75,95,77,65,83,75,59,13,10,32,32,32,32,102,108,111,97,116,32,109,97,115,107,65,108,112,104,97,32,61,32,49,46,48,59,13,10,32,32,32,32,109,97,115,107,65,108,112,104,97,32,61,32,115,97,109,112,108,101,77,97,115,107,40,109,97,115,107,65,108,112,104,97,44,32,109,97,115,107,84,101,120,116,117,114,101,48,44,32,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,32,109,97,115,107,84,101,120,67,111,111,114,100,48,44,32,109,97,115,107,67,116,114,108,48,41,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,98,97,115,101,32,99,111,108,111,114,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,99,111,109,98,105,110,101,32,102,108,97,103,46,13,10,32,32,32,32,105,110,116,32,99,111,108,111,114,48,67,111,109,98,105,110,101,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,67,79,77,66,73,78,69,95,77,65,83,75,59,13,10,13,10,32,32,32,32,47,47,32,68,111,32,99,111,109,98,105,110,105,110,103,46,13,10,32,32,32,32,105,102,32,40,99,111,108,111,114,48,67,111,109,98,105,110,101,32,33,61,32,48,41,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,71,101,116,32,99,111,108,111,114,32,102,105,108,116,101,114,32,102,108,97,103,46,13,10,32,32,32,32,32,32,32,32,105,110,116,32,99,111,108,111,114,48,70,105,108,116,101,114,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,76,79,82,95,70,73,76,84,69,82,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,70,73,76,84,69,82,95,77,65,83,75,59,13,10,13,10,32,32,32,32,32,32,32,32,47,47,32,68,111,32,102,105,108,116,101,114,105,110,103,46,13,10,32,32,32,32,32,32,32,32,118,101,99,52,32,99,111,108,111,114,48,32,61,32,102,105,108,116,101,114,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,103,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,103,67,111,111,114,100,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,111,114,48,70,105,108,116,101,114,13,10,32,32,32,32,32,32,32,32,41,59,13,10,32,32,32,32,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,98,105,110,101,67,111,108,111,114,48,40,99,111,108,111,114,44,32,99,111,108,111,114,48,44,32,99,111,108,111,114,48,67,111,109,98,105,110,101,41,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,109,97,115,107,32,97,108,112,104,97,46,13,10,32,32,32,32,99,111,108,111,114,46,97,32,42,61,32,109,97,115,107,65,108,112,104,97,59,13,10,13,10,32,32,32,32,47,47,32,65,112,112,108,121,32,99,111,109,112,111,115,105,116,101,46,13,10,32,32,32,32,105,110,116,32,99,111,109,112,111,115,105,116,101,79,112,32,61,32,40,99,116,114,108,32,62,62,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,83,72,73,70,84,41,32,38,32,67,79,77,66,73,78,69,82,95,67,84,82,76,95,67,79,77,80,79,83,73,84,69,95,77,65,83,75,59,13,10,32,32,32,32,99,111,108,111,114,32,61,32,99,111,109,112,111,115,105,116,101,40,99,111,108,111,114,44,32,100,101,115,116,84,101,120,116,117,114,101,44,32,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,32,102,114,97,103,67,111,111,114,100,44,32,99,111,109,112,111,115,105,116,101,79,112,41,59,13,10,13,10,32,32,32,32,47,47,32,80,114,101,109,117,108,116,105,112,108,121,32,97,108,112,104,97,46,13,10,32,32,32,32,99,111,108,111,114,46,114,103,98,32,42,61,32,99,111,108,111,114,46,97,59,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,99,111,108,111,114,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,111,70,114,97,103,67,111,108,111,114,32,61,32,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,13,10,32,32,32,32,32,32,32,32,103,108,95,70,114,97,103,67,111,111,114,100,46,120,121,44,13,10,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,48,44,13,10,32,32,32,32,32,32,32,32,117,68,101,115,116,84,101,120,116,117,114,101,44,13,10,32,32,32,32,32,32,32,32,117,71,97,109,109,97,76,85,84,44,13,10,32,32,32,32,32,32,32,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,105,110,116,40,118,67,116,114,108,41,44,13,10,32,32,32,32,32,32,32,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,118,66,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,105,110,116,40,118,84,105,108,101,67,116,114,108,41,13,10,32,32,32,32,41,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_TILE_FRAG_H diff --git a/src/shaders/generated/tile_frag_spv.h b/src/shaders/generated/tile_frag_spv.h index a783d5c4..8cb73baa 100644 --- a/src/shaders/generated/tile_frag_spv.h +++ b/src/shaders/generated/tile_frag_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_FRAG_SPV_H namespace Pathfinder { - static uint8_t tile_frag_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,198,5,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,17,0,4,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,136,5,0,0,138,5,0,0,149,5,0,0,150,5,0,0,151,5,0,0,152,5,0,0,153,5,0,0,155,5,0,0,159,5,0,0,161,5,0,0,162,5,0,0,163,5,0,0,16,0,3,0,4,0,0,0,7,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,9,0,15,0,0,0,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,102,52,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,12,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,13,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,14,0,0,0,111,112,0,0,5,0,11,0,27,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,49,59,115,50,49,59,118,102,50,59,0,0,0,0,5,0,4,0,24,0,0,0,111,102,102,115,101,116,0,0,5,0,6,0,25,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,26,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,14,0,37,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,118,102,52,59,102,49,59,118,102,52,59,115,50,49,59,118,102,50,59,118,102,52,59,102,49,59,0,5,0,6,0,30,0,0,0,111,117,116,65,108,112,104,97,76,101,102,116,0,0,0,0,5,0,6,0,31,0,0,0,111,117,116,65,108,112,104,97,67,101,110,116,101,114,0,0,5,0,6,0,32,0,0,0,111,117,116,65,108,112,104,97,82,105,103,104,116,0,0,0,5,0,6,0,33,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,34,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,4,0,35,0,0,0,107,101,114,110,101,108,0,0,5,0,5,0,36,0,0,0,111,110,101,80,105,120,101,108,0,0,0,0,5,0,11,0,45,0,0,0,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,102,52,59,118,102,51,59,118,102,52,59,0,5,0,4,0,42,0,0,0,97,108,112,104,97,48,0,0,5,0,4,0,43,0,0,0,97,108,112,104,97,49,0,0,5,0,4,0,44,0,0,0,107,101,114,110,101,108,0,0,5,0,13,0,51,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,49,59,102,49,59,115,50,49,59,0,0,0,0,5,0,4,0,48,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,49,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,50,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,11,0,57,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,102,51,59,118,102,51,59,115,50,49,59,0,5,0,4,0,54,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,55,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,56,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,12,0,67,0,0,0,102,105,108,116,101,114,84,101,120,116,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,0,5,0,6,0,60,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,61,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,62,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,63,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,64,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,65,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,66,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,15,0,77,0,0,0,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,0,0,0,5,0,6,0,70,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,71,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,72,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,73,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,74,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,75,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,76,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,10,0,85,0,0,0,102,105,108,116,101,114,66,108,117,114,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,0,5,0,6,0,80,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,81,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,82,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,83,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,84,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,14,0,95,0,0,0,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,102,50,59,115,50,49,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,0,0,5,0,6,0,88,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,89,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,90,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,91,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,92,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,93,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,94,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,7,0,100,0,0,0,102,105,108,116,101,114,78,111,110,101,40,118,102,50,59,115,50,49,59,0,5,0,6,0,98,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,99,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,17,0,115,0,0,0,102,105,108,116,101,114,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,5,0,6,0,103,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,104,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,105,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,106,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,107,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,108,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,109,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,110,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,111,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,112,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,113,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,5,0,114,0,0,0,99,111,108,111,114,70,105,108,116,101,114,0,5,0,10,0,124,0,0,0,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,118,98,51,59,118,102,51,59,118,102,51,59,0,0,0,0,5,0,4,0,121,0,0,0,99,111,110,100,0,0,0,0,5,0,4,0,122,0,0,0,105,102,84,114,117,101,0,0,5,0,4,0,123,0,0,0,105,102,70,97,108,115,101,0,5,0,8,0,129,0,0,0,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,49,59,102,49,59,0,0,5,0,3,0,127,0,0,0,110,117,109,0,5,0,4,0,128,0,0,0,100,101,110,111,109,0,0,0,5,0,10,0,134,0,0,0,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,132,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,133,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,8,0,138,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,102,51,59,0,0,5,0,3,0,137,0,0,0,104,115,108,0,5,0,8,0,141,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,102,51,59,0,0,5,0,3,0,140,0,0,0,114,103,98,0,5,0,9,0,145,0,0,0,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,143,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,144,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,149,0,0,0,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,147,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,148,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,153,0,0,0,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,151,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,152,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,159,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,156,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,157,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,158,0,0,0,111,112,0,0,5,0,9,0,164,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,161,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,162,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,163,0,0,0,111,112,0,0,5,0,10,0,172,0,0,0,99,111,109,112,111,115,105,116,101,40,118,102,52,59,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,167,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,168,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,6,0,169,0,0,0,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,0,5,0,5,0,170,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,3,0,171,0,0,0,111,112,0,0,5,0,10,0,180,0,0,0,115,97,109,112,108,101,77,97,115,107,40,102,49,59,115,50,49,59,118,102,50,59,118,102,51,59,105,49,59,0,0,0,5,0,5,0,175,0,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,5,0,176,0,0,0,109,97,115,107,84,101,120,116,117,114,101,0,5,0,6,0,177,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,0,5,0,6,0,178,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,179,0,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,24,0,201,0,0,0,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,50,59,105,49,59,118,102,51,59,118,102,50,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,183,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,184,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,48,0,0,0,5,0,6,0,185,0,0,0,109,97,115,107,84,101,120,116,117,114,101,48,0,0,0,0,5,0,5,0,186,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,5,0,187,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,188,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,5,0,7,0,189,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,0,5,0,6,0,190,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,191,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,192,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,193,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,194,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,6,0,195,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,4,0,196,0,0,0,99,116,114,108,0,0,0,0,5,0,6,0,197,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,198,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,199,0,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,5,0,200,0,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,4,0,249,0,0,0,119,105,100,101,0,0,0,0,5,0,4,0,4,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,14,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,20,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,21,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,28,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,32,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,33,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,39,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,40,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,46,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,47,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,53,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,64,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,65,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,90,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,97,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,101,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,105,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,109,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,1,0,0,107,101,114,110,101,108,0,0,5,0,4,0,118,1,0,0,98,103,67,111,108,111,114,0,5,0,4,0,121,1,0,0,102,103,67,111,108,111,114,0,5,0,8,0,124,1,0,0,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,0,0,5,0,4,0,133,1,0,0,97,108,112,104,97,0,0,0,5,0,5,0,139,1,0,0,97,108,112,104,97,76,101,102,116,0,0,0,5,0,5,0,140,1,0,0,97,108,112,104,97,67,101,110,116,101,114,0,5,0,5,0,141,1,0,0,97,108,112,104,97,82,105,103,104,116,0,0,5,0,4,0,145,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,146,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,147,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,148,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,150,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,152,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,157,1,0,0,114,0,0,0,5,0,4,0,164,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,166,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,167,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,170,1,0,0,103,0,0,0,5,0,4,0,178,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,179,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,182,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,185,1,0,0,98,0,0,0,5,0,4,0,194,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,195,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,198,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,208,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,210,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,223,1,0,0,108,105,110,101,70,114,111,109,0,0,0,0,5,0,5,0,226,1,0,0,108,105,110,101,86,101,99,116,111,114,0,0,5,0,4,0,229,1,0,0,114,97,100,105,105,0,0,0,5,0,5,0,232,1,0,0,117,118,79,114,105,103,105,110,0,0,0,0,5,0,3,0,235,1,0,0,100,80,0,0,5,0,3,0,239,1,0,0,100,67,0,0,5,0,3,0,241,1,0,0,100,82,0,0,5,0,3,0,247,1,0,0,97,0,0,0,5,0,3,0,255,1,0,0,98,0,0,0,5,0,3,0,8,2,0,0,99,0,0,0,5,0,4,0,18,2,0,0,100,105,115,99,114,105,109,0,5,0,4,0,26,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,32,2,0,0,116,115,0,0,5,0,3,0,55,2,0,0,116,0,0,0,5,0,6,0,77,2,0,0,115,114,99,79,102,102,115,101,116,83,99,97,108,101,0,0,5,0,4,0,82,2,0,0,115,117,112,112,111,114,116,0,5,0,5,0,86,2,0,0,103,97,117,115,115,67,111,101,102,102,0,0,5,0,5,0,89,2,0,0,103,97,117,115,115,83,117,109,0,0,0,0,5,0,4,0,92,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,108,2,0,0,105,0,0,0,5,0,6,0,118,2,0,0,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,0,5,0,5,0,134,2,0,0,115,114,99,79,102,102,115,101,116,0,0,0,5,0,5,0,181,2,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,187,2,0,0,99,111,108,111,114,77,97,116,114,105,120,0,5,0,4,0,231,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,233,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,235,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,237,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,239,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,241,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,245,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,247,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,249,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,251,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,255,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,1,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,3,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,11,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,15,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,17,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,19,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,21,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,26,3,0,0,112,97,114,97,109,0,0,0,5,0,5,0,79,3,0,0,100,101,115,116,90,101,114,111,0,0,0,0,5,0,4,0,83,3,0,0,115,114,99,79,110,101,0,0,5,0,4,0,91,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,94,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,96,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,98,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,103,3,0,0,97,0,0,0,5,0,3,0,113,3,0,0,107,115,0,0,5,0,3,0,143,3,0,0,118,0,0,0,5,0,4,0,152,3,0,0,120,77,105,110,0,0,0,0,5,0,3,0,161,3,0,0,99,0,0,0,5,0,3,0,165,3,0,0,108,0,0,0,5,0,4,0,170,3,0,0,116,101,114,109,115,0,0,0,5,0,3,0,204,3,0,0,104,0,0,0,5,0,4,0,216,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,217,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,221,3,0,0,115,0,0,0,5,0,4,0,222,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,224,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,253,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,255,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,1,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,2,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,3,4,0,0,112,97,114,97,109,0,0,0,5,0,7,0,7,4,0,0,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,0,0,0,5,0,4,0,26,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,28,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,30,4,0,0,102,97,99,116,111,114,0,0,5,0,4,0,40,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,42,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,112,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,120,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,132,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,134,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,142,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,143,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,147,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,149,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,153,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,155,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,173,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,176,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,179,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,180,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,181,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,184,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,198,4,0,0,100,101,115,116,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,202,4,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,206,4,0,0,98,108,101,110,100,101,100,82,71,66,0,0,5,0,4,0,207,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,210,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,213,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,254,4,0,0,109,97,115,107,84,101,120,67,111,111,114,100,73,0,0,0,5,0,4,0,3,5,0,0,116,101,120,101,108,0,0,0,5,0,5,0,15,5,0,0,99,111,118,101,114,97,103,101,0,0,0,0,5,0,5,0,42,5,0,0,109,97,115,107,67,116,114,108,48,0,0,0,5,0,5,0,47,5,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,4,0,48,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,50,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,52,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,57,5,0,0,99,111,108,111,114,0,0,0,5,0,6,0,59,5,0,0,99,111,108,111,114,48,67,111,109,98,105,110,101,0,0,0,5,0,6,0,68,5,0,0,99,111,108,111,114,48,70,105,108,116,101,114,0,0,0,0,5,0,4,0,73,5,0,0,99,111,108,111,114,48,0,0,5,0,4,0,74,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,76,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,78,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,80,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,82,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,84,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,86,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,88,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,90,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,92,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,95,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,97,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,107,5,0,0,99,111,109,112,111,115,105,116,101,79,112,0,5,0,4,0,112,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,136,5,0,0,111,70,114,97,103,67,111,108,111,114,0,0,5,0,6,0,138,5,0,0,103,108,95,70,114,97,103,67,111,111,114,100,0,0,0,0,5,0,6,0,139,5,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,48,0,0,5,0,6,0,140,5,0,0,117,77,97,115,107,84,101,120,116,117,114,101,48,0,0,0,5,0,6,0,141,5,0,0,117,68,101,115,116,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,142,5,0,0,117,71,97,109,109,97,76,85,84,0,0,0,5,0,6,0,143,5,0,0,98,86,97,114,121,105,110,103,83,105,122,101,115,0,0,0,6,0,7,0,143,5,0,0,0,0,0,0,117,90,66,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,8,0,143,5,0,0,1,0,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,6,0,8,0,143,5,0,0,2,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,5,0,143,5,0,0,3,0,0,0,112,97,100,48,0,0,0,0,5,0,3,0,145,5,0,0,0,0,0,0,5,0,6,0,146,5,0,0,98,67,111,110,115,116,97,110,116,83,105,122,101,115,0,0,6,0,8,0,146,5,0,0,0,0,0,0,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,6,0,6,0,146,5,0,0,1,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,146,5,0,0,2,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,5,0,146,5,0,0,3,0,0,0,112,97,100,49,0,0,0,0,5,0,3,0,148,5,0,0,0,0,0,0,5,0,6,0,149,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,5,0,6,0,150,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,5,0,6,0,151,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,5,0,6,0,152,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,5,0,6,0,153,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,5,0,4,0,155,5,0,0,118,67,116,114,108,0,0,0,5,0,6,0,159,5,0,0,118,77,97,115,107,84,101,120,67,111,111,114,100,48,0,0,5,0,6,0,161,5,0,0,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,5,0,5,0,162,5,0,0,118,66,97,115,101,67,111,108,111,114,0,0,5,0,5,0,163,5,0,0,118,84,105,108,101,67,116,114,108,0,0,0,5,0,4,0,166,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,169,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,173,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,176,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,178,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,180,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,182,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,184,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,186,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,189,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,190,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,192,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,194,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,196,5,0,0,112,97,114,97,109,0,0,0,71,0,4,0,136,5,0,0,30,0,0,0,0,0,0,0,71,0,4,0,138,5,0,0,11,0,0,0,15,0,0,0,71,0,4,0,139,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,139,5,0,0,33,0,0,0,5,0,0,0,71,0,4,0,140,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,140,5,0,0,33,0,0,0,6,0,0,0,71,0,4,0,141,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,141,5,0,0,33,0,0,0,7,0,0,0,71,0,4,0,142,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,142,5,0,0,33,0,0,0,8,0,0,0,72,0,5,0,143,5,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,143,5,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,143,5,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,143,5,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,143,5,0,0,2,0,0,0,71,0,4,0,145,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,145,5,0,0,33,0,0,0,3,0,0,0,72,0,5,0,146,5,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,146,5,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,146,5,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,146,5,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,146,5,0,0,2,0,0,0,71,0,4,0,148,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,148,5,0,0,33,0,0,0,4,0,0,0,71,0,4,0,149,5,0,0,30,0,0,0,4,0,0,0,71,0,4,0,150,5,0,0,30,0,0,0,5,0,0,0,71,0,4,0,151,5,0,0,30,0,0,0,6,0,0,0,71,0,4,0,152,5,0,0,30,0,0,0,7,0,0,0,71,0,4,0,153,5,0,0,30,0,0,0,8,0,0,0,71,0,4,0,155,5,0,0,30,0,0,0,9,0,0,0,71,0,4,0,159,5,0,0,30,0,0,0,0,0,0,0,71,0,4,0,161,5,0,0,30,0,0,0,1,0,0,0,71,0,4,0,162,5,0,0,30,0,0,0,2,0,0,0,71,0,4,0,163,5,0,0,30,0,0,0,3,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,9,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,33,0,6,0,11,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,32,0,4,0,17,0,0,0,7,0,0,0,6,0,0,0,25,0,9,0,18,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,19,0,0,0,18,0,0,0,32,0,4,0,20,0,0,0,0,0,0,0,19,0,0,0,23,0,4,0,21,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,7,0,0,0,21,0,0,0,33,0,6,0,23,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,33,0,10,0,29,0,0,0,2,0,0,0,8,0,0,0,17,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,17,0,0,0,23,0,4,0,39,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,40,0,0,0,7,0,0,0,39,0,0,0,33,0,6,0,41,0,0,0,6,0,0,0,8,0,0,0,40,0,0,0,8,0,0,0,33,0,6,0,47,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,20,0,0,0,33,0,6,0,53,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,20,0,0,0,33,0,10,0,59,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,69,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,8,0,79,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,87,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,5,0,97,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,33,0,15,0,102,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,20,0,2,0,117,0,0,0,23,0,4,0,118,0,0,0,117,0,0,0,3,0,0,0,32,0,4,0,119,0,0,0,7,0,0,0,118,0,0,0,33,0,6,0,120,0,0,0,39,0,0,0,119,0,0,0,40,0,0,0,40,0,0,0,33,0,5,0,126,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,33,0,5,0,131,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,33,0,4,0,136,0,0,0,39,0,0,0,40,0,0,0,33,0,6,0,155,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,10,0,0,0,33,0,8,0,166,0,0,0,7,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,10,0,0,0,33,0,8,0,174,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,40,0,0,0,10,0,0,0,33,0,21,0,182,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,22,0,0,0,10,0,0,0,40,0,0,0,22,0,0,0,8,0,0,0,10,0,0,0,21,0,4,0,209,0,0,0,32,0,0,0,0,0,0,0,43,0,4,0,209,0,0,0,210,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,240,0,0,0,0,0,0,0,43,0,4,0,209,0,0,0,244,0,0,0,0,0,0,0,32,0,4,0,248,0,0,0,7,0,0,0,117,0,0,0,43,0,4,0,6,0,0,0,1,1,0,0,0,0,128,192,43,0,4,0,6,0,0,0,10,1,0,0,0,0,64,192,43,0,4,0,6,0,0,0,17,1,0,0,0,0,0,192,43,0,4,0,6,0,0,0,24,1,0,0,0,0,128,191,43,0,4,0,6,0,0,0,36,1,0,0,0,0,128,63,43,0,4,0,6,0,0,0,43,1,0,0,0,0,0,64,43,0,4,0,6,0,0,0,50,1,0,0,0,0,64,64,43,0,4,0,6,0,0,0,61,1,0,0,0,0,128,64,43,0,4,0,209,0,0,0,98,1,0,0,1,0,0,0,43,0,4,0,209,0,0,0,106,1,0,0,2,0,0,0,44,0,7,0,7,0,0,0,27,2,0,0,240,0,0,0,240,0,0,0,240,0,0,0,240,0,0,0,44,0,5,0,21,0,0,0,35,2,0,0,36,1,0,0,24,1,0,0,43,0,4,0,9,0,0,0,109,2,0,0,1,0,0,0,43,0,4,0,9,0,0,0,172,2,0,0,2,0,0,0,24,0,4,0,185,2,0,0,7,0,0,0,4,0,0,0,32,0,4,0,186,2,0,0,7,0,0,0,185,2,0,0,44,0,6,0,39,0,0,0,81,3,0,0,240,0,0,0,240,0,0,0,240,0,0,0,44,0,6,0,39,0,0,0,85,3,0,0,36,1,0,0,36,1,0,0,36,1,0,0,43,0,4,0,6,0,0,0,114,3,0,0,0,0,0,65,44,0,6,0,39,0,0,0,115,3,0,0,240,0,0,0,114,3,0,0,61,1,0,0,43,0,4,0,6,0,0,0,118,3,0,0,69,118,244,63,43,0,4,0,6,0,0,0,122,3,0,0,0,0,64,65,44,0,6,0,39,0,0,0,128,3,0,0,50,1,0,0,50,1,0,0,50,1,0,0,43,0,4,0,6,0,0,0,130,3,0,0,0,0,16,65,44,0,6,0,39,0,0,0,131,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,43,0,4,0,6,0,0,0,168,3,0,0,0,0,0,63,43,0,4,0,6,0,0,0,205,3,0,0,146,10,134,63,44,0,6,0,39,0,0,0,243,3,0,0,168,3,0,0,168,3,0,0,168,3,0,0,44,0,6,0,39,0,0,0,246,3,0,0,43,1,0,0,43,1,0,0,43,1,0,0,43,0,4,0,6,0,0,0,9,4,0,0,0,0,128,62,44,0,6,0,39,0,0,0,10,4,0,0,9,4,0,0,9,4,0,0,9,4,0,0,43,0,4,0,6,0,0,0,12,4,0,0,0,0,128,65,44,0,6,0,39,0,0,0,13,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,43,0,4,0,9,0,0,0,192,4,0,0,0,0,0,0,23,0,4,0,252,4,0,0,9,0,0,0,2,0,0,0,32,0,4,0,253,4,0,0,7,0,0,0,252,4,0,0,43,0,4,0,9,0,0,0,6,5,0,0,4,0,0,0,44,0,5,0,252,4,0,0,7,5,0,0,109,2,0,0,6,5,0,0,43,0,4,0,9,0,0,0,45,5,0,0,3,0,0,0,43,0,4,0,9,0,0,0,61,5,0,0,8,0,0,0,43,0,4,0,9,0,0,0,71,5,0,0,15,0,0,0,43,0,4,0,9,0,0,0,109,5,0,0,10,0,0,0,32,0,4,0,135,5,0,0,3,0,0,0,7,0,0,0,59,0,4,0,135,5,0,0,136,5,0,0,3,0,0,0,32,0,4,0,137,5,0,0,1,0,0,0,7,0,0,0,59,0,4,0,137,5,0,0,138,5,0,0,1,0,0,0,59,0,4,0,20,0,0,0,139,5,0,0,0,0,0,0,59,0,4,0,20,0,0,0,140,5,0,0,0,0,0,0,59,0,4,0,20,0,0,0,141,5,0,0,0,0,0,0,59,0,4,0,20,0,0,0,142,5,0,0,0,0,0,0,30,0,6,0,143,5,0,0,21,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,32,0,4,0,144,5,0,0,2,0,0,0,143,5,0,0,59,0,4,0,144,5,0,0,145,5,0,0,2,0,0,0,30,0,6,0,146,5,0,0,21,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,32,0,4,0,147,5,0,0,2,0,0,0,146,5,0,0,59,0,4,0,147,5,0,0,148,5,0,0,2,0,0,0,59,0,4,0,137,5,0,0,149,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,150,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,151,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,152,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,153,5,0,0,1,0,0,0,32,0,4,0,154,5,0,0,1,0,0,0,6,0,0,0,59,0,4,0,154,5,0,0,155,5,0,0,1,0,0,0,32,0,4,0,158,5,0,0,1,0,0,0,39,0,0,0,59,0,4,0,158,5,0,0,159,5,0,0,1,0,0,0,32,0,4,0,160,5,0,0,1,0,0,0,21,0,0,0,59,0,4,0,160,5,0,0,161,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,162,5,0,0,1,0,0,0,59,0,4,0,154,5,0,0,163,5,0,0,1,0,0,0,32,0,4,0,170,5,0,0,2,0,0,0,21,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,22,0,0,0,166,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,169,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,173,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,176,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,178,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,180,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,182,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,184,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,186,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,189,5,0,0,7,0,0,0,59,0,4,0,40,0,0,0,190,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,192,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,194,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,196,5,0,0,7,0,0,0,61,0,4,0,6,0,0,0,156,5,0,0,155,5,0,0,110,0,4,0,9,0,0,0,157,5,0,0,156,5,0,0,61,0,4,0,6,0,0,0,164,5,0,0,163,5,0,0,110,0,4,0,9,0,0,0,165,5,0,0,164,5,0,0,61,0,4,0,7,0,0,0,167,5,0,0,138,5,0,0,79,0,7,0,21,0,0,0,168,5,0,0,167,5,0,0,167,5,0,0,0,0,0,0,1,0,0,0,62,0,3,0,166,5,0,0,168,5,0,0,65,0,5,0,170,5,0,0,171,5,0,0,145,5,0,0,109,2,0,0,61,0,4,0,21,0,0,0,172,5,0,0,171,5,0,0,62,0,3,0,169,5,0,0,172,5,0,0,65,0,5,0,170,5,0,0,174,5,0,0,148,5,0,0,192,4,0,0,61,0,4,0,21,0,0,0,175,5,0,0,174,5,0,0,62,0,3,0,173,5,0,0,175,5,0,0,61,0,4,0,7,0,0,0,177,5,0,0,149,5,0,0,62,0,3,0,176,5,0,0,177,5,0,0,61,0,4,0,7,0,0,0,179,5,0,0,150,5,0,0,62,0,3,0,178,5,0,0,179,5,0,0,61,0,4,0,7,0,0,0,181,5,0,0,151,5,0,0,62,0,3,0,180,5,0,0,181,5,0,0,61,0,4,0,7,0,0,0,183,5,0,0,152,5,0,0,62,0,3,0,182,5,0,0,183,5,0,0,61,0,4,0,7,0,0,0,185,5,0,0,153,5,0,0,62,0,3,0,184,5,0,0,185,5,0,0,65,0,5,0,170,5,0,0,187,5,0,0,145,5,0,0,172,2,0,0,61,0,4,0,21,0,0,0,188,5,0,0,187,5,0,0,62,0,3,0,186,5,0,0,188,5,0,0,62,0,3,0,189,5,0,0,157,5,0,0,61,0,4,0,39,0,0,0,191,5,0,0,159,5,0,0,62,0,3,0,190,5,0,0,191,5,0,0,61,0,4,0,21,0,0,0,193,5,0,0,161,5,0,0,62,0,3,0,192,5,0,0,193,5,0,0,61,0,4,0,7,0,0,0,195,5,0,0,162,5,0,0,62,0,3,0,194,5,0,0,195,5,0,0,62,0,3,0,196,5,0,0,165,5,0,0,57,0,22,0,7,0,0,0,197,5,0,0,201,0,0,0,166,5,0,0,139,5,0,0,140,5,0,0,141,5,0,0,142,5,0,0,169,5,0,0,173,5,0,0,176,5,0,0,178,5,0,0,180,5,0,0,182,5,0,0,184,5,0,0,186,5,0,0,189,5,0,0,190,5,0,0,192,5,0,0,194,5,0,0,196,5,0,0,62,0,3,0,136,5,0,0,197,5,0,0,253,0,1,0,56,0,1,0,54,0,5,0,7,0,0,0,15,0,0,0,0,0,0,0,11,0,0,0,55,0,3,0,8,0,0,0,12,0,0,0,55,0,3,0,8,0,0,0,13,0,0,0,55,0,3,0,10,0,0,0,14,0,0,0,248,0,2,0,16,0,0,0,61,0,4,0,9,0,0,0,203,0,0,0,14,0,0,0,247,0,3,0,206,0,0,0,0,0,0,0,251,0,7,0,203,0,0,0,206,0,0,0,1,0,0,0,204,0,0,0,2,0,0,0,205,0,0,0,248,0,2,0,204,0,0,0,61,0,4,0,7,0,0,0,207,0,0,0,13,0,0,0,79,0,8,0,39,0,0,0,208,0,0,0,207,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,211,0,0,0,13,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,212,0,0,0,211,0,0,0,65,0,5,0,17,0,0,0,213,0,0,0,12,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,214,0,0,0,213,0,0,0,133,0,5,0,6,0,0,0,215,0,0,0,212,0,0,0,214,0,0,0,81,0,5,0,6,0,0,0,216,0,0,0,208,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,217,0,0,0,208,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,218,0,0,0,208,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,219,0,0,0,216,0,0,0,217,0,0,0,218,0,0,0,215,0,0,0,254,0,2,0,219,0,0,0,248,0,2,0,205,0,0,0,61,0,4,0,7,0,0,0,221,0,0,0,12,0,0,0,79,0,8,0,39,0,0,0,222,0,0,0,221,0,0,0,221,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,223,0,0,0,13,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,224,0,0,0,223,0,0,0,65,0,5,0,17,0,0,0,225,0,0,0,12,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,226,0,0,0,225,0,0,0,133,0,5,0,6,0,0,0,227,0,0,0,224,0,0,0,226,0,0,0,81,0,5,0,6,0,0,0,228,0,0,0,222,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,229,0,0,0,222,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,230,0,0,0,222,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,231,0,0,0,228,0,0,0,229,0,0,0,230,0,0,0,227,0,0,0,254,0,2,0,231,0,0,0,248,0,2,0,206,0,0,0,61,0,4,0,7,0,0,0,234,0,0,0,12,0,0,0,254,0,2,0,234,0,0,0,56,0,1,0,54,0,5,0,6,0,0,0,27,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,17,0,0,0,24,0,0,0,55,0,3,0,20,0,0,0,25,0,0,0,55,0,3,0,22,0,0,0,26,0,0,0,248,0,2,0,28,0,0,0,61,0,4,0,19,0,0,0,237,0,0,0,25,0,0,0,61,0,4,0,21,0,0,0,238,0,0,0,26,0,0,0,61,0,4,0,6,0,0,0,239,0,0,0,24,0,0,0,80,0,5,0,21,0,0,0,241,0,0,0,239,0,0,0,240,0,0,0,129,0,5,0,21,0,0,0,242,0,0,0,238,0,0,0,241,0,0,0,87,0,5,0,7,0,0,0,243,0,0,0,237,0,0,0,242,0,0,0,81,0,5,0,6,0,0,0,245,0,0,0,243,0,0,0,0,0,0,0,254,0,2,0,245,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,37,0,0,0,0,0,0,0,29,0,0,0,55,0,3,0,8,0,0,0,30,0,0,0,55,0,3,0,17,0,0,0,31,0,0,0,55,0,3,0,8,0,0,0,32,0,0,0,55,0,3,0,20,0,0,0,33,0,0,0,55,0,3,0,22,0,0,0,34,0,0,0,55,0,3,0,8,0,0,0,35,0,0,0,55,0,3,0,17,0,0,0,36,0,0,0,248,0,2,0,38,0,0,0,59,0,4,0,248,0,0,0,249,0,0,0,7,0,0,0,59,0,4,0,17,0,0,0,254,0,0,0,7,0,0,0,59,0,4,0,17,0,0,0,4,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,5,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,13,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,14,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,20,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,21,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,27,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,28,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,32,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,33,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,39,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,40,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,46,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,47,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,53,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,54,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,58,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,64,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,65,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,250,0,0,0,35,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,251,0,0,0,250,0,0,0,186,0,5,0,117,0,0,0,252,0,0,0,251,0,0,0,240,0,0,0,62,0,3,0,249,0,0,0,252,0,0,0,61,0,4,0,117,0,0,0,253,0,0,0,249,0,0,0,247,0,3,0,0,1,0,0,0,0,0,0,250,0,4,0,253,0,0,0,255,0,0,0,8,1,0,0,248,0,2,0,255,0,0,0,61,0,4,0,6,0,0,0,2,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,3,1,0,0,1,1,0,0,2,1,0,0,62,0,3,0,4,1,0,0,3,1,0,0,61,0,4,0,21,0,0,0,6,1,0,0,34,0,0,0,62,0,3,0,5,1,0,0,6,1,0,0,57,0,7,0,6,0,0,0,7,1,0,0,27,0,0,0,4,1,0,0,33,0,0,0,5,1,0,0,62,0,3,0,254,0,0,0,7,1,0,0,249,0,2,0,0,1,0,0,248,0,2,0,8,1,0,0,62,0,3,0,254,0,0,0,240,0,0,0,249,0,2,0,0,1,0,0,248,0,2,0,0,1,0,0,61,0,4,0,6,0,0,0,9,1,0,0,254,0,0,0,61,0,4,0,6,0,0,0,11,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,12,1,0,0,10,1,0,0,11,1,0,0,62,0,3,0,13,1,0,0,12,1,0,0,61,0,4,0,21,0,0,0,15,1,0,0,34,0,0,0,62,0,3,0,14,1,0,0,15,1,0,0,57,0,7,0,6,0,0,0,16,1,0,0,27,0,0,0,13,1,0,0,33,0,0,0,14,1,0,0,61,0,4,0,6,0,0,0,18,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,19,1,0,0,17,1,0,0,18,1,0,0,62,0,3,0,20,1,0,0,19,1,0,0,61,0,4,0,21,0,0,0,22,1,0,0,34,0,0,0,62,0,3,0,21,1,0,0,22,1,0,0,57,0,7,0,6,0,0,0,23,1,0,0,27,0,0,0,20,1,0,0,33,0,0,0,21,1,0,0,61,0,4,0,6,0,0,0,25,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,26,1,0,0,24,1,0,0,25,1,0,0,62,0,3,0,27,1,0,0,26,1,0,0,61,0,4,0,21,0,0,0,29,1,0,0,34,0,0,0,62,0,3,0,28,1,0,0,29,1,0,0,57,0,7,0,6,0,0,0,30,1,0,0,27,0,0,0,27,1,0,0,33,0,0,0,28,1,0,0,80,0,7,0,7,0,0,0,31,1,0,0,9,1,0,0,16,1,0,0,23,1,0,0,30,1,0,0,62,0,3,0,30,0,0,0,31,1,0,0,62,0,3,0,32,1,0,0,240,0,0,0,61,0,4,0,21,0,0,0,34,1,0,0,34,0,0,0,62,0,3,0,33,1,0,0,34,1,0,0,57,0,7,0,6,0,0,0,35,1,0,0,27,0,0,0,32,1,0,0,33,0,0,0,33,1,0,0,62,0,3,0,31,0,0,0,35,1,0,0,61,0,4,0,6,0,0,0,37,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,38,1,0,0,36,1,0,0,37,1,0,0,62,0,3,0,39,1,0,0,38,1,0,0,61,0,4,0,21,0,0,0,41,1,0,0,34,0,0,0,62,0,3,0,40,1,0,0,41,1,0,0,57,0,7,0,6,0,0,0,42,1,0,0,27,0,0,0,39,1,0,0,33,0,0,0,40,1,0,0,61,0,4,0,6,0,0,0,44,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,45,1,0,0,43,1,0,0,44,1,0,0,62,0,3,0,46,1,0,0,45,1,0,0,61,0,4,0,21,0,0,0,48,1,0,0,34,0,0,0,62,0,3,0,47,1,0,0,48,1,0,0,57,0,7,0,6,0,0,0,49,1,0,0,27,0,0,0,46,1,0,0,33,0,0,0,47,1,0,0,61,0,4,0,6,0,0,0,51,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,52,1,0,0,50,1,0,0,51,1,0,0,62,0,3,0,53,1,0,0,52,1,0,0,61,0,4,0,21,0,0,0,55,1,0,0,34,0,0,0,62,0,3,0,54,1,0,0,55,1,0,0,57,0,7,0,6,0,0,0,56,1,0,0,27,0,0,0,53,1,0,0,33,0,0,0,54,1,0,0,61,0,4,0,117,0,0,0,57,1,0,0,249,0,0,0,247,0,3,0,60,1,0,0,0,0,0,0,250,0,4,0,57,1,0,0,59,1,0,0,68,1,0,0,248,0,2,0,59,1,0,0,61,0,4,0,6,0,0,0,62,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,63,1,0,0,61,1,0,0,62,1,0,0,62,0,3,0,64,1,0,0,63,1,0,0,61,0,4,0,21,0,0,0,66,1,0,0,34,0,0,0,62,0,3,0,65,1,0,0,66,1,0,0,57,0,7,0,6,0,0,0,67,1,0,0,27,0,0,0,64,1,0,0,33,0,0,0,65,1,0,0,62,0,3,0,58,1,0,0,67,1,0,0,249,0,2,0,60,1,0,0,248,0,2,0,68,1,0,0,62,0,3,0,58,1,0,0,240,0,0,0,249,0,2,0,60,1,0,0,248,0,2,0,60,1,0,0,61,0,4,0,6,0,0,0,69,1,0,0,58,1,0,0,80,0,7,0,7,0,0,0,70,1,0,0,42,1,0,0,49,1,0,0,56,1,0,0,69,1,0,0,62,0,3,0,32,0,0,0,70,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,6,0,0,0,45,0,0,0,0,0,0,0,41,0,0,0,55,0,3,0,8,0,0,0,42,0,0,0,55,0,3,0,40,0,0,0,43,0,0,0,55,0,3,0,8,0,0,0,44,0,0,0,248,0,2,0,46,0,0,0,61,0,4,0,7,0,0,0,71,1,0,0,42,0,0,0,61,0,4,0,7,0,0,0,72,1,0,0,44,0,0,0,148,0,5,0,6,0,0,0,73,1,0,0,71,1,0,0,72,1,0,0,61,0,4,0,39,0,0,0,74,1,0,0,43,0,0,0,61,0,4,0,7,0,0,0,75,1,0,0,44,0,0,0,79,0,8,0,39,0,0,0,76,1,0,0,75,1,0,0,75,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,148,0,5,0,6,0,0,0,77,1,0,0,74,1,0,0,76,1,0,0,129,0,5,0,6,0,0,0,78,1,0,0,73,1,0,0,77,1,0,0,254,0,2,0,78,1,0,0,56,0,1,0,54,0,5,0,6,0,0,0,51,0,0,0,0,0,0,0,47,0,0,0,55,0,3,0,17,0,0,0,48,0,0,0,55,0,3,0,17,0,0,0,49,0,0,0,55,0,3,0,20,0,0,0,50,0,0,0,248,0,2,0,52,0,0,0,61,0,4,0,19,0,0,0,81,1,0,0,50,0,0,0,61,0,4,0,6,0,0,0,82,1,0,0,49,0,0,0,61,0,4,0,6,0,0,0,83,1,0,0,48,0,0,0,131,0,5,0,6,0,0,0,84,1,0,0,36,1,0,0,83,1,0,0,80,0,5,0,21,0,0,0,85,1,0,0,82,1,0,0,84,1,0,0,87,0,5,0,7,0,0,0,86,1,0,0,81,1,0,0,85,1,0,0,81,0,5,0,6,0,0,0,87,1,0,0,86,1,0,0,0,0,0,0,254,0,2,0,87,1,0,0,56,0,1,0,54,0,5,0,39,0,0,0,57,0,0,0,0,0,0,0,53,0,0,0,55,0,3,0,40,0,0,0,54,0,0,0,55,0,3,0,40,0,0,0,55,0,0,0,55,0,3,0,20,0,0,0,56,0,0,0,248,0,2,0,58,0,0,0,59,0,4,0,17,0,0,0,90,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,93,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,97,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,101,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,105,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,109,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,91,1,0,0,54,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,92,1,0,0,91,1,0,0,62,0,3,0,90,1,0,0,92,1,0,0,65,0,5,0,17,0,0,0,94,1,0,0,55,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,95,1,0,0,94,1,0,0,62,0,3,0,93,1,0,0,95,1,0,0,57,0,7,0,6,0,0,0,96,1,0,0,51,0,0,0,90,1,0,0,93,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,99,1,0,0,54,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,100,1,0,0,99,1,0,0,62,0,3,0,97,1,0,0,100,1,0,0,65,0,5,0,17,0,0,0,102,1,0,0,55,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,103,1,0,0,102,1,0,0,62,0,3,0,101,1,0,0,103,1,0,0,57,0,7,0,6,0,0,0,104,1,0,0,51,0,0,0,97,1,0,0,101,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,107,1,0,0,54,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,108,1,0,0,107,1,0,0,62,0,3,0,105,1,0,0,108,1,0,0,65,0,5,0,17,0,0,0,110,1,0,0,55,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,111,1,0,0,110,1,0,0,62,0,3,0,109,1,0,0,111,1,0,0,57,0,7,0,6,0,0,0,112,1,0,0,51,0,0,0,105,1,0,0,109,1,0,0,56,0,0,0,80,0,6,0,39,0,0,0,113,1,0,0,96,1,0,0,104,1,0,0,112,1,0,0,254,0,2,0,113,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,67,0,0,0,0,0,0,0,59,0,0,0,55,0,3,0,22,0,0,0,60,0,0,0,55,0,3,0,20,0,0,0,61,0,0,0,55,0,3,0,20,0,0,0,62,0,0,0,55,0,3,0,22,0,0,0,63,0,0,0,55,0,3,0,8,0,0,0,64,0,0,0,55,0,3,0,8,0,0,0,65,0,0,0,55,0,3,0,8,0,0,0,66,0,0,0,248,0,2,0,68,0,0,0,59,0,4,0,8,0,0,0,116,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,118,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,121,1,0,0,7,0,0,0,59,0,4,0,248,0,0,0,124,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,133,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,139,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,140,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,141,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,145,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,146,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,147,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,148,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,150,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,152,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,157,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,164,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,166,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,167,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,170,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,178,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,179,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,182,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,185,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,194,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,195,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,198,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,208,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,210,1,0,0,7,0,0,0,61,0,4,0,7,0,0,0,117,1,0,0,64,0,0,0,62,0,3,0,116,1,0,0,117,1,0,0,61,0,4,0,7,0,0,0,119,1,0,0,65,0,0,0,79,0,8,0,39,0,0,0,120,1,0,0,119,1,0,0,119,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,118,1,0,0,120,1,0,0,61,0,4,0,7,0,0,0,122,1,0,0,66,0,0,0,79,0,8,0,39,0,0,0,123,1,0,0,122,1,0,0,122,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,121,1,0,0,123,1,0,0,65,0,5,0,17,0,0,0,125,1,0,0,66,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,126,1,0,0,125,1,0,0,183,0,5,0,117,0,0,0,127,1,0,0,126,1,0,0,240,0,0,0,62,0,3,0,124,1,0,0,127,1,0,0,65,0,5,0,17,0,0,0,128,1,0,0,116,1,0,0,210,0,0,0,61,0,4,0,6,0,0,0,129,1,0,0,128,1,0,0,180,0,5,0,117,0,0,0,130,1,0,0,129,1,0,0,240,0,0,0,247,0,3,0,132,1,0,0,0,0,0,0,250,0,4,0,130,1,0,0,131,1,0,0,138,1,0,0,248,0,2,0,131,1,0,0,61,0,4,0,19,0,0,0,134,1,0,0,61,0,0,0,61,0,4,0,21,0,0,0,135,1,0,0,60,0,0,0,87,0,5,0,7,0,0,0,136,1,0,0,134,1,0,0,135,1,0,0,79,0,8,0,39,0,0,0,137,1,0,0,136,1,0,0,136,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,3,0,133,1,0,0,137,1,0,0,249,0,2,0,132,1,0,0,248,0,2,0,138,1,0,0,65,0,5,0,17,0,0,0,142,1,0,0,63,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,143,1,0,0,142,1,0,0,136,0,5,0,6,0,0,0,144,1,0,0,36,1,0,0,143,1,0,0,61,0,4,0,21,0,0,0,149,1,0,0,60,0,0,0,62,0,3,0,148,1,0,0,149,1,0,0,61,0,4,0,7,0,0,0,151,1,0,0,116,1,0,0,62,0,3,0,150,1,0,0,151,1,0,0,62,0,3,0,152,1,0,0,144,1,0,0,57,0,11,0,2,0,0,0,153,1,0,0,37,0,0,0,145,1,0,0,146,1,0,0,147,1,0,0,61,0,0,0,148,1,0,0,150,1,0,0,152,1,0,0,61,0,4,0,7,0,0,0,154,1,0,0,145,1,0,0,62,0,3,0,139,1,0,0,154,1,0,0,61,0,4,0,6,0,0,0,155,1,0,0,146,1,0,0,62,0,3,0,140,1,0,0,155,1,0,0,61,0,4,0,7,0,0,0,156,1,0,0,147,1,0,0,62,0,3,0,141,1,0,0,156,1,0,0,61,0,4,0,6,0,0,0,158,1,0,0,140,1,0,0,61,0,4,0,7,0,0,0,159,1,0,0,141,1,0,0,79,0,7,0,21,0,0,0,160,1,0,0,159,1,0,0,159,1,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,161,1,0,0,160,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,162,1,0,0,160,1,0,0,1,0,0,0,80,0,6,0,39,0,0,0,163,1,0,0,158,1,0,0,161,1,0,0,162,1,0,0,61,0,4,0,7,0,0,0,165,1,0,0,139,1,0,0,62,0,3,0,164,1,0,0,165,1,0,0,62,0,3,0,166,1,0,0,163,1,0,0,61,0,4,0,7,0,0,0,168,1,0,0,116,1,0,0,62,0,3,0,167,1,0,0,168,1,0,0,57,0,7,0,6,0,0,0,169,1,0,0,45,0,0,0,164,1,0,0,166,1,0,0,167,1,0,0,62,0,3,0,157,1,0,0,169,1,0,0,61,0,4,0,7,0,0,0,171,1,0,0,139,1,0,0,79,0,8,0,39,0,0,0,172,1,0,0,171,1,0,0,171,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,173,1,0,0,140,1,0,0,81,0,5,0,6,0,0,0,174,1,0,0,172,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,175,1,0,0,172,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,176,1,0,0,172,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,177,1,0,0,174,1,0,0,175,1,0,0,176,1,0,0,173,1,0,0,62,0,3,0,178,1,0,0,177,1,0,0,61,0,4,0,7,0,0,0,180,1,0,0,141,1,0,0,79,0,8,0,39,0,0,0,181,1,0,0,180,1,0,0,180,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,179,1,0,0,181,1,0,0,61,0,4,0,7,0,0,0,183,1,0,0,116,1,0,0,62,0,3,0,182,1,0,0,183,1,0,0,57,0,7,0,6,0,0,0,184,1,0,0,45,0,0,0,178,1,0,0,179,1,0,0,182,1,0,0,62,0,3,0,170,1,0,0,184,1,0,0,61,0,4,0,7,0,0,0,186,1,0,0,139,1,0,0,79,0,7,0,21,0,0,0,187,1,0,0,186,1,0,0,186,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,188,1,0,0,140,1,0,0,65,0,5,0,17,0,0,0,189,1,0,0,141,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,190,1,0,0,189,1,0,0,81,0,5,0,6,0,0,0,191,1,0,0,187,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,192,1,0,0,187,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,193,1,0,0,191,1,0,0,192,1,0,0,188,1,0,0,190,1,0,0,62,0,3,0,194,1,0,0,193,1,0,0,61,0,4,0,7,0,0,0,196,1,0,0,141,1,0,0,79,0,8,0,39,0,0,0,197,1,0,0,196,1,0,0,196,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,195,1,0,0,197,1,0,0,61,0,4,0,7,0,0,0,199,1,0,0,116,1,0,0,62,0,3,0,198,1,0,0,199,1,0,0,57,0,7,0,6,0,0,0,200,1,0,0,45,0,0,0,194,1,0,0,195,1,0,0,198,1,0,0,62,0,3,0,185,1,0,0,200,1,0,0,61,0,4,0,6,0,0,0,201,1,0,0,157,1,0,0,61,0,4,0,6,0,0,0,202,1,0,0,170,1,0,0,61,0,4,0,6,0,0,0,203,1,0,0,185,1,0,0,80,0,6,0,39,0,0,0,204,1,0,0,201,1,0,0,202,1,0,0,203,1,0,0,62,0,3,0,133,1,0,0,204,1,0,0,249,0,2,0,132,1,0,0,248,0,2,0,132,1,0,0,61,0,4,0,117,0,0,0,205,1,0,0,124,1,0,0,247,0,3,0,207,1,0,0,0,0,0,0,250,0,4,0,205,1,0,0,206,1,0,0,207,1,0,0,248,0,2,0,206,1,0,0,61,0,4,0,39,0,0,0,209,1,0,0,118,1,0,0,62,0,3,0,208,1,0,0,209,1,0,0,61,0,4,0,39,0,0,0,211,1,0,0,133,1,0,0,62,0,3,0,210,1,0,0,211,1,0,0,57,0,7,0,39,0,0,0,212,1,0,0,57,0,0,0,208,1,0,0,210,1,0,0,62,0,0,0,62,0,3,0,133,1,0,0,212,1,0,0,249,0,2,0,207,1,0,0,248,0,2,0,207,1,0,0,61,0,4,0,39,0,0,0,213,1,0,0,118,1,0,0,61,0,4,0,39,0,0,0,214,1,0,0,121,1,0,0,61,0,4,0,39,0,0,0,215,1,0,0,133,1,0,0,12,0,8,0,39,0,0,0,216,1,0,0,1,0,0,0,46,0,0,0,213,1,0,0,214,1,0,0,215,1,0,0,81,0,5,0,6,0,0,0,217,1,0,0,216,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,218,1,0,0,216,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,219,1,0,0,216,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,220,1,0,0,217,1,0,0,218,1,0,0,219,1,0,0,36,1,0,0,254,0,2,0,220,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,77,0,0,0,0,0,0,0,69,0,0,0,55,0,3,0,22,0,0,0,70,0,0,0,55,0,3,0,20,0,0,0,71,0,0,0,55,0,3,0,22,0,0,0,72,0,0,0,55,0,3,0,22,0,0,0,73,0,0,0,55,0,3,0,22,0,0,0,74,0,0,0,55,0,3,0,8,0,0,0,75,0,0,0,55,0,3,0,8,0,0,0,76,0,0,0,248,0,2,0,78,0,0,0,59,0,4,0,22,0,0,0,223,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,226,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,229,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,232,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,235,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,239,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,241,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,247,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,255,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,8,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,18,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,26,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,32,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,55,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,59,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,224,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,225,1,0,0,224,1,0,0,224,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,223,1,0,0,225,1,0,0,61,0,4,0,7,0,0,0,227,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,228,1,0,0,227,1,0,0,227,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,226,1,0,0,228,1,0,0,61,0,4,0,7,0,0,0,230,1,0,0,76,0,0,0,79,0,7,0,21,0,0,0,231,1,0,0,230,1,0,0,230,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,229,1,0,0,231,1,0,0,61,0,4,0,7,0,0,0,233,1,0,0,76,0,0,0,79,0,7,0,21,0,0,0,234,1,0,0,233,1,0,0,233,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,232,1,0,0,234,1,0,0,61,0,4,0,21,0,0,0,236,1,0,0,70,0,0,0,61,0,4,0,21,0,0,0,237,1,0,0,223,1,0,0,131,0,5,0,21,0,0,0,238,1,0,0,236,1,0,0,237,1,0,0,62,0,3,0,235,1,0,0,238,1,0,0,61,0,4,0,21,0,0,0,240,1,0,0,226,1,0,0,62,0,3,0,239,1,0,0,240,1,0,0,65,0,5,0,17,0,0,0,242,1,0,0,229,1,0,0,98,1,0,0,61,0,4,0,6,0,0,0,243,1,0,0,242,1,0,0,65,0,5,0,17,0,0,0,244,1,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,245,1,0,0,244,1,0,0,131,0,5,0,6,0,0,0,246,1,0,0,243,1,0,0,245,1,0,0,62,0,3,0,241,1,0,0,246,1,0,0,61,0,4,0,21,0,0,0,248,1,0,0,239,1,0,0,61,0,4,0,21,0,0,0,249,1,0,0,239,1,0,0,148,0,5,0,6,0,0,0,250,1,0,0,248,1,0,0,249,1,0,0,61,0,4,0,6,0,0,0,251,1,0,0,241,1,0,0,61,0,4,0,6,0,0,0,252,1,0,0,241,1,0,0,133,0,5,0,6,0,0,0,253,1,0,0,251,1,0,0,252,1,0,0,131,0,5,0,6,0,0,0,254,1,0,0,250,1,0,0,253,1,0,0,62,0,3,0,247,1,0,0,254,1,0,0,61,0,4,0,21,0,0,0,0,2,0,0,235,1,0,0,61,0,4,0,21,0,0,0,1,2,0,0,239,1,0,0,148,0,5,0,6,0,0,0,2,2,0,0,0,2,0,0,1,2,0,0,65,0,5,0,17,0,0,0,3,2,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,4,2,0,0,3,2,0,0,61,0,4,0,6,0,0,0,5,2,0,0,241,1,0,0,133,0,5,0,6,0,0,0,6,2,0,0,4,2,0,0,5,2,0,0,129,0,5,0,6,0,0,0,7,2,0,0,2,2,0,0,6,2,0,0,62,0,3,0,255,1,0,0,7,2,0,0,61,0,4,0,21,0,0,0,9,2,0,0,235,1,0,0,61,0,4,0,21,0,0,0,10,2,0,0,235,1,0,0,148,0,5,0,6,0,0,0,11,2,0,0,9,2,0,0,10,2,0,0,65,0,5,0,17,0,0,0,12,2,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,13,2,0,0,12,2,0,0,65,0,5,0,17,0,0,0,14,2,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,15,2,0,0,14,2,0,0,133,0,5,0,6,0,0,0,16,2,0,0,13,2,0,0,15,2,0,0,131,0,5,0,6,0,0,0,17,2,0,0,11,2,0,0,16,2,0,0,62,0,3,0,8,2,0,0,17,2,0,0,61,0,4,0,6,0,0,0,19,2,0,0,255,1,0,0,61,0,4,0,6,0,0,0,20,2,0,0,255,1,0,0,133,0,5,0,6,0,0,0,21,2,0,0,19,2,0,0,20,2,0,0,61,0,4,0,6,0,0,0,22,2,0,0,247,1,0,0,61,0,4,0,6,0,0,0,23,2,0,0,8,2,0,0,133,0,5,0,6,0,0,0,24,2,0,0,22,2,0,0,23,2,0,0,131,0,5,0,6,0,0,0,25,2,0,0,21,2,0,0,24,2,0,0,62,0,3,0,18,2,0,0,25,2,0,0,62,0,3,0,26,2,0,0,27,2,0,0,61,0,4,0,6,0,0,0,28,2,0,0,18,2,0,0,183,0,5,0,117,0,0,0,29,2,0,0,28,2,0,0,240,0,0,0,247,0,3,0,31,2,0,0,0,0,0,0,250,0,4,0,29,2,0,0,30,2,0,0,31,2,0,0,248,0,2,0,30,2,0,0,61,0,4,0,6,0,0,0,33,2,0,0,18,2,0,0,12,0,6,0,6,0,0,0,34,2,0,0,1,0,0,0,31,0,0,0,33,2,0,0,142,0,5,0,21,0,0,0,36,2,0,0,35,2,0,0,34,2,0,0,61,0,4,0,6,0,0,0,37,2,0,0,255,1,0,0,80,0,5,0,21,0,0,0,38,2,0,0,37,2,0,0,37,2,0,0,129,0,5,0,21,0,0,0,39,2,0,0,36,2,0,0,38,2,0,0,81,0,5,0,6,0,0,0,40,2,0,0,39,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,41,2,0,0,39,2,0,0,1,0,0,0,80,0,5,0,21,0,0,0,42,2,0,0,40,2,0,0,41,2,0,0,61,0,4,0,6,0,0,0,43,2,0,0,247,1,0,0,80,0,5,0,21,0,0,0,44,2,0,0,43,2,0,0,43,2,0,0,136,0,5,0,21,0,0,0,45,2,0,0,42,2,0,0,44,2,0,0,62,0,3,0,32,2,0,0,45,2,0,0,65,0,5,0,17,0,0,0,46,2,0,0,32,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,47,2,0,0,46,2,0,0,65,0,5,0,17,0,0,0,48,2,0,0,32,2,0,0,98,1,0,0,61,0,4,0,6,0,0,0,49,2,0,0,48,2,0,0,186,0,5,0,117,0,0,0,50,2,0,0,47,2,0,0,49,2,0,0,247,0,3,0,52,2,0,0,0,0,0,0,250,0,4,0,50,2,0,0,51,2,0,0,52,2,0,0,248,0,2,0,51,2,0,0,61,0,4,0,21,0,0,0,53,2,0,0,32,2,0,0,79,0,7,0,21,0,0,0,54,2,0,0,53,2,0,0,53,2,0,0,1,0,0,0,0,0,0,0,62,0,3,0,32,2,0,0,54,2,0,0,249,0,2,0,52,2,0,0,248,0,2,0,52,2,0,0,65,0,5,0,17,0,0,0,56,2,0,0,32,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,57,2,0,0,56,2,0,0,190,0,5,0,117,0,0,0,58,2,0,0,57,2,0,0,240,0,0,0,247,0,3,0,61,2,0,0,0,0,0,0,250,0,4,0,58,2,0,0,60,2,0,0,64,2,0,0,248,0,2,0,60,2,0,0,65,0,5,0,17,0,0,0,62,2,0,0,32,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,63,2,0,0,62,2,0,0,62,0,3,0,59,2,0,0,63,2,0,0,249,0,2,0,61,2,0,0,248,0,2,0,64,2,0,0,65,0,5,0,17,0,0,0,65,2,0,0,32,2,0,0,98,1,0,0,61,0,4,0,6,0,0,0,66,2,0,0,65,2,0,0,62,0,3,0,59,2,0,0,66,2,0,0,249,0,2,0,61,2,0,0,248,0,2,0,61,2,0,0,61,0,4,0,6,0,0,0,67,2,0,0,59,2,0,0,62,0,3,0,55,2,0,0,67,2,0,0,61,0,4,0,19,0,0,0,68,2,0,0,71,0,0,0,61,0,4,0,21,0,0,0,69,2,0,0,232,1,0,0,61,0,4,0,6,0,0,0,70,2,0,0,55,2,0,0,80,0,5,0,21,0,0,0,71,2,0,0,70,2,0,0,240,0,0,0,129,0,5,0,21,0,0,0,72,2,0,0,69,2,0,0,71,2,0,0,87,0,5,0,7,0,0,0,73,2,0,0,68,2,0,0,72,2,0,0,62,0,3,0,26,2,0,0,73,2,0,0,249,0,2,0,31,2,0,0,248,0,2,0,31,2,0,0,61,0,4,0,7,0,0,0,74,2,0,0,26,2,0,0,254,0,2,0,74,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,85,0,0,0,0,0,0,0,79,0,0,0,55,0,3,0,22,0,0,0,80,0,0,0,55,0,3,0,20,0,0,0,81,0,0,0,55,0,3,0,22,0,0,0,82,0,0,0,55,0,3,0,8,0,0,0,83,0,0,0,55,0,3,0,8,0,0,0,84,0,0,0,248,0,2,0,86,0,0,0,59,0,4,0,22,0,0,0,77,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,82,2,0,0,7,0,0,0,59,0,4,0,40,0,0,0,86,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,89,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,92,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,108,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,118,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,134,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,78,2,0,0,83,0,0,0,79,0,7,0,21,0,0,0,79,2,0,0,78,2,0,0,78,2,0,0,0,0,0,0,1,0,0,0,61,0,4,0,21,0,0,0,80,2,0,0,82,0,0,0,136,0,5,0,21,0,0,0,81,2,0,0,79,2,0,0,80,2,0,0,62,0,3,0,77,2,0,0,81,2,0,0,65,0,5,0,17,0,0,0,83,2,0,0,83,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,84,2,0,0,83,2,0,0,110,0,4,0,9,0,0,0,85,2,0,0,84,2,0,0,62,0,3,0,82,2,0,0,85,2,0,0,61,0,4,0,7,0,0,0,87,2,0,0,84,0,0,0,79,0,8,0,39,0,0,0,88,2,0,0,87,2,0,0,87,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,86,2,0,0,88,2,0,0,65,0,5,0,17,0,0,0,90,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,91,2,0,0,90,2,0,0,62,0,3,0,89,2,0,0,91,2,0,0,61,0,4,0,19,0,0,0,93,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,94,2,0,0,80,0,0,0,87,0,5,0,7,0,0,0,95,2,0,0,93,2,0,0,94,2,0,0,65,0,5,0,17,0,0,0,96,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,97,2,0,0,96,2,0,0,142,0,5,0,7,0,0,0,98,2,0,0,95,2,0,0,97,2,0,0,62,0,3,0,92,2,0,0,98,2,0,0,61,0,4,0,39,0,0,0,99,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,100,2,0,0,99,2,0,0,99,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,101,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,102,2,0,0,101,2,0,0,101,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,103,2,0,0,102,2,0,0,100,2,0,0,65,0,5,0,17,0,0,0,104,2,0,0,86,2,0,0,244,0,0,0,81,0,5,0,6,0,0,0,105,2,0,0,103,2,0,0,0,0,0,0,62,0,3,0,104,2,0,0,105,2,0,0,65,0,5,0,17,0,0,0,106,2,0,0,86,2,0,0,98,1,0,0,81,0,5,0,6,0,0,0,107,2,0,0,103,2,0,0,1,0,0,0,62,0,3,0,106,2,0,0,107,2,0,0,62,0,3,0,108,2,0,0,109,2,0,0,249,0,2,0,110,2,0,0,248,0,2,0,110,2,0,0,246,0,4,0,112,2,0,0,113,2,0,0,0,0,0,0,249,0,2,0,114,2,0,0,248,0,2,0,114,2,0,0,61,0,4,0,9,0,0,0,115,2,0,0,108,2,0,0,61,0,4,0,9,0,0,0,116,2,0,0,82,2,0,0,179,0,5,0,117,0,0,0,117,2,0,0,115,2,0,0,116,2,0,0,250,0,4,0,117,2,0,0,111,2,0,0,112,2,0,0,248,0,2,0,111,2,0,0,65,0,5,0,17,0,0,0,119,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,120,2,0,0,119,2,0,0,62,0,3,0,118,2,0,0,120,2,0,0,61,0,4,0,39,0,0,0,121,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,122,2,0,0,121,2,0,0,121,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,123,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,124,2,0,0,123,2,0,0,123,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,125,2,0,0,124,2,0,0,122,2,0,0,65,0,5,0,17,0,0,0,126,2,0,0,86,2,0,0,244,0,0,0,81,0,5,0,6,0,0,0,127,2,0,0,125,2,0,0,0,0,0,0,62,0,3,0,126,2,0,0,127,2,0,0,65,0,5,0,17,0,0,0,128,2,0,0,86,2,0,0,98,1,0,0,81,0,5,0,6,0,0,0,129,2,0,0,125,2,0,0,1,0,0,0,62,0,3,0,128,2,0,0,129,2,0,0,65,0,5,0,17,0,0,0,130,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,131,2,0,0,130,2,0,0,61,0,4,0,6,0,0,0,132,2,0,0,118,2,0,0,129,0,5,0,6,0,0,0,133,2,0,0,132,2,0,0,131,2,0,0,62,0,3,0,118,2,0,0,133,2,0,0,61,0,4,0,21,0,0,0,135,2,0,0,77,2,0,0,61,0,4,0,9,0,0,0,136,2,0,0,108,2,0,0,111,0,4,0,6,0,0,0,137,2,0,0,136,2,0,0,65,0,5,0,17,0,0,0,138,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,139,2,0,0,138,2,0,0,61,0,4,0,6,0,0,0,140,2,0,0,118,2,0,0,136,0,5,0,6,0,0,0,141,2,0,0,139,2,0,0,140,2,0,0,129,0,5,0,6,0,0,0,142,2,0,0,137,2,0,0,141,2,0,0,142,0,5,0,21,0,0,0,143,2,0,0,135,2,0,0,142,2,0,0,62,0,3,0,134,2,0,0,143,2,0,0,61,0,4,0,19,0,0,0,144,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,145,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,146,2,0,0,134,2,0,0,131,0,5,0,21,0,0,0,147,2,0,0,145,2,0,0,146,2,0,0,87,0,5,0,7,0,0,0,148,2,0,0,144,2,0,0,147,2,0,0,61,0,4,0,19,0,0,0,149,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,150,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,151,2,0,0,134,2,0,0,129,0,5,0,21,0,0,0,152,2,0,0,150,2,0,0,151,2,0,0,87,0,5,0,7,0,0,0,153,2,0,0,149,2,0,0,152,2,0,0,129,0,5,0,7,0,0,0,154,2,0,0,148,2,0,0,153,2,0,0,61,0,4,0,6,0,0,0,155,2,0,0,118,2,0,0,142,0,5,0,7,0,0,0,156,2,0,0,154,2,0,0,155,2,0,0,61,0,4,0,7,0,0,0,157,2,0,0,92,2,0,0,129,0,5,0,7,0,0,0,158,2,0,0,157,2,0,0,156,2,0,0,62,0,3,0,92,2,0,0,158,2,0,0,61,0,4,0,6,0,0,0,159,2,0,0,118,2,0,0,133,0,5,0,6,0,0,0,160,2,0,0,43,1,0,0,159,2,0,0,61,0,4,0,6,0,0,0,161,2,0,0,89,2,0,0,129,0,5,0,6,0,0,0,162,2,0,0,161,2,0,0,160,2,0,0,62,0,3,0,89,2,0,0,162,2,0,0,61,0,4,0,39,0,0,0,163,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,164,2,0,0,163,2,0,0,163,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,165,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,166,2,0,0,165,2,0,0,165,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,167,2,0,0,166,2,0,0,164,2,0,0,65,0,5,0,17,0,0,0,168,2,0,0,86,2,0,0,244,0,0,0,81,0,5,0,6,0,0,0,169,2,0,0,167,2,0,0,0,0,0,0,62,0,3,0,168,2,0,0,169,2,0,0,65,0,5,0,17,0,0,0,170,2,0,0,86,2,0,0,98,1,0,0,81,0,5,0,6,0,0,0,171,2,0,0,167,2,0,0,1,0,0,0,62,0,3,0,170,2,0,0,171,2,0,0,249,0,2,0,113,2,0,0,248,0,2,0,113,2,0,0,61,0,4,0,9,0,0,0,173,2,0,0,108,2,0,0,128,0,5,0,9,0,0,0,174,2,0,0,173,2,0,0,172,2,0,0,62,0,3,0,108,2,0,0,174,2,0,0,249,0,2,0,110,2,0,0,248,0,2,0,112,2,0,0,61,0,4,0,7,0,0,0,175,2,0,0,92,2,0,0,61,0,4,0,6,0,0,0,176,2,0,0,89,2,0,0,80,0,7,0,7,0,0,0,177,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,136,0,5,0,7,0,0,0,178,2,0,0,175,2,0,0,177,2,0,0,254,0,2,0,178,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,95,0,0,0,0,0,0,0,87,0,0,0,55,0,3,0,22,0,0,0,88,0,0,0,55,0,3,0,20,0,0,0,89,0,0,0,55,0,3,0,8,0,0,0,90,0,0,0,55,0,3,0,8,0,0,0,91,0,0,0,55,0,3,0,8,0,0,0,92,0,0,0,55,0,3,0,8,0,0,0,93,0,0,0,55,0,3,0,8,0,0,0,94,0,0,0,248,0,2,0,96,0,0,0,59,0,4,0,8,0,0,0,181,2,0,0,7,0,0,0,59,0,4,0,186,2,0,0,187,2,0,0,7,0,0,0,61,0,4,0,19,0,0,0,182,2,0,0,89,0,0,0,61,0,4,0,21,0,0,0,183,2,0,0,88,0,0,0,87,0,5,0,7,0,0,0,184,2,0,0,182,2,0,0,183,2,0,0,62,0,3,0,181,2,0,0,184,2,0,0,61,0,4,0,7,0,0,0,188,2,0,0,90,0,0,0,61,0,4,0,7,0,0,0,189,2,0,0,91,0,0,0,61,0,4,0,7,0,0,0,190,2,0,0,92,0,0,0,61,0,4,0,7,0,0,0,191,2,0,0,93,0,0,0,81,0,5,0,6,0,0,0,192,2,0,0,188,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,193,2,0,0,188,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,194,2,0,0,188,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,195,2,0,0,188,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,196,2,0,0,189,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,197,2,0,0,189,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,198,2,0,0,189,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,199,2,0,0,189,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,200,2,0,0,190,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,201,2,0,0,190,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,202,2,0,0,190,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,203,2,0,0,190,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,204,2,0,0,191,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,205,2,0,0,191,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,206,2,0,0,191,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,207,2,0,0,191,2,0,0,3,0,0,0,80,0,7,0,7,0,0,0,208,2,0,0,192,2,0,0,193,2,0,0,194,2,0,0,195,2,0,0,80,0,7,0,7,0,0,0,209,2,0,0,196,2,0,0,197,2,0,0,198,2,0,0,199,2,0,0,80,0,7,0,7,0,0,0,210,2,0,0,200,2,0,0,201,2,0,0,202,2,0,0,203,2,0,0,80,0,7,0,7,0,0,0,211,2,0,0,204,2,0,0,205,2,0,0,206,2,0,0,207,2,0,0,80,0,7,0,185,2,0,0,212,2,0,0,208,2,0,0,209,2,0,0,210,2,0,0,211,2,0,0,62,0,3,0,187,2,0,0,212,2,0,0,61,0,4,0,185,2,0,0,213,2,0,0,187,2,0,0,61,0,4,0,7,0,0,0,214,2,0,0,181,2,0,0,145,0,5,0,7,0,0,0,215,2,0,0,213,2,0,0,214,2,0,0,61,0,4,0,7,0,0,0,216,2,0,0,94,0,0,0,129,0,5,0,7,0,0,0,217,2,0,0,215,2,0,0,216,2,0,0,254,0,2,0,217,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,100,0,0,0,0,0,0,0,97,0,0,0,55,0,3,0,22,0,0,0,98,0,0,0,55,0,3,0,20,0,0,0,99,0,0,0,248,0,2,0,101,0,0,0,61,0,4,0,19,0,0,0,220,2,0,0,99,0,0,0,61,0,4,0,21,0,0,0,221,2,0,0,98,0,0,0,87,0,5,0,7,0,0,0,222,2,0,0,220,2,0,0,221,2,0,0,254,0,2,0,222,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,115,0,0,0,0,0,0,0,102,0,0,0,55,0,3,0,22,0,0,0,103,0,0,0,55,0,3,0,20,0,0,0,104,0,0,0,55,0,3,0,20,0,0,0,105,0,0,0,55,0,3,0,22,0,0,0,106,0,0,0,55,0,3,0,22,0,0,0,107,0,0,0,55,0,3,0,22,0,0,0,108,0,0,0,55,0,3,0,8,0,0,0,109,0,0,0,55,0,3,0,8,0,0,0,110,0,0,0,55,0,3,0,8,0,0,0,111,0,0,0,55,0,3,0,8,0,0,0,112,0,0,0,55,0,3,0,8,0,0,0,113,0,0,0,55,0,3,0,10,0,0,0,114,0,0,0,248,0,2,0,116,0,0,0,59,0,4,0,22,0,0,0,231,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,233,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,235,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,237,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,239,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,241,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,245,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,247,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,249,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,251,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,255,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,1,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,3,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,5,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,7,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,11,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,13,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,15,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,17,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,19,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,21,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,26,3,0,0,7,0,0,0,61,0,4,0,9,0,0,0,225,2,0,0,114,0,0,0,247,0,3,0,230,2,0,0,0,0,0,0,251,0,11,0,225,2,0,0,230,2,0,0,1,0,0,0,226,2,0,0,3,0,0,0,227,2,0,0,2,0,0,0,228,2,0,0,4,0,0,0,229,2,0,0,248,0,2,0,226,2,0,0,61,0,4,0,21,0,0,0,232,2,0,0,103,0,0,0,62,0,3,0,231,2,0,0,232,2,0,0,61,0,4,0,21,0,0,0,234,2,0,0,106,0,0,0,62,0,3,0,233,2,0,0,234,2,0,0,61,0,4,0,21,0,0,0,236,2,0,0,107,0,0,0,62,0,3,0,235,2,0,0,236,2,0,0,61,0,4,0,21,0,0,0,238,2,0,0,108,0,0,0,62,0,3,0,237,2,0,0,238,2,0,0,61,0,4,0,7,0,0,0,240,2,0,0,109,0,0,0,62,0,3,0,239,2,0,0,240,2,0,0,61,0,4,0,7,0,0,0,242,2,0,0,110,0,0,0,62,0,3,0,241,2,0,0,242,2,0,0,57,0,11,0,7,0,0,0,243,2,0,0,77,0,0,0,231,2,0,0,104,0,0,0,233,2,0,0,235,2,0,0,237,2,0,0,239,2,0,0,241,2,0,0,254,0,2,0,243,2,0,0,248,0,2,0,227,2,0,0,61,0,4,0,21,0,0,0,246,2,0,0,103,0,0,0,62,0,3,0,245,2,0,0,246,2,0,0,61,0,4,0,21,0,0,0,248,2,0,0,106,0,0,0,62,0,3,0,247,2,0,0,248,2,0,0,61,0,4,0,7,0,0,0,250,2,0,0,109,0,0,0,62,0,3,0,249,2,0,0,250,2,0,0,61,0,4,0,7,0,0,0,252,2,0,0,110,0,0,0,62,0,3,0,251,2,0,0,252,2,0,0,57,0,9,0,7,0,0,0,253,2,0,0,85,0,0,0,245,2,0,0,104,0,0,0,247,2,0,0,249,2,0,0,251,2,0,0,254,0,2,0,253,2,0,0,248,0,2,0,228,2,0,0,61,0,4,0,21,0,0,0,0,3,0,0,103,0,0,0,62,0,3,0,255,2,0,0,0,3,0,0,61,0,4,0,21,0,0,0,2,3,0,0,106,0,0,0,62,0,3,0,1,3,0,0,2,3,0,0,61,0,4,0,7,0,0,0,4,3,0,0,109,0,0,0,62,0,3,0,3,3,0,0,4,3,0,0,61,0,4,0,7,0,0,0,6,3,0,0,110,0,0,0,62,0,3,0,5,3,0,0,6,3,0,0,61,0,4,0,7,0,0,0,8,3,0,0,111,0,0,0,62,0,3,0,7,3,0,0,8,3,0,0,57,0,11,0,7,0,0,0,9,3,0,0,67,0,0,0,255,2,0,0,104,0,0,0,105,0,0,0,1,3,0,0,3,3,0,0,5,3,0,0,7,3,0,0,254,0,2,0,9,3,0,0,248,0,2,0,229,2,0,0,61,0,4,0,21,0,0,0,12,3,0,0,103,0,0,0,62,0,3,0,11,3,0,0,12,3,0,0,61,0,4,0,7,0,0,0,14,3,0,0,109,0,0,0,62,0,3,0,13,3,0,0,14,3,0,0,61,0,4,0,7,0,0,0,16,3,0,0,110,0,0,0,62,0,3,0,15,3,0,0,16,3,0,0,61,0,4,0,7,0,0,0,18,3,0,0,111,0,0,0,62,0,3,0,17,3,0,0,18,3,0,0,61,0,4,0,7,0,0,0,20,3,0,0,112,0,0,0,62,0,3,0,19,3,0,0,20,3,0,0,61,0,4,0,7,0,0,0,22,3,0,0,113,0,0,0,62,0,3,0,21,3,0,0,22,3,0,0,57,0,11,0,7,0,0,0,23,3,0,0,95,0,0,0,11,3,0,0,104,0,0,0,13,3,0,0,15,3,0,0,17,3,0,0,19,3,0,0,21,3,0,0,254,0,2,0,23,3,0,0,248,0,2,0,230,2,0,0,61,0,4,0,21,0,0,0,27,3,0,0,103,0,0,0,62,0,3,0,26,3,0,0,27,3,0,0,57,0,6,0,7,0,0,0,28,3,0,0,100,0,0,0,26,3,0,0,104,0,0,0,254,0,2,0,28,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,124,0,0,0,0,0,0,0,120,0,0,0,55,0,3,0,119,0,0,0,121,0,0,0,55,0,3,0,40,0,0,0,122,0,0,0,55,0,3,0,40,0,0,0,123,0,0,0,248,0,2,0,125,0,0,0,59,0,4,0,17,0,0,0,33,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,44,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,55,3,0,0,7,0,0,0,65,0,5,0,248,0,0,0,31,3,0,0,121,0,0,0,244,0,0,0,61,0,4,0,117,0,0,0,32,3,0,0,31,3,0,0,247,0,3,0,35,3,0,0,0,0,0,0,250,0,4,0,32,3,0,0,34,3,0,0,38,3,0,0,248,0,2,0,34,3,0,0,65,0,5,0,17,0,0,0,36,3,0,0,122,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,37,3,0,0,36,3,0,0,62,0,3,0,33,3,0,0,37,3,0,0,249,0,2,0,35,3,0,0,248,0,2,0,38,3,0,0,65,0,5,0,17,0,0,0,39,3,0,0,123,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,40,3,0,0,39,3,0,0,62,0,3,0,33,3,0,0,40,3,0,0,249,0,2,0,35,3,0,0,248,0,2,0,35,3,0,0,61,0,4,0,6,0,0,0,41,3,0,0,33,3,0,0,65,0,5,0,248,0,0,0,42,3,0,0,121,0,0,0,98,1,0,0,61,0,4,0,117,0,0,0,43,3,0,0,42,3,0,0,247,0,3,0,46,3,0,0,0,0,0,0,250,0,4,0,43,3,0,0,45,3,0,0,49,3,0,0,248,0,2,0,45,3,0,0,65,0,5,0,17,0,0,0,47,3,0,0,122,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,48,3,0,0,47,3,0,0,62,0,3,0,44,3,0,0,48,3,0,0,249,0,2,0,46,3,0,0,248,0,2,0,49,3,0,0,65,0,5,0,17,0,0,0,50,3,0,0,123,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,51,3,0,0,50,3,0,0,62,0,3,0,44,3,0,0,51,3,0,0,249,0,2,0,46,3,0,0,248,0,2,0,46,3,0,0,61,0,4,0,6,0,0,0,52,3,0,0,44,3,0,0,65,0,5,0,248,0,0,0,53,3,0,0,121,0,0,0,106,1,0,0,61,0,4,0,117,0,0,0,54,3,0,0,53,3,0,0,247,0,3,0,57,3,0,0,0,0,0,0,250,0,4,0,54,3,0,0,56,3,0,0,60,3,0,0,248,0,2,0,56,3,0,0,65,0,5,0,17,0,0,0,58,3,0,0,122,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,59,3,0,0,58,3,0,0,62,0,3,0,55,3,0,0,59,3,0,0,249,0,2,0,57,3,0,0,248,0,2,0,60,3,0,0,65,0,5,0,17,0,0,0,61,3,0,0,123,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,62,3,0,0,61,3,0,0,62,0,3,0,55,3,0,0,62,3,0,0,249,0,2,0,57,3,0,0,248,0,2,0,57,3,0,0,61,0,4,0,6,0,0,0,63,3,0,0,55,3,0,0,80,0,6,0,39,0,0,0,64,3,0,0,41,3,0,0,52,3,0,0,63,3,0,0,254,0,2,0,64,3,0,0,56,0,1,0,54,0,5,0,6,0,0,0,129,0,0,0,0,0,0,0,126,0,0,0,55,0,3,0,17,0,0,0,127,0,0,0,55,0,3,0,17,0,0,0,128,0,0,0,248,0,2,0,130,0,0,0,59,0,4,0,17,0,0,0,69,3,0,0,7,0,0,0,61,0,4,0,6,0,0,0,67,3,0,0,128,0,0,0,183,0,5,0,117,0,0,0,68,3,0,0,67,3,0,0,240,0,0,0,247,0,3,0,71,3,0,0,0,0,0,0,250,0,4,0,68,3,0,0,70,3,0,0,75,3,0,0,248,0,2,0,70,3,0,0,61,0,4,0,6,0,0,0,72,3,0,0,127,0,0,0,61,0,4,0,6,0,0,0,73,3,0,0,128,0,0,0,136,0,5,0,6,0,0,0,74,3,0,0,72,3,0,0,73,3,0,0,62,0,3,0,69,3,0,0,74,3,0,0,249,0,2,0,71,3,0,0,248,0,2,0,75,3,0,0,62,0,3,0,69,3,0,0,240,0,0,0,249,0,2,0,71,3,0,0,248,0,2,0,71,3,0,0,61,0,4,0,6,0,0,0,76,3,0,0,69,3,0,0,254,0,2,0,76,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,134,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,132,0,0,0,55,0,3,0,40,0,0,0,133,0,0,0,248,0,2,0,135,0,0,0,59,0,4,0,119,0,0,0,79,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,83,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,91,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,93,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,94,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,96,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,98,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,99,3,0,0,7,0,0,0,61,0,4,0,39,0,0,0,80,3,0,0,132,0,0,0,180,0,5,0,118,0,0,0,82,3,0,0,80,3,0,0,81,3,0,0,62,0,3,0,79,3,0,0,82,3,0,0,61,0,4,0,39,0,0,0,84,3,0,0,133,0,0,0,180,0,5,0,118,0,0,0,86,3,0,0,84,3,0,0,85,3,0,0,62,0,3,0,83,3,0,0,86,3,0,0,61,0,4,0,39,0,0,0,87,3,0,0,132,0,0,0,61,0,4,0,39,0,0,0,88,3,0,0,133,0,0,0,131,0,5,0,39,0,0,0,89,3,0,0,85,3,0,0,88,3,0,0,136,0,5,0,39,0,0,0,90,3,0,0,87,3,0,0,89,3,0,0,61,0,4,0,118,0,0,0,92,3,0,0,83,3,0,0,62,0,3,0,91,3,0,0,92,3,0,0,62,0,3,0,93,3,0,0,85,3,0,0,62,0,3,0,94,3,0,0,90,3,0,0,57,0,7,0,39,0,0,0,95,3,0,0,124,0,0,0,91,3,0,0,93,3,0,0,94,3,0,0,61,0,4,0,118,0,0,0,97,3,0,0,79,3,0,0,62,0,3,0,96,3,0,0,97,3,0,0,62,0,3,0,98,3,0,0,81,3,0,0,62,0,3,0,99,3,0,0,95,3,0,0,57,0,7,0,39,0,0,0,100,3,0,0,124,0,0,0,96,3,0,0,98,3,0,0,99,3,0,0,254,0,2,0,100,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,138,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,137,0,0,0,248,0,2,0,139,0,0,0,59,0,4,0,17,0,0,0,103,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,113,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,104,3,0,0,137,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,105,3,0,0,104,3,0,0,65,0,5,0,17,0,0,0,106,3,0,0,137,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,107,3,0,0,106,3,0,0,65,0,5,0,17,0,0,0,108,3,0,0,137,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,109,3,0,0,108,3,0,0,131,0,5,0,6,0,0,0,110,3,0,0,36,1,0,0,109,3,0,0,12,0,7,0,6,0,0,0,111,3,0,0,1,0,0,0,37,0,0,0,107,3,0,0,110,3,0,0,133,0,5,0,6,0,0,0,112,3,0,0,105,3,0,0,111,3,0,0,62,0,3,0,103,3,0,0,112,3,0,0,65,0,5,0,17,0,0,0,116,3,0,0,137,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,117,3,0,0,116,3,0,0,133,0,5,0,6,0,0,0,119,3,0,0,117,3,0,0,118,3,0,0,80,0,6,0,39,0,0,0,120,3,0,0,119,3,0,0,119,3,0,0,119,3,0,0,129,0,5,0,39,0,0,0,121,3,0,0,115,3,0,0,120,3,0,0,80,0,6,0,39,0,0,0,123,3,0,0,122,3,0,0,122,3,0,0,122,3,0,0,141,0,5,0,39,0,0,0,124,3,0,0,121,3,0,0,123,3,0,0,62,0,3,0,113,3,0,0,124,3,0,0,61,0,4,0,39,0,0,0,125,3,0,0,137,0,0,0,79,0,8,0,39,0,0,0,126,3,0,0,125,3,0,0,125,3,0,0,2,0,0,0,2,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,127,3,0,0,113,3,0,0,131,0,5,0,39,0,0,0,129,3,0,0,127,3,0,0,128,3,0,0,61,0,4,0,39,0,0,0,132,3,0,0,113,3,0,0,131,0,5,0,39,0,0,0,133,3,0,0,131,3,0,0,132,3,0,0,12,0,7,0,39,0,0,0,134,3,0,0,1,0,0,0,37,0,0,0,129,3,0,0,133,3,0,0,80,0,6,0,39,0,0,0,135,3,0,0,24,1,0,0,24,1,0,0,24,1,0,0,80,0,6,0,39,0,0,0,136,3,0,0,36,1,0,0,36,1,0,0,36,1,0,0,12,0,8,0,39,0,0,0,137,3,0,0,1,0,0,0,43,0,0,0,134,3,0,0,135,3,0,0,136,3,0,0,61,0,4,0,6,0,0,0,138,3,0,0,103,3,0,0,142,0,5,0,39,0,0,0,139,3,0,0,137,3,0,0,138,3,0,0,131,0,5,0,39,0,0,0,140,3,0,0,126,3,0,0,139,3,0,0,254,0,2,0,140,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,141,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,140,0,0,0,248,0,2,0,142,0,0,0,59,0,4,0,17,0,0,0,143,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,152,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,161,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,165,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,170,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,175,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,188,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,204,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,216,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,217,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,221,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,222,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,224,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,144,3,0,0,140,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,145,3,0,0,144,3,0,0,65,0,5,0,17,0,0,0,146,3,0,0,140,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,147,3,0,0,146,3,0,0,12,0,7,0,6,0,0,0,148,3,0,0,1,0,0,0,40,0,0,0,145,3,0,0,147,3,0,0,65,0,5,0,17,0,0,0,149,3,0,0,140,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,150,3,0,0,149,3,0,0,12,0,7,0,6,0,0,0,151,3,0,0,1,0,0,0,40,0,0,0,148,3,0,0,150,3,0,0,62,0,3,0,143,3,0,0,151,3,0,0,65,0,5,0,17,0,0,0,153,3,0,0,140,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,154,3,0,0,153,3,0,0,65,0,5,0,17,0,0,0,155,3,0,0,140,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,156,3,0,0,155,3,0,0,12,0,7,0,6,0,0,0,157,3,0,0,1,0,0,0,37,0,0,0,154,3,0,0,156,3,0,0,65,0,5,0,17,0,0,0,158,3,0,0,140,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,159,3,0,0,158,3,0,0,12,0,7,0,6,0,0,0,160,3,0,0,1,0,0,0,37,0,0,0,157,3,0,0,159,3,0,0,62,0,3,0,152,3,0,0,160,3,0,0,61,0,4,0,6,0,0,0,162,3,0,0,143,3,0,0,61,0,4,0,6,0,0,0,163,3,0,0,152,3,0,0,131,0,5,0,6,0,0,0,164,3,0,0,162,3,0,0,163,3,0,0,62,0,3,0,161,3,0,0,164,3,0,0,61,0,4,0,6,0,0,0,166,3,0,0,152,3,0,0,61,0,4,0,6,0,0,0,167,3,0,0,143,3,0,0,12,0,8,0,6,0,0,0,169,3,0,0,1,0,0,0,46,0,0,0,166,3,0,0,167,3,0,0,168,3,0,0,62,0,3,0,165,3,0,0,169,3,0,0,65,0,5,0,17,0,0,0,171,3,0,0,140,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,172,3,0,0,171,3,0,0,61,0,4,0,6,0,0,0,173,3,0,0,143,3,0,0,180,0,5,0,117,0,0,0,174,3,0,0,172,3,0,0,173,3,0,0,247,0,3,0,177,3,0,0,0,0,0,0,250,0,4,0,174,3,0,0,176,3,0,0,183,3,0,0,248,0,2,0,176,3,0,0,61,0,4,0,39,0,0,0,178,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,179,3,0,0,178,3,0,0,178,3,0,0,1,0,0,0,2,0,0,0,81,0,5,0,6,0,0,0,180,3,0,0,179,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,181,3,0,0,179,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,182,3,0,0,240,0,0,0,180,3,0,0,181,3,0,0,62,0,3,0,175,3,0,0,182,3,0,0,249,0,2,0,177,3,0,0,248,0,2,0,183,3,0,0,65,0,5,0,17,0,0,0,184,3,0,0,140,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,185,3,0,0,184,3,0,0,61,0,4,0,6,0,0,0,186,3,0,0,143,3,0,0,180,0,5,0,117,0,0,0,187,3,0,0,185,3,0,0,186,3,0,0,247,0,3,0,190,3,0,0,0,0,0,0,250,0,4,0,187,3,0,0,189,3,0,0,196,3,0,0,248,0,2,0,189,3,0,0,61,0,4,0,39,0,0,0,191,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,192,3,0,0,191,3,0,0,191,3,0,0,2,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,193,3,0,0,192,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,194,3,0,0,192,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,195,3,0,0,43,1,0,0,193,3,0,0,194,3,0,0,62,0,3,0,188,3,0,0,195,3,0,0,249,0,2,0,190,3,0,0,248,0,2,0,196,3,0,0,61,0,4,0,39,0,0,0,197,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,198,3,0,0,197,3,0,0,197,3,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,199,3,0,0,198,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,200,3,0,0,198,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,201,3,0,0,61,1,0,0,199,3,0,0,200,3,0,0,62,0,3,0,188,3,0,0,201,3,0,0,249,0,2,0,190,3,0,0,248,0,2,0,190,3,0,0,61,0,4,0,39,0,0,0,202,3,0,0,188,3,0,0,62,0,3,0,175,3,0,0,202,3,0,0,249,0,2,0,177,3,0,0,248,0,2,0,177,3,0,0,61,0,4,0,39,0,0,0,203,3,0,0,175,3,0,0,62,0,3,0,170,3,0,0,203,3,0,0,65,0,5,0,17,0,0,0,206,3,0,0,170,3,0,0,244,0,0,0,61,0,4,0,6,0,0,0,207,3,0,0,206,3,0,0,61,0,4,0,6,0,0,0,208,3,0,0,161,3,0,0,133,0,5,0,6,0,0,0,209,3,0,0,207,3,0,0,208,3,0,0,65,0,5,0,17,0,0,0,210,3,0,0,170,3,0,0,98,1,0,0,61,0,4,0,6,0,0,0,211,3,0,0,210,3,0,0,129,0,5,0,6,0,0,0,212,3,0,0,209,3,0,0,211,3,0,0,65,0,5,0,17,0,0,0,213,3,0,0,170,3,0,0,106,1,0,0,61,0,4,0,6,0,0,0,214,3,0,0,213,3,0,0,131,0,5,0,6,0,0,0,215,3,0,0,212,3,0,0,214,3,0,0,62,0,3,0,216,3,0,0,215,3,0,0,61,0,4,0,6,0,0,0,218,3,0,0,161,3,0,0,62,0,3,0,217,3,0,0,218,3,0,0,57,0,6,0,6,0,0,0,219,3,0,0,129,0,0,0,216,3,0,0,217,3,0,0,133,0,5,0,6,0,0,0,220,3,0,0,205,3,0,0,219,3,0,0,62,0,3,0,204,3,0,0,220,3,0,0,61,0,4,0,6,0,0,0,223,3,0,0,161,3,0,0,62,0,3,0,222,3,0,0,223,3,0,0,61,0,4,0,6,0,0,0,225,3,0,0,143,3,0,0,62,0,3,0,224,3,0,0,225,3,0,0,57,0,6,0,6,0,0,0,226,3,0,0,129,0,0,0,222,3,0,0,224,3,0,0,62,0,3,0,221,3,0,0,226,3,0,0,61,0,4,0,6,0,0,0,227,3,0,0,204,3,0,0,61,0,4,0,6,0,0,0,228,3,0,0,221,3,0,0,61,0,4,0,6,0,0,0,229,3,0,0,165,3,0,0,80,0,6,0,39,0,0,0,230,3,0,0,227,3,0,0,228,3,0,0,229,3,0,0,254,0,2,0,230,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,145,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,143,0,0,0,55,0,3,0,40,0,0,0,144,0,0,0,248,0,2,0,146,0,0,0,61,0,4,0,39,0,0,0,233,3,0,0,143,0,0,0,61,0,4,0,39,0,0,0,234,3,0,0,144,0,0,0,129,0,5,0,39,0,0,0,235,3,0,0,233,3,0,0,234,3,0,0,61,0,4,0,39,0,0,0,236,3,0,0,143,0,0,0,61,0,4,0,39,0,0,0,237,3,0,0,144,0,0,0,133,0,5,0,39,0,0,0,238,3,0,0,236,3,0,0,237,3,0,0,131,0,5,0,39,0,0,0,239,3,0,0,235,3,0,0,238,3,0,0,254,0,2,0,239,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,149,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,147,0,0,0,55,0,3,0,40,0,0,0,148,0,0,0,248,0,2,0,150,0,0,0,59,0,4,0,40,0,0,0,253,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,255,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,1,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,2,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,3,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,242,3,0,0,148,0,0,0,188,0,5,0,118,0,0,0,244,3,0,0,242,3,0,0,243,3,0,0,61,0,4,0,39,0,0,0,245,3,0,0,147,0,0,0,133,0,5,0,39,0,0,0,247,3,0,0,245,3,0,0,246,3,0,0,61,0,4,0,39,0,0,0,248,3,0,0,148,0,0,0,133,0,5,0,39,0,0,0,249,3,0,0,247,3,0,0,248,3,0,0,61,0,4,0,39,0,0,0,250,3,0,0,148,0,0,0,133,0,5,0,39,0,0,0,251,3,0,0,246,3,0,0,250,3,0,0,131,0,5,0,39,0,0,0,252,3,0,0,251,3,0,0,85,3,0,0,61,0,4,0,39,0,0,0,254,3,0,0,147,0,0,0,62,0,3,0,253,3,0,0,254,3,0,0,62,0,3,0,255,3,0,0,252,3,0,0,57,0,6,0,39,0,0,0,0,4,0,0,145,0,0,0,253,3,0,0,255,3,0,0,62,0,3,0,1,4,0,0,244,3,0,0,62,0,3,0,2,4,0,0,249,3,0,0,62,0,3,0,3,4,0,0,0,4,0,0,57,0,7,0,39,0,0,0,4,4,0,0,124,0,0,0,1,4,0,0,2,4,0,0,3,4,0,0,254,0,2,0,4,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,153,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,151,0,0,0,55,0,3,0,40,0,0,0,152,0,0,0,248,0,2,0,154,0,0,0,59,0,4,0,40,0,0,0,7,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,26,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,27,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,28,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,30,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,40,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,41,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,42,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,8,4,0,0,151,0,0,0,188,0,5,0,118,0,0,0,11,4,0,0,8,4,0,0,10,4,0,0,61,0,4,0,39,0,0,0,14,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,15,4,0,0,13,4,0,0,14,4,0,0,80,0,6,0,39,0,0,0,16,4,0,0,122,3,0,0,122,3,0,0,122,3,0,0,131,0,5,0,39,0,0,0,17,4,0,0,15,4,0,0,16,4,0,0,61,0,4,0,39,0,0,0,18,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,19,4,0,0,17,4,0,0,18,4,0,0,80,0,6,0,39,0,0,0,20,4,0,0,61,1,0,0,61,1,0,0,61,1,0,0,129,0,5,0,39,0,0,0,21,4,0,0,19,4,0,0,20,4,0,0,61,0,4,0,39,0,0,0,22,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,23,4,0,0,21,4,0,0,22,4,0,0,61,0,4,0,39,0,0,0,24,4,0,0,151,0,0,0,12,0,6,0,39,0,0,0,25,4,0,0,1,0,0,0,31,0,0,0,24,4,0,0,62,0,3,0,26,4,0,0,11,4,0,0,62,0,3,0,27,4,0,0,23,4,0,0,62,0,3,0,28,4,0,0,25,4,0,0,57,0,7,0,39,0,0,0,29,4,0,0,124,0,0,0,26,4,0,0,27,4,0,0,28,4,0,0,62,0,3,0,7,4,0,0,29,4,0,0,61,0,4,0,39,0,0,0,31,4,0,0,152,0,0,0,188,0,5,0,118,0,0,0,32,4,0,0,31,4,0,0,243,3,0,0,61,0,4,0,39,0,0,0,33,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,34,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,35,4,0,0,85,3,0,0,34,4,0,0,133,0,5,0,39,0,0,0,36,4,0,0,33,4,0,0,35,4,0,0,61,0,4,0,39,0,0,0,37,4,0,0,7,4,0,0,61,0,4,0,39,0,0,0,38,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,39,4,0,0,37,4,0,0,38,4,0,0,62,0,3,0,40,4,0,0,32,4,0,0,62,0,3,0,41,4,0,0,36,4,0,0,62,0,3,0,42,4,0,0,39,4,0,0,57,0,7,0,39,0,0,0,43,4,0,0,124,0,0,0,40,4,0,0,41,4,0,0,42,4,0,0,62,0,3,0,30,4,0,0,43,4,0,0,61,0,4,0,39,0,0,0,44,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,45,4,0,0,152,0,0,0,142,0,5,0,39,0,0,0,46,4,0,0,45,4,0,0,43,1,0,0,80,0,6,0,39,0,0,0,47,4,0,0,36,1,0,0,36,1,0,0,36,1,0,0,131,0,5,0,39,0,0,0,48,4,0,0,46,4,0,0,47,4,0,0,61,0,4,0,39,0,0,0,49,4,0,0,30,4,0,0,133,0,5,0,39,0,0,0,50,4,0,0,48,4,0,0,49,4,0,0,129,0,5,0,39,0,0,0,51,4,0,0,44,4,0,0,50,4,0,0,254,0,2,0,51,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,159,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,156,0,0,0,55,0,3,0,40,0,0,0,157,0,0,0,55,0,3,0,10,0,0,0,158,0,0,0,248,0,2,0,160,0,0,0,61,0,4,0,9,0,0,0,54,4,0,0,158,0,0,0,247,0,3,0,59,4,0,0,0,0,0,0,251,0,9,0,54,4,0,0,58,4,0,0,12,0,0,0,55,4,0,0,13,0,0,0,56,4,0,0,14,0,0,0,57,4,0,0,248,0,2,0,58,4,0,0,65,0,5,0,17,0,0,0,84,4,0,0,156,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,85,4,0,0,84,4,0,0,65,0,5,0,17,0,0,0,86,4,0,0,156,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,87,4,0,0,86,4,0,0,65,0,5,0,17,0,0,0,88,4,0,0,157,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,89,4,0,0,88,4,0,0,80,0,6,0,39,0,0,0,90,4,0,0,85,4,0,0,87,4,0,0,89,4,0,0,254,0,2,0,90,4,0,0,248,0,2,0,55,4,0,0,65,0,5,0,17,0,0,0,60,4,0,0,157,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,61,4,0,0,60,4,0,0,65,0,5,0,17,0,0,0,62,4,0,0,156,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,63,4,0,0,62,4,0,0,65,0,5,0,17,0,0,0,64,4,0,0,156,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,65,4,0,0,64,4,0,0,80,0,6,0,39,0,0,0,66,4,0,0,61,4,0,0,63,4,0,0,65,4,0,0,254,0,2,0,66,4,0,0,248,0,2,0,56,4,0,0,65,0,5,0,17,0,0,0,68,4,0,0,156,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,69,4,0,0,68,4,0,0,65,0,5,0,17,0,0,0,70,4,0,0,157,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,71,4,0,0,70,4,0,0,65,0,5,0,17,0,0,0,72,4,0,0,156,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,73,4,0,0,72,4,0,0,80,0,6,0,39,0,0,0,74,4,0,0,69,4,0,0,71,4,0,0,73,4,0,0,254,0,2,0,74,4,0,0,248,0,2,0,57,4,0,0,65,0,5,0,17,0,0,0,76,4,0,0,157,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,77,4,0,0,76,4,0,0,65,0,5,0,17,0,0,0,78,4,0,0,157,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,79,4,0,0,78,4,0,0,65,0,5,0,17,0,0,0,80,4,0,0,156,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,81,4,0,0,80,4,0,0,80,0,6,0,39,0,0,0,82,4,0,0,77,4,0,0,79,4,0,0,81,4,0,0,254,0,2,0,82,4,0,0,248,0,2,0,59,4,0,0,255,0,1,0,56,0,1,0,54,0,5,0,39,0,0,0,164,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,161,0,0,0,55,0,3,0,40,0,0,0,162,0,0,0,55,0,3,0,10,0,0,0,163,0,0,0,248,0,2,0,165,0,0,0,59,0,4,0,40,0,0,0,112,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,114,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,118,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,120,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,132,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,134,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,142,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,143,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,147,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,149,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,153,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,155,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,173,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,176,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,179,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,180,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,181,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,184,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,94,4,0,0,163,0,0,0,247,0,3,0,107,4,0,0,0,0,0,0,251,0,33,0,94,4,0,0,107,4,0,0,1,0,0,0,95,4,0,0,2,0,0,0,96,4,0,0,3,0,0,0,97,4,0,0,4,0,0,0,98,4,0,0,5,0,0,0,99,4,0,0,6,0,0,0,100,4,0,0,7,0,0,0,101,4,0,0,8,0,0,0,102,4,0,0,9,0,0,0,103,4,0,0,10,0,0,0,104,4,0,0,11,0,0,0,105,4,0,0,12,0,0,0,106,4,0,0,13,0,0,0,106,4,0,0,14,0,0,0,106,4,0,0,15,0,0,0,106,4,0,0,248,0,2,0,95,4,0,0,61,0,4,0,39,0,0,0,108,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,109,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,110,4,0,0,108,4,0,0,109,4,0,0,254,0,2,0,110,4,0,0,248,0,2,0,96,4,0,0,61,0,4,0,39,0,0,0,113,4,0,0,161,0,0,0,62,0,3,0,112,4,0,0,113,4,0,0,61,0,4,0,39,0,0,0,115,4,0,0,162,0,0,0,62,0,3,0,114,4,0,0,115,4,0,0,57,0,6,0,39,0,0,0,116,4,0,0,145,0,0,0,112,4,0,0,114,4,0,0,254,0,2,0,116,4,0,0,248,0,2,0,97,4,0,0,61,0,4,0,39,0,0,0,119,4,0,0,162,0,0,0,62,0,3,0,118,4,0,0,119,4,0,0,61,0,4,0,39,0,0,0,121,4,0,0,161,0,0,0,62,0,3,0,120,4,0,0,121,4,0,0,57,0,6,0,39,0,0,0,122,4,0,0,149,0,0,0,118,4,0,0,120,4,0,0,254,0,2,0,122,4,0,0,248,0,2,0,98,4,0,0,61,0,4,0,39,0,0,0,124,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,125,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,126,4,0,0,1,0,0,0,37,0,0,0,124,4,0,0,125,4,0,0,254,0,2,0,126,4,0,0,248,0,2,0,99,4,0,0,61,0,4,0,39,0,0,0,128,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,129,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,130,4,0,0,1,0,0,0,40,0,0,0,128,4,0,0,129,4,0,0,254,0,2,0,130,4,0,0,248,0,2,0,100,4,0,0,61,0,4,0,39,0,0,0,133,4,0,0,161,0,0,0,62,0,3,0,132,4,0,0,133,4,0,0,61,0,4,0,39,0,0,0,135,4,0,0,162,0,0,0,62,0,3,0,134,4,0,0,135,4,0,0,57,0,6,0,39,0,0,0,136,4,0,0,134,0,0,0,132,4,0,0,134,4,0,0,254,0,2,0,136,4,0,0,248,0,2,0,101,4,0,0,61,0,4,0,39,0,0,0,138,4,0,0,161,0,0,0,131,0,5,0,39,0,0,0,139,4,0,0,85,3,0,0,138,4,0,0,61,0,4,0,39,0,0,0,140,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,141,4,0,0,85,3,0,0,140,4,0,0,62,0,3,0,142,4,0,0,139,4,0,0,62,0,3,0,143,4,0,0,141,4,0,0,57,0,6,0,39,0,0,0,144,4,0,0,134,0,0,0,142,4,0,0,143,4,0,0,131,0,5,0,39,0,0,0,145,4,0,0,85,3,0,0,144,4,0,0,254,0,2,0,145,4,0,0,248,0,2,0,102,4,0,0,61,0,4,0,39,0,0,0,148,4,0,0,161,0,0,0,62,0,3,0,147,4,0,0,148,4,0,0,61,0,4,0,39,0,0,0,150,4,0,0,162,0,0,0,62,0,3,0,149,4,0,0,150,4,0,0,57,0,6,0,39,0,0,0,151,4,0,0,149,0,0,0,147,4,0,0,149,4,0,0,254,0,2,0,151,4,0,0,248,0,2,0,103,4,0,0,61,0,4,0,39,0,0,0,154,4,0,0,161,0,0,0,62,0,3,0,153,4,0,0,154,4,0,0,61,0,4,0,39,0,0,0,156,4,0,0,162,0,0,0,62,0,3,0,155,4,0,0,156,4,0,0,57,0,6,0,39,0,0,0,157,4,0,0,153,0,0,0,153,4,0,0,155,4,0,0,254,0,2,0,157,4,0,0,248,0,2,0,104,4,0,0,61,0,4,0,39,0,0,0,159,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,160,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,161,4,0,0,159,4,0,0,160,4,0,0,12,0,6,0,39,0,0,0,162,4,0,0,1,0,0,0,4,0,0,0,161,4,0,0,254,0,2,0,162,4,0,0,248,0,2,0,105,4,0,0,61,0,4,0,39,0,0,0,164,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,165,4,0,0,162,0,0,0,129,0,5,0,39,0,0,0,166,4,0,0,164,4,0,0,165,4,0,0,61,0,4,0,39,0,0,0,167,4,0,0,161,0,0,0,133,0,5,0,39,0,0,0,168,4,0,0,246,3,0,0,167,4,0,0,61,0,4,0,39,0,0,0,169,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,170,4,0,0,168,4,0,0,169,4,0,0,131,0,5,0,39,0,0,0,171,4,0,0,166,4,0,0,170,4,0,0,254,0,2,0,171,4,0,0,248,0,2,0,106,4,0,0,61,0,4,0,39,0,0,0,174,4,0,0,161,0,0,0,62,0,3,0,173,4,0,0,174,4,0,0,57,0,5,0,39,0,0,0,175,4,0,0,141,0,0,0,173,4,0,0,61,0,4,0,39,0,0,0,177,4,0,0,162,0,0,0,62,0,3,0,176,4,0,0,177,4,0,0,57,0,5,0,39,0,0,0,178,4,0,0,141,0,0,0,176,4,0,0,62,0,3,0,179,4,0,0,175,4,0,0,62,0,3,0,180,4,0,0,178,4,0,0,61,0,4,0,9,0,0,0,182,4,0,0,163,0,0,0,62,0,3,0,181,4,0,0,182,4,0,0,57,0,7,0,39,0,0,0,183,4,0,0,159,0,0,0,179,4,0,0,180,4,0,0,181,4,0,0,62,0,3,0,184,4,0,0,183,4,0,0,57,0,5,0,39,0,0,0,185,4,0,0,138,0,0,0,184,4,0,0,254,0,2,0,185,4,0,0,248,0,2,0,107,4,0,0,61,0,4,0,39,0,0,0,188,4,0,0,162,0,0,0,254,0,2,0,188,4,0,0,56,0,1,0,54,0,5,0,7,0,0,0,172,0,0,0,0,0,0,0,166,0,0,0,55,0,3,0,8,0,0,0,167,0,0,0,55,0,3,0,20,0,0,0,168,0,0,0,55,0,3,0,22,0,0,0,169,0,0,0,55,0,3,0,22,0,0,0,170,0,0,0,55,0,3,0,10,0,0,0,171,0,0,0,248,0,2,0,173,0,0,0,59,0,4,0,22,0,0,0,198,4,0,0,7,0,0,0,59,0,4,0,8,0,0,0,202,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,206,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,207,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,210,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,213,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,191,4,0,0,171,0,0,0,170,0,5,0,117,0,0,0,193,4,0,0,191,4,0,0,192,4,0,0,247,0,3,0,195,4,0,0,0,0,0,0,250,0,4,0,193,4,0,0,194,4,0,0,195,4,0,0,248,0,2,0,194,4,0,0,61,0,4,0,7,0,0,0,196,4,0,0,167,0,0,0,254,0,2,0,196,4,0,0,248,0,2,0,195,4,0,0,61,0,4,0,21,0,0,0,199,4,0,0,170,0,0,0,61,0,4,0,21,0,0,0,200,4,0,0,169,0,0,0,136,0,5,0,21,0,0,0,201,4,0,0,199,4,0,0,200,4,0,0,62,0,3,0,198,4,0,0,201,4,0,0,61,0,4,0,19,0,0,0,203,4,0,0,168,0,0,0,61,0,4,0,21,0,0,0,204,4,0,0,198,4,0,0,87,0,5,0,7,0,0,0,205,4,0,0,203,4,0,0,204,4,0,0,62,0,3,0,202,4,0,0,205,4,0,0,61,0,4,0,7,0,0,0,208,4,0,0,202,4,0,0,79,0,8,0,39,0,0,0,209,4,0,0,208,4,0,0,208,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,207,4,0,0,209,4,0,0,61,0,4,0,7,0,0,0,211,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,212,4,0,0,211,4,0,0,211,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,210,4,0,0,212,4,0,0,61,0,4,0,9,0,0,0,214,4,0,0,171,0,0,0,62,0,3,0,213,4,0,0,214,4,0,0,57,0,7,0,39,0,0,0,215,4,0,0,164,0,0,0,207,4,0,0,210,4,0,0,213,4,0,0,62,0,3,0,206,4,0,0,215,4,0,0,65,0,5,0,17,0,0,0,216,4,0,0,167,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,217,4,0,0,216,4,0,0,65,0,5,0,17,0,0,0,218,4,0,0,202,4,0,0,210,0,0,0,61,0,4,0,6,0,0,0,219,4,0,0,218,4,0,0,131,0,5,0,6,0,0,0,220,4,0,0,36,1,0,0,219,4,0,0,133,0,5,0,6,0,0,0,221,4,0,0,217,4,0,0,220,4,0,0,61,0,4,0,7,0,0,0,222,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,223,4,0,0,222,4,0,0,222,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,224,4,0,0,223,4,0,0,221,4,0,0,65,0,5,0,17,0,0,0,225,4,0,0,167,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,226,4,0,0,225,4,0,0,65,0,5,0,17,0,0,0,227,4,0,0,202,4,0,0,210,0,0,0,61,0,4,0,6,0,0,0,228,4,0,0,227,4,0,0,133,0,5,0,6,0,0,0,229,4,0,0,226,4,0,0,228,4,0,0,61,0,4,0,39,0,0,0,230,4,0,0,206,4,0,0,142,0,5,0,39,0,0,0,231,4,0,0,230,4,0,0,229,4,0,0,129,0,5,0,39,0,0,0,232,4,0,0,224,4,0,0,231,4,0,0,65,0,5,0,17,0,0,0,233,4,0,0,167,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,234,4,0,0,233,4,0,0,131,0,5,0,6,0,0,0,235,4,0,0,36,1,0,0,234,4,0,0,61,0,4,0,7,0,0,0,236,4,0,0,202,4,0,0,79,0,8,0,39,0,0,0,237,4,0,0,236,4,0,0,236,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,238,4,0,0,237,4,0,0,235,4,0,0,129,0,5,0,39,0,0,0,239,4,0,0,232,4,0,0,238,4,0,0,81,0,5,0,6,0,0,0,240,4,0,0,239,4,0,0,0,0,0,0,81,0,5,0,6,0,0,0,241,4,0,0,239,4,0,0,1,0,0,0,81,0,5,0,6,0,0,0,242,4,0,0,239,4,0,0,2,0,0,0,80,0,7,0,7,0,0,0,243,4,0,0,240,4,0,0,241,4,0,0,242,4,0,0,36,1,0,0,254,0,2,0,243,4,0,0,56,0,1,0,54,0,5,0,6,0,0,0,180,0,0,0,0,0,0,0,174,0,0,0,55,0,3,0,17,0,0,0,175,0,0,0,55,0,3,0,20,0,0,0,176,0,0,0,55,0,3,0,22,0,0,0,177,0,0,0,55,0,3,0,40,0,0,0,178,0,0,0,55,0,3,0,10,0,0,0,179,0,0,0,248,0,2,0,181,0,0,0,59,0,4,0,253,4,0,0,254,4,0,0,7,0,0,0,59,0,4,0,8,0,0,0,3,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,15,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,246,4,0,0,179,0,0,0,170,0,5,0,117,0,0,0,247,4,0,0,246,4,0,0,192,4,0,0,247,0,3,0,249,4,0,0,0,0,0,0,250,0,4,0,247,4,0,0,248,4,0,0,249,4,0,0,248,0,2,0,248,4,0,0,61,0,4,0,6,0,0,0,250,4,0,0,175,0,0,0,254,0,2,0,250,4,0,0,248,0,2,0,249,4,0,0,61,0,4,0,39,0,0,0,255,4,0,0,178,0,0,0,79,0,7,0,21,0,0,0,0,5,0,0,255,4,0,0,255,4,0,0,0,0,0,0,1,0,0,0,12,0,6,0,21,0,0,0,1,5,0,0,1,0,0,0,8,0,0,0,0,5,0,0,110,0,4,0,252,4,0,0,2,5,0,0,1,5,0,0,62,0,3,0,254,4,0,0,2,5,0,0,61,0,4,0,19,0,0,0,4,5,0,0,176,0,0,0,61,0,4,0,252,4,0,0,5,5,0,0,254,4,0,0,135,0,5,0,252,4,0,0,8,5,0,0,5,5,0,0,7,5,0,0,111,0,4,0,21,0,0,0,9,5,0,0,8,5,0,0,80,0,5,0,21,0,0,0,10,5,0,0,168,3,0,0,168,3,0,0,129,0,5,0,21,0,0,0,11,5,0,0,9,5,0,0,10,5,0,0,61,0,4,0,21,0,0,0,12,5,0,0,177,0,0,0,136,0,5,0,21,0,0,0,13,5,0,0,11,5,0,0,12,5,0,0,87,0,5,0,7,0,0,0,14,5,0,0,4,5,0,0,13,5,0,0,62,0,3,0,3,5,0,0,14,5,0,0,65,0,5,0,10,0,0,0,16,5,0,0,254,4,0,0,98,1,0,0,61,0,4,0,9,0,0,0,17,5,0,0,16,5,0,0,139,0,5,0,9,0,0,0,18,5,0,0,17,5,0,0,6,5,0,0,65,0,5,0,17,0,0,0,19,5,0,0,3,5,0,0,18,5,0,0,61,0,4,0,6,0,0,0,20,5,0,0,19,5,0,0,65,0,5,0,17,0,0,0,21,5,0,0,178,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,22,5,0,0,21,5,0,0,129,0,5,0,6,0,0,0,23,5,0,0,20,5,0,0,22,5,0,0,62,0,3,0,15,5,0,0,23,5,0,0,61,0,4,0,9,0,0,0,24,5,0,0,179,0,0,0,199,0,5,0,9,0,0,0,25,5,0,0,24,5,0,0,109,2,0,0,171,0,5,0,117,0,0,0,26,5,0,0,25,5,0,0,192,4,0,0,247,0,3,0,28,5,0,0,0,0,0,0,250,0,4,0,26,5,0,0,27,5,0,0,31,5,0,0,248,0,2,0,27,5,0,0,61,0,4,0,6,0,0,0,29,5,0,0,15,5,0,0,12,0,6,0,6,0,0,0,30,5,0,0,1,0,0,0,4,0,0,0,29,5,0,0,62,0,3,0,15,5,0,0,30,5,0,0,249,0,2,0,28,5,0,0,248,0,2,0,31,5,0,0,61,0,4,0,6,0,0,0,32,5,0,0,15,5,0,0,141,0,5,0,6,0,0,0,33,5,0,0,32,5,0,0,43,1,0,0,131,0,5,0,6,0,0,0,34,5,0,0,36,1,0,0,33,5,0,0,12,0,6,0,6,0,0,0,35,5,0,0,1,0,0,0,4,0,0,0,34,5,0,0,131,0,5,0,6,0,0,0,36,5,0,0,36,1,0,0,35,5,0,0,62,0,3,0,15,5,0,0,36,5,0,0,249,0,2,0,28,5,0,0,248,0,2,0,28,5,0,0,61,0,4,0,6,0,0,0,37,5,0,0,175,0,0,0,61,0,4,0,6,0,0,0,38,5,0,0,15,5,0,0,12,0,7,0,6,0,0,0,39,5,0,0,1,0,0,0,37,0,0,0,37,5,0,0,38,5,0,0,254,0,2,0,39,5,0,0,56,0,1,0,54,0,5,0,7,0,0,0,201,0,0,0,0,0,0,0,182,0,0,0,55,0,3,0,22,0,0,0,183,0,0,0,55,0,3,0,20,0,0,0,184,0,0,0,55,0,3,0,20,0,0,0,185,0,0,0,55,0,3,0,20,0,0,0,186,0,0,0,55,0,3,0,20,0,0,0,187,0,0,0,55,0,3,0,22,0,0,0,188,0,0,0,55,0,3,0,22,0,0,0,189,0,0,0,55,0,3,0,8,0,0,0,190,0,0,0,55,0,3,0,8,0,0,0,191,0,0,0,55,0,3,0,8,0,0,0,192,0,0,0,55,0,3,0,8,0,0,0,193,0,0,0,55,0,3,0,8,0,0,0,194,0,0,0,55,0,3,0,22,0,0,0,195,0,0,0,55,0,3,0,10,0,0,0,196,0,0,0,55,0,3,0,40,0,0,0,197,0,0,0,55,0,3,0,22,0,0,0,198,0,0,0,55,0,3,0,8,0,0,0,199,0,0,0,55,0,3,0,10,0,0,0,200,0,0,0,248,0,2,0,202,0,0,0,59,0,4,0,10,0,0,0,42,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,47,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,48,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,50,5,0,0,7,0,0,0,59,0,4,0,40,0,0,0,52,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,54,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,57,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,59,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,68,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,73,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,74,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,76,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,78,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,80,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,82,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,84,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,86,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,88,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,90,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,92,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,95,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,97,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,99,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,107,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,112,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,114,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,116,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,118,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,43,5,0,0,200,0,0,0,195,0,5,0,9,0,0,0,44,5,0,0,43,5,0,0,192,4,0,0,199,0,5,0,9,0,0,0,46,5,0,0,44,5,0,0,45,5,0,0,62,0,3,0,42,5,0,0,46,5,0,0,62,0,3,0,47,5,0,0,36,1,0,0,61,0,4,0,6,0,0,0,49,5,0,0,47,5,0,0,62,0,3,0,48,5,0,0,49,5,0,0,61,0,4,0,21,0,0,0,51,5,0,0,189,0,0,0,62,0,3,0,50,5,0,0,51,5,0,0,61,0,4,0,39,0,0,0,53,5,0,0,197,0,0,0,62,0,3,0,52,5,0,0,53,5,0,0,61,0,4,0,9,0,0,0,55,5,0,0,42,5,0,0,62,0,3,0,54,5,0,0,55,5,0,0,57,0,9,0,6,0,0,0,56,5,0,0,180,0,0,0,48,5,0,0,185,0,0,0,50,5,0,0,52,5,0,0,54,5,0,0,62,0,3,0,47,5,0,0,56,5,0,0,61,0,4,0,7,0,0,0,58,5,0,0,199,0,0,0,62,0,3,0,57,5,0,0,58,5,0,0,61,0,4,0,9,0,0,0,60,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,62,5,0,0,60,5,0,0,61,5,0,0,199,0,5,0,9,0,0,0,63,5,0,0,62,5,0,0,45,5,0,0,62,0,3,0,59,5,0,0,63,5,0,0,61,0,4,0,9,0,0,0,64,5,0,0,59,5,0,0,171,0,5,0,117,0,0,0,65,5,0,0,64,5,0,0,192,4,0,0,247,0,3,0,67,5,0,0,0,0,0,0,250,0,4,0,65,5,0,0,66,5,0,0,67,5,0,0,248,0,2,0,66,5,0,0,61,0,4,0,9,0,0,0,69,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,70,5,0,0,69,5,0,0,6,5,0,0,199,0,5,0,9,0,0,0,72,5,0,0,70,5,0,0,71,5,0,0,62,0,3,0,68,5,0,0,72,5,0,0,61,0,4,0,21,0,0,0,75,5,0,0,198,0,0,0,62,0,3,0,74,5,0,0,75,5,0,0,61,0,4,0,21,0,0,0,77,5,0,0,188,0,0,0,62,0,3,0,76,5,0,0,77,5,0,0,61,0,4,0,21,0,0,0,79,5,0,0,183,0,0,0,62,0,3,0,78,5,0,0,79,5,0,0,61,0,4,0,21,0,0,0,81,5,0,0,195,0,0,0,62,0,3,0,80,5,0,0,81,5,0,0,61,0,4,0,7,0,0,0,83,5,0,0,190,0,0,0,62,0,3,0,82,5,0,0,83,5,0,0,61,0,4,0,7,0,0,0,85,5,0,0,191,0,0,0,62,0,3,0,84,5,0,0,85,5,0,0,61,0,4,0,7,0,0,0,87,5,0,0,192,0,0,0,62,0,3,0,86,5,0,0,87,5,0,0,61,0,4,0,7,0,0,0,89,5,0,0,193,0,0,0,62,0,3,0,88,5,0,0,89,5,0,0,61,0,4,0,7,0,0,0,91,5,0,0,194,0,0,0,62,0,3,0,90,5,0,0,91,5,0,0,61,0,4,0,9,0,0,0,93,5,0,0,68,5,0,0,62,0,3,0,92,5,0,0,93,5,0,0,57,0,16,0,7,0,0,0,94,5,0,0,115,0,0,0,74,5,0,0,184,0,0,0,187,0,0,0,76,5,0,0,78,5,0,0,80,5,0,0,82,5,0,0,84,5,0,0,86,5,0,0,88,5,0,0,90,5,0,0,92,5,0,0,62,0,3,0,73,5,0,0,94,5,0,0,61,0,4,0,7,0,0,0,96,5,0,0,57,5,0,0,62,0,3,0,95,5,0,0,96,5,0,0,61,0,4,0,7,0,0,0,98,5,0,0,73,5,0,0,62,0,3,0,97,5,0,0,98,5,0,0,61,0,4,0,9,0,0,0,100,5,0,0,59,5,0,0,62,0,3,0,99,5,0,0,100,5,0,0,57,0,7,0,7,0,0,0,101,5,0,0,15,0,0,0,95,5,0,0,97,5,0,0,99,5,0,0,62,0,3,0,57,5,0,0,101,5,0,0,249,0,2,0,67,5,0,0,248,0,2,0,67,5,0,0,61,0,4,0,6,0,0,0,102,5,0,0,47,5,0,0,65,0,5,0,17,0,0,0,103,5,0,0,57,5,0,0,210,0,0,0,61,0,4,0,6,0,0,0,104,5,0,0,103,5,0,0,133,0,5,0,6,0,0,0,105,5,0,0,104,5,0,0,102,5,0,0,65,0,5,0,17,0,0,0,106,5,0,0,57,5,0,0,210,0,0,0,62,0,3,0,106,5,0,0,105,5,0,0,61,0,4,0,9,0,0,0,108,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,110,5,0,0,108,5,0,0,109,5,0,0,199,0,5,0,9,0,0,0,111,5,0,0,110,5,0,0,71,5,0,0,62,0,3,0,107,5,0,0,111,5,0,0,61,0,4,0,7,0,0,0,113,5,0,0,57,5,0,0,62,0,3,0,112,5,0,0,113,5,0,0,61,0,4,0,21,0,0,0,115,5,0,0,195,0,0,0,62,0,3,0,114,5,0,0,115,5,0,0,61,0,4,0,21,0,0,0,117,5,0,0,183,0,0,0,62,0,3,0,116,5,0,0,117,5,0,0,61,0,4,0,9,0,0,0,119,5,0,0,107,5,0,0,62,0,3,0,118,5,0,0,119,5,0,0,57,0,9,0,7,0,0,0,120,5,0,0,172,0,0,0,112,5,0,0,186,0,0,0,114,5,0,0,116,5,0,0,118,5,0,0,62,0,3,0,57,5,0,0,120,5,0,0,65,0,5,0,17,0,0,0,121,5,0,0,57,5,0,0,210,0,0,0,61,0,4,0,6,0,0,0,122,5,0,0,121,5,0,0,61,0,4,0,7,0,0,0,123,5,0,0,57,5,0,0,79,0,8,0,39,0,0,0,124,5,0,0,123,5,0,0,123,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,125,5,0,0,124,5,0,0,122,5,0,0,65,0,5,0,17,0,0,0,126,5,0,0,57,5,0,0,244,0,0,0,81,0,5,0,6,0,0,0,127,5,0,0,125,5,0,0,0,0,0,0,62,0,3,0,126,5,0,0,127,5,0,0,65,0,5,0,17,0,0,0,128,5,0,0,57,5,0,0,98,1,0,0,81,0,5,0,6,0,0,0,129,5,0,0,125,5,0,0,1,0,0,0,62,0,3,0,128,5,0,0,129,5,0,0,65,0,5,0,17,0,0,0,130,5,0,0,57,5,0,0,106,1,0,0,81,0,5,0,6,0,0,0,131,5,0,0,125,5,0,0,2,0,0,0,62,0,3,0,130,5,0,0,131,5,0,0,61,0,4,0,7,0,0,0,132,5,0,0,57,5,0,0,254,0,2,0,132,5,0,0,56,0,1,0}; + static uint8_t tile_frag_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,196,5,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,17,0,4,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,136,5,0,0,138,5,0,0,146,5,0,0,147,5,0,0,148,5,0,0,149,5,0,0,150,5,0,0,153,5,0,0,157,5,0,0,159,5,0,0,160,5,0,0,161,5,0,0,16,0,3,0,4,0,0,0,7,0,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,9,0,15,0,0,0,99,111,109,98,105,110,101,67,111,108,111,114,48,40,118,102,52,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,12,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,13,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,14,0,0,0,111,112,0,0,5,0,11,0,27,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,49,84,97,112,40,102,49,59,115,50,49,59,118,102,50,59,0,0,0,0,5,0,4,0,24,0,0,0,111,102,102,115,101,116,0,0,5,0,6,0,25,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,26,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,14,0,37,0,0,0,102,105,108,116,101,114,84,101,120,116,83,97,109,112,108,101,57,84,97,112,40,118,102,52,59,102,49,59,118,102,52,59,115,50,49,59,118,102,50,59,118,102,52,59,102,49,59,0,5,0,6,0,30,0,0,0,111,117,116,65,108,112,104,97,76,101,102,116,0,0,0,0,5,0,6,0,31,0,0,0,111,117,116,65,108,112,104,97,67,101,110,116,101,114,0,0,5,0,6,0,32,0,0,0,111,117,116,65,108,112,104,97,82,105,103,104,116,0,0,0,5,0,6,0,33,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,34,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,4,0,35,0,0,0,107,101,114,110,101,108,0,0,5,0,5,0,36,0,0,0,111,110,101,80,105,120,101,108,0,0,0,0,5,0,11,0,45,0,0,0,102,105,108,116,101,114,84,101,120,116,67,111,110,118,111,108,118,101,55,84,97,112,40,118,102,52,59,118,102,51,59,118,102,52,59,0,5,0,4,0,42,0,0,0,97,108,112,104,97,48,0,0,5,0,4,0,43,0,0,0,97,108,112,104,97,49,0,0,5,0,4,0,44,0,0,0,107,101,114,110,101,108,0,0,5,0,13,0,51,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,67,104,97,110,110,101,108,40,102,49,59,102,49,59,115,50,49,59,0,0,0,0,5,0,4,0,48,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,49,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,50,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,11,0,57,0,0,0,102,105,108,116,101,114,84,101,120,116,71,97,109,109,97,67,111,114,114,101,99,116,40,118,102,51,59,118,102,51,59,115,50,49,59,0,5,0,4,0,54,0,0,0,98,103,67,111,108,111,114,0,5,0,4,0,55,0,0,0,102,103,67,111,108,111,114,0,5,0,5,0,56,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,12,0,67,0,0,0,102,105,108,116,101,114,84,101,120,116,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,0,5,0,6,0,60,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,61,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,62,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,63,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,64,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,65,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,66,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,15,0,77,0,0,0,102,105,108,116,101,114,82,97,100,105,97,108,71,114,97,100,105,101,110,116,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,0,0,0,5,0,6,0,70,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,71,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,72,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,73,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,74,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,75,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,76,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,10,0,85,0,0,0,102,105,108,116,101,114,66,108,117,114,40,118,102,50,59,115,50,49,59,118,102,50,59,118,102,52,59,118,102,52,59,0,5,0,6,0,80,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,81,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,7,0,82,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,6,0,83,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,84,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,14,0,95,0,0,0,102,105,108,116,101,114,67,111,108,111,114,77,97,116,114,105,120,40,118,102,50,59,115,50,49,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,0,0,5,0,6,0,88,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,89,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,6,0,90,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,91,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,92,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,93,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,94,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,7,0,100,0,0,0,102,105,108,116,101,114,78,111,110,101,40,118,102,50,59,115,50,49,59,0,5,0,6,0,98,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,99,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,17,0,115,0,0,0,102,105,108,116,101,114,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,5,0,6,0,103,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,0,0,0,5,0,6,0,104,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,105,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,106,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,0,0,0,0,5,0,5,0,107,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,108,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,6,0,109,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,110,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,111,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,112,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,113,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,5,0,114,0,0,0,99,111,108,111,114,70,105,108,116,101,114,0,5,0,10,0,124,0,0,0,99,111,109,112,111,115,105,116,101,83,101,108,101,99,116,40,118,98,51,59,118,102,51,59,118,102,51,59,0,0,0,0,5,0,4,0,121,0,0,0,99,111,110,100,0,0,0,0,5,0,4,0,122,0,0,0,105,102,84,114,117,101,0,0,5,0,4,0,123,0,0,0,105,102,70,97,108,115,101,0,5,0,8,0,129,0,0,0,99,111,109,112,111,115,105,116,101,68,105,118,105,100,101,40,102,49,59,102,49,59,0,0,5,0,3,0,127,0,0,0,110,117,109,0,5,0,4,0,128,0,0,0,100,101,110,111,109,0,0,0,5,0,10,0,134,0,0,0,99,111,109,112,111,115,105,116,101,67,111,108,111,114,68,111,100,103,101,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,132,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,133,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,8,0,138,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,84,111,82,71,66,40,118,102,51,59,0,0,5,0,3,0,137,0,0,0,104,115,108,0,5,0,8,0,141,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,84,111,72,83,76,40,118,102,51,59,0,0,5,0,3,0,140,0,0,0,114,103,98,0,5,0,9,0,145,0,0,0,99,111,109,112,111,115,105,116,101,83,99,114,101,101,110,40,118,102,51,59,118,102,51,59,0,0,0,0,5,0,5,0,143,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,144,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,149,0,0,0,99,111,109,112,111,115,105,116,101,72,97,114,100,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,147,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,148,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,153,0,0,0,99,111,109,112,111,115,105,116,101,83,111,102,116,76,105,103,104,116,40,118,102,51,59,118,102,51,59,0,5,0,5,0,151,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,152,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,9,0,159,0,0,0,99,111,109,112,111,115,105,116,101,72,83,76,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,156,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,157,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,158,0,0,0,111,112,0,0,5,0,9,0,164,0,0,0,99,111,109,112,111,115,105,116,101,82,71,66,40,118,102,51,59,118,102,51,59,105,49,59,0,0,0,0,5,0,5,0,161,0,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,162,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,3,0,163,0,0,0,111,112,0,0,5,0,10,0,172,0,0,0,99,111,109,112,111,115,105,116,101,40,118,102,52,59,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,167,0,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,168,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,6,0,169,0,0,0,100,101,115,116,84,101,120,116,117,114,101,83,105,122,101,0,5,0,5,0,170,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,3,0,171,0,0,0,111,112,0,0,5,0,10,0,180,0,0,0,115,97,109,112,108,101,77,97,115,107,40,102,49,59,115,50,49,59,118,102,50,59,118,102,51,59,105,49,59,0,0,0,5,0,5,0,175,0,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,5,0,176,0,0,0,109,97,115,107,84,101,120,116,117,114,101,0,5,0,6,0,177,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,0,5,0,6,0,178,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,179,0,0,0,109,97,115,107,67,116,114,108,0,0,0,0,5,0,24,0,201,0,0,0,99,97,108,99,117,108,97,116,101,67,111,108,111,114,40,118,102,50,59,115,50,49,59,115,50,49,59,115,50,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,50,59,105,49,59,118,102,51,59,118,102,50,59,118,102,52,59,105,49,59,0,0,0,5,0,5,0,183,0,0,0,102,114,97,103,67,111,111,114,100,0,0,0,5,0,6,0,184,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,48,0,0,0,5,0,6,0,185,0,0,0,109,97,115,107,84,101,120,116,117,114,101,48,0,0,0,0,5,0,5,0,186,0,0,0,100,101,115,116,84,101,120,116,117,114,101,0,5,0,5,0,187,0,0,0,103,97,109,109,97,76,85,84,0,0,0,0,5,0,7,0,188,0,0,0,99,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,5,0,7,0,189,0,0,0,109,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,0,5,0,6,0,190,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,6,0,191,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,6,0,192,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,6,0,193,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,6,0,194,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,6,0,195,0,0,0,102,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,5,0,4,0,196,0,0,0,99,116,114,108,0,0,0,0,5,0,6,0,197,0,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,198,0,0,0,99,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,199,0,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,5,0,200,0,0,0,116,105,108,101,67,116,114,108,0,0,0,0,5,0,4,0,249,0,0,0,119,105,100,101,0,0,0,0,5,0,4,0,4,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,14,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,20,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,21,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,28,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,32,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,33,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,39,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,40,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,46,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,47,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,53,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,64,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,65,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,90,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,97,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,101,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,105,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,109,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,1,0,0,107,101,114,110,101,108,0,0,5,0,4,0,118,1,0,0,98,103,67,111,108,111,114,0,5,0,4,0,121,1,0,0,102,103,67,111,108,111,114,0,5,0,8,0,124,1,0,0,103,97,109,109,97,67,111,114,114,101,99,116,105,111,110,69,110,97,98,108,101,100,0,0,5,0,4,0,133,1,0,0,97,108,112,104,97,0,0,0,5,0,5,0,139,1,0,0,97,108,112,104,97,76,101,102,116,0,0,0,5,0,5,0,140,1,0,0,97,108,112,104,97,67,101,110,116,101,114,0,5,0,5,0,141,1,0,0,97,108,112,104,97,82,105,103,104,116,0,0,5,0,4,0,145,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,146,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,147,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,148,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,150,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,152,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,157,1,0,0,114,0,0,0,5,0,4,0,164,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,166,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,167,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,170,1,0,0,103,0,0,0,5,0,4,0,178,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,179,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,182,1,0,0,112,97,114,97,109,0,0,0,5,0,3,0,185,1,0,0,98,0,0,0,5,0,4,0,194,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,195,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,198,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,208,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,210,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,223,1,0,0,108,105,110,101,70,114,111,109,0,0,0,0,5,0,5,0,226,1,0,0,108,105,110,101,86,101,99,116,111,114,0,0,5,0,4,0,229,1,0,0,114,97,100,105,105,0,0,0,5,0,5,0,232,1,0,0,117,118,79,114,105,103,105,110,0,0,0,0,5,0,3,0,235,1,0,0,100,80,0,0,5,0,3,0,239,1,0,0,100,67,0,0,5,0,3,0,241,1,0,0,100,82,0,0,5,0,3,0,247,1,0,0,97,0,0,0,5,0,3,0,255,1,0,0,98,0,0,0,5,0,3,0,8,2,0,0,99,0,0,0,5,0,4,0,18,2,0,0,100,105,115,99,114,105,109,0,5,0,4,0,26,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,32,2,0,0,116,115,0,0,5,0,3,0,55,2,0,0,116,0,0,0,5,0,6,0,77,2,0,0,115,114,99,79,102,102,115,101,116,83,99,97,108,101,0,0,5,0,4,0,82,2,0,0,115,117,112,112,111,114,116,0,5,0,5,0,86,2,0,0,103,97,117,115,115,67,111,101,102,102,0,0,5,0,5,0,89,2,0,0,103,97,117,115,115,83,117,109,0,0,0,0,5,0,4,0,92,2,0,0,99,111,108,111,114,0,0,0,5,0,3,0,108,2,0,0,105,0,0,0,5,0,6,0,118,2,0,0,103,97,117,115,115,80,97,114,116,105,97,108,83,117,109,0,5,0,5,0,134,2,0,0,115,114,99,79,102,102,115,101,116,0,0,0,5,0,5,0,181,2,0,0,115,114,99,67,111,108,111,114,0,0,0,0,5,0,5,0,187,2,0,0,99,111,108,111,114,77,97,116,114,105,120,0,5,0,4,0,231,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,233,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,235,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,237,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,239,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,241,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,245,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,247,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,249,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,251,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,255,2,0,0,112,97,114,97,109,0,0,0,5,0,4,0,1,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,3,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,5,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,7,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,11,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,13,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,15,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,17,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,19,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,21,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,26,3,0,0,112,97,114,97,109,0,0,0,5,0,5,0,79,3,0,0,100,101,115,116,90,101,114,111,0,0,0,0,5,0,4,0,83,3,0,0,115,114,99,79,110,101,0,0,5,0,4,0,91,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,94,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,96,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,98,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,103,3,0,0,97,0,0,0,5,0,3,0,113,3,0,0,107,115,0,0,5,0,3,0,143,3,0,0,118,0,0,0,5,0,4,0,152,3,0,0,120,77,105,110,0,0,0,0,5,0,3,0,161,3,0,0,99,0,0,0,5,0,3,0,165,3,0,0,108,0,0,0,5,0,4,0,170,3,0,0,116,101,114,109,115,0,0,0,5,0,3,0,204,3,0,0,104,0,0,0,5,0,4,0,216,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,217,3,0,0,112,97,114,97,109,0,0,0,5,0,3,0,221,3,0,0,115,0,0,0,5,0,4,0,222,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,224,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,253,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,255,3,0,0,112,97,114,97,109,0,0,0,5,0,4,0,1,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,2,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,3,4,0,0,112,97,114,97,109,0,0,0,5,0,7,0,7,4,0,0,100,97,114,107,101,110,101,100,68,101,115,116,67,111,108,111,114,0,0,0,5,0,4,0,26,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,27,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,28,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,30,4,0,0,102,97,99,116,111,114,0,0,5,0,4,0,40,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,42,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,112,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,120,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,132,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,134,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,142,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,143,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,147,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,149,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,153,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,155,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,173,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,176,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,179,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,180,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,181,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,184,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,198,4,0,0,100,101,115,116,84,101,120,67,111,111,114,100,0,0,0,0,5,0,5,0,202,4,0,0,100,101,115,116,67,111,108,111,114,0,0,0,5,0,5,0,206,4,0,0,98,108,101,110,100,101,100,82,71,66,0,0,5,0,4,0,207,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,210,4,0,0,112,97,114,97,109,0,0,0,5,0,4,0,213,4,0,0,112,97,114,97,109,0,0,0,5,0,6,0,254,4,0,0,109,97,115,107,84,101,120,67,111,111,114,100,73,0,0,0,5,0,4,0,3,5,0,0,116,101,120,101,108,0,0,0,5,0,5,0,15,5,0,0,99,111,118,101,114,97,103,101,0,0,0,0,5,0,5,0,42,5,0,0,109,97,115,107,67,116,114,108,48,0,0,0,5,0,5,0,47,5,0,0,109,97,115,107,65,108,112,104,97,0,0,0,5,0,4,0,48,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,50,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,52,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,54,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,57,5,0,0,99,111,108,111,114,0,0,0,5,0,6,0,59,5,0,0,99,111,108,111,114,48,67,111,109,98,105,110,101,0,0,0,5,0,6,0,68,5,0,0,99,111,108,111,114,48,70,105,108,116,101,114,0,0,0,0,5,0,4,0,73,5,0,0,99,111,108,111,114,48,0,0,5,0,4,0,74,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,76,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,78,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,80,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,82,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,84,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,86,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,88,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,90,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,92,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,95,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,97,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,107,5,0,0,99,111,109,112,111,115,105,116,101,79,112,0,5,0,4,0,112,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,114,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,116,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,118,5,0,0,112,97,114,97,109,0,0,0,5,0,5,0,136,5,0,0,111,70,114,97,103,67,111,108,111,114,0,0,5,0,6,0,138,5,0,0,103,108,95,70,114,97,103,67,111,111,114,100,0,0,0,0,5,0,6,0,139,5,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,48,0,0,5,0,6,0,140,5,0,0,117,77,97,115,107,84,101,120,116,117,114,101,48,0,0,0,5,0,6,0,141,5,0,0,117,68,101,115,116,84,101,120,116,117,114,101,0,0,0,0,5,0,5,0,142,5,0,0,117,71,97,109,109,97,76,85,84,0,0,0,5,0,5,0,143,5,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,143,5,0,0,0,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,143,5,0,0,1,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,7,0,143,5,0,0,2,0,0,0,117,90,66,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,8,0,143,5,0,0,3,0,0,0,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,6,0,8,0,143,5,0,0,4,0,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,6,0,8,0,143,5,0,0,5,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,6,0,143,5,0,0,6,0,0,0,117,84,114,97,110,115,102,111,114,109,0,0,5,0,3,0,145,5,0,0,0,0,0,0,5,0,6,0,146,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,5,0,6,0,147,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,5,0,6,0,148,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,5,0,6,0,149,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,5,0,6,0,150,5,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,5,0,4,0,153,5,0,0,118,67,116,114,108,0,0,0,5,0,6,0,157,5,0,0,118,77,97,115,107,84,101,120,67,111,111,114,100,48,0,0,5,0,6,0,159,5,0,0,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,5,0,5,0,160,5,0,0,118,66,97,115,101,67,111,108,111,114,0,0,5,0,5,0,161,5,0,0,118,84,105,108,101,67,116,114,108,0,0,0,5,0,4,0,164,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,167,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,171,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,174,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,176,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,178,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,180,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,182,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,184,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,187,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,188,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,190,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,192,5,0,0,112,97,114,97,109,0,0,0,5,0,4,0,194,5,0,0,112,97,114,97,109,0,0,0,71,0,4,0,136,5,0,0,30,0,0,0,0,0,0,0,71,0,4,0,138,5,0,0,11,0,0,0,15,0,0,0,71,0,4,0,139,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,139,5,0,0,33,0,0,0,3,0,0,0,71,0,4,0,140,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,140,5,0,0,33,0,0,0,4,0,0,0,71,0,4,0,141,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,141,5,0,0,33,0,0,0,5,0,0,0,71,0,4,0,142,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,142,5,0,0,33,0,0,0,6,0,0,0,72,0,5,0,143,5,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,143,5,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,143,5,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,143,5,0,0,3,0,0,0,35,0,0,0,24,0,0,0,72,0,5,0,143,5,0,0,4,0,0,0,35,0,0,0,32,0,0,0,72,0,5,0,143,5,0,0,5,0,0,0,35,0,0,0,40,0,0,0,72,0,4,0,143,5,0,0,6,0,0,0,5,0,0,0,72,0,5,0,143,5,0,0,6,0,0,0,35,0,0,0,48,0,0,0,72,0,5,0,143,5,0,0,6,0,0,0,7,0,0,0,16,0,0,0,71,0,3,0,143,5,0,0,2,0,0,0,71,0,4,0,145,5,0,0,34,0,0,0,0,0,0,0,71,0,4,0,145,5,0,0,33,0,0,0,2,0,0,0,71,0,4,0,146,5,0,0,30,0,0,0,4,0,0,0,71,0,4,0,147,5,0,0,30,0,0,0,5,0,0,0,71,0,4,0,148,5,0,0,30,0,0,0,6,0,0,0,71,0,4,0,149,5,0,0,30,0,0,0,7,0,0,0,71,0,4,0,150,5,0,0,30,0,0,0,8,0,0,0,71,0,4,0,153,5,0,0,30,0,0,0,9,0,0,0,71,0,4,0,157,5,0,0,30,0,0,0,0,0,0,0,71,0,4,0,159,5,0,0,30,0,0,0,1,0,0,0,71,0,4,0,160,5,0,0,30,0,0,0,2,0,0,0,71,0,4,0,161,5,0,0,30,0,0,0,3,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,23,0,4,0,7,0,0,0,6,0,0,0,4,0,0,0,32,0,4,0,8,0,0,0,7,0,0,0,7,0,0,0,21,0,4,0,9,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,10,0,0,0,7,0,0,0,9,0,0,0,33,0,6,0,11,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,32,0,4,0,17,0,0,0,7,0,0,0,6,0,0,0,25,0,9,0,18,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,19,0,0,0,18,0,0,0,32,0,4,0,20,0,0,0,0,0,0,0,19,0,0,0,23,0,4,0,21,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,22,0,0,0,7,0,0,0,21,0,0,0,33,0,6,0,23,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,33,0,10,0,29,0,0,0,2,0,0,0,8,0,0,0,17,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,17,0,0,0,23,0,4,0,39,0,0,0,6,0,0,0,3,0,0,0,32,0,4,0,40,0,0,0,7,0,0,0,39,0,0,0,33,0,6,0,41,0,0,0,6,0,0,0,8,0,0,0,40,0,0,0,8,0,0,0,33,0,6,0,47,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,20,0,0,0,33,0,6,0,53,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,20,0,0,0,33,0,10,0,59,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,69,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,8,0,79,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,33,0,10,0,87,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,33,0,5,0,97,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,33,0,15,0,102,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,10,0,0,0,20,0,2,0,117,0,0,0,23,0,4,0,118,0,0,0,117,0,0,0,3,0,0,0,32,0,4,0,119,0,0,0,7,0,0,0,118,0,0,0,33,0,6,0,120,0,0,0,39,0,0,0,119,0,0,0,40,0,0,0,40,0,0,0,33,0,5,0,126,0,0,0,6,0,0,0,17,0,0,0,17,0,0,0,33,0,5,0,131,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,33,0,4,0,136,0,0,0,39,0,0,0,40,0,0,0,33,0,6,0,155,0,0,0,39,0,0,0,40,0,0,0,40,0,0,0,10,0,0,0,33,0,8,0,166,0,0,0,7,0,0,0,8,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,10,0,0,0,33,0,8,0,174,0,0,0,6,0,0,0,17,0,0,0,20,0,0,0,22,0,0,0,40,0,0,0,10,0,0,0,33,0,21,0,182,0,0,0,7,0,0,0,22,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,20,0,0,0,22,0,0,0,22,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,8,0,0,0,22,0,0,0,10,0,0,0,40,0,0,0,22,0,0,0,8,0,0,0,10,0,0,0,21,0,4,0,209,0,0,0,32,0,0,0,0,0,0,0,43,0,4,0,209,0,0,0,210,0,0,0,3,0,0,0,43,0,4,0,6,0,0,0,240,0,0,0,0,0,0,0,43,0,4,0,209,0,0,0,244,0,0,0,0,0,0,0,32,0,4,0,248,0,0,0,7,0,0,0,117,0,0,0,43,0,4,0,6,0,0,0,1,1,0,0,0,0,128,192,43,0,4,0,6,0,0,0,10,1,0,0,0,0,64,192,43,0,4,0,6,0,0,0,17,1,0,0,0,0,0,192,43,0,4,0,6,0,0,0,24,1,0,0,0,0,128,191,43,0,4,0,6,0,0,0,36,1,0,0,0,0,128,63,43,0,4,0,6,0,0,0,43,1,0,0,0,0,0,64,43,0,4,0,6,0,0,0,50,1,0,0,0,0,64,64,43,0,4,0,6,0,0,0,61,1,0,0,0,0,128,64,43,0,4,0,209,0,0,0,98,1,0,0,1,0,0,0,43,0,4,0,209,0,0,0,106,1,0,0,2,0,0,0,44,0,7,0,7,0,0,0,27,2,0,0,240,0,0,0,240,0,0,0,240,0,0,0,240,0,0,0,44,0,5,0,21,0,0,0,35,2,0,0,36,1,0,0,24,1,0,0,43,0,4,0,9,0,0,0,109,2,0,0,1,0,0,0,43,0,4,0,9,0,0,0,172,2,0,0,2,0,0,0,24,0,4,0,185,2,0,0,7,0,0,0,4,0,0,0,32,0,4,0,186,2,0,0,7,0,0,0,185,2,0,0,44,0,6,0,39,0,0,0,81,3,0,0,240,0,0,0,240,0,0,0,240,0,0,0,44,0,6,0,39,0,0,0,85,3,0,0,36,1,0,0,36,1,0,0,36,1,0,0,43,0,4,0,6,0,0,0,114,3,0,0,0,0,0,65,44,0,6,0,39,0,0,0,115,3,0,0,240,0,0,0,114,3,0,0,61,1,0,0,43,0,4,0,6,0,0,0,118,3,0,0,69,118,244,63,43,0,4,0,6,0,0,0,122,3,0,0,0,0,64,65,44,0,6,0,39,0,0,0,128,3,0,0,50,1,0,0,50,1,0,0,50,1,0,0,43,0,4,0,6,0,0,0,130,3,0,0,0,0,16,65,44,0,6,0,39,0,0,0,131,3,0,0,130,3,0,0,130,3,0,0,130,3,0,0,43,0,4,0,6,0,0,0,168,3,0,0,0,0,0,63,43,0,4,0,6,0,0,0,205,3,0,0,146,10,134,63,44,0,6,0,39,0,0,0,243,3,0,0,168,3,0,0,168,3,0,0,168,3,0,0,44,0,6,0,39,0,0,0,246,3,0,0,43,1,0,0,43,1,0,0,43,1,0,0,43,0,4,0,6,0,0,0,9,4,0,0,0,0,128,62,44,0,6,0,39,0,0,0,10,4,0,0,9,4,0,0,9,4,0,0,9,4,0,0,43,0,4,0,6,0,0,0,12,4,0,0,0,0,128,65,44,0,6,0,39,0,0,0,13,4,0,0,12,4,0,0,12,4,0,0,12,4,0,0,43,0,4,0,9,0,0,0,192,4,0,0,0,0,0,0,23,0,4,0,252,4,0,0,9,0,0,0,2,0,0,0,32,0,4,0,253,4,0,0,7,0,0,0,252,4,0,0,43,0,4,0,9,0,0,0,6,5,0,0,4,0,0,0,44,0,5,0,252,4,0,0,7,5,0,0,109,2,0,0,6,5,0,0,43,0,4,0,9,0,0,0,45,5,0,0,3,0,0,0,43,0,4,0,9,0,0,0,61,5,0,0,8,0,0,0,43,0,4,0,9,0,0,0,71,5,0,0,15,0,0,0,43,0,4,0,9,0,0,0,109,5,0,0,10,0,0,0,32,0,4,0,135,5,0,0,3,0,0,0,7,0,0,0,59,0,4,0,135,5,0,0,136,5,0,0,3,0,0,0,32,0,4,0,137,5,0,0,1,0,0,0,7,0,0,0,59,0,4,0,137,5,0,0,138,5,0,0,1,0,0,0,59,0,4,0,20,0,0,0,139,5,0,0,0,0,0,0,59,0,4,0,20,0,0,0,140,5,0,0,0,0,0,0,59,0,4,0,20,0,0,0,141,5,0,0,0,0,0,0,59,0,4,0,20,0,0,0,142,5,0,0,0,0,0,0,30,0,9,0,143,5,0,0,21,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,21,0,0,0,185,2,0,0,32,0,4,0,144,5,0,0,2,0,0,0,143,5,0,0,59,0,4,0,144,5,0,0,145,5,0,0,2,0,0,0,59,0,4,0,137,5,0,0,146,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,147,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,148,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,149,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,150,5,0,0,1,0,0,0,43,0,4,0,9,0,0,0,151,5,0,0,5,0,0,0,32,0,4,0,152,5,0,0,1,0,0,0,6,0,0,0,59,0,4,0,152,5,0,0,153,5,0,0,1,0,0,0,32,0,4,0,156,5,0,0,1,0,0,0,39,0,0,0,59,0,4,0,156,5,0,0,157,5,0,0,1,0,0,0,32,0,4,0,158,5,0,0,1,0,0,0,21,0,0,0,59,0,4,0,158,5,0,0,159,5,0,0,1,0,0,0,59,0,4,0,137,5,0,0,160,5,0,0,1,0,0,0,59,0,4,0,152,5,0,0,161,5,0,0,1,0,0,0,32,0,4,0,168,5,0,0,2,0,0,0,21,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,22,0,0,0,164,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,167,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,171,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,174,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,176,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,178,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,180,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,182,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,184,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,187,5,0,0,7,0,0,0,59,0,4,0,40,0,0,0,188,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,190,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,192,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,194,5,0,0,7,0,0,0,61,0,4,0,6,0,0,0,154,5,0,0,153,5,0,0,110,0,4,0,9,0,0,0,155,5,0,0,154,5,0,0,61,0,4,0,6,0,0,0,162,5,0,0,161,5,0,0,110,0,4,0,9,0,0,0,163,5,0,0,162,5,0,0,61,0,4,0,7,0,0,0,165,5,0,0,138,5,0,0,79,0,7,0,21,0,0,0,166,5,0,0,165,5,0,0,165,5,0,0,0,0,0,0,1,0,0,0,62,0,3,0,164,5,0,0,166,5,0,0,65,0,5,0,168,5,0,0,169,5,0,0,145,5,0,0,6,5,0,0,61,0,4,0,21,0,0,0,170,5,0,0,169,5,0,0,62,0,3,0,167,5,0,0,170,5,0,0,65,0,5,0,168,5,0,0,172,5,0,0,145,5,0,0,45,5,0,0,61,0,4,0,21,0,0,0,173,5,0,0,172,5,0,0,62,0,3,0,171,5,0,0,173,5,0,0,61,0,4,0,7,0,0,0,175,5,0,0,146,5,0,0,62,0,3,0,174,5,0,0,175,5,0,0,61,0,4,0,7,0,0,0,177,5,0,0,147,5,0,0,62,0,3,0,176,5,0,0,177,5,0,0,61,0,4,0,7,0,0,0,179,5,0,0,148,5,0,0,62,0,3,0,178,5,0,0,179,5,0,0,61,0,4,0,7,0,0,0,181,5,0,0,149,5,0,0,62,0,3,0,180,5,0,0,181,5,0,0,61,0,4,0,7,0,0,0,183,5,0,0,150,5,0,0,62,0,3,0,182,5,0,0,183,5,0,0,65,0,5,0,168,5,0,0,185,5,0,0,145,5,0,0,151,5,0,0,61,0,4,0,21,0,0,0,186,5,0,0,185,5,0,0,62,0,3,0,184,5,0,0,186,5,0,0,62,0,3,0,187,5,0,0,155,5,0,0,61,0,4,0,39,0,0,0,189,5,0,0,157,5,0,0,62,0,3,0,188,5,0,0,189,5,0,0,61,0,4,0,21,0,0,0,191,5,0,0,159,5,0,0,62,0,3,0,190,5,0,0,191,5,0,0,61,0,4,0,7,0,0,0,193,5,0,0,160,5,0,0,62,0,3,0,192,5,0,0,193,5,0,0,62,0,3,0,194,5,0,0,163,5,0,0,57,0,22,0,7,0,0,0,195,5,0,0,201,0,0,0,164,5,0,0,139,5,0,0,140,5,0,0,141,5,0,0,142,5,0,0,167,5,0,0,171,5,0,0,174,5,0,0,176,5,0,0,178,5,0,0,180,5,0,0,182,5,0,0,184,5,0,0,187,5,0,0,188,5,0,0,190,5,0,0,192,5,0,0,194,5,0,0,62,0,3,0,136,5,0,0,195,5,0,0,253,0,1,0,56,0,1,0,54,0,5,0,7,0,0,0,15,0,0,0,0,0,0,0,11,0,0,0,55,0,3,0,8,0,0,0,12,0,0,0,55,0,3,0,8,0,0,0,13,0,0,0,55,0,3,0,10,0,0,0,14,0,0,0,248,0,2,0,16,0,0,0,61,0,4,0,9,0,0,0,203,0,0,0,14,0,0,0,247,0,3,0,206,0,0,0,0,0,0,0,251,0,7,0,203,0,0,0,206,0,0,0,1,0,0,0,204,0,0,0,2,0,0,0,205,0,0,0,248,0,2,0,204,0,0,0,61,0,4,0,7,0,0,0,207,0,0,0,13,0,0,0,79,0,8,0,39,0,0,0,208,0,0,0,207,0,0,0,207,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,211,0,0,0,13,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,212,0,0,0,211,0,0,0,65,0,5,0,17,0,0,0,213,0,0,0,12,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,214,0,0,0,213,0,0,0,133,0,5,0,6,0,0,0,215,0,0,0,212,0,0,0,214,0,0,0,81,0,5,0,6,0,0,0,216,0,0,0,208,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,217,0,0,0,208,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,218,0,0,0,208,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,219,0,0,0,216,0,0,0,217,0,0,0,218,0,0,0,215,0,0,0,254,0,2,0,219,0,0,0,248,0,2,0,205,0,0,0,61,0,4,0,7,0,0,0,221,0,0,0,12,0,0,0,79,0,8,0,39,0,0,0,222,0,0,0,221,0,0,0,221,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,65,0,5,0,17,0,0,0,223,0,0,0,13,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,224,0,0,0,223,0,0,0,65,0,5,0,17,0,0,0,225,0,0,0,12,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,226,0,0,0,225,0,0,0,133,0,5,0,6,0,0,0,227,0,0,0,224,0,0,0,226,0,0,0,81,0,5,0,6,0,0,0,228,0,0,0,222,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,229,0,0,0,222,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,230,0,0,0,222,0,0,0,2,0,0,0,80,0,7,0,7,0,0,0,231,0,0,0,228,0,0,0,229,0,0,0,230,0,0,0,227,0,0,0,254,0,2,0,231,0,0,0,248,0,2,0,206,0,0,0,61,0,4,0,7,0,0,0,234,0,0,0,12,0,0,0,254,0,2,0,234,0,0,0,56,0,1,0,54,0,5,0,6,0,0,0,27,0,0,0,0,0,0,0,23,0,0,0,55,0,3,0,17,0,0,0,24,0,0,0,55,0,3,0,20,0,0,0,25,0,0,0,55,0,3,0,22,0,0,0,26,0,0,0,248,0,2,0,28,0,0,0,61,0,4,0,19,0,0,0,237,0,0,0,25,0,0,0,61,0,4,0,21,0,0,0,238,0,0,0,26,0,0,0,61,0,4,0,6,0,0,0,239,0,0,0,24,0,0,0,80,0,5,0,21,0,0,0,241,0,0,0,239,0,0,0,240,0,0,0,129,0,5,0,21,0,0,0,242,0,0,0,238,0,0,0,241,0,0,0,87,0,5,0,7,0,0,0,243,0,0,0,237,0,0,0,242,0,0,0,81,0,5,0,6,0,0,0,245,0,0,0,243,0,0,0,0,0,0,0,254,0,2,0,245,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,37,0,0,0,0,0,0,0,29,0,0,0,55,0,3,0,8,0,0,0,30,0,0,0,55,0,3,0,17,0,0,0,31,0,0,0,55,0,3,0,8,0,0,0,32,0,0,0,55,0,3,0,20,0,0,0,33,0,0,0,55,0,3,0,22,0,0,0,34,0,0,0,55,0,3,0,8,0,0,0,35,0,0,0,55,0,3,0,17,0,0,0,36,0,0,0,248,0,2,0,38,0,0,0,59,0,4,0,248,0,0,0,249,0,0,0,7,0,0,0,59,0,4,0,17,0,0,0,254,0,0,0,7,0,0,0,59,0,4,0,17,0,0,0,4,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,5,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,13,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,14,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,20,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,21,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,27,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,28,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,32,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,33,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,39,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,40,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,46,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,47,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,53,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,54,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,58,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,64,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,65,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,250,0,0,0,35,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,251,0,0,0,250,0,0,0,186,0,5,0,117,0,0,0,252,0,0,0,251,0,0,0,240,0,0,0,62,0,3,0,249,0,0,0,252,0,0,0,61,0,4,0,117,0,0,0,253,0,0,0,249,0,0,0,247,0,3,0,0,1,0,0,0,0,0,0,250,0,4,0,253,0,0,0,255,0,0,0,8,1,0,0,248,0,2,0,255,0,0,0,61,0,4,0,6,0,0,0,2,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,3,1,0,0,1,1,0,0,2,1,0,0,62,0,3,0,4,1,0,0,3,1,0,0,61,0,4,0,21,0,0,0,6,1,0,0,34,0,0,0,62,0,3,0,5,1,0,0,6,1,0,0,57,0,7,0,6,0,0,0,7,1,0,0,27,0,0,0,4,1,0,0,33,0,0,0,5,1,0,0,62,0,3,0,254,0,0,0,7,1,0,0,249,0,2,0,0,1,0,0,248,0,2,0,8,1,0,0,62,0,3,0,254,0,0,0,240,0,0,0,249,0,2,0,0,1,0,0,248,0,2,0,0,1,0,0,61,0,4,0,6,0,0,0,9,1,0,0,254,0,0,0,61,0,4,0,6,0,0,0,11,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,12,1,0,0,10,1,0,0,11,1,0,0,62,0,3,0,13,1,0,0,12,1,0,0,61,0,4,0,21,0,0,0,15,1,0,0,34,0,0,0,62,0,3,0,14,1,0,0,15,1,0,0,57,0,7,0,6,0,0,0,16,1,0,0,27,0,0,0,13,1,0,0,33,0,0,0,14,1,0,0,61,0,4,0,6,0,0,0,18,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,19,1,0,0,17,1,0,0,18,1,0,0,62,0,3,0,20,1,0,0,19,1,0,0,61,0,4,0,21,0,0,0,22,1,0,0,34,0,0,0,62,0,3,0,21,1,0,0,22,1,0,0,57,0,7,0,6,0,0,0,23,1,0,0,27,0,0,0,20,1,0,0,33,0,0,0,21,1,0,0,61,0,4,0,6,0,0,0,25,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,26,1,0,0,24,1,0,0,25,1,0,0,62,0,3,0,27,1,0,0,26,1,0,0,61,0,4,0,21,0,0,0,29,1,0,0,34,0,0,0,62,0,3,0,28,1,0,0,29,1,0,0,57,0,7,0,6,0,0,0,30,1,0,0,27,0,0,0,27,1,0,0,33,0,0,0,28,1,0,0,80,0,7,0,7,0,0,0,31,1,0,0,9,1,0,0,16,1,0,0,23,1,0,0,30,1,0,0,62,0,3,0,30,0,0,0,31,1,0,0,62,0,3,0,32,1,0,0,240,0,0,0,61,0,4,0,21,0,0,0,34,1,0,0,34,0,0,0,62,0,3,0,33,1,0,0,34,1,0,0,57,0,7,0,6,0,0,0,35,1,0,0,27,0,0,0,32,1,0,0,33,0,0,0,33,1,0,0,62,0,3,0,31,0,0,0,35,1,0,0,61,0,4,0,6,0,0,0,37,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,38,1,0,0,36,1,0,0,37,1,0,0,62,0,3,0,39,1,0,0,38,1,0,0,61,0,4,0,21,0,0,0,41,1,0,0,34,0,0,0,62,0,3,0,40,1,0,0,41,1,0,0,57,0,7,0,6,0,0,0,42,1,0,0,27,0,0,0,39,1,0,0,33,0,0,0,40,1,0,0,61,0,4,0,6,0,0,0,44,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,45,1,0,0,43,1,0,0,44,1,0,0,62,0,3,0,46,1,0,0,45,1,0,0,61,0,4,0,21,0,0,0,48,1,0,0,34,0,0,0,62,0,3,0,47,1,0,0,48,1,0,0,57,0,7,0,6,0,0,0,49,1,0,0,27,0,0,0,46,1,0,0,33,0,0,0,47,1,0,0,61,0,4,0,6,0,0,0,51,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,52,1,0,0,50,1,0,0,51,1,0,0,62,0,3,0,53,1,0,0,52,1,0,0,61,0,4,0,21,0,0,0,55,1,0,0,34,0,0,0,62,0,3,0,54,1,0,0,55,1,0,0,57,0,7,0,6,0,0,0,56,1,0,0,27,0,0,0,53,1,0,0,33,0,0,0,54,1,0,0,61,0,4,0,117,0,0,0,57,1,0,0,249,0,0,0,247,0,3,0,60,1,0,0,0,0,0,0,250,0,4,0,57,1,0,0,59,1,0,0,68,1,0,0,248,0,2,0,59,1,0,0,61,0,4,0,6,0,0,0,62,1,0,0,36,0,0,0,133,0,5,0,6,0,0,0,63,1,0,0,61,1,0,0,62,1,0,0,62,0,3,0,64,1,0,0,63,1,0,0,61,0,4,0,21,0,0,0,66,1,0,0,34,0,0,0,62,0,3,0,65,1,0,0,66,1,0,0,57,0,7,0,6,0,0,0,67,1,0,0,27,0,0,0,64,1,0,0,33,0,0,0,65,1,0,0,62,0,3,0,58,1,0,0,67,1,0,0,249,0,2,0,60,1,0,0,248,0,2,0,68,1,0,0,62,0,3,0,58,1,0,0,240,0,0,0,249,0,2,0,60,1,0,0,248,0,2,0,60,1,0,0,61,0,4,0,6,0,0,0,69,1,0,0,58,1,0,0,80,0,7,0,7,0,0,0,70,1,0,0,42,1,0,0,49,1,0,0,56,1,0,0,69,1,0,0,62,0,3,0,32,0,0,0,70,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,6,0,0,0,45,0,0,0,0,0,0,0,41,0,0,0,55,0,3,0,8,0,0,0,42,0,0,0,55,0,3,0,40,0,0,0,43,0,0,0,55,0,3,0,8,0,0,0,44,0,0,0,248,0,2,0,46,0,0,0,61,0,4,0,7,0,0,0,71,1,0,0,42,0,0,0,61,0,4,0,7,0,0,0,72,1,0,0,44,0,0,0,148,0,5,0,6,0,0,0,73,1,0,0,71,1,0,0,72,1,0,0,61,0,4,0,39,0,0,0,74,1,0,0,43,0,0,0,61,0,4,0,7,0,0,0,75,1,0,0,44,0,0,0,79,0,8,0,39,0,0,0,76,1,0,0,75,1,0,0,75,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,148,0,5,0,6,0,0,0,77,1,0,0,74,1,0,0,76,1,0,0,129,0,5,0,6,0,0,0,78,1,0,0,73,1,0,0,77,1,0,0,254,0,2,0,78,1,0,0,56,0,1,0,54,0,5,0,6,0,0,0,51,0,0,0,0,0,0,0,47,0,0,0,55,0,3,0,17,0,0,0,48,0,0,0,55,0,3,0,17,0,0,0,49,0,0,0,55,0,3,0,20,0,0,0,50,0,0,0,248,0,2,0,52,0,0,0,61,0,4,0,19,0,0,0,81,1,0,0,50,0,0,0,61,0,4,0,6,0,0,0,82,1,0,0,49,0,0,0,61,0,4,0,6,0,0,0,83,1,0,0,48,0,0,0,131,0,5,0,6,0,0,0,84,1,0,0,36,1,0,0,83,1,0,0,80,0,5,0,21,0,0,0,85,1,0,0,82,1,0,0,84,1,0,0,87,0,5,0,7,0,0,0,86,1,0,0,81,1,0,0,85,1,0,0,81,0,5,0,6,0,0,0,87,1,0,0,86,1,0,0,0,0,0,0,254,0,2,0,87,1,0,0,56,0,1,0,54,0,5,0,39,0,0,0,57,0,0,0,0,0,0,0,53,0,0,0,55,0,3,0,40,0,0,0,54,0,0,0,55,0,3,0,40,0,0,0,55,0,0,0,55,0,3,0,20,0,0,0,56,0,0,0,248,0,2,0,58,0,0,0,59,0,4,0,17,0,0,0,90,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,93,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,97,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,101,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,105,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,109,1,0,0,7,0,0,0,65,0,5,0,17,0,0,0,91,1,0,0,54,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,92,1,0,0,91,1,0,0,62,0,3,0,90,1,0,0,92,1,0,0,65,0,5,0,17,0,0,0,94,1,0,0,55,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,95,1,0,0,94,1,0,0,62,0,3,0,93,1,0,0,95,1,0,0,57,0,7,0,6,0,0,0,96,1,0,0,51,0,0,0,90,1,0,0,93,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,99,1,0,0,54,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,100,1,0,0,99,1,0,0,62,0,3,0,97,1,0,0,100,1,0,0,65,0,5,0,17,0,0,0,102,1,0,0,55,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,103,1,0,0,102,1,0,0,62,0,3,0,101,1,0,0,103,1,0,0,57,0,7,0,6,0,0,0,104,1,0,0,51,0,0,0,97,1,0,0,101,1,0,0,56,0,0,0,65,0,5,0,17,0,0,0,107,1,0,0,54,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,108,1,0,0,107,1,0,0,62,0,3,0,105,1,0,0,108,1,0,0,65,0,5,0,17,0,0,0,110,1,0,0,55,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,111,1,0,0,110,1,0,0,62,0,3,0,109,1,0,0,111,1,0,0,57,0,7,0,6,0,0,0,112,1,0,0,51,0,0,0,105,1,0,0,109,1,0,0,56,0,0,0,80,0,6,0,39,0,0,0,113,1,0,0,96,1,0,0,104,1,0,0,112,1,0,0,254,0,2,0,113,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,67,0,0,0,0,0,0,0,59,0,0,0,55,0,3,0,22,0,0,0,60,0,0,0,55,0,3,0,20,0,0,0,61,0,0,0,55,0,3,0,20,0,0,0,62,0,0,0,55,0,3,0,22,0,0,0,63,0,0,0,55,0,3,0,8,0,0,0,64,0,0,0,55,0,3,0,8,0,0,0,65,0,0,0,55,0,3,0,8,0,0,0,66,0,0,0,248,0,2,0,68,0,0,0,59,0,4,0,8,0,0,0,116,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,118,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,121,1,0,0,7,0,0,0,59,0,4,0,248,0,0,0,124,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,133,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,139,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,140,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,141,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,145,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,146,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,147,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,148,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,150,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,152,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,157,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,164,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,166,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,167,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,170,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,178,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,179,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,182,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,185,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,194,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,195,1,0,0,7,0,0,0,59,0,4,0,8,0,0,0,198,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,208,1,0,0,7,0,0,0,59,0,4,0,40,0,0,0,210,1,0,0,7,0,0,0,61,0,4,0,7,0,0,0,117,1,0,0,64,0,0,0,62,0,3,0,116,1,0,0,117,1,0,0,61,0,4,0,7,0,0,0,119,1,0,0,65,0,0,0,79,0,8,0,39,0,0,0,120,1,0,0,119,1,0,0,119,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,118,1,0,0,120,1,0,0,61,0,4,0,7,0,0,0,122,1,0,0,66,0,0,0,79,0,8,0,39,0,0,0,123,1,0,0,122,1,0,0,122,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,121,1,0,0,123,1,0,0,65,0,5,0,17,0,0,0,125,1,0,0,66,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,126,1,0,0,125,1,0,0,183,0,5,0,117,0,0,0,127,1,0,0,126,1,0,0,240,0,0,0,62,0,3,0,124,1,0,0,127,1,0,0,65,0,5,0,17,0,0,0,128,1,0,0,116,1,0,0,210,0,0,0,61,0,4,0,6,0,0,0,129,1,0,0,128,1,0,0,180,0,5,0,117,0,0,0,130,1,0,0,129,1,0,0,240,0,0,0,247,0,3,0,132,1,0,0,0,0,0,0,250,0,4,0,130,1,0,0,131,1,0,0,138,1,0,0,248,0,2,0,131,1,0,0,61,0,4,0,19,0,0,0,134,1,0,0,61,0,0,0,61,0,4,0,21,0,0,0,135,1,0,0,60,0,0,0,87,0,5,0,7,0,0,0,136,1,0,0,134,1,0,0,135,1,0,0,79,0,8,0,39,0,0,0,137,1,0,0,136,1,0,0,136,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,3,0,133,1,0,0,137,1,0,0,249,0,2,0,132,1,0,0,248,0,2,0,138,1,0,0,65,0,5,0,17,0,0,0,142,1,0,0,63,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,143,1,0,0,142,1,0,0,136,0,5,0,6,0,0,0,144,1,0,0,36,1,0,0,143,1,0,0,61,0,4,0,21,0,0,0,149,1,0,0,60,0,0,0,62,0,3,0,148,1,0,0,149,1,0,0,61,0,4,0,7,0,0,0,151,1,0,0,116,1,0,0,62,0,3,0,150,1,0,0,151,1,0,0,62,0,3,0,152,1,0,0,144,1,0,0,57,0,11,0,2,0,0,0,153,1,0,0,37,0,0,0,145,1,0,0,146,1,0,0,147,1,0,0,61,0,0,0,148,1,0,0,150,1,0,0,152,1,0,0,61,0,4,0,7,0,0,0,154,1,0,0,145,1,0,0,62,0,3,0,139,1,0,0,154,1,0,0,61,0,4,0,6,0,0,0,155,1,0,0,146,1,0,0,62,0,3,0,140,1,0,0,155,1,0,0,61,0,4,0,7,0,0,0,156,1,0,0,147,1,0,0,62,0,3,0,141,1,0,0,156,1,0,0,61,0,4,0,6,0,0,0,158,1,0,0,140,1,0,0,61,0,4,0,7,0,0,0,159,1,0,0,141,1,0,0,79,0,7,0,21,0,0,0,160,1,0,0,159,1,0,0,159,1,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,161,1,0,0,160,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,162,1,0,0,160,1,0,0,1,0,0,0,80,0,6,0,39,0,0,0,163,1,0,0,158,1,0,0,161,1,0,0,162,1,0,0,61,0,4,0,7,0,0,0,165,1,0,0,139,1,0,0,62,0,3,0,164,1,0,0,165,1,0,0,62,0,3,0,166,1,0,0,163,1,0,0,61,0,4,0,7,0,0,0,168,1,0,0,116,1,0,0,62,0,3,0,167,1,0,0,168,1,0,0,57,0,7,0,6,0,0,0,169,1,0,0,45,0,0,0,164,1,0,0,166,1,0,0,167,1,0,0,62,0,3,0,157,1,0,0,169,1,0,0,61,0,4,0,7,0,0,0,171,1,0,0,139,1,0,0,79,0,8,0,39,0,0,0,172,1,0,0,171,1,0,0,171,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,173,1,0,0,140,1,0,0,81,0,5,0,6,0,0,0,174,1,0,0,172,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,175,1,0,0,172,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,176,1,0,0,172,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,177,1,0,0,174,1,0,0,175,1,0,0,176,1,0,0,173,1,0,0,62,0,3,0,178,1,0,0,177,1,0,0,61,0,4,0,7,0,0,0,180,1,0,0,141,1,0,0,79,0,8,0,39,0,0,0,181,1,0,0,180,1,0,0,180,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,179,1,0,0,181,1,0,0,61,0,4,0,7,0,0,0,183,1,0,0,116,1,0,0,62,0,3,0,182,1,0,0,183,1,0,0,57,0,7,0,6,0,0,0,184,1,0,0,45,0,0,0,178,1,0,0,179,1,0,0,182,1,0,0,62,0,3,0,170,1,0,0,184,1,0,0,61,0,4,0,7,0,0,0,186,1,0,0,139,1,0,0,79,0,7,0,21,0,0,0,187,1,0,0,186,1,0,0,186,1,0,0,2,0,0,0,3,0,0,0,61,0,4,0,6,0,0,0,188,1,0,0,140,1,0,0,65,0,5,0,17,0,0,0,189,1,0,0,141,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,190,1,0,0,189,1,0,0,81,0,5,0,6,0,0,0,191,1,0,0,187,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,192,1,0,0,187,1,0,0,1,0,0,0,80,0,7,0,7,0,0,0,193,1,0,0,191,1,0,0,192,1,0,0,188,1,0,0,190,1,0,0,62,0,3,0,194,1,0,0,193,1,0,0,61,0,4,0,7,0,0,0,196,1,0,0,141,1,0,0,79,0,8,0,39,0,0,0,197,1,0,0,196,1,0,0,196,1,0,0,1,0,0,0,2,0,0,0,3,0,0,0,62,0,3,0,195,1,0,0,197,1,0,0,61,0,4,0,7,0,0,0,199,1,0,0,116,1,0,0,62,0,3,0,198,1,0,0,199,1,0,0,57,0,7,0,6,0,0,0,200,1,0,0,45,0,0,0,194,1,0,0,195,1,0,0,198,1,0,0,62,0,3,0,185,1,0,0,200,1,0,0,61,0,4,0,6,0,0,0,201,1,0,0,157,1,0,0,61,0,4,0,6,0,0,0,202,1,0,0,170,1,0,0,61,0,4,0,6,0,0,0,203,1,0,0,185,1,0,0,80,0,6,0,39,0,0,0,204,1,0,0,201,1,0,0,202,1,0,0,203,1,0,0,62,0,3,0,133,1,0,0,204,1,0,0,249,0,2,0,132,1,0,0,248,0,2,0,132,1,0,0,61,0,4,0,117,0,0,0,205,1,0,0,124,1,0,0,247,0,3,0,207,1,0,0,0,0,0,0,250,0,4,0,205,1,0,0,206,1,0,0,207,1,0,0,248,0,2,0,206,1,0,0,61,0,4,0,39,0,0,0,209,1,0,0,118,1,0,0,62,0,3,0,208,1,0,0,209,1,0,0,61,0,4,0,39,0,0,0,211,1,0,0,133,1,0,0,62,0,3,0,210,1,0,0,211,1,0,0,57,0,7,0,39,0,0,0,212,1,0,0,57,0,0,0,208,1,0,0,210,1,0,0,62,0,0,0,62,0,3,0,133,1,0,0,212,1,0,0,249,0,2,0,207,1,0,0,248,0,2,0,207,1,0,0,61,0,4,0,39,0,0,0,213,1,0,0,118,1,0,0,61,0,4,0,39,0,0,0,214,1,0,0,121,1,0,0,61,0,4,0,39,0,0,0,215,1,0,0,133,1,0,0,12,0,8,0,39,0,0,0,216,1,0,0,1,0,0,0,46,0,0,0,213,1,0,0,214,1,0,0,215,1,0,0,81,0,5,0,6,0,0,0,217,1,0,0,216,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,218,1,0,0,216,1,0,0,1,0,0,0,81,0,5,0,6,0,0,0,219,1,0,0,216,1,0,0,2,0,0,0,80,0,7,0,7,0,0,0,220,1,0,0,217,1,0,0,218,1,0,0,219,1,0,0,36,1,0,0,254,0,2,0,220,1,0,0,56,0,1,0,54,0,5,0,7,0,0,0,77,0,0,0,0,0,0,0,69,0,0,0,55,0,3,0,22,0,0,0,70,0,0,0,55,0,3,0,20,0,0,0,71,0,0,0,55,0,3,0,22,0,0,0,72,0,0,0,55,0,3,0,22,0,0,0,73,0,0,0,55,0,3,0,22,0,0,0,74,0,0,0,55,0,3,0,8,0,0,0,75,0,0,0,55,0,3,0,8,0,0,0,76,0,0,0,248,0,2,0,78,0,0,0,59,0,4,0,22,0,0,0,223,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,226,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,229,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,232,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,235,1,0,0,7,0,0,0,59,0,4,0,22,0,0,0,239,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,241,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,247,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,255,1,0,0,7,0,0,0,59,0,4,0,17,0,0,0,8,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,18,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,26,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,32,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,55,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,59,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,224,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,225,1,0,0,224,1,0,0,224,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,223,1,0,0,225,1,0,0,61,0,4,0,7,0,0,0,227,1,0,0,75,0,0,0,79,0,7,0,21,0,0,0,228,1,0,0,227,1,0,0,227,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,226,1,0,0,228,1,0,0,61,0,4,0,7,0,0,0,230,1,0,0,76,0,0,0,79,0,7,0,21,0,0,0,231,1,0,0,230,1,0,0,230,1,0,0,0,0,0,0,1,0,0,0,62,0,3,0,229,1,0,0,231,1,0,0,61,0,4,0,7,0,0,0,233,1,0,0,76,0,0,0,79,0,7,0,21,0,0,0,234,1,0,0,233,1,0,0,233,1,0,0,2,0,0,0,3,0,0,0,62,0,3,0,232,1,0,0,234,1,0,0,61,0,4,0,21,0,0,0,236,1,0,0,70,0,0,0,61,0,4,0,21,0,0,0,237,1,0,0,223,1,0,0,131,0,5,0,21,0,0,0,238,1,0,0,236,1,0,0,237,1,0,0,62,0,3,0,235,1,0,0,238,1,0,0,61,0,4,0,21,0,0,0,240,1,0,0,226,1,0,0,62,0,3,0,239,1,0,0,240,1,0,0,65,0,5,0,17,0,0,0,242,1,0,0,229,1,0,0,98,1,0,0,61,0,4,0,6,0,0,0,243,1,0,0,242,1,0,0,65,0,5,0,17,0,0,0,244,1,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,245,1,0,0,244,1,0,0,131,0,5,0,6,0,0,0,246,1,0,0,243,1,0,0,245,1,0,0,62,0,3,0,241,1,0,0,246,1,0,0,61,0,4,0,21,0,0,0,248,1,0,0,239,1,0,0,61,0,4,0,21,0,0,0,249,1,0,0,239,1,0,0,148,0,5,0,6,0,0,0,250,1,0,0,248,1,0,0,249,1,0,0,61,0,4,0,6,0,0,0,251,1,0,0,241,1,0,0,61,0,4,0,6,0,0,0,252,1,0,0,241,1,0,0,133,0,5,0,6,0,0,0,253,1,0,0,251,1,0,0,252,1,0,0,131,0,5,0,6,0,0,0,254,1,0,0,250,1,0,0,253,1,0,0,62,0,3,0,247,1,0,0,254,1,0,0,61,0,4,0,21,0,0,0,0,2,0,0,235,1,0,0,61,0,4,0,21,0,0,0,1,2,0,0,239,1,0,0,148,0,5,0,6,0,0,0,2,2,0,0,0,2,0,0,1,2,0,0,65,0,5,0,17,0,0,0,3,2,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,4,2,0,0,3,2,0,0,61,0,4,0,6,0,0,0,5,2,0,0,241,1,0,0,133,0,5,0,6,0,0,0,6,2,0,0,4,2,0,0,5,2,0,0,129,0,5,0,6,0,0,0,7,2,0,0,2,2,0,0,6,2,0,0,62,0,3,0,255,1,0,0,7,2,0,0,61,0,4,0,21,0,0,0,9,2,0,0,235,1,0,0,61,0,4,0,21,0,0,0,10,2,0,0,235,1,0,0,148,0,5,0,6,0,0,0,11,2,0,0,9,2,0,0,10,2,0,0,65,0,5,0,17,0,0,0,12,2,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,13,2,0,0,12,2,0,0,65,0,5,0,17,0,0,0,14,2,0,0,229,1,0,0,244,0,0,0,61,0,4,0,6,0,0,0,15,2,0,0,14,2,0,0,133,0,5,0,6,0,0,0,16,2,0,0,13,2,0,0,15,2,0,0,131,0,5,0,6,0,0,0,17,2,0,0,11,2,0,0,16,2,0,0,62,0,3,0,8,2,0,0,17,2,0,0,61,0,4,0,6,0,0,0,19,2,0,0,255,1,0,0,61,0,4,0,6,0,0,0,20,2,0,0,255,1,0,0,133,0,5,0,6,0,0,0,21,2,0,0,19,2,0,0,20,2,0,0,61,0,4,0,6,0,0,0,22,2,0,0,247,1,0,0,61,0,4,0,6,0,0,0,23,2,0,0,8,2,0,0,133,0,5,0,6,0,0,0,24,2,0,0,22,2,0,0,23,2,0,0,131,0,5,0,6,0,0,0,25,2,0,0,21,2,0,0,24,2,0,0,62,0,3,0,18,2,0,0,25,2,0,0,62,0,3,0,26,2,0,0,27,2,0,0,61,0,4,0,6,0,0,0,28,2,0,0,18,2,0,0,183,0,5,0,117,0,0,0,29,2,0,0,28,2,0,0,240,0,0,0,247,0,3,0,31,2,0,0,0,0,0,0,250,0,4,0,29,2,0,0,30,2,0,0,31,2,0,0,248,0,2,0,30,2,0,0,61,0,4,0,6,0,0,0,33,2,0,0,18,2,0,0,12,0,6,0,6,0,0,0,34,2,0,0,1,0,0,0,31,0,0,0,33,2,0,0,142,0,5,0,21,0,0,0,36,2,0,0,35,2,0,0,34,2,0,0,61,0,4,0,6,0,0,0,37,2,0,0,255,1,0,0,80,0,5,0,21,0,0,0,38,2,0,0,37,2,0,0,37,2,0,0,129,0,5,0,21,0,0,0,39,2,0,0,36,2,0,0,38,2,0,0,81,0,5,0,6,0,0,0,40,2,0,0,39,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,41,2,0,0,39,2,0,0,1,0,0,0,80,0,5,0,21,0,0,0,42,2,0,0,40,2,0,0,41,2,0,0,61,0,4,0,6,0,0,0,43,2,0,0,247,1,0,0,80,0,5,0,21,0,0,0,44,2,0,0,43,2,0,0,43,2,0,0,136,0,5,0,21,0,0,0,45,2,0,0,42,2,0,0,44,2,0,0,62,0,3,0,32,2,0,0,45,2,0,0,65,0,5,0,17,0,0,0,46,2,0,0,32,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,47,2,0,0,46,2,0,0,65,0,5,0,17,0,0,0,48,2,0,0,32,2,0,0,98,1,0,0,61,0,4,0,6,0,0,0,49,2,0,0,48,2,0,0,186,0,5,0,117,0,0,0,50,2,0,0,47,2,0,0,49,2,0,0,247,0,3,0,52,2,0,0,0,0,0,0,250,0,4,0,50,2,0,0,51,2,0,0,52,2,0,0,248,0,2,0,51,2,0,0,61,0,4,0,21,0,0,0,53,2,0,0,32,2,0,0,79,0,7,0,21,0,0,0,54,2,0,0,53,2,0,0,53,2,0,0,1,0,0,0,0,0,0,0,62,0,3,0,32,2,0,0,54,2,0,0,249,0,2,0,52,2,0,0,248,0,2,0,52,2,0,0,65,0,5,0,17,0,0,0,56,2,0,0,32,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,57,2,0,0,56,2,0,0,190,0,5,0,117,0,0,0,58,2,0,0,57,2,0,0,240,0,0,0,247,0,3,0,61,2,0,0,0,0,0,0,250,0,4,0,58,2,0,0,60,2,0,0,64,2,0,0,248,0,2,0,60,2,0,0,65,0,5,0,17,0,0,0,62,2,0,0,32,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,63,2,0,0,62,2,0,0,62,0,3,0,59,2,0,0,63,2,0,0,249,0,2,0,61,2,0,0,248,0,2,0,64,2,0,0,65,0,5,0,17,0,0,0,65,2,0,0,32,2,0,0,98,1,0,0,61,0,4,0,6,0,0,0,66,2,0,0,65,2,0,0,62,0,3,0,59,2,0,0,66,2,0,0,249,0,2,0,61,2,0,0,248,0,2,0,61,2,0,0,61,0,4,0,6,0,0,0,67,2,0,0,59,2,0,0,62,0,3,0,55,2,0,0,67,2,0,0,61,0,4,0,19,0,0,0,68,2,0,0,71,0,0,0,61,0,4,0,21,0,0,0,69,2,0,0,232,1,0,0,61,0,4,0,6,0,0,0,70,2,0,0,55,2,0,0,80,0,5,0,21,0,0,0,71,2,0,0,70,2,0,0,240,0,0,0,129,0,5,0,21,0,0,0,72,2,0,0,69,2,0,0,71,2,0,0,87,0,5,0,7,0,0,0,73,2,0,0,68,2,0,0,72,2,0,0,62,0,3,0,26,2,0,0,73,2,0,0,249,0,2,0,31,2,0,0,248,0,2,0,31,2,0,0,61,0,4,0,7,0,0,0,74,2,0,0,26,2,0,0,254,0,2,0,74,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,85,0,0,0,0,0,0,0,79,0,0,0,55,0,3,0,22,0,0,0,80,0,0,0,55,0,3,0,20,0,0,0,81,0,0,0,55,0,3,0,22,0,0,0,82,0,0,0,55,0,3,0,8,0,0,0,83,0,0,0,55,0,3,0,8,0,0,0,84,0,0,0,248,0,2,0,86,0,0,0,59,0,4,0,22,0,0,0,77,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,82,2,0,0,7,0,0,0,59,0,4,0,40,0,0,0,86,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,89,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,92,2,0,0,7,0,0,0,59,0,4,0,10,0,0,0,108,2,0,0,7,0,0,0,59,0,4,0,17,0,0,0,118,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,134,2,0,0,7,0,0,0,61,0,4,0,7,0,0,0,78,2,0,0,83,0,0,0,79,0,7,0,21,0,0,0,79,2,0,0,78,2,0,0,78,2,0,0,0,0,0,0,1,0,0,0,61,0,4,0,21,0,0,0,80,2,0,0,82,0,0,0,136,0,5,0,21,0,0,0,81,2,0,0,79,2,0,0,80,2,0,0,62,0,3,0,77,2,0,0,81,2,0,0,65,0,5,0,17,0,0,0,83,2,0,0,83,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,84,2,0,0,83,2,0,0,110,0,4,0,9,0,0,0,85,2,0,0,84,2,0,0,62,0,3,0,82,2,0,0,85,2,0,0,61,0,4,0,7,0,0,0,87,2,0,0,84,0,0,0,79,0,8,0,39,0,0,0,88,2,0,0,87,2,0,0,87,2,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,86,2,0,0,88,2,0,0,65,0,5,0,17,0,0,0,90,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,91,2,0,0,90,2,0,0,62,0,3,0,89,2,0,0,91,2,0,0,61,0,4,0,19,0,0,0,93,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,94,2,0,0,80,0,0,0,87,0,5,0,7,0,0,0,95,2,0,0,93,2,0,0,94,2,0,0,65,0,5,0,17,0,0,0,96,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,97,2,0,0,96,2,0,0,142,0,5,0,7,0,0,0,98,2,0,0,95,2,0,0,97,2,0,0,62,0,3,0,92,2,0,0,98,2,0,0,61,0,4,0,39,0,0,0,99,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,100,2,0,0,99,2,0,0,99,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,101,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,102,2,0,0,101,2,0,0,101,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,103,2,0,0,102,2,0,0,100,2,0,0,65,0,5,0,17,0,0,0,104,2,0,0,86,2,0,0,244,0,0,0,81,0,5,0,6,0,0,0,105,2,0,0,103,2,0,0,0,0,0,0,62,0,3,0,104,2,0,0,105,2,0,0,65,0,5,0,17,0,0,0,106,2,0,0,86,2,0,0,98,1,0,0,81,0,5,0,6,0,0,0,107,2,0,0,103,2,0,0,1,0,0,0,62,0,3,0,106,2,0,0,107,2,0,0,62,0,3,0,108,2,0,0,109,2,0,0,249,0,2,0,110,2,0,0,248,0,2,0,110,2,0,0,246,0,4,0,112,2,0,0,113,2,0,0,0,0,0,0,249,0,2,0,114,2,0,0,248,0,2,0,114,2,0,0,61,0,4,0,9,0,0,0,115,2,0,0,108,2,0,0,61,0,4,0,9,0,0,0,116,2,0,0,82,2,0,0,179,0,5,0,117,0,0,0,117,2,0,0,115,2,0,0,116,2,0,0,250,0,4,0,117,2,0,0,111,2,0,0,112,2,0,0,248,0,2,0,111,2,0,0,65,0,5,0,17,0,0,0,119,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,120,2,0,0,119,2,0,0,62,0,3,0,118,2,0,0,120,2,0,0,61,0,4,0,39,0,0,0,121,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,122,2,0,0,121,2,0,0,121,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,123,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,124,2,0,0,123,2,0,0,123,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,125,2,0,0,124,2,0,0,122,2,0,0,65,0,5,0,17,0,0,0,126,2,0,0,86,2,0,0,244,0,0,0,81,0,5,0,6,0,0,0,127,2,0,0,125,2,0,0,0,0,0,0,62,0,3,0,126,2,0,0,127,2,0,0,65,0,5,0,17,0,0,0,128,2,0,0,86,2,0,0,98,1,0,0,81,0,5,0,6,0,0,0,129,2,0,0,125,2,0,0,1,0,0,0,62,0,3,0,128,2,0,0,129,2,0,0,65,0,5,0,17,0,0,0,130,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,131,2,0,0,130,2,0,0,61,0,4,0,6,0,0,0,132,2,0,0,118,2,0,0,129,0,5,0,6,0,0,0,133,2,0,0,132,2,0,0,131,2,0,0,62,0,3,0,118,2,0,0,133,2,0,0,61,0,4,0,21,0,0,0,135,2,0,0,77,2,0,0,61,0,4,0,9,0,0,0,136,2,0,0,108,2,0,0,111,0,4,0,6,0,0,0,137,2,0,0,136,2,0,0,65,0,5,0,17,0,0,0,138,2,0,0,86,2,0,0,244,0,0,0,61,0,4,0,6,0,0,0,139,2,0,0,138,2,0,0,61,0,4,0,6,0,0,0,140,2,0,0,118,2,0,0,136,0,5,0,6,0,0,0,141,2,0,0,139,2,0,0,140,2,0,0,129,0,5,0,6,0,0,0,142,2,0,0,137,2,0,0,141,2,0,0,142,0,5,0,21,0,0,0,143,2,0,0,135,2,0,0,142,2,0,0,62,0,3,0,134,2,0,0,143,2,0,0,61,0,4,0,19,0,0,0,144,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,145,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,146,2,0,0,134,2,0,0,131,0,5,0,21,0,0,0,147,2,0,0,145,2,0,0,146,2,0,0,87,0,5,0,7,0,0,0,148,2,0,0,144,2,0,0,147,2,0,0,61,0,4,0,19,0,0,0,149,2,0,0,81,0,0,0,61,0,4,0,21,0,0,0,150,2,0,0,80,0,0,0,61,0,4,0,21,0,0,0,151,2,0,0,134,2,0,0,129,0,5,0,21,0,0,0,152,2,0,0,150,2,0,0,151,2,0,0,87,0,5,0,7,0,0,0,153,2,0,0,149,2,0,0,152,2,0,0,129,0,5,0,7,0,0,0,154,2,0,0,148,2,0,0,153,2,0,0,61,0,4,0,6,0,0,0,155,2,0,0,118,2,0,0,142,0,5,0,7,0,0,0,156,2,0,0,154,2,0,0,155,2,0,0,61,0,4,0,7,0,0,0,157,2,0,0,92,2,0,0,129,0,5,0,7,0,0,0,158,2,0,0,157,2,0,0,156,2,0,0,62,0,3,0,92,2,0,0,158,2,0,0,61,0,4,0,6,0,0,0,159,2,0,0,118,2,0,0,133,0,5,0,6,0,0,0,160,2,0,0,43,1,0,0,159,2,0,0,61,0,4,0,6,0,0,0,161,2,0,0,89,2,0,0,129,0,5,0,6,0,0,0,162,2,0,0,161,2,0,0,160,2,0,0,62,0,3,0,89,2,0,0,162,2,0,0,61,0,4,0,39,0,0,0,163,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,164,2,0,0,163,2,0,0,163,2,0,0,1,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,165,2,0,0,86,2,0,0,79,0,7,0,21,0,0,0,166,2,0,0,165,2,0,0,165,2,0,0,0,0,0,0,1,0,0,0,133,0,5,0,21,0,0,0,167,2,0,0,166,2,0,0,164,2,0,0,65,0,5,0,17,0,0,0,168,2,0,0,86,2,0,0,244,0,0,0,81,0,5,0,6,0,0,0,169,2,0,0,167,2,0,0,0,0,0,0,62,0,3,0,168,2,0,0,169,2,0,0,65,0,5,0,17,0,0,0,170,2,0,0,86,2,0,0,98,1,0,0,81,0,5,0,6,0,0,0,171,2,0,0,167,2,0,0,1,0,0,0,62,0,3,0,170,2,0,0,171,2,0,0,249,0,2,0,113,2,0,0,248,0,2,0,113,2,0,0,61,0,4,0,9,0,0,0,173,2,0,0,108,2,0,0,128,0,5,0,9,0,0,0,174,2,0,0,173,2,0,0,172,2,0,0,62,0,3,0,108,2,0,0,174,2,0,0,249,0,2,0,110,2,0,0,248,0,2,0,112,2,0,0,61,0,4,0,7,0,0,0,175,2,0,0,92,2,0,0,61,0,4,0,6,0,0,0,176,2,0,0,89,2,0,0,80,0,7,0,7,0,0,0,177,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,176,2,0,0,136,0,5,0,7,0,0,0,178,2,0,0,175,2,0,0,177,2,0,0,254,0,2,0,178,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,95,0,0,0,0,0,0,0,87,0,0,0,55,0,3,0,22,0,0,0,88,0,0,0,55,0,3,0,20,0,0,0,89,0,0,0,55,0,3,0,8,0,0,0,90,0,0,0,55,0,3,0,8,0,0,0,91,0,0,0,55,0,3,0,8,0,0,0,92,0,0,0,55,0,3,0,8,0,0,0,93,0,0,0,55,0,3,0,8,0,0,0,94,0,0,0,248,0,2,0,96,0,0,0,59,0,4,0,8,0,0,0,181,2,0,0,7,0,0,0,59,0,4,0,186,2,0,0,187,2,0,0,7,0,0,0,61,0,4,0,19,0,0,0,182,2,0,0,89,0,0,0,61,0,4,0,21,0,0,0,183,2,0,0,88,0,0,0,87,0,5,0,7,0,0,0,184,2,0,0,182,2,0,0,183,2,0,0,62,0,3,0,181,2,0,0,184,2,0,0,61,0,4,0,7,0,0,0,188,2,0,0,90,0,0,0,61,0,4,0,7,0,0,0,189,2,0,0,91,0,0,0,61,0,4,0,7,0,0,0,190,2,0,0,92,0,0,0,61,0,4,0,7,0,0,0,191,2,0,0,93,0,0,0,81,0,5,0,6,0,0,0,192,2,0,0,188,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,193,2,0,0,188,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,194,2,0,0,188,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,195,2,0,0,188,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,196,2,0,0,189,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,197,2,0,0,189,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,198,2,0,0,189,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,199,2,0,0,189,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,200,2,0,0,190,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,201,2,0,0,190,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,202,2,0,0,190,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,203,2,0,0,190,2,0,0,3,0,0,0,81,0,5,0,6,0,0,0,204,2,0,0,191,2,0,0,0,0,0,0,81,0,5,0,6,0,0,0,205,2,0,0,191,2,0,0,1,0,0,0,81,0,5,0,6,0,0,0,206,2,0,0,191,2,0,0,2,0,0,0,81,0,5,0,6,0,0,0,207,2,0,0,191,2,0,0,3,0,0,0,80,0,7,0,7,0,0,0,208,2,0,0,192,2,0,0,193,2,0,0,194,2,0,0,195,2,0,0,80,0,7,0,7,0,0,0,209,2,0,0,196,2,0,0,197,2,0,0,198,2,0,0,199,2,0,0,80,0,7,0,7,0,0,0,210,2,0,0,200,2,0,0,201,2,0,0,202,2,0,0,203,2,0,0,80,0,7,0,7,0,0,0,211,2,0,0,204,2,0,0,205,2,0,0,206,2,0,0,207,2,0,0,80,0,7,0,185,2,0,0,212,2,0,0,208,2,0,0,209,2,0,0,210,2,0,0,211,2,0,0,62,0,3,0,187,2,0,0,212,2,0,0,61,0,4,0,185,2,0,0,213,2,0,0,187,2,0,0,61,0,4,0,7,0,0,0,214,2,0,0,181,2,0,0,145,0,5,0,7,0,0,0,215,2,0,0,213,2,0,0,214,2,0,0,61,0,4,0,7,0,0,0,216,2,0,0,94,0,0,0,129,0,5,0,7,0,0,0,217,2,0,0,215,2,0,0,216,2,0,0,254,0,2,0,217,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,100,0,0,0,0,0,0,0,97,0,0,0,55,0,3,0,22,0,0,0,98,0,0,0,55,0,3,0,20,0,0,0,99,0,0,0,248,0,2,0,101,0,0,0,61,0,4,0,19,0,0,0,220,2,0,0,99,0,0,0,61,0,4,0,21,0,0,0,221,2,0,0,98,0,0,0,87,0,5,0,7,0,0,0,222,2,0,0,220,2,0,0,221,2,0,0,254,0,2,0,222,2,0,0,56,0,1,0,54,0,5,0,7,0,0,0,115,0,0,0,0,0,0,0,102,0,0,0,55,0,3,0,22,0,0,0,103,0,0,0,55,0,3,0,20,0,0,0,104,0,0,0,55,0,3,0,20,0,0,0,105,0,0,0,55,0,3,0,22,0,0,0,106,0,0,0,55,0,3,0,22,0,0,0,107,0,0,0,55,0,3,0,22,0,0,0,108,0,0,0,55,0,3,0,8,0,0,0,109,0,0,0,55,0,3,0,8,0,0,0,110,0,0,0,55,0,3,0,8,0,0,0,111,0,0,0,55,0,3,0,8,0,0,0,112,0,0,0,55,0,3,0,8,0,0,0,113,0,0,0,55,0,3,0,10,0,0,0,114,0,0,0,248,0,2,0,116,0,0,0,59,0,4,0,22,0,0,0,231,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,233,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,235,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,237,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,239,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,241,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,245,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,247,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,249,2,0,0,7,0,0,0,59,0,4,0,8,0,0,0,251,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,255,2,0,0,7,0,0,0,59,0,4,0,22,0,0,0,1,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,3,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,5,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,7,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,11,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,13,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,15,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,17,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,19,3,0,0,7,0,0,0,59,0,4,0,8,0,0,0,21,3,0,0,7,0,0,0,59,0,4,0,22,0,0,0,26,3,0,0,7,0,0,0,61,0,4,0,9,0,0,0,225,2,0,0,114,0,0,0,247,0,3,0,230,2,0,0,0,0,0,0,251,0,11,0,225,2,0,0,230,2,0,0,1,0,0,0,226,2,0,0,3,0,0,0,227,2,0,0,2,0,0,0,228,2,0,0,4,0,0,0,229,2,0,0,248,0,2,0,226,2,0,0,61,0,4,0,21,0,0,0,232,2,0,0,103,0,0,0,62,0,3,0,231,2,0,0,232,2,0,0,61,0,4,0,21,0,0,0,234,2,0,0,106,0,0,0,62,0,3,0,233,2,0,0,234,2,0,0,61,0,4,0,21,0,0,0,236,2,0,0,107,0,0,0,62,0,3,0,235,2,0,0,236,2,0,0,61,0,4,0,21,0,0,0,238,2,0,0,108,0,0,0,62,0,3,0,237,2,0,0,238,2,0,0,61,0,4,0,7,0,0,0,240,2,0,0,109,0,0,0,62,0,3,0,239,2,0,0,240,2,0,0,61,0,4,0,7,0,0,0,242,2,0,0,110,0,0,0,62,0,3,0,241,2,0,0,242,2,0,0,57,0,11,0,7,0,0,0,243,2,0,0,77,0,0,0,231,2,0,0,104,0,0,0,233,2,0,0,235,2,0,0,237,2,0,0,239,2,0,0,241,2,0,0,254,0,2,0,243,2,0,0,248,0,2,0,227,2,0,0,61,0,4,0,21,0,0,0,246,2,0,0,103,0,0,0,62,0,3,0,245,2,0,0,246,2,0,0,61,0,4,0,21,0,0,0,248,2,0,0,106,0,0,0,62,0,3,0,247,2,0,0,248,2,0,0,61,0,4,0,7,0,0,0,250,2,0,0,109,0,0,0,62,0,3,0,249,2,0,0,250,2,0,0,61,0,4,0,7,0,0,0,252,2,0,0,110,0,0,0,62,0,3,0,251,2,0,0,252,2,0,0,57,0,9,0,7,0,0,0,253,2,0,0,85,0,0,0,245,2,0,0,104,0,0,0,247,2,0,0,249,2,0,0,251,2,0,0,254,0,2,0,253,2,0,0,248,0,2,0,228,2,0,0,61,0,4,0,21,0,0,0,0,3,0,0,103,0,0,0,62,0,3,0,255,2,0,0,0,3,0,0,61,0,4,0,21,0,0,0,2,3,0,0,106,0,0,0,62,0,3,0,1,3,0,0,2,3,0,0,61,0,4,0,7,0,0,0,4,3,0,0,109,0,0,0,62,0,3,0,3,3,0,0,4,3,0,0,61,0,4,0,7,0,0,0,6,3,0,0,110,0,0,0,62,0,3,0,5,3,0,0,6,3,0,0,61,0,4,0,7,0,0,0,8,3,0,0,111,0,0,0,62,0,3,0,7,3,0,0,8,3,0,0,57,0,11,0,7,0,0,0,9,3,0,0,67,0,0,0,255,2,0,0,104,0,0,0,105,0,0,0,1,3,0,0,3,3,0,0,5,3,0,0,7,3,0,0,254,0,2,0,9,3,0,0,248,0,2,0,229,2,0,0,61,0,4,0,21,0,0,0,12,3,0,0,103,0,0,0,62,0,3,0,11,3,0,0,12,3,0,0,61,0,4,0,7,0,0,0,14,3,0,0,109,0,0,0,62,0,3,0,13,3,0,0,14,3,0,0,61,0,4,0,7,0,0,0,16,3,0,0,110,0,0,0,62,0,3,0,15,3,0,0,16,3,0,0,61,0,4,0,7,0,0,0,18,3,0,0,111,0,0,0,62,0,3,0,17,3,0,0,18,3,0,0,61,0,4,0,7,0,0,0,20,3,0,0,112,0,0,0,62,0,3,0,19,3,0,0,20,3,0,0,61,0,4,0,7,0,0,0,22,3,0,0,113,0,0,0,62,0,3,0,21,3,0,0,22,3,0,0,57,0,11,0,7,0,0,0,23,3,0,0,95,0,0,0,11,3,0,0,104,0,0,0,13,3,0,0,15,3,0,0,17,3,0,0,19,3,0,0,21,3,0,0,254,0,2,0,23,3,0,0,248,0,2,0,230,2,0,0,61,0,4,0,21,0,0,0,27,3,0,0,103,0,0,0,62,0,3,0,26,3,0,0,27,3,0,0,57,0,6,0,7,0,0,0,28,3,0,0,100,0,0,0,26,3,0,0,104,0,0,0,254,0,2,0,28,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,124,0,0,0,0,0,0,0,120,0,0,0,55,0,3,0,119,0,0,0,121,0,0,0,55,0,3,0,40,0,0,0,122,0,0,0,55,0,3,0,40,0,0,0,123,0,0,0,248,0,2,0,125,0,0,0,59,0,4,0,17,0,0,0,33,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,44,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,55,3,0,0,7,0,0,0,65,0,5,0,248,0,0,0,31,3,0,0,121,0,0,0,244,0,0,0,61,0,4,0,117,0,0,0,32,3,0,0,31,3,0,0,247,0,3,0,35,3,0,0,0,0,0,0,250,0,4,0,32,3,0,0,34,3,0,0,38,3,0,0,248,0,2,0,34,3,0,0,65,0,5,0,17,0,0,0,36,3,0,0,122,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,37,3,0,0,36,3,0,0,62,0,3,0,33,3,0,0,37,3,0,0,249,0,2,0,35,3,0,0,248,0,2,0,38,3,0,0,65,0,5,0,17,0,0,0,39,3,0,0,123,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,40,3,0,0,39,3,0,0,62,0,3,0,33,3,0,0,40,3,0,0,249,0,2,0,35,3,0,0,248,0,2,0,35,3,0,0,61,0,4,0,6,0,0,0,41,3,0,0,33,3,0,0,65,0,5,0,248,0,0,0,42,3,0,0,121,0,0,0,98,1,0,0,61,0,4,0,117,0,0,0,43,3,0,0,42,3,0,0,247,0,3,0,46,3,0,0,0,0,0,0,250,0,4,0,43,3,0,0,45,3,0,0,49,3,0,0,248,0,2,0,45,3,0,0,65,0,5,0,17,0,0,0,47,3,0,0,122,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,48,3,0,0,47,3,0,0,62,0,3,0,44,3,0,0,48,3,0,0,249,0,2,0,46,3,0,0,248,0,2,0,49,3,0,0,65,0,5,0,17,0,0,0,50,3,0,0,123,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,51,3,0,0,50,3,0,0,62,0,3,0,44,3,0,0,51,3,0,0,249,0,2,0,46,3,0,0,248,0,2,0,46,3,0,0,61,0,4,0,6,0,0,0,52,3,0,0,44,3,0,0,65,0,5,0,248,0,0,0,53,3,0,0,121,0,0,0,106,1,0,0,61,0,4,0,117,0,0,0,54,3,0,0,53,3,0,0,247,0,3,0,57,3,0,0,0,0,0,0,250,0,4,0,54,3,0,0,56,3,0,0,60,3,0,0,248,0,2,0,56,3,0,0,65,0,5,0,17,0,0,0,58,3,0,0,122,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,59,3,0,0,58,3,0,0,62,0,3,0,55,3,0,0,59,3,0,0,249,0,2,0,57,3,0,0,248,0,2,0,60,3,0,0,65,0,5,0,17,0,0,0,61,3,0,0,123,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,62,3,0,0,61,3,0,0,62,0,3,0,55,3,0,0,62,3,0,0,249,0,2,0,57,3,0,0,248,0,2,0,57,3,0,0,61,0,4,0,6,0,0,0,63,3,0,0,55,3,0,0,80,0,6,0,39,0,0,0,64,3,0,0,41,3,0,0,52,3,0,0,63,3,0,0,254,0,2,0,64,3,0,0,56,0,1,0,54,0,5,0,6,0,0,0,129,0,0,0,0,0,0,0,126,0,0,0,55,0,3,0,17,0,0,0,127,0,0,0,55,0,3,0,17,0,0,0,128,0,0,0,248,0,2,0,130,0,0,0,59,0,4,0,17,0,0,0,69,3,0,0,7,0,0,0,61,0,4,0,6,0,0,0,67,3,0,0,128,0,0,0,183,0,5,0,117,0,0,0,68,3,0,0,67,3,0,0,240,0,0,0,247,0,3,0,71,3,0,0,0,0,0,0,250,0,4,0,68,3,0,0,70,3,0,0,75,3,0,0,248,0,2,0,70,3,0,0,61,0,4,0,6,0,0,0,72,3,0,0,127,0,0,0,61,0,4,0,6,0,0,0,73,3,0,0,128,0,0,0,136,0,5,0,6,0,0,0,74,3,0,0,72,3,0,0,73,3,0,0,62,0,3,0,69,3,0,0,74,3,0,0,249,0,2,0,71,3,0,0,248,0,2,0,75,3,0,0,62,0,3,0,69,3,0,0,240,0,0,0,249,0,2,0,71,3,0,0,248,0,2,0,71,3,0,0,61,0,4,0,6,0,0,0,76,3,0,0,69,3,0,0,254,0,2,0,76,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,134,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,132,0,0,0,55,0,3,0,40,0,0,0,133,0,0,0,248,0,2,0,135,0,0,0,59,0,4,0,119,0,0,0,79,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,83,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,91,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,93,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,94,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,96,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,98,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,99,3,0,0,7,0,0,0,61,0,4,0,39,0,0,0,80,3,0,0,132,0,0,0,180,0,5,0,118,0,0,0,82,3,0,0,80,3,0,0,81,3,0,0,62,0,3,0,79,3,0,0,82,3,0,0,61,0,4,0,39,0,0,0,84,3,0,0,133,0,0,0,180,0,5,0,118,0,0,0,86,3,0,0,84,3,0,0,85,3,0,0,62,0,3,0,83,3,0,0,86,3,0,0,61,0,4,0,39,0,0,0,87,3,0,0,132,0,0,0,61,0,4,0,39,0,0,0,88,3,0,0,133,0,0,0,131,0,5,0,39,0,0,0,89,3,0,0,85,3,0,0,88,3,0,0,136,0,5,0,39,0,0,0,90,3,0,0,87,3,0,0,89,3,0,0,61,0,4,0,118,0,0,0,92,3,0,0,83,3,0,0,62,0,3,0,91,3,0,0,92,3,0,0,62,0,3,0,93,3,0,0,85,3,0,0,62,0,3,0,94,3,0,0,90,3,0,0,57,0,7,0,39,0,0,0,95,3,0,0,124,0,0,0,91,3,0,0,93,3,0,0,94,3,0,0,61,0,4,0,118,0,0,0,97,3,0,0,79,3,0,0,62,0,3,0,96,3,0,0,97,3,0,0,62,0,3,0,98,3,0,0,81,3,0,0,62,0,3,0,99,3,0,0,95,3,0,0,57,0,7,0,39,0,0,0,100,3,0,0,124,0,0,0,96,3,0,0,98,3,0,0,99,3,0,0,254,0,2,0,100,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,138,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,137,0,0,0,248,0,2,0,139,0,0,0,59,0,4,0,17,0,0,0,103,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,113,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,104,3,0,0,137,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,105,3,0,0,104,3,0,0,65,0,5,0,17,0,0,0,106,3,0,0,137,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,107,3,0,0,106,3,0,0,65,0,5,0,17,0,0,0,108,3,0,0,137,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,109,3,0,0,108,3,0,0,131,0,5,0,6,0,0,0,110,3,0,0,36,1,0,0,109,3,0,0,12,0,7,0,6,0,0,0,111,3,0,0,1,0,0,0,37,0,0,0,107,3,0,0,110,3,0,0,133,0,5,0,6,0,0,0,112,3,0,0,105,3,0,0,111,3,0,0,62,0,3,0,103,3,0,0,112,3,0,0,65,0,5,0,17,0,0,0,116,3,0,0,137,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,117,3,0,0,116,3,0,0,133,0,5,0,6,0,0,0,119,3,0,0,117,3,0,0,118,3,0,0,80,0,6,0,39,0,0,0,120,3,0,0,119,3,0,0,119,3,0,0,119,3,0,0,129,0,5,0,39,0,0,0,121,3,0,0,115,3,0,0,120,3,0,0,80,0,6,0,39,0,0,0,123,3,0,0,122,3,0,0,122,3,0,0,122,3,0,0,141,0,5,0,39,0,0,0,124,3,0,0,121,3,0,0,123,3,0,0,62,0,3,0,113,3,0,0,124,3,0,0,61,0,4,0,39,0,0,0,125,3,0,0,137,0,0,0,79,0,8,0,39,0,0,0,126,3,0,0,125,3,0,0,125,3,0,0,2,0,0,0,2,0,0,0,2,0,0,0,61,0,4,0,39,0,0,0,127,3,0,0,113,3,0,0,131,0,5,0,39,0,0,0,129,3,0,0,127,3,0,0,128,3,0,0,61,0,4,0,39,0,0,0,132,3,0,0,113,3,0,0,131,0,5,0,39,0,0,0,133,3,0,0,131,3,0,0,132,3,0,0,12,0,7,0,39,0,0,0,134,3,0,0,1,0,0,0,37,0,0,0,129,3,0,0,133,3,0,0,80,0,6,0,39,0,0,0,135,3,0,0,24,1,0,0,24,1,0,0,24,1,0,0,80,0,6,0,39,0,0,0,136,3,0,0,36,1,0,0,36,1,0,0,36,1,0,0,12,0,8,0,39,0,0,0,137,3,0,0,1,0,0,0,43,0,0,0,134,3,0,0,135,3,0,0,136,3,0,0,61,0,4,0,6,0,0,0,138,3,0,0,103,3,0,0,142,0,5,0,39,0,0,0,139,3,0,0,137,3,0,0,138,3,0,0,131,0,5,0,39,0,0,0,140,3,0,0,126,3,0,0,139,3,0,0,254,0,2,0,140,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,141,0,0,0,0,0,0,0,136,0,0,0,55,0,3,0,40,0,0,0,140,0,0,0,248,0,2,0,142,0,0,0,59,0,4,0,17,0,0,0,143,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,152,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,161,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,165,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,170,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,175,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,188,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,204,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,216,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,217,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,221,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,222,3,0,0,7,0,0,0,59,0,4,0,17,0,0,0,224,3,0,0,7,0,0,0,65,0,5,0,17,0,0,0,144,3,0,0,140,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,145,3,0,0,144,3,0,0,65,0,5,0,17,0,0,0,146,3,0,0,140,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,147,3,0,0,146,3,0,0,12,0,7,0,6,0,0,0,148,3,0,0,1,0,0,0,40,0,0,0,145,3,0,0,147,3,0,0,65,0,5,0,17,0,0,0,149,3,0,0,140,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,150,3,0,0,149,3,0,0,12,0,7,0,6,0,0,0,151,3,0,0,1,0,0,0,40,0,0,0,148,3,0,0,150,3,0,0,62,0,3,0,143,3,0,0,151,3,0,0,65,0,5,0,17,0,0,0,153,3,0,0,140,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,154,3,0,0,153,3,0,0,65,0,5,0,17,0,0,0,155,3,0,0,140,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,156,3,0,0,155,3,0,0,12,0,7,0,6,0,0,0,157,3,0,0,1,0,0,0,37,0,0,0,154,3,0,0,156,3,0,0,65,0,5,0,17,0,0,0,158,3,0,0,140,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,159,3,0,0,158,3,0,0,12,0,7,0,6,0,0,0,160,3,0,0,1,0,0,0,37,0,0,0,157,3,0,0,159,3,0,0,62,0,3,0,152,3,0,0,160,3,0,0,61,0,4,0,6,0,0,0,162,3,0,0,143,3,0,0,61,0,4,0,6,0,0,0,163,3,0,0,152,3,0,0,131,0,5,0,6,0,0,0,164,3,0,0,162,3,0,0,163,3,0,0,62,0,3,0,161,3,0,0,164,3,0,0,61,0,4,0,6,0,0,0,166,3,0,0,152,3,0,0,61,0,4,0,6,0,0,0,167,3,0,0,143,3,0,0,12,0,8,0,6,0,0,0,169,3,0,0,1,0,0,0,46,0,0,0,166,3,0,0,167,3,0,0,168,3,0,0,62,0,3,0,165,3,0,0,169,3,0,0,65,0,5,0,17,0,0,0,171,3,0,0,140,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,172,3,0,0,171,3,0,0,61,0,4,0,6,0,0,0,173,3,0,0,143,3,0,0,180,0,5,0,117,0,0,0,174,3,0,0,172,3,0,0,173,3,0,0,247,0,3,0,177,3,0,0,0,0,0,0,250,0,4,0,174,3,0,0,176,3,0,0,183,3,0,0,248,0,2,0,176,3,0,0,61,0,4,0,39,0,0,0,178,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,179,3,0,0,178,3,0,0,178,3,0,0,1,0,0,0,2,0,0,0,81,0,5,0,6,0,0,0,180,3,0,0,179,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,181,3,0,0,179,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,182,3,0,0,240,0,0,0,180,3,0,0,181,3,0,0,62,0,3,0,175,3,0,0,182,3,0,0,249,0,2,0,177,3,0,0,248,0,2,0,183,3,0,0,65,0,5,0,17,0,0,0,184,3,0,0,140,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,185,3,0,0,184,3,0,0,61,0,4,0,6,0,0,0,186,3,0,0,143,3,0,0,180,0,5,0,117,0,0,0,187,3,0,0,185,3,0,0,186,3,0,0,247,0,3,0,190,3,0,0,0,0,0,0,250,0,4,0,187,3,0,0,189,3,0,0,196,3,0,0,248,0,2,0,189,3,0,0,61,0,4,0,39,0,0,0,191,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,192,3,0,0,191,3,0,0,191,3,0,0,2,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,193,3,0,0,192,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,194,3,0,0,192,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,195,3,0,0,43,1,0,0,193,3,0,0,194,3,0,0,62,0,3,0,188,3,0,0,195,3,0,0,249,0,2,0,190,3,0,0,248,0,2,0,196,3,0,0,61,0,4,0,39,0,0,0,197,3,0,0,140,0,0,0,79,0,7,0,21,0,0,0,198,3,0,0,197,3,0,0,197,3,0,0,0,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,199,3,0,0,198,3,0,0,0,0,0,0,81,0,5,0,6,0,0,0,200,3,0,0,198,3,0,0,1,0,0,0,80,0,6,0,39,0,0,0,201,3,0,0,61,1,0,0,199,3,0,0,200,3,0,0,62,0,3,0,188,3,0,0,201,3,0,0,249,0,2,0,190,3,0,0,248,0,2,0,190,3,0,0,61,0,4,0,39,0,0,0,202,3,0,0,188,3,0,0,62,0,3,0,175,3,0,0,202,3,0,0,249,0,2,0,177,3,0,0,248,0,2,0,177,3,0,0,61,0,4,0,39,0,0,0,203,3,0,0,175,3,0,0,62,0,3,0,170,3,0,0,203,3,0,0,65,0,5,0,17,0,0,0,206,3,0,0,170,3,0,0,244,0,0,0,61,0,4,0,6,0,0,0,207,3,0,0,206,3,0,0,61,0,4,0,6,0,0,0,208,3,0,0,161,3,0,0,133,0,5,0,6,0,0,0,209,3,0,0,207,3,0,0,208,3,0,0,65,0,5,0,17,0,0,0,210,3,0,0,170,3,0,0,98,1,0,0,61,0,4,0,6,0,0,0,211,3,0,0,210,3,0,0,129,0,5,0,6,0,0,0,212,3,0,0,209,3,0,0,211,3,0,0,65,0,5,0,17,0,0,0,213,3,0,0,170,3,0,0,106,1,0,0,61,0,4,0,6,0,0,0,214,3,0,0,213,3,0,0,131,0,5,0,6,0,0,0,215,3,0,0,212,3,0,0,214,3,0,0,62,0,3,0,216,3,0,0,215,3,0,0,61,0,4,0,6,0,0,0,218,3,0,0,161,3,0,0,62,0,3,0,217,3,0,0,218,3,0,0,57,0,6,0,6,0,0,0,219,3,0,0,129,0,0,0,216,3,0,0,217,3,0,0,133,0,5,0,6,0,0,0,220,3,0,0,205,3,0,0,219,3,0,0,62,0,3,0,204,3,0,0,220,3,0,0,61,0,4,0,6,0,0,0,223,3,0,0,161,3,0,0,62,0,3,0,222,3,0,0,223,3,0,0,61,0,4,0,6,0,0,0,225,3,0,0,143,3,0,0,62,0,3,0,224,3,0,0,225,3,0,0,57,0,6,0,6,0,0,0,226,3,0,0,129,0,0,0,222,3,0,0,224,3,0,0,62,0,3,0,221,3,0,0,226,3,0,0,61,0,4,0,6,0,0,0,227,3,0,0,204,3,0,0,61,0,4,0,6,0,0,0,228,3,0,0,221,3,0,0,61,0,4,0,6,0,0,0,229,3,0,0,165,3,0,0,80,0,6,0,39,0,0,0,230,3,0,0,227,3,0,0,228,3,0,0,229,3,0,0,254,0,2,0,230,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,145,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,143,0,0,0,55,0,3,0,40,0,0,0,144,0,0,0,248,0,2,0,146,0,0,0,61,0,4,0,39,0,0,0,233,3,0,0,143,0,0,0,61,0,4,0,39,0,0,0,234,3,0,0,144,0,0,0,129,0,5,0,39,0,0,0,235,3,0,0,233,3,0,0,234,3,0,0,61,0,4,0,39,0,0,0,236,3,0,0,143,0,0,0,61,0,4,0,39,0,0,0,237,3,0,0,144,0,0,0,133,0,5,0,39,0,0,0,238,3,0,0,236,3,0,0,237,3,0,0,131,0,5,0,39,0,0,0,239,3,0,0,235,3,0,0,238,3,0,0,254,0,2,0,239,3,0,0,56,0,1,0,54,0,5,0,39,0,0,0,149,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,147,0,0,0,55,0,3,0,40,0,0,0,148,0,0,0,248,0,2,0,150,0,0,0,59,0,4,0,40,0,0,0,253,3,0,0,7,0,0,0,59,0,4,0,40,0,0,0,255,3,0,0,7,0,0,0,59,0,4,0,119,0,0,0,1,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,2,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,3,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,242,3,0,0,148,0,0,0,188,0,5,0,118,0,0,0,244,3,0,0,242,3,0,0,243,3,0,0,61,0,4,0,39,0,0,0,245,3,0,0,147,0,0,0,133,0,5,0,39,0,0,0,247,3,0,0,245,3,0,0,246,3,0,0,61,0,4,0,39,0,0,0,248,3,0,0,148,0,0,0,133,0,5,0,39,0,0,0,249,3,0,0,247,3,0,0,248,3,0,0,61,0,4,0,39,0,0,0,250,3,0,0,148,0,0,0,133,0,5,0,39,0,0,0,251,3,0,0,246,3,0,0,250,3,0,0,131,0,5,0,39,0,0,0,252,3,0,0,251,3,0,0,85,3,0,0,61,0,4,0,39,0,0,0,254,3,0,0,147,0,0,0,62,0,3,0,253,3,0,0,254,3,0,0,62,0,3,0,255,3,0,0,252,3,0,0,57,0,6,0,39,0,0,0,0,4,0,0,145,0,0,0,253,3,0,0,255,3,0,0,62,0,3,0,1,4,0,0,244,3,0,0,62,0,3,0,2,4,0,0,249,3,0,0,62,0,3,0,3,4,0,0,0,4,0,0,57,0,7,0,39,0,0,0,4,4,0,0,124,0,0,0,1,4,0,0,2,4,0,0,3,4,0,0,254,0,2,0,4,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,153,0,0,0,0,0,0,0,131,0,0,0,55,0,3,0,40,0,0,0,151,0,0,0,55,0,3,0,40,0,0,0,152,0,0,0,248,0,2,0,154,0,0,0,59,0,4,0,40,0,0,0,7,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,26,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,27,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,28,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,30,4,0,0,7,0,0,0,59,0,4,0,119,0,0,0,40,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,41,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,42,4,0,0,7,0,0,0,61,0,4,0,39,0,0,0,8,4,0,0,151,0,0,0,188,0,5,0,118,0,0,0,11,4,0,0,8,4,0,0,10,4,0,0,61,0,4,0,39,0,0,0,14,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,15,4,0,0,13,4,0,0,14,4,0,0,80,0,6,0,39,0,0,0,16,4,0,0,122,3,0,0,122,3,0,0,122,3,0,0,131,0,5,0,39,0,0,0,17,4,0,0,15,4,0,0,16,4,0,0,61,0,4,0,39,0,0,0,18,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,19,4,0,0,17,4,0,0,18,4,0,0,80,0,6,0,39,0,0,0,20,4,0,0,61,1,0,0,61,1,0,0,61,1,0,0,129,0,5,0,39,0,0,0,21,4,0,0,19,4,0,0,20,4,0,0,61,0,4,0,39,0,0,0,22,4,0,0,151,0,0,0,133,0,5,0,39,0,0,0,23,4,0,0,21,4,0,0,22,4,0,0,61,0,4,0,39,0,0,0,24,4,0,0,151,0,0,0,12,0,6,0,39,0,0,0,25,4,0,0,1,0,0,0,31,0,0,0,24,4,0,0,62,0,3,0,26,4,0,0,11,4,0,0,62,0,3,0,27,4,0,0,23,4,0,0,62,0,3,0,28,4,0,0,25,4,0,0,57,0,7,0,39,0,0,0,29,4,0,0,124,0,0,0,26,4,0,0,27,4,0,0,28,4,0,0,62,0,3,0,7,4,0,0,29,4,0,0,61,0,4,0,39,0,0,0,31,4,0,0,152,0,0,0,188,0,5,0,118,0,0,0,32,4,0,0,31,4,0,0,243,3,0,0,61,0,4,0,39,0,0,0,33,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,34,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,35,4,0,0,85,3,0,0,34,4,0,0,133,0,5,0,39,0,0,0,36,4,0,0,33,4,0,0,35,4,0,0,61,0,4,0,39,0,0,0,37,4,0,0,7,4,0,0,61,0,4,0,39,0,0,0,38,4,0,0,151,0,0,0,131,0,5,0,39,0,0,0,39,4,0,0,37,4,0,0,38,4,0,0,62,0,3,0,40,4,0,0,32,4,0,0,62,0,3,0,41,4,0,0,36,4,0,0,62,0,3,0,42,4,0,0,39,4,0,0,57,0,7,0,39,0,0,0,43,4,0,0,124,0,0,0,40,4,0,0,41,4,0,0,42,4,0,0,62,0,3,0,30,4,0,0,43,4,0,0,61,0,4,0,39,0,0,0,44,4,0,0,151,0,0,0,61,0,4,0,39,0,0,0,45,4,0,0,152,0,0,0,142,0,5,0,39,0,0,0,46,4,0,0,45,4,0,0,43,1,0,0,80,0,6,0,39,0,0,0,47,4,0,0,36,1,0,0,36,1,0,0,36,1,0,0,131,0,5,0,39,0,0,0,48,4,0,0,46,4,0,0,47,4,0,0,61,0,4,0,39,0,0,0,49,4,0,0,30,4,0,0,133,0,5,0,39,0,0,0,50,4,0,0,48,4,0,0,49,4,0,0,129,0,5,0,39,0,0,0,51,4,0,0,44,4,0,0,50,4,0,0,254,0,2,0,51,4,0,0,56,0,1,0,54,0,5,0,39,0,0,0,159,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,156,0,0,0,55,0,3,0,40,0,0,0,157,0,0,0,55,0,3,0,10,0,0,0,158,0,0,0,248,0,2,0,160,0,0,0,61,0,4,0,9,0,0,0,54,4,0,0,158,0,0,0,247,0,3,0,59,4,0,0,0,0,0,0,251,0,9,0,54,4,0,0,58,4,0,0,12,0,0,0,55,4,0,0,13,0,0,0,56,4,0,0,14,0,0,0,57,4,0,0,248,0,2,0,58,4,0,0,65,0,5,0,17,0,0,0,84,4,0,0,156,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,85,4,0,0,84,4,0,0,65,0,5,0,17,0,0,0,86,4,0,0,156,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,87,4,0,0,86,4,0,0,65,0,5,0,17,0,0,0,88,4,0,0,157,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,89,4,0,0,88,4,0,0,80,0,6,0,39,0,0,0,90,4,0,0,85,4,0,0,87,4,0,0,89,4,0,0,254,0,2,0,90,4,0,0,248,0,2,0,55,4,0,0,65,0,5,0,17,0,0,0,60,4,0,0,157,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,61,4,0,0,60,4,0,0,65,0,5,0,17,0,0,0,62,4,0,0,156,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,63,4,0,0,62,4,0,0,65,0,5,0,17,0,0,0,64,4,0,0,156,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,65,4,0,0,64,4,0,0,80,0,6,0,39,0,0,0,66,4,0,0,61,4,0,0,63,4,0,0,65,4,0,0,254,0,2,0,66,4,0,0,248,0,2,0,56,4,0,0,65,0,5,0,17,0,0,0,68,4,0,0,156,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,69,4,0,0,68,4,0,0,65,0,5,0,17,0,0,0,70,4,0,0,157,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,71,4,0,0,70,4,0,0,65,0,5,0,17,0,0,0,72,4,0,0,156,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,73,4,0,0,72,4,0,0,80,0,6,0,39,0,0,0,74,4,0,0,69,4,0,0,71,4,0,0,73,4,0,0,254,0,2,0,74,4,0,0,248,0,2,0,57,4,0,0,65,0,5,0,17,0,0,0,76,4,0,0,157,0,0,0,244,0,0,0,61,0,4,0,6,0,0,0,77,4,0,0,76,4,0,0,65,0,5,0,17,0,0,0,78,4,0,0,157,0,0,0,98,1,0,0,61,0,4,0,6,0,0,0,79,4,0,0,78,4,0,0,65,0,5,0,17,0,0,0,80,4,0,0,156,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,81,4,0,0,80,4,0,0,80,0,6,0,39,0,0,0,82,4,0,0,77,4,0,0,79,4,0,0,81,4,0,0,254,0,2,0,82,4,0,0,248,0,2,0,59,4,0,0,255,0,1,0,56,0,1,0,54,0,5,0,39,0,0,0,164,0,0,0,0,0,0,0,155,0,0,0,55,0,3,0,40,0,0,0,161,0,0,0,55,0,3,0,40,0,0,0,162,0,0,0,55,0,3,0,10,0,0,0,163,0,0,0,248,0,2,0,165,0,0,0,59,0,4,0,40,0,0,0,112,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,114,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,118,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,120,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,132,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,134,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,142,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,143,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,147,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,149,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,153,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,155,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,173,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,176,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,179,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,180,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,181,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,184,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,94,4,0,0,163,0,0,0,247,0,3,0,107,4,0,0,0,0,0,0,251,0,33,0,94,4,0,0,107,4,0,0,1,0,0,0,95,4,0,0,2,0,0,0,96,4,0,0,3,0,0,0,97,4,0,0,4,0,0,0,98,4,0,0,5,0,0,0,99,4,0,0,6,0,0,0,100,4,0,0,7,0,0,0,101,4,0,0,8,0,0,0,102,4,0,0,9,0,0,0,103,4,0,0,10,0,0,0,104,4,0,0,11,0,0,0,105,4,0,0,12,0,0,0,106,4,0,0,13,0,0,0,106,4,0,0,14,0,0,0,106,4,0,0,15,0,0,0,106,4,0,0,248,0,2,0,95,4,0,0,61,0,4,0,39,0,0,0,108,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,109,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,110,4,0,0,108,4,0,0,109,4,0,0,254,0,2,0,110,4,0,0,248,0,2,0,96,4,0,0,61,0,4,0,39,0,0,0,113,4,0,0,161,0,0,0,62,0,3,0,112,4,0,0,113,4,0,0,61,0,4,0,39,0,0,0,115,4,0,0,162,0,0,0,62,0,3,0,114,4,0,0,115,4,0,0,57,0,6,0,39,0,0,0,116,4,0,0,145,0,0,0,112,4,0,0,114,4,0,0,254,0,2,0,116,4,0,0,248,0,2,0,97,4,0,0,61,0,4,0,39,0,0,0,119,4,0,0,162,0,0,0,62,0,3,0,118,4,0,0,119,4,0,0,61,0,4,0,39,0,0,0,121,4,0,0,161,0,0,0,62,0,3,0,120,4,0,0,121,4,0,0,57,0,6,0,39,0,0,0,122,4,0,0,149,0,0,0,118,4,0,0,120,4,0,0,254,0,2,0,122,4,0,0,248,0,2,0,98,4,0,0,61,0,4,0,39,0,0,0,124,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,125,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,126,4,0,0,1,0,0,0,37,0,0,0,124,4,0,0,125,4,0,0,254,0,2,0,126,4,0,0,248,0,2,0,99,4,0,0,61,0,4,0,39,0,0,0,128,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,129,4,0,0,162,0,0,0,12,0,7,0,39,0,0,0,130,4,0,0,1,0,0,0,40,0,0,0,128,4,0,0,129,4,0,0,254,0,2,0,130,4,0,0,248,0,2,0,100,4,0,0,61,0,4,0,39,0,0,0,133,4,0,0,161,0,0,0,62,0,3,0,132,4,0,0,133,4,0,0,61,0,4,0,39,0,0,0,135,4,0,0,162,0,0,0,62,0,3,0,134,4,0,0,135,4,0,0,57,0,6,0,39,0,0,0,136,4,0,0,134,0,0,0,132,4,0,0,134,4,0,0,254,0,2,0,136,4,0,0,248,0,2,0,101,4,0,0,61,0,4,0,39,0,0,0,138,4,0,0,161,0,0,0,131,0,5,0,39,0,0,0,139,4,0,0,85,3,0,0,138,4,0,0,61,0,4,0,39,0,0,0,140,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,141,4,0,0,85,3,0,0,140,4,0,0,62,0,3,0,142,4,0,0,139,4,0,0,62,0,3,0,143,4,0,0,141,4,0,0,57,0,6,0,39,0,0,0,144,4,0,0,134,0,0,0,142,4,0,0,143,4,0,0,131,0,5,0,39,0,0,0,145,4,0,0,85,3,0,0,144,4,0,0,254,0,2,0,145,4,0,0,248,0,2,0,102,4,0,0,61,0,4,0,39,0,0,0,148,4,0,0,161,0,0,0,62,0,3,0,147,4,0,0,148,4,0,0,61,0,4,0,39,0,0,0,150,4,0,0,162,0,0,0,62,0,3,0,149,4,0,0,150,4,0,0,57,0,6,0,39,0,0,0,151,4,0,0,149,0,0,0,147,4,0,0,149,4,0,0,254,0,2,0,151,4,0,0,248,0,2,0,103,4,0,0,61,0,4,0,39,0,0,0,154,4,0,0,161,0,0,0,62,0,3,0,153,4,0,0,154,4,0,0,61,0,4,0,39,0,0,0,156,4,0,0,162,0,0,0,62,0,3,0,155,4,0,0,156,4,0,0,57,0,6,0,39,0,0,0,157,4,0,0,153,0,0,0,153,4,0,0,155,4,0,0,254,0,2,0,157,4,0,0,248,0,2,0,104,4,0,0,61,0,4,0,39,0,0,0,159,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,160,4,0,0,162,0,0,0,131,0,5,0,39,0,0,0,161,4,0,0,159,4,0,0,160,4,0,0,12,0,6,0,39,0,0,0,162,4,0,0,1,0,0,0,4,0,0,0,161,4,0,0,254,0,2,0,162,4,0,0,248,0,2,0,105,4,0,0,61,0,4,0,39,0,0,0,164,4,0,0,161,0,0,0,61,0,4,0,39,0,0,0,165,4,0,0,162,0,0,0,129,0,5,0,39,0,0,0,166,4,0,0,164,4,0,0,165,4,0,0,61,0,4,0,39,0,0,0,167,4,0,0,161,0,0,0,133,0,5,0,39,0,0,0,168,4,0,0,246,3,0,0,167,4,0,0,61,0,4,0,39,0,0,0,169,4,0,0,162,0,0,0,133,0,5,0,39,0,0,0,170,4,0,0,168,4,0,0,169,4,0,0,131,0,5,0,39,0,0,0,171,4,0,0,166,4,0,0,170,4,0,0,254,0,2,0,171,4,0,0,248,0,2,0,106,4,0,0,61,0,4,0,39,0,0,0,174,4,0,0,161,0,0,0,62,0,3,0,173,4,0,0,174,4,0,0,57,0,5,0,39,0,0,0,175,4,0,0,141,0,0,0,173,4,0,0,61,0,4,0,39,0,0,0,177,4,0,0,162,0,0,0,62,0,3,0,176,4,0,0,177,4,0,0,57,0,5,0,39,0,0,0,178,4,0,0,141,0,0,0,176,4,0,0,62,0,3,0,179,4,0,0,175,4,0,0,62,0,3,0,180,4,0,0,178,4,0,0,61,0,4,0,9,0,0,0,182,4,0,0,163,0,0,0,62,0,3,0,181,4,0,0,182,4,0,0,57,0,7,0,39,0,0,0,183,4,0,0,159,0,0,0,179,4,0,0,180,4,0,0,181,4,0,0,62,0,3,0,184,4,0,0,183,4,0,0,57,0,5,0,39,0,0,0,185,4,0,0,138,0,0,0,184,4,0,0,254,0,2,0,185,4,0,0,248,0,2,0,107,4,0,0,61,0,4,0,39,0,0,0,188,4,0,0,162,0,0,0,254,0,2,0,188,4,0,0,56,0,1,0,54,0,5,0,7,0,0,0,172,0,0,0,0,0,0,0,166,0,0,0,55,0,3,0,8,0,0,0,167,0,0,0,55,0,3,0,20,0,0,0,168,0,0,0,55,0,3,0,22,0,0,0,169,0,0,0,55,0,3,0,22,0,0,0,170,0,0,0,55,0,3,0,10,0,0,0,171,0,0,0,248,0,2,0,173,0,0,0,59,0,4,0,22,0,0,0,198,4,0,0,7,0,0,0,59,0,4,0,8,0,0,0,202,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,206,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,207,4,0,0,7,0,0,0,59,0,4,0,40,0,0,0,210,4,0,0,7,0,0,0,59,0,4,0,10,0,0,0,213,4,0,0,7,0,0,0,61,0,4,0,9,0,0,0,191,4,0,0,171,0,0,0,170,0,5,0,117,0,0,0,193,4,0,0,191,4,0,0,192,4,0,0,247,0,3,0,195,4,0,0,0,0,0,0,250,0,4,0,193,4,0,0,194,4,0,0,195,4,0,0,248,0,2,0,194,4,0,0,61,0,4,0,7,0,0,0,196,4,0,0,167,0,0,0,254,0,2,0,196,4,0,0,248,0,2,0,195,4,0,0,61,0,4,0,21,0,0,0,199,4,0,0,170,0,0,0,61,0,4,0,21,0,0,0,200,4,0,0,169,0,0,0,136,0,5,0,21,0,0,0,201,4,0,0,199,4,0,0,200,4,0,0,62,0,3,0,198,4,0,0,201,4,0,0,61,0,4,0,19,0,0,0,203,4,0,0,168,0,0,0,61,0,4,0,21,0,0,0,204,4,0,0,198,4,0,0,87,0,5,0,7,0,0,0,205,4,0,0,203,4,0,0,204,4,0,0,62,0,3,0,202,4,0,0,205,4,0,0,61,0,4,0,7,0,0,0,208,4,0,0,202,4,0,0,79,0,8,0,39,0,0,0,209,4,0,0,208,4,0,0,208,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,207,4,0,0,209,4,0,0,61,0,4,0,7,0,0,0,211,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,212,4,0,0,211,4,0,0,211,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,62,0,3,0,210,4,0,0,212,4,0,0,61,0,4,0,9,0,0,0,214,4,0,0,171,0,0,0,62,0,3,0,213,4,0,0,214,4,0,0,57,0,7,0,39,0,0,0,215,4,0,0,164,0,0,0,207,4,0,0,210,4,0,0,213,4,0,0,62,0,3,0,206,4,0,0,215,4,0,0,65,0,5,0,17,0,0,0,216,4,0,0,167,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,217,4,0,0,216,4,0,0,65,0,5,0,17,0,0,0,218,4,0,0,202,4,0,0,210,0,0,0,61,0,4,0,6,0,0,0,219,4,0,0,218,4,0,0,131,0,5,0,6,0,0,0,220,4,0,0,36,1,0,0,219,4,0,0,133,0,5,0,6,0,0,0,221,4,0,0,217,4,0,0,220,4,0,0,61,0,4,0,7,0,0,0,222,4,0,0,167,0,0,0,79,0,8,0,39,0,0,0,223,4,0,0,222,4,0,0,222,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,224,4,0,0,223,4,0,0,221,4,0,0,65,0,5,0,17,0,0,0,225,4,0,0,167,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,226,4,0,0,225,4,0,0,65,0,5,0,17,0,0,0,227,4,0,0,202,4,0,0,210,0,0,0,61,0,4,0,6,0,0,0,228,4,0,0,227,4,0,0,133,0,5,0,6,0,0,0,229,4,0,0,226,4,0,0,228,4,0,0,61,0,4,0,39,0,0,0,230,4,0,0,206,4,0,0,142,0,5,0,39,0,0,0,231,4,0,0,230,4,0,0,229,4,0,0,129,0,5,0,39,0,0,0,232,4,0,0,224,4,0,0,231,4,0,0,65,0,5,0,17,0,0,0,233,4,0,0,167,0,0,0,210,0,0,0,61,0,4,0,6,0,0,0,234,4,0,0,233,4,0,0,131,0,5,0,6,0,0,0,235,4,0,0,36,1,0,0,234,4,0,0,61,0,4,0,7,0,0,0,236,4,0,0,202,4,0,0,79,0,8,0,39,0,0,0,237,4,0,0,236,4,0,0,236,4,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,238,4,0,0,237,4,0,0,235,4,0,0,129,0,5,0,39,0,0,0,239,4,0,0,232,4,0,0,238,4,0,0,81,0,5,0,6,0,0,0,240,4,0,0,239,4,0,0,0,0,0,0,81,0,5,0,6,0,0,0,241,4,0,0,239,4,0,0,1,0,0,0,81,0,5,0,6,0,0,0,242,4,0,0,239,4,0,0,2,0,0,0,80,0,7,0,7,0,0,0,243,4,0,0,240,4,0,0,241,4,0,0,242,4,0,0,36,1,0,0,254,0,2,0,243,4,0,0,56,0,1,0,54,0,5,0,6,0,0,0,180,0,0,0,0,0,0,0,174,0,0,0,55,0,3,0,17,0,0,0,175,0,0,0,55,0,3,0,20,0,0,0,176,0,0,0,55,0,3,0,22,0,0,0,177,0,0,0,55,0,3,0,40,0,0,0,178,0,0,0,55,0,3,0,10,0,0,0,179,0,0,0,248,0,2,0,181,0,0,0,59,0,4,0,253,4,0,0,254,4,0,0,7,0,0,0,59,0,4,0,8,0,0,0,3,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,15,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,246,4,0,0,179,0,0,0,170,0,5,0,117,0,0,0,247,4,0,0,246,4,0,0,192,4,0,0,247,0,3,0,249,4,0,0,0,0,0,0,250,0,4,0,247,4,0,0,248,4,0,0,249,4,0,0,248,0,2,0,248,4,0,0,61,0,4,0,6,0,0,0,250,4,0,0,175,0,0,0,254,0,2,0,250,4,0,0,248,0,2,0,249,4,0,0,61,0,4,0,39,0,0,0,255,4,0,0,178,0,0,0,79,0,7,0,21,0,0,0,0,5,0,0,255,4,0,0,255,4,0,0,0,0,0,0,1,0,0,0,12,0,6,0,21,0,0,0,1,5,0,0,1,0,0,0,8,0,0,0,0,5,0,0,110,0,4,0,252,4,0,0,2,5,0,0,1,5,0,0,62,0,3,0,254,4,0,0,2,5,0,0,61,0,4,0,19,0,0,0,4,5,0,0,176,0,0,0,61,0,4,0,252,4,0,0,5,5,0,0,254,4,0,0,135,0,5,0,252,4,0,0,8,5,0,0,5,5,0,0,7,5,0,0,111,0,4,0,21,0,0,0,9,5,0,0,8,5,0,0,80,0,5,0,21,0,0,0,10,5,0,0,168,3,0,0,168,3,0,0,129,0,5,0,21,0,0,0,11,5,0,0,9,5,0,0,10,5,0,0,61,0,4,0,21,0,0,0,12,5,0,0,177,0,0,0,136,0,5,0,21,0,0,0,13,5,0,0,11,5,0,0,12,5,0,0,87,0,5,0,7,0,0,0,14,5,0,0,4,5,0,0,13,5,0,0,62,0,3,0,3,5,0,0,14,5,0,0,65,0,5,0,10,0,0,0,16,5,0,0,254,4,0,0,98,1,0,0,61,0,4,0,9,0,0,0,17,5,0,0,16,5,0,0,139,0,5,0,9,0,0,0,18,5,0,0,17,5,0,0,6,5,0,0,65,0,5,0,17,0,0,0,19,5,0,0,3,5,0,0,18,5,0,0,61,0,4,0,6,0,0,0,20,5,0,0,19,5,0,0,65,0,5,0,17,0,0,0,21,5,0,0,178,0,0,0,106,1,0,0,61,0,4,0,6,0,0,0,22,5,0,0,21,5,0,0,129,0,5,0,6,0,0,0,23,5,0,0,20,5,0,0,22,5,0,0,62,0,3,0,15,5,0,0,23,5,0,0,61,0,4,0,9,0,0,0,24,5,0,0,179,0,0,0,199,0,5,0,9,0,0,0,25,5,0,0,24,5,0,0,109,2,0,0,171,0,5,0,117,0,0,0,26,5,0,0,25,5,0,0,192,4,0,0,247,0,3,0,28,5,0,0,0,0,0,0,250,0,4,0,26,5,0,0,27,5,0,0,31,5,0,0,248,0,2,0,27,5,0,0,61,0,4,0,6,0,0,0,29,5,0,0,15,5,0,0,12,0,6,0,6,0,0,0,30,5,0,0,1,0,0,0,4,0,0,0,29,5,0,0,62,0,3,0,15,5,0,0,30,5,0,0,249,0,2,0,28,5,0,0,248,0,2,0,31,5,0,0,61,0,4,0,6,0,0,0,32,5,0,0,15,5,0,0,141,0,5,0,6,0,0,0,33,5,0,0,32,5,0,0,43,1,0,0,131,0,5,0,6,0,0,0,34,5,0,0,36,1,0,0,33,5,0,0,12,0,6,0,6,0,0,0,35,5,0,0,1,0,0,0,4,0,0,0,34,5,0,0,131,0,5,0,6,0,0,0,36,5,0,0,36,1,0,0,35,5,0,0,62,0,3,0,15,5,0,0,36,5,0,0,249,0,2,0,28,5,0,0,248,0,2,0,28,5,0,0,61,0,4,0,6,0,0,0,37,5,0,0,175,0,0,0,61,0,4,0,6,0,0,0,38,5,0,0,15,5,0,0,12,0,7,0,6,0,0,0,39,5,0,0,1,0,0,0,37,0,0,0,37,5,0,0,38,5,0,0,254,0,2,0,39,5,0,0,56,0,1,0,54,0,5,0,7,0,0,0,201,0,0,0,0,0,0,0,182,0,0,0,55,0,3,0,22,0,0,0,183,0,0,0,55,0,3,0,20,0,0,0,184,0,0,0,55,0,3,0,20,0,0,0,185,0,0,0,55,0,3,0,20,0,0,0,186,0,0,0,55,0,3,0,20,0,0,0,187,0,0,0,55,0,3,0,22,0,0,0,188,0,0,0,55,0,3,0,22,0,0,0,189,0,0,0,55,0,3,0,8,0,0,0,190,0,0,0,55,0,3,0,8,0,0,0,191,0,0,0,55,0,3,0,8,0,0,0,192,0,0,0,55,0,3,0,8,0,0,0,193,0,0,0,55,0,3,0,8,0,0,0,194,0,0,0,55,0,3,0,22,0,0,0,195,0,0,0,55,0,3,0,10,0,0,0,196,0,0,0,55,0,3,0,40,0,0,0,197,0,0,0,55,0,3,0,22,0,0,0,198,0,0,0,55,0,3,0,8,0,0,0,199,0,0,0,55,0,3,0,10,0,0,0,200,0,0,0,248,0,2,0,202,0,0,0,59,0,4,0,10,0,0,0,42,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,47,5,0,0,7,0,0,0,59,0,4,0,17,0,0,0,48,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,50,5,0,0,7,0,0,0,59,0,4,0,40,0,0,0,52,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,54,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,57,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,59,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,68,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,73,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,74,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,76,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,78,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,80,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,82,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,84,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,86,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,88,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,90,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,92,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,95,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,97,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,99,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,107,5,0,0,7,0,0,0,59,0,4,0,8,0,0,0,112,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,114,5,0,0,7,0,0,0,59,0,4,0,22,0,0,0,116,5,0,0,7,0,0,0,59,0,4,0,10,0,0,0,118,5,0,0,7,0,0,0,61,0,4,0,9,0,0,0,43,5,0,0,200,0,0,0,195,0,5,0,9,0,0,0,44,5,0,0,43,5,0,0,192,4,0,0,199,0,5,0,9,0,0,0,46,5,0,0,44,5,0,0,45,5,0,0,62,0,3,0,42,5,0,0,46,5,0,0,62,0,3,0,47,5,0,0,36,1,0,0,61,0,4,0,6,0,0,0,49,5,0,0,47,5,0,0,62,0,3,0,48,5,0,0,49,5,0,0,61,0,4,0,21,0,0,0,51,5,0,0,189,0,0,0,62,0,3,0,50,5,0,0,51,5,0,0,61,0,4,0,39,0,0,0,53,5,0,0,197,0,0,0,62,0,3,0,52,5,0,0,53,5,0,0,61,0,4,0,9,0,0,0,55,5,0,0,42,5,0,0,62,0,3,0,54,5,0,0,55,5,0,0,57,0,9,0,6,0,0,0,56,5,0,0,180,0,0,0,48,5,0,0,185,0,0,0,50,5,0,0,52,5,0,0,54,5,0,0,62,0,3,0,47,5,0,0,56,5,0,0,61,0,4,0,7,0,0,0,58,5,0,0,199,0,0,0,62,0,3,0,57,5,0,0,58,5,0,0,61,0,4,0,9,0,0,0,60,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,62,5,0,0,60,5,0,0,61,5,0,0,199,0,5,0,9,0,0,0,63,5,0,0,62,5,0,0,45,5,0,0,62,0,3,0,59,5,0,0,63,5,0,0,61,0,4,0,9,0,0,0,64,5,0,0,59,5,0,0,171,0,5,0,117,0,0,0,65,5,0,0,64,5,0,0,192,4,0,0,247,0,3,0,67,5,0,0,0,0,0,0,250,0,4,0,65,5,0,0,66,5,0,0,67,5,0,0,248,0,2,0,66,5,0,0,61,0,4,0,9,0,0,0,69,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,70,5,0,0,69,5,0,0,6,5,0,0,199,0,5,0,9,0,0,0,72,5,0,0,70,5,0,0,71,5,0,0,62,0,3,0,68,5,0,0,72,5,0,0,61,0,4,0,21,0,0,0,75,5,0,0,198,0,0,0,62,0,3,0,74,5,0,0,75,5,0,0,61,0,4,0,21,0,0,0,77,5,0,0,188,0,0,0,62,0,3,0,76,5,0,0,77,5,0,0,61,0,4,0,21,0,0,0,79,5,0,0,183,0,0,0,62,0,3,0,78,5,0,0,79,5,0,0,61,0,4,0,21,0,0,0,81,5,0,0,195,0,0,0,62,0,3,0,80,5,0,0,81,5,0,0,61,0,4,0,7,0,0,0,83,5,0,0,190,0,0,0,62,0,3,0,82,5,0,0,83,5,0,0,61,0,4,0,7,0,0,0,85,5,0,0,191,0,0,0,62,0,3,0,84,5,0,0,85,5,0,0,61,0,4,0,7,0,0,0,87,5,0,0,192,0,0,0,62,0,3,0,86,5,0,0,87,5,0,0,61,0,4,0,7,0,0,0,89,5,0,0,193,0,0,0,62,0,3,0,88,5,0,0,89,5,0,0,61,0,4,0,7,0,0,0,91,5,0,0,194,0,0,0,62,0,3,0,90,5,0,0,91,5,0,0,61,0,4,0,9,0,0,0,93,5,0,0,68,5,0,0,62,0,3,0,92,5,0,0,93,5,0,0,57,0,16,0,7,0,0,0,94,5,0,0,115,0,0,0,74,5,0,0,184,0,0,0,187,0,0,0,76,5,0,0,78,5,0,0,80,5,0,0,82,5,0,0,84,5,0,0,86,5,0,0,88,5,0,0,90,5,0,0,92,5,0,0,62,0,3,0,73,5,0,0,94,5,0,0,61,0,4,0,7,0,0,0,96,5,0,0,57,5,0,0,62,0,3,0,95,5,0,0,96,5,0,0,61,0,4,0,7,0,0,0,98,5,0,0,73,5,0,0,62,0,3,0,97,5,0,0,98,5,0,0,61,0,4,0,9,0,0,0,100,5,0,0,59,5,0,0,62,0,3,0,99,5,0,0,100,5,0,0,57,0,7,0,7,0,0,0,101,5,0,0,15,0,0,0,95,5,0,0,97,5,0,0,99,5,0,0,62,0,3,0,57,5,0,0,101,5,0,0,249,0,2,0,67,5,0,0,248,0,2,0,67,5,0,0,61,0,4,0,6,0,0,0,102,5,0,0,47,5,0,0,65,0,5,0,17,0,0,0,103,5,0,0,57,5,0,0,210,0,0,0,61,0,4,0,6,0,0,0,104,5,0,0,103,5,0,0,133,0,5,0,6,0,0,0,105,5,0,0,104,5,0,0,102,5,0,0,65,0,5,0,17,0,0,0,106,5,0,0,57,5,0,0,210,0,0,0,62,0,3,0,106,5,0,0,105,5,0,0,61,0,4,0,9,0,0,0,108,5,0,0,196,0,0,0,195,0,5,0,9,0,0,0,110,5,0,0,108,5,0,0,109,5,0,0,199,0,5,0,9,0,0,0,111,5,0,0,110,5,0,0,71,5,0,0,62,0,3,0,107,5,0,0,111,5,0,0,61,0,4,0,7,0,0,0,113,5,0,0,57,5,0,0,62,0,3,0,112,5,0,0,113,5,0,0,61,0,4,0,21,0,0,0,115,5,0,0,195,0,0,0,62,0,3,0,114,5,0,0,115,5,0,0,61,0,4,0,21,0,0,0,117,5,0,0,183,0,0,0,62,0,3,0,116,5,0,0,117,5,0,0,61,0,4,0,9,0,0,0,119,5,0,0,107,5,0,0,62,0,3,0,118,5,0,0,119,5,0,0,57,0,9,0,7,0,0,0,120,5,0,0,172,0,0,0,112,5,0,0,186,0,0,0,114,5,0,0,116,5,0,0,118,5,0,0,62,0,3,0,57,5,0,0,120,5,0,0,65,0,5,0,17,0,0,0,121,5,0,0,57,5,0,0,210,0,0,0,61,0,4,0,6,0,0,0,122,5,0,0,121,5,0,0,61,0,4,0,7,0,0,0,123,5,0,0,57,5,0,0,79,0,8,0,39,0,0,0,124,5,0,0,123,5,0,0,123,5,0,0,0,0,0,0,1,0,0,0,2,0,0,0,142,0,5,0,39,0,0,0,125,5,0,0,124,5,0,0,122,5,0,0,65,0,5,0,17,0,0,0,126,5,0,0,57,5,0,0,244,0,0,0,81,0,5,0,6,0,0,0,127,5,0,0,125,5,0,0,0,0,0,0,62,0,3,0,126,5,0,0,127,5,0,0,65,0,5,0,17,0,0,0,128,5,0,0,57,5,0,0,98,1,0,0,81,0,5,0,6,0,0,0,129,5,0,0,125,5,0,0,1,0,0,0,62,0,3,0,128,5,0,0,129,5,0,0,65,0,5,0,17,0,0,0,130,5,0,0,57,5,0,0,106,1,0,0,81,0,5,0,6,0,0,0,131,5,0,0,125,5,0,0,2,0,0,0,62,0,3,0,130,5,0,0,131,5,0,0,61,0,4,0,7,0,0,0,132,5,0,0,57,5,0,0,254,0,2,0,132,5,0,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_TILE_FRAG_SPV_H diff --git a/src/shaders/generated/tile_vert.h b/src/shaders/generated/tile_vert.h index 9a24858c..3ed662aa 100644 --- a/src/shaders/generated/tile_vert.h +++ b/src/shaders/generated/tile_vert.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_VERT_H namespace Pathfinder { - static uint8_t tile_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,59,32,47,47,32,82,71,66,65,49,54,70,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,49,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,90,66,117,102,102,101,114,59,13,10,35,101,108,115,101,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,59,32,47,47,32,82,71,66,65,49,54,70,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,90,66,117,102,102,101,114,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,98,84,114,97,110,115,102,111,114,109,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,84,114,97,110,115,102,111,114,109,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,109,97,116,52,32,117,84,114,97,110,115,102,111,114,109,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,51,41,32,117,110,105,102,111,114,109,32,98,86,97,114,121,105,110,103,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,86,97,114,121,105,110,103,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,90,66,117,102,102,101,114,83,105,122,101,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,32,32,32,32,118,101,99,50,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,87,105,108,108,32,118,97,114,121,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,48,59,13,10,125,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,52,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,67,111,110,115,116,97,110,116,83,105,122,101,115,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,52,48,57,54,44,32,49,48,50,52,41,46,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,50,56,48,44,32,53,49,50,41,46,13,10,32,32,32,32,118,101,99,50,32,112,97,100,49,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,32,47,47,32,84,105,108,101,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,105,118,101,99,50,32,97,84,105,108,101,79,114,105,103,105,110,59,32,47,47,32,84,105,108,101,32,105,110,100,101,120,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,105,110,32,117,118,101,99,52,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,105,110,32,105,118,101,99,50,32,97,67,116,114,108,66,97,99,107,100,114,111,112,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,105,110,32,105,110,116,32,97,80,97,116,104,73,110,100,101,120,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,53,41,32,105,110,32,117,105,110,116,32,97,77,101,116,97,100,97,116,97,73,110,100,101,120,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,111,117,116,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,111,117,116,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,111,117,116,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,53,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,54,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,55,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,56,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,57,41,32,111,117,116,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,35,101,108,115,101,13,10,111,117,116,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,111,117,116,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,111,117,116,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,111,117,116,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,111,117,116,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,35,101,110,100,105,102,13,10,13,10,47,47,47,32,70,101,116,99,104,32,100,97,116,97,32,102,114,111,109,32,116,104,101,32,109,101,116,97,100,97,116,97,32,116,101,120,116,117,114,101,46,13,10,118,101,99,52,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,97,109,112,108,101,114,50,68,32,115,114,99,84,101,120,116,117,114,101,44,32,118,101,99,50,32,115,99,97,108,101,44,32,118,101,99,50,32,111,114,105,103,105,110,67,111,111,114,100,44,32,105,110,116,32,101,110,116,114,121,41,32,123,13,10,32,32,32,32,47,47,32,73,110,116,101,103,101,114,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,32,110,101,101,100,115,32,116,111,32,98,101,32,115,99,97,108,101,100,44,32,98,101,99,97,117,115,101,32,116,101,120,116,117,114,101,40,41,32,111,110,108,121,32,97,99,99,101,112,116,115,32,102,108,111,97,116,32,85,86,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,115,114,99,84,101,120,116,117,114,101,44,32,40,111,114,105,103,105,110,67,111,111,114,100,32,43,32,118,101,99,50,40,48,46,53,41,32,43,32,118,101,99,50,40,101,110,116,114,121,44,32,48,41,41,32,42,32,115,99,97,108,101,41,59,13,10,125,13,10,13,10,47,47,47,32,70,101,116,99,104,32,114,101,110,100,101,114,105,110,103,32,105,110,102,111,32,102,114,111,109,32,116,104,101,32,109,101,116,97,100,97,116,97,32,116,101,120,116,117,114,101,46,13,10,118,111,105,100,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,118,101,99,50,32,112,111,115,105,116,105,111,110,44,32,117,105,110,116,32,109,101,116,97,100,97,116,97,73,110,100,101,120,44,32,115,97,109,112,108,101,114,50,68,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,32,32,32,32,118,101,99,50,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,32,111,117,116,32,118,101,99,50,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,32,111,117,116,32,118,101,99,52,32,111,117,116,66,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,44,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,44,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,44,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,44,32,111,117,116,32,105,110,116,32,111,117,116,67,116,114,108,41,32,123,13,10,32,32,32,32,47,47,32,80,114,101,112,97,114,101,32,85,86,32,102,111,114,32,116,104,101,32,109,101,116,97,100,97,116,97,32,116,101,120,116,117,114,101,46,32,77,101,116,97,100,97,116,97,32,98,108,111,99,107,32,115,105,122,101,32,105,115,32,40,49,48,44,32,49,41,46,13,10,32,32,32,32,47,47,32,109,101,116,97,100,97,116,97,73,110,100,101,120,32,105,115,32,116,104,101,32,98,108,111,99,107,32,105,110,100,101,120,46,32,66,108,111,99,107,32,109,97,112,32,115,105,122,101,32,105,115,32,40,49,50,56,44,32,53,49,50,41,46,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,83,99,97,108,101,32,61,32,118,101,99,50,40,49,46,48,41,32,47,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,13,10,13,10,32,32,32,32,47,47,32,80,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,32,61,32,118,101,99,50,40,109,101,116,97,100,97,116,97,73,110,100,101,120,32,37,32,49,50,56,117,32,42,32,49,48,117,44,32,109,101,116,97,100,97,116,97,73,110,100,101,120,32,47,32,49,50,56,117,41,59,13,10,13,10,32,32,32,32,47,47,32,70,101,116,99,104,32,100,97,116,97,32,118,105,97,32,116,101,120,116,117,114,101,40,41,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,48,41,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,49,41,59,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,50,41,59,32,47,47,32,83,111,108,105,100,32,99,111,108,111,114,46,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,51,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,52,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,53,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,54,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,55,41,59,13,10,32,32,32,32,118,101,99,52,32,101,120,116,114,97,32,32,32,32,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,56,41,59,32,47,47,32,66,108,101,110,100,32,97,110,100,32,99,111,109,112,111,115,105,116,101,32,111,112,116,105,111,110,115,46,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,99,111,108,111,114,32,116,101,120,116,117,114,101,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,47,47,32,84,79,68,79,40,102,108,111,112,112,121,104,97,109,109,101,114,41,58,32,73,32,100,111,110,39,116,32,117,110,100,101,114,115,116,97,110,100,32,116,104,105,115,32,115,116,101,112,46,13,10,32,32,32,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,32,61,32,109,97,116,50,40,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,41,32,42,32,112,111,115,105,116,105,111,110,32,43,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,46,120,121,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,98,97,115,101,32,99,111,108,111,114,46,13,10,32,32,32,32,111,117,116,66,97,115,101,67,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,102,105,108,116,101,114,32,112,97,114,97,109,101,116,101,114,115,46,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,98,108,101,110,100,32,97,110,100,32,99,111,109,112,111,115,105,116,101,32,111,112,116,105,111,110,115,46,13,10,32,32,32,32,111,117,116,67,116,114,108,32,61,32,105,110,116,40,101,120,116,114,97,46,120,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,116,105,108,101,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,79,114,105,103,105,110,32,61,32,118,101,99,50,40,97,84,105,108,101,79,114,105,103,105,110,41,59,13,10,13,10,32,32,32,32,47,47,32,76,111,99,97,108,32,118,101,114,116,101,120,32,111,102,102,115,101,116,44,32,105,46,101,46,32,40,48,44,48,41,44,32,40,48,44,49,41,44,32,40,49,44,49,41,44,32,40,49,44,48,41,46,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,79,102,102,115,101,116,32,61,32,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,59,13,10,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,118,101,114,116,101,120,32,112,111,115,105,116,105,111,110,46,13,10,32,32,32,32,118,101,99,50,32,112,111,115,105,116,105,111,110,32,61,32,40,116,105,108,101,79,114,105,103,105,110,32,43,32,116,105,108,101,79,102,102,115,101,116,41,32,42,32,117,84,105,108,101,83,105,122,101,59,13,10,13,10,32,32,32,32,47,47,32,84,105,108,101,32,99,117,108,108,105,110,103,46,13,10,32,32,32,32,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,85,86,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,32,90,32,118,97,108,117,101,46,13,10,32,32,32,32,118,101,99,50,32,122,85,86,32,61,32,40,40,116,105,108,101,79,114,105,103,105,110,32,43,32,118,101,99,50,40,48,46,53,41,41,32,47,32,117,90,66,117,102,102,101,114,83,105,122,101,41,32,42,32,50,53,53,46,48,59,13,10,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,90,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,90,32,98,117,102,102,101,114,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,105,118,101,99,52,32,122,86,97,108,117,101,32,61,32,105,118,101,99,52,40,116,101,120,116,117,114,101,40,117,90,66,117,102,102,101,114,44,32,122,85,86,41,41,59,13,10,13,10,32,32,32,32,47,47,32,78,111,116,101,32,116,104,97,116,32,90,32,118,97,108,117,101,32,105,115,32,112,97,99,107,101,100,32,105,110,116,111,32,97,32,82,66,71,65,56,32,112,105,120,101,108,46,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,32,105,116,46,32,67,111,109,112,97,114,101,32,105,116,32,119,105,116,104,32,116,104,101,32,99,117,114,114,101,110,116,32,112,97,116,104,32,105,110,100,101,120,32,116,111,32,115,101,101,13,10,32,32,32,32,47,47,32,105,102,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,108,101,32,105,115,32,117,110,100,101,114,32,97,110,111,116,104,101,114,32,111,112,97,113,117,101,32,116,105,108,101,46,13,10,32,32,32,32,105,102,32,40,97,80,97,116,104,73,110,100,101,120,32,60,32,40,122,86,97,108,117,101,46,120,32,124,32,40,122,86,97,108,117,101,46,121,32,60,60,32,56,41,32,124,32,40,122,86,97,108,117,101,46,122,32,60,60,32,49,54,41,32,124,32,40,122,86,97,108,117,101,46,119,32,60,60,32,50,52,41,41,41,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,84,105,108,101,32,99,117,108,108,101,100,46,13,10,32,32,32,32,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,32,32,32,32,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,109,97,115,107,32,116,105,108,101,46,13,10,32,32,32,32,117,118,101,99,50,32,109,97,115,107,84,105,108,101,67,111,111,114,100,32,61,32,117,118,101,99,50,40,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,120,44,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,121,32,43,32,50,53,54,117,32,42,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,122,41,59,13,10,32,32,32,32,118,101,99,50,32,109,97,115,107,84,101,120,67,111,111,114,100,48,32,61,32,40,118,101,99,50,40,109,97,115,107,84,105,108,101,67,111,111,114,100,41,32,43,32,116,105,108,101,79,102,102,115,101,116,41,32,42,32,117,84,105,108,101,83,105,122,101,59,13,10,13,10,32,32,32,32,47,47,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,119,32,33,61,32,48,117,32,109,101,97,110,115,32,97,108,112,104,97,95,116,105,108,101,95,105,100,32,105,115,32,116,111,111,32,108,97,114,103,101,32,40,105,110,118,97,108,105,100,32,105,110,32,116,104,97,116,32,99,97,115,101,41,46,13,10,32,32,32,32,105,102,32,40,97,67,116,114,108,66,97,99,107,100,114,111,112,46,121,32,61,61,32,48,32,38,38,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,119,32,33,61,32,48,117,41,32,123,13,10,32,32,32,32,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,66,108,101,110,100,32,97,110,100,32,99,111,109,112,111,115,105,116,101,32,111,112,116,105,111,110,115,46,13,10,32,32,32,32,105,110,116,32,99,116,114,108,59,13,10,32,32,32,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,44,13,10,32,32,32,32,32,32,32,32,97,77,101,116,97,100,97,116,97,73,110,100,101,120,44,13,10,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,118,66,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,99,116,114,108,13,10,32,32,32,32,41,59,13,10,13,10,32,32,32,32,118,84,105,108,101,67,116,114,108,32,61,32,102,108,111,97,116,40,97,67,116,114,108,66,97,99,107,100,114,111,112,46,120,41,59,13,10,32,32,32,32,118,67,116,114,108,32,61,32,102,108,111,97,116,40,99,116,114,108,41,59,13,10,32,32,32,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,32,61,32,118,101,99,51,40,109,97,115,107,84,101,120,67,111,111,114,100,48,44,32,102,108,111,97,116,40,97,67,116,114,108,66,97,99,107,100,114,111,112,46,121,41,41,59,13,10,13,10,32,32,32,32,47,47,32,117,84,114,97,110,115,102,111,114,109,32,99,111,110,118,101,114,116,115,32,85,86,32,99,111,111,100,105,110,97,116,101,115,32,116,111,32,115,99,114,101,101,110,32,99,111,111,100,105,110,97,116,101,115,46,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,117,84,114,97,110,115,102,111,114,109,32,42,32,118,101,99,52,40,112,111,115,105,116,105,111,110,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10}; + static uint8_t tile_vert[] = {35,118,101,114,115,105,111,110,32,51,49,48,32,101,115,13,10,13,10,47,47,32,112,97,116,104,102,105,110,100,101,114,47,115,104,97,100,101,114,115,47,116,105,108,101,46,118,115,46,103,108,115,108,13,10,47,47,13,10,47,47,32,67,111,112,121,114,105,103,104,116,32,194,169,32,50,48,50,48,32,84,104,101,32,80,97,116,104,102,105,110,100,101,114,32,80,114,111,106,101,99,116,32,68,101,118,101,108,111,112,101,114,115,46,13,10,47,47,13,10,47,47,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,116,104,101,32,65,112,97,99,104,101,32,76,105,99,101,110,115,101,44,32,86,101,114,115,105,111,110,32,50,46,48,32,60,76,73,67,69,78,83,69,45,65,80,65,67,72,69,32,111,114,13,10,47,47,32,104,116,116,112,58,47,47,119,119,119,46,97,112,97,99,104,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,76,73,67,69,78,83,69,45,50,46,48,62,32,111,114,32,116,104,101,32,77,73,84,32,108,105,99,101,110,115,101,13,10,47,47,32,60,76,73,67,69,78,83,69,45,77,73,84,32,111,114,32,104,116,116,112,58,47,47,111,112,101,110,115,111,117,114,99,101,46,111,114,103,47,108,105,99,101,110,115,101,115,47,77,73,84,62,44,32,97,116,32,121,111,117,114,13,10,47,47,32,111,112,116,105,111,110,46,32,84,104,105,115,32,102,105,108,101,32,109,97,121,32,110,111,116,32,98,101,32,99,111,112,105,101,100,44,32,109,111,100,105,102,105,101,100,44,32,111,114,32,100,105,115,116,114,105,98,117,116,101,100,13,10,47,47,32,101,120,99,101,112,116,32,97,99,99,111,114,100,105,110,103,32,116,111,32,116,104,111,115,101,32,116,101,114,109,115,46,13,10,13,10,35,105,102,100,101,102,32,71,76,95,69,83,13,10,112,114,101,99,105,115,105,111,110,32,104,105,103,104,112,32,115,97,109,112,108,101,114,50,68,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,48,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,59,32,47,47,32,82,71,66,65,49,54,70,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,49,41,32,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,90,66,117,102,102,101,114,59,13,10,35,101,108,115,101,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,59,32,47,47,32,82,71,66,65,49,54,70,13,10,117,110,105,102,111,114,109,32,115,97,109,112,108,101,114,50,68,32,117,90,66,117,102,102,101,114,59,13,10,35,101,110,100,105,102,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,98,105,110,100,105,110,103,32,61,32,50,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,108,115,101,13,10,108,97,121,111,117,116,40,115,116,100,49,52,48,41,32,117,110,105,102,111,114,109,32,98,85,110,105,102,111,114,109,32,123,13,10,35,101,110,100,105,102,13,10,32,32,32,32,118,101,99,50,32,117,84,105,108,101,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,54,44,32,49,54,41,46,13,10,32,32,32,32,118,101,99,50,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,32,47,47,32,70,105,120,101,100,32,97,115,32,40,49,50,56,48,44,32,53,49,50,41,46,13,10,32,32,32,32,118,101,99,50,32,117,90,66,117,102,102,101,114,83,105,122,101,59,13,10,32,32,32,32,118,101,99,50,32,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,59,32,47,47,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,118,101,99,50,32,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,59,32,47,47,32,78,111,116,32,117,115,101,100,32,104,101,114,101,46,13,10,32,32,32,32,109,97,116,52,32,117,84,114,97,110,115,102,111,114,109,59,13,10,125,59,13,10,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,105,110,32,117,118,101,99,50,32,97,84,105,108,101,79,102,102,115,101,116,59,32,47,47,32,84,105,108,101,32,108,111,99,97,108,32,99,111,111,114,100,105,110,97,116,101,115,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,105,110,32,105,118,101,99,50,32,97,84,105,108,101,79,114,105,103,105,110,59,32,47,47,32,84,105,108,101,32,105,110,100,101,120,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,105,110,32,117,118,101,99,52,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,105,110,32,105,118,101,99,50,32,97,67,116,114,108,66,97,99,107,100,114,111,112,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,105,110,32,105,110,116,32,97,80,97,116,104,73,110,100,101,120,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,53,41,32,105,110,32,117,105,110,116,32,97,77,101,116,97,100,97,116,97,73,110,100,101,120,59,13,10,13,10,35,105,102,100,101,102,32,86,85,76,75,65,78,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,48,41,32,111,117,116,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,49,41,32,111,117,116,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,50,41,32,111,117,116,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,51,41,32,111,117,116,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,52,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,53,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,54,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,55,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,56,41,32,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,108,97,121,111,117,116,40,108,111,99,97,116,105,111,110,32,61,32,57,41,32,111,117,116,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,35,101,108,115,101,13,10,111,117,116,32,118,101,99,51,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,59,13,10,111,117,116,32,118,101,99,50,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,59,13,10,111,117,116,32,118,101,99,52,32,118,66,97,115,101,67,111,108,111,114,59,13,10,111,117,116,32,102,108,111,97,116,32,118,84,105,108,101,67,116,114,108,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,111,117,116,32,118,101,99,52,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,111,117,116,32,102,108,111,97,116,32,118,67,116,114,108,59,13,10,35,101,110,100,105,102,13,10,13,10,47,47,47,32,70,101,116,99,104,32,100,97,116,97,32,102,114,111,109,32,116,104,101,32,109,101,116,97,100,97,116,97,32,116,101,120,116,117,114,101,46,13,10,118,101,99,52,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,97,109,112,108,101,114,50,68,32,115,114,99,84,101,120,116,117,114,101,44,32,118,101,99,50,32,115,99,97,108,101,44,32,118,101,99,50,32,111,114,105,103,105,110,67,111,111,114,100,44,32,105,110,116,32,101,110,116,114,121,41,32,123,13,10,32,32,32,32,47,47,32,73,110,116,101,103,101,114,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,32,110,101,101,100,115,32,116,111,32,98,101,32,115,99,97,108,101,100,44,32,98,101,99,97,117,115,101,32,116,101,120,116,117,114,101,40,41,32,111,110,108,121,32,97,99,99,101,112,116,115,32,102,108,111,97,116,32,85,86,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,114,101,116,117,114,110,32,116,101,120,116,117,114,101,40,115,114,99,84,101,120,116,117,114,101,44,32,40,111,114,105,103,105,110,67,111,111,114,100,32,43,32,118,101,99,50,40,48,46,53,41,32,43,32,118,101,99,50,40,101,110,116,114,121,44,32,48,41,41,32,42,32,115,99,97,108,101,41,59,13,10,125,13,10,13,10,47,47,47,32,70,101,116,99,104,32,114,101,110,100,101,114,105,110,103,32,105,110,102,111,32,102,114,111,109,32,116,104,101,32,109,101,116,97,100,97,116,97,32,116,101,120,116,117,114,101,46,13,10,118,111,105,100,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,118,101,99,50,32,112,111,115,105,116,105,111,110,44,32,117,105,110,116,32,109,101,116,97,100,97,116,97,73,110,100,101,120,44,32,115,97,109,112,108,101,114,50,68,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,32,32,32,32,118,101,99,50,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,32,111,117,116,32,118,101,99,50,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,32,111,117,116,32,118,101,99,52,32,111,117,116,66,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,44,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,44,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,44,32,111,117,116,32,118,101,99,52,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,44,32,111,117,116,32,105,110,116,32,111,117,116,67,116,114,108,41,32,123,13,10,32,32,32,32,47,47,32,80,114,101,112,97,114,101,32,85,86,32,102,111,114,32,116,104,101,32,109,101,116,97,100,97,116,97,32,116,101,120,116,117,114,101,46,32,77,101,116,97,100,97,116,97,32,98,108,111,99,107,32,115,105,122,101,32,105,115,32,40,49,48,44,32,49,41,46,13,10,32,32,32,32,47,47,32,109,101,116,97,100,97,116,97,73,110,100,101,120,32,105,115,32,116,104,101,32,98,108,111,99,107,32,105,110,100,101,120,46,32,66,108,111,99,107,32,109,97,112,32,115,105,122,101,32,105,115,32,40,49,50,56,44,32,53,49,50,41,46,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,83,99,97,108,101,32,61,32,118,101,99,50,40,49,46,48,41,32,47,32,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,59,13,10,13,10,32,32,32,32,47,47,32,80,105,120,101,108,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,118,101,99,50,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,32,61,32,118,101,99,50,40,109,101,116,97,100,97,116,97,73,110,100,101,120,32,37,32,49,50,56,117,32,42,32,49,48,117,44,32,109,101,116,97,100,97,116,97,73,110,100,101,120,32,47,32,49,50,56,117,41,59,13,10,13,10,32,32,32,32,47,47,32,70,101,116,99,104,32,100,97,116,97,32,118,105,97,32,116,101,120,116,117,114,101,40,41,46,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,48,41,59,13,10,32,32,32,32,118,101,99,52,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,49,41,59,13,10,32,32,32,32,118,101,99,52,32,98,97,115,101,67,111,108,111,114,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,50,41,59,32,47,47,32,83,111,108,105,100,32,99,111,108,111,114,46,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,48,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,51,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,49,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,52,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,50,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,53,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,51,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,54,41,59,13,10,32,32,32,32,118,101,99,52,32,102,105,108,116,101,114,80,97,114,97,109,115,52,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,55,41,59,13,10,32,32,32,32,118,101,99,52,32,101,120,116,114,97,32,32,32,32,32,32,32,32,32,32,32,61,32,102,101,116,99,104,85,110,115,99,97,108,101,100,40,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,32,109,101,116,97,100,97,116,97,83,99,97,108,101,44,32,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,44,32,56,41,59,32,47,47,32,66,108,101,110,100,32,97,110,100,32,99,111,109,112,111,115,105,116,101,32,111,112,116,105,111,110,115,46,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,99,111,108,111,114,32,116,101,120,116,117,114,101,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,47,47,32,84,79,68,79,40,102,108,111,112,112,121,104,97,109,109,101,114,41,58,32,73,32,100,111,110,39,116,32,117,110,100,101,114,115,116,97,110,100,32,116,104,105,115,32,115,116,101,112,46,13,10,32,32,32,32,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,32,61,32,109,97,116,50,40,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,41,32,42,32,112,111,115,105,116,105,111,110,32,43,32,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,46,120,121,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,98,97,115,101,32,99,111,108,111,114,46,13,10,32,32,32,32,111,117,116,66,97,115,101,67,111,108,111,114,32,61,32,98,97,115,101,67,111,108,111,114,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,102,105,108,116,101,114,32,112,97,114,97,109,101,116,101,114,115,46,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,48,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,49,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,50,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,51,59,13,10,32,32,32,32,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,32,61,32,102,105,108,116,101,114,80,97,114,97,109,115,52,59,13,10,13,10,32,32,32,32,47,47,32,83,101,116,32,98,108,101,110,100,32,97,110,100,32,99,111,109,112,111,115,105,116,101,32,111,112,116,105,111,110,115,46,13,10,32,32,32,32,111,117,116,67,116,114,108,32,61,32,105,110,116,40,101,120,116,114,97,46,120,41,59,13,10,125,13,10,13,10,118,111,105,100,32,109,97,105,110,40,41,32,123,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,116,105,108,101,32,99,111,111,114,100,105,110,97,116,101,115,46,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,79,114,105,103,105,110,32,61,32,118,101,99,50,40,97,84,105,108,101,79,114,105,103,105,110,41,59,13,10,13,10,32,32,32,32,47,47,32,76,111,99,97,108,32,118,101,114,116,101,120,32,111,102,102,115,101,116,44,32,105,46,101,46,32,40,48,44,48,41,44,32,40,48,44,49,41,44,32,40,49,44,49,41,44,32,40,49,44,48,41,46,13,10,32,32,32,32,118,101,99,50,32,116,105,108,101,79,102,102,115,101,116,32,61,32,118,101,99,50,40,97,84,105,108,101,79,102,102,115,101,116,41,59,13,10,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,118,101,114,116,101,120,32,112,111,115,105,116,105,111,110,46,13,10,32,32,32,32,118,101,99,50,32,112,111,115,105,116,105,111,110,32,61,32,40,116,105,108,101,79,114,105,103,105,110,32,43,32,116,105,108,101,79,102,102,115,101,116,41,32,42,32,117,84,105,108,101,83,105,122,101,59,13,10,13,10,32,32,32,32,47,47,32,84,105,108,101,32,99,117,108,108,105,110,103,46,13,10,32,32,32,32,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,32,32,32,32,47,47,32,71,101,116,32,116,104,101,32,85,86,32,99,111,111,114,100,105,110,97,116,101,115,32,111,102,32,116,104,101,32,116,105,108,101,32,90,32,118,97,108,117,101,46,13,10,32,32,32,32,118,101,99,50,32,122,85,86,32,61,32,40,40,116,105,108,101,79,114,105,103,105,110,32,43,32,118,101,99,50,40,48,46,53,41,41,32,47,32,117,90,66,117,102,102,101,114,83,105,122,101,41,32,42,32,50,53,53,46,48,59,13,10,13,10,32,32,32,32,47,47,32,83,97,109,112,108,101,32,90,32,118,97,108,117,101,32,102,114,111,109,32,116,104,101,32,90,32,98,117,102,102,101,114,32,116,101,120,116,117,114,101,46,13,10,32,32,32,32,105,118,101,99,52,32,122,86,97,108,117,101,32,61,32,105,118,101,99,52,40,116,101,120,116,117,114,101,40,117,90,66,117,102,102,101,114,44,32,122,85,86,41,41,59,13,10,13,10,32,32,32,32,47,47,32,78,111,116,101,32,116,104,97,116,32,90,32,118,97,108,117,101,32,105,115,32,112,97,99,107,101,100,32,105,110,116,111,32,97,32,82,66,71,65,56,32,112,105,120,101,108,46,13,10,32,32,32,32,47,47,32,85,110,112,97,99,107,32,105,116,46,32,67,111,109,112,97,114,101,32,105,116,32,119,105,116,104,32,116,104,101,32,99,117,114,114,101,110,116,32,112,97,116,104,32,105,110,100,101,120,32,116,111,32,115,101,101,13,10,32,32,32,32,47,47,32,105,102,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,108,101,32,105,115,32,117,110,100,101,114,32,97,110,111,116,104,101,114,32,111,112,97,113,117,101,32,116,105,108,101,46,13,10,32,32,32,32,105,102,32,40,97,80,97,116,104,73,110,100,101,120,32,60,32,40,122,86,97,108,117,101,46,120,32,124,32,40,122,86,97,108,117,101,46,121,32,60,60,32,56,41,32,124,32,40,122,86,97,108,117,101,46,122,32,60,60,32,49,54,41,32,124,32,40,122,86,97,108,117,101,46,119,32,60,60,32,50,52,41,41,41,32,123,13,10,32,32,32,32,32,32,32,32,47,47,32,84,105,108,101,32,99,117,108,108,101,100,46,13,10,32,32,32,32,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,32,32,32,32,47,47,32,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,32,32,32,32,47,47,32,71,108,111,98,97,108,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,114,114,101,115,112,111,110,100,105,110,103,32,109,97,115,107,32,116,105,108,101,46,13,10,32,32,32,32,117,118,101,99,50,32,109,97,115,107,84,105,108,101,67,111,111,114,100,32,61,32,117,118,101,99,50,40,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,120,44,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,121,32,43,32,50,53,54,117,32,42,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,122,41,59,13,10,32,32,32,32,118,101,99,50,32,109,97,115,107,84,101,120,67,111,111,114,100,48,32,61,32,40,118,101,99,50,40,109,97,115,107,84,105,108,101,67,111,111,114,100,41,32,43,32,116,105,108,101,79,102,102,115,101,116,41,32,42,32,117,84,105,108,101,83,105,122,101,59,13,10,13,10,32,32,32,32,47,47,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,119,32,33,61,32,48,117,32,109,101,97,110,115,32,97,108,112,104,97,95,116,105,108,101,95,105,100,32,105,115,32,116,111,111,32,108,97,114,103,101,32,40,105,110,118,97,108,105,100,32,105,110,32,116,104,97,116,32,99,97,115,101,41,46,13,10,32,32,32,32,105,102,32,40,97,67,116,114,108,66,97,99,107,100,114,111,112,46,121,32,61,61,32,48,32,38,38,32,97,77,97,115,107,84,101,120,67,111,111,114,100,48,46,119,32,33,61,32,48,117,41,32,123,13,10,32,32,32,32,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,118,101,99,52,40,48,46,48,41,59,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,13,10,32,32,32,32,125,13,10,13,10,32,32,32,32,47,47,32,66,108,101,110,100,32,97,110,100,32,99,111,109,112,111,115,105,116,101,32,111,112,116,105,111,110,115,46,13,10,32,32,32,32,105,110,116,32,99,116,114,108,59,13,10,32,32,32,32,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,13,10,32,32,32,32,32,32,32,32,112,111,115,105,116,105,111,110,44,13,10,32,32,32,32,32,32,32,32,97,77,101,116,97,100,97,116,97,73,110,100,101,120,44,13,10,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,44,13,10,32,32,32,32,32,32,32,32,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,44,13,10,32,32,32,32,32,32,32,32,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,44,13,10,32,32,32,32,32,32,32,32,118,66,97,115,101,67,111,108,111,114,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,48,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,49,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,50,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,51,44,13,10,32,32,32,32,32,32,32,32,118,70,105,108,116,101,114,80,97,114,97,109,115,52,44,13,10,32,32,32,32,32,32,32,32,99,116,114,108,13,10,32,32,32,32,41,59,13,10,13,10,32,32,32,32,118,84,105,108,101,67,116,114,108,32,61,32,102,108,111,97,116,40,97,67,116,114,108,66,97,99,107,100,114,111,112,46,120,41,59,13,10,32,32,32,32,118,67,116,114,108,32,61,32,102,108,111,97,116,40,99,116,114,108,41,59,13,10,32,32,32,32,118,77,97,115,107,84,101,120,67,111,111,114,100,48,32,61,32,118,101,99,51,40,109,97,115,107,84,101,120,67,111,111,114,100,48,44,32,102,108,111,97,116,40,97,67,116,114,108,66,97,99,107,100,114,111,112,46,121,41,41,59,13,10,13,10,32,32,32,32,47,47,32,117,84,114,97,110,115,102,111,114,109,32,99,111,110,118,101,114,116,115,32,85,86,32,99,111,111,100,105,110,97,116,101,115,32,116,111,32,115,99,114,101,101,110,32,99,111,111,100,105,110,97,116,101,115,46,13,10,32,32,32,32,103,108,95,80,111,115,105,116,105,111,110,32,61,32,117,84,114,97,110,115,102,111,114,109,32,42,32,118,101,99,52,40,112,111,115,105,116,105,111,110,44,32,48,46,48,44,32,49,46,48,41,59,13,10,125,13,10}; } #endif //PATHFINDER_RESOURCE_TILE_VERT_H diff --git a/src/shaders/generated/tile_vert_spv.h b/src/shaders/generated/tile_vert_spv.h index bda5d386..d924640b 100644 --- a/src/shaders/generated/tile_vert_spv.h +++ b/src/shaders/generated/tile_vert_spv.h @@ -2,7 +2,7 @@ #define PATHFINDER_RESOURCE_TILE_VERT_SPV_H namespace Pathfinder { - static uint8_t tile_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,91,1,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,22,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,171,0,0,0,177,0,0,0,211,0,0,0,238,0,0,0,247,0,0,0,11,1,0,0,25,1,0,0,28,1,0,0,29,1,0,0,30,1,0,0,31,1,0,0,32,1,0,0,33,1,0,0,34,1,0,0,61,1,0,0,65,1,0,0,70,1,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,10,0,20,0,0,0,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,16,0,0,0,115,114,99,84,101,120,116,117,114,101,0,0,5,0,4,0,17,0,0,0,115,99,97,108,101,0,0,0,5,0,5,0,18,0,0,0,111,114,105,103,105,110,67,111,111,114,100,0,5,0,4,0,19,0,0,0,101,110,116,114,121,0,0,0,5,0,19,0,38,0,0,0,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,118,102,50,59,117,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,0,5,0,5,0,26,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,6,0,27,0,0,0,109,101,116,97,100,97,116,97,73,110,100,101,120,0,0,0,5,0,6,0,28,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,5,0,7,0,29,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,5,0,7,0,30,0,0,0,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,31,0,0,0,111,117,116,66,97,115,101,67,111,108,111,114,0,0,0,0,5,0,7,0,32,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,0,5,0,7,0,33,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,0,5,0,7,0,34,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,0,5,0,7,0,35,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,0,5,0,7,0,36,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,0,5,0,4,0,37,0,0,0,111,117,116,67,116,114,108,0,5,0,6,0,55,0,0,0,109,101,116,97,100,97,116,97,83,99,97,108,101,0,0,0,5,0,7,0,60,0,0,0,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,0,0,5,0,6,0,71,0,0,0,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,0,5,0,4,0,73,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,75,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,77,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,79,0,0,0,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,0,5,0,4,0,81,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,85,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,87,0,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,4,0,89,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,91,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,95,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,4,0,97,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,101,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,103,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,4,0,105,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,107,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,109,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,111,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,4,0,113,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,115,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,117,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,119,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,4,0,121,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,123,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,125,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,127,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,4,0,129,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,131,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,133,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,135,0,0,0,101,120,116,114,97,0,0,0,5,0,4,0,137,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,139,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,141,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,168,0,0,0,116,105,108,101,79,114,105,103,105,110,0,0,5,0,5,0,171,0,0,0,97,84,105,108,101,79,114,105,103,105,110,0,5,0,5,0,174,0,0,0,116,105,108,101,79,102,102,115,101,116,0,0,5,0,5,0,177,0,0,0,97,84,105,108,101,79,102,102,115,101,116,0,5,0,5,0,180,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,6,0,184,0,0,0,98,67,111,110,115,116,97,110,116,83,105,122,101,115,0,0,6,0,8,0,184,0,0,0,0,0,0,0,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,6,0,6,0,184,0,0,0,1,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,184,0,0,0,2,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,5,0,184,0,0,0,3,0,0,0,112,97,100,49,0,0,0,0,5,0,3,0,186,0,0,0,0,0,0,0,5,0,3,0,191,0,0,0,122,85,86,0,5,0,6,0,194,0,0,0,98,86,97,114,121,105,110,103,83,105,122,101,115,0,0,0,6,0,7,0,194,0,0,0,0,0,0,0,117,90,66,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,8,0,194,0,0,0,1,0,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,6,0,8,0,194,0,0,0,2,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,5,0,194,0,0,0,3,0,0,0,112,97,100,48,0,0,0,0,5,0,3,0,196,0,0,0,0,0,0,0,5,0,4,0,204,0,0,0,122,86,97,108,117,101,0,0,5,0,5,0,205,0,0,0,117,90,66,117,102,102,101,114,0,0,0,0,5,0,5,0,211,0,0,0,97,80,97,116,104,73,110,100,101,120,0,0,5,0,6,0,236,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,236,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,236,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,238,0,0,0,0,0,0,0,5,0,6,0,244,0,0,0,109,97,115,107,84,105,108,101,67,111,111,114,100,0,0,0,5,0,6,0,247,0,0,0,97,77,97,115,107,84,101,120,67,111,111,114,100,48,0,0,5,0,6,0,3,1,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,11,1,0,0,97,67,116,114,108,66,97,99,107,100,114,111,112,0,0,0,5,0,6,0,25,1,0,0,97,77,101,116,97,100,97,116,97,73,110,100,101,120,0,0,5,0,7,0,26,1,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,0,0,0,5,0,6,0,28,1,0,0,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,5,0,5,0,29,1,0,0,118,66,97,115,101,67,111,108,111,114,0,0,5,0,6,0,30,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,5,0,6,0,31,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,5,0,6,0,32,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,5,0,6,0,33,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,5,0,6,0,34,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,5,0,4,0,35,1,0,0,99,116,114,108,0,0,0,0,5,0,4,0,36,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,38,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,40,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,43,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,44,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,45,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,46,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,47,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,48,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,49,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,50,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,61,1,0,0,118,84,105,108,101,67,116,114,108,0,0,0,5,0,4,0,65,1,0,0,118,67,116,114,108,0,0,0,5,0,6,0,70,1,0,0,118,77,97,115,107,84,101,120,67,111,111,114,100,48,0,0,5,0,5,0,79,1,0,0,98,84,114,97,110,115,102,111,114,109,0,0,6,0,6,0,79,1,0,0,0,0,0,0,117,84,114,97,110,115,102,111,114,109,0,0,5,0,3,0,81,1,0,0,0,0,0,0,71,0,4,0,171,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,177,0,0,0,30,0,0,0,0,0,0,0,72,0,5,0,184,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,184,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,184,0,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,184,0,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,184,0,0,0,2,0,0,0,71,0,4,0,186,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,186,0,0,0,33,0,0,0,4,0,0,0,72,0,5,0,194,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,194,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,194,0,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,194,0,0,0,3,0,0,0,35,0,0,0,24,0,0,0,71,0,3,0,194,0,0,0,2,0,0,0,71,0,4,0,196,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,196,0,0,0,33,0,0,0,3,0,0,0,71,0,4,0,205,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,205,0,0,0,33,0,0,0,1,0,0,0,71,0,4,0,211,0,0,0,30,0,0,0,4,0,0,0,72,0,5,0,236,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,236,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,236,0,0,0,2,0,0,0,71,0,4,0,247,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,11,1,0,0,30,0,0,0,3,0,0,0,71,0,4,0,25,1,0,0,30,0,0,0,5,0,0,0,71,0,4,0,26,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,26,1,0,0,33,0,0,0,0,0,0,0,71,0,4,0,28,1,0,0,30,0,0,0,1,0,0,0,71,0,4,0,29,1,0,0,30,0,0,0,2,0,0,0,71,0,4,0,30,1,0,0,30,0,0,0,4,0,0,0,71,0,4,0,31,1,0,0,30,0,0,0,5,0,0,0,71,0,4,0,32,1,0,0,30,0,0,0,6,0,0,0,71,0,4,0,33,1,0,0,30,0,0,0,7,0,0,0,71,0,4,0,34,1,0,0,30,0,0,0,8,0,0,0,71,0,4,0,61,1,0,0,30,0,0,0,3,0,0,0,71,0,4,0,65,1,0,0,30,0,0,0,9,0,0,0,71,0,4,0,70,1,0,0,30,0,0,0,0,0,0,0,72,0,4,0,79,1,0,0,0,0,0,0,5,0,0,0,72,0,5,0,79,1,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,79,1,0,0,0,0,0,0,7,0,0,0,16,0,0,0,71,0,3,0,79,1,0,0,2,0,0,0,71,0,4,0,81,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,81,1,0,0,33,0,0,0,2,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,25,0,9,0,7,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,8,0,0,0,7,0,0,0,32,0,4,0,9,0,0,0,0,0,0,0,8,0,0,0,23,0,4,0,10,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,11,0,0,0,7,0,0,0,10,0,0,0,21,0,4,0,12,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,13,0,0,0,7,0,0,0,12,0,0,0,23,0,4,0,14,0,0,0,6,0,0,0,4,0,0,0,33,0,7,0,15,0,0,0,14,0,0,0,9,0,0,0,11,0,0,0,11,0,0,0,13,0,0,0,21,0,4,0,22,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,23,0,0,0,7,0,0,0,22,0,0,0,32,0,4,0,24,0,0,0,7,0,0,0,14,0,0,0,33,0,15,0,25,0,0,0,2,0,0,0,11,0,0,0,23,0,0,0,9,0,0,0,11,0,0,0,11,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,13,0,0,0,43,0,4,0,6,0,0,0,42,0,0,0,0,0,0,63,44,0,5,0,10,0,0,0,43,0,0,0,42,0,0,0,42,0,0,0,43,0,4,0,6,0,0,0,47,0,0,0,0,0,0,0,43,0,4,0,6,0,0,0,56,0,0,0,0,0,128,63,44,0,5,0,10,0,0,0,57,0,0,0,56,0,0,0,56,0,0,0,43,0,4,0,22,0,0,0,62,0,0,0,128,0,0,0,43,0,4,0,22,0,0,0,64,0,0,0,10,0,0,0,43,0,4,0,12,0,0,0,72,0,0,0,0,0,0,0,43,0,4,0,12,0,0,0,80,0,0,0,1,0,0,0,43,0,4,0,12,0,0,0,88,0,0,0,2,0,0,0,43,0,4,0,12,0,0,0,96,0,0,0,3,0,0,0,43,0,4,0,12,0,0,0,104,0,0,0,4,0,0,0,43,0,4,0,12,0,0,0,112,0,0,0,5,0,0,0,43,0,4,0,12,0,0,0,120,0,0,0,6,0,0,0,43,0,4,0,12,0,0,0,128,0,0,0,7,0,0,0,43,0,4,0,12,0,0,0,136,0,0,0,8,0,0,0,24,0,4,0,144,0,0,0,10,0,0,0,2,0,0,0,43,0,4,0,22,0,0,0,163,0,0,0,0,0,0,0,32,0,4,0,164,0,0,0,7,0,0,0,6,0,0,0,23,0,4,0,169,0,0,0,12,0,0,0,2,0,0,0,32,0,4,0,170,0,0,0,1,0,0,0,169,0,0,0,59,0,4,0,170,0,0,0,171,0,0,0,1,0,0,0,23,0,4,0,175,0,0,0,22,0,0,0,2,0,0,0,32,0,4,0,176,0,0,0,1,0,0,0,175,0,0,0,59,0,4,0,176,0,0,0,177,0,0,0,1,0,0,0,30,0,6,0,184,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,32,0,4,0,185,0,0,0,2,0,0,0,184,0,0,0,59,0,4,0,185,0,0,0,186,0,0,0,2,0,0,0,32,0,4,0,187,0,0,0,2,0,0,0,10,0,0,0,30,0,6,0,194,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,32,0,4,0,195,0,0,0,2,0,0,0,194,0,0,0,59,0,4,0,195,0,0,0,196,0,0,0,2,0,0,0,43,0,4,0,6,0,0,0,200,0,0,0,0,0,127,67,23,0,4,0,202,0,0,0,12,0,0,0,4,0,0,0,32,0,4,0,203,0,0,0,7,0,0,0,202,0,0,0,59,0,4,0,9,0,0,0,205,0,0,0,0,0,0,0,32,0,4,0,210,0,0,0,1,0,0,0,12,0,0,0,59,0,4,0,210,0,0,0,211,0,0,0,1,0,0,0,43,0,4,0,22,0,0,0,215,0,0,0,1,0,0,0,43,0,4,0,22,0,0,0,220,0,0,0,2,0,0,0,43,0,4,0,12,0,0,0,223,0,0,0,16,0,0,0,43,0,4,0,22,0,0,0,226,0,0,0,3,0,0,0,43,0,4,0,12,0,0,0,229,0,0,0,24,0,0,0,20,0,2,0,232,0,0,0,30,0,4,0,236,0,0,0,14,0,0,0,6,0,0,0,32,0,4,0,237,0,0,0,3,0,0,0,236,0,0,0,59,0,4,0,237,0,0,0,238,0,0,0,3,0,0,0,44,0,7,0,14,0,0,0,239,0,0,0,47,0,0,0,47,0,0,0,47,0,0,0,47,0,0,0,32,0,4,0,240,0,0,0,3,0,0,0,14,0,0,0,32,0,4,0,243,0,0,0,7,0,0,0,175,0,0,0,23,0,4,0,245,0,0,0,22,0,0,0,4,0,0,0,32,0,4,0,246,0,0,0,1,0,0,0,245,0,0,0,59,0,4,0,246,0,0,0,247,0,0,0,1,0,0,0,32,0,4,0,248,0,0,0,1,0,0,0,22,0,0,0,43,0,4,0,22,0,0,0,253,0,0,0,0,1,0,0,59,0,4,0,170,0,0,0,11,1,0,0,1,0,0,0,59,0,4,0,248,0,0,0,25,1,0,0,1,0,0,0,59,0,4,0,9,0,0,0,26,1,0,0,0,0,0,0,32,0,4,0,27,1,0,0,3,0,0,0,10,0,0,0,59,0,4,0,27,1,0,0,28,1,0,0,3,0,0,0,59,0,4,0,240,0,0,0,29,1,0,0,3,0,0,0,59,0,4,0,240,0,0,0,30,1,0,0,3,0,0,0,59,0,4,0,240,0,0,0,31,1,0,0,3,0,0,0,59,0,4,0,240,0,0,0,32,1,0,0,3,0,0,0,59,0,4,0,240,0,0,0,33,1,0,0,3,0,0,0,59,0,4,0,240,0,0,0,34,1,0,0,3,0,0,0,32,0,4,0,60,1,0,0,3,0,0,0,6,0,0,0,59,0,4,0,60,1,0,0,61,1,0,0,3,0,0,0,59,0,4,0,60,1,0,0,65,1,0,0,3,0,0,0,23,0,4,0,68,1,0,0,6,0,0,0,3,0,0,0,32,0,4,0,69,1,0,0,3,0,0,0,68,1,0,0,59,0,4,0,69,1,0,0,70,1,0,0,3,0,0,0,24,0,4,0,78,1,0,0,14,0,0,0,4,0,0,0,30,0,3,0,79,1,0,0,78,1,0,0,32,0,4,0,80,1,0,0,2,0,0,0,79,1,0,0,59,0,4,0,80,1,0,0,81,1,0,0,2,0,0,0,32,0,4,0,82,1,0,0,2,0,0,0,78,1,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,11,0,0,0,168,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,174,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,180,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,191,0,0,0,7,0,0,0,59,0,4,0,203,0,0,0,204,0,0,0,7,0,0,0,59,0,4,0,243,0,0,0,244,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,3,1,0,0,7,0,0,0,59,0,4,0,13,0,0,0,35,1,0,0,7,0,0,0,59,0,4,0,11,0,0,0,36,1,0,0,7,0,0,0,59,0,4,0,23,0,0,0,38,1,0,0,7,0,0,0,59,0,4,0,11,0,0,0,40,1,0,0,7,0,0,0,59,0,4,0,11,0,0,0,43,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,44,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,45,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,46,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,47,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,48,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,49,1,0,0,7,0,0,0,59,0,4,0,13,0,0,0,50,1,0,0,7,0,0,0,61,0,4,0,169,0,0,0,172,0,0,0,171,0,0,0,111,0,4,0,10,0,0,0,173,0,0,0,172,0,0,0,62,0,3,0,168,0,0,0,173,0,0,0,61,0,4,0,175,0,0,0,178,0,0,0,177,0,0,0,112,0,4,0,10,0,0,0,179,0,0,0,178,0,0,0,62,0,3,0,174,0,0,0,179,0,0,0,61,0,4,0,10,0,0,0,181,0,0,0,168,0,0,0,61,0,4,0,10,0,0,0,182,0,0,0,174,0,0,0,129,0,5,0,10,0,0,0,183,0,0,0,181,0,0,0,182,0,0,0,65,0,5,0,187,0,0,0,188,0,0,0,186,0,0,0,80,0,0,0,61,0,4,0,10,0,0,0,189,0,0,0,188,0,0,0,133,0,5,0,10,0,0,0,190,0,0,0,183,0,0,0,189,0,0,0,62,0,3,0,180,0,0,0,190,0,0,0,61,0,4,0,10,0,0,0,192,0,0,0,168,0,0,0,129,0,5,0,10,0,0,0,193,0,0,0,192,0,0,0,43,0,0,0,65,0,5,0,187,0,0,0,197,0,0,0,196,0,0,0,72,0,0,0,61,0,4,0,10,0,0,0,198,0,0,0,197,0,0,0,136,0,5,0,10,0,0,0,199,0,0,0,193,0,0,0,198,0,0,0,142,0,5,0,10,0,0,0,201,0,0,0,199,0,0,0,200,0,0,0,62,0,3,0,191,0,0,0,201,0,0,0,61,0,4,0,8,0,0,0,206,0,0,0,205,0,0,0,61,0,4,0,10,0,0,0,207,0,0,0,191,0,0,0,88,0,7,0,14,0,0,0,208,0,0,0,206,0,0,0,207,0,0,0,2,0,0,0,47,0,0,0,110,0,4,0,202,0,0,0,209,0,0,0,208,0,0,0,62,0,3,0,204,0,0,0,209,0,0,0,61,0,4,0,12,0,0,0,212,0,0,0,211,0,0,0,65,0,5,0,13,0,0,0,213,0,0,0,204,0,0,0,163,0,0,0,61,0,4,0,12,0,0,0,214,0,0,0,213,0,0,0,65,0,5,0,13,0,0,0,216,0,0,0,204,0,0,0,215,0,0,0,61,0,4,0,12,0,0,0,217,0,0,0,216,0,0,0,196,0,5,0,12,0,0,0,218,0,0,0,217,0,0,0,136,0,0,0,197,0,5,0,12,0,0,0,219,0,0,0,214,0,0,0,218,0,0,0,65,0,5,0,13,0,0,0,221,0,0,0,204,0,0,0,220,0,0,0,61,0,4,0,12,0,0,0,222,0,0,0,221,0,0,0,196,0,5,0,12,0,0,0,224,0,0,0,222,0,0,0,223,0,0,0,197,0,5,0,12,0,0,0,225,0,0,0,219,0,0,0,224,0,0,0,65,0,5,0,13,0,0,0,227,0,0,0,204,0,0,0,226,0,0,0,61,0,4,0,12,0,0,0,228,0,0,0,227,0,0,0,196,0,5,0,12,0,0,0,230,0,0,0,228,0,0,0,229,0,0,0,197,0,5,0,12,0,0,0,231,0,0,0,225,0,0,0,230,0,0,0,177,0,5,0,232,0,0,0,233,0,0,0,212,0,0,0,231,0,0,0,247,0,3,0,235,0,0,0,0,0,0,0,250,0,4,0,233,0,0,0,234,0,0,0,235,0,0,0,248,0,2,0,234,0,0,0,65,0,5,0,240,0,0,0,241,0,0,0,238,0,0,0,72,0,0,0,62,0,3,0,241,0,0,0,239,0,0,0,253,0,1,0,248,0,2,0,235,0,0,0,65,0,5,0,248,0,0,0,249,0,0,0,247,0,0,0,163,0,0,0,61,0,4,0,22,0,0,0,250,0,0,0,249,0,0,0,65,0,5,0,248,0,0,0,251,0,0,0,247,0,0,0,215,0,0,0,61,0,4,0,22,0,0,0,252,0,0,0,251,0,0,0,65,0,5,0,248,0,0,0,254,0,0,0,247,0,0,0,220,0,0,0,61,0,4,0,22,0,0,0,255,0,0,0,254,0,0,0,132,0,5,0,22,0,0,0,0,1,0,0,253,0,0,0,255,0,0,0,128,0,5,0,22,0,0,0,1,1,0,0,252,0,0,0,0,1,0,0,80,0,5,0,175,0,0,0,2,1,0,0,250,0,0,0,1,1,0,0,62,0,3,0,244,0,0,0,2,1,0,0,61,0,4,0,175,0,0,0,4,1,0,0,244,0,0,0,112,0,4,0,10,0,0,0,5,1,0,0,4,1,0,0,61,0,4,0,10,0,0,0,6,1,0,0,174,0,0,0,129,0,5,0,10,0,0,0,7,1,0,0,5,1,0,0,6,1,0,0,65,0,5,0,187,0,0,0,8,1,0,0,186,0,0,0,80,0,0,0,61,0,4,0,10,0,0,0,9,1,0,0,8,1,0,0,133,0,5,0,10,0,0,0,10,1,0,0,7,1,0,0,9,1,0,0,62,0,3,0,3,1,0,0,10,1,0,0,65,0,5,0,210,0,0,0,12,1,0,0,11,1,0,0,215,0,0,0,61,0,4,0,12,0,0,0,13,1,0,0,12,1,0,0,170,0,5,0,232,0,0,0,14,1,0,0,13,1,0,0,72,0,0,0,247,0,3,0,16,1,0,0,0,0,0,0,250,0,4,0,14,1,0,0,15,1,0,0,16,1,0,0,248,0,2,0,15,1,0,0,65,0,5,0,248,0,0,0,17,1,0,0,247,0,0,0,226,0,0,0,61,0,4,0,22,0,0,0,18,1,0,0,17,1,0,0,171,0,5,0,232,0,0,0,19,1,0,0,18,1,0,0,163,0,0,0,249,0,2,0,16,1,0,0,248,0,2,0,16,1,0,0,245,0,7,0,232,0,0,0,20,1,0,0,14,1,0,0,235,0,0,0,19,1,0,0,15,1,0,0,247,0,3,0,22,1,0,0,0,0,0,0,250,0,4,0,20,1,0,0,21,1,0,0,22,1,0,0,248,0,2,0,21,1,0,0,65,0,5,0,240,0,0,0,23,1,0,0,238,0,0,0,72,0,0,0,62,0,3,0,23,1,0,0,239,0,0,0,253,0,1,0,248,0,2,0,22,1,0,0,61,0,4,0,10,0,0,0,37,1,0,0,180,0,0,0,62,0,3,0,36,1,0,0,37,1,0,0,61,0,4,0,22,0,0,0,39,1,0,0,25,1,0,0,62,0,3,0,38,1,0,0,39,1,0,0,65,0,5,0,187,0,0,0,41,1,0,0,186,0,0,0,88,0,0,0,61,0,4,0,10,0,0,0,42,1,0,0,41,1,0,0,62,0,3,0,40,1,0,0,42,1,0,0,57,0,16,0,2,0,0,0,51,1,0,0,38,0,0,0,36,1,0,0,38,1,0,0,26,1,0,0,40,1,0,0,43,1,0,0,44,1,0,0,45,1,0,0,46,1,0,0,47,1,0,0,48,1,0,0,49,1,0,0,50,1,0,0,61,0,4,0,10,0,0,0,52,1,0,0,43,1,0,0,62,0,3,0,28,1,0,0,52,1,0,0,61,0,4,0,14,0,0,0,53,1,0,0,44,1,0,0,62,0,3,0,29,1,0,0,53,1,0,0,61,0,4,0,14,0,0,0,54,1,0,0,45,1,0,0,62,0,3,0,30,1,0,0,54,1,0,0,61,0,4,0,14,0,0,0,55,1,0,0,46,1,0,0,62,0,3,0,31,1,0,0,55,1,0,0,61,0,4,0,14,0,0,0,56,1,0,0,47,1,0,0,62,0,3,0,32,1,0,0,56,1,0,0,61,0,4,0,14,0,0,0,57,1,0,0,48,1,0,0,62,0,3,0,33,1,0,0,57,1,0,0,61,0,4,0,14,0,0,0,58,1,0,0,49,1,0,0,62,0,3,0,34,1,0,0,58,1,0,0,61,0,4,0,12,0,0,0,59,1,0,0,50,1,0,0,62,0,3,0,35,1,0,0,59,1,0,0,65,0,5,0,210,0,0,0,62,1,0,0,11,1,0,0,163,0,0,0,61,0,4,0,12,0,0,0,63,1,0,0,62,1,0,0,111,0,4,0,6,0,0,0,64,1,0,0,63,1,0,0,62,0,3,0,61,1,0,0,64,1,0,0,61,0,4,0,12,0,0,0,66,1,0,0,35,1,0,0,111,0,4,0,6,0,0,0,67,1,0,0,66,1,0,0,62,0,3,0,65,1,0,0,67,1,0,0,61,0,4,0,10,0,0,0,71,1,0,0,3,1,0,0,65,0,5,0,210,0,0,0,72,1,0,0,11,1,0,0,215,0,0,0,61,0,4,0,12,0,0,0,73,1,0,0,72,1,0,0,111,0,4,0,6,0,0,0,74,1,0,0,73,1,0,0,81,0,5,0,6,0,0,0,75,1,0,0,71,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,76,1,0,0,71,1,0,0,1,0,0,0,80,0,6,0,68,1,0,0,77,1,0,0,75,1,0,0,76,1,0,0,74,1,0,0,62,0,3,0,70,1,0,0,77,1,0,0,65,0,5,0,82,1,0,0,83,1,0,0,81,1,0,0,72,0,0,0,61,0,4,0,78,1,0,0,84,1,0,0,83,1,0,0,61,0,4,0,10,0,0,0,85,1,0,0,180,0,0,0,81,0,5,0,6,0,0,0,86,1,0,0,85,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,87,1,0,0,85,1,0,0,1,0,0,0,80,0,7,0,14,0,0,0,88,1,0,0,86,1,0,0,87,1,0,0,47,0,0,0,56,0,0,0,145,0,5,0,14,0,0,0,89,1,0,0,84,1,0,0,88,1,0,0,65,0,5,0,240,0,0,0,90,1,0,0,238,0,0,0,72,0,0,0,62,0,3,0,90,1,0,0,89,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,14,0,0,0,20,0,0,0,0,0,0,0,15,0,0,0,55,0,3,0,9,0,0,0,16,0,0,0,55,0,3,0,11,0,0,0,17,0,0,0,55,0,3,0,11,0,0,0,18,0,0,0,55,0,3,0,13,0,0,0,19,0,0,0,248,0,2,0,21,0,0,0,61,0,4,0,8,0,0,0,40,0,0,0,16,0,0,0,61,0,4,0,10,0,0,0,41,0,0,0,18,0,0,0,129,0,5,0,10,0,0,0,44,0,0,0,41,0,0,0,43,0,0,0,61,0,4,0,12,0,0,0,45,0,0,0,19,0,0,0,111,0,4,0,6,0,0,0,46,0,0,0,45,0,0,0,80,0,5,0,10,0,0,0,48,0,0,0,46,0,0,0,47,0,0,0,129,0,5,0,10,0,0,0,49,0,0,0,44,0,0,0,48,0,0,0,61,0,4,0,10,0,0,0,50,0,0,0,17,0,0,0,133,0,5,0,10,0,0,0,51,0,0,0,49,0,0,0,50,0,0,0,88,0,7,0,14,0,0,0,52,0,0,0,40,0,0,0,51,0,0,0,2,0,0,0,47,0,0,0,254,0,2,0,52,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,38,0,0,0,0,0,0,0,25,0,0,0,55,0,3,0,11,0,0,0,26,0,0,0,55,0,3,0,23,0,0,0,27,0,0,0,55,0,3,0,9,0,0,0,28,0,0,0,55,0,3,0,11,0,0,0,29,0,0,0,55,0,3,0,11,0,0,0,30,0,0,0,55,0,3,0,24,0,0,0,31,0,0,0,55,0,3,0,24,0,0,0,32,0,0,0,55,0,3,0,24,0,0,0,33,0,0,0,55,0,3,0,24,0,0,0,34,0,0,0,55,0,3,0,24,0,0,0,35,0,0,0,55,0,3,0,24,0,0,0,36,0,0,0,55,0,3,0,13,0,0,0,37,0,0,0,248,0,2,0,39,0,0,0,59,0,4,0,11,0,0,0,55,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,60,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,71,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,73,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,75,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,77,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,79,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,81,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,83,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,85,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,87,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,89,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,91,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,93,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,95,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,97,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,99,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,101,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,103,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,105,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,107,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,109,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,111,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,113,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,115,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,117,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,119,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,121,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,123,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,125,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,127,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,129,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,131,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,133,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,135,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,137,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,139,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,141,0,0,0,7,0,0,0,61,0,4,0,10,0,0,0,58,0,0,0,29,0,0,0,136,0,5,0,10,0,0,0,59,0,0,0,57,0,0,0,58,0,0,0,62,0,3,0,55,0,0,0,59,0,0,0,61,0,4,0,22,0,0,0,61,0,0,0,27,0,0,0,137,0,5,0,22,0,0,0,63,0,0,0,61,0,0,0,62,0,0,0,132,0,5,0,22,0,0,0,65,0,0,0,63,0,0,0,64,0,0,0,112,0,4,0,6,0,0,0,66,0,0,0,65,0,0,0,61,0,4,0,22,0,0,0,67,0,0,0,27,0,0,0,134,0,5,0,22,0,0,0,68,0,0,0,67,0,0,0,62,0,0,0,112,0,4,0,6,0,0,0,69,0,0,0,68,0,0,0,80,0,5,0,10,0,0,0,70,0,0,0,66,0,0,0,69,0,0,0,62,0,3,0,60,0,0,0,70,0,0,0,61,0,4,0,10,0,0,0,74,0,0,0,55,0,0,0,62,0,3,0,73,0,0,0,74,0,0,0,61,0,4,0,10,0,0,0,76,0,0,0,60,0,0,0,62,0,3,0,75,0,0,0,76,0,0,0,62,0,3,0,77,0,0,0,72,0,0,0,57,0,8,0,14,0,0,0,78,0,0,0,20,0,0,0,28,0,0,0,73,0,0,0,75,0,0,0,77,0,0,0,62,0,3,0,71,0,0,0,78,0,0,0,61,0,4,0,10,0,0,0,82,0,0,0,55,0,0,0,62,0,3,0,81,0,0,0,82,0,0,0,61,0,4,0,10,0,0,0,84,0,0,0,60,0,0,0,62,0,3,0,83,0,0,0,84,0,0,0,62,0,3,0,85,0,0,0,80,0,0,0,57,0,8,0,14,0,0,0,86,0,0,0,20,0,0,0,28,0,0,0,81,0,0,0,83,0,0,0,85,0,0,0,62,0,3,0,79,0,0,0,86,0,0,0,61,0,4,0,10,0,0,0,90,0,0,0,55,0,0,0,62,0,3,0,89,0,0,0,90,0,0,0,61,0,4,0,10,0,0,0,92,0,0,0,60,0,0,0,62,0,3,0,91,0,0,0,92,0,0,0,62,0,3,0,93,0,0,0,88,0,0,0,57,0,8,0,14,0,0,0,94,0,0,0,20,0,0,0,28,0,0,0,89,0,0,0,91,0,0,0,93,0,0,0,62,0,3,0,87,0,0,0,94,0,0,0,61,0,4,0,10,0,0,0,98,0,0,0,55,0,0,0,62,0,3,0,97,0,0,0,98,0,0,0,61,0,4,0,10,0,0,0,100,0,0,0,60,0,0,0,62,0,3,0,99,0,0,0,100,0,0,0,62,0,3,0,101,0,0,0,96,0,0,0,57,0,8,0,14,0,0,0,102,0,0,0,20,0,0,0,28,0,0,0,97,0,0,0,99,0,0,0,101,0,0,0,62,0,3,0,95,0,0,0,102,0,0,0,61,0,4,0,10,0,0,0,106,0,0,0,55,0,0,0,62,0,3,0,105,0,0,0,106,0,0,0,61,0,4,0,10,0,0,0,108,0,0,0,60,0,0,0,62,0,3,0,107,0,0,0,108,0,0,0,62,0,3,0,109,0,0,0,104,0,0,0,57,0,8,0,14,0,0,0,110,0,0,0,20,0,0,0,28,0,0,0,105,0,0,0,107,0,0,0,109,0,0,0,62,0,3,0,103,0,0,0,110,0,0,0,61,0,4,0,10,0,0,0,114,0,0,0,55,0,0,0,62,0,3,0,113,0,0,0,114,0,0,0,61,0,4,0,10,0,0,0,116,0,0,0,60,0,0,0,62,0,3,0,115,0,0,0,116,0,0,0,62,0,3,0,117,0,0,0,112,0,0,0,57,0,8,0,14,0,0,0,118,0,0,0,20,0,0,0,28,0,0,0,113,0,0,0,115,0,0,0,117,0,0,0,62,0,3,0,111,0,0,0,118,0,0,0,61,0,4,0,10,0,0,0,122,0,0,0,55,0,0,0,62,0,3,0,121,0,0,0,122,0,0,0,61,0,4,0,10,0,0,0,124,0,0,0,60,0,0,0,62,0,3,0,123,0,0,0,124,0,0,0,62,0,3,0,125,0,0,0,120,0,0,0,57,0,8,0,14,0,0,0,126,0,0,0,20,0,0,0,28,0,0,0,121,0,0,0,123,0,0,0,125,0,0,0,62,0,3,0,119,0,0,0,126,0,0,0,61,0,4,0,10,0,0,0,130,0,0,0,55,0,0,0,62,0,3,0,129,0,0,0,130,0,0,0,61,0,4,0,10,0,0,0,132,0,0,0,60,0,0,0,62,0,3,0,131,0,0,0,132,0,0,0,62,0,3,0,133,0,0,0,128,0,0,0,57,0,8,0,14,0,0,0,134,0,0,0,20,0,0,0,28,0,0,0,129,0,0,0,131,0,0,0,133,0,0,0,62,0,3,0,127,0,0,0,134,0,0,0,61,0,4,0,10,0,0,0,138,0,0,0,55,0,0,0,62,0,3,0,137,0,0,0,138,0,0,0,61,0,4,0,10,0,0,0,140,0,0,0,60,0,0,0,62,0,3,0,139,0,0,0,140,0,0,0,62,0,3,0,141,0,0,0,136,0,0,0,57,0,8,0,14,0,0,0,142,0,0,0,20,0,0,0,28,0,0,0,137,0,0,0,139,0,0,0,141,0,0,0,62,0,3,0,135,0,0,0,142,0,0,0,61,0,4,0,14,0,0,0,143,0,0,0,71,0,0,0,81,0,5,0,6,0,0,0,145,0,0,0,143,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,146,0,0,0,143,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,147,0,0,0,143,0,0,0,2,0,0,0,81,0,5,0,6,0,0,0,148,0,0,0,143,0,0,0,3,0,0,0,80,0,5,0,10,0,0,0,149,0,0,0,145,0,0,0,146,0,0,0,80,0,5,0,10,0,0,0,150,0,0,0,147,0,0,0,148,0,0,0,80,0,5,0,144,0,0,0,151,0,0,0,149,0,0,0,150,0,0,0,61,0,4,0,10,0,0,0,152,0,0,0,26,0,0,0,145,0,5,0,10,0,0,0,153,0,0,0,151,0,0,0,152,0,0,0,61,0,4,0,14,0,0,0,154,0,0,0,79,0,0,0,79,0,7,0,10,0,0,0,155,0,0,0,154,0,0,0,154,0,0,0,0,0,0,0,1,0,0,0,129,0,5,0,10,0,0,0,156,0,0,0,153,0,0,0,155,0,0,0,62,0,3,0,30,0,0,0,156,0,0,0,61,0,4,0,14,0,0,0,157,0,0,0,87,0,0,0,62,0,3,0,31,0,0,0,157,0,0,0,61,0,4,0,14,0,0,0,158,0,0,0,95,0,0,0,62,0,3,0,32,0,0,0,158,0,0,0,61,0,4,0,14,0,0,0,159,0,0,0,103,0,0,0,62,0,3,0,33,0,0,0,159,0,0,0,61,0,4,0,14,0,0,0,160,0,0,0,111,0,0,0,62,0,3,0,34,0,0,0,160,0,0,0,61,0,4,0,14,0,0,0,161,0,0,0,119,0,0,0,62,0,3,0,35,0,0,0,161,0,0,0,61,0,4,0,14,0,0,0,162,0,0,0,127,0,0,0,62,0,3,0,36,0,0,0,162,0,0,0,65,0,5,0,164,0,0,0,165,0,0,0,135,0,0,0,163,0,0,0,61,0,4,0,6,0,0,0,166,0,0,0,165,0,0,0,110,0,4,0,12,0,0,0,167,0,0,0,166,0,0,0,62,0,3,0,37,0,0,0,167,0,0,0,253,0,1,0,56,0,1,0}; + static uint8_t tile_vert_spv[] = {3,2,35,7,0,0,1,0,11,0,13,0,85,1,0,0,0,0,0,0,17,0,2,0,1,0,0,0,11,0,6,0,1,0,0,0,71,76,83,76,46,115,116,100,46,52,53,48,0,0,0,0,14,0,3,0,0,0,0,0,1,0,0,0,15,0,22,0,0,0,0,0,4,0,0,0,109,97,105,110,0,0,0,0,171,0,0,0,177,0,0,0,209,0,0,0,236,0,0,0,245,0,0,0,9,1,0,0,23,1,0,0,26,1,0,0,27,1,0,0,28,1,0,0,29,1,0,0,30,1,0,0,31,1,0,0,32,1,0,0,59,1,0,0,63,1,0,0,68,1,0,0,3,0,3,0,1,0,0,0,54,1,0,0,4,0,10,0,71,76,95,71,79,79,71,76,69,95,99,112,112,95,115,116,121,108,101,95,108,105,110,101,95,100,105,114,101,99,116,105,118,101,0,0,4,0,8,0,71,76,95,71,79,79,71,76,69,95,105,110,99,108,117,100,101,95,100,105,114,101,99,116,105,118,101,0,5,0,4,0,4,0,0,0,109,97,105,110,0,0,0,0,5,0,10,0,20,0,0,0,102,101,116,99,104,85,110,115,99,97,108,101,100,40,115,50,49,59,118,102,50,59,118,102,50,59,105,49,59,0,0,0,5,0,5,0,16,0,0,0,115,114,99,84,101,120,116,117,114,101,0,0,5,0,4,0,17,0,0,0,115,99,97,108,101,0,0,0,5,0,5,0,18,0,0,0,111,114,105,103,105,110,67,111,111,114,100,0,5,0,4,0,19,0,0,0,101,110,116,114,121,0,0,0,5,0,19,0,38,0,0,0,99,111,109,112,117,116,101,84,105,108,101,86,97,114,121,105,110,103,115,40,118,102,50,59,117,49,59,115,50,49,59,118,102,50,59,118,102,50,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,118,102,52,59,105,49,59,0,0,5,0,5,0,26,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,6,0,27,0,0,0,109,101,116,97,100,97,116,97,73,110,100,101,120,0,0,0,5,0,6,0,28,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,5,0,7,0,29,0,0,0,116,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,5,0,7,0,30,0,0,0,111,117,116,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,31,0,0,0,111,117,116,66,97,115,101,67,111,108,111,114,0,0,0,0,5,0,7,0,32,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,0,5,0,7,0,33,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,0,5,0,7,0,34,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,0,5,0,7,0,35,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,0,5,0,7,0,36,0,0,0,111,117,116,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,0,5,0,4,0,37,0,0,0,111,117,116,67,116,114,108,0,5,0,6,0,55,0,0,0,109,101,116,97,100,97,116,97,83,99,97,108,101,0,0,0,5,0,7,0,60,0,0,0,109,101,116,97,100,97,116,97,69,110,116,114,121,67,111,111,114,100,0,0,5,0,6,0,71,0,0,0,99,111,108,111,114,84,101,120,77,97,116,114,105,120,48,0,5,0,4,0,73,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,75,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,77,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,79,0,0,0,99,111,108,111,114,84,101,120,79,102,102,115,101,116,115,0,5,0,4,0,81,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,83,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,85,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,87,0,0,0,98,97,115,101,67,111,108,111,114,0,0,0,5,0,4,0,89,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,91,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,93,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,95,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,48,0,0,0,5,0,4,0,97,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,99,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,101,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,103,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,49,0,0,0,5,0,4,0,105,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,107,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,109,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,111,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,50,0,0,0,5,0,4,0,113,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,115,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,117,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,119,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,51,0,0,0,5,0,4,0,121,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,123,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,125,0,0,0,112,97,114,97,109,0,0,0,5,0,6,0,127,0,0,0,102,105,108,116,101,114,80,97,114,97,109,115,52,0,0,0,5,0,4,0,129,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,131,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,133,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,135,0,0,0,101,120,116,114,97,0,0,0,5,0,4,0,137,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,139,0,0,0,112,97,114,97,109,0,0,0,5,0,4,0,141,0,0,0,112,97,114,97,109,0,0,0,5,0,5,0,168,0,0,0,116,105,108,101,79,114,105,103,105,110,0,0,5,0,5,0,171,0,0,0,97,84,105,108,101,79,114,105,103,105,110,0,5,0,5,0,174,0,0,0,116,105,108,101,79,102,102,115,101,116,0,0,5,0,5,0,177,0,0,0,97,84,105,108,101,79,102,102,115,101,116,0,5,0,5,0,180,0,0,0,112,111,115,105,116,105,111,110,0,0,0,0,5,0,5,0,185,0,0,0,98,85,110,105,102,111,114,109,0,0,0,0,6,0,6,0,185,0,0,0,0,0,0,0,117,84,105,108,101,83,105,122,101,0,0,0,6,0,9,0,185,0,0,0,1,0,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,83,105,122,101,0,0,0,0,6,0,7,0,185,0,0,0,2,0,0,0,117,90,66,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,8,0,185,0,0,0,3,0,0,0,117,77,97,115,107,84,101,120,116,117,114,101,83,105,122,101,48,0,0,0,6,0,8,0,185,0,0,0,4,0,0,0,117,67,111,108,111,114,84,101,120,116,117,114,101,83,105,122,101,48,0,0,6,0,8,0,185,0,0,0,5,0,0,0,117,70,114,97,109,101,98,117,102,102,101,114,83,105,122,101,0,0,0,0,6,0,6,0,185,0,0,0,6,0,0,0,117,84,114,97,110,115,102,111,114,109,0,0,5,0,3,0,187,0,0,0,0,0,0,0,5,0,3,0,192,0,0,0,122,85,86,0,5,0,4,0,202,0,0,0,122,86,97,108,117,101,0,0,5,0,5,0,203,0,0,0,117,90,66,117,102,102,101,114,0,0,0,0,5,0,5,0,209,0,0,0,97,80,97,116,104,73,110,100,101,120,0,0,5,0,6,0,234,0,0,0,103,108,95,80,101,114,86,101,114,116,101,120,0,0,0,0,6,0,6,0,234,0,0,0,0,0,0,0,103,108,95,80,111,115,105,116,105,111,110,0,6,0,7,0,234,0,0,0,1,0,0,0,103,108,95,80,111,105,110,116,83,105,122,101,0,0,0,0,5,0,3,0,236,0,0,0,0,0,0,0,5,0,6,0,242,0,0,0,109,97,115,107,84,105,108,101,67,111,111,114,100,0,0,0,5,0,6,0,245,0,0,0,97,77,97,115,107,84,101,120,67,111,111,114,100,48,0,0,5,0,6,0,1,1,0,0,109,97,115,107,84,101,120,67,111,111,114,100,48,0,0,0,5,0,6,0,9,1,0,0,97,67,116,114,108,66,97,99,107,100,114,111,112,0,0,0,5,0,6,0,23,1,0,0,97,77,101,116,97,100,97,116,97,73,110,100,101,120,0,0,5,0,7,0,24,1,0,0,117,84,101,120,116,117,114,101,77,101,116,97,100,97,116,97,0,0,0,0,5,0,6,0,26,1,0,0,118,67,111,108,111,114,84,101,120,67,111,111,114,100,48,0,5,0,5,0,27,1,0,0,118,66,97,115,101,67,111,108,111,114,0,0,5,0,6,0,28,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,48,0,0,5,0,6,0,29,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,49,0,0,5,0,6,0,30,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,50,0,0,5,0,6,0,31,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,51,0,0,5,0,6,0,32,1,0,0,118,70,105,108,116,101,114,80,97,114,97,109,115,52,0,0,5,0,4,0,33,1,0,0,99,116,114,108,0,0,0,0,5,0,4,0,34,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,36,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,38,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,41,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,42,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,43,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,44,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,45,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,46,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,47,1,0,0,112,97,114,97,109,0,0,0,5,0,4,0,48,1,0,0,112,97,114,97,109,0,0,0,5,0,5,0,59,1,0,0,118,84,105,108,101,67,116,114,108,0,0,0,5,0,4,0,63,1,0,0,118,67,116,114,108,0,0,0,5,0,6,0,68,1,0,0,118,77,97,115,107,84,101,120,67,111,111,114,100,48,0,0,71,0,4,0,171,0,0,0,30,0,0,0,1,0,0,0,71,0,4,0,177,0,0,0,30,0,0,0,0,0,0,0,72,0,5,0,185,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,72,0,5,0,185,0,0,0,1,0,0,0,35,0,0,0,8,0,0,0,72,0,5,0,185,0,0,0,2,0,0,0,35,0,0,0,16,0,0,0,72,0,5,0,185,0,0,0,3,0,0,0,35,0,0,0,24,0,0,0,72,0,5,0,185,0,0,0,4,0,0,0,35,0,0,0,32,0,0,0,72,0,5,0,185,0,0,0,5,0,0,0,35,0,0,0,40,0,0,0,72,0,4,0,185,0,0,0,6,0,0,0,5,0,0,0,72,0,5,0,185,0,0,0,6,0,0,0,35,0,0,0,48,0,0,0,72,0,5,0,185,0,0,0,6,0,0,0,7,0,0,0,16,0,0,0,71,0,3,0,185,0,0,0,2,0,0,0,71,0,4,0,187,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,187,0,0,0,33,0,0,0,2,0,0,0,71,0,4,0,203,0,0,0,34,0,0,0,0,0,0,0,71,0,4,0,203,0,0,0,33,0,0,0,1,0,0,0,71,0,4,0,209,0,0,0,30,0,0,0,4,0,0,0,72,0,5,0,234,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,5,0,234,0,0,0,1,0,0,0,11,0,0,0,1,0,0,0,71,0,3,0,234,0,0,0,2,0,0,0,71,0,4,0,245,0,0,0,30,0,0,0,2,0,0,0,71,0,4,0,9,1,0,0,30,0,0,0,3,0,0,0,71,0,4,0,23,1,0,0,30,0,0,0,5,0,0,0,71,0,4,0,24,1,0,0,34,0,0,0,0,0,0,0,71,0,4,0,24,1,0,0,33,0,0,0,0,0,0,0,71,0,4,0,26,1,0,0,30,0,0,0,1,0,0,0,71,0,4,0,27,1,0,0,30,0,0,0,2,0,0,0,71,0,4,0,28,1,0,0,30,0,0,0,4,0,0,0,71,0,4,0,29,1,0,0,30,0,0,0,5,0,0,0,71,0,4,0,30,1,0,0,30,0,0,0,6,0,0,0,71,0,4,0,31,1,0,0,30,0,0,0,7,0,0,0,71,0,4,0,32,1,0,0,30,0,0,0,8,0,0,0,71,0,4,0,59,1,0,0,30,0,0,0,3,0,0,0,71,0,4,0,63,1,0,0,30,0,0,0,9,0,0,0,71,0,4,0,68,1,0,0,30,0,0,0,0,0,0,0,19,0,2,0,2,0,0,0,33,0,3,0,3,0,0,0,2,0,0,0,22,0,3,0,6,0,0,0,32,0,0,0,25,0,9,0,7,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,27,0,3,0,8,0,0,0,7,0,0,0,32,0,4,0,9,0,0,0,0,0,0,0,8,0,0,0,23,0,4,0,10,0,0,0,6,0,0,0,2,0,0,0,32,0,4,0,11,0,0,0,7,0,0,0,10,0,0,0,21,0,4,0,12,0,0,0,32,0,0,0,1,0,0,0,32,0,4,0,13,0,0,0,7,0,0,0,12,0,0,0,23,0,4,0,14,0,0,0,6,0,0,0,4,0,0,0,33,0,7,0,15,0,0,0,14,0,0,0,9,0,0,0,11,0,0,0,11,0,0,0,13,0,0,0,21,0,4,0,22,0,0,0,32,0,0,0,0,0,0,0,32,0,4,0,23,0,0,0,7,0,0,0,22,0,0,0,32,0,4,0,24,0,0,0,7,0,0,0,14,0,0,0,33,0,15,0,25,0,0,0,2,0,0,0,11,0,0,0,23,0,0,0,9,0,0,0,11,0,0,0,11,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,24,0,0,0,13,0,0,0,43,0,4,0,6,0,0,0,42,0,0,0,0,0,0,63,44,0,5,0,10,0,0,0,43,0,0,0,42,0,0,0,42,0,0,0,43,0,4,0,6,0,0,0,47,0,0,0,0,0,0,0,43,0,4,0,6,0,0,0,56,0,0,0,0,0,128,63,44,0,5,0,10,0,0,0,57,0,0,0,56,0,0,0,56,0,0,0,43,0,4,0,22,0,0,0,62,0,0,0,128,0,0,0,43,0,4,0,22,0,0,0,64,0,0,0,10,0,0,0,43,0,4,0,12,0,0,0,72,0,0,0,0,0,0,0,43,0,4,0,12,0,0,0,80,0,0,0,1,0,0,0,43,0,4,0,12,0,0,0,88,0,0,0,2,0,0,0,43,0,4,0,12,0,0,0,96,0,0,0,3,0,0,0,43,0,4,0,12,0,0,0,104,0,0,0,4,0,0,0,43,0,4,0,12,0,0,0,112,0,0,0,5,0,0,0,43,0,4,0,12,0,0,0,120,0,0,0,6,0,0,0,43,0,4,0,12,0,0,0,128,0,0,0,7,0,0,0,43,0,4,0,12,0,0,0,136,0,0,0,8,0,0,0,24,0,4,0,144,0,0,0,10,0,0,0,2,0,0,0,43,0,4,0,22,0,0,0,163,0,0,0,0,0,0,0,32,0,4,0,164,0,0,0,7,0,0,0,6,0,0,0,23,0,4,0,169,0,0,0,12,0,0,0,2,0,0,0,32,0,4,0,170,0,0,0,1,0,0,0,169,0,0,0,59,0,4,0,170,0,0,0,171,0,0,0,1,0,0,0,23,0,4,0,175,0,0,0,22,0,0,0,2,0,0,0,32,0,4,0,176,0,0,0,1,0,0,0,175,0,0,0,59,0,4,0,176,0,0,0,177,0,0,0,1,0,0,0,24,0,4,0,184,0,0,0,14,0,0,0,4,0,0,0,30,0,9,0,185,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,184,0,0,0,32,0,4,0,186,0,0,0,2,0,0,0,185,0,0,0,59,0,4,0,186,0,0,0,187,0,0,0,2,0,0,0,32,0,4,0,188,0,0,0,2,0,0,0,10,0,0,0,43,0,4,0,6,0,0,0,198,0,0,0,0,0,127,67,23,0,4,0,200,0,0,0,12,0,0,0,4,0,0,0,32,0,4,0,201,0,0,0,7,0,0,0,200,0,0,0,59,0,4,0,9,0,0,0,203,0,0,0,0,0,0,0,32,0,4,0,208,0,0,0,1,0,0,0,12,0,0,0,59,0,4,0,208,0,0,0,209,0,0,0,1,0,0,0,43,0,4,0,22,0,0,0,213,0,0,0,1,0,0,0,43,0,4,0,22,0,0,0,218,0,0,0,2,0,0,0,43,0,4,0,12,0,0,0,221,0,0,0,16,0,0,0,43,0,4,0,22,0,0,0,224,0,0,0,3,0,0,0,43,0,4,0,12,0,0,0,227,0,0,0,24,0,0,0,20,0,2,0,230,0,0,0,30,0,4,0,234,0,0,0,14,0,0,0,6,0,0,0,32,0,4,0,235,0,0,0,3,0,0,0,234,0,0,0,59,0,4,0,235,0,0,0,236,0,0,0,3,0,0,0,44,0,7,0,14,0,0,0,237,0,0,0,47,0,0,0,47,0,0,0,47,0,0,0,47,0,0,0,32,0,4,0,238,0,0,0,3,0,0,0,14,0,0,0,32,0,4,0,241,0,0,0,7,0,0,0,175,0,0,0,23,0,4,0,243,0,0,0,22,0,0,0,4,0,0,0,32,0,4,0,244,0,0,0,1,0,0,0,243,0,0,0,59,0,4,0,244,0,0,0,245,0,0,0,1,0,0,0,32,0,4,0,246,0,0,0,1,0,0,0,22,0,0,0,43,0,4,0,22,0,0,0,251,0,0,0,0,1,0,0,59,0,4,0,170,0,0,0,9,1,0,0,1,0,0,0,59,0,4,0,246,0,0,0,23,1,0,0,1,0,0,0,59,0,4,0,9,0,0,0,24,1,0,0,0,0,0,0,32,0,4,0,25,1,0,0,3,0,0,0,10,0,0,0,59,0,4,0,25,1,0,0,26,1,0,0,3,0,0,0,59,0,4,0,238,0,0,0,27,1,0,0,3,0,0,0,59,0,4,0,238,0,0,0,28,1,0,0,3,0,0,0,59,0,4,0,238,0,0,0,29,1,0,0,3,0,0,0,59,0,4,0,238,0,0,0,30,1,0,0,3,0,0,0,59,0,4,0,238,0,0,0,31,1,0,0,3,0,0,0,59,0,4,0,238,0,0,0,32,1,0,0,3,0,0,0,32,0,4,0,58,1,0,0,3,0,0,0,6,0,0,0,59,0,4,0,58,1,0,0,59,1,0,0,3,0,0,0,59,0,4,0,58,1,0,0,63,1,0,0,3,0,0,0,23,0,4,0,66,1,0,0,6,0,0,0,3,0,0,0,32,0,4,0,67,1,0,0,3,0,0,0,66,1,0,0,59,0,4,0,67,1,0,0,68,1,0,0,3,0,0,0,32,0,4,0,76,1,0,0,2,0,0,0,184,0,0,0,54,0,5,0,2,0,0,0,4,0,0,0,0,0,0,0,3,0,0,0,248,0,2,0,5,0,0,0,59,0,4,0,11,0,0,0,168,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,174,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,180,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,192,0,0,0,7,0,0,0,59,0,4,0,201,0,0,0,202,0,0,0,7,0,0,0,59,0,4,0,241,0,0,0,242,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,1,1,0,0,7,0,0,0,59,0,4,0,13,0,0,0,33,1,0,0,7,0,0,0,59,0,4,0,11,0,0,0,34,1,0,0,7,0,0,0,59,0,4,0,23,0,0,0,36,1,0,0,7,0,0,0,59,0,4,0,11,0,0,0,38,1,0,0,7,0,0,0,59,0,4,0,11,0,0,0,41,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,42,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,43,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,44,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,45,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,46,1,0,0,7,0,0,0,59,0,4,0,24,0,0,0,47,1,0,0,7,0,0,0,59,0,4,0,13,0,0,0,48,1,0,0,7,0,0,0,61,0,4,0,169,0,0,0,172,0,0,0,171,0,0,0,111,0,4,0,10,0,0,0,173,0,0,0,172,0,0,0,62,0,3,0,168,0,0,0,173,0,0,0,61,0,4,0,175,0,0,0,178,0,0,0,177,0,0,0,112,0,4,0,10,0,0,0,179,0,0,0,178,0,0,0,62,0,3,0,174,0,0,0,179,0,0,0,61,0,4,0,10,0,0,0,181,0,0,0,168,0,0,0,61,0,4,0,10,0,0,0,182,0,0,0,174,0,0,0,129,0,5,0,10,0,0,0,183,0,0,0,181,0,0,0,182,0,0,0,65,0,5,0,188,0,0,0,189,0,0,0,187,0,0,0,72,0,0,0,61,0,4,0,10,0,0,0,190,0,0,0,189,0,0,0,133,0,5,0,10,0,0,0,191,0,0,0,183,0,0,0,190,0,0,0,62,0,3,0,180,0,0,0,191,0,0,0,61,0,4,0,10,0,0,0,193,0,0,0,168,0,0,0,129,0,5,0,10,0,0,0,194,0,0,0,193,0,0,0,43,0,0,0,65,0,5,0,188,0,0,0,195,0,0,0,187,0,0,0,88,0,0,0,61,0,4,0,10,0,0,0,196,0,0,0,195,0,0,0,136,0,5,0,10,0,0,0,197,0,0,0,194,0,0,0,196,0,0,0,142,0,5,0,10,0,0,0,199,0,0,0,197,0,0,0,198,0,0,0,62,0,3,0,192,0,0,0,199,0,0,0,61,0,4,0,8,0,0,0,204,0,0,0,203,0,0,0,61,0,4,0,10,0,0,0,205,0,0,0,192,0,0,0,88,0,7,0,14,0,0,0,206,0,0,0,204,0,0,0,205,0,0,0,2,0,0,0,47,0,0,0,110,0,4,0,200,0,0,0,207,0,0,0,206,0,0,0,62,0,3,0,202,0,0,0,207,0,0,0,61,0,4,0,12,0,0,0,210,0,0,0,209,0,0,0,65,0,5,0,13,0,0,0,211,0,0,0,202,0,0,0,163,0,0,0,61,0,4,0,12,0,0,0,212,0,0,0,211,0,0,0,65,0,5,0,13,0,0,0,214,0,0,0,202,0,0,0,213,0,0,0,61,0,4,0,12,0,0,0,215,0,0,0,214,0,0,0,196,0,5,0,12,0,0,0,216,0,0,0,215,0,0,0,136,0,0,0,197,0,5,0,12,0,0,0,217,0,0,0,212,0,0,0,216,0,0,0,65,0,5,0,13,0,0,0,219,0,0,0,202,0,0,0,218,0,0,0,61,0,4,0,12,0,0,0,220,0,0,0,219,0,0,0,196,0,5,0,12,0,0,0,222,0,0,0,220,0,0,0,221,0,0,0,197,0,5,0,12,0,0,0,223,0,0,0,217,0,0,0,222,0,0,0,65,0,5,0,13,0,0,0,225,0,0,0,202,0,0,0,224,0,0,0,61,0,4,0,12,0,0,0,226,0,0,0,225,0,0,0,196,0,5,0,12,0,0,0,228,0,0,0,226,0,0,0,227,0,0,0,197,0,5,0,12,0,0,0,229,0,0,0,223,0,0,0,228,0,0,0,177,0,5,0,230,0,0,0,231,0,0,0,210,0,0,0,229,0,0,0,247,0,3,0,233,0,0,0,0,0,0,0,250,0,4,0,231,0,0,0,232,0,0,0,233,0,0,0,248,0,2,0,232,0,0,0,65,0,5,0,238,0,0,0,239,0,0,0,236,0,0,0,72,0,0,0,62,0,3,0,239,0,0,0,237,0,0,0,253,0,1,0,248,0,2,0,233,0,0,0,65,0,5,0,246,0,0,0,247,0,0,0,245,0,0,0,163,0,0,0,61,0,4,0,22,0,0,0,248,0,0,0,247,0,0,0,65,0,5,0,246,0,0,0,249,0,0,0,245,0,0,0,213,0,0,0,61,0,4,0,22,0,0,0,250,0,0,0,249,0,0,0,65,0,5,0,246,0,0,0,252,0,0,0,245,0,0,0,218,0,0,0,61,0,4,0,22,0,0,0,253,0,0,0,252,0,0,0,132,0,5,0,22,0,0,0,254,0,0,0,251,0,0,0,253,0,0,0,128,0,5,0,22,0,0,0,255,0,0,0,250,0,0,0,254,0,0,0,80,0,5,0,175,0,0,0,0,1,0,0,248,0,0,0,255,0,0,0,62,0,3,0,242,0,0,0,0,1,0,0,61,0,4,0,175,0,0,0,2,1,0,0,242,0,0,0,112,0,4,0,10,0,0,0,3,1,0,0,2,1,0,0,61,0,4,0,10,0,0,0,4,1,0,0,174,0,0,0,129,0,5,0,10,0,0,0,5,1,0,0,3,1,0,0,4,1,0,0,65,0,5,0,188,0,0,0,6,1,0,0,187,0,0,0,72,0,0,0,61,0,4,0,10,0,0,0,7,1,0,0,6,1,0,0,133,0,5,0,10,0,0,0,8,1,0,0,5,1,0,0,7,1,0,0,62,0,3,0,1,1,0,0,8,1,0,0,65,0,5,0,208,0,0,0,10,1,0,0,9,1,0,0,213,0,0,0,61,0,4,0,12,0,0,0,11,1,0,0,10,1,0,0,170,0,5,0,230,0,0,0,12,1,0,0,11,1,0,0,72,0,0,0,247,0,3,0,14,1,0,0,0,0,0,0,250,0,4,0,12,1,0,0,13,1,0,0,14,1,0,0,248,0,2,0,13,1,0,0,65,0,5,0,246,0,0,0,15,1,0,0,245,0,0,0,224,0,0,0,61,0,4,0,22,0,0,0,16,1,0,0,15,1,0,0,171,0,5,0,230,0,0,0,17,1,0,0,16,1,0,0,163,0,0,0,249,0,2,0,14,1,0,0,248,0,2,0,14,1,0,0,245,0,7,0,230,0,0,0,18,1,0,0,12,1,0,0,233,0,0,0,17,1,0,0,13,1,0,0,247,0,3,0,20,1,0,0,0,0,0,0,250,0,4,0,18,1,0,0,19,1,0,0,20,1,0,0,248,0,2,0,19,1,0,0,65,0,5,0,238,0,0,0,21,1,0,0,236,0,0,0,72,0,0,0,62,0,3,0,21,1,0,0,237,0,0,0,253,0,1,0,248,0,2,0,20,1,0,0,61,0,4,0,10,0,0,0,35,1,0,0,180,0,0,0,62,0,3,0,34,1,0,0,35,1,0,0,61,0,4,0,22,0,0,0,37,1,0,0,23,1,0,0,62,0,3,0,36,1,0,0,37,1,0,0,65,0,5,0,188,0,0,0,39,1,0,0,187,0,0,0,80,0,0,0,61,0,4,0,10,0,0,0,40,1,0,0,39,1,0,0,62,0,3,0,38,1,0,0,40,1,0,0,57,0,16,0,2,0,0,0,49,1,0,0,38,0,0,0,34,1,0,0,36,1,0,0,24,1,0,0,38,1,0,0,41,1,0,0,42,1,0,0,43,1,0,0,44,1,0,0,45,1,0,0,46,1,0,0,47,1,0,0,48,1,0,0,61,0,4,0,10,0,0,0,50,1,0,0,41,1,0,0,62,0,3,0,26,1,0,0,50,1,0,0,61,0,4,0,14,0,0,0,51,1,0,0,42,1,0,0,62,0,3,0,27,1,0,0,51,1,0,0,61,0,4,0,14,0,0,0,52,1,0,0,43,1,0,0,62,0,3,0,28,1,0,0,52,1,0,0,61,0,4,0,14,0,0,0,53,1,0,0,44,1,0,0,62,0,3,0,29,1,0,0,53,1,0,0,61,0,4,0,14,0,0,0,54,1,0,0,45,1,0,0,62,0,3,0,30,1,0,0,54,1,0,0,61,0,4,0,14,0,0,0,55,1,0,0,46,1,0,0,62,0,3,0,31,1,0,0,55,1,0,0,61,0,4,0,14,0,0,0,56,1,0,0,47,1,0,0,62,0,3,0,32,1,0,0,56,1,0,0,61,0,4,0,12,0,0,0,57,1,0,0,48,1,0,0,62,0,3,0,33,1,0,0,57,1,0,0,65,0,5,0,208,0,0,0,60,1,0,0,9,1,0,0,163,0,0,0,61,0,4,0,12,0,0,0,61,1,0,0,60,1,0,0,111,0,4,0,6,0,0,0,62,1,0,0,61,1,0,0,62,0,3,0,59,1,0,0,62,1,0,0,61,0,4,0,12,0,0,0,64,1,0,0,33,1,0,0,111,0,4,0,6,0,0,0,65,1,0,0,64,1,0,0,62,0,3,0,63,1,0,0,65,1,0,0,61,0,4,0,10,0,0,0,69,1,0,0,1,1,0,0,65,0,5,0,208,0,0,0,70,1,0,0,9,1,0,0,213,0,0,0,61,0,4,0,12,0,0,0,71,1,0,0,70,1,0,0,111,0,4,0,6,0,0,0,72,1,0,0,71,1,0,0,81,0,5,0,6,0,0,0,73,1,0,0,69,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,74,1,0,0,69,1,0,0,1,0,0,0,80,0,6,0,66,1,0,0,75,1,0,0,73,1,0,0,74,1,0,0,72,1,0,0,62,0,3,0,68,1,0,0,75,1,0,0,65,0,5,0,76,1,0,0,77,1,0,0,187,0,0,0,120,0,0,0,61,0,4,0,184,0,0,0,78,1,0,0,77,1,0,0,61,0,4,0,10,0,0,0,79,1,0,0,180,0,0,0,81,0,5,0,6,0,0,0,80,1,0,0,79,1,0,0,0,0,0,0,81,0,5,0,6,0,0,0,81,1,0,0,79,1,0,0,1,0,0,0,80,0,7,0,14,0,0,0,82,1,0,0,80,1,0,0,81,1,0,0,47,0,0,0,56,0,0,0,145,0,5,0,14,0,0,0,83,1,0,0,78,1,0,0,82,1,0,0,65,0,5,0,238,0,0,0,84,1,0,0,236,0,0,0,72,0,0,0,62,0,3,0,84,1,0,0,83,1,0,0,253,0,1,0,56,0,1,0,54,0,5,0,14,0,0,0,20,0,0,0,0,0,0,0,15,0,0,0,55,0,3,0,9,0,0,0,16,0,0,0,55,0,3,0,11,0,0,0,17,0,0,0,55,0,3,0,11,0,0,0,18,0,0,0,55,0,3,0,13,0,0,0,19,0,0,0,248,0,2,0,21,0,0,0,61,0,4,0,8,0,0,0,40,0,0,0,16,0,0,0,61,0,4,0,10,0,0,0,41,0,0,0,18,0,0,0,129,0,5,0,10,0,0,0,44,0,0,0,41,0,0,0,43,0,0,0,61,0,4,0,12,0,0,0,45,0,0,0,19,0,0,0,111,0,4,0,6,0,0,0,46,0,0,0,45,0,0,0,80,0,5,0,10,0,0,0,48,0,0,0,46,0,0,0,47,0,0,0,129,0,5,0,10,0,0,0,49,0,0,0,44,0,0,0,48,0,0,0,61,0,4,0,10,0,0,0,50,0,0,0,17,0,0,0,133,0,5,0,10,0,0,0,51,0,0,0,49,0,0,0,50,0,0,0,88,0,7,0,14,0,0,0,52,0,0,0,40,0,0,0,51,0,0,0,2,0,0,0,47,0,0,0,254,0,2,0,52,0,0,0,56,0,1,0,54,0,5,0,2,0,0,0,38,0,0,0,0,0,0,0,25,0,0,0,55,0,3,0,11,0,0,0,26,0,0,0,55,0,3,0,23,0,0,0,27,0,0,0,55,0,3,0,9,0,0,0,28,0,0,0,55,0,3,0,11,0,0,0,29,0,0,0,55,0,3,0,11,0,0,0,30,0,0,0,55,0,3,0,24,0,0,0,31,0,0,0,55,0,3,0,24,0,0,0,32,0,0,0,55,0,3,0,24,0,0,0,33,0,0,0,55,0,3,0,24,0,0,0,34,0,0,0,55,0,3,0,24,0,0,0,35,0,0,0,55,0,3,0,24,0,0,0,36,0,0,0,55,0,3,0,13,0,0,0,37,0,0,0,248,0,2,0,39,0,0,0,59,0,4,0,11,0,0,0,55,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,60,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,71,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,73,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,75,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,77,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,79,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,81,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,83,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,85,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,87,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,89,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,91,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,93,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,95,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,97,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,99,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,101,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,103,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,105,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,107,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,109,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,111,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,113,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,115,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,117,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,119,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,121,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,123,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,125,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,127,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,129,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,131,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,133,0,0,0,7,0,0,0,59,0,4,0,24,0,0,0,135,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,137,0,0,0,7,0,0,0,59,0,4,0,11,0,0,0,139,0,0,0,7,0,0,0,59,0,4,0,13,0,0,0,141,0,0,0,7,0,0,0,61,0,4,0,10,0,0,0,58,0,0,0,29,0,0,0,136,0,5,0,10,0,0,0,59,0,0,0,57,0,0,0,58,0,0,0,62,0,3,0,55,0,0,0,59,0,0,0,61,0,4,0,22,0,0,0,61,0,0,0,27,0,0,0,137,0,5,0,22,0,0,0,63,0,0,0,61,0,0,0,62,0,0,0,132,0,5,0,22,0,0,0,65,0,0,0,63,0,0,0,64,0,0,0,112,0,4,0,6,0,0,0,66,0,0,0,65,0,0,0,61,0,4,0,22,0,0,0,67,0,0,0,27,0,0,0,134,0,5,0,22,0,0,0,68,0,0,0,67,0,0,0,62,0,0,0,112,0,4,0,6,0,0,0,69,0,0,0,68,0,0,0,80,0,5,0,10,0,0,0,70,0,0,0,66,0,0,0,69,0,0,0,62,0,3,0,60,0,0,0,70,0,0,0,61,0,4,0,10,0,0,0,74,0,0,0,55,0,0,0,62,0,3,0,73,0,0,0,74,0,0,0,61,0,4,0,10,0,0,0,76,0,0,0,60,0,0,0,62,0,3,0,75,0,0,0,76,0,0,0,62,0,3,0,77,0,0,0,72,0,0,0,57,0,8,0,14,0,0,0,78,0,0,0,20,0,0,0,28,0,0,0,73,0,0,0,75,0,0,0,77,0,0,0,62,0,3,0,71,0,0,0,78,0,0,0,61,0,4,0,10,0,0,0,82,0,0,0,55,0,0,0,62,0,3,0,81,0,0,0,82,0,0,0,61,0,4,0,10,0,0,0,84,0,0,0,60,0,0,0,62,0,3,0,83,0,0,0,84,0,0,0,62,0,3,0,85,0,0,0,80,0,0,0,57,0,8,0,14,0,0,0,86,0,0,0,20,0,0,0,28,0,0,0,81,0,0,0,83,0,0,0,85,0,0,0,62,0,3,0,79,0,0,0,86,0,0,0,61,0,4,0,10,0,0,0,90,0,0,0,55,0,0,0,62,0,3,0,89,0,0,0,90,0,0,0,61,0,4,0,10,0,0,0,92,0,0,0,60,0,0,0,62,0,3,0,91,0,0,0,92,0,0,0,62,0,3,0,93,0,0,0,88,0,0,0,57,0,8,0,14,0,0,0,94,0,0,0,20,0,0,0,28,0,0,0,89,0,0,0,91,0,0,0,93,0,0,0,62,0,3,0,87,0,0,0,94,0,0,0,61,0,4,0,10,0,0,0,98,0,0,0,55,0,0,0,62,0,3,0,97,0,0,0,98,0,0,0,61,0,4,0,10,0,0,0,100,0,0,0,60,0,0,0,62,0,3,0,99,0,0,0,100,0,0,0,62,0,3,0,101,0,0,0,96,0,0,0,57,0,8,0,14,0,0,0,102,0,0,0,20,0,0,0,28,0,0,0,97,0,0,0,99,0,0,0,101,0,0,0,62,0,3,0,95,0,0,0,102,0,0,0,61,0,4,0,10,0,0,0,106,0,0,0,55,0,0,0,62,0,3,0,105,0,0,0,106,0,0,0,61,0,4,0,10,0,0,0,108,0,0,0,60,0,0,0,62,0,3,0,107,0,0,0,108,0,0,0,62,0,3,0,109,0,0,0,104,0,0,0,57,0,8,0,14,0,0,0,110,0,0,0,20,0,0,0,28,0,0,0,105,0,0,0,107,0,0,0,109,0,0,0,62,0,3,0,103,0,0,0,110,0,0,0,61,0,4,0,10,0,0,0,114,0,0,0,55,0,0,0,62,0,3,0,113,0,0,0,114,0,0,0,61,0,4,0,10,0,0,0,116,0,0,0,60,0,0,0,62,0,3,0,115,0,0,0,116,0,0,0,62,0,3,0,117,0,0,0,112,0,0,0,57,0,8,0,14,0,0,0,118,0,0,0,20,0,0,0,28,0,0,0,113,0,0,0,115,0,0,0,117,0,0,0,62,0,3,0,111,0,0,0,118,0,0,0,61,0,4,0,10,0,0,0,122,0,0,0,55,0,0,0,62,0,3,0,121,0,0,0,122,0,0,0,61,0,4,0,10,0,0,0,124,0,0,0,60,0,0,0,62,0,3,0,123,0,0,0,124,0,0,0,62,0,3,0,125,0,0,0,120,0,0,0,57,0,8,0,14,0,0,0,126,0,0,0,20,0,0,0,28,0,0,0,121,0,0,0,123,0,0,0,125,0,0,0,62,0,3,0,119,0,0,0,126,0,0,0,61,0,4,0,10,0,0,0,130,0,0,0,55,0,0,0,62,0,3,0,129,0,0,0,130,0,0,0,61,0,4,0,10,0,0,0,132,0,0,0,60,0,0,0,62,0,3,0,131,0,0,0,132,0,0,0,62,0,3,0,133,0,0,0,128,0,0,0,57,0,8,0,14,0,0,0,134,0,0,0,20,0,0,0,28,0,0,0,129,0,0,0,131,0,0,0,133,0,0,0,62,0,3,0,127,0,0,0,134,0,0,0,61,0,4,0,10,0,0,0,138,0,0,0,55,0,0,0,62,0,3,0,137,0,0,0,138,0,0,0,61,0,4,0,10,0,0,0,140,0,0,0,60,0,0,0,62,0,3,0,139,0,0,0,140,0,0,0,62,0,3,0,141,0,0,0,136,0,0,0,57,0,8,0,14,0,0,0,142,0,0,0,20,0,0,0,28,0,0,0,137,0,0,0,139,0,0,0,141,0,0,0,62,0,3,0,135,0,0,0,142,0,0,0,61,0,4,0,14,0,0,0,143,0,0,0,71,0,0,0,81,0,5,0,6,0,0,0,145,0,0,0,143,0,0,0,0,0,0,0,81,0,5,0,6,0,0,0,146,0,0,0,143,0,0,0,1,0,0,0,81,0,5,0,6,0,0,0,147,0,0,0,143,0,0,0,2,0,0,0,81,0,5,0,6,0,0,0,148,0,0,0,143,0,0,0,3,0,0,0,80,0,5,0,10,0,0,0,149,0,0,0,145,0,0,0,146,0,0,0,80,0,5,0,10,0,0,0,150,0,0,0,147,0,0,0,148,0,0,0,80,0,5,0,144,0,0,0,151,0,0,0,149,0,0,0,150,0,0,0,61,0,4,0,10,0,0,0,152,0,0,0,26,0,0,0,145,0,5,0,10,0,0,0,153,0,0,0,151,0,0,0,152,0,0,0,61,0,4,0,14,0,0,0,154,0,0,0,79,0,0,0,79,0,7,0,10,0,0,0,155,0,0,0,154,0,0,0,154,0,0,0,0,0,0,0,1,0,0,0,129,0,5,0,10,0,0,0,156,0,0,0,153,0,0,0,155,0,0,0,62,0,3,0,30,0,0,0,156,0,0,0,61,0,4,0,14,0,0,0,157,0,0,0,87,0,0,0,62,0,3,0,31,0,0,0,157,0,0,0,61,0,4,0,14,0,0,0,158,0,0,0,95,0,0,0,62,0,3,0,32,0,0,0,158,0,0,0,61,0,4,0,14,0,0,0,159,0,0,0,103,0,0,0,62,0,3,0,33,0,0,0,159,0,0,0,61,0,4,0,14,0,0,0,160,0,0,0,111,0,0,0,62,0,3,0,34,0,0,0,160,0,0,0,61,0,4,0,14,0,0,0,161,0,0,0,119,0,0,0,62,0,3,0,35,0,0,0,161,0,0,0,61,0,4,0,14,0,0,0,162,0,0,0,127,0,0,0,62,0,3,0,36,0,0,0,162,0,0,0,65,0,5,0,164,0,0,0,165,0,0,0,135,0,0,0,163,0,0,0,61,0,4,0,6,0,0,0,166,0,0,0,165,0,0,0,110,0,4,0,12,0,0,0,167,0,0,0,166,0,0,0,62,0,3,0,37,0,0,0,167,0,0,0,253,0,1,0,56,0,1,0}; } #endif //PATHFINDER_RESOURCE_TILE_VERT_SPV_H