hexsha stringlengths 40 40 | size int64 7 1.05M | ext stringclasses 13 values | lang stringclasses 1 value | max_stars_repo_path stringlengths 4 269 | max_stars_repo_name stringlengths 5 108 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count int64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 269 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 9 | max_issues_count int64 1 67k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 269 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 9 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 7 1.05M | avg_line_length float64 1.21 330k | max_line_length int64 6 990k | alphanum_fraction float64 0.01 0.99 | author_id stringlengths 2 40 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bc708c29b96285278c863a86f4af27e16236ea58 | 868 | cpp | C++ | clusters.cpp | paulyc/ExFATRestore | cda4e3d4213452e5d34af27cbcc3ce62c36a276d | [
"MIT"
] | 1 | 2019-08-04T15:44:46.000Z | 2019-08-04T15:44:46.000Z | clusters.cpp | paulyc/ExFATRestore | cda4e3d4213452e5d34af27cbcc3ce62c36a276d | [
"MIT"
] | null | null | null | clusters.cpp | paulyc/ExFATRestore | cda4e3d4213452e5d34af27cbcc3ce62c36a276d | [
"MIT"
] | null | null | null | #include <mariadb/mysql.h>
#include <string>
static const std::string sql_all_unaccounted = "SELECT cluster from cluster WHERE allocated = 0 order by cluster asc";
static const std::string sql_next_empty = "SELECT cluster FROM cluster WHERE allocated = 1 order by cluster asc limit 1";
int main() {
MYSQL_RES *res = nullptr;
MYSQL *mysql = mysql_init(nullptr), *mysql2 = mysql_init(nullptr);
//mysql_optionsv(mysql, MYSQL_READ_DEFAULT_FILE, nullptr);
mysql_real_connect(mysql, nullptr, "root", "root", "resurrex", 0, "/run/mysqld/mysqld.sock", 0);
mysql_real_query(mysql, sql_all_unaccounted.c_str(), sql_all_unaccounted.length());
for (;;) {
if (mysql_next_result(mysql)) {
break;
}
res = mysql_use_result(mysql);
res->fields->
}
while (!mysql_next_result_start(int *ret, MYSQL *mysql))
}
| 39.454545 | 121 | 0.685484 | paulyc |
bc721205ba0641d2c9af5dceaf265c880c2463da | 2,530 | hpp | C++ | include/NumCpp/Functions/extract.hpp | purusharths/NumCpp | 269b0ff1341b06480c9679285cb6c6c6843df06b | [
"MIT"
] | 2 | 2018-07-11T04:37:24.000Z | 2018-07-11T04:37:26.000Z | include/NumCpp/Functions/extract.hpp | BADBADBADBOY/NumCpp | 269b0ff1341b06480c9679285cb6c6c6843df06b | [
"MIT"
] | null | null | null | include/NumCpp/Functions/extract.hpp | BADBADBADBOY/NumCpp | 269b0ff1341b06480c9679285cb6c6c6843df06b | [
"MIT"
] | null | null | null | /// @file
/// @author David Pilger <dpilger26@gmail.com>
/// [GitHub Repository](https://github.com/dpilger26/NumCpp)
///
/// License
/// Copyright 2018-2022 David Pilger
///
/// Permission is hereby granted, free of charge, to any person obtaining a copy of this
/// software and associated documentation files(the "Software"), to deal in the Software
/// without restriction, including without limitation the rights to use, copy, modify,
/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
/// permit persons to whom the Software is furnished to do so, subject to the following
/// conditions :
///
/// The above copyright notice and this permission notice shall be included in all copies
/// or substantial portions of the Software.
///
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
/// DEALINGS IN THE SOFTWARE.
///
/// Description
/// Functions for working with NdArrays
///
#pragma once
#include "NumCpp/NdArray.hpp"
#include "NumCpp/Core/Internal/Error.hpp"
#include <vector>
namespace nc
{
//============================================================================
// Method Description:
/// Return the elements of an array that satisfy some condition.
///
/// NumPy Reference: https://numpy.org/doc/stable/reference/generated/numpy.extract.html
///
/// @param condition: An array whose nonzero or True entries indicate the elements of arr to extract.
/// @param arr: Input array of the same size as condition
/// @return NdArray
///
template<typename dtype>
NdArray<dtype> extract(const NdArray<bool>& condition, const NdArray<dtype>& arr)
{
if (condition.size() != arr.size())
{
THROW_INVALID_ARGUMENT_ERROR("Input arguments 'condition' and 'arr' must have the same size.");
}
std::vector<dtype> values;
for (decltype(arr.size()) i = 0; i < arr.size(); ++i)
{
if (condition[i])
{
values.push_back(arr[i]);
}
}
return NdArray<dtype>(values.begin(), values.end());
}
} // namespace nc
| 37.761194 | 107 | 0.655731 | purusharths |
bc721fea6903073d3e9e5e021effb0bbcc970db6 | 119 | hpp | C++ | src/agl/engine/triangle_mesh/all.hpp | the-last-willy/abstractgl | d685bef25ac18773d3eea48ca52806c3a3485ddb | [
"MIT"
] | null | null | null | src/agl/engine/triangle_mesh/all.hpp | the-last-willy/abstractgl | d685bef25ac18773d3eea48ca52806c3a3485ddb | [
"MIT"
] | null | null | null | src/agl/engine/triangle_mesh/all.hpp | the-last-willy/abstractgl | d685bef25ac18773d3eea48ca52806c3a3485ddb | [
"MIT"
] | null | null | null | #pragma once
#include "geometry/all.hpp"
#include "mesh/all.hpp"
#include "proxy/all.hpp"
#include "topology/all.hpp"
| 17 | 27 | 0.731092 | the-last-willy |
bc752ccaf7cf04d1f37178c8f1297c15ce9e4c2b | 17,174 | cpp | C++ | engine/renderers/vulkan/VulkanTexture.cpp | AeonGames/AeonEngine | 7676645db22d86f4f9008005038f674bd780641d | [
"Apache-2.0"
] | 17 | 2016-09-25T07:11:34.000Z | 2021-09-13T07:05:59.000Z | engine/renderers/vulkan/VulkanTexture.cpp | AeonGames/AeonEngine | 7676645db22d86f4f9008005038f674bd780641d | [
"Apache-2.0"
] | 8 | 2019-01-25T23:39:56.000Z | 2019-04-10T17:23:04.000Z | engine/renderers/vulkan/VulkanTexture.cpp | AeonGames/AeonEngine | 7676645db22d86f4f9008005038f674bd780641d | [
"Apache-2.0"
] | 4 | 2018-06-13T09:44:42.000Z | 2021-03-18T12:27:07.000Z | /*
Copyright (C) 2017-2021 Rodrigo Jose Hernandez Cordoba
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <sstream>
#include <limits>
#include <cstring>
#include <utility>
#include "VulkanTexture.h"
#include "VulkanRenderer.h"
#include "VulkanUtilities.h"
#include "aeongames/AeonEngine.h"
#include "aeongames/CRC.h"
#include "aeongames/Texture.h"
#include "aeongames/Utilities.h"
namespace AeonGames
{
VulkanTexture::VulkanTexture ( const VulkanRenderer& aVulkanRenderer, const Texture& aTexture ) :
mVulkanRenderer ( aVulkanRenderer ), mTexture{&aTexture}
{
VkImageCreateInfo image_create_info{};
image_create_info.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO;
image_create_info.pNext = nullptr;
image_create_info.flags = 0;
image_create_info.imageType = VK_IMAGE_TYPE_2D;
image_create_info.format = VK_FORMAT_R8G8B8A8_UNORM; // This field contains both format and type, calculate rather than hardcode
VkFormatProperties format_properties{};
vkGetPhysicalDeviceFormatProperties ( mVulkanRenderer.GetPhysicalDevice(), image_create_info.format, &format_properties );
image_create_info.extent.width = aTexture.GetWidth();
image_create_info.extent.height = aTexture.GetHeight();
image_create_info.extent.depth = 1;
image_create_info.mipLevels = 1;
image_create_info.arrayLayers = 1;
image_create_info.samples = VK_SAMPLE_COUNT_1_BIT;
image_create_info.tiling = VK_IMAGE_TILING_OPTIMAL;
image_create_info.usage = VK_IMAGE_USAGE_TRANSFER_DST_BIT | VK_IMAGE_USAGE_SAMPLED_BIT;
image_create_info.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
image_create_info.queueFamilyIndexCount = 0;
image_create_info.pQueueFamilyIndices = nullptr;
image_create_info.initialLayout = VK_IMAGE_LAYOUT_PREINITIALIZED;
if ( VkResult result = vkCreateImage ( mVulkanRenderer.GetDevice(), &image_create_info, nullptr, &mVkImage ) )
{
std::ostringstream stream;
stream << "Image creation failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
VkMemoryRequirements memory_requirements{};
vkGetImageMemoryRequirements ( mVulkanRenderer.GetDevice(), mVkImage, &memory_requirements );
VkMemoryAllocateInfo memory_allocate_info{};
memory_allocate_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
memory_allocate_info.pNext = nullptr;
memory_allocate_info.allocationSize = memory_requirements.size;
memory_allocate_info.memoryTypeIndex = mVulkanRenderer.FindMemoryTypeIndex ( memory_requirements.memoryTypeBits,
VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT );
if ( memory_allocate_info.memoryTypeIndex == std::numeric_limits<uint32_t>::max() )
{
throw std::runtime_error ( "Unable to find a suitable memory type index" );
}
if ( VkResult result = vkAllocateMemory ( mVulkanRenderer.GetDevice(), &memory_allocate_info, nullptr, &mVkDeviceMemory ) )
{
std::ostringstream stream;
stream << "Image Memory Allocation failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
if ( VkResult result = vkBindImageMemory ( mVulkanRenderer.GetDevice(), mVkImage, mVkDeviceMemory, 0 ) )
{
std::ostringstream stream;
stream << "Bind Image Memory failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
/// ----------------------------------------------------------------------------
mVkDescriptorImageInfo.imageLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
VkImageViewCreateInfo image_view_create_info = {};
image_view_create_info.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
image_view_create_info.image = mVkImage;
image_view_create_info.viewType = VK_IMAGE_VIEW_TYPE_2D;
image_view_create_info.format = VK_FORMAT_R8G8B8A8_UNORM;
image_view_create_info.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
image_view_create_info.subresourceRange.baseMipLevel = 0;
image_view_create_info.subresourceRange.levelCount = 1;
image_view_create_info.subresourceRange.baseArrayLayer = 0;
image_view_create_info.subresourceRange.layerCount = 1;
if ( VkResult result = vkCreateImageView ( mVulkanRenderer.GetDevice(), &image_view_create_info, nullptr, &mVkDescriptorImageInfo.imageView ) )
{
std::ostringstream stream;
stream << "Create Image View failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
/*-----------------------------------------------------------------*/
VkSamplerCreateInfo sampler_create_info{};
sampler_create_info.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO;
sampler_create_info.pNext = nullptr;
sampler_create_info.flags = 0;
sampler_create_info.magFilter = VK_FILTER_NEAREST;
sampler_create_info.minFilter = VK_FILTER_NEAREST;
sampler_create_info.mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST;
sampler_create_info.addressModeU = VK_SAMPLER_ADDRESS_MODE_REPEAT;
sampler_create_info.addressModeV = VK_SAMPLER_ADDRESS_MODE_REPEAT;
sampler_create_info.addressModeW = VK_SAMPLER_ADDRESS_MODE_REPEAT;
sampler_create_info.mipLodBias = 0.0f;
sampler_create_info.anisotropyEnable = VK_FALSE;
sampler_create_info.maxAnisotropy = 1.0f;
sampler_create_info.compareEnable = VK_FALSE;
sampler_create_info.compareOp = VK_COMPARE_OP_NEVER;
sampler_create_info.minLod = 0.0f;
sampler_create_info.maxLod = 1.0f;
sampler_create_info.borderColor = VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK;
sampler_create_info.unnormalizedCoordinates = VK_FALSE;
if ( VkResult result = vkCreateSampler ( mVulkanRenderer.GetDevice(), &sampler_create_info, nullptr, &mVkDescriptorImageInfo.sampler ) )
{
std::ostringstream stream;
stream << "Sampler creation failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
// -----------------------------
// Write Image
VkBuffer image_buffer{};
VkDeviceMemory image_buffer_memory{};
VkBufferCreateInfo buffer_create_info = {};
buffer_create_info.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO;
buffer_create_info.size = static_cast<size_t> ( aTexture.GetWidth() ) * static_cast<size_t> ( aTexture.GetHeight() ) * 4; /// @todo Use format and type as well as GetPixelSize()
buffer_create_info.usage = VK_BUFFER_USAGE_TRANSFER_SRC_BIT;
buffer_create_info.sharingMode = VK_SHARING_MODE_EXCLUSIVE;
if ( VkResult result = vkCreateBuffer ( mVulkanRenderer.GetDevice(), &buffer_create_info, nullptr, &image_buffer ) )
{
std::ostringstream stream;
stream << "Create Buffer failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
memset ( &memory_requirements, 0, sizeof ( VkMemoryRequirements ) );
vkGetBufferMemoryRequirements ( mVulkanRenderer.GetDevice(), image_buffer, &memory_requirements );
memset ( &memory_allocate_info, 0, sizeof ( VkMemoryAllocateInfo ) );
memory_allocate_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
memory_allocate_info.allocationSize = memory_requirements.size;
memory_allocate_info.memoryTypeIndex = mVulkanRenderer.FindMemoryTypeIndex ( memory_requirements.memoryTypeBits, VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT | VK_MEMORY_PROPERTY_HOST_COHERENT_BIT );
if ( VkResult result = vkAllocateMemory ( mVulkanRenderer.GetDevice(), &memory_allocate_info, nullptr, &image_buffer_memory ) )
{
std::ostringstream stream;
stream << "Allocate Memory failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
if ( VkResult result = vkBindBufferMemory ( mVulkanRenderer.GetDevice(), image_buffer, image_buffer_memory, 0 ) )
{
std::ostringstream stream;
stream << "Bind Buffer Memory failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
void* image_memory = nullptr;
if ( VkResult result = vkMapMemory ( mVulkanRenderer.GetDevice(), image_buffer_memory, 0, VK_WHOLE_SIZE, 0, &image_memory ) )
{
std::ostringstream stream;
stream << "Map Memory failed: ( " << GetVulkanResultString ( result ) << " )";
throw std::runtime_error ( stream.str().c_str() );
}
if ( aTexture.GetFormat() == Texture::Format::RGBA )
{
if ( aTexture.GetType() == Texture::Type::UNSIGNED_BYTE )
{
memcpy ( image_memory, aTexture.GetPixels().data(), aTexture.GetWidth() * aTexture.GetHeight() * GetPixelSize ( aTexture.GetFormat(), aTexture.GetType() ) );
}
else
{
// Is this a temporary fix?
/** @note This code and the one bellow for RGB is too redundant,
I do not want to have to add more and more cases for each format,
specially when Vulkan is so picky about what format it supports
and which one it doesn't.
So, perhaps support only RGBA and let the Image class
handle any conversions?
We'll have to see when it comes to handling compressed and
"hardware accelerated" formats.*/
const auto* read_pointer = reinterpret_cast<const uint16_t*> ( aTexture.GetPixels().data() );
auto* write_pointer = static_cast<uint8_t*> ( image_memory );
auto data_size = aTexture.GetWidth() * aTexture.GetHeight() * GetPixelSize ( aTexture.GetFormat(), aTexture.GetType() ) / 2;
for ( uint32_t i = 0; i < data_size; i += 4 )
{
write_pointer[i] = read_pointer[i] / 256;
write_pointer[i + 1] = read_pointer[i + 1] / 256;
write_pointer[i + 2] = read_pointer[i + 2] / 256;
write_pointer[i + 3] = read_pointer[i + 3] / 256;
}
}
}
else
{
if ( aTexture.GetType() == Texture::Type::UNSIGNED_BYTE )
{
const uint8_t* read_pointer = aTexture.GetPixels().data();
auto* write_pointer = static_cast<uint8_t*> ( image_memory );
auto data_size = aTexture.GetWidth() * aTexture.GetHeight() * GetPixelSize ( aTexture.GetFormat(), aTexture.GetType() );
for ( uint32_t i = 0; i < data_size; i += 3 )
{
write_pointer[0] = read_pointer[i];
write_pointer[1] = read_pointer[i + 1];
write_pointer[2] = read_pointer[i + 2];
write_pointer[3] = 255;
write_pointer += 4;
}
}
else
{
// Is this a temporary fix?
const auto* read_pointer = reinterpret_cast<const uint16_t*> ( aTexture.GetPixels().data() );
auto* write_pointer = static_cast<uint8_t*> ( image_memory );
auto data_size = aTexture.GetWidth() * aTexture.GetHeight() * GetPixelSize ( aTexture.GetFormat(), aTexture.GetType() ) / 2;
for ( uint32_t i = 0; i < data_size; i += 3 )
{
write_pointer[0] = read_pointer[i] / 256;
write_pointer[1] = read_pointer[i + 1] / 256;
write_pointer[2] = read_pointer[i + 2] / 256;
write_pointer[3] = 255;
write_pointer += 4;
}
}
}
vkUnmapMemory ( mVulkanRenderer.GetDevice(), image_buffer_memory );
//--------------------------------------------------------
// Transition Image Layout
VkCommandBuffer command_buffer = mVulkanRenderer.BeginSingleTimeCommands();
VkImageMemoryBarrier image_memory_barrier{};
image_memory_barrier.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER;
image_memory_barrier.oldLayout = VK_IMAGE_LAYOUT_PREINITIALIZED;
image_memory_barrier.newLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL;
image_memory_barrier.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
image_memory_barrier.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED;
image_memory_barrier.image = mVkImage;
image_memory_barrier.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
image_memory_barrier.subresourceRange.baseMipLevel = 0;
image_memory_barrier.subresourceRange.levelCount = 1;
image_memory_barrier.subresourceRange.baseArrayLayer = 0;
image_memory_barrier.subresourceRange.layerCount = 1;
image_memory_barrier.srcAccessMask = 0; //VK_ACCESS_HOST_WRITE_BIT;
image_memory_barrier.dstAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
vkCmdPipelineBarrier (
command_buffer,
VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT, VK_PIPELINE_STAGE_TRANSFER_BIT,
0,
0, nullptr,
0, nullptr,
1, &image_memory_barrier
);
VkBufferImageCopy buffer_image_copy{};
buffer_image_copy.bufferOffset = 0;
buffer_image_copy.bufferRowLength = 0;
buffer_image_copy.bufferImageHeight = 0;
buffer_image_copy.imageSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
buffer_image_copy.imageSubresource.mipLevel = 0;
buffer_image_copy.imageSubresource.baseArrayLayer = 0;
buffer_image_copy.imageSubresource.layerCount = 1;
buffer_image_copy.imageOffset = { 0, 0, 0 };
buffer_image_copy.imageExtent = { aTexture.GetWidth(), aTexture.GetHeight(), 1 };
vkCmdCopyBufferToImage ( command_buffer, image_buffer, mVkImage, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1, &buffer_image_copy );
image_memory_barrier.oldLayout = VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL;
image_memory_barrier.newLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
image_memory_barrier.srcAccessMask = VK_ACCESS_TRANSFER_WRITE_BIT;
image_memory_barrier.dstAccessMask = VK_ACCESS_SHADER_READ_BIT;
vkCmdPipelineBarrier (
command_buffer,
VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT | VK_PIPELINE_STAGE_VERTEX_SHADER_BIT,
0,
0, nullptr,
0, nullptr,
1, &image_memory_barrier
);
mVulkanRenderer.EndSingleTimeCommands ( command_buffer );
vkDestroyBuffer ( mVulkanRenderer.GetDevice(), image_buffer, nullptr );
vkFreeMemory ( mVulkanRenderer.GetDevice(), image_buffer_memory, nullptr );
}
VulkanTexture::VulkanTexture ( VulkanTexture&& aVulkanTexture ) :
mVulkanRenderer ( aVulkanTexture.mVulkanRenderer ), mTexture{aVulkanTexture.mTexture}
{
std::swap ( mVkImage, aVulkanTexture.mVkImage );
std::swap ( mVkDeviceMemory, aVulkanTexture.mVkDeviceMemory );
std::swap ( mVkDescriptorImageInfo, aVulkanTexture.mVkDescriptorImageInfo );
}
VulkanTexture::~VulkanTexture()
{
if ( mVkDescriptorImageInfo.sampler != VK_NULL_HANDLE )
{
vkDestroySampler ( mVulkanRenderer.GetDevice(), mVkDescriptorImageInfo.sampler, nullptr );
}
if ( mVkDescriptorImageInfo.imageView != VK_NULL_HANDLE )
{
vkDestroyImageView ( mVulkanRenderer.GetDevice(), mVkDescriptorImageInfo.imageView, nullptr );
}
if ( mVkImage != VK_NULL_HANDLE )
{
vkDestroyImage ( mVulkanRenderer.GetDevice(), mVkImage, nullptr );
}
if ( mVkDeviceMemory != VK_NULL_HANDLE )
{
vkFreeMemory ( mVulkanRenderer.GetDevice(), mVkDeviceMemory, nullptr );
}
}
const VkDescriptorImageInfo& VulkanTexture::GetDescriptorImageInfo() const
{
return mVkDescriptorImageInfo;
}
}
| 52.359756 | 199 | 0.652789 | AeonGames |
bc7679c121909d7cd61b06933823a641f9ba1bff | 4,846 | cpp | C++ | src/pressure_solver/1_cg_solver.cpp | NumerischeSimulation/FinalProject | a6dbb991241c45c0d83a6861726e4159156bdbbd | [
"MIT"
] | null | null | null | src/pressure_solver/1_cg_solver.cpp | NumerischeSimulation/FinalProject | a6dbb991241c45c0d83a6861726e4159156bdbbd | [
"MIT"
] | 5 | 2022-01-26T19:27:45.000Z | 2022-02-09T11:41:32.000Z | src/pressure_solver/1_cg_solver.cpp | NumerischeSimulation/FinalProject | a6dbb991241c45c0d83a6861726e4159156bdbbd | [
"MIT"
] | 3 | 2022-01-25T15:28:01.000Z | 2022-02-08T10:50:30.000Z | #include "1_cg_solver.h"
CGSolver::CGSolver(std::shared_ptr<Discretization> discretization, double epsilon, int maximumNumberOfIterations, bool outflowBottom, bool outflowTop, bool outflowLeft, bool outflowRight) :
PressureSolver(discretization, epsilon, maximumNumberOfIterations, outflowBottom, outflowTop, outflowLeft, outflowRight),
res({discretization_->nCells()[0],discretization_->nCells()[1]},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth())
{
}
void CGSolver::solve()
{
// variables
// used as in wikipedia, but with x -> p and p -> c for clarity
int n = discretization_->nCells()[0];
int m = discretization_->nCells()[1];
double alpha = 0;
double beta = 0;
double res_pow2_sum = 0;
double res_pow2_sum_updated = 0;
int iteration = 0;
FieldVariable res_pow2({n,m},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth());
FieldVariable c({n,m},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth());
FieldVariable Ac({n,m},
{discretization_->meshWidth()[0]/2., discretization_->meshWidth()[0]/2},
discretization_->meshWidth());
//cell size
double dy = discretization_->dy();
double dx = discretization_->dx();
double dx2 = pow(dx,2);
double dy2 = pow(dy,2);
// calculate the number of fluid cells
int nFluidCells = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
nFluidCells++;
}
}
}
// compute inital residual
calculateInitialResidual(); // TODO: how to correctly reference
// calculate r^2
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
res_pow2(i,j) = res(i,j) * res(i,j);
res_pow2_sum += res_pow2(i,j);
}
}
}
// TODO divide by number of fluid cells
while(iteration < maximumNumberOfIterations_)
{
// calculate alpha
double cAc = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
double pxx = (discretization_->p(i-1, j) - 2.0 *discretization_->p(i,j) + discretization_->p(i+1, j)) / (dx2);
double pyy = (discretization_->p(i, j-1) - 2.0 *discretization_->p(i,j) + discretization_->p(i, j+1)) / (dy2);
Ac(i,j) = pxx + pyy;
cAc += c(i,j) * Ac(i,j);
}
}
}
alpha = res_pow2_sum / cAc;
// calculate iterations for p and res
res_pow2_sum_updated = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
discretization_->p(i, j) = discretization_->p(i, j) + alpha * c(i,j);
res(i,j) = res(i,j) - alpha * Ac(i,j);
res_pow2_sum_updated += res(i,j) * res(i,j);
}
}
}
// break conditon
if ((res_pow2_sum / nFluidCells) <= pow(epsilon_,2)) // divide by number of cells
{
setBoundaryValues();
break;
}
// calculate beta
beta = res_pow2_sum_updated / res_pow2_sum;
// calculate iteration of c
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if(discretization_->isObstacleCell(i,j) != 1.)
{
c(i,j) = res(i,j) + beta * c(i,j);
}
}
}
// update residual
res_pow2_sum = res_pow2_sum_updated;
iteration++;
}
std::cout << "CG: " << iteration << " with a residuum of " << res_pow2_sum_updated << " from target " << epsilon_ << std::endl;
}
void CGSolver::calculateInitialResidual()
{
int nCellsx = discretization_->nCells()[0]; // inner cells in x direction
int nCellsy = discretization_->nCells()[1]; // inner cells in y direction
//cell size
double dy = discretization_->dy();
double dx = discretization_->dx();
double dx2 = pow(dx,2);
double dy2 = pow(dy,2);
for ( int i = discretization_->pIBegin() +1; i < discretization_->pIEnd() -1; i++)
{
for ( int j= discretization_->pJBegin() +1; j < discretization_->pJEnd() -1; j++)
{
if (discretization_->isObstacleCell(i,j) != 1.)
{
// calculate residual
double pxx = (discretization_->p(i-1, j) - 2.0 *discretization_->p(i,j) + discretization_->p(i+1, j)) / (dx2);
double pyy = (discretization_->p(i, j-1) - 2.0 *discretization_->p(i,j) + discretization_->p(i, j+1)) / (dy2);
res(i,j) = discretization_->rhs(i, j) - pxx - pyy;
}
}
}
}
| 29.91358 | 189 | 0.563351 | NumerischeSimulation |
bc80bb30c906fb3ffaf42404e1274d7196671614 | 1,957 | cpp | C++ | SFML-RPG/Entity.cpp | Akshat69/SFML-RPG | 2ffb0fc5e94bd9f3460d9c06ffb485aa8afefe34 | [
"MIT"
] | null | null | null | SFML-RPG/Entity.cpp | Akshat69/SFML-RPG | 2ffb0fc5e94bd9f3460d9c06ffb485aa8afefe34 | [
"MIT"
] | 1 | 2021-09-17T16:37:18.000Z | 2021-09-17T16:37:18.000Z | SFML-RPG/Entity.cpp | Akshat69/SFML-RPG | 2ffb0fc5e94bd9f3460d9c06ffb485aa8afefe34 | [
"MIT"
] | null | null | null | #include "stdafx.h"
#include "Entity.h"
void Entity::initVariables()
{
this->movementSpeed = 100.0f;
this->movementComponent = NULL;
}
Entity::Entity(sf::RenderWindow* window)
{
this->window = window;
}
Entity::~Entity()
{
delete this->movementComponent;
delete this->animationComponent;
delete this->hitboxComponent;
}
void Entity::setTexture(sf::Texture* texture)
{
this->sprite.setTexture(*texture);
}
void Entity::createMovementComponent(float maxVelocity, float acceleration,
float deceleration)
{
this->movementComponent = new MovementComponent(this->sprite, maxVelocity, acceleration,
deceleration);
}
void Entity::createAnimationComponent(sf::Texture& texture_sheet)
{
this->animationComponent = new AnimationComponent(sprite, texture_sheet);
}
void Entity::createHitboxComponent(sf::Vector2f offset, sf::Vector2f size)
{
this->hitboxComponent = new HitboxComponent(this->sprite, offset, size);
}
void Entity::setPosition(const float posX, const float posY)
{
this->sprite.setPosition(sf::Vector2f(posX, posY));
}
void Entity::move(const float& DeltaTime, const float dirX, const float dirY)
{
if (!this->movementComponent) return;
this->movementComponent->move(dirX, dirY, DeltaTime);
}
void Entity::Render(sf::RenderTarget* target)
{
if (!target)
target = this->window;
//if (!this->sprite) return;
target->draw(this->sprite);
if (this->hitboxComponent)
this->hitboxComponent->Render(target);
}
void Entity::moveTo(const float& DeltaTime, const float posX, const float posY)
{
float speedX = this->movementSpeed * (posX - this->sprite.getPosition().x) * DeltaTime;
float speedY = this->movementSpeed * (posY - this->sprite.getPosition().y) * DeltaTime;
this->sprite.move(sf::Vector2f(speedX, speedY));
}
void Entity::Update(const float& DeltaTime)
{
if (this->movementComponent)
this->movementComponent->Update(DeltaTime);
if (this->hitboxComponent)
this->hitboxComponent->Update(DeltaTime);
}
| 22.755814 | 89 | 0.74093 | Akshat69 |
bc82e8bd8fc699130c980fa903473f6b72359e6f | 4,557 | cpp | C++ | apps/FontEditor/FontEditor.cpp | Koncord/YAPE | 9def79c493bc50b41a371c6e80174d47f795b8f1 | [
"Apache-2.0"
] | 3 | 2015-10-29T16:11:49.000Z | 2021-08-28T08:53:09.000Z | apps/FontEditor/FontEditor.cpp | Koncord/YAPE | 9def79c493bc50b41a371c6e80174d47f795b8f1 | [
"Apache-2.0"
] | 13 | 2015-10-29T05:39:16.000Z | 2017-06-11T19:10:07.000Z | apps/FontEditor/FontEditor.cpp | Koncord/YAPE | 9def79c493bc50b41a371c6e80174d47f795b8f1 | [
"Apache-2.0"
] | 1 | 2022-03-01T18:47:58.000Z | 2022-03-01T18:47:58.000Z | /*
*
* Copyright (c) 2015-2017 Stanislav Zhukov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "FontEditor.hpp"
#include "SymbolSelector.hpp"
#include <QMouseEvent>
#include <QPixmap>
#include <QPainter>
#include <components/Utils/Utils.hpp>
#include <QFileDialog>
#include <limits>
#include <QMessageBox>
MainForm *MainForm::mThis = nullptr;
MainForm::MainForm(QWidget *parent)
{
mThis = this;
Q_UNUSED(parent)
setupUi(this);
fontHeader.size_height = 8;
fontHeader.size_width = 8;
connect(actionLoad, SIGNAL(triggered()), this, SLOT(load()));
selector = new SymbolSelector(this);
selector->show();
selector->move(selector->x() - selector->width(), selector->y());
this->move(selector->x() + selector->width() + 2, selector->y());
}
MainForm::~MainForm()
{
mThis = nullptr;
}
QPoint MainForm::GetMouseCoord(QMouseEvent *event)
{
QPoint mcoords {-1,-1};
if(event->x() >= 0 && event->x() < canvas->width() && event->y() >= 0 && event->y() < canvas->height())
{
mcoords.setX(Utils::map(event->x(), canvas->width(), fontHeader.size_width));
mcoords.setY(Utils::map(event->y(), canvas->height(), fontHeader.size_height));
}
return mcoords;
}
unsigned int buttonStatus;
void MainForm::mousePressEvent(QMouseEvent *event)
{
if(event->button() == Qt::MouseButton::LeftButton)
buttonStatus = event->button();
else if(event->button() == Qt::MouseButton::RightButton)
buttonStatus = event->button();
mouseEvent(event);
QWidget::mousePressEvent(event);
}
void MainForm::mouseReleaseEvent(QMouseEvent *event)
{
if(event->button() == buttonStatus)
buttonStatus = 0;
mouseEvent(event);
QWidget::mouseReleaseEvent(event);
}
void MainForm::mouseMoveEvent(QMouseEvent *event)
{
mouseEvent(event);
QWidget::mouseMoveEvent(event);
}
void MainForm::mouseEvent(QMouseEvent *event)
{
if(buttonStatus)
{
QString btn;
if(buttonStatus == Qt::MouseButton::LeftButton)
btn = "LMB";
else if(buttonStatus == Qt::MouseButton::RightButton)
btn = "RMB";
const QPoint coords = GetMouseCoord(event);
if(coords.x() != -1 && coords.y() != -1)
{
canvas->SetPixel(coords.x(), coords.y(), buttonStatus == Qt::MouseButton::LeftButton);
QString qstr = QString::number(coords.x()) + " : " + QString::number(coords.y()) + " | " + btn;
statusbar->showMessage(qstr);
}
}
}
void MainForm::load()
{
//QMessageBox::information(this, "test", "test");
QString qstr = QFileDialog::getOpenFileName(this, tr("Open Font"), "", tr("Font (*.bfnt)"));
if(!qstr.isEmpty())
{
const char *str = qstr.toLatin1().data();
BitFont fnt(str);
fnt.Load();
fontHeader = fnt.GetHeader();
for(uint8_t i = 0; i < std::numeric_limits<uint8_t>::max(); i++)
{
BitFontChar *chr = fnt.GetSymbol(i);
if(chr != nullptr)
{
// load char
SymbolSelector::AddSymbol(*chr);
}
}
}
}
MainForm::MainForm(uint8_t *data, uint8_t size, QWidget *parent) : MainForm(parent)
{
Q_UNUSED(data)
Q_UNUSED(size)
}
MainForm *MainForm::get()
{
return mThis;
}
void MainForm::SetChar(uint8_t id, uint8_t *data, uint16_t size)
{
uint16_t x = 0;
uint16_t y = 0;
setWindowTitle(QString::number(id));
if(size == 0)
canvas->Clear();
for(uint16_t i = 0; i < size; i++)
{
if(y >= fontHeader.size_height)
break;
canvas->SetPixel(x,y, data[i] == 1);
x++;
if(x == fontHeader.size_width)
{
x = 0;
y++;
}
}
}
void MainForm::closeEvent(QCloseEvent *event)
{
selector->close();
}
| 26.494186 | 108 | 0.585034 | Koncord |
bc83b09fa37ac894ac3fad53b26d144eb1d9c499 | 581 | cpp | C++ | src/mayaToIndigo/src/mtin_common/mtin_swtchesInterfaceFactory.cpp | haggi/OpenMaya | 746e0740f480d9ef8d2173f31b3c99b9b0ea0d24 | [
"MIT"
] | 42 | 2015-01-03T15:07:25.000Z | 2021-12-09T03:56:59.000Z | src/mayaToIndigo/src/mtin_common/mtin_swtchesInterfaceFactory.cpp | haggi/OpenMaya | 746e0740f480d9ef8d2173f31b3c99b9b0ea0d24 | [
"MIT"
] | 66 | 2015-01-02T13:28:44.000Z | 2022-03-16T14:00:57.000Z | src/mayaToIndigo/src/mtin_common/mtin_swtchesInterfaceFactory.cpp | haggi/OpenMaya | 746e0740f480d9ef8d2173f31b3c99b9b0ea0d24 | [
"MIT"
] | 12 | 2015-02-07T05:02:17.000Z | 2020-07-10T17:21:44.000Z | #include "swatchesRenderer/swatchRendererInterfaceFactory.h"
#include "mtin_swatchRenderer.h"
SwatchRendererInterface *SwatchRendererInterfaceFactory::createSwatchRendererInterface(MObject dependNode, MObject renderNode, int imageResolution)
{
return (SwatchRendererInterface *)new mtin_SwatchRendererInterface(dependNode, renderNode, imageResolution);
}
void SwatchRendererInterfaceFactory::deleteSwatchRendererInterface(SwatchRendererInterface *swInterface)
{
mtin_SwatchRendererInterface *sr = (mtin_SwatchRendererInterface *)swInterface;
if (sr != nullptr)
delete sr;
} | 38.733333 | 147 | 0.851979 | haggi |
bc8531dbedcd573f5394e93c67135a97f62551a1 | 1,967 | cpp | C++ | src/IncludeDeps.cpp | Thraix/MakeGen | 61f9c3ee0dc15f784ac1f256d4ca0b0609d6b3ea | [
"MIT"
] | 1 | 2020-03-27T13:12:36.000Z | 2020-03-27T13:12:36.000Z | src/IncludeDeps.cpp | Thraix/MakeGen | 61f9c3ee0dc15f784ac1f256d4ca0b0609d6b3ea | [
"MIT"
] | null | null | null | src/IncludeDeps.cpp | Thraix/MakeGen | 61f9c3ee0dc15f784ac1f256d4ca0b0609d6b3ea | [
"MIT"
] | null | null | null | #include "IncludeDeps.h"
#include "Common.h"
std::set<std::string> IncludeDeps::printSet;
int IncludeDeps::printCounter = 0;
IncludeDeps::IncludeDeps(const std::string& filename, const std::string& dir, const std::set<HFile>& files, std::map<std::string, IncludeDeps*>& allDeps)
: IncludeDeps{filename, dir, false, files, allDeps}
{}
IncludeDeps::IncludeDeps(const std::string& filename, const std::string& dir, bool projectHFile, const std::set<HFile>& files, std::map<std::string, IncludeDeps*>& allDeps)
: filepath(dir+filename), projectHFile{projectHFile}
{
if(Utils::IsHeaderFile(filename))
{
allDeps.emplace(filepath, this);
}
std::ifstream file(filepath);
std::string line;
while(std::getline(file,line))
{
size_t pos = line.find("#include");
if(pos != std::string::npos)
{
std::string include = FileUtils::CollapseDirectory(GetIncludeFile(line, pos, filename));
auto it = files.find({include, "", false});
if(it != files.end())
{
auto itD = allDeps.find(it->filepath);
if(itD == allDeps.end())
{
IncludeDeps* inc = new IncludeDeps(it->filename,it->directory, it->isProjectHFile, files,allDeps);
dependencies.emplace(it->filepath, inc);
}else{
dependencies.emplace(itD->first, itD->second);
}
}
}
}
}
std::string IncludeDeps::GetIncludeFile(const std::string& line, size_t pos, const std::string& filename)
{
size_t bracket = line.find('<',pos);
if(bracket == std::string::npos)
{
bracket = line.find('\"',pos);
if(bracket == std::string::npos)
{
return "";
}
size_t slash = filename.find_last_of("/");
std::string include = line.substr(bracket+1, line.find('\"',bracket+1)-bracket-1);
if(slash == std::string::npos)
slash = -1;
return filename.substr(0,slash+1)+include;
}
else
{
return line.substr(bracket+1, line.find('>',bracket+1)-bracket-1);
}
}
| 30.261538 | 172 | 0.637519 | Thraix |
bc855f035d528966be7fbdb085b38b774585405a | 524 | hpp | C++ | header/actor-zeta/spawn.hpp | smart-cloud/actor-zeta | 9597d6c21843a5e24a7998d09ff041d2f948cc63 | [
"BSD-3-Clause"
] | 20 | 2016-01-07T07:37:52.000Z | 2019-06-02T12:04:25.000Z | header/actor-zeta/spawn.hpp | smart-cloud/actor-zeta | 9597d6c21843a5e24a7998d09ff041d2f948cc63 | [
"BSD-3-Clause"
] | 30 | 2017-03-10T14:47:46.000Z | 2019-05-09T19:23:25.000Z | header/actor-zeta/spawn.hpp | jinncrafters/actor-zeta | 9597d6c21843a5e24a7998d09ff041d2f948cc63 | [
"BSD-3-Clause"
] | 6 | 2017-03-10T14:06:01.000Z | 2018-08-13T18:19:37.000Z | #pragma once
#include "actor-zeta/base/forwards.hpp"
#include "actor-zeta/base/address.hpp"
namespace actor_zeta {
template<
class ChildrenSupervisor,
class... Args,
class = type_traits::enable_if_t<std::is_base_of<base::supervisor_abstract, ChildrenSupervisor>::value>>
auto spawn_supervisor(Args&&... args) -> std::unique_ptr<ChildrenSupervisor> {
return std::unique_ptr<ChildrenSupervisor>(new ChildrenSupervisor(std::forward<Args>(args)...));
}
} // namespace actor_zeta
| 30.823529 | 112 | 0.706107 | smart-cloud |
bc8b18a3c561c19a5e7f50b92832e5bd8cec3a34 | 1,380 | cpp | C++ | applications/ContactMechanicsApplication/custom_friction/coulomb_adhesion_friction_law.cpp | lkusch/Kratos | e8072d8e24ab6f312765185b19d439f01ab7b27b | [
"BSD-4-Clause"
] | 778 | 2017-01-27T16:29:17.000Z | 2022-03-30T03:01:51.000Z | applications/ContactMechanicsApplication/custom_friction/coulomb_adhesion_friction_law.cpp | lkusch/Kratos | e8072d8e24ab6f312765185b19d439f01ab7b27b | [
"BSD-4-Clause"
] | 6,634 | 2017-01-15T22:56:13.000Z | 2022-03-31T15:03:36.000Z | applications/ContactMechanicsApplication/custom_friction/coulomb_adhesion_friction_law.cpp | lkusch/Kratos | e8072d8e24ab6f312765185b19d439f01ab7b27b | [
"BSD-4-Clause"
] | 224 | 2017-02-07T14:12:49.000Z | 2022-03-06T23:09:34.000Z | //
// Project Name: KratosContactMechanicsApplication $
// Created by: $Author: JMCarbonell $
// Last modified by: $Co-Author: $
// Date: $Date: July 2016 $
// Revision: $Revision: 0.0 $
//
//
#include "custom_friction/coulomb_adhesion_friction_law.hpp"
namespace Kratos
{
/**
* Methods
*/
double CoulombAdhesionFrictionLaw::EvaluateHardening( const double& rNormalStress, const double& rPlasticSlip, FrictionLawVariables& rTangentVariables)
{
return 0.0;
}
/**
* Methods
*/
double CoulombAdhesionFrictionLaw::EvaluateContactYield( const double& rTangentStress, const double& rNormalStress, const double& rPlasticSlip, FrictionLawVariables& rTangentVariables)
{
double YieldFunction = fabs(rTangentStress) - rTangentVariables.FrictionCoefficient * fabs(rNormalStress) - rTangentVariables.Adhesion;
return YieldFunction;
}
/**
* Methods
*/
void CoulombAdhesionFrictionLaw::EvaluateYieldDerivativeRespectStress( double& rdF_dt, double & rdF_dp, const double& rTangentStress, const double& rNormalStress, const double& Gamma, FrictionLawVariables& rTangentVariables )
{
rdF_dt = 1.0;
rdF_dp = - rTangentVariables.FrictionCoefficient;
}
} // namespace Kratos
| 30.666667 | 228 | 0.658696 | lkusch |
bc8e01474c822083d39e2aa95837a7484627771d | 3,061 | cpp | C++ | prep/cpp/learning/Competitive Programming Book/Chapter 2 (Data Structures)/2.2 (Linear Data Structures)/1-D Array Manipulation/False Coin/UVa_665_False_Coin_2.cpp | TanishT/Competitive-Programming | b90fe43d7f92de62ebfd2f4aa1d470711cbe8bf0 | [
"MIT"
] | 2 | 2021-02-19T18:15:03.000Z | 2021-03-27T20:26:55.000Z | prep/cpp/learning/Competitive Programming Book/Chapter 2 (Data Structures)/2.2 (Linear Data Structures)/1-D Array Manipulation/False Coin/UVa_665_False_Coin_2.cpp | TanishT/Comp-Programming | b90fe43d7f92de62ebfd2f4aa1d470711cbe8bf0 | [
"MIT"
] | 8 | 2021-01-17T16:39:08.000Z | 2021-03-22T01:27:15.000Z | prep/cpp/learning/Competitive Programming Book/Chapter 2 (Data Structures)/2.2 (Linear Data Structures)/1-D Array Manipulation/False Coin/UVa_665_False_Coin_2.cpp | anaconda121/Competitive-Programming | b90fe43d7f92de62ebfd2f4aa1d470711cbe8bf0 | [
"MIT"
] | null | null | null | //https://onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=606
//have coin arr where they are all false
// if you find one measurement with "=", all the numbers in that measurement are not false
//see if after all measurements only 1 dood is not false
//if only 1 left, that one is false, otherwise 0
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define f first
#define s second
void setIO(string name = "", bool includeout = false) {
ios_base::sync_with_stdio(0); cin.tie(0);
freopen((name+".in").c_str(), "r", stdin);
if (includeout)
freopen((name+".out").c_str(), "w", stdout);
}
int m, n, k, p, x;
int lefte[55];
int righte[55];
bool coin[105];
char sign;
int findFalse(){
vector<int> bad;
for (int i = 1; i <= n; i++){
if (!coin[i]) {
bad.pb(i);
}
}
// cout << "Bad: ";
// for (auto x : bad) {
// cout << x << " , ";
// }
//cout << endl;
if (bad.size() == 1) {
return bad[0];
}
return 0;
}
int main() {
//setIO("coin");
cin >> m;
while(m--){
cin >> n >> k;
for (int i = 1; i <= 2*k; i++) {
if (i % 2 == 1) {
memset(lefte, 0, sizeof(lefte));
memset(righte, 0, sizeof(righte));
cin >> p;
for (int j = 1; j <= 2*p; j++) {
cin >> x;
if (j <= p) {
lefte[j] = x;
} else {
righte[j-p] = x;
}
}
// cout << "Left: ";
// for (int k = 1; k <= p; k++) {
// cout << lefte[k] << " , ";
// }
// cout << endl;
// cout << "Right: ";
// for (int l = 1; l <= p; l++) {
// cout << righte[l] << " , ";
// }
// cout << endl;
} else {
cin >> sign;
// cout << "Sign: " << sign << endl;
// if (sign == '<') {
// for (int o = 1; o <= p; o++) {
// coin[lefte[o]] = true;
// //coin[righte[o]] = false;
// }
// } else if (sign == '>') {
// for (int o = 1; o <= p; o++) {
// coin[righte[o]] = true;
// //coin[lefte[o]] = false;
// }
// } else
if (sign == '=') {
for (int o = 1; o <= p; o++) {
coin[righte[o]] = true;
coin[lefte[o]] = true;
}
}
}
}
//cout << "m: " << m << endl;
if (m >= 1) {
cout << findFalse() << "\n\n";
} else {
cout << findFalse() << endl;
}
memset(coin, false, sizeof(coin));
}
return 0;
}
| 28.607477 | 90 | 0.35838 | TanishT |
bc9233a6ace2e343a060ebb8eff0653b241cb9fa | 1,890 | cpp | C++ | boboleetcode/Play-Leetcode-master/0986-Interval-List-Intersections/cpp-0986/main.cpp | yaominzh/CodeLrn2019 | adc727d92904c5c5d445a2621813dfa99474206d | [
"Apache-2.0"
] | 2 | 2021-03-25T05:26:55.000Z | 2021-04-20T03:33:24.000Z | boboleetcode/Play-Leetcode-master/0986-Interval-List-Intersections/cpp-0986/main.cpp | mcuallen/CodeLrn2019 | adc727d92904c5c5d445a2621813dfa99474206d | [
"Apache-2.0"
] | 6 | 2019-12-04T06:08:32.000Z | 2021-05-10T20:22:47.000Z | boboleetcode/Play-Leetcode-master/0986-Interval-List-Intersections/cpp-0986/main.cpp | mcuallen/CodeLrn2019 | adc727d92904c5c5d445a2621813dfa99474206d | [
"Apache-2.0"
] | null | null | null | /// Source : https://leetcode.com/problems/interval-list-intersections/
/// Author : liuyubobobo
/// Time : 2019-02-04
#include <iostream>
#include <vector>
#include <stack>
using namespace std;
/// Ad-Hoc
/// Time Complexity: O(m + n)
/// Space Complexity: O(1)
/// Definition for an interval.
struct Interval {
int start;
int end;
Interval() : start(0), end(0) {}
Interval(int s, int e) : start(s), end(e) {}
};
class Solution {
public:
vector<Interval> intervalIntersection(vector<Interval>& A, vector<Interval>& B) {
vector<Interval> res;
int i = 0, j = 0;
while(i < A.size() && j < B.size()){
int l = max(A[i].start, B[j].start);
int h = min(A[i].end, B[j].end);
if(l <= h)
res.push_back(Interval(l, h));
if(A[i].end <= B[j].end)
i ++;
else
j ++;
}
return res;
}
};
void print_vec(const vector<Interval>& vec){
for(const Interval& interval: vec)
cout << "(" << interval.start << "," << interval.end << ") ";
cout << endl;
}
int main() {
vector<Interval> A1 = {Interval(0,2),Interval(5,10),Interval(13,23),Interval(24,25)};
vector<Interval> B1 = {Interval(1,5),Interval(8,12),Interval(15,24),Interval(25,26)};
print_vec(Solution().intervalIntersection(A1, B1));
// [[1,2],[5,5],[8,10],[15,23],[24,24],[25,25]]
vector<Interval> A2 = {Interval(5,10)};
vector<Interval> B2 = {Interval(5,10)};
print_vec(Solution().intervalIntersection(A2, B2));
// [[5, 10]]
vector<Interval> A3 = {Interval(3,5), Interval(9, 20)};
vector<Interval> B3 = {Interval(4,5), Interval(7, 10), Interval(11, 12), Interval(14, 15), Interval(16, 20)};
print_vec(Solution().intervalIntersection(A3, B3));
// [[4,5],[9,10],[11,12],[14,15],[16,20]]
return 0;
} | 25.890411 | 113 | 0.555556 | yaominzh |
bc962d58a97d58a80450b038beea52cd497fcfe4 | 3,838 | cpp | C++ | DropWidget.cpp | Evgenii-Evgenevich/qt-the-interface | 0d12d110b09b5ff9c52adc7da70104b219220267 | [
"Apache-2.0"
] | null | null | null | DropWidget.cpp | Evgenii-Evgenevich/qt-the-interface | 0d12d110b09b5ff9c52adc7da70104b219220267 | [
"Apache-2.0"
] | null | null | null | DropWidget.cpp | Evgenii-Evgenevich/qt-the-interface | 0d12d110b09b5ff9c52adc7da70104b219220267 | [
"Apache-2.0"
] | null | null | null | #include "DropWidget.h"
#include "Element.h"
#include "HBoxLayout.h"
#include <QScrollBar>
#include <QDropEvent>
#include <QMimeData>
#include <QScrollArea>
#include <QDrag>
#include <QPainter>
DropWidget::DropWidget()
: DropWidget(nullptr)
{
}
DropWidget::DropWidget(QWidget* parent)
: QScrollArea(parent)
, m_layout(new HBoxLayout(this))
{
QPalette palette{};
palette.setColor(QPalette::Background, Qt::white);
setAutoFillBackground(true);
setPalette(palette);
setWindowFlags(Qt::WindowType::Tool | Qt::WindowType::CustomizeWindowHint | Qt::WindowType::WindowTitleHint);
setAcceptDrops(true);
setMaximumHeight(300);
setMinimumSize(300, 30);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
setWidgetResizable(true);
setWidget(m_layout);
resize(640, 55);
setWindowTitle("Model");
}
void DropWidget::dragEnterEvent(QDragEnterEvent* event)
{
if (event->mimeData()->hasFormat("application/x-pole"))
{
if (event->source() == this)
{
event->setDropAction(Qt::MoveAction);
event->accept();
}
else
{
event->acceptProposedAction();
}
}
else
{
event->ignore();
}
}
void DropWidget::dragMoveEvent(QDragMoveEvent* event)
{
if (event->mimeData()->hasFormat("application/x-pole"))
{
if (event->source() == this)
{
event->setDropAction(Qt::MoveAction);
event->accept();
}
else
{
event->acceptProposedAction();
}
}
else
{
event->ignore();
}
}
void DropWidget::dropEvent(QDropEvent* event)
{
if (event->mimeData()->hasFormat("application/x-pole"))
{
QByteArray itemData = event->mimeData()->data("application/x-pole");
QDataStream dataStream(&itemData, QIODevice::ReadOnly);
size_t map;
dataStream >> map;
Element* label = reinterpret_cast<Element*>(map);
if (event->source() == this)
{
m_layout->drop(label, event->pos());
event->setDropAction(Qt::TargetMoveAction);
event->accept();
}
else
{
m_layout->drop(new Element(*label), event->pos());
updateGeometry();
event->acceptProposedAction();
}
}
else
{
event->ignore();
}
}
void DropWidget::mousePressEvent(QMouseEvent* event)
{
Element* child = nullptr;
for (QObject* object : m_layout->children())
{
if (Element* element = dynamic_cast<Element*>(object))
{
if (element->underMouse())
{
child = element;
break;
}
}
}
if (!child) return;
if (event->button() == Qt::MouseButton::LeftButton)
{
QByteArray itemData;
QDataStream dataStream(&itemData, QIODevice::WriteOnly);
dataStream << reinterpret_cast<size_t>(child);
QMimeData* mimeData = new QMimeData;
mimeData->setData("application/x-pole", itemData);
QDrag* drag = new QDrag(this);
drag->setMimeData(mimeData);
drag->setPixmap(child->pixmap());
drag->setHotSpot(event->pos());
if (drag->exec(Qt::TargetMoveAction) == Qt::MoveAction)
{
child->close();
}
}
else
{
child->dialog();
}
}
void DropWidget::enterEvent(QEvent* event)
{
if (isActiveWindow())
{
setWindowOpacity(1);
}
else
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity + 0.2);
}
}
void DropWidget::leaveEvent(QEvent* event)
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity - 0.2);
}
void DropWidget::focusInEvent(QFocusEvent* event)
{
if (isActiveWindow())
{
setWindowOpacity(1);
}
else
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity + 0.2);
}
}
void DropWidget::focusOutEvent(QFocusEvent* event)
{
qreal opacity = windowOpacity();
setWindowOpacity(opacity - 0.2);
}
void DropWidget::resizeEvent(QResizeEvent* event)
{
int const height = event->size().height();
int width = 0;
for (QObject* child : m_layout->children())
{
if (Element* element = dynamic_cast<Element*>(child))
{
element->setHeight(height);
width += element->width();
}
}
}
| 19 | 110 | 0.682908 | Evgenii-Evgenevich |
bc98262a6cfc198af2d61e3ea97d77ec21178343 | 1,898 | cpp | C++ | Lamp/src/Lamp/Objects/Entity/BaseComponents/DirectionalLightComponent.cpp | ChunkTreasure1/Lamp | 65be1544322949d6640e1fd108ed5a018387d0eb | [
"MIT"
] | 2 | 2021-09-13T17:37:34.000Z | 2021-11-17T18:52:42.000Z | Lamp/src/Lamp/Objects/Entity/BaseComponents/DirectionalLightComponent.cpp | ChunkTreasure1/Lamp | 65be1544322949d6640e1fd108ed5a018387d0eb | [
"MIT"
] | 20 | 2020-09-30T13:44:46.000Z | 2021-12-03T14:30:04.000Z | Lamp/src/Lamp/Objects/Entity/BaseComponents/DirectionalLightComponent.cpp | ChunkTreasure1/Lamp | 65be1544322949d6640e1fd108ed5a018387d0eb | [
"MIT"
] | null | null | null | #include "lppch.h"
#include "DirectionalLightComponent.h"
#include "Lamp/Objects/Entity/Base/ComponentRegistry.h"
#include "Lamp/Objects/Entity/Base/Entity.h"
#include "Lamp/Level/Level.h"
#include <glm/gtx/quaternion.hpp>
namespace Lamp
{
LP_REGISTER_COMPONENT(DirectionalLightComponent)
DirectionalLightComponent::DirectionalLightComponent()
: EntityComponent("DirectionalLightComponent")
{
m_pDirectionalLight = CreateScope<DirectionalLight>();
SetComponentProperties
({
{ PropertyType::Float, "Intensity", RegisterData(&m_pDirectionalLight->intensity) },
{ PropertyType::Color3, "Color", RegisterData(&m_pDirectionalLight->color) },
{ PropertyType::Bool, "Cast Shadows", RegisterData(&m_pDirectionalLight->castShadows) }
});
if (g_pEnv->pLevel)
{
g_pEnv->pLevel->GetRenderUtils().RegisterDirectionalLight(m_pDirectionalLight.get());
}
}
DirectionalLightComponent::~DirectionalLightComponent()
{
g_pEnv->pLevel->GetRenderUtils().UnregisterDirectionalLight(m_pDirectionalLight.get());
}
void DirectionalLightComponent::Initialize()
{
UpdateLight();
}
void DirectionalLightComponent::OnEvent(Event& e)
{
EventDispatcher dispatcher(e);
dispatcher.Dispatch<ObjectRotationChangedEvent>(LP_BIND_EVENT_FN(DirectionalLightComponent::OnRotationChanged));
}
bool DirectionalLightComponent::OnRotationChanged(ObjectRotationChangedEvent& e)
{
UpdateLight();
return false;
}
void DirectionalLightComponent::UpdateLight()
{
m_pDirectionalLight->transform = m_pEntity->GetTransform();
glm::vec3 dir = glm::normalize(glm::mat3(m_pDirectionalLight->transform) * glm::vec3(1.f)) * -1.f;
glm::mat4 view = glm::lookAt(glm::vec3(0.f) - dir * m_size, glm::vec3(0.f), glm::vec3(0.f, 1.f, 0.f));
glm::mat4 projection = glm::ortho(-m_size, m_size, -m_size, m_size, 0.1f, 100.f);
m_pDirectionalLight->viewProjection = projection * view;
}
} | 30.126984 | 114 | 0.753952 | ChunkTreasure1 |
bc99e9cbdb69a6619f9180e7d5d39560ace32b63 | 364 | cpp | C++ | acmicpc/13458.cpp | juseongkr/BOJ | 8f10a2bf9a7d695455493fbe7423347a8b648416 | [
"Apache-2.0"
] | 7 | 2020-02-03T10:00:19.000Z | 2021-11-16T11:03:57.000Z | acmicpc/13458.cpp | juseongkr/Algorithm-training | 8f10a2bf9a7d695455493fbe7423347a8b648416 | [
"Apache-2.0"
] | 1 | 2021-01-03T06:58:24.000Z | 2021-01-03T06:58:24.000Z | acmicpc/13458.cpp | juseongkr/Algorithm-training | 8f10a2bf9a7d695455493fbe7423347a8b648416 | [
"Apache-2.0"
] | 1 | 2020-01-22T14:34:03.000Z | 2020-01-22T14:34:03.000Z | #include <iostream>
#include <cmath>
using namespace std;
int main()
{
int num[1000001];
int n, a, b;
long long ans;
scanf("%d", &n);
for (int i=0; i<n; ++i)
scanf("%d", &num[i]);
ans = n;
scanf("%d %d", &a, &b);
for (int i=0; i<n; ++i) {
num[i] -= a;
if (num[i] > 0)
ans += ceil(num[i] / (double)b);
}
printf("%lld\n", ans);
return 0;
}
| 13.481481 | 35 | 0.502747 | juseongkr |
bc9c0c03497e8f1f203cf09227fc63fb866e2089 | 964,140 | cpp | C++ | VehicleManagement/VehicleManage/GeneratedFiles/qrc_checkreceiptdialog.cpp | maanjun/IVM | fe7f58c0e45b2471357fafcc63328d903f08ea76 | [
"Apache-2.0"
] | null | null | null | VehicleManagement/VehicleManage/GeneratedFiles/qrc_checkreceiptdialog.cpp | maanjun/IVM | fe7f58c0e45b2471357fafcc63328d903f08ea76 | [
"Apache-2.0"
] | null | null | null | VehicleManagement/VehicleManage/GeneratedFiles/qrc_checkreceiptdialog.cpp | maanjun/IVM | fe7f58c0e45b2471357fafcc63328d903f08ea76 | [
"Apache-2.0"
] | null | null | null | /****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.6.2
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/doing.png
0x0,0x0,0x3d,0x5e,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc7,0x10,0x6,0x0,0x0,0x0,0xc,0x9e,0xc0,0x8,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x3b,0xf7,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x67,0x60,0x14,0x55,
0xd7,0x7,0xf0,0xff,0x99,0xdd,0x4d,0x42,0x2,0x48,0xd,0x29,0x10,0x12,0x5a,0xa,
0x55,0x9a,0xd2,0xc,0x48,0x97,0xaa,0x40,0x50,0xc1,0x80,0xa1,0x84,0x1a,0x40,0xaa,
0x48,0x7,0xb,0x12,0x44,0x41,0x4a,0x28,0x41,0x14,0x15,0x42,0x17,0x29,0xa,0x22,
0xbd,0x3c,0xf4,0x96,0x82,0xb4,0x4,0x48,0x82,0x10,0x7a,0x20,0xd9,0xdd,0xcc,0x79,
0x3f,0xc0,0x46,0x1f,0x7d,0x79,0x68,0x99,0x9d,0x94,0xf3,0xfb,0x96,0xb0,0x3b,0xe7,
0xcc,0x5,0xf6,0xec,0x9d,0xdb,0x8,0x42,0xe4,0x0,0x1,0x51,0xac,0x6,0x44,0x39,
0x38,0xdc,0xd9,0x97,0x7e,0x19,0xf0,0xf2,0x52,0xaf,0x1a,0xdf,0xe1,0xdf,0xbd,0xbd,
0x39,0x50,0xfd,0x9e,0xc3,0xbd,0xbd,0x51,0x3,0x1,0xb4,0xa9,0x54,0x29,0x54,0xc0,
0x6e,0xc4,0x14,0x2d,0x8a,0x54,0x8a,0xc4,0x92,0x62,0xc5,0x70,0x9a,0xfd,0x78,0x5c,
0xf1,0xe2,0x28,0x49,0xe3,0x60,0x29,0x5a,0x94,0xe,0xe1,0xd,0x72,0x2d,0x50,0x0,
0xbf,0x72,0x39,0xbe,0x9b,0x3f,0x3f,0x7f,0x0,0x2f,0xd4,0x31,0x99,0x6c,0x71,0xa8,
0x27,0x82,0x68,0x68,0xa1,0x42,0x48,0x84,0x3,0x62,0x88,0xd0,0xf,0xd7,0xf8,0x5b,
0xab,0x95,0x5b,0xe3,0x17,0x14,0xbb,0x7b,0x37,0x33,0xa1,0x3,0x38,0x46,0xed,0xd2,
0xd2,0xc8,0x85,0x6e,0xe0,0xe3,0x7,0xf,0xb0,0x91,0x23,0xb1,0xf1,0xe6,0x4d,0x14,
0xc7,0x30,0x74,0xbc,0x7e,0x1d,0xb7,0xe9,0x2a,0x2a,0xa4,0xa4,0xc0,0x93,0xbb,0xf2,
0xe6,0xeb,0xd7,0x71,0x83,0xea,0xc1,0x31,0x25,0x85,0x4e,0x70,0x24,0x5e,0xb9,0x78,
0x31,0x63,0x1a,0xbd,0x49,0x43,0x2e,0x5e,0xa4,0x93,0xd6,0x8,0xea,0x7e,0xf1,0x62,
0x52,0xa8,0xd3,0xd4,0xe8,0xa0,0x2b,0x57,0x0,0x22,0x20,0x23,0x43,0xef,0xf6,0x16,
0xe2,0x69,0x90,0xde,0x9,0x88,0xbc,0xc9,0x56,0x10,0x6e,0x7f,0x65,0xf9,0x82,0x92,
0xfd,0xfd,0xd5,0x63,0x48,0x50,0x2b,0x56,0xae,0x4c,0x5e,0x48,0x45,0x70,0xe5,0xca,
0x68,0x6,0x17,0x7c,0x5b,0xb5,0x2a,0x22,0x29,0x1f,0x3b,0x7,0x4,0xa0,0x11,0x8f,
0xa2,0xd,0x9e,0x9e,0x38,0x4,0x17,0xac,0x52,0x14,0xbd,0xf3,0xcf,0x6a,0x3c,0x1e,
0x89,0x7c,0xc8,0x62,0x81,0x17,0x7d,0x80,0x7b,0xf1,0xf1,0xb4,0x8,0x2d,0x91,0xff,
0xd4,0x29,0x6e,0xca,0x1f,0x51,0xaf,0x93,0x27,0x95,0x53,0x7c,0x8c,0xda,0x9f,0x38,
0xc1,0x1f,0xa3,0xab,0xba,0xe3,0xc4,0x89,0xc4,0x82,0xe,0xbf,0xc5,0xce,0x3e,0x77,
0x4e,0xa,0x8e,0xd0,0x93,0x14,0x10,0xa1,0x9,0xd7,0xd7,0x59,0xad,0xf4,0x71,0x89,
0x12,0xc6,0x20,0xf3,0xbb,0x96,0xee,0xb5,0x6b,0x73,0x28,0x7e,0x54,0x3c,0x6a,0xd4,
0x20,0x3,0x7d,0x82,0x22,0xf5,0xea,0x71,0x12,0x5a,0xa1,0x47,0xfd,0xfa,0xf4,0x32,
0x2,0xb0,0xc1,0xc9,0x49,0xef,0x7c,0x73,0x1c,0x6f,0xec,0xe5,0x1d,0xa9,0xa9,0xb8,
0x2,0x13,0xc5,0x1f,0x3b,0x86,0x7a,0xf8,0x1a,0x91,0xbb,0x77,0xe3,0x35,0x66,0x75,
0xcc,0x9e,0x3d,0x4a,0x9c,0xc3,0x8f,0x86,0x3d,0x7b,0xf6,0x5c,0x9e,0x41,0x14,0x1d,
0x74,0xe3,0x86,0xde,0xe9,0x8a,0xdc,0x49,0xa,0x88,0x78,0x2e,0x25,0x87,0x30,0x97,
0x1c,0x92,0x2f,0x9f,0xf5,0x83,0x8c,0x21,0x5,0xeb,0x4,0x6,0x2a,0xf3,0xd4,0xc6,
0xea,0xed,0x96,0x2d,0x31,0x97,0xbe,0xa0,0x8b,0xcd,0x9b,0xc3,0x89,0x7f,0xc1,0x6a,
0x5f,0x5f,0xbd,0xf3,0xcc,0xb3,0xda,0xe1,0x16,0xc6,0x66,0x64,0xe0,0x36,0xa,0x61,
0xd7,0xb1,0x63,0x7c,0x16,0x35,0xf8,0xcd,0xcd,0x9b,0xd1,0x83,0xa6,0x2b,0xb7,0x36,
0x6f,0x4e,0xa,0x35,0x36,0x8d,0xe,0xda,0xb7,0x4f,0x7a,0x30,0xe2,0x45,0x48,0x1,
0x11,0xff,0x53,0x89,0xa6,0xac,0x56,0x99,0xe6,0xea,0x6a,0x8,0xb7,0x7a,0x5b,0x92,
0x3a,0x74,0xc0,0x2e,0x6e,0xc1,0xa5,0xdb,0xb6,0xc5,0x60,0xf4,0xa4,0x97,0x2,0x3,
0xe1,0x8a,0x6a,0x98,0x9a,0x2f,0x9f,0xde,0x79,0x8a,0x67,0xc3,0x1b,0xb1,0x94,0x37,
0xde,0xbc,0x89,0x5b,0x74,0x1a,0x8e,0x5b,0xb6,0xa0,0x2c,0x1f,0x44,0xf0,0xda,0xb5,
0xd6,0xf,0x4c,0xdb,0x95,0xde,0xeb,0xd7,0x5f,0x5b,0x41,0x4a,0x74,0xd0,0xbd,0x7b,
0x7a,0xe7,0x29,0xb2,0x37,0x29,0x20,0x2,0x0,0xe0,0xe5,0xc5,0x5c,0xb9,0x72,0xe1,
0xc2,0x19,0xa5,0x2c,0xd3,0x2d,0x2b,0xdb,0xb4,0x51,0x27,0xe3,0x57,0xfa,0xa6,0x53,
0x27,0xfc,0x81,0xf9,0x3c,0xa6,0x79,0x73,0x9a,0x8,0xf,0xaa,0xf9,0xd7,0x60,0xb3,
0xc8,0x9d,0xf8,0x28,0xa2,0xd1,0x2a,0x2d,0xd,0xa7,0x31,0x2,0xa6,0xad,0x5b,0x95,
0xb1,0x68,0xc6,0xdd,0x57,0xac,0x30,0x7b,0x98,0x3e,0x50,0x8e,0xaf,0x5e,0x2d,0x85,
0x45,0xfc,0x9d,0x14,0x90,0x3c,0x87,0x19,0x50,0x14,0x8f,0x77,0x33,0xea,0xfb,0xf7,
0x7d,0xfd,0x75,0xe,0xe4,0x40,0xe,0xec,0xdd,0x1b,0xe0,0xde,0x68,0xd3,0xbe,0xbd,
0x14,0xa,0xf1,0xff,0xc9,0x2c,0x2c,0x6b,0x29,0x8a,0x6b,0xae,0x5f,0x4f,0x3b,0x68,
0x7,0xed,0x98,0x3f,0x3f,0xf1,0x7,0xe3,0x9e,0x98,0xb9,0x5b,0xb7,0xea,0x9d,0x9f,
0xd0,0x87,0x14,0x90,0x5c,0xae,0xd4,0xd4,0xfb,0x15,0x7c,0x43,0x3c,0x3c,0x32,0x2e,
0x9a,0xf6,0x53,0xc3,0x9e,0x3d,0x71,0x11,0xe3,0x68,0x52,0x48,0x8,0x8e,0xf3,0x17,
0x30,0x95,0x2e,0xad,0x77,0x7e,0x22,0x67,0xe3,0x48,0xf2,0xc2,0x98,0x13,0x27,0xe8,
0x5d,0xf8,0xf3,0xf,0xb,0x16,0x38,0xbd,0x64,0xfc,0xcd,0x1c,0xfd,0xdd,0x77,0xe7,
0x2f,0x90,0x72,0xfe,0xc2,0xed,0xdb,0x7a,0xe7,0x27,0xb4,0x25,0x5,0x24,0x97,0xf1,
0x3c,0x69,0xe,0xab,0x70,0xaf,0x4a,0x15,0xbe,0x83,0x70,0xc3,0xc5,0xfe,0xfd,0xb9,
0x1c,0xa2,0xf1,0x4d,0x70,0xb0,0xcc,0x76,0x12,0x76,0x51,0x1f,0xdb,0x71,0xfd,0xde,
0x3d,0x94,0x47,0x3a,0x7f,0x12,0x19,0xa9,0xb6,0xca,0xc8,0x47,0x6b,0xbe,0xf8,0x22,
0xb9,0x6e,0xbe,0x26,0x31,0x1b,0xe3,0xe3,0xf5,0x4e,0x4f,0x64,0x2d,0x29,0x20,0x39,
0x9c,0x7b,0x3,0x6b,0xf,0xdf,0xe5,0xcd,0x9b,0xd3,0x1e,0xb5,0x8c,0xd2,0x67,0xd8,
0x30,0xb8,0x61,0x38,0xdc,0x9a,0x34,0xd1,0x3b,0x2f,0x21,0x0,0xc0,0xb6,0x10,0x13,
0xeb,0xe9,0x43,0x8a,0x5d,0xb1,0x2,0xc9,0x1c,0xa,0xbf,0x69,0xd3,0x12,0xe3,0x1d,
0xea,0xc5,0xd4,0x3a,0x7a,0x54,0xef,0xf4,0xc4,0x8b,0x91,0x2,0x92,0xc3,0xb8,0x47,
0x58,0x7e,0xd,0x88,0xaa,0x5f,0x9f,0xa,0xf3,0x4d,0x5e,0x31,0x65,0xa,0x6,0xe3,
0x4d,0x9c,0xa,0xc,0xd4,0x3b,0x2f,0x21,0x9e,0x49,0x32,0xa6,0x21,0x79,0xeb,0x56,
0x9e,0x8b,0x2e,0x7c,0x79,0xe4,0xc8,0xa4,0x50,0x7,0xef,0x58,0x97,0x23,0x47,0xf4,
0x4e,0x4b,0x3c,0x1b,0x29,0x20,0xd9,0x9c,0xc7,0x47,0x96,0xd9,0xbe,0xbf,0xd4,0xad,
0xcb,0x8d,0x98,0xe9,0xea,0xe4,0xc9,0x14,0x8c,0xde,0xf4,0xe9,0xeb,0xaf,0xeb,0x9d,
0x97,0x10,0x59,0xc2,0x3,0x66,0xf8,0x33,0xf3,0xe7,0x78,0xb,0xbe,0x1b,0x36,0x28,
0x63,0xd1,0x4c,0x71,0x1f,0x33,0xe6,0xca,0x1e,0x87,0x61,0xa7,0xc3,0x8e,0x1f,0xd7,
0x3b,0x3d,0xf1,0xbf,0x49,0x1,0xc9,0x66,0x3c,0x57,0xa6,0x17,0xf5,0x9f,0x5c,0xbe,
0xbc,0xfa,0x8a,0xb2,0x0,0xd5,0xa7,0x4f,0xa7,0x57,0xb8,0x35,0x86,0xb5,0x69,0xa3,
0x77,0x5e,0x39,0x4e,0x4d,0xa4,0xa2,0x83,0xaa,0xe2,0x2e,0xe6,0xc2,0x35,0x25,0x5,
0xb7,0x68,0x3,0x3c,0x52,0x52,0x70,0x83,0x3f,0x47,0xe9,0x94,0x14,0x5c,0xc2,0x76,
0x34,0x7b,0xf0,0x0,0x95,0xa8,0x24,0x2f,0x4f,0x4d,0xe5,0xfe,0x88,0xc3,0xd,0xb3,
0x39,0xf3,0xfd,0x1d,0xb0,0xc,0x71,0xf7,0xee,0x61,0x15,0xde,0x86,0x6f,0xfe,0xfc,
0x99,0xbf,0x2f,0xcf,0x87,0xe8,0x78,0xbe,0x7c,0xd4,0x4,0x81,0x98,0xe7,0xe4,0xc4,
0x9b,0xd1,0x11,0xee,0xf9,0xf3,0xc3,0x93,0x86,0xe2,0x66,0xd1,0xa2,0x28,0xc1,0xad,
0x71,0xa7,0x68,0x51,0xaa,0x82,0x10,0x78,0x15,0x29,0xa2,0x77,0x33,0xe4,0x38,0x8f,
0x16,0x40,0xb2,0x9,0x2a,0x3b,0x2f,0x58,0x80,0x8a,0x26,0x57,0x75,0xe3,0xd8,0xb1,
0x49,0xa1,0xa4,0x9c,0x99,0x7f,0xfd,0xba,0xde,0xe9,0x89,0xff,0x26,0x5,0x44,0x67,
0x65,0x7c,0x58,0x2d,0xe3,0xf3,0xd2,0x4b,0xf,0x7e,0xb4,0x8c,0x76,0xe8,0x31,0x66,
0xc,0xae,0xa1,0x7,0x2d,0x8,0xb,0xa3,0x50,0x94,0x86,0xb3,0x83,0x83,0xde,0xf9,
0xe9,0xce,0x19,0x33,0x51,0xff,0xfa,0x75,0x9e,0x7,0x27,0x6e,0x70,0xe2,0x4,0x6a,
0xa3,0x2e,0xc5,0xc7,0xc4,0xd0,0x6e,0xfa,0x8d,0xbf,0xb8,0x70,0x41,0xbd,0xaf,0xb6,
0x80,0xe3,0xc5,0x8b,0x34,0x90,0x7c,0x51,0xe8,0xe2,0x45,0x6e,0x61,0x32,0x5a,0xfb,
0x25,0x24,0x24,0x2f,0x26,0xe5,0x6c,0xd8,0xb5,0x6b,0xfa,0x25,0xce,0xc,0x18,0xc,
0x5e,0x9b,0x1,0xbf,0x54,0x57,0x57,0x6b,0x5d,0xeb,0x24,0x8c,0xf0,0xf6,0xe6,0xdb,
0xfc,0x1b,0xe2,0xbc,0xbd,0x31,0x81,0x3e,0xc6,0xd,0x6f,0x6f,0xaa,0x85,0x40,0xea,
0xea,0xe3,0xc3,0x8d,0xf9,0x38,0x8e,0x57,0xaa,0x44,0x73,0x11,0x8f,0x84,0x4a,0x95,
0xb0,0xc,0xcd,0x90,0x5c,0xa0,0x80,0xde,0xcd,0xaf,0x37,0x9e,0x8f,0xe5,0xfc,0xf9,
0xad,0x5b,0xca,0x47,0x74,0xa,0xc5,0x26,0x4d,0x72,0x33,0x18,0x3f,0x75,0xe9,0xff,
0xf5,0xd7,0x87,0x8f,0x90,0x72,0xf8,0x88,0xc5,0xa2,0x77,0x7e,0x79,0x9d,0x14,0x10,
0x9d,0x78,0xd6,0x33,0x87,0xfb,0xc5,0x5,0x7,0x73,0x59,0xdc,0xc3,0xe1,0x69,0xd3,
0xb0,0x15,0xa3,0x69,0xb2,0xab,0xab,0xde,0x79,0xd9,0x4b,0xe6,0x4a,0xe8,0xef,0xb1,
0x99,0xca,0xef,0xdb,0xa7,0x44,0xd0,0x78,0x2c,0xdc,0xbb,0x57,0xad,0x4a,0x5f,0xa8,
0xf9,0xe,0x1d,0x32,0xb6,0x36,0xef,0xc2,0x2f,0x27,0x4f,0x5e,0x1a,0xe9,0x7c,0x26,
0x2e,0x32,0x31,0x51,0xef,0x7c,0xed,0xd8,0x32,0xc,0x10,0xb9,0xce,0x49,0x1f,0x55,
0xfe,0x7b,0x1f,0x1f,0x83,0x81,0x7c,0x8c,0xf7,0xaa,0x54,0xc1,0x22,0x9a,0xcd,0x3e,
0x35,0x6b,0xd2,0x30,0x8c,0xa1,0x5,0xf5,0xeb,0x63,0x38,0x4a,0x72,0xff,0x5a,0xb5,
0x60,0x41,0x2d,0xea,0xeb,0xec,0xac,0x77,0xd6,0x76,0x93,0x46,0xcd,0xf1,0x56,0x5c,
0x1c,0x8d,0xa7,0xc3,0x6a,0x52,0xdf,0xbe,0x57,0x6,0x19,0xef,0xc4,0x45,0xfe,0xfe,
0xbb,0xde,0x69,0xe5,0x55,0x52,0x40,0xec,0xa4,0x44,0xd3,0xb4,0x6,0x15,0xe,0xf8,
0xf8,0x18,0x4c,0x4a,0x1d,0xc3,0xaf,0xf3,0xe6,0xe1,0x18,0xa6,0xe0,0x87,0x66,0xcd,
0xf4,0xce,0x4b,0x33,0xb6,0xcd,0xfe,0x8e,0x50,0x32,0x66,0xff,0xf6,0x1b,0xe,0x60,
0x4,0xdd,0xdd,0xbc,0x39,0x83,0xf9,0x3a,0xea,0xee,0xdc,0x79,0xb5,0x9a,0x29,0x35,
0xa6,0x63,0x4c,0xcc,0xc3,0xbd,0x98,0x54,0x55,0xef,0x74,0x73,0x9a,0x1a,0xd5,0x59,
0xad,0x51,0xdd,0x64,0xba,0x1a,0x68,0x6d,0xfc,0x60,0xd4,0xcb,0x2f,0xab,0x73,0x11,
0xca,0x5f,0x34,0x6c,0xc8,0x5f,0xf1,0x5d,0x84,0xb7,0x68,0x1,0xa0,0x29,0xbf,0x5c,
0xbf,0x7e,0xae,0x5d,0x18,0xfa,0x68,0xec,0x4,0x5,0xc8,0xb,0x3f,0x47,0x46,0x1a,
0xcf,0x19,0x53,0x8c,0xbe,0xc3,0x87,0x27,0x24,0x10,0x9d,0x3c,0x79,0xf3,0xa6,0xde,
0xe9,0xe5,0x15,0x52,0x40,0x34,0xf3,0xf0,0x11,0x86,0x67,0x55,0xeb,0x28,0xbf,0x7d,
0x61,0x61,0xec,0xc2,0x2d,0x51,0x76,0xf2,0x64,0x5c,0x44,0x5d,0xa,0x74,0x71,0xd1,
0x3b,0xbb,0x2c,0x73,0x97,0xc6,0x72,0xe4,0xa5,0x4b,0x38,0xcc,0xfe,0xd4,0x6b,0xd5,
0x2a,0x5c,0x56,0xc2,0xe9,0x8f,0x9f,0x7f,0x76,0x3e,0x65,0x38,0x61,0x9e,0xb6,0x7b,
0xf7,0xd9,0x30,0x52,0xce,0x86,0xa5,0xa7,0xeb,0x9d,0x66,0x5e,0x53,0x74,0x1d,0xab,
0xbe,0x21,0x5,0xa,0x38,0xcc,0x35,0xaf,0x56,0xd6,0x37,0x69,0x82,0xa5,0xca,0x8,
0x1e,0xd0,0xa6,0xd,0x2e,0xf3,0x18,0x4,0xb7,0x6f,0x4f,0x6f,0xa0,0x2b,0xbd,0x51,
0xb8,0xb0,0xde,0x79,0x66,0x99,0x71,0x18,0x8d,0x98,0xe4,0x64,0x3a,0xcd,0x1f,0x50,
0xd4,0xc0,0x81,0x57,0x66,0x39,0x7a,0x44,0x7,0xad,0x5c,0xa9,0x77,0x5a,0xb9,0x9d,
0x14,0x90,0x2c,0x56,0x82,0x1f,0xb0,0x2f,0x7b,0x7b,0x1b,0xbc,0xd,0x7b,0x95,0x43,
0x4b,0x97,0xc2,0x82,0x5a,0x8,0xae,0x57,0x4f,0xef,0xbc,0x5e,0x14,0x8f,0xc7,0x30,
0x98,0x92,0x92,0x28,0x1,0x4d,0x79,0xe0,0x8a,0x15,0x98,0x4e,0xa9,0x3c,0x24,0x2a,
0x2a,0x31,0xcd,0xd8,0x39,0xee,0xde,0xde,0xbd,0xf,0x7b,0x12,0xcc,0x7a,0xe7,0x29,
0xfe,0xb7,0xcc,0x73,0x58,0x96,0x66,0xcc,0x55,0x5b,0x35,0x6d,0xaa,0x96,0xe1,0xa5,
0x14,0x12,0x14,0x44,0x5e,0x3c,0x2,0xae,0xed,0xdb,0x23,0x1c,0xad,0xb0,0xb5,0x60,
0x41,0xbd,0xf3,0x7c,0x61,0xa9,0xd4,0x1f,0x75,0x97,0x2d,0x33,0xdd,0x32,0xce,0x77,
0x58,0xd8,0xb7,0x6f,0x3c,0x11,0x1d,0xa7,0x5b,0xb7,0xf4,0x4e,0x2b,0xb7,0x91,0x2,
0x92,0x45,0x3c,0x3d,0xd2,0xd3,0x2,0xfc,0x3b,0x75,0x52,0x37,0xd2,0xf,0xea,0xc6,
0x88,0x88,0x1c,0xfb,0xd,0xcf,0x36,0x7b,0xe9,0x67,0xcc,0xc1,0xec,0x6d,0xdb,0xc8,
0x8d,0x87,0x92,0xdb,0xfc,0xf9,0x6e,0x6e,0xe,0xe,0xf9,0xf2,0xad,0x5d,0x2b,0x83,
0x97,0xb9,0x53,0x69,0x66,0x2e,0xcd,0x4e,0x4e,0x56,0x4f,0x73,0xba,0x4b,0x40,0x9b,
0x36,0x9c,0x4c,0xd3,0x39,0xb9,0x77,0x6f,0x54,0xc7,0x20,0x34,0x6a,0xdc,0x38,0xf3,
0x84,0xc6,0x9c,0xa6,0x30,0x8d,0xe4,0x43,0x9,0x9,0x6a,0x6d,0x8c,0xc5,0xaa,0xe0,
0xe0,0xe4,0xc5,0xa6,0x22,0xb1,0xc1,0x3b,0x76,0xe8,0x9d,0x56,0x6e,0x91,0xf3,0xfe,
0x41,0x64,0x13,0xb6,0xd9,0x53,0x69,0x37,0xac,0xa1,0x8e,0xaf,0xcf,0x9b,0x7,0x17,
0x9e,0x8d,0xbd,0x6f,0xbf,0xad,0x77,0x5e,0xcf,0xcc,0x17,0xe1,0xe8,0x7b,0xed,0x1a,
0x4f,0xc3,0x14,0x78,0xcc,0x9d,0xab,0x2c,0xb1,0x1e,0xb3,0x24,0x2e,0x58,0x70,0x65,
0x96,0x73,0x85,0xb3,0x61,0x97,0x2f,0xeb,0x9d,0x9e,0xd0,0x57,0x89,0x63,0x66,0x67,
0xff,0x95,0x15,0x2b,0x2a,0xa9,0x38,0x8c,0x19,0xfd,0xfa,0xd1,0xbb,0xb8,0xc1,0x1f,
0x77,0xef,0x9e,0xe3,0x6,0xef,0x6d,0xd3,0x83,0xf,0xa3,0x31,0x17,0xfb,0xec,0xb3,
0xa4,0xff,0x98,0x8e,0x97,0x68,0x3a,0x61,0x2,0x40,0xca,0xe,0xb2,0x5a,0xf5,0x4e,
0x2f,0xa7,0x92,0x2,0xf2,0x8c,0x3c,0x1a,0xa5,0x87,0xf9,0x86,0xf8,0xfa,0xa2,0x90,
0xb2,0x9f,0xde,0x58,0xb3,0x6,0x7,0x78,0x37,0x8d,0xf5,0xf7,0xd7,0x3b,0xaf,0xa7,
0xc5,0xe3,0xe9,0x3d,0xfe,0xea,0xdc,0x39,0xec,0x81,0xb,0x1d,0x98,0x35,0xb,0xf5,
0x8c,0x8b,0x9c,0xd7,0x2e,0x58,0x90,0x14,0x4a,0x74,0xf8,0xf0,0xfd,0xfb,0x7a,0xe7,
0x27,0xb2,0xb7,0xcc,0x69,0xe7,0xd,0xac,0x3d,0x1d,0x43,0xba,0x77,0xc7,0x30,0x94,
0x86,0xd3,0xf0,0xe1,0xd4,0x82,0x3f,0x44,0xa4,0xa7,0xa7,0xde,0xf9,0x3d,0xb5,0x37,
0xf0,0x1b,0xff,0xbe,0x6b,0x97,0xe5,0xb6,0xa9,0x85,0xb2,0x33,0x28,0xe8,0xda,0xa,
0xa2,0xe8,0xa0,0xe4,0x64,0xbd,0xd3,0xca,0x69,0xa4,0x80,0x3c,0x25,0x8f,0xff,0x98,
0x9d,0xfd,0x57,0x6,0x5,0x21,0x1c,0x6b,0xd1,0x77,0xd1,0x22,0xec,0x46,0x43,0x14,
0xfb,0xdb,0x2,0xb3,0xec,0x6a,0x2e,0x5,0xa0,0xc4,0xa9,0x53,0xaa,0x45,0x5d,0xc3,
0xb1,0x13,0x26,0x24,0x77,0x74,0xa8,0x14,0x9b,0xbc,0x66,0x8d,0xcc,0x7e,0x12,0x59,
0xa1,0xdc,0x4c,0x56,0xcb,0xcd,0x74,0x74,0xbc,0xff,0xbb,0xf5,0x55,0xa3,0x47,0xcf,
0x9e,0xdc,0xb,0xed,0x69,0xed,0xe8,0xd1,0xd4,0x93,0x87,0xe1,0xb0,0x87,0x87,0xde,
0xf9,0x3d,0x9,0x47,0xd3,0x24,0x1e,0x7c,0xf9,0xb2,0x92,0x81,0x3f,0xe8,0x8d,0x8e,
0x1d,0xaf,0x14,0x35,0x2d,0x8f,0x29,0x75,0xe0,0x80,0xde,0x79,0xe5,0x14,0x52,0x40,
0x1e,0xeb,0xe1,0x2c,0x2a,0xf7,0xfd,0x96,0xf,0xfd,0xa6,0x7c,0xf6,0x19,0xd,0xc0,
0x18,0x3a,0x32,0x74,0x68,0xb6,0x7f,0x16,0xfc,0x68,0x9e,0x3c,0x1f,0xe7,0xc,0x3e,
0x30,0x71,0x62,0x52,0x29,0xd3,0x8e,0xd8,0xad,0xcb,0x97,0x4b,0xc1,0x10,0xf6,0x60,
0x3b,0xea,0x98,0xb7,0x59,0x47,0xe5,0xf,0xea,0xd3,0x87,0xab,0x72,0x3e,0x5c,0x18,
0x35,0x2a,0xbb,0xaf,0x73,0xe2,0x9f,0xf1,0x7,0x7c,0xd2,0xd3,0xf1,0x39,0xdc,0xb8,
0xf1,0xc0,0x81,0x49,0xcb,0x1c,0x8a,0xc6,0xe,0x5d,0xb0,0x40,0xef,0xbc,0xb2,0xbb,
0xec,0xfb,0x41,0xa8,0x93,0x12,0x4d,0x99,0xab,0x4c,0x73,0x71,0x31,0xec,0xb2,0x2e,
0x37,0xdf,0xfb,0xe1,0x7,0x14,0xe1,0xb7,0x28,0xaa,0x6d,0x5b,0xbd,0xf3,0x7a,0xac,
0x47,0x63,0x18,0x74,0x82,0xc2,0xd1,0x6c,0xdc,0xb8,0x2b,0x29,0xc6,0x94,0x18,0xbf,
0x5,0xb,0xe4,0xac,0x6b,0x91,0x1d,0xd8,0xfe,0x3f,0x29,0x65,0x2c,0x65,0x2d,0xe3,
0x46,0x8d,0xa2,0x45,0x58,0x86,0xb9,0x43,0x87,0x66,0xf7,0xa3,0x90,0x79,0x35,0xc6,
0x71,0x97,0xf0,0xf0,0xa4,0x57,0x4d,0x9f,0xc6,0x8e,0x19,0x39,0x52,0xbe,0x80,0xfd,
0xff,0xa4,0x80,0x3c,0x52,0xbc,0x13,0x73,0x40,0x94,0x9b,0x9b,0xa9,0x82,0xe5,0x1e,
0xdf,0x5d,0xbf,0x1e,0x8b,0xe1,0x88,0xf0,0x9a,0x35,0xf5,0xce,0xeb,0x9f,0x78,0x3c,
0x12,0xf9,0x90,0xc5,0x42,0x95,0xe0,0x41,0x17,0x16,0x2f,0xe6,0x53,0x26,0x63,0xc6,
0xcc,0x8f,0x3e,0x92,0xbd,0x82,0x44,0x4e,0xe0,0x39,0xf0,0xfe,0x99,0x72,0x33,0x4b,
0x96,0xe4,0xc1,0xa6,0x50,0xd3,0xe4,0x4f,0x3e,0x41,0x67,0x5e,0x8f,0x6,0x5d,0xbb,
0x66,0xdb,0x9e,0xfd,0xfb,0xb4,0x0,0x4e,0x6b,0xd6,0xb0,0x97,0xb1,0x9f,0xb3,0xd2,
0xb5,0xab,0x8c,0x15,0xfe,0xb7,0xec,0xf7,0x17,0x66,0x67,0xb6,0x59,0x26,0x86,0xf,
0x29,0x4,0xa3,0x36,0x6c,0xc8,0xb6,0x27,0xf5,0x3d,0x1a,0xf4,0xe3,0x5a,0x1c,0xaf,
0x8e,0xeb,0xdd,0x3b,0x29,0xd4,0xb1,0xcf,0x99,0xf9,0xb1,0xb1,0x7a,0xa7,0x25,0xc4,
0x8b,0xf0,0x64,0xb,0xfb,0x72,0xc3,0x86,0x6a,0x2a,0x9a,0x2b,0xad,0x22,0x22,0xa8,
0x2,0xff,0x8c,0xb,0x15,0x2a,0xe8,0x9d,0xd7,0x3f,0xf1,0x37,0xb8,0x0,0xda,0xbf,
0x9f,0x7f,0x34,0x95,0xb7,0xf4,0x69,0xdb,0x56,0xff,0xbd,0xd6,0xb2,0x87,0x3c,0x5b,
0x40,0xdc,0x23,0xcc,0x17,0xfd,0x52,0xab,0x57,0xa7,0x69,0x58,0x49,0x83,0x7f,0xf9,
0x5,0xf7,0x11,0x86,0xdd,0xc5,0x8a,0xe9,0x9d,0x57,0xa6,0x61,0xd8,0x80,0x26,0x77,
0xee,0xf0,0x31,0x5a,0xf,0xd7,0x71,0xe3,0x92,0xbe,0x35,0x2e,0x8a,0x19,0x3b,0x6b,
0x96,0x74,0xa5,0x45,0x6e,0x64,0x5b,0x87,0x62,0x86,0x19,0xce,0x18,0x35,0xa,0x3f,
0xd3,0x59,0x78,0x7f,0xf8,0x61,0xb6,0xdb,0x54,0xd4,0xb6,0x17,0x57,0x17,0x4b,0x84,
0xa5,0x44,0x93,0x26,0x79,0x7d,0xba,0xbb,0xa2,0x77,0x2,0xf6,0xe6,0xe1,0x64,0x59,
0xe6,0x9b,0xbf,0x5e,0x3d,0x0,0x7,0x68,0xe9,0xb6,0x6d,0xd9,0xae,0x70,0x8c,0xc6,
0x0,0xee,0xb3,0x79,0xb3,0x72,0xc9,0x7a,0xca,0x3a,0x3e,0x20,0x20,0xe9,0x5b,0x53,
0x64,0xcc,0xd8,0xaf,0xbe,0x92,0xc2,0x21,0x72,0xb3,0x78,0x22,0x8a,0xa7,0xb4,0xb4,
0x24,0x72,0xa4,0x18,0x9a,0x30,0x41,0xf9,0xc,0xeb,0x94,0xa1,0xb5,0x6b,0xdb,0xce,
0x5c,0xd7,0x3b,0xbf,0x4c,0x4e,0xfc,0xb,0x56,0xfb,0xfa,0xf2,0x2b,0xa6,0x49,0x26,
0x9f,0x1d,0x3b,0x6c,0x7b,0xdc,0xe9,0x9d,0x96,0x5e,0xf2,0x4c,0xf,0xc4,0xed,0x7d,
0xcb,0xd,0xbf,0x6f,0x3,0x3,0x95,0xc2,0xbc,0x97,0x16,0xaf,0x5f,0x9f,0x5d,0xb6,
0xcb,0xe6,0xa3,0x88,0x46,0xab,0xb4,0x34,0x24,0x51,0x3c,0xf7,0x9f,0x30,0x21,0xa9,
0x9a,0xb1,0x6d,0xac,0xcf,0xb4,0x69,0x52,0x30,0x84,0xf8,0xdb,0x34,0xe1,0xfd,0x96,
0x2e,0xa6,0x98,0x89,0x13,0x71,0xf,0x73,0x50,0x74,0xf8,0x70,0x1c,0x82,0xb,0x56,
0x29,0xba,0x7f,0x1,0xb6,0x6d,0xf1,0xa3,0xbe,0x82,0x85,0x18,0xd7,0xb4,0xe9,0xd5,
0x6a,0xe,0xf7,0x63,0x3a,0x9e,0x3e,0xad,0x77,0x5e,0xf6,0x92,0xeb,0xb,0x88,0xc7,
0x36,0x6b,0xa5,0x0,0xc7,0xc6,0x8d,0xb9,0xa2,0xba,0x94,0x7,0xfe,0xfc,0x33,0xbd,
0x8c,0x0,0x6c,0x70,0x72,0xd2,0x3b,0x2f,0xdb,0x37,0x2b,0x75,0x3a,0x17,0xe7,0xe2,
0x5d,0xba,0x5c,0xdd,0xe2,0x70,0x32,0xb6,0xd9,0xa9,0x53,0x7a,0xe7,0x25,0x44,0x76,
0xe6,0x9e,0x66,0x6d,0xe9,0x77,0xb4,0x69,0x53,0x2c,0x51,0xcb,0x53,0xb7,0x25,0x4b,
0x68,0x22,0xc2,0x61,0x71,0x77,0xd7,0x3b,0x2f,0xdb,0x66,0x8e,0x78,0x97,0x8f,0x70,
0xff,0xc0,0xc0,0xc4,0x82,0x8e,0xdb,0x62,0x67,0x9f,0x39,0xa3,0x77,0x5a,0x5a,0xd3,
0xbd,0x82,0x6b,0xc5,0xe3,0x8e,0x65,0xa2,0x5f,0xff,0x3a,0x75,0x30,0x4f,0xfd,0x82,
0xb,0xae,0x5d,0x9b,0x5d,0xa,0x7,0x6,0x51,0x10,0xf,0xf8,0xfe,0x7b,0xc4,0x1b,
0x93,0x9c,0xbf,0xa8,0x53,0x47,0xa,0x87,0x10,0x4f,0x2f,0xc9,0xc9,0xb8,0x29,0xf6,
0xe5,0x2d,0x5b,0x78,0xbf,0xe9,0x4b,0x4b,0xcf,0xaa,0x55,0xf9,0x5b,0xcc,0xe7,0xf,
0xb7,0x6d,0xd3,0x3b,0x2f,0x4c,0xc2,0x27,0xf0,0x77,0x73,0x63,0x55,0xa9,0x8b,0x2a,
0xbf,0xfd,0x96,0x57,0x1e,0x6d,0xe5,0xba,0x1e,0x88,0x47,0x94,0x79,0x79,0x40,0x54,
0xb5,0x6a,0x5c,0x1,0xa9,0x6a,0xad,0x6d,0xdb,0x74,0xdf,0xd4,0xb0,0x1f,0xae,0xf1,
0xb7,0x56,0x2b,0xb7,0xa6,0x43,0x28,0x36,0x66,0x4c,0x52,0x35,0x53,0xbb,0x58,0x9f,
0xa9,0x53,0xf5,0x6e,0x27,0x21,0x72,0x7,0x56,0x3,0xd9,0x68,0xf4,0x78,0xd7,0xd2,
0xe5,0xcf,0x7e,0x53,0xa6,0x60,0x3b,0x96,0x60,0xfb,0xc8,0x91,0xba,0x67,0xf5,0x68,
0xcb,0x20,0xe3,0x2d,0xcb,0x51,0x5e,0xf6,0xda,0x6b,0xb9,0xf5,0x60,0xb4,0x5c,0x53,
0x40,0x32,0xa7,0xe3,0xbe,0x8a,0xcf,0x10,0xbe,0x63,0x7,0x8a,0xa0,0xf,0x6e,0x17,
0x2d,0xaa,0x5b,0x42,0x8f,0x16,0xf8,0x61,0x1f,0x95,0x51,0x47,0xbf,0xf9,0x66,0x62,
0x9a,0xe9,0xed,0xb8,0x7b,0x7b,0xf6,0xe8,0xdd,0x4e,0x42,0xe4,0x66,0xee,0x6f,0x9a,
0x83,0x3,0xaa,0x77,0xe9,0x82,0xb1,0x18,0xc9,0x6e,0x8b,0x16,0x51,0x6b,0x94,0xc7,
0x5,0x47,0x47,0xdd,0x12,0xa,0xa2,0xda,0xbc,0x3e,0x3a,0x1a,0x93,0x8c,0x47,0x31,
0xe3,0xb5,0xd7,0x12,0xb,0x12,0xc5,0xce,0x4e,0x49,0xd1,0xbb,0x9d,0xb2,0x4a,0x8e,
0x2f,0x20,0x99,0xb,0x0,0xef,0x59,0x7,0xf2,0xe8,0xfd,0xfb,0xf5,0x5e,0xc7,0xc1,
0x8b,0xe8,0x6d,0xde,0x7e,0xf6,0x2c,0xd5,0x53,0x6f,0x61,0x52,0xab,0x56,0x79,0xe5,
0x59,0xa8,0x10,0xd9,0x49,0xe6,0x23,0xec,0x76,0x6c,0x22,0xdf,0x75,0xeb,0x10,0x87,
0x61,0x98,0x5b,0xbc,0xb8,0x6e,0x9,0xf9,0x62,0x37,0x4f,0xdd,0xbd,0xdb,0xb4,0xcd,
0xd4,0xe8,0x41,0x9b,0xa6,0x4d,0x6d,0xb3,0xce,0xf4,0x6e,0xa7,0x17,0x95,0x63,0xc7,
0x40,0x6c,0x7b,0xee,0x18,0x7b,0x59,0xce,0xf0,0x84,0x35,0x6b,0x74,0x2f,0x1c,0x3b,
0x10,0x87,0xda,0xfb,0xf6,0x71,0x94,0x71,0xa5,0x75,0x79,0xdd,0xba,0x52,0x38,0x84,
0xd0,0x4f,0x62,0x41,0xd3,0xf8,0xd8,0xd9,0xfb,0xf6,0x19,0xa0,0xfa,0x29,0xed,0xeb,
0xd4,0xe1,0x33,0xd4,0x1a,0x3e,0x3a,0xfe,0x7f,0x8c,0x43,0x7d,0x1a,0x59,0xbf,0xbe,
0x79,0x87,0x75,0x58,0xbe,0xa4,0x25,0x4b,0x1e,0xee,0xb5,0xa7,0xff,0x2c,0xb2,0x17,
0x95,0x3,0x6f,0xe0,0xe1,0x26,0x87,0xea,0x5c,0xeb,0xf2,0xfc,0x5,0x97,0x2d,0xa3,
0xee,0xf0,0x1,0xbf,0xfa,0xaa,0x6e,0xe9,0xd4,0xa5,0x25,0x7c,0x68,0xed,0x5a,0x97,
0x4d,0xa6,0x8a,0x96,0x1a,0x8d,0x1a,0xc9,0xa,0x55,0x21,0xb2,0x8f,0x4b,0xbf,0x3b,
0xbd,0x75,0xda,0xeb,0xdc,0x39,0xf5,0x4d,0xe3,0x66,0x53,0xa3,0x6,0xd,0xf8,0x3c,
0x15,0xe1,0x1f,0x8e,0x1d,0xd3,0x2b,0x1f,0x7a,0x97,0x3f,0xa5,0xc6,0x41,0x41,0x1e,
0xdb,0x2c,0x4d,0x2,0x1c,0xa7,0x4c,0xd1,0xbb,0x7d,0x5e,0xf8,0x7e,0xf4,0x4e,0xe0,
0x59,0xb9,0xef,0x37,0x8f,0xf2,0x9b,0x32,0x6d,0x1a,0xbd,0x85,0x49,0xf4,0xfd,0xb0,
0x61,0xba,0x25,0x52,0x8a,0x7a,0x62,0xf4,0x8f,0x3f,0x26,0x1e,0x30,0x7e,0xe3,0xda,
0x35,0x38,0x58,0xe,0xa6,0x11,0x22,0xfb,0xf3,0xf2,0x62,0xae,0x5c,0xb9,0x70,0x61,
0xcb,0x42,0xcb,0x19,0x6b,0xc6,0xc6,0x8d,0x7a,0x7f,0x1,0x55,0x57,0x62,0x32,0x7c,
0x82,0x83,0x93,0xeb,0x3a,0x4c,0x8e,0xd9,0xf8,0xdd,0x77,0x7a,0xb7,0xcf,0xb3,0xca,
0x31,0x3d,0x10,0xf7,0x16,0xe9,0x2b,0xfd,0x8b,0xbf,0xf9,0x66,0xe6,0xb6,0xea,0x7a,
0x99,0x47,0x6d,0x79,0xe5,0xd2,0xa5,0x52,0x38,0x84,0xc8,0x79,0x12,0x12,0x88,0x4e,
0x9e,0xbc,0x79,0x53,0x9d,0x66,0xaa,0x60,0x7a,0xbf,0x49,0x13,0x24,0x63,0x1a,0x92,
0xb7,0x6e,0xd5,0x2b,0x1f,0x2a,0x8b,0xe,0x8,0x98,0x3f,0xdf,0xdd,0xdd,0x6c,0xf6,
0xf3,0xab,0x51,0x43,0xef,0xf6,0x79,0xe6,0xfc,0xf5,0x4e,0xe0,0x49,0x32,0x67,0x57,
0x7d,0x82,0xb5,0xe8,0xbb,0x7f,0xbf,0x6e,0x7,0x39,0xf9,0x92,0x1b,0xce,0x2d,0x5a,
0x94,0xf8,0xbb,0x31,0x25,0xc6,0xdc,0xab,0xd7,0xc3,0x95,0xe2,0xcc,0x7a,0xb7,0x8f,
0x10,0xe2,0xf9,0xb9,0x47,0x30,0xd7,0xa8,0xe1,0xec,0x4c,0x85,0x2d,0x51,0xf7,0xcb,
0x6c,0xdc,0x88,0xc1,0x78,0x13,0xa7,0x2,0x3,0xed,0x9e,0xc8,0xe7,0x14,0x82,0xcf,
0xcf,0x9f,0x57,0xe,0x1b,0xbf,0xa3,0x7,0xb5,0x6a,0x5d,0x9e,0x41,0x14,0x1d,0x74,
0xe3,0x86,0xde,0xed,0xf3,0x24,0xd9,0xb6,0x7,0x62,0x3b,0x3a,0x53,0x29,0x47,0xf5,
0x11,0xb9,0x7a,0xb5,0x6e,0x85,0xc3,0xf6,0xa8,0xea,0x77,0x63,0x4a,0x8c,0x39,0x34,
0x54,0xa,0x87,0x10,0xb9,0x87,0x6d,0x7b,0xf6,0x74,0x47,0x53,0x27,0xb5,0x40,0x9b,
0x36,0xf,0x8f,0x4b,0xd0,0xe1,0x44,0xc2,0x11,0x1c,0x89,0x11,0x65,0xca,0xa8,0x2d,
0x2c,0xdd,0x54,0xef,0xa5,0x4b,0x73,0xca,0x20,0x7b,0xb6,0x4d,0x30,0xcd,0xd5,0xda,
0xdd,0x71,0xd2,0xdc,0xb9,0xba,0x6d,0xef,0x5c,0x8c,0x7e,0xe4,0xaf,0xd6,0xad,0x73,
0xb7,0x18,0xbf,0x71,0x9e,0xd1,0xad,0x9b,0x1c,0xd0,0x24,0x44,0xee,0x95,0xd2,0x8e,
0x94,0xb8,0xc8,0xbb,0x77,0xf3,0x7d,0x66,0xf2,0x32,0x57,0x6a,0xde,0x1c,0xa5,0xc9,
0x1,0xf9,0x8f,0x1c,0xb1,0x7b,0x22,0xef,0x63,0x21,0x75,0x6b,0xd9,0xd2,0xfd,0x98,
0xf5,0x27,0xbf,0xb,0xc3,0x87,0xeb,0xdd,0x2e,0x4f,0x92,0xed,0xa,0x88,0xbb,0x8b,
0x39,0xcc,0xff,0xb7,0xae,0x5d,0x71,0x89,0x17,0xe2,0x93,0x77,0xde,0xb1,0x7b,0x2,
0x3,0xb1,0x11,0xa9,0x3b,0x77,0x3a,0xf7,0x34,0xbe,0x67,0x8d,0xed,0xdc,0xf9,0xf0,
0x11,0x52,0xe,0x1f,0xb1,0x58,0xf4,0x6e,0x17,0x21,0x84,0xf6,0xce,0x5f,0x20,0xe5,
0xfc,0x85,0xdb,0xb7,0x2d,0x25,0x8d,0x4c,0xc3,0x5b,0xb5,0x42,0x1b,0x1a,0x88,0x80,
0x8b,0x17,0xed,0x9e,0xc8,0x25,0xe,0xa0,0x86,0x93,0x26,0x65,0xf7,0xb1,0x91,0x6c,
0x53,0x40,0x3c,0x3e,0x7a,0x50,0xb1,0x52,0xd9,0x52,0xa5,0xb0,0x7,0xd5,0xb8,0xcc,
0xcc,0x99,0xf6,0x8e,0x6f,0xdb,0x7a,0x40,0x3d,0x63,0x6a,0x6b,0x19,0xd6,0xb1,0xe3,
0xd9,0x30,0x52,0xce,0x86,0xa5,0xa7,0xeb,0xdd,0x2e,0x42,0x8,0xfb,0xbb,0xb6,0x82,
0x28,0x3a,0x28,0x39,0x59,0x9d,0xa9,0xbe,0xa3,0xbc,0xff,0xc6,0x1b,0xbc,0x11,0x4b,
0x79,0xe3,0xcd,0x9b,0xf6,0x8a,0x9f,0x79,0xe,0x4a,0x24,0xbd,0x8d,0x1d,0xcb,0x96,
0x15,0xef,0xc4,0x6a,0x40,0x94,0xe,0x8f,0xf0,0x9f,0x94,0xa7,0xde,0x9,0xd8,0xd6,
0x75,0x78,0x34,0xb2,0xfc,0xee,0xf7,0xd3,0xf6,0xed,0xb6,0x5,0x37,0x76,0xb,0xff,
0x68,0xcb,0x11,0xdb,0x82,0x23,0xdb,0xbc,0x71,0xbd,0x5b,0x45,0x8,0x91,0x7d,0x78,
0x56,0xb0,0x7a,0x5,0x44,0xbd,0xfe,0xba,0x3a,0x5d,0xfd,0x8d,0x87,0x6f,0xda,0x64,
0xf7,0x83,0xae,0x56,0x0,0x58,0x31,0x7f,0x7e,0x62,0x3d,0x7,0x87,0x98,0x4a,0xa1,
0xa1,0x7a,0xb7,0x87,0x8d,0xee,0x3d,0x10,0xcf,0xaa,0xd6,0x51,0x7e,0xfb,0xc2,0xc2,
0xec,0x5d,0x38,0x6c,0x67,0x8b,0xf3,0xdb,0x54,0x93,0xdc,0xde,0x7a,0x4b,0xa,0x87,
0x10,0xe2,0x71,0xae,0x9c,0x31,0x26,0x44,0x7,0x6d,0xdb,0x86,0xef,0x51,0x84,0xc3,
0x6,0xc,0xb0,0x7b,0x2,0x83,0x60,0xc6,0xb8,0x5e,0xbd,0x3c,0xde,0xb5,0xd6,0xf3,
0xef,0xdb,0xa4,0x89,0xde,0xed,0x61,0xa3,0x5b,0x1,0x71,0xdb,0xfb,0x60,0xab,0xff,
0x1b,0xa5,0x4b,0xb3,0x2f,0x37,0xa6,0xb6,0x93,0x26,0xd9,0x3b,0x3e,0x6d,0xa6,0x20,
0x6c,0x1a,0x32,0x24,0x29,0xd4,0xd4,0x2c,0x3a,0x68,0xf7,0x6e,0xbd,0xda,0x41,0x8,
0x91,0x73,0x24,0x2d,0x73,0x28,0x1a,0x3b,0x74,0xc1,0x2,0xbc,0x45,0x85,0xe0,0xb3,
0x70,0xa1,0xdd,0x2,0x27,0xc2,0x1,0x31,0x44,0x28,0xc0,0x95,0xf0,0xe7,0x82,0x5,
0x25,0x9a,0x32,0x57,0x99,0xe6,0xe2,0xa2,0x77,0x7b,0xe8,0x56,0x40,0x94,0xe5,0x86,
0x9f,0x30,0x34,0x22,0xc2,0xee,0xd3,0x73,0x1f,0x9d,0xc7,0x91,0xb8,0xc6,0xf4,0x9f,
0xd8,0x8e,0xb3,0x67,0xeb,0x75,0xff,0x42,0x88,0x9c,0xcb,0xb9,0x82,0xf1,0x9e,0xa5,
0xc5,0x80,0x1,0x98,0x8c,0xbb,0xdc,0xf3,0xe0,0x41,0xbb,0x5,0x5e,0xcf,0xb3,0x10,
0xed,0xed,0xad,0xac,0xb7,0xc,0x32,0x37,0x19,0x3f,0x5e,0xef,0x76,0xb0,0x7b,0x1,
0xf1,0xac,0x67,0xe,0xf7,0x8b,0xb,0xe,0xc6,0xa,0x84,0x63,0x40,0xf3,0xe6,0xf6,
0x8a,0x6b,0x3b,0x1,0x50,0x49,0x36,0xae,0xb9,0x77,0xb6,0x57,0x2f,0x7b,0xdf,0xb7,
0x10,0x22,0xf7,0xb0,0x4d,0xb2,0x61,0x6b,0xc6,0x54,0xa5,0x54,0xc7,0x8e,0x7c,0x2,
0x91,0x48,0xb0,0xdf,0xc2,0x3f,0xa,0xc7,0x48,0x58,0x87,0xc,0xd1,0x7b,0x96,0x96,
0xdd,0xa,0x48,0xd1,0x75,0xac,0xfa,0x86,0x14,0x28,0xc0,0xef,0x21,0x99,0x7c,0xed,
0x77,0xa0,0x12,0xff,0x8c,0x3f,0xe0,0x93,0x9e,0xae,0x78,0x72,0x50,0x46,0xbb,0xf7,
0xde,0xbb,0x3c,0x83,0xe8,0xf2,0x8c,0x7,0xf,0xec,0x15,0x5f,0x8,0x91,0x7b,0x25,
0x85,0xe6,0xfb,0x3c,0x3a,0x28,0x21,0x1,0x5d,0xb9,0x18,0x9c,0x7b,0xf6,0xb4,0x5b,
0xe0,0x39,0x28,0x4e,0xc1,0x46,0x23,0x26,0x20,0x11,0x87,0x67,0xcf,0x7e,0x38,0x19,
0x89,0xec,0x3e,0x29,0xca,0x6e,0x5,0xc4,0x21,0xd9,0x32,0xc5,0xb0,0x72,0xfc,0x78,
0xdb,0xd1,0x8f,0x76,0xbb,0xc3,0x83,0x34,0x9,0x11,0x23,0x46,0x5c,0xa9,0xec,0x30,
0xf3,0x4c,0xfe,0x13,0x27,0xec,0x16,0x57,0x8,0x91,0x67,0x24,0x6d,0x76,0xec,0x18,
0x73,0x6d,0xcd,0x1a,0x58,0xc9,0x9b,0xe7,0x47,0x46,0xda,0x2b,0x2e,0x4d,0x84,0x7,
0xd5,0x7c,0xe5,0x15,0x77,0x17,0xcb,0x20,0xff,0xdf,0xba,0x74,0xb1,0xf7,0x7d,0x6b,
0x5e,0x40,0x3c,0x57,0xa6,0x17,0xf5,0x9f,0x5c,0xbe,0x3c,0x3c,0xf0,0xe,0x17,0x1e,
0x38,0xd0,0x6e,0x77,0x36,0x1a,0x3,0xb8,0xcf,0xe6,0xcd,0x49,0xa1,0xc6,0x65,0x31,
0xa5,0x66,0xcd,0xb2,0x5b,0x5c,0x21,0x44,0x9e,0x65,0x9,0x34,0x5e,0x56,0x92,0x6,
0xd,0xe2,0x2d,0xf4,0x16,0x6e,0xfd,0xf1,0x87,0xdd,0x2,0xef,0xa3,0xa2,0x38,0xf2,
0xd9,0x67,0xf6,0x1e,0x5c,0xd7,0xbc,0x80,0xa8,0xaf,0x28,0xb,0x50,0x7d,0xfa,0x74,
0xbb,0xcd,0x9b,0x1e,0x86,0xd,0x68,0x72,0xe7,0xe,0xc5,0x59,0x87,0x59,0x49,0x36,
0x3d,0x14,0x42,0xd8,0xcf,0xb5,0x15,0xa4,0x44,0x7,0xdd,0xbb,0x47,0xa5,0x50,0x8b,
0xdf,0xea,0xd6,0xd,0x35,0x91,0x8a,0xe,0xaa,0xaa,0x75,0x5c,0x6a,0xc1,0x1f,0x22,
0xd2,0xd3,0x53,0x29,0x63,0x29,0x6b,0x19,0x37,0x6a,0x94,0xbd,0xee,0x57,0xb3,0x2,
0xe2,0x1e,0x61,0xf9,0x35,0x20,0xaa,0x7e,0x7d,0x7a,0x85,0x5b,0x63,0x58,0x9b,0x36,
0xf6,0xba,0x21,0xfa,0x98,0x7a,0xa0,0xff,0xc8,0x91,0x57,0x66,0x39,0x57,0x38,0x1b,
0x76,0xf9,0xb2,0xbd,0xe2,0xa,0x21,0x84,0x8d,0xed,0x44,0x44,0xf6,0x46,0x3a,0xd7,
0x9c,0x3f,0xdf,0x6e,0x81,0x27,0x61,0x35,0xfa,0xf,0x1b,0x56,0x72,0xc8,0xfd,0xc9,
0xe5,0xaf,0x7b,0x7a,0x6a,0x1d,0x4e,0xbb,0x1e,0xc8,0x79,0x4e,0xe6,0x84,0xc9,0x93,
0xb5,0xbe,0x1,0x1b,0xdb,0x91,0xb2,0x57,0x52,0x8c,0x29,0x31,0x7e,0x76,0xfc,0xb,
0x13,0x42,0x88,0xc7,0x48,0xff,0xc3,0xe4,0x6a,0x4d,0x18,0x39,0x92,0xa3,0x69,0x12,
0xf,0xd6,0xfe,0xb,0x2d,0xbd,0x8c,0x0,0x6c,0x70,0x72,0x52,0xcf,0x1a,0xeb,0x18,
0xfa,0x8c,0x1c,0xa9,0x75,0xbc,0x2c,0x2f,0x20,0xb6,0x95,0x92,0xf4,0x1d,0xde,0xc6,
0xa2,0x86,0xd,0xb5,0xbe,0x1,0x8e,0x40,0x3c,0xee,0x9b,0xcd,0xd8,0xc6,0x7b,0x32,
0x1c,0x43,0x42,0x1e,0x3e,0xb2,0xd2,0xbe,0xcb,0x28,0x84,0x10,0x4f,0x72,0x63,0x13,
0x29,0x67,0xc3,0xee,0xdc,0xe1,0x7c,0x6a,0x13,0x58,0x7,0xd,0xb2,0x57,0x5c,0x9e,
0x8,0x77,0xba,0xdf,0xbb,0x77,0xe6,0x1e,0x83,0x1a,0xc9,0xfa,0x1e,0x88,0xb3,0x3a,
0x86,0xc7,0x8f,0x1b,0xa7,0x69,0xeb,0xfc,0xdd,0x66,0xac,0xc3,0x77,0x5f,0x7f,0x9d,
0x14,0xea,0xd8,0xe7,0xcc,0xfc,0xd8,0x58,0xbb,0xc5,0x15,0x42,0x88,0xa7,0x94,0xec,
0xe8,0xd8,0x30,0xb6,0xff,0xea,0xd5,0xa8,0x86,0x31,0x78,0xf7,0xd7,0x5f,0xb5,0x8e,
0x47,0xad,0x51,0x1e,0x17,0x1c,0x1d,0x79,0xbf,0x61,0xaf,0xb5,0xc5,0x47,0x1f,0x69,
0x15,0x27,0xcb,0xa,0x88,0x7b,0x84,0x35,0xc8,0xaf,0x6e,0xb3,0x66,0xd8,0x88,0xc6,
0xd4,0xa8,0x41,0x3,0xad,0x1b,0xc8,0xb6,0x9,0xa2,0xc3,0xd7,0xa6,0xa1,0xe,0xd,
0xec,0xf7,0xa8,0x4c,0x8,0x21,0x9e,0x17,0x4d,0x45,0x5a,0xc6,0x90,0xe1,0xc3,0xd1,
0xe,0xb7,0x30,0xd6,0xe,0xe7,0xb,0x5,0xe1,0x26,0x3e,0xf,0x9,0x71,0x8f,0x78,
0x30,0x22,0x20,0xca,0xcb,0x2b,0xab,0x2f,0x9f,0x65,0x5,0x84,0xfa,0xaa,0x55,0x29,
0xc6,0x7e,0x7,0xa0,0xa8,0x11,0x34,0x81,0x56,0x8f,0x1d,0x1b,0x4f,0x44,0xc7,0xe9,
0xd6,0x2d,0x7b,0xc5,0x15,0x42,0x88,0xe7,0x65,0x5b,0x8f,0xc6,0xd5,0x70,0x9f,0xdb,
0x69,0x3f,0x56,0xfb,0x70,0x9d,0x88,0xc9,0x4,0x18,0xf2,0xa3,0x67,0x58,0x58,0x56,
0x5f,0xff,0x85,0xb,0x88,0xe7,0x49,0x73,0x58,0x85,0x7b,0x55,0xaa,0xa0,0x3a,0x6,
0xa1,0x51,0xe3,0xc6,0x5a,0x37,0x8,0x9f,0xa1,0xd6,0xf0,0x39,0x73,0x26,0xb9,0x82,
0x31,0xad,0xf8,0xef,0x8b,0x16,0x69,0x1d,0x4f,0x8,0x21,0xb2,0x9a,0xba,0xd2,0xe4,
0xe5,0x30,0x67,0xc2,0x4,0x78,0x63,0x2f,0xef,0x48,0x4d,0xd5,0x3a,0x1e,0xa5,0xa2,
0x32,0x77,0xeb,0xd5,0xcb,0x76,0x54,0x78,0x56,0x5d,0xf7,0x85,0xb,0x8,0x3b,0xd3,
0x49,0x83,0xcf,0xb0,0x61,0x99,0xbb,0x45,0x6a,0xed,0x26,0xa7,0xb1,0x79,0xc2,0x4,
0x80,0x94,0x1d,0x64,0xb5,0x6a,0x1e,0x4f,0x8,0x21,0xb2,0xd8,0xd5,0x2d,0xa4,0x9c,
0x18,0xfe,0xe7,0x9f,0xf0,0x46,0x4,0x8d,0xff,0xfa,0x6b,0xcd,0x3,0x86,0xa3,0x15,
0xb6,0x16,0x2c,0x98,0xe6,0x6d,0xfd,0xc6,0x71,0x48,0xef,0xde,0x59,0x75,0xd9,0xe7,
0x2e,0x20,0xa5,0xa6,0xde,0xaf,0xe0,0x1b,0xe2,0xe1,0xc1,0xd1,0x3c,0x1f,0xce,0x9d,
0x3b,0x6b,0xde,0x0,0x23,0xa8,0x1a,0xae,0x9c,0x3e,0x9d,0x54,0xca,0xb4,0x23,0x76,
0xeb,0xf2,0xe5,0x9a,0xc7,0x13,0x42,0x8,0xad,0xcd,0x33,0xfd,0xc0,0xca,0xb4,0x69,
0xb6,0x5,0xd0,0x5a,0x87,0xe3,0x35,0x38,0xcf,0x8e,0x61,0x61,0x35,0xaa,0xb3,0x5a,
0xa3,0xba,0xc9,0xf4,0xa2,0xd7,0x7b,0xee,0x2,0x92,0xe1,0x6a,0xda,0x4e,0xb3,0x7a,
0xf4,0xb0,0xd7,0xa,0x73,0xb5,0xa4,0xba,0x9c,0x9d,0xc7,0x8f,0x97,0x69,0xba,0x42,
0x88,0xdc,0x22,0xb1,0x20,0x51,0xec,0xec,0x94,0x14,0x76,0x41,0x28,0x52,0xbe,0xfa,
0x4a,0xeb,0x78,0x14,0xc0,0xe3,0xe8,0xcb,0x92,0x25,0x13,0x5d,0xcd,0xab,0xef,0x5f,
0x6a,0xdd,0xfa,0x45,0xaf,0xf7,0x1c,0x5,0x84,0x19,0x50,0x14,0xec,0xc7,0x44,0xa,
0xe,0x9,0xd1,0xfa,0x86,0x33,0xc7,0x3c,0x3a,0x3a,0x54,0x8a,0x4d,0x5e,0xb3,0x46,
0xeb,0x78,0x42,0x8,0x61,0x6f,0x86,0x58,0xd3,0x55,0x6a,0xff,0xe5,0x97,0xf6,0x1a,
0x13,0x41,0x65,0x8a,0xc2,0xcd,0x17,0xdf,0x3d,0xf8,0x99,0xc7,0x2c,0xdc,0x1b,0x58,
0x7b,0xf8,0x2e,0x6f,0xde,0x9c,0xce,0xa9,0x73,0x95,0x9,0x9b,0x37,0x6b,0x7d,0x9f,
0x94,0x4e,0x6e,0x58,0xd3,0xb7,0xef,0x95,0x14,0xd3,0x8d,0x18,0xbf,0x79,0xf3,0xb4,
0x8e,0x27,0x9e,0x8f,0x97,0x17,0x73,0xe5,0xca,0x85,0xb,0x5b,0x2c,0x16,0x8b,0xc5,
0x52,0xa6,0x8c,0x5e,0x79,0xa4,0x57,0x33,0x19,0xad,0xfd,0xfe,0xf8,0xc3,0xb6,0x80,
0x4b,0xef,0x76,0xb1,0x6d,0x29,0x91,0xb1,0xcc,0x38,0xd2,0x50,0xdf,0x8e,0xbb,0x50,
0xff,0x43,0x52,0x92,0xc9,0x14,0x1b,0x7b,0xec,0xd8,0xc3,0x1e,0xbc,0x1d,0xa6,0x8f,
0x8a,0xe7,0xe2,0xbe,0xc7,0x1c,0xe3,0x5f,0x6f,0xf6,0x6c,0xea,0x84,0xb2,0xb8,0xd1,
0xaf,0x9f,0x66,0x81,0x6c,0xd3,0x88,0x8b,0x64,0x34,0x32,0x8c,0xf5,0xf1,0x49,0xfc,
0x38,0xdf,0xe9,0x53,0xe7,0x2e,0x5d,0x7a,0xd6,0xcb,0x18,0x9f,0xf5,0xd,0x34,0x9d,
0xcb,0x29,0x86,0x5e,0xbd,0xd0,0x5e,0xb3,0x5b,0x7b,0xe8,0xd1,0x3a,0xf,0xaa,0x66,
0x4c,0xb9,0x1b,0xb1,0x64,0x9,0x66,0x3c,0x7b,0xb1,0x13,0xf6,0x93,0x61,0x35,0xa7,
0x67,0x58,0x9b,0x34,0x21,0x22,0x85,0x28,0x2a,0x4a,0xaf,0x3c,0x1c,0xd7,0x64,0xb4,
0x32,0x36,0x68,0xd6,0xc,0x4e,0x0,0xb0,0x65,0x8b,0xde,0xed,0xa2,0x5e,0x35,0x46,
0x1b,0xc7,0xe,0x1c,0x48,0x4,0x80,0xb4,0xdf,0x5a,0xe2,0x71,0xbc,0xbc,0x80,0xca,
0x95,0x8b,0x14,0x49,0x48,0x0,0x4e,0x9e,0xbc,0x79,0x53,0xef,0x76,0x11,0xff,0xbf,
0x8c,0xe3,0xea,0x37,0xd6,0x7e,0xd3,0xa7,0x1b,0xdb,0x29,0x43,0x8d,0x14,0x1a,0x8a,
0x75,0x28,0x84,0xc9,0x6,0x43,0x96,0x7,0xb2,0x5d,0xd7,0xc3,0x78,0xd0,0x5a,0x39,
0x24,0x4,0x80,0x33,0xce,0x4d,0x9c,0xf8,0xac,0x97,0x79,0xea,0x47,0x58,0x1e,0x77,
0x98,0xfd,0xfa,0x17,0x2d,0xca,0x57,0xb9,0x23,0x86,0x6a,0xbf,0x39,0x22,0xbf,0x8d,
0x2f,0xb1,0x7f,0xde,0x3c,0x39,0x0,0x4a,0x8,0x91,0x57,0xfc,0xd9,0xcf,0x69,0xea,
0x1f,0x5d,0xce,0x9f,0x47,0x11,0x5a,0x81,0x69,0x3f,0xfd,0xa4,0x79,0xc0,0x1a,0x18,
0x42,0x86,0xee,0xdd,0x9f,0xf7,0x40,0xaa,0xa7,0x2e,0x20,0xdc,0xdb,0x72,0x3,0x65,
0xde,0x7a,0x4b,0xf3,0x41,0xf3,0xcc,0xed,0x8f,0x33,0xba,0x53,0x7b,0x3b,0x1e,0x5a,
0x2f,0x84,0x10,0xd9,0x4,0xef,0xa4,0x23,0xea,0xa8,0x88,0x8,0xcd,0x3,0x3d,0x3a,
0x63,0xdd,0x33,0xc5,0xfa,0xb6,0xff,0xa5,0xda,0xb5,0x9f,0xf5,0xed,0x4f,0x5d,0x40,
0x28,0xa,0xf3,0x68,0x4a,0x50,0x90,0xd6,0xf7,0xc3,0xad,0xd0,0xd,0x3b,0x37,0x6d,
0xca,0x3c,0x2a,0x52,0x8,0x21,0xf2,0x98,0xa4,0x5d,0x86,0x85,0x71,0x9d,0xb7,0x6c,
0x41,0x1b,0x1a,0x88,0x80,0x8b,0x17,0xb5,0x8e,0xa7,0x8e,0xe3,0x5a,0xb8,0xf0,0xec,
0x9f,0xef,0x4f,0x2c,0x20,0x6e,0xef,0xb3,0x5a,0x6e,0x66,0xf1,0xe2,0x98,0x84,0xee,
0xfc,0xab,0xf6,0xbb,0xeb,0xa2,0x3,0xd7,0xa2,0x84,0x5,0xb,0x34,0x8f,0x23,0x84,
0x10,0xd9,0xd6,0xa3,0xe5,0xa,0xa,0x3e,0xe5,0x76,0x8b,0x17,0x6b,0x1e,0xee,0x63,
0xba,0xc5,0x31,0x41,0x41,0x99,0xb3,0x6c,0x9f,0xd2,0x13,0x5f,0x68,0xf8,0xc9,0x5a,
0xcc,0xd4,0xac,0x43,0x87,0xcc,0x43,0xdc,0x35,0xc2,0xe3,0x31,0xc,0xa6,0xa4,0xa4,
0xa4,0x62,0xe,0x1f,0x15,0xbf,0xb0,0x61,0x83,0xe6,0xd,0x26,0x84,0x10,0xd9,0x1c,
0x19,0x2d,0xd7,0xad,0xb7,0x22,0x23,0xb5,0x3e,0xd9,0xd0,0xb6,0x3e,0xc4,0xc3,0xc9,
0xba,0xdc,0x37,0x7f,0x9d,0x3a,0x4f,0xfb,0xbe,0x27,0x16,0x10,0xfe,0x81,0x5b,0xf3,
0x9d,0xb6,0x6d,0x35,0x6f,0xa8,0x4,0x34,0xe5,0x81,0x2b,0x56,0xc8,0x16,0x25,0x42,
0x8,0xf1,0x50,0xe6,0xc9,0xaa,0x75,0xb0,0x3,0xdf,0xee,0xde,0xad,0x79,0xc0,0xb7,
0x78,0x9d,0xf2,0xde,0xd3,0x4f,0x92,0x7a,0x6c,0x1,0x29,0xcd,0xcc,0xa5,0xd9,0xc9,
0x9,0xbd,0x11,0x8a,0xfb,0x81,0x81,0x9a,0x27,0x3e,0x9d,0x52,0x79,0x88,0x7e,0xd3,
0x3f,0x85,0x10,0x22,0xdb,0xca,0x47,0xa3,0x71,0x4b,0xfb,0x2d,0x9c,0x38,0x98,0x7e,
0x47,0xfd,0x96,0x2d,0x9f,0xf6,0xf5,0x8f,0x2d,0x20,0xe9,0x97,0x33,0x86,0xb8,0xac,
0x68,0xd8,0x10,0x16,0xd4,0xa2,0xbe,0xce,0xce,0x9a,0x25,0xfc,0xe8,0xa8,0xc7,0xc4,
0x34,0x63,0xe7,0xb8,0x7b,0xfb,0xf6,0x69,0xdd,0x40,0x42,0x8,0x91,0xd3,0xa8,0xc7,
0x8d,0xa7,0x2c,0x53,0x56,0xac,0x40,0x3f,0x5c,0xe3,0x6f,0xb5,0x7b,0x42,0x43,0x63,
0xf8,0x2c,0x56,0x55,0xae,0xfc,0xb4,0x67,0xaa,0x3f,0xb6,0x80,0x28,0xfb,0xd4,0x3a,
0x6a,0x9d,0x16,0x2d,0xb4,0x6e,0x18,0xfa,0x93,0xcb,0xd1,0xac,0x95,0x2b,0x65,0x8f,
0x2b,0x21,0x84,0xf8,0xff,0x25,0x2f,0x26,0xe5,0x6c,0xd8,0xb5,0x6b,0xfc,0x2a,0xd6,
0x20,0x66,0xe7,0x4e,0xcd,0x2,0x3d,0xda,0x55,0x3d,0xa3,0x9f,0xb1,0xbd,0x71,0xe8,
0x93,0x3f,0xff,0x1f,0x3f,0x6,0xd2,0x87,0xe6,0xd1,0x3c,0xed,0xb,0x8,0x26,0x28,
0xb,0xd0,0x40,0x6,0xcd,0x85,0x10,0xe2,0x49,0xa8,0x36,0xa5,0xe0,0x80,0x1d,0x3e,
0x2f,0xb7,0xd1,0x8f,0xdc,0xb2,0x79,0xf3,0x27,0xbd,0xec,0x5f,0x5,0xa4,0x44,0x53,
0x56,0xab,0x4c,0x73,0x75,0x85,0x13,0xff,0x82,0xd5,0xbe,0xbe,0x9a,0x25,0xf8,0x68,
0xd3,0x30,0xe7,0x57,0xd,0xbb,0x2c,0xfe,0xbb,0x76,0x69,0xde,0x20,0x42,0x8,0x91,
0xc3,0xa9,0x83,0xd4,0x5e,0x4a,0xa0,0x1d,0xf6,0x20,0x4c,0x60,0xa0,0xe2,0x6b,0xaf,
0x3d,0xe9,0x75,0xff,0x2a,0x20,0x8a,0xc1,0xbc,0xda,0xf2,0x79,0xbd,0x7a,0x5a,0x27,
0xc8,0xcb,0xe9,0x6,0x1d,0xdc,0xb6,0xed,0x6c,0x18,0x29,0x67,0xc3,0xd2,0xd3,0xb5,
0x8e,0x27,0x84,0x10,0x39,0x5d,0xf2,0x62,0x47,0x8f,0xe8,0xa0,0xe8,0x68,0x54,0xa5,
0xf,0x60,0x89,0x8f,0xd7,0x2c,0xd0,0x62,0x4c,0xa0,0xa0,0x12,0x25,0x4a,0x35,0x4a,
0x5b,0x5d,0x31,0xa1,0x6c,0xd9,0xc7,0xbd,0xec,0xdf,0x8f,0xb0,0x26,0xd0,0x21,0x1e,
0x54,0xb7,0xae,0xd6,0xd,0x41,0xab,0x30,0x6,0xef,0x68,0x5f,0x49,0x85,0x10,0x22,
0xb7,0x61,0x33,0x7f,0xcc,0xcd,0xb5,0xff,0xfc,0x54,0xcd,0xca,0xf9,0x8c,0x7,0x8f,
0xef,0x50,0xfc,0xbb,0x80,0x14,0x45,0x17,0xfa,0x43,0xfb,0x1e,0x48,0x46,0x43,0xbe,
0x88,0xc8,0x1d,0x3b,0xb4,0x8e,0x23,0x84,0x10,0xb9,0xce,0x37,0x68,0x83,0x38,0xed,
0x3f,0x3f,0xf9,0x73,0x84,0x91,0xe5,0x29,0xa,0x48,0x40,0x14,0xab,0x1,0x51,0xe,
0xe,0xb8,0xb,0x5,0xd7,0xaa,0x57,0xd7,0x2c,0xa1,0xf9,0x58,0xce,0x9f,0xdf,0xba,
0x75,0xb5,0x9a,0x29,0x35,0xa6,0x63,0x4c,0x8c,0xd6,0xd,0x20,0x84,0x10,0xb9,0xce,
0xc6,0x8c,0x57,0x95,0xde,0x7b,0xf6,0x68,0x1d,0x86,0xef,0x92,0x17,0x8e,0xbf,0xfa,
0xea,0xe3,0xfe,0x3c,0xb3,0x80,0xdc,0xf6,0xb7,0xc,0xb6,0xbe,0xe1,0xe7,0x47,0xad,
0x51,0x1e,0x17,0x1c,0x1d,0x35,0xcb,0x68,0x7,0xd6,0xd3,0x9b,0x7b,0xf7,0xca,0xb4,
0x5d,0x21,0x84,0x78,0x3e,0x99,0x9b,0xcd,0xde,0xa5,0xb1,0x1c,0xf9,0xec,0x7,0x41,
0x3d,0xb5,0x78,0xde,0xcf,0xed,0xfd,0xfd,0x33,0x3b,0x18,0xff,0x90,0x59,0x40,0xd4,
0x71,0xb8,0x65,0x7c,0xad,0x72,0x65,0xad,0x6f,0x5c,0x89,0xa0,0xf1,0x58,0xb8,0x77,
0xaf,0xd6,0x71,0x84,0x10,0x22,0xd7,0x53,0x70,0x83,0x16,0x6a,0xd7,0x13,0xa1,0x89,
0xf0,0xa0,0x9a,0x26,0x93,0xad,0x83,0xf1,0xef,0xf0,0xb6,0x17,0xc6,0xc2,0xc4,0x57,
0xab,0x54,0xd1,0xfa,0x7e,0xd5,0xaa,0xf4,0x85,0x9a,0xef,0xd0,0x21,0xad,0xe3,0x8,
0x21,0x44,0xae,0x37,0x0,0xd5,0x30,0xed,0xf0,0x61,0xad,0xc3,0xa8,0xaf,0x2,0x86,
0x3,0xff,0xae,0xf,0x7f,0xd,0xa2,0xf7,0x87,0x81,0x47,0x68,0x5f,0x40,0x8c,0xad,
0xcd,0xbb,0xf0,0xcb,0xc9,0x93,0x5a,0xc7,0x11,0x42,0x88,0xdc,0x8e,0x77,0xd2,0x11,
0x75,0x8b,0xf6,0x9f,0xa7,0xe4,0x85,0x54,0x4,0xff,0xfb,0x9,0xd5,0x5f,0x5,0x64,
0x2e,0xb9,0xa0,0x67,0x40,0x80,0x66,0x19,0xdc,0xc0,0x3c,0xbc,0x94,0x92,0x72,0x69,
0xa4,0xf3,0x99,0xb8,0xc8,0xc4,0x44,0xad,0x6f,0x58,0x8,0x21,0x72,0x3b,0xd3,0x47,
0x86,0x85,0xd4,0xfa,0xc4,0x9,0xad,0xe3,0xf0,0x6c,0x5c,0x42,0xf0,0xbf,0xeb,0x83,
0x52,0xa3,0x3a,0xab,0x35,0xaa,0x9b,0x4c,0x78,0x8d,0x3f,0xa4,0x75,0x4f,0xde,0x3c,
0xeb,0xb9,0x13,0xf8,0x19,0xa,0xf7,0x3b,0x7e,0x5c,0xeb,0x1b,0x15,0x42,0x88,0xbc,
0x22,0xa1,0x5,0x51,0xac,0x4b,0x52,0x12,0x7c,0x11,0x8e,0xbe,0xd7,0xae,0x69,0x15,
0x87,0x4e,0xd0,0x65,0xcc,0xf6,0xf1,0xf9,0xe7,0xef,0x95,0x3f,0x5f,0x4a,0x5f,0x9b,
0xb6,0xd6,0xcb,0xb,0xeb,0x50,0x8,0x93,0xd,0x6,0xcd,0xee,0x34,0x1f,0x1a,0x53,
0x44,0x6c,0xac,0x66,0xd7,0x17,0x42,0x88,0xbc,0xaa,0x19,0x2,0x10,0xae,0xe1,0xb2,
0x88,0x28,0x9e,0xc3,0x67,0xbd,0xbd,0x1f,0x9e,0x58,0x48,0x64,0xfb,0xb5,0x92,0xe1,
0x6e,0x9c,0xae,0x7e,0xfa,0xef,0xca,0x92,0xd5,0x68,0x23,0x6d,0xc3,0xfa,0xb,0x17,
0xb4,0x8e,0x23,0x84,0x10,0x79,0xd,0x5f,0xa5,0xa9,0xa8,0xa3,0xe1,0xd9,0xe9,0x17,
0x51,0x97,0x2,0x5d,0x5c,0x4a,0x34,0x5,0x57,0x99,0x56,0xbc,0xb8,0xed,0xd7,0xa,
0x7,0xaa,0xdf,0x73,0xb8,0xb7,0xb7,0xd6,0x37,0xa8,0xbe,0xac,0xbe,0xc6,0x1,0x52,
0x40,0x84,0x10,0x22,0xcb,0xcd,0x50,0xf7,0x62,0x99,0xf6,0x9f,0xaf,0xc6,0x65,0xd6,
0x77,0x2c,0x6f,0xff,0xd5,0xe1,0x50,0xd0,0x9b,0x4b,0x93,0x73,0xc9,0x92,0x9a,0xdf,
0xe0,0x6d,0x25,0x90,0xdf,0xd0,0x70,0xf3,0x2f,0x21,0x84,0xc8,0xa3,0x68,0x5,0x45,
0xa9,0xd0,0xb0,0x7,0x62,0x33,0x41,0x9d,0x41,0xfb,0x4a,0x95,0xb2,0xfd,0xa8,0xe0,
0x2e,0x1d,0xc5,0x94,0x62,0xc5,0x34,0xf,0xbc,0xdb,0x78,0x3d,0xa3,0x9a,0x14,0x10,
0x21,0x84,0xc8,0x6a,0xd4,0x89,0x82,0x60,0x8f,0x2,0xf2,0x83,0x52,0x89,0xab,0xfc,
0x55,0x2f,0x14,0xa4,0x52,0x24,0x96,0x68,0x58,0x40,0xda,0xe1,0x16,0xc6,0x66,0x64,
0x24,0x2f,0x6,0x9d,0xd,0x4b,0x49,0xd1,0xfc,0x6,0x85,0x10,0x22,0x8f,0xb1,0x1e,
0x67,0x17,0x65,0x95,0x76,0xb3,0xb0,0x6c,0x78,0x17,0xe,0xe2,0x83,0xbf,0x17,0x90,
0x34,0xf6,0xe6,0xd,0x1a,0x16,0x90,0x2d,0xf8,0x16,0xbf,0xdf,0xbc,0x29,0x7b,0x5f,
0x9,0x21,0x84,0x36,0xd4,0x8f,0x4d,0xa9,0xa4,0xda,0xe1,0xb,0xba,0x91,0x77,0x21,
0xa1,0x68,0x51,0xdb,0x8f,0xa,0xd2,0xe9,0x13,0xec,0xd6,0xb0,0x80,0x14,0xa0,0x35,
0x68,0x7e,0xfd,0xba,0xe6,0x37,0x26,0x84,0x10,0x79,0x94,0xd7,0x39,0x70,0xbe,0xcf,
0x52,0x52,0xe0,0x1,0x33,0xfc,0x99,0x35,0xb,0x14,0x4b,0xcb,0x78,0xf9,0xdf,0x7a,
0x20,0x34,0x3,0x9d,0x68,0xe3,0x4b,0x2f,0x69,0x15,0x8f,0xf,0xf1,0x57,0xb8,0x7a,
0xe3,0x86,0x66,0x37,0x24,0x84,0x10,0x79,0xdc,0xe1,0x23,0xa4,0x1c,0x3e,0x62,0xb1,
0xe0,0x5d,0x6c,0x81,0xe7,0xdd,0xbb,0x5a,0xc5,0xe1,0xfc,0xac,0xd2,0xd2,0x42,0x85,
0x6c,0x3f,0x2b,0x5c,0x9d,0x1d,0xf1,0x87,0x76,0xdb,0xb7,0xd3,0x7,0xf8,0x16,0x7e,
0xda,0xdd,0x90,0x10,0x42,0x88,0x87,0xd8,0x8f,0x62,0x70,0xf3,0xde,0x3d,0xad,0xae,
0x4f,0x7d,0xf0,0xa,0x8e,0xff,0x55,0x2f,0x14,0x1a,0x84,0x72,0x70,0xfe,0xf7,0x3e,
0xef,0x59,0x76,0x43,0xc3,0xa8,0x21,0xd2,0xcc,0x66,0xad,0xae,0x2f,0x84,0x10,0xe2,
0x21,0x3a,0x8a,0xb3,0xf0,0x4d,0x4f,0xd7,0x2c,0xc0,0x14,0x54,0x82,0xcb,0x5f,0xf5,
0x42,0x41,0x5b,0xf8,0xe1,0x9c,0x86,0x3d,0x90,0x24,0xc4,0xe1,0x81,0x14,0x10,0x21,
0x84,0xd0,0xdc,0x74,0x5c,0xd0,0xf2,0xb,0x3b,0x17,0x42,0x35,0x9c,0xfe,0x5b,0xf,
0x84,0xdf,0x83,0x8f,0x96,0x3d,0x10,0xcc,0xc1,0x31,0xbc,0xa2,0x61,0x45,0x14,0x42,
0x8,0x1,0x0,0xe0,0x1f,0x10,0x83,0x0,0xed,0x3e,0x6f,0x29,0x98,0x2a,0x23,0xf6,
0xef,0x8f,0xb0,0x36,0xe2,0x25,0x7c,0xaa,0xe1,0x26,0x8a,0x63,0xf1,0x27,0xaa,0x67,
0x64,0x68,0x76,0x7d,0x21,0x84,0x10,0x0,0x0,0xfa,0x96,0x13,0xb0,0xdb,0x62,0xd1,
0xea,0xfa,0x3c,0x11,0x6e,0x18,0x6c,0x34,0xda,0x7e,0x56,0xb8,0x17,0xae,0x61,0xa9,
0xd5,0xaa,0xd9,0x1d,0xbd,0x8b,0x52,0xf8,0xe2,0xaf,0x80,0x42,0x8,0x21,0xb4,0xc1,
0x81,0x54,0xe,0xf9,0xb4,0x7b,0xa2,0x44,0xdf,0x20,0x1,0xbb,0xfe,0x2a,0x50,0xa,
0x2d,0xc5,0x5,0x4d,0xc7,0x28,0xfa,0xa3,0x1a,0xe,0x6a,0x37,0xc6,0x22,0x84,0x10,
0xe2,0x91,0x2e,0xf0,0xfb,0xfb,0x23,0xa6,0xac,0xc6,0xdf,0xf2,0xc9,0xbf,0x3f,0x22,
0x53,0xf0,0x13,0x62,0x51,0x4e,0xbb,0x67,0x66,0x5c,0x92,0x37,0xff,0x7d,0xd4,0x5e,
0x8,0x21,0x84,0x36,0xa8,0x13,0x2a,0xe0,0x8c,0x86,0x5f,0xd8,0x17,0xe2,0x28,0x2a,
0xff,0xad,0x80,0xf0,0x6a,0x4a,0x45,0x5,0xd,0x7,0x5d,0xfe,0x31,0x6f,0x58,0x8,
0x21,0x84,0x36,0xb8,0x3d,0x2b,0x5a,0x4e,0x8a,0xa2,0x93,0x38,0xf5,0xf7,0x27,0x56,
0xa,0x9d,0xc0,0x1f,0xf0,0xd3,0xb0,0x7,0x32,0x14,0x3d,0x78,0x45,0xc1,0x82,0x5a,
0x5d,0x5f,0x8,0x21,0xc4,0x43,0xb4,0x4,0x6f,0xf1,0x56,0xd,0x3f,0x6f,0xb7,0x51,
0x75,0xb6,0xa6,0xa5,0xd9,0x7e,0x54,0x10,0xc3,0x73,0xf1,0xa7,0x96,0x5b,0x8d,0xd0,
0x48,0xec,0xb1,0xc3,0x76,0xf1,0x42,0x8,0x91,0x47,0x95,0x1c,0xc2,0x5c,0x72,0x48,
0xbe,0x7c,0xb6,0x93,0x3,0xb5,0x8a,0xc3,0x97,0x31,0x1a,0xca,0x5f,0x9b,0x36,0x2a,
0x70,0xc7,0x50,0xbe,0xa7,0xe1,0x66,0x87,0x9e,0xdc,0x1a,0xe9,0x7f,0xed,0xde,0x28,
0x84,0x10,0x22,0x6b,0xb1,0xf5,0xc1,0x1f,0x4e,0x3e,0x76,0xf8,0x9c,0xcd,0xcf,0xad,
0xd1,0xf6,0xaf,0x7a,0xa1,0x20,0x95,0xfe,0x84,0x51,0xbb,0x6d,0x80,0x69,0x2,0xde,
0xa4,0xc5,0x2f,0xbd,0x54,0xa3,0x3a,0xab,0x35,0xaa,0x9b,0x4c,0x9a,0xdf,0xa0,0x10,
0x42,0xe4,0x31,0xdc,0xc0,0x78,0xd4,0xc1,0xcd,0xe,0x4f,0x7a,0x62,0xa9,0x31,0xa,
0xfd,0xbd,0x7,0xe2,0xc3,0xef,0xfc,0xbd,0xa2,0x64,0xb9,0x44,0x38,0x20,0x86,0xe8,
0xcf,0xce,0xf,0xfc,0xee,0x55,0xfb,0xeb,0x30,0x76,0x21,0x84,0x10,0x59,0x83,0x6f,
0x2a,0xab,0xd4,0x2f,0x5d,0x5d,0x35,0xf,0xf4,0x19,0xd7,0xc7,0xea,0xbf,0x86,0x3c,
0x14,0x54,0xa2,0x9a,0x14,0xaa,0xfd,0x79,0x1d,0x19,0x77,0x4c,0x83,0xd0,0xd9,0xdb,
0x5b,0xf3,0x1b,0x14,0x42,0x88,0xbc,0x66,0x82,0xba,0x14,0x37,0xec,0xf0,0xf9,0xda,
0x88,0x57,0x50,0xfe,0xbf,0x4e,0x3e,0x54,0xa8,0x17,0xaf,0xe1,0x19,0x9,0x9,0x5a,
0xc7,0xe5,0x3e,0xbc,0x9c,0xa6,0x95,0x2e,0xad,0xf9,0xd,0xa,0x21,0x44,0x1e,0x43,
0x43,0xd1,0x91,0x66,0xf8,0xf8,0x68,0x1e,0xe7,0x13,0xaa,0x8c,0xea,0xf1,0xf1,0xb6,
0x9f,0x95,0x8c,0x69,0xf4,0x26,0xd,0xb1,0xc3,0x61,0xec,0xad,0xe8,0xb,0x5a,0xaf,
0xfd,0xd,0xa,0x21,0x44,0x9e,0x33,0x99,0x4a,0x60,0xa5,0xf6,0x3d,0x10,0xd3,0x45,
0x53,0x5d,0x87,0x9a,0x17,0x2e,0xd8,0x7e,0x56,0x94,0xd,0xd6,0xb6,0x86,0xb8,0xbf,
0x7e,0xa1,0x15,0x2a,0x8a,0x66,0x78,0xa9,0x4c,0x19,0xad,0xe3,0x8,0x21,0x44,0x5e,
0xc3,0x9f,0xf3,0x47,0x3c,0x53,0xbb,0x2f,0xe8,0x3c,0x1f,0xcb,0xf9,0xf3,0x5b,0xb7,
0xe2,0x89,0xe8,0x38,0xdd,0xba,0x65,0xfb,0xbd,0x92,0xf8,0xb1,0xd3,0xa9,0x53,0xe7,
0xae,0x5c,0xe1,0x8,0xc4,0xe3,0xbe,0x86,0xfb,0xc8,0x7f,0xc8,0xfb,0x50,0xae,0x62,
0x45,0xad,0xae,0x2f,0x84,0x10,0x79,0xf,0x33,0x40,0x44,0xa9,0x38,0x4a,0xa3,0xfc,
0xfd,0xb5,0x8a,0x42,0x3d,0xa9,0x7,0xb5,0xfb,0x77,0x47,0x43,0x1,0x88,0x0,0x55,
0x45,0x19,0x1a,0x2,0xf3,0x5f,0xcf,0xb6,0xb2,0x3c,0x81,0x85,0x88,0xc7,0xb5,0x4a,
0x95,0x1e,0xde,0xb0,0xa2,0x68,0x15,0x47,0x8,0x21,0xf2,0xa,0xd7,0x39,0xe9,0xa3,
0xca,0x7f,0xef,0xe3,0x83,0x70,0xb4,0x82,0x96,0x2b,0xd0,0x7f,0xc2,0x44,0x44,0x9d,
0x3f,0xff,0xcf,0x5f,0x67,0x7e,0x90,0xd3,0xf,0x68,0x9,0xb7,0x53,0xa7,0x34,0x4b,
0x60,0x37,0x1a,0xa2,0x58,0xfe,0xfc,0xa5,0x1a,0xa5,0xaf,0xa9,0x98,0x20,0x63,0x21,
0x42,0x8,0xf1,0xa2,0xc,0x6,0xf2,0x31,0xde,0xab,0x52,0x45,0xeb,0x38,0x5c,0x4b,
0x1d,0x85,0xe,0xff,0xae,0xf,0x99,0x5,0x84,0xa7,0xa8,0xfd,0x70,0xe4,0xc4,0x9,
0xad,0x13,0xb1,0x3a,0x92,0xaa,0xd6,0xd0,0xfe,0x86,0x85,0x10,0x22,0xb7,0x23,0x7,
0xa5,0x2d,0x77,0xad,0x5c,0x59,0xeb,0x38,0x4a,0x18,0x92,0x68,0xc5,0xff,0x2a,0x20,
0xab,0x70,0x8a,0xdd,0x4f,0x9e,0xd4,0xfc,0x86,0x47,0xd0,0x5c,0xba,0x53,0xab,0x96,
0xd6,0x71,0x84,0x10,0x22,0xb7,0xe3,0xd2,0xdc,0x9d,0xa6,0xd4,0xae,0xad,0x79,0xa0,
0x40,0x54,0xe6,0xb8,0xe3,0xc7,0xff,0xf9,0xeb,0xcc,0x2,0x62,0x0,0x1a,0x52,0x7f,
0xed,0x7b,0x20,0x38,0x80,0x81,0x5c,0xa2,0x5e,0x3d,0xcd,0xe3,0x8,0x21,0x44,0xae,
0xf5,0x70,0xf0,0x1c,0x55,0xf0,0x16,0x66,0xd6,0xad,0xab,0x59,0x18,0x13,0xe,0xf2,
0xdc,0xfb,0xf7,0xaf,0x74,0x74,0xb8,0x1e,0x33,0xf6,0xdc,0xb9,0x7f,0xfe,0x71,0x66,
0x1,0xc9,0x7c,0xc1,0xdb,0xf8,0x15,0x6e,0x77,0xef,0x6a,0x96,0xd0,0x58,0x78,0x60,
0x52,0xad,0x5a,0x1,0x51,0xac,0x6,0x44,0xc9,0x41,0x53,0x42,0x8,0xf1,0xac,0xdc,
0xde,0x37,0x27,0x5,0x44,0xf9,0xfb,0x53,0x15,0x84,0xc0,0xab,0x48,0x11,0xad,0xe2,
0xf0,0x68,0x78,0xa2,0xd6,0xc9,0x93,0x99,0x93,0xad,0xfe,0xe1,0x6f,0xb3,0xa1,0x1e,
0xbd,0xe0,0x4b,0x1c,0xc7,0xb1,0x3,0x7,0x34,0xbb,0x73,0x57,0x54,0xc3,0xd4,0x7c,
0xf9,0x6e,0x37,0xb6,0xbe,0xc3,0x75,0x5e,0x7e,0x59,0xb3,0x38,0x42,0x8,0x91,0x4b,
0xd1,0x66,0x2a,0xa6,0x8e,0xab,0x5f,0x5f,0xf3,0x40,0x27,0xb0,0x92,0xe,0xef,0xd9,
0xf3,0xb8,0x3f,0xfe,0xd7,0x74,0x5a,0xce,0xe0,0xd1,0xb8,0xf1,0xf8,0x37,0x64,0x15,
0xf5,0x12,0xde,0x65,0x6b,0xc3,0x86,0x9a,0x37,0x80,0x10,0x42,0xe4,0x32,0xd4,0x9c,
0xde,0xa3,0x2d,0x81,0x81,0x5a,0xc7,0xe1,0x46,0xdc,0x9c,0x83,0xf6,0xee,0x7d,0xdc,
0x9f,0xff,0x7b,0x3d,0x46,0xba,0xe1,0xd,0x3e,0xa6,0x7d,0x1,0xa1,0x33,0x9c,0x46,
0x23,0x5a,0xb6,0xd4,0x3a,0x8e,0x10,0x42,0xe4,0x1e,0x8f,0xd6,0xd1,0xc5,0x73,0x55,
0xac,0x69,0xda,0x54,0xeb,0x68,0xe,0xf9,0x1d,0x2a,0xe1,0xdc,0x33,0x14,0x10,0xf3,
0x2f,0x86,0xd,0x3c,0x6b,0xff,0x7e,0xb4,0xc3,0x2d,0x8c,0xcd,0xc8,0xd0,0x2c,0xb3,
0x33,0xa8,0xcf,0x23,0xea,0xd5,0x2b,0xe3,0xc3,0x6a,0x19,0x9f,0x97,0x5e,0xd2,0xba,
0x21,0x84,0x10,0x22,0xa7,0xf3,0x1c,0x68,0x1d,0xe8,0x5f,0xae,0x76,0x6d,0xc4,0x61,
0x18,0xe6,0x6a,0x77,0x3c,0x6,0x2f,0xa2,0xb7,0x79,0xfb,0xd9,0xb3,0x9,0x2d,0x88,
0x62,0x5d,0x92,0x92,0x1e,0xf7,0xba,0x7f,0x15,0x90,0x94,0x76,0xa4,0xc4,0x45,0xde,
0xbd,0x8b,0x22,0xc8,0x87,0x7,0x47,0x8f,0x6a,0xd6,0x12,0x73,0x50,0x9c,0x82,0x8d,
0xc6,0xfb,0xb1,0xe6,0x9d,0xe,0xc3,0x1a,0x37,0xd6,0x2c,0x8e,0x10,0x42,0xe4,0x12,
0xea,0x4c,0x75,0x16,0xfe,0x68,0xd1,0x42,0xeb,0x38,0xd4,0xd,0xfb,0x71,0x66,0xe7,
0xce,0x27,0xbd,0xee,0xb1,0x5b,0x8a,0xf0,0x75,0x54,0xc5,0x80,0xcd,0x9b,0x35,0x4f,
0xf4,0x80,0xd2,0x8f,0x9a,0xb7,0x69,0xa3,0x75,0x1c,0x21,0x84,0xc8,0xe9,0xa8,0xae,
0x42,0xa8,0xad,0xfd,0xe7,0x25,0x19,0xd5,0xf3,0x4a,0xef,0x27,0x7f,0xfe,0x3f,0xb6,
0x80,0x50,0x31,0x1a,0xaa,0xae,0xdd,0xb4,0x49,0xf3,0x16,0xb9,0xc3,0x1f,0x72,0x4c,
0xfb,0xf6,0xe5,0x66,0xb2,0x5a,0x6e,0xa6,0xa3,0xa3,0xe6,0xf1,0x84,0x10,0x22,0x87,
0x29,0xd5,0x28,0x6d,0x75,0xc5,0x84,0xb2,0x65,0x11,0xcf,0x66,0xdc,0xab,0x5e,0x5d,
0xb3,0x40,0x8f,0x86,0x2e,0xa8,0xb3,0x83,0x23,0x26,0xfe,0xf6,0xdb,0x93,0x5e,0xfe,
0xd8,0x2,0x92,0xf8,0xb1,0xb1,0x5f,0x5c,0xf3,0x3,0x7,0xf8,0x4,0x22,0x91,0xf0,
0xd7,0x11,0x86,0x59,0x8d,0x7a,0xa3,0x33,0x8d,0x28,0x54,0xe8,0x7e,0xf7,0x8c,0x6f,
0x8d,0x71,0xda,0xf,0xa,0x9,0x21,0x44,0x4e,0x93,0x31,0xdb,0x50,0x55,0xed,0xf3,
0xce,0x3b,0x9a,0x7,0x8a,0xc5,0x29,0xce,0xbf,0x6f,0xdf,0xe5,0x19,0x44,0xd1,0x41,
0x4f,0xfe,0xdc,0xff,0x1f,0xbb,0xe2,0x12,0x1,0x19,0x19,0xb0,0xd0,0x29,0xb8,0x6f,
0xd9,0xa2,0x79,0xe2,0xd7,0x78,0x9,0x45,0x5,0x5,0x69,0x1e,0x47,0x8,0x21,0x72,
0x18,0x4e,0x40,0x3d,0x74,0xe9,0xd4,0x49,0xeb,0x38,0x74,0x98,0x4a,0xd0,0x8d,0xa7,
0x1f,0xba,0x78,0xe2,0xb6,0xea,0xd4,0x9c,0x77,0xf0,0x9c,0xb5,0x6b,0xb5,0x4e,0x1c,
0xb3,0x79,0x28,0x2a,0xb5,0x6f,0x5f,0xa2,0x29,0x73,0x95,0x69,0x2e,0x2e,0x9a,0xc7,
0x13,0x42,0x88,0x6c,0xae,0x44,0x53,0x73,0x65,0xbf,0x5f,0x2b,0x55,0xa2,0x10,0x4e,
0xc0,0x14,0xed,0x37,0xa1,0xb5,0xee,0xe4,0x5a,0xc8,0xff,0xf4,0x9f,0xf7,0x4f,0x2c,
0x20,0xdc,0xdf,0x74,0xc2,0xe5,0xc3,0x9f,0x7e,0x82,0x37,0xf6,0xf2,0x8e,0xd4,0x54,
0xcd,0x32,0x5f,0x86,0x66,0x48,0x2e,0x50,0xc0,0x70,0xc6,0xb2,0xd7,0xd2,0xb0,0x73,
0x67,0xad,0x1b,0x4a,0x8,0x21,0xb2,0x3b,0x43,0x2f,0x8c,0x81,0x7f,0xcf,0x9e,0x9a,
0x7,0x9a,0x4b,0x1,0x28,0x71,0xea,0xd4,0xd5,0x6a,0xe,0xf7,0x63,0x3a,0x9e,0x3e,
0xfd,0xb4,0x6f,0x7b,0x62,0x1,0x49,0xa,0x25,0x3a,0x7c,0xf8,0xfe,0x7d,0xee,0x46,
0xbf,0x62,0xdb,0xc6,0x8d,0x5a,0xdf,0x7,0x2f,0x40,0x31,0x74,0xeb,0xd5,0x4b,0xeb,
0x38,0x42,0x8,0x91,0x5d,0x65,0x4e,0x2a,0x1a,0x8d,0x4b,0x34,0xa9,0x4b,0x17,0xcd,
0x3,0xde,0xc0,0x4e,0xde,0x10,0x15,0xf5,0xac,0x6f,0x7b,0xea,0x93,0x1,0x95,0x53,
0xea,0x0,0x45,0x79,0xf6,0x0,0xcf,0x8a,0xba,0xc3,0x7,0xfc,0xea,0xab,0x9e,0xf5,
0xcc,0xe1,0x15,0x67,0x56,0xad,0xaa,0x75,0x3c,0x21,0x84,0xc8,0x6e,0x52,0x1d,0x2d,
0xed,0xd,0xd,0x3b,0x74,0xc0,0x7d,0x84,0x61,0x77,0xb1,0x62,0x5a,0xc7,0x53,0xdf,
0x55,0xcf,0x18,0x7e,0x5f,0xb9,0xf2,0x59,0xdf,0xf7,0xd4,0x5,0x44,0xad,0xe4,0xe0,
0x9e,0x6f,0xea,0xc6,0x8d,0x9a,0xef,0xd6,0x6b,0x8b,0x17,0x8c,0x8e,0x19,0x3d,0x42,
0x43,0xb5,0x8e,0x23,0x84,0x10,0xd9,0xd,0x1d,0x44,0x5f,0x72,0xed,0xd3,0x47,0xeb,
0x38,0x7c,0x9e,0x8a,0xf0,0xf,0xc7,0x8e,0x25,0x3b,0x3a,0x36,0x3c,0xdd,0x3a,0x26,
0xe6,0x59,0xdf,0xff,0xd4,0x5,0xc4,0xf6,0x28,0xb,0x15,0xa8,0x2d,0xda,0x2c,0x5b,
0xa6,0xf5,0x8d,0xd1,0x27,0xb8,0x82,0x83,0xdd,0xba,0xb9,0x47,0xb0,0x5a,0xa1,0xb7,
0xf6,0x15,0x58,0x8,0x21,0xf4,0xe6,0x56,0xc1,0x12,0x50,0x71,0x54,0xad,0x5a,0xd8,
0x88,0xc6,0xd4,0xa8,0x41,0x3,0xad,0xe3,0x91,0x7,0x6a,0x61,0xcc,0xa2,0x45,0xcf,
0xfb,0xfe,0xa7,0x2e,0x20,0x36,0xea,0x17,0xf0,0x53,0xfe,0x5c,0xb0,0x40,0xeb,0x1b,
0x83,0x5,0xb5,0xa8,0xaf,0xb3,0x33,0x1d,0xb3,0xde,0x52,0xea,0xf7,0xeb,0xa7,0x79,
0x3c,0x21,0x84,0xd0,0x99,0xb2,0x14,0xef,0xa9,0x35,0x47,0x8e,0xd4,0x3c,0xd0,0x9f,
0x38,0x86,0x91,0xf,0x1e,0x18,0xf3,0x1b,0xb7,0x99,0x12,0xbe,0xff,0xfe,0xb9,0xf3,
0x7d,0xd6,0x37,0x24,0x9f,0x31,0x45,0x9f,0xfe,0xec,0xe0,0x41,0xa8,0x94,0x1f,0x71,
0x1a,0xee,0x95,0x65,0x93,0xca,0x33,0x61,0xec,0xdf,0xbf,0xe4,0x10,0xe6,0x92,0x43,
0xf2,0xe5,0xd3,0x3c,0x9e,0x10,0x42,0xd8,0x59,0x89,0xa6,0x69,0xd,0x2a,0x1c,0xf0,
0xf1,0xc1,0x62,0xee,0x1,0x73,0xfb,0xf6,0x9a,0x7,0x8c,0xa3,0x91,0x18,0xbe,0x72,
0x65,0x42,0x2,0xd1,0xc9,0x93,0x37,0x6f,0x3e,0xef,0x65,0x9e,0xb9,0x80,0x64,0xaa,
0x83,0x6a,0x1c,0xf5,0xfc,0x5d,0x9f,0xa7,0xb6,0x15,0xa3,0x69,0xb2,0xab,0xab,0xba,
0xc4,0xfa,0x7a,0xfe,0x33,0x3d,0x7a,0x68,0x1e,0x4f,0x8,0x21,0xec,0xcc,0xe0,0x6b,
0x38,0x6c,0x98,0x38,0x7a,0x34,0xd6,0xa1,0x10,0x26,0x1b,0xc,0x5a,0xc7,0x53,0xaf,
0x62,0x21,0x6a,0x2d,0x5c,0xf8,0xa2,0xd7,0x31,0x3e,0xef,0x1b,0xd3,0xd2,0x8c,0xfb,
0xad,0x89,0xdf,0x7d,0xe7,0x34,0xcc,0xb2,0xce,0xd4,0xe4,0x93,0x4f,0x10,0x8e,0x56,
0xd8,0x5a,0xb0,0xa0,0x56,0x37,0xcc,0x9f,0x72,0x65,0xba,0x34,0x7a,0x74,0xc9,0x58,
0xde,0x56,0x72,0xc8,0xa2,0x45,0x97,0x67,0x10,0x5d,0x9e,0xf1,0xe0,0x81,0x56,0xf1,
0xc4,0x33,0xea,0xa0,0xc,0x63,0xcb,0xa5,0x4b,0x5c,0x9,0x5,0x79,0xca,0x8a,0x15,
0x7a,0xa5,0xa1,0xfc,0xa1,0x96,0x57,0xcb,0x5f,0xbd,0xa,0x40,0xfb,0x7d,0xdc,0x9e,
0x2,0x3f,0x80,0x89,0xe,0x9c,0x3c,0x89,0xf1,0x34,0x41,0x1d,0xaf,0x5f,0xbb,0xa4,
0xaf,0xc4,0xc7,0x74,0xc9,0x6c,0x46,0x2,0x80,0xe1,0x7a,0xb7,0x8a,0xb0,0xb1,0xed,
0x71,0x65,0xad,0xcc,0xd5,0x33,0x8a,0x76,0xeb,0x46,0xab,0x1,0xaa,0xa9,0x5d,0x3c,
0x1e,0x4f,0xe5,0xd0,0xf2,0xe4,0xc9,0xe4,0xba,0xc6,0xf8,0x98,0x2f,0x76,0xed,0x7a,
0xd1,0xeb,0xd1,0x8b,0x5e,0xc0,0x7d,0xbf,0x79,0x94,0xdf,0x94,0x69,0xd3,0xe8,0x2d,
0x4c,0xa2,0xef,0x87,0xd,0xd3,0xee,0xd6,0x1f,0x89,0xa5,0x4f,0xf9,0xf5,0xa1,0x43,
0x13,0xb,0x9a,0xc6,0xc7,0xce,0xfe,0xe2,0xb,0xcd,0xe3,0x9,0x21,0x84,0x46,0xdc,
0x7,0x5b,0xea,0xf8,0x77,0x5e,0xb2,0x84,0xa2,0x78,0x7,0x4e,0x4,0x7,0x6b,0x1e,
0x30,0x16,0x4b,0xf8,0xf5,0xee,0xdd,0x13,0xb,0x3a,0xf4,0x8a,0x9d,0xbd,0x64,0xc9,
0x8b,0x5e,0xee,0xf9,0x1f,0x61,0x3d,0x42,0xeb,0x33,0xd6,0x1b,0x17,0xcf,0x9c,0xc9,
0xe3,0x91,0xc8,0x87,0x2c,0x16,0xcd,0x1b,0x60,0x0,0x33,0xea,0x8d,0x1c,0x59,0xbc,
0x13,0xab,0x1,0x51,0xf9,0xf3,0x6b,0x1e,0x4f,0x8,0x21,0xb2,0x98,0x7b,0x44,0xfa,
0xbc,0xa,0xbd,0xfd,0xfc,0x28,0x9d,0xd7,0xa1,0x9d,0xf6,0xb,0x5,0x79,0x33,0x7d,
0x8a,0x90,0x2b,0x57,0xa,0x6d,0x36,0xf5,0x50,0x2,0x7f,0xfc,0x31,0xab,0xae,0xfb,
0xc2,0x5,0x24,0xf1,0xe3,0x7c,0xa7,0x4f,0x9d,0xbb,0x74,0x89,0x6e,0xd1,0x60,0x7c,
0xa3,0xfd,0x42,0x43,0xdb,0x98,0x88,0x31,0xde,0x52,0x55,0x2d,0x34,0x6a,0x94,0xe6,
0xf1,0x84,0x10,0x22,0xcb,0xd1,0x46,0x43,0x6c,0x78,0xb8,0xbd,0xc6,0x3c,0xa8,0x36,
0x7c,0xb1,0x6a,0xe6,0xcc,0xe8,0x20,0x52,0xa2,0x83,0xcc,0xe6,0xac,0xba,0xee,0xb,
0x17,0x90,0x4c,0x3e,0xfc,0x8e,0x52,0x3c,0x3c,0x1c,0x1e,0x30,0xc3,0x9f,0x59,0xeb,
0x6,0xc1,0x7a,0x7c,0x47,0xbf,0xe,0x1d,0x5a,0x82,0x1f,0xb0,0x2f,0x7b,0x7b,0x6b,
0x1e,0x4f,0x8,0x21,0x5e,0x90,0x7b,0x3,0x6b,0xf,0xdf,0xe5,0xcd,0x9b,0xd3,0x44,
0xac,0xc4,0xb5,0x56,0xad,0xb4,0x8e,0xc7,0xe3,0xb1,0x6,0x83,0x6f,0xdf,0x36,0x3d,
0x30,0x76,0x76,0xd8,0x37,0x7f,0x7e,0x56,0x5f,0x3f,0xcb,0xa,0x48,0x62,0x90,0x43,
0xe7,0xe8,0xa0,0x63,0xc7,0xd0,0x9c,0x96,0xe0,0x82,0xf6,0xbb,0xf7,0xd2,0xcb,0x8,
0xc0,0x6,0x27,0x27,0x65,0xbe,0xf1,0x23,0x5a,0xfe,0xf9,0xe7,0x5a,0xc7,0x13,0x42,
0x88,0xe7,0xc7,0x6a,0x20,0x1b,0x8d,0x34,0x8c,0x77,0x28,0x73,0xc3,0xc3,0xed,0x15,
0x95,0x16,0x50,0x1b,0xde,0x34,0x63,0x46,0x3c,0x11,0x1d,0xa7,0x5b,0xb7,0xb2,0xfa,
0xfa,0x59,0xd7,0x3,0xb1,0x5d,0xf0,0x3e,0xff,0xa2,0x2e,0x19,0x3f,0x1e,0x35,0x91,
0x8a,0xe,0xaa,0xaa,0x79,0x3,0x4d,0xe4,0x9,0x34,0xb1,0x53,0x27,0xcf,0xaf,0xac,
0x5,0x7d,0x43,0x1a,0x35,0xd2,0x3a,0x9e,0x10,0x42,0x3c,0x2b,0xf7,0x72,0xd6,0xb0,
0x3f,0xcb,0xf,0x18,0x80,0xbe,0x1c,0x8d,0xab,0x95,0x2a,0x69,0x1d,0xcf,0x76,0x10,
0xa0,0x53,0x8a,0xd1,0xc9,0x7c,0xfc,0xcb,0x2f,0xb5,0x8a,0x93,0xe5,0x5,0xe4,0xf2,
0xc,0x87,0x9f,0xe2,0xaa,0x9c,0x3c,0xc9,0x11,0x34,0x16,0xcb,0xec,0x37,0x6d,0x51,
0x6d,0xc2,0xaf,0x29,0x9b,0x22,0x22,0x64,0xc1,0xa1,0x10,0x22,0xbb,0x70,0x8f,0x78,
0x30,0x22,0x20,0xca,0xcb,0x8b,0xaa,0x73,0x5b,0xdc,0x9e,0x3c,0xd9,0x6e,0x81,0x47,
0x52,0x45,0xf6,0xd,0xf,0x3f,0x7f,0x81,0x94,0xf3,0x17,0x6e,0xdf,0xd6,0x2a,0x4c,
0x96,0x17,0x90,0x4c,0x3f,0xa9,0x95,0x32,0x5e,0x9f,0x30,0xc1,0x76,0xc6,0xae,0x66,
0x71,0x1e,0xa1,0xa6,0xbc,0x1a,0x85,0xca,0x97,0x57,0x3d,0x2d,0xed,0xa,0x34,0x1b,
0x37,0x4e,0xeb,0x78,0x42,0x8,0xf1,0x24,0xe4,0x6d,0x48,0x56,0xbd,0xe7,0xcd,0xc3,
0x6e,0x34,0x44,0x31,0x3b,0xcc,0x1a,0x6d,0x82,0x4f,0x78,0xec,0x9f,0x7f,0x5a,0xef,
0x18,0xeb,0x29,0xa3,0x66,0xcd,0xd2,0xfc,0xfe,0xb4,0xe,0xe0,0xbe,0xc7,0x1c,0xe3,
0x5f,0x6f,0xf6,0x6c,0xea,0x84,0xb2,0xb8,0x61,0x87,0x3d,0xad,0xfa,0xe1,0x1a,0x7f,
0x6b,0xb5,0xa2,0x2,0x76,0x2b,0x17,0x6a,0xd5,0xca,0x1c,0x9b,0x11,0x42,0x8,0x3b,
0x71,0x8f,0x30,0xb7,0xf5,0x3d,0xf1,0xee,0xbb,0x34,0x11,0x2b,0x95,0xce,0xcf,0xbf,
0xd7,0xd4,0xb3,0xa2,0x74,0x72,0xc3,0x9a,0xbe,0x7d,0xaf,0xa4,0x98,0x6e,0xc4,0xf8,
0xcd,0x9b,0xa7,0x75,0x3c,0xed,0x7a,0x20,0x8f,0x18,0x56,0x9a,0xfc,0x68,0xd0,0xd8,
0xb1,0xb8,0x81,0x79,0x78,0x29,0x25,0x45,0xeb,0x78,0x98,0x83,0xe2,0x14,0x6c,0x34,
0x22,0x91,0x26,0x72,0xcf,0xa5,0x4b,0xe5,0x91,0x96,0x10,0xc2,0x5e,0x4a,0xe,0xb9,
0x3f,0xb9,0xfc,0x75,0x4f,0x4f,0x1a,0x84,0x26,0x4a,0xef,0x99,0x33,0xed,0x16,0x78,
0x4,0x55,0xc3,0x95,0xd3,0xa7,0xaf,0xa4,0x18,0xaf,0xbb,0xfa,0xbe,0xf8,0x16,0x25,
0x4f,0x4b,0xf3,0x2,0x72,0x79,0x6,0x51,0x74,0xd0,0x8d,0x1b,0x1c,0x44,0xc7,0xd0,
0xca,0x8e,0xcf,0x0,0x3f,0xe7,0x63,0xf0,0xac,0x58,0x51,0xed,0x6b,0x59,0x52,0x60,
0xcb,0x27,0x9f,0xd8,0x2d,0xae,0x10,0x22,0xf,0x62,0x6,0x14,0x25,0x23,0xcc,0x98,
0xcf,0x90,0xb2,0x64,0x9,0x8a,0xa0,0xf,0x6e,0x17,0x2d,0x6a,0xb7,0xe8,0x7d,0xa8,
0x34,0xef,0x18,0x32,0x4,0x20,0x65,0x7,0x59,0xad,0xf6,0x8a,0xab,0x79,0x1,0xb1,
0xf1,0x38,0x65,0x5c,0xe8,0xbc,0x66,0xce,0x1c,0xbc,0x42,0xf5,0x79,0xf2,0xb3,0x1f,
0x5c,0xf2,0xdc,0xde,0x45,0x47,0x54,0x18,0x34,0xc8,0x36,0xff,0xda,0x6e,0x71,0x85,
0x10,0x79,0x86,0x87,0x93,0x75,0xb9,0xff,0xab,0xc3,0x86,0x51,0x3d,0x84,0x51,0xfb,
0xc6,0x8d,0xed,0x16,0x78,0x2d,0x4d,0xc7,0xe4,0x55,0xab,0x92,0x9c,0x8c,0x9b,0x62,
0x5f,0xde,0xb2,0xc5,0xde,0xf7,0x6d,0xb7,0x2,0x72,0xf8,0x8,0x29,0x87,0x8f,0x58,
0x2c,0xb4,0x1a,0x7,0xb8,0x43,0xbf,0x7e,0x76,0x5b,0x70,0x98,0x8,0x7,0xc4,0x10,
0x51,0x17,0xb5,0xb0,0xd2,0xf9,0x9b,0x6f,0xbc,0x36,0x33,0xfb,0xa5,0xba,0xbb,0xdb,
0xeb,0xbe,0x85,0x10,0xb9,0x97,0x67,0x8a,0xa5,0xb3,0xff,0xa5,0x57,0x5e,0xe1,0x15,
0x5c,0x3,0x49,0x76,0x7c,0xc2,0x62,0x3b,0x19,0x76,0x9d,0x75,0xa9,0x61,0xe4,0x90,
0x21,0x7a,0xdd,0xbf,0xdd,0xa,0x88,0xcd,0x15,0x32,0x51,0x1c,0x6d,0xdf,0x8e,0x57,
0xc9,0x15,0x69,0x76,0xd8,0xe,0xde,0x66,0x12,0x3e,0x81,0xbf,0x9b,0x9b,0xa5,0xac,
0xe5,0x14,0xf5,0x5b,0xb5,0x2a,0x20,0x8a,0xd5,0x80,0x28,0x7,0x7,0x7b,0xdf,0xbf,
0x10,0x22,0xe7,0x2b,0xd1,0x94,0xd5,0x2a,0xd3,0x5c,0x5d,0x55,0x3,0xca,0xf3,0xc6,
0x95,0x2b,0x29,0x14,0xa5,0xe1,0x6c,0xc7,0xcf,0x93,0x6f,0x68,0x3a,0x3b,0x8f,0x1e,
0x6d,0xdb,0x4a,0x4a,0xaf,0x76,0xb0,0x7b,0x1,0xb1,0x71,0xda,0x60,0xbc,0x97,0x1e,
0x33,0x6c,0x98,0x6d,0x93,0x2f,0x7b,0xc5,0xa5,0x40,0xf8,0xe2,0x3f,0x75,0xea,0xdc,
0xfa,0xce,0xb2,0x4d,0x8d,0xb2,0xdf,0x8a,0x50,0x21,0x44,0x6e,0xc0,0xc,0x18,0xc,
0x86,0x78,0xcb,0x78,0xcb,0xef,0x4b,0x97,0x52,0x0,0x8f,0xa3,0x2f,0x4b,0x96,0xb4,
0x5b,0xf4,0xf1,0x48,0xe4,0x43,0x7,0xe,0x24,0xde,0x30,0x6e,0x8b,0xdd,0x30,0x77,
0xae,0xde,0xad,0xa1,0x5b,0x1,0xb1,0x2d,0x70,0xe1,0x33,0xea,0x5b,0x3c,0x7d,0xd0,
0x20,0xbb,0x27,0x70,0x18,0xaf,0xd1,0xe9,0x81,0x3,0xdd,0xf6,0x9a,0xc7,0xfa,0xbf,
0xf1,0xde,0x7b,0x7a,0xb5,0x83,0x10,0x22,0xe7,0x70,0x8f,0xb0,0x4c,0xe,0x28,0x38,
0x75,0x2a,0xee,0x61,0x2c,0x2e,0x34,0x6d,0x6a,0xaf,0xb8,0x1c,0x81,0x78,0xdc,0x37,
0x9b,0xd5,0x57,0x10,0x40,0x9b,0x7a,0xf4,0x0,0x88,0x0,0xed,0xd7,0xd7,0x3d,0x89,
0x6e,0x5,0xc4,0x26,0xb9,0xa3,0x63,0xe5,0xd8,0xe4,0x55,0xab,0xd0,0x8c,0xde,0xc3,
0xaf,0x3f,0xfc,0x60,0xef,0xf8,0x94,0x82,0x60,0x9c,0x5e,0xb8,0xd0,0xb3,0x82,0xd5,
0x2b,0x20,0xea,0xf5,0xd7,0xf5,0x6e,0xf,0x21,0x44,0xf6,0xe3,0xfe,0x87,0xf9,0xa4,
0x7f,0xb7,0x1e,0x3d,0x68,0x22,0x46,0xb1,0xe7,0xd0,0xa1,0x76,0x4f,0xa0,0x14,0x45,
0xf3,0xf6,0x71,0xe3,0xae,0x56,0x73,0xb8,0x1f,0xd3,0xf1,0xf4,0x69,0xbd,0xdb,0xc3,
0x46,0xf7,0x2,0x62,0xe3,0xb4,0xc3,0xf8,0x63,0xfa,0x6b,0xfd,0xfa,0xa1,0xd,0xd,
0x44,0xc0,0xc5,0x8b,0xf6,0x8a,0x6b,0x7b,0x76,0xa9,0xee,0x55,0x47,0xf3,0xfb,0x2b,
0x56,0x78,0x34,0x4a,0xf,0xf3,0xd,0xf1,0xf5,0xd5,0xbb,0x3d,0x84,0x10,0xfa,0x73,
0xbb,0x64,0x1d,0x1c,0x10,0xd5,0xa2,0x5,0x2d,0x47,0x11,0x1e,0xa0,0xfd,0xc2,0xbc,
0x7f,0x19,0x88,0x8d,0x48,0xdd,0xb9,0x33,0xa9,0x9a,0xb1,0x6d,0xac,0x4f,0xf6,0x7b,
0xe4,0x9e,0x6d,0xa,0x48,0xe6,0x23,0xad,0xea,0xe8,0x40,0x9d,0xdf,0x7b,0xcf,0x5e,
0x5b,0xa0,0xd8,0x50,0x15,0x84,0xc0,0xab,0x48,0x11,0xf4,0x50,0x6e,0x28,0x6f,0x6e,
0xdc,0x68,0x1b,0x24,0xd3,0xbb,0x5d,0x84,0x10,0xf6,0xe7,0x11,0x65,0x5e,0x1e,0x10,
0x55,0xad,0x9a,0x32,0x43,0x6d,0xc2,0x73,0xa3,0xa2,0x32,0x17,0x28,0xdb,0x89,0x6d,
0x33,0x44,0x4a,0xb4,0x6,0x58,0x86,0x75,0xe9,0x92,0x5d,0x1e,0x59,0xfd,0x53,0xb6,
0x29,0x20,0x36,0x49,0xa1,0xa6,0x66,0xd1,0x41,0xbb,0x77,0xb3,0x8a,0x57,0xd1,0xe3,
0xd3,0x4f,0xed,0x9e,0xc0,0x8,0x8e,0xc4,0x88,0x32,0x65,0x94,0x59,0xd6,0x62,0xe6,
0x22,0xbf,0xfe,0xea,0xe5,0xc5,0x5c,0xb9,0x72,0xe1,0xc2,0x7a,0xb7,0x8b,0x10,0x42,
0x7b,0x99,0x4f,0x20,0x8e,0xe3,0xb8,0xea,0xbf,0x79,0x33,0x96,0xa1,0x19,0x92,0xb,
0x14,0xb0,0x77,0x1e,0xca,0x44,0x6e,0x4b,0x8b,0x43,0x43,0xaf,0xcc,0x72,0xae,0x70,
0x36,0xec,0xf2,0x65,0xbd,0xdb,0xe5,0x71,0x34,0xdf,0xb,0xeb,0xf9,0x3d,0x9c,0xed,
0xe0,0xf1,0x86,0x65,0xa4,0xff,0xe4,0x8d,0x1b,0x71,0xc,0x53,0xf0,0x43,0xb3,0x66,
0x76,0xcf,0x22,0x18,0xd7,0x79,0xde,0x7f,0xfe,0x63,0xae,0x63,0x72,0xe3,0x25,0x4d,
0x9a,0xa4,0xb4,0x23,0x25,0x2e,0xf2,0xee,0x5d,0xbd,0x5b,0x47,0x8,0x91,0x75,0x3c,
0x3e,0x7a,0x50,0xb1,0x52,0xd9,0x52,0xa5,0x70,0xc4,0xd8,0x28,0x83,0x76,0xed,0xc2,
0x71,0xfe,0x2,0xa6,0xd2,0xa5,0xed,0x9e,0xc8,0x97,0x58,0xc3,0xbf,0x7e,0xf5,0x55,
0x62,0x90,0x43,0xe7,0xd8,0x52,0x83,0x7,0xeb,0xdd,0x2e,0x4f,0x92,0xed,0x7a,0x20,
0x7f,0x79,0xd8,0x65,0x53,0x4b,0x98,0x3e,0xb3,0xbc,0xd4,0xb5,0x2b,0xee,0xd2,0x58,
0x8e,0xb4,0xff,0x7c,0x67,0xfa,0x16,0xc5,0xa8,0x4f,0xed,0xda,0x8e,0xe9,0x96,0x15,
0xca,0xdd,0xf5,0xeb,0xdd,0x23,0x98,0x6b,0xd4,0x70,0x76,0xd6,0xbb,0x75,0x84,0x10,
0x2f,0xae,0xd4,0xd4,0xfb,0x15,0x7c,0x43,0x3c,0x3c,0xd8,0xcb,0x58,0xc9,0x3a,0xf7,
0xf7,0xdf,0x75,0x2b,0x1c,0xbe,0xd8,0xcd,0x53,0x77,0xef,0x76,0xff,0xcc,0xd4,0xc9,
0xa5,0xdd,0xf0,0xe1,0x7a,0xb7,0xcb,0xd3,0xca,0xc6,0x3d,0x90,0xff,0xe6,0x51,0xda,
0xbc,0xc7,0xff,0xe0,0xcb,0x2f,0xe3,0xa,0x4c,0x38,0xbd,0x67,0xf,0x5c,0x51,0xd,
0x53,0x75,0xd8,0x24,0xf1,0xd1,0x5f,0x74,0x9a,0x93,0xa9,0xa1,0xf5,0x62,0xab,0x56,
0x37,0x36,0x91,0x72,0x36,0xec,0xce,0x1d,0xbd,0xdb,0x47,0x8,0xf1,0xf4,0xdc,0xf6,
0x3e,0xd8,0xea,0xff,0x46,0xe9,0xd2,0x74,0xdb,0x38,0x87,0x17,0x6f,0xdd,0x4a,0x3d,
0x78,0x19,0x35,0x2c,0x57,0xce,0xee,0x89,0x8c,0xc3,0x68,0xc4,0x24,0x27,0x1b,0x6e,
0x5b,0x7f,0x52,0x43,0x6a,0xd4,0xb8,0x34,0xd2,0xf9,0x4c,0x5c,0x64,0x62,0xa2,0xde,
0xed,0xf3,0xb4,0xb2,0x71,0xf,0xe4,0xbf,0x25,0xc6,0x3b,0xd4,0x8b,0xa9,0x75,0xf4,
0x28,0xc7,0x20,0x1f,0x7e,0x1f,0x38,0x50,0xb7,0x44,0xe2,0x50,0x9f,0x46,0xd6,0xaf,
0xef,0xd4,0xd1,0x72,0xd3,0x68,0xd9,0xba,0xb5,0xe4,0x10,0xe6,0x80,0xa8,0x22,0x45,
0xf4,0x6e,0x1f,0x21,0xc4,0x93,0xd9,0xc6,0x38,0x28,0xc0,0xb8,0x9d,0xdb,0xed,0xde,
0xad,0x57,0xe1,0xb0,0xad,0xeb,0x60,0xa2,0x66,0x14,0xd5,0xa9,0x53,0x4e,0x2b,0x1c,
0x36,0x39,0xa6,0x7,0xf2,0x4f,0x1e,0xfe,0xe6,0x1e,0xfe,0x9e,0x53,0xa7,0xe2,0x36,
0xe6,0xa2,0xe0,0x88,0x11,0x7a,0xe5,0xc1,0x91,0xe4,0x85,0x31,0x27,0x4e,0x98,0x60,
0x4c,0xe2,0xf6,0x2d,0x5a,0x24,0xb4,0x20,0x8a,0x75,0x49,0x4a,0xd2,0xbb,0x7d,0x84,
0x10,0x7f,0xb1,0xcd,0xaa,0xca,0x1c,0x1c,0x5f,0x8c,0x9,0x14,0x54,0xa2,0x84,0xfd,
0x13,0x79,0xb8,0x7,0x20,0xc7,0x60,0x34,0xfa,0x7,0x7,0x27,0xa5,0x3a,0xcc,0x8c,
0x69,0xbc,0x74,0xa9,0xde,0xed,0xf3,0xbc,0x72,0x4c,0xf,0xe4,0x9f,0x12,0x63,0x4c,
0xb,0x63,0xae,0x8c,0x1a,0xa5,0xd7,0x2,0x44,0x1b,0xa,0xe1,0x4,0x4c,0xa9,0x52,
0xc5,0xe2,0x61,0x9d,0x44,0x73,0xe,0x1e,0xcc,0xfc,0x87,0x2a,0x84,0xd0,0x9d,0x7b,
0x9a,0xb5,0xa5,0xdf,0xd1,0xa6,0x4d,0x71,0x19,0xe,0xbc,0x6b,0xc7,0xe,0xdd,0xa,
0x87,0x4d,0x7f,0xba,0xc3,0xdf,0x8d,0x1f,0x9f,0xd3,0xb,0x87,0x4d,0x8e,0xed,0x81,
0xd8,0x94,0x66,0xe6,0xd2,0xec,0xe4,0x64,0x56,0x2d,0x87,0x9d,0xe7,0xfc,0xf6,0x1b,
0x95,0x42,0x15,0x7c,0x5d,0xb7,0xae,0x6e,0x9,0x3d,0xda,0x25,0x53,0xf5,0x50,0xe,
0xd0,0xc9,0xce,0x9d,0x93,0x87,0x19,0x27,0x47,0x5f,0xdf,0xb4,0x49,0xef,0x76,0x12,
0x22,0x2f,0x79,0x38,0x66,0x1a,0x12,0xc2,0xa3,0xe1,0xc9,0x1,0xf3,0xe6,0xd1,0x44,
0x78,0x50,0x4d,0x93,0x49,0xb7,0x84,0x1e,0x7d,0xd1,0x4d,0xfc,0xc6,0xb8,0x2c,0xa6,
0x54,0xd7,0xae,0xf,0x27,0x9,0xd9,0x61,0x37,0x72,0x8d,0xe5,0xd8,0x1e,0x88,0x4d,
0x3c,0x11,0xc5,0x53,0x5a,0x1a,0x16,0x9a,0xaa,0x67,0x1c,0x6f,0xd7,0xe,0x41,0x54,
0x9b,0xd7,0x47,0x47,0xeb,0x96,0xd0,0xa3,0x79,0xe3,0x54,0x40,0xed,0xa1,0xc6,0xaf,
0x5b,0xe7,0x76,0xc6,0xe2,0x10,0xd0,0x30,0x34,0x54,0xef,0x76,0x12,0x22,0x77,0x63,
0x35,0x90,0x8d,0x46,0xf7,0x8,0xf3,0xa4,0x80,0x82,0xe1,0xe1,0xb0,0xa0,0x16,0x82,
0x17,0x2d,0xd2,0xbd,0x70,0x2c,0x46,0x4f,0x5e,0xb2,0x69,0x93,0xfb,0x9,0xe3,0x8f,
0xce,0xed,0xba,0x77,0xcf,0x2d,0x85,0xc3,0x26,0xc7,0xf7,0x40,0xfe,0xc9,0xf5,0x75,
0x56,0x2b,0x7d,0x5c,0xa2,0x84,0xf1,0x98,0xb5,0x71,0xc6,0xfd,0x1d,0x3b,0xe0,0xc4,
0xbf,0x60,0x75,0x36,0xd8,0x9a,0x64,0x1e,0xb5,0xe5,0x95,0x4b,0x97,0x72,0x92,0x71,
0x93,0x4b,0x70,0x68,0x68,0x52,0x28,0xd1,0xe1,0xc3,0xf7,0xef,0xeb,0x9d,0x96,0x10,
0x39,0x99,0x7b,0x4,0xab,0x15,0x7a,0x17,0x2b,0x46,0x7d,0x2d,0x9f,0x1a,0x56,0xfc,
0xf8,0x23,0xdc,0x30,0x1c,0x6e,0x4d,0x9a,0xe8,0x9d,0x17,0x4c,0x38,0x88,0x6f,0xf7,
0xec,0xc9,0xa8,0x60,0xaa,0x6b,0xda,0xde,0xbc,0xf9,0xd5,0x2d,0x44,0x27,0x86,0xa7,
0xa6,0xea,0x9d,0x56,0x56,0xcb,0x75,0x5,0xc4,0xa6,0x4,0x3f,0x60,0x5f,0xf6,0xf6,
0x36,0x14,0x34,0x8e,0xa2,0xfd,0x3b,0x77,0xa2,0x0,0x4f,0xa6,0x90,0x52,0xa5,0xf4,
0xce,0xb,0xd,0x1,0x34,0x3c,0x7c,0x58,0x1d,0x90,0xb1,0x13,0xf1,0x1d,0x3a,0x24,
0xd7,0xcd,0xd7,0x24,0x66,0x63,0x7c,0xbc,0xde,0x69,0x9,0x91,0x93,0xd8,0xe,0x72,
0xca,0x3c,0x8f,0xc3,0xce,0xdb,0xaa,0x3f,0x8e,0x6d,0xbb,0x75,0xb3,0x9b,0xc9,0x8b,
0x7,0x36,0x6d,0x9a,0xdb,0x17,0x1e,0xe7,0xf8,0x47,0x58,0x8f,0x73,0x95,0xf2,0x51,
0x1c,0x5d,0xbc,0x88,0x2b,0xea,0x41,0x2c,0x6d,0xd2,0x84,0xc7,0x63,0x18,0x4c,0xd9,
0x60,0x76,0xd4,0x76,0x0,0xdb,0x6b,0xd4,0x20,0x67,0x43,0x2,0xcf,0x3e,0x7a,0xd4,
0xd3,0x23,0x3d,0x2d,0xc0,0xbf,0x53,0x27,0xbd,0xd3,0x12,0x22,0x7b,0x7b,0x78,0xe6,
0xb8,0x87,0x93,0x65,0x99,0xff,0xab,0x23,0x46,0xa8,0x7b,0x79,0xa,0xea,0xef,0xdc,
0x99,0x6d,0xa,0xc7,0x79,0x2a,0xc2,0x3f,0x1c,0x3b,0x66,0xfa,0xd8,0x54,0xda,0xf4,
0x6a,0xcb,0x96,0xb9,0xbd,0x70,0xd8,0xe4,0xda,0x1e,0xc8,0x3f,0x95,0x68,0x9a,0xd6,
0xa0,0xc2,0x1,0x1f,0x1f,0x43,0x37,0x43,0x69,0xc3,0x9f,0x5b,0xb7,0xda,0xf6,0xbc,
0xd2,0x3b,0x2f,0x1b,0x1e,0x4f,0x13,0x78,0xfc,0x8a,0x15,0xe,0xbd,0x8d,0x1f,0x3b,
0x76,0xee,0xdd,0x3b,0x9e,0x88,0x8e,0xd3,0xad,0x5b,0x7a,0xe7,0x25,0x84,0x9e,0x8a,
0x77,0x62,0xe,0x88,0x72,0x73,0x33,0x5,0x5a,0x42,0xd5,0xa4,0xc5,0x8b,0xf1,0x9,
0xbe,0xa6,0x79,0x2d,0x5a,0xe8,0x9d,0x57,0xa6,0xf7,0x91,0x8e,0x61,0x87,0xe,0x61,
0xa4,0x29,0x3f,0x1f,0x69,0xd1,0x22,0xb1,0x20,0x51,0xec,0xec,0x94,0x14,0xbd,0xd3,
0xb2,0x97,0x3c,0x53,0x40,0x6c,0xb2,0xcd,0xa,0xd4,0xc7,0xe0,0xf1,0xf4,0x1e,0x7f,
0x75,0xee,0x1c,0x57,0xc6,0x27,0xf4,0x65,0x48,0x48,0x72,0x5d,0x53,0xd9,0x98,0x8d,
0x3b,0x77,0xea,0x9d,0x97,0x10,0xf6,0xe4,0xfe,0xa6,0x39,0x38,0xa0,0x7a,0x97,0x2e,
0x58,0x80,0xba,0x1c,0x37,0x73,0x66,0xe6,0x6e,0xd9,0xd9,0x4,0xbf,0x87,0x65,0xe8,
0xb1,0x7d,0xbb,0xb9,0xae,0xa9,0xab,0x1a,0xdd,0xb6,0x6d,0x5e,0xe9,0x71,0xfc,0x53,
0x9e,0x2b,0x20,0x36,0xb6,0xc1,0x76,0x43,0x67,0xab,0x77,0x46,0xca,0x96,0x2d,0x34,
0x91,0xcf,0x62,0x53,0xe5,0xca,0x7a,0xe7,0x95,0xe9,0xd1,0x82,0x23,0x2c,0xa7,0x36,
0xd8,0xb5,0x74,0xa9,0xf2,0xb5,0x71,0x1b,0xcd,0x1e,0x3c,0xf8,0xf2,0xc,0xa2,0xe8,
0xa0,0x1b,0x37,0xf4,0x4e,0x4f,0x88,0xac,0x64,0xdb,0x93,0x2a,0xe3,0xa0,0x69,0x38,
0xcd,0x9a,0x3d,0x1b,0x7b,0xb9,0x1b,0xd5,0x6c,0xdf,0x5e,0xef,0xbc,0xfe,0xe5,0xd1,
0xac,0x2a,0x65,0xb3,0x69,0xc9,0xbd,0x1f,0x3b,0x74,0xb8,0x3c,0x83,0xe8,0xf2,0x8c,
0x7,0xf,0xf4,0x4e,0x4b,0x2f,0x79,0xb6,0x80,0xd8,0xd8,0xb6,0x22,0x51,0x5d,0x2d,
0xeb,0x78,0xd8,0x9a,0x35,0x98,0x85,0x37,0xe0,0xf2,0xda,0x6b,0x7a,0xe7,0xf5,0x4f,
0xbc,0x90,0xc2,0x51,0x23,0x31,0x51,0xd9,0xa4,0x76,0xa7,0xb6,0x83,0x6,0x5d,0x99,
0xe5,0xe8,0x11,0x1d,0xb4,0x72,0xa5,0xde,0x79,0x9,0xf1,0x3c,0x6a,0x54,0x67,0xb5,
0x46,0x75,0x93,0x29,0x39,0xc3,0xfa,0x61,0xea,0xec,0x1,0x3,0xd8,0x97,0x1b,0x53,
0xdb,0x49,0x93,0xb0,0x1b,0xd,0x51,0x2c,0x7f,0x7e,0xbd,0xf3,0xfb,0x27,0x5e,0x46,
0xd5,0xb0,0xfe,0x9b,0x6f,0x3c,0x6,0x1b,0x4f,0x39,0x7,0xf5,0xee,0x7d,0xf8,0x8,
0x29,0x87,0x8f,0x58,0x2c,0x7a,0xe7,0xa5,0xb7,0x3c,0x5f,0x40,0x6c,0x2,0xa2,0x58,
0xd,0x88,0x72,0x70,0xb8,0xe5,0x64,0x7d,0x43,0xad,0xb8,0x68,0x11,0xfa,0xf0,0x4f,
0xd4,0xb1,0x6b,0x57,0xbd,0xf3,0x7a,0x1c,0x5b,0x17,0x5a,0xd9,0x8d,0x3f,0x15,0x87,
0xc1,0x83,0xaf,0xec,0x71,0x18,0x76,0x3a,0xec,0xf8,0x71,0xbd,0xf3,0x12,0xe2,0x7f,
0xf1,0xd8,0x66,0xad,0x14,0xe0,0xd8,0xb8,0x31,0xee,0x72,0x1a,0xd7,0xf9,0xf2,0x4b,
0xf4,0xe5,0x68,0x5c,0xad,0x54,0x49,0xef,0xbc,0xfe,0x9d,0xe8,0xa3,0x2d,0x47,0xe,
0xb2,0xb,0x56,0x4d,0x9a,0x94,0x44,0xe,0x88,0xa1,0x89,0x13,0x73,0xdb,0x3a,0x8e,
0x17,0x25,0x5,0xe4,0x5f,0x98,0x1,0x22,0xf7,0xda,0x96,0x2a,0x7e,0xbf,0x4e,0x9e,
0x4c,0x97,0x71,0x98,0x6,0x7d,0xf4,0x91,0xde,0x59,0x3d,0xd6,0xa3,0x93,0x1b,0xf9,
0xc,0x1c,0x79,0xcf,0xc2,0x85,0x19,0x6c,0x2a,0x60,0xf4,0x18,0x3f,0xfe,0xcf,0x6d,
0xa4,0x9c,0xfa,0xe8,0xea,0x55,0xbd,0xd3,0x13,0x79,0x9b,0x7b,0x44,0xfa,0xbc,0xa,
0xbd,0xfd,0xfc,0x50,0x9e,0x56,0x1b,0x8a,0x4e,0x9b,0x46,0x5d,0xf1,0x33,0xd6,0xb6,
0x6e,0xad,0x77,0x5e,0x8f,0x63,0xdb,0xe4,0x10,0x6f,0x63,0x16,0x22,0x7b,0xf4,0xc8,
0x2d,0x5b,0x8e,0x68,0x45,0xa,0xc8,0x13,0xd8,0x6,0xf3,0xe8,0x8,0x42,0xd5,0x2f,
0xe6,0xcf,0x87,0x5,0xb5,0xa8,0x6f,0x36,0x3e,0xf,0xc4,0x1b,0x7b,0x79,0x47,0x6a,
0x2a,0x6e,0xe2,0x3b,0x7a,0x79,0xf6,0x6c,0x1e,0x6c,0x5a,0x90,0xd1,0x6a,0xda,0xb4,
0xa4,0x50,0x52,0xce,0xcc,0xbf,0x7e,0x5d,0xef,0xf4,0x44,0xee,0x56,0xaa,0x51,0xda,
0xea,0x8a,0x9,0x65,0xcb,0x5a,0xab,0x1a,0xa6,0xa9,0xc3,0xc7,0x8d,0xa3,0x74,0x5e,
0x87,0x76,0x5d,0xba,0x60,0x1d,0xa,0x61,0xb2,0xc1,0xa0,0x77,0x7e,0x8f,0xf3,0xd7,
0x34,0x7f,0x6a,0x4d,0x63,0x82,0x82,0x6c,0x27,0xa3,0xea,0x9d,0x57,0x76,0x27,0x5,
0xe4,0x29,0x79,0xd6,0x33,0x87,0x57,0x9c,0x59,0xb5,0xaa,0x1a,0x4c,0x7,0x33,0xfc,
0x56,0xad,0xa2,0x89,0xfc,0x1d,0xd,0x2a,0x5b,0x56,0xef,0xbc,0x9e,0xe8,0xd1,0xde,
0x5c,0x9c,0x8a,0x30,0xec,0xff,0xea,0x2b,0x36,0x9b,0xce,0x5a,0xa6,0xce,0x9c,0x99,
0xbc,0x98,0x94,0xb3,0x61,0xd7,0xae,0xe9,0x9d,0x9e,0xc8,0xd9,0x6c,0x5,0x23,0xa3,
0xa2,0xa1,0xab,0xda,0x67,0xd4,0x28,0xae,0xcc,0xd1,0xbc,0xa2,0x5b,0x37,0xdd,0xb7,
0x10,0x79,0x5a,0x8f,0xce,0xf7,0x31,0x8e,0x34,0x35,0x42,0xe3,0xa0,0x20,0xd9,0x4d,
0xfb,0xd9,0x48,0x1,0x79,0x46,0x45,0x5a,0xb2,0x5a,0x6e,0x66,0xc1,0x82,0x4e,0xd5,
0xad,0x73,0x4d,0x8b,0xbf,0xf9,0x6,0x8b,0xb9,0x17,0xd2,0xde,0x7c,0x53,0xef,0xbc,
0x9e,0x16,0xff,0x8c,0x3f,0xe0,0x93,0x9e,0x4e,0x2f,0xd1,0x0,0x1c,0x8c,0x8a,0x52,
0x4b,0xaa,0xe3,0x95,0xc5,0x9f,0x7e,0x9a,0xec,0xe8,0xd8,0xf0,0x74,0xeb,0x98,0x18,
0xbd,0xf3,0x13,0xd9,0x9b,0x7b,0x84,0xf9,0xa2,0x5f,0x6a,0xf5,0xea,0xd4,0x84,0xde,
0x27,0xef,0xc1,0x83,0xf1,0x23,0x2f,0xe5,0x8d,0xef,0xbc,0x83,0x39,0x28,0x4e,0xc1,
0x46,0xa3,0xde,0xf9,0x3d,0xb5,0x15,0x0,0x56,0xcc,0x9f,0x5f,0xe8,0x8a,0xc9,0x48,
0xd1,0x3,0x7,0x46,0x7,0x91,0x12,0x1d,0x64,0x36,0xeb,0x9d,0x56,0x4e,0x23,0x5,
0xe4,0xb9,0x3d,0x5a,0x19,0xdb,0xc8,0xba,0xd8,0x7f,0xe6,0xd0,0xa1,0xfc,0x1,0x37,
0xc0,0xf4,0x29,0x53,0x28,0x14,0xa5,0xe1,0xec,0xe0,0xa0,0x77,0x76,0x4f,0xad,0x26,
0x52,0xd1,0x41,0x55,0xe1,0x40,0x2b,0xf9,0xc3,0x9f,0x7e,0x52,0x67,0xd0,0x69,0x65,
0x43,0x44,0x44,0x72,0x29,0xc3,0x8c,0xe8,0xa0,0x5f,0x7f,0x7d,0x38,0x68,0xa8,0xaa,
0x7a,0xa7,0x29,0xec,0x2b,0x73,0x97,0xeb,0xf9,0x96,0x76,0x4e,0x27,0xdf,0x7a,0x8b,
0x96,0x61,0x30,0x5d,0xec,0xdb,0xd7,0x76,0xa0,0x9a,0xde,0xf9,0x3d,0x2b,0x3e,0x81,
0x48,0x24,0xdc,0xb8,0xc1,0xdb,0xb9,0x1e,0x17,0xe8,0xdd,0x3b,0xb9,0xa3,0x63,0xe5,
0xd8,0xe4,0x55,0xab,0xf4,0xce,0x2b,0xa7,0x93,0x2,0x92,0x45,0x32,0xbf,0x99,0xcd,
0xa3,0x2e,0xb4,0xe9,0xfb,0xef,0x71,0x95,0x7f,0xc7,0x58,0x3f,0x3f,0xbd,0xf3,0x7a,
0x6e,0x85,0x69,0x24,0x1f,0x4a,0x48,0x40,0x3e,0x7c,0x8c,0x2e,0x91,0x91,0x68,0x6e,
0xad,0x65,0x3c,0x19,0x19,0x99,0xf8,0x71,0xbe,0xd3,0xa7,0xce,0xd9,0xff,0x6c,0x7a,
0xa1,0xad,0x92,0x43,0xcc,0x6d,0x7d,0x4f,0x54,0xae,0xac,0x3a,0xa3,0x17,0x1d,0xe8,
0xd9,0x93,0x87,0xe0,0xa,0xd,0xee,0xda,0x35,0xbb,0x2d,0xe0,0x7b,0x56,0x3c,0x1e,
0x4b,0xb0,0xe0,0xf7,0xdf,0x95,0x53,0xd6,0x40,0xcb,0x91,0xe0,0xe0,0x2b,0xb3,0x9c,
0x2b,0x9c,0xd,0xbb,0x7c,0x59,0xef,0xbc,0x72,0xb,0x29,0x20,0x59,0xcc,0x3d,0x82,
0xb9,0x46,0xd,0x67,0x67,0x9c,0xb6,0x5c,0x4d,0x1d,0x3b,0x7d,0x3a,0xed,0x45,0x7e,
0xfa,0x36,0x34,0x14,0x89,0x70,0x40,0xc,0xe5,0xdc,0xf6,0xb6,0xf5,0x54,0x5c,0xb1,
0x9f,0x7,0xec,0xd9,0x83,0x14,0x1a,0x8f,0xdd,0xcb,0x97,0x5b,0x8c,0xc6,0x3,0x8a,
0xba,0x6a,0xd5,0xb5,0x15,0x44,0xd1,0x41,0xc9,0xc9,0x7a,0xa7,0x29,0xfe,0x37,0xcf,
0x95,0xe9,0x45,0xfd,0x27,0x97,0x2f,0x8f,0x10,0x65,0x27,0x4a,0x5,0x5,0xa9,0xd3,
0xd0,0x12,0x27,0x3a,0x77,0xce,0x76,0xb,0x69,0x9f,0x53,0xe6,0x2c,0xaa,0x52,0x14,
0xcd,0xdb,0xc7,0x8d,0x4b,0xaa,0x66,0x6c,0x1b,0xeb,0x33,0x6d,0x9a,0xf4,0xa4,0xb5,
0x91,0x73,0x3f,0xd0,0x72,0x8,0xdb,0xbc,0x77,0xfe,0x83,0x2b,0xaa,0xeb,0x23,0x22,
0x72,0xcc,0xe0,0xfb,0xd3,0xb2,0x4d,0x23,0xae,0x86,0x75,0xf0,0xda,0xb9,0x93,0x12,
0xc8,0x8c,0x80,0x8d,0x1b,0x33,0x3a,0xf1,0x70,0x6c,0xdb,0xb4,0xe9,0x6a,0x35,0x87,
0xfb,0x31,0x1d,0x4f,0x9f,0xd6,0x3b,0xcd,0xbc,0x83,0x19,0x30,0x18,0x3c,0x7,0x5a,
0x7,0xfa,0x97,0xab,0x55,0x4b,0xed,0xc6,0x91,0xf8,0xac,0x65,0x4b,0x1a,0x48,0xf7,
0x31,0xb5,0x75,0x6b,0xc4,0xb3,0x19,0xf7,0xaa,0x57,0xd7,0x3b,0xcb,0x2c,0xbf,0xeb,
0x1d,0x88,0x43,0xed,0x7d,0xfb,0xd4,0x54,0xbc,0x82,0x36,0xbd,0x7a,0xc9,0xbf,0x3b,
0xfb,0x90,0x2,0x62,0x27,0x25,0x87,0x30,0x97,0x1c,0x92,0x2f,0x5f,0xc6,0xa7,0x96,
0x41,0xf9,0x83,0x27,0x4e,0xa4,0x70,0x8c,0x84,0x75,0xc8,0x90,0x1c,0x37,0xf8,0xf8,
0xac,0x6c,0x8f,0xc2,0xe6,0xf3,0x54,0xba,0xb0,0x79,0x33,0x87,0xa3,0x27,0x5,0xef,
0xdc,0xc9,0xc3,0x33,0x82,0xd9,0x6d,0xf7,0x6e,0xd9,0xce,0xfe,0x59,0x3d,0x5c,0xa7,
0xe4,0xf6,0xbe,0x39,0x29,0x20,0xca,0xdf,0x9f,0x1e,0x90,0xa3,0x7a,0xa9,0x5e,0x3d,
0xba,0x40,0x43,0xc8,0xb5,0x51,0x23,0x1c,0xe7,0x9a,0x98,0xdd,0xac,0x19,0x8a,0xa0,
0xf,0x6e,0x17,0x2d,0xaa,0x77,0xb6,0x9a,0x79,0x34,0xbb,0x10,0xdf,0xd0,0x74,0x76,
0x1e,0x3d,0x3a,0xf1,0x86,0x71,0x5b,0xec,0x86,0x39,0x73,0xa4,0xa7,0x61,0x5f,0x52,
0x40,0x74,0x62,0x1b,0x33,0xc1,0xeb,0xb8,0x4b,0xfd,0xbe,0xfe,0x9a,0x2,0xe1,0x8b,
0xff,0xd4,0xa9,0xa3,0x77,0x5e,0xf6,0xc6,0x9b,0xe9,0x53,0x84,0x5c,0xb9,0x82,0xe2,
0xb8,0x86,0x88,0xdd,0xbb,0xc9,0x7,0xf5,0x51,0xec,0xc8,0x11,0xae,0x45,0x5b,0xd4,
0x21,0xc7,0x8f,0x1b,0x5b,0x9b,0x77,0xe1,0x97,0x93,0x27,0x2f,0x8d,0x74,0x3e,0x13,
0x17,0x99,0x98,0xa8,0x77,0xbe,0x1a,0xb6,0x4,0x3,0x44,0xae,0x73,0xd2,0x47,0x95,
0xff,0xde,0xc7,0xc7,0x60,0x20,0x1f,0xe3,0xbd,0x2a,0x55,0xc8,0x41,0x69,0xcb,0x5d,
0x2b,0x57,0xe6,0xd2,0xdc,0x9d,0xa6,0xd4,0xae,0x8d,0x2a,0x78,0xb,0x33,0xeb,0xd6,
0xcd,0xe9,0x63,0x13,0xcf,0x6d,0x2d,0x4d,0xc7,0xe4,0x55,0xab,0xb0,0xce,0xba,0xd4,
0x30,0x72,0xc8,0x10,0x19,0x93,0xd3,0x97,0x14,0x10,0xdd,0x3d,0x5a,0xf9,0xfe,0xa6,
0xa5,0x5b,0x40,0xf5,0x77,0xdf,0xc5,0x62,0xf2,0x52,0x43,0x3f,0xfb,0x2c,0xbb,0x9c,
0x73,0x90,0x6d,0xdc,0xc0,0x3c,0xbc,0x94,0x92,0x82,0x3a,0xa8,0xc4,0xa3,0x63,0x62,
0xb0,0x90,0x26,0x53,0x8f,0xb,0x17,0xf8,0x26,0x1f,0xc0,0xdc,0xb,0x17,0xe8,0x3c,
0x16,0xab,0x1d,0x2e,0x5c,0xa0,0x24,0xa5,0x17,0x7a,0xc4,0xc7,0x5b,0x7f,0x56,0x4b,
0xd3,0xdb,0xd7,0xae,0x39,0xe,0x35,0x9d,0x40,0xbd,0x94,0x94,0xfc,0x77,0xc0,0xca,
0x86,0x94,0x14,0xad,0xa6,0x6b,0xda,0x7a,0x98,0x6c,0x7d,0xf0,0x87,0x93,0x4f,0xd1,
0xa2,0x38,0x62,0xfc,0xc9,0x11,0x45,0x8b,0xaa,0x8a,0x12,0x63,0x2d,0xe1,0xe6,0xc6,
0x8b,0xf8,0x3b,0xc3,0x5c,0x6f,0x6f,0xe5,0x27,0x6e,0xc1,0x23,0xbd,0xbd,0xb9,0xb,
0x79,0x61,0xa0,0x8f,0xf,0xbe,0xe2,0xd1,0xbc,0xc8,0xc7,0x87,0xce,0xe3,0x14,0x75,
0xc,0x8,0xc8,0xae,0x7b,0x41,0xe9,0x85,0xb7,0x91,0x1b,0xf,0x3b,0x7e,0x5c,0xf1,
0x45,0xa,0x87,0xc,0x1e,0x7c,0x85,0x4c,0x14,0x47,0xdb,0xb7,0xeb,0x9d,0x97,0x78,
0x48,0xa,0x48,0x36,0x53,0xa2,0x29,0x73,0x95,0x69,0x2e,0x2e,0x4a,0x47,0x4b,0x9,
0xcb,0xd1,0x91,0x23,0xe9,0x13,0xac,0xe1,0xde,0x43,0x87,0x66,0xfb,0x15,0xf0,0x39,
0x85,0x6d,0x61,0x65,0x13,0x3a,0x1,0xcf,0xbb,0x77,0xe9,0x6,0xa2,0xd1,0x39,0x2d,
0x2d,0xf3,0xcf,0x37,0x72,0x24,0x36,0xde,0xbc,0x69,0xfb,0x91,0x23,0xa9,0x8,0xf7,
0x36,0x18,0x68,0x25,0xda,0xd3,0xe5,0x82,0x5,0x33,0x5f,0x17,0xc3,0x5e,0xec,0xed,
0xe2,0x82,0xa5,0x68,0x85,0x94,0x2,0x5,0xe4,0xef,0x27,0x8b,0x34,0xc1,0x27,0x3c,
0xf6,0xcf,0x3f,0xd5,0x31,0xf4,0x89,0x32,0x7f,0xdc,0xb8,0xe4,0xa,0xc6,0xf4,0xe8,
0xed,0xb,0x17,0x3e,0x7c,0x34,0x95,0x91,0xa1,0x77,0x7a,0xe2,0xbf,0x49,0x1,0xc9,
0xe6,0xdc,0xde,0x67,0xb5,0xdc,0xcc,0xe2,0xc5,0x95,0x74,0x4b,0x17,0x53,0xcc,0xd0,
0xa1,0x88,0xc2,0x10,0xbc,0x12,0x16,0x6,0x57,0x54,0xc3,0xd4,0x7c,0xf9,0xf4,0xce,
0x4f,0x88,0x17,0x61,0x5b,0x9f,0x81,0xa2,0x1c,0x8a,0x7b,0xb3,0x66,0xa5,0xbf,0xe1,
0xc0,0x96,0x59,0x5f,0x7c,0x71,0x63,0x13,0x29,0x67,0xc3,0xee,0xdc,0xd1,0x3b,0x3f,
0xf1,0xbf,0x49,0x1,0xc9,0x61,0x3c,0x7,0xde,0x3f,0x53,0x6e,0x66,0xc9,0x92,0x5c,
0xd0,0x18,0x67,0xcc,0x37,0x7c,0x38,0x87,0xa1,0x14,0xc5,0xf5,0xee,0x4d,0x2f,0x23,
0x0,0x1b,0x9c,0x9c,0xf4,0xce,0x4f,0x88,0xff,0xa9,0x3e,0xb6,0xe3,0xfa,0xbd,0x7b,
0x30,0x62,0x31,0x3a,0xce,0x9e,0x6d,0xfa,0xde,0xf4,0x83,0xc3,0x9c,0xcf,0x3e,0x93,
0x13,0x38,0x73,0x26,0x29,0x20,0x39,0x9c,0xed,0xc8,0x4f,0x63,0x94,0x19,0xdc,0xa9,
0x4f,0x1f,0x1c,0xa7,0xc5,0x7c,0x31,0x2c,0x8c,0xde,0x40,0x57,0x7a,0xa3,0x70,0x61,
0xbd,0xf3,0x13,0x79,0xdc,0xfb,0x98,0xc0,0x51,0x57,0xaf,0xf2,0x14,0xfe,0x98,0x2a,
0xcd,0x9b,0x67,0xf8,0xc0,0x1,0xb4,0x62,0xe6,0x4c,0x39,0x18,0x2d,0x77,0x90,0x2,
0x92,0xcb,0x14,0x5d,0xc7,0xaa,0x6f,0x48,0x81,0x2,0xe,0xab,0xac,0x3d,0x15,0x9f,
0x90,0x10,0x3a,0x8c,0x97,0xf8,0x83,0xf,0x3e,0xc0,0x4d,0x9e,0x4a,0x35,0xbd,0xbc,
0xf4,0xce,0x4f,0xe4,0x6e,0x3c,0x9e,0xca,0xa1,0xe5,0xc9,0x93,0x98,0xc0,0x67,0x79,
0xe3,0xd7,0x5f,0x3b,0x24,0x9a,0x4c,0xf,0x62,0xbe,0xfd,0x36,0x9e,0x88,0xe2,0xe9,
0x6f,0x63,0x4d,0x22,0x57,0x90,0x2,0x92,0xeb,0x3d,0xda,0xb3,0xeb,0xdd,0x8c,0xfa,
0xfe,0x7d,0x5f,0x7f,0x9d,0x3,0x39,0x90,0x3,0x7b,0xf7,0xa6,0x6b,0xdc,0x1f,0x65,
0xdf,0x7c,0x33,0xd7,0xaf,0x43,0x11,0x9a,0xb0,0x6d,0xca,0x89,0x83,0xf4,0x3d,0x7,
0xff,0xf4,0x13,0xed,0xa0,0x1d,0xb4,0x63,0xfe,0xfc,0xc4,0x1f,0xc,0xbb,0x63,0xe6,
0xfe,0xf6,0x9b,0x1c,0xbc,0x94,0x37,0x48,0x1,0xc9,0xa3,0x32,0xc7,0x52,0xac,0xa6,
0x62,0xc6,0x42,0x21,0x21,0x28,0x89,0x61,0x14,0xdf,0xbd,0x3b,0x66,0xf3,0x3c,0xfc,
0xe0,0xe3,0xa3,0x77,0x7e,0x22,0x9b,0x51,0x29,0x3f,0xe2,0x8e,0x1e,0x85,0x19,0xf5,
0xb8,0x65,0x64,0xa4,0x29,0xc5,0xb8,0xcd,0xf1,0xe7,0xa5,0x4b,0x65,0xec,0x22,0x6f,
0x93,0x2,0x22,0xfe,0x4b,0x89,0x63,0x66,0x67,0xff,0x95,0x15,0x2b,0x2a,0x55,0x39,
0x15,0x1d,0x3a,0x75,0xc2,0x7c,0xe5,0x6d,0xde,0xd2,0xb5,0x6b,0xae,0xdb,0x82,0x45,
0xfc,0xff,0x82,0xa8,0x36,0xaf,0x8f,0x8e,0xe6,0x19,0xea,0x51,0x2a,0xbb,0x62,0x5,
0xe6,0x23,0x22,0x23,0x74,0xd9,0xb2,0xa4,0x50,0xc7,0x3e,0x67,0xe6,0xc7,0xc6,0xea,
0x9d,0x9e,0xc8,0x5e,0xa4,0x80,0x88,0x27,0x78,0xb8,0xd0,0xd1,0xe3,0x23,0xeb,0x1c,
0xdf,0x5f,0xea,0xd4,0x41,0x61,0xfe,0x45,0x51,0xdb,0xb4,0xe1,0xd6,0xb4,0x9b,0x13,
0x5b,0xb6,0xa4,0xae,0x9c,0x40,0x1b,0xaa,0x54,0xc9,0xf1,0x9b,0x45,0xe6,0x15,0xfd,
0x70,0x8d,0xbf,0xb5,0x5a,0xf1,0x1b,0xe2,0x90,0xb4,0x7f,0x3f,0xa7,0x50,0x41,0x6a,
0xba,0x69,0x13,0xd7,0x50,0x3d,0x68,0xfd,0xda,0xb5,0xc9,0x8b,0x1d,0x3d,0xa2,0x83,
0xa2,0xa3,0xf5,0x4e,0x53,0xe4,0xc,0xf2,0x1f,0x5e,0xbc,0x90,0x52,0x53,0xef,0x57,
0xf0,0xd,0xf1,0xf0,0xc8,0x98,0x63,0x5c,0xac,0xf4,0x6d,0xd1,0x82,0x97,0xd0,0x6a,
0xf6,0x6c,0xde,0x1c,0x71,0x6c,0xa1,0x16,0xd,0x1a,0xd0,0x44,0x84,0xc3,0xe2,0xee,
0xae,0x77,0x9e,0x79,0xd,0x2f,0xa2,0xb7,0x79,0xfb,0xd9,0xb3,0xd4,0xd,0xfb,0x71,
0x66,0xe7,0x4e,0xea,0xac,0x1e,0x52,0x92,0x36,0x6d,0x32,0xce,0x74,0x70,0x37,0x75,
0xda,0xba,0x55,0x1e,0x3d,0x89,0xac,0x20,0x5,0x44,0x68,0xca,0x75,0x4e,0xda,0xc8,
0xf2,0xdf,0x97,0x29,0xa3,0x54,0x53,0x1c,0x8c,0xdf,0xd7,0xab,0x47,0x63,0x31,0x8c,
0x7d,0xea,0xd5,0xc3,0x6c,0xf2,0x41,0xf5,0x57,0x5f,0xc5,0xe,0x3e,0x82,0xb7,0x3,
0x2,0x72,0xcc,0x11,0xa8,0x7a,0x33,0xe1,0x20,0xcf,0xbd,0x7f,0x9f,0x17,0xa0,0x18,
0xf5,0x3b,0x71,0x2,0x93,0xf1,0x1b,0x5a,0xef,0xdb,0xc7,0x5b,0x39,0x80,0x4b,0xef,
0xde,0x9d,0xd1,0xd5,0x21,0x50,0x29,0xbe,0x77,0xaf,0x6c,0xaf,0x2f,0xec,0x41,0xa,
0x88,0xd0,0x55,0x8d,0xea,0xac,0xd6,0xa8,0x6e,0x32,0x25,0x2f,0xb1,0xc,0xbe,0xbb,
0xd3,0xdf,0x5f,0xdd,0x8b,0x8b,0x74,0xbe,0x52,0x25,0xda,0x1,0x17,0x65,0x6e,0x95,
0x2a,0x3c,0x95,0x3a,0xa1,0x75,0x40,0x0,0xad,0xc2,0x18,0xbc,0x53,0xa6,0xc,0xa2,
0x78,0xe,0x9f,0xf5,0xf6,0xc6,0x45,0xd4,0xa5,0x40,0x17,0x17,0xbd,0xf3,0x7f,0x51,
0xbc,0x11,0x4b,0x79,0xe3,0xcd,0x9b,0xd4,0x97,0x42,0x28,0xe8,0xc2,0x5,0xae,0x8b,
0x89,0x5c,0xfb,0xfc,0x79,0x84,0xab,0xe3,0xe8,0xeb,0xd3,0xa7,0x79,0x15,0x4e,0xb1,
0xfb,0xc9,0x93,0x6,0xa0,0x21,0xf5,0x3f,0x71,0xe2,0x4a,0x47,0x87,0xeb,0x31,0x63,
0xcf,0x9d,0x93,0x5d,0x67,0x45,0x76,0x20,0x5,0x44,0xe4,0x48,0x25,0x9a,0xb2,0x5a,
0x65,0x9a,0xab,0xab,0xa9,0x92,0xb5,0xb1,0xb5,0xb4,0xb7,0xb7,0xf5,0x33,0x75,0xbc,
0x7a,0xad,0x64,0x49,0x83,0x87,0xf2,0x16,0x35,0x76,0x75,0x85,0x5,0xbb,0xb0,0xbf,
0x68,0x51,0x3e,0xc4,0x7,0x11,0x5e,0xac,0x18,0xc,0xb4,0x4,0x57,0x8b,0x16,0xe5,
0x78,0x36,0xa1,0x67,0xe1,0xc2,0xd4,0x4,0x81,0x98,0xf7,0xb7,0x95,0xfb,0x1f,0x22,
0xc,0xe1,0x85,0xa,0xe1,0x2,0x1c,0x71,0xe8,0xdf,0x63,0x39,0x1c,0x88,0x44,0xe,
0xb7,0x5a,0xa9,0x2f,0xbe,0xa7,0x92,0x77,0xef,0x66,0xfe,0x41,0x25,0x2a,0xc9,0xcb,
0x53,0x53,0xf9,0x6b,0x4c,0xa5,0x32,0x37,0x6f,0x22,0x86,0xdf,0xa6,0xea,0x29,0x29,
0x78,0x85,0xaa,0xaa,0xc7,0xaf,0x5d,0x83,0xb,0x97,0xa1,0x9,0xd7,0xaf,0xa3,0x30,
0xaf,0xa5,0x1d,0xd7,0xaf,0xd3,0x36,0xaa,0x80,0xcf,0xe3,0xe3,0x4d,0x9d,0x4c,0x41,
0xa6,0x4e,0x17,0x2f,0xca,0xa3,0x24,0x91,0x93,0xfd,0x1f,0x24,0x37,0x3,0xae,0xbb,
0x17,0x67,0xc2,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,
0x63,0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,
0x34,0x54,0x32,0x33,0x3a,0x31,0x36,0x3a,0x34,0x32,0x2b,0x30,0x38,0x3a,0x30,0x30,
0x16,0x32,0x2a,0x4b,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,
0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,
0x31,0x34,0x54,0x32,0x33,0x3a,0x31,0x36,0x3a,0x34,0x32,0x2b,0x30,0x38,0x3a,0x30,
0x30,0x67,0x6f,0x92,0xf7,0x0,0x0,0x0,0x50,0x74,0x45,0x58,0x74,0x73,0x76,0x67,
0x3a,0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,
0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,
0x6e,0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,
0x6d,0x68,0x7a,0x70,0x39,0x32,0x70,0x38,0x79,0x6b,0x2f,0x7a,0x68,0x65,0x6e,0x67,
0x7a,0x61,0x69,0x62,0x6f,0x66,0x61,0x6e,0x67,0x2e,0x73,0x76,0x67,0x7f,0xc8,0x4a,
0x86,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/undoneline.png
0x0,0x0,0x1,0xe8,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc,0x10,0x6,0x0,0x0,0x0,0x77,0xb1,0x2e,0x7f,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x0,0x86,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xd5,0xa1,0xd,0xc2,0x0,
0x14,0x45,0xd1,0x57,0x82,0x68,0x1d,0x5b,0xa0,0xd0,0x18,0x86,0xc0,0x30,0x0,0x9a,
0x79,0x50,0x8,0x82,0x66,0x4,0x74,0x93,0x8e,0x83,0x6a,0xeb,0x60,0x3,0xc4,0x37,
0x40,0x72,0xce,0x4,0xd7,0xdd,0x66,0xbb,0x1e,0x6f,0x8f,0xfd,0x38,0x66,0x95,0x43,
0x4e,0x5d,0x17,0x0,0xf8,0xe4,0x99,0x7b,0xce,0xd3,0xb4,0xf8,0x76,0x7,0x0,0xff,
0xc9,0x40,0x0,0x28,0x31,0x10,0x0,0x4a,0xc,0x4,0x80,0x12,0x3,0x1,0xa0,0xc4,
0x40,0x0,0x28,0x31,0x10,0x0,0x4a,0xc,0x4,0x80,0x12,0x3,0x1,0xa0,0xc4,0x40,
0x0,0x28,0x59,0xbe,0x2e,0x19,0xb2,0xeb,0xfb,0xe6,0x98,0x4d,0xd2,0xb6,0xdf,0xe,
0x2,0xe0,0xb7,0xbd,0xae,0x19,0xb2,0x9b,0xe7,0x37,0xa7,0xef,0x13,0x5f,0xc9,0x80,
0x62,0xf5,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,
0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,
0x54,0x32,0x33,0x3a,0x33,0x37,0x3a,0x33,0x34,0x2b,0x30,0x38,0x3a,0x30,0x30,0xc8,
0x89,0xc4,0x97,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,
0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,
0x34,0x54,0x32,0x33,0x3a,0x33,0x37,0x3a,0x33,0x34,0x2b,0x30,0x38,0x3a,0x30,0x30,
0xb9,0xd4,0x7c,0x2b,0x0,0x0,0x0,0x4b,0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,
0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,
0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,0x6e,
0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,0x6c,
0x72,0x6e,0x32,0x64,0x76,0x61,0x66,0x38,0x64,0x6b,0x2f,0x68,0x65,0x6e,0x67,0x78,
0x69,0x61,0x6e,0x2e,0x73,0x76,0x67,0x8a,0xf1,0x34,0xb1,0x0,0x0,0x0,0x0,0x49,
0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/prepared.png
0x0,0x0,0x3b,0x38,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x10,0x6,0x0,0x0,0x0,0xfd,0xc8,0x72,0xdd,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x39,0xd6,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x67,0x78,0x15,0xd5,
0xd6,0x7,0xf0,0xff,0x9a,0x93,0x84,0x80,0xb4,0x14,0x9a,0x2,0x29,0x84,0x22,0x42,
0x14,0x45,0x69,0xa1,0x77,0x94,0x26,0x26,0x54,0x95,0x66,0x44,0xa9,0x1,0x81,0x14,
0x20,0x86,0x92,0x4,0x90,0x16,0x4,0xe9,0x48,0x15,0x88,0x20,0x88,0x10,0x9a,0x68,
0xe8,0x88,0x20,0x82,0x22,0x9,0xa9,0x14,0x69,0x29,0x40,0x10,0x48,0x39,0xb3,0xde,
0xf,0xe4,0x70,0x9f,0x57,0x2e,0x97,0x36,0x73,0x26,0x65,0xfd,0xbe,0x99,0x73,0xb2,
0xf7,0xda,0x9b,0xc7,0x59,0xd9,0x33,0xb3,0xd7,0x6,0x84,0x10,0x42,0x8,0x21,0x84,
0x10,0xc2,0x5a,0xc8,0xe8,0x0,0x84,0xb0,0x6,0x8f,0x8,0x8f,0x88,0xa1,0xdb,0x8b,
0x14,0x49,0x77,0xc9,0xbc,0x5b,0x74,0x84,0x93,0x93,0xe9,0x92,0x7d,0x45,0xe5,0x5d,
0x7b,0x7b,0xf5,0xa2,0x5a,0x47,0x19,0x54,0xba,0x34,0x16,0xa1,0xa3,0xba,0x80,0x48,
0x3d,0xaf,0x16,0x37,0x1d,0x35,0x99,0x10,0x87,0xef,0x29,0xab,0x64,0xc9,0xff,0x34,
0x80,0x4e,0x6c,0x77,0xeb,0x96,0x52,0x59,0xb9,0x6d,0xae,0x67,0x36,0xc3,0x17,0x5b,
0x95,0x41,0xcc,0x4a,0x45,0xe5,0x37,0x75,0xc1,0x8d,0x1b,0xe6,0x97,0xee,0x5d,0x54,
0x37,0xdd,0xbb,0xe7,0x90,0x5c,0xa4,0xe8,0xdd,0xd9,0xa9,0xa9,0x71,0xc3,0xe2,0x86,
0xcd,0xed,0x90,0x99,0x69,0xf4,0xb8,0x85,0xd0,0x93,0x24,0x10,0x91,0xa7,0x55,0xf4,
0xab,0xe8,0xe7,0x77,0xa8,0x68,0xd1,0xdb,0x7f,0xdb,0x34,0xb6,0x2b,0x51,0xad,0x9a,
0xe9,0x45,0xd3,0x5d,0x9b,0x2e,0xae,0xae,0xac,0x70,0x6,0x97,0x77,0x75,0xa5,0x97,
0xd8,0x13,0xc3,0xdd,0xdc,0xb8,0x29,0xdd,0x40,0x6b,0x37,0x37,0x7a,0x13,0x21,0x50,
0x2b,0x54,0xc0,0x60,0x38,0xa2,0x77,0xd9,0xb2,0x3c,0x95,0x87,0x22,0xc5,0xc9,0x89,
0x2a,0xd1,0x10,0xb4,0x29,0x5e,0xdc,0x5a,0x71,0xf3,0x5,0xfe,0x12,0xbb,0x6e,0xdf,
0xa6,0x19,0xb4,0xb,0x2b,0x52,0x52,0x10,0x8c,0xc3,0x28,0x7f,0xfd,0x3a,0x1f,0x43,
0x30,0x94,0xcb,0x97,0x29,0x9a,0x4b,0x63,0x77,0x62,0x22,0x5f,0xa2,0x53,0x98,0x93,
0x98,0x48,0x2a,0x95,0xa0,0x2b,0x49,0x49,0xe6,0xe6,0xea,0x4f,0xfc,0x76,0x62,0x62,
0xa9,0x8e,0xea,0x62,0xdb,0x39,0xb1,0xb1,0xc9,0x94,0x4c,0x21,0x74,0xef,0x9e,0xd1,
0xff,0xe,0x42,0xfc,0x37,0x92,0x40,0x84,0x21,0xca,0xb5,0x76,0xbf,0x12,0xcc,0x65,
0xcb,0xe6,0xc,0x51,0xaf,0x66,0x8d,0xa8,0x5f,0x9f,0x2f,0x98,0xda,0xe2,0x3,0x4f,
0x4f,0x62,0x9e,0x86,0x5a,0x9e,0x9e,0x3c,0x0,0x7b,0xa8,0x82,0xa7,0x27,0x75,0x47,
0x2d,0xc4,0x78,0x78,0xe0,0x10,0x16,0x60,0x96,0xc9,0x64,0x74,0xdc,0x56,0xd3,0x10,
0x83,0xe0,0x67,0x36,0xe3,0x67,0x98,0xb1,0xe3,0xdc,0x39,0xac,0x46,0x67,0x94,0x3a,
0x75,0x8a,0x8b,0xf1,0x18,0x54,0x38,0x75,0x8a,0xea,0x21,0x83,0xea,0x9d,0x3a,0x65,
0x3b,0xdc,0xd4,0x4d,0xbd,0x74,0xe4,0xc8,0x95,0xe5,0x71,0xc3,0xc2,0x2a,0x5c,0xbf,
0x6e,0x74,0xd8,0xa2,0x70,0x91,0x4,0x22,0x74,0xe1,0xb4,0xc5,0xf5,0xf7,0x71,0x51,
0xd5,0xab,0xab,0xd,0x69,0x8c,0xfa,0x72,0xe3,0xc6,0x4a,0x3b,0xbc,0x4b,0xef,0x7a,
0x79,0xf1,0x46,0x5a,0xca,0x13,0x1a,0x34,0xa0,0x37,0x90,0x82,0x5f,0xaa,0x55,0x33,
0x3a,0xce,0x82,0x82,0x2f,0xc0,0xb,0xb,0x62,0x62,0xa8,0xf,0xfb,0xa1,0xc3,0xe1,
0xc3,0x7c,0x18,0x27,0xb8,0xd6,0x81,0x3,0x4a,0x45,0x38,0x62,0xd7,0xfe,0xfd,0x29,
0xc7,0x12,0xbb,0x86,0xed,0x8d,0x8d,0x35,0x3a,0x4e,0x51,0xb0,0x48,0x2,0x11,0xcf,
0xa4,0xc2,0xc2,0xa,0xb,0x83,0xb9,0x58,0xb1,0xcc,0x6,0xf6,0xed,0xcc,0x5e,0xd,
0x1b,0x2,0x80,0x5a,0xb9,0x55,0x2b,0xea,0x4a,0xbf,0x21,0xb2,0x53,0x27,0xdc,0xc0,
0x48,0x8c,0x79,0xf9,0x65,0xa3,0xe3,0x14,0xb9,0xc2,0x30,0x6,0xd1,0x89,0x89,0x7c,
0x9c,0x13,0x70,0x75,0xf7,0x6e,0x6c,0xc0,0x6,0xf2,0xd9,0xb3,0x7,0xf5,0x4d,0x23,
0x6d,0xa6,0xec,0xdc,0x99,0x16,0x15,0x37,0x2c,0x84,0x6e,0xdd,0x32,0x3a,0x4c,0x91,
0xbf,0x48,0x2,0x11,0xff,0x93,0x63,0x7b,0x8f,0x88,0x60,0x2e,0x59,0x92,0xb2,0xcd,
0x63,0xb2,0x2a,0x77,0xee,0xcc,0xdd,0xa8,0x3,0x25,0xfb,0xf8,0xc0,0x8c,0xbd,0x38,
0xdb,0xba,0x35,0x5,0xc3,0x11,0xab,0x8b,0x14,0x31,0x3a,0x4e,0xf1,0x6c,0x38,0x4,
0x69,0xe8,0x93,0x99,0x89,0xca,0xf8,0xc,0x83,0x76,0xed,0xa2,0x23,0x9c,0x84,0xd7,
0x36,0x6c,0xe0,0xdf,0x4c,0x9e,0xb6,0x73,0xbe,0xff,0x5e,0x12,0x8b,0xf8,0x5f,0x24,
0x81,0x8,0x0,0xff,0x79,0x4b,0x29,0xb5,0xc,0xff,0x58,0x32,0xb1,0x4b,0x17,0x6a,
0xae,0x56,0xe5,0x85,0x3d,0x7b,0xe2,0x27,0xfa,0x9,0x95,0xdb,0xb6,0xa5,0x21,0x48,
0x87,0xa7,0xbd,0xbd,0xd1,0x71,0xa,0xeb,0xe0,0x2f,0xe1,0x80,0x53,0xf7,0xee,0x51,
0x0,0xaf,0xc2,0xc9,0xa8,0x28,0x75,0xf,0x5f,0x41,0xfa,0xba,0x75,0x4e,0xdb,0x6d,
0xfe,0xc8,0x88,0xdc,0xb2,0x45,0xde,0x32,0x13,0x80,0x24,0x90,0x42,0xcb,0xf2,0x8c,
0x82,0xdd,0xa8,0xb4,0xba,0xb2,0x5f,0x3f,0x1c,0x86,0x3d,0x3c,0xfb,0xf7,0xa7,0x40,
0x6a,0x80,0x8c,0x32,0x65,0x8c,0x8e,0x4f,0xe4,0x51,0x75,0xe1,0x81,0x15,0x37,0x6e,
0xb0,0x2b,0xbf,0x86,0xa2,0x1b,0x36,0xa8,0x6f,0x23,0xd,0x1d,0xe6,0xcd,0xbb,0xd1,
0x29,0x71,0x49,0x68,0xc4,0xa9,0x53,0x46,0x87,0x27,0xac,0x4b,0x12,0x48,0x21,0xe0,
0xed,0x6d,0x32,0x39,0x3a,0xb8,0xb9,0x56,0xab,0xfa,0xee,0xbb,0xf4,0x35,0x29,0xbc,
0x74,0xd8,0x30,0xf4,0x7,0x30,0xc0,0xcb,0xcb,0xe8,0xd8,0x44,0xc1,0xc0,0xbe,0xa8,
0x8d,0x26,0xfb,0xf7,0x63,0x1,0xff,0x4e,0xfb,0xe6,0xce,0x4d,0x4b,0x4f,0x4c,0x8a,
0x3d,0xb7,0x69,0x13,0x0,0x44,0x46,0x9a,0xcd,0x46,0xc7,0x27,0xf4,0x21,0x9,0xa4,
0x80,0x29,0xe3,0x5d,0x73,0x43,0x30,0x17,0x2f,0xce,0x3f,0x65,0x6,0x64,0x67,0xf7,
0xea,0xa5,0x9e,0xe7,0x46,0x28,0x3f,0x72,0x24,0x55,0xc2,0x1,0xc,0xaa,0x5e,0xdd,
0xe8,0xf8,0x44,0x21,0x91,0xfb,0xd0,0x1e,0xfb,0x70,0x1a,0x3,0x16,0x2e,0x54,0x7f,
0xc0,0x76,0xf3,0xd9,0x5,0xb,0xd2,0x6f,0x24,0x24,0x4e,0x9d,0x76,0xf3,0xa6,0xd1,
0xe1,0x9,0x6d,0x48,0x2,0xc9,0xe7,0x4a,0xb1,0xb,0x7,0x73,0xe9,0xd2,0x36,0xdf,
0x2b,0x81,0xd9,0xe5,0x47,0x8e,0x44,0x24,0xdd,0x42,0xd8,0x90,0x21,0x88,0x42,0x14,
0xe2,0x1c,0x1c,0x8c,0x8e,0x4f,0x8,0x0,0xc0,0x7,0x18,0x86,0x2f,0xd3,0xd2,0x30,
0x93,0x87,0xf3,0xcd,0xb9,0x73,0x55,0x7,0x72,0x57,0xc7,0xce,0x9a,0x25,0x9,0x25,
0x7f,0x93,0x4,0x92,0xcf,0x58,0x56,0x18,0x6a,0x91,0x7b,0xd1,0xd9,0xcb,0x7,0xf,
0xbe,0xff,0xd3,0xb1,0x63,0x25,0x61,0x88,0x7c,0xe5,0x2e,0x47,0xa1,0x51,0x46,0x6,
0x1f,0x81,0x3d,0x56,0xcf,0x9f,0xcf,0x4d,0xa8,0x99,0xb9,0x52,0x58,0x98,0x24,0x94,
0xfc,0x45,0x12,0x48,0x9e,0x57,0x73,0x43,0x30,0xdb,0xd9,0x39,0xdb,0xdf,0xdd,0x95,
0x3d,0x7c,0xe8,0x50,0x9e,0x8b,0x7e,0x98,0xeb,0xef,0xf,0x7f,0x7a,0x1f,0x1,0xce,
0xce,0x46,0x47,0x67,0x94,0x7,0x6f,0x9,0x8d,0xc3,0x78,0xec,0x48,0x4c,0xc4,0x4c,
0x76,0x40,0xef,0xa4,0x24,0x76,0xa6,0x7e,0x8,0x49,0x4a,0xc2,0x1d,0xae,0x89,0xeb,
0x97,0x2e,0x51,0x75,0xa,0x66,0x73,0x4a,0xa,0x2f,0x67,0x77,0xe5,0xab,0x94,0x14,
0x9a,0xa0,0x38,0xe2,0xeb,0xd4,0x54,0x73,0xf,0xf3,0x77,0x39,0x7f,0xa4,0xa7,0xdb,
0x35,0xb5,0xbd,0x4b,0x6b,0x32,0x32,0x2c,0xed,0xaa,0x17,0x33,0x9d,0x94,0x41,0x77,
0xef,0x66,0xcf,0x83,0xaf,0xba,0xe0,0x3f,0x25,0x44,0x6c,0x7,0x63,0x91,0x32,0xc8,
0xde,0x5e,0xa9,0x58,0x24,0x55,0x5d,0x50,0xb4,0xa8,0xe5,0xe7,0x59,0xd1,0xd9,0x45,
0xb9,0x77,0x89,0x12,0xa6,0x75,0xa6,0xae,0x36,0xb5,0x1c,0x1c,0x78,0xa2,0x9a,0x86,
0xbe,0x4e,0x4e,0xf4,0x1a,0x4d,0xc5,0xf,0x65,0xca,0x70,0x31,0x3e,0xc3,0x3b,0x9c,
0x9c,0x70,0x1d,0x4b,0xd0,0xba,0x62,0x45,0x4a,0xc7,0x6,0x2a,0xe6,0xea,0xa,0x7f,
0xfa,0x87,0xa7,0xba,0xba,0xf2,0x22,0x7c,0x8b,0xf5,0xae,0xae,0x85,0xfd,0x2d,0x37,
0xe,0xe5,0xc3,0x28,0x71,0xfd,0x3a,0x36,0x53,0x5f,0xfa,0x3b,0x34,0x34,0x2d,0xca,
0xe1,0xea,0xf5,0x7b,0xf3,0xe6,0x1,0xc7,0x4f,0x2c,0x5a,0x9c,0x9d,0x6d,0x74,0x7c,
0xe2,0xbf,0x93,0x4,0x92,0x47,0x39,0x6d,0x71,0xfd,0x3d,0x60,0x78,0xa7,0x4e,0x5c,
0x5e,0xf1,0xa2,0x2d,0x5f,0x7c,0x41,0x1d,0x50,0x6,0xbd,0xaa,0x56,0x35,0x3a,0x2e,
0xfd,0x6,0xc,0x77,0x4,0x31,0xf3,0x49,0xbc,0x88,0x4a,0xb1,0xb1,0x14,0xc3,0xd5,
0xf9,0xcf,0x93,0x27,0xd1,0x8,0xef,0xd1,0x89,0xdf,0x7f,0xa7,0x11,0xd4,0x1e,0xaf,
0x9c,0x3a,0x65,0x9e,0xf,0x36,0xcf,0x3f,0x7d,0xfa,0xfe,0x5f,0xaa,0xe7,0xcf,0x1b,
0x1d,0xb6,0x56,0x4a,0x4f,0x76,0xb3,0xf,0x4a,0x70,0x71,0xb1,0xd9,0x82,0x6f,0xd4,
0x81,0xb5,0x6b,0xf3,0x9f,0xa8,0x49,0xa3,0x6a,0xd7,0xc6,0x41,0x7c,0xcb,0xaf,0xbf,
0xfa,0x2a,0x57,0xa7,0x18,0x7a,0xe5,0xb5,0xd7,0xa,0xcb,0xb3,0x2c,0xcb,0xce,0x7a,
0x65,0x32,0xe,0xe0,0xc4,0xa8,0x51,0x29,0xa1,0x9,0x9,0xa1,0xae,0xdb,0xb6,0x19,
0x1d,0x97,0xf8,0xff,0x24,0x81,0xe4,0x11,0xe,0x71,0x55,0x76,0x8c,0xb7,0x7d,0xe5,
0x15,0x65,0x10,0x6f,0x36,0x7,0xcc,0x9a,0x85,0xdf,0xb0,0xb,0x39,0xad,0x5b,0x1b,
0x1d,0x97,0x66,0x3a,0x72,0x28,0xae,0xe6,0xe4,0xa0,0x1e,0x3a,0x62,0xc0,0xd1,0xa3,
0xdc,0x8,0x29,0x98,0x7b,0xe0,0x0,0xb9,0xe2,0x3,0x5a,0x7f,0xf0,0x60,0x66,0xac,
0x6d,0x75,0x1b,0xf3,0xe1,0xc3,0xb7,0xeb,0xc6,0x2e,0xa,0xa1,0x94,0x14,0xa3,0xc3,
0xcd,0xab,0x8a,0xff,0x5a,0xcd,0x37,0x98,0x9d,0x9d,0x8b,0x5c,0xca,0x1a,0x9c,0x35,
0xa2,0x61,0x43,0x56,0xe9,0x77,0xe5,0x62,0xa3,0x46,0x74,0x2,0xd5,0xf9,0xb4,0x97,
0x17,0x4e,0x52,0x34,0xe,0xd6,0xab,0x57,0xe0,0x6a,0x87,0x7d,0x8c,0xb5,0xb8,0xbd,
0x73,0x27,0x76,0x9a,0xeb,0xf1,0x2b,0x23,0x46,0xa4,0x1e,0x4f,0xa6,0xb0,0x8f,0xcf,
0x9e,0x35,0x3a,0xac,0xc2,0x4e,0x12,0x88,0x41,0xfe,0x53,0x5e,0xdc,0x7c,0xb9,0x44,
0xbf,0xa0,0x20,0xec,0x47,0x57,0x1c,0xf5,0xf7,0xc7,0x72,0xea,0x81,0x45,0xb6,0xb6,
0x46,0xc7,0xf7,0xcc,0xd2,0x30,0x5,0xe3,0xff,0xfe,0x1b,0xb3,0x31,0x1f,0xdd,0x76,
0xec,0xe0,0x1d,0xdc,0x8e,0x97,0x46,0x45,0x99,0xb7,0xab,0x81,0x76,0xe5,0xf7,0xec,
0xb9,0x49,0xc9,0x14,0x42,0x37,0x6e,0x18,0x1d,0x66,0x41,0x55,0xaa,0x54,0xe5,0xca,
0xfe,0xfe,0xe,0xe,0xca,0x71,0xe5,0x6b,0x65,0x6e,0xeb,0xd6,0xca,0x3c,0xa5,0x1d,
0x95,0x6f,0xd7,0x8e,0x3,0x11,0xc8,0x6f,0xb7,0x6b,0x47,0x35,0xb0,0x12,0xc5,0x2b,
0x54,0x30,0x3a,0xce,0x67,0x36,0x9a,0x8f,0x21,0x3e,0x2b,0x8b,0x97,0x50,0x77,0x2c,
0xb,0xd,0x4d,0x8b,0xb3,0xf7,0xb5,0x2d,0x16,0x16,0x6,0x9c,0xf1,0x9,0xa1,0xac,
0x2c,0xa3,0xc3,0x2b,0x6c,0x24,0x81,0x58,0x99,0xc3,0x37,0x55,0x3a,0x7,0xcd,0x6b,
0xd8,0x50,0x99,0xab,0x76,0x67,0x5a,0xbc,0x18,0x31,0x34,0xe,0x17,0x6b,0xd6,0x34,
0x3a,0xae,0xa7,0x16,0xce,0xab,0x10,0x96,0x92,0xc2,0xbd,0x49,0xa5,0x66,0x51,0x51,
0x88,0xe3,0xca,0x94,0xb5,0x72,0x65,0x9a,0x67,0xa2,0x8b,0xe9,0xc0,0xde,0xbd,0x0,
0x10,0x42,0xaa,0x6a,0x74,0x98,0xe2,0x3f,0x82,0x59,0x51,0x1c,0x4a,0xbb,0xbb,0xe5,
0xec,0x69,0xd8,0x50,0xe9,0xcd,0x9f,0xaa,0x65,0xbd,0xbd,0x31,0x9f,0x2a,0x52,0xb5,
0xf7,0xde,0x83,0x23,0x82,0x30,0xe9,0xc5,0x17,0x8d,0x8e,0xf1,0x69,0xf1,0x76,0x5c,
0xc7,0xda,0x73,0xe7,0xe8,0x2d,0xba,0x45,0x89,0xbe,0xbe,0xa9,0x14,0x4f,0x53,0xe8,
0xe7,0x9f,0x8d,0x8e,0xab,0xb0,0x90,0x4,0xa2,0x33,0xcb,0x79,0x16,0x77,0xb3,0x6c,
0x5f,0xb4,0x7f,0x21,0x3c,0x1c,0x27,0x28,0x8e,0x96,0xe,0x19,0x82,0x58,0xec,0x46,
0x71,0x45,0x31,0x3a,0xbe,0xc7,0xb1,0x3c,0xac,0x46,0x1d,0xf4,0x42,0xdd,0x6f,0xbf,
0xa5,0xea,0x34,0x92,0x82,0x97,0x2e,0x4d,0xa5,0x78,0xb2,0xc1,0xbe,0x7d,0x80,0x24,
0x8a,0xfc,0x2e,0x98,0x15,0xc5,0x69,0xa0,0xfb,0x15,0xb3,0x4b,0xb3,0x66,0xdc,0x1d,
0xc3,0xcd,0xab,0xfa,0xf7,0x47,0xa,0xe2,0x68,0x7a,0xb7,0x6e,0xf9,0xe6,0xe1,0x7e,
0x35,0xb4,0xc6,0x6d,0x55,0x85,0x37,0x7f,0x8,0xaf,0xb9,0x73,0x8b,0xfb,0xa9,0xd,
0x6c,0xbd,0xfd,0xfd,0xe5,0x3c,0x15,0x7d,0x49,0x2,0xd1,0x49,0xe9,0xee,0xae,0x9b,
0xc6,0x9e,0x7e,0xf5,0x55,0x53,0x36,0xb9,0x29,0xee,0x6b,0xd6,0x20,0x9a,0xba,0xd1,
0x94,0x57,0x5e,0x31,0x3a,0xae,0xc7,0xaa,0xce,0x93,0x51,0xf1,0xcc,0x19,0x6e,0x40,
0xb7,0xb0,0x66,0xd1,0xa2,0x9c,0x83,0x59,0x31,0xb6,0x7,0x56,0xad,0xba,0x75,0xe4,
0xe2,0xac,0x10,0x4a,0x4b,0x33,0x3a,0x3c,0x61,0x1d,0x25,0xeb,0x57,0xf4,0xb,0x66,
0x47,0x47,0x9b,0x46,0x76,0xd5,0xb3,0xbd,0xde,0x7f,0x9f,0x36,0xa3,0x3c,0x8e,0x7e,
0xfc,0x71,0xbe,0xa9,0xb2,0xec,0xc3,0x67,0x50,0xea,0x8f,0x3f,0xd4,0x6f,0xe8,0x65,
0xd3,0xb2,0x5e,0xbd,0xd2,0x6f,0x24,0x24,0x4e,0x8a,0x39,0x7d,0xda,0xe8,0xb0,0xa,
0x1a,0x49,0x20,0x9a,0x22,0x72,0x1c,0xe5,0xbe,0x20,0xb0,0xd1,0xb0,0x61,0x70,0x83,
0x3f,0x16,0x4f,0x9d,0x9a,0xe7,0xab,0xd5,0x4e,0xe6,0xd3,0x78,0xe7,0xe0,0x41,0xf4,
0x46,0x7,0xf2,0x9a,0x3a,0x35,0xb5,0x64,0x62,0xf4,0x14,0xf5,0x87,0x1f,0xee,0x7f,
0xc8,0x6c,0x74,0x78,0x22,0x6f,0x71,0x28,0xed,0xee,0x16,0xb4,0xdb,0xcb,0x8b,0xc2,
0x50,0x87,0x5b,0x8e,0x1d,0x4b,0xb3,0x70,0xb,0x77,0xdf,0x7e,0x1b,0xa9,0x48,0xc0,
0x14,0xca,0x73,0xd7,0x13,0x4b,0xb5,0x61,0x3a,0x82,0xde,0x38,0x12,0x1c,0x9c,0xba,
0x3a,0x61,0x9e,0x6d,0xbf,0xe9,0xd3,0x1,0x59,0x39,0x6b,0x21,0xcf,0xfd,0x83,0xe7,
0x37,0x96,0x87,0x96,0xa6,0x6e,0xa6,0xd3,0xa6,0x2f,0x57,0xaf,0xa6,0x2d,0x54,0x87,
0x87,0x75,0xe8,0x60,0x74,0x5c,0xf,0xc9,0x5d,0xe2,0x73,0x3b,0xe,0x65,0xdf,0xf5,
0xeb,0xd5,0x33,0x1c,0xad,0xf2,0xd4,0xa9,0x37,0xd6,0x27,0xbd,0x3b,0xb5,0xf6,0xef,
0xbf,0x1b,0x1d,0x9e,0xc8,0x9f,0xca,0x78,0xbb,0x70,0xe0,0x86,0xd7,0x5e,0x53,0x3,
0x95,0x50,0x6e,0xec,0xef,0x8f,0x4f,0xe9,0x3c,0x85,0x79,0x7b,0xe7,0xd5,0x5b,0xb4,
0xbc,0x1c,0xfd,0x71,0x60,0xeb,0x56,0x73,0x47,0x73,0x90,0x6d,0xf4,0x7,0x1f,0xc8,
0x4b,0x1d,0xcf,0x47,0x12,0xc8,0x33,0xb2,0xdc,0xa2,0x52,0xda,0x52,0x69,0x53,0xef,
0x8d,0x1b,0x69,0x34,0xd,0xc4,0x3b,0x55,0xaa,0x18,0x1d,0xd7,0x3,0x96,0x7d,0x15,
0x7e,0x28,0x89,0xa2,0xdb,0xb6,0x99,0xf6,0x9a,0x37,0xe2,0xdb,0xf1,0xe3,0xaf,0x47,
0x26,0x53,0xa8,0xcf,0xc9,0x93,0x46,0x87,0x27,0xa,0x26,0xc7,0xf6,0x1e,0x11,0x1,
0x97,0x6b,0xd6,0xa4,0xe,0x6a,0x69,0x38,0x7e,0xfe,0x39,0xe6,0x62,0x25,0xe5,0xbc,
0xf7,0x5e,0x5e,0x5b,0xa1,0xf0,0xd7,0x7c,0x0,0x2d,0xe2,0xe2,0x54,0xc6,0x4,0x7c,
0xdf,0xad,0x9b,0x54,0x13,0x7e,0x36,0x79,0xe6,0x1f,0x34,0xbf,0x70,0xda,0xe2,0x16,
0x1d,0x74,0xb8,0x77,0x6f,0xae,0x44,0xbb,0x38,0x60,0xd1,0x22,0x6a,0x8d,0x6f,0xd0,
0xb0,0x58,0x31,0xa3,0xe3,0x7a,0xa0,0xe,0xda,0xc0,0x66,0xf7,0x6e,0x5a,0xa1,0xd4,
0x54,0x23,0xc7,0x8e,0x4d,0x79,0x29,0x6e,0x58,0xf8,0x5f,0xbf,0xfd,0x66,0x74,0x58,
0xa2,0x70,0x72,0xe,0xac,0x72,0x26,0x30,0xe9,0xf5,0xd7,0x79,0x3e,0xd7,0xc5,0xc6,
0x69,0xd3,0x60,0x42,0x79,0xa4,0xb6,0x6c,0x69,0x74,0x5c,0x16,0xfc,0x1b,0xc6,0xa3,
0xcd,0x3f,0xff,0x50,0x11,0x4c,0xc2,0x2c,0x5f,0xdf,0xd4,0x72,0x9,0x9,0xa1,0x5b,
0xd6,0xae,0x35,0x3a,0xae,0xfc,0x42,0x12,0xc8,0x13,0x21,0x72,0x62,0x37,0xe,0xe0,
0xe0,0x60,0x38,0x53,0x15,0xa,0xa,0xe,0x36,0x3a,0x22,0xb,0xcb,0x6b,0x8c,0x68,
0xc7,0x4e,0xd4,0x2b,0x28,0x28,0x2d,0x3d,0x31,0x69,0x4a,0x68,0x64,0xa4,0xd1,0x71,
0x9,0xf1,0xdf,0x38,0x9e,0x72,0x4b,0x1e,0xd7,0xa8,0x55,0x2b,0x1a,0x84,0x83,0x6a,
0xef,0x39,0x73,0xf2,0xdc,0x6b,0xec,0x3d,0xf8,0x13,0xee,0x1e,0x11,0x91,0x3a,0x2f,
0x71,0xb4,0x9d,0xa7,0x9f,0x1f,0x20,0xcf,0x4a,0xfe,0x17,0x49,0x20,0x8f,0x60,0xd9,
0xe8,0x97,0x96,0x6e,0xee,0x5d,0xbc,0xf2,0xf2,0xe5,0x14,0x41,0x6f,0xd2,0xda,0x9e,
0x3d,0x8d,0x8e,0xeb,0xc1,0x5f,0x4c,0x59,0x1c,0xc4,0x5f,0x7f,0xfe,0x79,0xaa,0x47,
0xd1,0xd9,0x76,0xcb,0x23,0x22,0x64,0x23,0x95,0xc8,0x4f,0x1e,0x6c,0xa4,0xfd,0x45,
0x8d,0x29,0x71,0x65,0xc4,0x8,0x1e,0x89,0xd2,0x58,0x39,0x61,0x42,0x5e,0x59,0xd1,
0xf3,0x3a,0xbc,0xc9,0x6d,0xd7,0xac,0x71,0xfc,0x4b,0x69,0x74,0xfb,0x9f,0x1,0x3,
0xe4,0x4,0xc6,0xff,0x4e,0x12,0xc8,0xbf,0x3c,0x78,0x28,0xbe,0xd8,0xe6,0xb,0xe5,
0xf5,0xef,0xbe,0xa3,0x4f,0xe0,0x8f,0x93,0x4d,0x9b,0x1a,0x1d,0x17,0x7f,0x85,0x70,
0xbc,0x16,0x1d,0xad,0x4c,0x67,0x5b,0x5e,0xe0,0xeb,0x9b,0x72,0x2c,0xb1,0x6b,0xd8,
0xde,0xd8,0x58,0xa3,0xe3,0x12,0x42,0xb,0xa5,0x26,0xb9,0x14,0x19,0x57,0xd9,0xcd,
0xcd,0x26,0xda,0xd4,0x4f,0xed,0xbb,0x70,0x61,0x9e,0x29,0xe5,0xf3,0x29,0x7f,0x83,
0x6f,0xf,0x1d,0xca,0xec,0x6c,0xbb,0xd4,0x36,0xa6,0x73,0x67,0x29,0xb5,0xf3,0xff,
0x49,0x2,0xc9,0xe5,0x1c,0x58,0x79,0x47,0x60,0x52,0x85,0xa,0x7c,0xd6,0x54,0x8e,
0xcb,0xec,0xde,0x6d,0xf8,0xbe,0x8d,0xf6,0x68,0xf,0x8f,0xf4,0x74,0xfe,0x9c,0x96,
0xf0,0x6a,0x3f,0xbf,0x34,0x8f,0xf8,0xcc,0xb0,0xbd,0x2b,0x57,0xde,0xff,0x50,0x5e,
0xaf,0x15,0x5,0x19,0x91,0x63,0x80,0x7b,0xe7,0x0,0xdf,0xbe,0x7d,0xe9,0x4,0xee,
0xd2,0xb6,0x99,0x33,0xf1,0x2b,0xe2,0xf0,0x61,0xe9,0xd2,0x86,0x85,0x94,0xbb,0xaf,
0x44,0x49,0x51,0x8b,0x64,0x1f,0x6b,0xdd,0xfa,0x7a,0x64,0x32,0x4d,0xff,0xf6,0xca,
0x15,0xa3,0x67,0xca,0x68,0x85,0x3e,0x81,0x38,0x94,0x76,0x77,0x1b,0x3b,0xa6,0x72,
0x65,0xda,0x89,0x14,0xd3,0x86,0x3d,0x7b,0xc,0xaf,0x7a,0x9b,0xfb,0x17,0x4f,0x8e,
0x9d,0xda,0x44,0xb9,0xd7,0xa7,0xcf,0xcd,0xf1,0xc9,0x99,0x93,0xcf,0x27,0x26,0x1a,
0x3d,0x4f,0x42,0x18,0xe1,0x7e,0xe9,0x9f,0x4a,0x95,0xc8,0xc4,0xbd,0xb9,0xcc,0xaa,
0x55,0x86,0xdf,0x11,0xc8,0x3d,0x69,0xd1,0x94,0x63,0x2a,0xa1,0x36,0x6e,0xd5,0xea,
0xda,0xa7,0xe7,0x7a,0x87,0x87,0x27,0x24,0x18,0x3d,0x4f,0x46,0x29,0xb4,0x9,0xc4,
0xb2,0x64,0x36,0xd9,0x2a,0xb3,0xd5,0xc8,0x3d,0x7b,0x68,0x3a,0x4d,0xc7,0x16,0x77,
0x77,0xab,0x7,0x62,0xa9,0x52,0xbb,0x1c,0xdd,0x79,0xc9,0x94,0x29,0xa9,0x94,0x48,
0x71,0x3e,0x93,0x26,0x1,0x72,0x96,0xb4,0x10,0xff,0xdf,0x7f,0x36,0xea,0x52,0x19,
0xf6,0x46,0xc5,0x69,0xd3,0x30,0x9d,0xde,0x44,0x15,0x3b,0x3b,0xab,0x87,0xd2,0xa,
0x80,0xef,0xf9,0xf3,0xf4,0x29,0xc6,0x28,0xeb,0x5b,0xb5,0x4a,0x69,0x9a,0x30,0x68,
0xf2,0xd8,0x73,0xe7,0x8c,0x9e,0x21,0x6b,0x2b,0x74,0x9,0xa4,0x8c,0x77,0x95,0x99,
0xfe,0x17,0x3c,0x3c,0xd4,0x6f,0xb9,0x82,0xe2,0x1c,0x1d,0x6d,0x58,0x11,0x39,0x4f,
0x8e,0xc1,0xb9,0xb,0x17,0xe0,0x80,0x3f,0xd4,0xc1,0xdd,0xba,0xa5,0x6e,0x4a,0xac,
0x13,0xde,0xec,0xd8,0x31,0xa3,0xe7,0x47,0x88,0xfc,0xc0,0xb1,0xbd,0xb,0x7,0xd,
0xad,0x5f,0x9f,0xce,0x2b,0x67,0x38,0x38,0x32,0x12,0x57,0xa8,0x23,0x66,0x56,0xac,
0x68,0xf5,0x40,0x72,0xab,0x4f,0x2b,0xef,0xd1,0x65,0x35,0xa5,0x69,0xd3,0xeb,0x91,
0xf1,0x23,0xc3,0x2b,0xc5,0xc5,0x19,0x3d,0x3f,0xd6,0x52,0x68,0x12,0x88,0x63,0x7b,
0x8f,0x88,0x31,0xb1,0x15,0x2b,0x52,0x43,0x35,0xc1,0x26,0x7b,0xff,0x7e,0xcc,0xc6,
0xf7,0x58,0xe3,0xea,0x6a,0xed,0x38,0x78,0x2,0x7a,0x61,0xc6,0xbe,0x7d,0x36,0x5b,
0xf8,0xa,0x3e,0xf6,0xf1,0xb9,0xb6,0x37,0x71,0x49,0x68,0xc4,0xd5,0xab,0x46,0xcf,
0x8f,0x10,0xf9,0xd1,0x83,0xf3,0x51,0x3e,0xc8,0x39,0x9d,0xf5,0xd7,0x37,0xdf,0xe0,
0x2a,0xae,0xd2,0xea,0x56,0xad,0xac,0x1e,0x48,0xee,0x1f,0x84,0x39,0x7b,0x55,0x1b,
0xf3,0x86,0x26,0x4d,0x6e,0x52,0x32,0x4d,0xa5,0xa4,0x24,0xa3,0xe7,0x47,0x6f,0x5,
0x3e,0x81,0x58,0x1e,0x8e,0xab,0x9d,0x6d,0xbc,0xd1,0x2c,0x3a,0xda,0xa8,0x67,0x1c,
0xdc,0x1d,0x71,0xec,0xf4,0xc5,0x17,0x69,0xf3,0x13,0x94,0xb8,0x23,0xfe,0xfe,0x80,
0xdc,0xa2,0x12,0x42,0x3b,0x4d,0x39,0x98,0x6d,0x6c,0x9c,0xfe,0xb8,0xd0,0x3c,0xfb,
0xab,0x69,0xd3,0xd0,0x14,0xe7,0x71,0xf1,0xfe,0x3e,0xe,0x6b,0xb2,0xec,0xcb,0x32,
0x7d,0x61,0xbe,0x95,0x5d,0xb7,0x49,0x93,0x82,0xfe,0xb0,0xbd,0xc0,0x26,0x10,0x4b,
0x35,0x51,0xdb,0x17,0x6d,0x3f,0xc8,0xba,0xb3,0x6f,0x9f,0xd5,0xdf,0xaa,0xca,0x7d,
0xb6,0xa1,0x4e,0xc7,0x72,0x8c,0xff,0xe4,0x93,0xf4,0x32,0x89,0x3b,0x43,0x5d,0x97,
0x2c,0x31,0x7a,0x5e,0x84,0x28,0xc,0x9c,0xb6,0xb8,0x8f,0x9,0x72,0x1a,0x34,0x8,
0xdf,0xf1,0xeb,0xdc,0x65,0xee,0x5c,0x6c,0xa5,0x40,0x94,0xb3,0xb1,0xb1,0x5a,0x0,
0xc3,0x0,0x1e,0x7a,0xfa,0x74,0xce,0xcc,0x9c,0x1c,0x9e,0xd3,0xb4,0xe9,0xcd,0x9b,
0xe7,0xcf,0x87,0x87,0xa7,0xa7,0x1b,0x3d,0x2f,0x5a,0xcb,0x73,0xc5,0xce,0x9e,0x5f,
0xcd,0xd,0xc1,0x6c,0x67,0x67,0xb3,0xd7,0x76,0x70,0xd6,0x95,0xc8,0x48,0x6b,0x27,
0xe,0xbe,0xc0,0x5f,0x62,0xd7,0xed,0xdb,0xf4,0x22,0x5,0x62,0x7c,0x97,0x2e,0x92,
0x38,0x84,0xb0,0xbe,0xd4,0xce,0x9,0xd3,0xa6,0xa4,0x2e,0x58,0xc0,0xb5,0xb0,0x7,
0x2f,0x74,0xe8,0x80,0x17,0xf8,0x1c,0x36,0xde,0xba,0x65,0xb5,0x0,0x22,0x0,0x9a,
0x5b,0xbb,0xb6,0x69,0xa2,0xcd,0x7,0xca,0xac,0xcd,0x9b,0x2d,0x1b,0x27,0x8d,0x9e,
0x17,0xad,0x15,0xb0,0x4,0x42,0xe4,0x18,0x72,0xb7,0x65,0xd6,0x9f,0x5f,0x7f,0x4d,
0x95,0xa8,0xd,0xcd,0x6d,0xd1,0xc2,0x5a,0x3d,0xf3,0x7e,0xd4,0xa7,0xf0,0x2b,0x57,
0xd4,0x3d,0xd8,0x84,0x86,0x8d,0x1a,0xa5,0x84,0x26,0x24,0x84,0xba,0x6e,0xdb,0x66,
0xf4,0x8c,0x8,0x51,0x98,0xa5,0x7d,0x96,0xb8,0x24,0x34,0x62,0xf7,0x6e,0x3a,0x6c,
0x9a,0xa7,0x2a,0xcd,0x9a,0xf1,0x22,0xa4,0x72,0xe0,0xb5,0x6b,0xd6,0xea,0x9f,0x26,
0x62,0x2d,0x46,0x35,0x69,0x92,0xd6,0x46,0xcd,0x2e,0xf1,0x8b,0xe5,0xf,0xc9,0xbc,
0x53,0x54,0xf2,0x79,0x15,0x98,0x4,0xe2,0xd4,0xd4,0x7d,0x4d,0xd0,0xab,0x93,0x27,
0x5b,0xbb,0xe4,0x8,0x9f,0xc5,0x7,0xb8,0x7d,0xf9,0x32,0x46,0x29,0xf5,0xd5,0x4b,
0x2d,0x5b,0x4a,0x55,0x4f,0x21,0xf2,0x1e,0x4b,0x51,0x51,0xb2,0x51,0xf7,0x99,0xf6,
0x37,0x69,0x82,0xf2,0xbc,0x15,0x23,0x2f,0x5e,0xb4,0x56,0xff,0xd4,0x8,0xf3,0x90,
0xd5,0xa7,0x8f,0xd3,0x59,0xb7,0x3d,0x41,0x45,0x3f,0xff,0xdc,0xe8,0xf9,0xd0,0x6c,
0x5c,0x46,0x7,0xf0,0xbc,0x2c,0xd5,0x71,0xd1,0x9f,0xfa,0xf1,0xd6,0xd5,0xab,0xad,
0xd5,0x2f,0x8f,0xe6,0xd1,0xe8,0x9c,0x90,0x60,0x1e,0xab,0xe,0x32,0xbf,0xd5,0xb2,
0x65,0x61,0x79,0xeb,0x42,0x88,0x82,0xe0,0x41,0xe9,0x94,0x72,0xa6,0x39,0x6a,0xa5,
0x1f,0x7f,0x44,0x0,0xa6,0xa1,0xa9,0x9b,0x9b,0xb5,0xfa,0xa7,0xe,0x38,0x84,0x1f,
0x7a,0xf6,0x4c,0x59,0x95,0x50,0x3e,0xf4,0xd4,0xba,0x75,0x46,0xcf,0xc7,0xb3,0xca,
0xb7,0x2b,0x10,0xcb,0x79,0x1c,0x96,0xb2,0xea,0xd6,0xea,0xd7,0x92,0x38,0x10,0x6d,
0xca,0xce,0x71,0x68,0xda,0x54,0x12,0x87,0x10,0xf9,0x8f,0xa5,0xc2,0x3,0x7f,0xa7,
0x64,0xe5,0x2c,0x6f,0xd2,0xc4,0xb2,0xc3,0xdc,0x5a,0xfd,0xab,0x53,0x10,0x85,0x88,
0x25,0x4b,0x1c,0x3e,0x73,0xbf,0x12,0xe8,0x59,0xab,0x96,0xd1,0xf3,0xf1,0xac,0xf2,
0xdd,0xa,0xe4,0x41,0xb1,0xc3,0x59,0xa6,0xaf,0x95,0xed,0xc7,0x8e,0x59,0xed,0x20,
0xa7,0xdc,0x25,0x6f,0x4e,0xf,0xf5,0x75,0xe5,0xf5,0x26,0x4d,0xa4,0xc4,0x88,0x10,
0x5,0x87,0xa5,0xa4,0x91,0xf2,0x3e,0x6a,0x98,0x4e,0xed,0xdb,0x87,0xb5,0x88,0xc1,
0xeb,0x2e,0x2e,0x7a,0xf7,0x6b,0x39,0xd8,0xca,0xfc,0x8e,0x5a,0xc1,0xb6,0xe5,0x9b,
0x6f,0xe6,0xb7,0x13,0x12,0xf3,0xd5,0xa,0x24,0x98,0x15,0xe5,0xc1,0xd1,0xb1,0x56,
0x4a,0x1c,0x96,0x87,0xe3,0x54,0xc,0xb1,0xec,0xd3,0xb2,0xa5,0x24,0xe,0x21,0xa,
0x9e,0xf4,0x1b,0x9,0x89,0x53,0xa7,0x9d,0x3f,0x8f,0x43,0xe6,0xed,0xdc,0xb5,0x5d,
0x3b,0x6b,0x3d,0x6c,0xa7,0xbe,0xe4,0x85,0xbd,0x1e,0x1e,0xa6,0x13,0xa6,0xa8,0xec,
0x1b,0x2b,0x56,0xe4,0xfe,0x34,0xdf,0xfc,0x61,0x9f,0x6f,0x12,0x88,0xc3,0x1d,0xb7,
0xef,0x72,0x26,0x8e,0x18,0x61,0xb5,0x33,0xc7,0x73,0x5f,0xfb,0x53,0xe3,0xb8,0x18,
0xf,0x69,0xdb,0x56,0xca,0xa7,0xb,0x51,0xf0,0xa5,0x1e,0x4f,0xa6,0xb0,0x8f,0xcf,
0x9e,0x55,0xea,0x2b,0x93,0xf8,0xcd,0x76,0xed,0x70,0x97,0xa3,0xd0,0x28,0x23,0x43,
0xef,0x7e,0xa9,0xd,0x86,0x60,0x7a,0xa7,0x4e,0x96,0x5a,0x5f,0x46,0xcf,0xc3,0x13,
0xc7,0x6d,0x74,0x0,0x8f,0x63,0xb9,0x47,0x48,0x6f,0xe0,0x6d,0x54,0x3e,0x76,0x8c,
0x86,0x20,0x1d,0x9e,0xf6,0xf6,0xba,0x75,0x98,0xbb,0x1,0x90,0xbf,0xe1,0x63,0x78,
0xe3,0x9d,0x77,0xd2,0x32,0x93,0x66,0x84,0x7e,0xba,0x73,0xa7,0xd1,0xf3,0x20,0x84,
0xb0,0x3e,0x87,0xf0,0x2a,0xe,0x81,0x7b,0xda,0xb7,0x57,0xce,0xaa,0x5f,0xe1,0x9b,
0xef,0xbf,0xd7,0x7b,0x43,0x22,0x87,0x20,0xd,0x7d,0x32,0x33,0xd5,0xfd,0xea,0x32,
0xb3,0xb9,0x5e,0xbd,0x1b,0xeb,0x93,0xde,0x9d,0x5a,0xfb,0xf7,0xdf,0x8d,0x9e,0x87,
0x47,0xc9,0xb3,0x9,0xc4,0x85,0x5d,0x38,0x98,0xed,0xed,0x6f,0x4f,0x34,0x55,0xc9,
0xba,0xf2,0xcb,0x2f,0x96,0x8d,0x39,0xba,0x77,0x3c,0xc,0xe0,0xa1,0x9f,0x7e,0x9a,
0x1a,0x9c,0x90,0x10,0x56,0xe1,0xab,0xaf,0x8c,0x9e,0x7,0x21,0x84,0xf1,0x1c,0xae,
0xbb,0xb5,0xd,0x4c,0x1a,0x38,0x50,0xa9,0x41,0xe7,0xb0,0x68,0xf1,0x62,0xdd,0x3b,
0xac,0xce,0x93,0x51,0xf1,0xcc,0x99,0xa2,0xf5,0xb2,0x8f,0xdd,0x7d,0xad,0x6e,0xdd,
0x8b,0xb3,0x2e,0xce,0x9a,0xd5,0xf0,0xee,0x5d,0xa3,0xe7,0xe1,0xdf,0xf2,0xec,0x2d,
0xac,0xdb,0x43,0x94,0x2f,0xb2,0x4e,0x4d,0x9d,0x6a,0xad,0xc4,0x61,0xa9,0x55,0x25,
0x89,0x43,0x8,0xf1,0x6f,0xf,0x2a,0x4a,0x2c,0x43,0x32,0x37,0x9f,0x3d,0x5b,0xf7,
0xe,0x73,0xcf,0x8a,0xbf,0x5b,0xc9,0xd6,0xbb,0xe8,0xc5,0xb0,0x30,0xa3,0xc7,0xff,
0x28,0x79,0x2e,0x81,0x58,0xca,0x34,0xe3,0x4,0xc5,0xd1,0xd2,0x21,0x43,0xf4,0xee,
0x8f,0x2f,0xf0,0x2e,0x1e,0xba,0x77,0x6f,0xda,0xfc,0x4a,0x64,0x37,0x32,0x20,0xc0,
0xe8,0xf1,0xb,0x21,0xf2,0xae,0xd4,0xce,0x95,0x72,0xec,0x5a,0x8d,0x1e,0x6d,0x39,
0x62,0x5a,0xf7,0xe,0x23,0x69,0x5,0xe,0xc,0x1d,0xea,0x50,0xda,0xdd,0x2d,0x68,
0xb7,0x97,0x97,0xd1,0xe3,0xff,0xb7,0x3c,0x93,0x40,0x2c,0xb5,0x62,0xe8,0xa6,0xf2,
0xd,0xbf,0xbc,0x74,0x29,0x62,0xb1,0x1b,0xc5,0x15,0xfd,0xe2,0xcb,0x2d,0xbf,0x6c,
0x37,0xd8,0xb4,0x1d,0xe8,0xd1,0x3,0x88,0xa6,0x10,0xca,0xc9,0x31,0x7a,0x1e,0x84,
0x10,0x79,0xd9,0xfd,0xeb,0x84,0xcd,0x2,0xde,0x85,0x3,0xdd,0xbb,0xeb,0xbe,0xa3,
0x3d,0xf7,0x3a,0x48,0x7f,0xa3,0x31,0x77,0x5f,0xb2,0xc4,0x72,0x6b,0xdf,0xe8,0x59,
0xb0,0xc8,0x33,0x9,0x24,0xdd,0xc5,0x7c,0xb9,0x44,0xbf,0xa0,0x20,0xcb,0xd2,0x4d,
0xb7,0x8e,0x46,0xf3,0x31,0xc4,0x67,0x65,0x59,0xe,0x72,0xba,0xb2,0x3c,0x6e,0x58,
0x58,0x85,0xeb,0xd7,0x8d,0x1e,0xbf,0x10,0x22,0xff,0xb0,0x9c,0xe3,0xa3,0x8e,0x53,
0x2,0x69,0x7d,0xf7,0xee,0xf,0x4e,0x16,0xd5,0x9,0x55,0xc2,0x1,0xc,0xaa,0x5e,
0xfd,0x36,0x14,0x64,0xe1,0xfe,0x71,0x10,0x79,0x81,0xe1,0x9,0xc4,0x21,0xae,0xca,
0x8e,0xf1,0xb6,0xaf,0xbc,0x82,0xbf,0xf0,0x19,0x9a,0x8d,0x1d,0xab,0x7b,0x87,0x2a,
0x1d,0xe5,0x6a,0xe3,0xc7,0xcb,0x9,0x80,0x42,0x88,0xe7,0x95,0xde,0x33,0x7e,0xcb,
0x94,0xc1,0x87,0xe,0x71,0x5d,0x65,0x4,0x7f,0x1a,0x12,0xa2,0x7b,0x87,0x53,0x91,
0x46,0x3d,0x2,0x2,0x1c,0x77,0xbb,0xd4,0x1f,0x97,0xf4,0xf2,0xcb,0x46,0x8f,0xdf,
0xf0,0x4,0xa2,0x2c,0xe3,0xd2,0xe6,0x4f,0x66,0xcc,0xd0,0xfb,0x6c,0x63,0xf6,0x45,
0x6d,0x34,0xd9,0xbf,0x3f,0x35,0x30,0xa1,0x43,0xdc,0xd9,0x19,0x33,0x8c,0x1e,0xb7,
0x10,0xa2,0xe0,0x48,0x1b,0x12,0x7f,0xc5,0xee,0xf5,0xd0,0x50,0xde,0xcc,0x1f,0xf2,
0xf8,0x9f,0x7f,0xd6,0xad,0xa3,0xdc,0xeb,0x24,0x79,0x9b,0x4e,0xa9,0x1b,0xe7,0xce,
0x35,0x7a,0xdc,0x86,0x25,0x10,0xa7,0x2d,0xae,0xbf,0x7,0xc,0xef,0xd4,0x9,0xb,
0xd1,0xb,0xc5,0xdb,0xb6,0xd5,0xad,0xa3,0xf6,0x68,0xf,0x8f,0xf4,0x74,0xf6,0x24,
0x50,0x7c,0xef,0xde,0x80,0x9c,0x4,0x28,0x84,0xd0,0x5e,0x8,0xa9,0xaa,0x1a,0x8d,
0x30,0xe5,0x72,0xdf,0xbe,0x70,0x5,0xf0,0xda,0xcd,0x9b,0xba,0x75,0x66,0x42,0x79,
0xa4,0xb6,0x6c,0xe9,0x1c,0xe8,0xee,0x1e,0x98,0xf4,0xf6,0xdb,0x46,0x8d,0xd9,0x80,
0x4,0x72,0xff,0xc0,0x27,0x7e,0x55,0xf9,0x88,0x9a,0x4f,0x9f,0xae,0x77,0x6f,0xfc,
0x39,0x2d,0xe1,0xd5,0x7e,0x7e,0xf7,0x97,0x9a,0x17,0x2e,0x58,0x7f,0xbc,0x42,0x88,
0xc2,0xe2,0xc6,0xb8,0xc4,0x7b,0x53,0xdc,0x93,0x93,0xd5,0x1d,0x5c,0x15,0x6f,0x7d,
0xf6,0x99,0xde,0xfd,0xa9,0xd,0xf8,0x0,0xe2,0x66,0xcf,0x36,0xea,0xc0,0x2a,0xab,
0x27,0x10,0x87,0x3b,0x77,0x6d,0x73,0x26,0xe,0x19,0x42,0x6f,0x20,0x5,0xbf,0x54,
0xab,0xa6,0x5b,0x47,0x75,0xd0,0x6,0x36,0xbb,0x77,0xa7,0x79,0xc4,0x67,0x86,0xed,
0x5d,0xb9,0xd2,0xda,0xe3,0x14,0x42,0x14,0x5e,0xf7,0xf7,0x8d,0x2c,0x5d,0xca,0x47,
0x79,0x6,0xdc,0x7e,0xfa,0x49,0xaf,0x7e,0x2c,0xb5,0xb4,0xd2,0xa2,0xd4,0xa8,0x92,
0x51,0x9f,0x7c,0x62,0xed,0x71,0x5a,0x2d,0x81,0x94,0xf1,0xae,0xb9,0x21,0x98,0x8b,
0x17,0xa7,0x28,0xea,0xab,0x8e,0xd2,0xef,0x61,0x39,0xef,0x46,0x4f,0x1c,0xba,0x73,
0x47,0xd9,0xa8,0xd4,0x54,0x62,0x2c,0x13,0xca,0x6c,0xad,0x71,0xa,0x21,0xc4,0x7d,
0xcc,0xca,0x25,0xba,0xaa,0xa4,0x7d,0xfc,0x31,0xaf,0xc3,0x9b,0xe8,0xaa,0xdf,0x4e,
0x72,0x7a,0x97,0xc7,0xf1,0x97,0x41,0x41,0x4e,0x5b,0xaa,0xf7,0x1f,0x53,0xad,0x44,
0x9,0x6b,0x8d,0xd0,0x6a,0x9,0xc4,0xdc,0x34,0x73,0x58,0xd6,0x89,0x11,0x23,0xc8,
0x17,0x4e,0x14,0x5a,0xb6,0xac,0x5e,0xfd,0x50,0x49,0x5e,0xce,0xae,0xc1,0xc1,0xd7,
0x4b,0xc5,0xd,0x9b,0xbc,0x3e,0x3e,0xde,0x5a,0xe3,0x13,0x42,0x88,0x7f,0x4b,0x69,
0x9a,0x30,0x68,0xf2,0xd8,0x73,0xe7,0x50,0x9d,0x1b,0xf1,0x95,0xc9,0x93,0x75,0xeb,
0xc8,0x9f,0xde,0x47,0x80,0xb3,0x33,0xd7,0xc9,0x7a,0xcd,0x34,0x63,0xe8,0x50,0x6b,
0x8d,0x4f,0xf7,0x4,0x72,0xbf,0xce,0x7e,0xa9,0x52,0x14,0xcf,0xfe,0xd4,0xdc,0xcf,
0x4f,0xaf,0x7e,0x78,0x3a,0x2f,0xc1,0xf,0xf1,0xf1,0xe,0xdb,0x4d,0xfe,0xb7,0x7d,
0x8c,0x7f,0x3b,0x41,0x8,0x21,0x2c,0xd2,0x2a,0x17,0x2d,0x6f,0xf7,0xce,0x17,0x5f,
0x58,0xce,0xff,0xd0,0xab,0x1f,0xfa,0x88,0x7e,0xa0,0x41,0xa3,0x47,0x97,0x62,0x17,
0xe,0xe6,0xd2,0xa5,0xf5,0x1e,0x97,0xee,0x9,0x44,0x59,0xc1,0x3d,0x4c,0x2b,0x46,
0x8d,0xc2,0x4a,0x44,0x60,0x88,0xa3,0xa3,0x5e,0xfd,0xd0,0x7b,0x8,0xa1,0x3f,0xfc,
0xfc,0xe2,0x86,0xc5,0xd,0x9b,0xdb,0x21,0x33,0x53,0xef,0x71,0x9,0x21,0xc4,0x93,
0x3b,0xe3,0x13,0x42,0x59,0x59,0x38,0x81,0x22,0xb4,0x4a,0xc7,0x8d,0x80,0xbf,0x22,
0xe,0x1f,0x96,0x2e,0x6d,0x3,0x5,0x59,0x18,0x31,0x42,0xef,0x51,0xe9,0x56,0x8d,
0xb7,0x5c,0xeb,0x72,0xad,0x3f,0xeb,0xf3,0xc2,0xb,0x39,0xcd,0x8b,0xf5,0xb6,0xab,
0x97,0x9c,0x8c,0x19,0x34,0x11,0x97,0x9d,0x9c,0xb4,0xee,0xe7,0x41,0x2d,0xab,0x62,
0x89,0x1e,0x61,0x15,0x5a,0xb6,0xd4,0x77,0xba,0x84,0x10,0xe2,0xf9,0x39,0xd5,0x74,
0x6f,0x10,0x70,0x66,0xf7,0x6e,0x5c,0xc5,0x55,0x5a,0xdd,0xaa,0x95,0xe6,0x1d,0xe4,
0x6e,0x5f,0x50,0x32,0xed,0x9b,0xda,0xf6,0xab,0x5c,0xf9,0x7a,0xe4,0x19,0x9f,0x10,
0xba,0x7d,0x5b,0xeb,0x6e,0x74,0x5b,0x81,0x64,0x7b,0xbe,0xd0,0xcd,0x2e,0x71,0xe0,
0x40,0xbd,0x12,0x7,0x9c,0xe0,0x8e,0x20,0x66,0x25,0xdd,0xb4,0x9d,0x5b,0xe8,0xff,
0xba,0x9c,0x10,0x42,0x68,0x85,0xae,0xd1,0x35,0x5e,0xe9,0xef,0x6f,0xb9,0x8e,0x69,
0xde,0x41,0x14,0xa2,0x10,0xe7,0xe0,0x60,0xfe,0x2c,0x73,0x76,0xb6,0x5b,0xbf,0x7e,
0x7a,0x8d,0x43,0x97,0x4,0xe2,0xed,0x6d,0x32,0xe1,0x15,0xae,0x86,0xc,0x1d,0x1f,
0xe6,0x74,0x41,0x4d,0x1c,0xdf,0xb8,0x31,0xe5,0xa5,0xb8,0x61,0xe1,0x7f,0xfd,0xf6,
0x9b,0x6e,0xfd,0x8,0x21,0x84,0xc6,0x52,0x52,0xe2,0xe3,0xc3,0xc3,0x8f,0x1f,0xe7,
0x6f,0x30,0x12,0x59,0x5b,0xb7,0xea,0xd5,0xf,0xfd,0xce,0x1f,0xe0,0x25,0x3f,0x3f,
0xa0,0x29,0x7,0xb3,0xf6,0x7,0x61,0x69,0x9e,0x40,0x1c,0xe2,0x5c,0xf7,0x56,0xdd,
0xde,0xad,0x9b,0x6e,0x67,0x96,0x57,0x43,0x6b,0xdc,0x56,0x55,0xb3,0x17,0xdf,0xc1,
0xb7,0x93,0x26,0x69,0xde,0xbe,0x10,0x42,0x58,0x9,0xb7,0xc4,0x60,0x53,0xfd,0x71,
0xe3,0x2c,0xd7,0x35,0xcd,0x3b,0x8,0xc0,0x34,0x34,0x75,0x73,0x73,0x74,0x38,0xef,
0x96,0x13,0xd4,0xb5,0xab,0xd6,0xcd,0x6b,0x9e,0x40,0x94,0x3f,0x95,0x81,0x28,0xae,
0xdf,0xca,0x83,0xdb,0x71,0x28,0xfb,0xae,0x5f,0x7f,0xa3,0x53,0xe2,0x92,0xd0,0x88,
0x53,0xa7,0xf4,0xea,0x47,0x8,0x21,0xf4,0x96,0x7e,0x23,0x21,0x71,0x52,0xcc,0xe9,
0xd3,0x68,0x8c,0x22,0x78,0x6f,0xd3,0x26,0xbd,0xfa,0xa1,0xaf,0x49,0xe1,0xa5,0xda,
0x9f,0xb5,0xae,0x59,0x2,0x71,0x7a,0xc3,0x85,0x3,0x16,0xd6,0xa8,0x81,0xd1,0x70,
0x47,0x42,0xa3,0x46,0x7a,0x4d,0x84,0xe9,0xf,0xd5,0x91,0xce,0x4c,0x9b,0xa6,0x57,
0xfb,0x42,0x8,0x61,0x6d,0xb4,0x8c,0xb6,0xa9,0xdb,0xc3,0xc3,0x75,0xeb,0xa0,0x3f,
0x80,0x1,0x5e,0x5e,0x8e,0xed,0x3d,0x22,0x2,0x2e,0x6b,0x77,0x5c,0x86,0x76,0x2b,
0x90,0x15,0xa6,0xe6,0x64,0xf6,0xf5,0x45,0x2a,0x12,0x30,0x85,0xb4,0x7f,0xbb,0x2b,
0xb7,0x34,0xc9,0xf5,0xc8,0x64,0xa,0xf5,0x39,0x79,0x52,0xf3,0xf6,0x85,0x10,0xc2,
0x20,0xf,0x9e,0x89,0xe8,0x5d,0xcd,0x17,0x6a,0x2d,0x5a,0xd2,0xbf,0xbf,0x56,0xad,
0x69,0x90,0x40,0x72,0x8b,0x23,0x1e,0xe4,0xf5,0xb8,0xd9,0xa7,0x8f,0x5e,0xc3,0xe6,
0xfd,0xea,0xb,0x28,0x2f,0x65,0xd8,0x85,0x10,0x5,0x97,0x12,0x45,0x2b,0xe8,0xea,
0x17,0x5f,0xe8,0xd5,0x3e,0x35,0xe6,0xf3,0x28,0xdd,0xb7,0xaf,0x56,0xc5,0x17,0x9f,
0x3b,0x81,0x38,0x7c,0x93,0xb9,0x26,0x67,0x7e,0xd7,0xae,0x14,0x48,0xd,0x90,0x51,
0xa6,0x8c,0xe6,0x23,0xae,0xce,0x93,0x51,0xf1,0xcc,0x99,0xb4,0xcc,0xa4,0x19,0xa1,
0x9f,0xee,0xda,0xa5,0x79,0xfb,0x42,0x8,0x91,0x47,0xa4,0x84,0x26,0x24,0x84,0xba,
0x6e,0xdf,0x8e,0x2c,0x7c,0x84,0x97,0xcf,0x9e,0xd5,0xbc,0x83,0xdc,0x6d,0x15,0x69,
0x51,0xe6,0x8c,0xe2,0x75,0x3a,0x76,0x7c,0xde,0xe6,0x9e,0x3b,0x81,0x50,0x35,0xfe,
0x98,0x7b,0xf5,0xea,0xa5,0xf9,0x40,0x73,0xf1,0x40,0x6a,0x41,0xd1,0xb,0x17,0xe6,
0xfe,0x97,0x14,0x45,0x14,0x42,0x14,0x70,0xcc,0xea,0x55,0xae,0x41,0x9,0x8b,0x17,
0xeb,0xd5,0x3,0x65,0xd0,0x24,0xba,0xd6,0xb3,0xe7,0xf3,0xb6,0xf3,0xcc,0x9,0xc4,
0xb1,0xbd,0x47,0x44,0x30,0x97,0x2c,0x89,0x58,0x8c,0xc7,0xfb,0x6d,0xda,0x68,0x3d,
0x40,0xfe,0x12,0xe,0x38,0x75,0xef,0x5e,0xce,0xa2,0xac,0xa9,0x36,0xeb,0x56,0xaf,
0xd6,0xba,0x7d,0x21,0x84,0xc8,0xab,0x72,0x26,0x15,0xd9,0xa3,0x46,0xaf,0x58,0xc1,
0x21,0x48,0x43,0x1f,0xed,0x4b,0x33,0xf1,0x60,0xbc,0x82,0xa0,0xe,0x1d,0x1e,0x5c,
0xc7,0x9f,0xd1,0x33,0x27,0x10,0x3a,0xcc,0x7f,0x66,0xcf,0xec,0xd2,0x85,0x86,0x20,
0x1d,0x9e,0xf6,0xf6,0x5a,0xf,0x10,0x75,0xd0,0xb,0x75,0xbf,0xfd,0xf6,0xd6,0x91,
0x8b,0xb3,0x42,0x28,0x2d,0x4d,0xf3,0xf6,0x85,0x10,0x22,0x8f,0xca,0x8,0x3b,0x3b,
0x2f,0x6c,0x6f,0x6a,0x2a,0x35,0xe2,0xd1,0xec,0xb0,0x79,0xb3,0xd6,0xed,0x5b,0xae,
0xdb,0x34,0xc8,0xfc,0x6a,0xce,0x91,0x67,0xbf,0x95,0xf5,0xcc,0x9,0x84,0xc3,0xf8,
0x3a,0xfc,0xbc,0xbd,0xb5,0x1e,0xd8,0x83,0x1,0xc6,0xd0,0x25,0x7c,0xb5,0x6c,0x99,
0x5e,0xed,0xb,0x21,0x44,0x5e,0xc7,0x3f,0x22,0x91,0xc2,0x96,0x2e,0xd5,0xad,0xfd,
0x8a,0xf4,0xf,0xd7,0xf0,0xf1,0x79,0xd6,0xdf,0x7f,0xea,0x4,0x62,0x29,0x92,0x8,
0x33,0xf6,0xe2,0x6c,0xeb,0xd6,0x9a,0xf,0xe8,0x2c,0x3e,0xc0,0xed,0xcb,0x97,0x53,
0x3b,0xc7,0xcf,0xb4,0xbd,0x12,0x1d,0xad,0x75,0xfb,0x42,0x8,0x91,0x5f,0xa4,0x7d,
0x56,0x79,0xb1,0xed,0x9c,0x9f,0x7e,0xe2,0x45,0x48,0xe5,0xc0,0x6b,0xd7,0x34,0xef,
0x20,0xf7,0x11,0x44,0x85,0x85,0x15,0x16,0x6,0x73,0xb1,0x62,0x4f,0xfb,0xeb,0x4f,
0x9d,0x40,0x72,0x36,0x16,0xcb,0x2a,0xb2,0xb6,0x45,0xb,0xa,0x86,0x23,0x56,0x6b,
0x7f,0x6,0x2f,0x7d,0xce,0x2f,0xf0,0x80,0xc8,0x48,0xe0,0xfe,0x21,0xf5,0x9a,0x4f,
0x98,0x10,0x42,0xe4,0x1b,0xd1,0x14,0x42,0x39,0x39,0x28,0xf,0x27,0x4a,0xd9,0xb8,
0x51,0xeb,0xd6,0x2d,0xb7,0xb2,0xb2,0x6b,0x14,0xe5,0xac,0x32,0xcd,0x9a,0x3d,0xed,
0xef,0x3f,0x75,0x2,0xe1,0xd3,0x74,0x81,0x13,0xda,0xb7,0xd7,0x69,0xb6,0xa0,0xde,
0xa0,0x57,0xf0,0xed,0x86,0xd,0x7a,0xb5,0x2f,0x84,0x10,0xf9,0xd,0x35,0xa4,0x78,
0x72,0xd1,0xef,0xba,0xc8,0xbe,0xf0,0xc2,0xe9,0xa7,0xbf,0xae,0x3f,0x75,0x2,0xa1,
0x3f,0x31,0x6,0xbd,0xdb,0xb5,0xd3,0x7c,0x4,0x69,0x98,0x82,0xf1,0x7f,0xff,0x9d,
0xbe,0x26,0xa1,0x83,0xdd,0xc4,0xc3,0x87,0x75,0x9a,0x27,0x21,0x84,0xc8,0x77,0x52,
0x29,0x9e,0x6c,0xb0,0x6f,0x1f,0x7f,0x7,0x47,0xd0,0xd5,0xab,0x5a,0xb7,0xcf,0x63,
0xf9,0x1a,0xb5,0xd5,0x31,0x81,0x38,0x6d,0x71,0xfd,0x7d,0x5c,0x54,0xf5,0xea,0x96,
0xea,0x8e,0x9a,0xcf,0xd0,0x6c,0xcc,0x47,0xb7,0x1d,0x3b,0x0,0xb9,0x75,0x25,0x84,
0x10,0xff,0x16,0x42,0xaa,0x4a,0xef,0xf2,0x6b,0xc8,0xd8,0xb9,0x53,0xeb,0xb6,0x2d,
0xd5,0xd3,0x9d,0xa3,0xdd,0x17,0x8c,0x9b,0x5a,0xb5,0xea,0x93,0xfe,0xde,0x13,0x27,
0x10,0x1a,0x60,0x7a,0x57,0x6d,0xd9,0xb4,0xa9,0x5e,0x93,0xc3,0x3b,0xb8,0x1d,0x2f,
0x8d,0x8a,0xd2,0xab,0x7d,0x21,0x84,0xc8,0xf7,0xfe,0xa4,0xbd,0x48,0xd6,0x3e,0x81,
0x58,0xa8,0x3d,0xd8,0xd6,0xcc,0x4d,0x9a,0x3c,0xe9,0xf7,0x9f,0x38,0x81,0xb0,0x8b,
0x3a,0x86,0xea,0x37,0x6c,0xa8,0x79,0xc4,0x1d,0x39,0x14,0x57,0x73,0x72,0xcc,0xdb,
0xd5,0x40,0xbb,0xf2,0x7b,0xf6,0xe8,0x35,0x31,0x42,0x8,0x91,0xdf,0x65,0x77,0xce,
0xea,0x6c,0xbb,0x79,0xc7,0xe,0x34,0xc4,0x20,0xf8,0x99,0xcd,0x5a,0xb7,0x4f,0x3d,
0xe8,0x13,0x65,0xf1,0x93,0x57,0x53,0x7f,0xf2,0x4,0x32,0x9f,0x3e,0xe3,0x34,0x1d,
0x12,0x48,0x3d,0x74,0xc4,0x80,0xa3,0x47,0x6f,0x52,0x32,0x85,0xd0,0x8d,0x1b,0x9a,
0xb7,0x2f,0x84,0x10,0x5,0xc4,0x83,0x8d,0xd5,0xc7,0x11,0x83,0x9e,0xc7,0x8f,0x6b,
0xdd,0x3e,0xf,0xc7,0x6b,0x3c,0x43,0xc3,0x4,0x52,0xae,0xb5,0xfb,0x95,0x60,0x2e,
0x5b,0x96,0x3a,0xa0,0xc,0x7a,0x3d,0xf9,0xbd,0xb1,0x27,0xe,0xf8,0x43,0xaa,0x4d,
0x41,0xfb,0xf7,0x6b,0xdd,0xae,0x10,0x42,0x14,0x54,0xfc,0x2a,0x7a,0xa3,0xa9,0xf6,
0xd7,0x4d,0x6a,0x83,0x92,0x68,0x5d,0xb5,0xaa,0xe5,0xba,0xff,0xb8,0xef,0x3f,0x36,
0x81,0xe4,0xc,0x51,0xaf,0x66,0x8d,0xa8,0x5f,0x5f,0xaf,0x89,0xa0,0x1c,0xae,0x84,
0xe8,0x43,0x87,0xf4,0x6a,0x5f,0x8,0x21,0xa,0x9c,0x8d,0xb0,0xa5,0xbd,0x7,0xf,
0x6a,0xde,0x6e,0xee,0x79,0x4e,0x39,0x1b,0xb9,0x7b,0x8e,0xa9,0x5e,0xbd,0xc7,0x7d,
0xfd,0xb1,0x9,0x84,0x7f,0x54,0x98,0xfc,0x5e,0x7d,0x55,0xf3,0x40,0x9d,0xe0,0x8e,
0x20,0xe6,0xcc,0x58,0xdb,0xea,0x36,0x66,0x79,0x6d,0x57,0x8,0x21,0x9e,0x54,0xd6,
0x19,0x9b,0x55,0x36,0x7b,0xf7,0xef,0xb7,0x5c,0x47,0xb5,0x6e,0x9f,0x57,0x2a,0x31,
0xea,0xb1,0xc7,0x5f,0xf7,0x1f,0x9b,0x40,0xa8,0x2a,0x4e,0x71,0x85,0xda,0xb5,0x35,
0xf,0xf0,0x24,0x5e,0x44,0xa5,0xd8,0xd8,0xdb,0x75,0x63,0x17,0x85,0x50,0x4a,0x8a,
0xd6,0xed,0xb,0x21,0x44,0x41,0x65,0xb9,0x6e,0xf2,0x2a,0x1c,0xc5,0x2b,0x71,0x71,
0x5a,0xb7,0x4f,0x95,0x78,0x2f,0x5d,0x7a,0xfc,0x75,0xff,0xf1,0x2b,0x90,0x1,0xd8,
0x43,0x15,0x3c,0x3d,0x35,0x9f,0x81,0xe9,0x3c,0x8b,0xf7,0x9d,0x38,0xa1,0x79,0xbb,
0x42,0x8,0x51,0x48,0xd0,0x2f,0x98,0xc7,0x31,0x3a,0x1c,0xf1,0xdd,0x7,0x5b,0x70,
0xf3,0xf1,0xd7,0xfd,0x47,0x26,0x90,0x8a,0x7e,0x15,0xfd,0xfc,0xe,0x15,0x2d,0x4a,
0xdd,0x51,0xb,0x31,0x1e,0x1e,0x9a,0xf,0x7c,0x2a,0x52,0x28,0xf9,0xf4,0x69,0xcd,
0x7,0x2e,0x84,0x10,0x85,0x4,0x9f,0x83,0x27,0x5d,0xd6,0xe1,0x3a,0xda,0xc,0x26,
0xb4,0xab,0x5a,0xd5,0x92,0x7,0x1e,0xf5,0xb5,0x47,0x26,0x90,0xdb,0x7f,0xdb,0x34,
0xb6,0x2b,0x51,0xad,0x1a,0xe,0x61,0x1,0x66,0x99,0x4c,0x5a,0xc7,0x47,0xaf,0xe0,
0xc,0xcf,0x90,0x4,0x22,0x84,0x10,0xcf,0x8a,0x4c,0xf4,0x27,0xb5,0x3c,0x75,0x4a,
0xf3,0x86,0x73,0xaf,0xfb,0xb7,0x9b,0xdb,0x66,0x14,0x5d,0xf7,0xe8,0xb7,0x6f,0x1f,
0x99,0x40,0x4c,0x71,0xa6,0x29,0xca,0x21,0x1d,0x4a,0x96,0xe4,0x32,0x9f,0xa3,0x91,
0x6a,0x5d,0x1d,0x6,0x2e,0x84,0x10,0x85,0x44,0x8e,0x63,0x4e,0x7f,0xca,0xd6,0xef,
0x3a,0x6a,0xfa,0x49,0x69,0x4e,0xdb,0x1e,0x9d,0x7,0x1e,0x99,0x40,0x38,0x45,0x3d,
0x42,0x7b,0xb4,0x4f,0x20,0xbc,0xe,0x6f,0xa2,0xeb,0xdd,0xbb,0xe9,0x37,0x12,0x12,
0xa7,0x4e,0xbb,0x70,0x41,0xaf,0x81,0xb,0x21,0x44,0x41,0x77,0x73,0x7c,0x72,0xa6,
0x29,0x39,0x39,0x59,0xb7,0xa3,0x6f,0x15,0xce,0xe0,0xf2,0xae,0xae,0x8f,0xfa,0xfc,
0x91,0x9,0x84,0x86,0xe3,0x18,0xbc,0x5d,0x5c,0xb4,0xe,0x88,0x6,0xa1,0x27,0x1a,
0x24,0x25,0xe5,0x86,0xa7,0xf9,0xeb,0x67,0x42,0x8,0x51,0x98,0x84,0x90,0xaa,0xc2,
0x85,0xcf,0xe0,0x6f,0xed,0xff,0x20,0xa7,0x26,0x18,0xcc,0x9f,0x3f,0x43,0x2,0xe1,
0xa6,0x74,0x3,0xad,0x75,0xb8,0x85,0x35,0x93,0x1d,0xd0,0xdb,0x92,0x40,0x84,0x10,
0x42,0x3c,0x2f,0x9a,0x43,0x13,0xb1,0x2f,0x31,0x51,0xeb,0x76,0xb9,0x1e,0xfb,0xd1,
0xa8,0x67,0xb8,0x85,0x85,0x4a,0xf0,0xc1,0x80,0x17,0x5f,0xd4,0x3c,0x20,0x67,0xea,
0x87,0x10,0x49,0x20,0x42,0x8,0xa1,0x15,0xae,0xc2,0x25,0xb1,0x56,0xfb,0x4,0x2,
0x85,0x16,0xc0,0xe3,0xa5,0x97,0x1e,0xf9,0xf1,0xa3,0x3e,0xa0,0x85,0x18,0x88,0x49,
0xce,0xce,0x9a,0x7,0x54,0x89,0x47,0xf0,0xe9,0x8b,0x17,0x35,0x6f,0x57,0x8,0x21,
0xa,0xab,0xda,0xca,0x4a,0x5e,0xaf,0xc3,0x2d,0xac,0xc7,0xe4,0x81,0x47,0xdf,0xc2,
0x1a,0xc5,0x6d,0xf0,0xa1,0xf6,0x9,0x44,0x79,0x5d,0x99,0x43,0x6d,0x65,0xe7,0xb9,
0x10,0x42,0x68,0x85,0x52,0xb9,0x18,0x5e,0x4c,0x4d,0xd5,0xbc,0xe1,0x30,0xfe,0x4,
0x49,0x4e,0x4e,0x8f,0xfa,0xf8,0xa1,0x4,0xe2,0xc2,0x2e,0x1c,0xcc,0xf6,0xf6,0x54,
0x89,0x86,0xa0,0x4d,0xf1,0xe2,0x5a,0xc7,0xa3,0x7e,0xc3,0x75,0xf9,0xb0,0x24,0x10,
0x21,0x84,0xd0,0xa,0xcf,0x66,0x55,0x99,0xab,0xc3,0x75,0xb5,0x28,0xb5,0xc7,0xc1,
0x12,0x25,0x2c,0x79,0xe1,0xdf,0x1f,0x3f,0x94,0x40,0x32,0xee,0xda,0xa5,0xe6,0xb4,
0x78,0x74,0xc6,0x79,0x5e,0xca,0x7c,0xb5,0x26,0xaa,0xe9,0x90,0x29,0x85,0x10,0xa2,
0x90,0xa2,0x6e,0x74,0x84,0x56,0xeb,0x77,0x5d,0xbd,0xfd,0xbd,0x3a,0xed,0x6e,0x75,
0x47,0xc7,0x7f,0xff,0xfc,0xa1,0x4,0x42,0xbb,0xb3,0x2f,0xd1,0x18,0xed,0x57,0x1e,
0x16,0x39,0xfd,0xe8,0x2,0x85,0xa5,0xa7,0xeb,0xd5,0xbe,0x10,0x42,0x14,0x36,0xca,
0x4d,0x73,0x39,0xf5,0x8b,0xb4,0x34,0xfd,0x7a,0x30,0xb5,0xb3,0x9b,0x53,0xa2,0xc4,
0x43,0xfd,0xfe,0xfb,0x7,0x66,0xa2,0xb9,0x6a,0x54,0x91,0x22,0x7a,0x85,0x61,0x53,
0x8a,0xea,0x2a,0x2f,0xdd,0xbd,0xab,0xdf,0x40,0x85,0x10,0xa2,0x70,0x51,0x13,0x0,
0x4e,0xbf,0x77,0x4f,0xb7,0xf6,0x3f,0x54,0xba,0xd0,0x8,0x3b,0xbb,0x7f,0xff,0xfc,
0xa1,0x4,0x62,0x62,0x72,0xa4,0x35,0xf,0x7f,0x51,0x2b,0x39,0xfb,0x79,0x4,0x7b,
0x67,0x65,0xe9,0xd5,0xbe,0x10,0x42,0x14,0x36,0x39,0x5d,0x60,0x6f,0x9a,0xa2,0xfd,
0x4e,0x74,0xb,0x65,0x5,0xbc,0xd5,0x94,0x87,0x17,0x16,0xf,0x25,0x10,0xf5,0xe,
0xc5,0x60,0xa2,0x7e,0x9,0xc4,0xe6,0x8e,0x79,0x33,0x2b,0x92,0x40,0x84,0x10,0x42,
0x2b,0x36,0x9e,0xea,0xc4,0x2c,0x7b,0xfd,0x12,0xc8,0xa3,0xf2,0xc2,0x43,0x9,0x44,
0xe9,0x81,0xcd,0xf8,0x54,0xbf,0x4,0x92,0xc9,0xc5,0xb6,0x72,0x7f,0x49,0x20,0x42,
0x8,0xa1,0x95,0xac,0x23,0x2f,0x9c,0x37,0x55,0xd4,0x71,0x5,0x52,0xc,0x55,0x78,
0xe2,0x13,0xac,0x40,0x84,0x10,0x42,0x88,0x27,0xf1,0xf0,0x2d,0xac,0x75,0xe8,0x82,
0xf9,0xfa,0xad,0x10,0x8a,0xd0,0x9d,0x8e,0xb4,0x4c,0xbf,0x15,0x8e,0x10,0x42,0x14,
0x36,0x76,0xf5,0xff,0xa9,0x6c,0xbe,0xa8,0xdf,0xcb,0x4f,0xea,0x1d,0xc4,0xd3,0x84,
0x87,0x57,0x38,0xf,0xdf,0xc2,0x2a,0xc6,0xd5,0x31,0x41,0xbf,0x4,0x92,0x53,0xcc,
0xd4,0x85,0x54,0x49,0x20,0x42,0x8,0xa1,0x95,0x9c,0x53,0xca,0x4,0xbb,0x7b,0xfa,
0x25,0x90,0x47,0xe5,0x85,0xff,0xf2,0x1a,0x2f,0xa7,0x71,0x6f,0xfd,0x12,0x88,0xcd,
0x16,0x7c,0xa3,0xe,0xd4,0x6f,0xa0,0x42,0x8,0x51,0xd8,0xd8,0x6c,0xc6,0x3d,0x73,
0x90,0x8e,0x2b,0x90,0xf,0x11,0xa9,0x38,0x3f,0xc1,0xa,0xc4,0xc4,0x3c,0x54,0x69,
0xaf,0xdf,0xc3,0x98,0x1c,0x77,0x66,0x75,0xce,0xa3,0xcf,0xd8,0x15,0x42,0x8,0xf1,
0x74,0x14,0x77,0x80,0x1c,0x1e,0x2e,0x35,0xa2,0x59,0xfb,0x2b,0xd4,0xcd,0x3c,0xfb,
0x9,0x56,0x20,0x80,0x79,0x47,0xd6,0xf0,0x8c,0xc,0xbd,0x2,0x31,0xad,0x33,0x75,
0xb5,0xa9,0xe5,0xe0,0xa0,0x57,0xfb,0x42,0x8,0x51,0xd8,0xa8,0x7,0x4d,0x3,0xb1,
0x48,0xbf,0x12,0x54,0x74,0x54,0xbd,0xac,0xbe,0x7c,0xeb,0xd6,0xbf,0x7f,0xfe,0x50,
0x2,0x49,0xed,0x5c,0xc2,0xad,0x68,0x8c,0x7e,0xc5,0xe,0xb9,0x83,0x1a,0xaa,0x5e,
0xd1,0xa1,0x4c,0xbc,0x10,0x42,0x14,0x52,0xea,0xc,0x4a,0xa1,0xae,0xfa,0x5d,0x57,
0x53,0x42,0x8b,0xdf,0xb2,0x75,0x79,0xb8,0xd6,0xd6,0x7f,0x59,0x81,0x9c,0xf1,0x9,
0xa1,0xac,0x2c,0xdc,0xe5,0x28,0x34,0xd2,0x7e,0x25,0x42,0xb,0xa9,0xd,0x92,0xf5,
0xcb,0x94,0x42,0x8,0x51,0xd8,0x28,0x91,0xea,0xe7,0x98,0xa7,0xc3,0x75,0xf5,0x5,
0x3e,0x87,0x8d,0xb7,0x6e,0x3d,0xc8,0xb,0xff,0xee,0xf7,0x91,0xbf,0x38,0x9b,0x7e,
0x42,0xa8,0xf6,0x2b,0x11,0x6,0x1f,0xc6,0x75,0x49,0x20,0x42,0x8,0xa1,0x15,0x6e,
0xa1,0xb4,0x57,0x57,0x3d,0x5c,0x2d,0xf7,0xb9,0x8d,0xa3,0xc5,0x70,0x7e,0x74,0x95,
0xdf,0x47,0x1f,0x28,0xd5,0x5,0x9f,0xa1,0x9c,0xe,0xe5,0x81,0xf,0xc0,0x87,0xde,
0xaf,0x54,0x49,0xf3,0x76,0x85,0x10,0xa2,0xb0,0x3a,0xad,0x7e,0x40,0xdd,0xb5,0xbf,
0xae,0x3e,0x2e,0xf,0x3c,0x7a,0x5,0x72,0x1,0x1b,0xb0,0xf4,0xef,0xbf,0xb5,0xe,
0x88,0x5e,0x40,0xc,0x3a,0xbb,0xb8,0x68,0xdd,0xae,0x10,0x42,0x14,0x56,0x14,0x4f,
0xb7,0xd0,0xcb,0xcd,0x4d,0xf3,0x86,0x55,0x1e,0x84,0xb8,0x4b,0x97,0x1e,0xf5,0xf1,
0xa3,0xcf,0x44,0x8f,0xe6,0xd2,0xd8,0xad,0xc3,0x21,0xed,0x7d,0xe8,0x10,0x5a,0xe9,
0x30,0x50,0x21,0x84,0x28,0xa4,0x78,0x38,0x4f,0x40,0x13,0xed,0xaf,0xab,0x74,0x94,
0x66,0xf1,0x8c,0x47,0xe7,0x81,0x47,0xdf,0xc2,0xda,0x4d,0x93,0x68,0x7f,0x52,0x92,
0xe6,0x3,0xdd,0x84,0x93,0xa8,0x61,0x59,0x81,0x10,0x69,0xdd,0xbe,0x10,0x42,0x14,
0x26,0xc1,0xac,0x28,0x48,0xa6,0x9a,0x78,0x51,0x87,0x5b,0x58,0xfb,0x30,0x8f,0x3e,
0x7f,0x74,0x1e,0x78,0xf4,0xa,0xa4,0x6,0xf5,0xc1,0x76,0xed,0x57,0x20,0xd4,0x3,
0xc7,0xf0,0x5d,0xd1,0xa2,0xe,0xa5,0xdd,0xdd,0xc6,0x8e,0x91,0x67,0x21,0x42,0x8,
0xf1,0xac,0xca,0xce,0xaf,0xba,0x26,0x33,0xc0,0xd5,0x95,0x82,0xe1,0x88,0xd5,0xda,
0xef,0x44,0xa7,0x26,0x6a,0x3,0xae,0xfb,0xc,0x2b,0x10,0xf3,0xdf,0xe6,0xa2,0x39,
0x9b,0xb5,0x5f,0x81,0x58,0x98,0xaa,0xf2,0x4c,0xe5,0x57,0x4f,0x4f,0xbd,0xda,0x17,
0x42,0x88,0x82,0xce,0x7c,0x4e,0x85,0x29,0xb2,0x76,0x6d,0xdd,0xda,0x27,0x9a,0x4b,
0xfc,0xc,0x2b,0x90,0x52,0xeb,0xb8,0xab,0x7d,0xad,0x98,0x18,0x74,0xe4,0x50,0x5c,
0xcd,0xc9,0xd1,0x3a,0x30,0x75,0x23,0x2e,0xc0,0x4f,0x12,0x88,0x10,0x42,0x3c,0x2b,
0x3e,0xcb,0x97,0xd4,0x3,0xaf,0xbe,0xaa,0x79,0xc3,0xb9,0xd7,0xfd,0x52,0x1d,0xd5,
0xc5,0xb6,0x73,0x62,0x63,0x1f,0xf5,0xb5,0x47,0x26,0x90,0x64,0x4a,0xa6,0x10,0xba,
0x77,0xf,0x1b,0x29,0x11,0xcd,0xe2,0xe2,0x34,0xf,0x70,0x12,0xaa,0x53,0xba,0x7e,
0x99,0x53,0x8,0x21,0xa,0x3a,0xaa,0x8d,0x8b,0x74,0x4e,0x87,0xeb,0x68,0x2c,0x54,
0xbc,0x11,0x1b,0xfb,0x20,0xf,0x3c,0xc2,0xe3,0xf,0x94,0x5a,0x8d,0xce,0x28,0x75,
0xea,0x94,0xe6,0x1,0x6,0xd1,0x78,0x94,0x7c,0xfd,0x75,0xcd,0xdb,0x15,0x42,0x88,
0x42,0x82,0x1b,0xb3,0x3f,0xb2,0x5e,0x7b,0x4d,0xf3,0x86,0xc7,0xd2,0x6b,0xa8,0xf8,
0xc7,0x1f,0x8f,0xfb,0xda,0x63,0x13,0x8,0x5f,0xa0,0x16,0xfc,0xd2,0xe9,0xd3,0x5a,
0xc7,0x47,0x6d,0x50,0x12,0xad,0xab,0x56,0x2d,0xdf,0xcf,0x23,0x22,0xe0,0x72,0x99,
0x32,0x9a,0x4f,0x80,0x10,0x42,0x14,0x50,0x65,0x5b,0xb8,0xd,0xc,0x1c,0x56,0xae,
0x1c,0xf5,0x25,0x2f,0xec,0xf5,0xf0,0xd0,0xba,0x7d,0x2e,0xc6,0x63,0x50,0xe1,0xf1,
0xb,0x87,0xc7,0x26,0x10,0xfa,0x40,0xad,0xae,0xbc,0xf9,0xfb,0xef,0x9a,0xcf,0x40,
0x2a,0x12,0x30,0x85,0x28,0xbb,0x4b,0x4e,0x53,0x84,0x37,0x68,0xa0,0x79,0xfb,0x42,
0x8,0x51,0x40,0xe5,0x4,0x50,0x6,0x77,0x6b,0xd4,0x48,0xaf,0xf6,0xa9,0x1e,0x32,
0xa8,0x9e,0x6,0x9,0x24,0x33,0xd6,0xb6,0xba,0x8d,0xf9,0xf0,0x61,0x38,0xc1,0x1d,
0x41,0xcc,0x5a,0x7,0xca,0x6e,0x54,0x9a,0xae,0x35,0x6c,0xa8,0xd7,0x44,0x8,0x21,
0x44,0x41,0x43,0x15,0x70,0x95,0xfe,0xf4,0xf2,0xd2,0xbc,0xe1,0xdc,0xeb,0xbc,0xed,
0x70,0x53,0x37,0xf5,0xd2,0x91,0x23,0x8f,0xfb,0xfa,0x63,0x13,0xc8,0xed,0xba,0xb1,
0x8b,0x42,0x28,0x25,0x85,0x77,0xe1,0x16,0x76,0x9f,0x3b,0xa7,0xf9,0x44,0x44,0xe2,
0xa,0x8e,0x37,0x6e,0xac,0xf9,0x44,0x8,0x21,0x44,0x41,0xe5,0x89,0xbb,0xe8,0xae,
0x7d,0x2,0xe1,0x93,0x78,0x11,0x95,0x62,0x63,0xaf,0x2c,0x8f,0x1b,0x16,0x56,0xe1,
0xfa,0xf5,0xc7,0x7d,0xff,0xf1,0xf,0xd1,0x73,0xd1,0x48,0x5e,0x88,0x6f,0xf,0x1d,
0xd2,0x7c,0x22,0x4e,0x52,0x34,0xe,0xd6,0xab,0x57,0xb2,0x7e,0x45,0xbf,0x60,0xd6,
0xa1,0x9a,0xa4,0x10,0x42,0x14,0x10,0xc5,0x7f,0xad,0xe6,0x1b,0xcc,0xce,0xce,0xa8,
0x87,0xd7,0x10,0xf2,0xc6,0x1b,0x5a,0xb7,0x4f,0xbb,0x51,0x9e,0xe8,0xc0,0x81,0x27,
0xfd,0xfe,0x13,0x27,0x10,0x75,0x21,0xfc,0x31,0xf9,0xe0,0x41,0xcd,0x67,0xe4,0x10,
0x16,0x60,0x96,0xc9,0x64,0x13,0x63,0xfb,0x5d,0x4e,0x50,0xcb,0x96,0x9a,0xb7,0x2f,
0x84,0x10,0x5,0x44,0x91,0x4b,0xd9,0xbd,0x73,0x8e,0xb4,0x6d,0x8b,0x58,0xec,0x46,
0x71,0xe5,0x89,0xaf,0xdf,0x4f,0x8a,0x8f,0x20,0x46,0xed,0xf6,0xe4,0xd7,0xf9,0x27,
0xe,0xc0,0xd4,0x1,0x83,0xb8,0xff,0xbe,0x7d,0x7a,0x4d,0xc,0xf5,0xa5,0xbf,0xb1,
0xbe,0x7d,0x7b,0xbd,0xda,0x17,0x42,0x88,0xfc,0x8e,0x5b,0x93,0x82,0xc0,0xb6,0x6d,
0xf5,0x6a,0xdf,0x14,0x47,0x4d,0x79,0xfc,0xfe,0xfd,0x4f,0xfa,0xfd,0x27,0x4e,0x20,
0x29,0xc7,0x12,0xbb,0x86,0xed,0x8d,0x8d,0xe5,0xd1,0x3c,0x1a,0x9d,0x13,0x12,0x34,
0x9f,0x98,0x40,0x4,0xf2,0xdb,0xed,0xda,0x1,0xb9,0xc5,0xc1,0x84,0x10,0x42,0x3c,
0xe0,0xed,0x6d,0x32,0x21,0xa,0xef,0xa8,0x5b,0xb5,0x4f,0x20,0xfc,0x35,0x1f,0x40,
0x8b,0xb8,0xb8,0xeb,0x91,0xf1,0x23,0xc3,0x2b,0x3d,0xf9,0xc6,0xf1,0xa7,0xbf,0x50,
0x7f,0x40,0x7,0xf9,0x8d,0x1d,0x3b,0xb4,0x1e,0x0,0xd5,0xc0,0x4a,0x14,0xaf,0x50,
0xc1,0x39,0xdb,0x2d,0x22,0xeb,0x7,0xfd,0x5e,0x4f,0x13,0x42,0x88,0xfc,0xc6,0x69,
0xa0,0xfb,0x95,0xea,0x47,0x9b,0x36,0x25,0x5f,0x38,0x51,0x68,0xd9,0xb2,0x5a,0xb7,
0x4f,0xf3,0xf1,0x29,0x10,0x15,0xf5,0xb4,0xbf,0xf7,0xd4,0x9,0x44,0xe9,0xcc,0xdd,
0xd0,0xe6,0xe9,0x3b,0x7a,0x52,0x5c,0x8b,0x5a,0xa0,0xae,0x8f,0x8f,0x5e,0xed,0xb,
0x21,0x44,0x7e,0xc3,0xee,0x7c,0x58,0xfd,0x43,0xbf,0xeb,0xa2,0xda,0x54,0x89,0xb6,
0x4a,0x2,0x31,0x95,0xbe,0x33,0x3f,0xfb,0xc5,0x9f,0x7e,0xe2,0x10,0xa4,0xa1,0x4f,
0x66,0xa6,0xe6,0x13,0x75,0x0,0xdf,0x52,0x58,0xb7,0x6e,0x40,0xee,0x92,0x4d,0x8,
0x21,0xa,0xad,0xa6,0x1c,0xcc,0x36,0x36,0x70,0x42,0x43,0xcc,0x7b,0xf7,0x5d,0xad,
0x5b,0xe7,0x2f,0xe1,0x80,0x53,0xf7,0xee,0xd9,0x3b,0xdc,0x9,0xb7,0x6d,0x19,0x1d,
0xfd,0xb4,0xbf,0xff,0xd4,0x9,0xe4,0xea,0xee,0xab,0xbb,0xbf,0x58,0xfd,0xcf,0x3f,
0xa8,0x8c,0xcf,0x30,0x68,0xd7,0x2e,0xad,0x7,0x64,0xb9,0x95,0x65,0x59,0xb2,0x69,
0xdd,0xbe,0x10,0x42,0xe4,0x17,0x8e,0xed,0x93,0xaf,0x65,0x6e,0x6e,0xd1,0x82,0x2,
0xa9,0x1,0x32,0x74,0x28,0xf9,0xd4,0x9c,0x9b,0xe3,0xfc,0xce,0x9d,0x97,0x3f,0xbe,
0xfc,0x71,0x8,0xdd,0xb9,0xf3,0xb4,0xbf,0xfe,0xcc,0xf,0xab,0xe9,0x8,0x27,0xe1,
0xb5,0xd,0x1b,0x34,0x1f,0x50,0x2e,0xee,0x8e,0xe1,0xe6,0x55,0xfd,0xfb,0xeb,0xd5,
0xbe,0x10,0x42,0xe4,0x75,0x34,0x48,0x49,0x55,0x4c,0x3,0x6,0xe8,0xd5,0xbe,0x32,
0x9a,0x3e,0x3,0xd6,0xad,0x7b,0xe6,0xdf,0x7f,0xe6,0x9e,0xeb,0xd9,0xa9,0x39,0x3b,
0xb6,0x6c,0xe1,0x75,0x78,0x13,0x5d,0xef,0xde,0xd5,0x7c,0x64,0x31,0xd8,0x49,0x65,
0xde,0x7b,0xef,0xc1,0xc6,0x19,0x21,0x84,0x28,0x24,0x4a,0x4,0xd4,0x18,0x1c,0xd0,
0xc2,0xc9,0x89,0x2f,0xa0,0x21,0x3c,0x3a,0x77,0xd6,0xba,0x7d,0xde,0x8d,0x9e,0x38,
0x74,0xe7,0xe,0xdd,0xb3,0xdf,0x67,0xfb,0xfb,0xf,0x3f,0x3c,0x6b,0x3b,0xcf,0x9c,
0x40,0x52,0x3b,0xc7,0x2c,0x9b,0x16,0x9b,0x91,0x41,0x1f,0x71,0x30,0xba,0xea,0xf0,
0x56,0x56,0xee,0x11,0x8d,0x76,0xdf,0xe4,0xbc,0x9e,0xed,0xd5,0xbb,0xb7,0xd6,0xed,
0xb,0x21,0x44,0x5e,0x55,0x64,0x56,0x66,0x26,0xd5,0xea,0xdb,0x57,0xb7,0xa3,0x6a,
0xd7,0x21,0x3,0x13,0xb7,0x6f,0xbf,0x1e,0x79,0xc6,0x27,0x84,0x6e,0xdf,0x7e,0xd6,
0x76,0x9e,0x7b,0xbf,0x85,0xba,0x87,0xaf,0x20,0xfd,0xd9,0x97,0x40,0x8f,0x1d,0xe8,
0x61,0x2e,0x89,0xde,0xbe,0xbe,0xb9,0xff,0x45,0x7a,0xf5,0x23,0x84,0x10,0x79,0x3,
0x11,0xdb,0x52,0x15,0xbc,0x39,0x70,0xa0,0x5e,0x3d,0xf0,0xb,0x1c,0x4c,0x4b,0x9f,
0xff,0xba,0xfd,0xdc,0x9,0x24,0xdd,0xa3,0x58,0x8a,0xed,0xed,0xcd,0x9b,0x39,0x94,
0xf,0xa3,0xc4,0xe3,0x8b,0x6f,0x3d,0xb5,0x18,0x1a,0x87,0x8b,0x35,0x6b,0x3a,0x84,
0x57,0x71,0x8,0xdc,0x73,0x7f,0xa3,0xa1,0x10,0x42,0x14,0x44,0x4e,0xb7,0xdc,0x9a,
0x6,0x29,0xef,0xbc,0x3,0x3b,0x2c,0xc6,0x5f,0x35,0x6a,0x68,0xde,0x41,0x38,0xaf,
0x42,0x58,0x4a,0x8a,0xa3,0x83,0x69,0xcd,0xad,0xee,0xcf,0x7e,0xeb,0xca,0x42,0x83,
0x1d,0xdf,0x67,0x7c,0x42,0x28,0x2b,0x8b,0x3e,0xa4,0x79,0x5c,0x69,0xd5,0x2a,0xcd,
0x7,0x6c,0x9,0x34,0x9c,0x33,0xf1,0xfb,0xa8,0x51,0x7a,0xb5,0x2f,0x84,0x10,0x46,
0xe3,0xe5,0xd4,0x98,0x6d,0x3f,0xfb,0x4c,0xb7,0xf6,0x7f,0xa3,0x6,0xfc,0xc5,0xd7,
0x5f,0xc7,0xd,0x8b,0x1b,0x36,0xb7,0xc3,0xf3,0x6f,0xc3,0xd0,0xae,0x64,0xc8,0x4e,
0xb5,0x9b,0xc9,0x69,0xd1,0x22,0xbd,0xce,0xd,0x81,0x9,0xe5,0x91,0xda,0xb2,0xa5,
0xf3,0x25,0x8f,0x8,0xff,0x97,0xeb,0xd4,0xd1,0xbc,0x7d,0x21,0x84,0x30,0x88,0xd3,
0x16,0xf7,0x31,0x41,0x4e,0x75,0xeb,0xd2,0x44,0xac,0xc5,0xa8,0x26,0x4d,0x74,0xeb,
0xa8,0xab,0xb9,0xa1,0xa9,0xdb,0xb2,0x65,0x5a,0x35,0xa7,0x59,0x2,0x49,0xed,0x9c,
0xf4,0xea,0xe4,0xf6,0x31,0x31,0x98,0x8e,0x4,0xb8,0xeb,0x50,0xb5,0x37,0x17,0x5f,
0x33,0x67,0xd0,0xde,0xb1,0x63,0xf5,0x6a,0x5f,0x8,0x21,0xac,0x6e,0x3a,0x22,0x78,
0x6f,0x40,0x80,0x5e,0xcd,0xb3,0x2f,0x6a,0xa3,0xc9,0xfe,0xfd,0x69,0xad,0x93,0x8f,
0x4c,0x76,0xfd,0xeb,0x2f,0xad,0xda,0xd5,0xbe,0x1c,0x70,0x5f,0x56,0x69,0x40,0x44,
0x84,0x5e,0x13,0x81,0x4f,0xe9,0x3c,0x85,0x79,0x7b,0x97,0xee,0xee,0xba,0x69,0xec,
0xe9,0x57,0x5f,0xd5,0xad,0x1f,0x21,0x84,0xd0,0x99,0x43,0x69,0x77,0xb7,0xf1,0xd5,
0x6b,0xd7,0x86,0x19,0x1f,0x62,0x69,0x97,0x2e,0xba,0x75,0x64,0xcf,0xcb,0xe8,0x9b,
0x39,0x73,0xb4,0x6e,0x56,0xf3,0x4,0x92,0x96,0x9e,0x98,0x14,0x7b,0x6e,0xd3,0x26,
0x9e,0xce,0x4b,0xf0,0x43,0x7c,0xbc,0xe6,0x13,0x91,0x5b,0x7,0xdf,0x74,0x49,0xe9,
0x65,0x52,0x27,0x4c,0xd0,0xbc,0x7d,0x21,0x84,0xb0,0x12,0xa,0x43,0x1d,0xf3,0x5f,
0xa1,0xa1,0x7a,0x9d,0xef,0x81,0x30,0x8c,0x41,0x74,0x62,0x62,0x5a,0x70,0xa2,0x53,
0xec,0x9d,0xcd,0x9b,0xb5,0x6e,0x5e,0x97,0xb2,0xe9,0x91,0x91,0x66,0x33,0x5e,0x51,
0xc6,0xe1,0x96,0xf6,0x19,0xef,0x81,0x6b,0xf0,0x82,0x47,0xd7,0xae,0xce,0x81,0x55,
0xce,0x4,0x26,0xbd,0xfe,0xba,0x6e,0xfd,0x8,0x21,0x84,0xc6,0x1c,0xef,0xb8,0xbd,
0x1a,0xd4,0xfc,0xad,0xb7,0x68,0x1c,0x4e,0x62,0xdc,0x3b,0xef,0xe8,0xd5,0xf,0xf7,
0xe1,0xaf,0xc8,0x6e,0xe6,0x4c,0x20,0xf7,0xba,0xac,0x31,0xdd,0xce,0xdd,0x28,0x72,
0xf2,0xce,0x87,0xb6,0x89,0x4b,0x97,0x62,0x14,0x4f,0x40,0x85,0xd4,0x54,0xcd,0x3b,
0x48,0x45,0x2,0xa6,0x10,0xa9,0xe3,0x54,0x3b,0x2e,0x32,0x7d,0xba,0x5e,0xe3,0x10,
0x42,0x8,0xcd,0xfd,0x40,0x41,0xfc,0xc9,0xb4,0x69,0xba,0xb5,0xff,0x1,0x86,0xe1,
0xcb,0xb4,0x34,0xdb,0xce,0x77,0xca,0x66,0xbe,0xb4,0x7c,0xb9,0x5e,0xdd,0xe8,0x96,
0x40,0x1e,0x14,0xe7,0xa,0xc0,0x87,0x3c,0xe4,0xcb,0x2f,0xf5,0xea,0x87,0x2a,0x51,
0x1b,0x9a,0xdb,0xa2,0x85,0x93,0x5f,0x95,0x35,0x41,0x55,0xb4,0xdf,0xf2,0x2f,0x84,
0x10,0x5a,0x71,0x74,0x70,0x73,0xd,0xa,0xf4,0xf6,0xa6,0x4f,0xe0,0x8f,0x93,0xfa,
0x15,0x8b,0xe5,0xb3,0xc8,0xe2,0x98,0x39,0x73,0x1e,0x14,0xbf,0xd5,0x89,0xee,0x27,
0xff,0xa9,0xe,0xe4,0xae,0x8e,0x9d,0x35,0xcb,0x92,0x11,0xf5,0xea,0x87,0xcb,0xa9,
0xb7,0x78,0xed,0xcc,0x99,0x1e,0x11,0x1e,0x11,0x43,0xb7,0x6b,0xbf,0xf5,0x5f,0x8,
0x21,0x9e,0x95,0xb,0xbb,0x70,0x30,0xdb,0xdb,0xd3,0x48,0xea,0xc2,0xbd,0x75,0x5c,
0x79,0x3c,0xb8,0xe3,0xa3,0xd8,0xdb,0x95,0x9f,0x3d,0x5b,0xef,0x71,0xe9,0x9e,0x40,
0xd2,0x6f,0x24,0x24,0x4e,0x9d,0x76,0xf3,0x26,0xfb,0xb1,0xc2,0x6b,0x66,0xcc,0xd0,
0xab,0x1f,0x9a,0x4e,0xd3,0xb1,0xc5,0xdd,0x3d,0xfd,0x17,0x35,0xa6,0xc4,0x95,0x11,
0x23,0xf4,0x1e,0x97,0x10,0x42,0x3c,0xa9,0x8c,0xe1,0xa6,0xdf,0xb3,0x93,0x47,0x8f,
0xc6,0x6c,0x7c,0x8f,0x35,0xae,0xae,0xba,0x75,0xb4,0x91,0x26,0xb2,0xdd,0x17,0x5f,
0xa4,0x45,0xc5,0xd,0xb,0xa1,0x5b,0xb7,0xf4,0x1e,0x97,0xd5,0xce,0x1e,0xb7,0x1d,
0x70,0x67,0x6b,0xf6,0xfa,0x39,0x73,0x78,0x11,0x52,0x39,0xf0,0xda,0x35,0xbd,0xfa,
0xe1,0xf,0x91,0x82,0xda,0xc1,0xc1,0x65,0xbc,0xab,0xcc,0xf4,0xbf,0xe0,0xe1,0x61,
0xad,0xf1,0x9,0x21,0xc4,0xbf,0x39,0xbf,0xe9,0xf6,0x5d,0x40,0x8b,0x6a,0xd5,0xd0,
0x0,0x3,0x30,0x24,0x30,0x50,0xb7,0x8e,0x72,0x4b,0x94,0x60,0x82,0x6d,0x33,0xf3,
0x8c,0x79,0xf3,0xac,0x35,0x3e,0xab,0x25,0x90,0x7,0xf7,0xe2,0x96,0xa0,0xa1,0x12,
0x10,0x16,0xa6,0x57,0x3f,0xd4,0x3,0xc7,0xf0,0x5d,0xd1,0xa2,0xea,0x6e,0x1e,0xa7,
0x6c,0x58,0xb0,0x20,0xf7,0xa7,0x52,0x84,0x51,0x8,0x61,0x65,0x44,0xea,0x68,0xca,
0xa6,0x41,0x8b,0x16,0xd1,0x10,0xa4,0xc3,0xd3,0xde,0x5e,0xaf,0x9e,0xd8,0x44,0x55,
0xc8,0x67,0xd2,0x24,0x4b,0x95,0x74,0x6b,0x8d,0xd0,0x6a,0x9,0xc4,0x22,0x2d,0xca,
0xe1,0xea,0xf5,0x7b,0xf3,0xe6,0xf1,0x5,0x78,0x61,0x41,0x4c,0x8c,0x6e,0x1d,0xe5,
0x96,0x3e,0x71,0xc,0x70,0xef,0x1c,0xe0,0xdb,0xb7,0xaf,0xb5,0xc7,0x29,0x84,0x28,
0xbc,0x9c,0x9d,0xab,0x54,0x9,0xcc,0xfa,0xe8,0x23,0xbd,0x1f,0x96,0x23,0xb,0x1f,
0xe1,0xe5,0xb3,0x67,0xd3,0xfa,0x3b,0x74,0xb8,0x5e,0xf2,0xab,0xaf,0xac,0x3d,0x4e,
0xab,0x27,0x10,0xe0,0xf8,0x89,0x45,0x8b,0xb3,0xb3,0x95,0xc9,0x38,0x80,0x13,0xfa,
0x17,0x47,0xa4,0x13,0xb8,0x4b,0xdb,0x66,0xce,0x74,0x28,0xed,0xee,0x36,0x76,0x4c,
0xe5,0xca,0xd6,0x1f,0xaf,0x10,0xa2,0xb0,0x28,0x35,0xc9,0xa5,0xc8,0xb8,0xca,0x6e,
0x6e,0x5c,0x4c,0x8d,0x45,0x6d,0xfd,0xb7,0x17,0xa8,0x41,0x34,0xd,0x15,0x46,0x8e,
0xb4,0x5c,0x57,0xad,0x3d,0x5e,0x3,0x12,0xc8,0x7d,0x29,0xa1,0x9,0x9,0xa1,0xae,
0xdb,0xb6,0x61,0x22,0x8f,0xa0,0xaf,0xb5,0x3f,0x90,0xea,0x81,0x5f,0x11,0x87,0xf,
0x4b,0x97,0x56,0x56,0x80,0x4c,0x2b,0xd6,0xac,0x1,0x0,0x6f,0x6f,0x93,0xc9,0xa8,
0x71,0xb,0x21,0xa,0xa6,0x60,0x56,0x14,0x53,0x75,0xd3,0x2a,0xf5,0x8b,0xe5,0xcb,
0xf1,0xf,0x55,0x45,0xb7,0x92,0x25,0xf5,0xea,0x8b,0x3f,0x5,0xf0,0xe7,0xb6,0x6d,
0xe9,0xfe,0xf1,0xe9,0xa1,0xad,0xa2,0xa2,0x8c,0x1a,0xb3,0x61,0x9,0xe4,0xc1,0x44,
0x54,0x53,0xd7,0xd2,0xa1,0x91,0x23,0x39,0x4,0x69,0xe8,0xf3,0xfc,0xe5,0x85,0x1f,
0xa9,0x3f,0x80,0x1,0x5e,0x5e,0x8e,0xe7,0xdd,0x22,0x3c,0x3e,0x90,0x62,0x8c,0x42,
0x8,0xed,0x38,0x7a,0xb8,0xb7,0xca,0xbe,0x33,0x7e,0xbc,0xee,0xfb,0x3b,0x72,0xaf,
0x93,0x54,0x57,0xfd,0x4e,0x19,0x64,0xfc,0xf1,0x16,0x86,0x27,0x90,0x7,0xd5,0x21,
0x67,0xa3,0x2e,0x5c,0xf4,0x7b,0xb8,0x6e,0x41,0x11,0xa8,0x4f,0xb5,0x3f,0xff,0xdc,
0xb1,0xbd,0xb,0x7,0xd,0xad,0x5f,0xdf,0xe8,0xf1,0xb,0x21,0xf2,0x2f,0xe7,0x6c,
0xb7,0x88,0x80,0xad,0x8d,0x1b,0x93,0x17,0xf,0xc4,0xb0,0x71,0xe3,0x74,0xef,0x30,
0x16,0x3f,0xa3,0xd8,0x94,0x29,0xf,0xaa,0x9f,0x1b,0xcc,0xf0,0x4,0x62,0x91,0x16,
0x67,0xef,0x6b,0x5b,0x2c,0x2c,0xc,0x4d,0x79,0x23,0x7,0xfd,0xf9,0xa7,0x6e,0x1d,
0x2d,0xa7,0x1e,0x58,0x64,0x6b,0x8b,0x95,0xa6,0x10,0xa6,0x4d,0x9b,0x9c,0xb6,0x54,
0x9a,0x3a,0xa6,0xda,0x8b,0x2f,0x1a,0x3d,0x7e,0x21,0x44,0xfe,0x51,0xc6,0xdb,0x85,
0x47,0xbf,0x57,0xbe,0x3c,0xdb,0x51,0x19,0x6a,0xb5,0x6e,0x1d,0xb6,0x52,0x20,0xca,
0xd9,0xd8,0xe8,0xd6,0x61,0xee,0xc3,0x72,0x47,0xf,0x65,0x5f,0xc6,0x19,0x1d,0x37,
0x22,0x3e,0xa5,0x3c,0x93,0x40,0x2c,0x27,0x1b,0xf2,0x3b,0x7c,0x10,0xa5,0x6,0xc,
0x40,0x35,0xb4,0xc6,0x6d,0x55,0xd5,0xab,0x37,0xaa,0x81,0x95,0x28,0x5e,0xa1,0x2,
0x7e,0xb5,0x69,0x66,0x83,0xc8,0x48,0xe0,0x8d,0xd7,0x7d,0x3f,0xb2,0xb5,0x35,0x7a,
0x16,0x84,0x10,0x79,0xd9,0xfd,0xeb,0x84,0xd9,0xc3,0xd4,0xc5,0x76,0xe0,0x86,0xd,
0x70,0x44,0x10,0x26,0xe9,0xf8,0x7,0x68,0xee,0x75,0x50,0xed,0x84,0x57,0x39,0x76,
0xe0,0x40,0xad,0x4e,0x12,0xd4,0x4a,0x1e,0x4a,0x20,0xf7,0xa5,0xf5,0x4f,0x1a,0x12,
0x96,0x73,0xf4,0x28,0xbc,0xf9,0x43,0x78,0xcd,0x9d,0xab,0x7b,0x87,0xf3,0xa9,0x27,
0xde,0x6b,0xd8,0xd0,0xe9,0x8f,0xf4,0x92,0xce,0x75,0xa6,0x4e,0x35,0x7a,0xfc,0x42,
0x88,0xbc,0xcb,0xa9,0x7d,0x5a,0x65,0xe7,0xee,0x33,0x66,0xd0,0x22,0x9c,0xc6,0xbe,
0xc6,0x8d,0x75,0xef,0xd0,0x1f,0x4b,0xb8,0x63,0x44,0x44,0xfa,0x9a,0x84,0xe,0x61,
0x93,0xf4,0x3b,0xa8,0xef,0x59,0xe5,0xb9,0x4,0x62,0xe1,0x60,0x63,0xfa,0x35,0xa3,
0xf8,0xd8,0xb1,0x8,0xc5,0xcb,0x50,0x4e,0x9d,0xd2,0xbd,0xc3,0xa6,0x38,0x8f,0x8b,
0x7e,0x7e,0x4e,0x55,0xdc,0x26,0x4,0xda,0xc,0x1e,0x6c,0xf4,0xf8,0x85,0x10,0x79,
0xc7,0xfd,0x7d,0x1d,0xbe,0xbe,0xf8,0x85,0x4e,0x61,0xef,0xd0,0xa1,0xba,0x77,0x98,
0x7b,0x2b,0xbf,0xe8,0xcf,0x59,0xc3,0xee,0xbd,0xa0,0xe3,0xe,0xf6,0xe7,0x94,0x67,
0x13,0x88,0x65,0xa9,0xa6,0xb6,0xa4,0xa1,0xa6,0xa9,0xbd,0x7a,0xf1,0x3a,0xbc,0x89,
0xae,0x77,0xef,0xea,0xde,0x71,0x4d,0x2a,0x8e,0xcb,0x73,0xe6,0x38,0x6d,0x71,0xfd,
0x3d,0x60,0x78,0xa7,0x4e,0x46,0xcf,0x83,0x10,0xc2,0x38,0xce,0xd1,0xee,0xb,0x2,
0x9c,0x3b,0x74,0xe0,0x77,0xd4,0x29,0xf8,0x44,0xff,0x12,0x21,0x96,0xb7,0xac,0xcc,
0x7d,0x31,0x8f,0x2,0x7a,0xf5,0xba,0x38,0xeb,0xe2,0xac,0x59,0xd,0xad,0x70,0xdd,
0x7b,0x46,0xf9,0xa6,0xc4,0x87,0x63,0x7b,0xf7,0xf6,0x41,0x43,0x47,0x8c,0xa0,0x5f,
0x10,0xc3,0x25,0x66,0xcd,0xd2,0xbd,0xc3,0xbb,0x1c,0x85,0x46,0x19,0x19,0x74,0xce,
0xb4,0x53,0xfd,0xac,0x69,0xd3,0x94,0x97,0xe2,0x86,0x85,0xff,0xf5,0xdb,0x6f,0x46,
0xcf,0x83,0x10,0x42,0x7f,0xce,0xce,0x55,0xaa,0xf8,0xfb,0xbf,0xf1,0x86,0x7a,0x82,
0xc7,0x29,0xed,0xa2,0xa3,0xa9,0xe,0x26,0x61,0xd7,0xb,0x2f,0xe8,0xdd,0x2f,0x5f,
0xe0,0x12,0x74,0x78,0xe8,0xd0,0xb4,0x62,0x89,0xbf,0x4f,0xf9,0x49,0xbf,0x63,0x30,
0xb4,0x92,0x67,0x57,0x20,0xff,0x96,0x16,0x95,0x10,0x35,0x65,0xee,0x9c,0x39,0xbc,
0x1c,0xfd,0x71,0x60,0xeb,0x56,0xdd,0x3b,0x2c,0x4a,0xed,0x71,0xb0,0x44,0x9,0xf5,
0x88,0x3a,0x9e,0x8e,0xed,0xd8,0xe1,0xf4,0x86,0xb,0x7,0x2c,0xac,0x51,0xc3,0xe8,
0x79,0x10,0x42,0xe8,0xc7,0xb1,0xbd,0x47,0x44,0xc0,0xe5,0x9a,0x35,0xd5,0x29,0xea,
0x21,0xa5,0x54,0x54,0x94,0xb5,0x12,0x7,0x6e,0xf2,0x24,0xf8,0x6e,0xde,0x7c,0x3f,
0x71,0x58,0xaf,0x18,0xe2,0xf3,0xca,0x37,0x9,0xe4,0x3e,0x66,0x62,0xdb,0x84,0x9c,
0x2b,0xbd,0x7b,0x5b,0x5e,0x6b,0xd3,0xbb,0x47,0xf2,0x85,0x13,0x85,0x96,0x2d,0x8b,
0xb,0xca,0x66,0x3a,0xba,0x67,0x4f,0xd9,0xf9,0x55,0xd7,0xf8,0xfb,0xbb,0xbb,0x1b,
0x3d,0x13,0x42,0x8,0xed,0x58,0x4a,0x1d,0x51,0x49,0x75,0x36,0x65,0x46,0x45,0x51,
0x20,0x35,0x40,0x46,0x99,0x32,0x7a,0xf7,0xcb,0xc7,0xe1,0x8c,0xb7,0x62,0x63,0xd5,
0xe2,0x34,0xce,0x3c,0xdf,0x52,0xb3,0x8f,0xd9,0xe8,0xf9,0x78,0x52,0xf9,0x2c,0x81,
0x0,0x96,0x6a,0x93,0xaa,0x9,0x8b,0x4c,0x93,0x7d,0x7c,0xf8,0x37,0x8c,0x47,0x1b,
0xfd,0x4e,0xdc,0x7a,0xc0,0x4c,0xa3,0x50,0xfe,0xa5,0x97,0xcc,0x36,0xe6,0xc,0x65,
0xff,0x9e,0x3d,0x8e,0xed,0x3d,0x22,0xc6,0xc4,0x56,0xac,0x68,0xf4,0x7c,0x8,0x21,
0x9e,0x9d,0xc3,0x37,0x55,0x3a,0x7,0xcd,0xab,0x54,0x49,0x99,0x86,0xb1,0xa6,0x83,
0x3f,0xff,0x8c,0x3d,0x0,0x16,0xe9,0x5f,0x33,0x8f,0x2f,0xf0,0x97,0xd8,0x75,0xfb,
0x36,0xe7,0xd0,0x44,0x93,0xf7,0xbb,0xef,0x5a,0xce,0x4d,0x32,0x7a,0x3e,0x9e,0x56,
0xbe,0x4b,0x20,0x16,0xe9,0x37,0x12,0x12,0x27,0xc5,0x9c,0x3e,0x4d,0x45,0x30,0x9,
0xb3,0x7c,0x7d,0xad,0xd6,0x71,0x0,0xa6,0xa1,0xa9,0x9b,0x1b,0x75,0x55,0xed,0x6c,
0xfa,0xed,0xdb,0x67,0x29,0x9e,0x66,0xf4,0x7c,0x8,0x21,0x9e,0x5c,0x99,0x9b,0x1e,
0x11,0xe3,0xba,0x57,0xa9,0xa2,0x64,0x70,0x7b,0x5e,0x1b,0x1d,0x6d,0xf9,0xff,0x5a,
0xf7,0x8e,0x9d,0xe0,0x8e,0x20,0x66,0xde,0xa2,0x2c,0xa4,0x7e,0x3,0x7,0xa6,0x7b,
0xc4,0xb7,0x9b,0x94,0xad,0xe3,0xc6,0x69,0x9d,0xe5,0x9b,0x87,0xe8,0x8f,0xe3,0x34,
0xcd,0xad,0x7e,0x50,0xc5,0x49,0x93,0x30,0x95,0xae,0xf1,0x7,0x56,0x28,0x29,0x90,
0x8b,0xf7,0xa3,0x3e,0x85,0x5f,0xb9,0xc2,0xcb,0x30,0x93,0x6b,0xb5,0x6e,0x9d,0xfe,
0x45,0x42,0xf9,0xd0,0x53,0x7f,0xfc,0x61,0xf4,0x7c,0x8,0x21,0x1e,0xf6,0xe0,0x59,
0x66,0xee,0x2d,0x69,0xcb,0x9d,0x5,0xab,0x5,0x90,0xc2,0xf1,0x3c,0x25,0x24,0x24,
0x95,0x12,0x29,0x8c,0x3e,0xff,0xdc,0xe8,0xf9,0x78,0x5e,0xf9,0x76,0x5,0xf2,0x6f,
0xa9,0x63,0x12,0x8f,0x4c,0xb9,0x38,0x61,0x2,0xaf,0xc3,0x9b,0xdc,0xf6,0x7e,0xd5,
0x5d,0x6b,0xa0,0xc6,0x38,0xc2,0xfe,0xe5,0xcb,0x53,0x3,0x54,0xe7,0x43,0x3f,0xfe,
0xe8,0x7c,0xc9,0x23,0xc2,0xff,0xe5,0x3a,0x75,0x8c,0x9e,0xf,0x21,0xc4,0x7f,0x58,
0xde,0xaa,0x62,0x5f,0xe5,0x1a,0xa5,0xed,0xdb,0x67,0xf5,0xc4,0x41,0xdc,0x2,0xb7,
0x57,0xae,0xbc,0x9f,0x38,0x42,0x42,0x8c,0x9e,0xf,0xad,0x14,0x98,0x4,0x72,0x1f,
0x73,0x5a,0x6b,0x87,0x73,0xa9,0xab,0xfb,0xf5,0x83,0x19,0x57,0xe0,0xf4,0xe3,0x8f,
0xd6,0xea,0xd9,0xf2,0xb0,0x5d,0x35,0xab,0x25,0x94,0xaf,0xf6,0xef,0xbf,0x7f,0x94,
0xe5,0x3b,0xef,0x18,0x3d,0x23,0x42,0x14,0x66,0x8e,0x45,0x5c,0x47,0x5,0xce,0x6f,
0xdb,0x96,0xef,0xa8,0xdb,0x95,0xc6,0x3f,0xfd,0x64,0xad,0x87,0xe3,0x16,0x3c,0x1,
0xbd,0x30,0x63,0xdf,0x3e,0x87,0x9,0x26,0xcf,0x8c,0x76,0x96,0x5b,0xed,0xf9,0xe7,
0x21,0xf9,0xe3,0x14,0xb0,0x4,0x2,0x58,0xe,0x56,0xc9,0xae,0x91,0xf5,0xb1,0xed,
0x48,0x1f,0x1f,0xf8,0xf0,0x19,0x94,0xb2,0xde,0x2d,0x25,0xcb,0x6b,0x7f,0xfc,0xa,
0x32,0xc9,0xed,0xbb,0xef,0x9c,0xb6,0xb8,0x8f,0x9,0x72,0x1a,0x34,0xc8,0xe8,0x59,
0x11,0xa2,0x30,0x71,0xbc,0xe3,0xf6,0x6a,0x50,0xf3,0x21,0x43,0xa8,0x8d,0x52,0xe,
0xde,0xdb,0xb6,0x59,0x5e,0xcb,0xb7,0x5a,0x0,0xb9,0x15,0x34,0xcc,0xc3,0xcc,0x93,
0x6c,0xef,0x75,0xee,0x9c,0xd7,0x6a,0x58,0x69,0xa5,0xc0,0x3c,0x3,0x79,0x14,0x4b,
0xd5,0x4c,0xf3,0x67,0xa6,0x92,0xb6,0xbf,0xee,0xdb,0x47,0x1d,0x50,0x6,0xbd,0xaa,
0x56,0xb5,0x7a,0x20,0xcb,0x90,0xcc,0xcd,0x67,0xcf,0x4e,0xed,0x5c,0x29,0xc7,0xae,
0xd5,0xe8,0xd1,0x40,0x34,0x85,0x50,0x4e,0x8e,0xd1,0xf3,0x23,0x44,0xc1,0x70,0xbf,
0xc8,0xa1,0xa5,0x56,0x95,0xd5,0x4a,0x8e,0xfc,0x8b,0xe5,0xb5,0x5c,0x9b,0xfe,0xec,
0x89,0xbd,0x4d,0x9a,0x5c,0xdb,0x9b,0xb8,0x24,0x34,0xe2,0xea,0x55,0xa3,0x67,0x47,
0x2f,0x5,0x3e,0x81,0x58,0x58,0x5e,0xbb,0xb5,0xbc,0x3d,0x65,0xb5,0xb7,0x2e,0xfe,
0x6d,0x19,0x80,0xa5,0x7,0xe,0xd0,0xd1,0x9c,0xf9,0x38,0xea,0xe3,0x93,0x12,0x7a,
0xbe,0x5d,0xa8,0xeb,0xe5,0xcb,0x46,0xcf,0x8f,0x10,0xf9,0x51,0xb9,0xd6,0xee,0x57,
0x82,0xb9,0x6c,0xd9,0xec,0xaf,0xf8,0x70,0xf6,0x92,0x75,0xeb,0xa8,0x1e,0x8d,0x42,
0x62,0xf3,0xe6,0x56,0xf,0xc4,0x93,0x63,0x70,0xee,0xc2,0x85,0x9c,0xbd,0xaa,0x8d,
0x79,0x43,0x93,0x26,0x37,0x29,0x99,0xa6,0x52,0x52,0x92,0xd1,0xf3,0xa3,0xb7,0x42,
0x93,0x40,0x2c,0xca,0x78,0x57,0x99,0xe9,0x7f,0xc1,0xc3,0x43,0xfd,0x96,0x2b,0x28,
0xce,0xd1,0xd1,0xba,0x97,0x63,0x7e,0x14,0x13,0xcf,0xc0,0x95,0x4b,0x97,0xd4,0x39,
0xca,0xd7,0xf4,0x86,0x8f,0x4f,0x7a,0xcf,0xf8,0x2d,0x53,0x6,0x1f,0x3a,0x64,0xf4,
0xfc,0x8,0x91,0x1f,0x58,0xe,0x72,0x52,0x6f,0x50,0x1a,0xed,0x5e,0xbf,0xfe,0xc1,
0xf1,0xc,0xd6,0x96,0x86,0x29,0x18,0xff,0xf7,0xdf,0xca,0x7b,0x74,0x59,0x4d,0x69,
0xda,0xf4,0x7a,0x64,0xfc,0xc8,0xf0,0x4a,0x71,0x71,0x46,0xcf,0x8f,0xb5,0x14,0xc0,
0x67,0x20,0xff,0x9b,0xe5,0x1f,0x38,0x47,0x35,0xf7,0x30,0xdb,0x37,0x6a,0xc4,0xd3,
0x79,0x9,0x7e,0x88,0x8f,0xb7,0x7a,0x20,0xb9,0x6f,0x81,0x28,0x3b,0xd5,0x9e,0x7c,
0x22,0x3a,0xda,0x89,0xdd,0x38,0x80,0xef,0xbf,0xd6,0x27,0x67,0xb6,0xb,0xf1,0x30,
0x6f,0x6f,0x93,0xc9,0xa9,0x8f,0xfb,0xe0,0xc0,0x65,0x63,0xc7,0x72,0x0,0xea,0x53,
0xed,0x1f,0x7f,0x34,0x2c,0x71,0xb4,0x2,0xe0,0x7b,0xfe,0x3c,0xfd,0x8c,0x9b,0x4a,
0x44,0xb3,0x66,0x85,0x2d,0x71,0x58,0x14,0xba,0x15,0xc8,0xbf,0x59,0x76,0xa2,0x52,
0x3,0xbe,0xcc,0x2f,0xed,0xd9,0x43,0x6f,0x20,0x5,0xbf,0x54,0xab,0x66,0x58,0x40,
0xf5,0xb1,0x10,0xbb,0x8f,0x1c,0x51,0xd6,0x2a,0x7f,0x29,0xee,0x7d,0xfa,0x5c,0x2f,
0x15,0x37,0x6c,0xf2,0x7a,0x3,0x12,0x9c,0x10,0x79,0x40,0xe9,0xc9,0x6e,0xf6,0x41,
0x9,0x2e,0x2e,0xca,0x3f,0xd4,0x96,0x63,0x57,0xad,0xb2,0xda,0x39,0x1c,0x8f,0xc0,
0x17,0xe0,0x85,0x5,0x31,0x31,0xbc,0x85,0x6e,0xd2,0xa4,0xd6,0xad,0xef,0xdf,0x39,
0xb8,0x70,0xc1,0xe8,0x79,0x32,0x4a,0xa1,0x4f,0x20,0x16,0x96,0x87,0xed,0xaa,0xb3,
0x92,0x69,0xfb,0xe6,0xee,0xdd,0xd8,0x40,0x35,0x71,0xb3,0x56,0x2d,0xc3,0x2,0x72,
0x5,0xf0,0xda,0xcd,0x9b,0xfc,0x37,0x7,0x71,0xc2,0xa8,0x51,0x69,0x97,0x13,0x7,
0x84,0xf9,0x2f,0x5b,0x76,0xff,0xc3,0x82,0xf3,0x1a,0xa0,0x10,0xf,0x23,0xba,0x7f,
0xfe,0xc6,0x47,0x1f,0x71,0x31,0x35,0x16,0xb5,0xa7,0x4f,0xc7,0x3f,0x54,0x15,0xdd,
0x4a,0x96,0x34,0x2c,0xa4,0x61,0x0,0xf,0x3d,0x7d,0xda,0x14,0xcd,0x2d,0x28,0xac,
0x75,0xeb,0x82,0xfe,0x70,0xfc,0x49,0x49,0x2,0xf9,0x97,0x52,0xa5,0x2a,0x57,0xf6,
0xf7,0x77,0x70,0x30,0x1d,0x37,0xcd,0x51,0xaa,0x6c,0xdc,0x68,0xd8,0x43,0xb9,0x7f,
0x61,0x5f,0xd4,0x46,0x93,0xfd,0xfb,0x69,0x97,0x79,0x33,0x27,0xfb,0xfa,0xa6,0x1e,
0x4f,0xa6,0xb0,0x8f,0xf5,0x2f,0x26,0x29,0x84,0x35,0x58,0x4a,0x8b,0xa8,0x2e,0xaa,
0xbf,0xfa,0xd6,0xc2,0x85,0x30,0xa1,0x3c,0x52,0x5b,0xb6,0x34,0x3a,0x2e,0xbe,0xc0,
0xbb,0x78,0xe8,0xde,0xbd,0xe6,0xa2,0x6a,0x15,0xbb,0xf2,0xdd,0xba,0xdd,0xa4,0x64,
0xa,0xa1,0x1b,0x37,0x8c,0x8e,0x2b,0xaf,0x28,0x74,0xcf,0x40,0x1e,0xe7,0xe6,0xcd,
0xf3,0xe7,0xc3,0xc3,0xd3,0xd3,0xd3,0x3c,0x8a,0x66,0xdb,0xe,0x6c,0xd7,0x8e,0xf,
0x62,0x30,0xec,0x56,0xaf,0x36,0x3a,0x2e,0xcb,0xd2,0x9d,0xc3,0x4d,0x3d,0xe8,0xf5,
0x13,0x27,0x1c,0xcf,0xbb,0x45,0x4,0x6c,0xd,0xc,0x74,0x61,0x17,0xe,0x66,0x7b,
0x7b,0xa3,0xe3,0x13,0xe2,0x69,0x54,0xf4,0xab,0xe8,0xe7,0x77,0xa8,0x68,0x51,0xc7,
0x61,0xee,0x27,0x3,0x93,0xc6,0x8f,0x37,0x6f,0x57,0x57,0xa8,0xff,0xfc,0xf1,0x47,
0x5e,0x49,0x1c,0x96,0x9d,0xe3,0x69,0xc5,0x8a,0x9e,0xb0,0x2b,0xdf,0xbe,0xbd,0x24,
0x8e,0xff,0x4e,0x56,0x20,0x4f,0x84,0xe8,0xfe,0x43,0xee,0xe0,0x60,0x54,0xa7,0xd6,
0x74,0x67,0xc2,0x4,0xa4,0x22,0x1,0x53,0xc8,0xf8,0xf9,0xcb,0x7d,0x7d,0x10,0xbf,
0x29,0x43,0x50,0x7f,0xdc,0xb8,0xd4,0x1b,0xf1,0xb,0x43,0x47,0xad,0x5a,0x75,0xff,
0x43,0xb9,0xd5,0x25,0xf2,0x16,0xa7,0x5b,0x6e,0x4d,0x83,0x94,0x8e,0x1d,0xb1,0x8e,
0x7a,0x72,0x83,0x39,0x73,0xc,0x7b,0x9d,0xfe,0x51,0x7a,0xf0,0x27,0xdc,0x3d,0x22,
0x22,0x75,0x5e,0xe2,0xe8,0xb0,0x57,0x47,0x8c,0xb8,0xff,0x43,0xf9,0xff,0xe8,0x51,
0x8c,0xbf,0x0,0xe6,0x33,0xce,0xef,0xbb,0x5f,0x9,0xf4,0xec,0xd1,0x43,0x9d,0x82,
0x28,0x44,0x2c,0x59,0x62,0xb5,0x3,0x67,0x9e,0x10,0x6f,0xe6,0xf,0x79,0xfc,0xcf,
0x3f,0xd3,0x2c,0x74,0xe2,0xa3,0x63,0xc6,0xa4,0x6e,0x4a,0xac,0x13,0xde,0xec,0xd8,
0x31,0xa3,0xe3,0x12,0x85,0xd3,0xfd,0x1d,0xe1,0x6f,0xbd,0x85,0xc5,0xd4,0x91,0xf,
0x4d,0x9f,0x4e,0x13,0xb1,0x16,0xa3,0x9a,0x34,0x31,0x3a,0x2e,0x8b,0x7,0x65,0xd5,
0x2d,0xd5,0x71,0x7b,0xc6,0x6f,0x99,0x32,0x78,0xfd,0x7a,0xa3,0xe3,0xca,0x2f,0x24,
0x81,0x3c,0xa3,0x7,0x55,0x3d,0x6f,0x98,0xb6,0xd0,0xe0,0x4d,0x9b,0x70,0x3,0x23,
0x31,0xe6,0xe5,0x97,0x8d,0x8e,0xeb,0x21,0xe5,0x50,0x8e,0xfb,0xec,0xd9,0x43,0xd7,
0xe8,0x1a,0xaf,0xf4,0xf7,0x4f,0x49,0x89,0x8f,0xf,0xf,0x3f,0x7e,0xdc,0xe8,0xb0,
0x44,0xc1,0xe4,0xf0,0x99,0xfb,0x95,0x40,0xcf,0x5a,0xb5,0x14,0x17,0xec,0xe2,0x63,
0x13,0x26,0x60,0x2e,0x56,0x52,0xce,0x7b,0xef,0xe5,0x99,0x15,0x7b,0x2e,0xde,0x8e,
0xeb,0x58,0x7b,0xee,0x1c,0x47,0xe2,0x1c,0x4a,0xbe,0xfb,0xae,0x54,0xd1,0x7e,0x36,
0x79,0xe6,0x1f,0x34,0xbf,0xba,0x7f,0x92,0x59,0xa9,0x52,0xf4,0x23,0xe6,0x99,0x2,
0x56,0xae,0xa4,0x36,0x18,0x82,0xe9,0x9d,0x3a,0x19,0x1d,0xd7,0x43,0x72,0xcf,0x21,
0x40,0x17,0xd4,0xc4,0xf1,0x8d,0x1b,0x69,0x19,0x6d,0x53,0xb7,0x87,0x87,0x4b,0x42,
0x11,0xcf,0xe3,0x7e,0xad,0xb7,0xba,0x75,0x31,0x1d,0x11,0xbc,0x37,0x20,0x0,0xd7,
0xe0,0x5,0x8f,0xae,0x5d,0xf3,0x5a,0xc2,0x78,0x20,0xf7,0xe8,0x58,0x6e,0x6d,0x4a,
0xb5,0x75,0xf9,0xf0,0xc3,0xb4,0xa8,0xb8,0x61,0x21,0x74,0xeb,0x96,0xd1,0x61,0xe5,
0x57,0x79,0xef,0x1f,0x38,0x5f,0xfb,0xcf,0xeb,0x87,0xea,0x2e,0xee,0x81,0x36,0xb3,
0x66,0x51,0x6b,0x7c,0x83,0x86,0xc5,0x8a,0x19,0x1d,0xd9,0x23,0x4d,0xe6,0xd3,0x78,
0xe7,0xe0,0x41,0xe,0xc4,0x2b,0xf4,0xc3,0x9c,0x39,0x69,0xe9,0x89,0x49,0xb1,0xe7,
0x36,0x6d,0x2,0x80,0xc8,0x48,0xb3,0xd9,0xe8,0xf0,0x44,0x5e,0x42,0xe4,0x78,0xca,
0x2d,0x79,0x5c,0xa3,0x96,0x2d,0x71,0x90,0xfc,0xd4,0xfd,0xc3,0x87,0xd3,0x38,0x9c,
0xc4,0xb8,0xbc,0x5b,0x75,0x9a,0xbf,0x84,0x3,0x4e,0xdd,0xbb,0x87,0x5f,0xf1,0x11,
0xd2,0xfd,0xfd,0xd3,0x66,0x24,0xc,0xa,0x3d,0x18,0x11,0x91,0xfb,0xa9,0x3c,0xdb,
0x78,0x4e,0x92,0x40,0x74,0xe2,0x50,0xda,0xdd,0x6d,0x7c,0xf5,0xda,0xb5,0x95,0x9e,
0xfc,0x97,0xb9,0xff,0xda,0xb5,0x86,0xef,0x2b,0x79,0x52,0xb9,0x67,0xcd,0xb3,0x23,
0x7f,0x86,0xef,0x17,0x2d,0xca,0xda,0x68,0x3b,0xd8,0x76,0xc3,0xaa,0x55,0xb7,0xeb,
0xc6,0x2e,0xa,0xa1,0x94,0x14,0xa3,0xc3,0x13,0xd6,0x51,0xfc,0xd7,0x6a,0xbe,0xc1,
0xec,0xec,0x6c,0x5b,0x33,0xbb,0x7d,0xce,0xc4,0xf,0x3e,0x50,0xca,0xd1,0x59,0x76,
0xff,0xe8,0x23,0xd8,0x61,0x31,0xfe,0xaa,0x51,0xc3,0xe8,0xf8,0x1e,0x2b,0x77,0xdf,
0x86,0x9a,0x81,0x43,0xd4,0xb6,0x57,0x2f,0xb9,0x45,0xa5,0xf,0x49,0x20,0x3a,0xb3,
0xbc,0x66,0x7b,0x7b,0x96,0x72,0x38,0x3b,0x32,0x3c,0x1c,0x91,0xb4,0x2,0x7,0x86,
0xe,0x45,0x2c,0x76,0xa3,0xb8,0x92,0xe7,0x5f,0xa3,0xe6,0x10,0xa4,0xa1,0x4f,0x66,
0x26,0x35,0xe2,0xd1,0xec,0xb0,0x79,0x33,0x7,0xf2,0x40,0x3e,0xb2,0x6c,0x59,0x5a,
0x54,0x52,0xb9,0xf8,0xb5,0xf7,0xcf,0x5b,0x91,0x95,0x4a,0xfe,0xe6,0xed,0x6d,0x32,
0x39,0x16,0x71,0x1d,0x55,0xb5,0x79,0xab,0x56,0xb4,0x41,0x19,0x80,0x8a,0xfd,0xfb,
0xf3,0x5,0x34,0x84,0x47,0xe7,0xce,0x14,0xc,0x47,0xac,0x2e,0x52,0xc4,0xe8,0x18,
0x1f,0xab,0x1a,0x5a,0xe3,0xb6,0xaa,0xc2,0x1f,0x4b,0xb8,0x63,0x44,0x44,0xf1,0x4e,
0xe6,0x1c,0xbb,0x56,0x1,0x1,0xc9,0x94,0x4c,0x21,0x74,0xef,0x9e,0xd1,0xe1,0x15,
0x54,0x92,0x40,0xac,0xcc,0xe1,0x4e,0x95,0xd4,0x80,0x16,0xd,0x1a,0x28,0x7d,0xd4,
0xf3,0xd8,0xba,0x78,0x31,0xa2,0xa9,0x1b,0x4d,0x79,0xe5,0x15,0xa3,0xe3,0x7a,0x6a,
0x1f,0x60,0x18,0xbe,0x4c,0x4b,0xe3,0x29,0x78,0x83,0xde,0xd8,0xb6,0x8d,0x72,0x78,
0x1c,0xa2,0x23,0x23,0x53,0x4b,0x56,0xfe,0xd9,0xc6,0x1c,0x15,0x25,0xe5,0xea,0xf3,
0x9e,0x60,0x56,0x14,0x87,0xd2,0xee,0x6e,0x39,0x7b,0x1a,0x36,0x54,0x7a,0xf3,0xa7,
0x6a,0x59,0x6f,0x6f,0x1e,0x4c,0xbf,0x29,0x75,0x7c,0x7c,0x2c,0x27,0x6b,0x1a,0x1d,
0xe3,0x53,0xcb,0x3d,0xef,0x47,0x9d,0xa1,0xfc,0xc3,0x3b,0x7d,0x7d,0xd3,0x8b,0xc5,
0x3b,0x85,0xed,0x3d,0x7c,0xd8,0xe8,0xb0,0xa,0xb,0x49,0x20,0x86,0xa9,0xb9,0x21,
0x98,0xed,0xec,0x9c,0xf8,0xae,0x77,0x16,0x2,0x3,0x31,0x15,0x69,0xd4,0x23,0x20,
0x0,0xd3,0xe9,0x4d,0x54,0xb1,0xb3,0x33,0x3a,0xba,0x67,0xc5,0x8b,0x90,0xca,0x81,
0xd7,0xae,0xd1,0xc7,0xec,0x4d,0x81,0x3b,0x76,0x50,0x49,0x72,0xa5,0x66,0x3b,0x76,
0x64,0x76,0xb7,0xbb,0xac,0x7e,0xb9,0x6b,0x57,0x46,0xd8,0xd9,0x79,0x61,0x7b,0x53,
0x53,0x8d,0x8e,0xb3,0xa0,0xb2,0xdc,0x7a,0x2a,0x52,0x29,0x67,0x4f,0x76,0x97,0x36,
0x6d,0xb8,0x4,0x56,0xd0,0xad,0x76,0xed,0x10,0x85,0x77,0xd4,0xad,0x6d,0xdb,0x5a,
0x4e,0xce,0x34,0x3a,0xce,0x67,0x65,0x59,0x11,0x23,0x16,0x3f,0xa3,0xd8,0x94,0x29,
0x69,0x11,0xf6,0xb1,0xb6,0x2e,0x53,0xa7,0x2,0x67,0x7c,0x42,0x28,0x2b,0xcb,0xe8,
0xf8,0xa,0x1b,0x49,0x20,0x79,0xc4,0x83,0xd7,0x82,0xdb,0x9a,0x8e,0xd2,0x9f,0xb3,
0x67,0x63,0x21,0x7a,0xa1,0x78,0xdb,0xb6,0x46,0xc7,0xa5,0x99,0x86,0x18,0x4,0x3f,
0xb3,0x19,0xc7,0x11,0x83,0x9e,0xc7,0x8f,0x23,0x1,0x2f,0x71,0xdf,0x3,0x7,0xd0,
0x88,0xb6,0xe1,0x9f,0xfd,0xfb,0x6d,0x1c,0x79,0x9b,0x9d,0xef,0xa1,0x43,0x57,0x77,
0x27,0x94,0xf,0xa1,0x6b,0xd7,0x8c,0xe,0x37,0xaf,0x2a,0xdb,0xc2,0x6d,0x60,0xe0,
0xb0,0x72,0xe5,0x72,0x7e,0xa0,0xf,0xe9,0x74,0xc3,0x86,0xa4,0x60,0xb7,0x3a,0xc0,
0xcb,0xb,0xc5,0xb0,0x93,0xda,0x37,0x6e,0x8c,0x7a,0x78,0xd,0x21,0x6f,0xbc,0x91,
0x5f,0x6e,0x91,0x3e,0x29,0xee,0xcc,0xbf,0x51,0xc4,0xf6,0xed,0xca,0x69,0xec,0x55,
0xdf,0xf2,0xf3,0x4b,0x39,0x96,0xd8,0x35,0x6c,0x6f,0x6c,0xac,0xd1,0x71,0x15,0x76,
0x92,0x40,0xf2,0x28,0xe7,0x40,0x77,0xf7,0xc0,0xa4,0xb7,0xdf,0x56,0xc7,0xc1,0xb,
0xaf,0xcf,0x98,0x41,0x95,0x70,0x0,0x83,0xaa,0x57,0x37,0x3a,0x2e,0xbd,0x59,0xde,
0xcf,0xa7,0x5f,0x30,0x8f,0x63,0x4e,0x9e,0x64,0xa2,0x31,0xf8,0xe3,0xd4,0x29,0x8a,
0xc7,0xc,0xc5,0xe7,0xf4,0x69,0x53,0x55,0x5,0x66,0xef,0xd3,0xa7,0xaf,0x7d,0x7a,
0xae,0x77,0x91,0xb0,0xfb,0x7,0xf6,0x84,0x90,0xaa,0x1a,0x1d,0xf7,0xf3,0x8,0x66,
0x45,0x29,0x3b,0xbf,0xea,0x9a,0xcc,0x0,0x57,0x57,0xf3,0x52,0x75,0x26,0xb9,0x79,
0x7a,0x72,0x3f,0x5c,0x42,0xdd,0x5a,0xb5,0x88,0x79,0x1a,0x6a,0x79,0x7a,0xb2,0x2b,
0xb7,0xa2,0xfd,0x75,0xea,0x50,0x5f,0xf2,0xc2,0x5e,0xf,0xf,0xa3,0x63,0xd6,0x5d,
0xee,0xcb,0x1c,0xea,0x2e,0x2a,0xa2,0x36,0xf3,0xf3,0x4b,0x6f,0x10,0x3f,0x32,0xbc,
0xd2,0x8e,0x1d,0x46,0x87,0x25,0xfe,0x3f,0x49,0x20,0x79,0xde,0xfd,0xa3,0x3a,0x1d,
0xdb,0xa7,0x97,0x2b,0x63,0x3f,0x78,0x30,0xba,0xf0,0xd7,0xfc,0x62,0x60,0x20,0x5,
0x52,0x3,0x64,0x94,0x29,0x63,0x74,0x74,0x86,0x19,0xcd,0xc7,0x10,0x9f,0x95,0xc5,
0xcd,0xc9,0x15,0x47,0x93,0x93,0x69,0x3e,0xa6,0x53,0x91,0xc4,0x44,0xb6,0xe7,0x4,
0x36,0x27,0x25,0xa1,0xb6,0xb2,0x92,0xd7,0x5f,0xb8,0x40,0xa9,0x5c,0xc,0x2f,0xa6,
0xa6,0xaa,0xbd,0xd5,0x25,0xe4,0x91,0x9a,0xaa,0x84,0x2b,0x35,0x15,0xa7,0x94,0x14,
0xda,0x4c,0x8d,0x72,0x7a,0xdd,0xbc,0x49,0xf1,0x34,0xdc,0x26,0xf1,0xc6,0xd,0x5a,
0x43,0x4e,0x39,0x6e,0xcc,0x39,0x7d,0xd1,0xd6,0x74,0x34,0x33,0xd3,0x5c,0x21,0xf3,
0x75,0x73,0xbd,0x3b,0x77,0x2c,0xdd,0x99,0x2e,0x17,0x39,0x61,0x3a,0x5a,0xac,0x98,
0xcd,0xd7,0xd8,0x69,0xae,0x57,0xa4,0x8,0xf7,0xe6,0x54,0x9b,0x44,0x22,0xae,0xc2,
0x73,0x72,0xdc,0x4a,0x97,0xe6,0x2e,0x7c,0xd0,0x66,0x6d,0xa9,0x52,0xaa,0xbf,0x7a,
0x46,0x4d,0x75,0x76,0x56,0xc6,0x90,0x3,0xb9,0x38,0x3b,0x73,0x45,0x22,0xde,0xee,
0xe4,0x84,0x4c,0x5e,0x8b,0x56,0x15,0x2b,0x52,0x3c,0xdd,0x42,0x2f,0x37,0x37,0x9e,
0x82,0x35,0x58,0xe9,0xea,0x4a,0x3f,0x71,0x12,0xea,0xb9,0xb8,0xe4,0xf7,0x5b,0x97,
0xcf,0xcb,0x72,0xeb,0x13,0x37,0x11,0xa3,0xc,0x98,0x32,0x25,0xad,0xbf,0x43,0x87,
0xeb,0x25,0xbf,0xfa,0xa,0x38,0x7e,0x62,0xd1,0xe2,0xec,0x6c,0xa3,0xe3,0x13,0xff,
0x9d,0x24,0x90,0x7c,0xa6,0x5c,0xeb,0x72,0xad,0x3f,0xeb,0xf3,0xc2,0xb,0xd9,0x9e,
0x2f,0x74,0xb3,0x4b,0x1c,0x38,0x10,0xd,0x31,0x96,0x77,0x6,0x6,0xe6,0xf7,0x7b,
0xdb,0xa2,0x90,0xc9,0x7d,0x9,0x3,0x33,0x79,0x38,0xdf,0x9c,0x3b,0x97,0x3b,0x98,
0xe6,0xda,0x61,0xe6,0x4c,0xd9,0xd8,0x97,0xbf,0x48,0x2,0xc9,0xe7,0x2c,0x3b,0xe1,
0x95,0x74,0x4e,0x50,0xa6,0xfa,0xf9,0x61,0x24,0xcd,0xa1,0x52,0x43,0x87,0x62,0x25,
0x22,0x30,0xc4,0xd1,0xd1,0xe8,0xf8,0x84,0x0,0x0,0x8c,0xe2,0x9,0xa8,0x90,0x9a,
0xca,0xfb,0xe9,0x1a,0xbf,0x17,0x11,0x1,0x28,0xf6,0x76,0xe5,0x67,0xcf,0x96,0x84,
0x91,0xbf,0x49,0x2,0x29,0x60,0x1e,0xec,0x3b,0x71,0xb0,0x19,0x94,0x3d,0xd3,0xc7,
0x87,0xff,0xe6,0xbb,0x98,0x12,0x18,0x58,0x58,0x9e,0xa1,0x88,0x3c,0x22,0xc,0x63,
0x10,0x9d,0x98,0xc8,0x31,0x0,0x30,0x67,0x8e,0xed,0xa9,0x7f,0x36,0x66,0xb9,0x2d,
0x59,0x72,0x75,0xf7,0xd5,0xdd,0x5f,0xac,0xfe,0xe7,0x1f,0xa3,0xc3,0x13,0xda,0x90,
0x4,0x52,0x8,0x78,0x7b,0x9b,0x4c,0x8e,0xe,0x6e,0xae,0xd5,0xaa,0xbe,0xfb,0x2e,
0x7d,0x4d,0xa,0x2f,0x1d,0x36,0xc,0xfd,0x1,0xc,0xf0,0xf2,0x32,0x3a,0x36,0x51,
0x30,0x58,0xe,0x3c,0xc3,0x49,0x7e,0x8b,0x5f,0x8d,0x88,0x48,0x8b,0x4a,0xc,0x8a,
0x1b,0xf6,0xdd,0x77,0x80,0x6c,0x34,0x2d,0xc8,0x24,0x81,0x14,0x52,0xce,0x6f,0xba,
0x7d,0x17,0xd0,0xa2,0x5a,0x35,0x75,0x29,0x5e,0xa7,0x72,0xfd,0xfb,0xe3,0x1c,0x79,
0xf2,0xe2,0x7e,0xfd,0xe4,0x59,0x8a,0xf8,0x9f,0xda,0xa3,0x3d,0x3c,0xd2,0xd3,0xf9,
0x5,0x7e,0x1,0xa1,0x91,0x91,0xbc,0x9e,0x22,0x4d,0xa6,0x2f,0xbf,0x4c,0xbf,0x91,
0x90,0x38,0x29,0xe6,0xf4,0x69,0xa3,0xc3,0x13,0xd6,0x25,0x9,0x44,0xe4,0xba,0xbf,
0xb1,0xd1,0xb1,0xfd,0xdd,0x73,0x59,0x57,0x3a,0x75,0xa2,0xc,0x9a,0x44,0xd7,0x7a,
0xf6,0xe4,0x60,0x74,0x46,0x56,0xfb,0xf6,0xd4,0x3,0xc7,0xf0,0x5d,0xd1,0xa2,0x46,
0x47,0x29,0xac,0x83,0xd7,0xe1,0x4d,0x74,0xbd,0x7b,0x97,0x96,0xe1,0x22,0x9a,0x6d,
0xdf,0xce,0x35,0xf8,0x7b,0x7a,0xef,0x9b,0x6f,0xd2,0x82,0x8b,0xfe,0x68,0xf3,0xf5,
0xd6,0xad,0xb2,0x71,0x4f,0x0,0x92,0x40,0xc4,0x63,0x38,0x6d,0xa9,0xde,0x7f,0x4c,
0xb5,0x12,0x25,0x80,0xac,0xf,0x6d,0x57,0x74,0xea,0xc4,0x15,0xe9,0x1f,0xae,0xe1,
0xe3,0x83,0x58,0x8c,0xc7,0xfb,0x6d,0xda,0xd0,0x10,0xa4,0xc3,0x53,0x8e,0xd4,0xcd,
0xaf,0x1e,0x54,0xab,0x6d,0xce,0xcd,0x71,0x7e,0xe7,0x4e,0x22,0xda,0x4,0xb7,0xd,
0x1b,0x94,0x21,0xf6,0xe1,0xb6,0x9b,0xbf,0xff,0xfe,0x7a,0xe4,0x19,0x9f,0x10,0xba,
0x7d,0xdb,0xe8,0x38,0x45,0xde,0x24,0x9,0x44,0x3c,0x13,0xcb,0x99,0xd6,0x77,0xfa,
0xd9,0x8e,0x78,0x61,0x74,0xa3,0x46,0x0,0xa0,0x56,0x6e,0xd5,0x8a,0x6,0xe1,0x20,
0x1a,0x77,0xec,0x88,0x18,0x1a,0x87,0x8b,0x35,0x6b,0x1a,0x1d,0xa7,0xb8,0x8f,0x47,
0xf3,0x68,0x74,0x4e,0x48,0x40,0x22,0x12,0xd1,0x7b,0xcf,0x1e,0x6c,0xc0,0x6,0xf2,
0xd9,0xb3,0x87,0xbe,0xb6,0x6b,0x91,0xfd,0xed,0x8e,0x1d,0xa9,0x9d,0x63,0x96,0x4d,
0x8b,0xcd,0xc8,0x30,0x3a,0x4e,0x91,0xbf,0x48,0x2,0x11,0xba,0x70,0x8e,0x76,0x5f,
0x30,0x6e,0x6a,0xd5,0xaa,0x6a,0x38,0xbf,0xaf,0x36,0x6e,0xdc,0x98,0x6a,0x90,0x3,
0xbd,0xef,0xe5,0xc5,0x53,0xd0,0x83,0xd3,0x1b,0x36,0x94,0xb7,0xc2,0xb4,0xc5,0x17,
0xe0,0x85,0x5,0x31,0x31,0x14,0x84,0x75,0xe4,0x70,0xe8,0x10,0x9f,0xe5,0x74,0x5e,
0x75,0xe0,0x80,0xa9,0xb8,0xb2,0x50,0xad,0xb4,0x6f,0xdf,0xf5,0xc8,0xf8,0x91,0xe1,
0x95,0xe2,0xe2,0x8c,0x8e,0x53,0x14,0x2c,0x92,0x40,0x84,0x21,0xca,0xb5,0x76,0xbf,
0x12,0xcc,0x65,0xcb,0xe6,0x6c,0xe4,0xee,0x39,0xa6,0x7a,0xf5,0xf8,0x28,0x4a,0xf0,
0x51,0x4f,0x4f,0xba,0x43,0xd3,0x70,0xd9,0xd3,0x13,0x7d,0xb0,0x5,0x37,0x3d,0x3d,
0xd1,0xc,0x26,0xb4,0xab,0x5a,0x15,0x87,0xb0,0x0,0xb3,0x4c,0x26,0xa3,0xe3,0xb6,
0x9a,0x8e,0x1c,0x8a,0xab,0x39,0x39,0xd8,0x4f,0xf6,0x58,0x71,0xee,0x1c,0x66,0xa2,
0x1a,0x36,0x9d,0x3e,0xcd,0xc5,0x78,0xc,0x2a,0x9c,0x3a,0x45,0xf5,0x90,0x41,0xf5,
0x4e,0x9d,0xb2,0x1d,0x6e,0xea,0xa6,0x5e,0x3a,0x72,0xe4,0xca,0xf2,0xb8,0x61,0x61,
0x15,0xae,0x5f,0x37,0x3a,0x6c,0x51,0xb8,0x48,0x2,0x11,0x79,0x9a,0x65,0x5f,0xcb,
0xcd,0xad,0xca,0x47,0xd9,0xc3,0xab,0x55,0x33,0x31,0xf,0x65,0x72,0x75,0xe5,0x7d,
0xca,0x61,0xfa,0xd5,0xcd,0x8d,0x5e,0x62,0x4f,0xc,0x77,0x73,0xe3,0xa6,0x74,0x3,
0xad,0xdd,0xdc,0xe8,0x4d,0x84,0x40,0xad,0x50,0x1,0x83,0xe1,0x88,0xde,0x65,0xcb,
0xf2,0x54,0x1e,0x8a,0x14,0x27,0x27,0xaa,0x44,0x43,0xd0,0xa6,0x78,0x71,0x6b,0xc5,
0xcd,0x17,0xf8,0x4b,0xec,0xba,0x7d,0x9b,0x66,0xd0,0x2e,0xac,0x48,0x49,0x41,0x30,
0xe,0xa3,0xfc,0xf5,0xeb,0xfc,0x37,0x37,0x46,0xf3,0xbf,0xff,0xa6,0xb5,0x78,0x17,
0xe3,0x92,0x92,0xf8,0x12,0x9d,0xc2,0x9c,0xc4,0x44,0x6a,0xa2,0x36,0xe0,0xba,0x89,
0x89,0x66,0xa2,0xb9,0xc4,0x49,0x49,0xa5,0x3a,0xaa,0x8b,0x6d,0xe7,0xc4,0xc6,0xca,
0x79,0x16,0x22,0x2f,0x93,0x4,0x22,0xa,0x5,0x8f,0x8,0x8f,0x88,0xa1,0xdb,0x8b,
0x14,0x49,0x77,0xc9,0xbc,0x5b,0x74,0x84,0x93,0x93,0xe9,0x92,0x7d,0x45,0xe5,0x5d,
0x7b,0x7b,0x75,0x82,0x3a,0x1,0x70,0x70,0xb0,0x7c,0xcf,0x3c,0x17,0xb5,0x4c,0x95,
0x8a,0x14,0xa1,0x57,0xd4,0x8,0x5a,0xfb,0x9f,0xa3,0x88,0xf9,0x4f,0x65,0x18,0xf7,
0xba,0x73,0xc7,0x34,0x14,0x7f,0x98,0x2f,0x64,0x66,0x5a,0x7e,0xae,0x4c,0x54,0x26,
0x2,0xe9,0xe9,0xe6,0x97,0xee,0x5d,0x54,0x37,0xdd,0xbb,0xe7,0x90,0x5c,0xa4,0xe8,
0xdd,0xd9,0xa9,0xa9,0x71,0xc3,0xe2,0x86,0xcd,0xed,0xf0,0x9f,0xef,0x9,0x21,0x84,
0x10,0x42,0x8,0x21,0x84,0x10,0xe2,0x79,0xfc,0x1f,0x89,0xfa,0x59,0xf,0x37,0x41,
0x9e,0xdc,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,
0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,
0x54,0x32,0x33,0x3a,0x32,0x34,0x3a,0x34,0x36,0x2b,0x30,0x38,0x3a,0x30,0x30,0x7f,
0x6a,0xb8,0x64,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,
0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,
0x34,0x54,0x32,0x33,0x3a,0x32,0x34,0x3a,0x34,0x36,0x2b,0x30,0x38,0x3a,0x30,0x30,
0xe,0x37,0x0,0xd8,0x0,0x0,0x0,0x4b,0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,
0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,
0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,0x6e,
0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,0x6e,
0x36,0x36,0x34,0x36,0x30,0x6d,0x31,0x34,0x79,0x69,0x2f,0x79,0x75,0x61,0x6e,0x71,
0x75,0x61,0x6e,0x2e,0x73,0x76,0x67,0xe6,0x31,0xf6,0x28,0x0,0x0,0x0,0x0,0x49,
0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/homepageon.png
0x0,0x0,0x37,0x24,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x8c,0xdc,0xf5,0x7d,0xe7,0xf1,0xd7,0x77,0x3c,0xbb,0x2d,0x32,0xc7,0xae,
0x23,0xc5,0x8a,0x64,0x64,0xec,0x2a,0xa,0x12,0x18,0xb3,0xa1,0x55,0x2d,0x52,0x2c,
0x7c,0x9c,0x72,0x9,0x7,0x14,0x27,0x4d,0x55,0x12,0x97,0xc6,0xa8,0x55,0xa0,0xe1,
0x72,0x75,0xae,0x97,0x84,0x70,0x55,0x70,0xa2,0xb,0xa4,0xe9,0x25,0xf5,0x5d,0xe3,
0x4,0xa2,0x56,0x38,0x6d,0xdc,0x72,0x6a,0xae,0x31,0x18,0x1a,0xaa,0x9e,0xa8,0x91,
0xdd,0x44,0x8e,0x2e,0xe0,0x60,0x8c,0x64,0x2e,0x92,0x7f,0xc8,0x96,0x22,0x47,0x82,
0x5d,0x37,0x5b,0xe3,0xdd,0xf9,0x7e,0x3f,0xf7,0xc7,0xcc,0xe7,0x3b,0x9f,0xcf,0xe7,
0xfb,0xf9,0xce,0x8f,0x9d,0x99,0xdd,0x9d,0x9d,0xe7,0xc3,0x9a,0xce,0xcc,0x77,0x66,
0x67,0xbf,0x33,0xe3,0xd4,0x2f,0xde,0xef,0xcf,0x8f,0xe4,0x96,0xff,0xf3,0x5e,0x8d,
0x25,0x63,0x1a,0xab,0x8c,0x69,0xbc,0x32,0xa6,0xf1,0xca,0x78,0xe3,0xf6,0xb8,0xc6,
0x2a,0x55,0x8d,0x55,0xc6,0x34,0x96,0x8c,0xa9,0x5a,0xa9,0x6a,0x2c,0xa9,0xaa,0x5a,
0xa9,0x6a,0x55,0xb2,0xca,0xbb,0x54,0x92,0x8a,0x2a,0xaa,0xa8,0x92,0x24,0x4a,0x94,
0xa8,0x92,0x54,0x24,0x49,0x89,0x12,0x25,0x8d,0x63,0x96,0x91,0xa9,0x5f,0x1b,0x93,
0xdf,0xce,0x4c,0x26,0x7b,0x2f,0x33,0x99,0x77,0x2c,0x35,0xa9,0x8c,0x4c,0xfd,0xbe,
0x31,0xeb,0x32,0x65,0xef,0x34,0xc6,0x5c,0x9b,0x29,0x93,0x31,0x46,0x99,0xb2,0x2b,
0x8d,0x31,0xd7,0x9a,0xc6,0x6b,0xdb,0x9f,0x73,0x5f,0xc3,0xfd,0x7d,0xf6,0xbe,0x3d,
0xe6,0x9d,0x93,0xf3,0x18,0x0,0x0,0x18,0x3e,0xf6,0xdf,0x76,0xef,0x58,0xc9,0xbf,
0xf3,0x79,0x36,0x70,0xf2,0x80,0x71,0x8e,0xdb,0x1c,0xe1,0x5c,0xcf,0x65,0xca,0x8e,
0x1b,0x53,0xcf,0x27,0x99,0xb2,0xb9,0xcc,0x64,0xc7,0x33,0x63,0x5e,0x4b,0x4d,0x7a,
0x29,0x35,0xa9,0x32,0x93,0x29,0x35,0xa9,0x7d,0xbc,0x71,0xbb,0x79,0x2c,0xcd,0xd2,
0xe6,0x6d,0xe7,0xb1,0xe6,0x73,0x1b,0x3f,0x6b,0xb2,0xc6,0xc5,0xcf,0x42,0x79,0xfe,
0xb9,0xe7,0xe2,0x82,0x3f,0xa3,0xea,0x58,0x32,0xa6,0xf1,0x55,0xe3,0x1a,0x4b,0xaa,
0x1a,0xaf,0x8c,0xe7,0x97,0x3c,0xf8,0xe5,0xe1,0x6f,0x95,0xaa,0x49,0xb5,0x7e,0x69,
0x4,0xc0,0x4a,0x52,0xd1,0xaa,0x64,0x95,0x12,0xa9,0x71,0x5d,0xc,0x7e,0xf6,0x76,
0x18,0xba,0x4c,0xd2,0xc,0x68,0x95,0xa4,0x92,0xbf,0xa9,0x4a,0x52,0x51,0x66,0x32,
0x25,0x49,0x72,0x83,0x31,0xe6,0xfd,0x95,0xa4,0x72,0x5d,0x66,0xb2,0x1b,0x12,0x25,
0xd7,0x29,0xd1,0x15,0x89,0x49,0xa4,0x44,0xa,0xaf,0xed,0x17,0x17,0xfe,0xae,0x32,
0xb,0x9,0x7e,0xb1,0xbf,0x50,0x0,0x0,0x60,0x79,0xf2,0xb2,0x47,0x49,0xf0,0xf3,
0x9f,0x5f,0xcc,0x7,0xed,0x5e,0xcb,0x34,0xef,0xff,0x54,0xd2,0x4f,0x8c,0xcc,0x6b,
0x46,0xe6,0x7,0x46,0xe6,0x48,0x66,0xb2,0x9f,0x64,0xc6,0x38,0x41,0xae,0x1e,0xde,
0x9a,0x7f,0x4c,0xf3,0xb6,0xf3,0x1c,0x63,0xea,0x81,0x34,0xab,0x17,0xb9,0xbc,0xe0,
0x97,0x99,0x4c,0xbd,0xd6,0xaa,0xaa,0xb1,0xe0,0x37,0xbe,0x6a,0x2c,0xaf,0x6,0xd6,
0xc3,0x5f,0x3d,0xf0,0x55,0x93,0xb0,0xea,0x57,0xa9,0x57,0xfd,0x92,0x4a,0x1e,0xfc,
0x6c,0x95,0xcf,0xd,0x7f,0xee,0x7,0x2d,0x49,0x26,0x69,0x26,0x6d,0x27,0xf8,0xbd,
0xa3,0x92,0x54,0x3e,0x94,0x99,0xec,0xb6,0x4a,0x52,0xb9,0x35,0x33,0xd9,0xdb,0xdc,
0x8a,0x61,0x92,0x24,0x1d,0x85,0x2f,0xb7,0xd2,0xe7,0xfe,0x5e,0xb7,0xea,0xe7,0x7e,
0xe1,0xb1,0xbf,0xc,0x65,0xaf,0x9,0x0,0x0,0x86,0x47,0xec,0xdf,0x6f,0xaf,0xca,
0x67,0xfc,0x40,0x17,0x3e,0xe6,0x56,0xfd,0xdc,0x2a,0x61,0xfe,0xc7,0x78,0xf7,0xdf,
0xd1,0xb8,0xdc,0x22,0xe9,0x63,0x8d,0x97,0xfd,0xa9,0xa4,0x7f,0x34,0x32,0xcf,0x18,
0x99,0xe7,0x8c,0x31,0x97,0xf2,0x9f,0x9,0x2e,0x79,0xf0,0x6b,0xfc,0xce,0xd4,0xf8,
0xa1,0x30,0x35,0x69,0xfd,0xfc,0x32,0xd5,0x2f,0x3d,0xa8,0xc6,0x82,0xdf,0x78,0x65,
0xdc,0x9,0x7f,0xf5,0xd0,0x37,0x56,0x19,0xf3,0x42,0x9f,0xdf,0xee,0xad,0x14,0x5a,
0xbc,0x6e,0x70,0xb3,0x1f,0xa4,0xd,0x83,0xf6,0x8d,0x25,0x49,0x72,0x65,0x66,0xb2,
0xf,0x48,0xba,0x37,0x51,0xf2,0x5e,0xfb,0x73,0xf6,0xcb,0xb2,0x81,0x2f,0x56,0xcd,
0x8b,0x7e,0x11,0x65,0x5f,0x4c,0x24,0xf8,0xb5,0x6a,0xff,0xba,0xbf,0x3,0x0,0x0,
0xc,0xb7,0x30,0xe4,0xb9,0xc7,0xdc,0x56,0xaf,0xbd,0x6f,0x87,0xa0,0x85,0x85,0xa2,
0x56,0xd9,0xc2,0xad,0xda,0x39,0x2d,0xdb,0x77,0x64,0x26,0xbb,0xb7,0x71,0x99,0xc9,
0x94,0x7d,0x37,0x53,0xf6,0x57,0x99,0xb2,0x17,0xbc,0xaa,0x9f,0xf3,0xa7,0xde,0x16,
0x6e,0x13,0xfc,0xb2,0xde,0xf2,0x49,0x35,0x16,0xfc,0xea,0xe1,0xaf,0xd9,0xf6,0x5d,
0x95,0xac,0x72,0xda,0xbd,0xcd,0xc0,0xe7,0xb6,0x7a,0x63,0xe3,0xfb,0xa,0x1f,0x7e,
0x33,0x55,0x5f,0x5b,0x49,0x2a,0xf,0x65,0x26,0xfb,0x50,0x92,0x24,0x57,0x1a,0x63,
0xbc,0xca,0x5e,0xf8,0xa,0x65,0xd5,0xb9,0xe6,0x97,0xa1,0xe0,0x7e,0xf3,0xcb,0xc9,
0x1a,0xf1,0x38,0xf6,0x45,0x85,0x3f,0xd3,0x9,0x5a,0xbf,0x0,0x0,0xc,0x8f,0x58,
0xb1,0xc7,0x3d,0xde,0x2a,0xf8,0xb5,0x2b,0x2e,0xb9,0x6d,0xd9,0x42,0x6,0x9,0xff,
0x18,0x33,0x61,0x8c,0xd9,0x99,0x99,0x6c,0x67,0x66,0xb2,0xf3,0x99,0xc9,0xbe,0x96,
0x9a,0xf4,0x1b,0xa9,0x49,0x67,0xdc,0xf1,0x80,0x6e,0x1b,0xd8,0x8e,0xfd,0x33,0xc6,
0x48,0xa9,0xea,0x97,0xcc,0xf4,0xa1,0xed,0x1b,0x9,0x7e,0xe3,0x95,0xb1,0xbc,0xda,
0x57,0xcd,0x5b,0xbe,0xb1,0x9,0x1e,0xcd,0x76,0xaf,0x54,0x3e,0xce,0xcf,0xf9,0xb0,
0x7f,0x59,0x89,0x3e,0x25,0xa3,0xdf,0xb2,0xcf,0x9,0x9f,0xeb,0x7d,0x61,0x6e,0x7b,
0xd6,0x14,0x3f,0x74,0xf7,0x3a,0x1c,0x94,0xe9,0x6,0xbf,0xd8,0xc4,0xf,0xf7,0x8b,
0x77,0x7f,0x5f,0x7e,0x9b,0xaa,0x1f,0x0,0x0,0x43,0xa7,0x5d,0x91,0xa6,0x2c,0xf4,
0x39,0x5,0x2a,0x3f,0x4f,0x28,0x98,0x9c,0x5a,0x52,0xf5,0xcb,0xaf,0x65,0x73,0x49,
0x50,0xd,0xcc,0x47,0xf9,0x19,0x65,0xc6,0xac,0xcb,0x4c,0xf6,0x98,0x31,0xe6,0xa1,
0xcc,0x64,0x5f,0xcb,0x4c,0xf6,0xd5,0xcc,0x64,0x6f,0xd4,0x27,0x7d,0x4,0xc1,0x2f,
0x33,0xcd,0xd0,0x97,0xaa,0x3f,0x6d,0xdf,0x58,0xf0,0xcb,0x67,0xf7,0x36,0xc2,0x9f,
0x6d,0xf3,0xba,0x97,0xb2,0x8a,0x9f,0x37,0xce,0xaf,0xf1,0xf9,0x27,0x49,0x72,0x9d,
0x91,0xf9,0x8a,0x8c,0xde,0x5f,0x3f,0x50,0xff,0xb0,0xca,0xc6,0xf1,0xc5,0xbe,0xb6,
0x58,0xa9,0xb5,0xfe,0x61,0xb6,0xe,0x80,0x65,0x25,0x5a,0xfb,0x85,0xd9,0xd7,0x76,
0xef,0x3,0x0,0x80,0xe1,0x15,0x2d,0x28,0xd9,0xeb,0x68,0xf5,0xaf,0x19,0xfc,0xec,
0x6c,0x5a,0xf7,0x78,0xde,0x45,0xf4,0x32,0x85,0xbc,0x5c,0xd1,0xc,0x7d,0x99,0x17,
0x2,0xfd,0x4a,0x61,0x61,0xd2,0xc7,0x84,0x91,0xf9,0xaf,0x99,0xc9,0xfe,0x20,0x33,
0xd9,0x37,0x32,0x63,0xbe,0x90,0x99,0xec,0xe7,0x79,0xf0,0x4b,0x1b,0xad,0xde,0xfc,
0x5a,0x7d,0x1a,0xf3,0x57,0xa9,0xfa,0xad,0xde,0x20,0xf8,0x55,0x63,0xcb,0xba,0x38,
0x95,0x3f,0x49,0x79,0xf8,0x2b,0xb4,0x6b,0x93,0xe4,0x4a,0x23,0xf3,0x39,0x63,0xcc,
0x1f,0x24,0x4a,0xc6,0xdd,0x59,0xb9,0x65,0xc2,0xa0,0xe6,0xcd,0x7c,0x9,0x82,0x9c,
0xd,0x7e,0xb6,0x3c,0xda,0x75,0xe5,0x2f,0x38,0x17,0x2f,0x18,0xf6,0xf2,0xa9,0x2,
0x0,0x80,0x25,0xd3,0x2a,0x6b,0x84,0xdd,0xbf,0x58,0xf5,0x2f,0xd6,0x65,0xb4,0xa1,
0x30,0xc,0x73,0xde,0x31,0xf9,0xc1,0xd2,0xcb,0x32,0x79,0x7b,0xd8,0x1f,0x23,0xd8,
0x8,0x7a,0x57,0x66,0xc6,0x7c,0xaa,0x31,0x36,0xf0,0xf,0x33,0x93,0xfd,0x75,0x1e,
0xfc,0x6a,0x91,0xe0,0x97,0xf6,0x61,0xcc,0xdf,0x58,0x32,0x96,0x8f,0xf1,0xb,0x83,
0x9f,0xbb,0xae,0x9f,0xd,0x7c,0x6e,0xc5,0xaf,0x12,0xcc,0xc8,0x75,0x3e,0xf8,0xf,
0x25,0xd2,0x57,0x12,0x25,0xeb,0xb3,0x60,0x29,0x96,0xd8,0x17,0x11,0xb6,0x63,0xb,
0xf7,0x15,0x24,0x66,0x63,0x4a,0x83,0x5f,0x2c,0x0,0xc6,0xd6,0xf2,0xa9,0x5f,0xe7,
0xe7,0xdb,0xd3,0x7,0x9,0x0,0x0,0x96,0x46,0xac,0xd2,0x57,0xf6,0x78,0xbb,0xca,
0x9f,0xcd,0x11,0x92,0xfc,0xc0,0xe7,0x5d,0xfb,0x3f,0xeb,0x2f,0xcf,0xe2,0x64,0x14,
0xa7,0xa,0x68,0x7f,0xb7,0x1b,0x4,0xdd,0x5c,0xd3,0x18,0xf7,0xf7,0x8e,0xd4,0xa4,
0xfb,0x4d,0x66,0x7e,0x57,0x99,0x3e,0xa1,0x9a,0x79,0x2d,0xf,0x7d,0xee,0x98,0xbf,
0x5e,0x2b,0x7f,0xd5,0x4a,0x63,0x4c,0x9f,0xb3,0xae,0x5f,0x2c,0xf8,0xd9,0x56,0xef,
0xaa,0x64,0x95,0x17,0xfa,0x22,0x93,0x3c,0xae,0x94,0xf4,0x84,0x12,0x7d,0xc4,0xd,
0x7c,0x46,0xcd,0x59,0xbb,0xb1,0xca,0x9b,0xfb,0x81,0xba,0x1f,0x66,0xd8,0x47,0xb7,
0xc1,0xcf,0x5d,0xef,0xc6,0x5b,0xf4,0xd0,0xb9,0x96,0xd4,0x1c,0x28,0x69,0x7f,0x87,
0xca,0x2b,0x7e,0xe1,0x5f,0x1e,0x2,0x21,0x0,0x0,0x2b,0x47,0x59,0xd5,0xcf,0x1e,
0x2b,0xab,0xfc,0xb9,0xc5,0xa5,0xbc,0xeb,0x18,0x6,0xbb,0xc8,0x1f,0xfb,0x3b,0x9a,
0xa1,0xcf,0xaf,0x1a,0xe6,0x99,0x25,0xef,0x68,0xe6,0x93,0x3b,0x6e,0x53,0xcd,0xbc,
0xac,0x4c,0x7f,0xa8,0x4c,0x5f,0x53,0x4d,0x7e,0x15,0xb0,0x2f,0x63,0xfe,0xec,0x38,
0x3f,0xbb,0x88,0x73,0x23,0xf8,0x55,0x93,0x6a,0x3e,0xab,0xd7,0xaf,0xfa,0xb9,0xad,
0x5e,0x2f,0xf8,0x4d,0x49,0x7a,0x4a,0xd2,0xb5,0x92,0xfc,0xc5,0x97,0x1b,0xe3,0xfb,
0xa,0x1,0xcb,0xfd,0x80,0xdc,0x14,0xec,0x7d,0xd0,0xcd,0x54,0xec,0x6,0x3f,0x3b,
0xf5,0xb9,0xb4,0xfa,0x97,0xf7,0xef,0x63,0x15,0x3f,0x13,0xd,0x77,0xb1,0xff,0x7a,
0x68,0xf7,0x5f,0x14,0x0,0x0,0x60,0x79,0x2a,0x2b,0xe4,0xc4,0x8a,0x51,0x6e,0xe8,
0x93,0xfc,0xca,0x5f,0xd8,0x55,0xc,0xbb,0x92,0xb1,0xf0,0xe7,0x16,0xae,0xa,0xa1,
0xcf,0x79,0x2d,0x37,0xfb,0xe4,0x4b,0xb9,0x18,0x8d,0x2b,0xd5,0x9f,0xa9,0xa6,0x5b,
0x95,0x9a,0xfb,0x94,0xea,0xe7,0x5e,0x15,0xb0,0x7,0x55,0x3b,0xa6,0xcf,0x56,0xff,
0xdc,0xc9,0x1d,0x65,0xc1,0xcf,0x5b,0xcc,0xb9,0xd9,0xea,0xfd,0x98,0xa4,0x3d,0xc6,
0x98,0x2b,0xa4,0x92,0x5d,0x3d,0xdc,0x14,0xec,0x7e,0x30,0x79,0x65,0x2f,0xde,0x23,
0x6f,0x6e,0x73,0x12,0x3b,0x16,0xa9,0xfa,0x39,0xdb,0xc5,0x85,0x9,0xde,0x7e,0xb9,
0xde,0x75,0x87,0x33,0x83,0x0,0x0,0xc0,0x70,0x29,0x6b,0xf9,0xba,0x8f,0x87,0x19,
0xa1,0x3c,0x0,0x3a,0x63,0xff,0x82,0xe1,0x69,0xcd,0xd6,0xaf,0x82,0x2c,0x52,0xcc,
0x3e,0xde,0xe4,0x8f,0xc6,0x6b,0xa6,0x26,0xf5,0xdb,0xbb,0x35,0xd9,0x71,0x7e,0x1f,
0x52,0xaa,0x29,0xd5,0x74,0x8f,0x32,0xfd,0x28,0x6f,0xfd,0xf6,0xa0,0x5a,0x68,0xf5,
0x6,0xfb,0xf7,0x36,0xd7,0xf4,0xab,0x78,0xd5,0x3e,0x77,0x49,0x17,0x49,0x5f,0x91,
0xf4,0x9f,0x8d,0xca,0x67,0xf0,0x16,0x3e,0xe8,0x60,0x80,0xa4,0x9b,0x9e,0xfd,0x3d,
0xef,0xec,0x3e,0x79,0xce,0xc0,0x48,0x27,0xfc,0x19,0x99,0x66,0x5,0x30,0xaf,0xfa,
0x15,0x67,0xec,0xb8,0x63,0xff,0xec,0x39,0x78,0xd7,0xb4,0x78,0x1,0x0,0x58,0x31,
0x5a,0x75,0xf2,0x62,0xc3,0xbf,0xca,0x2,0xa0,0x5b,0x4c,0x72,0x8b,0x4c,0x6e,0xc5,
0x2e,0x56,0xf5,0xcb,0x5f,0x3b,0xd6,0xf2,0xd,0x2a,0x87,0x79,0x90,0x4c,0xd5,0x9c,
0xd9,0x6b,0x83,0x60,0xcd,0x48,0xa9,0xde,0xa9,0x4c,0x87,0x95,0xea,0x83,0x4a,0xcd,
0xf3,0x3d,0x57,0xfe,0xec,0x2,0xce,0xde,0x8c,0x5e,0xf7,0x8f,0x13,0xfc,0x2a,0xa,
0x67,0xf7,0x26,0xe3,0x92,0xfe,0x5c,0xd2,0xbd,0x46,0xf1,0x9d,0x38,0xbc,0xf,0x37,
0x92,0x92,0xbd,0xe4,0x6b,0xb2,0xe8,0x25,0xdf,0xf4,0xb8,0x2c,0xfc,0x65,0x76,0xc3,
0xe3,0xe6,0x7,0x29,0x45,0xa6,0x6b,0x3b,0x5f,0xac,0x7b,0xcc,0x3d,0x3f,0x0,0x0,
0xb0,0x72,0x84,0xb9,0xa4,0xbb,0x0,0x28,0xa7,0xea,0xd7,0x9c,0x4b,0xe0,0xe,0x37,
0xf3,0xbb,0x98,0xc5,0x82,0x56,0x58,0xfd,0x73,0xe7,0x24,0xb8,0x63,0xfd,0xf2,0xc0,
0x67,0xd4,0xac,0xfe,0xb9,0x4b,0xbc,0xa4,0xba,0x42,0x35,0xf3,0xb4,0x52,0xfd,0x9e,
0x52,0xfd,0x55,0x2f,0x9f,0x49,0xd5,0x6,0xbf,0x6a,0x25,0x58,0xca,0xc5,0xdd,0xb7,
0xd7,0x9,0x7e,0x4e,0xcb,0xf7,0xa,0x49,0x7f,0x27,0xd5,0xd7,0xee,0x2b,0xb4,0x79,
0x55,0xc,0x59,0xb1,0xf,0xa3,0xfe,0xa6,0x9b,0x25,0xcf,0xe2,0x25,0x2b,0x54,0x1,
0xb,0x6d,0xdf,0xc8,0x80,0xcc,0x76,0x65,0xdc,0xb0,0xf2,0x17,0xfb,0x8b,0x0,0x0,
0x0,0x86,0x5b,0x59,0xf8,0x93,0xca,0x66,0xfe,0xca,0xeb,0x1a,0xe6,0xb7,0xc3,0xb0,
0x27,0x93,0x17,0xa5,0xda,0xe5,0x1c,0xb7,0x5a,0x98,0xbf,0x96,0x9b,0x5d,0x8c,0x69,
0x8e,0xf5,0xcb,0xc7,0xf5,0x19,0x27,0x4,0xca,0x56,0x0,0xc7,0x95,0xea,0x2f,0x95,
0xea,0xed,0x92,0xbe,0xba,0xd0,0xcf,0xa4,0x6a,0xf7,0xea,0xad,0xa8,0xb8,0x90,0x73,
0x3e,0xc6,0xaf,0x18,0xfc,0xc6,0x25,0x3d,0x2b,0xe9,0xb6,0x56,0x2f,0x9e,0x4f,0x87,
0x2e,0xe9,0x8d,0xfb,0xd5,0xbd,0xb4,0x10,0x0,0x6b,0xd1,0xf6,0x6f,0x2a,0xb7,0x22,
0x98,0xbf,0x56,0x30,0xee,0xcf,0x4d,0xe9,0x54,0xfd,0x0,0x0,0x18,0x2d,0xf1,0xb6,
0xaf,0x73,0xbb,0xc5,0xca,0x1f,0x5e,0xe1,0x28,0xa8,0xe6,0x49,0xcd,0x20,0x68,0x83,
0x9f,0x3b,0x3c,0xcd,0xcd,0x1c,0x6e,0xfe,0xb1,0xaf,0x1f,0xb,0x91,0x79,0xf8,0x33,
0x8a,0xac,0xe9,0xa7,0x58,0x10,0xfc,0x4a,0xf2,0x5f,0xae,0x18,0x37,0xff,0xfd,0xd2,
0x97,0x16,0xf2,0xd9,0x54,0xa3,0xb,0x38,0xe7,0xe3,0xfb,0x94,0x2f,0xe4,0xec,0x4,
0xbf,0x55,0x92,0xfe,0x56,0x25,0xc1,0x2f,0x3a,0xab,0xd6,0x79,0x93,0x6e,0x88,0x2b,
0x54,0xf6,0x32,0x1b,0xfa,0x6a,0x85,0x8a,0x9f,0xbf,0xef,0x9d,0x3f,0x3e,0xb0,0x55,
0xd5,0xaf,0xbc,0xe2,0x17,0xff,0xf2,0xb,0xef,0x27,0xf2,0x97,0x7,0x0,0x0,0xc,
0x8f,0x42,0xf5,0xaf,0x6c,0xe2,0x47,0xc9,0xca,0x20,0x61,0xae,0x28,0xae,0x30,0x52,
0xac,0xfc,0xb9,0x7f,0xf2,0x31,0x83,0xee,0x8c,0x61,0xb7,0x50,0x65,0xab,0x7e,0x79,
0xf0,0x33,0xfe,0xe4,0x8f,0xb0,0x2,0x98,0x49,0xaa,0xe9,0xb1,0xe4,0x3f,0x5d,0x71,
0xde,0xfc,0xcf,0x4b,0x5d,0xb7,0x80,0xab,0xab,0x92,0x60,0xe1,0xe6,0xc6,0x9f,0x8a,
0xb3,0x6d,0x9b,0xb7,0x65,0x9b,0xf4,0x67,0x49,0x92,0xfc,0x7a,0xf8,0xe1,0xb9,0xa9,
0xb6,0xf9,0x1,0xf9,0xab,0x58,0x37,0xdb,0xbc,0xfe,0x58,0x3e,0x1b,0xea,0x6a,0xa6,
0xe6,0x5,0xbf,0x5a,0x56,0x8b,0xb6,0x81,0xdd,0x4a,0xa1,0x31,0x7e,0xf2,0x96,0x82,
0x45,0x19,0xe5,0x7,0xd2,0xfc,0x1c,0x4b,0x12,0x7f,0x7e,0x9f,0x4a,0x20,0x0,0x0,
0x43,0xaf,0x5d,0x11,0x27,0xcc,0x5,0xb1,0xe0,0x17,0xde,0x8f,0x5,0x3f,0xb7,0xc0,
0xe5,0x55,0xfd,0x82,0xea,0x5f,0xf8,0x9a,0x92,0x9a,0x55,0x3e,0xf7,0x92,0x57,0xff,
0xdc,0x9,0x20,0x79,0xf0,0xb3,0x61,0xf0,0xc9,0xe4,0xfe,0x5f,0x9c,0x31,0x4f,0xbc,
0xf5,0x4c,0x37,0x9f,0x49,0xd5,0xdd,0xaa,0xcd,0xad,0xfe,0x49,0xf5,0x76,0x6f,0xb0,
0x9e,0xdf,0xe7,0x25,0xfd,0x7e,0xe9,0x7,0x18,0x7c,0x70,0x85,0xd0,0xe7,0xcd,0xe6,
0x6d,0x6,0xbf,0x5a,0x56,0xf3,0x82,0x9f,0x7f,0xdf,0x56,0x4,0x9b,0xcf,0x8f,0x2d,
0xee,0xdc,0xec,0xb9,0x17,0x7,0x67,0x86,0x1f,0x76,0xec,0xcb,0xe,0x8f,0x3,0x0,
0x80,0x95,0xc7,0xcb,0x2,0x91,0x31,0x7f,0xee,0xed,0xd6,0xe1,0xaf,0x58,0x5,0xf4,
0x36,0xa4,0x70,0xea,0x7e,0xee,0xba,0x7e,0x79,0xe5,0xcf,0x59,0x32,0xc6,0x6b,0xf9,
0xba,0x61,0xcf,0x8e,0x1,0xf4,0x2a,0x7f,0x8d,0x4b,0x3d,0xc,0xae,0x52,0xaa,0xa7,
0x92,0xfb,0x7e,0x71,0x9b,0x79,0xf2,0xad,0x1f,0x76,0xfa,0x19,0x54,0xf3,0xc0,0x27,
0xb7,0xf2,0xd7,0x6c,0xf7,0x4a,0xf9,0x72,0x2e,0xef,0x97,0xf4,0x39,0x5b,0x5,0x2c,
0xab,0xfa,0x35,0xc7,0xde,0x15,0xdb,0xbd,0xb1,0x56,0xaf,0x1b,0xf4,0x6a,0x5e,0xf5,
0xcf,0x3e,0x56,0x1c,0xf7,0xe7,0x56,0xfe,0x62,0x13,0x3e,0x5a,0x25,0xec,0x30,0xa0,
0xb6,0xfa,0x4b,0x1,0x0,0x0,0x86,0xcf,0x42,0x87,0x74,0xc5,0x42,0x9f,0x3d,0x6e,
0x8c,0x5f,0x15,0xc,0x33,0x87,0xd7,0xee,0x8d,0x54,0xff,0x62,0x93,0x40,0x8c,0x6c,
0xf0,0x33,0x6d,0xaa,0x7f,0x6a,0x8e,0xfb,0x73,0xef,0xd7,0x43,0xe0,0x15,0xaa,0xe9,
0x6f,0x93,0x1d,0xbf,0xf0,0x6e,0xb3,0xff,0xf2,0x1b,0x9d,0x7c,0x3e,0xd5,0x44,0x89,
0x3f,0xab,0xb7,0x11,0xfa,0xf2,0x45,0x9c,0xeb,0xd7,0xeb,0x24,0xfd,0x65,0xec,0x3,
0xd,0xdf,0x44,0xac,0xdd,0x1b,0x5b,0xbf,0x2f,0xf,0x78,0x8d,0xb0,0x37,0x6f,0x43,
0xa0,0x73,0x9d,0x9a,0xac,0x59,0xfd,0xb,0x27,0x7d,0xc8,0x7f,0x7d,0xef,0x8b,0x68,
0x11,0x0,0xc3,0x2f,0xb7,0xdd,0x5f,0x4,0x0,0x0,0xb0,0x72,0x84,0xff,0xde,0xbb,
0xb1,0xa6,0xf0,0x58,0xa4,0x68,0x54,0x96,0x31,0xc2,0xa,0xa0,0x5b,0xf5,0x73,0xd7,
0xf5,0x2b,0x8c,0xf7,0x33,0x72,0xaa,0x7e,0xf2,0xab,0x7e,0xb1,0x9,0x1f,0x35,0x35,
0x83,0x5f,0x73,0x49,0x98,0xf5,0x4a,0xb5,0x5f,0xd2,0xed,0x9d,0x7c,0x6,0x55,0x6f,
0xb7,0x8e,0xc6,0xad,0x7c,0x1,0xe7,0x24,0x9f,0xe0,0xf1,0x94,0xa4,0xb7,0xc7,0x3e,
0xc0,0xe2,0x1b,0x97,0x1f,0xfa,0xd4,0x5c,0x9a,0xc5,0x56,0xfd,0xec,0x58,0xbe,0xf9,
0x6c,0xde,0xb,0x7e,0xf6,0x7e,0x2d,0xab,0x1f,0x6b,0xb5,0xf4,0x4b,0x6c,0xa6,0x4d,
0xd8,0xea,0xf5,0xdb,0xbe,0xe5,0x5f,0x6c,0xf3,0x2f,0x0,0x1,0x10,0x0,0x80,0x61,
0xb6,0xd0,0x62,0x4e,0x2c,0xf,0xb4,0x6d,0x5,0x7,0xeb,0xf6,0xb9,0x79,0x24,0x9f,
0xfd,0x1b,0x54,0xff,0xc2,0x95,0x48,0xf2,0xe0,0x57,0xf,0x50,0xc1,0x2c,0x5f,0x15,
0x2b,0x80,0x61,0x2b,0xb8,0x96,0x87,0xc4,0xf7,0x27,0x1f,0xf8,0x85,0x4f,0x99,0xef,
0x5e,0xfe,0x93,0x76,0xef,0x35,0xaf,0xfc,0x45,0x76,0xed,0xb0,0x3e,0x27,0xe9,0x96,
0xd8,0x87,0xd4,0x32,0xf8,0x15,0x42,0x5f,0x9a,0x57,0xf2,0xdc,0xa0,0x37,0x97,0xcd,
0xd7,0xc3,0x9e,0x99,0xaf,0x1f,0x73,0x5a,0xbf,0xfe,0x84,0x8f,0xe2,0x7a,0x7f,0xb1,
0xf0,0x67,0xcb,0xb2,0xdd,0xb6,0x7c,0x3b,0xfd,0xcb,0x42,0x40,0x4,0x0,0x60,0xf8,
0xb5,0xfb,0x77,0x3f,0xbe,0x6,0x60,0x71,0x72,0x48,0x58,0x9,0x2c,0xcb,0x43,0xde,
0xae,0x1e,0x76,0xfd,0x40,0x2f,0xf8,0x39,0xb7,0xc3,0xf6,0xae,0xbf,0xdb,0x47,0xb8,
0xf6,0x9f,0x5b,0x1,0x7c,0x2c,0xb9,0x63,0xfc,0x88,0x79,0x6e,0xee,0x7,0xad,0xde,
0x5b,0xd5,0xd,0x7e,0x41,0xe8,0x93,0xa4,0x77,0x4a,0x7a,0x28,0xf6,0x61,0x15,0xca,
0x9e,0xe1,0x1b,0x2d,0xb4,0x7b,0xb3,0x66,0xb5,0xaf,0x51,0xe9,0x9b,0xcb,0xea,0x81,
0x2f,0xbf,0xd8,0xaa,0x9f,0x99,0xcf,0x83,0x5f,0xab,0xb5,0xfe,0x6c,0xb2,0xf6,0xc3,
0x5f,0xbc,0xdd,0x1b,0x9d,0x5d,0xd3,0xe6,0xcb,0x6,0x0,0x0,0x2b,0x47,0xdb,0xc0,
0xd7,0x41,0x3e,0x88,0x5,0x41,0x77,0x70,0x59,0xb1,0x2,0x98,0xfa,0x1d,0x51,0x5b,
0x5,0x54,0xb0,0xc4,0x4b,0xac,0xe5,0x1b,0x56,0x1,0x8d,0xdc,0xa0,0x57,0x6c,0x5,
0x67,0x5a,0xa5,0x54,0x5f,0x4f,0xde,0x3b,0xfe,0x2b,0xe6,0x1f,0xe7,0x4a,0x37,0x81,
0xab,0xda,0x1b,0x91,0xe0,0x27,0x49,0x5f,0x97,0x34,0xde,0xaa,0xec,0xe9,0x26,0x5c,
0x37,0xf5,0xba,0x63,0xfb,0x6c,0x35,0x6f,0xde,0xa9,0xf2,0xcd,0x65,0xf3,0x9a,0xcb,
0xe6,0x9c,0xf0,0x57,0xd3,0x5c,0x36,0x97,0x3f,0x2f,0xaf,0x12,0x3a,0xd5,0xbf,0xe6,
0xce,0x1e,0x7e,0xc5,0xcf,0x5b,0x37,0x47,0xcd,0x3d,0x7c,0xed,0x6d,0xf7,0x7c,0x3b,
0xfd,0x72,0x1,0x0,0xc0,0xca,0xd5,0x49,0xc7,0xaf,0xec,0x19,0xed,0x83,0x60,0x64,
0xc,0xa0,0x6d,0x1,0x87,0x95,0xbf,0xe8,0x2c,0xdf,0xe0,0x98,0x5d,0xfb,0x2f,0x16,
0xfc,0x8a,0xf7,0xa7,0x94,0xe9,0x63,0x92,0xbe,0x51,0xf6,0xbe,0xaa,0xce,0x32,0x2e,
0x92,0xe4,0xae,0xe9,0xf7,0x11,0x63,0xcc,0x7b,0xc3,0x4c,0xe8,0xbe,0xe1,0x30,0xf8,
0x15,0x67,0xf5,0xfa,0xad,0xde,0x9a,0xf1,0x83,0xdf,0x5c,0x36,0xa7,0xb9,0x74,0x3e,
0x6f,0xf9,0xba,0xd5,0x3f,0x77,0xf2,0x47,0x38,0xd6,0x2f,0xac,0x2c,0xfa,0xeb,0xfa,
0x99,0x42,0xa,0x6f,0x17,0xfc,0x8,0x7c,0x0,0x0,0xac,0x4c,0xb,0x1d,0x3,0xd8,
0xcd,0x6b,0xb5,0x6f,0x3,0x7,0xbb,0x80,0xd8,0x25,0x5e,0xc2,0xc9,0x1e,0xe1,0xc4,
0x8f,0xb4,0xe4,0x7e,0xac,0xf5,0x9b,0x4f,0x0,0x31,0x52,0xa6,0xff,0x96,0xfc,0xda,
0xd8,0x33,0xe6,0x9f,0xe7,0xcf,0xc7,0xce,0xb7,0x1a,0x1e,0x30,0xc6,0x28,0x49,0x92,
0x2b,0x25,0x7d,0xd9,0x7d,0x43,0xee,0x1b,0x6f,0xbe,0x31,0x7f,0x2d,0xbf,0x30,0xf8,
0xd5,0xbc,0x49,0x1d,0x36,0xf0,0xf9,0xc1,0x2f,0xbf,0x9d,0xcd,0x35,0xdb,0xbe,0x8d,
0x9f,0x29,0xb4,0x7d,0x33,0xb7,0xfa,0xe7,0x96,0x55,0xa5,0x58,0xdb,0xd7,0x9e,0xbf,
0x1f,0x5,0xfd,0x2f,0xaa,0x93,0x2f,0x15,0x0,0x0,0xa0,0x4c,0x2c,0x63,0x84,0xfb,
0xf8,0xa6,0xc1,0xf8,0x3f,0xb9,0x13,0x3c,0x5a,0x55,0x0,0xdd,0xaa,0x5f,0xa6,0x60,
0x9c,0x5f,0x24,0xf8,0xd5,0x1f,0x7b,0x9b,0x32,0x3d,0x26,0xe9,0x77,0x62,0xe7,0x5b,
0xd,0x76,0xef,0xb0,0x6f,0xe2,0x63,0x92,0xd6,0xb9,0x15,0xc1,0xe2,0x58,0xbf,0xe2,
0x18,0xbf,0x30,0xf8,0xb9,0xb3,0x7a,0xc3,0xe0,0x77,0x39,0x9d,0xd3,0xe5,0xec,0x72,
0x7e,0xdc,0x56,0xfe,0x6c,0xeb,0xd7,0xb6,0x8a,0xc3,0x40,0x69,0xfb,0xe5,0xf9,0x3a,
0x3a,0xf2,0xc7,0xfb,0xb9,0x6d,0xdf,0x30,0xf4,0xb5,0x5a,0xda,0x85,0xea,0x1f,0x0,
0x0,0xa3,0x2d,0x96,0x89,0xf2,0xc7,0xe2,0xc3,0xe3,0x3c,0xe5,0x13,0x42,0xe4,0xad,
0xff,0xd7,0xdc,0xd2,0x4d,0xc5,0x59,0xbe,0xd1,0x96,0xaf,0x4a,0xf6,0xfc,0x95,0x1f,
0x4,0xdd,0xe5,0x5f,0x32,0x7d,0x24,0x79,0x77,0xf5,0x8b,0xe6,0xe5,0xda,0xc9,0xf0,
0x3c,0xb,0x95,0x3f,0x49,0xe3,0xc6,0x98,0x4f,0xb9,0xef,0x31,0x7c,0x33,0x99,0xd,
0x5a,0x6d,0x82,0x5f,0x7d,0x52,0xc7,0x9c,0x37,0xa6,0x6f,0x2e,0x9b,0xd3,0x5b,0xe9,
0x65,0x5d,0x4e,0xeb,0xc1,0xef,0xb2,0xad,0xfa,0xe5,0x63,0x0,0x63,0x2d,0xdf,0x78,
0xdb,0x37,0x2c,0xa7,0xc6,0x3e,0x6c,0xef,0xfc,0x4b,0x82,0x20,0x0,0x0,0x80,0x14,
0xf,0x80,0x61,0xf0,0xeb,0x24,0x8,0x4a,0x7e,0xb7,0xd4,0xdd,0x91,0xac,0xd0,0xe6,
0xd,0xdb,0xbd,0xde,0x7d,0xa7,0xea,0xe7,0xce,0xfc,0x4d,0x4d,0x79,0xf0,0xab,0x35,
0x26,0x7f,0x18,0x7d,0x4a,0xd2,0xef,0x85,0xe7,0xe5,0x85,0x3f,0x23,0xa3,0x44,0xc9,
0xef,0x4a,0x7a,0x47,0xb8,0x30,0xb2,0xec,0xb9,0x44,0x42,0x57,0xbb,0xe0,0xe7,0x56,
0xfc,0x6c,0xf0,0x7b,0x2b,0x7b,0x4b,0x97,0xd3,0x39,0xa7,0xed,0x3b,0xef,0xb5,0x88,
0xdd,0x3d,0x7e,0xa3,0x4b,0xbc,0x64,0x76,0xc2,0x87,0xd,0xa4,0xc5,0xf0,0x27,0xc5,
0xdb,0xd6,0xb1,0x2f,0x7,0x0,0x0,0x8c,0x96,0x68,0x88,0x33,0xad,0xc3,0x9d,0x1b,
0xe,0x3b,0xad,0x6,0x7a,0x93,0x64,0xf3,0xdd,0x3c,0x4c,0x24,0xf0,0x45,0x2a,0x80,
0x36,0x8,0x7a,0xe3,0xfd,0xc2,0x9,0x1f,0x52,0x61,0xc,0x60,0xbd,0x11,0x7a,0x6f,
0x72,0x7d,0xf5,0xb,0xe6,0x44,0xed,0xac,0x7b,0x4e,0x55,0x7b,0x62,0x92,0x64,0x8c,
0x59,0x95,0x25,0x7a,0xc8,0x9d,0x2,0x92,0x4f,0x9a,0x8,0x4e,0x3e,0x56,0xf5,0x73,
0x83,0x5f,0x3e,0xb3,0xb7,0x31,0x86,0xef,0x72,0x76,0xb9,0xde,0xea,0x75,0x82,0x5f,
0xfd,0xd8,0xe5,0x7a,0xf0,0x73,0x26,0x7d,0xd8,0x71,0x7e,0xb5,0xac,0xe6,0xad,0x15,
0xe8,0x4d,0x93,0x56,0x7c,0x41,0xe7,0xfc,0x5c,0x4b,0xc2,0xdf,0x42,0x10,0xe,0x1,
0x0,0x18,0x2e,0xdd,0xb4,0x69,0x3b,0x7a,0x3d,0x1b,0xfa,0x4c,0xf1,0xf5,0xcb,0x7e,
0x57,0x61,0xc8,0x9c,0xbb,0x8f,0x6f,0x58,0xed,0xf3,0x8e,0x47,0x42,0x60,0x18,0xf8,
0xa2,0xbb,0x7f,0x78,0xc1,0x4f,0x32,0x1a,0x97,0xf4,0x29,0x49,0x9f,0x70,0xcf,0xab,
0xda,0x98,0xe0,0x61,0xab,0x7e,0xbf,0x6e,0x8c,0x59,0xaf,0xc4,0x9,0x7d,0x26,0x38,
0x71,0xf9,0xcb,0xac,0xc4,0x82,0x5f,0x1e,0x0,0xf3,0xd9,0xbd,0xfe,0xe4,0xe,0x1b,
0xfc,0xde,0x4a,0xdf,0xf2,0x96,0x7c,0x71,0x77,0xfb,0x88,0xed,0xe7,0x5b,0xd8,0xc3,
0xb7,0x71,0x4e,0xf9,0xf9,0x39,0xf7,0xcb,0xbe,0x0,0x0,0x0,0xb0,0xf2,0xf5,0xfa,
0xef,0x7e,0x18,0xe8,0x5a,0x75,0x12,0xcb,0xc6,0xa,0x16,0xe6,0x1a,0xb8,0xa1,0x2f,
0x3c,0xbd,0x68,0x20,0xec,0x70,0xf9,0x97,0x9a,0xfc,0xe0,0xe7,0xbf,0xf6,0xef,0x26,
0xd7,0x57,0x3f,0x6b,0x4e,0xd4,0x7e,0x6e,0xf,0x54,0x82,0x59,0xb1,0xf7,0xe6,0xb7,
0x8d,0x89,0x56,0xfa,0xdc,0x85,0x96,0x8b,0xb3,0x7b,0x6b,0x85,0x75,0xfc,0xdc,0xcb,
0xe5,0xec,0x72,0x3e,0xc6,0xcf,0x56,0xfc,0xe6,0xbc,0x31,0x7f,0xcd,0xed,0xdd,0xf2,
0xf5,0xfd,0xb2,0x16,0x63,0xfe,0x9c,0xf5,0x72,0xdc,0x31,0x7f,0xee,0x7,0x1d,0x9b,
0xe9,0xb,0x0,0x0,0xd0,0x4a,0x37,0x19,0xc2,0xcb,0x4d,0xce,0xc5,0x7d,0xad,0x3c,
0xdc,0xb9,0x2f,0x67,0x24,0x85,0xd5,0x40,0x7b,0xdc,0x1b,0xfb,0xe7,0x84,0x40,0xb7,
0xf2,0x57,0x73,0x6e,0xbb,0xd5,0x43,0xdf,0x15,0x92,0x3e,0xe4,0x1e,0xa8,0x38,0x6f,
0xf0,0x6d,0xc6,0x98,0x3b,0xfc,0x55,0xa8,0xe3,0x3b,0x76,0x84,0xdb,0xb6,0xb9,0x33,
0x7b,0xdd,0xf0,0x66,0x97,0x6d,0x69,0x4e,0xf6,0x98,0xf7,0xc6,0xf8,0xb9,0xc1,0x2f,
0x5c,0xe6,0xa5,0xb9,0xc0,0xb3,0xb3,0x2e,0x8e,0xad,0x3a,0x76,0x18,0xfa,0x0,0x0,
0x0,0x7a,0x65,0x82,0x3f,0xdd,0xfe,0x5c,0xf1,0x47,0x4a,0x5e,0x23,0xac,0xa,0x16,
0xaa,0x7e,0xce,0x25,0x9c,0xfc,0x91,0x15,0x5f,0xce,0x71,0xaf,0x7b,0xa7,0x1e,0xfe,
0xea,0x61,0xea,0x23,0x46,0x66,0xdc,0x7d,0x73,0x5e,0xe8,0x53,0x71,0x6f,0xdd,0x76,
0xed,0xde,0xfa,0x38,0xbe,0xc6,0xc4,0xf,0x33,0x5f,0x58,0xf2,0xa5,0xb9,0xd5,0x5b,
0xea,0x85,0xbe,0x70,0x49,0x17,0x3b,0x4b,0x26,0x9f,0x64,0x42,0xe8,0x3,0x0,0x0,
0x4b,0xa4,0x5d,0x10,0xf4,0x1e,0x73,0xab,0x79,0x9d,0xff,0x2,0x77,0xdc,0x5e,0x7c,
0x42,0x48,0x38,0x3,0x38,0xac,0x2a,0xfa,0x6e,0x4d,0xae,0xaf,0xae,0xb7,0x77,0x2a,
0xce,0xac,0xdd,0xdf,0x8a,0x55,0xfd,0xbc,0xb6,0x6f,0x61,0x92,0x87,0x1f,0x8,0x6d,
0xd8,0x6b,0x56,0xfd,0x1a,0x95,0xbf,0xc6,0xf1,0xc2,0x5a,0x7e,0x8d,0xa0,0xe8,0x56,
0xd,0x63,0x6d,0x5e,0xb7,0xda,0x17,0x1b,0xd7,0x47,0xe8,0x3,0x0,0x0,0x4b,0x21,
0xac,0xa,0x7a,0x79,0xa4,0x34,0x9a,0x24,0xcd,0x2b,0x77,0x22,0x49,0x18,0x14,0x4b,
0xab,0x80,0x91,0x35,0x0,0x5b,0xc7,0xa0,0x55,0x92,0x3e,0x62,0xef,0x54,0x6c,0xcb,
0x57,0xd2,0xcd,0xb1,0xaa,0x9f,0xbb,0xa7,0x6e,0x74,0xdb,0xb6,0xcc,0x6f,0xd1,0xda,
0x2d,0xdc,0xdc,0x7d,0x7c,0xdd,0xd0,0x37,0x97,0xcf,0x2,0x76,0x82,0xa2,0xad,0xf8,
0x35,0x76,0xf0,0xc8,0x8c,0xbf,0x94,0x8c,0xf7,0xe1,0x76,0xb0,0x74,0xb,0x0,0x0,
0xc0,0x50,0xc9,0x97,0x59,0x31,0xfe,0x75,0xb8,0xb,0x48,0x6c,0x4d,0xc0,0xce,0xbc,
0xd7,0xde,0xa8,0x34,0x2,0xd6,0xfb,0x33,0x93,0xad,0xea,0xbc,0xea,0x57,0xc,0x83,
0xee,0xb8,0xbf,0x7c,0x6b,0x37,0xe3,0x2f,0xf7,0xe2,0xee,0xef,0x5b,0x33,0xfe,0xe,
0x1e,0xcd,0xd7,0xf,0x16,0x6e,0x2e,0x69,0xf3,0x52,0xed,0x3,0x0,0x0,0xcb,0x56,
0xbb,0x88,0x92,0x94,0xdc,0x76,0x7f,0xde,0x4,0xb7,0xcb,0x66,0xfe,0x76,0x16,0x87,
0x6e,0x4e,0xae,0xaf,0x5e,0x21,0x49,0x95,0x46,0x3b,0xf5,0xb6,0x76,0x55,0xbf,0x68,
0xf0,0xcb,0x82,0x99,0xbe,0xa6,0xd9,0xee,0x6d,0xce,0xfc,0x6d,0xb6,0x74,0xdd,0x96,
0xb0,0x1b,0x14,0x9b,0x1,0xb0,0x18,0xfc,0xa8,0xf6,0x1,0x0,0x80,0x15,0x25,0x71,
0xae,0x13,0xc5,0xc3,0x9f,0xe4,0x57,0xfb,0x4c,0x64,0xa9,0x98,0xee,0xe2,0xd0,0x15,
0x92,0x7e,0x55,0x6a,0x56,0xfe,0x6e,0x69,0x57,0xf5,0x4b,0x4b,0x2b,0x7e,0xf5,0x7d,
0x78,0xc3,0x0,0x18,0x4e,0x2,0x71,0x9f,0x1f,0xbe,0x4e,0xbd,0xaa,0x57,0xdc,0x3d,
0x84,0xe0,0x7,0x0,0x0,0x56,0x14,0x37,0xec,0x95,0xdd,0x76,0x85,0xd5,0x3f,0x1b,
0x2,0xbb,0x6b,0xf9,0x5a,0xef,0x95,0xa4,0xaa,0x91,0x99,0x48,0x94,0x5c,0x9b,0xaf,
0xf7,0xd7,0xb8,0xb6,0x63,0xed,0xea,0xed,0xd8,0xe2,0x36,0x6e,0xe1,0x9e,0xbb,0x79,
0xb8,0xcb,0x8a,0xcf,0xb1,0x33,0x7a,0xbd,0x89,0x1d,0xde,0x2,0xce,0xfe,0xc2,0xd1,
0x4,0x3f,0x0,0x0,0xb0,0xa2,0x24,0xaa,0x87,0x35,0xf7,0x3a,0xfa,0x3c,0xfb,0x4,
0x47,0x38,0xde,0x2f,0x5c,0x1f,0xb0,0x73,0x37,0x4b,0x52,0x35,0x33,0xd9,0x94,0xbb,
0x8a,0xb5,0x1b,0x2,0xeb,0x41,0x4c,0x5e,0xf0,0x2b,0xf,0x81,0x7e,0x1b,0xd8,0x8e,
0xfb,0x6b,0x15,0x16,0x6d,0x45,0xb1,0x1e,0x2f,0x83,0xc9,0x1d,0x4,0x3f,0x0,0x0,
0x30,0xac,0x22,0x19,0xce,0x3b,0x96,0x24,0x52,0x62,0xea,0xc7,0x2a,0x25,0xaf,0x51,
0xa8,0xfa,0x35,0xee,0xdb,0x31,0x7f,0xdd,0xfb,0x65,0xa9,0x5e,0xf9,0xbb,0xc1,0xff,
0x3d,0xc6,0xd9,0xd9,0xa3,0x7e,0xed,0x6e,0xb1,0xe6,0x7,0xc0,0x30,0x8,0x66,0x25,
0x61,0xb0,0xd8,0xe6,0x75,0xd7,0xed,0xb3,0xbf,0xaf,0xfe,0x7e,0xe2,0xeb,0xf7,0x1,
0x0,0x0,0xac,0x28,0xb,0x69,0xfb,0x2e,0x2c,0xf4,0x59,0x13,0xc9,0xf5,0xd5,0xf5,
0xd5,0xcc,0x64,0xd7,0xda,0xca,0x5f,0xb3,0xea,0xa7,0xe2,0xb8,0x3f,0x65,0x5e,0x0,
0x4c,0x4d,0xe6,0x4d,0xc,0x9,0xab,0x7e,0xe5,0x41,0xb0,0x79,0xdf,0x4e,0xf0,0xb0,
0x81,0x2f,0x16,0xf2,0x8,0x7e,0x0,0x0,0x60,0x28,0x85,0xd5,0x3f,0xb7,0xe5,0x5b,
0xd6,0xf6,0x75,0x85,0x15,0xbf,0xd8,0xfa,0x7f,0xdd,0x7b,0x67,0xd5,0x48,0xeb,0xe5,
0x84,0x3e,0x77,0x31,0xe5,0x42,0xf0,0x53,0x2c,0x4,0xda,0x19,0xc1,0xcd,0xc7,0xfd,
0xe3,0x4e,0xc5,0xcf,0x56,0x11,0x9d,0x3f,0x6e,0xe5,0x2f,0x6c,0xf7,0x12,0xfc,0x0,
0x0,0xc0,0x8a,0x12,0x9b,0xe9,0x1b,0xb,0x83,0x61,0x4,0x72,0x83,0x5f,0xd9,0x73,
0x3a,0xb3,0xb1,0x6a,0x8c,0x59,0xdf,0xc,0x94,0xcd,0xc9,0x1e,0x79,0xf8,0x53,0x56,
0x18,0xe7,0xe7,0x4e,0x0,0xc9,0x4c,0x96,0x2f,0xce,0x5c,0x8,0x79,0xce,0x16,0x6d,
0xf9,0x92,0x31,0x76,0x36,0xb1,0x91,0x57,0xed,0x23,0xf8,0x1,0x0,0x80,0x15,0x27,
0x36,0xf6,0x2f,0x7c,0xdc,0xd,0x84,0x31,0x85,0x31,0x7f,0xb1,0xfd,0x82,0x3b,0xb6,
0xbe,0x6a,0x64,0xde,0xde,0x7c,0x6d,0x77,0xbc,0x9f,0x1f,0xfc,0x9a,0xcb,0xbe,0x38,
0xd5,0x3b,0xd3,0xac,0xdf,0x35,0x43,0x9d,0xf1,0x2a,0x83,0xde,0xfe,0xc0,0x41,0xa8,
0xf4,0xaa,0x7e,0x4,0x3f,0x0,0x0,0xb0,0xd2,0x79,0x93,0x3e,0x82,0xe3,0xed,0x18,
0x53,0x6c,0x1,0x77,0xef,0x6d,0xd5,0xcc,0x64,0x6f,0xcb,0x5f,0xd3,0x69,0xbd,0xba,
0xa1,0xcd,0xd,0x74,0x85,0x89,0x1f,0x59,0x1a,0x3d,0x1e,0x86,0x3e,0x1b,0xfc,0xec,
0x62,0xce,0xc6,0xf8,0xcb,0xba,0x0,0x0,0x0,0xac,0x48,0xb1,0xb1,0x7f,0x65,0x2d,
0xdf,0x56,0xd5,0x3f,0x7b,0xdd,0x5b,0x6c,0x7a,0x7b,0xd5,0xc8,0x5c,0xd1,0x7c,0xdd,
0x60,0x87,0xd,0x5b,0x5,0x74,0x46,0xe8,0xb9,0xcb,0xb2,0x84,0xb7,0xb,0x55,0x40,
0x6f,0xdc,0x60,0xf3,0x35,0xed,0xef,0xb2,0xd7,0x54,0xfd,0x0,0x0,0xc0,0x48,0x49,
0x1a,0xff,0x27,0x31,0xfe,0xb2,0x2f,0x31,0x61,0xb5,0xaf,0xb7,0xa8,0x74,0x65,0x35,
0xf,0x61,0xc1,0x44,0xf,0x5b,0xfd,0xf3,0xc6,0xee,0x39,0xd5,0xbd,0xbc,0x42,0xe8,
0x54,0x9,0x8d,0xf1,0x27,0x6f,0xa4,0xce,0xde,0xbc,0x61,0x3b,0x39,0x56,0xf1,0x23,
0xf8,0x1,0x0,0x80,0x15,0x29,0x6c,0xf7,0x76,0x1a,0x79,0x4c,0x70,0xbb,0xf7,0xa8,
0xb4,0xaa,0x6a,0x17,0x56,0xae,0xbf,0xa6,0x1f,0xfc,0xdc,0xea,0x9f,0xf7,0xc7,0xf8,
0x33,0x81,0xf3,0xfb,0xc1,0x6c,0xe0,0xd8,0xeb,0x49,0xf2,0x43,0xa2,0x21,0xf0,0x1,
0x0,0x80,0x11,0x14,0xab,0xf4,0x75,0x5a,0xfd,0x5b,0xb8,0x2b,0xab,0xf5,0xd7,0xf1,
0xc3,0x98,0x57,0xa9,0x93,0x5f,0xf5,0xf3,0xda,0xbd,0xee,0xf3,0xed,0x6b,0x4,0xcb,
0xb6,0x84,0xb7,0xa9,0xfa,0x1,0x0,0x80,0x91,0x54,0x36,0xf6,0x4f,0x6a,0x33,0xd3,
0x37,0xb2,0xdd,0x5b,0xf,0xf2,0xca,0x5f,0x2c,0x0,0xb6,0xab,0xfc,0x79,0xcf,0x77,
0xc6,0xf5,0x15,0x2a,0x7f,0x6e,0x0,0x34,0xce,0x78,0x3f,0xaa,0x7e,0x0,0x0,0x60,
0x14,0xc5,0x76,0xf6,0x68,0x35,0xe3,0xb7,0x7f,0x95,0x3f,0x45,0xc7,0xfc,0xf9,0x95,
0xba,0xe2,0x4c,0xdf,0x70,0xc,0x5f,0xec,0x35,0xea,0xe7,0x57,0xac,0x0,0xba,0xcf,
0x6b,0xbe,0x1f,0x42,0x20,0x0,0x0,0x18,0x21,0xdd,0x2e,0xf3,0x22,0xf5,0x6b,0xcc,
0x5f,0x7d,0x2b,0xe1,0xc2,0x64,0xf,0x27,0xb4,0xd5,0x7f,0x97,0xff,0xc7,0x1e,0x8b,
0xae,0xdb,0x97,0xbf,0x8e,0x51,0xb4,0xaa,0x48,0xd5,0xf,0x0,0x0,0x8c,0xaa,0x4e,
0x83,0x5e,0x4c,0x38,0xf9,0x63,0x81,0x4a,0xdb,0xbe,0x6e,0xd5,0x2f,0x1f,0xcb,0xe7,
0xac,0xcf,0x97,0x85,0x4b,0xb6,0xb8,0x3f,0x6b,0x4c,0x70,0xdc,0x5f,0xda,0xc5,0x7f,
0x1f,0x84,0x40,0x0,0x0,0x30,0x82,0xda,0x5,0xc1,0xb2,0xb5,0xfd,0x7a,0x1d,0xf3,
0x17,0x6b,0xc5,0xda,0xb6,0x6e,0xfd,0xf5,0xe3,0x63,0xfe,0xf2,0xc7,0xa,0x41,0xaf,
0xd8,0xf6,0xf5,0x9e,0x1b,0xb4,0x7c,0x1,0x0,0x0,0x46,0x52,0x6c,0x4f,0xdf,0x45,
0x10,0x6d,0xfb,0x4a,0x76,0x72,0x49,0xeb,0xb6,0x6f,0xec,0xb6,0x15,0x56,0x12,0xed,
0xb1,0xd8,0x35,0x0,0x0,0xc0,0xc8,0x28,0x5b,0xe2,0x65,0x91,0x82,0x60,0x25,0xba,
0x34,0x4b,0x78,0xcc,0x44,0x82,0x5d,0xe1,0xf9,0x41,0x48,0x74,0x2b,0x82,0x8c,0xf3,
0x3,0x0,0x0,0xe8,0x5d,0x3f,0x26,0x7c,0x84,0x15,0x3c,0xfb,0xba,0xd1,0xd9,0xbf,
0xc6,0x9,0x7a,0xb1,0x31,0x7f,0xce,0x25,0x3f,0xc7,0x92,0xea,0x1f,0x0,0x0,0x0,
0xd4,0xdd,0x6c,0x5f,0xf7,0x7a,0x81,0x2a,0xf9,0xeb,0x99,0x62,0xc5,0xae,0xfe,0xfa,
0x91,0xd6,0x6f,0xd9,0x98,0xbf,0x16,0x6d,0x60,0xef,0xdc,0x19,0xf7,0x7,0x0,0x0,
0xd0,0xd4,0x6e,0x8d,0xbf,0x3c,0xf8,0xf5,0x9e,0x9f,0x2a,0xb1,0xaa,0x9f,0xbd,0x1f,
0x1d,0xf3,0x67,0xe2,0xc1,0x30,0x3c,0xd6,0xea,0x39,0x0,0x0,0x0,0x68,0x23,0x8c,
0x4e,0x7d,0x8a,0x52,0xf9,0x84,0x8f,0xe2,0xef,0x2b,0x86,0xbd,0xf0,0xf1,0x56,0xf7,
0x5b,0xbd,0x2e,0x0,0x0,0x0,0x3a,0x30,0x80,0xd8,0xd4,0x6c,0xfb,0x46,0x66,0xe7,
0x96,0x9f,0x47,0x71,0x6d,0xbf,0x76,0xcf,0xd,0x6f,0x3,0x0,0x0,0x40,0x8b,0xbe,
0xdc,0x4b,0x25,0x36,0xfe,0xae,0x30,0xce,0xaf,0x83,0xa,0x5e,0x38,0xce,0xcf,0x9b,
0x48,0xc2,0x18,0x3f,0x0,0x0,0x80,0x65,0xa1,0xe2,0xde,0xf1,0x16,0x8f,0xe,0x97,
0x77,0xe9,0x70,0x81,0xe6,0x76,0x93,0x3d,0x0,0x0,0x0,0xb0,0x74,0x2a,0xb1,0xea,
0x5e,0x59,0x5,0xcf,0x3b,0xc6,0xd2,0x2d,0x0,0x0,0x0,0xbd,0xe9,0x76,0x99,0x97,
0x3e,0x8,0x2a,0x7f,0xed,0x27,0x78,0x94,0xfd,0xee,0xd8,0x62,0xd0,0x0,0x0,0x0,
0x58,0x5e,0x2a,0x65,0xf,0x44,0x67,0xef,0x76,0x11,0x3b,0x9,0x82,0x0,0x0,0x0,
0x7d,0xd0,0xe7,0x48,0x55,0xe9,0x24,0xd0,0x15,0xda,0xbe,0x1d,0xb6,0x7c,0x3b,0x59,
0xe,0x6,0x0,0x0,0x0,0x8b,0xc7,0x59,0xea,0xa5,0xa8,0xd3,0xea,0x9d,0x37,0x46,
0xd0,0x98,0x96,0x8b,0x4f,0x53,0x11,0x4,0x0,0x0,0x58,0x3a,0x85,0xb6,0x6f,0xb7,
0xd5,0xb9,0x4e,0xc2,0x1c,0x15,0x3f,0x0,0x0,0x80,0xe5,0xa1,0x74,0xcc,0x1f,0x0,
0x0,0x0,0x56,0x9e,0x8e,0xc3,0x1f,0xd5,0x3b,0x0,0x0,0x80,0xe1,0xd7,0x75,0xe5,
0x8f,0x31,0x7b,0x0,0x0,0x0,0x4b,0xa0,0x4f,0x11,0xac,0x22,0x11,0xe8,0x0,0x0,
0x0,0x46,0x5,0x63,0xfe,0x0,0x0,0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,
0x10,0xfe,0x0,0x0,0x0,0x46,0x48,0x57,0xdb,0xbb,0x1,0x0,0x0,0x60,0xb8,0x51,
0xf9,0x3,0x0,0x0,0x18,0x21,0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xf8,0x3,0x0,
0x0,0x18,0x21,0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xf8,0x3,0x0,0x0,0x18,0x21,
0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xf8,0x3,0x6,0x6c,0x72,0x7c,0x42,0xbb,0xae,
0x7d,0x50,0xdb,0xaf,0xbe,0x73,0xa9,0x4f,0x5,0x0,0x0,0x55,0x97,0xfa,0x4,0x80,
0x95,0x68,0xdb,0xda,0xad,0xf9,0xe5,0xd6,0xb5,0xb7,0xe4,0xc7,0xef,0x3b,0xfa,0x80,
0xf6,0x9d,0xda,0xbf,0x84,0x67,0x6,0x0,0x18,0x75,0x84,0x3f,0xa0,0x47,0x1b,0x56,
0xaf,0xd7,0xb6,0xb5,0x5b,0x35,0xb5,0x66,0xb3,0xb6,0xad,0xdd,0xaa,0x1b,0x27,0x6f,
0x28,0x7d,0xee,0x93,0x5b,0x1e,0xd7,0xb1,0xe9,0xe3,0x3a,0xf6,0xe6,0x2b,0x8b,0x78,
0x86,0x18,0x5,0x93,0xe3,0x13,0xda,0xf5,0xae,0x7,0x17,0xf4,0xb3,0x87,0x2e,0x1c,
0x6e,0xf9,0xf8,0xe9,0xd9,0x33,0x3a,0x3d,0x7b,0x76,0x41,0xaf,0xbd,0x1c,0x6d,0x58,
0xbd,0x5e,0x1b,0x56,0x5f,0xd3,0xf6,0x79,0x53,0x6b,0x36,0x6b,0x72,0x6c,0xa2,0xa3,
0xd7,0xdc,0xf3,0xfa,0x5e,0x4d,0xcf,0xcd,0xf4,0x7a,0x6a,0xc0,0xa2,0x20,0xfc,0x1,
0x3d,0xd8,0xbd,0xe9,0x61,0x3d,0xb2,0xe9,0xb3,0x5d,0xfd,0xcc,0xa1,0xdb,0xbe,0xa7,
0x6d,0x2f,0xdc,0x4e,0x0,0x44,0x5f,0x9d,0xbe,0xeb,0x35,0x4d,0x8c,0x5d,0xb5,0xa0,
0x9f,0x7d,0x44,0xdd,0xfd,0x1d,0x8e,0x79,0xf1,0xc2,0x91,0xb6,0xcf,0x39,0x36,0xfd,
0xca,0x82,0x2,0x52,0xa7,0x21,0x6c,0x72,0x7c,0xa2,0xe5,0x7f,0x7c,0xd,0xd2,0xd4,
0x9a,0xcd,0xda,0x7e,0xf8,0x9e,0x25,0xf9,0xdd,0x40,0xb7,0x8,0x7f,0x40,0xf,0xf6,
0xbc,0xbe,0x57,0xdb,0xaf,0xbe,0xb3,0xab,0x7f,0x70,0x26,0xc6,0xae,0xd2,0xa1,0xdb,
0xbe,0xa7,0xd,0x7,0xaf,0xa3,0x52,0x80,0xbe,0x59,0x68,0xf0,0xeb,0x17,0x77,0x78,
0x43,0x2f,0xcf,0x19,0x56,0x9d,0x56,0x8,0x81,0xe5,0x80,0x9,0x1f,0x40,0xf,0xa6,
0xe7,0x66,0xb4,0xfd,0xf0,0x3d,0x9a,0x99,0xbf,0xd8,0xd5,0xcf,0xd9,0x0,0x8,0x0,
0xc0,0x62,0x23,0xfc,0x1,0x3d,0x3a,0x3d,0x7b,0x56,0xdb,0x5e,0xb8,0xbd,0xeb,0x9f,
0xbb,0x71,0xf2,0x6,0xed,0xdb,0xf2,0xf8,0x0,0xce,0x8,0x0,0x80,0x72,0x84,0x3f,
0xa0,0xf,0x8e,0xbd,0xf9,0x8a,0x3e,0xf9,0xf2,0x43,0x5d,0xff,0xdc,0x47,0x37,0xee,
0xd0,0xce,0x8d,0x3b,0x6,0x70,0x46,0x0,0x0,0xc4,0x11,0xfe,0x80,0x3e,0xd9,0x73,
0x72,0xaf,0x9e,0x3e,0xff,0x5c,0xf7,0x3f,0x77,0xd3,0x97,0x35,0xb5,0x66,0xf3,0x0,
0xce,0x8,0x0,0x80,0x22,0xc2,0x1f,0xd0,0x47,0x3b,0x8f,0xde,0xbf,0xa0,0xf1,0x7f,
0xb4,0x7f,0x1,0x0,0x8b,0x85,0xf0,0x7,0xf4,0xd1,0xf4,0xdc,0x8c,0x76,0xbd,0xf4,
0xe9,0xae,0x7f,0xee,0xc6,0xc9,0x1b,0x68,0xff,0x2,0x0,0x16,0x5,0xe1,0xf,0xe8,
0xb3,0x7d,0xa7,0xf6,0x77,0xb4,0xe6,0x59,0x68,0xcf,0x4d,0x5f,0xd6,0xe4,0x38,0xcb,
0x45,0x0,0x0,0x6,0x8b,0xf0,0x7,0xc,0xc0,0xae,0x97,0x3f,0xd3,0xf5,0xcf,0x4c,
0x8c,0x5d,0xb5,0xe0,0x1d,0x1a,0x0,0x0,0xe8,0x14,0x8b,0x3c,0x3,0x3,0x70,0xec,
0xcd,0x57,0xf4,0xad,0x53,0xfb,0xf5,0xd1,0x2e,0x5b,0xb9,0xbb,0xae,0x7d,0x90,0x6d,
0xa2,0xb0,0x20,0x33,0xf3,0x17,0xfb,0xb6,0xd0,0x73,0xbf,0x76,0xeb,0x70,0xb7,0x85,
0x3b,0xb0,0xf5,0xa9,0x8e,0xcf,0x6f,0x66,0xfe,0xa2,0xb7,0x5b,0xc6,0xb6,0xb5,0x5b,
0x5b,0x3e,0xbf,0xdd,0x76,0x6d,0x1b,0x56,0xaf,0xd7,0x35,0xab,0xd7,0x77,0xf4,0xbb,
0x17,0xea,0xf4,0xec,0x99,0x81,0xbe,0x3e,0xd0,0x4f,0x84,0x3f,0x60,0x40,0x76,0xbf,
0xfa,0xa8,0xb6,0x5f,0x7d,0x57,0x57,0xff,0x20,0x4f,0x8c,0x5d,0xa5,0xdd,0x9b,0x1e,
0xd6,0xae,0x97,0xba,0xaf,0x1c,0x62,0xb4,0x4d,0x3d,0x7f,0x73,0xdb,0xfd,0x6a,0x97,
0x6a,0x8f,0xde,0xa9,0x35,0x9b,0xbb,0xfa,0xdf,0xc1,0xbe,0x53,0xdf,0xf6,0xf6,0x1b,
0x6e,0xb7,0xf7,0x70,0xaf,0x26,0xc7,0x27,0x34,0x35,0xd9,0xdb,0x8c,0x7b,0xc2,0x1f,
0x86,0x9,0xe1,0xf,0x18,0x90,0xd3,0xb3,0x67,0xb5,0xe7,0xe4,0xde,0xae,0xf6,0xfe,
0x3d,0x33,0x7b,0x96,0xaa,0x1f,0x16,0xe4,0xf4,0xec,0xd9,0x25,0x9,0x76,0x9d,0xd8,
0xbe,0xee,0xce,0xae,0x9e,0xbf,0xe7,0xe4,0xde,0x1,0x9d,0x49,0xdc,0xf4,0xdc,0xcc,
0xc0,0x3,0x26,0xb0,0x9c,0x10,0xfe,0x80,0x1,0xda,0xf3,0xfa,0x5e,0xed,0xba,0xf6,
0xc1,0xd2,0xaa,0xc7,0x8b,0x17,0x8e,0xe8,0xf4,0xec,0x19,0x1d,0xba,0x70,0x58,0x87,
0x2e,0x1c,0x5e,0xb6,0xff,0x78,0x3,0xbd,0xd8,0x7e,0x75,0xe7,0xe1,0xef,0xc7,0xd3,
0xc7,0xf9,0xdf,0x1,0x30,0x60,0x84,0x3f,0x60,0x80,0xec,0xd2,0x2f,0x4f,0x6e,0x79,
0x5c,0x67,0x66,0xcf,0xe6,0x21,0x8f,0xa0,0x87,0x51,0xb1,0x61,0xf5,0x7a,0xdd,0x38,
0x79,0x43,0xc7,0xcf,0xdf,0x77,0x6a,0xff,0x0,0xcf,0x6,0x80,0x44,0xf8,0xc3,0x90,
0xdb,0xb0,0x7a,0xbd,0x4e,0xdd,0x75,0xa2,0xed,0xf3,0x66,0xe6,0x2f,0xea,0xd8,0x9b,
0xaf,0xb4,0x7d,0x5e,0xbb,0x41,0xec,0xed,0x5a,0x43,0xb1,0x31,0x55,0xfb,0x4e,0xed,
0xd7,0xb1,0xe9,0xe3,0x1d,0xfd,0xfe,0x56,0xda,0xd,0x6a,0xef,0xe6,0x79,0x9d,0x8c,
0x71,0xba,0x75,0xed,0x2d,0xde,0xfd,0x99,0xf9,0x8b,0xda,0xf6,0xc2,0xed,0x3d,0xbf,
0xf,0x8c,0x96,0xed,0x57,0xdf,0xd5,0xd5,0xf3,0xf,0x9c,0x3b,0x38,0xa0,0x33,0x1,
0x60,0x11,0xfe,0x30,0xd4,0x3a,0x9,0x43,0x52,0x7d,0x22,0x45,0x18,0x66,0x62,0xda,
0x3d,0xe7,0x11,0x75,0x3e,0x7e,0x6f,0xa5,0x99,0x18,0xbb,0x4a,0xdb,0xd7,0xdd,0x49,
0xf8,0x43,0x57,0x76,0xbd,0xeb,0xe3,0x1d,0x3f,0x97,0x96,0x2f,0xb0,0x38,0x58,0xe7,
0xf,0x0,0x30,0x10,0x53,0x6b,0x36,0x77,0xb5,0xc4,0xa,0x2d,0x5f,0x60,0x71,0x10,
0xfe,0x0,0x0,0x3,0xd1,0x4d,0xd5,0x4f,0x1a,0xfc,0x92,0x2e,0x0,0xea,0x8,0x7f,
0x0,0x80,0xbe,0xdb,0xb0,0x7a,0x7d,0x57,0x8b,0x9c,0xff,0xb8,0xf,0xe3,0x62,0x1,
0x74,0x86,0xf0,0x7,0x0,0xe8,0xbb,0xdd,0x9b,0x1e,0xee,0xea,0xf9,0xb4,0x7c,0x81,
0xc5,0x43,0xf8,0x3,0x0,0xf4,0x55,0xb7,0x55,0x3f,0xa9,0xbe,0xab,0x7,0x80,0xc5,
0xc1,0x6c,0x5f,0x0,0x18,0x51,0x93,0xe3,0x13,0xda,0xf5,0xae,0x7,0xf3,0xfb,0xe1,
0x52,0x45,0x9d,0xec,0xdf,0x1b,0xb3,0xe7,0xa6,0x2f,0x77,0xf5,0xfc,0xa7,0xcf,0x3f,
0xb7,0xa8,0x3b,0xdb,0x4c,0xad,0xd9,0xac,0xc9,0xb1,0x89,0xfc,0xbe,0xbb,0x3c,0xd2,
0xf4,0xfc,0xcc,0xa2,0xef,0x30,0x2,0x2c,0x36,0xc2,0x1f,0x0,0x8c,0xa8,0x5d,0xef,
0x7a,0xb0,0xab,0xed,0x7,0x7,0xe5,0xee,0x75,0x77,0xc8,0xdc,0xf3,0x2f,0x4b,0x7d,
0x1a,0xb9,0x6d,0x6b,0xb7,0x6a,0xfb,0xe1,0x7b,0x96,0xfa,0x34,0x80,0x81,0xa1,0xed,
0xb,0x0,0x80,0xc3,0xad,0xa,0x2,0x2b,0x11,0x95,0x3f,0xa0,0x43,0x67,0x66,0xcf,
0x76,0xbd,0x0,0x6d,0x27,0xb,0x4b,0xbb,0x7e,0x3c,0x7d,0xbc,0xb4,0xfd,0xb5,0x61,
0xf5,0xfa,0xae,0xd6,0x4c,0x3,0x0,0x20,0x86,0xf0,0x87,0xa1,0x76,0xe8,0xc2,0x61,
0x3d,0x7d,0xfe,0x39,0xef,0xbf,0xd4,0x7b,0xd9,0xa2,0x2d,0xb6,0x3d,0x5b,0x2f,0xba,
0x6d,0x65,0xed,0x7a,0xe9,0x33,0x3d,0xad,0x75,0x16,0x8e,0x65,0x72,0x75,0xb2,0xa5,
0x5b,0xab,0xe7,0x4c,0xcf,0xcf,0xb0,0xe,0x1b,0x0,0xac,0x0,0x84,0x3f,0xc,0x3d,
0xc6,0xe6,0x34,0xb5,0x5b,0x27,0xed,0xc0,0xb9,0x67,0x17,0xe9,0x4c,0x0,0x0,0xcb,
0x15,0x63,0xfe,0x0,0x0,0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,0x10,0xfe,
0x0,0x0,0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,0x10,0xfe,0x0,0x0,0x0,
0x46,0x8,0xb3,0x7d,0x1,0x0,0x1d,0xf9,0xe4,0xcb,0xf,0xb5,0x9d,0x51,0xbe,0x5c,
0xed,0xb9,0xe9,0x8f,0x75,0xe3,0xe4,0xd,0x4b,0x7d,0x1a,0xc0,0xb2,0x40,0xf8,0x3,
0x0,0x74,0xe4,0xd8,0x9b,0xaf,0xc,0xed,0x5a,0x8f,0x8b,0xb9,0x77,0x30,0xb0,0xdc,
0xd1,0xf6,0x5,0x0,0x0,0x18,0x21,0x84,0x3f,0x0,0x0,0x80,0x11,0x42,0xdb,0x17,
0x0,0xb0,0x24,0x76,0x5d,0xfb,0xa0,0x26,0xc7,0x26,0x74,0x7a,0xf6,0x8c,0x8e,0x4d,
0x1f,0x1f,0xda,0xf1,0x84,0xc0,0xb0,0x21,0xfc,0x1,0x0,0x16,0xdd,0xf6,0xab,0xef,
0xd4,0x9f,0xbe,0xfb,0x4b,0xde,0xb1,0x99,0xf9,0x8b,0x3a,0x70,0xee,0xa0,0xe,0x5d,
0x38,0xac,0x3,0xe7,0x9f,0x65,0x9c,0x1e,0x30,0x20,0xb4,0x7d,0x1,0x0,0x8b,0x6e,
0x6a,0x72,0x73,0xe1,0xd8,0xc4,0xd8,0x55,0xfa,0xe8,0xc6,0x1d,0x7a,0x72,0xcb,0xe3,
0x7a,0xf3,0x83,0xe7,0x74,0x60,0xeb,0x53,0xda,0xb9,0x71,0xc7,0x12,0x9c,0x1d,0xb0,
0xb2,0x11,0xfe,0x0,0x0,0x8b,0xae,0x93,0x59,0xc3,0x77,0xaf,0xbb,0x43,0x4f,0x6e,
0x79,0x5c,0xd3,0xbf,0x71,0x5e,0xbb,0x37,0x3d,0xbc,0x8,0x67,0x5,0x8c,0x6,0xc2,
0x1f,0x0,0x60,0x59,0x9b,0x18,0xbb,0x4a,0x8f,0x6c,0xfa,0xac,0x76,0x5d,0xfb,0xe0,
0x52,0x9f,0xa,0xb0,0x22,0x10,0xfe,0x0,0x0,0x43,0xe1,0xc0,0xb9,0x83,0x4b,0x7d,
0xa,0xc0,0x8a,0x40,0xf8,0x3,0x0,0x2c,0x7b,0xdf,0x3a,0xb5,0x5f,0xa7,0x67,0xcf,
0x2e,0xf5,0x69,0x0,0x2b,0x2,0xe1,0xf,0x0,0xb0,0xac,0xcd,0xcc,0x5f,0xd4,0xee,
0x57,0x1f,0x5d,0xea,0xd3,0x0,0x56,0xc,0xc2,0x1f,0x0,0x60,0x59,0xdb,0x73,0x72,
0x2f,0x55,0x3f,0xa0,0x8f,0x8,0x7f,0x0,0x80,0x45,0x37,0x39,0x3e,0xd1,0xf1,0x73,
0xf7,0x9d,0xfa,0xf6,0x0,0xcf,0x4,0x18,0x3d,0x84,0x3f,0x0,0xc0,0xa2,0x8b,0xad,
0xf3,0x57,0x86,0xaa,0x1f,0xd0,0x5f,0x84,0x3f,0x0,0xc0,0xa2,0xdb,0xb0,0x7a,0x7d,
0x47,0xcf,0x7b,0xf1,0xc2,0x91,0x1,0x9f,0x9,0x30,0x7a,0x8,0x7f,0x0,0x80,0x45,
0xb7,0x61,0xf5,0x35,0x1d,0x3d,0xef,0xd8,0x34,0xfb,0xfd,0x2,0xfd,0xc6,0xde,0xbe,
0x58,0x91,0xa6,0xd6,0x6c,0xd6,0xa1,0xdb,0xbe,0xa7,0x89,0xb1,0xab,0x24,0x49,0x67,
0x66,0xcf,0xb6,0x6c,0x1d,0x4d,0xcf,0xcf,0x94,0x6e,0x2a,0x7f,0x6c,0xfa,0x95,0xd2,
0x3d,0x46,0x4f,0xcf,0x9e,0x59,0xb4,0x96,0xd4,0xd4,0x9a,0xcd,0x9a,0x1c,0x8b,0x8f,
0x93,0x2a,0x7b,0x6c,0xc3,0xea,0xf5,0x6d,0xff,0x91,0xbd,0x75,0xed,0x2d,0xde,0xfd,
0xcf,0xbf,0xfa,0x18,0x33,0x2b,0x31,0x70,0xe1,0xdf,0xbb,0x32,0x65,0xff,0xbb,0x4,
0xb0,0x70,0x84,0x3f,0xac,0x48,0xdb,0xd7,0xdd,0x99,0x7,0x3f,0x49,0xba,0x66,0xf5,
0x7a,0x5d,0xd3,0xa6,0xcd,0x74,0xf7,0xba,0x3b,0x6,0x7d,0x5a,0x6d,0xfd,0xd3,0x6d,
0x7f,0xbf,0xd4,0xa7,0xa0,0x6d,0x6b,0xb7,0x2e,0xf5,0x29,0x60,0x85,0xeb,0xe6,0xef,
0x58,0x27,0xdb,0xc0,0x1,0xe8,0xe,0x6d,0x5f,0x0,0xc0,0xa2,0x9a,0x5a,0xd3,0xd9,
0x64,0x8f,0x99,0xf9,0x8b,0x4c,0xf6,0x0,0x6,0x80,0xf0,0x7,0x0,0x58,0x54,0x9d,
0x56,0xfe,0xa8,0xfa,0x1,0x83,0x41,0xf8,0x3,0x0,0x2c,0x2a,0xc2,0x1f,0xb0,0xb4,
0x8,0x7f,0x0,0x80,0x45,0xb3,0x6d,0xed,0x56,0x6f,0x3c,0x6e,0x2b,0x4b,0x15,0xfe,
0x3a,0x5d,0x86,0x6,0x18,0x56,0x84,0x3f,0x0,0xc0,0xa2,0xd9,0x7e,0xf5,0x9d,0x1d,
0x3d,0x6f,0x66,0xfe,0xe2,0x92,0xcd,0xf4,0x6d,0x37,0x39,0xc,0x18,0x76,0x84,0x3f,
0x0,0xc0,0xa2,0xd9,0xbe,0xae,0xb3,0xf0,0x77,0xe0,0xdc,0xc1,0x1,0x9f,0x9,0x30,
0xba,0x8,0x7f,0x0,0x80,0x45,0x31,0xb5,0x66,0x73,0xc7,0x55,0x35,0xc6,0xfb,0x1,
0x83,0x43,0xf8,0x3,0x80,0x11,0xd5,0xe9,0x92,0x2b,0xfd,0xb2,0x73,0xe3,0x8e,0x8e,
0x9f,0x7b,0xe0,0xfc,0xb3,0x3,0x3c,0x13,0x60,0xb4,0xb1,0xc8,0x33,0xd0,0x27,0xb1,
0x31,0x4a,0x9d,0xee,0x62,0x60,0xfd,0x78,0xfa,0xb8,0xb7,0x9b,0xc8,0xd4,0x9a,0xcd,
0x1d,0xf,0x8e,0x7,0xba,0x55,0xb6,0x63,0xcc,0xa0,0xec,0xdc,0xf8,0xdb,0x1d,0x3d,
0x2f,0xfc,0xdf,0x1,0x80,0xfe,0x22,0xfc,0x61,0x45,0xda,0xf3,0xfa,0xde,0xae,0x9e,
0xdf,0x6a,0xb,0x37,0x69,0xe1,0x2d,0x28,0x73,0xcf,0xbf,0x74,0xf5,0xfc,0x5d,0x2f,
0x7d,0xa6,0xeb,0xdf,0xd5,0x6e,0xb,0xb7,0x6e,0x77,0xec,0xa0,0xe2,0x82,0x41,0xd8,
0x7e,0xf5,0x9d,0x1d,0xff,0x87,0xcc,0xbe,0x53,0xfb,0x7,0x7c,0x36,0xc0,0x68,0x23,
0xfc,0x61,0x45,0x9a,0x9e,0x9b,0x19,0x99,0xfd,0x69,0x4f,0xb7,0xd9,0xb7,0x98,0xb1,
0x53,0x58,0xe,0x3a,0xad,0xfa,0x49,0x4c,0xf6,0x0,0x6,0x8d,0x31,0x7f,0x0,0x80,
0x81,0xda,0xb0,0x7a,0x7d,0xc7,0x7b,0x67,0xff,0x78,0xfa,0x38,0x5b,0xba,0x1,0x3,
0x46,0xf8,0x3,0x0,0xc,0x54,0x37,0x55,0x3f,0x5a,0xbe,0xc0,0xe0,0x11,0xfe,0x0,
0x0,0x3,0xd5,0xd5,0x2c,0x5f,0x5a,0xbe,0xc0,0xc0,0x11,0xfe,0x0,0x0,0x3,0xb3,
0x73,0xe3,0x8e,0x8e,0xd7,0xf6,0xa3,0xe5,0xb,0x2c,0xe,0xc2,0x1f,0x0,0x60,0x60,
0x76,0x6f,0x7a,0xb8,0xe3,0xe7,0xee,0x39,0xd9,0xdd,0x2c,0x7d,0x0,0xb,0x43,0xf8,
0x3,0x0,0xc,0x44,0x37,0x55,0x3f,0x89,0x65,0x86,0x80,0xc5,0x42,0xf8,0x3,0x0,
0xc,0x44,0x37,0x55,0xbf,0x6f,0x9d,0xda,0xbf,0xac,0x16,0x76,0x9e,0x1c,0x5f,0xdc,
0x5,0xb0,0x81,0xc5,0x44,0xf8,0x3,0x0,0xf4,0xdd,0xae,0x6b,0x1f,0xec,0xaa,0xea,
0xb7,0xe7,0xf5,0xaf,0xf,0xf0,0x6c,0xba,0x37,0x35,0xb9,0xb8,0x5b,0xdf,0x1,0x8b,
0x89,0xf0,0x7,0x0,0x23,0x6a,0x43,0x17,0xe1,0xac,0x1b,0x93,0xe3,0x13,0x5d,0x55,
0xfd,0x5e,0xbc,0x70,0xa4,0xb0,0x35,0x22,0x80,0xc1,0x61,0x87,0xf,0x0,0x18,0x51,
0xdd,0x54,0xe6,0xba,0xb1,0x6f,0xcb,0x13,0x5d,0xed,0x49,0xbd,0xef,0xd4,0xb7,0xb,
0xc7,0xe,0x6c,0x7d,0x4a,0x1b,0x56,0xaf,0xd7,0xe9,0xd9,0xb3,0x3a,0x70,0xee,0xa0,
0xe,0x9c,0x7f,0x76,0x59,0xb5,0x85,0x81,0x61,0x46,0xf8,0x3,0x80,0x11,0x34,0xa8,
0x31,0x6d,0x3b,0x37,0xee,0xe8,0x78,0x37,0xf,0x49,0x3a,0x33,0x7b,0xb6,0xb0,0xb0,
0xb3,0xfb,0x1a,0x37,0x4e,0xde,0xa0,0xbb,0xd7,0xdd,0xa1,0x27,0x25,0x3d,0x7d,0xfe,
0x39,0x1d,0x38,0x77,0x90,0x85,0xa0,0x81,0x1e,0xd1,0xf6,0x5,0x80,0x11,0x34,0x88,
0x31,0x6d,0x53,0x6b,0x36,0x6b,0xcf,0x4d,0x5f,0xee,0xea,0x67,0xc2,0x3d,0xb8,0x5b,
0xb5,0x8c,0xef,0x5e,0x77,0x87,0x9e,0xdc,0xf2,0xb8,0xa6,0x7f,0xe3,0xbc,0xf6,0xdc,
0xf4,0xc7,0x3,0x6b,0x5b,0x3,0x2b,0x1d,0xe1,0xf,0x0,0x46,0xd0,0xea,0xd4,0x4a,
0x6a,0x0,0x0,0x16,0xca,0x49,0x44,0x41,0x54,0xe9,0xd9,0x33,0x9a,0x99,0xbf,0xd8,
0xb7,0xd7,0x9b,0x1c,0x9f,0xd0,0xbe,0x2d,0x8f,0x77,0xd5,0xee,0x8d,0x55,0xfd,0x76,
0xbd,0xab,0xfd,0x44,0x91,0x89,0xb1,0xab,0xf4,0x7,0xef,0xfa,0xb8,0x4e,0xdd,0x75,
0x42,0x87,0x6e,0xfb,0x9e,0xb6,0x5f,0x7d,0x67,0xdb,0xdf,0xb5,0xe7,0xf5,0xce,0xd7,
0x10,0xfc,0xd6,0xa9,0xfd,0x3a,0x74,0xe1,0x70,0xc7,0xcf,0x7,0x86,0xd,0x6d,0x5f,
0x0,0x18,0x41,0xa7,0x67,0xcf,0x6a,0xea,0xf9,0x9b,0xb5,0x61,0xf5,0x35,0x1d,0x3e,
0xff,0x4c,0xe9,0xee,0x1b,0x93,0xe3,0x13,0x3a,0x74,0xdb,0xf7,0x74,0xe3,0xe4,0xd,
0x5d,0x9d,0x43,0x58,0xf5,0xdb,0xb0,0x7a,0xbd,0x1e,0xd9,0xf4,0xd9,0xae,0x5e,0xe3,
0xd6,0xb5,0xb7,0xe8,0xd6,0xb5,0xb7,0xe8,0xcc,0xec,0x59,0xed,0x7e,0xf5,0xd1,0xd2,
0x96,0xf0,0x81,0x73,0xcf,0xea,0x3,0x47,0x3e,0xdc,0xb6,0xe2,0x39,0x3d,0x3f,0xc3,
0x62,0xd3,0x58,0xf1,0x8,0x7f,0x0,0x30,0xa2,0x4e,0xcf,0x9e,0xed,0x79,0x3b,0xb5,
0x85,0x6,0xbf,0x58,0xd5,0x6f,0xdf,0x96,0x27,0x16,0x7c,0x1e,0xd7,0xac,0x5e,0xaf,
0x27,0xb7,0x3c,0xae,0x3d,0x37,0x7d,0x59,0x7b,0x4e,0xee,0xd5,0x9e,0xd7,0xf7,0x16,
0x26,0x88,0x1c,0x38,0xf7,0xac,0xe,0x9c,0x63,0x21,0x69,0x80,0xb6,0x2f,0x0,0x60,
0x41,0x16,0x1a,0xfc,0x24,0x69,0xe7,0xd1,0x7,0xbc,0xfb,0xdb,0xaf,0xbe,0x53,0xb7,
0xae,0xbd,0xa5,0xe7,0x73,0x9a,0x18,0xbb,0x4a,0x8f,0x6c,0xfa,0xac,0x4e,0xdf,0xf5,
0x9a,0x76,0x6f,0x7a,0x98,0xc5,0x9a,0x81,0x8,0xc2,0x1f,0x0,0xa0,0x6b,0x53,0x6b,
0x36,0xeb,0xf4,0x5d,0xaf,0x2d,0x28,0xf8,0x3d,0x7d,0xfe,0xb9,0xc2,0x98,0xba,0x3d,
0xef,0xfe,0xe3,0x7e,0x9d,0x9a,0x24,0x42,0x20,0xd0,0xa,0xe1,0xf,0x0,0xd0,0x95,
0x9d,0x1b,0x77,0xe8,0xe5,0xf7,0xfd,0x73,0x57,0x93,0x3b,0xac,0x99,0xf9,0x8b,0xda,
0xf5,0xd2,0xa7,0xbd,0x63,0xdd,0xee,0x6,0xd2,0xd,0x42,0x20,0x50,0x44,0xf8,0x3,
0x0,0x74,0x64,0x72,0x7c,0x42,0x7,0xb6,0x3e,0xa5,0x27,0xb7,0x3c,0xbe,0xe0,0xd7,
0xd8,0xfd,0xea,0xa3,0x85,0x71,0x86,0x7b,0x4e,0xee,0xd5,0xc6,0x83,0xd7,0xeb,0x93,
0x2f,0x3f,0xa4,0xa7,0xcf,0x3f,0xd7,0xeb,0x69,0x46,0xb9,0x21,0x70,0xe7,0xc6,0x1d,
0x3,0xf9,0x1d,0xc0,0xb0,0x20,0xfc,0x1,0x0,0xda,0xda,0xb6,0x76,0xab,0x8e,0xbd,
0xef,0xfb,0x5d,0x2d,0xe0,0x1c,0x7a,0xfa,0xfc,0x73,0xa5,0x33,0x69,0x4f,0xcf,0x9e,
0xd5,0x9e,0x93,0x7b,0xb5,0xfd,0xf0,0x3d,0x4a,0x9e,0xfa,0x37,0xfa,0xc0,0x91,0xf,
0xeb,0x5b,0xa7,0xf6,0xf7,0x75,0x39,0x1a,0xa9,0x1e,0x2,0x9f,0xdc,0xf2,0xb8,0x4e,
0xdf,0x75,0x42,0xdb,0xd6,0x6e,0xed,0xeb,0x6b,0x3,0xc3,0x82,0xf0,0x7,0x0,0x28,
0x65,0xab,0x7d,0xff,0x74,0xdb,0xdf,0xf7,0xd4,0x9a,0x3d,0x33,0x7b,0x56,0x3b,0x8f,
0xde,0xdf,0xf1,0xf3,0xf,0x9c,0x7b,0x56,0x3b,0x8f,0x3e,0xa0,0xc9,0xff,0xbd,0x4e,
0x1f,0x38,0xf2,0xe1,0xbe,0x57,0x4,0xaf,0x59,0xbd,0x5e,0xff,0x74,0xdb,0xdf,0xeb,
0xd0,0x6d,0xdf,0x63,0xb1,0x68,0x8c,0x1c,0xc2,0x1f,0x0,0xa0,0xc0,0xee,0xb4,0x71,
0xfa,0xae,0xd7,0x7a,0xaa,0xf6,0x49,0xf5,0x71,0x7e,0xdb,0x8f,0x7c,0x78,0xc1,0x7b,
0xf3,0x1e,0x38,0xf7,0xac,0xb6,0x1f,0xbe,0x47,0x1b,0xf,0x5e,0xaf,0xcf,0xbf,0xfa,
0x58,0x5f,0xab,0x81,0xb7,0xae,0xbd,0x45,0xa7,0xee,0x3a,0xc1,0x78,0x40,0x8c,0x14,
0xc2,0x1f,0x0,0xc0,0xb3,0x73,0xe3,0xe,0x1d,0x7b,0xdf,0xf7,0xf5,0xc8,0xa6,0xcf,
0x2e,0x68,0x52,0x47,0xe1,0xf5,0x8e,0xde,0xaf,0x63,0x6f,0xbe,0xd2,0xf3,0xeb,0x9c,
0x6e,0x2c,0xe4,0xbc,0xe1,0xe0,0x75,0xba,0xef,0xe8,0x3,0x3a,0xd3,0xe3,0x1a,0x85,
0xae,0x47,0x36,0x7d,0x56,0xc7,0xde,0xf7,0xfd,0x8e,0x76,0xb,0x1,0x86,0x1d,0xe1,
0xf,0x0,0xe0,0x54,0xfa,0x4e,0xe8,0xc9,0x2d,0x8f,0xf7,0x6d,0xf6,0xed,0x7d,0x47,
0x1f,0xe8,0xfb,0xc2,0xca,0xd3,0x73,0x33,0xda,0x77,0x6a,0xbf,0x36,0x1c,0xbc,0xbe,
0xaf,0x21,0xf0,0x9a,0xd5,0xeb,0xf5,0xdd,0x5b,0xfe,0x46,0x7,0xb6,0x3e,0x45,0x2b,
0x18,0x2b,0x1a,0x3b,0x7c,0x60,0x68,0x4c,0xad,0xd9,0xac,0xed,0xeb,0xfc,0xff,0x2a,
0xef,0x74,0xff,0xcd,0x56,0x5b,0x53,0xa1,0xae,0x93,0xc1,0xef,0xe1,0x73,0xd8,0xa,
0x6b,0xf8,0x4d,0xad,0xd9,0xac,0x5d,0xef,0xfa,0xb8,0xb6,0x5f,0x7d,0x57,0x5f,0xaa,
0x7c,0xae,0xfb,0x8e,0x3e,0x50,0xba,0xdd,0x5a,0xbf,0xec,0x3b,0xb5,0x5f,0xfb,0x4e,
0xed,0xd7,0xce,0x8d,0x3b,0xb4,0x7b,0xd3,0xc3,0x7d,0x9,0xad,0x77,0xaf,0xbb,0x43,
0xdb,0xd6,0x6e,0xd5,0xee,0x57,0x1f,0xe5,0xef,0x37,0x56,0x24,0xc2,0x1f,0x86,0xc2,
0xf6,0xab,0xef,0xd4,0x77,0x6f,0xf9,0x9b,0xc2,0xf1,0x47,0xd4,0xdd,0x3e,0xa0,0x9d,
0x78,0xf1,0xc2,0x91,0x8e,0x9e,0x37,0x88,0x40,0xb9,0x73,0xe3,0x8e,0x5,0xcd,0x40,
0xdc,0xb0,0x7a,0x7d,0xcb,0x3d,0x5a,0x27,0xc7,0x27,0x16,0xb4,0x18,0x6f,0xa7,0xf8,
0x7,0x72,0xb8,0xd8,0xff,0x90,0xda,0xb9,0x71,0xc7,0x40,0xd6,0xd7,0x9b,0x99,0xbf,
0xa8,0x9d,0x47,0xef,0x5f,0xd4,0xad,0xd4,0x6c,0x8,0xdc,0xbd,0xe9,0x61,0xed,0xba,
0xf6,0xc1,0x9e,0x83,0xec,0xc4,0xd8,0x55,0xfa,0xd3,0x77,0x7f,0xa9,0xfe,0x39,0x1d,
0xbd,0x9f,0xff,0x78,0xc4,0x8a,0x42,0xf8,0xc3,0x50,0x68,0xb7,0x19,0x7b,0x3f,0x75,
0xba,0xc5,0xd4,0xad,0xea,0x7d,0x2b,0xaa,0xd0,0x47,0x87,0x70,0xfd,0xb1,0xc9,0x31,
0x6,0xc9,0x2f,0x77,0x93,0xe3,0x13,0xda,0xb6,0x76,0xab,0xb6,0xad,0xdd,0xaa,0xed,
0xeb,0xee,0x1c,0xd8,0x82,0xca,0x52,0x3d,0xf8,0x6d,0x7b,0xe1,0xf6,0xbe,0x8c,0xf1,
0x5b,0x88,0xdd,0xaf,0x3e,0xaa,0x7d,0xa7,0xbe,0xad,0x3d,0x37,0x7d,0xb9,0xe7,0x89,
0x2a,0x52,0xfd,0xff,0x1f,0x1c,0x7b,0xff,0xf,0xb4,0xeb,0xa5,0x4f,0xf,0xbc,0x8a,
0x9,0x2c,0x16,0xc2,0x1f,0x0,0xac,0x20,0x53,0x6b,0x36,0x6b,0x72,0xac,0x1e,0xf6,
0x36,0xac,0x5e,0xaf,0xa9,0x35,0x9b,0x7,0x5a,0xf5,0x75,0xbd,0x78,0xe1,0x88,0xb6,
0x1f,0xb9,0x67,0xc1,0xb3,0x7a,0xfb,0xe5,0xf4,0xec,0x59,0x6d,0x3f,0x7c,0x8f,0xb6,
0x5f,0x7d,0xa7,0xf6,0x6d,0x79,0xa2,0x2f,0x55,0xc0,0x27,0xb7,0x3c,0xae,0x6d,0x6b,
0xb7,0x6a,0xd7,0xcb,0x9f,0x59,0xf2,0xf7,0x7,0xf4,0x8a,0xf0,0x7,0x0,0x43,0x6c,
0x72,0x7c,0x42,0xfb,0xb6,0x3c,0xa1,0x6d,0x6b,0xb7,0xf6,0x7d,0xcc,0x5e,0x37,0x3e,
0xff,0xea,0x63,0xda,0xfd,0xea,0xa3,0x4b,0xf6,0xfb,0x63,0xe,0x9c,0x7b,0x56,0x1b,
0x2e,0x5c,0xa7,0x7d,0x5b,0x9e,0xe8,0x4b,0x15,0xf0,0xa3,0x1b,0x77,0x68,0x6a,0xcd,
0x66,0xed,0x3c,0xfa,0xc0,0x92,0x55,0x36,0x81,0x7e,0x60,0xb6,0x2f,0x0,0xc,0xb1,
0x9d,0x1b,0x7f,0x5b,0x77,0xaf,0xbb,0x63,0xc9,0x82,0xdf,0x99,0xd9,0xb3,0xfa,0xb7,
0x2f,0xfc,0x87,0x65,0x17,0xfc,0xac,0xe9,0xb9,0x19,0x6d,0x3f,0x7c,0x8f,0xee,0x3b,
0xfa,0x40,0x5f,0xd6,0x7,0xbc,0x71,0xf2,0x6,0x1d,0xba,0xed,0x7b,0x6c,0x11,0x87,
0xa1,0x46,0xf8,0x3,0x80,0x21,0x76,0xe0,0xdc,0xc1,0x25,0xfb,0xdd,0x9f,0x7f,0xf5,
0x31,0x4d,0xfd,0xc3,0x7b,0x3a,0x9e,0x75,0xbf,0x94,0xf6,0x9d,0xda,0xaf,0xa9,0xe7,
0x6f,0xd6,0x8f,0xa7,0x8f,0xf7,0xfc,0x5a,0xb6,0xd,0xbc,0x7b,0xd3,0xc3,0x7d,0x38,
0x33,0x60,0xf1,0x11,0xfe,0x0,0x60,0x88,0x9d,0x9e,0x3d,0xab,0x4f,0xbe,0xfc,0xd0,
0xa2,0xfe,0xce,0x17,0x2f,0x1c,0xd1,0xc6,0x83,0xd7,0x6b,0xf7,0xab,0x8f,0xe,0xd5,
0xf8,0xb7,0xd3,0xb3,0x67,0x35,0xf5,0xfc,0x7b,0xf4,0xad,0x3e,0x4d,0xdc,0x60,0x2d,
0x40,0xc,0x2b,0xc2,0x1f,0x0,0xc,0xb9,0x3d,0x27,0xf7,0xf6,0x7d,0xef,0xdb,0x18,
0xdb,0xe2,0xdd,0xf6,0xc2,0xed,0x43,0xbd,0xf4,0xc9,0xce,0xa3,0xf,0xf4,0xdc,0x6,
0xfe,0xf1,0xf4,0x71,0xed,0x7a,0xf9,0x33,0x7d,0x3c,0x2b,0x60,0xf1,0x10,0xfe,0x0,
0x60,0x5,0xd8,0x79,0xf4,0xfe,0xbe,0xb4,0x34,0x63,0xce,0xcc,0x9e,0xd5,0x7d,0x47,
0x1f,0xd0,0x86,0x83,0xd7,0xf,0x45,0x8b,0xb7,0x13,0xfb,0x4e,0xed,0xd7,0xb6,0x17,
0x6e,0x5f,0xd0,0xee,0x20,0x2f,0x5e,0x38,0xa2,0x6d,0x2f,0xdc,0x3e,0x54,0x55,0x4f,
0xc0,0x45,0xf8,0x3,0x80,0x15,0x60,0x7a,0x6e,0x46,0x3b,0xfb,0x34,0xa9,0xc1,0x7a,
0xf1,0xc2,0x91,0x3c,0xf4,0xad,0xc4,0x35,0xee,0x8e,0xbd,0xf9,0x8a,0xa6,0xfe,0xe1,
0x3d,0x5d,0x85,0xe6,0x6f,0x35,0x42,0x23,0xc1,0xf,0xc3,0x8c,0xa5,0x5e,0x30,0x14,
0xe,0x5d,0x38,0xdc,0xd3,0x6e,0x1e,0x33,0xf3,0x17,0x3b,0x5a,0x9a,0xe1,0xd8,0xf4,
0x2b,0x6d,0xff,0x9f,0xfa,0xf4,0xfc,0xcc,0xc0,0x96,0x79,0xb0,0x6b,0xb4,0x75,0xa2,
0x93,0x9d,0x40,0x6,0xbd,0xb3,0x7,0x96,0x97,0x63,0x6f,0xbe,0xa2,0x5d,0x2f,0x7d,
0x5a,0x4f,0x6e,0x79,0x7c,0xc1,0xaf,0x31,0x33,0x7f,0x51,0x7,0xce,0x1d,0xd4,0x9e,
0xd7,0xbf,0x3e,0x12,0xcb,0x99,0x4c,0xcf,0xcd,0x68,0xea,0xf9,0xf7,0x68,0xdf,0x96,
0xc7,0xdb,0x2e,0xb2,0xbe,0x1c,0x97,0xb3,0x1,0x16,0x82,0xf0,0x87,0xa1,0x70,0xe8,
0xc2,0x61,0xbd,0xfb,0x1f,0x7e,0x2d,0x1a,0x8c,0x56,0x4a,0x1b,0x4a,0x5a,0x1e,0xef,
0xa5,0x9b,0x0,0x3a,0xc8,0x20,0x8c,0x85,0xd9,0x77,0x6a,0xbf,0xb6,0x5f,0x7d,0x57,
0xd7,0xeb,0xda,0x3d,0x7d,0xfe,0x39,0x1d,0x38,0x77,0x50,0x7,0xce,0x3f,0x3b,0x92,
0x55,0xad,0x9d,0x47,0x1f,0xd0,0xb1,0xe9,0xe3,0xfa,0xd3,0x77,0x7f,0x29,0xfa,0xf8,
0x62,0xec,0x53,0xc,0x2c,0x16,0xc2,0x1f,0x86,0x6,0x21,0x63,0x71,0xf0,0x39,0xf,
0xbf,0x5d,0x2f,0x7d,0xba,0xed,0xa2,0xcf,0xb6,0xc2,0x77,0xe8,0xc2,0xe1,0x91,0xd,
0x7c,0xa1,0x3d,0x27,0xf7,0xea,0xf4,0xec,0x19,0x6f,0x57,0x90,0x99,0xf9,0x8b,0x6c,
0xed,0x86,0x15,0x87,0xf0,0x7,0x0,0x2b,0xcc,0xe9,0xd9,0xb3,0xda,0x73,0x72,0xaf,
0x1e,0xd9,0xd4,0x1c,0x2a,0x31,0x33,0x7f,0x51,0x87,0x2e,0x1c,0xce,0x2f,0x84,0xfc,
0xb8,0x3,0xe7,0x9e,0xd5,0xd4,0x9b,0x37,0x6b,0xdf,0x96,0x27,0x34,0xb5,0x66,0xf3,
0x92,0xee,0x53,0xc,0xc,0xa,0xe1,0xf,0x0,0x56,0xa0,0x3d,0xaf,0xef,0xcd,0x87,
0x11,0x9c,0x9e,0x3d,0x33,0xd4,0x4b,0xb3,0x2c,0xb6,0xd3,0xb3,0x67,0xb5,0xed,0x85,
0xdb,0x97,0xfa,0x34,0x80,0x81,0x21,0xfc,0x1,0xc0,0xa,0x34,0x3d,0x37,0xb3,0x2c,
0xc6,0x90,0x2,0x58,0x7e,0x58,0xea,0x5,0x0,0x0,0x60,0x84,0x10,0xfe,0x0,0x0,
0x0,0x46,0x8,0xe1,0xf,0x0,0x0,0x60,0x84,0x10,0xfe,0x0,0x0,0x0,0x46,0x8,
0xe1,0xf,0x0,0x0,0x60,0x84,0x74,0x15,0xfe,0x8c,0x31,0xad,0x1f,0x57,0xeb,0xc7,
0x1,0x0,0x0,0xb0,0xb4,0xa8,0xfc,0x1,0x0,0x0,0x8c,0x90,0xae,0xc2,0x5f,0x92,
0x24,0xad,0x1f,0x57,0xeb,0xc7,0x1,0x0,0x0,0xb0,0xb4,0xfa,0xda,0xf6,0x5,0x0,
0x0,0xc0,0xf2,0xd6,0xd7,0xb6,0x2f,0x63,0xfe,0x0,0x0,0x0,0x6,0xa8,0xf,0x51,
0x8b,0x31,0x7f,0x0,0x0,0x0,0x23,0x84,0xf0,0x7,0x0,0x0,0x30,0x42,0xf2,0xf0,
0x17,0x6b,0xd9,0xd2,0xc6,0x5,0x0,0x0,0x58,0x42,0x3,0x88,0x62,0x5e,0xe5,0xcf,
0x4e,0xe8,0x70,0x27,0x76,0xb4,0x9a,0xe4,0x41,0x38,0x4,0x0,0x0,0x18,0x2e,0x85,
0xb6,0x2f,0x81,0xe,0x0,0x0,0x60,0x19,0xea,0x53,0x44,0xab,0x2c,0xf4,0xb5,0x8,
0x89,0x0,0x0,0x0,0x3d,0x5a,0x82,0x38,0x55,0xe9,0xc7,0xda,0x7d,0xc4,0x40,0x0,
0x0,0x80,0x5,0x32,0xce,0xc5,0x3d,0xd6,0xee,0xf6,0x2,0xf9,0x63,0xfe,0x1a,0xaf,
0x58,0xb8,0xee,0xe3,0xe2,0xce,0xed,0x76,0x9,0x1,0x0,0x0,0x80,0xfa,0x1e,0xfa,
0xac,0x4a,0x3d,0x68,0xf6,0x6f,0x52,0x47,0x18,0x1c,0x1,0x0,0x0,0xd0,0x5,0xb7,
0xa,0x98,0x5f,0xf7,0x2f,0x57,0x35,0x97,0x7a,0x9,0x5e,0xb4,0xd5,0xfd,0x58,0x45,
0xb0,0x93,0xb0,0xc7,0xde,0xbf,0x0,0x0,0x0,0x81,0x58,0xd8,0x93,0x9a,0x81,0x2f,
0xf6,0x58,0xf,0x2a,0x6e,0x68,0x33,0x32,0x32,0xc6,0xa8,0x70,0xcc,0xa9,0xe6,0x75,
0x52,0xd9,0xa3,0xea,0x7,0x0,0x0,0xb0,0x0,0xe1,0xd8,0xbf,0x1,0x28,0x5d,0xe4,
0xb9,0xdd,0x7d,0xf7,0x78,0x3f,0xc7,0x4,0x2,0x0,0x0,0x8c,0xa4,0x58,0x9c,0xa,
0xc7,0xfd,0xf5,0x6b,0xc2,0x87,0x5b,0xed,0xf3,0xaa,0x7e,0xc6,0x3f,0x66,0xc7,0x7,
0x12,0xf8,0x0,0x0,0x0,0x6,0x28,0x6c,0x5,0xf7,0x75,0xc2,0x87,0x1b,0xfc,0x4c,
0x33,0xd8,0xb9,0x2d,0x5e,0xfb,0x58,0xcb,0x73,0x24,0xc,0x2,0x0,0x0,0x74,0x27,
0x36,0xa3,0xd7,0xb4,0xb8,0x84,0x3f,0xb3,0x0,0x95,0xd8,0x38,0xbe,0xb2,0xd0,0x67,
0x8c,0xc9,0x2f,0xf6,0x79,0xe1,0xf8,0xc0,0x18,0x26,0x7a,0x0,0x0,0x0,0x34,0x14,
0x66,0xf2,0x3a,0xb7,0x33,0xd3,0x7a,0x8d,0xbf,0x7e,0xb4,0x7d,0x4b,0xab,0x7e,0x4e,
0xf5,0xaf,0xaf,0xeb,0xfc,0x11,0x4,0x1,0x0,0x0,0x9a,0xca,0x16,0x79,0x76,0x2f,
0x59,0xff,0x7e,0x5d,0xe9,0x98,0xbf,0x70,0x86,0x6f,0x6c,0x2,0x48,0x59,0x8b,0xb8,
0x8c,0x1b,0xfc,0x8,0x81,0x0,0x0,0x60,0xa4,0x95,0xed,0xea,0xe1,0x5,0x3f,0x13,
0xaf,0x10,0xf6,0xa0,0x12,0x56,0xf8,0xc2,0x6b,0xc9,0x86,0x43,0x3f,0x8,0xc6,0xc2,
0x5e,0xa7,0x15,0x42,0x76,0xf9,0x0,0x0,0x0,0x23,0x29,0xda,0xf2,0x75,0x2,0x5e,
0x16,0x3e,0xa6,0x66,0xe5,0xaf,0x4f,0x9d,0xd8,0x4a,0x18,0xfc,0xea,0xbf,0xcb,0xa9,
0xfa,0x79,0x1,0xd0,0xf,0x7e,0xe1,0x6c,0xe0,0xf0,0xb6,0x8b,0x4a,0x1f,0x0,0x0,
0x40,0x43,0x6c,0x36,0xaf,0xbb,0x9b,0x47,0xa6,0x20,0xf8,0xa9,0x2f,0x55,0x3f,0xc9,
0x86,0x3f,0x27,0xd8,0x65,0x26,0xf3,0xae,0xc3,0xb0,0x17,0x9b,0xf4,0xd1,0x7c,0x1f,
0xb4,0x7e,0x1,0x0,0x0,0xa2,0xc2,0x98,0x14,0x6,0xc0,0x4c,0x7e,0xd0,0x2b,0x9b,
0xed,0xdb,0xa3,0xb6,0x6d,0xdf,0xb0,0xe5,0xeb,0x9f,0x73,0xe3,0xb1,0xc8,0x72,0x31,
0xad,0x10,0xfa,0x0,0x0,0xc0,0xc8,0x32,0xce,0x8d,0xb0,0xb2,0x17,0xb6,0x7a,0x6d,
0xbb,0xd7,0x6d,0x7,0xf7,0xa8,0x9a,0x35,0xa6,0x8f,0xe4,0x95,0x3e,0x63,0x94,0x29,
0xab,0x5f,0xbb,0xc7,0x82,0x4a,0x60,0x38,0x13,0x98,0x75,0xfe,0x0,0x0,0x0,0x4a,
0xc4,0x66,0xf2,0x7a,0xa1,0xcf,0x4,0xa1,0x2f,0xbc,0x1f,0x79,0x9d,0x5,0xaa,0x86,
0x95,0x3f,0x1b,0xfc,0x9a,0x6d,0x60,0xbf,0xaa,0xe7,0x85,0xc0,0x16,0xad,0xdf,0x4e,
0x5a,0xc0,0x52,0xbd,0xa,0xd8,0xe9,0x73,0x1,0x0,0x0,0x56,0x84,0x70,0xbc,0x5f,
0xd6,0xe6,0xd2,0xc7,0xe5,0x5e,0xe2,0x95,0x3f,0x93,0x39,0xe7,0x53,0xbf,0x9f,0x29,
0x2b,0x8c,0xfd,0x93,0x9a,0x93,0x42,0x62,0x13,0x41,0x5c,0x89,0x92,0x7c,0x96,0x2f,
0x6d,0x5f,0x0,0x0,0x30,0x32,0x5a,0x2d,0xe7,0xe2,0x5,0x3c,0x13,0x84,0x3e,0xe3,
0x3f,0xd6,0x27,0xc5,0xca,0x5f,0x3e,0xe1,0xc3,0x9f,0x0,0x62,0x1f,0xb3,0x21,0x30,
0xb6,0xec,0x4b,0x18,0xfa,0xa2,0x21,0x30,0x49,0x24,0x53,0xbf,0xa6,0x55,0xc,0x0,
0x0,0x46,0x8a,0xdb,0xee,0x8d,0x55,0xf6,0x5a,0x5d,0xfa,0x63,0xc6,0xaf,0xfc,0xe5,
0x81,0xaf,0x38,0xf3,0x37,0xf,0x7d,0x36,0x4,0x9a,0xac,0xfe,0xbc,0x60,0xab,0xb7,
0x85,0x8c,0x5,0xa4,0xf5,0xb,0x0,0x0,0x56,0x24,0x37,0xde,0xb8,0x1,0xce,0x8e,
0xe9,0xb3,0xd5,0xbd,0xb4,0x71,0x71,0xab,0x7d,0xa9,0xa4,0xd4,0xd4,0xaf,0xfb,0x39,
0xdb,0x37,0x33,0xd9,0xcf,0xd3,0x2c,0x6d,0x8c,0xf7,0x6b,0x11,0xfc,0x22,0x95,0xbf,
0xfa,0x7b,0xf2,0xc3,0x5e,0x8c,0xdb,0xee,0xb5,0x2d,0x5f,0x5a,0xbf,0x0,0x0,0x60,
0x45,0x8b,0xb5,0x7b,0xdb,0x55,0xfa,0x6c,0x0,0xb4,0x61,0x30,0x55,0xbf,0x2b,0x7f,
0x6f,0x54,0x8c,0x31,0x3f,0xcb,0x64,0x94,0xda,0x6a,0x9e,0x8a,0xd7,0xf9,0x44,0x10,
0xaf,0x35,0xac,0xe2,0xac,0x60,0x99,0xbc,0x25,0x1d,0x2e,0xd,0xe3,0x5,0x40,0x7b,
0x3b,0x61,0xcd,0x3f,0x0,0x0,0xb0,0x2,0xb5,0x5c,0xd3,0x2f,0x32,0xb6,0xcf,0xd,
0x79,0x35,0x35,0x2b,0x7e,0xb6,0xfa,0xd7,0x3f,0x6f,0x54,0x52,0x93,0xbd,0x61,0xc3,
0x9d,0x6d,0xe7,0xa6,0x26,0x8d,0x5e,0x87,0xed,0xdf,0x70,0x57,0x90,0x76,0xfb,0xfc,
0x32,0xe1,0x3,0x0,0x0,0x8c,0x9c,0xb2,0x85,0x9c,0x6d,0xe0,0xb3,0xd5,0xbe,0x9a,
0xea,0x97,0x1,0xb6,0x7c,0x25,0xfd,0xac,0x92,0x29,0xfb,0x49,0x21,0xe4,0x45,0xaa,
0x7f,0xde,0xb5,0x31,0x7e,0x20,0x74,0xc6,0xb,0x4a,0x9d,0x8f,0xf3,0xeb,0xe4,0x18,
0x0,0x0,0xc0,0x50,0x69,0xb5,0xa6,0x9f,0x1d,0xeb,0x17,0xb6,0x77,0x6d,0xb5,0xcf,
0x56,0xfe,0xec,0xc5,0x6,0xc4,0xfe,0x39,0x5b,0xcd,0x4c,0x76,0x36,0xb6,0xc6,0x5f,
0xb8,0xcd,0x9b,0x3b,0xb,0xb8,0x6c,0xc6,0x6f,0x38,0x3b,0xb8,0x6c,0x3c,0xa0,0x3b,
0xee,0x8f,0x89,0x1e,0x0,0x0,0x60,0xc5,0x88,0x5,0x3f,0xb7,0xdd,0xeb,0x56,0xff,
0xd2,0xc8,0xa5,0x66,0x9c,0x30,0xa8,0x7e,0xb7,0x7c,0x25,0xe9,0x27,0xd5,0xcc,0x64,
0x27,0xc3,0xd0,0x27,0x39,0xe3,0xf9,0xf2,0xeb,0x66,0x40,0xc,0xdb,0xc3,0xcd,0xea,
0x5f,0xfb,0x45,0x9e,0x93,0x44,0xde,0x7,0x13,0x2e,0xf9,0x42,0x20,0x4,0x0,0x0,
0x43,0x29,0x36,0xce,0xcf,0x5e,0x87,0x93,0x3a,0x6c,0x4b,0xb7,0x66,0xfc,0xc0,0x57,
0x93,0x34,0x6f,0xea,0x8f,0xd7,0xd4,0xef,0x96,0xaf,0x24,0x9d,0xac,0xa6,0x26,0x3d,
0xd6,0x2a,0xf4,0x95,0x2d,0xfd,0xe2,0xb6,0x88,0x5b,0x57,0xff,0x0,0x0,0x0,0x56,
0xb8,0x30,0xf0,0x64,0xce,0x75,0xb8,0x60,0xb3,0xd,0x80,0x6e,0x7b,0x77,0xde,0x34,
0x2e,0xf6,0xbe,0x9a,0x6d,0xe0,0xfe,0x39,0x6f,0x4e,0xd4,0xde,0xa8,0xa6,0x26,0x7d,
0xcd,0xc8,0xa4,0x46,0x66,0x55,0x27,0xa1,0x2f,0x5f,0xfe,0xc5,0x19,0x3,0x58,0xf,
0x82,0xcd,0xe3,0xad,0xaa,0x7f,0x79,0xcb,0xb7,0xb1,0xd8,0x33,0xf1,0x10,0x0,0x0,
0xc,0xb5,0x56,0xc1,0xcf,0xdd,0xb7,0x37,0xf,0x7d,0x76,0x72,0x87,0x69,0x6,0x3d,
0x2f,0x4,0x36,0x8e,0xa5,0x7d,0x3f,0xd3,0x1f,0x49,0x52,0x25,0x35,0xe9,0xa5,0xcc,
0x64,0x3f,0x4a,0x4d,0xea,0xcc,0xee,0xb5,0x97,0xb4,0xd0,0xda,0xcd,0xc3,0x5e,0x18,
0xfc,0x54,0x5c,0x8,0xba,0x2c,0x4,0xb2,0xc4,0xb,0x0,0x0,0x58,0x11,0xda,0x5,
0xbf,0xc2,0xa2,0xcd,0xa,0xaa,0x7e,0x4e,0x0,0xcc,0x2f,0x8d,0x56,0x70,0x16,0x79,
0xfd,0xde,0xfc,0x50,0xaa,0x87,0x3f,0xa5,0x26,0x3d,0x92,0x46,0x42,0x9f,0x3b,0xb,
0xb8,0xec,0x58,0x16,0x8c,0x3,0x8c,0xee,0x3,0x1c,0x99,0xf4,0xe1,0x72,0xc3,0x20,
0x0,0x0,0xc0,0xb2,0x17,0x1b,0x8b,0x17,0xab,0xf8,0x85,0xc1,0xcf,0xad,0xfa,0xcd,
0x4b,0x9a,0x53,0xb3,0xe5,0x3b,0xe7,0x1c,0xeb,0x7f,0xd5,0x4f,0x92,0x8e,0x48,0x52,
0xa5,0xb1,0xc0,0xf3,0xb,0xb1,0x90,0x97,0x9a,0x54,0x35,0x53,0x8b,0x1e,0xb7,0x15,
0x42,0xbf,0x2,0xe8,0x2c,0xfb,0xe2,0xec,0x8,0x12,0x43,0xc5,0xf,0x0,0x0,0xc,
0xa5,0xd8,0xc4,0x8e,0x58,0xc5,0xcf,0x5d,0xc7,0xcf,0x4e,0xf2,0xf0,0xaa,0x7c,0xa6,
0x1e,0xf4,0xe6,0x24,0x5d,0x6e,0x5c,0xcf,0xd,0xac,0xea,0x77,0x49,0x8d,0xca,0x5f,
0x35,0x35,0xa9,0x8c,0x31,0x2f,0x18,0x99,0x4b,0x99,0xc9,0xae,0x68,0xb5,0xcc,0x8b,
0x3b,0x16,0xd0,0x86,0x3e,0x6f,0xc,0xa0,0x3b,0x16,0x50,0x99,0x33,0xb3,0xd9,0x94,
0xb6,0x80,0xed,0xe3,0xcd,0xcf,0x8f,0x31,0x80,0x0,0x0,0x60,0x19,0x8a,0x45,0x14,
0xb7,0x2,0x98,0x2f,0xe0,0x1c,0x9b,0xdc,0x61,0x8a,0xe3,0xfa,0x6c,0xd5,0xef,0x72,
0xa3,0xea,0x77,0xd9,0xc,0xb2,0xea,0xf7,0x82,0x39,0x51,0xbb,0x24,0x49,0xd5,0x34,
0x4b,0x65,0x64,0x2e,0x19,0x99,0x17,0x32,0x93,0xdd,0xd1,0x6e,0x8d,0xbf,0x96,0x13,
0x40,0x1a,0xc1,0xaf,0x5e,0x1d,0x74,0x5a,0xc3,0xce,0x58,0x40,0xa9,0x7d,0x18,0xcc,
0x3f,0xcc,0x32,0x14,0xd,0x1,0x0,0xc0,0x62,0x8a,0xe5,0x92,0xcc,0x79,0x2c,0x5f,
0xce,0x25,0x98,0xdc,0xe1,0x6,0x3f,0xb7,0xda,0x77,0xb9,0x11,0xf6,0xde,0x52,0xbd,
0xea,0xf7,0x96,0x9a,0x95,0xbf,0xfe,0x57,0xfd,0x24,0xe9,0x19,0x7b,0xa3,0x5e,0xf9,
0xab,0xff,0xf9,0x5f,0x99,0xc9,0xee,0x68,0x17,0xf8,0x62,0xa1,0x2f,0x9c,0x1,0x9c,
0x6,0xed,0x5f,0x6f,0xff,0xdf,0xc6,0x9b,0x71,0x3,0xa0,0x65,0x64,0x3a,0x7b,0xb3,
0xee,0x73,0x8,0x82,0x0,0x0,0x60,0x50,0x3a,0xa9,0xf6,0xd9,0x6b,0x37,0xf8,0xd9,
0x6d,0xda,0xdc,0xe0,0x37,0x67,0x9a,0x1,0xcf,0x6,0xbe,0xb7,0x4c,0xfd,0x62,0xab,
0x7e,0x83,0x9,0x7e,0xa9,0xa4,0xef,0xd8,0x3b,0x79,0xf8,0xcb,0x4c,0xf6,0x9c,0xdf,
0xfa,0x6d,0xb7,0xd3,0x87,0x7f,0xdd,0x68,0x1f,0x2b,0x53,0xb0,0xf5,0x5b,0x30,0xb,
0xd8,0xfe,0xa9,0x7f,0x76,0x4e,0x35,0xb0,0xd3,0xe0,0x17,0x22,0x8,0x2,0x0,0x80,
0x7e,0x6b,0x17,0xfa,0xdc,0x6a,0x5f,0xb8,0x94,0x4b,0xac,0xd5,0x6b,0x83,0xdf,0xe5,
0x46,0xf0,0xbb,0x6c,0x9a,0xc1,0xef,0x2d,0xd5,0x2f,0xf3,0xb,0xcc,0x42,0xed,0xfd,
0xa3,0x39,0x51,0x7b,0xc3,0xde,0x71,0xc3,0xdf,0x1b,0x46,0xe6,0x3b,0x99,0x31,0xf7,
0xe6,0x61,0x2e,0xc,0x79,0xde,0x8e,0x1f,0xc5,0x1d,0x40,0xdc,0x20,0x58,0x68,0x3,
0x67,0x69,0x5e,0x11,0xc,0xc7,0x10,0x7a,0x1f,0xa4,0x7b,0x2d,0x15,0x3,0x5d,0xab,
0x80,0x47,0x10,0x4,0x0,0x0,0xb,0x55,0x16,0xbc,0x62,0xa1,0x2f,0xf,0x7f,0x4e,
0xf0,0x8b,0xce,0xea,0x95,0x5f,0xf1,0x7b,0x4b,0xd2,0x25,0x23,0xfd,0xab,0xbd,0xad,
0x7a,0x0,0x1c,0x5c,0xbb,0x57,0x92,0xfe,0xc2,0xbd,0xe3,0x84,0x3f,0x23,0x23,0xf3,
0xcd,0xcc,0x64,0xf7,0xc6,0x26,0x73,0x94,0x57,0xfd,0xe4,0x2f,0xf1,0x12,0x2e,0xfd,
0xa2,0xac,0x19,0xfc,0x9c,0x2a,0xa0,0xd,0x93,0xde,0x7,0x2a,0xb5,0x7f,0xd3,0xf6,
0xf1,0x24,0xb8,0x2e,0x7b,0x9e,0x45,0x18,0x4,0x0,0x0,0xa1,0x56,0xb9,0xa3,0x9b,
0xd0,0xe7,0x6e,0xdb,0x66,0xf7,0xe5,0xf5,0x66,0xf4,0x36,0x2a,0x7e,0x97,0x9c,0xd0,
0xf7,0xaf,0xa6,0x71,0xbf,0x31,0x33,0x78,0x30,0xc1,0xef,0xa7,0x92,0xbe,0xeb,0x1e,
0xa8,0xa6,0x7e,0xa0,0x3b,0x92,0x9a,0xf4,0x87,0x46,0xe6,0x57,0xdd,0xd0,0xd7,0x6c,
0xe9,0x16,0xab,0x7c,0xe5,0xed,0x5f,0x77,0x6,0xb0,0xc9,0x27,0x7e,0xd8,0xaa,0x60,
0x73,0x2a,0x74,0xe4,0x3,0x76,0x25,0x8a,0x7,0x37,0x7b,0xbc,0x55,0xc8,0x73,0x6f,
0x33,0x89,0x18,0x0,0x0,0x94,0x89,0x75,0x1f,0xc3,0xc0,0xe7,0x16,0xad,0xca,0xf6,
0xea,0xb5,0xb,0x38,0xbb,0x3b,0x75,0xd8,0xf1,0x7c,0x6f,0x35,0xc2,0xde,0x25,0x49,
0xb3,0x4e,0xf5,0xaf,0xa6,0x41,0xe6,0x94,0xaf,0x99,0x13,0x35,0x6f,0xfe,0x70,0x35,
0x6c,0xef,0xa6,0x26,0xfd,0xa2,0x31,0xe6,0xe9,0xb0,0x7a,0xd7,0xaa,0xca,0x67,0x82,
0xa5,0x5f,0x1a,0x33,0x88,0xb,0xb,0x40,0xdb,0x60,0x98,0x7f,0x38,0xb1,0xca,0x5f,
0x99,0x58,0xfb,0x37,0x9,0x1e,0x68,0x57,0xd,0x2c,0x7b,0xad,0x85,0x3e,0x7,0x0,
0x0,0x2c,0x1f,0x9d,0x6,0xa8,0xb6,0xed,0x5d,0xe3,0x87,0x3e,0xc9,0x2f,0x5a,0xe5,
0xe3,0xfb,0x4c,0x30,0xc6,0x4f,0x6d,0x26,0x78,0x34,0x82,0x9f,0x6d,0xfb,0xfe,0xab,
0x6,0x39,0xce,0x4f,0xaa,0xff,0xb6,0x6f,0x86,0x7,0x63,0xe1,0xef,0x99,0xcc,0x64,
0xc7,0x8d,0xcc,0xd,0xe1,0x24,0x8e,0x30,0xe4,0x15,0x82,0x60,0x7e,0x5b,0xcd,0x25,
0x5e,0x4c,0xf3,0x67,0x9b,0xb3,0x5f,0x82,0x52,0xa9,0xd4,0x3e,0x4,0x96,0x56,0x0,
0x4d,0x79,0x65,0x30,0x76,0x1b,0x0,0x0,0xa0,0x55,0xa5,0xcf,0xbd,0xed,0x55,0xfa,
0x8c,0x5f,0xf1,0xb,0xab,0x7e,0xb1,0xfd,0x79,0xdd,0xaa,0x9f,0x1b,0xfe,0xec,0x4,
0x8f,0xc1,0x8d,0xf3,0x93,0xa4,0x6f,0x9a,0x13,0xb5,0x9f,0x85,0x7,0x63,0xe1,0x4f,
0x99,0xc9,0xbe,0x60,0x64,0xfe,0xd6,0x9d,0xa0,0xe1,0x55,0xf6,0xc2,0x20,0x68,0x8c,
0xdc,0xf6,0xb1,0x5b,0xed,0xcb,0x43,0x9f,0xfd,0x70,0xdc,0x99,0x30,0xf9,0xf6,0x27,
0x6a,0x56,0x1,0x3b,0x95,0x57,0xf9,0x4a,0x92,0x1d,0xe1,0xf,0x0,0x0,0x84,0x62,
0xa1,0x4f,0xf2,0x73,0x48,0x16,0xb9,0xf6,0x5a,0xbd,0x41,0xc5,0xaf,0xd5,0x22,0xce,
0x6e,0xd5,0xcf,0x5d,0xda,0xc5,0xb6,0x7a,0x7,0x17,0xfc,0x7e,0x2e,0xe9,0x4b,0xb1,
0x7,0xca,0xc2,0xdf,0x77,0x33,0x63,0x8e,0x65,0xca,0xa6,0xc2,0xf0,0x57,0xb8,0xed,
0xb4,0x7e,0xbd,0xd7,0x72,0xdb,0xbb,0x59,0x10,0xfa,0x6c,0x10,0x74,0xd3,0x74,0xb7,
0x13,0x3f,0xa4,0x46,0xa8,0xeb,0xe2,0x53,0x23,0x4,0x2,0x0,0x30,0x3a,0x3a,0x9d,
0x44,0x5a,0x56,0xed,0xb3,0xc5,0xa9,0x42,0xf8,0x53,0x33,0xdf,0xd8,0xc9,0x1d,0x61,
0xcb,0xd7,0x5b,0xcc,0x59,0x8d,0xb5,0xfc,0x1a,0xf7,0xd3,0xe0,0xf7,0xe,0xc6,0x57,
0xcd,0x89,0xda,0x4f,0x63,0xf,0x54,0xc3,0xf1,0x7b,0x8d,0x6a,0x5f,0x9a,0x99,0xec,
0xfe,0x4c,0xd9,0xf7,0x33,0x93,0xad,0x72,0x97,0x6c,0x9,0x43,0x5f,0xd8,0xfa,0x35,
0x5e,0xd0,0x2b,0x9,0x7d,0x61,0xc9,0x34,0xc,0x7f,0x6e,0xbf,0x1d,0x0,0x0,0xa0,
0x57,0x85,0x4a,0x5f,0x8b,0xeb,0xb0,0x38,0x15,0x6e,0xd9,0x16,0xe6,0x9a,0x58,0xcb,
0x37,0x1f,0xef,0xa7,0x66,0x0,0x1c,0x7c,0x9b,0xd7,0xfa,0x89,0xa4,0x2f,0x96,0x3d,
0x58,0x75,0xc7,0xe6,0xb9,0x63,0xfb,0x52,0x93,0xfe,0x30,0x53,0xf6,0xcd,0xd4,0xa4,
0xbf,0x5f,0xd8,0xb7,0xb7,0x31,0xbe,0xcf,0xfd,0xd9,0x96,0xa1,0xcf,0xae,0x70,0x1d,
0x7e,0x60,0xe1,0x6a,0xd8,0x85,0x0,0x28,0x75,0x5d,0xd,0xec,0x14,0xc1,0x12,0x0,
0x80,0xd1,0x11,0xfb,0x77,0xdf,0xcb,0x1d,0x41,0xdb,0x37,0x16,0x0,0xed,0x24,0xf,
0x23,0x7f,0x66,0xaf,0x5d,0xde,0x25,0xd6,0xf2,0xb5,0xfb,0xf7,0xa6,0x5a,0xac,0xe0,
0x27,0x49,0xbb,0xcc,0x89,0xda,0x5c,0xd9,0x83,0xc9,0x2f,0x1d,0xdc,0x54,0x5a,0xc9,
0x4b,0x4d,0xfa,0xb6,0xd4,0xa4,0xff,0x2f,0x33,0xd9,0xdb,0xc2,0x25,0x5b,0xbc,0x31,
0x7d,0x65,0xed,0xdd,0xd8,0x4c,0x98,0xf0,0xb9,0x6e,0xe5,0x2f,0xec,0xb1,0xc7,0xc6,
0x1,0x96,0xf5,0xea,0x5b,0xe9,0xb4,0xec,0xb,0x0,0x0,0x56,0xae,0xae,0x27,0x79,
0x18,0x3f,0xf8,0xb9,0x17,0x5b,0xd4,0xca,0xdb,0xbe,0xce,0x24,0xf,0xdb,0xf2,0xb5,
0x61,0x70,0xf1,0x42,0x9f,0x24,0x3d,0x63,0x4e,0xd4,0xee,0x6e,0xf5,0x84,0x6a,0xbe,
0xf,0xaf,0xa2,0x3b,0x73,0xbc,0x91,0x99,0xec,0x13,0xa9,0x49,0xf7,0x87,0xd5,0xbe,
0xcc,0x64,0x4e,0xa8,0x33,0x7e,0xb8,0xb,0x3f,0x18,0x2f,0xf8,0x5,0x61,0x30,0xff,
0x50,0x4d,0x7c,0x80,0xa5,0x14,0x1f,0x10,0xd9,0x6a,0x90,0x64,0x59,0x60,0x4,0x0,
0x0,0x2b,0x9b,0x89,0xfc,0xa3,0x5f,0x56,0xf5,0xb3,0xc2,0xbc,0xe1,0x56,0xfd,0xf2,
0x2,0x95,0x9,0x8a,0x5b,0xf2,0x2b,0x7e,0x76,0xcc,0x9f,0xd,0x80,0x35,0x27,0xf4,
0x2d,0x5e,0xe,0x79,0x43,0xd2,0xc7,0xdb,0x3d,0xa9,0x1a,0x5d,0x94,0x59,0xcd,0x2d,
0xd9,0x32,0x65,0x7f,0x9d,0x9a,0xec,0xd6,0xcc,0x64,0x1f,0x8b,0xae,0xd5,0xe7,0x7e,
0x18,0x76,0x13,0x63,0x3b,0x0,0xd2,0x6b,0xf3,0x9a,0xa0,0xf2,0xa7,0xf8,0xf8,0x3f,
0xa9,0x7c,0x16,0x70,0x59,0x52,0x57,0xf0,0x78,0xab,0xf,0x99,0x60,0x8,0x0,0xc0,
0x68,0x29,0xcb,0x7,0x6e,0x96,0xc8,0x8c,0x7f,0x2c,0x5c,0xd7,0xcf,0x1d,0xae,0xe6,
0xe6,0x99,0x5a,0x24,0x0,0xba,0x3f,0xb7,0xb8,0x7e,0xc7,0x9c,0xa8,0x9d,0x6f,0xf7,
0xa4,0x6a,0x69,0xd5,0x2f,0xb3,0x3b,0x72,0x64,0xca,0x4c,0xb6,0x2b,0x35,0xe9,0x2d,
0x99,0xc9,0xae,0x33,0xf9,0x9b,0xe,0xaa,0x7d,0xb1,0x63,0x65,0xa1,0x2f,0x36,0xfe,
0xcf,0x2d,0xaf,0x86,0x63,0x0,0xbd,0x2f,0xc7,0x39,0xfb,0x30,0x0,0xda,0xb0,0x18,
0xb3,0x90,0x76,0x31,0x0,0x0,0x58,0xfe,0x3a,0xed,0x4,0xba,0xc7,0x63,0x5,0xa5,
0xb0,0xea,0xe7,0x4e,0xf2,0x8,0x2b,0x7e,0xb6,0xe8,0x65,0x8b,0x5d,0x4b,0x1b,0xfa,
0x24,0xe9,0x4f,0xcc,0x89,0xda,0x73,0x9d,0x3c,0xd1,0x5b,0xea,0xa5,0x24,0xf8,0x29,
0x35,0xe9,0xa5,0xcc,0x64,0x1f,0x34,0xa9,0xf9,0xbf,0xca,0x74,0xa5,0x17,0xde,0xca,
0xda,0xb9,0xe1,0x56,0x27,0xb1,0xe0,0xe7,0xa6,0xe8,0xd8,0xf8,0xbf,0xbc,0x12,0xd8,
0xf8,0x14,0x63,0x6d,0xe0,0xd8,0x17,0xa8,0x92,0x63,0x65,0xf7,0xdb,0x1d,0x7,0x0,
0x0,0xc3,0xa7,0xd5,0xbf,0xff,0x61,0x67,0x31,0x1a,0xfe,0xe4,0xe4,0x93,0x48,0xce,
0xb1,0xc7,0xc2,0x42,0xd5,0xe2,0xfb,0x81,0xa4,0x3f,0xea,0xf4,0xc9,0xc5,0xa5,0x5e,
0x32,0x3b,0xa6,0xcf,0x19,0xe3,0x67,0x32,0x99,0xd4,0x9c,0x54,0xa6,0x1d,0xaa,0x99,
0xbf,0x53,0xaa,0x55,0xcd,0x41,0x8e,0x25,0xed,0x5c,0x2f,0x18,0xb6,0x38,0x16,0x1b,
0x44,0xe9,0x86,0xc1,0xd8,0x17,0x12,0x7e,0xc8,0x6e,0xc5,0xaf,0x5d,0xf8,0x6b,0xd7,
0xf7,0x7,0x0,0x0,0xc3,0xa1,0xd3,0x7f,0xbf,0x5b,0x15,0x89,0xa,0x1d,0xc6,0xa0,
0xb,0x59,0x96,0x51,0xec,0xe3,0xdd,0x9c,0xc7,0x60,0x9c,0x97,0xf4,0x9b,0xad,0x66,
0xf7,0x86,0xaa,0xad,0x82,0x5f,0x3e,0xa3,0xd7,0xbe,0xd1,0x9a,0x79,0x46,0xa9,0x3e,
0xa1,0x54,0x5f,0x2f,0xac,0x6d,0x13,0x5b,0xef,0x26,0xac,0xf6,0xb9,0xa5,0xd1,0x58,
0x7a,0x8e,0xad,0xfd,0xe7,0x4d,0xb7,0x36,0x2d,0xc2,0x9f,0xe2,0x5f,0xa8,0x7b,0x1d,
0xde,0xe,0x95,0x56,0x4,0x49,0x87,0x0,0x0,0xc,0xb5,0x58,0x26,0x68,0x35,0xd1,
0xc3,0xcd,0x1e,0x61,0x31,0x2a,0x7c,0x9d,0xa5,0xf3,0x33,0x49,0xff,0xae,0x93,0x71,
0x7e,0xae,0xe6,0x98,0xbf,0xac,0xde,0xfe,0x35,0x46,0x79,0xc5,0xcf,0x9f,0xdc,0x91,
0x87,0xb3,0x6f,0x28,0xd5,0x84,0x52,0xf3,0x98,0x17,0xf2,0x62,0xd5,0xbd,0x70,0x1a,
0x74,0xb4,0x2,0xe8,0xb4,0x81,0xdb,0xa5,0xeb,0x96,0x55,0xc0,0xa0,0x35,0x2c,0xf9,
0x5f,0x92,0xd4,0xd9,0x17,0x46,0x65,0x10,0x0,0x80,0x95,0x27,0x96,0x9,0x62,0x1d,
0xc4,0x58,0x20,0x74,0x7f,0x66,0xf9,0xb8,0x24,0xe9,0x4e,0x73,0xa2,0x76,0xb2,0xdb,
0x1f,0xac,0x66,0xce,0x52,0x2f,0xde,0x3a,0x7e,0x72,0xd6,0xf0,0x73,0xd7,0xef,0xab,
0xb7,0x7a,0xbf,0xa4,0x54,0xeb,0x54,0xd3,0x7f,0xf4,0x42,0x5c,0x18,0xf2,0xf2,0x4a,
0x9f,0xfc,0xc1,0x91,0x61,0x38,0xc,0xc7,0xff,0x85,0x7b,0xff,0x7a,0x2d,0xe0,0x48,
0x2,0x2f,0xab,0x4,0x86,0xb7,0xe5,0x1e,0x5b,0x5e,0xdf,0x20,0x0,0x0,0xe8,0x51,
0x37,0x5,0x9c,0xb2,0x20,0xd8,0xc9,0xcf,0x2e,0xbd,0x39,0x49,0x1f,0x34,0x27,0x6a,
0x3f,0x5c,0xc8,0xf,0x57,0xdd,0xe0,0x67,0x43,0x5f,0xbe,0x78,0x73,0x38,0xbb,0xc5,
0x5f,0xb3,0xef,0x13,0xca,0xf4,0x86,0x52,0x7d,0xae,0x34,0xf8,0xb9,0x21,0xaf,0x5d,
0x45,0x30,0x1c,0x48,0xd9,0x6a,0xfc,0x5f,0x78,0x5b,0x2a,0x4e,0xd1,0xb6,0x62,0xc1,
0xaf,0xec,0x31,0x0,0x0,0x30,0x5a,0x86,0x2f,0xb,0xfc,0x5c,0xf5,0x8a,0xdf,0x8b,
0xb,0x7d,0x81,0xaa,0x17,0xfc,0x1a,0xa1,0xcf,0xb,0x7f,0xee,0x2c,0xde,0x30,0x8c,
0xa5,0x7a,0x44,0xa9,0xf9,0xa9,0x52,0xfd,0x99,0x52,0xad,0x2a,0x2c,0x78,0x18,0x1b,
0x3,0x58,0x8,0x8a,0xce,0x73,0xc2,0x9d,0x41,0xca,0xc6,0x0,0x86,0x63,0xff,0xa4,
0xf2,0xd4,0xee,0x1a,0xbe,0x2f,0x18,0x0,0x0,0xc0,0xfa,0xa9,0xa4,0xdb,0x25,0x1d,
0xeb,0xe5,0x45,0xaa,0x36,0xf8,0xd9,0xd0,0x97,0xa9,0x5e,0x9,0x8c,0xb6,0x5d,0x53,
0x13,0x54,0xff,0x8c,0x1d,0x3,0xf8,0x33,0x65,0xda,0xaf,0xd4,0x8c,0x77,0x1c,0xfc,
0x62,0x33,0x85,0xc3,0x25,0x63,0xca,0xc6,0xff,0x95,0xb5,0x72,0x1,0x0,0x0,0x56,
0xa6,0x9f,0x48,0xfa,0xf7,0x92,0x4e,0xf5,0xfa,0x42,0x95,0xfa,0x24,0xf,0x93,0x87,
0x3e,0xbf,0xdd,0x6b,0x8a,0x1,0x30,0xba,0xd8,0xa1,0xbe,0xa3,0xd4,0xbc,0x47,0xa9,
0x4e,0x79,0x41,0xd1,0x86,0x3c,0xbb,0xe2,0x75,0xb8,0x2,0x76,0xbe,0x9,0xb2,0xea,
0x7b,0xdf,0xd9,0x6d,0x51,0xdc,0xe3,0x73,0xa6,0xf1,0x98,0x8a,0x63,0x1,0xcb,0x82,
0x20,0x0,0x0,0xc0,0xca,0xf1,0x8c,0xa4,0x5f,0x51,0x1f,0x82,0x9f,0x24,0x55,0xec,
0x98,0x3f,0x63,0x4c,0x33,0xfc,0xb5,0x9a,0x5d,0x1b,0x6b,0xff,0xd6,0x43,0xe0,0x8f,
0x94,0x6a,0xb3,0x6a,0xfa,0x4e,0x71,0xed,0xbf,0xa0,0x2,0x58,0xb,0x82,0x61,0x61,
0x6f,0x3c,0x35,0xc3,0x60,0x1a,0x39,0x17,0x0,0x0,0x80,0x95,0x6f,0x4e,0xd2,0x2e,
0x49,0x77,0x4b,0x9a,0xe9,0xd7,0x8b,0x56,0xec,0xee,0x1e,0x79,0xf0,0x93,0x1a,0x61,
0xcb,0x99,0x40,0x11,0xb,0x7b,0xf1,0x45,0x99,0x7f,0xae,0x4c,0xbf,0xa9,0x4c,0x9f,
0x50,0xa6,0x4b,0x2d,0x27,0x7f,0x84,0xad,0x60,0xaf,0x22,0x48,0xe8,0x3,0x0,0x0,
0x23,0xed,0x94,0xa4,0xf7,0x48,0xfa,0x1f,0xfd,0x7e,0xe1,0x8a,0x69,0xa4,0xaa,0x46,
0xdd,0xcf,0x5f,0xdf,0xa6,0x93,0x5d,0x36,0xe2,0x41,0xf0,0x6b,0xca,0x74,0xbd,0x32,
0x3d,0x53,0x18,0x23,0x18,0x8e,0xef,0x73,0xc7,0x8,0xba,0xb3,0x82,0x9,0x7c,0x0,
0x0,0x60,0xf4,0x5c,0x92,0xf4,0x5,0x49,0xd7,0x4b,0xfa,0xd1,0x20,0x7e,0x41,0xa5,
0xd0,0xee,0x95,0xfc,0x85,0x92,0xa5,0xf8,0x82,0xca,0xee,0x32,0x2b,0xe1,0x12,0x2c,
0xf5,0xc0,0x77,0x4a,0x99,0xb9,0x5b,0xa9,0xee,0x56,0xaa,0x53,0xd1,0x89,0x1d,0xb1,
0xc9,0x21,0x6e,0xd8,0x4,0x0,0x0,0x18,0x1d,0xcf,0x4b,0xda,0x2c,0xe9,0x11,0xd5,
0x43,0xe0,0x40,0x54,0xa4,0x7a,0xd5,0x2f,0xd7,0xc9,0xd2,0x29,0xee,0x63,0xee,0xb2,
0x2b,0x52,0xac,0x2d,0xfc,0x4c,0xbd,0xa,0x68,0xfe,0x50,0x99,0x7e,0x56,0x5c,0xd4,
0x59,0xc5,0xe0,0x7,0x0,0x0,0x30,0x3a,0x7e,0xa4,0xfa,0xb8,0xbe,0xdb,0x55,0x9f,
0xd5,0x3b,0x50,0x15,0x77,0xb2,0x47,0x33,0x7c,0x95,0x2c,0x98,0xac,0xe0,0x7e,0x78,
0xdb,0x5d,0x68,0xd9,0x9f,0x29,0x7c,0x49,0x99,0xbe,0xaa,0x4c,0xd7,0xd4,0xc7,0x3,
0x9a,0xf3,0xcd,0x9,0x1f,0x4,0x3f,0x0,0x0,0x30,0x92,0x7e,0xa0,0x7a,0xe0,0xfb,
0x15,0xd5,0x67,0xf4,0x2e,0x8a,0x7c,0xcc,0x5f,0x4f,0xc1,0xab,0x6c,0xb1,0xe5,0x62,
0x9b,0xf8,0x92,0x8c,0xbe,0xa6,0x4c,0xbf,0xa4,0x4c,0xbf,0xa7,0x4c,0x3f,0x24,0xf4,
0x1,0x0,0x80,0x11,0x32,0x27,0xe9,0x3b,0x92,0xb6,0xa9,0x3e,0xa1,0xe3,0xf9,0xc5,
0x3e,0x81,0x8a,0x89,0xed,0x71,0xeb,0x1e,0x4a,0x82,0xc7,0x12,0xe7,0x58,0x12,0x39,
0x16,0xbe,0x4e,0x18,0x4,0xeb,0x6d,0xe2,0x39,0x49,0x7f,0x21,0xa3,0x2d,0x32,0xda,
0x2c,0xa3,0x2f,0xca,0xe8,0xec,0xc2,0xde,0x2,0x0,0x0,0xc0,0xb2,0x77,0x44,0xf5,
0x65,0x5b,0xae,0x96,0xf4,0x9b,0x92,0x16,0xbc,0x3d,0x5b,0xaf,0xaa,0x52,0x30,0xe6,
0xcf,0x15,0xb,0x74,0xb1,0xe0,0x67,0xaf,0xc3,0x10,0x18,0xfb,0xf9,0xfa,0x2f,0x74,
0x97,0x93,0x39,0xde,0xb8,0xfc,0x91,0xa4,0xeb,0x24,0xbd,0x5f,0xd2,0xad,0x8d,0xcb,
0x44,0xdb,0x77,0x0,0x0,0x0,0xb0,0xfc,0x9c,0x95,0xf4,0x82,0xea,0x95,0xbd,0x17,
0x55,0xdf,0x9a,0x6d,0x59,0xa8,0x4a,0x2a,0x9f,0xdc,0xe1,0x6,0xbb,0x4a,0xe3,0x92,
0x49,0xaa,0x24,0x52,0x62,0xea,0xf7,0x93,0x44,0xaa,0x98,0x46,0xf0,0x4b,0xea,0x2f,
0x64,0x8f,0x27,0x26,0x5e,0x1d,0x2c,0xab,0x14,0x4a,0xaf,0x35,0x2e,0x5f,0x6d,0xdc,
0xbf,0x59,0xd2,0xd,0xaa,0x87,0xc2,0x77,0x4a,0xda,0xd8,0xb8,0xd,0x0,0x0,0xb0,
0x1c,0xcc,0xa9,0x5e,0xc4,0x3a,0xa9,0xfa,0x64,0x8d,0x9f,0xa8,0x5e,0xe5,0xeb,0xcb,
0x6e,0x1c,0x83,0x50,0xf5,0xc6,0xfc,0xc5,0x42,0x60,0xac,0x9a,0x67,0xc3,0xa0,0x1b,
0xa,0xdd,0xdb,0x85,0x8b,0x13,0x16,0x2b,0x4e,0x28,0xac,0x24,0xcd,0x49,0x22,0x71,
0x3f,0x68,0x5c,0x42,0x13,0xaa,0x87,0x41,0xeb,0xed,0x92,0xd6,0xb7,0x79,0xaf,0x0,
0x0,0x0,0xbd,0x38,0xae,0x7a,0xd8,0xb3,0x6,0xb2,0xe,0xdf,0xa0,0xfd,0x7f,0x10,
0xba,0x35,0xba,0xe3,0x2,0x8c,0xdb,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/nexton.png
0x0,0x0,0x38,0x3d,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0xac,0x9c,0x57,0x7d,0xe7,0xf1,0xcf,0x33,0x9e,0x7b,0xdb,0xc8,0x11,0xf7,
0x1a,0x9,0xb,0x29,0x91,0x63,0x57,0x28,0x91,0x12,0xc7,0x38,0xb4,0xaa,0x5,0x4d,
0x14,0x93,0x15,0x5b,0x2,0x69,0xe3,0x76,0xa9,0x4a,0xf1,0xd2,0x18,0xb5,0x82,0x34,
0x59,0x36,0x66,0xbb,0x10,0xc8,0x56,0x60,0xd0,0x92,0x90,0x76,0x1,0x77,0xcb,0x8f,
0x80,0xb6,0xc2,0x69,0x71,0x61,0x55,0xb6,0x9,0x21,0x29,0x54,0x5d,0xb9,0x8e,0xec,
0x82,0x82,0x96,0xc4,0x3f,0x12,0xa4,0xb0,0x48,0x4e,0x2c,0x2c,0x21,0x23,0x25,0xd7,
0x59,0x8c,0xed,0x7b,0xe7,0x39,0x67,0xff,0x98,0x39,0xcf,0x9c,0x73,0x9e,0xf3,0xcc,
0xef,0xb9,0xf7,0xce,0x9d,0xf7,0xcb,0x1a,0xe6,0xf7,0x73,0xe7,0xc7,0x35,0xfe,0xe4,
0x7b,0xce,0xf7,0x9c,0xec,0xc6,0xff,0xfd,0x16,0xcd,0x64,0x33,0x9a,0xa9,0xcd,0x68,
0xb6,0x36,0xa3,0xd9,0xda,0x6c,0xeb,0xf2,0xac,0x66,0x6a,0x75,0xcd,0xd4,0x66,0x34,
0x93,0xcd,0xa8,0x5e,0xab,0x6b,0x26,0xab,0xab,0x5e,0xab,0x6b,0x5d,0xb6,0x2e,0x38,
0xd5,0xb2,0x9a,0x6a,0xaa,0xa9,0x96,0x65,0xca,0x94,0xa9,0x96,0xd5,0x24,0x49,0x99,
0x32,0x65,0xad,0xdb,0x1c,0x2b,0xdb,0x3c,0xb7,0xb6,0xb8,0x6c,0xac,0x91,0xbb,0x66,
0xac,0x9,0x6e,0xcb,0x6d,0x2e,0x2b,0xdb,0xbc,0x6e,0xed,0x15,0x46,0xe6,0x75,0xd6,
0xda,0x6b,0x8c,0x8c,0xac,0xb5,0x32,0x32,0x97,0x5b,0x6b,0xaf,0xb1,0xad,0x63,0xbb,
0xe7,0xf9,0xc7,0xf0,0x7f,0x9e,0xbb,0xee,0x6e,0xb,0x5e,0x93,0x77,0x1f,0x0,0x0,
0x98,0x3c,0xee,0xdf,0xf6,0xe0,0xb6,0x8a,0x7f,0xe7,0x8b,0x6c,0xe0,0xe5,0x1,0xeb,
0xdd,0xee,0x72,0x84,0x77,0xbe,0x68,0x64,0x4e,0x5a,0xdb,0xcc,0x27,0x46,0x66,0xd1,
0x58,0x73,0xd2,0x58,0xfb,0xc3,0xdc,0xe6,0x17,0x72,0x9b,0xcb,0x58,0xa3,0xdc,0xe6,
0xee,0xfe,0xd6,0xe5,0xf6,0x6d,0xb9,0xc9,0xdb,0x97,0xbd,0xfb,0xda,0x8f,0x6d,0x3d,
0xd7,0x9a,0xd6,0x29,0xcc,0x42,0x45,0xfe,0x79,0xe7,0x2b,0x3,0x7f,0x46,0xf5,0x99,
0x6c,0x46,0xb3,0xeb,0x66,0x35,0x93,0xd5,0x35,0x5b,0x9b,0x2d,0x4e,0x45,0xf0,0x2b,
0xc2,0xdf,0x3a,0xd5,0xb3,0x7a,0xf3,0xd4,0xa,0x80,0xb5,0xac,0xa6,0x75,0xd9,0x3a,
0x65,0x52,0xeb,0xbc,0x1c,0xfc,0xdc,0xe5,0x38,0x74,0xd9,0xac,0x1d,0xd0,0x6a,0x59,
0xad,0x78,0x53,0xb5,0xac,0x26,0x63,0x8d,0xb2,0x2c,0xbb,0xde,0x5a,0xfb,0xd6,0x5a,
0x56,0xbb,0xd6,0x58,0x73,0x7d,0xa6,0xec,0x5a,0x65,0xba,0x2c,0xb3,0x99,0x94,0x49,
0xf1,0xb9,0xfb,0xe2,0xe2,0x9f,0x55,0x65,0x90,0xe0,0x97,0xfa,0x85,0x2,0x0,0x0,
0xab,0x53,0x90,0x3d,0x2a,0x82,0x5f,0xf8,0xf8,0x72,0x3e,0xe8,0x76,0x2c,0xdb,0xbe,
0xfe,0x53,0x49,0x3f,0xb6,0xb2,0x3f,0xb4,0xb2,0xdf,0xb3,0xb2,0x47,0x8d,0x35,0x3f,
0x36,0xd6,0x7a,0x41,0xae,0x19,0xde,0xda,0x7f,0x6c,0xfb,0xb2,0xf7,0x18,0x6b,0x9b,
0x81,0xd4,0x34,0x8b,0x5c,0x41,0xf0,0x33,0xd6,0x68,0xd8,0x5a,0x55,0x3d,0x15,0xfc,
0x66,0xd7,0xcd,0x14,0xd5,0xc0,0x66,0xf8,0x6b,0x6,0xbe,0x7a,0x16,0x57,0xfd,0x6a,
0xcd,0xaa,0x5f,0x56,0x2b,0x82,0x9f,0xab,0xf2,0xf9,0xe1,0xcf,0xff,0xa0,0x25,0xc9,
0x66,0xed,0xa4,0xed,0x5,0xbf,0xd7,0xd6,0xb2,0xda,0x3b,0x8c,0x35,0xb7,0xd4,0xb2,
0xda,0xcd,0xc6,0x9a,0x57,0xfb,0x15,0xc3,0x2c,0xcb,0x7a,0xa,0x5f,0x7e,0xa5,0xcf,
0xff,0xb9,0x7e,0xd5,0xcf,0xff,0xc2,0x53,0xbf,0xc,0x55,0xc7,0x4,0x0,0x0,0x93,
0x23,0xf5,0xef,0x77,0x50,0xe5,0xb3,0x61,0xa0,0x8b,0xef,0xf3,0xab,0x7e,0x7e,0x95,
0xb0,0xf8,0x63,0x83,0xeb,0xaf,0x6d,0x9d,0x6e,0x94,0xf4,0xde,0xd6,0x61,0x7f,0x2a,
0xe9,0x9f,0xad,0xec,0x63,0x56,0xf6,0x9,0x6b,0xed,0x85,0xe2,0x39,0xd1,0xa9,0x8,
0x7e,0xad,0x9f,0x99,0xdb,0x30,0x14,0xe6,0x36,0x6f,0xbe,0x3e,0xa3,0xe6,0x69,0x8,
0xf5,0x54,0xf0,0x9b,0xad,0xcd,0x7a,0xe1,0xaf,0x19,0xfa,0x66,0x6a,0x33,0x41,0xe8,
0xb,0x87,0x7b,0x6b,0xa5,0x21,0x5e,0x3f,0xb8,0xb9,0xf,0xd2,0x85,0x41,0xf7,0xc6,
0xb2,0x2c,0xbb,0xdc,0x58,0xf3,0x3b,0x92,0xde,0x9d,0x29,0x7b,0x8b,0x7b,0x9e,0xfb,
0xb2,0x5c,0xe0,0x4b,0x55,0xf3,0x92,0x5f,0x44,0xd5,0x17,0x93,0x8,0x7e,0x9d,0x86,
0x7f,0xfd,0x9f,0x1,0x0,0x0,0x26,0x5b,0x1c,0xf2,0xfc,0xdb,0xfc,0xa1,0x5e,0x77,
0xdd,0x4d,0x41,0x8b,0xb,0x45,0x9d,0xb2,0x85,0x5f,0xb5,0xf3,0x86,0x6c,0x5f,0x6b,
0xac,0x79,0x77,0xeb,0x74,0xce,0xc8,0x3c,0x62,0x64,0xfe,0xd6,0xc8,0x1c,0xa,0xaa,
0x7e,0xde,0x9f,0xe6,0xb0,0x70,0x97,0xe0,0x67,0x86,0xcb,0x27,0xf5,0x54,0xf0,0x6b,
0x86,0xbf,0xf6,0xb0,0xef,0xba,0x6c,0x9d,0x37,0xdc,0xdb,0xe,0x7c,0xfe,0x50,0x6f,
0x6a,0x7e,0x5f,0xe9,0xc3,0x6f,0xa7,0xea,0x6b,0x6a,0x59,0xed,0xc3,0xc6,0x9a,0x77,
0x64,0x59,0x76,0xb9,0xb5,0x36,0xa8,0xec,0xc5,0x47,0xa8,0xaa,0xce,0xb5,0xbf,0xc,
0x45,0xd7,0xdb,0x5f,0x8e,0x69,0xc5,0xe3,0xd4,0x17,0x15,0x3f,0xa7,0x17,0xc,0xfd,
0x2,0x0,0x30,0x39,0x52,0xc5,0x1e,0xff,0xf6,0x4e,0xc1,0xaf,0x5b,0x71,0xc9,0x1f,
0x96,0x2d,0x65,0x90,0xf8,0x8f,0xb5,0x73,0xd6,0xda,0x3d,0xc6,0x9a,0x3d,0xc6,0x9a,
0x33,0xc6,0x9a,0xcf,0xe5,0x36,0xff,0x62,0x6e,0xf3,0x73,0xfe,0x7c,0x40,0x7f,0x18,
0xd8,0xcd,0xfd,0xb3,0xd6,0x4a,0xb9,0x9a,0x27,0x63,0x47,0x30,0xec,0x9b,0x8,0x7e,
0xb3,0xb5,0x99,0xa2,0xda,0x57,0x2f,0x86,0x7c,0x53,0xd,0x1e,0xed,0xe1,0x5e,0xa9,
0x7a,0x9e,0x9f,0xf7,0x61,0xff,0xaa,0x32,0x7d,0x50,0x56,0xbf,0xef,0x1e,0x13,0x3f,
0x36,0xf8,0xc2,0xfc,0xe1,0x59,0x5b,0xfe,0xd0,0xfd,0xf3,0x78,0x52,0xa6,0x1f,0xfc,
0x52,0x8d,0x1f,0xfe,0x17,0xef,0xff,0xbc,0xe2,0x32,0x55,0x3f,0x0,0x0,0x26,0x4e,
0xb7,0x22,0x4d,0x55,0xe8,0xf3,0xa,0x54,0x61,0x9e,0x50,0xd4,0x9c,0x5a,0x51,0xf5,
0x2b,0xce,0xe5,0x72,0x49,0x54,0xd,0x2c,0x66,0xf9,0x59,0x19,0x6b,0xaf,0x30,0xd6,
0x3c,0x60,0xad,0xfd,0xb0,0xb1,0xe6,0x73,0xc6,0x9a,0xcf,0x18,0x6b,0x5e,0x6a,0x36,
0x7d,0x44,0xc1,0xcf,0xd8,0x76,0xe8,0xcb,0x35,0x9a,0x61,0xdf,0x54,0xf0,0x2b,0xba,
0x7b,0x5b,0xe1,0xcf,0xd,0xf3,0xfa,0xa7,0xaa,0x8a,0x5f,0x30,0xcf,0xaf,0xf5,0xf9,
0x67,0x59,0x76,0xad,0x95,0xfd,0xb4,0xac,0xde,0xda,0xbc,0xa1,0xf9,0x61,0x55,0xcd,
0xe3,0x4b,0x7d,0x6d,0xa9,0x52,0x6b,0xf3,0xc3,0xec,0x1c,0x0,0xab,0x4a,0xb4,0xee,
0xb,0x73,0xc7,0xf6,0xaf,0x3,0x0,0x80,0xc9,0x95,0x2c,0x28,0xb9,0xf3,0x64,0xf5,
0xaf,0x1d,0xfc,0x5c,0x37,0xad,0x7f,0x7b,0x31,0x8a,0x18,0x64,0xa,0x5,0xb9,0xa2,
0x1d,0xfa,0x4c,0x10,0x2,0xc3,0x4a,0x61,0xa9,0xe9,0x63,0xce,0xca,0xfe,0x17,0x63,
0xcd,0x3d,0xc6,0x9a,0x2f,0x1a,0x6b,0x3f,0x61,0xac,0xf9,0x79,0x11,0xfc,0xf2,0xd6,
0x50,0x6f,0x71,0xae,0x11,0xcd,0xf9,0xab,0xd5,0xc3,0xa1,0xde,0x28,0xf8,0xd5,0x53,
0xcb,0xba,0x78,0x95,0x3f,0x49,0x45,0xf8,0x2b,0xd,0xd7,0x66,0xd9,0xe5,0x56,0xf6,
0xa3,0xd6,0xda,0x7b,0x32,0x65,0xb3,0x7e,0x57,0x6e,0x95,0x38,0xa8,0x5,0x9d,0x2f,
0x51,0x90,0x73,0xc1,0xcf,0x95,0x47,0xfb,0xae,0xfc,0x45,0xaf,0x25,0x8,0x86,0xc3,
0x7c,0xaa,0x0,0x0,0x60,0xc5,0x74,0xca,0x1a,0xf1,0xe8,0x5f,0xaa,0xfa,0x97,0x1a,
0x65,0x74,0xa1,0x30,0xe,0x73,0xc1,0x6d,0xa,0x83,0x65,0x90,0x65,0x8a,0xe1,0xe1,
0x70,0x8e,0x60,0x2b,0xe8,0x5d,0x6e,0xac,0xfd,0x60,0x6b,0x6e,0xe0,0x9f,0x1a,0x6b,
0xfe,0xae,0x8,0x7e,0x8d,0x44,0xf0,0xcb,0x47,0x30,0xe7,0x6f,0x26,0x9b,0x29,0xe6,
0xf8,0xc5,0xc1,0xcf,0x5f,0xd7,0xcf,0x5,0x3e,0xbf,0xe2,0x57,0x8b,0x3a,0x72,0xbd,
0xf,0xfe,0x1d,0x99,0xf4,0xe9,0x4c,0xd9,0x26,0x13,0x2d,0xc5,0x92,0xfa,0x22,0xe2,
0xe1,0xd8,0xd2,0x75,0x45,0x89,0xd9,0xda,0xca,0xe0,0x97,0xa,0x80,0xa9,0xb5,0x7c,
0x9a,0xe7,0xc5,0xeb,0x1d,0xea,0x83,0x4,0x0,0x0,0x2b,0x23,0x55,0xe9,0xab,0xba,
0xbf,0x5b,0xe5,0xcf,0xe5,0x8,0x49,0x61,0xe0,0xb,0xce,0xc3,0xe7,0x86,0xcb,0xb3,
0x78,0x19,0xc5,0xab,0x2,0xba,0x9f,0xed,0x7,0x41,0x3f,0xd7,0xb4,0xe6,0xfd,0xbd,
0x36,0xb7,0xf9,0x41,0x6b,0xec,0x1f,0xc9,0xe8,0xfd,0x6a,0xd8,0x1f,0x16,0xa1,0xcf,
0x9f,0xf3,0x37,0x6c,0xe5,0xaf,0x5e,0x6b,0xcd,0xe9,0xf3,0xd6,0xf5,0x4b,0x5,0x3f,
0x37,0xd4,0xbb,0x2e,0x5b,0x17,0x84,0xbe,0x44,0x93,0xc7,0xe5,0x92,0xbe,0xa4,0x4c,
0xef,0xf2,0x3,0x9f,0x55,0xbb,0x6b,0x37,0x55,0x79,0xf3,0x3f,0x50,0xff,0xc3,0x8c,
0xc7,0xd1,0x5d,0xf0,0xf3,0xd7,0xbb,0x9,0x16,0x3d,0xf4,0xce,0x25,0xb5,0x27,0x4a,
0xba,0x9f,0xa1,0xea,0x8a,0x5f,0xfc,0xcb,0x43,0x20,0x4,0x0,0x60,0xed,0xa8,0xaa,
0xfa,0xb9,0xdb,0xaa,0x2a,0x7f,0x7e,0x71,0xa9,0x18,0x75,0x8c,0x83,0x5d,0xe2,0x8f,
0xfb,0x19,0xed,0xd0,0x17,0x56,0xd,0x8b,0xcc,0x52,0x8c,0x68,0x16,0xcd,0x1d,0xb7,
0xa8,0x61,0x9f,0x91,0xd1,0x9f,0xca,0xe8,0x73,0x6a,0x28,0xac,0x2,0x8e,0x64,0xce,
0x9f,0x9b,0xe7,0xe7,0x16,0x71,0x6e,0x5,0xbf,0x7a,0x56,0x2f,0xba,0x7a,0xc3,0xaa,
0x9f,0x3f,0xd4,0x1b,0x4,0xbf,0xed,0x92,0xbe,0x2e,0xe9,0x1a,0x49,0xe1,0xe2,0xcb,
0xad,0xf9,0x7d,0xa5,0x80,0xe5,0x7f,0x40,0x7e,0xa,0xe,0x3e,0xe8,0x76,0x2a,0xf6,
0x83,0x9f,0x6b,0x7d,0xae,0xac,0xfe,0x15,0xe3,0xf7,0xa9,0x8a,0x9f,0x4d,0x86,0xbb,
0xd4,0x7f,0x3d,0x74,0xfb,0x2f,0xa,0x0,0x0,0xb0,0x3a,0x55,0x15,0x72,0x52,0xc5,
0x28,0x3f,0xf4,0x49,0x61,0xe5,0x2f,0x1e,0x55,0x8c,0x47,0x25,0x53,0xe1,0xcf,0x2f,
0x5c,0x95,0x42,0x9f,0x77,0x2c,0x3f,0xfb,0x14,0x4b,0xb9,0x58,0xcd,0x2a,0xd7,0x5f,
0xa9,0xa1,0x9b,0x95,0xdb,0xf7,0x28,0xd7,0xcf,0x83,0x2a,0xe0,0x10,0xea,0x6e,0x4e,
0x9f,0xab,0xfe,0xf9,0xcd,0x1d,0x55,0xc1,0x2f,0x58,0xcc,0xb9,0x3d,0xd4,0xfb,0x5e,
0x49,0xfb,0xad,0xb5,0x97,0x49,0x15,0xbb,0x7a,0xf8,0x29,0xd8,0xff,0x60,0x8a,0xca,
0x5e,0x7a,0x8c,0xbc,0xbd,0xcd,0x49,0xea,0xb6,0x44,0xd5,0xcf,0xdb,0x2e,0x2e,0x4e,
0xf0,0xee,0xcb,0xd,0xce,0x7b,0xec,0xc,0x2,0x0,0x0,0x93,0xa5,0x6a,0xc8,0xd7,
0xbf,0x3f,0xce,0x8,0xd5,0x1,0xd0,0x9b,0xfb,0x17,0x4d,0x4f,0x6b,0xf,0xfd,0x2a,
0xca,0x22,0xe5,0xec,0x13,0x34,0x7f,0xb4,0x8e,0x99,0xdb,0x3c,0x1c,0xde,0x6d,0xc8,
0xcd,0xf3,0x7b,0x87,0x72,0x6d,0x57,0x43,0xef,0x94,0xd1,0xf,0x8a,0xa1,0xdf,0x21,
0xd4,0x4b,0x43,0xbd,0xd1,0xfe,0xbd,0xed,0x35,0xfd,0x6a,0x41,0xb5,0xcf,0x5f,0xd2,
0x45,0xd2,0xa7,0x25,0xfd,0x27,0xab,0xea,0xe,0xde,0xd2,0x7,0x1d,0x4d,0x90,0xf4,
0xd3,0x73,0xb8,0xe7,0x9d,0xdb,0x27,0xcf,0x9b,0x18,0xe9,0x85,0x3f,0x2b,0xdb,0xae,
0x0,0x16,0x55,0xbf,0x72,0xc7,0x8e,0x3f,0xf7,0xcf,0xbd,0x86,0xe0,0x9c,0x21,0x5e,
0x0,0x0,0xd6,0x8c,0x4e,0x23,0x79,0xa9,0xe9,0x5f,0x55,0x1,0xd0,0x2f,0x26,0xf9,
0x45,0x26,0xbf,0x62,0x97,0xaa,0xfa,0x15,0xc7,0x4e,0xd,0xf9,0x46,0x95,0xc3,0x22,
0x48,0xe6,0x6a,0x77,0xf6,0xba,0x20,0xd8,0xb0,0x52,0xae,0xd7,0xc9,0xe8,0x88,0x72,
0xfd,0xae,0x72,0xfb,0x9d,0xa1,0x2b,0x7f,0x6e,0x1,0xe7,0xa0,0xa3,0xd7,0xff,0xe3,
0x5,0xbf,0x9a,0xe2,0xee,0xde,0x6c,0x56,0xd2,0xff,0x90,0xf4,0x6e,0xab,0xf4,0x4e,
0x1c,0xc1,0x87,0x9b,0x48,0xc9,0x41,0xf2,0xb5,0x26,0x79,0x2a,0x36,0x3d,0xae,0xa,
0x7f,0xc6,0x6d,0x78,0xdc,0xfe,0x20,0xa5,0x44,0xbb,0xb6,0xf7,0xc5,0xfa,0xb7,0xf9,
0xaf,0xf,0x0,0x0,0xac,0x1d,0x71,0x2e,0xe9,0x2f,0x0,0xca,0xab,0xfa,0xb5,0x7b,
0x9,0xfc,0xe9,0x66,0xe1,0x28,0x66,0xb9,0xa0,0x15,0x57,0xff,0xfc,0x9e,0x4,0x7f,
0xae,0x5f,0x11,0xf8,0xac,0xda,0xd5,0x3f,0x7f,0x89,0x97,0x5c,0x97,0xa9,0x61,0xbf,
0xa9,0x5c,0x7f,0xac,0x5c,0x7f,0x3b,0xcc,0x67,0x52,0x77,0xc1,0xaf,0x5e,0x8b,0x96,
0x72,0xf1,0xf7,0xed,0xf5,0x82,0x9f,0x37,0xe4,0x7b,0x99,0xa4,0x7f,0x90,0x9a,0x6b,
0xf7,0x95,0x86,0x79,0x55,0xe,0x59,0xa9,0xf,0xa3,0xf9,0xa6,0xdb,0x25,0xcf,0xf2,
0xc9,0x94,0xaa,0x80,0xa5,0x61,0xdf,0xc4,0x84,0xcc,0x6e,0x65,0xdc,0xb8,0xf2,0x97,
0xfa,0x45,0x0,0x0,0x0,0x93,0xad,0x2a,0xfc,0x49,0x55,0x9d,0xbf,0xa,0x46,0xd,
0x8b,0xcb,0x71,0xd8,0x93,0x2d,0x8a,0x52,0xdd,0x72,0x8e,0x5f,0x2d,0x2c,0x8e,0xe5,
0x67,0x17,0x6b,0xdb,0x73,0xfd,0x8a,0x79,0x7d,0xd6,0xb,0x81,0x72,0x15,0xc0,0x59,
0xe5,0xfa,0x1b,0xe5,0x7a,0x8d,0xa4,0xcf,0xc,0xfa,0x99,0xd4,0xdd,0x5e,0xbd,0x35,
0x95,0x17,0x72,0x2e,0xe6,0xf8,0x95,0x83,0xdf,0xac,0xa4,0xc7,0x25,0xdd,0xd2,0xe9,
0xe0,0x45,0x3b,0x74,0xc5,0xd8,0x78,0x58,0xdd,0xcb,0x4b,0x1,0xb0,0x91,0x1c,0xfe,
0xcd,0xe5,0x57,0x4,0x8b,0x63,0x45,0xf3,0xfe,0xfc,0x94,0x4e,0xd5,0xf,0x0,0x80,
0xe9,0x92,0x1e,0xf6,0xf5,0x2e,0x77,0x58,0xf9,0x23,0x28,0x1c,0x45,0xd5,0x3c,0xa9,
0x1d,0x4,0x5d,0xf0,0xf3,0xa7,0xa7,0xf9,0x99,0xc3,0xcf,0x3f,0xee,0xf8,0xa9,0x10,
0x59,0x84,0x3f,0xab,0xc4,0x9a,0x7e,0x4a,0x5,0xc1,0x4f,0x67,0xff,0xf9,0xb2,0x59,
0xfb,0xdf,0x2e,0x7c,0x6a,0x90,0xcf,0xa6,0x9e,0x5c,0xc0,0xb9,0x98,0xdf,0xa7,0x62,
0x21,0x67,0x2f,0xf8,0xad,0x93,0xf4,0xf7,0xaa,0x8,0x7e,0xc9,0xae,0x5a,0xef,0x4d,
0xfa,0x21,0xae,0x54,0xd9,0x33,0x2e,0xf4,0x35,0x4a,0x15,0xbf,0x70,0xdf,0xbb,0x70,
0x7e,0x60,0xa7,0xaa,0x5f,0x75,0xc5,0x2f,0xfd,0xe5,0x97,0xde,0x4f,0xe2,0x97,0x7,
0x0,0x0,0x4c,0x8e,0x52,0xf5,0xaf,0xaa,0xf1,0xa3,0x62,0x65,0x90,0x38,0x57,0x94,
0x57,0x18,0x29,0x57,0xfe,0xfc,0x3f,0xc5,0x9c,0x41,0xbf,0x63,0xd8,0x2f,0x54,0xb9,
0xaa,0x5f,0x11,0xfc,0x6c,0xd8,0xfc,0x11,0x57,0x0,0x8d,0xa4,0x86,0x1e,0xc8,0xfe,
0xe3,0x65,0x67,0xec,0x7f,0xbf,0xd0,0xf7,0x10,0x70,0x7d,0x5d,0x16,0x2d,0xdc,0xdc,
0xfa,0x53,0xf3,0xb6,0x6d,0xb,0xb6,0x6c,0x93,0xfe,0x2a,0xcb,0xb2,0xdf,0x8e,0x3f,
0x3c,0x3f,0xd5,0xb6,0x3f,0xa0,0x70,0x15,0xeb,0xf6,0x30,0x6f,0x38,0x97,0xcf,0x85,
0xba,0x86,0x6d,0x4,0xc1,0xaf,0x61,0x1a,0xc9,0x61,0x60,0xbf,0x52,0x68,0x6d,0x98,
0xbc,0xa5,0x68,0x51,0x46,0x85,0x81,0xb4,0x78,0x8d,0x15,0x89,0xbf,0xb8,0x4e,0x25,
0x10,0x0,0x80,0x89,0xd7,0xad,0x88,0x13,0xe7,0x82,0x54,0xf0,0x8b,0xaf,0xa7,0x82,
0x9f,0x5f,0xe0,0xa,0xaa,0x7e,0x51,0xf5,0x2f,0x3e,0xa6,0xa4,0x76,0x95,0xcf,0x3f,
0x15,0xd5,0x3f,0xbf,0x1,0xa4,0x8,0x7e,0x2e,0xc,0x7e,0x25,0x7b,0xdf,0x2f,0x9f,
0xb3,0x5f,0xba,0xf8,0x58,0x3f,0x9f,0x49,0xdd,0xdf,0xaa,0xcd,0xaf,0xfe,0x49,0xcd,
0xe1,0xde,0x68,0x3d,0xbf,0x8f,0x4b,0xfa,0x93,0xca,0xf,0x30,0xfa,0xe0,0x4a,0xa1,
0x2f,0xe8,0xe6,0x6d,0x7,0xbf,0x86,0x69,0x4,0xc1,0x2f,0xbc,0xee,0x2a,0x82,0xed,
0xc7,0xa7,0x16,0x77,0x6e,0x8f,0xb9,0x97,0x27,0x67,0xc6,0x1f,0x76,0xea,0xcb,0x8e,
0x6f,0x7,0x0,0x0,0x6b,0x4f,0x90,0x5,0x12,0x73,0xfe,0xfc,0xcb,0x9d,0xc3,0x5f,
0xb9,0xa,0x18,0x6c,0x48,0xe1,0xd5,0xfd,0xfc,0x75,0xfd,0x8a,0xca,0x9f,0xb7,0x64,
0x4c,0x30,0xe4,0xeb,0x87,0x3d,0x37,0x7,0x30,0xa8,0xfc,0xb5,0x4e,0xcd,0x30,0xb8,
0x4e,0xb9,0xbe,0x9e,0xbd,0xe7,0x97,0x77,0xda,0xaf,0x5c,0xfc,0x7e,0xaf,0x9f,0x41,
0xbd,0x8,0x7c,0xf2,0x2b,0x7f,0xed,0xe1,0x5e,0xa9,0x58,0xce,0xe5,0xad,0x92,0x3e,
0xea,0xaa,0x80,0x55,0x55,0xbf,0xf6,0xdc,0xbb,0xf2,0x70,0x6f,0x6a,0xa8,0xd7,0xf,
0x7a,0x8d,0xa0,0xfa,0xe7,0xee,0x2b,0xcf,0xfb,0xf3,0x2b,0x7f,0xa9,0x86,0x8f,0x4e,
0x9,0x3b,0xe,0xa8,0x9d,0x7e,0x29,0x0,0x0,0xc0,0xe4,0x19,0x74,0x4a,0x57,0x2a,
0xf4,0xb9,0xdb,0xad,0xd,0xab,0x82,0x71,0xe6,0x8,0x86,0x7b,0x13,0xd5,0xbf,0x54,
0x13,0x88,0x95,0xb,0x7e,0xb6,0x4b,0xf5,0x4f,0xed,0x79,0x7f,0xfe,0xf5,0x66,0x8,
0xbc,0x4c,0xd,0xfd,0x7d,0xb6,0xfb,0x97,0x6e,0xb0,0x7,0x2f,0xbd,0xd4,0xcb,0xe7,
0x53,0xcf,0x94,0x85,0x5d,0xbd,0xad,0xd0,0x57,0x2c,0xe2,0xdc,0x3c,0xbf,0x42,0xd2,
0xdf,0xa4,0x3e,0xd0,0xf8,0x4d,0xa4,0x86,0x7b,0x53,0xeb,0xf7,0x15,0x1,0xaf,0x15,
0xf6,0x96,0x5c,0x8,0xf4,0xce,0x73,0x6b,0xda,0xd5,0xbf,0xb8,0xe9,0x43,0xe1,0xf1,
0x83,0x2f,0xa2,0x43,0x0,0x8c,0xbf,0xdc,0x6e,0xbf,0x8,0x0,0x0,0x60,0xed,0x88,
0xff,0xbd,0xf7,0x63,0x4d,0xe9,0xbe,0x44,0xd1,0xa8,0x2a,0x63,0xc4,0x15,0x40,0xbf,
0xea,0xe7,0xaf,0xeb,0x57,0x9a,0xef,0x67,0xe5,0x55,0xfd,0x14,0x56,0xfd,0x52,0xd,
0x1f,0xd,0xb5,0x83,0x5f,0x7b,0x49,0x98,0x4d,0xca,0x75,0x50,0xd2,0xad,0xbd,0x7c,
0x6,0xf5,0x60,0xb7,0x8e,0xd6,0xa5,0x62,0x1,0xe7,0xac,0x68,0xf0,0xf8,0xba,0xa4,
0xd7,0xa4,0x3e,0xc0,0xf2,0x1b,0x57,0x18,0xfa,0xd4,0x5e,0x9a,0xc5,0x55,0xfd,0xdc,
0x5c,0xbe,0x25,0xb3,0x14,0x4,0x3f,0x77,0xbd,0x61,0x9a,0xb7,0x75,0x5a,0xfa,0x25,
0xd5,0x69,0x13,0xf,0xf5,0x86,0xc3,0xbe,0xd5,0x5f,0x6c,0xfb,0x17,0x80,0x0,0x8,
0x0,0xc0,0x24,0x1b,0xb4,0x98,0x93,0xca,0x3,0x5d,0x87,0x82,0xa3,0x75,0xfb,0xfc,
0x3c,0x52,0x74,0xff,0x46,0xd5,0xbf,0x78,0x25,0x92,0x22,0xf8,0x35,0x3,0x54,0xd4,
0xe5,0xab,0x72,0x5,0x30,0x1e,0xa,0x6e,0x14,0x21,0xf1,0xad,0xd9,0xef,0xfc,0xd2,
0x7,0xed,0x23,0x97,0xfe,0xa2,0xdb,0x7b,0x2d,0x2a,0x7f,0x89,0x5d,0x3b,0x9c,0x8f,
0x4a,0xba,0x31,0xf5,0x21,0x75,0xc,0x7e,0xa5,0xd0,0x97,0x17,0x95,0x3c,0x3f,0xe8,
0x2d,0x9a,0xa5,0x66,0xd8,0xb3,0x4b,0xcd,0xdb,0xbc,0xa1,0xdf,0xb0,0xe1,0xa3,0xbc,
0xde,0x5f,0x2a,0xfc,0xb9,0xb2,0x6c,0xbf,0x43,0xbe,0xbd,0xfe,0xb2,0x10,0x10,0x1,
0x0,0x98,0x7c,0xdd,0xfe,0xdd,0x4f,0xaf,0x1,0x58,0x6e,0xe,0x89,0x2b,0x81,0x55,
0x79,0x28,0xd8,0xd5,0xc3,0xad,0x1f,0x18,0x4,0x3f,0xef,0x72,0x3c,0xbc,0x1b,0xee,
0xf6,0x11,0xaf,0xfd,0xe7,0x57,0x0,0x1f,0xc8,0xde,0x3e,0x7b,0xd4,0x3e,0xb1,0xf8,
0xbd,0x4e,0xef,0xad,0xee,0x7,0xbf,0x28,0xf4,0x49,0xd2,0xeb,0x24,0x7d,0x38,0xf5,
0x61,0x95,0xca,0x9e,0xf1,0x1b,0x2d,0xd,0xf7,0x9a,0x76,0xb5,0xaf,0x55,0xe9,0x5b,
0x34,0xcd,0xc0,0x57,0x9c,0x5c,0xd5,0xcf,0x2e,0x15,0xc1,0xaf,0xd3,0x5a,0x7f,0x2e,
0x59,0x87,0xe1,0x2f,0x3d,0xdc,0x9b,0xec,0xae,0xe9,0xf2,0x65,0x3,0x0,0x80,0xb5,
0xa3,0x6b,0xe0,0xeb,0x21,0x1f,0xa4,0x82,0xa0,0x3f,0xb9,0xac,0x5c,0x1,0xcc,0xc3,
0x11,0x51,0x57,0x5,0x54,0xb4,0xc4,0x4b,0x6a,0xc8,0x37,0xae,0x2,0x5a,0xf9,0x41,
0xaf,0x3c,0x14,0x6c,0xb4,0x4e,0xb9,0xbe,0x90,0xbd,0x65,0xf6,0xd7,0xec,0x3f,0x2f,
0x56,0x6e,0x2,0x57,0x77,0x17,0x12,0xc1,0x4f,0x92,0xbe,0x20,0x69,0xb6,0x53,0xd9,
0xd3,0x4f,0xb8,0x7e,0xea,0xf5,0xe7,0xf6,0xb9,0x6a,0xde,0x92,0x57,0xe5,0x5b,0x34,
0x4b,0x5a,0x34,0x8b,0x5e,0xf8,0x6b,0x68,0xd1,0x2c,0x16,0x8f,0x2b,0xaa,0x84,0x5e,
0xf5,0xaf,0xbd,0xb3,0x47,0x58,0xf1,0xb,0xd6,0xcd,0x51,0x7b,0xf,0x5f,0x77,0xd9,
0x7f,0xbd,0xbd,0x7e,0xb9,0x0,0x0,0x60,0xed,0xea,0x65,0xc4,0xaf,0xea,0x11,0xdd,
0x83,0x60,0x62,0xe,0xa0,0x1b,0x2,0x8e,0x2b,0x7f,0xc9,0x2e,0xdf,0xe8,0x36,0xb7,
0xf6,0x5f,0x2a,0xf8,0x95,0xaf,0x6f,0x97,0xd1,0x7b,0x25,0x7d,0xb1,0xea,0x7d,0xd5,
0xbd,0x65,0x5c,0x24,0xc9,0x5f,0xd3,0xef,0x5d,0xd6,0xda,0xb7,0xc4,0x99,0xd0,0x7f,
0xc3,0x71,0xf0,0x2b,0x77,0xf5,0x86,0x43,0xbd,0xd,0x1b,0x6,0xbf,0x45,0xb3,0xa8,
0xc5,0x7c,0xa9,0x18,0xf2,0xf5,0xab,0x7f,0x7e,0xf3,0x47,0x3c,0xd7,0x2f,0xae,0x2c,
0x86,0xeb,0xfa,0xd9,0x52,0xa,0xef,0x16,0xfc,0x8,0x7c,0x0,0x0,0xac,0x4d,0x83,
0xce,0x1,0xec,0xe7,0x58,0xdd,0x87,0x81,0xa3,0x5d,0x40,0xdc,0x12,0x2f,0x71,0xb3,
0x47,0xdc,0xf8,0x91,0x57,0x5c,0x4f,0xd,0xfd,0x16,0xd,0x20,0x56,0x32,0xfa,0xaf,
0xd9,0x6f,0xcc,0x3c,0x66,0xff,0x75,0xe9,0x4c,0xea,0xf5,0xd6,0xe3,0x1b,0xac,0xb5,
0xca,0xb2,0xec,0x72,0x49,0x7f,0xee,0xbf,0x21,0xff,0x8d,0xb7,0xdf,0x58,0xb8,0x96,
0x5f,0x1c,0xfc,0x1a,0x41,0x53,0x87,0xb,0x7c,0x61,0xf0,0x2b,0x2e,0x9b,0xc5,0xf6,
0xb0,0x6f,0xeb,0x39,0xa5,0x61,0x5f,0xe3,0x57,0xff,0xfc,0xb2,0xaa,0x94,0x1a,0xf6,
0x75,0xaf,0x3f,0x8c,0x82,0xe1,0x17,0xd5,0xcb,0x97,0xa,0x0,0x0,0x50,0x25,0x95,
0x31,0xe2,0x7d,0x7c,0xf3,0x68,0xfe,0x9f,0xfc,0x6,0x8f,0x4e,0x15,0x40,0xbf,0xea,
0x67,0x14,0xcd,0xf3,0x4b,0x4,0xbf,0xe6,0x7d,0xaf,0x96,0xd1,0x3,0x92,0xfe,0x30,
0xf5,0x7a,0xeb,0xd1,0xee,0x1d,0xee,0x4d,0xbc,0x57,0xd2,0x15,0x7e,0x45,0xb0,0x3c,
0xd7,0xaf,0x3c,0xc7,0x2f,0xe,0x7e,0x7e,0x57,0x6f,0x1c,0xfc,0x2e,0xe5,0x8b,0xba,
0x64,0x2e,0x15,0xb7,0xbb,0xca,0x9f,0x1b,0xfa,0x75,0x43,0xc5,0x71,0xa0,0x74,0xe3,
0xe5,0xc5,0x3a,0x3a,0xa,0xe7,0xfb,0xf9,0xc3,0xbe,0x71,0xe8,0xeb,0xb4,0xb4,0xb,
0xd5,0x3f,0x0,0x0,0xa6,0x5b,0x2a,0x13,0x15,0xf7,0xa5,0xa7,0xc7,0x5,0xaa,0x1b,
0x42,0x14,0xac,0xff,0xd7,0xde,0xd2,0x4d,0xe5,0x2e,0xdf,0xe4,0x90,0xaf,0x2a,0xf6,
0xfc,0x55,0x18,0x4,0xfd,0xe5,0x5f,0x8c,0xde,0x95,0xdd,0x50,0xff,0xa4,0x7d,0xa6,
0xf1,0x7c,0xfc,0x3a,0x4b,0x95,0x3f,0x49,0xb3,0xd6,0xda,0xf,0xfa,0xef,0x31,0x7e,
0x33,0xc6,0x5,0xad,0x2e,0xc1,0xaf,0xd9,0xd4,0xb1,0x18,0xcc,0xe9,0x5b,0x34,0x8b,
0xba,0x98,0x5f,0xd2,0xa5,0xbc,0x19,0xfc,0x2e,0xb9,0xaa,0x5f,0x31,0x7,0x30,0x35,
0xe4,0x9b,0x1e,0xf6,0x8d,0xcb,0xa9,0xa9,0xf,0x3b,0x78,0xfd,0x15,0x41,0x10,0x0,
0x0,0x40,0x4a,0x7,0xc0,0x38,0xf8,0xf5,0x12,0x4,0xa5,0x70,0xb4,0xd4,0xdf,0x91,
0xac,0x34,0xcc,0x1b,0xf,0xf7,0x6,0xd7,0xbd,0xaa,0x9f,0xdf,0xf9,0x9b,0xdb,0xea,
0xe0,0xd7,0x68,0x35,0x7f,0x58,0x7d,0x50,0xd2,0x1f,0xc7,0xaf,0x2b,0x8,0x7f,0x56,
0x56,0x99,0xb2,0x3f,0x92,0xf4,0xda,0x78,0x61,0x64,0xb9,0xd7,0x92,0x8,0x5d,0xdd,
0x82,0x9f,0x5f,0xf1,0x73,0xc1,0xef,0xa2,0xb9,0xa8,0x4b,0xf9,0xa2,0x37,0xec,0xbb,
0x14,0xc,0x11,0xfb,0x7b,0xfc,0x26,0x97,0x78,0x31,0xae,0xe1,0xc3,0x5,0xd2,0x72,
0xf8,0x93,0xd2,0xc3,0xd6,0xa9,0x2f,0x7,0x0,0x0,0x4c,0x97,0x64,0x88,0xb3,0x9d,
0xc3,0x9d,0x1f,0xe,0x7b,0xad,0x6,0x6,0x4d,0xb2,0xc5,0x6e,0x1e,0x36,0x11,0xf8,
0x12,0x15,0x40,0x17,0x4,0x83,0xf9,0x7e,0x71,0xc3,0x87,0x54,0x9a,0x3,0xd8,0x1c,
0x8,0x7d,0x77,0x76,0x5d,0xfd,0x13,0xf6,0xb9,0xc6,0x69,0xff,0x35,0xd5,0xdd,0xb,
0x93,0x24,0x6b,0xed,0x3a,0x93,0xe9,0xc3,0x7e,0xb,0x48,0xd1,0x34,0x11,0xbd,0xf8,
0x54,0xd5,0xcf,0xf,0x7e,0x45,0x67,0x6f,0x6b,0xe,0xdf,0x25,0x73,0xa9,0x39,0xd4,
0xeb,0x5,0xbf,0xe6,0x6d,0x97,0x9a,0xc1,0xcf,0x6b,0xfa,0x70,0xf3,0xfc,0x1a,0xa6,
0x11,0xac,0x15,0x18,0xb4,0x49,0x2b,0xbd,0xa0,0x73,0xf1,0x5a,0x2b,0xc2,0xdf,0x20,
0x8,0x87,0x0,0x0,0x4c,0x96,0x7e,0x86,0x69,0x7b,0x3a,0x9e,0xb,0x7d,0xb6,0x7c,
0xfc,0xaa,0x9f,0x55,0x9a,0x32,0xe7,0xef,0xe3,0x1b,0x57,0xfb,0x82,0xdb,0x13,0x21,
0x30,0xe,0x7c,0xc9,0xdd,0x3f,0x82,0xe0,0x27,0x59,0xcd,0x4a,0xfa,0xa0,0xa4,0xf7,
0xfb,0xaf,0xab,0xde,0x6a,0xf0,0x70,0x55,0xbf,0xdf,0xb6,0xd6,0x6e,0x52,0xe6,0x85,
0x3e,0x1b,0xbd,0x70,0x85,0xcb,0xac,0xa4,0x82,0x5f,0x11,0x0,0x8b,0xee,0xde,0xb0,
0xb9,0xc3,0x5,0xbf,0x8b,0xf9,0xc5,0x60,0xc9,0x17,0x7f,0xb7,0x8f,0xd4,0x7e,0xbe,
0xa5,0x3d,0x7c,0x5b,0xaf,0xa9,0x78,0x7d,0xde,0xf5,0xaa,0x2f,0x0,0x0,0x0,0xac,
0x7d,0xc3,0xfe,0xbb,0x1f,0x7,0xba,0x4e,0x23,0x89,0x55,0x73,0x5,0x4b,0xbd,0x6,
0x7e,0xe8,0x8b,0x5f,0x5e,0x32,0x10,0xf6,0xb8,0xfc,0x4b,0x43,0x61,0xf0,0xb,0x8f,
0xfd,0x47,0xd9,0x75,0xf5,0x8f,0xd8,0xe7,0x1a,0x3f,0x77,0x37,0xd4,0xa2,0xae,0xd8,
0x77,0x17,0x97,0xad,0x4d,0x56,0xfa,0xfc,0x85,0x96,0xcb,0xdd,0xbd,0x8d,0xd2,0x3a,
0x7e,0xfe,0xe9,0x92,0xb9,0x54,0xcc,0xf1,0x73,0x15,0xbf,0xc5,0x60,0xce,0x5f,0x7b,
0x7b,0xb7,0x62,0x7d,0x3f,0xd3,0x61,0xce,0x9f,0xb7,0x5e,0x8e,0x3f,0xe7,0xcf,0xff,
0xa0,0x53,0x9d,0xbe,0x0,0x0,0x0,0x9d,0xf4,0x93,0x21,0x82,0xdc,0xe4,0x9d,0xfc,
0x63,0x15,0xe1,0xce,0x3f,0x9c,0x95,0x14,0x57,0x3,0xdd,0xed,0xc1,0xdc,0x3f,0x2f,
0x4,0xfa,0x95,0xbf,0x86,0x77,0xd9,0xaf,0x1e,0x86,0x2e,0x93,0xf4,0xe,0xff,0x86,
0x9a,0xf7,0x6,0x5f,0x6d,0xad,0x7d,0x7b,0xb8,0xa,0x75,0x7a,0xc7,0x8e,0x78,0xdb,
0x36,0xbf,0xb3,0xd7,0xf,0x6f,0x6e,0xd9,0x96,0x76,0xb3,0xc7,0x52,0x30,0xc7,0xcf,
0xf,0x7e,0xf1,0x32,0x2f,0xed,0x5,0x9e,0xbd,0x75,0x71,0x5c,0xd5,0xb1,0xc7,0xd0,
0x7,0x0,0x0,0x30,0x2c,0x1b,0xfd,0xe9,0xf7,0x79,0xe5,0xa7,0x54,0x1c,0x23,0xae,
0xa,0x96,0xaa,0x7e,0xde,0x29,0x6e,0xfe,0x30,0xe5,0xc3,0x79,0xde,0xed,0x5f,0x69,
0x86,0xbf,0x66,0x98,0x7a,0x97,0x95,0x9d,0xf5,0xdf,0x5c,0x10,0xfa,0x54,0xde,0x5b,
0xb7,0xdb,0x70,0x6f,0x73,0x1e,0x5f,0xab,0xf1,0xc3,0x2e,0x95,0x96,0x7c,0x69,0x6f,
0xf5,0x96,0x7,0xa1,0x2f,0x5e,0xd2,0xc5,0x75,0xc9,0x14,0x4d,0x26,0x84,0x3e,0x0,
0x0,0xb0,0x42,0xba,0x5,0xc1,0xe0,0x3e,0xbf,0x9a,0xd7,0xfb,0xf,0xf0,0xe7,0xed,
0xa5,0x1b,0x42,0xe2,0xe,0xe0,0xb8,0xaa,0x18,0xba,0x39,0xbb,0xae,0xbe,0xc9,0x5d,
0xa9,0x79,0x5d,0xbb,0xbf,0x9f,0xaa,0xfa,0x5,0xc3,0xbe,0xa5,0x26,0x8f,0x30,0x10,
0xba,0xb0,0xd7,0xae,0xfa,0xb5,0x2a,0x7f,0xad,0xdb,0x4b,0x6b,0xf9,0xb5,0x82,0xa2,
0x5f,0x35,0x4c,0xd,0xf3,0xfa,0xd5,0xbe,0xd4,0xbc,0x3e,0x42,0x1f,0x0,0x0,0x58,
0x9,0x71,0x55,0x30,0xc8,0x23,0x95,0xd1,0x24,0x6b,0x9f,0xf9,0x8d,0x24,0x71,0x50,
0xac,0xac,0x2,0x26,0xd6,0x0,0xec,0x1c,0x83,0xd6,0x49,0x7a,0x97,0xbb,0x52,0x73,
0x43,0xbe,0x92,0xde,0x98,0xaa,0xfa,0xf9,0x7b,0xea,0x26,0xb7,0x6d,0x33,0xe1,0x10,
0xad,0xdb,0xc2,0xcd,0xdf,0xc7,0xd7,0xf,0x7d,0x8b,0x45,0x17,0xb0,0x17,0x14,0x5d,
0xc5,0xaf,0xb5,0x83,0x87,0xb1,0xe1,0x52,0x32,0xc1,0x87,0xdb,0xc3,0xd2,0x2d,0x0,
0x0,0x0,0x13,0xa5,0x58,0x66,0xc5,0x86,0xe7,0xf1,0x2e,0x20,0xa9,0x35,0x1,0x7b,
0xf3,0x16,0x77,0xa1,0xd6,0xa,0x58,0x6f,0x35,0xd6,0xac,0xeb,0xbd,0xea,0x57,0xe,
0x83,0xfe,0xbc,0xbf,0x62,0x6b,0x37,0x1b,0x2e,0xf7,0xe2,0xef,0xef,0xdb,0xb0,0xe1,
0xe,0x1e,0xed,0xe3,0x47,0xb,0x37,0x57,0xc,0xf3,0x52,0xed,0x3,0x0,0x0,0xab,
0x56,0xb7,0x88,0x92,0x55,0x5c,0xf6,0x9f,0x6f,0xa3,0xcb,0x55,0x9d,0xbf,0xbd,0xc5,
0xa1,0x37,0x66,0xd7,0xd5,0x2f,0x93,0xa4,0x5a,0x6b,0x38,0xf5,0x96,0x6e,0x55,0xbf,
0x64,0xf0,0x33,0x51,0xa7,0xaf,0x6d,0xf,0xf7,0xb6,0x3b,0x7f,0xdb,0x43,0xba,0xfe,
0x90,0xb0,0x1f,0x14,0xdb,0x1,0xb0,0x1c,0xfc,0xa8,0xf6,0x1,0x0,0x80,0x35,0x25,
0xf3,0xce,0x33,0xa5,0xc3,0x9f,0x14,0x56,0xfb,0x6c,0x62,0xa9,0x98,0xfe,0xe2,0xd0,
0x65,0x92,0x7e,0x5d,0x6a,0x57,0xfe,0x6e,0xec,0x56,0xf5,0xcb,0x2b,0x2b,0x7e,0xcd,
0x7d,0x78,0xe3,0x0,0x18,0x37,0x81,0xf8,0x8f,0x8f,0x8f,0xd3,0xac,0xea,0x95,0x77,
0xf,0x21,0xf8,0x1,0x0,0x80,0x35,0xc5,0xf,0x7b,0x55,0x97,0x7d,0x71,0xf5,0xcf,
0x85,0xc0,0xfe,0x86,0x7c,0x9d,0xb7,0x48,0x52,0xdd,0xca,0xce,0x65,0xca,0xae,0x29,
0xd6,0xfb,0x6b,0x9d,0xbb,0xb9,0x76,0xcd,0xe1,0xd8,0xf2,0x36,0x6e,0xf1,0x9e,0xbb,
0x45,0xb8,0x33,0xe5,0xc7,0xb8,0x8e,0xde,0xa0,0xb1,0x23,0x58,0xc0,0x39,0x5c,0x38,
0x9a,0xe0,0x7,0x0,0x0,0xd6,0x94,0x4c,0xcd,0xb0,0xe6,0x9f,0x27,0x1f,0xe7,0x1e,
0xe0,0x89,0xe7,0xfb,0xc5,0xeb,0x3,0xf6,0xee,0x8d,0x92,0x54,0x37,0xd6,0x6c,0xf7,
0x57,0xb1,0xf6,0x43,0x60,0x33,0x88,0x29,0x8,0x7e,0xd5,0x21,0x30,0x1c,0x6,0x76,
0xf3,0xfe,0x3a,0x85,0x45,0x57,0x51,0x6c,0xc6,0xcb,0xa8,0xb9,0x83,0xe0,0x7,0x0,
0x0,0x26,0x55,0x22,0xc3,0x5,0xb7,0x65,0x99,0x94,0xd9,0xe6,0x6d,0xb5,0x8a,0x63,
0x94,0xaa,0x7e,0xad,0xeb,0x6e,0xce,0x5f,0xff,0x7e,0x55,0x6a,0x56,0xfe,0xae,0xf,
0x7f,0x8e,0xf5,0x76,0xf6,0x68,0x9e,0xfb,0x5b,0xac,0x85,0x1,0x30,0xe,0x82,0xa6,
0x22,0xc,0x96,0x87,0x79,0xfd,0x75,0xfb,0xdc,0xcf,0x6b,0xbe,0x9f,0xf4,0xfa,0x7d,
0x0,0x0,0x0,0x6b,0xca,0x20,0xc3,0xbe,0x83,0x85,0x3e,0x67,0x2e,0xbb,0xae,0xbe,
0xa9,0x6e,0xac,0xb9,0xc6,0x55,0xfe,0xda,0x55,0x3f,0x95,0xe7,0xfd,0xc9,0x4,0x1,
0x30,0xb7,0x26,0x68,0xc,0x89,0xab,0x7e,0xd5,0x41,0xb0,0x7d,0xdd,0x35,0x78,0xb8,
0xc0,0x97,0xa,0x79,0x4,0x3f,0x0,0x0,0x30,0x91,0xe2,0xea,0x9f,0x3f,0xe4,0x5b,
0x35,0xec,0xeb,0x8b,0x2b,0x7e,0xa9,0xf5,0xff,0xfa,0xf7,0xba,0xba,0x95,0x36,0xc9,
0xb,0x7d,0xfe,0x62,0xca,0xa5,0xe0,0xa7,0x54,0x8,0x74,0x1d,0xc1,0xed,0xfb,0xc3,
0xdb,0xbd,0x8a,0x9f,0xab,0x22,0x7a,0x7f,0xfc,0xca,0x5f,0x3c,0xdc,0x4b,0xf0,0x3,
0x0,0x0,0x6b,0x4a,0xaa,0xd3,0x37,0x15,0x6,0xe3,0x8,0xe4,0x7,0xbf,0xaa,0xc7,
0xf4,0x66,0x4b,0xdd,0x5a,0xbb,0xa9,0x1d,0x28,0xdb,0xcd,0x1e,0x45,0xf8,0x93,0x29,
0xcd,0xf3,0xf3,0x1b,0x40,0x8c,0x35,0xc5,0xe2,0xcc,0xa5,0x90,0xe7,0x6d,0xd1,0x56,
0x2c,0x19,0xe3,0xba,0x89,0xad,0x82,0x6a,0x1f,0xc1,0xf,0x0,0x0,0xac,0x39,0xa9,
0xb9,0x7f,0xf1,0xfd,0x7e,0x20,0x4c,0x29,0xcd,0xf9,0x4b,0xed,0x17,0xdc,0xb3,0x4d,
0x75,0x2b,0xfb,0x9a,0xf6,0xb1,0xfd,0xf9,0x7e,0x61,0xf0,0x6b,0x2f,0xfb,0xe2,0x55,
0xef,0x6c,0xbb,0x7e,0xd7,0xe,0x75,0x36,0xa8,0xc,0x6,0xfb,0x3,0x47,0xa1,0x32,
0xa8,0xfa,0x11,0xfc,0x0,0x0,0xc0,0x5a,0x17,0x34,0x7d,0x44,0xb7,0x77,0x63,0x6d,
0x79,0x8,0xb8,0x7f,0xaf,0xae,0x1b,0x6b,0x5e,0x5d,0x1c,0xd3,0x1b,0x7a,0xf5,0x43,
0x9b,0x1f,0xe8,0x4a,0x8d,0x1f,0x26,0x4f,0xde,0x1e,0x87,0x3e,0x17,0xfc,0xdc,0x62,
0xce,0xd6,0x86,0xcb,0xba,0x0,0x0,0x0,0xac,0x49,0xa9,0xb9,0x7f,0x55,0x43,0xbe,
0x9d,0xaa,0x7f,0xee,0x7c,0xb8,0xd8,0xf4,0x9a,0xba,0x95,0xbd,0xac,0x7d,0xdc,0x68,
0x87,0xd,0x57,0x5,0xf4,0x66,0xe8,0xf9,0xcb,0xb2,0xc4,0x97,0x4b,0x55,0xc0,0x60,
0xde,0x60,0xfb,0x98,0xee,0x67,0xb9,0x73,0xaa,0x7e,0x0,0x0,0x60,0xaa,0x64,0xad,
0xff,0xc9,0x6c,0xb8,0xec,0x4b,0x4a,0x5c,0xed,0x1b,0x2e,0x2a,0x5d,0x5e,0x2f,0x42,
0x58,0xd4,0xe8,0xe1,0xaa,0x7f,0xc1,0xdc,0x3d,0xaf,0xba,0x57,0x54,0x8,0xbd,0x2a,
0xa1,0xb5,0x61,0xf3,0x46,0xee,0xed,0xcd,0x1b,0xf,0x27,0xa7,0x2a,0x7e,0x4,0x3f,
0x0,0x0,0xb0,0x26,0xc5,0xc3,0xbd,0xbd,0x46,0x1e,0x1b,0x5d,0x1e,0x3e,0x2a,0xad,
0xab,0xbb,0x85,0x95,0x9b,0xc7,0xc,0x83,0x9f,0x5f,0xfd,0xb,0xfe,0xd8,0xb0,0x13,
0xb8,0xb8,0x1e,0x75,0x3,0xa7,0x8e,0x27,0x29,0xc,0x89,0x96,0xc0,0x7,0x0,0x0,
0xa6,0x50,0xaa,0xd2,0xd7,0x6b,0xf5,0x6f,0x70,0x97,0xd7,0x9b,0xc7,0x9,0xc3,0x58,
0x50,0xa9,0x53,0x58,0xf5,0xb,0x86,0x7b,0xfd,0xc7,0xbb,0x63,0x44,0xcb,0xb6,0xc4,
0x97,0xa9,0xfa,0x1,0x0,0x80,0xa9,0x54,0x35,0xf7,0x4f,0xea,0xd2,0xe9,0x9b,0xd8,
0xee,0x6d,0x8,0x45,0xe5,0x2f,0x15,0x0,0xbb,0x55,0xfe,0x82,0xc7,0x7b,0xf3,0xfa,
0x4a,0x95,0x3f,0x3f,0x0,0x5a,0x6f,0xbe,0x1f,0x55,0x3f,0x0,0x0,0x30,0x8d,0x52,
0x3b,0x7b,0x74,0xea,0xf8,0x1d,0x5d,0xe5,0x4f,0xc9,0x39,0x7f,0x61,0xa5,0xae,0xdc,
0xe9,0x1b,0xcf,0xe1,0x4b,0x1d,0xa3,0xf9,0xfa,0xca,0x15,0x40,0xff,0x71,0xed,0xf7,
0x43,0x8,0x4,0x0,0x0,0x53,0xa4,0xdf,0x65,0x5e,0xa4,0x51,0xcd,0xf9,0x6b,0x6e,
0x25,0x5c,0x6a,0xf6,0xf0,0x42,0x5b,0xf3,0x67,0x85,0x7f,0xdc,0x6d,0xc9,0x75,0xfb,
0x8a,0xe3,0x58,0x25,0xab,0x8a,0x54,0xfd,0x0,0x0,0xc0,0xb4,0xea,0x35,0xe8,0xa5,
0xc4,0xcd,0x1f,0x3,0xaa,0x1c,0xf6,0xf5,0xab,0x7e,0xc5,0x5c,0x3e,0x6f,0x7d,0x3e,
0x13,0x2f,0xd9,0xe2,0x3f,0xd7,0xda,0xe8,0xf6,0x70,0x69,0x97,0xf0,0x7d,0x10,0x2,
0x1,0x0,0xc0,0x14,0xea,0x16,0x4,0xab,0xd6,0xf6,0x1b,0x76,0xce,0x5f,0x6a,0x28,
0xd6,0xd,0xeb,0x36,0x8f,0x9f,0x9e,0xf3,0x57,0xdc,0x57,0xa,0x7a,0xe5,0x61,0xdf,
0xe0,0xb1,0xd1,0x90,0x2f,0x0,0x0,0xc0,0x54,0x4a,0xed,0xe9,0xbb,0xc,0x92,0xc3,
0xbe,0x92,0x6b,0x2e,0xe9,0x3c,0xec,0x9b,0xba,0xec,0xc4,0x95,0x44,0x77,0x5b,0xea,
0x1c,0x0,0x0,0x60,0x6a,0x54,0x2d,0xf1,0xb2,0x4c,0x41,0xb0,0x96,0x5c,0x9a,0x25,
0xbe,0xcd,0x26,0x82,0x5d,0xe9,0xf1,0x51,0x48,0xf4,0x2b,0x82,0xcc,0xf3,0x3,0x0,
0x0,0x18,0xde,0x28,0x1a,0x3e,0xe2,0xa,0x9e,0x3b,0x6e,0xb2,0xfb,0xd7,0x7a,0x41,
0x2f,0x35,0xe7,0xcf,0x3b,0x15,0xaf,0xb1,0xa2,0xfa,0x7,0x0,0x0,0x0,0xf5,0xd7,
0xed,0xeb,0x9f,0xf,0xa8,0x56,0x1c,0xcf,0x96,0x2b,0x76,0xcd,0xe3,0x27,0x86,0x7e,
0xab,0xe6,0xfc,0x75,0x18,0x6,0xe,0x5e,0x3b,0xf3,0xfe,0x0,0x0,0x0,0xda,0xba,
0xad,0xf1,0x57,0x4,0xbf,0xe1,0xf3,0x53,0x2d,0x55,0xf5,0x73,0xd7,0x93,0x73,0xfe,
0x6c,0x3a,0x18,0xc6,0xb7,0x75,0x7a,0xc,0x0,0x0,0x0,0xba,0x88,0xa3,0xd3,0x88,
0xa2,0x54,0xd1,0xf0,0x51,0xfe,0x79,0xe5,0xb0,0x17,0xdf,0xdf,0xe9,0x7a,0xa7,0xe3,
0x2,0x0,0x0,0xa0,0x7,0x63,0x88,0x4d,0xed,0x61,0xdf,0x44,0x77,0x6e,0xf5,0xeb,
0x28,0xaf,0xed,0xd7,0xed,0xb1,0xf1,0x65,0x0,0x0,0x0,0x68,0xd9,0x97,0x7b,0xa9,
0xa5,0xe6,0xdf,0x95,0xe6,0xf9,0xf5,0x50,0xc1,0x8b,0xe7,0xf9,0x5,0x8d,0x24,0xcc,
0xf1,0x3,0x0,0x0,0x58,0x15,0x6a,0xfe,0x95,0x60,0xf1,0xe8,0x78,0x79,0x97,0x1e,
0x17,0x68,0xee,0xd6,0xec,0x1,0x0,0x0,0x80,0x95,0x53,0x4b,0x55,0xf7,0xaa,0x2a,
0x78,0xc1,0x6d,0x2c,0xdd,0x2,0x0,0x0,0x30,0x9c,0x7e,0x97,0x79,0x19,0x81,0xa8,
0xf2,0xd7,0xbd,0xc1,0xa3,0xea,0x67,0xa7,0x16,0x83,0x6,0x0,0x0,0xc0,0xea,0x52,
0xab,0xba,0x23,0xd9,0xbd,0xdb,0x47,0xec,0x24,0x8,0x2,0x0,0x0,0x8c,0xc0,0x88,
0x23,0x55,0xad,0x97,0x40,0x57,0x1a,0xf6,0xed,0x71,0xc8,0xb7,0x97,0xe5,0x60,0x0,
0x0,0x0,0xb0,0x7c,0xbc,0xa5,0x5e,0xca,0x7a,0xad,0xde,0x5,0x73,0x4,0xad,0xed,
0xb8,0xf8,0x34,0x15,0x41,0x0,0x0,0x80,0x95,0x53,0x1a,0xf6,0xed,0xb7,0x3a,0xd7,
0x4b,0x98,0xa3,0xe2,0x7,0x0,0x0,0xb0,0x3a,0x54,0xce,0xf9,0x3,0x0,0x0,0xc0,
0xda,0xd3,0x73,0xf8,0xa3,0x7a,0x7,0x0,0x0,0x30,0xf9,0xfa,0xae,0xfc,0x31,0x67,
0xf,0x0,0x0,0x60,0x5,0x8c,0x28,0x82,0xd5,0x24,0x2,0x1d,0x0,0x0,0xc0,0xb4,
0x60,0xce,0x1f,0x0,0x0,0xc0,0x14,0x21,0xfc,0x1,0x0,0x0,0x4c,0x11,0xc2,0x1f,
0x0,0x0,0xc0,0x14,0xe9,0x6b,0x7b,0x37,0x0,0x0,0x0,0x4c,0x36,0x2a,0x7f,0x0,
0x0,0x0,0x53,0x84,0xf0,0x7,0x0,0x0,0x30,0x45,0x8,0x7f,0x0,0x0,0x0,0x53,
0x84,0xf0,0x7,0x0,0x0,0x30,0x45,0xea,0x2b,0xfd,0x2,0x0,0x0,0x18,0xd6,0xf6,
0xd,0xdb,0x74,0xf8,0x96,0x6f,0x6b,0x6e,0xe6,0x55,0xc1,0xed,0x4f,0x9e,0x3d,0x1a,
0x5c,0x7f,0xe1,0xfc,0x8b,0x7a,0xe1,0xfc,0x69,0x1d,0x5b,0x38,0xa1,0x47,0x7f,0xf2,
0xf8,0x72,0xbe,0x44,0x60,0xd5,0x20,0xfc,0x1,0x0,0x26,0xde,0xfe,0x1b,0x1e,0x2c,
0x5,0x3f,0x49,0xba,0x79,0xe3,0x8d,0xe1,0x75,0xb5,0xaf,0x9f,0x5b,0x7a,0x45,0xf3,
0xff,0xeb,0x8a,0xb1,0xbf,0x36,0x60,0xb5,0x61,0xd8,0x17,0x0,0x30,0x95,0x52,0x61,
0x11,0x98,0x6,0x84,0x3f,0x0,0xc0,0xc4,0x3b,0x7c,0xf6,0x48,0xdf,0xcf,0x89,0x87,
0x84,0x81,0x69,0x41,0xf8,0x3,0x0,0x4c,0xbc,0x85,0xa5,0x73,0x7d,0x3f,0x67,0xff,
0x8f,0x3e,0x3f,0x86,0x57,0x2,0xac,0x7e,0x84,0x3f,0x0,0xc0,0xc4,0x3b,0xf6,0xf2,
0x89,0xbe,0x1e,0xff,0xe4,0xd9,0xa3,0x34,0x7c,0x60,0x6a,0x11,0xfe,0x0,0x0,0x0,
0xa6,0x8,0xe1,0xf,0x0,0x30,0xf1,0x6,0x99,0xf3,0x7,0x4c,0x2b,0x96,0x7a,0xc1,
0x48,0xed,0xdc,0x78,0xd3,0x50,0xcf,0x3f,0xb6,0x70,0x42,0xb,0x8b,0xfd,0xcf,0xdd,
0x59,0x6b,0x36,0xaf,0xdf,0xa4,0xcd,0xeb,0xaf,0xea,0xfb,0x79,0xfe,0xe7,0xbf,0xff,
0x47,0x9f,0xe7,0xb3,0x4,0x2a,0x10,0x16,0x31,0xcd,0x8,0x7f,0x18,0x99,0xfd,0x6f,
0x78,0x50,0xf7,0x5c,0x7d,0xd7,0x58,0x7f,0xc6,0x8b,0xe7,0x4f,0xeb,0x85,0xf3,0xa7,
0x3b,0x3e,0xa6,0x97,0x0,0xe9,0x16,0x7a,0x1d,0xc4,0xfc,0xec,0x9c,0xb6,0xcf,0x6f,
0xeb,0xf8,0x98,0x6e,0xe1,0x6d,0xfb,0x86,0x6d,0x63,0x5f,0x66,0x62,0xfb,0x86,0x6d,
0xda,0x75,0xe4,0x9d,0x63,0xfd,0x19,0x0,0x80,0xc9,0x43,0xf8,0xc3,0xc8,0x74,0xb,
0x44,0xa3,0x70,0xd5,0xfa,0x4d,0xba,0x6a,0xfd,0xa6,0x8e,0x8f,0x89,0x17,0x75,0x9d,
0x56,0xf3,0x33,0x73,0x2b,0xfd,0x12,0x80,0x65,0x75,0x7c,0xe1,0xa4,0x5e,0x3f,0x7f,
0xfd,0x4a,0xbf,0xc,0x60,0xd5,0x63,0xce,0x1f,0x0,0x60,0x4d,0x60,0x9a,0x3,0xd0,
0x1b,0x2a,0x7f,0x0,0x80,0x91,0xda,0xbe,0x61,0x9b,0x76,0x5d,0x71,0x5b,0xe5,0xfd,
0xfe,0x7c,0x3b,0xe6,0xf9,0x2,0xcb,0x8f,0xf0,0x7,0x0,0x18,0x99,0xed,0x1b,0xb6,
0xe9,0x99,0xdf,0xfc,0xd7,0x8e,0x8f,0xf9,0x98,0x3e,0x12,0x5c,0x7f,0xf1,0xfc,0x69,
0xed,0x3c,0x74,0xeb,0xc0,0xf3,0x70,0x1,0xf4,0x87,0xf0,0x7,0x0,0x18,0x99,0x17,
0xce,0xbf,0xd8,0xf7,0x73,0xae,0x5a,0xbf,0x69,0xa0,0x1d,0x3a,0x52,0x3f,0xfb,0x66,
0xf5,0x36,0xe7,0x77,0xf3,0xfa,0x4d,0x45,0x77,0xfc,0xc2,0xd2,0xb9,0xbe,0x17,0x89,
0xee,0x45,0x6a,0xf5,0x83,0xed,0x1b,0xb6,0x69,0x7e,0x66,0x4e,0x7,0x4e,0x7d,0x95,
0xb0,0x8b,0x15,0x43,0xf8,0x3,0x0,0x8c,0xcc,0xc2,0xe2,0x39,0xbd,0x78,0xfe,0x74,
0xd7,0xc6,0x2c,0xdf,0xf1,0x85,0x93,0x23,0x19,0xfa,0xed,0x27,0x4c,0xdd,0xb1,0x65,
0xb7,0xee,0xd8,0xb2,0xbb,0xa7,0xc7,0x76,0xda,0x3,0x78,0x7e,0x76,0x6e,0xa0,0x26,
0x13,0xba,0xf1,0xb1,0x92,0x8,0x7f,0x0,0x80,0x91,0x3a,0x7c,0xf6,0x48,0xcf,0xc1,
0x4a,0x92,0xf6,0x3c,0x75,0xe7,0x18,0x5f,0xcd,0xf0,0xc6,0xb1,0x82,0x0,0xdd,0xf8,
0x58,0x49,0x74,0xfb,0x2,0x0,0x46,0xaa,0xdf,0xe1,0xcc,0x71,0xc,0xb9,0x2,0xa8,
0x46,0xf8,0x3,0x0,0x8c,0xd4,0xb1,0x5,0xc2,0x1c,0xb0,0x9a,0x11,0xfe,0x0,0x0,
0x23,0xc5,0xd2,0x2d,0xc0,0xea,0xc6,0x9c,0x3f,0x8c,0xcc,0x81,0x53,0x5f,0x1d,0x7a,
0x6e,0x4c,0xb7,0x89,0xdf,0xbd,0x76,0xe5,0xf5,0xb2,0x7d,0xdb,0x9e,0x3e,0x26,0x7c,
0x3b,0x1f,0x78,0xe6,0xc3,0x1d,0x7f,0x7e,0x2f,0x7b,0xf2,0xf6,0xb2,0x3d,0xdc,0x28,
0xe6,0x18,0x3d,0x7a,0xe6,0xf1,0xa1,0x8f,0x1,0x8c,0xdb,0xb9,0xa5,0x57,0x56,0xfa,
0x25,0x0,0x53,0x87,0xf0,0x87,0x91,0x39,0x70,0xea,0xa0,0x8e,0x2d,0x9c,0x2c,0x4d,
0x64,0x1e,0x66,0x1f,0xdd,0x71,0x4a,0x2d,0xc3,0xd0,0xcd,0xb1,0x97,0x4f,0xac,0xaa,
0xd,0xe1,0xab,0x82,0xe4,0xb8,0x96,0xae,0x0,0x7a,0xd1,0xcf,0x72,0x2f,0xfc,0x9e,
0x2,0xcb,0x8f,0xf0,0x87,0x91,0xe2,0xff,0xc8,0x97,0xd7,0xc2,0xe2,0xb9,0x55,0x15,
0x46,0x1,0xa9,0xff,0x86,0xf,0x0,0xcb,0x8b,0x39,0x7f,0x0,0x0,0x0,0x53,0x84,
0xf0,0x7,0xf4,0x81,0x2a,0x1b,0x0,0x60,0xd2,0x31,0xec,0xb,0x0,0x58,0x13,0xb6,
0x6f,0xe8,0xdc,0x48,0xe5,0x7b,0xf2,0xec,0xd1,0xd2,0x7f,0xcc,0xa5,0xfe,0xe3,0xae,
0xea,0x3f,0xf8,0xaa,0x9a,0xbb,0xdc,0xf6,0x6d,0x55,0xdc,0x5c,0xe3,0xbd,0xcf,0xdc,
0xdb,0xf3,0x6b,0x5,0x46,0x8d,0xf0,0x7,0x0,0x58,0x13,0xfa,0xd9,0x35,0xe3,0xf0,
0xd9,0x23,0xda,0xf7,0xec,0xfd,0x3,0xff,0xac,0x17,0xce,0x9f,0x4e,0xce,0x6d,0x64,
0x74,0x0,0x93,0x80,0x61,0x5f,0x0,0xc0,0xc8,0xbd,0x48,0xd3,0x7,0xb0,0x6a,0x11,
0xfe,0x0,0x0,0x23,0xb7,0x12,0x1d,0xbf,0xf3,0xb3,0xbd,0x57,0xfe,0x36,0xaf,0xdf,
0x34,0xc6,0x57,0x2,0xac,0x6e,0x84,0x3f,0x0,0xc0,0x9a,0xf0,0xfa,0xf9,0xeb,0x7b,
0x7e,0x6c,0xb7,0xc5,0xd8,0x81,0xb5,0x8c,0xf0,0x7,0x0,0x18,0xb9,0x51,0xec,0x52,
0x3,0x60,0x3c,0x8,0x7f,0x0,0x0,0x0,0x53,0x84,0xf0,0x7,0x0,0x98,0x78,0xcc,
0xe1,0x3,0x7a,0x47,0xf8,0x3,0x0,0xac,0x98,0x7e,0x9a,0x34,0x3a,0xe9,0x77,0xe,
0x5f,0x3f,0x6b,0x2,0x2,0x6b,0xd,0xe1,0xf,0x0,0x30,0x52,0xfd,0x54,0xe1,0xfa,
0x69,0xd2,0x18,0xa5,0xb9,0x99,0x57,0xad,0xc8,0xcf,0x5,0x56,0x3,0xc2,0x1f,0xa6,
0x16,0x8b,0xb1,0x2,0xe3,0x41,0x27,0x2d,0xb0,0xba,0x11,0xfe,0x0,0x0,0x0,0xa6,
0x8,0xdb,0xbb,0x1,0x0,0x24,0x35,0xe7,0xdf,0xed,0xbd,0xfa,0xee,0x9e,0x1f,0x7f,
0x6c,0xe1,0x84,0x16,0x16,0xcf,0x95,0x6e,0xdf,0x75,0xe5,0x6d,0xa3,0x7c,0x59,0x3d,
0x59,0x6d,0x73,0xf8,0xe6,0x67,0xe7,0xb4,0x7d,0xbe,0xf3,0x6b,0xaa,0xda,0x1f,0xd8,
0xb7,0xb0,0x74,0x4e,0xfb,0x9f,0xff,0xfc,0x28,0x5f,0x1a,0x40,0xf8,0x3,0x0,0x34,
0x1d,0xd8,0xf1,0x25,0xdd,0x7e,0xc5,0xdb,0x97,0xfd,0xe7,0xda,0x77,0xfe,0x3f,0x9d,
0x5b,0x7a,0x45,0xc7,0x5e,0x3e,0xd1,0xd7,0xf3,0x5e,0x38,0xff,0x62,0xb1,0x93,0xc8,
0xce,0x8d,0x37,0xf5,0xfd,0x73,0x8f,0xbd,0xf5,0xbb,0xc9,0xf0,0xda,0xcd,0xfc,0xec,
0xdc,0xb2,0xce,0x55,0x9c,0x9f,0x99,0x1b,0x6a,0x1f,0x62,0x20,0x46,0xf8,0x3,0x7a,
0xf4,0xe4,0xd9,0xa3,0x2b,0xfd,0x12,0x80,0xb1,0x9a,0x9f,0x19,0x4d,0xe7,0xed,0x20,
0xe6,0x66,0x5e,0xd5,0xf7,0xc2,0xd0,0x37,0x6b,0xb8,0x85,0xa4,0x57,0xaa,0xd9,0x4,
0x58,0x69,0xcc,0xf9,0x3,0x6,0xb4,0xf7,0x9a,0xbb,0x7,0xaa,0x36,0x0,0x0,0xb0,
0x92,0xa8,0xfc,0x1,0x3,0xd8,0xb9,0xf1,0x26,0x7d,0xf6,0x86,0x4f,0x49,0x92,0x5e,
0x3c,0x7f,0x5a,0xfb,0x7f,0xf4,0x5,0x1d,0x38,0xf5,0xd5,0x81,0x86,0x90,0x0,0x0,
0x58,0x4e,0x84,0x3f,0x60,0x0,0x7,0x76,0x3c,0x54,0x5c,0xbe,0x6a,0xfd,0x26,0x7d,
0xf6,0x86,0x4f,0x69,0xdf,0xd6,0xfb,0xb4,0xff,0xf9,0xcf,0x6b,0xff,0x8f,0x3e,0xbf,
0xe6,0x43,0xe0,0xce,0x8d,0x37,0x75,0xad,0x7a,0x56,0x35,0x3,0xa4,0x4c,0xdb,0xb2,
0x3b,0xbd,0x34,0x3,0xf4,0xf2,0xb8,0x63,0xb,0x27,0xf4,0xe8,0x4f,0x1e,0x1f,0xe5,
0x4b,0x3,0x30,0x5,0x8,0x7f,0x40,0x9f,0xf6,0x6d,0xbd,0x4f,0x57,0x25,0x16,0xb1,
0x9d,0x9b,0x79,0x95,0x3e,0xb6,0xf5,0x23,0xda,0x7b,0xcd,0xdd,0x6b,0x3a,0x4,0xee,
0xba,0xf2,0x36,0x3d,0x72,0xe3,0xd7,0x96,0xf5,0x67,0x76,0x6b,0x6,0x58,0x58,0x3a,
0xd7,0xf1,0x7e,0xbf,0x31,0x20,0xb6,0x7d,0xc3,0xb6,0x9e,0xe7,0xba,0xf5,0xda,0xc1,
0x99,0xfa,0xfd,0x18,0x87,0x27,0xcf,0x1e,0x25,0xfc,0x1,0xe8,0x1b,0xe1,0xf,0xe8,
0xc3,0xfc,0xec,0x9c,0xf6,0x5e,0xd3,0x79,0x29,0xc,0x3f,0x4,0xee,0x7d,0xfa,0x43,
0x3a,0x70,0xea,0xe0,0x32,0xbd,0xba,0xe5,0xd1,0x4b,0xc5,0x6a,0xd4,0x7a,0x69,0x6,
0x58,0x89,0x2e,0x55,0x0,0x98,0x44,0x34,0x7c,0x0,0x7d,0xd8,0x7f,0xc3,0x83,0x3d,
0x6f,0xb,0x35,0x37,0xf3,0x2a,0x7d,0x65,0xc7,0x43,0x3a,0xf6,0xd6,0xef,0xd2,0x18,
0x2,0x0,0x58,0x35,0x8,0x7f,0x98,0x5a,0xc7,0x16,0xfa,0x5b,0x53,0x6c,0xf3,0xfa,
0x4d,0xba,0x63,0xcb,0xee,0xbe,0x7f,0xce,0xeb,0xe7,0xaf,0xd7,0xbf,0xdc,0xf2,0x8f,
0xda,0xff,0x86,0x7,0x47,0xb6,0x89,0x3d,0x0,0x0,0x83,0x22,0xfc,0x61,0x6a,0xf5,
0x3b,0x1f,0x6f,0xd8,0x79,0x5c,0xf7,0x5c,0x7d,0x97,0x5e,0xf8,0xad,0x1f,0xae,0xc8,
0xee,0x7,0x0,0x0,0x38,0xcc,0xf9,0x3,0x96,0xd1,0xdc,0xcc,0xab,0xf4,0xc8,0x8d,
0x5f,0xd3,0xc3,0xa7,0xe,0x6a,0xef,0x33,0xf7,0xae,0xc9,0x86,0x10,0x4c,0xae,0x63,
0xb,0x27,0x7a,0x5a,0x68,0xb9,0xd7,0x5,0xcf,0x7b,0xe9,0xe2,0xee,0xb5,0xd3,0xbb,
0x9f,0xee,0x71,0xa9,0xb7,0x46,0x9e,0x5e,0xb6,0x57,0xeb,0xe7,0x71,0xfe,0xcf,0xee,
0x75,0x7a,0x8,0xb0,0x12,0x8,0x7f,0xc0,0xa,0xb8,0x63,0xcb,0x6e,0xed,0xdc,0x78,
0x93,0x76,0x1d,0xfd,0x83,0xbe,0xb7,0xb4,0x2,0xc6,0x65,0xef,0xd3,0xf7,0x6a,0xef,
0xd3,0xf7,0xae,0xf4,0xcb,0x18,0xd8,0x9e,0x2d,0xbb,0xb5,0x67,0xcb,0xbf,0xef,0xf8,
0x18,0x17,0x36,0x8f,0x2d,0x9c,0xd0,0xa3,0x67,0x1e,0xe7,0x3f,0xc0,0x30,0x95,0x8,
0x7f,0xc0,0xa,0xb9,0x6a,0xfd,0x26,0x3d,0xf3,0x9b,0xff,0xaa,0xf,0x3c,0xf3,0x61,
0x36,0x6e,0x7,0x86,0xb4,0xeb,0xca,0xdb,0xf4,0x15,0x6f,0xfd,0xcd,0x2a,0x71,0x65,
0x93,0xbf,0x7f,0x98,0x46,0xcc,0xf9,0x3,0x7a,0xf4,0xcd,0x33,0x4f,0x8c,0x65,0x7f,
0xdf,0xcf,0xde,0xf0,0x29,0x1d,0xd8,0xf1,0x10,0xcd,0x20,0xc0,0x10,0x6,0xad,0xe0,
0xd1,0x89,0x8f,0x69,0x44,0xf8,0x3,0x7a,0x74,0xec,0xe5,0x13,0xda,0x79,0xe8,0x56,
0xbd,0xf9,0xd0,0xdb,0x46,0x1e,0x2,0xef,0xd8,0xb2,0x5b,0x7,0x76,0x7c,0x69,0xa4,
0xc7,0x4,0x56,0xa3,0xf9,0xd9,0x39,0xed,0xdb,0x7a,0x9f,0xe,0xdf,0xf2,0x6d,0xed,
0x7f,0xc3,0x83,0x23,0x6b,0x80,0xea,0xb7,0x7b,0xdf,0xa1,0xea,0x87,0x69,0x44,0xf8,
0x3,0xfa,0x74,0xf8,0xec,0x11,0xed,0x3c,0x74,0xab,0xde,0xf3,0xd4,0x9d,0x3a,0xb7,
0xf4,0xca,0xc8,0x8e,0x7b,0xfb,0x15,0x6f,0xf,0xb6,0x8d,0x3,0xd6,0xa2,0xbd,0x57,
0xdf,0xad,0x8f,0x6d,0xfd,0x88,0x6e,0xde,0x78,0xa3,0xee,0xb9,0xfa,0x2e,0x3d,0x72,
0xe3,0xd7,0xb4,0xf0,0xef,0xce,0x68,0xff,0x1b,0x1e,0xd4,0xf6,0xd,0x83,0x2f,0x20,
0xbe,0xb0,0x78,0xae,0xef,0xbf,0x8f,0x7f,0xf9,0xa3,0x2f,0x8c,0x75,0x6b,0xc1,0x7d,
0x5b,0xef,0xd3,0xfe,0x37,0x3c,0x48,0x75,0x11,0xab,0xe,0x73,0xfe,0x80,0x1,0x1d,
0x38,0x75,0x50,0x8f,0x9e,0x79,0x5c,0xfb,0xb6,0xde,0xa7,0x7b,0xae,0xbe,0x6b,0x24,
0xc7,0xbc,0x63,0xcb,0x6e,0x1d,0x5b,0x38,0xb9,0xaa,0xab,0x11,0xb,0x4b,0xcb,0x37,
0x41,0xfe,0xf8,0xc2,0xc9,0x8e,0xc3,0x79,0xfd,0x76,0x80,0xf6,0xa2,0xd7,0x7d,0x77,
0x7b,0xe9,0x8a,0x45,0xd9,0xe6,0x8a,0xad,0x11,0xef,0xb9,0xfa,0x2e,0xdd,0x73,0xf5,
0x5d,0x3a,0xde,0xfa,0xfd,0x1f,0xa4,0x19,0xe3,0xd8,0xcb,0xbd,0x75,0x2b,0x3b,0xe3,
0xfc,0x7b,0xb6,0x7d,0xc3,0x36,0x7d,0x6c,0xeb,0x47,0x24,0x35,0x97,0x79,0x7a,0xf1,
0xfc,0x69,0xed,0x7b,0xf6,0xfe,0x35,0xb7,0xe3,0xf,0x26,0x13,0xe1,0xf,0x18,0xc2,
0xc2,0xe2,0x39,0xed,0x7d,0xfa,0x5e,0x1d,0x3e,0x7b,0x44,0x7,0x76,0x7c,0x69,0x24,
0xcb,0x3b,0x7c,0xf6,0x86,0x4f,0x69,0x61,0x71,0x61,0xd5,0xfe,0x23,0x71,0xe0,0xd4,
0x57,0x7b,0xda,0xb,0xb7,0xd3,0x7e,0xba,0xce,0x38,0xab,0x2e,0xab,0x41,0x2f,0x15,
0x9f,0x7e,0x97,0x11,0xf1,0x4d,0xe2,0xe7,0xd7,0xed,0x33,0x79,0xfd,0xfc,0xf5,0xfa,
0xca,0x8e,0x87,0xb4,0x7f,0xe9,0x95,0xb1,0xef,0x91,0xdd,0xed,0xf7,0x73,0x18,0xf1,
0xfb,0xbc,0x6a,0xfd,0x26,0x7d,0x65,0xc7,0x43,0xda,0xb7,0xf5,0x3e,0xed,0x7d,0xe6,
0x5e,0xf6,0x64,0xc6,0x8a,0x22,0xfc,0x1,0x23,0xf0,0xe8,0x4f,0x1e,0xd7,0xe6,0xb3,
0xd7,0xea,0xd1,0x1b,0xbf,0x3e,0x92,0x8a,0xd0,0x57,0x76,0x3c,0xa4,0x17,0xce,0x9f,
0x5e,0x95,0xff,0xb8,0x2f,0x2c,0x9e,0xd3,0xbe,0x67,0xef,0x5f,0xe9,0x97,0x31,0x11,
0x56,0xe3,0xf7,0xb7,0x92,0xf6,0x6c,0xd9,0xdd,0xf3,0x62,0xe9,0x6e,0x8f,0xec,0x3d,
0x5b,0x76,0xf7,0xbc,0x24,0xd2,0xe1,0xb3,0x47,0x56,0x4d,0x45,0xb6,0x2a,0xe4,0x5e,
0xb5,0x7e,0x93,0x1e,0xb9,0xf1,0x6b,0x7a,0xf2,0xec,0x51,0xed,0x7b,0xf6,0x7e,0x7e,
0x47,0xb0,0x22,0x98,0xf3,0x87,0xa9,0x76,0x7c,0xe1,0xe4,0xc8,0x8e,0xb5,0xb0,0x78,
0x4e,0x3b,0xf,0xdd,0xaa,0xbf,0xfc,0xd1,0x17,0x46,0x72,0xbc,0x47,0x6f,0xfa,0xfa,
0x50,0x73,0xa0,0x80,0xd5,0x66,0xdf,0xd6,0xfb,0xfa,0x7e,0xce,0x55,0xeb,0x37,0xd,
0xf4,0xbc,0x95,0xb4,0x79,0xfd,0x26,0xdd,0x7e,0xc5,0xdb,0x3b,0x3e,0xe6,0xe6,0x8d,
0x37,0xea,0x5f,0x6e,0xf9,0x47,0x3a,0xfd,0xb1,0x22,0x8,0x7f,0x98,0x6a,0xe3,0x18,
0x4e,0xda,0xfb,0xf4,0xbd,0x7a,0xcf,0x53,0x77,0xe,0x7d,0x9c,0xb9,0x99,0x57,0xe9,
0xf0,0x2d,0xdf,0x26,0x0,0x62,0x4d,0xe8,0xa7,0xea,0xe7,0x3b,0xbe,0x70,0x52,0x7b,
0x9e,0x7a,0xdf,0x18,0x5e,0xd1,0xf8,0xec,0xbd,0xe6,0xee,0x9e,0x1f,0x7b,0xc7,0x96,
0xdd,0x6c,0xfb,0x88,0x65,0x47,0xf8,0x3,0xc6,0xe0,0xc0,0xa9,0x83,0xba,0xe1,0x9f,
0x7e,0x63,0xe8,0x6e,0xe0,0xb9,0x99,0x57,0x51,0x19,0xc0,0xc4,0x9b,0x9f,0x9d,0xd3,
0xfe,0x37,0xfc,0x79,0xdf,0xcf,0x3b,0xbe,0x70,0x52,0x3b,0xf,0xdd,0xda,0xf3,0x7f,
0xa4,0xad,0x86,0x21,0xd4,0xf9,0xd9,0xb9,0xae,0xbb,0x8c,0xc4,0xdc,0xb6,0x8f,0x74,
0xfb,0x63,0xb9,0x10,0xfe,0x80,0x31,0x71,0xeb,0x2,0xe,0x1b,0x0,0x5f,0x3f,0x7f,
0xbd,0xf6,0xdf,0xf0,0xe0,0x88,0x5e,0x15,0xb0,0xfc,0xf6,0x5e,0x7d,0x77,0xdf,0xcd,
0x50,0xfd,0x6,0xbf,0xd5,0x62,0x90,0xf7,0xea,0xb8,0x6d,0x1f,0x81,0x71,0x23,0xfc,
0x1,0x63,0x74,0xec,0xe5,0x13,0xda,0xfc,0xad,0x6b,0x87,0x9a,0x5b,0x78,0x7c,0xe1,
0xa4,0xf6,0x3e,0x33,0xb9,0xfb,0xad,0x62,0xba,0xf9,0x4b,0x9e,0xf4,0x2c,0xbf,0x7a,
0xec,0x0,0x0,0x17,0xe3,0x49,0x44,0x41,0x54,0xea,0xdc,0xd2,0x2b,0x13,0x19,0xfc,
0xe6,0x67,0xe7,0xfa,0x1a,0xf2,0x8d,0x1d,0x5f,0x38,0x39,0xf0,0x62,0xd5,0x40,0x3f,
0x8,0x7f,0xc0,0x98,0xb9,0x46,0x90,0x41,0x2,0xe0,0xa4,0x56,0x3f,0x0,0x67,0x90,
0xaa,0xf5,0xbe,0x67,0xef,0x9f,0xc8,0xdf,0xf9,0xfd,0x37,0x3c,0x38,0x70,0xd5,0x8f,
0xbf,0xeb,0x58,0x4e,0x84,0x3f,0x60,0x19,0xc,0x12,0x0,0xf9,0xc7,0x0,0x93,0x6e,
0xef,0x35,0x77,0xf7,0xbd,0xf4,0xca,0x93,0x67,0x8f,0xe,0xbc,0xf8,0xf2,0x4a,0xce,
0xf9,0xdb,0xbe,0x61,0x9b,0xee,0xd8,0xb2,0x7b,0xa0,0xe7,0xf2,0x77,0x1d,0xcb,0x8d,
0xf0,0x7,0xf4,0x68,0xd8,0xa6,0x8b,0x7e,0x2,0xe0,0xc3,0xa7,0xe,0x6a,0xfb,0x77,
0xde,0xc4,0x3f,0x6,0x98,0x58,0xdb,0x37,0x6c,0xeb,0x7b,0x89,0x96,0x73,0x4b,0xaf,
0x4c,0x5c,0x67,0xaf,0x33,0xe8,0xbc,0x5c,0xfe,0xae,0x63,0x25,0x10,0xfe,0x30,0xd5,
0xfa,0x59,0x46,0xa5,0x97,0x2d,0xbf,0xba,0x71,0x1,0xf0,0xe1,0xe,0xbb,0x77,0x3c,
0x7c,0xea,0xa0,0xf6,0x8c,0x60,0xa9,0x18,0x60,0x25,0x1d,0xd8,0xf1,0x50,0xdf,0x43,
0xa0,0x7b,0x9e,0x7a,0xdf,0x58,0x77,0xdd,0xf0,0x3d,0x79,0xf6,0xe8,0xc8,0x8e,0xb5,
0xeb,0xca,0xdb,0x6,0x5a,0x5c,0xfa,0x9b,0x67,0x9e,0xe0,0xef,0x3a,0x56,0x4,0x3b,
0x7c,0x60,0xaa,0x8d,0x62,0x3b,0xb6,0x7e,0x2d,0x2c,0x9e,0x2b,0xfe,0xf,0x3f,0x1e,
0x26,0x7a,0xcf,0x53,0x77,0xae,0xda,0x6d,0xdd,0x80,0x5e,0xed,0x7f,0xc3,0x83,0x7a,
0xfd,0xfc,0xf5,0x7d,0x3d,0xe7,0xe1,0x53,0x7,0x27,0x72,0xcb,0xb3,0xf9,0xd9,0x39,
0x1d,0xd8,0xf1,0xa5,0x81,0x9e,0xbb,0xf7,0xe9,0xf,0x8d,0xf8,0xd5,0x0,0xbd,0xa1,
0xf2,0x7,0xac,0x90,0x3d,0x4f,0xdd,0xa9,0x6f,0x9e,0x79,0xa2,0xb8,0x4e,0xf0,0xc3,
0x5a,0xb0,0xeb,0xca,0xdb,0x74,0xcf,0xd5,0x77,0xf5,0xf5,0x9c,0x49,0xee,0x68,0x1f,
0x74,0x4f,0xef,0x87,0x4f,0x1d,0x5c,0xb6,0x2a,0x27,0x10,0x23,0xfc,0x1,0x2b,0x68,
0xcf,0x53,0xef,0xd3,0x37,0xcf,0x3c,0xa1,0x1b,0xfe,0xe9,0x37,0x8,0x7e,0x98,0x78,
0xdb,0x37,0x6c,0x1b,0xa8,0xa,0xb6,0xe7,0xa9,0x3b,0x27,0x72,0xce,0xdb,0xae,0x2b,
0x6f,0xeb,0xba,0x8d,0x5b,0xca,0xb9,0xa5,0x57,0x26,0x36,0xec,0x62,0x6d,0x60,0xd8,
0x17,0x58,0x41,0xb,0x8b,0xe7,0xb4,0xeb,0xc8,0x3b,0x57,0xfa,0x65,0x0,0x43,0x6b,
0xe,0x7f,0xf6,0x3f,0xcf,0xef,0x3,0xcf,0x7c,0x58,0xc7,0x5e,0x9e,0xbc,0xb5,0xed,
0x36,0xaf,0xdf,0x34,0xf0,0x70,0xef,0xa4,0x2e,0x65,0x83,0xb5,0x83,0xca,0x1f,0x0,
0x60,0x68,0x87,0x6f,0xf9,0x76,0xdf,0xf3,0xfc,0xbe,0x79,0xe6,0x89,0x81,0x97,0x75,
0x59,0x69,0x8f,0xde,0xf4,0xf5,0x81,0x86,0x7b,0x8f,0x2f,0x9c,0x9c,0xd8,0xf7,0x8c,
0xb5,0x83,0xf0,0x7,0x0,0x18,0xca,0x81,0x1d,0xf,0xf5,0x1d,0xfc,0x5e,0x3c,0x7f,
0x7a,0xe4,0xcb,0xba,0xf4,0xb3,0x1c,0xd3,0x30,0x4b,0x37,0xd,0xd2,0xd0,0xe2,0xd0,
0xdd,0x8b,0xd5,0x80,0xf0,0x7,0x0,0x18,0xd8,0x81,0x1d,0xf,0xd,0xb4,0xb8,0xf1,
0xae,0xa3,0x7f,0x30,0xf2,0xa1,0xcf,0x7e,0x96,0x63,0x1a,0x38,0xbc,0x6d,0xd9,0xdd,
0x77,0x43,0x8b,0xf3,0xf1,0x67,0x1f,0x98,0xc8,0x21,0x6e,0xac,0x3d,0x84,0x3f,0x0,
0xc0,0x40,0x6,0xd,0x7e,0x93,0x3a,0xcf,0x6f,0xfb,0x86,0x6d,0xfa,0xca,0x8e,0x87,
0x6,0x7a,0xee,0xf1,0x85,0x93,0xda,0xf7,0xec,0xfd,0x23,0x7e,0x45,0xc0,0x60,0x8,
0x7f,0x0,0x80,0xbe,0xd,0x1a,0xfc,0x1e,0x3e,0x75,0x70,0x22,0xe7,0xbc,0x6d,0xdf,
0xb0,0x4d,0x87,0x6f,0xf9,0xf6,0x40,0xcf,0x3d,0xb7,0xf4,0xa,0x8d,0x5d,0x58,0x55,
0xe8,0xf6,0xc5,0xd4,0xda,0xbc,0x7e,0xd3,0x4a,0xbf,0x4,0x60,0xe2,0xcc,0xcf,0xce,
0xd,0xd4,0xdc,0x21,0x8d,0x7f,0x3d,0xbf,0x71,0xfd,0x9d,0x9e,0x9f,0x9d,0xd3,0xa3,
0x37,0x7e,0x6d,0xe0,0x45,0xe1,0xf7,0x3e,0xfd,0x21,0xd6,0xf4,0xc3,0xaa,0x42,0xe5,
0xf,0x53,0x6b,0xf3,0xfa,0xab,0x56,0xfa,0x25,0x0,0x13,0x65,0xfb,0x86,0x6d,0x3a,
0xf6,0x9b,0xdf,0x1d,0x28,0xf8,0xb9,0xea,0xd7,0x38,0x97,0x38,0xe9,0xf7,0xef,0x74,
0x2f,0xdb,0x3b,0xba,0xb0,0x7b,0xd5,0x80,0xc1,0xf2,0xe1,0x53,0x7,0x59,0xc3,0x13,
0xab,0xe,0xe1,0xf,0x0,0xd0,0xd5,0x9e,0x2d,0xbb,0x87,0xa,0x41,0x3b,0xf,0xdd,
0xba,0xea,0xaa,0x5f,0xf3,0x33,0x9d,0x3b,0x7e,0x87,0xa9,0x72,0x4a,0x93,0xbd,0x73,
0x9,0xd6,0x36,0x86,0x7d,0x1,0x0,0x95,0xe6,0x67,0xe7,0xb4,0xff,0x86,0x7,0x7,
0x9a,0xdf,0xe7,0xbc,0xe7,0xa9,0x3b,0x97,0xa5,0xc1,0x63,0x98,0xe5,0x5b,0x52,0xc7,
0x1a,0x26,0xf8,0x2d,0x47,0xa5,0x13,0x18,0x14,0xe1,0xf,0xe8,0x51,0x2f,0x43,0x44,
0xc0,0x5a,0xd2,0xdc,0xae,0xad,0xff,0x35,0xfc,0x7c,0xcb,0xb9,0x67,0x75,0x3f,0x4b,
0xbd,0x74,0x32,0x6c,0xf0,0x93,0xa4,0x5d,0x47,0xde,0xb9,0xea,0x2a,0x9d,0x80,0xc3,
0xb0,0x2f,0xd0,0xa3,0x41,0x27,0x7b,0x3,0x93,0x68,0xef,0x35,0x77,0xf,0x1d,0x80,
0x96,0x33,0xf8,0xd,0x62,0xe7,0xc6,0x9b,0x4a,0xb7,0x6d,0x5e,0xbf,0x69,0x24,0xef,
0xfb,0xf0,0xd9,0x23,0xc3,0xbc,0x34,0x60,0xac,0xa8,0xfc,0x1,0x0,0x2,0x3b,0x37,
0xde,0xa4,0x7d,0x5b,0xef,0x1b,0xea,0x3f,0x78,0x56,0x7b,0xf0,0x4b,0x71,0xcb,0xb9,
0xc,0xf3,0xbe,0x69,0xf0,0xc0,0x24,0xa0,0xf2,0x7,0x0,0x8,0x1c,0x3e,0x7b,0x44,
0x9b,0xbf,0x75,0xad,0xfe,0xf2,0x47,0x5f,0x18,0xe8,0xf9,0x2b,0x15,0xfc,0x86,0x59,
0xea,0x65,0xd7,0x95,0xb7,0x8d,0x24,0xf8,0xb1,0x7d,0x1b,0x26,0x1,0xe1,0xf,0x0,
0x50,0xb2,0xb0,0x78,0x4e,0x7b,0x9f,0xbe,0x57,0x5b,0xbe,0x75,0x9d,0x1e,0xee,0x31,
0xc8,0x9d,0x5b,0x7a,0x65,0x45,0x2b,0x7e,0xfd,0x76,0x22,0xbb,0x6,0x91,0x7d,0x5b,
0xef,0xd3,0x23,0x43,0xac,0xe3,0x27,0x35,0x3b,0x7b,0x9,0x7e,0x98,0x14,0x84,0x3f,
0x0,0x40,0xa5,0x17,0xce,0x9f,0xd6,0x9e,0xa7,0xee,0xd4,0x96,0x6f,0x5d,0xa7,0x27,
0xcf,0x1e,0xad,0x7c,0xdc,0xb9,0xa5,0x57,0xb4,0xf3,0xd0,0xad,0x13,0x35,0xe4,0xb9,
0x73,0xe3,0x4d,0x7a,0xf4,0xa6,0xaf,0xeb,0x63,0x5b,0x3f,0x32,0xd4,0x71,0x8e,0x2f,
0x9c,0xd4,0xce,0x43,0xb7,0x8e,0xe8,0x55,0x1,0xe3,0x47,0xf8,0xc3,0xd4,0xa2,0x7b,
0x17,0xe8,0xdd,0xb,0xe7,0x4f,0x6b,0xe7,0xa1,0x5b,0xf5,0xe6,0x43,0x6f,0xd3,0x8b,
0x51,0x17,0xeb,0xf1,0x85,0x93,0xda,0xfc,0xad,0x6b,0x27,0x6e,0xbf,0xde,0xd7,0xcf,
0x5f,0xaf,0xdb,0xaf,0x78,0xfb,0x50,0xc7,0x70,0xc1,0x8f,0x25,0x5d,0x30,0x49,0x68,
0xf8,0xc0,0xd4,0xea,0xb6,0xc0,0x2b,0x80,0xb2,0xe6,0x7c,0xc0,0xeb,0xb4,0x6f,0xeb,
0x7d,0xda,0x75,0xe5,0x6d,0x7a,0xf4,0x27,0x8f,0x6b,0xdf,0xb3,0xf7,0xaf,0xf4,0xcb,
0x92,0x24,0xbd,0xf9,0xd0,0xdb,0x92,0x1d,0xbc,0xb1,0x3d,0x5b,0x76,0xf,0xbc,0x58,
0xb5,0x8f,0xe0,0x87,0x49,0x45,0xf8,0x3,0x0,0xf4,0x6d,0xdf,0xb3,0xf7,0xaf,0x9a,
0xd0,0xe7,0x1c,0x3e,0x7b,0xa4,0xe3,0x12,0x2b,0x9b,0xd7,0x6f,0xd2,0x81,0x1d,0x5f,
0x22,0xf8,0x61,0xea,0x31,0xec,0xb,0xf4,0x61,0x5c,0x1b,0xc7,0x3,0x18,0x9f,0xf9,
0xd9,0x39,0xed,0xdb,0x7a,0x9f,0x4e,0xfd,0xd6,0x73,0xba,0x79,0xe3,0x8d,0x43,0x1f,
0x8f,0xe0,0x87,0x49,0x47,0xe5,0xf,0xe8,0xc3,0xe6,0xf5,0x57,0xb1,0x6a,0x3f,0x30,
0x21,0xe6,0x67,0xe7,0xb4,0xf7,0xea,0xbb,0xb5,0xf7,0x9a,0xbb,0x47,0xb6,0x48,0xfb,
0xc3,0xa7,0xe,0x6a,0xef,0x33,0xf7,0x12,0xfc,0x30,0xd1,0x8,0x7f,0x0,0x80,0x35,
0x65,0x1c,0xa1,0x4f,0x62,0x1d,0x3f,0xac,0x1d,0x84,0x3f,0x0,0xc0,0x9a,0xb0,0x7d,
0xc3,0x36,0xed,0xbd,0xfa,0x2e,0xdd,0xb1,0x65,0xf7,0xc8,0x8f,0xfd,0x81,0x67,0x3e,
0xac,0xfd,0xcf,0x7f,0x7e,0xe4,0xc7,0x5,0x56,0x2,0xe1,0xf,0x0,0x30,0xb1,0x36,
0xaf,0xdf,0xa4,0x5d,0x57,0xfe,0x96,0xf6,0x5e,0x7d,0xd7,0x48,0x1a,0x39,0x62,0xe7,
0x96,0x5e,0xd1,0xde,0xa7,0x3f,0x34,0x51,0xeb,0x17,0x2,0xdd,0x10,0xfe,0x0,0x0,
0x13,0x65,0xe7,0xc6,0x9b,0xb4,0xeb,0xca,0xdb,0xb4,0xeb,0x8a,0xdb,0xc6,0x12,0xf8,
0x1c,0xb7,0x70,0xf5,0xa4,0xad,0x5f,0x8,0x74,0x43,0xf8,0xc3,0xd4,0xea,0x65,0x3d,
0x30,0x0,0x2b,0x6b,0x7e,0x76,0x4e,0xdb,0xe7,0xb7,0x69,0xe7,0xc6,0x9b,0xb4,0x73,
0xe3,0x4d,0x23,0xe9,0xd6,0xed,0xc5,0x93,0x67,0x8f,0x6a,0xd7,0xd1,0x77,0xd2,0xd8,
0x81,0x35,0x89,0xf0,0x7,0x0,0x58,0x71,0x9b,0xd7,0x6f,0xd2,0xe6,0xf5,0x57,0x15,
0xe7,0x3b,0x37,0xde,0xa4,0xcd,0xeb,0x37,0x8d,0xb5,0xb2,0x57,0xe5,0xe3,0xcf,0x3e,
0xb0,0xea,0xd6,0x30,0x4,0x46,0x89,0xf0,0x7,0xf4,0x61,0xfb,0x86,0x6d,0x1d,0x17,
0x91,0x5,0xa6,0xc5,0xfc,0xec,0x9c,0xe,0xec,0xf8,0x92,0xe6,0x67,0xe6,0xfa,0xfe,
0x3b,0xe1,0x2,0x9e,0xd4,0xfc,0x3b,0x35,0xca,0x8e,0xdc,0x61,0x1c,0x5f,0x38,0xa9,
0x3d,0x4f,0xdd,0xc9,0x30,0x2f,0xd6,0x3c,0xc2,0x1f,0xd0,0x7,0xb6,0x84,0x3,0x9a,
0x76,0x5d,0x71,0x5b,0xb1,0x2f,0xee,0x72,0xd,0xc5,0x8e,0x13,0xd5,0x3e,0x4c,0x13,
0x76,0xf8,0x0,0x0,0xf4,0xed,0xc0,0xa9,0x83,0x7a,0xf2,0xec,0xd1,0x95,0x7e,0x19,
0x43,0x7b,0xf2,0xec,0x51,0x6d,0xf9,0xd6,0x75,0x4,0x3f,0x4c,0x15,0xc2,0x1f,0x0,
0x60,0x20,0x7b,0x9e,0x7a,0xdf,0x4a,0xbf,0x84,0x81,0x1d,0x5f,0x38,0xa9,0x37,0x1f,
0x7a,0x9b,0x76,0x1e,0xba,0x95,0x5d,0x7b,0x30,0x75,0x8,0x7f,0x0,0x80,0x81,0xbc,
0x70,0xfe,0xb4,0x3e,0xfe,0xec,0x3,0x2b,0xfd,0x32,0xfa,0xf2,0xe2,0xf9,0xd3,0x7a,
0xcf,0x53,0x77,0x6a,0xfb,0x77,0xde,0xc4,0xfc,0x5d,0x4c,0x2d,0xc2,0x1f,0xa6,0xd6,
0xf6,0xd,0xdb,0x56,0xfa,0x25,0x0,0x13,0x6f,0xdf,0xb3,0xf7,0xeb,0xc5,0x9,0xa8,
0x9c,0x3d,0x79,0xf6,0xa8,0x7e,0xe7,0xe8,0x1f,0x68,0xf3,0xb7,0xae,0x63,0xc1,0x66,
0x4c,0x3d,0x1a,0x3e,0x30,0xb5,0x6,0xe9,0x30,0x9c,0x9f,0xa5,0xe1,0x3,0x88,0xed,
0x79,0xea,0x4e,0xfd,0xcb,0x2d,0xff,0xb8,0xd2,0x2f,0x23,0xe9,0xe1,0x53,0x7,0x75,
0xe0,0xd4,0x41,0xaa,0x7c,0x80,0x87,0xf0,0x7,0xf4,0x61,0xfb,0x3c,0xd5,0x42,0x20,
0x76,0xf8,0xec,0x11,0x7d,0xf3,0xcc,0x13,0x45,0xf7,0xef,0x4a,0x3b,0xbe,0x70,0x52,
0x7,0x4e,0x1d,0xd4,0x81,0x53,0x5f,0x65,0x91,0x66,0x20,0x81,0xf0,0x7,0x0,0x18,
0xda,0xde,0xa7,0x3f,0xb4,0xa2,0xe1,0xef,0xc5,0xf3,0xa7,0xf5,0xe8,0x99,0xc7,0x75,
0xe0,0xd4,0x41,0xd6,0xe9,0x3,0xba,0x20,0xfc,0x1,0x0,0x86,0xf6,0xc2,0xf9,0xd3,
0x7a,0xf8,0xd4,0x41,0xdd,0xb1,0x65,0xf7,0xb2,0xfd,0x4c,0x57,0xe1,0x3b,0x7c,0xf6,
0x8,0x81,0xf,0xe8,0x3,0xe1,0xf,0x53,0x69,0xd0,0x66,0xf,0xe6,0xfc,0x1,0xd5,
0xe,0x8c,0x39,0xfc,0x1d,0x5f,0x38,0xa9,0xc3,0x67,0x8f,0x14,0x27,0x86,0x74,0x81,
0xc1,0x10,0xfe,0x80,0x3e,0xb8,0x2d,0xa9,0x0,0x94,0x1d,0x3e,0x7b,0x44,0x2f,0x9e,
0x3f,0x3d,0x92,0xfd,0x78,0xcf,0x2d,0xbd,0xa2,0x63,0x2f,0x9f,0x68,0x56,0xf5,0x16,
0x4e,0x10,0xf6,0x80,0x11,0x22,0xfc,0x61,0x2a,0x1d,0x7b,0xf9,0x84,0x3e,0xfe,0xec,
0x3,0xda,0xb9,0xf1,0xa6,0xbe,0x9e,0xb7,0xf7,0x99,0x7b,0xc7,0xf4,0x8a,0x80,0xb5,
0xe1,0xc0,0xa9,0x83,0xfa,0xd8,0xd6,0x8f,0xf4,0xfc,0x78,0xb7,0x4b,0xc8,0xb1,0x85,
0x13,0x7a,0xe1,0xfc,0x69,0x1d,0x7b,0xf9,0x84,0x8e,0x2d,0x9c,0x20,0xe8,0x1,0x63,
0x94,0x7d,0xe8,0xd8,0x9f,0x59,0x6b,0xad,0xac,0x24,0x2b,0x2b,0x63,0x8d,0xac,0xac,
0x72,0x9b,0xcb,0x5a,0x2b,0x23,0xa3,0xdc,0xe6,0xca,0x6d,0x2e,0x63,0x8d,0x1a,0x26,
0x2f,0xae,0x37,0x6c,0x43,0x4b,0x66,0xa9,0x75,0xde,0xbc,0xbc,0x68,0x16,0xb5,0xd8,
0x3a,0xbf,0x64,0x2e,0x69,0xd1,0x2c,0xea,0x62,0x7e,0x49,0x97,0xcc,0x25,0x5d,0xcc,
0x2f,0xea,0x52,0xbe,0xd8,0x3c,0xb6,0xec,0x4a,0xbf,0x77,0x0,0xc0,0x18,0xcc,0xcf,
0xce,0x75,0xec,0x8c,0x27,0xdc,0x1,0x92,0xac,0x24,0x23,0x69,0xc9,0x4a,0x17,0x25,
0xfd,0xc2,0xb6,0x4e,0xad,0xcb,0x17,0x5a,0x97,0x2f,0xb4,0x6e,0xbf,0xd0,0xba,0x7c,
0xc9,0x4a,0x4b,0xad,0xe7,0xf,0xe6,0x28,0x95,0x3f,0x0,0xc0,0x48,0x2d,0x2c,0x9e,
0x63,0x5d,0x3d,0x60,0x15,0x63,0x87,0xf,0x0,0x0,0x80,0x29,0x42,0xf8,0x3,0x0,
0x0,0x98,0x22,0x84,0x3f,0x0,0x0,0x80,0x29,0xd2,0x57,0xf8,0xb3,0xb6,0xf3,0xec,
0x42,0x9a,0x38,0x0,0x0,0x0,0x56,0x37,0x2a,0x7f,0x0,0x0,0x0,0x53,0xa4,0xaf,
0xf0,0x97,0x65,0x59,0xe7,0xfb,0xd5,0xf9,0x7e,0x0,0x0,0x0,0xac,0xac,0x91,0xe,
0xfb,0x2,0x0,0x0,0x60,0x75,0x1b,0xe9,0xb0,0x2f,0x73,0xfe,0x0,0x0,0x0,0xc6,
0x68,0x4,0x51,0x8b,0x39,0x7f,0x0,0x0,0x0,0x53,0x84,0xf0,0x7,0x0,0x0,0x30,
0x45,0x8a,0xf0,0x97,0x1a,0xb2,0x65,0x18,0x17,0x0,0x0,0x60,0x5,0x8d,0x21,0x8a,
0x5,0x95,0x3f,0xd7,0xd0,0xe1,0x37,0x76,0x74,0x6a,0xf2,0x20,0x1c,0x2,0x0,0x0,
0x4c,0x96,0xd2,0xb0,0x2f,0x81,0xe,0x0,0x0,0x60,0x15,0x1a,0x51,0x44,0xab,0xd,
0x7a,0x2c,0x42,0x22,0x0,0x0,0xc0,0x90,0x56,0x20,0x4e,0xd5,0x46,0xb1,0x76,0x1f,
0x31,0x10,0x0,0x0,0x60,0x40,0xd6,0x3b,0xf9,0xb7,0x75,0xbb,0x3c,0xa0,0x70,0xce,
0x5f,0xeb,0x88,0xa5,0xf3,0x11,0x2e,0xee,0xdc,0x6d,0x97,0x10,0x0,0x0,0x0,0x68,
0xe4,0xa1,0xcf,0xa9,0x35,0x83,0xe6,0xe8,0x9a,0x3a,0xe2,0xe0,0x8,0x0,0x0,0x80,
0x3e,0xf8,0x55,0xc0,0xe2,0x7c,0x74,0xb9,0xaa,0xbd,0xd4,0x4b,0x74,0xd0,0x4e,0xd7,
0x53,0x15,0xc1,0x5e,0xc2,0x1e,0x7b,0xff,0x2,0x0,0x0,0x44,0x52,0x61,0x4f,0x6a,
0x7,0xbe,0xd4,0x7d,0x43,0xa8,0xf9,0xa1,0xcd,0xca,0xca,0x5a,0xab,0xd2,0x6d,0x5e,
0x35,0xaf,0x97,0xca,0x1e,0x55,0x3f,0x0,0x0,0x80,0x1,0xc4,0x73,0xff,0xc6,0xa0,
0x72,0x91,0xe7,0x6e,0xd7,0xfd,0xdb,0x47,0x39,0x27,0x10,0x0,0x0,0x60,0x2a,0xa5,
0xe2,0x54,0x3c,0xef,0x6f,0x54,0xd,0x1f,0x7e,0xb5,0x2f,0xa8,0xfa,0xd9,0xf0,0x36,
0x37,0x3f,0x90,0xc0,0x7,0x0,0x0,0x30,0x46,0xf1,0x50,0xf0,0x48,0x1b,0x3e,0xfc,
0xe0,0x67,0xdb,0xc1,0xce,0x1f,0xe2,0x75,0xf7,0x75,0x7c,0x8d,0x84,0x41,0x0,0x0,
0x80,0xfe,0xa4,0x3a,0x7a,0x6d,0x87,0x53,0xfc,0x9c,0x1,0xd4,0x52,0xf3,0xf8,0xaa,
0x42,0x9f,0xb5,0xb6,0x38,0xb9,0xc7,0xc5,0xf3,0x3,0x53,0x68,0xf4,0x0,0x0,0x0,
0x68,0x29,0x75,0xf2,0x7a,0x97,0x8d,0xed,0xbc,0xc6,0xdf,0x28,0x86,0x7d,0x2b,0xab,
0x7e,0x5e,0xf5,0x6f,0xa4,0xeb,0xfc,0x11,0x4,0x1,0x0,0x0,0xda,0xaa,0x16,0x79,
0xf6,0x4f,0x66,0x74,0x3f,0xae,0x72,0xce,0x5f,0xdc,0xe1,0x9b,0x6a,0x0,0xa9,0x1a,
0x22,0xae,0xe2,0x7,0x3f,0x42,0x20,0x0,0x0,0x98,0x6a,0x55,0xbb,0x7a,0x4,0xc1,
0xcf,0xa6,0x2b,0x84,0x43,0xa8,0xc5,0x15,0xbe,0xf8,0x5c,0x72,0xe1,0x30,0xc,0x82,
0xa9,0xb0,0xd7,0x6b,0x85,0x90,0x5d,0x3e,0x0,0x0,0xc0,0x54,0x4a,0xe,0xf9,0x7a,
0x1,0xcf,0xc4,0xf7,0xa9,0x5d,0xf9,0x1b,0xd1,0x48,0x6c,0x2d,0xe,0x7e,0xcd,0x9f,
0xe5,0x55,0xfd,0x82,0x0,0x18,0x6,0xbf,0xb8,0x1b,0x38,0xbe,0xec,0xa3,0xd2,0x7,
0x0,0x0,0xd0,0x92,0xea,0xe6,0xf5,0x77,0xf3,0x30,0x8a,0x82,0x9f,0x46,0x52,0xf5,
0x93,0x5c,0xf8,0xf3,0x82,0x9d,0xb1,0x26,0x38,0x8f,0xc3,0x5e,0xaa,0xe9,0xa3,0xfd,
0x3e,0x18,0xfa,0x5,0x0,0x0,0x48,0x8a,0x63,0x52,0x1c,0x0,0x8d,0xc2,0xa0,0x57,
0xd5,0xed,0x3b,0xa4,0xae,0xc3,0xbe,0xf1,0x90,0x6f,0xf8,0x9a,0x5b,0xf7,0x25,0x96,
0x8b,0xe9,0x84,0xd0,0x7,0x0,0x0,0xa6,0x96,0xf5,0x2e,0xc4,0x95,0xbd,0x78,0xa8,
0xd7,0xd,0xf7,0xfa,0xc3,0xc1,0x43,0xaa,0x9b,0x56,0xfb,0x48,0x51,0xe9,0xb3,0x56,
0x46,0xa6,0x79,0xee,0xdf,0x16,0x55,0x2,0xe3,0x4e,0x60,0xd6,0xf9,0x3,0x0,0x0,
0xa8,0x90,0xea,0xe4,0xd,0x42,0x9f,0x8d,0x42,0x5f,0x7c,0x3d,0x71,0x9c,0x1,0xd5,
0xe3,0xca,0x9f,0xb,0x7e,0xed,0x61,0xe0,0xb0,0xaa,0x17,0x84,0xc0,0xe,0x43,0xbf,
0xbd,0xc,0x1,0x4b,0xcd,0x2a,0x60,0xaf,0x8f,0x5,0x0,0x0,0x58,0x13,0xe2,0xf9,
0x7e,0xa6,0xcb,0x69,0x84,0xcb,0xbd,0xa4,0x2b,0x7f,0xd6,0x78,0xaf,0xa7,0x79,0xdd,
0xc8,0x94,0xe6,0xfe,0x49,0xed,0xa6,0x90,0x54,0x23,0x88,0x2f,0x53,0x56,0x74,0xf9,
0x32,0xec,0xb,0x0,0x0,0xa6,0x46,0xa7,0xe5,0x5c,0x82,0x80,0x67,0xa3,0xd0,0x67,
0xc3,0xfb,0x46,0xa4,0x5c,0xf9,0x2b,0x1a,0x3e,0xc2,0x6,0x10,0x77,0x9f,0xb,0x81,
0xa9,0x65,0x5f,0xe2,0xd0,0x97,0xc,0x81,0x59,0x26,0xd9,0xe6,0x39,0x43,0xc5,0x0,
0x0,0x60,0xaa,0xf8,0xc3,0xbd,0xa9,0xca,0x5e,0xa7,0xd3,0x68,0x9c,0xb,0x2b,0x7f,
0x45,0xe0,0x2b,0x77,0xfe,0x16,0xa1,0xcf,0x85,0x40,0x6b,0x9a,0x8f,0x8b,0xb6,0x7a,
0x1b,0x64,0x2e,0x20,0x43,0xbf,0x0,0x0,0x60,0x4d,0xf2,0xe3,0x8d,0x1f,0xe0,0xdc,
0x9c,0x3e,0x57,0xdd,0xcb,0x5b,0x27,0xbf,0xda,0x97,0x4b,0xca,0x6d,0xf3,0x7c,0x94,
0xdd,0xbe,0xc6,0x9a,0x9f,0xe7,0x26,0x6f,0xcd,0xf7,0xeb,0x10,0xfc,0x12,0x95,0xbf,
0xe6,0x7b,0xa,0xc3,0x5e,0x8a,0x3f,0xdc,0xeb,0x86,0x7c,0x19,0xfa,0x5,0x0,0x0,
0x6b,0x5a,0x6a,0xb8,0xb7,0x5b,0xa5,0xcf,0x5,0x40,0x17,0x6,0x73,0x8d,0xba,0xf2,
0xf7,0x52,0xcd,0x5a,0xfb,0x33,0x23,0xab,0xdc,0x55,0xf3,0x54,0x3e,0x2f,0x1a,0x41,
0x82,0xa1,0x61,0x95,0xbb,0x82,0x65,0x8b,0x21,0xe9,0x78,0x69,0x98,0x20,0x0,0xba,
0xcb,0x19,0x6b,0xfe,0x1,0x0,0x80,0x35,0xa8,0xe3,0x9a,0x7e,0x89,0xb9,0x7d,0x7e,
0xc8,0x6b,0xa8,0x5d,0xf1,0x73,0xd5,0xbf,0xd1,0x79,0xa9,0x96,0x5b,0xf3,0x92,0xb,
0x77,0x6e,0x38,0x37,0xb7,0x79,0xf2,0x3c,0x1e,0xfe,0x8d,0x77,0x5,0xe9,0xb6,0xcf,
0x2f,0xd,0x1f,0x0,0x0,0x60,0xea,0x54,0x2d,0xe4,0xec,0x2,0x9f,0xab,0xf6,0x35,
0xd4,0x3c,0x8d,0x71,0xc8,0x57,0xd2,0xcf,0x6a,0x46,0xe6,0xc7,0xa5,0x90,0x97,0xa8,
0xfe,0x5,0xe7,0xd6,0x86,0x81,0xd0,0x9b,0x2f,0x28,0xf5,0x3e,0xcf,0xaf,0x97,0xdb,
0x0,0x0,0x0,0x26,0x4a,0xa7,0x35,0xfd,0xdc,0x5c,0xbf,0x78,0x78,0xd7,0x55,0xfb,
0x5c,0xe5,0xcf,0x9d,0x5c,0x40,0x1c,0x9d,0xd3,0x75,0x63,0xcd,0xe9,0xd4,0x1a,0x7f,
0xf1,0x36,0x6f,0x7e,0x17,0x70,0x55,0xc7,0x6f,0xdc,0x1d,0x5c,0x35,0x1f,0xd0,0x9f,
0xf7,0x47,0xa3,0x7,0x0,0x0,0x58,0x33,0x52,0xc1,0xcf,0x1f,0xee,0xf5,0xab,0x7f,
0x79,0xe2,0xd4,0xb0,0x5e,0x18,0xd4,0xa8,0x87,0x7c,0x25,0xe9,0xc7,0x75,0x63,0xcd,
0xf3,0x71,0xe8,0x93,0xbc,0xf9,0x7c,0xc5,0x79,0x3b,0x20,0xc6,0xc3,0xc3,0xed,0xea,
0x5f,0xf7,0x45,0x9e,0xb3,0x4c,0xc1,0x7,0x13,0x2f,0xf9,0x42,0x20,0x4,0x0,0x0,
0x13,0x29,0x35,0xcf,0xcf,0x9d,0xc7,0x4d,0x1d,0x6e,0x48,0xb7,0x61,0xc3,0xc0,0xd7,
0x90,0xb4,0x64,0x9b,0xf7,0x37,0x34,0xea,0x21,0x5f,0x49,0x7a,0xbe,0x9e,0xdb,0xfc,
0x58,0xa7,0xd0,0x57,0xb5,0xf4,0x8b,0x3f,0x44,0xdc,0xb9,0xfa,0x7,0x0,0x0,0xb0,
0xc6,0xc5,0x81,0xc7,0x78,0xe7,0xf1,0x82,0xcd,0x2e,0x0,0xfa,0xc3,0xbb,0x4b,0xb6,
0x75,0x72,0xd7,0xd5,0x1e,0x6,0x1e,0x9d,0x33,0xf6,0xb9,0xc6,0x4b,0xf5,0xdc,0xe6,
0x3f,0xb4,0xb2,0xb9,0x95,0x5d,0xd7,0x4b,0xe8,0x2b,0x96,0x7f,0xf1,0xe6,0x0,0x36,
0x83,0x60,0xfb,0xf6,0x4e,0xd5,0xbf,0x62,0xc8,0xb7,0xb5,0xd8,0x33,0xf1,0x10,0x0,
0x0,0x4c,0xb4,0x4e,0xc1,0xcf,0xdf,0xb7,0xb7,0x8,0x7d,0xae,0xb9,0xc3,0xb6,0x83,
0x5e,0x10,0x2,0x5b,0xb7,0xe5,0x23,0x7f,0xa5,0x3f,0x90,0xa4,0x5a,0x6e,0xf3,0xb,
0xc6,0x9a,0x1f,0xe4,0x36,0xf7,0xba,0x7b,0xdd,0x29,0x2f,0xd,0xed,0x16,0x61,0x2f,
0xe,0x7e,0x2a,0x2f,0x4,0x5d,0x15,0x2,0x59,0xe2,0x5,0x0,0x0,0xac,0x9,0xdd,
0x82,0x5f,0x69,0xd1,0x66,0x45,0x55,0x3f,0x2f,0x0,0x16,0xa7,0xd6,0x50,0xb0,0x49,
0x1c,0x7f,0x38,0xdf,0x97,0x9a,0xe1,0x4f,0xb9,0xcd,0x8f,0xe6,0x89,0xd0,0xe7,0x77,
0x1,0x57,0xdd,0x66,0xa2,0x79,0x80,0xc9,0x7d,0x80,0x13,0x4d,0x1f,0x3e,0x3f,0xc,
0x2,0x0,0x0,0xac,0x7a,0xa9,0xb9,0x78,0xa9,0x8a,0x5f,0x1c,0xfc,0xfc,0xaa,0xdf,
0x92,0xa4,0x45,0xb5,0x87,0x7c,0x17,0xbd,0xdb,0x46,0x5f,0xf5,0x93,0xa4,0xa3,0x92,
0x54,0x6b,0x2d,0xf0,0x7c,0x28,0x15,0xf2,0x72,0x9b,0xab,0x61,0x1b,0xc9,0xdb,0x5d,
0x85,0x30,0xac,0x0,0x7a,0xcb,0xbe,0x78,0x3b,0x82,0xa4,0x50,0xf1,0x3,0x0,0x0,
0x13,0x29,0xd5,0xd8,0x91,0xaa,0xf8,0xf9,0xeb,0xf8,0xb9,0x26,0x8f,0xa0,0xca,0x67,
0x9b,0x41,0x6f,0x51,0xd2,0xa5,0xd6,0xf9,0xe2,0xd8,0xaa,0x7e,0x17,0xd4,0xaa,0xfc,
0xd5,0x73,0x9b,0xcb,0x5a,0x7b,0xc8,0xca,0x5e,0x30,0xd6,0x5c,0xd6,0x69,0x99,0x17,
0x7f,0x2e,0xa0,0xb,0x7d,0xc1,0x1c,0x40,0x7f,0x2e,0xa0,0x8c,0xd7,0xd9,0x6c,0x2b,
0x87,0x80,0xdd,0xfd,0xed,0xcf,0x8f,0x39,0x80,0x0,0x0,0x60,0x15,0x4a,0x45,0x14,
0xbf,0x2,0x58,0x2c,0xe0,0x9c,0x6a,0xee,0xb0,0xe5,0x79,0x7d,0xae,0xea,0x77,0xa9,
0x55,0xf5,0xbb,0x64,0xc7,0x59,0xf5,0x3b,0x64,0x9f,0x6b,0x5c,0x90,0xa4,0x7a,0x6e,
0x72,0x59,0xd9,0xb,0x56,0xf6,0x90,0xb1,0xe6,0xed,0xdd,0xd6,0xf8,0xeb,0xd8,0x0,
0xd2,0xa,0x7e,0xcd,0xea,0xa0,0x37,0x34,0xec,0xcd,0x5,0x94,0xba,0x87,0xc1,0xe2,
0xc3,0xac,0x42,0xd1,0x10,0x0,0x0,0x2c,0xa7,0x54,0x2e,0x31,0xde,0x7d,0xc5,0x72,
0x2e,0x51,0x73,0x87,0x1f,0xfc,0xfc,0x6a,0xdf,0xa5,0x56,0xd8,0xbb,0xa8,0x66,0xd5,
0xef,0xa2,0xda,0x95,0xbf,0xd1,0x57,0xfd,0x24,0xe9,0x31,0x77,0xa1,0x59,0xf9,0x6b,
0xfe,0xf9,0x9f,0xc6,0x9a,0xb7,0x77,0xb,0x7c,0xa9,0xd0,0x17,0x77,0x0,0xe7,0xd1,
0xf0,0x6f,0xb0,0xff,0x6f,0xeb,0xcd,0xf8,0x1,0xd0,0xb1,0xb2,0xbd,0xbd,0x59,0xff,
0x31,0x4,0x41,0x0,0x0,0x30,0x2e,0xbd,0x54,0xfb,0xdc,0xb9,0x1f,0xfc,0xdc,0x36,
0x6d,0x7e,0xf0,0x5b,0xb4,0xed,0x80,0xe7,0x2,0xdf,0x45,0xdb,0x3c,0xb9,0xaa,0xdf,
0x78,0x82,0x5f,0x2e,0xe9,0x1b,0xee,0x4a,0x11,0xfe,0x8c,0x35,0x4f,0x84,0x43,0xbf,
0xdd,0x76,0xfa,0x8,0xcf,0x5b,0xc3,0xc7,0x32,0x8a,0xb6,0x7e,0x8b,0xba,0x80,0xdd,
0x9f,0xe6,0x67,0xe7,0x55,0x3,0x7b,0xd,0x7e,0x31,0x82,0x20,0x0,0x0,0x18,0xb5,
0x6e,0xa1,0xcf,0xaf,0xf6,0xc5,0x4b,0xb9,0xa4,0x86,0x7a,0x5d,0xf0,0xbb,0xd4,0xa,
0x7e,0x97,0x6c,0x3b,0xf8,0x5d,0x54,0xf3,0xb4,0x34,0x60,0x16,0xea,0xee,0x9f,0xed,
0x73,0x8d,0x97,0xdc,0x15,0x3f,0xfc,0xbd,0x64,0x65,0xbf,0x61,0xac,0x7d,0x77,0x11,
0xe6,0xe2,0x90,0x17,0xec,0xf8,0x51,0xde,0x1,0xc4,0xf,0x82,0xa5,0x61,0x60,0x93,
0x17,0x15,0xc1,0x78,0xe,0x61,0xf0,0x41,0xfa,0xe7,0x52,0x39,0xd0,0x75,0xa,0x78,
0x4,0x41,0x0,0x0,0x30,0xa8,0xaa,0xe0,0x95,0xa,0x7d,0x45,0xf8,0xf3,0x82,0x5f,
0xb2,0xab,0x57,0x61,0xc5,0xef,0xa2,0xa4,0xb,0x56,0xfa,0x85,0xbb,0xac,0x66,0x0,
0x1c,0xdf,0x70,0xaf,0x24,0xfd,0xb5,0x7f,0xc5,0xb,0x7f,0x56,0x56,0xf6,0xcb,0xc6,
0x9a,0x77,0xa7,0x9a,0x39,0xaa,0xab,0x7e,0xa,0x97,0x78,0x89,0x97,0x7e,0x91,0x69,
0x7,0x3f,0xaf,0xa,0xe8,0xc2,0x64,0xf0,0x81,0x4a,0xdd,0xdf,0xb4,0xbb,0x3f,0x8b,
0xce,0xab,0x1e,0xe7,0x10,0x6,0x1,0x0,0x40,0xac,0x53,0xee,0xe8,0x27,0xf4,0xf9,
0xdb,0xb6,0xb9,0x7d,0x79,0x83,0x8e,0xde,0x56,0xc5,0xef,0x82,0x17,0xfa,0x7e,0x61,
0x5b,0xd7,0x5b,0x9d,0xc1,0xe3,0x9,0x7e,0x3f,0x95,0xf4,0x88,0x7f,0x43,0x3d,0xf,
0x3,0xdd,0xd1,0xdc,0xe6,0xdf,0xb7,0xb2,0xbf,0xee,0x87,0xbe,0xf6,0x90,0x6e,0xb9,
0xca,0x57,0x3d,0xfc,0xeb,0x77,0x0,0xdb,0xa2,0xf1,0xc3,0x55,0x5,0xdb,0xad,0xd0,
0x89,0xf,0xd8,0x97,0x29,0x1d,0xdc,0xdc,0xed,0x9d,0x42,0x9e,0x7f,0x99,0x26,0x62,
0x0,0x0,0x50,0x25,0x35,0xfa,0x18,0x7,0x3e,0xbf,0x68,0x55,0xb5,0x57,0xaf,0x5b,
0xc0,0xd9,0xdf,0xa9,0xc3,0xcd,0xe7,0xbb,0xd8,0xa,0x7b,0x17,0x24,0x9d,0xf7,0xaa,
0x7f,0xd,0x8d,0x33,0xa7,0x7c,0xce,0x3e,0xd7,0x8,0xfa,0x87,0xeb,0xf1,0xf0,0x6e,
0x6e,0xf3,0x4f,0x5a,0x6b,0xbf,0x19,0x57,0xef,0x3a,0x55,0xf9,0x6c,0xb4,0xf4,0x4b,
0xab,0x83,0xb8,0xb4,0x0,0xb4,0xb,0x86,0xc5,0x87,0x93,0xaa,0xfc,0x55,0x49,0xd,
0xff,0x66,0xd1,0x1d,0xdd,0xaa,0x81,0x55,0xc7,0x1a,0xf4,0x31,0x0,0x0,0x60,0xf5,
0xe8,0x35,0x40,0x75,0x1d,0xde,0xb5,0x61,0xe8,0x93,0xc2,0xa2,0x55,0x31,0xbf,0xcf,
0x46,0x73,0xfc,0xd4,0xa5,0xc1,0xa3,0x15,0xfc,0xdc,0xb0,0xef,0x2f,0x34,0xce,0x79,
0x7e,0x52,0xf3,0xa7,0x7d,0x39,0xbe,0x31,0x15,0xfe,0x1e,0x33,0xd6,0x9c,0xb4,0xb2,
0xd7,0xc7,0x4d,0x1c,0x71,0xc8,0x2b,0x5,0xc1,0xe2,0xb2,0xda,0x4b,0xbc,0xd8,0xf6,
0x73,0xdb,0xdd,0x2f,0x51,0xa9,0x54,0xea,0x1e,0x2,0x2b,0x2b,0x80,0xb6,0xba,0x32,
0x98,0xba,0xc,0x0,0x0,0xd0,0xa9,0xd2,0xe7,0x5f,0xe,0x2a,0x7d,0x36,0xac,0xf8,
0xc5,0x55,0xbf,0xd4,0xfe,0xbc,0x7e,0xd5,0xcf,0xf,0x7f,0xae,0xc1,0x63,0x7c,0xf3,
0xfc,0x24,0xe9,0xcb,0xf6,0xb9,0xc6,0xcf,0xe2,0x1b,0x53,0xe1,0x4f,0xc6,0x9a,0x4f,
0x58,0xd9,0xbf,0xf7,0x1b,0x34,0x82,0xca,0x5e,0x1c,0x4,0xad,0x95,0x3f,0x7c,0xec,
0x57,0xfb,0x8a,0xd0,0xe7,0x3e,0x1c,0xbf,0x13,0xa6,0xd8,0xfe,0x44,0xed,0x2a,0x60,
0xaf,0x8a,0x2a,0x5f,0x45,0xb2,0x23,0xfc,0x1,0x0,0x80,0x58,0x2a,0xf4,0x49,0x61,
0xe,0x31,0x89,0xf3,0x60,0xa8,0x37,0xaa,0xf8,0x75,0x5a,0xc4,0xd9,0xaf,0xfa,0xf9,
0x4b,0xbb,0xb8,0xa1,0xde,0xf1,0x5,0xbf,0x9f,0x4b,0xfa,0x54,0xea,0x8e,0xaa,0xf0,
0xf7,0x88,0xb1,0xf6,0x98,0x91,0xd9,0x1e,0x87,0xbf,0xd2,0x65,0x6f,0xe8,0x37,0x38,
0x96,0x3f,0xbc,0x6b,0xa2,0xd0,0xe7,0x82,0xa0,0x9f,0xa6,0xfb,0x6d,0xfc,0x90,0x5a,
0xa1,0xae,0x8f,0x4f,0x8d,0x10,0x8,0x0,0xc0,0xf4,0xe8,0xb5,0x89,0xb4,0xaa,0xda,
0xe7,0x8a,0x53,0xa5,0xf0,0xa7,0x76,0xbe,0x71,0xcd,0x1d,0xf1,0x90,0x6f,0xb0,0x98,
0xb3,0x5a,0x6b,0xf9,0xb5,0xae,0xe7,0xd1,0xcf,0x1d,0x8f,0xcf,0xd8,0xe7,0x1a,0x3f,
0x4d,0xdd,0x51,0x8f,0xe7,0xef,0xb5,0xaa,0x7d,0xb9,0xb1,0xe6,0x7d,0x46,0xe6,0xbb,
0xc6,0x9a,0x75,0xfe,0x92,0x2d,0x71,0xe8,0x8b,0x87,0x7e,0x6d,0x10,0xf4,0x2a,0x42,
0x5f,0x5c,0x32,0x8d,0xc3,0x9f,0x3f,0xde,0xe,0x0,0x0,0x30,0xac,0x52,0xa5,0xaf,
0xc3,0x79,0x5c,0x9c,0x8a,0xb7,0x6c,0x8b,0x73,0x4d,0x6a,0xc8,0xb7,0x98,0xef,0xa7,
0x76,0x0,0x1c,0xff,0x30,0xaf,0xf3,0x63,0x49,0x9f,0xac,0xba,0xb3,0xee,0xcf,0xcd,
0xf3,0xe7,0xf6,0xe5,0x36,0xff,0xbe,0x91,0xf9,0x72,0x6e,0xf3,0x3f,0x29,0xed,0xdb,
0xdb,0x9a,0xdf,0xe7,0x3f,0xb7,0x63,0xe8,0x73,0x2b,0x5c,0xc7,0x1f,0x58,0xbc,0x1a,
0x76,0x29,0x0,0x4a,0x7d,0x57,0x3,0x7b,0x45,0xb0,0x4,0x0,0x60,0x7a,0xa4,0xfe,
0xdd,0xf,0x72,0x47,0x34,0xec,0x9b,0xa,0x80,0xae,0xc9,0xc3,0x2a,0xec,0xec,0x75,
0xcb,0xbb,0xa4,0x86,0x7c,0xdd,0xfe,0xbd,0xb9,0x96,0x2b,0xf8,0x49,0xd2,0x5e,0xfb,
0x5c,0x63,0xb1,0xea,0xce,0xec,0x57,0xbe,0xb5,0xb5,0xb2,0x92,0x97,0xdb,0xfc,0xd5,
0xb9,0xcd,0xff,0xaf,0xb1,0xe6,0xd5,0xf1,0x92,0x2d,0xc1,0x9c,0xbe,0xaa,0xe1,0xdd,
0x54,0x27,0x4c,0xfc,0x58,0xbf,0xf2,0x17,0x8f,0xb1,0xa7,0xe6,0x1,0x56,0x8d,0xd5,
0x77,0xd2,0x6b,0xd9,0x17,0x0,0x0,0xac,0x5d,0x7d,0x37,0x79,0xd8,0x30,0xf8,0xf9,
0x27,0x57,0xd4,0x2a,0x86,0x7d,0xbd,0x26,0xf,0x37,0xe4,0xeb,0xc2,0xe0,0xf2,0x85,
0x3e,0x49,0x7a,0xcc,0x3e,0xd7,0xb8,0xbd,0xd3,0x3,0xea,0xc5,0x3e,0xbc,0x4a,0xee,
0xcc,0xf1,0x92,0xb1,0xe6,0xfd,0xb9,0xcd,0xf,0xc6,0xd5,0x3e,0x63,0x8d,0x17,0xea,
0x6c,0x18,0xee,0xe2,0xf,0x26,0x8,0x7e,0x51,0x18,0x2c,0x3e,0x54,0x9b,0x9e,0x60,
0x29,0xa5,0x27,0x44,0x76,0x9a,0x24,0x59,0x15,0x18,0x1,0x0,0xc0,0xda,0x66,0x13,
0xff,0xe8,0x57,0x55,0xfd,0x9c,0x38,0x6f,0xf8,0x55,0xbf,0xa2,0x40,0x65,0xa3,0xe2,
0x96,0xc2,0x8a,0x9f,0x9b,0xf3,0xe7,0x2,0x60,0xc3,0xb,0x7d,0xcb,0x97,0x43,0x5e,
0x92,0x74,0x57,0xb7,0x7,0xd5,0x93,0x8b,0x32,0xab,0xbd,0x25,0x9b,0x91,0xf9,0xbb,
0xdc,0x9a,0x9b,0x8d,0x35,0xef,0x4d,0xae,0xd5,0xe7,0x7f,0x18,0x6e,0x13,0x63,0x37,
0x1,0x32,0x18,0xe6,0xb5,0x51,0xe5,0x4f,0xe9,0xf9,0x7f,0x52,0x75,0x17,0x70,0x55,
0x52,0x57,0x74,0x7f,0xa7,0xf,0x99,0x60,0x8,0x0,0xc0,0x74,0xa9,0xca,0x7,0x7e,
0x96,0x30,0x36,0xbc,0x2d,0x5e,0xd7,0xcf,0x9f,0xae,0xe6,0xe7,0x99,0x46,0x22,0x0,
0xfa,0xcf,0x5b,0x5e,0x7f,0x68,0x9f,0x6b,0x9c,0xe9,0xf6,0xa0,0x7a,0x65,0xd5,0xcf,
0xb8,0x1d,0x39,0x8c,0x8c,0x35,0x7b,0x73,0x9b,0xdf,0x68,0xac,0xb9,0xd6,0x16,0x6f,
0x3a,0xaa,0xf6,0xa5,0x6e,0xab,0xa,0x7d,0xa9,0xf9,0x7f,0x7e,0x79,0x35,0x9e,0x3,
0x18,0x7c,0x39,0xde,0xab,0x8f,0x3,0xa0,0xb,0x8b,0x29,0x83,0xc,0x17,0x3,0x0,
0x80,0xd5,0xaf,0xd7,0x91,0x40,0xff,0xf6,0x54,0x41,0x29,0xae,0xfa,0xf9,0x4d,0x1e,
0x71,0xc5,0xcf,0x15,0xbd,0x5c,0xb1,0x6b,0x65,0x43,0x9f,0x24,0xfd,0x85,0x7d,0xae,
0xf1,0x44,0x2f,0xf,0xc,0x96,0x7a,0xa9,0x8,0x7e,0xca,0x6d,0x7e,0xc1,0x58,0xf3,
0xbb,0x36,0xb7,0xff,0x47,0x46,0x97,0x7,0xe1,0xad,0x6a,0x38,0x37,0xde,0xea,0x24,
0x15,0xfc,0xfc,0x14,0x9d,0x9a,0xff,0x57,0x54,0x2,0x5b,0x9f,0x62,0x6a,0x18,0x38,
0xf5,0x5,0xaa,0xe2,0xb6,0xaa,0xeb,0xdd,0x6e,0x7,0x0,0x0,0x93,0xa7,0xd3,0xbf,
0xff,0xf1,0xc8,0x62,0x32,0xfc,0xc9,0xcb,0x27,0x89,0x9c,0xe3,0x6e,0x8b,0xb,0x55,
0xcb,0xef,0x7b,0x92,0xfe,0xac,0xd7,0x7,0x97,0x97,0x7a,0x31,0x6e,0x4e,0x9f,0x37,
0xc7,0xcf,0x1a,0xd9,0xdc,0x3e,0x2f,0xa3,0xdd,0x6a,0xd8,0x7f,0x50,0xae,0x75,0xed,
0x49,0x8e,0x15,0xc3,0xb9,0x41,0x30,0xec,0x70,0x5b,0x6a,0x12,0xa5,0x1f,0x6,0x53,
0x5f,0x48,0xfc,0x21,0xfb,0x15,0xbf,0x6e,0xe1,0xaf,0xdb,0xb8,0x3f,0x0,0x0,0x98,
0xc,0xbd,0xfe,0xfb,0xdd,0xa9,0x48,0x54,0x1a,0x61,0x8c,0x46,0x21,0xab,0x32,0x8a,
0xbb,0xbf,0x9f,0xd7,0x31,0x1e,0x67,0x24,0xfd,0x5e,0xa7,0xee,0xde,0x58,0xbd,0x53,
0xf0,0x2b,0x3a,0x7a,0xdd,0x1b,0x6d,0xd8,0xc7,0x94,0xeb,0xfd,0xca,0xf5,0x85,0xd2,
0xda,0x36,0xa9,0xf5,0x6e,0xe2,0x6a,0x9f,0x5f,0x1a,0x4d,0xa5,0xe7,0xd4,0xda,0x7f,
0x41,0xbb,0xb5,0xed,0x10,0xfe,0x94,0xfe,0x42,0xfd,0xf3,0xf8,0x72,0xac,0xb2,0x22,
0x48,0x3a,0x4,0x0,0x60,0xa2,0xa5,0x32,0x41,0xa7,0x46,0xf,0x3f,0x7b,0xc4,0xc5,
0xa8,0xf8,0x38,0x2b,0xe7,0x67,0x92,0xfe,0x4d,0x2f,0xf3,0xfc,0x7c,0xed,0x39,0x7f,
0xa6,0x39,0xfc,0x6b,0xad,0x8a,0x8a,0x5f,0xd8,0xdc,0x51,0x84,0xb3,0x2f,0x2a,0xd7,
0x9c,0x72,0xfb,0x40,0x10,0xf2,0x52,0xd5,0xbd,0xb8,0xd,0x3a,0x59,0x1,0xf4,0x86,
0x81,0xbb,0xa5,0xeb,0x8e,0x55,0xc0,0x68,0x68,0x58,0xa,0xbf,0x24,0xa9,0xb7,0x2f,
0x8c,0xca,0x20,0x0,0x0,0x6b,0x4f,0x2a,0x13,0xa4,0x46,0x10,0x53,0x81,0xd0,0x7f,
0xce,0xea,0x71,0x41,0xd2,0x6d,0xf6,0xb9,0xc6,0xf3,0xfd,0x3e,0xb1,0x6e,0xbc,0xa5,
0x5e,0x82,0x75,0xfc,0xe4,0xad,0xe1,0xe7,0xaf,0xdf,0xd7,0x1c,0xea,0xfd,0x94,0x72,
0x5d,0xa1,0x86,0xfe,0x43,0x10,0xe2,0xe2,0x90,0x57,0x54,0xfa,0x14,0x4e,0x8e,0x8c,
0xc3,0x61,0x3c,0xff,0x2f,0xde,0xfb,0x37,0x18,0x2,0x4e,0x24,0xf0,0xaa,0x4a,0x60,
0x7c,0x59,0xfe,0x6d,0xab,0xeb,0x1b,0x4,0x0,0x0,0x43,0xea,0xa7,0x80,0x53,0x15,
0x4,0x7b,0x79,0xee,0xca,0x5b,0x94,0xf4,0xbb,0xf6,0xb9,0xc6,0xf7,0x7,0x79,0x72,
0xdd,0xf,0x7e,0x2e,0xf4,0x15,0x8b,0x37,0xc7,0xdd,0x2d,0xe1,0x9a,0x7d,0xef,0x97,
0xd1,0x4b,0xca,0xf5,0xd1,0xca,0xe0,0xe7,0x87,0xbc,0x6e,0x15,0xc1,0x78,0x22,0x65,
0xa7,0xf9,0x7f,0xf1,0x65,0xa9,0xdc,0xa2,0xed,0xa4,0x82,0x5f,0xd5,0x7d,0x0,0x0,
0x60,0xba,0x4c,0x5e,0x16,0xf8,0xb9,0x9a,0x15,0xbf,0x27,0x7,0x3d,0x40,0x3d,0x8,
0x7e,0xad,0xd0,0x17,0x84,0x3f,0xbf,0x8b,0x37,0xe,0x63,0xb9,0x3e,0xa6,0xdc,0xfe,
0x54,0xb9,0xfe,0x4a,0xb9,0xd6,0x95,0x16,0x3c,0x4c,0xcd,0x1,0x2c,0x5,0x45,0xef,
0x31,0xf1,0xce,0x20,0x55,0x73,0x0,0xe3,0xb9,0x7f,0x52,0x75,0x6a,0xf7,0x4d,0xde,
0x17,0xc,0x0,0x0,0xe0,0xfc,0x54,0xd2,0xad,0x92,0x8e,0xd,0x73,0x90,0xba,0xb,
0x7e,0x2e,0xf4,0x19,0x35,0x2b,0x81,0xc9,0x61,0xd7,0xdc,0x46,0xd5,0x3f,0xeb,0xe6,
0x0,0xfe,0x4c,0x46,0x7,0x95,0xdb,0xd9,0x9e,0x83,0x5f,0xaa,0x53,0x38,0x5e,0x32,
0xa6,0x6a,0xfe,0x5f,0xd5,0x50,0x2e,0x0,0x0,0xc0,0xda,0xf4,0x63,0x49,0xff,0x56,
0xd2,0xa9,0x61,0xf,0x54,0x6b,0x36,0x79,0xd8,0x22,0xf4,0x85,0xc3,0xbd,0xb6,0x1c,
0x0,0x93,0x8b,0x1d,0xea,0x1b,0xca,0xed,0x9b,0x94,0xeb,0x54,0x10,0x14,0x5d,0xc8,
0x73,0x2b,0x5e,0xc7,0x2b,0x60,0x17,0x9b,0x20,0xab,0xb9,0xf7,0x9d,0xdb,0x16,0xc5,
0xbf,0x7d,0xd1,0xb6,0xee,0x53,0x79,0x2e,0x60,0x55,0x10,0x4,0x0,0x0,0x58,0x3b,
0x1e,0x93,0xf4,0x6b,0x1a,0x41,0xf0,0x93,0xa4,0x9a,0x9b,0xf3,0x67,0xad,0x6d,0x87,
0xbf,0x4e,0xdd,0xb5,0xa9,0xe1,0xdf,0x66,0x8,0xfc,0x81,0x72,0x6d,0x53,0x43,0xdf,
0x28,0xaf,0xfd,0x17,0x55,0x0,0x1b,0x51,0x30,0x2c,0xed,0x8d,0xa7,0x76,0x18,0xcc,
0x13,0xaf,0x5,0x0,0x0,0x60,0xed,0x5b,0x94,0xb4,0x57,0xd2,0xed,0x92,0xce,0x8d,
0xea,0xa0,0x35,0xb7,0xbb,0x47,0x11,0xfc,0xa4,0x56,0xd8,0xf2,0x1a,0x28,0x52,0x61,
0x2f,0xbd,0x28,0xf3,0xcf,0x65,0xf4,0x7b,0x32,0x7a,0xbf,0x8c,0x2e,0x74,0x6c,0xfe,
0x88,0x87,0x82,0x83,0x8a,0x20,0xa1,0xf,0x0,0x0,0x4c,0xb5,0x53,0x92,0xde,0x24,
0xe9,0x2f,0x47,0x7d,0xe0,0x9a,0x6d,0xa5,0xaa,0x56,0xdd,0x2f,0x5c,0xdf,0xa6,0x97,
0x5d,0x36,0xd2,0x41,0xf0,0x73,0x32,0xba,0x4e,0x46,0x8f,0x95,0xe6,0x8,0xc6,0xf3,
0xfb,0xfc,0x39,0x82,0x7e,0x57,0x30,0x81,0xf,0x0,0x0,0x4c,0x9f,0xb,0x92,0x3e,
0x21,0xe9,0x3a,0x49,0x3f,0x18,0xc7,0xf,0xa8,0x95,0x86,0x7b,0xa5,0x70,0xa1,0x64,
0x29,0xbd,0xa0,0xb2,0xbf,0xcc,0x4a,0xbc,0x4,0x4b,0x33,0xf0,0x9d,0x92,0xb1,0xb7,
0x2b,0xd7,0xed,0xca,0x75,0x2a,0xd9,0xd8,0x91,0x6a,0xe,0xf1,0xc3,0x26,0x0,0x0,
0xc0,0xf4,0xf8,0x8e,0xa4,0x6d,0x92,0x3e,0xa6,0x66,0x8,0x1c,0x8b,0x9a,0xd4,0xac,
0xfa,0x15,0x7a,0x59,0x3a,0xc5,0xbf,0xcf,0x5f,0x76,0x45,0x4a,0xd,0xb,0x3f,0xd6,
0xac,0x2,0xda,0x3f,0x95,0xd1,0xcf,0xca,0x8b,0x3a,0xab,0x1c,0xfc,0x0,0x0,0x0,
0xa6,0xc7,0xf,0xd4,0x9c,0xd7,0x77,0xab,0x9a,0x5d,0xbd,0x63,0x55,0xf3,0x9b,0x3d,
0xda,0xe1,0xab,0x62,0xc1,0x64,0x45,0xd7,0xe3,0xcb,0xfe,0x42,0xcb,0x61,0xa7,0xf0,
0x5,0x19,0x7d,0x46,0x46,0x57,0x35,0xe7,0x3,0xda,0x33,0xed,0x86,0xf,0x82,0x1f,
0x0,0x0,0x98,0x4a,0xdf,0x53,0x33,0xf0,0xfd,0x9a,0x9a,0x1d,0xbd,0xcb,0xa2,0x98,
0xf3,0x37,0x54,0xf0,0xaa,0x5a,0x6c,0xb9,0x3c,0x4c,0x7c,0x41,0x56,0x9f,0x93,0xd1,
0xaf,0xc8,0xe8,0x8f,0x65,0xf4,0x7d,0x42,0x1f,0x0,0x0,0x98,0x22,0x8b,0x92,0xbe,
0x21,0x69,0xa7,0x9a,0xd,0x1d,0xdf,0x59,0xee,0x17,0x50,0xb3,0xa9,0x3d,0x6e,0xfd,
0x9b,0xb2,0xe8,0xbe,0xcc,0xbb,0x2d,0x4b,0xdc,0x16,0x1f,0x27,0xe,0x82,0xcd,0x61,
0xe2,0x45,0x49,0x7f,0x2d,0xab,0x1d,0xb2,0xda,0x26,0xab,0x4f,0xca,0xea,0xf4,0x60,
0x6f,0x1,0x0,0x0,0x60,0xd5,0x3b,0xaa,0xe6,0xb2,0x2d,0x57,0x4a,0xfa,0x3d,0x49,
0x3,0x6f,0xcf,0x36,0xac,0xba,0x14,0xcd,0xf9,0xf3,0xa5,0x2,0x5d,0x2a,0xf8,0xb9,
0xf3,0x38,0x4,0xa6,0x9e,0xdf,0xfc,0x81,0xfe,0x72,0x32,0x27,0x5b,0xa7,0x3f,0x93,
0x74,0xad,0xa4,0xb7,0x4a,0xba,0xb9,0x75,0x9a,0xeb,0xfa,0xe,0x0,0x0,0x0,0x56,
0x9f,0xd3,0x92,0xe,0xa9,0x59,0xd9,0x7b,0x52,0xcd,0xad,0xd9,0x56,0x85,0xba,0xa4,
0xea,0xe6,0xe,0x3f,0xd8,0xd5,0x5a,0x27,0x23,0xa9,0x96,0x49,0x99,0x6d,0x5e,0xcf,
0x32,0xa9,0x66,0x5b,0xc1,0x2f,0x6b,0x1e,0xc8,0xdd,0x9e,0xd9,0x74,0x75,0xb0,0xaa,
0x52,0x28,0xfd,0xb0,0x75,0xfa,0x4c,0xeb,0xfa,0x1b,0x25,0x5d,0xaf,0x66,0x28,0x7c,
0x9d,0xa4,0x2d,0xad,0xcb,0x0,0x0,0x0,0xab,0xc1,0xa2,0x9a,0x45,0xac,0xe7,0xd5,
0x6c,0xd6,0xf8,0xb1,0x9a,0x55,0xbe,0x91,0xec,0xc6,0x31,0xe,0xf5,0x60,0xce,0x5f,
0x2a,0x4,0xa6,0xaa,0x79,0x2e,0xc,0xfa,0xa1,0xd0,0xbf,0x5c,0x3a,0x79,0x61,0xb1,
0xe6,0x85,0xc2,0x5a,0xd6,0x6e,0x12,0x49,0xfb,0x5e,0xeb,0x14,0x9b,0x53,0x33,0xc,
0x3a,0xaf,0x91,0xb4,0xa9,0xcb,0x7b,0x5,0x0,0x0,0x18,0xc6,0x49,0x35,0xc3,0x9e,
0x33,0x96,0x75,0xf8,0xc6,0xed,0xff,0x3,0x53,0xae,0x2b,0xdf,0xc2,0x34,0x69,0xbb,
0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/homepageoff.png
0x0,0x0,0x2d,0x3a,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x88,0xe3,0xf9,0x7d,0xdf,0xf1,0x97,0x66,0x47,0x7,0xa7,0x1c,0x68,0x39,
0xb4,0x60,0xad,0xcb,0x1c,0xe9,0xe,0x78,0xd7,0x61,0x87,0x2b,0x13,0xd2,0x75,0xf1,
0xe0,0x70,0x25,0x3d,0x87,0x9a,0x84,0x33,0xe,0x1,0x97,0x33,0x29,0x31,0x2e,0x29,
0x35,0xd,0xd,0x2e,0x29,0xd,0x9,0x9,0x75,0x63,0x92,0xd6,0x50,0xe2,0xc4,0xc4,
0x69,0xa0,0x38,0x38,0xa4,0x8d,0x49,0x9a,0x83,0x24,0x3e,0x42,0x87,0x38,0x6b,0xe2,
0xe5,0xc8,0x90,0x65,0x86,0x78,0xf7,0x1c,0x6d,0xcc,0xa,0x3c,0x32,0xcc,0x70,0xec,
0xc0,0xad,0x66,0x67,0xbe,0xfa,0x7e,0x3f,0xfd,0x43,0xfa,0x68,0x3e,0xfa,0xea,0xf3,
0xfd,0x25,0x7d,0x35,0x33,0x92,0x9e,0xf,0x10,0xfa,0xea,0xfb,0xfd,0x4a,0xfa,0x7e,
0xb5,0xb6,0xe7,0xe5,0xf7,0xe7,0x57,0xe5,0xeb,0x5f,0xff,0xba,0x56,0x56,0x56,0x54,
0xa9,0x54,0xb4,0xb2,0xb2,0x32,0xf2,0xb0,0xfb,0xdc,0xe7,0xb4,0x87,0x95,0xb4,0xed,
0x32,0xc6,0xe4,0xda,0xb6,0xaf,0x7,0xcf,0xef,0x35,0xc6,0xac,0x4b,0x7a,0x9f,0xb3,
0xff,0x5,0x49,0xef,0x2b,0xf2,0xb9,0x69,0xfb,0x0,0x0,0xc0,0xfc,0x2a,0xf2,0xb7,
0x3d,0x7e,0x6e,0xd2,0x6b,0xe7,0xf9,0xd4,0x18,0xb3,0x67,0xf7,0x19,0x63,0x4e,0x25,
0xed,0x19,0x63,0xbe,0x65,0x8c,0x39,0x76,0xcf,0xcf,0xfb,0x48,0x3b,0xdf,0x3d,0x16,
0xbf,0x9e,0xd7,0x5e,0x7b,0xad,0xd0,0xef,0xe2,0x5a,0x8d,0x7,0x3d,0xdf,0x6b,0x1b,
0xee,0x92,0x2,0xa0,0xa4,0xb1,0xe7,0xf8,0x76,0xfc,0xc7,0xb4,0xc7,0x7c,0xdb,0x83,
0x9b,0xbb,0x2d,0xe9,0xc3,0x95,0x4a,0xe5,0xfd,0xc6,0x98,0xdb,0x83,0xe7,0xe7,0xed,
0xf1,0xf8,0x73,0x51,0xe7,0xf5,0x1e,0x0,0x0,0x70,0xf9,0x64,0xfd,0x4d,0xcf,0xa,
0x86,0x1e,0xdf,0x93,0xd4,0x1a,0x4,0xc1,0x6f,0x1a,0x63,0xbe,0x61,0x8c,0x69,0xe5,
0xb9,0xe,0x5f,0xe8,0x8b,0x7f,0xa7,0x2f,0xc,0x4e,0x6a,0x35,0xab,0xea,0x97,0x16,
0xfe,0x24,0x79,0x3,0xa0,0x15,0x7f,0x6d,0x2f,0x36,0x21,0xf8,0xbd,0xa7,0x52,0xa9,
0x7c,0xcc,0x18,0xf3,0x4a,0xa5,0x52,0xf9,0x90,0x31,0xe6,0xc5,0x49,0x83,0x9d,0xfb,
0x5d,0xf1,0x6d,0xdf,0xeb,0xbc,0xc7,0x0,0x0,0xc0,0x7c,0x4b,0xfa,0x3b,0x5f,0x64,
0x7f,0x42,0xc6,0x78,0xcf,0xe0,0xf1,0x41,0x49,0x9f,0x1a,0xec,0xfb,0x9e,0xa4,0xbf,
0x30,0xc6,0xbc,0x61,0x8c,0xf9,0x53,0x5b,0x1d,0xcc,0xa,0x70,0x69,0x55,0xc1,0x28,
0x8a,0x14,0x45,0x51,0xea,0x3d,0x66,0x59,0xf5,0x5,0xbf,0x22,0x4d,0xbe,0x92,0xbf,
0xea,0xe7,0xe3,0x1e,0x1f,0x4,0xbf,0x17,0x8c,0x31,0xaf,0x49,0x7a,0x5d,0xd2,0x8f,
0xa4,0xbd,0x2f,0xab,0x14,0x9b,0xb5,0x2f,0xe9,0x75,0xd2,0x3e,0x0,0x0,0xb0,0x18,
0x8a,0x16,0x7d,0x7c,0xcd,0xac,0xf1,0x73,0x7d,0xdd,0xd4,0x3c,0x9f,0xf5,0x1e,0x63,
0xcc,0xeb,0xea,0xe7,0x9c,0x23,0x49,0x7f,0x2c,0xe9,0xf7,0x24,0x6d,0xc7,0xdf,0x97,
0xa7,0x39,0xd8,0x6,0xbf,0x28,0xc,0xb,0xdd,0x7f,0xdc,0xaa,0x2f,0xf8,0xf9,0x42,
0x9f,0xbb,0x2d,0xf9,0x2b,0x7e,0x59,0xe1,0xcf,0xde,0x88,0xa4,0xf7,0x55,0x2a,0x95,
0x9f,0x37,0xc6,0x7c,0x6c,0x10,0x0,0x53,0x9b,0x6f,0xcf,0xbb,0xfa,0x97,0xf7,0x33,
0x1,0x0,0xc0,0x7c,0x9a,0x34,0x73,0xa4,0x65,0xb,0xbb,0xcf,0xd7,0x7c,0x6b,0x8c,
0xa9,0x1b,0x63,0x7e,0x6a,0xf0,0xf8,0xae,0x31,0xe6,0xb,0xc6,0x98,0x2f,0x1a,0x63,
0x8e,0xf2,0x4,0xbf,0x30,0xc,0x15,0x86,0x61,0x29,0x95,0xbf,0x95,0x3c,0x55,0xbf,
0x78,0xe5,0x2f,0xab,0xef,0x5f,0xd2,0x40,0x10,0x49,0x9b,0x95,0x4a,0xe5,0xf,0x24,
0x3d,0x94,0xf4,0x53,0x92,0x5e,0x28,0x7a,0xc1,0x79,0xda,0xc2,0xb3,0xce,0x4b,0xfb,
0x7,0xcf,0x7a,0x0,0x0,0x80,0xf9,0x95,0xf4,0xf7,0x3c,0xa9,0xbf,0x5d,0x19,0xb9,
0xc2,0xe3,0xbd,0x92,0x7e,0x55,0xd2,0x63,0x63,0xcc,0x7f,0x31,0xc6,0xbc,0x98,0x14,
0xfc,0xa2,0x28,0x52,0xaf,0xd7,0x53,0xd8,0xeb,0xd,0x3,0x60,0x38,0x65,0xe5,0x6f,
0x2c,0xfc,0x15,0x1d,0xe1,0x9b,0x12,0xf4,0x86,0x2a,0x95,0xca,0xfb,0x2b,0x95,0xca,
0x9f,0x4b,0xfa,0x1b,0x49,0x3f,0x59,0xa4,0x52,0x68,0xe5,0xa9,0xe2,0xf9,0x9e,0x7d,
0xdb,0xee,0xfb,0x8,0x76,0x0,0x0,0x2c,0x96,0xa2,0x45,0x9c,0xa4,0x30,0x97,0x16,
0x0,0xb3,0xbe,0x33,0xe7,0x35,0xd5,0x25,0xfd,0x67,0x49,0x8f,0x25,0xfd,0x9a,0xa4,
0x17,0x7c,0xd5,0xbe,0x30,0xc,0xd5,0xb,0xc3,0x7e,0x0,0x1c,0x3c,0xa6,0x31,0xd2,
0xe7,0xaf,0x48,0xf0,0x93,0x72,0x8d,0xec,0x7d,0xc1,0x18,0xf3,0x8b,0x92,0xfe,0xbd,
0xa4,0xe7,0x8a,0xe,0xe0,0x48,0x4a,0xe1,0xee,0x76,0x9e,0x7f,0xa0,0xac,0x12,0x6d,
0x9e,0x63,0x0,0x0,0x60,0x71,0x24,0x5,0xb4,0xa4,0xe3,0x69,0x5,0xa6,0xa4,0xcf,
0x2f,0x10,0x6,0x5f,0x30,0xc6,0x7c,0xc6,0x18,0xf3,0xba,0x31,0xe6,0xe7,0x8c,0x31,
0xbf,0x6f,0x9b,0x78,0x7b,0xbd,0x9e,0xa2,0x30,0x54,0x18,0x45,0x67,0xcd,0xbe,0x65,
0x54,0xfe,0xe2,0xcd,0xb9,0xf1,0x7d,0xbe,0xa6,0x5f,0x5f,0xdf,0xbf,0x98,0x8f,0x49,
0xfa,0xbb,0x4a,0xa5,0xf2,0x19,0x49,0xcf,0x65,0x5d,0x48,0x9e,0x1f,0xdc,0x6e,0xe7,
0xd,0x7e,0x69,0x95,0x3f,0x9a,0x74,0x1,0x0,0x58,0xe,0x59,0x7f,0xf3,0xd3,0x9a,
0x7c,0xb3,0xf2,0x41,0x91,0xc,0xe1,0xfb,0xfe,0xd8,0x75,0xbd,0xc7,0x18,0xf3,0x95,
0x28,0x8a,0xfe,0x5f,0x14,0x45,0xef,0xef,0xd,0x9a,0x7a,0x6d,0xd5,0xaf,0x67,0x1f,
0x65,0xd,0xf8,0xf0,0xf5,0xe7,0x4b,0x9a,0xda,0xc5,0x7d,0xf6,0x78,0x41,0xd2,0x6f,
0x4b,0xfa,0xb8,0xdd,0x91,0x54,0xf1,0xcb,0x1b,0xf2,0xdc,0xd7,0x59,0x1,0xcf,0xf7,
0x39,0x49,0xdf,0x97,0x75,0x3d,0x0,0x0,0x60,0xf1,0xe4,0x6d,0xfe,0x8d,0x6f,0xe7,
0xed,0x4a,0x56,0x64,0xbf,0xef,0x1a,0xc2,0x30,0x7c,0xa5,0xd7,0xeb,0xfd,0x6d,0x14,
0x86,0x3f,0x17,0x86,0xe1,0x17,0x86,0xcd,0xbf,0xbd,0x9e,0xc2,0x32,0xa6,0x7a,0x99,
0x74,0x4e,0x3f,0x2b,0xf6,0xfa,0x65,0x49,0x7f,0x20,0x67,0x5,0x8e,0xa2,0xd2,0x7e,
0xb4,0x22,0xc1,0x2f,0x2b,0xf4,0x15,0x6d,0x7e,0x6,0x0,0x0,0x8b,0xa5,0x48,0xd3,
0x6f,0x52,0xbe,0xc8,0x6a,0xd2,0x4d,0x3a,0xe6,0x3b,0xd7,0x18,0x33,0x6c,0xd6,0x8d,
0xa2,0xe8,0xb9,0x5e,0x18,0xfe,0x46,0x18,0x86,0x1f,0xa,0x7b,0xbd,0x7f,0xdd,0xb,
0xc3,0x77,0x23,0x1b,0x2,0xa7,0x1d,0xed,0x9b,0x77,0x10,0x47,0x3c,0xf8,0x79,0x82,
0xe0,0xa7,0x24,0xfd,0xb5,0x6,0x4b,0xad,0xa5,0xd,0xe6,0x48,0xab,0xe8,0xf9,0x7e,
0x88,0xb4,0x52,0x6c,0x9e,0x87,0xef,0xfc,0x22,0x9f,0x1,0x0,0x0,0xe6,0x53,0x9e,
0xbf,0xef,0x49,0xf9,0xc0,0xb7,0xed,0x3e,0xc7,0xdf,0x9f,0xe7,0x3a,0xd2,0x5e,0x47,
0x83,0x7e,0x7d,0xc3,0xfe,0x7d,0xfd,0xb0,0xf7,0xb1,0x5e,0x18,0xfe,0x6d,0xd8,0xeb,
0x6d,0xf6,0x9c,0xa,0xe0,0x34,0xc6,0x6,0x7c,0x64,0xcd,0xe9,0x67,0x5f,0xc7,0xfc,
0x77,0x49,0xff,0xa1,0xc8,0x17,0x67,0x25,0xe5,0xb4,0xa0,0xe6,0xbe,0xf6,0x6d,0xfb,
0xbe,0x23,0x4f,0x89,0x17,0x0,0x0,0x2c,0xae,0xb4,0xbf,0xf9,0xbe,0x40,0xe7,0x7b,
0x9d,0xd5,0xf4,0xeb,0xfb,0xdc,0xb4,0xf3,0xdc,0xe3,0xee,0xe8,0x5e,0xb7,0xaf,0x5f,
0x14,0x86,0xeb,0x61,0x14,0xdd,0xd,0x7b,0xbd,0x8f,0x86,0x61,0xf8,0xb5,0x69,0xa7,
0x7a,0x59,0xcd,0x9a,0xae,0x25,0x69,0x74,0xef,0xe0,0xf5,0x73,0x92,0xfe,0xa7,0xa4,
0xd7,0xf3,0x84,0xa8,0xbc,0xed,0xe0,0xbe,0xf7,0xe5,0xd,0x7f,0xee,0xf7,0xe4,0xfd,
0x47,0x1,0x0,0x0,0xcb,0xa1,0x48,0x0,0x74,0xf7,0x25,0x5,0xb6,0xac,0xd6,0xcb,
0xb4,0xcf,0x73,0x8f,0xf,0x57,0xef,0xb0,0xcd,0xbe,0xb6,0xf2,0x17,0x45,0x36,0x4,
0x3e,0x1f,0x86,0xe1,0x9f,0xf4,0x7a,0xbd,0x4f,0x46,0x51,0xf4,0x7b,0x5,0x6f,0x7b,
0xc4,0x6a,0x9e,0xb9,0xfc,0x24,0xef,0xb4,0x2e,0xcf,0x4b,0xfa,0x23,0x49,0x1f,0xb6,
0xfb,0xf2,0x54,0xdd,0xd2,0x7e,0x8c,0x49,0x9b,0x71,0xe3,0xdf,0x43,0xf8,0x3,0x0,
0x0,0x3e,0x45,0x8b,0x55,0x59,0x39,0x23,0x29,0x73,0xc4,0x3f,0x2f,0xad,0x95,0xd2,
0x36,0xf9,0x3a,0xfd,0xfd,0xe4,0xe,0xf2,0xb0,0x7d,0xfd,0x7a,0xbd,0xde,0x73,0x61,
0x18,0x7e,0x39,0xc,0xc3,0x6b,0x92,0x3e,0x9f,0xff,0xae,0x47,0x55,0xde,0x7e,0xfb,
0xed,0xd4,0x95,0x3b,0x24,0x6f,0xf0,0x7b,0x4e,0xd2,0x9f,0x4b,0x7a,0x25,0x7e,0x73,
0x49,0xdb,0xbe,0xd0,0x36,0xcd,0xc3,0xfd,0x8e,0x49,0x9b,0x7d,0x9,0x7e,0x0,0x0,
0x2c,0xa7,0x49,0x9a,0x80,0xd3,0xb2,0x8d,0xbb,0x2f,0xed,0x11,0x45,0xd1,0xd8,0x76,
0x14,0x45,0xa,0x82,0x40,0x41,0x10,0xa8,0x17,0x4,0xa,0x7a,0xbd,0xfe,0xb6,0x9d,
0xda,0x65,0xb0,0x1d,0x9e,0x85,0x40,0x45,0x61,0xf8,0x9f,0xfe,0xeb,0xe7,0x3e,0xf7,
0xb9,0x49,0xee,0xbd,0xf2,0xed,0x6f,0x7f,0x3b,0xb5,0xaf,0x9f,0xe7,0xf9,0x8a,0xfa,
0x15,0xbf,0x1f,0x4b,0xfb,0xb1,0x26,0xf9,0x41,0xdc,0x1f,0x23,0xeb,0x3d,0x69,0x3f,
0x7c,0xd2,0xb5,0xf8,0x10,0x0,0x1,0x0,0x58,0x2e,0x59,0x7f,0xfb,0xd3,0x5a,0xe,
0xb3,0x72,0xc7,0x24,0xc1,0x2f,0xc,0xc3,0x61,0xf8,0x1b,0x86,0x40,0x27,0xf4,0xc5,
0x1f,0xd1,0xa0,0x3f,0x60,0x14,0x86,0x9f,0xf8,0x6f,0x9f,0xff,0x7c,0xe1,0x26,0xe0,
0xca,0xb7,0xbf,0xfd,0xed,0xcc,0xb5,0x7a,0x87,0x27,0xf7,0xb7,0x7f,0x4b,0xd2,0xcf,
0xa4,0xfd,0x50,0xbe,0x64,0x1c,0xff,0x51,0xdc,0x1f,0x20,0x29,0xf8,0xf9,0xce,0x49,
0xfa,0x4c,0xdf,0xb3,0xef,0x7a,0xd2,0xf6,0x1,0x0,0x80,0xc5,0x52,0xf4,0xef,0x7d,
0x56,0x86,0x48,0x2b,0x32,0xa5,0x15,0xac,0x7c,0xc1,0x2f,0x5e,0xf5,0x1b,0x9,0x7f,
0x6e,0x8,0x74,0x1e,0xe1,0x60,0x92,0xe7,0x41,0x15,0x30,0xc,0x7b,0xbd,0x8f,0xfe,
0xc6,0x6f,0xfe,0xe6,0x1b,0x45,0xee,0xb1,0xf2,0xf7,0x7f,0xff,0xf7,0x99,0x13,0x3a,
0x3b,0xdb,0xbf,0x2c,0xe9,0x17,0xb3,0x7e,0xac,0xa4,0xca,0x5c,0x5a,0x2,0x76,0x83,
0x5f,0x52,0x30,0xcc,0x53,0xf9,0x4b,0xfa,0x87,0xf1,0xbd,0xce,0xba,0xf,0x0,0x0,
0xb0,0x1c,0x92,0xfe,0xfe,0x4f,0x5a,0x5,0xcc,0x5b,0xfd,0x8b,0xa2,0x48,0xa7,0xa7,
0xa7,0xea,0x5,0x81,0x4e,0x83,0x40,0xc1,0xe9,0xa9,0x82,0x41,0xd5,0x2f,0x48,0x8,
0x80,0xb1,0xea,0xdf,0x71,0x18,0x86,0x3f,0xfc,0xdb,0xbf,0xf3,0x3b,0x6f,0xe5,0xbd,
0xd7,0x4a,0xab,0xd5,0xca,0xac,0xfa,0xd,0x9e,0x3f,0xac,0x7e,0x3f,0xbf,0xd4,0x1f,
0x66,0xda,0xf2,0x67,0x5a,0x38,0xcc,0x5b,0xf9,0x4b,0xdb,0x4e,0xdb,0x7,0x0,0x0,
0x16,0xdf,0xb4,0xc5,0xa0,0xa4,0xdc,0x91,0x96,0x53,0x7c,0x5,0x2f,0x63,0x8c,0x7a,
0x83,0xfe,0x7d,0xc1,0xe9,0xe9,0x48,0xf8,0xb,0x4e,0x4f,0x47,0x82,0x9f,0xdd,0x1e,
0x2e,0xf3,0xe6,0xac,0xf8,0x11,0xf6,0x7a,0xed,0x30,0xc,0xff,0xc9,0xff,0xfa,0xf2,
0x97,0xdf,0xc9,0x73,0xff,0xab,0x92,0x32,0x9b,0x7b,0x25,0xbd,0x57,0xd2,0x97,0xb3,
0x7e,0x1c,0x5f,0x3a,0x2e,0x1a,0xfc,0xf2,0x54,0xfd,0xd2,0x2a,0x7f,0x45,0x2,0x60,
0xd2,0x7d,0x0,0x0,0x0,0x64,0x15,0x8f,0xb2,0x5a,0x3d,0x7d,0xaf,0x7d,0xe7,0x1a,
0x77,0x9a,0x17,0xcf,0x23,0x3e,0xf7,0xdf,0x30,0xf8,0x9d,0x55,0xff,0xd6,0x7a,0xbd,
0xde,0x57,0x24,0xfd,0x68,0x9e,0xfb,0xaa,0x3c,0x7a,0xf4,0x28,0x2b,0xfc,0x5d,0xa9,
0x54,0x2a,0x7f,0x29,0xe9,0x83,0x45,0x7e,0x80,0xbc,0x89,0x37,0xa9,0xf3,0x63,0xd9,
0xe1,0x2f,0x9,0xa1,0xf,0x0,0x0,0x4c,0x52,0x24,0xca,0xd3,0xf2,0xe9,0x6e,0xfb,
0xb2,0x50,0x10,0x4,0x3a,0x3d,0x39,0xd1,0x69,0x10,0xe8,0xf4,0xf4,0x74,0x58,0xf9,
0x3b,0x3d,0x39,0x39,0xab,0xa,0x26,0xd,0x0,0x71,0x42,0xe0,0xe0,0xf1,0x1f,0xff,
0xcf,0x57,0xbf,0xfa,0xeb,0x59,0xf7,0x5a,0x79,0xf4,0xe8,0x91,0x56,0x56,0x56,0xfa,
0x2f,0xfc,0xe1,0xef,0x97,0x2b,0x95,0xca,0x58,0x3f,0xbf,0xac,0xe0,0xe7,0x6e,0x67,
0x85,0xbc,0xb4,0x20,0x58,0x34,0xfc,0x25,0xfd,0x23,0x51,0xf9,0x3,0x0,0x0,0x79,
0xe5,0x69,0xf6,0xf5,0xbd,0x4e,0xa,0x81,0xbe,0x16,0x50,0xdb,0xdf,0xcf,0x7d,0xd8,
0xe6,0xde,0xd3,0xd3,0x53,0xf5,0x7a,0xbd,0x61,0x7f,0xc0,0xb1,0xe9,0x5f,0x6,0x4d,
0xc0,0x76,0xea,0x17,0x3b,0x0,0x24,0x8a,0xa2,0xad,0xff,0xfb,0xc6,0x1b,0xdf,0x4c,
0xbb,0xb7,0xca,0x3f,0xfc,0xc3,0x3f,0x78,0x57,0xf7,0x18,0x6c,0xaf,0x4b,0xfa,0xbb,
0xc1,0x4a,0x1e,0xb9,0x6e,0x38,0xed,0x66,0xed,0x8d,0xc6,0x3,0x5f,0x5a,0x8,0xcc,
0xa,0x7f,0xbe,0xe7,0xac,0xeb,0x4c,0x43,0x8,0x4,0x0,0x0,0x71,0x49,0xf9,0x20,
0xad,0x49,0xd7,0x3e,0x27,0x3d,0x6c,0xb8,0x73,0x83,0xdf,0xa9,0x13,0xfe,0x8a,0x4e,
0xff,0x32,0x58,0x13,0xf8,0x7e,0x14,0x45,0x3f,0xf8,0x67,0x5f,0xfb,0x5a,0xe2,0x1a,
0x70,0xab,0x19,0xf7,0xfa,0x5b,0x92,0x9e,0xcb,0x73,0xc3,0x49,0xcd,0xbe,0x59,0x95,
0xbf,0x49,0xc2,0x9f,0xfb,0x1d,0xbe,0x1f,0x3a,0xed,0x1f,0x23,0xb,0xe1,0xf,0x0,
0x0,0xe4,0x91,0xd6,0x14,0x9c,0xd4,0x32,0xe9,0x9e,0x37,0xf2,0x48,0xea,0xf3,0x37,
0x68,0xd2,0x75,0xb7,0x47,0xaa,0x7f,0x83,0x65,0xe0,0x9c,0xe9,0x5f,0x5e,0x8e,0xa2,
0xe8,0x53,0x92,0xbe,0x98,0x74,0xdd,0x69,0x95,0xbf,0x8f,0x4b,0xfa,0x4a,0x9e,0x1b,
0xce,0x53,0xda,0xf4,0x55,0xf9,0xf2,0x84,0x3f,0xbb,0x1d,0xff,0x7c,0xf7,0x75,0xd2,
0xf5,0x24,0x5d,0x2f,0x0,0x0,0x58,0xe,0xe7,0xf9,0xf7,0xbf,0x48,0xf3,0x6f,0x14,
0x45,0xfd,0xca,0xdf,0xc9,0x89,0x4e,0x4e,0x4f,0xfb,0xfd,0xfe,0x9c,0xaa,0x9f,0x7d,
0xd8,0x29,0x60,0x86,0xcf,0xf1,0xea,0x5f,0x10,0xf4,0x7,0x81,0xb8,0xd3,0xbf,0x44,
0xd1,0x3b,0x51,0x14,0x6d,0xfc,0xe5,0x5f,0xfd,0xd5,0x77,0x7d,0xd7,0x99,0x54,0xf9,
0x7b,0x41,0xd2,0xaf,0x65,0xdd,0x98,0x7b,0x33,0xbe,0x1b,0xcb,0x1b,0xfc,0x8a,0x54,
0xff,0x7c,0xdf,0x99,0xf4,0x83,0x27,0xbd,0x4e,0x42,0x40,0x4,0x0,0x0,0x65,0xc8,
0xaa,0x0,0x1a,0x63,0x86,0xeb,0xf8,0x1a,0xcf,0xdc,0x7f,0xc3,0x91,0xbe,0xce,0x88,
0xdf,0xa8,0x3f,0xad,0xcb,0xd8,0xa0,0xf,0x77,0xe9,0xb7,0xc1,0xf4,0x2f,0x2f,0x46,
0x51,0xf4,0xab,0x92,0x3e,0xe1,0xbb,0xb6,0xd5,0xd8,0x94,0x2e,0xd6,0xa7,0x8c,0x31,
0xef,0x75,0x8f,0x25,0x55,0xd3,0xf2,0xb4,0x69,0x27,0x5,0x3f,0x7b,0x23,0xbe,0x26,
0xe0,0x49,0x9a,0x7d,0xd3,0xb6,0x93,0xfe,0x51,0x0,0x0,0x0,0xb2,0x24,0xe4,0xa5,
0x11,0x59,0x2d,0x8f,0x63,0xd9,0xc8,0x98,0xfe,0x23,0x63,0x9a,0x17,0xdb,0x9f,0x6f,
0xa4,0x9,0xd8,0x99,0x2,0x26,0x1a,0x84,0x3e,0x77,0xee,0xbf,0x28,0x8a,0x3e,0xfe,
0x43,0x9b,0x9b,0x9f,0x7d,0x6b,0x67,0xe7,0xed,0xf8,0x35,0xf9,0x2a,0x7f,0xcf,0x49,
0xfa,0x4c,0xd2,0x4d,0xb8,0xfb,0xf3,0x34,0xf7,0xfa,0x66,0xb2,0x76,0x2f,0xdc,0x57,
0xfd,0x9b,0xb6,0xf2,0x97,0x76,0xed,0x79,0x8f,0x3,0x0,0x80,0xe5,0x93,0x14,0xf2,
0xa6,0xc9,0xd,0xf1,0xfc,0x32,0x96,0x7f,0x7c,0xfb,0x62,0x21,0xcf,0x36,0x13,0xdb,
0xd7,0x6e,0xb5,0x6f,0x6c,0xee,0xbf,0xfe,0x79,0x57,0xa2,0x28,0xfa,0x8c,0xa4,0x4f,
0xc6,0xaf,0x67,0x35,0x7e,0x71,0x95,0x4a,0xe5,0xa7,0x25,0xbd,0x27,0xcf,0xd,0xb8,
0x37,0x52,0xb4,0xda,0x17,0xf,0x80,0x79,0x9a,0x7c,0x8b,0x36,0xf7,0x26,0xed,0x3,
0x0,0x0,0xf0,0xc9,0xca,0xd,0x79,0x2a,0x80,0x49,0x9f,0x99,0x18,0xfe,0x32,0x2,
0x60,0xe8,0x6e,0xbb,0xd5,0x3e,0xb7,0xa9,0x37,0x36,0xed,0xcb,0x20,0x4b,0xbd,0xfe,
0xf2,0xed,0xdb,0xbf,0x72,0x7f,0x6f,0xaf,0xed,0x5e,0x4f,0xbc,0xf2,0x77,0xc5,0x18,
0xf3,0xf3,0xbe,0x1b,0xf3,0x95,0x2d,0xdd,0x6d,0x5f,0x3f,0xbf,0xa4,0x1b,0x4c,0xaa,
0xfc,0x95,0x1d,0xfc,0xd2,0xf6,0x3,0x0,0x0,0xe4,0x65,0xb3,0xd1,0xa4,0xb9,0x62,
0x2c,0x23,0xb9,0x79,0x27,0xa5,0xea,0xe7,0x2d,0x9e,0x9d,0x4d,0xeb,0x32,0xba,0xfa,
0x87,0x53,0xd,0x1c,0xb0,0xad,0xb9,0x9f,0x76,0xaf,0x65,0x25,0x76,0x13,0x3f,0x26,
0x69,0x2d,0xab,0xb9,0x35,0x4f,0xf0,0xcb,0xa,0x80,0x59,0xcd,0xbf,0x49,0xcd,0xc1,
0x69,0x4d,0xc0,0xbe,0x6b,0x2,0x0,0x0,0x98,0x56,0x56,0x61,0x2a,0xeb,0x3d,0xee,
0xeb,0x28,0x8a,0x64,0xdc,0xe3,0xfd,0x83,0xe3,0x7d,0x1,0x63,0x5d,0xe6,0x42,0xa7,
0x12,0x18,0xef,0xeb,0xe7,0x9,0x7e,0xd6,0x4f,0xbf,0x7c,0xfb,0xf6,0xb,0xee,0x8e,
0x15,0xf7,0x2,0x25,0xbd,0x9e,0x76,0xf1,0x59,0x37,0xef,0x6b,0xbe,0x4d,0xb,0x7b,
0xbe,0x73,0xd2,0x3e,0x3f,0x4f,0xe8,0x3,0x0,0x0,0x38,0x4f,0x79,0x42,0xa1,0xb7,
0x15,0x73,0xf0,0x30,0x83,0xc0,0xe7,0x1e,0x4b,0xac,0x4,0x3a,0xcd,0xbe,0x3d,0x67,
0x20,0x88,0x3d,0xee,0xf1,0xbc,0xa4,0x8f,0xb9,0x3b,0x56,0x9c,0xed,0x17,0x8d,0x31,
0xff,0x72,0x9a,0xaa,0x5f,0x3c,0x8,0x26,0xf5,0xe7,0xcb,0x1a,0xe8,0x11,0xdf,0x37,
0xfc,0x91,0x44,0xe8,0x3,0x0,0x0,0xf3,0x65,0x2c,0xa7,0xa4,0x74,0x55,0xb3,0xf9,
0x67,0x18,0xa,0x33,0x5a,0x4f,0xc3,0xd1,0x3e,0x7e,0x49,0x97,0x30,0x52,0xdc,0x5b,
0x71,0x2e,0xea,0xe3,0xea,0xb7,0xd,0x8f,0x5d,0xc8,0x24,0x55,0xbf,0xa4,0x20,0xe8,
0xb,0x81,0xee,0xeb,0xa4,0xc0,0x17,0xff,0xf1,0x8,0x7d,0x0,0x0,0xe0,0xb2,0xf3,
0x65,0x98,0x3c,0xef,0x89,0x62,0xcd,0xc1,0xf1,0xec,0xe4,0x4e,0xfd,0x62,0xc3,0x5f,
0x8a,0xf,0xbd,0x7c,0xfb,0xf6,0x9a,0x7d,0xb1,0xe2,0x5c,0xd4,0x4f,0x4e,0x5b,0xf5,
0x4b,0xab,0xee,0x25,0x55,0xf5,0x8a,0x3c,0xe2,0x3f,0x24,0x0,0x0,0xc0,0x65,0x95,
0x98,0x57,0xec,0xc0,0xda,0x4a,0xe5,0x6c,0xdb,0xd3,0x24,0xec,0x36,0x7,0x1b,0x4f,
0x25,0x30,0x47,0xc5,0xcf,0xba,0xa2,0x7e,0x91,0x4f,0xd2,0x59,0xb3,0xef,0x8b,0x92,
0x3e,0xe0,0xbb,0xe8,0x22,0x55,0x3f,0xdf,0x79,0xbe,0xca,0x5e,0xd6,0x8,0x5f,0xf7,
0x7,0xf3,0xb5,0x99,0x3,0x0,0x0,0xcc,0xb3,0xb1,0x99,0x55,0x62,0xa3,0x89,0xcd,
0xa0,0xf2,0x37,0x12,0xf8,0x8c,0x7f,0x52,0xe8,0x9c,0xd9,0xe8,0x47,0xec,0x86,0x6d,
0xf6,0xfd,0xb0,0x31,0xe6,0xca,0xb4,0x7d,0xfd,0xe2,0x21,0x2e,0x69,0xe4,0x6f,0x56,
0x75,0x8f,0x66,0x5e,0x0,0x0,0x30,0xcf,0xb2,0x32,0x4b,0x45,0xfd,0x0,0x68,0x1f,
0xb1,0x37,0x8f,0x34,0xf9,0xda,0xcf,0x4b,0x6a,0x59,0xcd,0xe9,0x3,0x2f,0xdf,0xbe,
0xfd,0xbc,0x74,0xd6,0xec,0xfb,0x8a,0xef,0xa2,0x7d,0x61,0x2c,0xeb,0x91,0xd4,0xb4,
0x9b,0x27,0x0,0xc6,0xbf,0x2b,0xef,0xf,0x8,0x0,0x0,0x30,0x2f,0x2a,0x83,0xe6,
0xde,0x8a,0xfa,0x21,0x50,0x19,0xab,0x8a,0x78,0x33,0x55,0x6c,0x9c,0x44,0xe,0xcf,
0x4b,0xfa,0x21,0xe9,0xac,0xf2,0xf7,0xc1,0xac,0xaa,0x5f,0xde,0x6a,0x5f,0x9e,0xe3,
0xf1,0xcf,0x8e,0xdf,0x24,0xc1,0xf,0x0,0x0,0x2c,0xa2,0x91,0x4a,0x9f,0xd3,0xe7,
0xcf,0x56,0x2,0x5d,0x76,0x2e,0x40,0xc9,0xc9,0x4d,0x83,0xe0,0x97,0x32,0xb5,0x4b,
0x9a,0x1f,0x91,0xfa,0xe1,0xaf,0x2e,0xe9,0x7d,0xf1,0xa3,0x79,0xab,0x7e,0x69,0xc7,
0x92,0x82,0x60,0x9e,0xca,0x5f,0x7c,0x1b,0x0,0x0,0x60,0x5e,0xd9,0x60,0xe7,0x3e,
0xf,0x1f,0x9e,0xf3,0x94,0x90,0xb1,0xec,0x28,0xe0,0x9,0xbb,0xc3,0x7d,0x40,0x92,
0x56,0x8d,0x31,0x2f,0x27,0x9d,0x91,0x54,0xa5,0xcb,0x1b,0xf6,0xf2,0x3e,0xe2,0xdf,
0x17,0xdf,0x6,0x0,0x0,0x98,0x27,0x95,0x4a,0x65,0x2c,0xcb,0xb8,0xfb,0x2a,0x4e,
0xb3,0x6f,0x65,0x65,0x25,0xb1,0xef,0x5f,0xff,0xc9,0xc9,0x4c,0xc6,0x4c,0xd2,0xdf,
0xcf,0xda,0x94,0xfa,0x6b,0xfb,0xde,0x8e,0x1f,0x89,0x87,0xb0,0xa4,0xa6,0xd9,0x69,
0xc2,0x5e,0x5a,0xd0,0x23,0xf8,0x1,0x0,0x80,0x85,0xe7,0x4e,0xf5,0x92,0xd0,0xef,
0xcf,0x1a,0x6,0xbf,0xc1,0xf3,0x84,0xea,0x2f,0xdf,0xbe,0xbd,0xb6,0x6a,0x8c,0x19,
0x6b,0xf2,0x1d,0x7e,0x89,0x92,0xc3,0x9e,0x7b,0x5e,0x19,0x95,0x3f,0x2,0x1f,0x0,
0x0,0x58,0x24,0xf1,0xea,0x9f,0x7d,0x3d,0xd2,0xe4,0x1b,0x6b,0xf6,0x75,0xc5,0x33,
0x57,0xe4,0x4,0xc0,0x9,0xfa,0xfb,0x59,0xeb,0xab,0x92,0xd6,0xe2,0x7b,0xf3,0xf6,
0xf7,0x2b,0xda,0x14,0x1c,0x3f,0x2f,0xfe,0x7d,0xf1,0x6d,0x0,0x0,0x80,0x45,0x32,
0xd6,0xe7,0x4f,0xf2,0x6,0x40,0x6f,0x2b,0xec,0xf4,0x95,0x3f,0x49,0xfa,0xfe,0x15,
0x39,0xe1,0xcf,0x57,0x89,0x9b,0x24,0xec,0xe5,0xf9,0xac,0xf8,0x8d,0xf9,0x5e,0x3,
0x0,0x0,0xcc,0xb3,0xb1,0x7e,0x7c,0xe3,0x27,0xf4,0xa7,0x7d,0xf1,0xf5,0xf9,0x53,
0x2c,0x6f,0xf5,0x77,0x4c,0x53,0xf5,0x93,0xa4,0xb5,0x55,0x63,0xcc,0x35,0xdf,0x17,
0xc5,0xbf,0x30,0xe9,0xb8,0xfb,0x9c,0xf4,0xfe,0xf8,0x76,0xda,0x67,0x1,0x0,0x0,
0x2c,0xaa,0xb1,0x41,0x1f,0x4e,0x9f,0xbf,0x4a,0xac,0xff,0x5f,0x3c,0x19,0x95,0xd4,
0x5d,0xee,0xc5,0x15,0xf5,0x97,0x76,0xf3,0x7e,0x68,0xde,0xbe,0x7d,0x49,0xc7,0xd3,
0x3e,0x37,0x29,0xc,0x2,0x0,0x0,0x2c,0x92,0x78,0x45,0x6f,0xa4,0xc9,0x57,0xd2,
0x8a,0x73,0x3c,0xb1,0x52,0x68,0x73,0x94,0xa6,0x2e,0x98,0x5d,0x5b,0x35,0xc6,0x3c,
0x3f,0xfa,0xd9,0xe9,0x4d,0xb5,0xbe,0xf3,0xf2,0xc,0x4,0x71,0xdf,0x33,0x7e,0x3f,
0x84,0x40,0x0,0x0,0xb0,0x3c,0xec,0x2a,0x1f,0xc3,0x66,0xdf,0x8c,0xf3,0xed,0x3a,
0xbf,0x9a,0xbe,0x80,0xf6,0xc2,0xca,0xc8,0x7,0x27,0x4,0x3f,0xf7,0x78,0x52,0x5f,
0xbe,0xf8,0x39,0x89,0x17,0x4f,0xd0,0x3,0x0,0x0,0x4b,0xa6,0x92,0xa7,0xba,0x97,
0x60,0x98,0xb7,0x54,0x4a,0x8e,0xba,0xb2,0x9a,0xd5,0x9f,0x2f,0xbe,0x6d,0x5f,0x17,
0x9,0x8a,0x79,0x6,0x83,0x0,0x0,0x0,0x2c,0x13,0xb7,0xcf,0x5f,0xfc,0x39,0xce,
0xd,0x80,0x53,0xca,0x5f,0xf9,0x4b,0x6a,0xda,0x75,0x9f,0xe3,0xef,0x49,0xbb,0x78,
0x0,0x0,0x80,0x65,0xe2,0xed,0xfb,0x27,0xa7,0x9,0xd8,0x63,0x24,0x57,0x19,0x33,
0x6c,0xf6,0x9d,0xc6,0x30,0xfc,0x15,0x99,0x76,0x25,0xad,0xf,0x60,0xfc,0x75,0x5a,
0x85,0x8f,0x20,0x8,0x0,0x0,0x96,0xd1,0xc8,0x28,0xdf,0xf8,0x3e,0x9f,0x8c,0xd9,
0x53,0x8a,0x48,0x6c,0xf6,0x75,0xb7,0xd3,0x46,0xe8,0x16,0xe9,0x13,0x48,0x53,0x2f,
0x0,0x0,0x40,0x2c,0xe8,0xe5,0xec,0x3,0x68,0x8c,0x29,0xa3,0xd9,0x57,0xa9,0xcd,
0xbe,0x99,0x17,0x30,0x45,0xa,0x25,0x0,0x2,0x0,0x80,0x65,0x93,0x54,0xdd,0xab,
0x24,0x1c,0x1b,0x19,0xec,0x51,0xd2,0x35,0x8c,0x35,0xfb,0xa6,0x4d,0xf5,0x92,0xd6,
0xef,0x2f,0x9,0xd5,0x3e,0x0,0x0,0x80,0x71,0x49,0xab,0x7a,0xc,0x39,0x7d,0xfd,
0xca,0xcc,0x51,0x63,0xcd,0xbe,0xfd,0xef,0x98,0xec,0xb,0xf2,0xcc,0xeb,0x47,0x8,
0x4,0x0,0x0,0xf0,0xaf,0xe9,0x9b,0xa9,0x84,0x1c,0xe5,0x6d,0xf6,0x4d,0x7a,0x3d,
0xfe,0xfd,0xc5,0x42,0x1e,0xc1,0xf,0x0,0x0,0x2c,0xbb,0xa4,0x15,0x3f,0x92,0xc,
0xd3,0x53,0x49,0x39,0x2a,0xb1,0xd9,0xd7,0xdd,0x9f,0x67,0x5f,0x1a,0x42,0x1f,0x0,
0x0,0x80,0xc7,0x84,0x13,0x3e,0x4f,0x63,0x25,0xe9,0x83,0x92,0x2,0x5f,0x9e,0x49,
0xa1,0xcb,0xbe,0x48,0x0,0x0,0x80,0x45,0x95,0x37,0xfe,0x95,0x35,0x8e,0x22,0xb5,
0xd9,0xb7,0xa8,0xbc,0x17,0x45,0x20,0x4,0x0,0x0,0x70,0xa4,0x35,0xfb,0xe,0x26,
0x77,0x1e,0x6e,0x4f,0x69,0x65,0x9a,0xd5,0x38,0xf2,0x2c,0x5,0x97,0xf7,0xb3,0x0,
0x0,0x0,0x70,0x66,0xac,0xb5,0xb5,0xa4,0xcf,0x5d,0xc9,0x3a,0x61,0x9a,0xd0,0x46,
0xe0,0x3,0x0,0x0,0xb8,0x5c,0xbc,0xcb,0xbb,0x11,0xda,0x0,0x0,0x0,0xce,0x89,
0x6f,0x72,0xe7,0x8c,0xd7,0xd3,0xc8,0xac,0xfc,0x49,0x93,0x4d,0xdb,0x42,0x80,0x4,
0x0,0x0,0xb8,0x7c,0x12,0xc3,0x5f,0xde,0xd1,0xbe,0x0,0x0,0x0,0x98,0x1f,0x89,
0x53,0xbd,0xa4,0xa1,0x89,0x18,0x0,0x0,0x60,0x7a,0xa9,0xcb,0xbb,0x39,0xca,0xcc,
0x5b,0x63,0x95,0xbf,0x69,0x96,0x76,0x3,0x0,0x0,0x40,0x79,0x46,0xf2,0x55,0xd9,
0x2b,0x7c,0x0,0x0,0x0,0xe0,0x12,0x2a,0xb9,0xc0,0x96,0x3a,0xcf,0x5f,0xd9,0xa8,
0xe,0x2,0x0,0x0,0xe4,0x33,0xab,0xd4,0x94,0x5a,0xf9,0x9b,0x45,0x58,0x23,0x0,
0x2,0x0,0x0,0x5c,0x9c,0x73,0x69,0xf6,0x25,0xf0,0x1,0x0,0x0,0x94,0xa3,0xd4,
0xb5,0x7d,0x1,0x0,0x0,0xb0,0xd8,0x8,0x7f,0x0,0x0,0x0,0x4b,0x84,0xf0,0x7,
0x0,0x0,0x30,0x7,0xca,0xea,0x46,0x47,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,0x3f,
0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,0x3f,0x0,0x0,0x80,
0x25,0x42,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,0x3f,0x0,0x0,0x80,0x25,0x42,0xf8,
0x3,0x0,0x0,0x58,0x22,0x84,0x3f,0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,
0x58,0x22,0x84,0x3f,0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,0x58,0x22,0x84,
0x3f,0x60,0xc6,0xaa,0xd5,0xaa,0xd6,0xd7,0xd7,0xd5,0x6c,0x36,0x2f,0xfa,0x52,0x0,
0x0,0xd0,0xea,0x45,0x5f,0x0,0xb0,0x88,0x1a,0x8d,0x86,0xae,0x5d,0xbb,0xa6,0x46,
0xa3,0xa1,0x46,0xa3,0x31,0xdc,0xbf,0xb3,0xb3,0xa3,0x76,0xbb,0x7d,0x81,0x57,0x6,
0x0,0x58,0x76,0x84,0x3f,0x60,0x4a,0xb5,0x5a,0x4d,0x8d,0x46,0x43,0x57,0xaf,0x5e,
0x55,0xa3,0xd1,0x50,0xbd,0x5e,0x4f,0x3c,0x77,0x73,0x73,0x53,0x47,0x47,0x47,0x3a,
0x3a,0x3a,0x3a,0xc7,0x2b,0xc4,0x32,0xb0,0x15,0xe6,0x49,0x1c,0x1c,0x1c,0xa4,0x1e,
0xef,0x76,0xbb,0xea,0x76,0xbb,0x13,0x7d,0xf6,0x65,0x54,0xab,0xd5,0x54,0xab,0xd5,
0x32,0xcf,0xbb,0x7a,0xf5,0xaa,0xaa,0xd5,0x6a,0xae,0xcf,0x6c,0xb5,0x5a,0xa,0x82,
0x60,0xda,0x4b,0x3,0xce,0x5,0xe1,0xf,0x98,0xc2,0xad,0x5b,0xb7,0x74,0xf3,0xe6,
0xcd,0x42,0xef,0xd9,0xda,0xda,0xd2,0xdd,0xbb,0x77,0x9,0x80,0x28,0xd5,0xab,0xaf,
0xbe,0x9a,0x3b,0xa8,0xc4,0x15,0xfd,0xcf,0xb0,0xcf,0xe1,0xe1,0x61,0xe6,0x39,0x47,
0x47,0x47,0x13,0x5,0xa4,0x7a,0xbd,0x9e,0xeb,0xde,0xaa,0xd5,0x6a,0xea,0xff,0xf9,
0x9a,0xa5,0x7a,0xbd,0xae,0x7b,0xf7,0xee,0x5d,0xc8,0x77,0x3,0x45,0x11,0xfe,0x80,
0x29,0xb4,0x5a,0x2d,0x35,0x9b,0xcd,0x42,0x7f,0x70,0xaa,0xd5,0xaa,0xb6,0xb6,0xb6,
0xf4,0xe6,0x9b,0x6f,0x52,0x29,0x40,0x69,0x26,0xd,0x7e,0x65,0x71,0xbb,0x37,0x4c,
0x73,0xce,0xbc,0xba,0xe8,0xdf,0x1f,0x28,0x82,0x1,0x1f,0xc0,0x14,0x82,0x20,0xd0,
0xbd,0x7b,0xf7,0xa,0x87,0x38,0x1b,0x0,0x1,0x0,0x38,0x6f,0x84,0x3f,0x60,0x4a,
0xdd,0x6e,0x57,0x77,0xef,0xde,0x2d,0xfc,0xbe,0x7a,0xbd,0xae,0xcd,0xcd,0xcd,0x19,
0x5c,0x11,0x0,0x0,0xc9,0x8,0x7f,0x40,0x9,0x8e,0x8e,0x8e,0xb4,0xb7,0xb7,0x57,
0xf8,0x7d,0x6b,0x6b,0x6b,0x5a,0x5b,0x5b,0x9b,0xc1,0x15,0x1,0x0,0xe0,0x47,0xf8,
0x3,0x4a,0xd2,0x6a,0xb5,0xd4,0xe9,0x74,0xa,0xbf,0x6f,0x63,0x63,0xe3,0xc2,0x3a,
0xa9,0x3,0x0,0x96,0xf,0xe1,0xf,0x28,0xd1,0xce,0xce,0xce,0x44,0xfd,0xff,0x68,
0xfe,0x5,0x0,0x9c,0x17,0xc2,0x1f,0x50,0xa2,0x20,0x8,0xb4,0xbb,0xbb,0x5b,0xf8,
0x7d,0xf5,0x7a,0x9d,0xe6,0x5f,0x0,0xc0,0xb9,0x20,0xfc,0x1,0x25,0x6b,0xb7,0xdb,
0xb9,0xe6,0x3c,0x8b,0xdb,0xd8,0xd8,0x60,0xba,0x8,0x0,0xc0,0xcc,0x11,0xfe,0x80,
0x19,0x98,0xa4,0xfa,0x37,0xcd,0xa,0xd,0x0,0x0,0xe4,0xc5,0x24,0xcf,0xc0,0xc,
0x1c,0x1d,0x1d,0xa9,0xdd,0x6e,0x17,0x6e,0xca,0xbd,0x71,0xe3,0x6,0xcb,0x44,0x61,
0x22,0x41,0x10,0x94,0x56,0x39,0x2e,0x6b,0xb5,0x8e,0xa7,0x4f,0x9f,0xe,0x97,0x85,
0xbb,0x73,0xe7,0x4e,0xee,0xeb,0xb3,0xf3,0x67,0x5a,0xd7,0xae,0x5d,0x4b,0x3d,0x3f,
0x6b,0xb9,0xb6,0xbc,0xcb,0xb9,0x4d,0x63,0x91,0x96,0xbf,0xc3,0xe2,0x23,0xfc,0x1,
0x33,0xf2,0xe0,0xc1,0x3,0x35,0x9b,0xcd,0x42,0x7f,0x90,0xab,0xd5,0xaa,0x6e,0xdd,
0xba,0x35,0x51,0xe5,0x10,0xcb,0x6d,0x7b,0x7b,0x3b,0x33,0xe0,0x5c,0xd4,0x1a,0xbd,
0x79,0x97,0x67,0xb3,0xe2,0x5d,0x27,0x26,0xe9,0x46,0x51,0x44,0x19,0xcb,0xc2,0x11,
0xfe,0x30,0x4f,0x8,0x7f,0xc0,0x8c,0x74,0xbb,0x5d,0x3d,0x7a,0xf4,0xa8,0xd0,0xba,
0xa9,0xdd,0x6e,0x97,0xaa,0x1f,0x26,0x72,0x51,0xc1,0x2e,0x8f,0xeb,0xd7,0xaf,0x17,
0x3a,0xbf,0xd5,0x6a,0xcd,0xe8,0x4a,0xfc,0x82,0x20,0x98,0x79,0xc0,0x4,0x2e,0x13,
0xc2,0x1f,0x30,0x43,0xad,0x56,0x4b,0x37,0x6e,0xdc,0x48,0xac,0x7a,0x1c,0x1e,0x1e,
0xaa,0xdb,0xed,0xea,0xe0,0xe0,0x60,0xb8,0xd,0x2c,0x9a,0x66,0xb3,0x99,0xfb,0xdc,
0xa3,0xa3,0x23,0xfe,0x7b,0x0,0xcc,0x18,0xe1,0xf,0x98,0x21,0x3b,0xf5,0xcb,0xe6,
0xe6,0xa6,0xba,0xdd,0xae,0xe,0xf,0xf,0x9,0x7a,0x58,0x2a,0xb5,0x5a,0xad,0x50,
0x93,0x6a,0xbb,0xdd,0x9e,0xe1,0xd5,0x0,0x90,0x8,0x7f,0x98,0x73,0xb5,0x5a,0x4d,
0xaf,0xbe,0xfa,0x6a,0xe6,0x79,0x41,0x10,0xe8,0xe8,0xe8,0x28,0xf3,0xbc,0xac,0x4e,
0xec,0x7,0x7,0x7,0xa9,0xef,0xf7,0x35,0xbd,0xb5,0xdb,0x6d,0x1d,0x1d,0x1d,0xe5,
0xfa,0xfe,0x34,0x79,0x3b,0xad,0xd7,0x6a,0x35,0x7d,0xdf,0xf7,0x7d,0x5f,0xea,0x39,
0x79,0xfa,0x38,0x35,0x1a,0x8d,0x91,0xd7,0x41,0x10,0xe8,0xee,0xdd,0xbb,0x53,0xdf,
0x7,0x96,0x4b,0xd1,0x26,0xdf,0xfd,0xfd,0xfd,0x19,0x5d,0x9,0x0,0x8b,0xf0,0x87,
0xb9,0x96,0x77,0x4,0x5f,0xb5,0x5a,0x1d,0xb,0x33,0x3e,0x59,0xe7,0x14,0xe9,0xbf,
0xb7,0x68,0xaa,0xd5,0xaa,0xae,0x5f,0xbf,0x4e,0xf8,0x43,0x21,0x37,0x6e,0xdc,0xc8,
0x7d,0x2e,0x4d,0xbe,0xc0,0xf9,0x60,0x9e,0x3f,0x0,0xc0,0x4c,0xd4,0xeb,0xf5,0x42,
0x53,0xac,0xd0,0xe4,0xb,0x9c,0xf,0xc2,0x1f,0x0,0x60,0x26,0x8a,0x4e,0x5a,0x9e,
0xd5,0xad,0x2,0x40,0x39,0x8,0x7f,0x0,0x80,0xd2,0xd5,0x6a,0xb5,0x42,0x93,0x9c,
0x97,0xd1,0x2f,0x16,0x40,0x3e,0x84,0x3f,0x0,0x40,0xe9,0x6e,0xdd,0xba,0x55,0xe8,
0x7c,0x9a,0x7c,0x81,0xf3,0x43,0xf8,0x3,0x0,0x94,0xaa,0x68,0xd5,0x4f,0x92,0x1e,
0x3f,0x7e,0x3c,0xa3,0xab,0x1,0x10,0xc7,0x68,0x5f,0x0,0x58,0x52,0xd5,0x6a,0x75,
0xa4,0x5f,0x9e,0xbb,0x16,0xaf,0x94,0x6f,0xfd,0x5e,0x9f,0x8d,0x8d,0x8d,0x42,0xe7,
0x77,0x3a,0x9d,0x73,0x5d,0xd9,0x26,0xbe,0xdc,0x9c,0x3b,0x3d,0x52,0x10,0x4,0xe7,
0xbe,0xc2,0x8,0x70,0xde,0x8,0x7f,0x0,0xb0,0xa4,0xd6,0xd7,0xd7,0x2f,0xc5,0xf4,
0x45,0xcd,0x66,0x53,0xaf,0xbd,0xf6,0xda,0x45,0x5f,0xc6,0x50,0xa3,0xd1,0xd0,0xbd,
0x7b,0xf7,0x2e,0xfa,0x32,0x80,0x99,0xa1,0xd9,0x17,0x0,0x0,0x47,0xd2,0x72,0x8c,
0xc0,0xa2,0xa0,0xf2,0x7,0xe4,0xe4,0x5b,0xbd,0x23,0x4b,0x9e,0x89,0xa5,0x5d,0x69,
0xcd,0x6c,0x79,0x57,0xf8,0x0,0x0,0x20,0xd,0xe1,0xf,0x73,0xed,0xf0,0xf0,0x50,
0x9d,0x4e,0x67,0xe4,0xff,0xa9,0x4f,0xb3,0x44,0xdb,0x24,0x1,0x2f,0x4d,0xd1,0xa6,
0xac,0xdd,0xdd,0x5d,0x1d,0x1e,0x1e,0x4e,0xfc,0x7d,0xf1,0xbe,0x4c,0xae,0x6a,0xb5,
0xaa,0xab,0x57,0xaf,0xa6,0xbe,0x3f,0x6d,0xd9,0xb7,0x20,0x8,0x98,0x87,0xd,0x0,
0x16,0x0,0xe1,0xf,0x73,0x8f,0xbe,0x39,0x67,0xb2,0xe6,0x49,0xeb,0x74,0x3a,0xe7,
0x74,0x25,0x0,0x80,0xcb,0x8a,0x3e,0x7f,0x0,0x0,0x0,0x4b,0x84,0xf0,0x7,0x0,
0x0,0xb0,0x44,0x8,0x7f,0x0,0x0,0x0,0x4b,0x84,0xf0,0x7,0x0,0x0,0xb0,0x44,
0x8,0x7f,0x0,0x0,0x0,0x4b,0x84,0xd1,0xbe,0x0,0x80,0x5c,0xf6,0xf6,0xf6,0xf4,
0xe4,0xc9,0x93,0x8b,0xbe,0x8c,0x89,0x6c,0x6c,0x6c,0x24,0x4e,0x63,0x4,0x2c,0x1b,
0xc2,0x1f,0x0,0x20,0x97,0x27,0x4f,0x9e,0x4c,0x35,0xf,0xe5,0x45,0x3a,0xcf,0xb5,
0x83,0x81,0xcb,0x8e,0x66,0x5f,0x0,0x0,0x80,0x25,0x42,0xf8,0x3,0x0,0x0,0x58,
0x22,0x34,0xfb,0x2,0x0,0x2e,0xc4,0xfa,0xfa,0xba,0xaa,0xd5,0xaa,0x9e,0x3e,0x7d,
0xaa,0xa3,0xa3,0xa3,0xcc,0x15,0x6a,0x0,0x94,0x83,0xf0,0x7,0x0,0x38,0x77,0xcd,
0x66,0x53,0xb7,0x6f,0xdf,0x1e,0xd9,0x17,0x4,0x81,0x3a,0x9d,0x8e,0xe,0xe,0xe,
0xd4,0xe9,0x74,0xe8,0xa7,0x7,0xcc,0x8,0xe1,0xf,0x0,0x70,0xee,0xae,0x5e,0xbd,
0x3a,0xb6,0xaf,0x5a,0xad,0x6a,0x6d,0x6d,0x4d,0x6b,0x6b,0x6b,0x92,0xfa,0x6b,0x51,
0xef,0xef,0xef,0xab,0xdd,0x6e,0x9f,0xf7,0xe5,0x1,0xb,0x8d,0x3e,0x7f,0x0,0x80,
0x73,0x77,0x70,0x70,0x90,0x79,0x4e,0xb3,0xd9,0xd4,0xe6,0xe6,0xa6,0x3e,0xf2,0x91,
0x8f,0xe8,0xd6,0xad,0x5b,0xe7,0x70,0x55,0xc0,0x72,0x20,0xfc,0x1,0x0,0x2e,0xb5,
0x6a,0xb5,0xaa,0x9b,0x37,0x6f,0x6a,0x7d,0x7d,0xfd,0xa2,0x2f,0x5,0x58,0x8,0x84,
0x3f,0x0,0xc0,0x5c,0xd8,0xdf,0xdf,0xbf,0xe8,0x4b,0x0,0x16,0x2,0xe1,0xf,0x0,
0x70,0xe9,0xb5,0xdb,0x6d,0x75,0xbb,0xdd,0x8b,0xbe,0xc,0x60,0x21,0x10,0xfe,0x0,
0x0,0x97,0x5a,0x10,0x4,0x7a,0xf0,0xe0,0xc1,0x45,0x5f,0x6,0xb0,0x30,0x8,0x7f,
0x0,0x80,0x4b,0xed,0xd1,0xa3,0x47,0x54,0xfd,0x80,0x12,0x11,0xfe,0x0,0x0,0xe7,
0xae,0x5a,0xad,0xe6,0x3e,0xf7,0xf1,0xe3,0xc7,0x33,0xbc,0x12,0x60,0xf9,0x10,0xfe,
0x0,0x0,0xe7,0xce,0x37,0xcf,0x5f,0x12,0xaa,0x7e,0x40,0xb9,0x8,0x7f,0x0,0x80,
0x73,0x57,0xab,0xd5,0x72,0x9d,0x77,0x78,0x78,0x38,0xe3,0x2b,0x1,0x96,0xf,0xe1,
0xf,0x0,0x70,0xee,0xf2,0x86,0x3f,0xd6,0xfb,0x5,0xca,0xc7,0xf2,0x6e,0x58,0x48,
0xf5,0x7a,0x5d,0x5b,0x5b,0x5b,0xc3,0x7e,0x45,0xdd,0x6e,0x37,0xb5,0xe9,0x28,0x8,
0x82,0xc4,0x3f,0x32,0x4f,0x9e,0x3c,0x49,0x5c,0x63,0x34,0xeb,0x73,0xcb,0x54,0xaf,
0xd7,0x13,0xfb,0x49,0x5d,0xbd,0x7a,0xd5,0x7b,0xac,0x56,0xab,0x65,0xfe,0x91,0x6d,
0x34,0x1a,0x23,0xaf,0x1f,0x3e,0x7c,0xc8,0xc8,0x4a,0xcc,0x5c,0xfc,0x3f,0x77,0x49,
0x9e,0x3c,0x79,0x32,0xe3,0x2b,0x1,0x96,0xf,0xe1,0xf,0xb,0xe9,0xfa,0xf5,0xeb,
0x23,0x61,0x28,0x4f,0x8,0x6a,0x36,0x9b,0xb3,0xbe,0xac,0x4c,0x5b,0x5b,0x5b,0x17,
0x7d,0x9,0xb9,0xff,0x28,0x3,0x93,0x2a,0xf2,0x9f,0x31,0x9a,0x7d,0x81,0xf2,0xd1,
0xec,0xb,0x0,0x38,0x57,0x79,0x7,0x7b,0x4,0x41,0xc0,0x60,0xf,0x60,0x6,0x8,
0x7f,0x0,0x80,0x73,0x95,0xb7,0xf2,0x47,0xd5,0xf,0x98,0xd,0xc2,0x1f,0x0,0xe0,
0x5c,0x11,0xfe,0x80,0x8b,0x45,0xf8,0x3,0x0,0x9c,0x9b,0x46,0xa3,0x91,0x7b,0x82,
0xe7,0x83,0x83,0x83,0x19,0x5f,0x8d,0x5f,0xde,0x91,0xc8,0xc0,0xbc,0x22,0xfc,0x1,
0x0,0xce,0xcd,0xf5,0xeb,0xd7,0x73,0x9d,0x97,0x36,0x2,0x7f,0xd6,0x8,0x7f,0x58,
0x74,0x84,0x3f,0x0,0xc0,0xb9,0xc9,0x3b,0xaa,0xbe,0xd3,0xe9,0xcc,0xf8,0x4a,0x80,
0xe5,0x45,0xf8,0x3,0x0,0x9c,0x8b,0x7a,0xbd,0x9e,0xbb,0xaa,0x76,0x51,0x4d,0xbe,
0xc0,0x32,0x20,0xfc,0x1,0xc0,0x92,0xaa,0xd7,0xeb,0xe7,0xfa,0x7d,0x2f,0xbd,0xf4,
0x52,0xee,0x73,0xa9,0xfc,0x1,0xb3,0xc3,0x24,0xcf,0x40,0x49,0x7c,0x7d,0x94,0x8a,
0x4e,0x98,0x7c,0x74,0x74,0x34,0xb2,0x9a,0x48,0xda,0xaa,0x1e,0xc0,0xb4,0xce,0xfb,
0x3f,0x5b,0x6b,0x6b,0x6b,0xb9,0xce,0x8b,0xff,0xf7,0x0,0x40,0xb9,0x8,0x7f,0x58,
0x48,0xad,0x56,0xab,0xd0,0xf9,0x69,0x4b,0xb8,0x49,0x93,0x4f,0x39,0xf1,0xda,0x6b,
0xaf,0x15,0x3a,0x7f,0x77,0x77,0xb7,0xf0,0x77,0x65,0xad,0x5e,0x72,0xed,0xda,0xb5,
0x42,0x9f,0xb7,0xbf,0xbf,0x5f,0xe8,0x7c,0x20,0x8f,0x66,0xb3,0x99,0x3b,0x6c,0xb6,
0xdb,0xed,0x19,0x5f,0xd,0xb0,0xdc,0x8,0x7f,0x58,0x48,0x41,0x10,0x2c,0xcd,0xfa,
0xb4,0x59,0xeb,0xb,0x33,0x57,0x1a,0x2e,0x83,0x22,0x4d,0xbe,0xfc,0x1f,0x10,0x60,
0xb6,0xe8,0xf3,0x7,0x0,0x98,0xa9,0x5a,0xad,0x96,0x7b,0x94,0xef,0xd1,0xd1,0x11,
0x4b,0xba,0x1,0x33,0x46,0xf8,0x3,0x0,0xcc,0x54,0x91,0xaa,0x1f,0x4d,0xbe,0xc0,
0xec,0x11,0xfe,0x0,0x0,0x33,0x95,0x77,0xa0,0x87,0x44,0x93,0x2f,0x70,0x1e,0x8,
0x7f,0x0,0x80,0x99,0x59,0x5b,0x5b,0xcb,0x3d,0xb7,0x1f,0x4d,0xbe,0xc0,0xf9,0x20,
0xfc,0x1,0x0,0x66,0xe6,0xd6,0xad,0x5b,0xb9,0xcf,0x2d,0x3a,0x4a,0x1f,0xc0,0x64,
0x8,0x7f,0x0,0x80,0x99,0x28,0x52,0xf5,0x93,0x98,0xd8,0x19,0x38,0x2f,0x84,0x3f,
0x0,0xc0,0x4c,0x14,0xa9,0xfa,0xb5,0xdb,0xed,0x4b,0x35,0xb1,0x33,0x93,0xab,0x63,
0x91,0x11,0xfe,0x0,0x0,0xa5,0x5b,0x5f,0x5f,0x2f,0x54,0xf5,0xbb,0x6c,0x4d,0xbe,
0xe7,0xbd,0xf4,0x1d,0x70,0x9e,0x8,0x7f,0x0,0xb0,0xa4,0x8a,0x84,0xb3,0x22,0xaa,
0xd5,0xaa,0x6e,0xde,0xbc,0x99,0xfb,0xfc,0xc3,0xc3,0xc3,0xb1,0xa5,0x11,0x1,0xcc,
0xe,0x2b,0x7c,0x0,0xc0,0x92,0x9a,0x55,0xf8,0xdb,0xdc,0xdc,0x2c,0xd4,0x6c,0xfa,
0xf8,0xf1,0xe3,0xb1,0x7d,0x77,0xee,0xdc,0x51,0xad,0x56,0x53,0xb7,0xdb,0xd5,0xfe,
0xfe,0xbe,0x3a,0x9d,0xce,0xa5,0x6a,0x16,0x6,0xe6,0x19,0xe1,0xf,0x0,0x96,0xd0,
0xac,0xfa,0xb4,0xad,0xad,0xad,0xe5,0x5e,0xcd,0x43,0xea,0x2f,0x4f,0x18,0x9f,0xd8,
0xd9,0xfd,0x8c,0x7a,0xbd,0x3e,0xdc,0xee,0x74,0x3a,0xda,0xdf,0xdf,0x67,0x22,0x68,
0x60,0x4a,0x84,0x3f,0x0,0x58,0x42,0xb3,0xe8,0xd3,0x56,0xaf,0xd7,0xb5,0xb1,0xb1,
0x51,0xe8,0x3d,0xf1,0x35,0xb8,0xab,0xd5,0x6a,0xe2,0x40,0x91,0x66,0xb3,0xa9,0x66,
0xb3,0xa9,0x8d,0x8d,0xd,0xb5,0xdb,0x6d,0xb5,0x5a,0x2d,0xe6,0x5,0x4,0x26,0x40,
0xf8,0x3,0x80,0x25,0xd4,0xed,0x76,0x15,0x4,0x41,0x69,0x15,0xc0,0x6a,0xb5,0x5a,
0xb8,0xb9,0xd7,0x57,0xf5,0xcb,0x33,0x50,0xa4,0x5a,0xad,0xea,0xc6,0x8d,0x1b,0xba,
0x71,0xe3,0x86,0xe,0xf,0xf,0xd5,0x6a,0xb5,0x32,0xa7,0x89,0x69,0xb5,0x5a,0x6a,
0x34,0x1a,0xb9,0xae,0xab,0xdd,0x6e,0xeb,0xf0,0xf0,0x30,0xd7,0xb9,0xc0,0x3c,0x22,
0xfc,0x1,0xc0,0x12,0xea,0x76,0xbb,0xda,0xde,0xde,0xce,0xdd,0xef,0xaf,0xdb,0xed,
0x26,0x56,0xd9,0xaa,0xd5,0xaa,0xb6,0xb6,0xb6,0xa,0x57,0x13,0xe3,0x55,0xbf,0x5a,
0xad,0x56,0x68,0xa0,0x88,0x24,0x35,0x1a,0xd,0x35,0x1a,0xd,0x75,0xbb,0x5d,0x3d,
0x78,0xf0,0x20,0xb1,0x49,0xb8,0xd3,0xe9,0xe8,0xde,0xbd,0x7b,0xba,0x7a,0xf5,0x6a,
0xea,0xe7,0x5,0x41,0x70,0xe9,0x46,0x1e,0x3,0x65,0x23,0xfc,0x1,0xc0,0x92,0x4a,
0xb,0x74,0x79,0x4d,0x1a,0xfc,0x7c,0x55,0xbf,0xcd,0xcd,0xcd,0x89,0xaf,0xa3,0x56,
0xab,0x69,0x73,0x73,0x53,0x1b,0x1b,0x1b,0x7a,0xf4,0xe8,0x91,0x5a,0xad,0xd6,0xd8,
0x0,0x91,0x4e,0xa7,0xc3,0x44,0xd2,0x80,0x8,0x7f,0x0,0x80,0x9,0x4d,0x1a,0xfc,
0x24,0x69,0x67,0x67,0x67,0xe4,0x75,0xb3,0xd9,0xcc,0xdd,0x2c,0x9b,0x75,0x4d,0x37,
0x6f,0xde,0xd4,0x8d,0x1b,0x37,0x12,0x43,0x20,0xb0,0xec,0x8,0x7f,0x0,0x80,0xc2,
0xea,0xf5,0xba,0xb6,0xb6,0xb6,0x26,0xea,0x33,0xd8,0xe9,0x74,0xc6,0xfa,0xd4,0x15,
0x1d,0x28,0x92,0x85,0x10,0x8,0x24,0x23,0xfc,0x1,0x0,0xa,0x59,0x5b,0x5b,0x9b,
0xb8,0x89,0x36,0x8,0x2,0xed,0xee,0xee,0x8e,0xec,0x2b,0xba,0x1a,0x48,0x11,0x84,
0x40,0x60,0x1c,0xe1,0xf,0x0,0x90,0x8b,0x1d,0xd1,0x5b,0x64,0x1e,0xbf,0xb8,0x87,
0xf,0x1f,0x8e,0xf5,0x33,0x6c,0xb5,0x5a,0xda,0xdf,0xdf,0xd7,0xf5,0xeb,0xd7,0xd5,
0x68,0x34,0xa6,0xfa,0xfc,0x24,0x6e,0x8,0xdc,0xdd,0xdd,0x65,0xae,0x40,0x2c,0x35,
0xc2,0x1f,0x0,0x20,0x53,0xa3,0xd1,0xd0,0xe6,0xe6,0xe6,0x54,0x15,0xba,0x4e,0xa7,
0x93,0x38,0x92,0xb6,0xdb,0xed,0xaa,0xd5,0x6a,0xd,0x8f,0x37,0x9b,0x4d,0x5d,0xbf,
0x7e,0x5d,0xcd,0x66,0xb3,0xd4,0x9,0xa9,0x6d,0x80,0xbd,0x75,0xeb,0x96,0x76,0x76,
0x76,0x98,0xd2,0x5,0x4b,0x89,0xf0,0x7,0x0,0x48,0x54,0x46,0xb5,0x4f,0xea,0x87,
0xbb,0xf8,0x20,0x8f,0x34,0xee,0xc8,0xdc,0x66,0xb3,0xa9,0x97,0x5e,0x7a,0xa9,0xd4,
0x8a,0x60,0xad,0x56,0xd3,0xd6,0xd6,0x96,0xe,0xf,0xf,0xb5,0xb3,0xb3,0xc3,0x64,
0xd1,0x58,0x2a,0x84,0x3f,0x0,0xc0,0x98,0x6a,0xb5,0xaa,0xf5,0xf5,0x75,0xdd,0xb8,
0x71,0x63,0xea,0xca,0x5b,0x10,0x4,0xba,0x77,0xef,0xde,0xc4,0x7d,0xed,0x6c,0x10,
0xac,0xd5,0x6a,0x7a,0xe9,0xa5,0x97,0x4a,0xb9,0x26,0xab,0xd1,0x68,0xe8,0xd5,0x57,
0x5f,0xd5,0xc3,0x87,0xf,0xe9,0xf,0x88,0xa5,0x41,0xf8,0x3,0x0,0x8c,0x58,0x5b,
0x5b,0xd3,0xad,0x5b,0xb7,0x4a,0x1b,0x84,0xb1,0xb3,0xb3,0xa3,0xa3,0xa3,0xa3,0xa9,
0x3f,0xc7,0x4e,0xe4,0xdc,0x6a,0xb5,0xd4,0x6c,0x36,0x4b,0xbd,0xc6,0x9b,0x37,0x6f,
0x6a,0x6d,0x6d,0x4d,0xbb,0xbb,0xbb,0xcc,0x5,0x88,0x85,0x47,0xf8,0x3,0x0,0xc,
0x2b,0x7d,0x6b,0x6b,0x6b,0xa5,0x8e,0xbc,0xdd,0xd9,0xd9,0x29,0x3d,0x4c,0x5,0x41,
0xa0,0x76,0xbb,0xad,0x76,0xbb,0x5d,0x6a,0x50,0xad,0xd5,0x6a,0xba,0x73,0xe7,0x8e,
0x3a,0x9d,0x8e,0x76,0x77,0x77,0x69,0xa,0xc6,0xc2,0x22,0xfc,0x61,0x6e,0xd4,0xeb,
0x75,0x5d,0xbf,0x7e,0x7d,0x64,0xdf,0xc1,0xc1,0x41,0xae,0xf7,0x96,0xb1,0x92,0xc1,
0xa2,0xcb,0x33,0xc1,0xee,0xb5,0x6b,0xd7,0x46,0x5e,0xb3,0x14,0xd6,0xfc,0xab,0xd7,
0xeb,0x5a,0x5f,0x5f,0x2f,0x7d,0x60,0x85,0xd4,0xf,0x7e,0xb3,0x1e,0x55,0x3b,0x8b,
0x10,0x68,0x27,0x9c,0xb6,0x4d,0xc1,0xc0,0xa2,0x21,0xfc,0x61,0x2e,0x34,0x9b,0x4d,
0xdd,0xb9,0x73,0x67,0x6c,0x7f,0xd1,0x75,0x40,0xf3,0xc8,0x3b,0xfa,0x6f,0x16,0x81,
0xf2,0xa5,0x97,0x5e,0x1a,0xb,0x58,0x79,0xd4,0x6a,0xb5,0xd4,0x3f,0x7a,0xd5,0x6a,
0x75,0xa2,0x55,0x18,0xf2,0xe2,0xf,0xe4,0x7c,0xb1,0xff,0x47,0xaa,0xec,0x2a,0x9f,
0x15,0x4,0xc1,0x4c,0x2a,0x7e,0x69,0x6c,0x8,0xbc,0x75,0xeb,0x56,0x29,0x7d,0x2,
0xab,0xd5,0xaa,0x6e,0xdf,0xbe,0xad,0x66,0xb3,0xc9,0x80,0x10,0x2c,0x1c,0xc2,0x1f,
0xe6,0x42,0xd6,0x62,0xec,0x65,0x2a,0x63,0x89,0xa9,0x49,0xad,0xad,0xad,0x5d,0xd8,
0x77,0x4f,0xaa,0xec,0x6a,0x11,0xca,0x57,0xad,0x56,0xd5,0x68,0x34,0x74,0xed,0xda,
0x35,0x35,0x9b,0xcd,0x99,0x4d,0xa8,0x2c,0xf5,0x83,0xdf,0xdd,0xbb,0x77,0x4b,0xe9,
0xe3,0x37,0x89,0x7,0xf,0x1e,0xe8,0xf1,0xe3,0xc7,0xda,0xd8,0xd8,0x28,0x65,0x74,
0x70,0xa3,0xd1,0xd0,0x2b,0xaf,0xbc,0xc2,0xdc,0x80,0x58,0x28,0x84,0x3f,0x0,0x58,
0x20,0xf5,0x7a,0x5d,0xd5,0x6a,0x55,0xd7,0xae,0x5d,0x53,0xad,0x56,0x53,0xbd,0x5e,
0x9f,0x69,0xd5,0xd7,0x75,0x78,0x78,0x38,0xd5,0xa8,0xde,0xb2,0x74,0xbb,0x5d,0xdd,
0xbb,0x77,0x4f,0xcd,0x66,0x53,0x9b,0x9b,0x9b,0xa5,0x54,0x1,0x37,0x37,0x37,0x75,
0xed,0xda,0x35,0xed,0xee,0xee,0x5e,0xf8,0xfd,0x1,0xd3,0x22,0xfc,0x1,0xc0,0x1c,
0xb3,0xc1,0xa4,0xd1,0x68,0x5c,0x68,0x15,0xf6,0xe1,0xc3,0x87,0x7a,0xf0,0xe0,0xc1,
0x85,0x7d,0xbf,0x4f,0xa7,0xd3,0xd1,0x9b,0x6f,0xbe,0x59,0xca,0x3c,0x85,0x52,0xbf,
0x32,0x5f,0xaf,0xd7,0x4b,0x1b,0xbd,0xc,0x5c,0x94,0x95,0x8b,0xbe,0x0,0x0,0xc0,
0xe4,0xec,0xe4,0xc7,0x17,0x15,0xfc,0xba,0xdd,0xae,0xee,0xde,0xbd,0x7b,0xe9,0x82,
0x9f,0x65,0xe7,0x18,0xdc,0xd9,0xd9,0x29,0xa5,0x62,0x57,0xaf,0xd7,0xb5,0xb5,0xb5,
0x35,0x97,0x5d,0x34,0x0,0x8b,0xf0,0x7,0x0,0x73,0x6c,0x7f,0x7f,0xff,0xc2,0xbe,
0xfb,0xe1,0xc3,0x87,0xda,0xde,0xde,0x9e,0x8b,0x25,0xd2,0xda,0xed,0xb6,0xb6,0xb7,
0xb7,0x4b,0xa9,0xd8,0xb9,0x4b,0xc4,0x1,0xf3,0x88,0xf0,0x7,0x0,0x73,0xac,0xdb,
0xed,0x6a,0x6f,0x6f,0xef,0x5c,0xbf,0xf3,0xf0,0xf0,0x50,0x6f,0xbe,0xf9,0xa6,0x1e,
0x3c,0x78,0x30,0x57,0xfd,0xdf,0xba,0xdd,0xae,0xb6,0xb7,0xb7,0x4b,0x1b,0xb8,0x31,
0xcb,0x81,0x33,0xc0,0x2c,0xd1,0xe7,0xf,0x0,0xe6,0x5c,0xab,0xd5,0x52,0xa3,0xd1,
0x28,0x75,0xed,0x5b,0x1f,0xbb,0x3e,0xef,0x3c,0x54,0xfa,0xd2,0xec,0xec,0xec,0xe8,
0xe0,0xe0,0x40,0x1b,0x1b,0x1b,0x13,0x37,0x97,0x1f,0x1d,0x1d,0x69,0x77,0x77,0xb7,
0xe4,0x2b,0x3,0xce,0x7,0xe1,0xf,0x0,0x16,0xc0,0xce,0xce,0x8e,0xb6,0xb6,0xb6,
0x66,0x32,0xb2,0xd7,0x2e,0xab,0xb6,0x48,0x53,0x9d,0xb4,0xdb,0x6d,0x1d,0x1d,0x1d,
0xe9,0xce,0x9d,0x3b,0x85,0x2b,0x78,0x97,0x65,0x54,0x33,0x30,0x29,0x9a,0x7d,0x1,
0x60,0x1,0xd8,0x89,0x95,0xcb,0xc,0x24,0x87,0x87,0x87,0xda,0xd9,0xd9,0xd1,0x9b,
0x6f,0xbe,0xb9,0x50,0xc1,0xcf,0x3a,0x3a,0x3a,0x2a,0xdc,0xf,0xb0,0xdd,0x6e,0xeb,
0xee,0xdd,0xbb,0x4,0x3f,0xcc,0x35,0x2a,0x7f,0x98,0xb,0x7,0x7,0x7,0x53,0xad,
0xe6,0x11,0x4,0x41,0xae,0xff,0x81,0x3f,0x3a,0x3a,0xca,0xfc,0x1f,0xf5,0x20,0x8,
0xf4,0xe4,0xc9,0x93,0x89,0xaf,0x25,0xcd,0xd5,0xab,0x57,0x73,0x37,0x43,0xe5,0x99,
0x8c,0x7a,0xd6,0x2b,0x7b,0xe0,0x72,0xb1,0x4d,0x91,0x9b,0x9b,0x9b,0x13,0x7f,0x46,
0x10,0x4,0xea,0x74,0x3a,0x6a,0xb5,0x5a,0x4b,0x31,0x9d,0x49,0x10,0x4,0xda,0xde,
0xde,0xd6,0xe6,0xe6,0x66,0xe6,0x8,0xde,0xcb,0x38,0x9d,0xd,0x30,0x9,0xc2,0x1f,
0xe6,0xc2,0xe1,0xe1,0xa1,0xb6,0xb7,0xb7,0xbd,0xc1,0x68,0xde,0xfb,0x1f,0xb9,0x2e,
0xc3,0xbd,0xd8,0x49,0x82,0xf3,0xc8,0x1b,0xaa,0x71,0x7e,0xda,0xed,0xb6,0xae,0x5f,
0xbf,0x5e,0xb8,0xff,0x5f,0xa7,0xd3,0xd1,0xfe,0xfe,0xbe,0x3a,0x9d,0xce,0x52,0x56,
0xb5,0xec,0xdc,0x7d,0xb7,0x6f,0xdf,0x4e,0x3c,0xbe,0x88,0xd5,0x4f,0x2c,0x27,0xc2,
0x1f,0xe6,0x6,0x21,0xe3,0x7c,0xf0,0x3b,0xcf,0xbf,0xdd,0xdd,0xdd,0xcc,0x49,0x9f,
0x6d,0x85,0xef,0xe0,0xe0,0x60,0x69,0x3,0x5f,0x5c,0xab,0xd5,0xd2,0xd3,0xa7,0x4f,
0x47,0x56,0x5,0x9,0x82,0x80,0xa5,0xdd,0xb0,0x70,0x8,0x7f,0x0,0xb0,0x60,0xba,
0xdd,0xae,0x1e,0x3d,0x7a,0x34,0xd2,0x55,0x22,0x8,0x2,0x1d,0x1e,0x1e,0xea,0xf0,
0xf0,0x50,0x7,0x7,0x7,0x84,0xfc,0x4,0x9d,0x4e,0x67,0xd8,0xc,0x5c,0xaf,0xd7,
0x2f,0x74,0x9d,0x62,0x60,0x56,0x8,0x7f,0x0,0xb0,0x80,0x5a,0xad,0x96,0xe,0xe,
0xe,0x24,0xf5,0xc3,0x60,0xb7,0xdb,0xbd,0xe0,0x2b,0x9a,0x1f,0x76,0xd5,0x12,0x60,
0x51,0x11,0xfe,0x0,0x60,0x1,0xd9,0x4a,0x1f,0x0,0xc4,0x31,0xd5,0xb,0x0,0x0,
0xc0,0x12,0x21,0xfc,0x1,0x0,0x0,0x2c,0x11,0xc2,0x1f,0x0,0x0,0xc0,0x12,0x21,
0xfc,0x1,0x0,0x0,0x2c,0x11,0xc2,0x1f,0x0,0x0,0xc0,0x12,0x29,0x35,0xfc,0x19,
0x63,0xca,0xfc,0x38,0x0,0x0,0x0,0x94,0x8c,0xca,0x1f,0x0,0x0,0xc0,0x12,0x29,
0x35,0xfc,0x55,0x2a,0x95,0x32,0x3f,0xe,0x0,0x0,0x0,0x25,0xa3,0xf2,0x7,0x0,
0x0,0xb0,0x44,0xe8,0xf3,0x7,0x0,0x0,0x30,0x27,0xca,0xc8,0x5a,0x54,0xfe,0x0,
0x0,0x0,0x96,0x8,0xe1,0xf,0x0,0x0,0x60,0x89,0x10,0xfe,0x0,0x0,0x0,0x2e,
0x29,0x63,0x8c,0xca,0xee,0x54,0x37,0x12,0xfe,0x6c,0x3b,0xb2,0xdb,0x9e,0x9c,0xd6,
0xb6,0x4c,0x1f,0x3f,0x0,0x0,0x80,0xf9,0x42,0xe5,0xf,0x0,0x0,0xe0,0xb2,0x2b,
0xb1,0x2,0x48,0xf8,0x3,0x0,0x0,0xb8,0x20,0x17,0xd1,0x8a,0x4a,0xf8,0x3,0x0,
0x0,0xb8,0x48,0xc6,0xf4,0x1f,0x9,0xaf,0xf3,0x76,0xc7,0xcb,0x2b,0x57,0xf8,0x2b,
0x33,0x95,0xb2,0xa,0x8,0x0,0x0,0x40,0xe,0x6e,0xe8,0x2b,0xf1,0x63,0x4b,0xaf,
0xfc,0x31,0x8,0x4,0x0,0x0,0x60,0x72,0x46,0xe3,0x79,0xca,0xc4,0xab,0x83,0x53,
0x18,0x86,0x3f,0xef,0x97,0xa4,0xbc,0x9e,0x4,0x55,0x3f,0x0,0x0,0x80,0x51,0x36,
0xec,0xd9,0xc7,0x70,0xbf,0xdd,0xf6,0xcc,0xc6,0x32,0x8d,0xb1,0xca,0x5f,0xde,0xa9,
0x5d,0xa8,0xf0,0x1,0x0,0x0,0x94,0x6b,0x18,0x2,0x9d,0xed,0xb2,0x95,0xd2,0xec,
0x4b,0x10,0x4,0x0,0x0,0x98,0x8c,0x1b,0xf6,0x92,0x8e,0x29,0xe5,0x9c,0xa2,0x56,
0xec,0x7,0x27,0x5d,0x8c,0xf7,0x22,0x8,0x7b,0x0,0x0,0x0,0xd3,0xf3,0x65,0x2a,
0xcf,0x68,0x5f,0xdb,0xe7,0xaf,0x94,0xf0,0xe7,0x6b,0xca,0x25,0xdc,0x1,0x0,0x0,
0xcc,0x9e,0x2f,0x71,0x8d,0xf5,0x1,0x2c,0xb1,0xea,0x27,0xe5,0x68,0xf6,0xcd,0xfa,
0xa2,0x3c,0x17,0xc2,0x40,0xf,0x0,0x0,0x80,0xbe,0xb1,0x62,0x9b,0x53,0xd5,0x8b,
0xa2,0x68,0xac,0xcf,0x9f,0xdb,0xec,0x5b,0x86,0xb1,0xd1,0xbe,0x45,0xd7,0xf7,0x5,
0x0,0x0,0xc0,0x64,0x6c,0xb8,0x8b,0xe2,0x4d,0xba,0xb1,0x1c,0x16,0x95,0x3d,0xd5,
0x4b,0x9e,0x70,0x97,0xd4,0xff,0x2f,0xed,0x38,0x0,0x0,0x0,0xfc,0xbc,0xfd,0xf8,
0x9c,0xe6,0xde,0x28,0x8a,0x86,0x95,0x40,0x77,0xff,0xb4,0x52,0xfb,0xfc,0xe5,0x9d,
0xf6,0xa5,0x28,0x9a,0x81,0x1,0x0,0xc0,0x32,0x1a,0xcb,0x5a,0xfd,0x17,0x32,0x83,
0x90,0x67,0x2b,0x80,0xe6,0xec,0xd,0x23,0xfb,0xcb,0x90,0x38,0xc9,0xb3,0x6f,0xbf,
0x6f,0x2,0x42,0x0,0x0,0x0,0x14,0xe3,0x66,0xaa,0xc8,0x1d,0xd0,0x31,0x8,0x82,
0xb6,0xea,0x17,0xd9,0x7e,0x80,0xb6,0x2f,0xe0,0x2c,0xa6,0x7a,0x99,0xa6,0xcf,0x1f,
0xa1,0x10,0x0,0x0,0xc0,0x2f,0x75,0xc9,0x36,0xdb,0xcc,0xeb,0xe,0xf0,0xf0,0x3c,
0xca,0x30,0x71,0xb3,0xef,0xd8,0xc5,0xa7,0xbc,0x6,0x0,0x0,0x40,0x9f,0x3b,0xca,
0x37,0x72,0x42,0x9f,0x3d,0x36,0xc,0x81,0xb6,0x39,0xd8,0xa9,0x0,0x96,0x21,0x73,
0xb4,0xaf,0xfb,0xec,0xb,0x79,0x4,0x3d,0x0,0x0,0x80,0x74,0xbe,0x6e,0x74,0xc3,
0x11,0xbc,0x4e,0x53,0xef,0x30,0xec,0x85,0xe1,0x59,0xb3,0x6f,0x89,0xc1,0x4f,0x92,
0x56,0x8b,0x56,0xfe,0xb2,0x4a,0x8f,0x4c,0x14,0xd,0x0,0x0,0x90,0xce,0x36,0xf9,
0xda,0x70,0xe7,0x56,0xfc,0x22,0xb7,0xcf,0x9f,0x1b,0xa,0x67,0x35,0xe0,0x63,0xd2,
0x25,0xdd,0xb2,0x8e,0x33,0xc2,0x17,0x0,0x0,0x2c,0xa3,0xa4,0x42,0x5b,0x3c,0xe8,
0x99,0x84,0xe0,0x17,0x95,0x38,0xd8,0x43,0x1a,0xf4,0xf9,0x4b,0x6b,0xe2,0xf5,0x95,
0x29,0xd3,0x6e,0x2a,0x6b,0xbf,0xd,0x81,0x84,0x41,0x0,0x0,0xb0,0x6c,0x46,0x56,
0xf1,0x88,0xcd,0xe7,0xe7,0x7d,0x84,0xe1,0xb0,0x9,0xb8,0x24,0x47,0x84,0x0,0xcc,
0xa6,0x0,0x0,0xc,0xe0,0x49,0x44,0x41,0x54,0xa9,0x95,0xbf,0xa4,0xfe,0x7e,0x49,
0x23,0x4f,0x8a,0x4,0x43,0x0,0x0,0x80,0x45,0xe7,0xe6,0x20,0x37,0xc0,0x45,0xf1,
0xbe,0x7d,0x51,0xa4,0x70,0x10,0xf4,0x42,0x27,0xf8,0x85,0x83,0x47,0x99,0x7d,0xfe,
0x56,0x8c,0x31,0xef,0xe6,0xd,0x7e,0xd3,0x96,0x1c,0xa9,0xf6,0x1,0x0,0x80,0x65,
0xe1,0xcb,0x55,0x59,0x4d,0xbc,0xc3,0x0,0x18,0x86,0xea,0x39,0x41,0xb0,0xc4,0x62,
0xda,0x3b,0x2b,0x92,0xe,0x7c,0x1,0x2f,0x5e,0xd9,0x4b,0xab,0xf0,0x15,0xd,0x85,
0x34,0xfd,0x2,0x0,0x80,0x45,0x96,0x96,0x95,0xdc,0xe0,0x17,0xe,0x2a,0x7c,0xbd,
0x5e,0x6f,0x58,0xf5,0x1b,0x56,0xfb,0xc2,0x50,0x61,0xaf,0xa7,0x30,0xc,0xcb,0xd,
0x7f,0xc6,0x98,0x77,0x7c,0x17,0x95,0xf4,0xec,0xb,0x89,0x59,0x37,0xc,0x0,0x0,
0xb0,0xac,0x7c,0xa1,0xcf,0xd8,0xe0,0x67,0xab,0x7d,0x51,0xd4,0xaf,0xf4,0xd,0xc2,
0x5e,0xbc,0xf2,0x57,0xa2,0x83,0x15,0x63,0x4c,0x2b,0xad,0xea,0x97,0x54,0x5,0x24,
0xf4,0x1,0x0,0x0,0x8c,0xf3,0xce,0xe9,0xe7,0x34,0xf5,0xda,0xe0,0x17,0x3a,0x61,
0xaf,0xd7,0xeb,0xf5,0xb7,0xa3,0x68,0xb8,0x6d,0x9f,0x4b,0xce,0x57,0xed,0x55,0x49,
0xed,0xac,0x3e,0x7f,0xbe,0x67,0xf7,0x86,0xd2,0xaa,0x86,0x0,0x0,0x0,0xcb,0x22,
0x29,0x27,0x49,0x1a,0x59,0xb3,0xd7,0x1d,0xdc,0x11,0x3a,0x3,0x3b,0x7a,0x41,0x30,
0x1a,0x6,0xcb,0x6d,0xf2,0x95,0xa4,0xd6,0xaa,0x31,0xe6,0xed,0xbc,0x13,0x3d,0xe7,
0x69,0xf2,0x2d,0xaa,0x52,0xa9,0x10,0x14,0x1,0x0,0xc0,0xdc,0xf3,0xf5,0xf3,0xb3,
0xcf,0x23,0x83,0x3a,0x6c,0x3f,0xbf,0x41,0xd8,0x73,0x2b,0x7d,0xbd,0x5e,0x4f,0xc1,
0x60,0x5f,0xaf,0xd7,0x2b,0xbb,0xc9,0x57,0x92,0xde,0x5e,0x35,0xc6,0xdc,0x8f,0x5f,
0x60,0xfc,0x6,0x8a,0xf4,0xfd,0x4b,0x1a,0x24,0x2,0x0,0x0,0xb0,0xa8,0xe2,0x99,
0xc7,0x86,0xb6,0xa4,0x11,0xbd,0xbd,0x41,0x75,0xcf,0xd,0x7c,0x6e,0xe8,0xb,0x6,
0x15,0xc0,0x92,0xc3,0xdf,0x77,0xef,0xef,0xed,0xbd,0xb3,0x6a,0x8c,0xf9,0x96,0xa4,
0xd0,0x18,0x73,0x25,0x7e,0xf1,0x79,0x7,0x80,0x14,0x9,0x7b,0xb6,0xd2,0x47,0xc5,
0xf,0x0,0x0,0x2c,0x82,0xb4,0xe0,0xe7,0xf6,0xf9,0x1b,0xce,0xdd,0x67,0x2b,0x7d,
0x83,0xb0,0x17,0x4,0x81,0x82,0xc1,0xf3,0xe9,0xe9,0xe9,0xf0,0x75,0xaf,0xd7,0x2b,
0xfb,0x52,0x77,0xa4,0xfe,0x3c,0x7f,0xc7,0xc6,0x98,0x9d,0xb4,0xe9,0x5e,0xdc,0x1b,
0xcb,0x1a,0x4,0xe2,0x6b,0x12,0x8e,0xff,0x28,0x4c,0xf1,0x2,0x0,0x0,0x16,0x41,
0x56,0xf0,0x73,0x2b,0x7e,0x3d,0x3b,0x82,0x37,0xc,0x87,0xe1,0xae,0x17,0x4,0x67,
0x8f,0xc1,0xeb,0x60,0xf0,0x7a,0x6,0x45,0xb2,0xb7,0xa4,0xb3,0xe5,0xdd,0xbe,0x61,
0x6f,0x60,0x92,0x11,0xbf,0xd3,0x5e,0x1c,0x61,0x10,0x0,0x0,0xcc,0x13,0xdf,0xd8,
0x87,0xb1,0x8a,0x5f,0x6c,0x70,0x87,0xad,0xfa,0xb9,0x21,0xef,0xd4,0x3e,0x4e,0x4f,
0x75,0x7a,0x72,0xd2,0x7f,0x3e,0x3d,0x55,0xaf,0xfc,0x51,0xbe,0x92,0xf4,0xd,0x49,
0x5a,0x19,0xdc,0xc0,0x76,0xde,0xe0,0x57,0xa4,0x22,0x58,0xd6,0xa0,0x10,0x0,0x0,
0x80,0xcb,0xc2,0x37,0xb0,0xc3,0x57,0xf1,0xb,0x9d,0xe0,0xd7,0x73,0xfa,0xf9,0x9d,
0xe,0x82,0x5f,0x30,0x8,0x7a,0xf1,0x47,0x2f,0x8,0x66,0x31,0xd0,0xe3,0x58,0x83,
0xca,0xdf,0xea,0x20,0xa0,0x6d,0x4b,0x3a,0x36,0xc6,0x3c,0xef,0xde,0x54,0xde,0xc1,
0x1f,0xf6,0x39,0x2d,0xec,0xa5,0x55,0x9,0x9,0x88,0x0,0x0,0xe0,0xb2,0x4b,0xca,
0x30,0x76,0x7f,0x7c,0xe9,0x36,0x77,0xf2,0xe6,0xe1,0x40,0xe,0xb7,0xea,0x67,0x3,
0xdf,0xc9,0x89,0x4e,0x4e,0x4e,0xf4,0x6c,0x50,0xf9,0x9b,0x41,0x5f,0x3f,0x49,0xda,
0xbe,0xbf,0xb7,0x77,0x2c,0x9d,0x35,0xfb,0x1e,0x4f,0x5a,0xfd,0x2b,0xda,0xff,0x2f,
0xe9,0xc7,0x8b,0xa3,0x92,0x8,0x0,0x0,0x2e,0xb,0x5f,0xfe,0xf0,0xe,0xe8,0x88,
0x35,0xf5,0x8e,0x8c,0xe8,0x3d,0x3d,0x1d,0x56,0xfb,0x4e,0x6,0x81,0xef,0xe4,0xd9,
0x33,0x3d,0x7b,0xf6,0x4c,0x27,0xcf,0x9e,0xd,0x9b,0x7d,0x67,0x50,0xf5,0x93,0xa4,
0x37,0xec,0xc6,0x8a,0x13,0xaa,0xfe,0x77,0xd1,0x40,0x97,0x27,0x8,0xba,0x3f,0x5a,
0xda,0x20,0x90,0xa4,0xf3,0xd2,0xce,0x21,0x8,0x2,0x0,0x80,0x59,0x4a,0xca,0x34,
0x69,0x3,0x3b,0xdc,0xe5,0xd9,0x46,0x82,0xdf,0xa0,0xda,0x67,0x83,0xdf,0xb3,0x41,
0xf0,0x7b,0xf6,0xec,0xd9,0xb0,0xea,0x37,0xa3,0xe0,0x17,0x4a,0xfa,0xaa,0x7d,0xb1,
0xea,0xdc,0xd4,0x9f,0x1a,0x63,0x8e,0x25,0x3d,0x9f,0xb7,0x99,0x37,0xfe,0x9c,0xb5,
0xed,0x93,0x27,0x10,0xa6,0x71,0xdf,0xc3,0xc0,0x11,0x0,0x0,0x50,0x86,0xac,0x26,
0x5e,0xb7,0xe2,0x67,0x8c,0x33,0xb8,0xc3,0x53,0xf5,0xb3,0x73,0xf8,0xc5,0xab,0x7d,
0xcf,0x9e,0x3d,0xd3,0xf1,0xf1,0xf1,0x70,0x7b,0x86,0xe1,0xef,0x2f,0xee,0xef,0xed,
0xbd,0x63,0x5f,0xb8,0xe1,0xef,0x1d,0x63,0xcc,0x57,0x25,0xbd,0xee,0xbb,0xc1,0xa2,
0xcf,0x59,0x15,0xc3,0x3c,0x9f,0x23,0x8d,0x7,0xba,0xb4,0x80,0x47,0x10,0x4,0x0,
0x0,0x93,0xca,0xd3,0x2a,0x19,0xcf,0x33,0x63,0x93,0x38,0x7b,0x26,0x70,0x76,0x47,
0xf1,0xda,0xc0,0x77,0xdc,0xed,0xf6,0x83,0xdf,0xe0,0x71,0x7a,0x72,0x32,0xab,0xe0,
0x27,0x49,0xbf,0xeb,0xbe,0x70,0xc3,0x9f,0x24,0x7d,0xc9,0x18,0xf3,0xfa,0x34,0xa1,
0xcf,0xfd,0x61,0xdc,0xed,0xa4,0x66,0xe0,0xbc,0xcd,0xc1,0xf1,0xe3,0x36,0xdc,0x25,
0x85,0xbc,0xf8,0xe7,0x10,0x6,0x1,0x0,0x40,0x5c,0x56,0xeb,0x64,0x5a,0xe8,0xb3,
0xcf,0x76,0x60,0x87,0xd,0x7e,0xa1,0x33,0xb8,0xc3,0x36,0xf7,0xda,0x8a,0xdf,0xf1,
0xf1,0xb1,0x8e,0x7,0xcf,0xdd,0x6e,0x57,0xdd,0x41,0xe5,0x2f,0xc,0xc3,0x59,0xdd,
0xe2,0xf7,0x24,0xfd,0xb1,0xbb,0x63,0x35,0x16,0xdc,0xbe,0x61,0x8c,0x79,0xcb,0x18,
0xf3,0x43,0xce,0xbe,0x89,0xab,0x80,0x69,0xdb,0xee,0x8f,0x16,0x3f,0xc7,0x55,0xa9,
0x54,0xbc,0xc1,0xcd,0xee,0x4f,0xb,0x79,0xee,0x36,0xfd,0x3,0x1,0x0,0x40,0x12,
0x5f,0xeb,0xa3,0xb7,0xf5,0x32,0x8a,0x14,0xc5,0x2b,0x7e,0x83,0x3e,0x7e,0x23,0xfd,
0xfc,0x9c,0xd5,0x3a,0x4e,0x4e,0x4e,0x74,0x3a,0xe8,0xe3,0x77,0x7c,0x7c,0xac,0xe3,
0xe3,0x63,0xbd,0xfb,0xee,0xbb,0xea,0x3e,0x7d,0xaa,0x67,0xc7,0xc7,0xb3,0x9a,0xd3,
0xcf,0xfa,0xc2,0xfd,0xbd,0xbd,0x91,0x64,0x19,0xf,0x7f,0x32,0xc6,0x7c,0xd6,0x18,
0xf3,0x27,0xee,0x4d,0xfb,0x7e,0x94,0xac,0xb0,0xe7,0x3b,0x66,0x1f,0xf6,0x7,0x4a,
0xaa,0xfe,0xb9,0x86,0x15,0xbe,0xfe,0x8b,0x91,0xfd,0xbe,0x7d,0xee,0x73,0x92,0x3c,
0x55,0x40,0x2a,0x85,0x0,0x0,0xcc,0x97,0xbc,0x1,0x2a,0xb3,0x79,0xd7,0x18,0x19,
0x79,0xc2,0x9f,0xd,0x7b,0x36,0xfc,0xd9,0xd0,0x17,0x45,0xfd,0x25,0xdb,0x6,0xc1,
0x2f,0x88,0x4f,0xe5,0x32,0x68,0xee,0x7d,0x36,0xa8,0xf2,0x75,0xbb,0x5d,0x75,0x9f,
0x3e,0x55,0xf7,0xf8,0x78,0x96,0xfd,0xfc,0xa4,0xfe,0xdc,0x7e,0x5f,0x8a,0xef,0xf4,
0x85,0xbf,0x37,0x8c,0x31,0x7b,0x92,0x6e,0x27,0x5,0xba,0xa2,0x1,0xd0,0xad,0xf6,
0xf5,0x7a,0xbd,0x91,0xb4,0xec,0xfb,0xa1,0x5d,0x69,0xe1,0x2f,0x73,0xff,0xd9,0xce,
0xcc,0x5f,0x87,0xb0,0x7,0x0,0xc0,0xe2,0x49,0xc,0x84,0x36,0xa7,0xb8,0xe7,0xb8,
0x59,0xc4,0x18,0x45,0xce,0x73,0x14,0x45,0x67,0xe1,0xcf,0x19,0xdc,0x61,0x7,0x76,
0x84,0x9e,0x1,0x1e,0x81,0x1d,0xd9,0x7b,0x7a,0x3a,0x6c,0xf2,0x7d,0x76,0x7c,0xdc,
0x6f,0xea,0x9d,0x7d,0xf0,0x93,0xa4,0x2f,0xdd,0xdf,0xdb,0x3b,0x88,0xef,0xf4,0x85,
0x3f,0x19,0x63,0x7e,0x45,0xd2,0x1f,0xa6,0x35,0xdd,0xa6,0xed,0x73,0x8f,0xb9,0xed,
0xe1,0xee,0x2c,0xd7,0x23,0xa3,0x63,0x6c,0xf8,0x1b,0xfc,0xe8,0x69,0x6c,0x44,0x1b,
0x86,0xb5,0x84,0x1,0x21,0x45,0xc3,0x1f,0x0,0x0,0x58,0x2,0xbe,0xd0,0x37,0xd8,
0x1f,0xd9,0x63,0x51,0xd4,0x3f,0x3e,0x78,0xf6,0x6,0xbf,0x41,0x96,0x19,0x36,0xf7,
0xc6,0xe7,0xf3,0x73,0x2a,0x7f,0x23,0x53,0xba,0xc,0xaa,0x7f,0xb6,0x18,0x36,0x43,
0xef,0x4a,0xfa,0x9c,0xef,0x40,0x52,0xf8,0xfb,0x63,0x49,0xf7,0x8d,0x31,0x2f,0xe7,
0xe9,0xc3,0x97,0x74,0x7c,0x18,0xf8,0x6c,0x69,0xd4,0x19,0xfe,0x6c,0x9b,0x7d,0x6d,
0x9a,0x1e,0xb,0x7f,0xb1,0x36,0x77,0x6f,0x65,0x2e,0x21,0xd4,0x25,0x45,0x3d,0xaa,
0x7b,0x0,0x0,0x2c,0x8f,0x78,0xd5,0x6f,0xac,0xc0,0x14,0xcb,0x1e,0x36,0xec,0x8d,
0x54,0xfd,0x62,0xab,0x76,0x8c,0x4d,0xe2,0xec,0x86,0xbf,0x20,0x18,0xae,0xe0,0xe1,
0xae,0xde,0xf1,0x6c,0xd0,0xdf,0xef,0xe4,0xd9,0x33,0x9d,0x9c,0x9c,0xc,0x33,0xd0,
0x8c,0x7d,0xfe,0xfe,0xde,0xde,0xf7,0x7c,0x7,0x92,0xc2,0x5f,0x28,0xe9,0xdf,0x18,
0x63,0xfe,0xda,0x18,0x73,0xc5,0xd9,0x9f,0x19,0xfa,0xe2,0x89,0xd8,0x17,0xfa,0xc2,
0xf8,0xb0,0xe8,0x41,0xf8,0xb3,0x89,0x5b,0xb1,0xef,0x2,0x0,0x0,0x28,0x43,0xda,
0xc0,0xe,0x77,0xdb,0x6d,0xbd,0x8c,0x87,0xbf,0x91,0xaa,0x5f,0xaf,0x37,0x3a,0xb5,
0x4b,0xac,0xaf,0xdf,0xe9,0xa0,0xc9,0xf7,0x64,0xb0,0xba,0xc7,0xc,0x47,0xf5,0xba,
0x5a,0x92,0x3e,0x9b,0x74,0xd0,0x1b,0xfe,0x6,0xcf,0x6f,0x19,0x63,0xbe,0x64,0x8c,
0xf9,0x99,0x3c,0xd5,0xbf,0xd4,0xd0,0x67,0x3b,0x42,0xc6,0x3a,0x47,0xda,0xf3,0xdc,
0x1f,0x38,0xfe,0xd9,0xbe,0x6b,0x3,0x0,0x0,0x48,0xe2,0xcb,0xb,0x49,0xfb,0xc6,
0x72,0xcd,0xa0,0x18,0xe5,0x66,0x93,0xa4,0x9c,0x63,0xa7,0x75,0x89,0xf,0xf4,0x70,
0xfb,0xfb,0xd9,0x11,0xbf,0xe7,0xd0,0xcc,0xeb,0xfa,0xd9,0xfb,0x7b,0x7b,0xa7,0x49,
0x7,0x57,0xed,0xd,0xdb,0xe7,0xd8,0xf6,0x2f,0x18,0x63,0x7e,0xd2,0x18,0xf3,0x62,
0xc2,0xf1,0xf4,0xe6,0x5d,0xe7,0xc7,0xf1,0x5,0x40,0x5f,0x9a,0x96,0xe4,0xf,0x81,
0x4e,0x1b,0xbd,0x7b,0xcd,0x63,0x7c,0xff,0xb8,0x19,0xbf,0x10,0xa1,0x12,0x0,0x80,
0x5,0x96,0x94,0x21,0x62,0x3,0x3c,0x46,0x46,0xf8,0x3a,0xa3,0x7a,0xdd,0xfe,0x7e,
0xb6,0x78,0xe5,0x86,0x3e,0x37,0xfc,0xf5,0x82,0x40,0xa7,0x83,0xea,0x5f,0x6f,0x10,
0x4,0xcf,0xa9,0xda,0x67,0xbd,0x71,0x7f,0x6f,0xef,0x4f,0xd3,0x4e,0x58,0xf5,0xa6,
0xde,0xb3,0xed,0x77,0x8c,0x31,0x9f,0x36,0xc6,0x7c,0xc5,0x77,0x3c,0xde,0xd9,0x31,
0xb1,0xda,0x17,0xb,0x7e,0xf1,0x11,0xbf,0xde,0xe6,0x5f,0xe7,0x39,0x3e,0x12,0x47,
0xf2,0x74,0xd4,0x8c,0x1d,0x1b,0xdd,0x9d,0x33,0xdc,0x11,0x2,0x1,0x0,0x98,0x6b,
0xde,0xa,0xdf,0xf8,0x49,0xd9,0x7d,0xfd,0x9c,0xe0,0x37,0x36,0x78,0x35,0x61,0xa0,
0xc7,0x70,0xb0,0xc7,0xa0,0xf9,0xd7,0x2d,0x6c,0x9d,0x93,0x77,0x24,0xfd,0xdb,0xac,
0x93,0x56,0x53,0x82,0x9f,0x7d,0xfc,0xbe,0xa4,0xf,0x19,0x63,0x3e,0xe5,0xad,0xf6,
0xb9,0x95,0x3d,0xf7,0x47,0x89,0x37,0xf3,0x3a,0x8f,0xf8,0xb9,0xbe,0xf0,0xe7,0x26,
0x6f,0xfb,0xf,0x12,0x1f,0x10,0x32,0x36,0x3a,0x38,0xde,0x74,0xed,0xbb,0xe3,0x78,
0xe7,0xcf,0x84,0xc0,0x47,0xc,0x4,0x0,0x60,0x41,0x24,0xe5,0x3,0x27,0x4b,0xd8,
0x90,0x27,0x69,0xac,0x35,0x32,0x3e,0xd0,0xc3,0x7d,0xc4,0xc3,0xdf,0x5,0x85,0x3e,
0xeb,0x13,0xf7,0xf7,0xf6,0xbe,0x9b,0x75,0x52,0x66,0xf8,0x1b,0xbc,0xfe,0x59,0x63,
0xcc,0x7,0x8d,0x31,0xef,0x8f,0xdf,0xf8,0x30,0xfc,0xb9,0x7d,0xf9,0xe2,0x4d,0xbd,
0x83,0x6d,0x5b,0xf1,0xeb,0xf5,0x7a,0xc3,0x2a,0xa1,0xfd,0x3c,0x63,0xcc,0xb0,0xff,
0x9f,0x3b,0x2,0x78,0xa4,0xa,0x28,0x27,0x9d,0xf7,0x2f,0xcc,0x1b,0x8,0xed,0x3d,
0xf8,0xf8,0xfa,0x12,0x2,0x0,0x80,0xc5,0x93,0xf6,0x37,0x3f,0x6d,0x90,0x47,0x7c,
0xb0,0x87,0x6f,0xed,0x5e,0x77,0xd,0xdf,0x78,0xab,0xe6,0x5,0xf9,0xf5,0xac,0xe6,
0x5e,0x2b,0x69,0xb4,0x6f,0xfc,0xf5,0xb1,0x31,0xe6,0xa3,0x61,0x18,0xfe,0x4d,0x14,
0x45,0x2f,0xc,0x6f,0x34,0x21,0xfc,0xf9,0x9a,0x78,0x7d,0xc1,0xcf,0x86,0xc7,0xb1,
0x1f,0xd6,0x2d,0xb5,0xea,0x2c,0x8d,0xbb,0xd7,0xe5,0xfe,0xb8,0xbe,0x1,0x22,0x69,
0x9d,0x3d,0xa7,0xd,0x7d,0x84,0x46,0x0,0x0,0x2e,0xbf,0xcc,0x2c,0x10,0xeb,0xf3,
0x97,0x36,0xd0,0x63,0xa4,0x68,0x15,0x6b,0xdd,0x74,0x7,0xad,0x5e,0x90,0x6f,0x4a,
0xfa,0x85,0xbc,0x27,0x7b,0x7,0x7c,0x24,0xc,0xea,0x78,0x3b,0x8a,0xa2,0x7f,0xd5,
0xeb,0xf5,0xfe,0x28,0xc,0xc3,0x2b,0xc3,0xea,0xdf,0x60,0x88,0xb3,0xaf,0xda,0x97,
0xf9,0x70,0xfa,0x4,0xc6,0x53,0xb5,0xbb,0xfa,0x87,0x5b,0x7a,0x4d,0xa,0x80,0xc3,
0xed,0x78,0x1f,0x41,0x67,0x9f,0xe2,0xfb,0x9d,0xe3,0xc3,0xcd,0xbc,0xbf,0x1c,0x0,
0x0,0xb8,0x50,0x45,0xfb,0xf4,0xc7,0xc7,0x10,0xc4,0x83,0xdf,0x30,0x0,0xda,0xe0,
0xe7,0xab,0xfe,0xc5,0x6,0xac,0x5e,0x82,0x82,0xd0,0x77,0x25,0xfd,0x44,0xda,0xe8,
0xde,0xb8,0xb1,0x66,0x5f,0xdf,0x6b,0x7b,0x93,0xbd,0x5e,0xef,0x8d,0x30,0xc,0x3f,
0x1d,0xf6,0x7a,0xbf,0xe5,0x6,0x3e,0x1b,0xe2,0xe2,0xa1,0x2f,0x5e,0xed,0xf3,0xbd,
0xc7,0xed,0x13,0x18,0xff,0x81,0xe3,0xe9,0xdb,0x5d,0xd,0x64,0x6c,0x30,0x88,0xd3,
0x34,0x3c,0x16,0x0,0x7d,0xff,0xe8,0x56,0x8e,0xe0,0x77,0x9,0xfe,0x61,0x1,0x0,
0xc0,0x24,0x52,0xfa,0xfb,0x65,0xad,0xe8,0xe1,0x66,0xa0,0x78,0x93,0xf0,0x25,0x71,
0x20,0xe9,0x9f,0xe7,0xe9,0xe7,0xe7,0x1a,0x6b,0xf6,0xb5,0xdb,0x49,0x83,0x3b,0xc2,
0x30,0xfc,0x62,0x2f,0xc,0xeb,0x51,0x18,0xfe,0xea,0x48,0x5b,0xb7,0x33,0xd7,0xcd,
0x48,0xf8,0xb,0xcf,0x66,0xbf,0xe,0x9d,0x73,0x46,0x9a,0x8a,0x9d,0xe0,0x37,0x32,
0x5,0x4c,0xac,0x19,0x78,0x6c,0x30,0x48,0xfc,0x1f,0x22,0x1e,0x0,0x93,0xfa,0x3,
0xc6,0x7f,0x85,0x8c,0x7e,0x80,0x97,0xe6,0x9f,0x18,0x0,0x0,0x14,0xe3,0x16,0xb5,
0xdc,0xdd,0xce,0x18,0x82,0xf8,0x60,0xf,0xf7,0xf9,0x92,0x85,0x3d,0xd7,0xb1,0xa4,
0x8f,0xdc,0xdf,0xdb,0x7b,0xbb,0xe8,0x1b,0x13,0xe7,0xf9,0xb3,0xaf,0xdd,0x95,0x39,
0x7a,0x67,0x21,0xf0,0x73,0xbd,0x30,0x7c,0x6f,0xd8,0xeb,0xfd,0x3b,0xdf,0x24,0x87,
0xde,0xf0,0x37,0xa8,0xf4,0xf9,0xc2,0xa2,0xdb,0x27,0x30,0x5e,0x52,0x75,0x4b,0xae,
0x6e,0xf5,0x2f,0x9e,0xd2,0xbd,0xa3,0x82,0x3d,0x1,0xd0,0x77,0x9f,0x0,0x0,0x60,
0xfe,0xa5,0xf5,0xf1,0xf3,0xed,0xf7,0xd,0x8,0x99,0x93,0x7c,0x70,0x2a,0xe9,0xa3,
0xf7,0xf7,0xf6,0xde,0x9a,0xe4,0xcd,0xa9,0x95,0x3f,0x5f,0x1b,0xb7,0x53,0x5,0xfc,
0x74,0x18,0x45,0xef,0xf4,0xc2,0xf0,0x17,0xc7,0x82,0xdf,0xa0,0x1f,0xe0,0xc8,0xb6,
0x53,0xf1,0x73,0xcf,0x1f,0x9,0x7e,0xee,0x40,0x10,0x4f,0x5f,0x40,0xb7,0xd,0xde,
0xdd,0x96,0xd3,0x2f,0x30,0xef,0xe0,0x8f,0xf8,0x3d,0x3,0x0,0x80,0xf9,0xb7,0x4,
0x7f,0xdb,0xdf,0x55,0xbf,0xe2,0xf7,0xf5,0x49,0x3f,0x20,0x71,0xc0,0x87,0xd,0x7f,
0xbe,0xb5,0x78,0x6d,0x40,0xb,0x7b,0xbd,0x5f,0x8a,0xc2,0xf0,0x7b,0x61,0x18,0xfe,
0x46,0xaf,0xd7,0xbb,0x12,0x5f,0xe3,0xce,0xad,0x0,0x26,0x55,0x6,0x7d,0xf3,0x5,
0xc6,0x57,0x0,0xf1,0xad,0x4,0xe2,0x6b,0x7b,0x9f,0xb3,0xd4,0xe,0x0,0x0,0x50,
0xc4,0xf7,0x24,0xfd,0xa8,0xa4,0xfb,0xd3,0x7c,0x88,0x77,0x9e,0x3f,0x69,0x7c,0x52,
0xc3,0x78,0x73,0x6c,0x78,0x56,0x5,0xfc,0x62,0x18,0x86,0x7,0x51,0x14,0x7d,0x25,
0xc,0xc3,0xe7,0x7a,0x9e,0xa,0xa0,0x3b,0x7,0x4e,0x52,0xf8,0x4b,0x1c,0x1,0xec,
0x9,0x81,0xbe,0xeb,0x5,0x0,0x0,0x58,0x60,0x2d,0x49,0xff,0x42,0xd2,0x77,0xa6,
0xfd,0xa0,0x91,0xca,0x9f,0xdd,0x1e,0x1b,0x71,0xeb,0xb,0x82,0xce,0x0,0x8d,0x30,
0xc,0xbf,0x1a,0x86,0xe1,0x77,0xc2,0x30,0xfc,0xc3,0x28,0xc,0xbf,0x7f,0xa4,0x8f,
0x60,0xac,0xea,0x97,0xd6,0x34,0xec,0xab,0xfe,0xd9,0xf9,0x73,0x2e,0xc1,0x1c,0x3a,
0x0,0x0,0x0,0x17,0xe1,0xd,0x49,0x9f,0x90,0x74,0x54,0xc6,0x87,0xad,0xf8,0x9a,
0x4c,0x7d,0xd3,0xab,0xc,0x1f,0x9,0x15,0xb9,0x30,0xc,0x77,0xc2,0x30,0xdc,0xe8,
0xf5,0x83,0xa0,0x42,0x3b,0x99,0xb3,0x53,0xe5,0xf3,0x55,0x4,0xbd,0x8f,0xc1,0x42,
0xc8,0x76,0x31,0x64,0xdb,0x4,0xc,0x0,0x0,0xb0,0x44,0x4e,0x25,0xfd,0xac,0xa4,
0x1f,0x57,0x49,0xc1,0x4f,0x92,0x56,0xa4,0xf1,0xbe,0x72,0x23,0x73,0xec,0xc5,0x7,
0x7e,0xa4,0x3f,0xde,0x8d,0xa2,0xe8,0x27,0xc2,0x28,0xfa,0x74,0x18,0x45,0xc7,0xf1,
0xbe,0x7f,0x76,0x2,0xe8,0xa4,0xa6,0x61,0x1b,0xfc,0xec,0x31,0x7b,0x1d,0x0,0x0,
0x0,0x4b,0xe6,0x3b,0x92,0xfe,0x99,0xa4,0xff,0x51,0xf6,0x7,0xaf,0xc4,0x77,0xc4,
0xfb,0xd4,0xd9,0xf9,0xf3,0xe2,0xf,0xef,0x88,0xe0,0xb3,0xc7,0x17,0xa2,0x28,0xfa,
0x81,0x28,0x8a,0xde,0x70,0x47,0x8,0xf7,0xdc,0xa6,0xde,0xf8,0xe0,0x10,0xa7,0xf2,
0x47,0xa5,0xf,0x0,0x0,0x2c,0xa9,0x63,0x49,0xbf,0x22,0xe9,0x7,0x24,0xed,0xcc,
0xe2,0xb,0x56,0x7c,0x3,0x3e,0xec,0x84,0xca,0x23,0xd5,0xbf,0x58,0xd3,0xaf,0x6f,
0x35,0x90,0x58,0x0,0xfc,0x4e,0x14,0x86,0x3f,0x1e,0x45,0xd1,0x8f,0x47,0x51,0xf4,
0x9d,0x61,0x53,0xb1,0xdb,0x14,0xec,0x19,0x9,0x4c,0xb5,0xf,0x0,0x0,0x2c,0xa9,
0xaf,0x49,0xda,0x90,0xf4,0x4b,0xea,0x87,0xc0,0x99,0x18,0xab,0xfc,0x8d,0xac,0x82,
0x91,0x11,0xc2,0xe2,0x7d,0x3,0xe5,0x1f,0x1c,0xf2,0x46,0x14,0x45,0x3f,0x10,0x85,
0xe1,0xcf,0x85,0x51,0x74,0xe0,0x4c,0x13,0x33,0x12,0x6,0x6d,0xf0,0x3,0x0,0x0,
0x58,0x32,0x3b,0xea,0xf7,0xeb,0xfb,0x51,0xf5,0x47,0xf5,0xce,0xd4,0x48,0x9f,0xbf,
0x61,0xd5,0x2d,0xb6,0x4a,0xc6,0x8,0xdf,0xd4,0x30,0x83,0x73,0x23,0x77,0x65,0x8d,
0xd1,0x0,0x78,0x1c,0x45,0xd1,0xe7,0xa3,0x28,0x7a,0x29,0x8a,0xa2,0x4f,0x47,0x61,
0xf8,0xdd,0x30,0x8a,0x46,0xfa,0xfe,0x11,0xfc,0x0,0x0,0xc0,0x92,0xf9,0xa6,0xfa,
0x81,0xef,0x7,0xd5,0x1f,0xd1,0x7b,0x2e,0x86,0x95,0xbf,0x69,0x9a,0x5a,0x8d,0xfb,
0x7e,0x73,0xb6,0xfe,0xae,0xfd,0x5c,0xbb,0x4c,0x9b,0x89,0xa2,0x63,0xd3,0xef,0xf,
0xf8,0x8f,0xa3,0x28,0xfa,0x64,0x14,0x45,0x6f,0xd1,0xcc,0xb,0x0,0x0,0x96,0xc8,
0xa9,0xa4,0xaf,0x4a,0xfa,0x61,0xf5,0x7,0x74,0x7c,0xed,0xbc,0x2f,0x60,0xc5,0x17,
0xbc,0x46,0xf6,0x54,0x2a,0xa3,0x7,0x7,0xaf,0x2b,0x95,0x8a,0x2a,0x76,0x7b,0xf0,
0x7a,0xec,0x73,0xe2,0x21,0xf0,0x2c,0x18,0x9e,0xca,0x98,0xdf,0x35,0x51,0xf4,0x4f,
0x8d,0x31,0x1b,0x51,0x14,0x7d,0x56,0x52,0xbb,0x84,0xfb,0x1,0x0,0x0,0xb8,0x8c,
0xbe,0xa1,0xfe,0xb4,0x2d,0xff,0x48,0xd2,0x4f,0x48,0x9a,0x78,0x79,0xb6,0x69,0xad,
0xa6,0x1d,0xb4,0x71,0xae,0x52,0xa9,0xf4,0x3,0x9e,0xb3,0x6f,0xb8,0xbf,0x52,0x91,
0x9c,0xe3,0x76,0xdb,0x1e,0x1f,0xe3,0xc,0x22,0x19,0x84,0xc3,0x3d,0x49,0x7b,0x92,
0x7e,0x41,0xd2,0xfb,0x25,0x7d,0x58,0xd2,0x87,0x6,0x8f,0xfa,0xc4,0x77,0x6,0x0,
0x0,0x70,0x71,0xda,0x92,0xb6,0xd5,0xaf,0xec,0x7d,0x5d,0xfd,0xa5,0xd9,0x2e,0x85,
0xe1,0xa,0x1f,0xde,0xa6,0xd7,0x41,0xb8,0xab,0x48,0xaa,0xac,0xac,0xc,0x1f,0x2b,
0x57,0xae,0x68,0x25,0x8a,0x86,0xe1,0x6f,0xa5,0x52,0x39,0x3b,0x3e,0x38,0x77,0x65,
0xa5,0xdf,0xa2,0x6c,0x9f,0x47,0x82,0xa2,0x13,0x10,0x63,0xbe,0x35,0x78,0x7c,0x7e,
0xf0,0xfa,0x3,0x92,0x6e,0xab,0x1f,0xa,0xd7,0x25,0x7d,0xff,0x60,0x1b,0x0,0x0,
0xe0,0x32,0x38,0x55,0xbf,0x88,0xf5,0xb6,0xfa,0x83,0x35,0x5a,0xea,0x57,0xf9,0xa6,
0x5e,0x86,0x6d,0x56,0x86,0x95,0xbf,0x91,0x79,0xfd,0xa4,0x91,0x26,0x5d,0xb9,0xcd,
0xbb,0x3a,0x6b,0xe6,0xad,0x54,0x2a,0x5a,0x19,0x4,0x3d,0x77,0xdb,0xfb,0x88,0x9d,
0xeb,0x86,0xc8,0x94,0xc1,0x1e,0xdf,0x1c,0x3c,0xe2,0xea,0xea,0x87,0x41,0xeb,0x9a,
0xa4,0xb5,0x29,0x7e,0x7,0x0,0x0,0x80,0x2c,0x7b,0xea,0x87,0x3d,0x6b,0x26,0xf3,
0xf0,0xcd,0xda,0xff,0x7,0x88,0x86,0xc0,0x3f,0x61,0x91,0x2f,0x8a,0x0,0x0,0x0,
0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/doneline.png
0x0,0x0,0x1,0xeb,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc,0x10,0x6,0x0,0x0,0x0,0x77,0xb1,0x2e,0x7f,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x0,0x89,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xd5,0xa1,0xd,0xc2,0x50,
0x14,0x40,0xd1,0xf7,0x9,0xa2,0x75,0x6c,0x81,0x42,0x33,0x9,0x16,0xc2,0x16,0x8c,
0x80,0x63,0x0,0x4,0xa9,0x66,0x8e,0x26,0x9d,0x80,0x39,0x50,0x6d,0xdd,0x67,0x3,
0xc4,0x33,0x85,0xe4,0x9c,0x9,0xae,0xbb,0xe5,0x75,0x1c,0xbb,0xfd,0x76,0x1c,0xe3,
0x12,0x87,0xd8,0xb4,0x6d,0x0,0xc0,0x37,0xd7,0x78,0xc6,0x7b,0x9a,0x56,0x4b,0x77,
0x0,0xf0,0x9f,0xc,0x4,0x80,0x14,0x3,0x1,0x20,0xc5,0x40,0x0,0x48,0x31,0x10,
0x0,0x52,0xc,0x4,0x80,0x14,0x3,0x1,0x20,0xc5,0x40,0x0,0x48,0x31,0x10,0x0,
0x52,0xc,0x4,0x80,0x94,0x75,0xdc,0x62,0xa8,0xf7,0xbe,0x2f,0xa7,0xd8,0x95,0x73,
0xd3,0x2c,0x1d,0x4,0xc0,0x6f,0xab,0x5d,0xc,0xf5,0x31,0xcf,0x1f,0x5a,0x8,0x15,
0x9f,0xfa,0x1e,0xc6,0x75,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,
0x65,0x3a,0x63,0x72,0x65,0x61,0x74,0x65,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,
0x2d,0x31,0x34,0x54,0x32,0x33,0x3a,0x33,0x39,0x3a,0x30,0x34,0x2b,0x30,0x38,0x3a,
0x30,0x30,0x58,0xcf,0xf3,0xc7,0x0,0x0,0x0,0x25,0x74,0x45,0x58,0x74,0x64,0x61,
0x74,0x65,0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,0x0,0x32,0x30,0x31,0x39,0x2d,0x30,
0x31,0x2d,0x31,0x34,0x54,0x32,0x33,0x3a,0x33,0x39,0x3a,0x30,0x34,0x2b,0x30,0x38,
0x3a,0x30,0x30,0x29,0x92,0x4b,0x7b,0x0,0x0,0x0,0x4b,0x74,0x45,0x58,0x74,0x73,
0x76,0x67,0x3a,0x62,0x61,0x73,0x65,0x2d,0x75,0x72,0x69,0x0,0x66,0x69,0x6c,0x65,
0x3a,0x2f,0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,
0x63,0x6f,0x6e,0x2d,0x66,0x6f,0x6e,0x74,0x2f,0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,
0x6e,0x5f,0x72,0x6a,0x76,0x66,0x61,0x69,0x77,0x31,0x35,0x68,0x70,0x2f,0x68,0x65,
0x6e,0x67,0x78,0x69,0x61,0x6e,0x2e,0x73,0x76,0x67,0x7f,0x11,0x26,0x57,0x0,0x0,
0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/canceloff.png
0x0,0x0,0x34,0x45,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x68,0x6c,0xe9,0x7d,0xdf,0xf1,0xef,0x68,0xef,0x59,0xd8,0xd9,0x85,0xb9,
0x98,0xb9,0x60,0x5d,0x97,0x59,0xd2,0x2b,0xb0,0xe4,0x20,0xb1,0x65,0x42,0x2a,0x17,
0xb,0x7,0x95,0xf4,0x3a,0xd4,0x24,0xac,0x71,0x8,0xb8,0xac,0x49,0x49,0x70,0x49,
0xa9,0x69,0x68,0x70,0x49,0x69,0x48,0x48,0xa8,0x1b,0x93,0xb4,0x86,0x12,0x27,0x26,
0x4e,0x3,0xc5,0xc1,0x21,0x6d,0x4c,0xdc,0x2c,0x24,0xb1,0x8,0xbd,0xc4,0x91,0x89,
0x2f,0x4b,0x44,0x2e,0x12,0x89,0xb4,0x8e,0x6e,0x8c,0x6,0x7c,0x65,0xb8,0xc3,0xa2,
0x81,0xbd,0x47,0x57,0x3a,0x73,0xce,0xd3,0x3f,0x66,0x9e,0xd1,0x33,0x67,0x9e,0xf3,
0x73,0xce,0x48,0x67,0xe6,0xbc,0x5f,0x30,0xcc,0x4f,0xcd,0x9c,0x19,0x69,0x77,0x3e,
0xf7,0xfb,0x7d,0x7e,0xd4,0xbe,0xf1,0x8d,0x6f,0xc8,0xd2,0xd2,0x92,0xd4,0x6a,0x35,
0x59,0x5a,0x5a,0x1a,0x3b,0xe9,0xdb,0xcc,0xf3,0xb8,0x93,0x16,0x75,0xd9,0xa4,0x94,
0x4a,0x75,0x59,0x5f,0x1f,0x9e,0xbf,0x4f,0x29,0xb5,0x22,0x22,0xef,0x37,0x6e,0x7f,
0x45,0x44,0xde,0x9f,0xe5,0x79,0xe3,0x6e,0x3,0x0,0x0,0xf3,0x2b,0xcb,0x77,0x7b,
0xf8,0xb1,0x51,0xd7,0x8d,0xf3,0x4b,0xa5,0xd4,0x81,0xbe,0x4d,0x29,0x75,0x29,0x22,
0x7,0x4a,0xa9,0xbf,0x53,0x4a,0x9d,0x9b,0x8f,0x4f,0x7b,0x8a,0x7b,0xbc,0x79,0x5f,
0xf8,0x78,0x5e,0x7f,0xfd,0xf5,0x4c,0x9f,0x8b,0xe9,0x56,0x38,0xe8,0xd9,0xae,0xeb,
0x70,0x17,0x15,0x0,0x45,0x64,0xe2,0x3c,0x7c,0x39,0xfc,0x61,0xea,0xfb,0x6c,0x97,
0x87,0x6f,0x6e,0x5d,0x44,0x3e,0x52,0xab,0xd5,0x3e,0xa0,0x94,0x5a,0x1f,0x9e,0xbf,
0xa4,0xef,0xf,0x9f,0x67,0x75,0x5d,0x3f,0x3,0x0,0x0,0xca,0x27,0xe9,0x3b,0x3d,
0x29,0x18,0x5a,0x7c,0x4f,0x44,0x8e,0x87,0x41,0xf0,0x5b,0x4a,0xa9,0x6f,0x2a,0xa5,
0x8e,0xd3,0x1c,0x87,0x2d,0xf4,0x85,0x5f,0xd3,0x16,0x6,0xf3,0xba,0x95,0x54,0xf5,
0x8b,0xb,0x7f,0x22,0x62,0xd,0x80,0x5a,0xf8,0xba,0x3e,0xd8,0x88,0xe0,0xf7,0xde,
0x5a,0xad,0xf6,0x71,0xa5,0xd4,0x76,0xad,0x56,0xfb,0xb0,0x52,0xea,0x3d,0x79,0x83,
0x9d,0xf9,0x5a,0xe1,0xcb,0xb6,0xeb,0x69,0xef,0x3,0x0,0x0,0xf3,0x2d,0xea,0x7b,
0x3e,0xcb,0xed,0x11,0x19,0xe3,0xbd,0xc3,0xd3,0x87,0x44,0xe4,0x53,0xc3,0xdb,0xbe,
0x27,0x22,0x7f,0xae,0x94,0x7a,0x53,0x29,0xf5,0x27,0xba,0x3a,0x98,0x14,0xe0,0xe2,
0xaa,0x82,0x41,0x10,0x48,0x10,0x4,0xb1,0xef,0x31,0xc9,0x2d,0x5b,0xf0,0xcb,0xd2,
0xf2,0x15,0xb1,0x57,0xfd,0x6c,0xcc,0xfb,0x87,0xc1,0xef,0x15,0xa5,0xd4,0xeb,0x22,
0xf2,0x86,0x88,0xfc,0x70,0xdc,0xcf,0x25,0x95,0x62,0x93,0x6e,0x8b,0xba,0x1e,0x75,
0x1b,0x0,0x0,0x58,0xc,0x59,0x8b,0x3e,0xb6,0x36,0x6b,0xf8,0xb1,0xb6,0x61,0x6a,
0x96,0xe7,0x7a,0xaf,0x52,0xea,0xd,0x19,0xe4,0x9c,0x9e,0x88,0x7c,0x4d,0x44,0x7e,
0x4f,0x44,0x1e,0x84,0x7f,0x2e,0x4d,0x3b,0x58,0x7,0xbf,0xc0,0xf7,0x33,0xbd,0xff,
0xb0,0x5b,0xb6,0xe0,0x67,0xb,0x7d,0xe6,0x65,0x11,0x7b,0xc5,0x2f,0x29,0xfc,0xe9,
0x37,0x22,0x22,0xef,0xaf,0xd5,0x6a,0x3f,0xaf,0x94,0xfa,0xf8,0x30,0x0,0xc6,0xb6,
0x6f,0xaf,0xbb,0xfa,0x97,0xf6,0x39,0x1,0x0,0xc0,0x7c,0xca,0x9b,0x39,0xe2,0xb2,
0x85,0xbe,0xcd,0xd6,0xbe,0x55,0x4a,0x35,0x94,0x52,0x3f,0x39,0x3c,0x7d,0x57,0x29,
0xf5,0x5,0xa5,0xd4,0x17,0x95,0x52,0xbd,0x34,0xc1,0xcf,0xf7,0x7d,0xf1,0x7d,0xbf,
0x90,0xca,0xdf,0x52,0x9a,0xaa,0x5f,0xb8,0xf2,0x97,0x34,0xf6,0x2f,0x6a,0x22,0x88,
0x88,0xb4,0x6b,0xb5,0xda,0x1f,0x88,0xc8,0x91,0x88,0xfc,0xa4,0x88,0xbc,0x92,0xf5,
0x80,0xd3,0xf4,0xc2,0x93,0x1e,0x17,0xf7,0xb,0x4f,0x3a,0x1,0x0,0x80,0xf9,0x15,
0xf5,0x7d,0x1e,0x35,0xde,0xae,0x88,0x5c,0x61,0xf1,0x3e,0x11,0xf9,0x55,0x11,0x39,
0x51,0x4a,0xfd,0x17,0xa5,0xd4,0x7b,0xa2,0x82,0x5f,0x10,0x4,0xd2,0xef,0xf7,0xc5,
0xef,0xf7,0x47,0x1,0xd0,0x9f,0xb2,0xf2,0x37,0x11,0xfe,0xb2,0xce,0xf0,0x8d,0x9,
0x7a,0x23,0xb5,0x5a,0xed,0x3,0xb5,0x5a,0xed,0xcf,0x44,0xe4,0xaf,0x45,0xe4,0x27,
0xb2,0x54,0xa,0xb5,0x34,0x55,0x3c,0xdb,0xb9,0xed,0xb2,0xf9,0x73,0x4,0x3b,0x0,
0x0,0x16,0x4b,0xd6,0x22,0x4e,0x54,0x98,0x8b,0xb,0x80,0x49,0xaf,0x99,0xf2,0x98,
0x1a,0x22,0xf2,0x9f,0x45,0xe4,0x44,0x44,0x7e,0x4d,0x44,0x5e,0xb1,0x55,0xfb,0x7c,
0xdf,0x97,0xbe,0xef,0xf,0x2,0xe0,0xf0,0x34,0x8d,0xb1,0x31,0x7f,0x59,0x82,0x9f,
0x48,0xaa,0x99,0xbd,0xaf,0x28,0xa5,0x7e,0x51,0x44,0xfe,0xbd,0x88,0xbc,0x98,0x75,
0x2,0x47,0x54,0xa,0x37,0x2f,0xa7,0xf9,0x5,0x25,0x95,0x68,0xd3,0xdc,0x7,0x0,
0x0,0x16,0x47,0x54,0x40,0x8b,0xba,0x3f,0xae,0xc0,0x14,0xf5,0xfc,0x19,0xc2,0xe0,
0x2b,0x4a,0xa9,0xcf,0x28,0xa5,0xde,0x50,0x4a,0xfd,0x9c,0x52,0xea,0xf7,0x75,0x8b,
0xb7,0xdf,0xef,0x4b,0xe0,0xfb,0xe2,0x7,0xc1,0x55,0xdb,0xb7,0x88,0xca,0x5f,0xb8,
0x9d,0x1b,0xbe,0xcd,0xd6,0xfa,0xb5,0x8d,0xfd,0xb,0xf9,0xb8,0x88,0xfc,0x6d,0xad,
0x56,0xfb,0x8c,0x88,0xbc,0x98,0x74,0x20,0x69,0x3e,0x70,0x7d,0x39,0x6d,0xf0,0x8b,
0xab,0xfc,0xd1,0xd2,0x5,0x0,0xa0,0x1a,0x92,0xbe,0xf3,0xe3,0x5a,0xbe,0x49,0xf9,
0x20,0x4b,0x86,0xb0,0xbd,0x7e,0xe8,0xb8,0xde,0xab,0x94,0xfa,0x4a,0x10,0x4,0xff,
0x2f,0x8,0x82,0xf,0xf4,0x87,0xad,0x5e,0x5d,0xf5,0xeb,0xeb,0x53,0x51,0x13,0x3e,
0x6c,0xe3,0xf9,0xa2,0x96,0x76,0x31,0xcf,0x2d,0x5e,0x11,0x91,0xdf,0x16,0x91,0x4f,
0xe8,0x1b,0xa2,0x2a,0x7e,0x69,0x43,0x9e,0x79,0x3d,0x29,0xe0,0xd9,0x9e,0x27,0xea,
0xf5,0x92,0x8e,0x7,0x0,0x0,0x2c,0x9e,0xb4,0xed,0xdf,0xf0,0xe5,0xb4,0x43,0xc9,
0xb2,0xdc,0x6e,0x3b,0x6,0xdf,0xf7,0xb7,0xfb,0xfd,0xfe,0xdf,0x4,0xbe,0xff,0x73,
0xbe,0xef,0x7f,0x61,0xd4,0xfe,0xed,0xf7,0xc5,0x2f,0x62,0xa9,0x97,0xbc,0x6b,0xfa,
0x69,0xa1,0xeb,0xaf,0x89,0xc8,0x1f,0x88,0xb1,0x3,0x47,0x56,0x71,0x1f,0x5a,0x96,
0xe0,0x97,0x14,0xfa,0xb2,0xb6,0x9f,0x1,0x0,0xc0,0x62,0xc9,0xd2,0xfa,0x8d,0xca,
0x17,0x49,0x2d,0xdd,0xa8,0xfb,0x6c,0x8f,0x55,0x4a,0x8d,0xda,0xba,0x41,0x10,0xbc,
0xd8,0xf7,0xfd,0xdf,0xf0,0x7d,0xff,0xc3,0x7e,0xbf,0xff,0xaf,0xfb,0xbe,0xff,0x6e,
0xa0,0x43,0xe0,0xb4,0xb3,0x7d,0xd3,0x4e,0xe2,0x8,0x7,0x3f,0x4b,0x10,0xfc,0x94,
0x88,0xfc,0x95,0xc,0xb7,0x5a,0x8b,0x9b,0xcc,0x11,0x57,0xd1,0xb3,0x7d,0x10,0x71,
0xa5,0xd8,0x34,0x27,0xdb,0xe3,0xb3,0x3c,0x7,0x0,0x0,0x98,0x4f,0x69,0xbe,0xdf,
0xa3,0xf2,0x81,0xed,0xb2,0x79,0x1e,0xfe,0xf9,0x34,0xc7,0x11,0x77,0x3d,0x18,0x8e,
0xeb,0x1b,0x8d,0xef,0x1b,0x84,0xbd,0x8f,0xf7,0x7d,0xff,0x6f,0xfc,0x7e,0xbf,0xdd,
0x37,0x2a,0x80,0xd3,0x98,0x98,0xf0,0x91,0xb4,0xa6,0x9f,0xbe,0x1e,0xf2,0xdf,0x45,
0xe4,0x3f,0x64,0x79,0xe1,0xa4,0xa4,0x1c,0x17,0xd4,0xcc,0xeb,0xb6,0xcb,0xb6,0xd7,
0x48,0x53,0xe2,0x5,0x0,0x0,0x8b,0x2b,0xee,0x3b,0xdf,0x16,0xe8,0x6c,0xd7,0x93,
0x5a,0xbf,0xb6,0xe7,0x8d,0x7b,0x9c,0x79,0xbf,0x39,0xbb,0xd7,0x1c,0xeb,0x17,0xf8,
0xfe,0x8a,0x1f,0x4,0xbb,0x7e,0xbf,0xff,0x31,0xdf,0xf7,0xbf,0x3e,0xed,0x52,0x2f,
0xb7,0x92,0x96,0x6b,0x89,0x9a,0xdd,0x3b,0xbc,0xfe,0xa2,0x88,0xfc,0x4f,0x11,0x79,
0x23,0x4d,0x88,0x4a,0xdb,0x7,0xb7,0xfd,0x5c,0xda,0xf0,0x67,0xbe,0x4e,0xda,0x5f,
0xa,0x0,0x0,0xa8,0x86,0x2c,0x1,0xd0,0xbc,0x2d,0x2a,0xb0,0x25,0x75,0x2f,0xe3,
0x9e,0xcf,0xbc,0x7f,0xb4,0x7b,0x87,0x6e,0xfb,0xea,0xca,0x5f,0x10,0xe8,0x10,0xf8,
0x92,0xef,0xfb,0x7f,0xdc,0xef,0xf7,0x7f,0x3a,0x8,0x82,0xdf,0xcb,0xf8,0xb6,0xc7,
0xdc,0x4a,0xb3,0x96,0x9f,0x88,0x75,0x59,0x97,0x97,0x44,0xe4,0x8f,0x44,0xe4,0x23,
0xfa,0xb6,0x34,0x55,0xb7,0xb8,0xf,0x23,0x6f,0x1b,0x37,0xfc,0x3a,0x84,0x3f,0x0,
0x0,0x60,0x93,0xb5,0x58,0x95,0x94,0x33,0xa2,0x32,0x47,0xf8,0xf9,0xe2,0xba,0x94,
0xba,0xe5,0x6b,0x8c,0xf7,0x13,0x73,0x92,0x87,0x1e,0xeb,0xd7,0xef,0xf7,0x5f,0xf4,
0x7d,0xff,0xcb,0xbe,0xef,0xdf,0x11,0x91,0xcf,0xa7,0x7f,0xd7,0xe3,0x6a,0x6f,0xbf,
0xfd,0x76,0xec,0xce,0x1d,0x22,0xd6,0xe0,0xf7,0xa2,0x88,0xfc,0x99,0x88,0x6c,0x87,
0xdf,0x5c,0xd4,0x65,0x5b,0x68,0x9b,0xe6,0x64,0xbe,0x46,0xde,0xb6,0x2f,0xc1,0xf,
0x0,0x80,0x6a,0xca,0xd3,0x2,0x8e,0xcb,0x36,0xe6,0x6d,0x71,0xa7,0x20,0x8,0x26,
0x2e,0x7,0x41,0x20,0x9e,0xe7,0x89,0xe7,0x79,0xd2,0xf7,0x3c,0xf1,0xfa,0xfd,0xc1,
0x65,0xbd,0xb4,0xcb,0xf0,0xb2,0x7f,0x15,0x2,0x25,0xf0,0xfd,0xff,0xf4,0x5f,0x3f,
0xf7,0xb9,0xcf,0xe5,0x79,0xef,0xb5,0x6f,0x7f,0xfb,0xdb,0xb1,0x63,0xfd,0x2c,0xe7,
0x2f,0xc8,0xa0,0xe2,0xf7,0xa3,0x71,0x1f,0x56,0x9e,0xf,0xc4,0xfc,0x30,0x92,0x7e,
0x26,0xee,0x83,0x8f,0x3a,0x16,0x1b,0x2,0x20,0x0,0x0,0xd5,0x92,0xf4,0xdd,0x1f,
0xd7,0x39,0x4c,0xca,0x1d,0x79,0x82,0x9f,0xef,0xfb,0xa3,0xf0,0x37,0xa,0x81,0x46,
0xe8,0xb,0x9f,0x82,0xe1,0x78,0xc0,0xc0,0xf7,0x3f,0xf9,0xdf,0x3e,0xff,0xf9,0xcc,
0x2d,0xe0,0xda,0xb7,0xbf,0xfd,0xed,0xc4,0xbd,0x7a,0x47,0xf,0x1e,0x5c,0xfe,0x2d,
0x11,0xf9,0x99,0xb8,0xf,0xca,0x96,0x8c,0xc3,0x1f,0x8a,0xf9,0x1,0x44,0x5,0x3f,
0xdb,0x63,0xa2,0x9e,0xd3,0x76,0x6e,0x3b,0x9e,0xb8,0xdb,0x0,0x0,0xc0,0x62,0xc9,
0xfa,0x7d,0x9f,0x94,0x21,0xe2,0x8a,0x4c,0x71,0x5,0x2b,0x5b,0xf0,0xb,0x57,0xfd,
0xc6,0xc2,0x9f,0x19,0x2,0x8d,0x93,0x3f,0x5c,0xe4,0x79,0x58,0x5,0xf4,0xfd,0x7e,
0xff,0x63,0xbf,0xf1,0x9b,0xbf,0xf9,0x66,0x96,0xf7,0x58,0xfb,0xfb,0xbf,0xff,0xfb,
0xc4,0x5,0x9d,0x8d,0xcb,0xbf,0x2c,0x22,0xbf,0x98,0xf4,0x61,0x45,0x55,0xe6,0xe2,
0x12,0xb0,0x19,0xfc,0xa2,0x82,0x61,0x9a,0xca,0x5f,0xd4,0x2f,0xc6,0x76,0x3d,0xe9,
0x7d,0x0,0x0,0x80,0x6a,0x88,0xfa,0xfe,0xcf,0x5b,0x5,0x4c,0x5b,0xfd,0xb,0x82,
0x40,0x2e,0x2f,0x2f,0xa5,0xef,0x79,0x72,0xe9,0x79,0xe2,0x5d,0x5e,0x8a,0x37,0xac,
0xfa,0x79,0x11,0x1,0x30,0x54,0xfd,0x3b,0xf7,0x7d,0xff,0x87,0x7e,0xfb,0x77,0x7e,
0xe7,0xad,0xb4,0xef,0xb5,0x76,0x7c,0x7c,0x9c,0x58,0xf5,0x1b,0x9e,0x7f,0x44,0x6,
0xe3,0xfc,0x62,0x3f,0x98,0x69,0xcb,0x9f,0x71,0xe1,0x30,0x6d,0xe5,0x2f,0xee,0x72,
0xdc,0x6d,0x0,0x0,0x60,0xf1,0x4d,0x5b,0xc,0x8a,0xca,0x1d,0x71,0x39,0xc5,0x56,
0xf0,0x52,0x4a,0x49,0x7f,0x38,0xbe,0xcf,0xbb,0xbc,0x1c,0xb,0x7f,0xde,0xe5,0xe5,
0x58,0xf0,0xd3,0x97,0x47,0xdb,0xbc,0x19,0x3b,0x7e,0xf8,0xfd,0x7e,0xc7,0xf7,0xfd,
0x7f,0xf2,0xbf,0xbe,0xfc,0xe5,0x77,0xd2,0xbc,0xff,0x5b,0x22,0x92,0xd8,0xee,0x15,
0x91,0xf7,0x89,0xc8,0x97,0x93,0x3e,0x1c,0x5b,0x3a,0xce,0x1a,0xfc,0xd2,0x54,0xfd,
0xe2,0x2a,0x7f,0x59,0x2,0x60,0xd4,0xfb,0x0,0x0,0x0,0x48,0x2a,0x1e,0x25,0x75,
0x3d,0x6d,0xd7,0x6d,0x8f,0x55,0xe6,0x32,0x2f,0x96,0x53,0x78,0xed,0xbf,0x51,0xf0,
0xbb,0xaa,0xfe,0xb5,0xfa,0xfd,0xfe,0x57,0x44,0xe4,0x47,0xd2,0xbc,0xaf,0xda,0xe3,
0xc7,0x8f,0x93,0xc2,0xdf,0xb,0xb5,0x5a,0xed,0x2f,0x44,0xe4,0x43,0x59,0x3e,0x80,
0xb4,0x89,0x37,0x6a,0xf0,0x63,0xd1,0xe1,0x2f,0xa,0xa1,0xf,0x0,0x0,0xe4,0x29,
0x12,0xa5,0xe9,0x7c,0x9a,0x97,0x6d,0x59,0xc8,0xf3,0x3c,0xb9,0xbc,0xb8,0x90,0x4b,
0xcf,0x93,0xcb,0xcb,0xcb,0x51,0xe5,0xef,0xf2,0xe2,0xe2,0xaa,0x2a,0x18,0x35,0x1,
0xc4,0x8,0x81,0xc3,0xd3,0x7f,0xfc,0x3f,0x5f,0xfd,0xea,0xaf,0x27,0xbd,0xd7,0xda,
0xe3,0xc7,0x8f,0x65,0x69,0x69,0x69,0x70,0xc5,0x1e,0xfe,0x7e,0xb9,0x56,0xab,0x4d,
0x8c,0xf3,0x4b,0xa,0x7e,0xe6,0xe5,0xa4,0x90,0x17,0x17,0x4,0xb3,0x86,0xbf,0xa8,
0x5f,0x12,0x95,0x3f,0x0,0x0,0x90,0x56,0x9a,0xb6,0xaf,0xed,0x7a,0x54,0x8,0xb4,
0x75,0x40,0xf5,0x78,0x3f,0xf3,0xa4,0xdb,0xbd,0x97,0x97,0x97,0xd2,0xef,0xf7,0x47,
0xe3,0x1,0x27,0x96,0x7f,0x19,0xb6,0x80,0xf5,0xd2,0x2f,0x7a,0x2,0x48,0x10,0x4,
0x5b,0xff,0xf7,0xcd,0x37,0xbf,0x15,0xf7,0xde,0x6a,0xff,0xf0,0xf,0xff,0x60,0xdd,
0xdd,0x63,0x78,0x79,0x45,0x44,0xfe,0x76,0xb8,0x93,0x47,0xaa,0x37,0x1c,0xf7,0x66,
0xf5,0x1b,0xd,0x7,0xbe,0xb8,0x10,0x98,0x14,0xfe,0x6c,0xe7,0x49,0xc7,0x19,0x87,
0x10,0x8,0x0,0x0,0xc2,0xa2,0xf2,0x41,0x5c,0x4b,0x57,0x9f,0x47,0x9d,0x74,0xb8,
0x33,0x83,0xdf,0xa5,0x11,0xfe,0xb2,0x2e,0xff,0x32,0xdc,0x13,0xf8,0x51,0x10,0x4,
0x3f,0xf0,0xa7,0x5f,0xff,0x7a,0xe4,0x1e,0x70,0xb7,0x12,0xde,0xeb,0x6f,0x89,0xc8,
0x8b,0x69,0xde,0x70,0x54,0xdb,0x37,0xa9,0xf2,0x97,0x27,0xfc,0x99,0xaf,0x61,0xfb,
0xa0,0xe3,0x7e,0x19,0x49,0x8,0x7f,0x0,0x0,0x20,0x8d,0xb8,0x56,0x70,0x54,0x67,
0xd2,0x7c,0xdc,0xd8,0x29,0x6a,0xcc,0xdf,0xb0,0xa5,0x6b,0x5e,0x1e,0xab,0xfe,0xd,
0xb7,0x81,0x33,0x96,0x7f,0x79,0x2d,0x8,0x82,0x4f,0x89,0xc8,0x17,0xa3,0x8e,0x3b,
0xae,0xf2,0xf7,0x9,0x11,0xf9,0x4a,0x9a,0x37,0x9c,0xa6,0xb4,0x69,0xab,0xf2,0xa5,
0x9,0x7f,0xfa,0x72,0xf8,0xf9,0xcd,0xeb,0x51,0xc7,0x13,0x75,0xbc,0x0,0x0,0xa0,
0x1a,0xae,0xf3,0xfb,0x3f,0x4b,0xfb,0x37,0x8,0x82,0x41,0xe5,0xef,0xe2,0x42,0x2e,
0x2e,0x2f,0x7,0xe3,0xfe,0x8c,0xaa,0x9f,0x3e,0xe9,0x25,0x60,0x46,0xe7,0xe1,0xea,
0x9f,0xe7,0xd,0x26,0x81,0x98,0xcb,0xbf,0x4,0xc1,0x3b,0x41,0x10,0x6c,0xfc,0xc5,
0x5f,0xfe,0xe5,0x77,0x6d,0xc7,0x19,0x55,0xf9,0x7b,0x45,0x44,0x7e,0x2d,0xe9,0x8d,
0x99,0x6f,0xc6,0xf6,0xc6,0xd2,0x6,0xbf,0x2c,0xd5,0x3f,0xdb,0x6b,0x46,0x7d,0xe0,
0x51,0xd7,0xa3,0x10,0x10,0x1,0x0,0x40,0x11,0x92,0x2a,0x80,0x4a,0xa9,0xd1,0x3e,
0xbe,0xca,0xb2,0xf6,0xdf,0x68,0xa6,0xaf,0x31,0xe3,0x37,0x18,0x2c,0xeb,0x32,0x31,
0xe9,0xc3,0xdc,0xfa,0x6d,0xb8,0xfc,0xcb,0x7b,0x82,0x20,0xf8,0x55,0x11,0xf9,0xa4,
0xed,0xd8,0x6e,0x85,0x96,0x74,0xd1,0x3e,0xa5,0x94,0x7a,0x9f,0x79,0x5f,0x54,0x35,
0x2d,0x4d,0x4f,0x3b,0x2a,0xf8,0xe9,0x37,0x62,0x6b,0x1,0xe7,0x69,0xfb,0xc6,0x5d,
0x8e,0xfa,0xa5,0x0,0x0,0x0,0x24,0x89,0xc8,0x4b,0x63,0x92,0x3a,0x8f,0x13,0xd9,
0x48,0xa9,0xc1,0x29,0x61,0x99,0x17,0x3d,0x9e,0x6f,0xac,0x5,0x6c,0x2c,0x1,0x13,
0xc,0x43,0x9f,0xb9,0xf6,0x5f,0x10,0x4,0x9f,0xf8,0xc1,0x76,0xfb,0xb3,0x6f,0xed,
0xed,0xbd,0x1d,0x3e,0x26,0x5b,0xe5,0xef,0x45,0x11,0xf9,0x4c,0xd4,0x9b,0x30,0x6f,
0x4f,0xd3,0xee,0xb5,0xad,0x64,0x6d,0x1e,0xb8,0xad,0xfa,0x37,0x6d,0xe5,0x2f,0xee,
0xd8,0xd3,0xde,0xf,0x0,0x0,0xaa,0x27,0x2a,0xe4,0x4d,0x93,0x1b,0xc2,0xf9,0x65,
0x22,0xff,0xd8,0x6e,0xb,0x85,0x3c,0xdd,0x26,0xd6,0xd7,0xcd,0x6a,0xdf,0xc4,0xda,
0x7f,0x83,0xc7,0xbd,0x10,0x4,0xc1,0x67,0x44,0xe4,0xa7,0xc3,0xc7,0x73,0x2b,0x7c,
0x70,0xb5,0x5a,0xed,0xa7,0x44,0xe4,0xbd,0x69,0xde,0x80,0xf9,0x46,0xb2,0x56,0xfb,
0xc2,0x1,0x30,0x4d,0xcb,0x37,0x6b,0xbb,0x37,0xea,0x36,0x0,0x0,0x0,0x9b,0xa4,
0xdc,0x90,0xa6,0x2,0x18,0xf5,0x9c,0x91,0xe1,0x2f,0x21,0x0,0xfa,0xe6,0x65,0xb3,
0xda,0x67,0xb6,0x7a,0x43,0xcb,0xbe,0xc,0xb3,0xd4,0x1b,0xaf,0xad,0xaf,0xff,0xca,
0xa3,0x83,0x83,0x8e,0x79,0x3c,0xe1,0xca,0xdf,0xb,0x4a,0xa9,0x9f,0xb7,0xbd,0x31,
0x5b,0xd9,0xd2,0xbc,0x6c,0x1b,0xe7,0x17,0xf5,0x6,0xa3,0x2a,0x7f,0x45,0x7,0xbf,
0xb8,0xdb,0x1,0x0,0x0,0xd2,0xd2,0xd9,0x28,0x6f,0xae,0x98,0xc8,0x48,0x66,0xde,
0x89,0xa9,0xfa,0x59,0x8b,0x67,0x57,0xcb,0xba,0x8c,0xef,0xfe,0x61,0x54,0x3,0x87,
0x74,0x37,0xf7,0xd3,0xe6,0xb1,0x2c,0x85,0xde,0xc4,0x8f,0x8a,0x48,0x2b,0xa9,0xdd,
0x9a,0x26,0xf8,0x25,0x5,0xc0,0xa4,0xf6,0x6f,0x54,0x3b,0x38,0xae,0x5,0x6c,0x3b,
0x26,0x0,0x0,0x80,0x69,0x25,0x15,0xa6,0x92,0x7e,0xc6,0xbc,0x1e,0x4,0x81,0x28,
0xf3,0xfe,0xc1,0x9d,0x93,0x63,0x1,0x43,0x43,0xe6,0x7c,0xa3,0x12,0x18,0x1e,0xeb,
0x67,0x9,0x7e,0xda,0x4f,0xbd,0xb6,0xbe,0xfe,0x8a,0x79,0xc3,0x92,0x79,0x80,0x22,
0xf2,0x46,0xdc,0xc1,0x27,0xbd,0x79,0x5b,0xfb,0x36,0x2e,0xec,0xd9,0x1e,0x13,0xf7,
0xfc,0x69,0x42,0x1f,0x0,0x0,0xc0,0x75,0x4a,0x13,0xa,0xad,0x5d,0xcc,0xe1,0x49,
0xd,0x3,0x9f,0x79,0x5f,0x64,0x25,0xd0,0x68,0xfb,0xf6,0x8d,0x89,0x20,0xfa,0x7e,
0x8b,0x97,0x44,0xe4,0xe3,0xe6,0xd,0x4b,0xc6,0xe5,0xf7,0x28,0xa5,0xfe,0xe5,0x34,
0x55,0xbf,0x70,0x10,0x8c,0x1a,0xcf,0x97,0x34,0xd1,0x23,0x7c,0xdb,0xe8,0x43,0x12,
0x42,0x1f,0x0,0x0,0x98,0x2f,0x13,0x39,0x25,0x66,0xa8,0x9a,0xce,0x3f,0xa3,0x50,
0x98,0xd0,0x3d,0xf5,0xc7,0xc7,0xf8,0x45,0x1d,0xc2,0x58,0x71,0x6f,0xc9,0x38,0xa8,
0x4f,0xc8,0xa0,0x37,0x3c,0x71,0x20,0x79,0xaa,0x7e,0x51,0x41,0xd0,0x16,0x2,0xcd,
0xeb,0x51,0x81,0x2f,0xfc,0xe1,0x11,0xfa,0x0,0x0,0x40,0xd9,0xd9,0x32,0x4c,0x9a,
0x9f,0x9,0x42,0xed,0xe0,0x70,0x76,0x32,0x97,0x7e,0xd1,0xe1,0x2f,0xc6,0x87,0x5f,
0x5b,0x5f,0x6f,0xe9,0x2b,0x4b,0xc6,0x41,0xfd,0xc4,0xb4,0x55,0xbf,0xb8,0xea,0x5e,
0x54,0x55,0x2f,0xcb,0x29,0xfc,0x41,0x2,0x0,0x0,0x94,0x55,0x64,0x5e,0xd1,0x13,
0x6b,0x6b,0xb5,0xab,0xcb,0x96,0x96,0xb0,0xd9,0xe,0x56,0x96,0x4a,0x60,0x8a,0x8a,
0x9f,0xf6,0x82,0xc,0x8a,0x7c,0x22,0x72,0xd5,0xf6,0x7d,0x8f,0x88,0x7c,0xd0,0x76,
0xd0,0x59,0xaa,0x7e,0xb6,0xc7,0xd9,0x2a,0x7b,0x49,0x33,0x7c,0xcd,0xf,0xcc,0xd6,
0x33,0x7,0x0,0x0,0x98,0x67,0x13,0x2b,0xab,0x84,0x66,0x13,0xab,0x61,0xe5,0x6f,
0x2c,0xf0,0x29,0xfb,0xa2,0xd0,0x29,0xb3,0xd1,0xf,0xeb,0xb,0xba,0xed,0xfb,0x11,
0xa5,0xd4,0xb,0xd3,0x8e,0xf5,0xb,0x87,0xb8,0xa8,0x99,0xbf,0x49,0xd5,0x3d,0xda,
0xbc,0x0,0x0,0x60,0x9e,0x25,0x65,0x96,0x9a,0xc,0x2,0xa0,0x3e,0x85,0x7e,0x78,
0xac,0xe5,0xab,0x9f,0x2f,0xaa,0xb3,0x9a,0xd2,0x7,0x5f,0x5b,0x5f,0x7f,0x49,0xe4,
0xaa,0xed,0xbb,0x6d,0x3b,0x68,0x5b,0x18,0x4b,0x3a,0x45,0xb5,0x76,0xd3,0x4,0xc0,
0xf0,0x6b,0xa5,0xfd,0x0,0x1,0x0,0x0,0xe6,0x45,0x6d,0xd8,0xee,0xad,0xc9,0x20,
0x4,0x4a,0xc2,0xae,0x22,0xd6,0x4c,0x15,0x9a,0x27,0x91,0xc2,0x4b,0x22,0xf2,0x83,
0x22,0x57,0x95,0xbf,0xf,0x25,0x55,0xfd,0xd2,0x56,0xfb,0xd2,0xdc,0x1f,0x7e,0xee,
0xf0,0x9b,0x24,0xf8,0x1,0x0,0x80,0x45,0x34,0x56,0xe9,0x33,0xc6,0xfc,0xe9,0x4a,
0xa0,0x49,0xaf,0x5,0x28,0x62,0xe4,0xa6,0x61,0xf0,0x8b,0x59,0xda,0x25,0xce,0xf,
0x8b,0xc,0xc2,0x5f,0x43,0x44,0xde,0x1f,0xbe,0x37,0x6d,0xd5,0x2f,0xee,0xbe,0xa8,
0x20,0x98,0xa6,0xf2,0x17,0xbe,0xc,0x0,0x0,0x30,0xaf,0x74,0xb0,0x33,0xcf,0x47,
0x27,0xcb,0xe3,0x24,0x22,0x63,0xe9,0x59,0xc0,0x39,0x87,0xc3,0x7d,0x50,0x44,0xe4,
0x96,0x52,0xea,0xb5,0xa8,0x47,0x44,0x55,0xe9,0xd2,0x86,0xbd,0xb4,0xa7,0xf0,0xeb,
0x85,0x2f,0x3,0x0,0x0,0xcc,0x93,0x5a,0xad,0x36,0x91,0x65,0xcc,0xdb,0x6a,0x46,
0xdb,0xb7,0xb6,0xb4,0x14,0x39,0xf6,0x6f,0x70,0x66,0x64,0x26,0xa5,0xf2,0x8c,0xf7,
0xd3,0xda,0x22,0x83,0xbd,0x7d,0xd7,0xc3,0xf7,0x84,0x43,0x58,0x54,0x6b,0x76,0x9a,
0xb0,0x17,0x17,0xf4,0x8,0x7e,0x0,0x0,0x60,0xe1,0x99,0x4b,0xbd,0x44,0x8c,0xfb,
0xd3,0x46,0xc1,0x6f,0x78,0x9e,0x53,0xe3,0xb5,0xf5,0xf5,0xd6,0x2d,0xa5,0xd4,0x44,
0xcb,0x77,0xf4,0x22,0x12,0x1d,0xf6,0xcc,0xc7,0x15,0x51,0xf9,0x23,0xf0,0x1,0x0,
0x80,0x45,0x12,0xae,0xfe,0xe9,0xeb,0x63,0x2d,0xdf,0x50,0xdb,0xd7,0x14,0xce,0x5c,
0x81,0x11,0x0,0x73,0x8c,0xf7,0xd3,0x56,0x6e,0x89,0x48,0x2b,0x7c,0x6b,0xda,0xf1,
0x7e,0x59,0x5b,0xc1,0xe1,0xc7,0x85,0x5f,0x2f,0x7c,0x19,0x0,0x0,0x60,0x91,0x4c,
0x8c,0xf9,0x13,0xb1,0x6,0x40,0x6b,0x17,0x76,0xfa,0xca,0x9f,0x88,0xc8,0xf7,0x2d,
0x89,0x11,0xfe,0x6c,0x95,0xb8,0x3c,0x61,0x2f,0xcd,0x73,0x85,0xdf,0x98,0xed,0x3a,
0x0,0x0,0xc0,0x3c,0x9b,0x18,0xc7,0x37,0xf9,0x80,0xc1,0xb2,0x2f,0xb6,0x31,0x7f,
0x12,0xca,0x5b,0x83,0x1b,0xa6,0xa9,0xfa,0x89,0x88,0xb4,0x6e,0x29,0xa5,0xee,0xd8,
0x5e,0x28,0xfc,0x82,0x51,0xf7,0x9b,0xe7,0x51,0x3f,0x1f,0xbe,0x1c,0xf7,0x5c,0x0,
0x0,0x0,0x8b,0x6a,0x62,0xd2,0x87,0x31,0xe6,0xaf,0x16,0x1a,0xff,0x17,0x4e,0x46,
0x5,0xd,0x97,0x7b,0xcf,0x92,0xc,0xb6,0x76,0xb3,0x3e,0x69,0xda,0xb1,0x7d,0x51,
0xf7,0xc7,0x3d,0x6f,0x54,0x18,0x4,0x0,0x0,0x58,0x24,0xe1,0x8a,0xde,0x58,0xcb,
0x57,0x44,0x96,0x8c,0xfb,0x23,0x2b,0x85,0x3a,0x47,0xc9,0xd4,0x5,0xb3,0x3b,0xb7,
0x94,0x52,0x2f,0x8d,0x3f,0x77,0x7c,0xab,0xd6,0xf6,0xb8,0x34,0x13,0x41,0xcc,0x9f,
0x99,0x7c,0x3f,0x84,0x40,0x0,0x0,0x50,0x1d,0x7a,0x97,0x8f,0x51,0xdb,0x37,0xe1,
0xf1,0x7a,0x9f,0x5f,0x99,0xbe,0x80,0xf6,0xca,0xd2,0xd8,0x13,0x47,0x4,0x3f,0xf3,
0xfe,0xa8,0xb1,0x7c,0xe1,0xc7,0x44,0x1e,0x3c,0x41,0xf,0x0,0x0,0x54,0x4c,0x2d,
0x4d,0x75,0x2f,0xc2,0x28,0x6f,0x49,0x21,0x39,0xea,0x85,0x5b,0x49,0xe3,0xf9,0xc2,
0x97,0xf5,0xf5,0x2c,0x41,0x31,0xcd,0x64,0x10,0x0,0x0,0x80,0x2a,0x31,0xc7,0xfc,
0x85,0xcf,0xc3,0xcc,0x0,0x38,0xa5,0xf4,0x95,0xbf,0xa8,0xd6,0xae,0x79,0x1e,0xfe,
0x99,0xb8,0x83,0x7,0x0,0x0,0xa8,0x12,0xeb,0xd8,0x3f,0x31,0x5a,0xc0,0x16,0x63,
0xb9,0x4a,0xa9,0x51,0xdb,0x77,0x1a,0xa3,0xf0,0x97,0x65,0xd9,0x95,0xb8,0x31,0x80,
0xe1,0xeb,0x71,0x15,0x3e,0x82,0x20,0x0,0x0,0xa8,0xa2,0xb1,0x59,0xbe,0xe1,0xdb,
0x6c,0x12,0x56,0x4f,0xc9,0x22,0xb2,0xed,0x6b,0x5e,0x8e,0x9b,0xa1,0x9b,0x65,0x4c,
0x20,0xad,0x5e,0x0,0x0,0x80,0x50,0xd0,0x4b,0x39,0x6,0x50,0x29,0x55,0x44,0xdb,
0x57,0x62,0xdb,0xbe,0x89,0x7,0x30,0x45,0xa,0x25,0x0,0x2,0x0,0x80,0xaa,0x89,
0xaa,0xee,0xd5,0x22,0xee,0x1b,0x9b,0xec,0x51,0xd0,0x31,0x4c,0xb4,0x7d,0xe3,0x96,
0x7a,0x89,0x1b,0xf7,0x17,0x85,0x6a,0x1f,0x0,0x0,0xc0,0xa4,0xa8,0x5d,0x3d,0x46,
0x8c,0xb1,0x7e,0x45,0xe6,0xa8,0x89,0xb6,0xef,0xe0,0x35,0xf2,0xbd,0x40,0x9a,0x75,
0xfd,0x8,0x81,0x0,0x0,0x0,0xf6,0x3d,0x7d,0x13,0x15,0x90,0xa3,0xac,0x6d,0xdf,
0xa8,0xeb,0x93,0xaf,0x9f,0x2d,0xe4,0x11,0xfc,0x0,0x0,0x40,0xd5,0x45,0xed,0xf8,
0x11,0x65,0x94,0x9e,0xa,0xca,0x51,0x91,0x6d,0x5f,0xf3,0xf6,0x34,0xb7,0xc5,0x21,
0xf4,0x1,0x0,0x0,0x58,0xe4,0x5c,0xf0,0x79,0x1a,0x4b,0x51,0x4f,0x14,0x15,0xf8,
0xd2,0x2c,0xa,0x5d,0xf4,0x41,0x2,0x0,0x0,0x2c,0xaa,0xb4,0xf1,0xaf,0xa8,0x79,
0x14,0xb1,0x6d,0xdf,0xac,0xd2,0x1e,0x14,0x81,0x10,0x0,0x0,0xc0,0x10,0xd7,0xf6,
0x1d,0x2e,0xee,0x3c,0xba,0x3c,0xa5,0xa5,0x69,0x76,0xe3,0x48,0xb3,0x15,0x5c,0xda,
0xe7,0x2,0x0,0x0,0xc0,0x95,0x89,0x6e,0x6b,0x41,0xcf,0xbb,0x94,0xf4,0x80,0x69,
0x42,0x1b,0x81,0xf,0x0,0x0,0xa0,0x5c,0xac,0xdb,0xbb,0x11,0xda,0x0,0x0,0x0,
0xae,0x89,0x6d,0x71,0xe7,0x84,0xeb,0xd3,0x48,0xac,0xfc,0x89,0xe4,0x5b,0xb6,0x85,
0x0,0x9,0x0,0x0,0x50,0x3e,0x91,0xe1,0x2f,0xed,0x6c,0x5f,0x0,0x0,0x0,0xcc,
0x8f,0xc8,0xa5,0x5e,0xe2,0xd0,0x22,0x6,0x0,0x0,0x98,0x5e,0xec,0xf6,0x6e,0x86,
0x22,0xf3,0xd6,0x44,0xe5,0x6f,0x9a,0xad,0xdd,0x0,0x0,0x0,0x50,0x9c,0xb1,0x7c,
0x55,0xf4,0xe,0x1f,0x0,0x0,0x0,0x28,0xa1,0x82,0xb,0x6c,0xb1,0xeb,0xfc,0x15,
0x8d,0xea,0x20,0x0,0x0,0x40,0x3a,0xb3,0x4a,0x4d,0xb1,0x95,0xbf,0x59,0x84,0x35,
0x2,0x20,0x0,0x0,0xc0,0xcd,0xb9,0x96,0xb6,0x2f,0x81,0xf,0x0,0x0,0xa0,0x18,
0x85,0xee,0xed,0xb,0x0,0x0,0x80,0xc5,0x46,0xf8,0x3,0x0,0x0,0xa8,0x10,0xc2,
0x1f,0x0,0x0,0xc0,0x1c,0x28,0x6a,0x18,0x1d,0xe1,0xf,0x0,0x0,0xa0,0x42,0x8,
0x7f,0x0,0x0,0x0,0x15,0x42,0xf8,0x3,0x0,0x0,0xa8,0x10,0xc2,0x1f,0x0,0x0,
0x40,0x85,0x10,0xfe,0x0,0x0,0x0,0x2a,0x84,0xf0,0x7,0x0,0x0,0x50,0x21,0x84,
0x3f,0x0,0x0,0x80,0xa,0x21,0xfc,0x1,0x0,0x0,0x54,0x8,0xe1,0xf,0x0,0x0,
0xa0,0x42,0x6e,0xdd,0xf4,0x1,0x0,0x0,0x90,0xc6,0xf2,0xf2,0xb2,0xdc,0xbe,0x7d,
0xdb,0x7a,0xdf,0xd3,0xa7,0x4f,0x45,0x44,0xa4,0xd7,0xeb,0x89,0xe7,0x79,0xd7,0x79,
0x58,0xc0,0xdc,0x21,0xfc,0x1,0x0,0xe6,0xc2,0xc6,0xc6,0x86,0xd4,0xeb,0x75,0xeb,
0x7d,0xab,0xab,0xab,0xa3,0xcb,0x9e,0xe7,0x49,0xb7,0xdb,0x95,0x27,0x4f,0x9e,0xc8,
0xe9,0xe9,0x29,0x61,0x10,0x8,0xa1,0xed,0xb,0x0,0x98,0xb,0x8e,0xe3,0xa4,0x7e,
0xdc,0xf2,0xf2,0xb2,0xb4,0xdb,0x6d,0x59,0x59,0x59,0x99,0xf1,0x51,0x1,0xf3,0x87,
0xca,0x1f,0x0,0x54,0x44,0xab,0xd5,0x92,0x8d,0x8d,0xd,0x71,0x5d,0x57,0x1e,0x3e,
0x7c,0x28,0xae,0xeb,0xde,0xf4,0x21,0x65,0xd2,0xed,0x76,0x65,0x79,0x79,0xf9,0xa6,
0xf,0x3,0x98,0x7b,0x84,0x3f,0x94,0x8e,0xe3,0x38,0x63,0xff,0x5a,0x7f,0xf6,0xec,
0x99,0xf5,0x4b,0xca,0x75,0xdd,0xb9,0xf8,0xf2,0x6a,0x36,0x9b,0x13,0xb7,0xdd,0xbe,
0x7d,0x7b,0xac,0x8a,0x71,0x76,0x76,0x26,0xa7,0xa7,0xa7,0xd7,0x79,0x58,0xa8,0x10,
0xc7,0x71,0xa4,0xdd,0x6e,0x8f,0x82,0x53,0xa3,0xd1,0x90,0xed,0xed,0x6d,0xd9,0xdd,
0xdd,0x95,0x5e,0xaf,0x77,0xc3,0x47,0x97,0x5e,0xaf,0xd7,0xcb,0x1c,0xfe,0x9e,0x3c,
0x79,0x32,0xa3,0xa3,0x1,0xe6,0x17,0xe1,0xf,0xa5,0x63,0x7e,0x49,0xe5,0x95,0x34,
0xe8,0x3b,0xcf,0xa0,0x70,0xc7,0x71,0xa4,0xd1,0x68,0x44,0xde,0xdf,0x68,0x34,0x52,
0xb7,0xa5,0x6c,0xbe,0xf6,0xb5,0xaf,0xe5,0xfe,0x59,0x20,0x4a,0xb3,0xd9,0x94,0x76,
0xbb,0x3d,0x31,0x56,0xce,0x71,0x1c,0xd9,0xde,0xde,0x96,0xbd,0xbd,0x3d,0xe9,0x74,
0x3a,0x37,0x74,0x74,0xb3,0xd5,0xed,0x76,0xa7,0xa,0xb7,0xcd,0x66,0x53,0xee,0xdc,
0xb9,0x23,0x67,0x67,0x67,0xd2,0xed,0x76,0x19,0x3b,0x88,0x85,0x41,0xf8,0x43,0xe9,
0x4c,0x13,0xa0,0xb4,0xb8,0x90,0x26,0x62,0xaf,0xc6,0x1,0x8b,0x66,0x6d,0x6d,0x6d,
0x6c,0x22,0x84,0x4d,0xbb,0xdd,0x16,0x11,0x59,0xc8,0x0,0x78,0x7c,0x7c,0x9c,0xfb,
0x67,0x1b,0x8d,0x86,0x6c,0x6d,0x6d,0x8d,0xdd,0xd6,0xe9,0x74,0xe4,0xe4,0xe4,0x44,
0xba,0xdd,0xee,0xb4,0x87,0x6,0xdc,0x28,0xc2,0x1f,0x0,0x2c,0x98,0x7a,0xbd,0x2e,
0x9b,0x9b,0x9b,0x89,0xff,0x8,0xd2,0x66,0x11,0x0,0x1d,0xc7,0x91,0x7a,0xbd,0x7e,
0xa3,0x6d,0xe5,0x69,0x86,0x52,0xd8,0xfe,0x11,0xda,0x6a,0xb5,0xa4,0xd5,0x6a,0x49,
0xb7,0xdb,0x95,0x93,0x93,0x93,0x85,0xc,0xcc,0xa8,0x6,0xc2,0x1f,0x0,0x2c,0x98,
0xed,0xed,0xed,0xcc,0x15,0xf4,0xa2,0x2,0x60,0xbd,0x5e,0x97,0xb5,0xb5,0x35,0x59,
0x5e,0x5e,0x16,0xc7,0x71,0xe4,0xe0,0xe0,0x60,0xaa,0xa,0x5c,0x19,0x35,0x9b,0x4d,
0x69,0x36,0x9b,0xb2,0xb2,0xb2,0x22,0xfb,0xfb,0xfb,0x54,0x2,0x31,0x77,0x8,0x7f,
0x0,0x0,0x11,0x99,0x2e,0x0,0xea,0xd0,0xd7,0x6a,0xb5,0xc6,0x6e,0x5f,0x5d,0x5d,
0x95,0x27,0x4f,0x9e,0xcc,0xc5,0xe4,0x2c,0xd3,0x9d,0x3b,0x77,0x12,0x1f,0xa3,0x5b,
0xc3,0xdd,0x6e,0x57,0x1e,0x3e,0x7c,0xc8,0x98,0x40,0xcc,0xd,0xd6,0xf9,0x3,0x80,
0x5,0xb3,0xb3,0xb3,0x93,0xbb,0x1a,0xb5,0xb1,0xb1,0x91,0xba,0x5d,0x2c,0x32,0x8,
0x40,0xed,0x76,0x5b,0xee,0xdf,0xbf,0x3f,0x11,0xfc,0x44,0xae,0x66,0x1a,0xcf,0x9b,
0x2c,0x93,0xce,0x9a,0xcd,0xe6,0xc4,0xf8,0x40,0xa0,0xcc,0x8,0x7f,0x0,0xb0,0x60,
0x3c,0xcf,0x93,0xdd,0xdd,0xdd,0x5c,0x15,0x3c,0xc7,0x71,0x64,0x6b,0x6b,0x2b,0xb1,
0x6d,0xac,0xab,0x5e,0xdb,0xdb,0xdb,0xd6,0xd0,0x67,0xd2,0x2d,0xd2,0x79,0x51,0xaf,
0xd7,0x33,0x5,0x60,0x11,0x99,0xab,0x25,0x73,0x0,0xc2,0x1f,0x0,0x2c,0xa8,0xbc,
0xcb,0xb8,0xe8,0x0,0x18,0xa5,0x5e,0xaf,0xcb,0xf6,0xf6,0x76,0xa6,0x59,0xf3,0xab,
0xab,0xab,0x91,0x5b,0xb3,0x95,0xcd,0xdd,0xbb,0x77,0x33,0x3d,0xbe,0xdb,0xed,0xca,
0xde,0xde,0xde,0x8c,0x8e,0x6,0x28,0x1e,0x63,0xfe,0x80,0x8a,0xd2,0xeb,0x12,0xea,
0xb1,0x4d,0x4f,0x9f,0x3e,0x1d,0xdd,0xe7,0x38,0x8e,0xdc,0xbe,0x7d,0x5b,0x44,0x6,
0x55,0xa4,0x45,0x1b,0xb0,0x5f,0x25,0x3a,0x94,0x24,0x55,0xe7,0xc2,0x1a,0x8d,0x86,
0xac,0xad,0xad,0xc9,0xe1,0xe1,0xe1,0xc4,0x7d,0x9e,0xe7,0x89,0xeb,0xba,0x99,0xc2,
0x9c,0x6e,0xff,0xee,0xee,0xee,0x66,0x3a,0x8e,0x9b,0x70,0xef,0xde,0xbd,0xd4,0x8f,
0x3d,0x3d,0x3d,0x95,0x87,0xf,0x1f,0xce,0xf0,0x68,0x80,0xe2,0x11,0xfe,0x80,0x92,
0x78,0xfd,0xf5,0xd7,0x45,0x44,0x46,0x63,0xb5,0x3c,0xcf,0xb3,0xb6,0x92,0xce,0xce,
0xce,0x62,0x7,0x96,0x9b,0xc1,0xcd,0xa4,0xab,0x34,0xf5,0x7a,0xdd,0xfa,0xa5,0x1d,
0xb7,0x1e,0x9c,0xe3,0x38,0xd6,0x10,0x80,0xf9,0xb0,0xb7,0xb7,0x27,0xf5,0x7a,0x3d,
0xf3,0xfa,0x96,0x7a,0xb2,0x46,0xf8,0xef,0xd0,0xf3,0x3c,0xd9,0xdb,0xdb,0xcb,0x3c,
0xce,0xad,0xd9,0x6c,0xca,0xf2,0xf2,0x72,0xa9,0x77,0xb3,0x59,0x5e,0x5e,0xce,0x14,
0x6a,0xf7,0xf7,0xf7,0x67,0x78,0x34,0xc0,0x6c,0x10,0xfe,0x50,0x3a,0xbd,0x5e,0x2f,
0xf2,0x4b,0xca,0xdc,0x99,0x23,0x2a,0xc4,0x44,0x29,0xa2,0xe2,0xf0,0xea,0xab,0xaf,
0xa6,0xae,0xa0,0x84,0xc3,0x5b,0xda,0x2f,0x5e,0xf3,0x71,0x65,0xd9,0xc7,0x74,0x75,
0x75,0x55,0x4e,0x4e,0x4e,0xe6,0x6e,0xc6,0x26,0xae,0x3c,0x7c,0xf8,0x50,0xb6,0xb7,
0xb7,0x33,0xb7,0x5e,0xd7,0xd6,0xd6,0xac,0x95,0xad,0x6e,0xb7,0x2b,0x8f,0x1f,0x3f,
0xce,0x54,0x25,0x13,0x19,0xcc,0x28,0xde,0xd9,0xd9,0x29,0xed,0xcc,0xd8,0x2c,0x63,
0x13,0xbb,0xdd,0x2e,0xff,0x4d,0x60,0x2e,0x11,0xfe,0x50,0x3a,0xfb,0xfb,0xfb,0xa9,
0xfe,0x35,0x9d,0x66,0xf7,0x2,0x53,0x11,0x6b,0x71,0xa5,0x59,0xfe,0x41,0xeb,0xf5,
0x7a,0xb1,0x81,0x53,0x57,0xfa,0xe6,0xc5,0xbc,0xb4,0xec,0x60,0xe7,0x79,0x9e,0x3c,
0x7c,0xf8,0x30,0xd5,0x64,0xe,0x53,0x5c,0xb8,0x39,0x3c,0x3c,0xcc,0x5c,0x29,0xd3,
0xed,0xdf,0x32,0xb6,0x4a,0xf5,0xfa,0x7d,0x69,0x51,0xd,0xc7,0xbc,0x62,0xc2,0x7,
0x80,0x54,0xb2,0x7e,0x31,0xa2,0x7c,0x7a,0xbd,0x5e,0xa6,0x36,0x65,0xa7,0xd3,0x89,
0x7d,0xbc,0xe7,0x79,0xb9,0xda,0x9e,0xcb,0xcb,0xcb,0xa5,0xfc,0x5b,0xca,0xb2,0x24,
0x8d,0xeb,0xba,0x2c,0xee,0x8c,0xb9,0x45,0xf8,0x3,0x90,0xda,0xda,0xda,0xda,0x4d,
0x1f,0x2,0xa6,0xd4,0xe9,0x74,0xe4,0xf1,0xe3,0xc7,0xb1,0x8f,0xd1,0x55,0xc2,0x34,
0x33,0x58,0x4f,0x4f,0x4f,0x73,0x85,0xa0,0x76,0xbb,0x5d,0xc8,0x3e,0xde,0x45,0x59,
0x59,0x59,0xc9,0x54,0xc1,0xa4,0xea,0x87,0x79,0x46,0xf8,0xc3,0xdc,0x32,0x67,0xa7,
0x26,0x61,0x5c,0x4e,0x31,0x9a,0xcd,0xe6,0xdc,0x2c,0xd7,0x81,0x68,0x71,0x5b,0x92,
0x3d,0x7e,0xfc,0x58,0x76,0x76,0x76,0x32,0x4d,0xca,0xc8,0x53,0xfd,0xab,0xd7,0xeb,
0xa5,0x59,0xfb,0xcf,0x71,0x9c,0x4c,0x43,0x48,0x5c,0xd7,0x65,0x5f,0x5f,0xcc,0x35,
0xc2,0x1f,0x2a,0x81,0xf0,0x57,0x1c,0xc2,0xdf,0x62,0x78,0xf8,0xf0,0xe1,0xd8,0x7f,
0x17,0xbd,0x5e,0x4f,0x1e,0x3c,0x78,0x20,0xfb,0xfb,0xfb,0x99,0x27,0x63,0xf4,0x7a,
0xbd,0x5c,0x61,0x68,0x75,0x75,0x35,0xf3,0x62,0xca,0xb3,0xb0,0xb6,0xb6,0x96,0xa9,
0xa,0x49,0xd5,0xf,0xf3,0x8e,0xf0,0x7,0x0,0x15,0xa4,0x5b,0xbb,0x22,0x83,0x6a,
0xdf,0x83,0x7,0xf,0xa6,0xda,0xa5,0xe2,0xf0,0xf0,0x30,0xd7,0xc,0xde,0x8d,0x8d,
0x8d,0xdc,0xaf,0x59,0x84,0x66,0xb3,0x99,0x69,0xc6,0x32,0x55,0x3f,0x2c,0x2,0xc2,
0x1f,0x0,0x54,0x54,0xaf,0xd7,0x93,0x9d,0x9d,0x9d,0x42,0xd6,0xaa,0x73,0x5d,0x37,
0x71,0x2c,0xa1,0x4d,0xb3,0xd9,0xcc,0xbc,0x0,0x75,0x51,0xf2,0xec,0x3b,0x4c,0xd5,
0xf,0x8b,0x80,0xf0,0x7,0xcc,0x8,0x33,0x1,0x31,0xf,0x8a,0x1c,0x12,0x71,0x7c,
0x7c,0x9c,0xbb,0xfa,0x77,0x13,0x93,0x3f,0xda,0xed,0x76,0xa6,0x61,0xc,0xdd,0x6e,
0x97,0xaa,0x1f,0x16,0x2,0xeb,0xfc,0x1,0x37,0xa4,0xdb,0xed,0xe6,0x5e,0xee,0xa2,
0xd3,0xe9,0x24,0x7e,0x69,0x87,0x17,0xc1,0xd6,0xdb,0xb9,0x1,0xb3,0xe2,0x79,0x9e,
0x3c,0x7e,0xfc,0x38,0xd3,0xe4,0x9,0x91,0x41,0x5,0x6e,0x65,0x65,0xe5,0x5a,0xab,
0x6a,0x1b,0x1b,0x1b,0x99,0x17,0x51,0xa7,0xea,0x87,0x45,0x41,0xf8,0x3,0x32,0x28,
0x72,0x57,0x82,0xdd,0xdd,0x5d,0x59,0x59,0x59,0x11,0xc7,0x71,0xe4,0xec,0xec,0x4c,
0x5c,0xd7,0x95,0xed,0xed,0xed,0x54,0x3f,0x7b,0x72,0x72,0x32,0x55,0x65,0xb1,0xd9,
0x6c,0x8e,0xb6,0x81,0xab,0xd7,0xeb,0xb2,0xbc,0xbc,0x4c,0x30,0x44,0x21,0x8e,0x8f,
0x8f,0xe5,0xde,0xbd,0x7b,0x99,0xff,0x9e,0xae,0x73,0x17,0x99,0x56,0xab,0x95,0x79,
0x67,0x92,0x4e,0xa7,0x43,0x35,0x1f,0xb,0x83,0xf0,0x87,0xb9,0x95,0x65,0x70,0x7a,
0x51,0xff,0xd3,0x3e,0x3b,0x3b,0x2b,0xe4,0x79,0xb4,0xe3,0xe3,0xe3,0x42,0x9f,0x2f,
0x2d,0xfd,0x79,0xe8,0xe5,0x3c,0xb6,0xb6,0xb6,0x4a,0xb9,0xe8,0x2e,0xe6,0x4f,0xde,
0xea,0x9f,0xc8,0x60,0xd6,0x6d,0x9a,0xb5,0x5,0xa7,0xd1,0x6a,0xb5,0x32,0x8f,0xf3,
0xcb,0xbb,0x98,0x35,0x50,0x56,0x84,0x3f,0xcc,0xad,0x2c,0x55,0xb8,0xd5,0xd5,0xd5,
0x5c,0x5f,0x46,0x98,0x44,0xf5,0x3,0x49,0xf2,0x56,0xff,0x5a,0xad,0x96,0x1c,0x1e,
0x1e,0xce,0xac,0xfa,0xd7,0x68,0x34,0x72,0xcd,0x2e,0xce,0xb3,0xfc,0xd,0x50,0x66,
0x4c,0xf8,0x0,0x0,0x14,0x4a,0x57,0xff,0xf2,0x98,0xd5,0xc2,0xcf,0x8d,0x46,0x23,
0xf3,0xbe,0xc6,0x22,0x4c,0xf2,0xc0,0x62,0x22,0xfc,0x1,0x48,0xdd,0xf2,0xa5,0xfa,
0x81,0xb4,0xf2,0xce,0xfc,0x9d,0xd5,0xa2,0xcf,0x79,0x66,0x14,0x7b,0x9e,0x37,0xf3,
0x36,0x34,0x70,0x13,0x8,0x7f,0x40,0x89,0x94,0x7d,0x27,0x92,0x69,0x16,0x1,0xc6,
0xec,0xac,0xac,0xac,0xc8,0xeb,0xaf,0xbf,0x2e,0x1f,0xfd,0xe8,0x47,0x4b,0x33,0x76,
0xd3,0xf3,0xbc,0x4c,0x5b,0xc4,0x89,0xc,0x26,0x55,0xcc,0x2a,0x6c,0xed,0xee,0xee,
0xca,0xd1,0xd1,0x51,0xa6,0x40,0x7a,0x74,0x74,0x54,0xfa,0xff,0x26,0x81,0x3c,0x18,
0xf3,0x7,0x94,0x88,0xeb,0xba,0xa9,0xd6,0x1d,0xbb,0x7d,0xfb,0x76,0x61,0x63,0xef,
0xb2,0xac,0x73,0x46,0xe5,0xaf,0x5c,0x1c,0xc7,0x91,0xcd,0xcd,0xcd,0x51,0xe0,0x73,
0x1c,0x47,0xb6,0xb6,0xb6,0x64,0x6f,0x6f,0xaf,0x14,0xad,0xca,0xc3,0xc3,0xc3,0xc4,
0x99,0xe4,0x7a,0xc7,0x8c,0xbc,0x95,0xc2,0xac,0xc7,0x73,0x7c,0x7c,0x2c,0xed,0x76,
0x3b,0x71,0x99,0x97,0xd3,0xd3,0xd3,0x1b,0x9b,0x90,0x5,0xcc,0x1a,0xe1,0xf,0x98,
0x43,0x45,0x2e,0xcb,0x92,0x25,0xfc,0x51,0xf9,0x2b,0x8f,0x66,0xb3,0x29,0x9b,0x9b,
0x9b,0xd6,0xbf,0x85,0x76,0xbb,0x2d,0x77,0xee,0xdc,0xb9,0xf1,0x96,0xa5,0xeb,0xba,
0x72,0x74,0x74,0x24,0xeb,0xeb,0xeb,0x13,0xf7,0x75,0xbb,0x5d,0x39,0x39,0x39,0xb9,
0xf6,0x90,0xaa,0xb7,0xb5,0x5b,0x5e,0x5e,0x96,0x76,0xbb,0x6d,0xfd,0xfc,0x7a,0xbd,
0xde,0x8d,0x7f,0x76,0xc0,0x2c,0x11,0xfe,0x30,0xd7,0xd2,0x56,0xca,0x10,0x2d,0xcb,
0xe7,0x57,0xf4,0x52,0x37,0xc8,0x67,0x63,0x63,0x23,0x71,0x9d,0x3a,0xbd,0x65,0xda,
0x4d,0x87,0x98,0xe3,0xe3,0x63,0x69,0xb5,0x5a,0xa3,0xb1,0x7c,0x9d,0x4e,0x67,0xa6,
0x33,0x7a,0xd3,0x3a,0x3d,0x3d,0x95,0x9d,0x9d,0x1d,0xd9,0xd8,0xd8,0x18,0xdb,0x5e,
0xae,0xd7,0xeb,0xc9,0xee,0xee,0x2e,0x55,0x6e,0x2c,0x34,0xc2,0x1f,0xe6,0xda,0xa2,
0x85,0xbf,0x5e,0xaf,0x97,0x6a,0xcc,0x56,0x91,0xef,0xf9,0xe5,0x97,0x5f,0x4e,0xfd,
0x58,0xbe,0x10,0x6f,0x56,0xa3,0xd1,0x90,0x76,0xbb,0x9d,0x7a,0x52,0x44,0x59,0x2,
0xe0,0xde,0xde,0xde,0x68,0x7,0x8f,0x9b,0xe,0x7d,0x26,0x3d,0xa1,0xe3,0xe4,0xe4,
0x44,0xee,0xdc,0xb9,0x23,0x9e,0xe7,0xc9,0xc9,0xc9,0x9,0x7f,0xe7,0x58,0x78,0x84,
0x3f,0xa0,0x44,0xd2,0x7e,0xe9,0x14,0x19,0xfe,0xb2,0x4c,0x10,0x60,0x8d,0xbf,0x9b,
0x95,0x67,0xa9,0x92,0x32,0x4,0xc0,0xb2,0xb7,0x51,0xbb,0xdd,0x2e,0x7f,0xdb,0xa8,
0x14,0xc2,0x1f,0x50,0x71,0x69,0x83,0x64,0x99,0x2a,0x36,0x55,0x34,0xcd,0x38,0xcf,
0x56,0xab,0xc5,0x2e,0x15,0x39,0x39,0x8e,0x23,0x8d,0x46,0x63,0xb4,0x15,0x62,0xa3,
0xd1,0xb8,0x91,0xb1,0x8a,0x40,0x91,0x8,0x7f,0xa8,0x84,0x5e,0xaf,0x57,0x58,0x2b,
0x67,0x96,0x4b,0x69,0x3c,0x7d,0xfa,0x34,0xd5,0x4e,0x24,0x45,0xad,0x85,0xe6,0x38,
0x4e,0xea,0xf0,0xc7,0x64,0x8f,0x9b,0xe5,0x79,0x9e,0xec,0xec,0xec,0xa4,0x9a,0xa9,
0x6a,0x73,0xef,0xde,0x3d,0x39,0x3b,0x3b,0x9b,0x69,0x68,0x59,0x5e,0x5e,0x96,0x95,
0x95,0x95,0xb1,0xff,0xde,0x3c,0xcf,0x1b,0x1b,0x2b,0xea,0xba,0x6e,0x29,0xff,0x21,
0x61,0xb,0x79,0x8d,0x46,0xc3,0x1a,0xba,0x9b,0xcd,0x26,0xe1,0xf,0x73,0x8d,0xf0,
0x87,0x4a,0xd8,0xdf,0xdf,0x2f,0xac,0xad,0xf3,0xfa,0xeb,0xaf,0x17,0xf2,0x3c,0xd3,
0x28,0x6a,0xb6,0x6f,0x96,0x10,0x49,0xf8,0xbb,0x79,0x7a,0xa6,0x6a,0x9a,0x9,0x1f,
0x36,0xed,0x76,0x5b,0x7a,0xbd,0xde,0xcc,0x7e,0x97,0x7a,0xf6,0x6c,0x59,0xd6,0x1a,
0x2c,0xc3,0x7f,0xab,0x40,0x19,0xb1,0xc8,0x33,0x50,0x22,0x59,0x2a,0x22,0x45,0x8c,
0xfb,0xbb,0x73,0xe7,0x4e,0xea,0xc7,0x3e,0x7d,0xfa,0x74,0xea,0xd7,0x43,0x31,0xf6,
0xf7,0xf7,0x73,0x8f,0xa1,0xcb,0x33,0x6e,0x30,0xad,0x59,0x3d,0x6f,0x19,0x95,0x25,
0xe0,0x2,0x79,0x10,0xfe,0x80,0x12,0xb9,0xee,0xf0,0x47,0xe5,0x6f,0x7e,0x75,0x3a,
0x9d,0x5c,0xfb,0xe7,0xea,0x85,0xa1,0x1,0x54,0x17,0xe1,0xf,0x28,0x99,0xb4,0x1,
0xf0,0x3a,0xc3,0x9f,0xeb,0xba,0x2c,0x7f,0x51,0x42,0xfb,0xfb,0xfb,0xb9,0xc6,0x9e,
0x35,0x9b,0x4d,0x59,0x59,0x59,0x99,0xc1,0x11,0x1,0x98,0x7,0x84,0x3f,0x60,0x46,
0xf2,0x2e,0x88,0x9c,0x36,0xfc,0x65,0x59,0x9f,0xcf,0xa6,0x5e,0xaf,0x33,0xd9,0x63,
0x1,0xec,0xef,0xef,0xe7,0xfa,0xfd,0xe4,0x19,0x33,0x8,0x60,0x31,0x10,0xfe,0x80,
0x19,0xc9,0x5b,0x29,0x4b,0x1b,0xfe,0xa6,0x9d,0xf1,0xcb,0xfa,0x7e,0x8b,0x41,0x4f,
0x2,0xc9,0xfa,0xf7,0x46,0x25,0x77,0x3a,0xfc,0x83,0x8,0xf3,0x8c,0xf0,0x7,0x94,
0xcc,0x75,0xb5,0x7d,0xb3,0x4c,0xf6,0x60,0x5b,0xb7,0x72,0x73,0x5d,0x57,0x1e,0x3e,
0x7c,0x98,0xfa,0xf1,0xdd,0x6e,0x57,0x76,0x77,0x77,0x67,0x78,0x44,0x8b,0x8f,0xf0,
0x8c,0x79,0x46,0xf8,0x3,0x4a,0x26,0x6d,0xd0,0xa2,0xf2,0x7,0x53,0xb7,0xdb,0x95,
0x83,0x83,0x83,0xd8,0xc7,0x78,0x9e,0x27,0x7,0x7,0x7,0xec,0x5d,0xb,0x54,0x1c,
0xeb,0xfc,0x1,0x25,0x93,0x65,0xc6,0x6f,0xa3,0xd1,0xc8,0xd5,0x7e,0xca,0x32,0xde,
0x8f,0xe0,0x37,0x3f,0x8e,0x8f,0x8f,0xa5,0xd1,0x68,0x8c,0xb6,0x74,0x33,0x75,0x3a,
0x9d,0xd2,0xed,0xad,0xb,0xe0,0x66,0x10,0xfe,0x80,0x92,0xc9,0x12,0xe6,0xf2,0x86,
0xbf,0xbb,0x77,0xef,0xa6,0x7e,0x2c,0xe1,0x6f,0xbe,0xec,0xef,0xef,0x8f,0x76,0xa7,
0x10,0x19,0xfc,0x63,0x62,0x6f,0x6f,0xaf,0x94,0xbf,0xc7,0xa3,0xa3,0xa3,0x9b,0x3e,
0x84,0x91,0x7a,0xbd,0x6e,0xd,0xcd,0xc0,0x22,0x22,0xfc,0x1,0x25,0xd4,0xeb,0xf5,
0x52,0xb5,0x75,0x6f,0xdf,0xbe,0x9d,0x7b,0xa9,0x8f,0xb4,0x58,0xdc,0x79,0xbe,0xe8,
0x9,0x20,0xdb,0xdb,0xdb,0xa3,0x6a,0x5f,0x59,0x5b,0xbc,0x87,0x87,0x87,0x37,0x7d,
0x8,0x23,0xcd,0x66,0x93,0xf0,0x87,0xca,0x20,0xfc,0x61,0xae,0xa5,0x1d,0xf7,0x76,
0xfb,0xf6,0xed,0x19,0x1f,0x49,0xb1,0x5c,0xd7,0x4d,0xf5,0xde,0xf2,0x8e,0xfb,0x63,
0xbc,0xdf,0x62,0x73,0x5d,0x57,0x76,0x76,0x76,0x4a,0x1b,0xfa,0x0,0xdc,0x2c,0xc2,
0x1f,0xe6,0x5a,0xda,0xed,0xa4,0xd6,0xd7,0xd7,0x67,0x7c,0x24,0xc5,0xea,0xf5,0x7a,
0xb2,0xbc,0xbc,0x9c,0xf8,0xb8,0x3c,0x5b,0x4c,0x2d,0x2f,0x2f,0xa7,0xfe,0xdc,0x8,
0x7e,0xf3,0x8b,0xe0,0x7,0x20,0xa,0xb3,0x7d,0x81,0x12,0xca,0xb2,0xb4,0x4a,0xd6,
0xea,0x5f,0x96,0x25,0x5e,0x4e,0x4f,0x4f,0x33,0x3d,0x37,0x0,0xa0,0xfc,0x8,0x7f,
0x40,0x9,0x65,0x99,0xc4,0x91,0x25,0xcc,0x89,0x48,0xaa,0x8a,0xa2,0xc6,0x78,0x3f,
0x0,0x58,0x3c,0x84,0x3f,0xa0,0x84,0xb2,0xec,0xa5,0x9b,0xa5,0xf5,0xdb,0x68,0x34,
0x52,0x2f,0xf1,0xe2,0xba,0x2e,0xbb,0x18,0x0,0xc0,0x2,0x22,0xfc,0x1,0x25,0x95,
0x36,0x78,0x65,0x9,0x7f,0xaf,0xbe,0xfa,0x6a,0xea,0xc7,0x32,0xde,0xf,0x0,0x16,
0x13,0x13,0x3e,0x30,0xb7,0xd2,0x4e,0x5a,0x98,0x57,0xdd,0x6e,0x37,0x55,0xb0,0x73,
0x1c,0x47,0xea,0xf5,0x7a,0xaa,0xc5,0x7b,0xb3,0xb4,0x7c,0x9f,0x3c,0x79,0x92,0xfa,
0xb1,0x98,0x5f,0xed,0x76,0x5b,0x5c,0xd7,0x95,0x27,0x4f,0x9e,0x5c,0x7b,0xa5,0x77,
0x6d,0x6d,0xed,0x5a,0x5f,0x2f,0xce,0xb4,0xdb,0x25,0x2,0xf3,0x84,0xf0,0x87,0xb9,
0x35,0xed,0xf6,0x66,0x65,0x97,0x65,0xd2,0xc7,0xdd,0xbb,0x77,0xe5,0xf8,0xf8,0x38,
0xf6,0x31,0x59,0x5a,0xbe,0x9e,0xe7,0x31,0xd9,0xa3,0x2,0x1c,0xc7,0x19,0xad,0x6d,
0xb7,0xba,0xba,0x2a,0x9e,0xe7,0xc9,0xfe,0xfe,0x7e,0xae,0xb5,0x23,0xf3,0x58,0x5d,
0x5d,0xbd,0x96,0xd7,0x1,0x30,0x8e,0xb6,0x2f,0x50,0x52,0x59,0xaa,0x30,0x69,0x2a,
0x84,0x59,0x5a,0xbe,0x4,0xbf,0x6a,0x8,0xff,0xdd,0x38,0x8e,0x23,0xed,0x76,0x5b,
0xb6,0xb6,0xb6,0xa8,0x84,0xc5,0x60,0x48,0x4,0xe6,0x1d,0xe1,0xf,0x28,0x29,0xd7,
0x75,0x53,0xef,0xc3,0x9a,0x26,0xfc,0x31,0xcb,0x17,0x61,0x51,0x33,0xc5,0x9b,0xcd,
0xa6,0xdc,0xbf,0x7f,0x5f,0xda,0xed,0xf6,0xc2,0xf,0xaf,0x0,0xaa,0x88,0xf0,0x7,
0x94,0x58,0xda,0xa,0x83,0xe3,0x38,0xb1,0x6d,0xf0,0xe5,0xe5,0xe5,0x4c,0x2d,0xdf,
0xeb,0x6a,0xfb,0xe1,0x66,0x25,0xfd,0xa3,0xa1,0xd5,0x6a,0x8d,0x42,0x20,0x95,0x40,
0x60,0x71,0x30,0xe6,0xf,0x95,0xd0,0xed,0x76,0xb,0x6b,0xd5,0x5c,0xe7,0x38,0xa5,
0x2c,0xad,0xdf,0xbb,0x77,0xef,0x46,0x3e,0x9e,0x96,0x2f,0xc2,0x92,0xfe,0xc1,0x60,
0x3e,0xae,0xd5,0x6a,0x89,0xeb,0xba,0xa5,0xda,0x8b,0x17,0x40,0x7e,0x84,0x3f,0x54,
0x42,0x91,0x5f,0x5c,0xd7,0x19,0xfe,0xb2,0xb4,0x5f,0x97,0x97,0x97,0xad,0xef,0xd1,
0x71,0x1c,0x66,0xf9,0x62,0x42,0x9e,0xad,0x1,0x1,0x2c,0x6,0xda,0xbe,0x98,0x5b,
0x59,0x76,0xb6,0x98,0xd7,0x96,0x55,0xaf,0xd7,0x4b,0xbd,0xd8,0x73,0xa3,0xd1,0xb0,
0x8e,0xcf,0x5a,0x59,0x59,0x49,0xfd,0x7a,0xae,0xeb,0x52,0xf9,0xab,0x88,0xac,0x3b,
0xc3,0x30,0xe,0x14,0x58,0x1c,0x84,0x3f,0xa0,0xe4,0xb2,0xb4,0xab,0x6d,0x15,0x3e,
0xbd,0x94,0x47,0x1a,0x4,0xbf,0xea,0xc8,0x5a,0xf9,0x63,0xb7,0x17,0x60,0x71,0x10,
0xfe,0x80,0x92,0xcb,0xd2,0x86,0xd,0x57,0xf9,0xb2,0x4c,0xf4,0x10,0x91,0xc4,0xb5,
0x2,0xb1,0x18,0xd2,0x8e,0xf7,0xd3,0xb2,0x54,0xa0,0x1,0x94,0x1f,0x63,0xfe,0x80,
0x92,0xcb,0x52,0xf9,0xd3,0xb,0x39,0xeb,0x25,0x62,0xb2,0xb4,0x7c,0xbb,0xdd,0x6e,
0xea,0xa5,0x65,0x30,0xdf,0xb2,0x8c,0x1,0x15,0x99,0xdd,0xba,0x76,0xbb,0xbb,0xbb,
0xa5,0x59,0x33,0xaf,0xd9,0x6c,0xca,0xd6,0xd6,0xd6,0x4d,0x1f,0x6,0x70,0x2d,0xa8,
0xfc,0x1,0x25,0x97,0x65,0xbd,0x3f,0x91,0xab,0xc0,0xd7,0x68,0x34,0x32,0xb5,0xf6,
0xa8,0xfa,0x55,0x7,0xe3,0xfd,0x80,0x6a,0x23,0xfc,0xa1,0x12,0xe6,0x7d,0x2b,0xb8,
0x2c,0x63,0xf1,0x5a,0xad,0x96,0x38,0x8e,0xc3,0x44,0xf,0x44,0xca,0x5a,0xf9,0xe3,
0x6f,0x3,0x58,0x2c,0x84,0x3f,0xcc,0xad,0x2c,0x3b,0xf,0xcc,0xfb,0x2e,0x5,0x59,
0x2a,0x2f,0x8e,0xe3,0xc8,0xda,0xda,0x5a,0xa6,0x89,0x1e,0xac,0xdf,0x56,0x1d,0x51,
0xb3,0xc2,0xa3,0x10,0xfc,0x80,0xc5,0xc3,0x98,0x3f,0xcc,0xad,0xeb,0xae,0xe6,0x35,
0x1a,0x8d,0xcc,0xed,0xb2,0xa2,0x64,0xfd,0x2,0xbe,0x77,0xef,0x5e,0xea,0xc7,0xba,
0xae,0xcb,0x8e,0x1e,0x15,0x72,0xf7,0xee,0xdd,0x4c,0x8f,0x67,0xdd,0x47,0x60,0xf1,
0x10,0xfe,0x80,0x8,0xf5,0x7a,0x5d,0x9a,0xcd,0xa6,0xdc,0xbd,0x7b,0x57,0x9a,0xcd,
0xe6,0x8d,0x57,0xf,0x4f,0x4f,0x4f,0x33,0xb7,0xeb,0xd2,0xa0,0xea,0x57,0x2d,0x65,
0x99,0xec,0x1,0xe0,0xe6,0x10,0xfe,0x80,0xa1,0x66,0xb3,0x29,0xb7,0x6f,0xdf,0x96,
0x66,0xb3,0x59,0x8a,0xb0,0x17,0xf6,0xe4,0xc9,0x93,0xc2,0xc3,0x1f,0x55,0xbf,0x6a,
0xa9,0xd7,0xeb,0x99,0x97,0x78,0x61,0x6,0x38,0xb0,0x78,0x8,0x7f,0xa8,0x24,0x1d,
0xf4,0x1a,0x8d,0xc6,0xe8,0x54,0x76,0xb3,0x18,0x7b,0x45,0xd5,0xaf,0x5a,0xb2,0xb6,
0x7c,0xf9,0x87,0x81,0x1d,0xb,0x5e,0x63,0xde,0x11,0xfe,0x50,0x19,0x9b,0x9b,0x9b,
0x99,0x2b,0x1f,0x65,0xe2,0x79,0x9e,0x74,0x3a,0x9d,0x4c,0x13,0x39,0xe2,0x74,0xbb,
0x5d,0xbe,0xdc,0x2b,0x26,0x6b,0xe5,0x78,0xd6,0xe3,0xfd,0x36,0x36,0x36,0x4a,0xb3,
0x78,0x74,0x96,0x4a,0x7f,0x59,0x8e,0x19,0xc8,0x8b,0xf0,0x87,0xca,0x98,0xc5,0x78,
0xb9,0xeb,0x76,0x72,0x72,0x52,0x58,0xf8,0xa3,0xea,0x57,0x2d,0x8e,0xe3,0x64,0x5a,
0xf7,0xf1,0x3a,0x5a,0xbe,0xf3,0xfa,0xf,0x31,0x60,0xde,0x11,0xfe,0x50,0x5a,0x8e,
0xe3,0xc8,0xf2,0xf2,0xb2,0xbc,0xfc,0xf2,0xcb,0x22,0x32,0xb9,0x44,0x45,0x15,0xbf,
0x38,0xf4,0x2e,0x1c,0x59,0xb6,0x6c,0xb3,0xe9,0x74,0x3a,0xc,0xe4,0xaf,0x98,0xac,
0xff,0xf8,0xa1,0x2a,0xc,0x2c,0x2e,0xc2,0x1f,0x4a,0xc9,0x71,0x1c,0xb9,0x7f,0xff,
0x7e,0xe9,0x26,0x5d,0x94,0xc1,0xe3,0xc7,0x8f,0x65,0x7d,0x7d,0x7d,0xaa,0xe7,0xa0,
0xea,0x57,0x3d,0x2c,0xf1,0x2,0x40,0x63,0x91,0x67,0x94,0x52,0xbd,0x5e,0x27,0xf8,
0x45,0x38,0x39,0x39,0x99,0x6a,0xcc,0xd1,0xd1,0xd1,0x11,0x33,0x38,0x2b,0xa6,0x5e,
0xaf,0x67,0xaa,0xfc,0x31,0xcb,0x17,0x58,0x6c,0x84,0x3f,0x94,0x12,0xb3,0xe9,0xa2,
0x79,0x9e,0x27,0x8f,0x1f,0x3f,0xce,0xfd,0xb3,0xec,0xe1,0x5b,0x3d,0xcc,0xf2,0x5,
0x60,0x22,0xfc,0x1,0x73,0xe8,0xf8,0xf8,0x38,0x57,0xf5,0xaf,0xd7,0xeb,0x31,0x53,
0xb1,0x82,0xb2,0x4e,0x12,0xa2,0xe5,0xb,0x2c,0x36,0xc2,0x1f,0x4a,0x8b,0x9,0x9,
0xd1,0x3c,0xcf,0xcb,0xb5,0xee,0x5f,0xb3,0xd9,0x94,0xb5,0xb5,0xb5,0x19,0x1c,0x11,
0xca,0x2a,0xeb,0x3a,0x96,0xb4,0x7c,0x81,0xc5,0x47,0xf8,0x3,0xe6,0x50,0xa3,0xd1,
0xc8,0xbd,0xe4,0xcb,0xea,0xea,0x6a,0xa6,0x25,0x3f,0x30,0xdf,0x5e,0x7d,0xf5,0xd5,
0x4c,0x8f,0x67,0x58,0x0,0xb0,0xf8,0x98,0xed,0x8b,0xd2,0xea,0x76,0xbb,0xa5,0x8,
0x29,0xae,0xeb,0x8e,0x4e,0x22,0xe9,0x5b,0x68,0x77,0xee,0xdc,0x99,0x49,0xf5,0xd2,
0x71,0x1c,0xd9,0xda,0xda,0x9a,0xea,0x39,0x36,0x37,0x37,0xe5,0xc1,0x83,0x7,0x54,
0x78,0x2a,0x20,0xeb,0x3f,0x12,0x66,0xb1,0x93,0x4c,0x94,0x32,0xd,0x43,0x70,0x1c,
0xa7,0x92,0xcb,0x47,0xa1,0x9a,0x8,0x7f,0x80,0x5c,0x5,0x3c,0xdd,0xf2,0x3a,0x3b,
0x3b,0x13,0xcf,0xf3,0x26,0x26,0x9e,0x34,0x9b,0xcd,0xc2,0x16,0x59,0xce,0x43,0x7,
0xbf,0x69,0x67,0x42,0x3b,0x8e,0x23,0x9b,0x9b,0x9b,0xb2,0xbb,0xbb,0x5b,0x9a,0x2f,
0x5f,0x14,0xaf,0xd5,0x6a,0x65,0xfa,0x5b,0x39,0x3d,0x3d,0xbd,0xd6,0xbf,0x87,0xfd,
0xfd,0xfd,0xd2,0xc,0xef,0x68,0x36,0x9b,0x53,0xff,0xa3,0xa,0x98,0x17,0x84,0x3f,
0x94,0xd6,0xd3,0xa7,0x4f,0x65,0x75,0x75,0xb5,0xd0,0xe7,0xd4,0x81,0xae,0xd7,0xeb,
0xc9,0xd9,0xd9,0x99,0xb8,0xae,0x5b,0x9a,0x2f,0x9f,0x34,0x36,0x36,0x36,0xa,0xab,
0x4e,0x34,0x1a,0xd,0xd9,0xd8,0xd8,0x90,0xbd,0xbd,0xbd,0x42,0x9e,0xf,0xe5,0x93,
0xb5,0xe5,0xcb,0x44,0xf,0xa0,0x1a,0x8,0x7f,0x58,0x58,0x3a,0xe4,0xb9,0xae,0x2b,
0x4f,0x9f,0x3e,0x2d,0x55,0x8b,0x29,0x8f,0x8d,0x8d,0x8d,0xc2,0xab,0x8e,0xfa,0xf9,
0x8,0x80,0x8b,0xa7,0x5e,0xaf,0x67,0x1a,0x36,0xa1,0xf7,0x8e,0x6,0xb0,0xf8,0x8,
0x7f,0x58,0x18,0xdd,0x6e,0x57,0xba,0xdd,0xee,0x42,0x4,0xbd,0xb0,0x56,0xab,0x25,
0xf7,0xee,0xdd,0x9b,0xd9,0x73,0xbb,0xae,0xcb,0xae,0x1f,0xb,0x26,0xeb,0xac,0xee,
0xeb,0x1c,0xeb,0x7,0xe0,0x66,0x11,0xfe,0x50,0x5a,0x49,0xed,0xd8,0x5e,0xaf,0x27,
0xdd,0x6e,0x57,0x9e,0x3c,0x79,0x32,0x57,0xad,0xdb,0xac,0x5a,0xad,0x96,0xb4,0xdb,
0xed,0x99,0xbe,0xc6,0xea,0xea,0xaa,0x3c,0x7b,0xf6,0x8c,0xca,0xcf,0x82,0xd0,0xfb,
0x62,0x67,0xc1,0x2c,0x5f,0xa0,0x3a,0x8,0x7f,0x28,0x35,0xcf,0xf3,0x46,0x3,0xd6,
0x3d,0xcf,0x1b,0xb,0x7b,0x55,0x98,0xa9,0x7a,0x1d,0xc1,0x4f,0xd3,0xaf,0x43,0x0,
0x9c,0x7f,0x2b,0x2b,0x2b,0x99,0x26,0x7a,0xe8,0xc9,0x4e,0x0,0xaa,0x81,0xf0,0x87,
0x52,0x3b,0x3a,0x3a,0x12,0xc7,0x71,0xe4,0xc9,0x93,0x27,0x95,0xfb,0x72,0xca,0x1b,
0xfc,0xcc,0xc0,0x9c,0x55,0xbb,0xdd,0x96,0x17,0x5f,0x7c,0x91,0x2a,0xd0,0x1c,0x73,
0x1c,0x27,0xf3,0x10,0x81,0xbc,0xdb,0x5,0x2e,0x92,0xdb,0xb7,0x6f,0xdf,0xf4,0x21,
0x0,0xd7,0x86,0x45,0x9e,0x51,0x6a,0xc7,0xc7,0xc7,0x72,0x78,0x78,0x48,0xf0,0x4b,
0xa9,0xd7,0xeb,0x4d,0xbd,0x7c,0xcb,0xfa,0xfa,0xfa,0xb5,0x55,0x1b,0x48,0x4d,0xbf,
0xfd,0x0,0x0,0x13,0xeb,0x49,0x44,0x41,0x54,0x51,0xbc,0xac,0x55,0x3f,0x11,0x66,
0xf9,0x8a,0xc8,0xd4,0xcb,0x27,0x1,0xf3,0x84,0xf0,0x7,0x94,0xcc,0x34,0x15,0xbf,
0x87,0xf,0x1f,0x4a,0xaf,0xd7,0x9b,0x7a,0xf6,0xee,0x75,0xb6,0x9b,0x51,0x9c,0x3c,
0x55,0xbf,0xd3,0xd3,0xd3,0x4a,0xc,0xa1,0x0,0x70,0x85,0xf0,0x7,0x94,0x48,0xbb,
0xdd,0xce,0x1d,0xba,0xf6,0xf6,0xf6,0x46,0x5f,0xe2,0xa7,0xa7,0xa7,0x72,0x74,0x74,
0x34,0xd5,0xb1,0xb4,0x5a,0x2d,0xd9,0xde,0xde,0xa6,0x22,0x32,0x47,0xf2,0x54,0xfd,
0x4e,0x4e,0x4e,0x66,0x74,0x34,0xf3,0xa5,0x5e,0xaf,0xdf,0xf4,0x21,0x0,0xd7,0x86,
0xf0,0x7,0x94,0x80,0xe3,0x38,0xd2,0x6e,0xb7,0x73,0xaf,0xe3,0x77,0x70,0x70,0x30,
0xb1,0x54,0xc7,0xe1,0xe1,0xe1,0xd4,0x93,0x37,0x1a,0x8d,0x86,0x6c,0x6d,0x6d,0xf1,
0xc5,0x38,0x7,0xf2,0x54,0xfd,0x5c,0xd7,0x65,0x89,0x97,0x21,0xb6,0x76,0x43,0x95,
0x10,0xfe,0x80,0x19,0x49,0x1b,0x98,0xf4,0x96,0x6d,0x79,0x83,0x5f,0xa7,0xd3,0x89,
0x9c,0xa0,0xb1,0xbf,0xbf,0x3f,0xf5,0x78,0xc9,0x46,0xa3,0x21,0xdb,0xdb,0xdb,0xa5,
0xd8,0x67,0x19,0xd1,0x36,0x36,0x36,0x32,0x57,0xfd,0x98,0xd9,0x3d,0xd0,0x68,0x34,
0x8,0x7f,0xa8,0x14,0x66,0xfb,0x2,0x33,0x92,0x26,0xfc,0xe9,0xca,0x5a,0xde,0xd6,
0x6a,0xd2,0xf8,0x3e,0xcf,0xf3,0x64,0x77,0x77,0x57,0xb6,0xb7,0xb7,0xa7,0xaa,0xde,
0xe9,0x80,0x7a,0x70,0x70,0xc0,0x4c,0xe0,0x12,0xca,0xbb,0xe7,0xf4,0xa2,0xb7,0x7c,
0x1d,0xc7,0x91,0x95,0x95,0x95,0xb1,0xdb,0xf4,0xbe,0xdd,0xda,0x9d,0x3b,0x77,0x66,
0xb6,0x80,0x3a,0x50,0x56,0x84,0x3f,0x20,0x83,0x22,0xdb,0x9f,0x2b,0x2b,0x2b,0xb2,
0xbe,0xbe,0x9e,0xfb,0xe7,0xf5,0xcc,0xde,0x24,0x7a,0x22,0xc8,0x34,0x21,0x53,0x5b,
0x5f,0x5f,0x97,0xe5,0xe5,0x65,0x79,0xf8,0xf0,0xe1,0x42,0xed,0xa0,0x32,0xcf,0x1a,
0x8d,0x86,0x6c,0x6e,0x6e,0x66,0xfe,0xb9,0x2a,0x4c,0xf4,0xa8,0xd7,0xeb,0x85,0xef,
0xf,0xe,0x2c,0x2,0xda,0xbe,0x40,0x6,0x2f,0xbf,0xfc,0xf2,0xd4,0xcf,0xe1,0x38,
0x8e,0x6c,0x6e,0x6e,0x4e,0x15,0xfc,0x5c,0xd7,0xcd,0xb4,0xa4,0x4b,0x11,0x4b,0xc0,
0x68,0xcd,0x66,0x53,0xee,0xdf,0xbf,0x9f,0x79,0x7,0x9,0x14,0x4f,0x57,0x64,0xf3,
0x84,0xfa,0xa2,0xab,0x7e,0x65,0x9c,0x18,0xa4,0x77,0x1,0x2a,0xda,0xd9,0xd9,0x59,
0xe1,0xcf,0x9,0x5c,0x27,0xc2,0x1f,0x70,0x8d,0x9a,0xcd,0xa6,0x6c,0x6f,0x6f,0x4f,
0x15,0x9c,0x74,0x25,0x2f,0x6b,0x90,0x2b,0x32,0x0,0xea,0x0,0xbb,0xb5,0xb5,0xc5,
0x58,0xc0,0x1b,0x94,0x67,0x76,0xaf,0xc8,0x6c,0x26,0x7a,0x94,0x75,0xcc,0xdc,0x2c,
0x5a,0xdb,0x54,0xbd,0x31,0xef,0x8,0x7f,0xc0,0x35,0x59,0x5b,0x5b,0x9b,0x7a,0xe6,
0xac,0x1e,0xc3,0x97,0x77,0x12,0x47,0x91,0x1,0x50,0x64,0x10,0x66,0xb7,0xb6,0xb6,
0x26,0xc6,0x55,0xe1,0x7a,0xe4,0xfd,0x5b,0xaa,0xd2,0x44,0x8f,0x4e,0xa7,0x53,0x78,
0x7b,0x7b,0x91,0xf7,0x12,0x47,0x35,0x10,0xfe,0x80,0x19,0x5b,0x5b,0x5b,0x93,0xfb,
0xf7,0xef,0x4f,0x3d,0xf6,0x68,0xda,0xe0,0xa7,0x15,0x1d,0x0,0x45,0xd8,0x21,0xe2,
0xa6,0x1c,0x1e,0x1e,0xe6,0xa,0x36,0x55,0x9b,0xb4,0x73,0x78,0x78,0x58,0xd8,0x73,
0x11,0xfc,0xb0,0x8,0x8,0x7f,0xc0,0xc,0xad,0xad,0xad,0xc9,0xea,0xea,0xea,0xd4,
0x13,0x45,0x7a,0xbd,0x9e,0x3c,0x78,0xf0,0xa0,0xb0,0x6d,0xee,0x8a,0xc,0x80,0x55,
0x98,0x38,0x50,0x56,0xae,0xeb,0xca,0x83,0x7,0xf,0x32,0xed,0xcd,0xdb,0xe9,0x74,
0x2a,0xd7,0xb6,0x2c,0xb2,0xfa,0xb7,0xe8,0x33,0xa4,0x51,0xd,0x84,0x3f,0x20,0x83,
0x2c,0xe3,0xab,0x1a,0x8d,0x46,0x21,0x3,0xc3,0x75,0x50,0x2b,0x3a,0x60,0xf5,0x7a,
0x3d,0xd9,0xd9,0xd9,0x99,0x2a,0x50,0xf6,0x7a,0xbd,0x42,0xab,0x2a,0xc8,0xce,0xf3,
0x3c,0xd9,0xdf,0xdf,0x4f,0x5d,0x15,0xae,0xda,0x3e,0xd9,0x5a,0x11,0x7f,0xa7,0x9e,
0xe7,0xb1,0x28,0x36,0x16,0x2,0xe1,0xf,0xc8,0x20,0xcb,0xa0,0x76,0xc7,0x71,0xe4,
0xf4,0xf4,0x74,0xaa,0xe0,0xd6,0xe9,0x74,0xa,0x6f,0xd1,0x9a,0x74,0x2b,0x39,0x4f,
0x2b,0x4b,0x1f,0x5b,0x55,0xc3,0x44,0xd9,0x74,0xbb,0x5d,0x79,0xf0,0xe0,0x81,0x1c,
0x1c,0x1c,0xc4,0xfe,0xbd,0xcc,0x6a,0xa6,0xea,0xed,0xdb,0xb7,0x67,0xf2,0xbc,0x45,
0x39,0x3d,0x3d,0x9d,0xfa,0xbf,0xa3,0xa3,0xa3,0xa3,0xca,0x55,0x4d,0xb1,0x98,0x8,
0x7f,0xc0,0x8c,0xe9,0x2f,0xe5,0xac,0x83,0xec,0x8f,0x8e,0x8e,0x64,0x6f,0x6f,0x6f,
0xe6,0x5f,0x36,0x3a,0x0,0xa6,0x3d,0x3e,0x3d,0xdb,0xf8,0x3a,0x8e,0xd,0xd9,0x1d,
0x1f,0x1f,0xcb,0xce,0xce,0xce,0xb5,0x4f,0xea,0x28,0xe3,0x52,0x2f,0xa6,0x69,0xab,
0x76,0xa7,0xa7,0xa7,0x95,0x1b,0x2b,0x89,0xc5,0x45,0xf8,0x3,0x32,0xc8,0x3b,0x76,
0xcf,0xf3,0x3c,0xd9,0xdb,0xdb,0x4b,0xb5,0x44,0x8b,0xe,0x57,0xd7,0xdd,0x4e,0xdd,
0xdb,0xdb,0x8b,0xdd,0x2d,0x44,0x64,0xf0,0x5,0xb8,0xb3,0xb3,0x43,0xeb,0xab,0xe4,
0xf4,0xdf,0x9b,0xad,0xaa,0x5b,0xe5,0x9,0xb,0x4f,0x9f,0x3e,0xcd,0xf5,0x73,0xa7,
0xa7,0xa7,0x89,0xff,0x6d,0x0,0xf3,0x84,0x1d,0x3e,0x80,0xc,0xb2,0x86,0xbf,0x46,
0xa3,0x31,0xd6,0x16,0x3d,0x3d,0x3d,0x95,0x7,0xf,0x1e,0xc8,0xe6,0xe6,0xa6,0xb5,
0x85,0xdc,0xed,0x76,0x65,0x6f,0x6f,0xef,0xc6,0x26,0x50,0x74,0x3a,0x1d,0xe9,0xf5,
0x7a,0xb2,0xb9,0xb9,0x39,0xf6,0x5e,0x5d,0xd7,0x95,0xfd,0xfd,0x7d,0x42,0xdf,0x9c,
0xe9,0x76,0xbb,0xb2,0xbb,0xbb,0x2b,0xcd,0x66,0x33,0xf7,0x9a,0x80,0x69,0x3d,0x79,
0xf2,0x44,0x1c,0xc7,0x49,0x35,0x34,0xc2,0xf3,0x3c,0x39,0x3e,0x3e,0xbe,0xf6,0x20,
0x9a,0xf5,0xf5,0x3a,0x9d,0x8e,0x9c,0x9c,0x9c,0x54,0x3a,0x30,0x63,0x31,0x11,0xfe,
0x80,0x94,0x1c,0xc7,0x11,0xd7,0x75,0x53,0x7,0x40,0xcf,0xf3,0xac,0x55,0x3e,0xbd,
0x3b,0xc7,0xd6,0xd6,0xd6,0xe8,0x8b,0xd2,0xf3,0x3c,0x39,0x3a,0x3a,0x2a,0x45,0x5b,
0x49,0xcf,0x2c,0x5e,0x59,0x59,0x91,0x66,0xb3,0x29,0xdd,0x6e,0x57,0x8e,0x8f,0x8f,
0x69,0xf1,0xce,0xb1,0x6e,0xb7,0x3b,0xf3,0x0,0xd3,0xeb,0xf5,0x64,0x7f,0x7f,0x7f,
0xa6,0xaf,0x31,0x2d,0xd7,0x75,0xe5,0xf1,0xe3,0xc7,0xd2,0x6a,0xb5,0x26,0x82,0x70,
0xaf,0xd7,0x13,0xcf,0xf3,0xa4,0xdb,0xed,0xca,0xd9,0xd9,0x19,0xff,0xd0,0xc1,0x42,
0xab,0x1d,0x1c,0x1c,0x28,0xf3,0x6,0xa5,0xd4,0xe8,0x3c,0x7c,0xd9,0x76,0xa,0x82,
0x60,0xe2,0x3c,0x7c,0xf2,0x7d,0x7f,0xec,0x5c,0x3f,0x2f,0x30,0x6f,0xea,0xf5,0x7a,
0xea,0xf0,0xe7,0xba,0x6e,0x6c,0x5,0x4f,0x6f,0x3a,0xff,0xec,0xd9,0xb3,0x42,0x6,
0xa3,0x3,0x0,0xe6,0x87,0xce,0x4c,0x9e,0xe7,0xc9,0xf9,0xf9,0xf9,0xe0,0x3b,0xe3,
0xd9,0xb3,0xd1,0x77,0x87,0x3e,0x9d,0xf,0x4f,0xee,0xf9,0xb9,0x9c,0xbb,0xae,0x5c,
0x5c,0x5c,0xc8,0xe5,0xe5,0xe5,0x34,0x2f,0xfd,0x4d,0x2a,0x7f,0x40,0x6,0x49,0x81,
0x2e,0xb,0xcf,0xf3,0x58,0x26,0x5,0x0,0x70,0xed,0x98,0xf0,0x1,0x0,0x0,0x50,
0x21,0x84,0x3f,0x0,0x0,0x80,0xa,0x21,0xfc,0x1,0x0,0x0,0x54,0x8,0xe1,0xf,
0x0,0x0,0xa0,0x42,0xa,0xd,0x7f,0xcc,0xe2,0x5,0x0,0x0,0x28,0x37,0x2a,0x7f,
0x0,0x0,0x0,0x15,0x52,0x68,0xf8,0xab,0xd5,0x6a,0x45,0x3e,0x1d,0x0,0x0,0x0,
0xa,0x46,0xe5,0xf,0x0,0x0,0xa0,0x42,0x18,0xf3,0x7,0x0,0x0,0x30,0x27,0x8a,
0xc8,0x5a,0x54,0xfe,0x0,0x0,0x0,0x2a,0x84,0xf0,0x7,0x0,0x0,0x50,0x21,0x84,
0x3f,0x0,0x0,0x80,0x92,0x52,0x4a,0x49,0xd1,0x83,0xea,0xc6,0xc2,0x9f,0xee,0x23,
0x9b,0xfd,0xe4,0xb8,0xde,0x32,0x63,0xfc,0x0,0x0,0x0,0xe6,0xb,0x95,0x3f,0x0,
0x0,0x80,0xb2,0x2b,0xb0,0x2,0x48,0xf8,0x3,0x0,0x0,0xb8,0x21,0x37,0xd1,0x45,
0x25,0xfc,0x1,0x0,0x0,0xdc,0x24,0xa5,0x6,0xa7,0x88,0xeb,0x69,0x87,0xe3,0xa5,
0x95,0x2a,0xfc,0x15,0x99,0x4a,0xd9,0x5,0x4,0x0,0x0,0x20,0x5,0x33,0xf4,0x15,
0xf8,0xb4,0x85,0x57,0xfe,0x98,0x4,0x2,0x0,0x0,0x90,0x9f,0x92,0xc9,0x3c,0xa5,
0xc2,0xd5,0xc1,0x29,0x8c,0xc2,0x9f,0xf5,0x45,0x62,0xae,0xe7,0x41,0xd5,0xf,0x0,
0x0,0x60,0x9c,0xe,0x7b,0xfa,0x34,0xba,0x5d,0x5f,0xb6,0xac,0xc6,0x32,0x8d,0x89,
0xca,0x5f,0xda,0xa5,0x5d,0xa8,0xf0,0x1,0x0,0x0,0x14,0x6b,0x14,0x2,0x8d,0xcb,
0x45,0x2b,0xa4,0xed,0x4b,0x10,0x4,0x0,0x0,0xc8,0xc7,0xc,0x7b,0x51,0xf7,0x49,
0xcc,0x63,0xb2,0x5a,0xd2,0x4f,0x1c,0x75,0x30,0xd6,0x83,0x20,0xec,0x1,0x0,0x0,
0x4c,0xcf,0x96,0xa9,0x2c,0xb3,0x7d,0xf5,0x98,0xbf,0x42,0xc2,0x9f,0xad,0x95,0x4b,
0xb8,0x3,0x0,0x0,0x98,0x3d,0x5b,0xe2,0x9a,0x18,0x3,0x58,0x60,0xd5,0x4f,0x24,
0x45,0xdb,0x37,0xe9,0x85,0xd2,0x1c,0x8,0x13,0x3d,0x0,0x0,0x0,0x6,0x26,0x8a,
0x6d,0x46,0x55,0x2f,0x8,0x82,0x89,0x31,0x7f,0x66,0xdb,0xb7,0x8,0x13,0xb3,0x7d,
0xb3,0xee,0xef,0xb,0x0,0x0,0x80,0x7c,0x74,0xb8,0xb,0xc2,0x2d,0xdd,0x50,0xe,
0xb,0x8a,0x5e,0xea,0x25,0x4d,0xb8,0x8b,0x1a,0xff,0x17,0x77,0x3f,0x0,0x0,0x0,
0xec,0xac,0xe3,0xf8,0x8c,0x76,0x6f,0x10,0x4,0xa3,0x4a,0xa0,0x79,0xfb,0xb4,0x62,
0xc7,0xfc,0xa5,0x5d,0xf6,0x25,0x2b,0xda,0xc0,0x0,0x0,0xa0,0x8a,0x26,0xb2,0xd6,
0xe0,0x8a,0xa8,0x61,0xc8,0xd3,0x15,0x40,0x75,0xf5,0x3,0x63,0xb7,0x17,0x21,0x72,
0x91,0x67,0xdb,0xed,0xb6,0x5,0x8,0x1,0x0,0x0,0x90,0x8d,0x99,0xa9,0x2,0x73,
0x42,0xc7,0x30,0x8,0xea,0xaa,0x5f,0xa0,0xc7,0x1,0xea,0xb1,0x80,0xb3,0x58,0xea,
0x65,0x9a,0x31,0x7f,0x84,0x42,0x0,0x0,0x0,0xbb,0xd8,0x2d,0xdb,0x74,0x9b,0xd7,
0x9c,0xe0,0x61,0x39,0x15,0x21,0x77,0xdb,0x77,0xe2,0xe0,0x63,0xae,0x3,0x0,0x0,
0x60,0xc0,0x9c,0xe5,0x1b,0x18,0xa1,0x4f,0xdf,0x37,0xa,0x81,0xba,0x1d,0x6c,0x54,
0x0,0x8b,0x90,0x38,0xdb,0xd7,0x3c,0xb7,0x85,0x3c,0x82,0x1e,0x0,0x0,0x40,0x3c,
0xdb,0x30,0xba,0xd1,0xc,0x5e,0xa3,0xd5,0x3b,0xa,0x7b,0xbe,0x7f,0xd5,0xf6,0x2d,
0x30,0xf8,0x89,0x88,0xdc,0xca,0x5a,0xf9,0x4b,0x2a,0x3d,0xb2,0x50,0x34,0x0,0x0,
0x40,0x3c,0xdd,0xf2,0xd5,0xe1,0xce,0xac,0xf8,0x5,0xe6,0x98,0x3f,0x33,0x14,0xce,
0x6a,0xc2,0x47,0xde,0x2d,0xdd,0x92,0xee,0x67,0x86,0x2f,0x0,0x0,0xa8,0xa2,0xa8,
0x42,0x5b,0x38,0xe8,0xa9,0x88,0xe0,0x17,0x14,0x38,0xd9,0x43,0x64,0x38,0xe6,0x2f,
0xae,0xc5,0x6b,0x2b,0x53,0xc6,0xbd,0xa9,0xa4,0xdb,0x75,0x8,0x24,0xc,0x2,0x0,
0x80,0xaa,0x19,0xdb,0xc5,0x23,0xb4,0x9e,0x9f,0xf5,0xe4,0xfb,0xa3,0x16,0x70,0x41,
0x7a,0xb1,0x95,0xbf,0xa8,0xf1,0x7e,0x51,0x33,0x4f,0xb2,0x4,0x43,0x0,0x0,0x80,
0x45,0x67,0xe6,0x20,0x33,0xc0,0x5,0xe1,0xb1,0x7d,0x41,0x20,0xfe,0x30,0xe8,0xf9,
0x46,0xf0,0xf3,0x87,0xa7,0x22,0xc7,0xfc,0x2d,0x29,0xa5,0xde,0x4d,0x1b,0xfc,0xa6,
0x2d,0x39,0x52,0xed,0x3,0x0,0x0,0x55,0x61,0xcb,0x55,0x49,0x2d,0xde,0x51,0x0,
0xf4,0x7d,0xe9,0x1b,0x41,0xb0,0xc0,0x62,0xda,0x3b,0x4b,0x22,0xf2,0xd4,0x16,0xf0,
0xc2,0x95,0xbd,0xb8,0xa,0x5f,0xd6,0x50,0x48,0xeb,0x17,0x0,0x0,0x2c,0xb2,0xb8,
0xac,0x64,0x6,0x3f,0x7f,0x58,0xe1,0xeb,0xf7,0xfb,0xa3,0xaa,0xdf,0xa8,0xda,0xe7,
0xfb,0xe2,0xf7,0xfb,0xe2,0xfb,0x7e,0xb1,0xe1,0x4f,0x29,0xf5,0x8e,0xed,0xa0,0xa2,
0xce,0x6d,0x21,0x31,0xe9,0xd,0x3,0x0,0x0,0x54,0x95,0x2d,0xf4,0x29,0x1d,0xfc,
0x74,0xb5,0x2f,0x8,0x6,0x95,0xbe,0x61,0xd8,0xb,0x57,0xfe,0xa,0xf4,0x74,0x49,
0x29,0x75,0x1c,0x57,0xf5,0x8b,0xaa,0x2,0x12,0xfa,0x0,0x0,0x0,0x26,0x59,0xd7,
0xf4,0x33,0x5a,0xbd,0x3a,0xf8,0xf9,0x46,0xd8,0xeb,0xf7,0xfb,0x83,0xcb,0x41,0x30,
0xba,0xac,0xcf,0xb,0xce,0x57,0x9d,0x5b,0x22,0xd2,0x49,0x1a,0xf3,0x67,0x3b,0x37,
0xdf,0x50,0x5c,0xd5,0x10,0x0,0x0,0xa0,0x2a,0xa2,0x72,0x92,0x88,0x8c,0xed,0xd9,
0x6b,0x4e,0xee,0xf0,0x8d,0x89,0x1d,0x7d,0xcf,0x1b,0xf,0x83,0xc5,0xb6,0x7c,0x45,
0x44,0x8e,0x6f,0x29,0xa5,0xde,0x4e,0xbb,0xd0,0x73,0x9a,0x96,0x6f,0x56,0xb5,0x5a,
0x8d,0xa0,0x8,0x0,0x0,0xe6,0x9e,0x6d,0x9c,0x9f,0x3e,0x1f,0x9b,0xd4,0xa1,0xc7,
0xf9,0xd,0xc3,0x9e,0x59,0xe9,0xeb,0xf7,0xfb,0xe2,0xd,0x6f,0xeb,0xf7,0xfb,0x45,
0xb7,0x7c,0x45,0x44,0xde,0xbe,0xa5,0x94,0x7a,0x14,0x3e,0xc0,0xf0,0x1b,0xc8,0x32,
0xf6,0x2f,0x6a,0x92,0x8,0x0,0x0,0xc0,0xa2,0xa,0x67,0x1e,0x1d,0xda,0xa2,0x66,
0xf4,0xf6,0x87,0xd5,0x3d,0x33,0xf0,0x99,0xa1,0xcf,0x1b,0x56,0x0,0xb,0xe,0x7f,
0xdf,0x7d,0x74,0x70,0xf0,0xce,0x2d,0xa5,0xd4,0xdf,0x89,0x88,0xaf,0x94,0x7a,0x21,
0x7c,0xf0,0x69,0x27,0x80,0x64,0x9,0x7b,0xba,0xd2,0x47,0xc5,0xf,0x0,0x0,0x2c,
0x82,0xb8,0xe0,0x67,0x8e,0xf9,0x1b,0xad,0xdd,0xa7,0x2b,0x7d,0xc3,0xb0,0xe7,0x79,
0x9e,0x78,0xc3,0xf3,0xcb,0xcb,0xcb,0xd1,0xf5,0x7e,0xbf,0x5f,0xf4,0xa1,0xee,0x89,
0xc,0xd6,0xf9,0x3b,0x57,0x4a,0xed,0xc5,0x2d,0xf7,0x62,0xbe,0xb1,0xa4,0x49,0x20,
0xb6,0x96,0x70,0xf8,0x43,0x61,0x89,0x17,0x0,0x0,0xb0,0x8,0x92,0x82,0x9f,0x59,
0xf1,0xeb,0xeb,0x19,0xbc,0xbe,0x3f,0xa,0x77,0x7d,0xcf,0xbb,0x3a,0xd,0xaf,0x7b,
0xc3,0xeb,0x33,0x28,0x92,0xbd,0x25,0x72,0xb5,0xbd,0xdb,0x37,0xf5,0x1b,0xc8,0x33,
0xe3,0x77,0xda,0x83,0x23,0xc,0x2,0x0,0x80,0x79,0x62,0x9b,0xfb,0x30,0x51,0xf1,
0xb,0x4d,0xee,0xd0,0x55,0x3f,0x33,0xe4,0x5d,0xea,0xd3,0xe5,0xa5,0x5c,0x5e,0x5c,
0xc,0xce,0x2f,0x2f,0xa5,0x5f,0xfc,0x2c,0x5f,0x11,0x91,0x6f,0x8a,0x88,0x2c,0xd,
0xdf,0xc0,0x83,0xb4,0xc1,0x2f,0x4b,0x45,0xb0,0xa8,0x49,0x21,0x0,0x0,0x0,0x65,
0x61,0x9b,0xd8,0x61,0xab,0xf8,0xf9,0x46,0xf0,0xeb,0x1b,0xe3,0xfc,0x2e,0x87,0xc1,
0xcf,0x1b,0x6,0xbd,0xf0,0xa9,0xef,0x79,0xb3,0x98,0xe8,0x71,0x2e,0xc3,0xca,0xdf,
0xad,0x61,0x40,0x7b,0x20,0x22,0xe7,0x4a,0xa9,0x97,0xcc,0x37,0x95,0x76,0xf2,0x87,
0x3e,0x8f,0xb,0x7b,0x71,0x55,0x42,0x2,0x22,0x0,0x0,0x28,0xbb,0xa8,0xc,0xa3,
0x6f,0xf,0x6f,0xdd,0x66,0x2e,0xde,0x3c,0x9a,0xc8,0x61,0x56,0xfd,0x74,0xe0,0xbb,
0xb8,0x90,0x8b,0x8b,0xb,0x79,0x3e,0xac,0xfc,0xcd,0x60,0xac,0x9f,0x88,0xc8,0x83,
0x47,0x7,0x7,0xe7,0x22,0x57,0x6d,0xdf,0xf3,0xbc,0xd5,0xbf,0xac,0xe3,0xff,0xa2,
0x3e,0xbc,0x30,0x2a,0x89,0x0,0x0,0xa0,0x2c,0x6c,0xf9,0xc3,0x3a,0xa1,0x23,0xd4,
0xea,0x1d,0x9b,0xd1,0x7b,0x79,0x39,0xaa,0xf6,0x5d,0xc,0x3,0xdf,0xc5,0xf3,0xe7,
0xf2,0xfc,0xf9,0x73,0xb9,0x78,0xfe,0x7c,0xd4,0xf6,0x9d,0x41,0xd5,0x4f,0x44,0xe4,
0x4d,0x7d,0x61,0xc9,0x8,0x55,0xff,0x3b,0x6b,0xa0,0x4b,0x13,0x4,0xcd,0xf,0x2d,
0x6e,0x12,0x48,0xd4,0xe3,0xe2,0x1e,0x43,0x10,0x4,0x0,0x0,0xb3,0x14,0x95,0x69,
0xe2,0x26,0x76,0x98,0xdb,0xb3,0x8d,0x5,0xbf,0x61,0xb5,0x4f,0x7,0xbf,0xe7,0xc3,
0xe0,0xf7,0xfc,0xf9,0xf3,0x51,0xd5,0x6f,0x46,0xc1,0xcf,0x17,0x91,0xaf,0xea,0x2b,
0xb7,0x8c,0x37,0xf5,0x27,0x4a,0xa9,0x73,0x11,0x79,0x29,0x6d,0x9b,0x37,0x7c,0x9e,
0x74,0xd9,0x26,0x4d,0x20,0x8c,0x63,0xfe,0xc,0x13,0x47,0x0,0x0,0x40,0x11,0x92,
0x5a,0xbc,0x66,0xc5,0x4f,0x29,0x63,0x72,0x87,0xa5,0xea,0xa7,0xd7,0xf0,0xb,0x57,
0xfb,0x9e,0x3f,0x7f,0x2e,0xe7,0xe7,0xe7,0xa3,0xcb,0x33,0xc,0x7f,0x7f,0xfe,0xe8,
0xe0,0xe0,0x1d,0x7d,0xc5,0xc,0x7f,0xef,0x28,0xa5,0xbe,0x2a,0x22,0x6f,0xd8,0xde,
0x60,0xd6,0xf3,0xa4,0x8a,0x61,0x9a,0xe7,0x11,0x99,0xc,0x74,0x71,0x1,0x8f,0x20,
0x8,0x0,0x0,0xf2,0x4a,0xd3,0x95,0xc,0xe7,0x99,0x89,0x45,0x9c,0x2d,0xb,0x38,
0x9b,0xb3,0x78,0x75,0xe0,0x3b,0x77,0xdd,0x41,0xf0,0x1b,0x9e,0x2e,0x2f,0x2e,0x66,
0x15,0xfc,0x44,0x44,0x7e,0xd7,0xbc,0x62,0x86,0x3f,0x11,0x91,0x2f,0x29,0xa5,0xde,
0x98,0x26,0xf4,0x99,0x1f,0x8c,0x79,0x39,0xaa,0xd,0x9c,0xb6,0x1d,0x1c,0xbe,0x5f,
0x87,0xbb,0xa8,0x90,0x17,0x7e,0x1e,0xc2,0x20,0x0,0x0,0x8,0x4b,0xea,0x4e,0xc6,
0x85,0x3e,0x7d,0xae,0x27,0x76,0xe8,0xe0,0xe7,0x1b,0x93,0x3b,0x74,0xbb,0x57,0x57,
0xfc,0xce,0xcf,0xcf,0xe5,0x7c,0x78,0xee,0xba,0xae,0xb8,0xc3,0xca,0x9f,0xef,0xfb,
0xb3,0x7a,0x8b,0xdf,0x13,0x91,0xaf,0x99,0x37,0xdc,0xa,0x5,0xb7,0x6f,0x2a,0xa5,
0xde,0x52,0x4a,0xfd,0xa0,0x71,0x5b,0xee,0x2a,0x60,0xdc,0x65,0xf3,0x43,0xb,0x3f,
0xc6,0x54,0xab,0xd5,0xac,0xc1,0x4d,0xdf,0x1e,0x17,0xf2,0xcc,0xcb,0x8c,0xf,0x4,
0x0,0x0,0x51,0x6c,0xdd,0x47,0x6b,0xf7,0x32,0x8,0x24,0x8,0x57,0xfc,0x86,0x63,
0xfc,0xc6,0xc6,0xf9,0x19,0xbb,0x75,0x5c,0x5c,0x5c,0xc8,0xe5,0x70,0x8c,0xdf,0xf9,
0xf9,0xb9,0x9c,0x9f,0x9f,0xcb,0xbb,0xef,0xbe,0x2b,0xee,0xb3,0x67,0xf2,0xfc,0xfc,
0x7c,0x56,0x6b,0xfa,0x69,0x5f,0x78,0x74,0x70,0x30,0x96,0x2c,0xc3,0xe1,0x4f,0x94,
0x52,0x9f,0x55,0x4a,0xfd,0xb1,0xf9,0xa6,0x6d,0x1f,0x4a,0x52,0xd8,0xb3,0xdd,0xa7,
0x4f,0xfa,0x3,0x8a,0xaa,0xfe,0x99,0x46,0x15,0xbe,0xc1,0x95,0xb1,0xdb,0x6d,0xb7,
0x99,0xe7,0x51,0xd2,0x54,0x1,0xa9,0x14,0x2,0x0,0x30,0x5f,0xd2,0x6,0xa8,0xc4,
0xf6,0xae,0x52,0xa2,0xc4,0x12,0xfe,0x74,0xd8,0xd3,0xe1,0x4f,0x87,0xbe,0x20,0x18,
0x6c,0xd9,0x36,0xc,0x7e,0x5e,0x78,0x29,0x97,0x61,0xbb,0xf7,0xf9,0xb0,0xca,0xe7,
0xba,0xae,0xb8,0xcf,0x9e,0x89,0x7b,0x7e,0x3e,0xcb,0x71,0x7e,0x22,0x83,0xb5,0xfd,
0xbe,0x14,0xbe,0xd1,0x16,0xfe,0xde,0x54,0x4a,0x1d,0x88,0xc8,0x7a,0x54,0xa0,0xcb,
0x1a,0x0,0xcd,0x6a,0x5f,0xbf,0xdf,0x1f,0x4b,0xcb,0xb6,0xf,0xda,0x14,0x17,0xfe,
0x12,0x6f,0xbf,0xba,0x31,0xf1,0xd3,0x21,0xec,0x1,0x0,0xb0,0x78,0x22,0x3,0xa1,
0xce,0x29,0xe6,0x63,0xcc,0x2c,0xa2,0x94,0x4,0xc6,0x79,0x10,0x4,0x57,0xe1,0xcf,
0x98,0xdc,0xa1,0x27,0x76,0xf8,0x96,0x9,0x1e,0x9e,0x9e,0xd9,0x7b,0x79,0x39,0x6a,
0xf9,0x3e,0x3f,0x3f,0x1f,0xb4,0x7a,0x67,0x1f,0xfc,0x44,0x44,0xbe,0xf4,0xe8,0xe0,
0xe0,0x69,0xf8,0x46,0x5b,0xf8,0x13,0xa5,0xd4,0xaf,0x88,0xc8,0x1f,0xc6,0xb5,0x6e,
0xe3,0x6e,0x33,0xef,0x33,0xfb,0xe1,0xe6,0x2a,0xd7,0x63,0xb3,0x63,0x74,0xf8,0x1b,
0x7e,0xe8,0x71,0x74,0x44,0x1b,0x85,0xb5,0x88,0x9,0x21,0x59,0xc3,0x1f,0x0,0x0,
0xa8,0x0,0x5b,0xe8,0x1b,0xde,0x1e,0xe8,0xfb,0x82,0x60,0x70,0xff,0xf0,0xdc,0x1a,
0xfc,0x86,0x59,0x66,0xd4,0xee,0xd,0xaf,0xe7,0x67,0x54,0xfe,0xc6,0x96,0x74,0x19,
0x56,0xff,0x74,0x31,0x6c,0x86,0xde,0x15,0x91,0xcf,0xd9,0xee,0x88,0xa,0x7f,0x5f,
0x13,0x91,0x47,0x4a,0xa9,0xd7,0xd2,0x8c,0xe1,0x8b,0xba,0x7f,0x14,0xf8,0x74,0x69,
0xd4,0x98,0xfe,0xac,0xdb,0xbe,0x3a,0x4d,0x4f,0x84,0xbf,0x50,0xcf,0xdd,0x5a,0x99,
0x8b,0x8,0x75,0x51,0x51,0x8f,0xea,0x1e,0x0,0x0,0xd5,0x11,0xae,0xfa,0x4d,0x14,
0x98,0x42,0xd9,0x43,0x87,0xbd,0xb1,0xaa,0x5f,0x68,0xd7,0x8e,0x89,0x45,0x9c,0xcd,
0xf0,0xe7,0x79,0xa3,0x1d,0x3c,0xcc,0xdd,0x3b,0x9e,0xf,0xc7,0xfb,0x5d,0x3c,0x7f,
0x2e,0x17,0x17,0x17,0xa3,0xc,0x34,0x63,0x9f,0x7f,0x74,0x70,0xf0,0x3d,0xdb,0x1d,
0x51,0xe1,0xcf,0x17,0x91,0x7f,0xa3,0x94,0xfa,0x2b,0xa5,0xd4,0xb,0xc6,0xed,0x89,
0xa1,0x2f,0x9c,0x88,0x6d,0xa1,0xcf,0xf,0x4f,0x8b,0x1e,0x86,0x3f,0x9d,0xb8,0x25,
0xf4,0x5a,0x0,0x0,0x0,0x45,0x88,0x9b,0xd8,0x61,0x5e,0x36,0xbb,0x97,0xe1,0xf0,
0x37,0x56,0xf5,0xeb,0xf7,0xc7,0x97,0x76,0x9,0x8d,0xf5,0xbb,0x1c,0xb6,0x7c,0x2f,
0x86,0xbb,0x7b,0xcc,0x70,0x56,0xaf,0xe9,0x58,0x44,0x3e,0x1b,0x75,0xa7,0x35,0xfc,
0xd,0xcf,0xdf,0x52,0x4a,0x7d,0x49,0x29,0xf5,0x33,0x69,0xaa,0x7f,0xb1,0xa1,0x4f,
0xf,0x84,0xc,0xd,0x8e,0xd4,0x8f,0x33,0x3f,0xe0,0xf0,0x73,0xdb,0x8e,0xd,0x0,
0x0,0x20,0x8a,0x2d,0x2f,0x44,0xdd,0x36,0x91,0x6b,0x86,0xc5,0x28,0x33,0x9b,0x44,
0xe5,0x1c,0xbd,0xac,0x4b,0x78,0xa2,0x87,0x39,0xde,0x4f,0xcf,0xf8,0xbd,0x86,0x36,
0xaf,0xe9,0x67,0x1f,0x1d,0x1c,0x5c,0x46,0xdd,0x79,0x4b,0xbf,0x61,0x7d,0x1e,0xba,
0xfc,0xb,0x4a,0xa9,0x9f,0x50,0x4a,0xbd,0x27,0xe2,0xfe,0xf8,0xf6,0xae,0xf1,0xe1,
0xd8,0x2,0xa0,0x2d,0x4d,0x8b,0x88,0x3d,0x4,0x1a,0x3d,0x7a,0xf3,0x98,0x27,0xd8,
0x7e,0xb9,0x9,0x9f,0x10,0xa1,0x12,0x0,0x80,0x5,0x16,0x95,0x21,0x42,0x13,0x3c,
0xc6,0x66,0xf8,0x1a,0xb3,0x7a,0xcd,0xf1,0x7e,0xba,0x78,0x65,0x86,0x3e,0x33,0xfc,
0xf5,0x3d,0x4f,0x2e,0x87,0xd5,0xbf,0xfe,0x30,0x8,0x5e,0x53,0xb5,0x4f,0x7b,0xf3,
0xd1,0xc1,0xc1,0x9f,0xc4,0x3d,0xe0,0x96,0x35,0xf5,0x5e,0x5d,0x7e,0x47,0x29,0xf5,
0x69,0xa5,0xd4,0x57,0x6c,0xf7,0x87,0x7,0x3b,0x46,0x56,0xfb,0x42,0xc1,0x2f,0x3c,
0xe3,0xd7,0xda,0xfe,0x35,0xce,0xc3,0x33,0x71,0x44,0x2c,0x3,0x35,0x43,0xf7,0x8d,
0xdf,0x9c,0x32,0xdc,0x11,0x2,0x1,0x0,0x98,0x6b,0xd6,0xa,0xdf,0xe4,0x83,0x92,
0xc7,0xfa,0x19,0xc1,0x6f,0x62,0xf2,0x6a,0xc4,0x44,0x8f,0xd1,0x64,0x8f,0x61,0xfb,
0xd7,0x2c,0x6c,0x5d,0x93,0x77,0x44,0xe4,0xdf,0x26,0x3d,0xe8,0x56,0x4c,0xf0,0xd3,
0xa7,0xdf,0x17,0x91,0xf,0x2b,0xa5,0x3e,0x65,0xad,0xf6,0x99,0x95,0x3d,0xf3,0x43,
0x9,0xb7,0x79,0x8d,0x53,0xf8,0xb1,0xb6,0xf0,0x67,0x26,0x6f,0xfd,0xb,0x9,0x4f,
0x8,0x99,0x98,0x1d,0x1c,0x6e,0x5d,0xdb,0xde,0x71,0x78,0xf0,0x67,0x44,0xe0,0x23,
0x6,0x2,0x0,0xb0,0x20,0xa2,0xf2,0x81,0x91,0x25,0x74,0xc8,0x13,0x91,0x89,0x6e,
0x64,0x78,0xa2,0x87,0x79,0xa,0x87,0xbf,0x1b,0xa,0x7d,0xda,0x27,0x1f,0x1d,0x1c,
0x7c,0x37,0xe9,0x41,0x89,0xe1,0x6f,0x78,0xfd,0x67,0x95,0x52,0x1f,0x52,0x4a,0x7d,
0x20,0xfc,0xc6,0x47,0xe1,0xcf,0x1c,0xcb,0x17,0x6e,0xf5,0xe,0x2f,0xeb,0x8a,0x5f,
0xbf,0xdf,0x1f,0x55,0x9,0xf5,0xf3,0x29,0xa5,0x46,0xe3,0xff,0xcc,0x19,0xc0,0x63,
0x55,0x40,0x31,0xd2,0xf9,0xe0,0xc0,0xac,0x81,0x50,0xbf,0x7,0x1b,0xdb,0x58,0x42,
0x0,0x0,0xb0,0x78,0xe2,0xbe,0xf3,0xe3,0x26,0x79,0x84,0x27,0x7b,0xd8,0xf6,0xee,
0x35,0xf7,0xf0,0xd,0x77,0x35,0x6f,0xc8,0xaf,0x27,0xb5,0x7b,0xb5,0xa8,0xd9,0xbe,
0xe1,0xeb,0xe7,0x4a,0xa9,0x8f,0xf9,0xbe,0xff,0xd7,0x41,0x10,0xbc,0x32,0x7a,0xa3,
0x11,0xe1,0xcf,0xd6,0xe2,0xb5,0x5,0x3f,0x1d,0x1e,0x27,0x3e,0x58,0xb3,0xd4,0x2a,
0x57,0x69,0xdc,0x3c,0x2e,0xf3,0xc3,0xb5,0x4d,0x10,0x89,0x1b,0xec,0x39,0x6d,0xe8,
0x23,0x34,0x2,0x0,0x50,0x7e,0x89,0x59,0x20,0x34,0xe6,0x2f,0x6e,0xa2,0xc7,0x58,
0xd1,0x2a,0xd4,0xdd,0x34,0x27,0xad,0xde,0x90,0x6f,0x89,0xc8,0x2f,0xa4,0x7d,0xb0,
0x75,0xc2,0x47,0xc4,0xa4,0x8e,0xb7,0x83,0x20,0xf8,0x57,0xfd,0x7e,0xff,0x8f,0x7c,
0xdf,0x7f,0x61,0x54,0xfd,0x1b,0x4e,0x71,0xb6,0x55,0xfb,0x12,0x4f,0xc6,0x98,0xc0,
0x70,0xaa,0x36,0x77,0xff,0x30,0x4b,0xaf,0x51,0x1,0x70,0x74,0x39,0x3c,0x46,0xd0,
0xb8,0x4d,0xc2,0xb7,0x1b,0xf7,0x8f,0x2e,0xa6,0xfd,0xe4,0x0,0x0,0xc0,0x8d,0xca,
0x3a,0xa6,0x3f,0x3c,0x87,0x20,0x1c,0xfc,0x46,0x1,0x50,0x7,0x3f,0x5b,0xf5,0x2f,
0x34,0x61,0xb5,0x4,0x5,0xa1,0xef,0x8a,0xc8,0x8f,0xc7,0xcd,0xee,0xd,0x9b,0x68,
0xfb,0xda,0xae,0xeb,0x37,0xd9,0xef,0xf7,0xdf,0xf4,0x7d,0xff,0xd3,0x7e,0xbf,0xff,
0x5b,0x66,0xe0,0xd3,0x21,0x2e,0x1c,0xfa,0xc2,0xd5,0x3e,0xdb,0xcf,0x98,0x63,0x2,
0xc3,0x1f,0x70,0x38,0x7d,0x9b,0xbb,0x81,0x4c,0x4c,0x6,0x31,0x5a,0xc3,0x13,0x1,
0xd0,0xf6,0x4b,0xd7,0x52,0x4,0xbf,0x12,0xfc,0x62,0x1,0x0,0x40,0x1e,0x31,0xe3,
0xfd,0x92,0x76,0xf4,0x30,0x33,0x50,0xb8,0x25,0x5c,0x12,0x4f,0x45,0xe4,0x9f,0xa7,
0x19,0xe7,0x67,0x9a,0x68,0xfb,0xea,0xcb,0x51,0x93,0x3b,0x7c,0xdf,0xff,0x62,0xdf,
0xf7,0x1b,0x81,0xef,0xff,0xea,0x58,0xaf,0xdb,0x58,0xeb,0x66,0x2c,0xfc,0xf9,0x57,
0xab,0x5f,0xfb,0xc6,0x63,0xc6,0x5a,0xc5,0x46,0xf0,0x1b,0x5b,0x2,0x26,0xd4,0x6,
0x9e,0x98,0xc,0x12,0xfe,0x45,0x84,0x3,0x60,0xd4,0x78,0xc0,0xf0,0xa7,0x90,0x30,
0xe,0xb0,0x34,0xbf,0x62,0x0,0x0,0x90,0x8d,0x59,0xd4,0x32,0x6f,0x36,0xe6,0x10,
0x84,0x27,0x7b,0x98,0xe7,0x25,0xb,0x7b,0xa6,0x73,0x11,0xf9,0xe8,0xa3,0x83,0x83,
0xb7,0xb3,0xfe,0x60,0xe4,0x3a,0x7f,0xfa,0xba,0xb9,0x33,0x47,0xff,0x2a,0x4,0x7e,
0xae,0xef,0xfb,0xef,0xf3,0xfb,0xfd,0x7f,0x67,0x5b,0xe4,0xd0,0x1a,0xfe,0x86,0x95,
0x3e,0x5b,0x58,0x34,0xc7,0x4,0x86,0x4b,0xaa,0x66,0xc9,0xd5,0xac,0xfe,0x85,0x53,
0xba,0x75,0x56,0xb0,0x25,0x0,0xda,0xde,0x27,0x0,0x0,0x98,0x7f,0x71,0x63,0xfc,
0x6c,0xb7,0xdb,0x26,0x84,0xcc,0x49,0x3e,0xb8,0x14,0x91,0x8f,0x3d,0x3a,0x38,0x78,
0x2b,0xcf,0xf,0xc7,0x56,0xfe,0x6c,0x3d,0x6e,0xa3,0xa,0xf8,0x69,0x3f,0x8,0xde,
0xe9,0xfb,0xfe,0x2f,0x4e,0x4,0xbf,0xe1,0x38,0xc0,0xb1,0xcb,0x46,0xc5,0xcf,0x7c,
0xfc,0x58,0xf0,0x33,0x27,0x82,0x58,0xc6,0x2,0x9a,0x3d,0x78,0xf3,0xb2,0x18,0xe3,
0x2,0xd3,0x4e,0xfe,0x8,0xbf,0x67,0x0,0x0,0x30,0xff,0x2a,0xf0,0xdd,0xfe,0xae,
0xc,0x2a,0x7e,0xdf,0xc8,0xfb,0x4,0x91,0x13,0x3e,0x74,0xf8,0xb3,0xed,0xc5,0xab,
0x3,0x9a,0xdf,0xef,0xff,0x52,0xe0,0xfb,0xdf,0xf3,0x7d,0xff,0x37,0xfa,0xfd,0xfe,
0xb,0xe1,0x3d,0xee,0xcc,0xa,0x60,0x54,0x65,0xd0,0xb6,0x5e,0x60,0x78,0x7,0x10,
0xdb,0x4e,0x20,0xb6,0xde,0xfb,0x9c,0xa5,0x76,0x0,0x0,0x80,0x2c,0xbe,0x27,0x22,
0x3f,0x22,0x22,0x8f,0xa6,0x79,0x12,0xeb,0x3a,0x7f,0x22,0x93,0x8b,0x1a,0x86,0xdb,
0xb1,0xfe,0x55,0x15,0xf0,0x8b,0xbe,0xef,0x3f,0xd,0x82,0xe0,0x2b,0xbe,0xef,0xbf,
0xd8,0xb7,0x54,0x0,0xcd,0x35,0x70,0xa2,0xc2,0x5f,0xe4,0xc,0x60,0x4b,0x8,0xb4,
0x1d,0x2f,0x0,0x0,0xc0,0x2,0x3b,0x16,0x91,0x7f,0x21,0x22,0xdf,0x99,0xf6,0x89,
0xc6,0x2a,0x7f,0xfa,0xf2,0xc4,0x8c,0x5b,0x5b,0x10,0x34,0x26,0x68,0xf8,0xbe,0xff,
0x55,0xdf,0xf7,0xbf,0xe3,0xfb,0xfe,0x1f,0x6,0xbe,0xff,0x7d,0x63,0x63,0x4,0x43,
0x55,0xbf,0xb8,0xd6,0xb0,0xad,0xfa,0xa7,0xd7,0xcf,0x29,0xc1,0x1a,0x3a,0x0,0x0,
0x0,0x37,0xe1,0x4d,0x11,0xf9,0xa4,0x88,0xf4,0x8a,0x78,0xb2,0x25,0x5b,0xcb,0xd4,
0xb6,0xbc,0xca,0xe8,0x14,0x51,0x91,0xf3,0x7d,0x7f,0xcf,0xf7,0xfd,0x8d,0xfe,0x20,
0x8,0x8a,0xaf,0x17,0x73,0x36,0xaa,0x7c,0xb6,0x8a,0xa0,0xf5,0x34,0xdc,0x8,0x59,
0x6f,0x86,0xac,0x5b,0xc0,0x0,0x0,0x0,0x15,0x72,0x29,0x22,0x3f,0x2b,0x22,0x3f,
0x26,0x5,0x5,0x3f,0x11,0x91,0x25,0x91,0xc9,0xb1,0x72,0x63,0x6b,0xec,0x85,0x27,
0x7e,0xc4,0x9f,0xde,0xd,0x82,0xe0,0xc7,0xfd,0x20,0xf8,0xb4,0x1f,0x4,0xe7,0xe1,
0xb1,0x7f,0x7a,0x1,0xe8,0xa8,0xd6,0xb0,0xe,0x7e,0xfa,0x3e,0x7d,0x1c,0x0,0x0,
0x0,0x15,0xf3,0x1d,0x11,0xf9,0x67,0x22,0xf2,0x3f,0x8a,0x7e,0xe2,0xa5,0xf0,0xd,
0xe1,0x31,0x75,0x7a,0xfd,0xbc,0xf0,0xc9,0x3a,0x23,0xf8,0xea,0xf4,0x85,0x20,0x8,
0xbe,0x3f,0x8,0x82,0x37,0xcd,0x19,0xc2,0x7d,0xb3,0xd5,0x1b,0x9e,0x1c,0x62,0x54,
0xfe,0xa8,0xf4,0x1,0x0,0x80,0x8a,0x3a,0x17,0x91,0x5f,0x11,0x91,0xef,0x17,0x91,
0xbd,0x59,0xbc,0xc0,0x92,0x6d,0xc2,0x87,0x5e,0x50,0x79,0xac,0xfa,0x17,0x6a,0xfd,
0xda,0x76,0x3,0x9,0x5,0xc0,0xef,0x4,0xbe,0xff,0x63,0x41,0x10,0xfc,0x58,0x10,
0x4,0xdf,0x19,0xb5,0x8a,0xcd,0x56,0xb0,0x65,0x26,0x30,0xd5,0x3e,0x0,0x0,0x50,
0x51,0x5f,0x17,0x91,0xd,0x11,0xf9,0x25,0x19,0x84,0xc0,0x99,0x98,0xa8,0xfc,0x8d,
0xed,0x82,0x91,0x10,0xc2,0xc2,0x63,0x3,0xc5,0x3e,0x39,0xe4,0xcd,0x20,0x8,0xbe,
0x3f,0xf0,0xfd,0x9f,0xf3,0x83,0xe0,0xa9,0xb1,0x4c,0xcc,0x58,0x18,0xd4,0xc1,0xf,
0x0,0x0,0xa0,0x62,0xf6,0x64,0x30,0xae,0xef,0x47,0x64,0x30,0xab,0x77,0xa6,0xc6,
0xc6,0xfc,0x8d,0xaa,0x6e,0xa1,0x5d,0x32,0xc6,0xd8,0x96,0x86,0x19,0x3e,0x36,0x30,
0x77,0xd6,0x18,0xf,0x80,0xe7,0x41,0x10,0x7c,0x3e,0x8,0x82,0x57,0x83,0x20,0xf8,
0x74,0xe0,0xfb,0xdf,0xf5,0x83,0x60,0x6c,0xec,0x1f,0xc1,0xf,0x0,0x0,0x54,0xcc,
0xb7,0x64,0x10,0xf8,0x7e,0x40,0x6,0x33,0x7a,0xaf,0xc5,0xa8,0xf2,0x37,0x4d,0xab,
0x55,0x99,0x3f,0xaf,0xae,0xf6,0xdf,0xd5,0xcf,0xab,0xb7,0x69,0x53,0x41,0x70,0xae,
0x6,0xe3,0x1,0xff,0x71,0x10,0x4,0x3f,0x1d,0x4,0xc1,0x5b,0xb4,0x79,0x1,0x0,
0x40,0x85,0x5c,0x8a,0xc8,0x57,0x45,0xe4,0x87,0x64,0x30,0xa1,0xe3,0xeb,0xd7,0x7d,
0x0,0x4b,0xb6,0xe0,0x35,0x76,0x4b,0xad,0x36,0x7e,0xe7,0xf0,0x7a,0xad,0x56,0x93,
0x9a,0xbe,0x3c,0xbc,0x3e,0xf1,0x3c,0xe1,0x10,0x78,0x15,0xc,0x2f,0x45,0xa9,0xdf,
0x55,0x41,0xf0,0x4f,0x95,0x52,0x1b,0x41,0x10,0x7c,0x56,0x44,0x3a,0x5,0xbc,0x1f,
0x0,0x0,0x80,0x32,0xfa,0xa6,0xc,0x96,0x6d,0xf9,0x47,0x22,0xf2,0xe3,0x22,0x92,
0x7b,0x7b,0xb6,0x69,0xdd,0x8a,0xbb,0x53,0xc7,0xb9,0x5a,0xad,0x36,0x8,0x78,0xc6,
0x6d,0xa3,0xdb,0x6b,0x35,0x11,0xe3,0x7e,0x7d,0x59,0xdf,0x3f,0xc1,0x98,0x44,0x32,
0xc,0x87,0x7,0x22,0x72,0x20,0x22,0xbf,0x20,0x22,0x1f,0x10,0x91,0x8f,0x88,0xc8,
0x87,0x87,0xa7,0x46,0xee,0x77,0x6,0x0,0x0,0x70,0x73,0x3a,0x22,0xf2,0x40,0x6,
0x95,0xbd,0x6f,0xc8,0x60,0x6b,0xb6,0x52,0x18,0xed,0xf0,0x61,0x6d,0xbd,0xe,0xc3,
0x5d,0x4d,0x44,0x6a,0x4b,0x4b,0xa3,0xd3,0xd2,0xb,0x2f,0xc8,0x52,0x10,0x8c,0xc2,
0xdf,0x52,0xad,0x76,0x75,0xff,0xf0,0xb1,0x4b,0x4b,0x83,0x8e,0xb2,0x3e,0x1f,0xb,
0x8a,0x46,0x40,0xc,0xf9,0xbb,0xe1,0xe9,0xf3,0xc3,0xeb,0x1f,0x14,0x91,0x75,0x19,
0x84,0xc2,0x15,0x11,0xf9,0xbe,0xe1,0x65,0x0,0x0,0x80,0x32,0xb8,0x94,0x41,0x11,
0xeb,0x6d,0x19,0x4c,0xd6,0x38,0x96,0x41,0x95,0x6f,0xea,0x6d,0xd8,0x66,0x65,0x54,
0xf9,0x1b,0x5b,0xd7,0x4f,0x64,0xac,0xa5,0x2b,0x66,0x7b,0x57,0xae,0xda,0xbc,0xb5,
0x5a,0x4d,0x96,0x86,0x41,0xcf,0xbc,0x6c,0x3d,0x85,0x1e,0x6b,0x86,0xc8,0x98,0xc9,
0x1e,0xdf,0x1a,0x9e,0xc2,0x1a,0x32,0x8,0x83,0xda,0x1d,0x11,0x69,0x4d,0xf1,0x39,
0x0,0x0,0x0,0x24,0x39,0x90,0x41,0xd8,0xd3,0x66,0xb2,0xe,0xdf,0xac,0xfd,0x7f,
0xaf,0x6d,0x4c,0xf1,0xc2,0x9c,0x2c,0x37,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,
0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/cancelon.png
0x0,0x0,0x3f,0xa6,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7b,0x6c,0x5c,0xd7,0x7d,0x27,0xf0,0xef,0x1d,0xd,0xd9,0x1a,0xf2,0x8a,0x54,
0x80,0x10,0x1,0x24,0xc8,0x54,0x11,0x58,0x80,0x2c,0xc9,0x94,0x5b,0x54,0x70,0x2a,
0x41,0x8c,0x16,0x59,0x5b,0xb1,0x5d,0x33,0x6d,0x8a,0x3a,0x51,0x5c,0x33,0x68,0x91,
0xa8,0xf1,0x66,0xc3,0x6c,0x37,0xf1,0x63,0x8b,0x48,0x9,0x36,0x7e,0x64,0x37,0x9,
0xb3,0x8d,0x1d,0x39,0xd8,0xc2,0x54,0x1b,0xb5,0x5e,0x34,0x68,0x68,0x4b,0x7e,0x14,
0x5d,0xc8,0x14,0xc4,0xd8,0x50,0xb0,0xb1,0xa8,0x97,0x1,0x7b,0x3,0x90,0x22,0x4c,
0x20,0x60,0x0,0x6b,0xa8,0x86,0x91,0x44,0xce,0x3d,0x67,0xff,0xb8,0x73,0xee,0x9c,
0x73,0xee,0xb9,0x33,0xf7,0xce,0x83,0xbc,0x33,0xf3,0xfd,0x8,0x93,0x79,0xf,0xef,
0xcc,0xc8,0xe1,0x57,0xbf,0x73,0x7e,0xe7,0x78,0xbb,0xff,0xcf,0xc7,0xd0,0xe5,0x75,
0xa1,0x2b,0xd7,0x85,0xee,0x5c,0x17,0xba,0x73,0xdd,0xa5,0xcb,0xdd,0xe8,0xca,0xe5,
0xd1,0x95,0xeb,0x42,0x97,0xd7,0x85,0x7c,0x2e,0x8f,0x2e,0x2f,0x8f,0x7c,0x2e,0x8f,
0x35,0xde,0x1a,0xe3,0x94,0xf3,0x72,0xc8,0x21,0x87,0x9c,0xe7,0xc1,0x83,0x87,0x9c,
0x97,0x3,0x0,0x78,0xf0,0xe0,0x95,0x6e,0x53,0x24,0x64,0x70,0x2e,0x65,0x78,0x59,
0x48,0x1,0x75,0x4d,0x48,0x61,0xdc,0xe6,0x4b,0x1f,0x12,0x32,0xb8,0x2e,0xe5,0x6,
0x1,0xf1,0x61,0x29,0xe5,0x16,0x1,0x1,0x29,0x25,0x4,0xc4,0xcd,0x52,0xca,0x2d,
0xb2,0xf4,0xda,0xea,0x79,0xfa,0x6b,0xe8,0x3f,0x4f,0x5d,0x57,0xb7,0x19,0xc7,0xa4,
0xdd,0x47,0x44,0x44,0x44,0xad,0x47,0xfd,0x6e,0x37,0x6e,0x8b,0xf9,0x3d,0x1f,0x66,
0x3,0x2d,0xf,0x48,0xed,0x76,0x95,0x23,0xb4,0xf3,0x25,0x1,0x71,0x41,0xca,0x20,
0x9f,0x8,0x88,0x25,0x21,0xc5,0x5,0x21,0xe5,0xdb,0xbe,0xf4,0xaf,0xf9,0xd2,0x87,
0x90,0x2,0xbe,0xf4,0xd5,0xfd,0xa5,0xcb,0xe5,0xdb,0x7c,0xe1,0x97,0x2f,0x6b,0xf7,
0x95,0x1f,0x5b,0x7a,0xae,0x14,0xa5,0x93,0x99,0x85,0xc2,0xfc,0xf3,0xc0,0xd5,0x9a,
0x3f,0xa3,0x7c,0x97,0xd7,0x85,0xee,0x35,0xdd,0xe8,0xf2,0xf2,0xe8,0xce,0x75,0x87,
0xa7,0x30,0xf8,0x85,0xe1,0x6f,0xd,0xf2,0x5e,0x3e,0x38,0x95,0x2,0x60,0xce,0xcb,
0x61,0x8d,0xb7,0x6,0x1e,0x50,0x3a,0x8f,0x6,0x3f,0x75,0xd9,0xe,0x5d,0xd2,0x2b,
0x7,0xb4,0x9c,0x97,0xb,0xdf,0x54,0xce,0xcb,0x41,0x48,0x1,0xcf,0xf3,0xb6,0x4b,
0x29,0xef,0xce,0x79,0xb9,0xad,0x42,0x8a,0xed,0x1e,0xbc,0xad,0xf0,0x70,0x93,0x27,
0x3d,0xc0,0x3,0xec,0x73,0xf5,0xc5,0xd9,0x3f,0x2b,0x4e,0x2d,0xc1,0xcf,0xf5,0x17,
0x8a,0x88,0x88,0x88,0xb2,0xc9,0xc8,0x1e,0x31,0xc1,0xcf,0x7c,0x7c,0x34,0x1f,0x54,
0x7b,0x2d,0x59,0xbe,0xfe,0x4b,0x0,0xbf,0x90,0x90,0x6f,0x4b,0xc8,0x37,0x25,0xe4,
0xa4,0x90,0xe2,0x17,0x42,0x4a,0x2d,0xc8,0x5,0xe1,0xad,0xfc,0x47,0x96,0x2f,0x6b,
0x8f,0x91,0x32,0x8,0xa4,0x22,0x28,0x72,0x19,0xc1,0x4f,0x48,0x81,0x7a,0x6b,0x55,
0x79,0x57,0xf0,0xeb,0x5e,0xd3,0x15,0x56,0x3,0x83,0xf0,0x17,0x4,0xbe,0xbc,0x67,
0x57,0xfd,0x72,0x41,0xd5,0xcf,0xcb,0x85,0xc1,0x4f,0x55,0xf9,0xf4,0xf0,0xa7,0x7f,
0xd0,0x0,0x20,0xbd,0x72,0xd2,0xd6,0x82,0xdf,0x87,0x72,0x5e,0xee,0x93,0x42,0x8a,
0x7d,0x39,0x2f,0xb7,0x57,0x48,0xf1,0x1,0xbd,0x62,0xe8,0x79,0x5e,0xa2,0xf0,0xa5,
0x57,0xfa,0xf4,0x9f,0xab,0x57,0xfd,0xf4,0x2f,0xdc,0xf5,0x97,0x21,0xee,0x35,0x89,
0x88,0x88,0xa8,0x75,0xb8,0x7e,0x7f,0x1b,0x55,0x3e,0x69,0x6,0x3a,0xfb,0x3e,0xbd,
0xea,0xa7,0x57,0x9,0xc3,0x3f,0xd2,0xb8,0xfe,0xa1,0xd2,0x69,0x37,0x80,0xcf,0x95,
0x5e,0xf6,0x97,0x0,0xfe,0x55,0x42,0xbe,0x24,0x21,0x5f,0x96,0x52,0x5e,0xb,0x9f,
0x63,0x9d,0xc2,0xe0,0x57,0xfa,0x99,0xbe,0x34,0x43,0xa1,0x2f,0xfd,0xe0,0xf8,0x4,
0x82,0x53,0x1d,0xf2,0xae,0xe0,0xd7,0x9d,0xeb,0xd6,0xc2,0x5f,0x10,0xfa,0xba,0x72,
0x5d,0x46,0xe8,0x33,0x87,0x7b,0x73,0x91,0x21,0x5e,0x3d,0xb8,0xa9,0xf,0x52,0x85,
0x41,0xf5,0xc6,0x3c,0xcf,0xbb,0x59,0x48,0xf1,0x9,0x0,0xf,0x7a,0xf0,0x3e,0xa6,
0x9e,0xa7,0xbe,0x2c,0x15,0xf8,0x5c,0xd5,0x3c,0xe7,0x17,0x11,0xf7,0xc5,0x38,0x82,
0x5f,0xa5,0xe1,0x5f,0xfd,0x67,0x10,0x11,0x11,0x51,0x6b,0xb3,0x43,0x9e,0x7e,0x9b,
0x3e,0xd4,0xab,0xae,0xab,0x29,0x68,0x76,0xa1,0xa8,0x52,0xb6,0xd0,0xab,0x76,0xda,
0x90,0xed,0x87,0x84,0x14,0xf,0x96,0x4e,0xb,0x2,0xe2,0x27,0x2,0xe2,0xef,0x5,
0xc4,0x49,0xa3,0xea,0xa7,0xfd,0x9,0x86,0x85,0xab,0x4,0x3f,0x51,0x5f,0x3e,0xc9,
0xbb,0x82,0x5f,0x10,0xfe,0xca,0xc3,0xbe,0x6b,0xbc,0x35,0xda,0x70,0x6f,0x39,0xf0,
0xe9,0x43,0xbd,0xae,0xf9,0x7d,0x91,0xf,0xbf,0x9c,0xaa,0xb7,0xe4,0xbc,0xdc,0xa3,
0x42,0x8a,0x4f,0x7a,0x9e,0x77,0xb3,0x94,0xd2,0xa8,0xec,0xd9,0xaf,0x10,0x57,0x9d,
0x2b,0x7f,0x19,0xb0,0xae,0x97,0xbf,0x1c,0x51,0x8a,0xc7,0xae,0x2f,0xca,0x7e,0x4e,
0x12,0x1c,0xfa,0x25,0x22,0x22,0x6a,0x1d,0xae,0x62,0x8f,0x7e,0x7b,0xa5,0xe0,0x57,
0xad,0xb8,0xa4,0xf,0xcb,0x46,0x32,0x88,0xfd,0x47,0xca,0x1e,0x29,0xe5,0xb0,0x90,
0x62,0x58,0x48,0x31,0x27,0xa4,0xf8,0xbe,0x2f,0xfd,0x1f,0xf8,0xd2,0x5f,0xd0,0xe7,
0x3,0xea,0xc3,0xc0,0x6a,0xee,0x9f,0x94,0x12,0xf0,0x11,0x9c,0x84,0x6c,0xc0,0xb0,
0xaf,0x23,0xf8,0x75,0xe7,0xba,0xc2,0x6a,0x5f,0x3e,0x1c,0xf2,0x75,0x35,0x78,0x94,
0x87,0x7b,0x81,0xf8,0x79,0x7e,0xda,0x87,0xfd,0xbb,0xf0,0xf0,0x15,0x48,0xfc,0xa9,
0x7a,0x8c,0xfd,0x58,0xe3,0xb,0xd3,0x87,0x67,0x65,0xf4,0x43,0xd7,0xcf,0xed,0x49,
0x99,0x7a,0xf0,0x73,0x35,0x7e,0xe8,0x5f,0xbc,0xfe,0xf3,0xc2,0xcb,0xac,0xfa,0x11,
0x11,0x11,0xb5,0x9c,0x6a,0x45,0x9a,0xb8,0xd0,0xa7,0x15,0xa8,0xcc,0x3c,0x1,0xab,
0x39,0x35,0xa6,0xea,0x17,0x9e,0x43,0xe5,0x12,0xab,0x1a,0x18,0xce,0xf2,0x93,0x10,
0x52,0x6e,0x10,0x52,0x3c,0x29,0xa5,0x7c,0x54,0x48,0xf1,0x7d,0x21,0xc5,0x77,0x84,
0x14,0xef,0x7,0x4d,0x1f,0x56,0xf0,0x13,0xb2,0x1c,0xfa,0x7c,0x34,0x66,0xd8,0xd7,
0x15,0xfc,0xc2,0xee,0xde,0x52,0xf8,0x53,0xc3,0xbc,0xfa,0x29,0xae,0xe2,0x67,0xcc,
0xf3,0x2b,0x7d,0xfe,0x9e,0xe7,0x6d,0x95,0x90,0xdf,0x86,0xc4,0xdd,0xc1,0xd,0xc1,
0x87,0x15,0x37,0x8f,0xcf,0xf5,0xb5,0xb9,0x4a,0xad,0xc1,0x87,0x59,0x39,0x0,0xc6,
0x95,0x68,0xd5,0x17,0xa6,0x5e,0x5b,0xbf,0x4e,0x44,0x44,0x44,0xad,0xcb,0x59,0x50,
0x52,0xe7,0xce,0xea,0x5f,0x39,0xf8,0xa9,0x6e,0x5a,0xfd,0xf6,0x70,0x14,0xd1,0xc8,
0x14,0x30,0x72,0x45,0x39,0xf4,0x9,0x23,0x4,0x9a,0x95,0xc2,0x48,0xd3,0x47,0x8f,
0x84,0xfc,0xaf,0x42,0x8a,0x2f,0x9,0x29,0x7e,0x20,0xa4,0xfc,0x86,0x90,0xe2,0xd7,
0x61,0xf0,0xf3,0x4b,0x43,0xbd,0xe1,0x39,0x1a,0x34,0xe7,0x2f,0x97,0x37,0x87,0x7a,
0xad,0xe0,0x97,0x77,0x2d,0xeb,0xa2,0x55,0xfe,0x0,0x84,0xe1,0x2f,0x32,0x5c,0xeb,
0x79,0x37,0x4b,0xc8,0xaf,0x49,0x29,0xbf,0xe4,0xc1,0xeb,0xd6,0xbb,0x72,0xe3,0xd8,
0x41,0xcd,0xe8,0x7c,0xb1,0x82,0x9c,0xa,0x7e,0xaa,0x3c,0x9a,0xba,0xf2,0x67,0x1d,
0x8b,0x11,0xc,0xeb,0xf9,0x54,0x89,0x88,0x88,0x68,0xd5,0x54,0xca,0x1a,0xf6,0xe8,
0x9f,0xab,0xfa,0xe7,0x1a,0x65,0x54,0xa1,0xd0,0xe,0x73,0xc6,0x6d,0x30,0x83,0xa5,
0x91,0x65,0xc2,0xe1,0x61,0x73,0x8e,0x60,0x29,0xe8,0xdd,0x2c,0xa4,0xfc,0x4a,0x69,
0x6e,0xe0,0x5f,0x9,0x29,0xfe,0x21,0xc,0x7e,0x45,0x47,0xf0,0xf3,0x1b,0x30,0xe7,
0xaf,0xcb,0xeb,0xa,0xe7,0xf8,0xd9,0xc1,0x4f,0x5f,0xd7,0x4f,0x5,0x3e,0xbd,0xe2,
0x97,0xb3,0x3a,0x72,0xb5,0xf,0xfe,0x93,0x1e,0xf0,0x6d,0xf,0xde,0x26,0x61,0x2d,
0xc5,0xe2,0xfa,0x22,0xec,0xe1,0xd8,0xc8,0x75,0x58,0x89,0x59,0xca,0xd8,0xe0,0xe7,
0xa,0x80,0xae,0xb5,0x7c,0x82,0xf3,0xf0,0x78,0xeb,0xfa,0x20,0x89,0x88,0x88,0x68,
0x75,0xb8,0x2a,0x7d,0x71,0xf7,0x57,0xab,0xfc,0xa9,0x1c,0x1,0xc0,0xc,0x7c,0xc6,
0xb9,0xf9,0x5c,0x73,0x79,0x16,0x2d,0xa3,0x68,0x55,0x40,0xf5,0xb3,0xf5,0x20,0xa8,
0xe7,0x9a,0xd2,0xbc,0xbf,0xf,0xf9,0xd2,0x3f,0x26,0x85,0xfc,0x73,0x8,0x7c,0x11,
0x45,0xf9,0x76,0x18,0xfa,0xf4,0x39,0x7f,0xf5,0x56,0xfe,0xf2,0xb9,0xd2,0x9c,0x3e,
0x6d,0x5d,0x3f,0x57,0xf0,0x53,0x43,0xbd,0x6b,0xbc,0x35,0x46,0xe8,0x73,0x34,0x79,
0xdc,0xc,0xe0,0x39,0x78,0xf8,0xb4,0x1e,0xf8,0x24,0xca,0x5d,0xbb,0xae,0xca,0x9b,
0xfe,0x81,0xea,0x1f,0xa6,0x3d,0x8e,0xae,0x82,0x9f,0xbe,0xde,0x8d,0xb1,0xe8,0xa1,
0x76,0xe,0xa0,0x3c,0x51,0x52,0xfd,0xc,0xc4,0x57,0xfc,0xec,0xbf,0x3c,0xc,0x84,
0x44,0x44,0x44,0xed,0x23,0xae,0xea,0xa7,0x6e,0x8b,0xab,0xfc,0xe9,0xc5,0xa5,0x70,
0xd4,0xd1,0xe,0x76,0x8e,0x3f,0xea,0x67,0x94,0x43,0x9f,0x59,0x35,0xc,0x33,0x4b,
0x38,0xa2,0x19,0x36,0x77,0xec,0x43,0x51,0x9e,0x85,0xc0,0x5f,0x41,0xe0,0xfb,0x28,
0xc2,0xac,0x2,0x36,0x64,0xce,0x9f,0x9a,0xe7,0xa7,0x16,0x71,0x2e,0x5,0xbf,0xbc,
0x97,0xf,0xbb,0x7a,0xcd,0xaa,0x9f,0x3e,0xd4,0x6b,0x4,0xbf,0x1,0x0,0x2f,0x0,
0xd8,0x2,0xc0,0x5c,0x7c,0xb9,0x34,0xbf,0x2f,0x12,0xb0,0xf4,0xf,0x48,0x4f,0xc1,
0xc6,0x7,0x5d,0x4e,0xc5,0x7a,0xf0,0x53,0xad,0xcf,0xb1,0xd5,0xbf,0x70,0xfc,0xde,
0x55,0xf1,0x93,0xce,0x70,0xe7,0xfa,0xd7,0x43,0xb5,0x7f,0x51,0x10,0x11,0x11,0x51,
0x36,0xc5,0x15,0x72,0x5c,0xc5,0x28,0x3d,0xf4,0x1,0x66,0xe5,0xcf,0x1e,0x55,0xb4,
0x47,0x25,0x5d,0xe1,0x4f,0x2f,0x5c,0x45,0x42,0x9f,0xf6,0x5a,0x7a,0xf6,0x9,0x97,
0x72,0x91,0xe8,0x86,0x8f,0xbf,0x41,0x11,0x7b,0xe1,0xcb,0xcf,0xc2,0xc7,0xaf,0x8d,
0x2a,0x60,0x1d,0xf2,0x6a,0x4e,0x9f,0xaa,0xfe,0xe9,0xcd,0x1d,0x71,0xc1,0xcf,0x58,
0xcc,0xb9,0x3c,0xd4,0xfb,0x39,0x0,0xa3,0x52,0xca,0x9b,0x80,0x98,0x5d,0x3d,0xf4,
0x14,0xac,0x7f,0x30,0x61,0x65,0xcf,0x3d,0x46,0x5e,0xde,0xe6,0xc4,0x75,0x9b,0xa3,
0xea,0xa7,0x6d,0x17,0x67,0x27,0x78,0xf5,0xe5,0x1a,0xe7,0x9,0x3b,0x83,0x88,0x88,
0x88,0xa8,0xb5,0xc4,0xd,0xf9,0xea,0xf7,0xdb,0x19,0x21,0x3e,0x0,0x6a,0x73,0xff,
0xac,0xe9,0x69,0xe5,0xa1,0x5f,0x58,0x59,0x24,0x9a,0x7d,0x8c,0xe6,0x8f,0xd2,0x6b,
0xfa,0xd2,0x37,0x87,0x77,0x8b,0x50,0xf3,0xfc,0x3e,0x9,0x1f,0x3,0x28,0xe2,0x1,
0x8,0xfc,0x3c,0x1c,0xfa,0xad,0x43,0x3e,0x32,0xd4,0x6b,0xed,0xdf,0x5b,0x5e,0xd3,
0x2f,0x67,0x54,0xfb,0xf4,0x25,0x5d,0x0,0x7c,0x1b,0xc0,0x7f,0x96,0x88,0xef,0xe0,
0x8d,0x7c,0xd0,0xd6,0x4,0x49,0x3d,0x3d,0x9b,0x7b,0xde,0xa9,0x7d,0xf2,0xb4,0x89,
0x91,0x5a,0xf8,0x93,0x90,0xe5,0xa,0x60,0x58,0xf5,0x8b,0x76,0xec,0xe8,0x73,0xff,
0xd4,0x31,0x18,0xe7,0x1c,0xe2,0x25,0x22,0x22,0x6a,0x1b,0x95,0x46,0xf2,0x5c,0xd3,
0xbf,0xe2,0x2,0xa0,0x5e,0x4c,0xd2,0x8b,0x4c,0x7a,0xc5,0xce,0x55,0xf5,0xb,0x5f,
0xdb,0x35,0xe4,0x6b,0x55,0xe,0xc3,0x20,0xe9,0xa3,0xdc,0xd9,0xab,0x82,0x60,0x51,
0x2,0x3e,0x3e,0xc,0x81,0xd3,0xf0,0xf1,0x47,0xf0,0xe5,0x6b,0x75,0x57,0xfe,0xd4,
0x2,0xce,0x46,0x47,0xaf,0xfe,0x47,0xb,0x7e,0x39,0xd8,0xdd,0xbd,0x5e,0x37,0x80,
0xff,0x5,0xe0,0x41,0x9,0xf7,0x4e,0x1c,0xc6,0x87,0xeb,0x48,0xc9,0x46,0xf2,0x95,
0xc2,0x79,0xa,0x37,0x3d,0x8e,0xb,0x7f,0x42,0x6d,0x78,0x5c,0xfe,0x20,0x1,0x47,
0xbb,0xb6,0xf6,0xc5,0xea,0xb7,0xe9,0xc7,0x47,0x44,0x44,0x44,0xed,0xc3,0xce,0x25,
0xe9,0x2,0x20,0xb4,0xaa,0x5f,0xb9,0x97,0x40,0x9f,0x6e,0x66,0x8e,0x62,0x46,0xb,
0x5a,0x76,0xf5,0x4f,0xef,0x49,0xd0,0xe7,0xfa,0x85,0x81,0x4f,0xa2,0x5c,0xfd,0xd3,
0x97,0x78,0xf1,0x71,0x13,0x8a,0xf2,0x45,0xf8,0xf8,0xb,0xf8,0xf8,0xfb,0x7a,0x3e,
0x93,0xbc,0xa,0x7e,0xf9,0x9c,0xb5,0x94,0x8b,0xbe,0x6f,0xaf,0x16,0xfc,0xb4,0x21,
0xdf,0x9b,0x0,0xfc,0x33,0x10,0xac,0xdd,0x17,0x19,0xe6,0x45,0x34,0x64,0xb9,0x3e,
0x8c,0xe0,0x4d,0x97,0x4b,0x9e,0xd1,0x93,0x88,0x54,0x1,0x23,0xc3,0xbe,0x8e,0x9,
0x99,0xd5,0xca,0xb8,0x76,0xe5,0xcf,0xf5,0x17,0x81,0x88,0x88,0x88,0x5a,0x5b,0x5c,
0xf8,0x3,0xe2,0x3a,0x7f,0x61,0x8c,0x1a,0x86,0x97,0xed,0xb0,0x7,0x19,0x16,0xa5,
0xaa,0xe5,0x1c,0xbd,0x5a,0x18,0xbe,0x96,0x9e,0x5d,0xa4,0x2c,0xcf,0xf5,0xb,0xe7,
0xf5,0x49,0x2d,0x4,0x42,0x55,0x0,0xbb,0xe1,0xe3,0xef,0xe0,0xe3,0x83,0x0,0xbe,
0x53,0xeb,0x67,0x92,0x57,0x7b,0xf5,0xe6,0x10,0x5d,0xc8,0x39,0x9c,0xe3,0x17,0xd,
0x7e,0xdd,0x0,0x4e,0x0,0xd8,0x57,0xe9,0xc5,0xc3,0x76,0xe8,0x98,0xb1,0x71,0xb3,
0xba,0xe7,0x47,0x2,0x60,0xd1,0x39,0xfc,0xeb,0x43,0xaf,0x8,0x86,0xaf,0x65,0xcd,
0xfb,0xd3,0x53,0x3a,0xab,0x7e,0x44,0x44,0x44,0x9d,0xc5,0x3d,0xec,0xab,0x5d,0xae,
0xb0,0xf2,0x87,0x51,0x38,0xb2,0xaa,0x79,0x40,0x39,0x8,0xaa,0xe0,0xa7,0x4f,0x4f,
0xd3,0x33,0x87,0x9e,0x7f,0xd4,0xeb,0xbb,0x42,0x64,0x18,0xfe,0x24,0x1c,0x6b,0xfa,
0xc1,0x15,0x4,0xbf,0xed,0xfd,0x97,0x9b,0xba,0xe5,0xff,0xb8,0xf6,0x54,0x2d,0x9f,
0x4d,0xde,0xb9,0x80,0x73,0x38,0xbf,0xf,0xe1,0x42,0xce,0x5a,0xf0,0x5b,0x3,0xe0,
0x9f,0x10,0x13,0xfc,0x9c,0x5d,0xb5,0xda,0x9b,0xd4,0x43,0x5c,0xa4,0xb2,0x27,0x54,
0xe8,0x2b,0x46,0x2a,0x7e,0xe6,0xbe,0x77,0xe6,0xfc,0xc0,0x4a,0x55,0xbf,0xf8,0x8a,
0x9f,0xfb,0xcb,0x8f,0xbc,0x1f,0xc7,0x5f,0x1e,0x22,0x22,0x22,0x6a,0x1d,0x91,0xea,
0x5f,0x5c,0xe3,0x47,0xcc,0xca,0x20,0x76,0xae,0x88,0xae,0x30,0x12,0xad,0xfc,0xe9,
0x7f,0xc2,0x39,0x83,0x7a,0xc7,0xb0,0x5e,0xa8,0x52,0x55,0xbf,0x30,0xf8,0x49,0xb3,
0xf9,0xc3,0xae,0x0,0xa,0x0,0x45,0x3c,0xe9,0xfd,0xa7,0x9b,0xe6,0xe4,0xff,0xbc,
0x96,0x7a,0x8,0x38,0xbf,0xc6,0xb3,0x16,0x6e,0x2e,0xfd,0xc9,0x69,0xdb,0xb6,0x19,
0x5b,0xb6,0x1,0x7f,0xe3,0x79,0xde,0x1f,0xda,0x1f,0x9e,0x9e,0x6a,0xcb,0x1f,0x90,
0xb9,0x8a,0x75,0x79,0x98,0xd7,0x9c,0xcb,0xa7,0x42,0x5d,0x51,0x16,0x8d,0xe0,0x57,
0x14,0x45,0xe7,0x30,0xb0,0x5e,0x29,0x94,0xd2,0x4c,0xde,0x80,0xb5,0x28,0x23,0xcc,
0x40,0x1a,0x1e,0x63,0x4c,0xe2,0xf,0xaf,0xb3,0x12,0x48,0x44,0x44,0xd4,0xf2,0xaa,
0x15,0x71,0xec,0x5c,0xe0,0xa,0x7e,0xf6,0x75,0x57,0xf0,0xd3,0xb,0x5c,0x46,0xd5,
0xcf,0xaa,0xfe,0xd9,0xaf,0x9,0xa0,0x5c,0xe5,0xd3,0x4f,0x61,0xf5,0x4f,0x6f,0x0,
0x9,0x83,0x9f,0xa,0x83,0xcf,0x7b,0x9f,0xff,0xed,0x5,0xf9,0xdc,0xf5,0x97,0xd2,
0x7c,0x26,0x79,0x7d,0xab,0x36,0xbd,0xfa,0x7,0x4,0xc3,0xbd,0xd6,0x7a,0x7e,0x5f,
0x7,0xf0,0x97,0xb1,0x1f,0xa0,0xf5,0xc1,0x45,0x42,0x9f,0xd1,0xcd,0x5b,0xe,0x7e,
0x45,0x51,0x34,0x82,0x9f,0x79,0x5d,0x55,0x4,0xcb,0x8f,0x77,0x2d,0xee,0x5c,0x1e,
0x73,0x8f,0x4e,0xce,0xb4,0x3f,0x6c,0xd7,0x97,0x6d,0xdf,0x4e,0x44,0x44,0x44,0xed,
0xc7,0xc8,0x2,0x8e,0x39,0x7f,0xfa,0xe5,0xca,0xe1,0x2f,0x5a,0x5,0x34,0x36,0xa4,
0xd0,0xea,0x7e,0xfa,0xba,0x7e,0x61,0xe5,0x4f,0x5b,0x32,0xc6,0x18,0xf2,0xd5,0xc3,
0x9e,0x9a,0x3,0x68,0x54,0xfe,0x4a,0xa7,0x20,0xc,0xae,0x81,0x8f,0x17,0xbc,0xcf,
0xfe,0xf6,0xa0,0x7c,0xfe,0xfa,0xcf,0x92,0x7e,0x6,0xf9,0x30,0xf0,0x41,0xaf,0xfc,
0x95,0x87,0x7b,0x81,0x70,0x39,0x97,0xbb,0x1,0x7c,0x4d,0x55,0x1,0xe3,0xaa,0x7e,
0xe5,0xb9,0x77,0xd1,0xe1,0x5e,0xd7,0x50,0xaf,0x1e,0xf4,0x8a,0x46,0xf5,0x4f,0xdd,
0x17,0x9d,0xf7,0xa7,0x57,0xfe,0x5c,0xd,0x1f,0x95,0x12,0xb6,0x1d,0x50,0x2b,0xfd,
0xa5,0x20,0x22,0x22,0xa2,0xd6,0x53,0xeb,0x94,0x2e,0x57,0xe8,0x53,0xb7,0x4b,0x69,
0x56,0x5,0xed,0xcc,0x61,0xc,0xf7,0x3a,0xaa,0x7f,0xae,0x26,0x10,0x9,0x15,0xfc,
0x64,0x95,0xea,0x1f,0xca,0xf3,0xfe,0xf4,0xeb,0x41,0x8,0xbc,0x9,0x45,0xfc,0x93,
0x77,0xe0,0xb7,0x76,0xca,0x63,0x37,0xde,0x4f,0xf2,0xf9,0xe4,0x3d,0x78,0x66,0x57,
0x6f,0x29,0xf4,0x85,0x8b,0x38,0x7,0xe7,0x1b,0x0,0xfc,0x9d,0xeb,0x3,0xb5,0xdf,
0x84,0x6b,0xb8,0xd7,0xb5,0x7e,0x5f,0x18,0xf0,0x4a,0x61,0x6f,0x59,0x85,0x40,0xed,
0xdc,0x97,0xa2,0x5c,0xfd,0xb3,0x9b,0x3e,0x60,0xbe,0xbe,0xf1,0x45,0x54,0x8,0x80,
0xf6,0x97,0x5b,0xed,0x2f,0x2,0x11,0x11,0x11,0xb5,0xf,0xfb,0xf7,0xbd,0x1e,0x6b,
0x22,0xf7,0x39,0x8a,0x46,0x71,0x19,0xc3,0xae,0x0,0xea,0x55,0x3f,0x7d,0x5d,0xbf,
0xc8,0x7c,0x3f,0x9,0xad,0xea,0x7,0xb3,0xea,0xe7,0x6a,0xf8,0x28,0xa2,0x1c,0xfc,
0xca,0x4b,0xc2,0x6c,0x82,0x8f,0x63,0x0,0xf6,0x27,0xf9,0xc,0xf2,0xc6,0x6e,0x1d,
0xa5,0x4b,0xe1,0x2,0xce,0x5e,0xd8,0xe0,0xf1,0x2,0x80,0xf,0xba,0x3e,0xc0,0xe8,
0x1b,0x87,0x19,0xfa,0x50,0x5e,0x9a,0x45,0x55,0xfd,0xd4,0x5c,0xbe,0x65,0xb1,0x6c,
0x4,0x3f,0x75,0xbd,0x28,0x82,0xdb,0x2a,0x2d,0xfd,0xe2,0xea,0xb4,0xb1,0x87,0x7a,
0xcd,0x61,0xdf,0xf8,0x2f,0xb6,0xfc,0x17,0x80,0x1,0x90,0x88,0x88,0xa8,0x95,0xd5,
0x5a,0xcc,0x71,0xe5,0x81,0xaa,0x43,0xc1,0xd6,0xba,0x7d,0x7a,0x1e,0x9,0xbb,0x7f,
0xad,0xea,0x9f,0xbd,0x12,0x49,0x18,0xfc,0x82,0x0,0x65,0x75,0xf9,0x22,0x5a,0x1,
0xb4,0x87,0x82,0x8b,0x61,0x48,0xbc,0xdb,0xfb,0xc4,0x6f,0x7d,0x45,0xfe,0xe4,0xc6,
0x7f,0xaf,0xf6,0x5e,0xc3,0xca,0x9f,0x63,0xd7,0xe,0xe5,0x6b,0x0,0x76,0xbb,0x3e,
0xa4,0x8a,0xc1,0x2f,0x12,0xfa,0xfc,0xb0,0x92,0xa7,0x7,0xbd,0x25,0xb1,0x1c,0x84,
0x3d,0xb9,0x1c,0xdc,0xa6,0xd,0xfd,0x9a,0xd,0x1f,0xd1,0xf5,0xfe,0x5c,0xe1,0x4f,
0x95,0x65,0xd3,0xe,0xf9,0x26,0xfd,0xcb,0xc2,0x80,0x48,0x44,0x44,0xd4,0xfa,0xaa,
0xfd,0xde,0x77,0xaf,0x1,0x18,0x6d,0xe,0xb1,0x2b,0x81,0x71,0x79,0xc8,0xd8,0xd5,
0x43,0xad,0x1f,0x68,0x4,0x3f,0xed,0xb2,0x3d,0xbc,0x6b,0xee,0xf6,0x61,0xaf,0xfd,
0xa7,0x57,0x0,0x9f,0xf4,0xee,0xe9,0x9e,0x94,0x2f,0x2f,0xbd,0x59,0xe9,0xbd,0xe5,
0xf5,0xe0,0x67,0x85,0x3e,0x0,0xf8,0x30,0x80,0x47,0x5d,0x1f,0x56,0xa4,0xec,0x69,
0xbf,0xd1,0xc8,0x70,0xaf,0x28,0x57,0xfb,0x4a,0x95,0xbe,0x25,0x11,0x4,0xbe,0xf0,
0xa4,0xaa,0x7e,0x72,0x39,0xc,0x7e,0x95,0xd6,0xfa,0x53,0xc9,0xda,0xc,0x7f,0xee,
0xe1,0x5e,0x67,0x77,0x4d,0x95,0x2f,0x9b,0x88,0x88,0x88,0xda,0x47,0xd5,0xc0,0x97,
0x20,0x1f,0xb8,0x82,0xa0,0x3e,0xb9,0x2c,0x5a,0x1,0xf4,0xcd,0x11,0x51,0x55,0x5,
0x84,0xb5,0xc4,0x8b,0x6b,0xc8,0xd7,0xae,0x2,0x4a,0xe8,0x41,0x2f,0x3a,0x14,0x2c,
0xb0,0x6,0x3e,0x9e,0xf5,0x3e,0xd6,0xfd,0x7b,0xf2,0x5f,0x97,0x62,0x37,0x81,0xcb,
0xab,0xb,0x8e,0xe0,0x7,0x0,0xcf,0x2,0xe8,0xae,0x54,0xf6,0xd4,0x13,0xae,0x9e,
0x7a,0xf5,0xb9,0x7d,0xaa,0x9a,0xb7,0xac,0x55,0xf9,0x96,0xc4,0x32,0x96,0xc4,0x92,
0x16,0xfe,0x8a,0x58,0x12,0x4b,0xe1,0xe3,0xc2,0x2a,0xa1,0x56,0xfd,0x2b,0xef,0xec,
0x61,0x56,0xfc,0x8c,0x75,0x73,0x50,0xde,0xc3,0x57,0x5d,0xd6,0x8f,0x37,0xe9,0x97,
0x4b,0x44,0x44,0x44,0xed,0x2b,0xc9,0x88,0x5f,0xdc,0x23,0xaa,0x7,0x41,0xc7,0x1c,
0x40,0x35,0x4,0x6c,0x57,0xfe,0x9c,0x5d,0xbe,0xd6,0x6d,0x6a,0xed,0x3f,0x57,0xf0,
0x8b,0x5e,0x1f,0x80,0xc0,0xe7,0x0,0xfc,0x20,0xee,0x7d,0xe5,0xb5,0x65,0x5c,0x0,
0x40,0x5f,0xd3,0xef,0xd3,0x52,0xca,0x8f,0xd9,0x99,0x50,0x7f,0xc3,0x76,0xf0,0x8b,
0x76,0xf5,0x9a,0x43,0xbd,0x45,0x69,0x6,0xbf,0x25,0xb1,0x84,0x25,0x7f,0x39,0x1c,
0xf2,0xd5,0xab,0x7f,0x7a,0xf3,0x87,0x3d,0xd7,0xcf,0xae,0x2c,0x9a,0xeb,0xfa,0xc9,
0x48,0xa,0xaf,0x16,0xfc,0x18,0xf8,0x88,0x88,0x88,0xda,0x53,0xad,0x73,0x0,0xd3,
0xbc,0x56,0xf5,0x61,0x60,0x6b,0x17,0x10,0xb5,0xc4,0x8b,0xdd,0xec,0x61,0x37,0x7e,
0xf8,0x31,0xd7,0x5d,0x43,0xbf,0x61,0x3,0x88,0x4,0x4,0xfe,0x9b,0xf7,0x7,0x5d,
0x2f,0xc9,0x9f,0x2e,0xcf,0xb9,0x8e,0x37,0x6f,0xdf,0x20,0xa5,0x84,0xe7,0x79,0x37,
0x3,0xf8,0x96,0xfe,0x86,0xf4,0x37,0x5e,0x7e,0x63,0xe6,0x5a,0x7e,0x76,0xf0,0x2b,
0x1a,0x4d,0x1d,0x2a,0xf0,0x99,0xc1,0x2f,0xbc,0x2c,0x96,0xca,0xc3,0xbe,0xa5,0xe7,
0x44,0x86,0x7d,0x85,0x5e,0xfd,0xd3,0xcb,0xaa,0x80,0x6b,0xd8,0x57,0x1d,0xbf,0x19,
0x5,0xcd,0x2f,0x2a,0xc9,0x97,0x4a,0x44,0x44,0x44,0x14,0xc7,0x95,0x31,0xec,0x7d,
0x7c,0x7d,0x6b,0xfe,0x1f,0xf4,0x6,0x8f,0x4a,0x15,0x40,0xbd,0xea,0x27,0x60,0xcd,
0xf3,0x73,0x4,0xbf,0xe0,0xbe,0xf,0x40,0xe0,0x49,0x0,0x7f,0xe6,0x3a,0xde,0xbc,
0xb5,0x7b,0x87,0x7a,0x13,0x9f,0x3,0xb0,0x41,0xaf,0x8,0x46,0xe7,0xfa,0x45,0xe7,
0xf8,0xd9,0xc1,0x4f,0xef,0xea,0xb5,0x83,0xdf,0xd,0x7f,0x9,0x37,0xc4,0x8d,0xf0,
0x76,0x55,0xf9,0x53,0x43,0xbf,0x6a,0xa8,0xd8,0xe,0x94,0x6a,0xbc,0x3c,0x5c,0x47,
0x7,0xe6,0x7c,0x3f,0x7d,0xd8,0xd7,0xe,0x7d,0x95,0x96,0x76,0x61,0xf5,0x8f,0x88,
0x88,0xa8,0xb3,0xb9,0x32,0x51,0x78,0x9f,0x7b,0x7a,0x9c,0x21,0xbe,0x21,0x4,0xc6,
0xfa,0x7f,0xe5,0x2d,0xdd,0x10,0xed,0xf2,0x75,0xe,0xf9,0x22,0x66,0xcf,0x5f,0x98,
0x41,0x50,0x5f,0xfe,0x45,0xe0,0xd3,0xde,0xce,0xfc,0x37,0xe5,0xd9,0xe2,0x3b,0xf6,
0x71,0x46,0x2a,0x7f,0x0,0xba,0xa5,0x94,0x5f,0xd1,0xdf,0xa3,0xfd,0x66,0x84,0xa,
0x5a,0x55,0x82,0x5f,0xd0,0xd4,0xb1,0x64,0xcc,0xe9,0x5b,0x12,0x4b,0xb8,0xee,0xdf,
0xc0,0xd,0x3f,0x8,0x7e,0x37,0x54,0xd5,0x2f,0x9c,0x3,0xe8,0x1a,0xf2,0x75,0xf,
0xfb,0xda,0xe5,0x54,0xd7,0x87,0x6d,0x1c,0x7f,0x4c,0x10,0x24,0x22,0x22,0x22,0x2,
0xdc,0x1,0xd0,0xe,0x7e,0x49,0x82,0x20,0x60,0x8e,0x96,0xea,0x3b,0x92,0x45,0x86,
0x79,0xed,0xe1,0x5e,0xe3,0xba,0x56,0xf5,0xd3,0x3b,0x7f,0x7d,0x19,0x1f,0xfc,0x8a,
0xa5,0xe6,0xf,0x89,0xaf,0x0,0xf8,0xb,0xfb,0xb8,0x8c,0xf0,0x27,0x21,0xe1,0xc1,
0xfb,0x73,0x0,0x1f,0xb2,0x17,0x46,0x86,0x3a,0x16,0x47,0xe8,0xaa,0x16,0xfc,0xf4,
0x8a,0x9f,0xa,0x7e,0xd7,0xc5,0x75,0xdc,0xf0,0x97,0xb4,0x61,0xdf,0x65,0x63,0x88,
0x58,0xdf,0xe3,0xd7,0xb9,0xc4,0x8b,0x50,0xd,0x1f,0x2a,0x90,0x46,0xc3,0x1f,0xe0,
0x1e,0xb6,0x76,0x7d,0x39,0x44,0x44,0x44,0xd4,0x59,0x9c,0x21,0x4e,0x56,0xe,0x77,
0x7a,0x38,0x4c,0x5a,0xd,0x34,0x9a,0x64,0xc3,0xdd,0x3c,0xa4,0x23,0xf0,0x39,0x2a,
0x80,0x2a,0x8,0x1a,0xf3,0xfd,0xec,0x86,0xf,0x20,0x32,0x7,0x30,0x18,0x8,0x7d,
0xd0,0xbb,0x2d,0xff,0xd,0x79,0xa9,0x38,0xab,0x1f,0x53,0x5e,0x1d,0x18,0x0,0x48,
0x29,0xd7,0x8,0xf,0x8f,0xea,0x2d,0x20,0x61,0xd3,0x84,0x75,0xf0,0xae,0xaa,0x9f,
0x1e,0xfc,0xc2,0xce,0xde,0xd2,0x1c,0xbe,0x1b,0xe2,0x46,0x30,0xd4,0xab,0x5,0xbf,
0xe0,0xb6,0x1b,0x41,0xf0,0xd3,0x9a,0x3e,0xd4,0x3c,0xbf,0xa2,0x28,0x1a,0x6b,0x5,
0x1a,0x6d,0xd2,0x70,0x2f,0xe8,0x1c,0x1e,0x6b,0x4c,0xf8,0xab,0x5,0xc3,0x21,0x11,
0x11,0x51,0x6b,0x49,0x33,0x4c,0x9b,0xe8,0xf5,0x54,0xe8,0x93,0xd1,0xd7,0x8f,0xfb,
0x59,0x91,0x29,0x73,0xfa,0x3e,0xbe,0x76,0xb5,0xcf,0xb8,0xdd,0x11,0x2,0xed,0xc0,
0xe7,0xdc,0xfd,0xc3,0x8,0x7e,0x80,0x44,0x37,0x80,0xaf,0x0,0xf8,0xa2,0x7e,0x5c,
0xf9,0x52,0x83,0x87,0xaa,0xfa,0xfd,0xa1,0x94,0x72,0x13,0x3c,0x2d,0xf4,0x49,0xeb,
0xc0,0x61,0x2e,0xb3,0xe2,0xa,0x7e,0x61,0x0,0xc,0xbb,0x7b,0xcd,0xe6,0xe,0x15,
0xfc,0xae,0xfb,0xd7,0x8d,0x25,0x5f,0xf4,0xdd,0x3e,0x5c,0xfb,0xf9,0x46,0xf6,0xf0,
0x2d,0x1d,0x53,0x78,0x7c,0xda,0xf5,0xb8,0x2f,0x80,0x88,0x88,0x88,0xda,0x5f,0xbd,
0xbf,0xf7,0xed,0x40,0x57,0x69,0x24,0x31,0x6e,0xae,0x60,0xa4,0xd7,0x40,0xf,0x7d,
0xf6,0xe1,0x39,0x3,0x61,0xc2,0xe5,0x5f,0x8a,0x30,0x83,0x9f,0xf9,0xda,0x7f,0xee,
0xdd,0x96,0x7f,0x4c,0x5e,0x2a,0xfe,0x5a,0xdd,0x90,0xb3,0xba,0x62,0x1f,0xc,0x2f,
0x4b,0xe9,0xac,0xf4,0xe9,0xb,0x2d,0x47,0xbb,0x7b,0x8b,0x91,0x75,0xfc,0xf4,0xd3,
0xd,0x71,0x23,0x9c,0xe3,0xa7,0x2a,0x7e,0x4b,0xc6,0x9c,0xbf,0xf2,0xf6,0x6e,0xe1,
0xfa,0x7e,0xa2,0xc2,0x9c,0x3f,0x6d,0xbd,0x1c,0x7d,0xce,0x9f,0xfe,0x41,0xbb,0x3a,
0x7d,0x89,0x88,0x88,0x88,0x2a,0x49,0x93,0x21,0x8c,0xdc,0xa4,0x9d,0xf4,0xd7,0xa,
0xc3,0x9d,0xfe,0x72,0x12,0x80,0x5d,0xd,0x54,0xb7,0x1b,0x73,0xff,0xb4,0x10,0xa8,
0x57,0xfe,0x8a,0xda,0x65,0xbd,0x7a,0x68,0xba,0x9,0xc0,0x27,0xf5,0x1b,0x72,0xda,
0x1b,0xfc,0x80,0x94,0xf2,0x1e,0x73,0x15,0x6a,0xf7,0x8e,0x1d,0xf6,0xb6,0x6d,0x7a,
0x67,0xaf,0x1e,0xde,0xd4,0xb2,0x2d,0xe5,0x66,0x8f,0x65,0x63,0x8e,0x9f,0x1e,0xfc,
0xec,0x65,0x5e,0xca,0xb,0x3c,0x6b,0xeb,0xe2,0xa8,0xaa,0x63,0xc2,0xd0,0x47,0x44,
0x44,0x44,0x54,0x2f,0x69,0xfd,0x49,0xfb,0xbc,0xe8,0x53,0x62,0x5e,0xc3,0xae,0xa,
0x46,0xaa,0x7e,0xda,0xc9,0x6e,0xfe,0x10,0xd1,0x97,0xd3,0x3c,0xa8,0x5f,0x9,0xc2,
0x5f,0x10,0xa6,0x3e,0x2d,0x21,0xbb,0xf5,0x37,0x67,0x84,0x3e,0x44,0xf7,0xd6,0xad,
0x36,0xdc,0x1b,0xcc,0xe3,0x2b,0x35,0x7e,0xc8,0xe5,0xc8,0x92,0x2f,0xe5,0xad,0xde,
0x7c,0x23,0xf4,0xd9,0x4b,0xba,0xa8,0x2e,0x99,0xb0,0xc9,0x84,0xa1,0x8f,0x88,0x88,
0x88,0x56,0x49,0xb5,0x20,0x68,0xdc,0xa7,0x57,0xf3,0x92,0xff,0x0,0x7d,0xde,0x9e,
0xbb,0x21,0xc4,0xee,0x0,0xb6,0xab,0x8a,0xa6,0xbd,0xde,0x6d,0xf9,0x4d,0xea,0x4a,
0x4e,0xeb,0xda,0xfd,0x53,0x57,0xd5,0xcf,0x18,0xf6,0x8d,0x34,0x79,0x98,0x81,0x50,
0x85,0xbd,0x72,0xd5,0xaf,0x54,0xf9,0x2b,0xdd,0x1e,0x59,0xcb,0xaf,0x14,0x14,0xf5,
0xaa,0xa1,0x6b,0x98,0x57,0xaf,0xf6,0xb9,0xe6,0xf5,0x31,0xf4,0x11,0x11,0x11,0xd1,
0x6a,0xb0,0xab,0x82,0x46,0x1e,0x89,0x8d,0x26,0x5e,0xf9,0x4c,0x6f,0x24,0xb1,0x83,
0x62,0x6c,0x15,0xd0,0xb1,0x6,0x60,0xe5,0x18,0xb4,0x6,0xc0,0xa7,0xd5,0x95,0x9c,
0x1a,0xf2,0x5,0x70,0xa7,0xab,0xea,0xa7,0xef,0xa9,0xeb,0xdc,0xb6,0x4d,0x98,0x43,
0xb4,0x6a,0xb,0x37,0x7d,0x1f,0x5f,0x3d,0xf4,0x2d,0x85,0x5d,0xc0,0x5a,0x50,0x54,
0x15,0xbf,0xd2,0xe,0x1e,0x42,0x9a,0x4b,0xc9,0x18,0x1f,0x6e,0x82,0xa5,0x5b,0x88,
0x88,0x88,0x88,0x5a,0x4a,0xb8,0xcc,0x8a,0x34,0xcf,0xed,0x5d,0x40,0x5c,0x6b,0x2,
0x26,0xf3,0x31,0x75,0x21,0x57,0xa,0x58,0x77,0xb,0x29,0xd6,0x24,0xaf,0xfa,0x45,
0xc3,0xa0,0x3e,0xef,0x2f,0xdc,0xda,0x4d,0x9a,0xcb,0xbd,0xe8,0xfb,0xfb,0x16,0xa5,
0xb9,0x83,0x47,0xf9,0xf5,0xad,0x85,0x9b,0x63,0x86,0x79,0x59,0xed,0x23,0x22,0x22,
0xa2,0xcc,0xaa,0x16,0x51,0xbc,0x98,0xcb,0xfa,0xf3,0xa5,0x75,0x39,0xae,0xf3,0x37,
0x59,0x1c,0xba,0xd3,0xbb,0x2d,0x7f,0x13,0x0,0xe4,0x4a,0xc3,0xa9,0xfb,0xaa,0x55,
0xfd,0x9c,0xc1,0x4f,0x58,0x9d,0xbe,0xb2,0x3c,0xdc,0x5b,0xee,0xfc,0x2d,0xf,0xe9,
0xea,0x43,0xc2,0x7a,0x50,0x2c,0x7,0xc0,0x68,0xf0,0x63,0xb5,0x8f,0x88,0x88,0x88,
0xda,0x8a,0xa7,0x9d,0x7b,0x70,0x87,0x3f,0xc0,0xac,0xf6,0x49,0xc7,0x52,0x31,0xe9,
0xe2,0xd0,0x4d,0x0,0x7e,0x1f,0x28,0x57,0xfe,0x76,0x57,0xab,0xfa,0xf9,0xb1,0x15,
0xbf,0x60,0x1f,0x5e,0x3b,0x0,0xda,0x4d,0x20,0xfa,0xe3,0xed,0xd7,0x9,0xaa,0x7a,
0xd1,0xdd,0x43,0x18,0xfc,0x88,0x88,0x88,0xa8,0xad,0xe8,0x61,0x2f,0xee,0xb2,0xce,
0xae,0xfe,0xa9,0x10,0x98,0x6e,0xc8,0x57,0xf9,0x18,0x0,0xe4,0x25,0x64,0x8f,0x7,
0x6f,0x4b,0xb8,0xde,0x5f,0xe9,0x5c,0xcd,0xb5,0xb,0x86,0x63,0xa3,0xdb,0xb8,0xd9,
0x7b,0xee,0x86,0xe1,0x4e,0x44,0x1f,0xa3,0x3a,0x7a,0x8d,0xc6,0xe,0x63,0x1,0x67,
0x73,0xe1,0x68,0x6,0x3f,0x22,0x22,0x22,0x6a,0x2b,0x1e,0x82,0xb0,0xa6,0x9f,0x3b,
0x1f,0xa7,0x1e,0xa0,0xb1,0xe7,0xfb,0xd9,0xeb,0x3,0x26,0x77,0x27,0x0,0xe4,0x85,
0x14,0x3,0xfa,0x2a,0xd6,0x7a,0x8,0xc,0x82,0x18,0x8c,0xe0,0x17,0x1f,0x2,0xcd,
0x61,0x60,0x35,0xef,0xaf,0x52,0x58,0x54,0x15,0xc5,0x20,0x5e,0x5a,0xcd,0x1d,0xc,
0x7e,0x44,0x44,0x44,0xd4,0xaa,0x1c,0x19,0xce,0xb8,0xcd,0xf3,0x0,0x4f,0x6,0xb7,
0xe5,0x62,0x5e,0x23,0x52,0xf5,0x2b,0x5d,0x57,0x73,0xfe,0xd2,0xfb,0x5d,0x20,0xa8,
0xfc,0x6d,0x37,0x7f,0x8e,0xd4,0x76,0xf6,0x8,0xce,0xf5,0x2d,0xd6,0xcc,0x0,0x68,
0x7,0x41,0x11,0x13,0x6,0xa3,0xc3,0xbc,0xfa,0xba,0x7d,0xea,0xe7,0x5,0xef,0xc7,
0xbd,0x7e,0x1f,0x11,0x11,0x11,0x51,0x5b,0xa9,0x65,0xd8,0xb7,0xb6,0xd0,0xa7,0xf4,
0x78,0xb7,0xe5,0x37,0xe5,0x85,0x14,0x5b,0x54,0xe5,0xaf,0x5c,0xf5,0x43,0x74,0xde,
0x1f,0x84,0x11,0x0,0x7d,0x29,0x8c,0xc6,0x10,0xbb,0xea,0x17,0x1f,0x4,0xcb,0xd7,
0x55,0x83,0x87,0xa,0x7c,0xae,0x90,0xc7,0xe0,0x47,0x44,0x44,0x44,0x2d,0xc9,0xae,
0xfe,0xe9,0x43,0xbe,0x71,0xc3,0xbe,0x3a,0xbb,0xe2,0xe7,0x5a,0xff,0x2f,0xbd,0xf,
0xe7,0x25,0xb0,0x9,0x5a,0xe8,0xd3,0x17,0x53,0x8e,0x4,0x3f,0xb8,0x42,0xa0,0xea,
0x8,0x2e,0xdf,0x6f,0xde,0xae,0x55,0xfc,0x54,0x15,0x51,0xfb,0xa3,0x57,0xfe,0xec,
0xe1,0x5e,0x6,0x3f,0x22,0x22,0x22,0x6a,0x2b,0xae,0x4e,0x5f,0x57,0x18,0xb4,0x23,
0x90,0x1e,0xfc,0xe2,0x1e,0x93,0xcc,0xe6,0xbc,0x94,0x72,0x53,0x39,0x50,0x96,0x9b,
0x3d,0xc2,0xf0,0x7,0x11,0x99,0xe7,0xa7,0x37,0x80,0x8,0x29,0xc2,0xc5,0x99,0x23,
0x21,0x4f,0xdb,0xa2,0x2d,0x5c,0x32,0x46,0x75,0x13,0x4b,0x18,0xd5,0x3e,0x6,0x3f,
0x22,0x22,0x22,0x6a,0x3b,0xae,0xb9,0x7f,0xf6,0xfd,0x7a,0x20,0x74,0x89,0xcc,0xf9,
0x73,0xed,0x17,0x9c,0xd8,0xa6,0xbc,0x84,0xfc,0x60,0xf9,0xb5,0xf5,0xf9,0x7e,0x66,
0xf0,0x2b,0x2f,0xfb,0xa2,0x55,0xef,0x64,0xb9,0x7e,0x57,0xe,0x75,0xd2,0xa8,0xc,
0x1a,0xfb,0x3,0x5b,0xa1,0xd2,0xa8,0xfa,0x31,0xf8,0x11,0x11,0x11,0x51,0xbb,0x33,
0x9a,0x3e,0xac,0xdb,0xab,0x91,0x32,0x3a,0x4,0x9c,0xde,0x7,0xf2,0x42,0x8a,0xf,
0x84,0xaf,0xa9,0xd,0xbd,0xea,0xa1,0x4d,0xf,0x74,0x91,0xc6,0xf,0xe1,0x3b,0x6f,
0xb7,0x43,0x9f,0xa,0x7e,0x6a,0x31,0x67,0x29,0xcd,0x65,0x5d,0x88,0x88,0x88,0x88,
0xda,0x92,0x6b,0xee,0x5f,0xdc,0x90,0x6f,0xa5,0xea,0x9f,0x3a,0xaf,0x2f,0x36,0x7d,
0x30,0x2f,0x21,0x6f,0x2a,0xbf,0xae,0xb5,0xc3,0x86,0xaa,0x2,0x6a,0x33,0xf4,0xf4,
0x65,0x59,0xec,0xcb,0x91,0x2a,0xa0,0x31,0x6f,0xb0,0xfc,0x9a,0xea,0x67,0xa9,0x73,
0x56,0xfd,0x88,0x88,0x88,0xa8,0xa3,0x78,0xa5,0xff,0xf1,0xa4,0xb9,0xec,0x8b,0x8b,
0x5d,0xed,0xab,0x2f,0x2a,0xdd,0x9c,0xf,0x43,0x98,0xd5,0xe8,0xa1,0xaa,0x7f,0xc6,
0xdc,0x3d,0xad,0xba,0x17,0x56,0x8,0xb5,0x2a,0xa1,0x94,0x66,0xf3,0x86,0xaf,0xed,
0xcd,0x6b,0xf,0x27,0xbb,0x2a,0x7e,0xc,0x7e,0x44,0x44,0x44,0xd4,0x96,0xec,0xe1,
0xde,0xa4,0x91,0x47,0x5a,0x97,0xeb,0x8f,0x4a,0x6b,0xf2,0x6a,0x61,0xe5,0xe0,0x35,
0xcd,0xe0,0xa7,0x57,0xff,0x8c,0x3f,0xd2,0xec,0x4,0xe,0xaf,0x5b,0xdd,0xc0,0xae,
0xd7,0x3,0x60,0x86,0x44,0xc9,0xc0,0x47,0x44,0x44,0x44,0x1d,0xc8,0x55,0xe9,0x4b,
0x5a,0xfd,0xab,0xdd,0xcd,0xf9,0xe0,0x75,0xcc,0x30,0x66,0x54,0xea,0x60,0x56,0xfd,
0x8c,0xe1,0x5e,0xfd,0xf1,0xea,0x35,0xac,0x65,0x5b,0xec,0xcb,0xac,0xfa,0x11,0x11,
0x11,0x51,0x47,0x8a,0x9b,0xfb,0x7,0x54,0xe9,0xf4,0x75,0x6c,0xf7,0x56,0x87,0xb0,
0xf2,0xe7,0xa,0x80,0xd5,0x2a,0x7f,0xc6,0xe3,0xb5,0x79,0x7d,0x91,0xca,0x9f,0x1e,
0x0,0xa5,0x36,0xdf,0x8f,0x55,0x3f,0x22,0x22,0x22,0xea,0x44,0xae,0x9d,0x3d,0x2a,
0x75,0xfc,0x36,0xae,0xf2,0x7,0xe7,0x9c,0x3f,0xb3,0x52,0x17,0xed,0xf4,0xb5,0xe7,
0xf0,0xb9,0x5e,0x23,0x38,0xbe,0x68,0x5,0x50,0x7f,0x5c,0xf9,0xfd,0x30,0x4,0x12,
0x11,0x11,0x51,0x7,0x49,0xbb,0xcc,0xb,0xd0,0xa8,0x39,0x7f,0xc1,0x56,0xc2,0x91,
0x66,0xf,0x2d,0xb4,0x5,0x3f,0xcb,0xfc,0xa3,0x6e,0x73,0xae,0xdb,0x17,0xbe,0x8e,
0x84,0xb3,0xaa,0xc8,0xaa,0x1f,0x11,0x11,0x11,0x75,0xaa,0xa4,0x41,0xcf,0xc5,0x6e,
0xfe,0xa8,0x51,0xec,0xb0,0xaf,0x5e,0xf5,0xb,0xe7,0xf2,0x69,0xeb,0xf3,0x9,0x7b,
0xc9,0x16,0xfd,0xb9,0x52,0x5a,0xb7,0x9b,0x4b,0xbb,0x98,0xef,0x83,0x21,0x90,0x88,
0x88,0x88,0x3a,0x50,0xb5,0x20,0x18,0xb7,0xb6,0x5f,0xbd,0x73,0xfe,0x5c,0x43,0xb1,
0x6a,0x58,0x37,0x78,0x7d,0xf7,0x9c,0xbf,0xf0,0xbe,0x48,0xd0,0x8b,0xe,0xfb,0x1a,
0x8f,0xb5,0x86,0x7c,0x89,0x88,0x88,0x88,0x3a,0x92,0x6b,0x4f,0xdf,0x15,0xe0,0x1c,
0xf6,0x5,0x54,0x73,0x49,0xe5,0x61,0x5f,0xd7,0x65,0xc5,0xae,0x24,0xaa,0xdb,0x5c,
0xe7,0x44,0x44,0x44,0x44,0x1d,0x23,0x6e,0x89,0x97,0x15,0xa,0x82,0x39,0xe7,0xd2,
0x2c,0xf6,0x6d,0xd2,0x11,0xec,0x22,0x8f,0xb7,0x42,0xa2,0x5e,0x11,0xe4,0x3c,0x3f,
0x22,0x22,0x22,0xa2,0xfa,0x35,0xa2,0xe1,0xc3,0xae,0xe0,0xa9,0xd7,0x75,0x76,0xff,
0x4a,0x2d,0xe8,0xb9,0xe6,0xfc,0x69,0xa7,0xf0,0x18,0x63,0xaa,0x7f,0x44,0x44,0x44,
0x44,0x84,0x74,0xdd,0xbe,0xfa,0x79,0x8d,0x72,0xe1,0xeb,0xc9,0x68,0xc5,0x2e,0x78,
0x7d,0xc7,0xd0,0x6f,0xdc,0x9c,0xbf,0xa,0xc3,0xc0,0xc6,0xb1,0x73,0xde,0x1f,0x11,
0x11,0x11,0x51,0x59,0xb5,0x35,0xfe,0xc2,0xe0,0x57,0x7f,0x7e,0xca,0xb9,0xaa,0x7e,
0xea,0xba,0x73,0xce,0x9f,0x74,0x7,0x43,0xfb,0xb6,0x4a,0x8f,0x21,0x22,0x22,0x22,
0xa2,0x2a,0xec,0xe8,0xd4,0xa0,0x28,0x15,0x36,0x7c,0x44,0x7f,0x5e,0x34,0xec,0xd9,
0xf7,0x57,0xba,0x5e,0xe9,0x75,0x89,0x88,0x88,0x88,0x28,0x81,0x26,0xc4,0xa6,0xf2,
0xb0,0xaf,0xa3,0x3b,0x37,0xfe,0x38,0xa2,0x6b,0xfb,0x55,0x7b,0xac,0x7d,0x99,0x88,
0x88,0x88,0x88,0xb0,0xe2,0xcb,0xbd,0xe4,0x5c,0xf3,0xef,0x22,0xf3,0xfc,0x12,0x54,
0xf0,0xec,0x79,0x7e,0x46,0x23,0x9,0xe7,0xf8,0x11,0x11,0x11,0x11,0x65,0x42,0x4e,
0xbf,0x62,0x2c,0x1e,0x6d,0x2f,0xef,0x92,0x70,0x81,0xe6,0x6a,0xcd,0x1e,0x44,0x44,
0x44,0x44,0xb4,0x7a,0x72,0xae,0xea,0x5e,0x5c,0x5,0xcf,0xb8,0x8d,0x4b,0xb7,0x10,
0x11,0x11,0x11,0xd5,0x27,0xed,0x32,0x2f,0xd,0x60,0x55,0xfe,0xaa,0x37,0x78,0xc4,
0xfd,0x6c,0xd7,0x62,0xd0,0x44,0x44,0x44,0x44,0x94,0x2d,0xb9,0xb8,0x3b,0x9c,0xdd,
0xbb,0x29,0x62,0x27,0x83,0x20,0x11,0x11,0x11,0x51,0x3,0x34,0x38,0x52,0xe5,0x92,
0x4,0xba,0xc8,0xb0,0x6f,0xc2,0x21,0xdf,0x24,0xcb,0xc1,0x10,0x11,0x11,0x11,0xd1,
0xca,0xd1,0x96,0x7a,0x89,0x4a,0x5a,0xbd,0x33,0xe6,0x8,0x4a,0x59,0x71,0xf1,0x69,
0x56,0x4,0x89,0x88,0x88,0x88,0x56,0x4f,0x64,0xd8,0x37,0x6d,0x75,0x2e,0x49,0x98,
0x63,0xc5,0x8f,0x88,0x88,0x88,0x28,0x1b,0x62,0xe7,0xfc,0x11,0x11,0x11,0x11,0x51,
0xfb,0x49,0x1c,0xfe,0x58,0xbd,0x23,0x22,0x22,0x22,0x6a,0x7d,0xa9,0x2b,0x7f,0x9c,
0xb3,0x47,0x44,0x44,0x44,0xb4,0xa,0x1a,0x14,0xc1,0x72,0x0,0x3,0x1d,0x11,0x11,
0x11,0x51,0xa7,0xe0,0x9c,0x3f,0x22,0x22,0x22,0xa2,0xe,0xc2,0xf0,0x47,0x44,0x44,
0x44,0xd4,0x41,0x18,0xfe,0x88,0x88,0x88,0x88,0x3a,0x48,0xaa,0xed,0xdd,0x88,0x88,
0x88,0x88,0xa8,0xb5,0xb1,0xf2,0x47,0x44,0x44,0x44,0xd4,0x41,0x18,0xfe,0x88,0x88,
0x88,0x88,0x3a,0x8,0xc3,0x1f,0x11,0x11,0x11,0x51,0x7,0x61,0xf8,0x23,0x22,0x22,
0x22,0xea,0x20,0xf9,0xd5,0x3e,0x0,0x22,0x22,0xa2,0x24,0x86,0x36,0xde,0x8b,0x81,
0xde,0x1d,0xce,0xfb,0x26,0xe6,0x4f,0x3,0x0,0xa6,0xa,0xe7,0x51,0x58,0x5a,0x58,
0xc9,0xc3,0x22,0x6a,0x39,0xc,0x7f,0x44,0x44,0xd4,0x12,0x46,0x77,0x3e,0x8d,0x5b,
0xd6,0x6e,0x72,0xde,0x77,0x8,0x8f,0x85,0x97,0x17,0x96,0xaf,0x62,0x62,0xfe,0x34,
0xc6,0xdf,0x3b,0x8e,0xf1,0xb9,0x13,0xc,0x83,0x44,0x16,0xe,0xfb,0x12,0x11,0x51,
0x4b,0xe8,0xed,0xee,0x4d,0xf4,0xb8,0x9e,0xae,0x75,0xb8,0x7f,0xc3,0x3d,0x78,0x7e,
0xd7,0x11,0x8c,0xdc,0xfa,0x70,0x93,0x8f,0x8a,0xa8,0xf5,0x30,0xfc,0x11,0x11,0x75,
0x88,0xe1,0xcd,0x7,0x50,0xf8,0xe3,0x39,0x4c,0xdd,0xfd,0x6,0xfa,0x63,0x2a,0x68,
0x59,0xa6,0x86,0x76,0x89,0xa8,0x3e,0x1c,0xf6,0xa5,0xcc,0xe9,0xed,0xee,0x31,0xfe,
0xb5,0x3e,0xb3,0x78,0x19,0x33,0x8b,0xb3,0x91,0xc7,0xc5,0xdd,0x9e,0x35,0x83,0x7d,
0x7b,0x22,0xb7,0xd,0xac,0xdf,0x81,0xde,0xae,0x9e,0xf0,0xfa,0x54,0xe1,0x3c,0xc6,
0xdf,0x3b,0xb1,0x92,0x87,0x45,0x1d,0xa4,0xb7,0xbb,0x7,0x63,0xbb,0x9e,0xc3,0xfd,
0x1b,0xee,0x1,0x0,0xdc,0xde,0xbb,0x1d,0x53,0x77,0xbf,0x89,0xc1,0x93,0xfb,0x31,
0x75,0xe5,0xfc,0x2a,0x1f,0x5d,0x72,0x53,0x57,0xce,0x87,0xef,0x21,0xa9,0xf1,0x39,
0xfe,0x77,0x45,0x64,0x63,0xf8,0xa3,0xcc,0xd1,0x7f,0x49,0xd5,0xea,0x5c,0xe1,0x42,
0xc5,0x79,0x3e,0xb5,0x4c,0xa,0xef,0xed,0xee,0x89,0x9d,0x6c,0xe,0x4,0x81,0xae,
0xa7,0x6b,0x5d,0xaa,0xd7,0xd4,0x79,0x2f,0xfc,0xbb,0x9a,0x9f,0x4b,0x14,0x67,0xb0,
0x6f,0xf,0xc6,0x76,0x1d,0x89,0xcc,0x95,0xeb,0xe9,0x5a,0x87,0xb3,0x77,0xfd,0x14,
0x9f,0x3d,0x73,0x10,0x63,0xd3,0xc7,0x56,0xe9,0xe8,0x9a,0xeb,0xd4,0xfc,0x64,0x5d,
0xe1,0x76,0xb0,0x6f,0xf,0x6,0xfb,0xf6,0x60,0xaa,0x70,0x1e,0x13,0xf3,0xa7,0x39,
0x77,0x90,0xda,0x6,0xc3,0x1f,0x65,0x8e,0x5e,0x11,0xab,0xd5,0xed,0xbd,0xdb,0x2b,
0xde,0xbf,0xb7,0x6f,0x77,0xdd,0x3f,0x83,0x28,0xeb,0xe,0x6f,0x7b,0x1c,0x87,0xb6,
0x3d,0x56,0xf1,0x31,0xcf,0xef,0x3a,0x2,0x0,0x6d,0x19,0x0,0x47,0xdf,0x7d,0xa6,
0xe6,0xe7,0xe,0xac,0xdf,0x81,0xd7,0xf7,0xbd,0x62,0xdc,0x76,0x74,0xfa,0x18,0xc6,
0xa6,0x8f,0x71,0xf8,0x99,0x5a,0x1e,0xe7,0xfc,0x11,0x11,0xb5,0x99,0xfe,0xb5,0x9b,
0x30,0x75,0xf7,0x1b,0x55,0x83,0x9f,0xf2,0xfc,0xae,0x23,0x18,0xde,0x7c,0xa0,0xa1,
0xc7,0xd0,0xdb,0xdd,0x83,0x81,0xf5,0xf1,0x95,0xf2,0x95,0x50,0xcf,0x54,0xa,0xd7,
0x3f,0x42,0x1f,0xda,0x7c,0x0,0xaf,0xef,0x7b,0x5,0x13,0xfb,0x5e,0x6d,0xf8,0xe7,
0x45,0xb4,0x92,0x18,0xfe,0x88,0x88,0xda,0xcc,0xd4,0xdd,0x6f,0x56,0xad,0x7e,0xdb,
0x1a,0x15,0x0,0xfb,0xd7,0x6e,0xc2,0xd8,0xae,0x23,0x98,0xb9,0xef,0x6d,0x9c,0xbd,
0xeb,0xa7,0x18,0xd9,0xd2,0x7e,0xdd,0xb6,0x7b,0xfb,0x76,0xe3,0xf9,0x5d,0x47,0x30,
0x75,0xf7,0x1b,0xce,0x39,0xbd,0x44,0x59,0xc7,0xf0,0x47,0x44,0x44,0x0,0xea,0xb,
0x80,0x2a,0xf4,0x4d,0xdf,0x77,0x9,0xf,0x6d,0x3e,0x10,0xce,0x7f,0x3d,0xbc,0xed,
0xf1,0x96,0xec,0x2c,0x4e,0x12,0xea,0x6e,0xef,0xdd,0x1e,0x56,0x2,0x7b,0xbb,0xeb,
0x9f,0xae,0x42,0xb4,0x52,0x18,0xfe,0x88,0x88,0xda,0x4c,0xff,0xf1,0xad,0x38,0x35,
0x3f,0x59,0xd3,0x73,0x47,0xef,0xf8,0x56,0xaa,0xe1,0xda,0x81,0xf5,0x3b,0x8c,0xd0,
0x67,0xeb,0xe9,0x5a,0x87,0xb1,0x5d,0xcf,0xd5,0x74,0x2c,0xab,0x69,0x68,0xe3,0xbd,
0x89,0x1f,0xbb,0xb7,0x6f,0x37,0x26,0xf6,0xbd,0xda,0xc4,0xa3,0x21,0x6a,0x2c,0x86,
0x3f,0x22,0xa2,0x36,0x53,0x58,0x5a,0xc0,0xe0,0xc9,0xfd,0x38,0x5a,0x43,0x13,0x47,
0x4f,0xd7,0xba,0x44,0x95,0xac,0x81,0xf5,0x3b,0x30,0xb1,0xef,0x55,0x9c,0xbd,0xeb,
0xa7,0xce,0xd0,0xa7,0xdb,0xdb,0xb7,0xbb,0xa5,0x86,0x7f,0xfb,0xd7,0x6e,0x4a,0x3d,
0x6c,0xde,0x4a,0x4b,0xe6,0x10,0x31,0xfc,0x11,0x11,0xb5,0xa9,0xe1,0x33,0x7,0xeb,
0xa,0x80,0x71,0xfa,0xd7,0x6e,0xc2,0xd9,0xbb,0x7e,0x9a,0xaa,0x6b,0xbe,0x95,0x86,
0x7f,0x87,0x36,0xde,0x97,0xea,0xf1,0xa7,0xe6,0x27,0x31,0x7c,0xe6,0x60,0x93,0x8e,
0x86,0xa8,0xf1,0xb8,0xd4,0xb,0x51,0x87,0x52,0xb,0x4d,0xab,0xb9,0x4d,0xfa,0xf2,
0x15,0xfa,0x9a,0x86,0x85,0xe5,0x5,0x8c,0xbe,0x53,0xfb,0x92,0x19,0xb4,0xba,0x54,
0x28,0xa9,0x56,0x9d,0xb3,0xdd,0xde,0xbb,0x1d,0x87,0xb7,0x3d,0x8e,0xc3,0x17,0x9f,
0x88,0xdc,0x57,0x58,0x5e,0xc0,0xe5,0xc5,0xd9,0xd8,0x7d,0x76,0x5d,0xd4,0xf0,0xef,
0xe0,0xc9,0xfd,0xa9,0x8e,0x63,0x35,0x8c,0xdc,0xfa,0x85,0xc4,0x8f,0x7d,0x71,0xee,
0x65,0xc,0x9d,0x7e,0xa0,0x89,0x47,0x43,0xd4,0x78,0xc,0x7f,0x44,0x19,0x21,0x1f,
0xf8,0x37,0x0,0x8,0xe7,0x6a,0x15,0x96,0x17,0x9c,0x43,0x49,0xd5,0x16,0xa8,0x8e,
0x5b,0x8c,0x5a,0x85,0xbc,0xfe,0xb5,0x9b,0x9c,0xbf,0xb4,0xf,0x21,0x7e,0x59,0x90,
0xde,0xae,0x1e,0x67,0x8,0xa0,0xd6,0x30,0x7c,0xe6,0x20,0xfa,0xd7,0xde,0x92,0x7a,
0x7d,0xcb,0x43,0xdb,0x1e,0xc3,0xf8,0xdc,0x89,0xc8,0xdf,0xc3,0xc2,0xd2,0x2,0x86,
0xcf,0x1c,0x8c,0xac,0x83,0x57,0xcd,0xde,0xbe,0xdd,0x18,0xda,0x78,0x6f,0xa6,0x77,
0xb3,0x19,0xda,0x78,0x6f,0xaa,0x50,0x3b,0xf2,0xd6,0x57,0x9b,0x78,0x34,0x44,0xcd,
0xc1,0xf0,0x47,0x99,0x33,0x55,0x38,0x1f,0xfb,0x4b,0x4a,0xdf,0xb9,0x23,0x2e,0xc4,
0xc4,0xf9,0xe8,0xc9,0x8f,0xd7,0x7d,0x6c,0xc3,0x9b,0xf,0x24,0xae,0xa0,0x2c,0x2c,
0x5f,0x35,0x7e,0x69,0x26,0xfd,0xc5,0xab,0x3f,0xae,0xde,0x9d,0x4e,0x1a,0xe5,0xd0,
0xb6,0xc7,0x30,0x36,0xfd,0xa3,0x96,0xd8,0x4e,0x8f,0xdc,0x86,0x26,0x1f,0xc0,0xd4,
0x5d,0x6f,0xa4,0xfa,0x6f,0x6,0x8,0x86,0x6b,0x5d,0x95,0xad,0x89,0xf9,0xd3,0xf8,
0xde,0xbb,0xcf,0xe2,0x4b,0x29,0xaa,0x64,0x40,0xb0,0x83,0x4f,0xff,0xfc,0xd6,0xcc,
0xee,0x96,0xa1,0x6f,0x2d,0x59,0xcd,0xa9,0xf9,0x49,0xfe,0x37,0x41,0x2d,0x89,0xe1,
0x8f,0x32,0x67,0xe4,0xad,0x47,0x30,0xf2,0xd6,0x23,0x55,0x1f,0x97,0x64,0xf7,0x2,
0x5d,0x23,0x56,0xe5,0x4f,0xb3,0xa6,0xd7,0xd4,0x95,0xf3,0x15,0x87,0xb8,0x54,0xa5,
0xaf,0x55,0xb4,0xca,0x90,0x1d,0xb9,0x15,0x96,0x16,0x30,0x34,0xf9,0x29,0x4c,0xec,
0x7b,0x35,0xd5,0x36,0x84,0x33,0x8b,0x97,0x63,0xef,0x3b,0x7c,0xf1,0x9,0xc,0x6d,
0x48,0x57,0x29,0x53,0xc3,0xbf,0x59,0x1c,0x2a,0x1d,0xec,0xdb,0x93,0x6e,0x1e,0x23,
0xab,0xe1,0xd4,0xa2,0xd8,0xf0,0x41,0x44,0x89,0xec,0xed,0xdb,0xcd,0x5,0x6d,0x5b,
0xdc,0xd4,0x95,0xf3,0xa9,0x86,0x29,0x8f,0x4e,0x1f,0xab,0xf8,0xf,0xb1,0xc2,0xd2,
0x2,0x46,0xce,0x56,0xff,0x87,0x9a,0xed,0xfe,0xd,0xf7,0x64,0xf2,0xef,0xd2,0x58,
0x69,0xab,0xbb,0x24,0x2e,0x2f,0xce,0x72,0x9b,0x37,0x6a,0x59,0xc,0x7f,0x44,0x94,
0xd8,0xe1,0x6d,0x8f,0xaf,0xf6,0x21,0x50,0x9d,0xc6,0xa6,0x8f,0xe1,0x7b,0xef,0x3e,
0x5b,0xf1,0x31,0xb,0xcb,0x57,0xf1,0x89,0xc9,0x4f,0x25,0xea,0x60,0x1d,0x7f,0xef,
0x44,0x4d,0x6b,0xa,0x8e,0xed,0x3a,0x92,0xa9,0x85,0x91,0x47,0xb6,0x3c,0x9c,0xaa,
0x82,0xc9,0xaa,0x1f,0xb5,0x32,0x86,0x3f,0x6a,0x59,0x69,0xfe,0xd5,0x7d,0x99,0xf3,
0x72,0x1a,0x62,0x6f,0xdf,0xee,0x96,0x59,0xae,0x83,0xe2,0x8d,0xbc,0xf5,0x48,0x6c,
0x60,0xfb,0xde,0xbb,0xcf,0xa2,0xff,0xf8,0xd6,0x54,0x4d,0x19,0xb5,0x54,0xff,0x6e,
0x59,0xbb,0x29,0xd5,0xfc,0xba,0x66,0xea,0xed,0xee,0x49,0xf5,0xf,0x9b,0xcb,0x8b,
0xb3,0x18,0xab,0x61,0x9,0x1d,0xa2,0xac,0x60,0xf8,0xa3,0x8e,0xc0,0x49,0xd9,0x8d,
0xd3,0xbf,0xf6,0x96,0xd5,0x3e,0x4,0x6a,0x80,0xa1,0xc9,0x7,0x8c,0x7f,0x14,0x9d,
0x2b,0x5c,0xc0,0xce,0x7f,0xf9,0x3,0x8c,0xbc,0xf5,0x48,0xea,0x66,0x8c,0xa9,0x2b,
0xe7,0x6b,0x5a,0x4f,0xf0,0xd0,0xb6,0xc7,0x52,0xed,0x26,0xd2,0x2c,0x87,0xb7,0x3d,
0x9e,0x6a,0x1e,0x24,0xab,0x7e,0xd4,0xea,0x18,0xfe,0x88,0x88,0x3a,0x90,0x6a,0x0,
0x1,0x82,0x6a,0xdf,0xc0,0x6b,0x1f,0xa9,0x6b,0x97,0x8a,0xc3,0x17,0x9f,0xc0,0xc2,
0xf2,0xd5,0xd4,0xcf,0x1b,0xdd,0xf9,0x74,0xcd,0x3f,0xb3,0x11,0x6,0xfb,0xf6,0xa4,
0xea,0x58,0x66,0xd5,0x8f,0xda,0x1,0xc3,0x1f,0x11,0x51,0x87,0x9a,0xba,0x72,0x1e,
0x9b,0x8f,0xdf,0x96,0xa8,0xbb,0xbe,0x9a,0x99,0xc5,0xd9,0x9a,0x16,0x3,0xdf,0xdb,
0xb7,0x1b,0xc3,0x29,0x17,0xa0,0x6e,0x94,0xde,0xee,0x9e,0x54,0x4d,0x1e,0x0,0xab,
0x7e,0xd4,0x1e,0x18,0xfe,0x88,0x9a,0x84,0x9d,0x80,0xd4,0xa,0x1a,0x39,0x25,0x62,
0xf4,0xdd,0x67,0x6a,0xab,0xfe,0xdd,0xf1,0xad,0x55,0x69,0xfe,0x18,0xdb,0xf5,0x5c,
0xaa,0x26,0x8f,0x53,0xf3,0x93,0xac,0xfa,0x51,0x5b,0xe0,0x3a,0x7f,0x44,0xab,0xe4,
0xd4,0xfc,0x64,0xea,0x1d,0x17,0x94,0xa3,0xd3,0xc7,0xaa,0xfe,0xd2,0xee,0x5f,0xbb,
0xc9,0x98,0x9f,0x37,0xb0,0x7e,0x47,0xaa,0x79,0x4d,0x44,0x69,0x15,0x96,0x82,0xad,
0x0,0xd3,0xac,0xbf,0x9,0x4,0x6b,0xff,0x8d,0xdc,0xfa,0xf0,0x8a,0x56,0xd5,0x46,
0xef,0x78,0x3a,0xf5,0x22,0xea,0xac,0xfa,0x51,0xbb,0x60,0xf8,0x23,0x4a,0xa1,0xb0,
0xdc,0xb8,0x5d,0x9,0x6,0x4f,0xee,0xc7,0xc8,0x96,0x87,0xd1,0xdb,0xd5,0x83,0xa9,
0xc2,0x79,0xcc,0x2c,0xce,0xe2,0xec,0x5d,0x3f,0x4d,0xf4,0xdc,0xb1,0xe9,0x63,0x75,
0x55,0x16,0x7,0xfb,0xf6,0x84,0xdb,0xc0,0xf5,0xaf,0xdd,0x84,0xa1,0x8d,0xf7,0x31,
0x18,0x52,0x43,0x8c,0xbe,0xfb,0xc,0x46,0xb6,0x3c,0x9c,0xfa,0xef,0xd3,0x4a,0xee,
0x22,0x33,0xbc,0xf9,0x40,0xea,0x9d,0x49,0x8e,0xd6,0xf9,0xdf,0x1c,0x51,0x96,0x30,
0xfc,0x51,0xcb,0x9a,0x2a,0x24,0x9f,0x9c,0xde,0xa8,0xff,0xd3,0xae,0x67,0x42,0xbc,
0x4b,0x2d,0x73,0xa4,0x1a,0x41,0x7d,0x1e,0x6a,0x39,0x8f,0x89,0x1a,0xf6,0x7d,0x25,
0x72,0xa9,0xb5,0xfa,0x7,0x4,0x5d,0xb7,0x49,0xd6,0x16,0xac,0xc7,0xf0,0xe6,0x3,
0x78,0x3e,0xe5,0x3c,0xbf,0x85,0xe5,0xab,0x35,0x2d,0x67,0x43,0x94,0x55,0xc,0x7f,
0xd4,0xb2,0xd2,0x2c,0x47,0x71,0x68,0xdb,0x63,0x35,0xfd,0x32,0xa2,0x28,0x56,0x3f,
0xa8,0x9a,0x5a,0xab,0x7f,0xf,0x6d,0x3e,0x80,0xc3,0x17,0x9f,0x68,0x5a,0xf5,0x6f,
0x60,0xfd,0xe,0x8c,0xde,0xf1,0xad,0xd4,0xcf,0x1b,0x79,0xeb,0xab,0x99,0xdd,0x8b,
0x98,0xa8,0x16,0x6c,0xf8,0x20,0x22,0xa2,0x86,0x52,0xd5,0xbf,0x5a,0x8c,0x6c,0x69,
0xce,0xc2,0xcf,0x3,0xeb,0x77,0xa4,0xde,0xd7,0x18,0x60,0x93,0x7,0xb5,0x27,0x86,
0x3f,0x22,0x4a,0x3c,0xe4,0x5b,0x4b,0x27,0x27,0x75,0xa6,0x5a,0x3b,0x7f,0x7,0x7a,
0x9b,0xb3,0xe8,0xf3,0xe8,0xce,0xa7,0x53,0x7,0xbf,0x85,0xe5,0xab,0x18,0x3e,0xf3,
0xf9,0xa6,0x1c,0xf,0xd1,0x6a,0x62,0xf8,0x23,0xca,0x90,0xac,0x6f,0x43,0xd7,0xe8,
0x39,0x8f,0xd4,0x18,0x23,0x5b,0x1e,0x86,0x7c,0xe0,0xdf,0x50,0xf8,0xe3,0x39,0xc,
0xf6,0xed,0x59,0xed,0xc3,0x1,0x10,0x54,0xff,0xc6,0xdf,0x3b,0x9e,0xea,0x39,0x47,
0xa7,0x8f,0x35,0x2d,0x6c,0xd,0x9e,0xdc,0x8f,0xaf,0x5f,0x7c,0x32,0x55,0x20,0x6d,
0xe6,0x10,0x34,0xd1,0x6a,0x62,0xf8,0x23,0xca,0x90,0xa4,0xbf,0x68,0x1a,0xb9,0x25,
0x56,0x9a,0xbd,0x7a,0x1b,0xd9,0xed,0x4c,0xf5,0xeb,0xed,0xee,0xc1,0xc4,0xbe,0x57,
0xf1,0xdd,0x9d,0x4f,0x1,0x8,0x96,0x4c,0x79,0x7d,0xdf,0x2b,0xab,0xb6,0x68,0xb2,
0x2d,0xc9,0xae,0x1f,0x97,0x17,0x67,0xf1,0xf5,0x8b,0x4f,0x62,0xfd,0x3f,0x6f,0xc4,
0xf0,0x99,0x83,0x4d,0xd,0x5b,0x87,0x2f,0x3e,0x81,0xfe,0xe3,0x5b,0xf1,0xe2,0xdc,
0xcb,0x55,0x1f,0xfb,0xe2,0xdc,0xcb,0xab,0xd6,0x90,0x45,0xd4,0x6c,0xc,0x7f,0x44,
0x2d,0xa8,0xb7,0xab,0x71,0xb,0xe2,0xa6,0xd9,0xab,0x97,0x95,0xbf,0xec,0x18,0xec,
0xdb,0x83,0x99,0xfb,0xde,0x76,0xe,0xd9,0x3f,0xbf,0xeb,0x48,0xea,0x9d,0x2b,0x9a,
0x61,0x66,0x71,0x36,0x76,0x6d,0xbc,0x53,0xf3,0x93,0xf8,0xec,0x99,0x83,0xe8,0x3f,
0x7e,0x1b,0xe,0x5f,0x7c,0x62,0xc5,0x1a,0x2a,0xa,0x4b,0xb,0x18,0x3a,0xfd,0x0,
0x3e,0x31,0xf9,0xa9,0xd8,0x60,0x7a,0xae,0x70,0x81,0xc3,0xbd,0xd4,0xd6,0x18,0xfe,
0xa8,0xa5,0x65,0x7d,0x98,0xb4,0x15,0xa4,0xa9,0xfc,0xa5,0x59,0x5e,0x87,0x9a,0x67,
0xf4,0x8e,0xa7,0xf1,0xfa,0xbe,0x57,0x2a,0xce,0x61,0x7b,0x68,0xf3,0x81,0x4c,0x4,
0xc0,0xd1,0x77,0x9e,0xc1,0xb9,0xc2,0x85,0xf0,0xfa,0xd1,0xe9,0x63,0xd8,0x7c,0xfc,
0x36,0xc,0x9e,0xdc,0xbf,0xaa,0x8d,0x14,0xe3,0xef,0x9d,0x40,0xff,0xf1,0xad,0x38,
0x6a,0x1d,0xc3,0xb9,0xc2,0x5,0xc,0x9e,0xdc,0xcf,0xee,0x5e,0x6a,0x6b,0x5c,0xea,
0x85,0x5a,0xda,0xcc,0xe2,0x6c,0xaa,0xed,0x99,0xb2,0x6e,0xaa,0x70,0x3e,0x51,0xf3,
0x45,0x9a,0xc0,0x56,0xfd,0xb5,0x92,0x57,0xfe,0xf8,0xb,0x71,0x75,0xd,0xac,0xdf,
0x81,0xb1,0x5d,0x47,0x70,0x7b,0xef,0xf6,0x44,0x8f,0x7f,0xa8,0x34,0xfc,0xdb,0xec,
0xb5,0xf3,0xaa,0x19,0x3e,0x73,0x10,0x23,0xb7,0x7e,0x21,0x73,0x73,0xe8,0xa,0x4b,
0xb,0x18,0x3e,0x73,0x10,0x63,0xd3,0xc7,0x30,0xd8,0xb7,0x7,0x85,0xe5,0x5,0x8c,
0x4d,0xff,0x88,0x7f,0xcf,0xa9,0xed,0x31,0xfc,0x11,0x65,0x48,0xd2,0x5f,0x3a,0x69,
0x2,0x5b,0x35,0x69,0x1a,0x4,0xb8,0xc6,0xdf,0xea,0xaa,0x65,0xa9,0x92,0x2c,0x4,
0xc0,0xa9,0x2b,0xe7,0x57,0x3d,0x80,0x56,0x32,0x31,0x7f,0x9a,0x7f,0xb7,0xa9,0xa3,
0x30,0xfc,0x11,0x75,0xb8,0xa4,0x55,0x44,0xe,0xb1,0xaf,0xae,0xde,0xee,0xda,0xe7,
0x79,0x3e,0xb4,0xf9,0x0,0xa,0xcb,0xb,0x18,0x79,0x8b,0xbb,0x54,0x8d,0x56,0x46,
0xef,0x0,0x0,0x1f,0x4c,0x49,0x44,0x41,0x54,0xa4,0xa5,0xb6,0x41,0x1c,0x58,0x1f,
0x6c,0x85,0x38,0xd0,0xbb,0x3,0x63,0xd3,0x3f,0xe2,0xda,0x7f,0xd4,0xd2,0x18,0xfe,
0xa8,0x23,0x9c,0x2b,0x5c,0x68,0xd8,0x50,0x4e,0x33,0xb7,0x41,0x9b,0x98,0x3f,0x8d,
0x43,0xa8,0xbe,0x13,0x49,0xa3,0xba,0x7d,0x7b,0xbb,0x7b,0x12,0xf,0x9b,0x4f,0x69,
0xf3,0xb6,0x68,0xe5,0x15,0x96,0x16,0xd0,0x7f,0x7c,0x2b,0xc6,0x76,0x3d,0x87,0xfb,
0x37,0xdc,0x93,0xfa,0xf9,0x5f,0xba,0xf5,0xb,0x98,0xba,0x72,0xbe,0xa9,0xa1,0x65,
0x68,0xe3,0xbd,0x18,0xb9,0xf5,0x61,0x4c,0x15,0xce,0x87,0xff,0xbd,0x15,0x96,0x17,
0x8c,0x46,0xa1,0x99,0xc5,0xcb,0x99,0x1a,0xfa,0x55,0x5c,0x21,0x6f,0x60,0xfd,0xe,
0x67,0xa5,0x75,0x6f,0xdf,0x6e,0x86,0x3f,0x6a,0x69,0xc,0x7f,0xd4,0x11,0x46,0xde,
0x7a,0xa4,0x61,0xc3,0x3a,0xf2,0x81,0x7f,0x6b,0xc8,0xeb,0xd4,0x23,0xed,0xd0,0x5f,
0x9c,0x34,0xb,0xea,0xb2,0xd3,0x77,0xf5,0xa9,0x4e,0xd5,0xd1,0x3b,0x9e,0xc6,0x97,
0x6e,0xfd,0x42,0xea,0xe7,0x3f,0xbf,0xeb,0x8,0xa6,0xa,0x17,0x9a,0xf6,0x5d,0x8e,
0xed,0x7a,0xe,0x3d,0x5d,0xeb,0x32,0xb3,0x4f,0x74,0x16,0xfe,0x5b,0x25,0xca,0x22,
0x76,0xfb,0x12,0x65,0xc8,0xcc,0xe2,0xe5,0xc4,0x8f,0x6d,0x44,0xd3,0x7,0xe7,0xfb,
0xb5,0xa6,0x91,0xb7,0x1e,0xc1,0x67,0x6b,0x9c,0x43,0x37,0xb1,0xef,0xd5,0xba,0x86,
0x90,0x2b,0x69,0xd4,0x3f,0x4a,0x5a,0x41,0x56,0x16,0xd3,0x26,0xaa,0x5,0xc3,0x1f,
0x51,0x86,0xa4,0x19,0xe,0x6b,0x44,0xd3,0x47,0x9a,0xe1,0x63,0x2e,0xf3,0x92,0x2d,
0x63,0xd3,0xc7,0xf0,0xbd,0x77,0x9f,0x4d,0xfd,0xbc,0x9e,0xae,0x75,0x18,0xdf,0xfd,
0x42,0x13,0x8e,0x88,0x88,0x5a,0x5,0xc3,0x1f,0x51,0xc6,0x24,0x6d,0xac,0x68,0x44,
0xe5,0x6f,0x20,0xe1,0x92,0x21,0x97,0x17,0x67,0xb9,0xfc,0x45,0x6,0x8d,0xbc,0xf5,
0x48,0x64,0x9d,0xba,0x24,0xf6,0xf6,0xed,0xc6,0xc8,0x96,0x87,0x9b,0x70,0x44,0x44,
0xd4,0xa,0x18,0xfe,0x88,0x9a,0xa4,0xd6,0x4a,0x59,0xd2,0xea,0x5f,0xbd,0x95,0xbf,
0xfe,0xb5,0x9b,0xd8,0xec,0xd1,0x6,0x46,0xce,0x3e,0x62,0x2c,0xa2,0x9c,0xf8,0x79,
0x35,0xcc,0x19,0x24,0xa2,0xf6,0xc0,0xf0,0x47,0xd4,0x24,0xb5,0x56,0xca,0x92,0xce,
0xfb,0xab,0xb7,0xe3,0x97,0xf3,0xfd,0xda,0x83,0x6a,0x2,0xa9,0xb6,0x87,0x6e,0xe4,
0x79,0xdc,0xa7,0xb9,0x2e,0x9c,0x6,0x41,0xad,0x8c,0xe1,0x8f,0x28,0x63,0x92,0x57,
0xfe,0xea,0x1b,0xf6,0x4d,0x13,0xfe,0xd8,0xe9,0x9b,0x6d,0x33,0x8b,0xb3,0x18,0x3a,
0xfd,0x40,0xe2,0xc7,0x9f,0x9a,0x9f,0xc4,0xe0,0xc9,0xfd,0x4d,0x3c,0xa2,0xf6,0xc7,
0x69,0x10,0xd4,0xca,0x18,0xfe,0x88,0x32,0x26,0x69,0x45,0x21,0xe9,0x16,0x5f,0x71,
0x58,0xf9,0x6b,0x2f,0x13,0xf3,0xa7,0xf1,0xe5,0xb3,0x8f,0x56,0x7c,0xcc,0xc2,0xf2,
0x55,0x7c,0xf9,0xec,0xa3,0xdc,0xbb,0x96,0xa8,0xc3,0x31,0xfc,0x11,0x65,0x4c,0x9a,
0x8e,0xdf,0x5a,0x87,0x7e,0xd3,0xcc,0xf7,0x3b,0x35,0x3f,0x59,0xd3,0xcf,0xa0,0x95,
0x37,0xfa,0xce,0x33,0xb1,0xd,0x20,0x47,0xa7,0x8f,0x61,0xe0,0xb5,0x3b,0x31,0xfa,
0xce,0x33,0x2b,0x7c,0x54,0x44,0x94,0x35,0x5c,0xe4,0x99,0x28,0x63,0xd2,0xc,0xb1,
0xe,0xf4,0x6e,0xaf,0x69,0x48,0x76,0x68,0xe3,0x7d,0x89,0x1f,0xcb,0xaa,0x5f,0x6b,
0x19,0x39,0xfb,0x8,0x6,0xd6,0xef,0x8,0x2b,0xc3,0x97,0x17,0x67,0x31,0x7c,0xe6,
0x60,0x26,0xbf,0xc7,0xaf,0x5f,0x7c,0x72,0xb5,0xf,0x21,0xd4,0xbf,0x76,0x53,0xb8,
0xf,0x32,0x51,0xbb,0x63,0xf8,0x23,0xca,0xa0,0x73,0x85,0xb,0x89,0x86,0x75,0x7,
0xd6,0xef,0x0,0x6a,0x58,0xea,0x83,0x43,0xbe,0xed,0x4b,0x35,0x80,0x4c,0xdd,0xfd,
0x26,0xc6,0xa6,0x7f,0x84,0xc3,0x17,0x9f,0xc8,0xec,0x10,0xef,0xe1,0x8b,0x4f,0xac,
0xf6,0x21,0x84,0x6,0xfb,0xf6,0x30,0xfc,0x51,0xc7,0x60,0xf8,0xa3,0x96,0x96,0x74,
0xd8,0xb3,0x51,0x7b,0xe1,0xae,0x94,0x99,0xc5,0xd9,0x64,0xe1,0x2f,0xc5,0xf6,0x6c,
0x3a,0x86,0xbf,0xf6,0x36,0xb3,0x38,0x8b,0xfe,0xe3,0x5b,0x33,0x1b,0xfa,0x88,0x68,
0x75,0x31,0xfc,0x51,0x4b,0x4b,0xba,0x9d,0xd4,0x77,0x77,0x3e,0xd5,0xe4,0x23,0x69,
0xac,0xa9,0x2b,0xe7,0x71,0xff,0x86,0x7b,0xaa,0x3e,0xae,0x96,0x3d,0x54,0x87,0x36,
0xde,0x9b,0xf8,0x73,0xe3,0x7c,0xbf,0xd6,0xc5,0xe0,0x47,0x44,0x71,0xd8,0xf0,0x41,
0x94,0x41,0x69,0xd6,0x10,0x4b,0x5b,0xd5,0x4c,0x53,0xf5,0x1b,0x9f,0x3b,0x91,0xea,
0xb5,0x89,0x88,0x28,0xfb,0x18,0xfe,0x88,0x32,0x28,0x4d,0x13,0x47,0xda,0xd,0xe6,
0x87,0x36,0xdc,0x9b,0xf8,0xb1,0x1c,0xf2,0x25,0x22,0x6a,0x3f,0xc,0x7f,0x44,0x19,
0x34,0xb3,0x38,0x9b,0x78,0xc7,0x86,0x34,0xe1,0x6f,0x60,0xfd,0x8e,0xc4,0x4b,0xbc,
0x5c,0x5e,0x9c,0xe5,0xe2,0xce,0x44,0x44,0x6d,0x88,0xe1,0x8f,0x28,0xa3,0x92,0x6,
0xaf,0x34,0xe1,0x6f,0x38,0x45,0x37,0x23,0xab,0x7e,0x44,0x44,0xed,0x89,0xd,0x1f,
0xd4,0xb2,0x7a,0xbb,0x7b,0x56,0xfb,0x10,0x9a,0x6a,0x62,0xfe,0x74,0xa2,0x86,0x8e,
0x9e,0xae,0x75,0xe8,0x5f,0xbb,0x29,0xd1,0xe2,0xd0,0x69,0x86,0x7c,0x39,0xdf,0xaf,
0x33,0x8c,0xed,0x3a,0x82,0x99,0xc5,0x59,0x8c,0xcf,0x9d,0x58,0xf1,0x4a,0xef,0xe1,
0x6d,0x8f,0xaf,0xe8,0xcf,0xab,0xa4,0xde,0xed,0x12,0x89,0x5a,0x9,0xc3,0x1f,0xb5,
0xac,0x5a,0x97,0x39,0x69,0x15,0x69,0x9a,0x3e,0x86,0x36,0xde,0x57,0x75,0xe7,0x86,
0x34,0x43,0xbe,0xb,0xcb,0x57,0x31,0xfe,0x1e,0xc3,0x5f,0xbb,0xeb,0xed,0xee,0x9,
0xd7,0xb6,0x3b,0xb4,0xed,0x31,0x2c,0x2c,0x5f,0xc5,0xc8,0x5b,0x5f,0xc5,0x58,0xd,
0x6b,0x47,0xd6,0xe2,0xd0,0xb6,0xc7,0x56,0xe4,0xe7,0x10,0x91,0x89,0xc3,0xbe,0x44,
0x19,0xd5,0xe8,0xa6,0x8f,0x34,0x43,0xbe,0xe3,0xef,0x1d,0x4f,0xfc,0x58,0x6a,0x5d,
0xf6,0xdf,0x9b,0x9e,0xae,0x75,0x78,0x7e,0xd7,0x11,0x4c,0xec,0x7b,0x95,0x95,0xb0,
0xa,0xb8,0x4,0x12,0xb5,0x3a,0x86,0x3f,0xa2,0x8c,0x9a,0x59,0x9c,0xc5,0xe5,0x84,
0xfb,0xfc,0x26,0x9,0x7f,0xec,0xf2,0x25,0x5b,0xdc,0xdf,0x9b,0xbd,0x7d,0xbb,0x31,
0x7d,0xdf,0x25,0x8c,0xed,0x3a,0xd2,0xf6,0xd3,0x2b,0x88,0x3a,0x11,0xc3,0x1f,0x51,
0x86,0x25,0xd,0x61,0x3d,0x5d,0xeb,0x2a,0xae,0xf7,0x37,0xb4,0xf1,0xde,0x54,0x43,
0xbe,0x2b,0x35,0xec,0x47,0xab,0xab,0xda,0x3f,0x1a,0x1e,0xda,0x7c,0x0,0x33,0xf7,
0xbd,0x8d,0xb1,0x5d,0x47,0x58,0x9,0x24,0x6a,0x23,0x9c,0xf3,0x47,0x1d,0xe1,0xd4,
0xfc,0x64,0xc3,0xaa,0x59,0x2b,0x39,0x4f,0x69,0xaa,0x70,0x1,0xf,0x25,0x7c,0xec,
0xd0,0x86,0x7b,0x63,0x87,0x8a,0x87,0x37,0x7f,0x26,0xf1,0xcf,0xe4,0x90,0x6f,0x67,
0xe8,0xed,0xee,0x49,0xb4,0x85,0x60,0x4f,0xd7,0xba,0x20,0x4,0x2e,0xce,0x66,0x6a,
0x2f,0x5e,0x22,0xaa,0x1d,0xc3,0x1f,0x75,0x84,0x99,0xc5,0xcb,0xd,0xfb,0xc5,0xb5,
0x92,0xe1,0x2f,0x4d,0x60,0x1d,0xda,0x78,0xaf,0xf3,0x3d,0xf6,0x76,0xf7,0x24,0xda,
0x2a,0x4e,0x61,0x97,0x6f,0x67,0x48,0xbb,0x38,0x38,0x11,0xb5,0xf,0xe,0xfb,0x52,
0xcb,0x4a,0xf3,0xcb,0xab,0x7f,0xed,0x2d,0x4d,0x3c,0x92,0xe6,0x99,0xba,0x72,0x3e,
0xf1,0x62,0xcf,0xb7,0xf7,0x6e,0x77,0xce,0xcf,0x1a,0xb9,0xf5,0xe1,0xc4,0x3f,0xef,
0xf2,0xe2,0x2c,0xbb,0x7c,0x3b,0x44,0xda,0xf0,0xc7,0x79,0xa0,0x44,0xed,0x83,0xe1,
0x8f,0x28,0xe3,0x52,0x55,0xff,0x1c,0x4d,0x1d,0xa9,0xba,0x7c,0x59,0xf5,0xeb,0x18,
0x69,0xc3,0x5f,0x9a,0xa5,0x87,0x88,0x28,0xdb,0x18,0xfe,0x88,0x32,0x2e,0xcd,0x1c,
0xbc,0x91,0x2d,0x66,0x95,0x2f,0x4d,0xa3,0x7,0x80,0xaa,0x6b,0x5,0x52,0x7b,0x48,
0x3a,0xdf,0x4f,0x39,0x57,0xb8,0x80,0xc2,0xd2,0x42,0x13,0x8f,0x88,0x88,0x56,0x12,
0xe7,0xfc,0x11,0x65,0x5c,0x9a,0xca,0xdf,0xed,0xbd,0xdb,0x8d,0xdd,0x3e,0xd2,0xc,
0xf9,0x9e,0x9a,0x9f,0x4c,0xb4,0x4b,0x8,0xb5,0xbe,0x34,0xcb,0xfe,0x0,0xcd,0x1b,
0xf2,0xfd,0xe8,0xc9,0x8f,0x67,0x66,0x38,0x79,0xb0,0x6f,0xf,0x5e,0xdf,0xf7,0xca,
0x6a,0x1f,0x6,0xd1,0x8a,0x60,0xe5,0x8f,0x28,0xe3,0xd2,0xac,0xf7,0x7,0x94,0xab,
0x7f,0x3,0xeb,0x77,0x24,0xda,0x1e,0x4e,0x19,0x7d,0x97,0x55,0xbf,0x4e,0xc1,0xf9,
0x7e,0x44,0x9d,0x8d,0xe1,0x8f,0x3a,0x42,0xa5,0x35,0xf0,0x5a,0x41,0x9a,0xb9,0x78,
0xc3,0x9b,0x3f,0x83,0xde,0xee,0x1e,0x8c,0xdc,0xfa,0x85,0xc4,0xcf,0x61,0xa3,0x47,
0x67,0x19,0xda,0x78,0x5f,0xaa,0xc7,0xf3,0xef,0x6,0x51,0x7b,0x61,0xf8,0xa3,0x96,
0x95,0x66,0xe7,0x81,0x9e,0xae,0x75,0x4d,0x3c,0x92,0xe6,0x4b,0x53,0x79,0xe9,0xe9,
0x5a,0x87,0xc3,0xdb,0x1e,0xf,0xf7,0x6c,0x4d,0x82,0xeb,0xb7,0x75,0x8e,0x81,0xf5,
0x3b,0x52,0xfd,0xf7,0xf0,0xe2,0xdc,0xcb,0x4d,0x3c,0x1a,0x22,0x5a,0xd,0x9c,0xf3,
0x47,0x2d,0x6b,0xa0,0x77,0x65,0xab,0x79,0x3,0xeb,0x77,0xac,0xda,0xda,0x68,0x69,
0x2b,0x2f,0x5f,0x4a,0x59,0xf5,0xe3,0x8e,0x1e,0x9d,0x23,0xed,0x7c,0x3f,0x2e,0xfa,
0x4d,0xd4,0x7e,0x18,0xfe,0x88,0x62,0xf4,0xaf,0xdd,0x84,0xc1,0xbe,0x3d,0x18,0xda,
0x78,0x1f,0x6,0xfb,0xf6,0xac,0x7a,0xf5,0xf0,0xc5,0xb9,0x97,0x53,0x2d,0xd6,0x9c,
0x14,0xab,0x7e,0x9d,0x65,0x68,0x63,0x36,0x9a,0x3d,0x88,0x68,0xf5,0x30,0xfc,0x11,
0x95,0xc,0xf6,0xed,0x9,0xab,0x7b,0x59,0x8,0x7b,0xb6,0xf1,0xf7,0x8e,0x37,0x3c,
0xfc,0xb1,0xea,0xd7,0x59,0xfa,0xd7,0x6e,0x4a,0xbd,0xc4,0xb,0x3b,0xc0,0x89,0xda,
0xf,0xc3,0x1f,0x75,0x24,0x15,0xf4,0x6,0x7a,0xb7,0x63,0x60,0xfd,0x8e,0x54,0xbf,
0x10,0x57,0xcb,0xf8,0xdc,0x9,0x3c,0xdf,0xe0,0xd7,0x64,0xd5,0xaf,0xb3,0xa4,0x6d,
0xf4,0xe0,0x3f,0xc,0xdc,0xb8,0xe0,0x35,0xb5,0x3a,0x86,0x3f,0xea,0x18,0xe3,0x7b,
0x5e,0x48,0x5d,0xf9,0xc8,0x92,0xc2,0xd2,0x2,0x8e,0x4e,0x1f,0x4b,0xd5,0xc8,0x51,
0xc9,0xa9,0xf9,0x49,0xfe,0x72,0xef,0x30,0x59,0x9b,0xef,0x37,0x7a,0xc7,0xd3,0x99,
0x59,0x3c,0x3a,0x4d,0x3,0x59,0x56,0x8e,0x99,0xa8,0x56,0xc,0x7f,0xd4,0x31,0x9a,
0x31,0x5f,0x6e,0xa5,0x8d,0x35,0x30,0xfc,0xb1,0xea,0xd7,0x59,0x7a,0xbb,0x7b,0x52,
0xad,0xfb,0xb8,0x12,0x43,0xbe,0xad,0xfa,0xf,0x31,0xa2,0x56,0xc7,0xf0,0x47,0x99,
0xd5,0xdb,0xdd,0x83,0xa1,0xd,0xf7,0xa2,0x7f,0xed,0x2d,0x0,0x82,0x6e,0xdb,0xde,
0xae,0xf2,0xbf,0xce,0x5b,0x7d,0xed,0xbe,0x5a,0x4c,0xcc,0x9f,0xc6,0xe5,0xc5,0xd9,
0x54,0x5b,0xb6,0xb9,0x1c,0x9d,0x3e,0xc6,0x89,0xfc,0x1d,0x26,0x6d,0xd5,0x8f,0x55,
0x61,0xa2,0xf6,0xc5,0xf0,0x47,0x99,0xd4,0xdb,0xdd,0x83,0x99,0xfb,0xde,0xce,0x5c,
0xd3,0x45,0x16,0x8c,0xbe,0xfb,0x2c,0xbe,0xbb,0xf3,0xa9,0xba,0x5e,0x83,0x55,0xbf,
0xce,0x93,0x7e,0x61,0x67,0x2e,0xf1,0x42,0xd4,0xae,0xb8,0xc8,0x33,0x65,0x52,0xff,
0xda,0x5b,0x18,0xfc,0x62,0x8c,0x4d,0xff,0x8,0xb,0xcb,0x57,0x6b,0x7e,0xfe,0xd7,
0x2f,0x3e,0xc9,0xe,0xce,0xe,0xd3,0xbf,0x76,0x53,0xaa,0x69,0xf,0xec,0xf2,0x25,
0x6a,0x6f,0xc,0x7f,0x94,0x49,0x53,0x57,0xd8,0x4d,0x17,0xa7,0xb0,0xb4,0x80,0xd1,
0x77,0x6a,0xdb,0x87,0x77,0x61,0xf9,0x2a,0xf7,0xf0,0xed,0x40,0xec,0xf2,0x25,0x22,
0x1d,0xc3,0x1f,0x51,0xb,0x1a,0x7d,0xf7,0x99,0x9a,0xaa,0x7f,0x53,0x57,0xce,0xb3,
0x53,0xb1,0x3,0xd,0xa7,0x6c,0x12,0xe2,0x90,0x2f,0x51,0x7b,0x63,0xf8,0xa3,0xcc,
0x3a,0x35,0x3f,0xb9,0xda,0x87,0x90,0x59,0x85,0xa5,0x85,0x9a,0x7e,0x41,0xef,0xed,
0xdb,0x8d,0xc3,0xdb,0x1e,0x6f,0xc2,0x11,0x51,0x56,0xa5,0x5d,0xc7,0x92,0x43,0xbe,
0x44,0xed,0x8f,0xe1,0x8f,0xa8,0x5,0xd,0xac,0xdf,0x51,0xf3,0x92,0x2f,0x87,0xb6,
0x3d,0xb6,0x6a,0x7b,0x14,0xd3,0xca,0x4b,0x5b,0xf5,0xab,0x75,0x4a,0x1,0x11,0xb5,
0xe,0x76,0xfb,0x52,0x66,0x4d,0xcc,0x9f,0x4e,0xb5,0x2e,0x59,0xb3,0x5c,0x5e,0x9c,
0xc5,0xcc,0xe2,0x2c,0x66,0x16,0x2f,0x3,0x40,0xe2,0xd0,0x35,0xd8,0xb7,0xa7,0x29,
0xcb,0xa9,0xf4,0x76,0xf7,0x60,0x62,0xdf,0xab,0x75,0xbd,0xc6,0xf8,0x9e,0x17,0x30,
0xf0,0xda,0x9d,0xac,0xf0,0x74,0x80,0xe1,0xcd,0x9f,0x49,0xf5,0xf8,0xf1,0xb9,0x13,
0x4d,0x3a,0x92,0xa8,0x73,0x85,0xb,0x99,0x99,0x86,0xd0,0xdb,0xdd,0xc3,0x75,0x7,
0xa9,0x63,0x30,0xfc,0x11,0xa1,0x1c,0xf0,0xa6,0xa,0xe7,0x83,0xf3,0x2b,0xe7,0x51,
0x58,0x5e,0x88,0x34,0x9e,0xc,0xf6,0xed,0x69,0xd8,0x22,0xcb,0xb5,0x50,0xc1,0xaf,
0xde,0x4e,0xe8,0x9e,0xae,0x75,0x18,0xdf,0xf3,0x2,0x6,0x4f,0xee,0xcf,0xcc,0x2f,
0x5f,0x6a,0xbc,0xe1,0xcd,0x7,0x52,0xfd,0x5d,0x79,0x71,0xee,0xe5,0x15,0xfd,0xfb,
0x30,0xf2,0xd6,0x23,0x99,0x59,0x6f,0x72,0xb0,0x6f,0xf,0x5e,0xdf,0xf7,0xca,0x6a,
0x1f,0x6,0xd1,0x8a,0x60,0xf8,0xa3,0xcc,0x9a,0x98,0x3f,0x8d,0x43,0x78,0xac,0xa1,
0xaf,0xb9,0xb0,0x7c,0x15,0x53,0x57,0xce,0x63,0xaa,0x70,0x1e,0x53,0x57,0x82,0xa0,
0x97,0x95,0x5f,0x3e,0x49,0x8c,0xee,0x7c,0xba,0x61,0xd5,0x89,0xdb,0x7b,0xb7,0x63,
0x74,0xe7,0xd3,0x18,0x3e,0x73,0xb0,0x21,0xaf,0x47,0xd9,0x93,0xba,0xea,0xc7,0x46,
0xf,0xa2,0x8e,0xc0,0xf0,0x47,0x6d,0xeb,0x5c,0xe1,0x82,0x11,0xf0,0xa6,0xa,0xad,
0xdd,0xe9,0x3a,0x7a,0xc7,0xd3,0xd,0xaf,0x3a,0xaa,0xd7,0x63,0x0,0x6c,0x3f,0xfd,
0x6b,0x37,0xa5,0x9a,0x36,0xb1,0xb0,0x7c,0x95,0x4b,0xbc,0x10,0x75,0x8,0x86,0x3f,
0x6a,0x1b,0xa7,0xe6,0x27,0x31,0x31,0x7f,0xba,0x2d,0x82,0x9e,0x6d,0x78,0xf3,0x1,
0x7c,0xe9,0xd6,0x2f,0x34,0xe5,0xb5,0x1f,0xda,0x7c,0x0,0x33,0x8b,0xb3,0xdc,0xf5,
0xa3,0xcd,0xa4,0xed,0xea,0x66,0xd5,0x8f,0xa8,0x73,0x30,0xfc,0x51,0x66,0x55,0x1b,
0x8e,0x3d,0x57,0xb8,0x80,0x89,0xf9,0xd3,0x18,0x7f,0xef,0x44,0x4b,0xd,0xdd,0xa6,
0x35,0xbc,0xf9,0x0,0x9e,0xdf,0x75,0xa4,0xa9,0x3f,0xe3,0xd0,0xb6,0xc7,0x30,0xb3,
0x78,0x99,0x95,0x9f,0x36,0xd1,0xdb,0xdd,0x93,0x7a,0x61,0xe7,0xd1,0x77,0x9f,0x6d,
0xd2,0xd1,0x10,0x51,0xd6,0x30,0xfc,0x51,0xa6,0x2d,0x2c,0x5f,0xd,0x27,0xac,0x2f,
0x2c,0x5f,0x2d,0x85,0xbd,0xe3,0x98,0x98,0x3f,0xdd,0x11,0x9d,0xaa,0x2b,0x11,0xfc,
0x14,0xf5,0x73,0x18,0x0,0x5b,0xdf,0xc8,0xad,0xf,0xa7,0x6a,0xf4,0xb8,0x5c,0x6a,
0x72,0x22,0xa2,0xce,0xc0,0xf0,0x47,0x99,0x76,0xf8,0xe2,0x13,0xe8,0xed,0xea,0xc1,
0xf8,0xdc,0x89,0x8e,0xfb,0xe5,0x54,0x6b,0xf0,0xd3,0x3,0x73,0x5a,0xcf,0xef,0x3a,
0x82,0xde,0xee,0x5e,0xae,0xf5,0xd6,0xc2,0x7a,0xbb,0x7b,0x30,0xb2,0xe5,0xe1,0x54,
0xcf,0x61,0xd5,0x2f,0x58,0x3b,0x93,0xa8,0x53,0x30,0xfc,0x51,0xa6,0x75,0x6a,0x8,
0xa9,0x35,0xf8,0x9d,0x2b,0x5c,0xc0,0xf0,0x99,0x83,0x75,0x2d,0x7,0xf3,0xdd,0x9d,
0x4f,0x61,0xa0,0x77,0x3b,0x9b,0x40,0x5a,0x54,0xda,0xaa,0x1f,0xc0,0xf9,0x7e,0x0,
0xd0,0xdb,0xd5,0xb3,0xda,0x87,0x40,0xb4,0x62,0xb8,0xc3,0x7,0x51,0xc6,0xd4,0x53,
0xf1,0x1b,0x3a,0xfd,0x0,0xa6,0xae,0x9c,0xc7,0xf0,0x99,0xcf,0xd7,0x75,0xc,0xf,
0x6d,0x3e,0x80,0xb1,0x15,0x1a,0x6e,0xa6,0xc6,0xa9,0xa5,0xea,0xf7,0xe2,0xdc,0xcb,
0x1d,0x31,0x85,0x82,0x88,0xca,0x18,0xfe,0x88,0x32,0x64,0x6c,0xd7,0x91,0x9a,0xe7,
0xf8,0xd,0x9f,0xf9,0x7c,0xf8,0x4b,0x7c,0xfc,0xbd,0x13,0xf8,0xfa,0xc5,0x27,0xeb,
0x3a,0x96,0x87,0x36,0x1f,0xc0,0xd4,0xdd,0x6f,0xa0,0xb7,0x9b,0x15,0x91,0x56,0x51,
0x4b,0xd5,0x6f,0x6c,0xfa,0x47,0x4d,0x3a,0x9a,0xd6,0xd2,0xbf,0x76,0xd3,0x6a,0x1f,
0x2,0xd1,0x8a,0x61,0xf8,0x23,0xca,0x80,0xde,0xee,0x1e,0x8c,0xed,0x3a,0x52,0xf3,
0x3a,0x7e,0x5f,0x3e,0xfb,0x28,0xc6,0xdf,0x33,0xb7,0xe5,0x3a,0x7c,0xf1,0x9,0x1c,
0xad,0xb3,0x79,0xe3,0xf6,0xde,0xed,0x98,0xd8,0xf7,0x2a,0x7f,0x31,0xb6,0x80,0x5a,
0xaa,0x7e,0x97,0x17,0x67,0x23,0x7f,0x6f,0x3a,0x15,0xe7,0xfc,0x51,0x27,0x61,0xf8,
0x23,0x6a,0x92,0xa4,0x81,0x49,0x6d,0xd9,0x56,0x6b,0xf0,0x3b,0x3a,0x7d,0x2c,0x76,
0x6e,0xe4,0xc8,0xd9,0x47,0x70,0xae,0x70,0xa1,0xa6,0xd7,0x55,0x6e,0xef,0xdd,0x8e,
0xa9,0xbb,0xdf,0xc4,0x60,0xdf,0x9e,0xba,0x5e,0x87,0x9a,0x6b,0x74,0xe7,0xd3,0x35,
0x54,0xfd,0xd8,0xd9,0xd,0x4,0xc1,0x8f,0xfb,0xfa,0x52,0x27,0x61,0xc3,0x7,0x51,
0x93,0xf4,0xaf,0xbd,0xa5,0xea,0x63,0x6,0xd6,0xef,0xa8,0xab,0x39,0x43,0x35,0x78,
0xc4,0x29,0x2c,0x2d,0x60,0xf0,0xe4,0x7e,0x4c,0xdd,0xf5,0x6,0x6e,0xa9,0xa3,0x7a,
0xd7,0xd3,0xb5,0xe,0xaf,0xef,0x7b,0x5,0x5f,0x3e,0xfb,0x68,0xc7,0x36,0xe1,0x64,
0x59,0xad,0x7b,0x4e,0xb7,0xfb,0x90,0x6f,0x6f,0x77,0xf,0x46,0x6e,0x35,0xab,0xa1,
0xf6,0x2,0xf0,0x83,0x7d,0x7b,0x52,0x57,0x4c,0x89,0x5a,0x1d,0xc3,0x1f,0x51,0xa,
0x8d,0x1c,0xfe,0x1c,0xd9,0xf2,0x30,0xbe,0xbb,0xf3,0xa9,0x9a,0x9f,0x7f,0xae,0x70,
0x1,0x83,0x27,0xf7,0x57,0x7d,0x5c,0x61,0x69,0x1,0x43,0x93,0x9f,0xaa,0x2b,0x64,
0x2a,0xdf,0xdd,0xf9,0x14,0x86,0x36,0xdc,0x8b,0xa1,0xc9,0x7,0xda,0x6a,0x7,0x95,
0x56,0x36,0xb0,0x7e,0x7,0xc6,0xf7,0xbc,0x90,0xfa,0x79,0x9d,0xd0,0xe8,0xd1,0xbf,
0xf6,0x16,0x1c,0xda,0xd6,0xd8,0xfd,0xc1,0x89,0xda,0x1,0x87,0x7d,0x89,0x52,0x48,
0x52,0xcd,0xab,0xa6,0xb7,0xbb,0x7,0xe3,0x7b,0x5e,0xa8,0x2b,0xf8,0x5d,0x5e,0x9c,
0xc5,0xe0,0xc9,0xfd,0x89,0x3,0xd8,0xd4,0x95,0xf3,0x18,0x3c,0xb9,0x1f,0xb,0xcb,
0x57,0x6b,0xfe,0x99,0xca,0xde,0xbe,0xdd,0x98,0xb9,0xef,0x6d,0xc,0x6d,0xbc,0xb7,
0xee,0xd7,0xa2,0xfa,0xa8,0x29,0x3,0xb5,0x84,0xfa,0x46,0x57,0xfd,0xb2,0xd8,0x18,
0x34,0x75,0xe5,0x3c,0x4e,0xcd,0x4f,0x36,0xfe,0x75,0xb,0x9d,0xb5,0xe6,0x28,0xb5,
0x1f,0x86,0x3f,0xa2,0x15,0x34,0xd8,0xb7,0x7,0x53,0x77,0xbd,0x81,0xfb,0x37,0xdc,
0x53,0xf3,0x6b,0x2c,0x2c,0x5f,0xc5,0xd0,0xe4,0xa7,0x52,0x57,0xde,0x1a,0x19,0x0,
0x7b,0xba,0xd6,0xe1,0x27,0xbb,0xff,0x11,0x13,0xfb,0x5e,0xe5,0x5c,0xc0,0x55,0x54,
0x4b,0x77,0x2f,0xd0,0x9c,0x46,0x8f,0x81,0xde,0x6c,0x36,0x4c,0x34,0x63,0x68,0x9b,
0x55,0x6f,0x6a,0x75,0xc,0x7f,0x44,0x2b,0xe4,0xf0,0xb6,0xc7,0xf1,0xfa,0xbe,0x57,
0xea,0x9a,0x7b,0xb7,0xb0,0x7c,0x35,0x98,0xc3,0x57,0xe3,0x6e,0x27,0x8d,0xc,0x80,
0x40,0x50,0x5,0x7c,0x7d,0xdf,0x2b,0x9c,0x33,0xb5,0x4a,0x6a,0x9d,0x86,0xd0,0x49,
0x8d,0x1e,0x63,0xd3,0xc7,0x70,0xb9,0xc1,0xc3,0xdb,0xed,0xbc,0x97,0x38,0x75,0x6,
0x86,0x3f,0xa2,0x26,0x3b,0xbc,0xed,0x71,0xcc,0xdc,0x77,0xa9,0xee,0xb9,0x47,0xf5,
0x6,0x3f,0xa5,0xd1,0x1,0x10,0xe0,0xe,0x11,0xab,0xe5,0xf0,0xc5,0x27,0x6a,0xa,
0x36,0xa3,0xef,0x76,0x56,0xd3,0xce,0xe1,0x8b,0x4f,0x34,0xec,0xb5,0x9a,0x31,0x8c,
0x4c,0xb4,0xd2,0x18,0xfe,0x88,0x9a,0xe8,0xf0,0xb6,0xc7,0x71,0x68,0xdb,0x63,0x75,
0x55,0xfb,0x80,0xa0,0xb9,0x63,0xe0,0xb5,0x3b,0x1b,0xb6,0xbf,0x71,0x23,0x3,0x60,
0x27,0x34,0xe,0x64,0xd5,0xcc,0xe2,0x2c,0x6,0xfe,0xe5,0x23,0xf8,0x5e,0x8a,0xbd,
0x79,0x8f,0x4e,0x1f,0xeb,0xb8,0x61,0xcb,0x46,0x56,0xff,0xda,0xbd,0x43,0x9a,0x3a,
0x3,0xc3,0x1f,0x51,0xa,0x69,0x26,0xb5,0xf,0xac,0xdf,0xd1,0x90,0x89,0xe1,0xaa,
0xab,0xb7,0xd1,0x1,0x6b,0xea,0xca,0x79,0xf4,0x1f,0xdf,0x5a,0xd7,0x3a,0x80,0xe7,
0xa,0x17,0x1a,0x5a,0x55,0xa1,0xf4,0xa,0x4b,0xb,0x18,0x79,0xeb,0x11,0x7c,0xf4,
0xe4,0xc7,0x13,0x7d,0x97,0x53,0x75,0xae,0xfb,0xd8,0xaa,0x1a,0xf1,0xf7,0x74,0x61,
0xf9,0x2a,0xc6,0xe7,0xb8,0x28,0x36,0xb5,0x3e,0x86,0x3f,0xa2,0x14,0xd2,0x4c,0x6a,
0xef,0xe9,0x5a,0x87,0xf1,0xf7,0x4e,0xe0,0xa3,0x27,0x3f,0x5e,0x73,0xd5,0xe1,0xe8,
0xf4,0xb1,0x54,0x5d,0xbd,0x69,0xa9,0x75,0x0,0x6b,0x19,0xca,0x52,0xc7,0xd6,0xa8,
0x6a,0x24,0xd5,0x67,0x62,0xfe,0x34,0x6,0x5e,0xfb,0x8,0xbe,0x7c,0xf6,0xd1,0x8a,
0x15,0xdd,0x66,0x7d,0x5f,0x59,0xdf,0x21,0x63,0x7c,0xee,0x44,0xdd,0x95,0xee,0xc3,
0x17,0x9f,0xe8,0xb8,0xaa,0x29,0xb5,0x27,0x86,0x3f,0xa2,0x26,0x9b,0x98,0x3f,0x8d,
0x81,0x7f,0xf9,0x48,0xea,0xad,0xd6,0xbe,0x7e,0xf1,0x49,0xc,0x9f,0x39,0xd8,0xf4,
0x5f,0x36,0x2a,0x0,0x26,0x3d,0xbe,0x85,0xe5,0xab,0xf8,0xc4,0xe4,0xa7,0x56,0xe4,
0xd8,0x28,0xbd,0xd1,0x77,0x9e,0x41,0xff,0xf1,0xad,0x75,0x6f,0xed,0x97,0x56,0x6f,
0x57,0xf6,0x96,0x7a,0xd1,0x15,0x96,0x16,0xea,0x9a,0x9b,0xfa,0xe2,0xdc,0xcb,0x5c,
0xe0,0x9c,0xda,0x6,0xc3,0x1f,0x51,0xa,0xb5,0x76,0x57,0x16,0x96,0x16,0x30,0x7c,
0xe6,0x20,0x3e,0x31,0xf9,0xa9,0xaa,0xd5,0x7,0x15,0xae,0x56,0x7a,0x38,0x75,0xf8,
0xcc,0x41,0x7c,0xb6,0xc2,0x6e,0x21,0x40,0xf0,0xb,0xb0,0xff,0xf8,0x56,0xee,0x7,
0x9b,0x71,0xea,0xef,0xdb,0x47,0x4f,0x7e,0x3c,0x52,0xd5,0xed,0xe4,0x4e,0xd5,0x5a,
0xdf,0xfb,0x8b,0x73,0x2f,0x63,0xf8,0xcc,0xe7,0x1b,0x7c,0x34,0x44,0xab,0x87,0x3b,
0x7c,0x10,0xa5,0x90,0xb6,0x71,0x63,0x60,0xfd,0xe,0x63,0x98,0x6d,0xfc,0xbd,0x13,
0x18,0xb8,0x72,0x27,0xc6,0xf7,0xbc,0xe0,0xdc,0x4b,0xf4,0xd4,0xfc,0x24,0x86,0xcf,
0x7c,0x7e,0xd5,0x1a,0x28,0xc6,0xa6,0x8f,0x61,0xaa,0x70,0x1,0xe3,0xbb,0xff,0xd1,
0x78,0xaf,0x97,0x17,0x67,0x31,0x72,0xf6,0x11,0x86,0xbe,0x16,0x33,0x31,0x7f,0x1a,
0x83,0x27,0xf7,0x87,0x5b,0x98,0x35,0xb3,0x3a,0x37,0x3e,0x77,0x2,0xbd,0xdd,0x3d,
0x89,0xa6,0x46,0x14,0x96,0x17,0x30,0xfa,0xce,0x33,0x2b,0x1e,0x44,0xd3,0xfe,0xbc,
0xa3,0xd3,0xc7,0x30,0x36,0x7d,0xac,0xa3,0x3,0x33,0xb5,0x27,0xef,0xab,0x53,0x7f,
0x2d,0xa5,0x94,0x90,0x0,0x24,0x24,0x84,0x14,0x90,0x90,0xf0,0xa5,0xf,0x29,0x25,
0x4,0x4,0x7c,0xe9,0xc3,0x97,0x3e,0x84,0x14,0x28,0xa,0x3f,0xbc,0x5e,0x94,0x45,
0x2c,0x8b,0xe5,0xd2,0x79,0x70,0x79,0x49,0x2c,0x61,0xa9,0x74,0x7e,0x43,0xdc,0xc0,
0x92,0x58,0xc2,0x75,0xff,0x6,0x6e,0x88,0x1b,0xb8,0xee,0x5f,0xc7,0xd,0x7f,0x29,
0x78,0x6d,0xc8,0xd5,0x7e,0xef,0x44,0xa9,0xf4,0x76,0xf7,0xa4,0xda,0x23,0x77,0x61,
0xf9,0x2a,0x6,0x5e,0xbb,0xd3,0x19,0xe4,0xd4,0xce,0xc,0x2a,0x0,0x2e,0x2c,0x5f,
0xc5,0xe1,0x8b,0x4f,0x64,0x66,0x58,0x49,0xed,0x89,0x3a,0xd8,0xb7,0x7,0x13,0xf3,
0xa7,0x31,0xfa,0xee,0x33,0x1c,0xe2,0xa5,0xb6,0x30,0x7a,0xc7,0xd3,0x18,0xde,0xfc,
0x99,0xc8,0xe2,0xd8,0xe7,0xa,0x17,0x50,0x58,0x5a,0xc0,0xc4,0xfc,0x69,0x4c,0x15,
0xce,0xf3,0x1f,0x3a,0xd4,0x7c,0x12,0x80,0x0,0xb0,0x2c,0x81,0xeb,0x0,0x7e,0x23,
0x4b,0xa7,0xd2,0xe5,0x6b,0xa5,0xcb,0xd7,0x4a,0xb7,0x5f,0x2b,0x5d,0xbe,0x21,0x81,
0xe5,0xd2,0xf3,0x6b,0x33,0xc9,0xf0,0x47,0x94,0x42,0xff,0xda,0x4d,0x89,0xb7,0x78,
0x9b,0x59,0xbc,0x5c,0xb1,0x82,0xa7,0x2,0xd6,0xcc,0xe2,0x65,0x8c,0xcf,0x9d,0x60,
0xb8,0x22,0x22,0xea,0x24,0xab,0x18,0xfe,0x38,0xec,0x4b,0x94,0xc2,0xcc,0xe2,0x6c,
0xc3,0x86,0x64,0xb,0x4b,0xb,0x5c,0x26,0x85,0x88,0x88,0x56,0x1c,0x1b,0x3e,0x88,
0x88,0x88,0x88,0x3a,0x8,0xc3,0x1f,0x11,0x11,0x11,0x51,0x7,0x61,0xf8,0x23,0x22,
0x22,0x22,0xea,0x20,0xc,0x7f,0x44,0x44,0x44,0x44,0x1d,0x24,0x55,0xf8,0x93,0xb2,
0x72,0x6b,0x9,0x3b,0x78,0x89,0x88,0x88,0x88,0xb2,0x8d,0x95,0x3f,0x22,0x22,0x22,
0xa2,0xe,0x92,0x2a,0xfc,0x79,0x9e,0x57,0xf9,0x7e,0x54,0xbe,0x9f,0x88,0x88,0x88,
0x88,0x56,0x57,0x43,0x87,0x7d,0x89,0x88,0x88,0x88,0x28,0xdb,0x1a,0x3a,0xec,0xcb,
0x39,0x7f,0x44,0x44,0x44,0x44,0x4d,0xd4,0x80,0xa8,0xc5,0x39,0x7f,0x44,0x44,0x44,
0x44,0x1d,0x84,0xe1,0x8f,0x88,0x88,0x88,0xa8,0x83,0x84,0xe1,0xcf,0x35,0x64,0xcb,
0x61,0x5c,0x22,0x22,0x22,0xa2,0x55,0xd4,0x84,0x28,0x66,0x54,0xfe,0x54,0x43,0x87,
0xde,0xd8,0x51,0xa9,0xc9,0x83,0xe1,0x90,0x88,0x88,0x88,0xa8,0xb5,0x44,0x86,0x7d,
0x19,0xe8,0x88,0x88,0x88,0x88,0x32,0xa8,0x41,0x11,0x2d,0x57,0xeb,0x6b,0x31,0x24,
0x12,0x11,0x11,0x11,0xd5,0x69,0x15,0xe2,0x54,0xae,0x11,0x6b,0xf7,0x31,0x6,0x12,
0x11,0x11,0x11,0xd5,0x48,0x6a,0x27,0xfd,0xb6,0x6a,0x97,0x6b,0x64,0xce,0xf9,0x2b,
0xbd,0x62,0xe4,0xbc,0x81,0x8b,0x3b,0x57,0xdb,0x25,0x84,0x88,0x88,0x88,0x88,0xd0,
0xf0,0xd0,0xa7,0xe4,0x82,0xa0,0xd9,0xb8,0xa6,0xe,0x3b,0x38,0x12,0x11,0x11,0x11,
0x51,0xa,0x7a,0x15,0x30,0x3c,0x6f,0x5c,0xae,0x2a,0x2f,0xf5,0x62,0xbd,0x68,0xa5,
0xeb,0xae,0x8a,0x60,0x92,0xb0,0xc7,0xbd,0x7f,0x89,0x88,0x88,0x88,0x2c,0xae,0xb0,
0x7,0x94,0x3,0x9f,0xeb,0xbe,0x3a,0xe4,0xf4,0xd0,0x26,0x21,0x21,0xa5,0x44,0xe4,
0x36,0xad,0x9a,0x97,0xa4,0xb2,0xc7,0xaa,0x1f,0x11,0x11,0x11,0x51,0xd,0xec,0xb9,
0x7f,0x4d,0x10,0xbb,0xc8,0x73,0xb5,0xeb,0xfa,0xed,0x8d,0x9c,0x13,0x48,0x44,0x44,
0x44,0xd4,0x91,0x5c,0x71,0xca,0x9e,0xf7,0xd7,0xa8,0x86,0xf,0xbd,0xda,0x67,0x54,
0xfd,0xa4,0x79,0x9b,0x9a,0x1f,0xc8,0xc0,0x47,0x44,0x44,0x44,0xd4,0x44,0xf6,0x50,
0x70,0x43,0x1b,0x3e,0xf4,0xe0,0x27,0xcb,0xc1,0x4e,0x1f,0xe2,0x55,0xf7,0x55,0x3c,
0x46,0x86,0x41,0x22,0x22,0x22,0xa2,0x74,0x5c,0x1d,0xbd,0xb2,0xc2,0xc9,0x7e,0x4e,
0xd,0x72,0xae,0x79,0x7c,0x71,0xa1,0x4f,0x4a,0x19,0x9e,0xd4,0xe3,0xec,0xf9,0x81,
0x2e,0x6c,0xf4,0x20,0x22,0x22,0x22,0x2a,0x89,0x74,0xf2,0x6a,0x97,0x85,0xac,0xbc,
0xc6,0x5f,0x23,0x86,0x7d,0x63,0xab,0x7e,0x5a,0xf5,0xaf,0xa1,0xeb,0xfc,0x31,0x8,
0x12,0x11,0x11,0x11,0x95,0xc5,0x2d,0xf2,0xac,0x9f,0x44,0xe3,0x7e,0x5c,0xec,0x9c,
0x3f,0xbb,0xc3,0xd7,0xd5,0x0,0x12,0x37,0x44,0x1c,0x47,0xf,0x7e,0xc,0x81,0x44,
0x44,0x44,0xd4,0xd1,0xe2,0x76,0xf5,0x30,0x82,0x9f,0x74,0x57,0x8,0xeb,0x90,0xb3,
0x2b,0x7c,0xf6,0x39,0xa0,0xc2,0xa1,0x19,0x4,0x5d,0x61,0x2f,0x69,0x85,0x90,0xbb,
0x7c,0x10,0x11,0x11,0x51,0x47,0x72,0xe,0xf9,0x6a,0x1,0x4f,0xd8,0xf7,0xa1,0x5c,
0xf9,0x6b,0xd0,0x48,0x6c,0xce,0xe,0x7e,0xc1,0xcf,0xd2,0xaa,0x7e,0x46,0x0,0x34,
0x83,0x9f,0xdd,0xd,0x6c,0x5f,0xd6,0xb1,0xd2,0x47,0x44,0x44,0x44,0x54,0xe2,0xea,
0xe6,0xd5,0x77,0xf3,0x10,0xb0,0x82,0x1f,0x1a,0x52,0xf5,0x3,0x54,0xf8,0xd3,0x82,
0x9d,0x90,0xc2,0x38,0xb7,0xc3,0x9e,0xab,0xe9,0xa3,0xfc,0x3e,0x38,0xf4,0x4b,0x44,
0x44,0x44,0xe4,0x64,0xc7,0x24,0x3b,0x0,0xa,0x98,0x41,0x2f,0xae,0xdb,0xb7,0x4e,
0x55,0x87,0x7d,0xed,0x21,0x5f,0xf3,0x98,0x4b,0xf7,0x39,0x96,0x8b,0xa9,0x84,0xa1,
0x8f,0x88,0x88,0x88,0x3a,0x96,0xd4,0x2e,0xd8,0x95,0x3d,0x7b,0xa8,0x57,0xd,0xf7,
0xea,0xc3,0xc1,0x75,0xca,0x8b,0x52,0xfb,0x48,0x58,0xe9,0x93,0x12,0x2,0x22,0x38,
0xd7,0x6f,0xb3,0x2a,0x81,0x76,0x27,0x30,0xd7,0xf9,0x23,0x22,0x22,0x22,0x8a,0xe1,
0xea,0xe4,0x35,0x42,0x9f,0xb4,0x42,0x9f,0x7d,0xdd,0xf1,0x3a,0x35,0xca,0xdb,0x95,
0x3f,0x15,0xfc,0xca,0xc3,0xc0,0x66,0x55,0xcf,0x8,0x81,0x15,0x86,0x7e,0x93,0xc,
0x1,0x3,0x41,0x15,0x30,0xe9,0x63,0x89,0x88,0x88,0x88,0xda,0x82,0x3d,0xdf,0x4f,
0x54,0x39,0x35,0x70,0xb9,0x17,0x77,0xe5,0x4f,0xa,0xed,0x78,0x82,0xeb,0x2,0x22,
0x32,0xf7,0xf,0x28,0x37,0x85,0xb8,0x1a,0x41,0x74,0x1e,0xbc,0xb0,0xcb,0x97,0xc3,
0xbe,0x44,0x44,0x44,0xd4,0x31,0x2a,0x2d,0xe7,0x62,0x4,0x3c,0x69,0x85,0x3e,0x69,
0xde,0xd7,0x20,0xd1,0xca,0x5f,0xd8,0xf0,0x61,0x36,0x80,0xa8,0xfb,0x54,0x8,0x74,
0x2d,0xfb,0x62,0x87,0x3e,0x67,0x8,0xf4,0x3c,0x40,0x6,0xe7,0x1c,0x2a,0x26,0x22,
0x22,0xa2,0x8e,0xa2,0xf,0xf7,0xba,0x2a,0x7b,0x95,0x4e,0x8d,0xb1,0x60,0x56,0xfe,
0xc2,0xc0,0x17,0xed,0xfc,0xd,0x43,0x9f,0xa,0x81,0x52,0x4,0x8f,0xb3,0xb6,0x7a,
0xab,0x65,0x2e,0x20,0x87,0x7e,0x89,0x88,0x88,0xa8,0x2d,0xe9,0xf1,0x46,0xf,0x70,
0x6a,0x4e,0x9f,0xaa,0xee,0xf9,0xa5,0x93,0x5e,0xed,0xf3,0x1,0xf8,0x32,0x38,0x6f,
0x64,0xb7,0xaf,0x90,0xe2,0xd7,0xbe,0xf0,0x4b,0xf3,0xfd,0x2a,0x4,0x3f,0x47,0xe5,
0x2f,0x78,0x4f,0x66,0xd8,0x73,0xd1,0x87,0x7b,0xd5,0x90,0x2f,0x87,0x7e,0x89,0x88,
0x88,0xa8,0xad,0xb9,0x86,0x7b,0xab,0x55,0xfa,0x54,0x0,0x54,0x61,0xd0,0x47,0xa3,
0x2b,0x7f,0xef,0xe7,0xa4,0x94,0xbf,0x12,0x90,0xf0,0x55,0x35,0xf,0xd1,0xf3,0xb0,
0x11,0xc4,0x18,0x1a,0x46,0xb4,0x2b,0x18,0x32,0x1c,0x92,0xb6,0x97,0x86,0x31,0x2,
0xa0,0xba,0xec,0x71,0xcd,0x3f,0x22,0x22,0x22,0x6a,0x43,0x15,0xd7,0xf4,0x73,0xcc,
0xed,0xd3,0x43,0x5e,0x11,0xe5,0x8a,0x9f,0xaa,0xfe,0x35,0xce,0xfb,0x39,0x5f,0x8a,
0xf7,0x55,0xb8,0x53,0xc3,0xb9,0xbe,0xf4,0x9d,0xe7,0xf6,0xf0,0xaf,0xbd,0x2b,0x48,
0xb5,0x7d,0x7e,0xd9,0xf0,0x41,0x44,0x44,0x44,0x1d,0x27,0x6e,0x21,0x67,0x15,0xf8,
0x54,0xb5,0xaf,0x88,0xe0,0xd4,0xc4,0x21,0x5f,0x0,0xbf,0xca,0x9,0x88,0x5f,0x44,
0x42,0x9e,0xa3,0xfa,0x67,0x9c,0x4b,0x69,0x6,0x42,0x6d,0xbe,0x20,0x90,0x7c,0x9e,
0x5f,0x92,0xdb,0x88,0x88,0x88,0x88,0x5a,0x4a,0xa5,0x35,0xfd,0xd4,0x5c,0x3f,0x7b,
0x78,0x57,0x55,0xfb,0x54,0xe5,0x4f,0x9d,0x54,0x40,0x6c,0x9c,0xd9,0xbc,0x90,0x62,
0xd6,0xb5,0xc6,0x9f,0xbd,0xcd,0x9b,0xde,0x5,0x1c,0xd7,0xf1,0x6b,0x77,0x7,0xc7,
0xcd,0x7,0xd4,0xe7,0xfd,0xb1,0xd1,0x83,0x88,0x88,0x88,0xda,0x86,0x2b,0xf8,0xe9,
0xc3,0xbd,0x7a,0xf5,0xcf,0x77,0x9c,0x8a,0x52,0xb,0x83,0x68,0xf4,0x90,0x2f,0x0,
0xfc,0x22,0x2f,0xa4,0x78,0xc7,0xe,0x7d,0x80,0x36,0x9f,0x2f,0x3c,0x2f,0x7,0x44,
0x7b,0x78,0xb8,0x5c,0xfd,0xab,0xbe,0xc8,0xb3,0xe7,0xc1,0xf8,0x60,0xec,0x25,0x5f,
0x18,0x8,0x89,0x88,0x88,0xa8,0x25,0xb9,0xe6,0xf9,0xa9,0x73,0xbb,0xa9,0x43,0xd,
0xe9,0x16,0xa5,0x19,0xf8,0x8a,0x0,0x96,0x65,0x70,0x7f,0x11,0x8d,0x1e,0xf2,0x5,
0x80,0x77,0xf2,0xbe,0xf4,0xa7,0x2a,0x85,0xbe,0xb8,0xa5,0x5f,0xf4,0x21,0xe2,0xca,
0xd5,0x3f,0x22,0x22,0x22,0xa2,0x36,0x67,0x7,0x1e,0xa1,0x9d,0xdb,0xb,0x36,0xab,
0x0,0xa8,0xf,0xef,0x2e,0xcb,0xd2,0x49,0x5d,0x47,0x79,0x18,0xb8,0x71,0xe6,0xe4,
0xa5,0xe2,0xfb,0x79,0x5f,0xfa,0x6f,0x4b,0x48,0x5f,0x42,0xae,0x49,0x12,0xfa,0xc2,
0xe5,0x5f,0xb4,0x39,0x80,0x41,0x10,0x2c,0xdf,0x5e,0xa9,0xfa,0x17,0xe,0xf9,0x96,
0x16,0x7b,0x66,0x3c,0x24,0x22,0x22,0xa2,0x96,0x56,0x29,0xf8,0xe9,0xfb,0xf6,0x86,
0xa1,0x4f,0x35,0x77,0xc8,0x72,0xd0,0x33,0x42,0x60,0xe9,0x36,0xbf,0xe1,0x47,0xfa,
0x73,0x0,0xc8,0xf9,0xd2,0xbf,0x26,0xa4,0xf8,0xb9,0x2f,0x7d,0xad,0xbb,0x57,0x9d,
0xfc,0xc8,0xd0,0x6e,0x18,0xf6,0xec,0xe0,0x87,0xe8,0x42,0xd0,0x71,0x21,0x90,0x4b,
0xbc,0x10,0x11,0x11,0x51,0x5b,0xa8,0x16,0xfc,0x22,0x8b,0x36,0xc3,0xaa,0xfa,0x69,
0x1,0x30,0x3c,0x95,0x86,0x82,0x85,0xe3,0xf5,0xeb,0xf3,0x33,0x20,0x8,0x7f,0xf0,
0xa5,0x3f,0xe9,0x3b,0x42,0x9f,0xde,0x5,0x1c,0x77,0x9b,0xb0,0xe6,0x1,0x3a,0xf7,
0x1,0x76,0x34,0x7d,0xe8,0xf4,0x30,0x48,0x44,0x44,0x44,0x94,0x79,0xae,0xb9,0x78,
0xae,0x8a,0x9f,0x1d,0xfc,0xf4,0xaa,0xdf,0x32,0x80,0x25,0x94,0x87,0x7c,0x97,0xb4,
0xdb,0x1a,0x5f,0xf5,0x3,0x80,0x49,0x0,0xc8,0x95,0x16,0x78,0x3e,0xe9,0xa,0x79,
0xbe,0xf4,0x51,0x94,0x45,0xe7,0xed,0xaa,0x42,0x68,0x56,0x0,0xb5,0x65,0x5f,0xb4,
0x1d,0x41,0x5c,0x58,0xf1,0x23,0x22,0x22,0xa2,0x96,0xe4,0x6a,0xec,0x70,0x55,0xfc,
0xf4,0x75,0xfc,0x54,0x93,0x87,0x51,0xe5,0x93,0x41,0xd0,0x5b,0x2,0x70,0xa3,0x74,
0xbe,0xd4,0xb4,0xaa,0xdf,0x35,0x94,0x2a,0x7f,0x79,0x5f,0xfa,0x90,0x52,0x9e,0x94,
0x90,0xd7,0x84,0x14,0x37,0x55,0x5a,0xe6,0x45,0x9f,0xb,0xa8,0x42,0x9f,0x31,0x7,
0x50,0x9f,0xb,0x8,0xa1,0x75,0x36,0xcb,0xd8,0x21,0x60,0x75,0x7f,0xf9,0xf3,0xe3,
0x1c,0x40,0x22,0x22,0x22,0xca,0x20,0x57,0x44,0xd1,0x2b,0x80,0xe1,0x2,0xce,0xae,
0xe6,0xe,0x19,0x9d,0xd7,0xa7,0xaa,0x7e,0x37,0x4a,0x55,0xbf,0x1b,0xb2,0x99,0x55,
0xbf,0x93,0xf2,0x52,0xf1,0x1a,0x0,0xe4,0x7d,0xe1,0x43,0x42,0x5e,0x93,0x90,0x27,
0x85,0x14,0xf7,0x54,0x5b,0xe3,0xaf,0x62,0x3,0x48,0x29,0xf8,0x5,0xd5,0x41,0x6d,
0x68,0x58,0x9b,0xb,0x8,0x54,0xf,0x83,0xe1,0x87,0x19,0x87,0x45,0x43,0x22,0x22,
0x22,0x5a,0x49,0xae,0x5c,0x22,0xb4,0xfb,0xc2,0xe5,0x5c,0xac,0xe6,0xe,0x3d,0xf8,
0xe9,0xd5,0xbe,0x1b,0xa5,0xb0,0x77,0x1d,0x41,0xd5,0xef,0x3a,0xca,0x95,0xbf,0xc6,
0x57,0xfd,0x0,0xe0,0x25,0x75,0x21,0xa8,0xfc,0x5,0x7f,0xfe,0xb7,0x90,0xe2,0x9e,
0x6a,0x81,0xcf,0x15,0xfa,0xec,0xe,0x60,0xdf,0x1a,0xfe,0x35,0xf6,0xff,0x2d,0xbd,
0x19,0x3d,0x0,0x2a,0x12,0x32,0xd9,0x9b,0xd5,0x1f,0xc3,0x20,0x48,0x44,0x44,0x44,
0xcd,0x92,0xa4,0xda,0xa7,0xce,0xf5,0xe0,0xa7,0xb6,0x69,0xd3,0x83,0xdf,0x92,0x2c,
0x7,0x3c,0x15,0xf8,0xae,0xcb,0xe0,0xa4,0xaa,0x7e,0xcd,0x9,0x7e,0x3e,0x80,0x1f,
0xab,0x2b,0x61,0xf8,0x13,0x52,0xbc,0x6c,0xe,0xfd,0x56,0xdb,0xe9,0xc3,0x3c,0x2f,
0xd,0x1f,0x43,0xc0,0xda,0xfa,0xcd,0xea,0x2,0x56,0x7f,0x82,0xcf,0x4e,0xab,0x6,
0x26,0xd,0x7e,0x36,0x6,0x41,0x22,0x22,0x22,0x6a,0xb4,0x6a,0xa1,0x4f,0xaf,0xf6,
0xd9,0x4b,0xb9,0xb8,0x86,0x7a,0x55,0xf0,0xbb,0x51,0xa,0x7e,0x37,0x64,0x39,0xf8,
0x5d,0x47,0x70,0x5a,0xae,0x31,0xb,0x55,0xf7,0xaf,0xf2,0x52,0xf1,0x7d,0x75,0x45,
0xf,0x7f,0xef,0x4b,0xc8,0x1f,0xb,0x29,0x1f,0xc,0xc3,0x9c,0x1d,0xf2,0x8c,0x1d,
0x3f,0xa2,0x3b,0x80,0xe8,0x41,0x30,0x32,0xc,0x2c,0xfc,0xb0,0x22,0x68,0xcf,0x21,
0x34,0x3e,0x48,0xfd,0x1c,0x88,0x6,0xba,0x4a,0x1,0x8f,0x41,0x90,0x88,0x88,0x88,
0x6a,0x15,0x17,0xbc,0x5c,0xa1,0x2f,0xc,0x7f,0x5a,0xf0,0x73,0x76,0xf5,0xc2,0xac,
0xf8,0x5d,0x7,0x70,0x4d,0x2,0xbf,0x51,0x97,0x11,0x4,0xc0,0xe6,0xd,0xf7,0x2,
0xc0,0xdf,0xea,0x57,0xb4,0xf0,0x27,0x21,0x21,0x7f,0x28,0xa4,0x78,0xd0,0xd5,0xcc,
0x11,0x5f,0xf5,0x83,0xb9,0xc4,0x8b,0xbd,0xf4,0xb,0x44,0x39,0xf8,0x69,0x55,0x40,
0x15,0x26,0x8d,0xf,0x14,0xa8,0xfe,0xa6,0xd5,0xfd,0x9e,0x75,0x1e,0xf7,0x38,0x85,
0x61,0x90,0x88,0x88,0x88,0x6c,0x95,0x72,0x47,0x9a,0xd0,0xa7,0x6f,0xdb,0xa6,0xf6,
0xe5,0x35,0x3a,0x7a,0x4b,0x15,0xbf,0x6b,0x5a,0xe8,0xfb,0x8d,0x2c,0x5d,0x2f,0x75,
0x6,0x37,0x27,0xf8,0xfd,0x12,0xc0,0x4f,0xf4,0x1b,0xf2,0xbe,0x19,0xe8,0x26,0x7d,
0xe9,0xff,0x4c,0x42,0xfe,0xbe,0x1e,0xfa,0xca,0x43,0xba,0xd1,0x2a,0x5f,0xfc,0xf0,
0xaf,0xde,0x1,0x2c,0xc3,0xc6,0xf,0x55,0x15,0x2c,0xb7,0x42,0x3b,0x3e,0x60,0x9d,
0x7,0x77,0x70,0x53,0xb7,0x57,0xa,0x79,0xfa,0x65,0x36,0x11,0x13,0x11,0x11,0x51,
0x1c,0xd7,0xe8,0xa3,0x1d,0xf8,0xf4,0xa2,0x55,0xdc,0x5e,0xbd,0x6a,0x1,0x67,0x7d,
0xa7,0xe,0x35,0x9f,0xef,0x7a,0x29,0xec,0x5d,0x3,0xb0,0xa8,0x55,0xff,0x8a,0x68,
0x66,0x4e,0xf9,0xbe,0xbc,0x54,0x34,0xfa,0x87,0xf3,0xf6,0xf0,0xae,0x2f,0xfd,0x6f,
0x4a,0x29,0x5f,0xb4,0xab,0x77,0x95,0xaa,0x7c,0xd2,0x5a,0xfa,0xa5,0xd4,0x41,0x1c,
0x59,0x0,0x5a,0x5,0xc3,0xf0,0xc3,0x71,0x55,0xfe,0xe2,0xb8,0x86,0x7f,0x3d,0xeb,
0x8e,0x6a,0xd5,0xc0,0xb8,0xd7,0xaa,0xf5,0x31,0x44,0x44,0x44,0x94,0x1d,0x49,0x3,
0x54,0xd5,0xe1,0x5d,0x69,0x86,0x3e,0xc0,0x2c,0x5a,0x85,0xf3,0xfb,0xa4,0x35,0xc7,
0xf,0x55,0x1a,0x3c,0x4a,0xc1,0x4f,0xd,0xfb,0xfe,0x6,0xcd,0x9c,0xe7,0x7,0x4,
0x3f,0xed,0x87,0xf6,0x8d,0xae,0xf0,0xf7,0x92,0x90,0xe2,0x82,0x84,0xdc,0x6e,0x37,
0x71,0xd8,0x21,0x2f,0x12,0x4,0xc3,0xcb,0x28,0x2f,0xf1,0x22,0xcb,0xcf,0x2d,0x77,
0xbf,0x58,0xa5,0x52,0xa0,0x7a,0x8,0x8c,0xad,0x0,0xca,0xf8,0xca,0xa0,0xeb,0x32,
0x11,0x11,0x11,0x51,0xa5,0x4a,0x9f,0x7e,0xd9,0xa8,0xf4,0x49,0xb3,0xe2,0x67,0x57,
0xfd,0x5c,0xfb,0xf3,0xea,0x55,0x3f,0x3d,0xfc,0xa9,0x6,0x8f,0xe6,0xcd,0xf3,0x3,
0x80,0x1f,0xca,0x4b,0xc5,0x5f,0xd9,0x37,0xba,0xc2,0x1f,0x84,0x14,0xdf,0x90,0x90,
0xff,0xa4,0x37,0x68,0x18,0x95,0x3d,0x3b,0x8,0x4a,0x9,0x7d,0xf8,0x58,0xaf,0xf6,
0x85,0xa1,0x4f,0x7d,0x38,0x7a,0x27,0x4c,0xb8,0xfd,0x9,0xca,0x55,0xc0,0xa4,0xc2,
0x2a,0x5f,0x4c,0xb2,0x63,0xf8,0x23,0x22,0x22,0x22,0x9b,0x2b,0xf4,0x1,0x66,0xe,
0x11,0x8e,0x73,0x63,0xa8,0xd7,0xaa,0xf8,0x55,0x5a,0xc4,0x59,0xaf,0xfa,0xe9,0x4b,
0xbb,0xa8,0xa1,0xde,0xe6,0x5,0xbf,0x5f,0x3,0x78,0xca,0x75,0x47,0x5c,0xf8,0xfb,
0x89,0x90,0x72,0x4a,0x40,0xc,0xd8,0xe1,0x2f,0x72,0x59,0x1b,0xfa,0x35,0x5e,0x4b,
0x1f,0xde,0x15,0x56,0xe8,0x53,0x41,0x50,0x4f,0xd3,0x69,0x1b,0x3f,0x80,0x52,0xa8,
0x4b,0xf1,0xa9,0x31,0x4,0x12,0x11,0x11,0x75,0x8e,0xa4,0x4d,0xa4,0x71,0xd5,0x3e,
0x55,0x9c,0x8a,0x84,0x3f,0x94,0xf3,0x8d,0x6a,0xee,0xb0,0x87,0x7c,0x8d,0xc5,0x9c,
0x51,0x5a,0xcb,0xaf,0x74,0xdd,0xb7,0x7e,0x6e,0x73,0x7c,0x47,0x5e,0x2a,0xfe,0xd2,
0x75,0x47,0xde,0x9e,0xbf,0x57,0xaa,0xf6,0xf9,0x42,0x8a,0xcf,0xb,0x88,0x37,0x84,
0x14,0x6b,0xf4,0x25,0x5b,0xec,0xd0,0x67,0xf,0xfd,0x4a,0x23,0xe8,0xc5,0x84,0x3e,
0xbb,0x64,0x6a,0x87,0x3f,0x7d,0xbc,0x9d,0x88,0x88,0x88,0xa8,0x5e,0x91,0x4a,0x5f,
0x85,0x73,0xbb,0x38,0x65,0x6f,0xd9,0x66,0xe7,0x1a,0xd7,0x90,0x6f,0x38,0xdf,0xf,
0xe5,0x0,0xd8,0xfc,0x61,0x5e,0xe5,0x17,0x0,0xbe,0x19,0x77,0x67,0x5e,0x9f,0x9b,
0xa7,0xcf,0xed,0xf3,0xa5,0xff,0x33,0x1,0xf1,0x43,0x5f,0xfa,0x7f,0x19,0xd9,0xb7,
0xb7,0x34,0xbf,0x4f,0x7f,0x6e,0xc5,0xd0,0xa7,0x56,0xb8,0xb6,0x3f,0x30,0x7b,0x35,
0xec,0x48,0x0,0x4,0x52,0x57,0x3,0x93,0x62,0xb0,0x24,0x22,0x22,0xea,0x1c,0xae,
0xdf,0xfb,0x46,0xee,0xb0,0x86,0x7d,0x5d,0x1,0x50,0x35,0x79,0x48,0x98,0x9d,0xbd,
0x6a,0x79,0x17,0xd7,0x90,0xaf,0xda,0xbf,0xd7,0xc7,0x4a,0x5,0x3f,0x0,0x18,0x91,
0x97,0x8a,0x4b,0x71,0x77,0x7a,0xbf,0x73,0x7c,0x5b,0x6c,0x25,0xcf,0x97,0xfe,0x7,
0x7c,0xe9,0xff,0x3f,0x21,0xc5,0x7,0xec,0x25,0x5b,0x8c,0x39,0x7d,0x71,0xc3,0xbb,
0xae,0x4e,0x18,0xfb,0xb1,0x7a,0xe5,0xcf,0x1e,0x63,0x77,0xcd,0x3,0x8c,0x1b,0xab,
0xaf,0x24,0x69,0xd9,0x97,0x88,0x88,0x88,0xda,0x57,0xea,0x26,0xf,0x69,0x6,0x3f,
0xfd,0xa4,0x8a,0x5a,0xe1,0xb0,0xaf,0xd6,0xe4,0xa1,0x86,0x7c,0x55,0x18,0x5c,0xb9,
0xd0,0x7,0x0,0x2f,0xc9,0x4b,0xc5,0xfb,0x2b,0x3d,0x20,0x1f,0xee,0xc3,0xb,0xe7,
0xce,0x1c,0xef,0xb,0x29,0xbe,0xe8,0x4b,0xff,0x98,0x5d,0xed,0x13,0x52,0x68,0xa1,
0x4e,0x9a,0xe1,0xce,0xfe,0x60,0x8c,0xe0,0x67,0x85,0xc1,0xf0,0x43,0x95,0xee,0x9,
0x96,0x80,0x7b,0x42,0x64,0xa5,0x49,0x92,0x71,0x81,0x91,0x88,0x88,0x88,0xda,0x9b,
0x74,0xfc,0xd2,0x8f,0xab,0xfa,0x29,0x76,0xde,0xd0,0xab,0x7e,0x61,0x81,0x4a,0x5a,
0xc5,0x2d,0x98,0x15,0x3f,0x35,0xe7,0x4f,0x5,0xc0,0xa2,0x16,0xfa,0x56,0x2e,0x87,
0xbc,0xf,0xe0,0xb,0xd5,0x1e,0x94,0x77,0x2e,0xca,0x8c,0xf2,0x96,0x6c,0x2,0xe2,
0x1f,0x7c,0x29,0xf6,0xa,0x29,0x3e,0xe7,0x5c,0xab,0x4f,0xff,0x30,0xd4,0x26,0xc6,
0x6a,0x2,0xa4,0x31,0xcc,0x2b,0xad,0xca,0x1f,0xdc,0xf3,0xff,0x80,0xf8,0x2e,0xe0,
0xb8,0xa4,0xe,0xeb,0xfe,0x4a,0x1f,0x32,0x83,0x21,0x11,0x11,0x51,0x67,0x89,0xcb,
0x7,0x7a,0x96,0x10,0xd2,0xbc,0xcd,0x5e,0xd7,0x4f,0x9f,0xae,0xa6,0xe7,0x99,0xa2,
0x23,0x0,0xea,0xcf,0x5b,0x59,0x7f,0x26,0x2f,0x15,0xe7,0xaa,0x3d,0x28,0x1f,0x5b,
0xf5,0x13,0x6a,0x47,0xe,0x1,0x21,0xc5,0x88,0x2f,0xfd,0xdd,0x42,0x8a,0xad,0x32,
0x7c,0xd3,0x56,0xb5,0xcf,0x75,0x5b,0x5c,0xe8,0x73,0xcd,0xff,0xd3,0xcb,0xab,0xf6,
0x1c,0x40,0xe3,0xcb,0xd1,0x8e,0xde,0xe,0x80,0x2a,0x2c,0xba,0xd4,0x32,0x5c,0x4c,
0x44,0x44,0x44,0xd9,0x97,0x74,0x24,0x50,0xbf,0xdd,0x55,0x50,0xb2,0xab,0x7e,0x7a,
0x93,0x87,0x5d,0xf1,0x53,0x45,0x2f,0x55,0xec,0x5a,0xdd,0xd0,0x7,0x0,0xff,0x5d,
0x5e,0x2a,0xbe,0x9c,0xe4,0x81,0xc6,0x52,0x2f,0x31,0xc1,0xf,0xbe,0xf4,0xaf,0x9,
0x29,0xfe,0x48,0xfa,0xf2,0xff,0x42,0xe0,0x66,0x23,0xbc,0xc5,0xd,0xe7,0xda,0x5b,
0x9d,0xb8,0x82,0x9f,0x9e,0xa2,0x5d,0xf3,0xff,0xc2,0x4a,0x60,0xe9,0x53,0x74,0xd,
0x3,0xbb,0xbe,0x40,0xc4,0xdc,0x16,0x77,0xbd,0xda,0xed,0x44,0x44,0x44,0xd4,0x7a,
0x2a,0xfd,0xfe,0xb7,0x47,0x16,0x9d,0xe1,0xf,0x5a,0x3e,0x71,0xe4,0x1c,0x75,0x9b,
0x5d,0xa8,0x5a,0x79,0x6f,0x2,0xf8,0xeb,0xa4,0xf,0x8e,0x2e,0xf5,0x22,0xd4,0x9c,
0x3e,0x6d,0x8e,0x9f,0x14,0x90,0xbe,0x7c,0x7,0x2,0x7,0x50,0x94,0xff,0xc,0x1f,
0x6b,0xca,0x93,0x1c,0x63,0x86,0x73,0x8d,0x60,0x58,0xe1,0x36,0xd7,0x24,0x4a,0x3d,
0xc,0xba,0xbe,0x10,0xfb,0x43,0xd6,0x2b,0x7e,0xd5,0xc2,0x5f,0xb5,0x71,0x7f,0x22,
0x22,0x22,0x6a,0xd,0x49,0x7f,0x7f,0x57,0x2a,0x12,0x45,0x46,0x18,0xad,0x51,0xc8,
0xb8,0x8c,0xa2,0xee,0x4f,0x73,0x1c,0xcd,0x31,0x7,0xe0,0x4f,0x2a,0x75,0xf7,0xda,
0xf2,0x95,0x82,0x5f,0xd8,0xd1,0xab,0xde,0x68,0x51,0xbe,0x4,0x1f,0x5f,0x84,0x8f,
0x67,0x23,0x6b,0xdb,0xb8,0xd6,0xbb,0xb1,0xab,0x7d,0x7a,0x69,0xd4,0x95,0x9e,0x5d,
0x6b,0xff,0x19,0xed,0xd6,0xb2,0x42,0xf8,0x83,0xfb,0xb,0xd5,0xcf,0xed,0xcb,0xb6,
0xd8,0x8a,0x20,0xd3,0x21,0x11,0x11,0x51,0x4b,0x73,0x65,0x82,0x4a,0x8d,0x1e,0x7a,
0xf6,0xb0,0x8b,0x51,0xf6,0xeb,0xac,0x9e,0x5f,0x1,0xf8,0xf7,0x49,0xe6,0xf9,0xe9,
0xca,0x73,0xfe,0x44,0x30,0xfc,0x2b,0x25,0xc2,0x8a,0x9f,0xd9,0xdc,0x11,0x86,0xb3,
0x1f,0xc0,0x47,0xf,0x7c,0xf9,0xa4,0x11,0xf2,0x5c,0xd5,0x3d,0xbb,0xd,0xda,0x59,
0x1,0xd4,0x86,0x81,0xab,0xa5,0xeb,0x8a,0x55,0x40,0x6b,0x68,0x18,0x30,0xbf,0x24,
0x20,0xd9,0x17,0xc6,0xca,0x20,0x11,0x11,0x51,0xfb,0x71,0x65,0x2,0xd7,0x8,0xa2,
0x2b,0x10,0xea,0xcf,0xc9,0x8e,0x6b,0x0,0xee,0x95,0x97,0x8a,0xef,0xa4,0x7d,0x62,
0x5e,0x68,0x4b,0xbd,0x18,0xeb,0xf8,0x41,0x5b,0xc3,0x4f,0x5f,0xbf,0x2f,0x18,0xea,
0x7d,0xa,0x3e,0x36,0xa0,0x88,0xff,0x68,0x84,0x38,0x3b,0xe4,0x85,0x95,0x3e,0x98,
0x93,0x23,0xed,0x70,0x68,0xcf,0xff,0xb3,0xf7,0xfe,0x35,0x86,0x80,0x1d,0x9,0x3c,
0xae,0x12,0x68,0x5f,0x86,0x7e,0x5b,0xb6,0xbe,0x41,0x22,0x22,0x22,0xaa,0x53,0x9a,
0x2,0x4e,0x5c,0x10,0x4c,0xf2,0xdc,0xd5,0xb7,0x4,0xe0,0x8f,0xe4,0xa5,0xe2,0xcf,
0x6a,0x79,0x72,0x5e,0xf,0x7e,0x2a,0xf4,0x85,0x8b,0x37,0xdb,0xdd,0x2d,0xe6,0x9a,
0x7d,0x5f,0x84,0xc0,0xfb,0xf0,0xf1,0xb5,0xd8,0xe0,0xa7,0x87,0xbc,0x6a,0x15,0x41,
0x7b,0x22,0x65,0xa5,0xf9,0x7f,0xf6,0x65,0x20,0xda,0xa2,0xad,0xb8,0x82,0x5f,0xdc,
0x7d,0x44,0x44,0x44,0xd4,0x59,0x5a,0x2f,0xb,0xfc,0x1a,0x41,0xc5,0xef,0x54,0xad,
0x2f,0x90,0x37,0x82,0x5f,0x29,0xf4,0x19,0xe1,0x4f,0xef,0xe2,0xb5,0xc3,0x98,0x8f,
0x43,0xf0,0xe5,0x2f,0xe1,0xe3,0x6f,0xe0,0x63,0x4d,0x64,0xc1,0x43,0xd7,0x1c,0xc0,
0x48,0x50,0xd4,0x1e,0x63,0xef,0xc,0x12,0x37,0x7,0xd0,0x9e,0xfb,0x7,0xc4,0xa7,
0x76,0x5d,0xeb,0x7d,0xc1,0x44,0x44,0x44,0x44,0xca,0x2f,0x1,0xec,0x7,0x30,0x55,
0xcf,0x8b,0xe4,0x55,0xf0,0x53,0xa1,0x4f,0x20,0xa8,0x4,0x3a,0x87,0x5d,0x7d,0x69,
0x55,0xff,0xa4,0x9a,0x3,0xf8,0x2b,0x8,0x1c,0x83,0x2f,0xbb,0x13,0x7,0x3f,0x57,
0xa7,0xb0,0xbd,0x64,0x4c,0xdc,0xfc,0xbf,0xb8,0xa1,0x5c,0x22,0x22,0x22,0xa2,0xf6,
0xf4,0xb,0x0,0xff,0x1,0xc0,0x74,0xbd,0x2f,0x94,0xb,0x9a,0x3c,0x64,0x18,0xfa,
0xcc,0xe1,0x5e,0x19,0xd,0x80,0xce,0xc5,0xe,0xf1,0x63,0xf8,0xf2,0x23,0xf0,0x31,
0x6d,0x4,0x45,0x15,0xf2,0xd4,0x8a,0xd7,0xf6,0xa,0xd8,0xe1,0x26,0xc8,0x8,0xf6,
0xbe,0x53,0xdb,0xa2,0xe8,0xb7,0x2f,0xc9,0xd2,0x7d,0x88,0xce,0x5,0x8c,0xb,0x82,
0x44,0x44,0x44,0x44,0xed,0xe3,0x25,0x0,0xbf,0x87,0x6,0x4,0x3f,0x0,0xc8,0xa9,
0x39,0x7f,0x52,0xca,0x72,0xf8,0xab,0xd4,0x5d,0xeb,0x1a,0xfe,0xd,0x42,0xe0,0xcf,
0xe1,0x63,0x7,0x8a,0xf8,0x71,0x74,0xed,0x3f,0xab,0x2,0x58,0xb4,0x82,0x61,0x64,
0x6f,0x3c,0x94,0xc3,0xa0,0xef,0x38,0x16,0x22,0x22,0x22,0xa2,0xf6,0xb7,0x4,0x60,
0x4,0xc0,0xfd,0x0,0x16,0x1a,0xf5,0xa2,0x39,0xb5,0xbb,0x47,0x18,0xfc,0x80,0x52,
0xd8,0xd2,0x1a,0x28,0x5c,0x61,0xcf,0xbd,0x28,0xf3,0xaf,0x21,0xf0,0x27,0x10,0xf8,
0x22,0x4,0xae,0x55,0x6c,0xfe,0xb0,0x87,0x82,0x8d,0x8a,0x20,0x43,0x1f,0x11,0x11,
0x11,0x75,0xb4,0x69,0x0,0x1f,0x1,0xf0,0xbd,0x46,0xbf,0x70,0x4e,0x96,0x52,0x55,
0xa9,0xee,0x67,0xae,0x6f,0x93,0x64,0x97,0xd,0x77,0x10,0xfc,0x3e,0x4,0x6e,0x83,
0xc0,0x4b,0x91,0x39,0x82,0xf6,0xfc,0x3e,0x7d,0x8e,0xa0,0xde,0x15,0xcc,0xc0,0x47,
0x44,0x44,0x44,0x9d,0xe7,0x1a,0x80,0x6f,0x0,0xb8,0xd,0xc0,0xcf,0x9b,0xf1,0x3,
0x72,0x91,0xe1,0x5e,0xc0,0x5c,0x28,0x19,0x70,0x2f,0xa8,0xac,0x2f,0xb3,0x62,0x2f,
0xc1,0x12,0x4,0xbe,0x69,0x8,0x79,0x3f,0x7c,0xdc,0xf,0x1f,0xd3,0xce,0xc6,0xe,
0x57,0x73,0x88,0x1e,0x36,0x89,0x88,0x88,0x88,0x3a,0xc7,0x6b,0x0,0x76,0x0,0x38,
0x84,0x20,0x4,0x36,0x45,0xe,0x8,0xaa,0x7e,0xa1,0x24,0x4b,0xa7,0xe8,0xf7,0xe9,
0xcb,0xae,0x0,0xae,0x61,0xe1,0x97,0x82,0x2a,0xa0,0xfc,0x2b,0x8,0xfc,0x2a,0xba,
0xa8,0x33,0xa2,0xc1,0x8f,0x88,0x88,0x88,0xa8,0x73,0xfc,0x1c,0xc1,0xbc,0xbe,0xfd,
0x8,0xba,0x7a,0x9b,0x2a,0xa7,0x37,0x7b,0x94,0xc3,0x57,0xcc,0x82,0xc9,0xb0,0xae,
0xdb,0x97,0xf5,0x85,0x96,0xcd,0x4e,0xe1,0x6b,0x10,0xf8,0xe,0x4,0x6e,0x9,0xe6,
0x3,0xca,0xb9,0x72,0xc3,0x7,0x83,0x1f,0x11,0x11,0x11,0x75,0xa4,0x37,0x11,0x4,
0xbe,0xdf,0x43,0xd0,0xd1,0xbb,0x22,0xc2,0x39,0x7f,0x75,0x5,0xaf,0xb8,0xc5,0x96,
0xa3,0xc3,0xc4,0xd7,0x20,0xf1,0x7d,0x8,0xfc,0xe,0x4,0xfe,0x2,0x2,0x3f,0x63,
0xe8,0x23,0x22,0x22,0xa2,0xe,0xb2,0x4,0xe0,0xc7,0x0,0x6,0x11,0x34,0x74,0xbc,
0xb6,0xd2,0x7,0x90,0x93,0xae,0x3d,0x6e,0xf5,0x9b,0x3c,0xeb,0x3e,0x4f,0xbb,0xcd,
0x73,0xdc,0x66,0xbf,0x8e,0x1d,0x4,0x83,0x61,0xe2,0x25,0x0,0x7f,0xb,0x89,0x5d,
0x90,0xd8,0x1,0x89,0x6f,0x42,0x62,0xb6,0xb6,0xb7,0x40,0x44,0x44,0x44,0x94,0x79,
0x93,0x8,0x96,0x6d,0xd9,0x8,0xe0,0x4f,0x0,0xd4,0xbc,0x3d,0x5b,0xbd,0xf2,0x80,
0x35,0xe7,0x4f,0xe7,0xa,0x74,0xae,0xe0,0xa7,0xce,0xed,0x10,0xe8,0x7a,0x7e,0xf0,
0x3,0xf5,0xe5,0x64,0x2e,0x94,0x4e,0x7f,0xd,0x60,0x2b,0x80,0xbb,0x1,0xec,0x2d,
0x9d,0x7a,0xaa,0xbe,0x3,0x22,0x22,0x22,0xa2,0xec,0x99,0x5,0x70,0x12,0x41,0x65,
0xef,0x14,0x82,0xad,0xd9,0x32,0x21,0xf,0x20,0xbe,0xb9,0x43,0xf,0x76,0xb9,0xd2,
0x49,0x0,0xc8,0x79,0x80,0x27,0x83,0xeb,0x9e,0x7,0xe4,0x64,0x29,0xf8,0x79,0xc1,
0xb,0xa9,0xdb,0x3d,0xe9,0xae,0xe,0xc6,0x55,0xa,0x81,0xb7,0x4b,0xa7,0xef,0x94,
0xae,0xdf,0x9,0x60,0x3b,0x82,0x50,0xf8,0x61,0x0,0x9b,0x4b,0x97,0x89,0x88,0x88,
0x88,0xb2,0x60,0x9,0x41,0x11,0xeb,0x1d,0x4,0xcd,0x1a,0xbf,0x40,0x50,0xe5,0x6b,
0xc8,0x6e,0x1c,0xcd,0x90,0x37,0xe6,0xfc,0xb9,0x42,0xa0,0xab,0x9a,0xa7,0xc2,0xa0,
0x1e,0xa,0xf5,0xcb,0x91,0x93,0x16,0x16,0x73,0x5a,0x28,0xcc,0x79,0xe5,0x26,0x11,
0xb7,0x37,0x4b,0x27,0x5b,0xf,0x82,0x30,0xa8,0x7c,0x10,0xc0,0xa6,0x2a,0xef,0x95,
0x88,0x88,0x88,0xa8,0x1e,0x17,0x10,0x84,0x3d,0xa5,0x29,0xeb,0xf0,0x35,0xdb,0xff,
0x7,0xac,0xb3,0xf7,0x9f,0x68,0x13,0x2e,0xb0,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/nextoff.png
0x0,0x0,0x2d,0xee,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x2,0x7f,0x0,0x0,0x1,0x15,0x8,0x6,0x0,0x0,0x0,0x91,0xc9,0x83,0x5a,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x5c,0x46,0x0,0x0,0x5c,0x46,
0x1,0x14,0x94,0x43,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,
0xdd,0x7f,0x68,0x6c,0xe9,0x7d,0xdf,0xf1,0xef,0xe8,0x6a,0x16,0x76,0xee,0xc2,0x5c,
0x16,0x9,0xac,0xeb,0x32,0x8b,0x2b,0x81,0xaf,0x6c,0x24,0xb6,0x28,0xb8,0x72,0xf1,
0xc5,0xe1,0x16,0xd7,0x36,0x2d,0x31,0x6b,0x6c,0x2,0x2e,0x6b,0x52,0x62,0x5c,0x52,
0xba,0xd4,0xd4,0xb8,0xa4,0xd4,0x38,0xc4,0xd4,0xb5,0x49,0xda,0x85,0x62,0xc7,0x26,
0x4e,0x3,0xc5,0xc1,0x21,0x6d,0x4c,0xdc,0x2c,0x76,0xe3,0x25,0x74,0x89,0x23,0x13,
0x5f,0x96,0x88,0x5c,0x24,0x62,0xdd,0x5d,0xeb,0xda,0x68,0x60,0xad,0x5,0xd,0xcb,
0x1d,0xd8,0x1d,0x5d,0xcd,0xf9,0xf1,0xf4,0x8f,0x39,0xcf,0xe8,0x99,0x67,0x9e,0xf3,
0x73,0xce,0x68,0x7e,0xbd,0x5f,0x30,0xcc,0x99,0x33,0x67,0x66,0xce,0x19,0x5d,0xad,
0x3e,0xfb,0x7d,0x7e,0x55,0x7e,0xf8,0xc3,0x1f,0xca,0xd2,0xd2,0x92,0x54,0x2a,0x15,
0x59,0x5a,0x5a,0x1a,0xb8,0xe9,0x7d,0xe6,0x7d,0xd2,0x4d,0x8b,0xdb,0x36,0x29,0xa5,
0x32,0x6d,0xeb,0xc7,0xd1,0xfd,0xdb,0x95,0x52,0x1b,0x22,0xf2,0x4e,0x63,0xff,0x13,
0x22,0xf2,0xce,0x3c,0xef,0x9b,0xb4,0xf,0x0,0x0,0xcc,0xae,0x3c,0x7f,0xdb,0xed,
0x63,0xe3,0x1e,0x1b,0xf7,0x5d,0xa5,0xd4,0xa1,0xde,0xa7,0x94,0xea,0x8a,0xc8,0xa1,
0x52,0xea,0x27,0x4a,0xa9,0x73,0xf3,0xf8,0xac,0xb7,0xa4,0xe3,0xcd,0xe7,0xec,0xf3,
0x79,0xe6,0x99,0x67,0x72,0x7d,0x2f,0xa6,0x65,0x3b,0xe8,0xb9,0x1e,0xeb,0x70,0x17,
0x17,0x0,0x45,0x64,0xe8,0xde,0xde,0xb6,0xbf,0x4c,0xfd,0x9c,0x6b,0x3b,0xba,0xb8,
0x2d,0x11,0xf9,0x50,0xa5,0x52,0x79,0x97,0x52,0x6a,0x2b,0xba,0x7f,0x5c,0x3f,0x6f,
0xdf,0xe7,0x75,0x55,0xaf,0x1,0x0,0x0,0xd3,0x27,0xed,0x6f,0x7a,0x5a,0x30,0x74,
0x78,0x5d,0x44,0x8e,0xa3,0x20,0xf8,0x63,0xa5,0xd4,0x8f,0x94,0x52,0xc7,0x59,0xce,
0xc3,0x15,0xfa,0xec,0xcf,0x74,0x85,0xc1,0xa2,0x96,0xd3,0xaa,0x7e,0x49,0xe1,0x4f,
0x44,0x9c,0x1,0x50,0xb3,0x1f,0xeb,0x93,0x8d,0x9,0x7e,0x6f,0xab,0x54,0x2a,0x1f,
0x53,0x4a,0xdd,0xa9,0x54,0x2a,0xef,0x57,0x4a,0x3d,0x59,0x34,0xd8,0x99,0x9f,0x65,
0x6f,0xbb,0x1e,0x67,0x7d,0xe,0x0,0x0,0xcc,0xb6,0xb8,0xbf,0xf3,0x79,0xf6,0xc7,
0x64,0x8c,0xb7,0x45,0xb7,0xf7,0x89,0xc8,0xa7,0xa3,0x7d,0xaf,0x8b,0xc8,0x5f,0x2a,
0xa5,0x5e,0x50,0x4a,0x7d,0x5f,0x57,0x7,0xd3,0x2,0x5c,0x52,0x55,0x30,0xc,0x43,
0x9,0xc3,0x30,0xf1,0x1a,0xd3,0x2c,0xbb,0x82,0x5f,0x9e,0x26,0x5f,0x11,0x77,0xd5,
0xcf,0xc5,0x7c,0x3e,0xa,0x7e,0x4f,0x28,0xa5,0x9e,0x11,0x91,0x67,0x45,0xe4,0x3,
0x49,0xaf,0x4b,0x2b,0xc5,0xa6,0xed,0x8b,0x7b,0x1c,0xb7,0xf,0x0,0x0,0xcc,0x87,
0xbc,0x45,0x1f,0x57,0x33,0xab,0x7d,0xac,0xab,0x9b,0x9a,0xe3,0xbd,0xde,0xa6,0x94,
0x7a,0x56,0x7a,0x39,0xa7,0x2d,0x22,0xdf,0x15,0x91,0x3f,0x12,0x91,0x97,0xec,0xd7,
0x65,0x69,0xe,0xd6,0xc1,0x2f,0xc,0x82,0x5c,0xd7,0x6f,0x5b,0x76,0x5,0x3f,0x57,
0xe8,0x33,0xb7,0x45,0xdc,0x15,0xbf,0xb4,0xf0,0xa7,0x2f,0x44,0x44,0xde,0x59,0xa9,
0x54,0x7e,0x53,0x29,0xf5,0xb1,0x28,0x0,0x26,0x36,0xdf,0x5e,0x75,0xf5,0x2f,0xeb,
0x7b,0x2,0x0,0x80,0xd9,0x54,0x34,0x73,0x24,0x65,0xb,0xbd,0xcf,0xd5,0x7c,0xab,
0x94,0xaa,0x2b,0xa5,0x7e,0x2d,0xba,0xbd,0xa6,0x94,0xfa,0x9a,0x52,0xea,0x1b,0x4a,
0xa9,0x76,0x96,0xe0,0x17,0x4,0x81,0x4,0x41,0x50,0x4a,0xe5,0x6f,0x29,0x4b,0xd5,
0xcf,0xae,0xfc,0xa5,0xf5,0xfd,0x8b,0x1b,0x8,0x22,0x22,0x3b,0x95,0x4a,0xe5,0x4f,
0x44,0xe4,0xbe,0x88,0xfc,0x9a,0x88,0x3c,0x91,0xf7,0x84,0xb3,0xb4,0x85,0xa7,0x1d,
0x97,0xf4,0x3,0x4f,0xbb,0x1,0x0,0x80,0xd9,0x15,0xf7,0xf7,0x3c,0xae,0xbf,0x5d,
0x19,0xb9,0xc2,0xe1,0xed,0x22,0xf2,0x65,0x11,0x39,0x51,0x4a,0xfd,0x67,0xa5,0xd4,
0x93,0x71,0xc1,0x2f,0xc,0x43,0xf1,0x7d,0x5f,0x2,0xdf,0xef,0x7,0xc0,0x60,0xc4,
0xca,0xdf,0x50,0xf8,0xcb,0x3b,0xc2,0x37,0x21,0xe8,0xf5,0x55,0x2a,0x95,0x77,0x55,
0x2a,0x95,0xbf,0x10,0x91,0xbf,0x15,0x91,0x5f,0xcd,0x53,0x29,0xd4,0xb2,0x54,0xf1,
0x5c,0xf7,0xae,0x6d,0xf3,0x75,0x4,0x3b,0x0,0x0,0xe6,0x4b,0xde,0x22,0x4e,0x5c,
0x98,0x4b,0xa,0x80,0x69,0x9f,0x99,0xf1,0x9c,0xea,0x22,0xf2,0x9f,0x44,0xe4,0x44,
0x44,0x7e,0x47,0x44,0x9e,0x70,0x55,0xfb,0x82,0x20,0x10,0x3f,0x8,0x7a,0x1,0x30,
0xba,0x8d,0x62,0xa0,0xcf,0x5f,0x9e,0xe0,0x27,0x92,0x69,0x64,0xef,0x13,0x4a,0xa9,
0x2f,0x88,0xc8,0xbf,0x13,0x91,0xc7,0xf2,0xe,0xe0,0x88,0x4b,0xe1,0xe6,0x76,0x96,
0x1f,0x50,0x5a,0x89,0x36,0xcb,0x73,0x0,0x0,0x60,0x7e,0xc4,0x5,0xb4,0xb8,0xe7,
0x93,0xa,0x4c,0x71,0xef,0x9f,0x23,0xc,0x3e,0xa1,0x94,0xfa,0x9c,0x52,0xea,0x59,
0xa5,0xd4,0x67,0x95,0x52,0x7f,0xac,0x9b,0x78,0x7d,0xdf,0x97,0x30,0x8,0x24,0x8,
0xc3,0xcb,0x66,0xdf,0x32,0x2a,0x7f,0x76,0x73,0xae,0xbd,0xcf,0xd5,0xf4,0xeb,0xea,
0xfb,0x67,0xf9,0x98,0x88,0xfc,0x7d,0xa5,0x52,0xf9,0x9c,0x88,0x3c,0x96,0x76,0x22,
0x59,0xbe,0x70,0xbd,0x9d,0x35,0xf8,0x25,0x55,0xfe,0x68,0xd2,0x5,0x0,0x60,0x31,
0xa4,0xfd,0xcd,0x4f,0x6a,0xf2,0x4d,0xcb,0x7,0x79,0x32,0x84,0xeb,0xf3,0xad,0xf3,
0x7a,0x9b,0x52,0xea,0xdb,0x61,0x18,0xfe,0xbf,0x30,0xc,0xdf,0xe5,0x47,0x4d,0xbd,
0xba,0xea,0xe7,0xeb,0x5b,0x59,0x3,0x3e,0x5c,0xfd,0xf9,0xe2,0xa6,0x76,0x31,0xef,
0x1d,0x9e,0x10,0x91,0xdf,0x17,0x91,0x4f,0xe8,0x1d,0x71,0x15,0xbf,0xac,0x21,0xcf,
0x7c,0x9c,0x16,0xf0,0x5c,0xef,0x13,0xf7,0x79,0x69,0xe7,0x3,0x0,0x0,0xe6,0x4f,
0xd6,0xe6,0x5f,0x7b,0x3b,0x6b,0x57,0xb2,0x3c,0xfb,0x5d,0xe7,0x10,0x4,0xc1,0x1d,
0xdf,0xf7,0xff,0x2e,0xc,0x82,0xcf,0x6,0x41,0xf0,0xb5,0x7e,0xf3,0xaf,0xef,0x4b,
0x50,0xc6,0x54,0x2f,0x45,0xe7,0xf4,0xd3,0xac,0xc7,0x4f,0x8b,0xc8,0x9f,0x88,0xb1,
0x2,0x47,0x5e,0x49,0x5f,0x5a,0x9e,0xe0,0x97,0x16,0xfa,0xf2,0x36,0x3f,0x3,0x0,
0x80,0xf9,0x92,0xa7,0xe9,0x37,0x2e,0x5f,0xa4,0x35,0xe9,0xc6,0x3d,0xe7,0x3a,0x56,
0x29,0xd5,0x6f,0xd6,0xd,0xc3,0xf0,0x31,0x3f,0x8,0xbe,0x1a,0x4,0xc1,0xfb,0x3,
0xdf,0xff,0x57,0x7e,0x10,0xbc,0x19,0xea,0x10,0x38,0xea,0x68,0xdf,0xac,0x83,0x38,
0xec,0xe0,0xe7,0x8,0x82,0x9f,0x16,0x91,0xbf,0x91,0x68,0xa9,0xb5,0xa4,0xc1,0x1c,
0x49,0x15,0x3d,0xd7,0x17,0x91,0x54,0x8a,0xcd,0x72,0x73,0x1d,0x9f,0xe7,0x3d,0x0,
0x0,0xc0,0x6c,0xca,0xf2,0xf7,0x3d,0x2e,0x1f,0xb8,0xb6,0xcd,0x7b,0xfb,0xf5,0x59,
0xce,0x23,0xe9,0x71,0x18,0xf5,0xeb,0xeb,0xf7,0xef,0xeb,0x85,0xbd,0x8f,0xf9,0x41,
0xf0,0x77,0x81,0xef,0xef,0xf8,0x46,0x5,0x70,0x14,0x43,0x3,0x3e,0xd2,0xe6,0xf4,
0xd3,0x8f,0x2d,0xff,0x4d,0x44,0xfe,0x7d,0x9e,0xf,0x4e,0x4b,0xca,0x49,0x41,0xcd,
0x7c,0xec,0xda,0x76,0x7d,0x46,0x96,0x12,0x2f,0x0,0x0,0x98,0x5f,0x49,0x7f,0xf3,
0x5d,0x81,0xce,0xf5,0x38,0xad,0xe9,0xd7,0xf5,0xbe,0x49,0xc7,0x99,0xcf,0x9b,0xa3,
0x7b,0xcd,0xbe,0x7e,0x61,0x10,0x6c,0x4,0x61,0xb8,0x17,0xf8,0xfe,0x47,0x83,0x20,
0xf8,0xc1,0xa8,0x53,0xbd,0x2c,0xa7,0x4d,0xd7,0x12,0x37,0xba,0x37,0x7a,0xfc,0x98,
0x88,0xfc,0xf,0x11,0x79,0x36,0x4b,0x88,0xca,0xda,0xe,0xee,0x7a,0x5d,0xd6,0xf0,
0x67,0x7e,0x4e,0xd6,0x1f,0xa,0x0,0x0,0x58,0xc,0x79,0x2,0xa0,0xb9,0x2f,0x2e,
0xb0,0xa5,0xb5,0x5e,0x26,0xbd,0x9f,0xf9,0x7c,0x7f,0xf5,0xe,0xdd,0xec,0xab,0x2b,
0x7f,0x61,0xa8,0x43,0xe0,0xe3,0x41,0x10,0xfc,0xb9,0xef,0xfb,0x9f,0xa,0xc3,0xf0,
0x8f,0x72,0x5e,0xf6,0x80,0xe5,0x2c,0x73,0xf9,0x89,0x38,0xa7,0x75,0x79,0x5c,0x44,
0xfe,0x4c,0x44,0x3e,0xa4,0xf7,0x65,0xa9,0xba,0x25,0x7d,0x19,0x45,0x9b,0x71,0xed,
0xcf,0x21,0xfc,0x1,0x0,0x0,0x97,0xbc,0xc5,0xaa,0xb4,0x9c,0x11,0x97,0x39,0xec,
0xf7,0x4b,0x6a,0xa5,0xd4,0x4d,0xbe,0x46,0x7f,0x3f,0x31,0x7,0x79,0xe8,0xbe,0x7e,
0xbe,0xef,0x3f,0x16,0x4,0xc1,0xb7,0x82,0x20,0x58,0x15,0x91,0xe7,0xb3,0x5f,0xf5,
0xa0,0xca,0x2b,0xaf,0xbc,0x92,0xb8,0x72,0x87,0x88,0x33,0xf8,0x3d,0x26,0x22,0x7f,
0x21,0x22,0x77,0xec,0x8b,0x8b,0xdb,0x76,0x85,0xb6,0x51,0x6e,0xe6,0x67,0x14,0x6d,
0xf6,0x25,0xf8,0x1,0x0,0xb0,0x98,0x8a,0x34,0x1,0x27,0x65,0x1b,0x73,0x5f,0xd2,
0x2d,0xc,0xc3,0xa1,0xed,0x30,0xc,0xc5,0xf3,0x3c,0xf1,0x3c,0x4f,0x7c,0xcf,0x13,
0xcf,0xf7,0x7b,0xdb,0x7a,0x6a,0x97,0x68,0x3b,0xb8,0xc,0x81,0x12,0x6,0xc1,0x7f,
0xfc,0x2f,0x5f,0xf9,0xca,0x57,0x8a,0x5c,0x7b,0xe5,0xd5,0x57,0x5f,0x4d,0xec,0xeb,
0xe7,0xb8,0xbf,0x26,0xbd,0x8a,0xdf,0xaf,0x24,0x7d,0x59,0x45,0xbe,0x10,0xf3,0xcb,
0x48,0x7b,0x4d,0xd2,0x17,0x1f,0x77,0x2e,0x2e,0x4,0x40,0x0,0x0,0x16,0x4b,0xda,
0xdf,0xfe,0xa4,0x96,0xc3,0xb4,0xdc,0x51,0x24,0xf8,0x5,0x41,0xd0,0xf,0x7f,0xfd,
0x10,0x68,0x84,0x3e,0xfb,0x16,0x46,0xfd,0x1,0xc3,0x20,0xf8,0xe4,0x7f,0x7d,0xfe,
0xf9,0xdc,0x4d,0xc0,0x95,0x57,0x5f,0x7d,0x35,0x75,0xad,0xde,0xfe,0xc1,0xbd,0xed,
0xaf,0x8b,0xc8,0x6f,0x24,0x7d,0x51,0xae,0x64,0x6c,0x7f,0x29,0xe6,0x17,0x10,0x17,
0xfc,0x5c,0xc7,0xc4,0xbd,0xa7,0xeb,0xde,0x75,0x3e,0x49,0xfb,0x0,0x0,0xc0,0x7c,
0xc9,0xfb,0xf7,0x3e,0x2d,0x43,0x24,0x15,0x99,0x92,0xa,0x56,0xae,0xe0,0x67,0x57,
0xfd,0x6,0xc2,0x9f,0x19,0x2,0x8d,0x5b,0x10,0x4d,0xf2,0x1c,0x55,0x1,0x83,0xc0,
0xf7,0x3f,0xfa,0xd5,0xdf,0xfb,0xbd,0x17,0xf2,0x5c,0x63,0xe5,0xa7,0x3f,0xfd,0x69,
0xea,0x84,0xce,0xc6,0xf6,0x6f,0x8b,0xc8,0x17,0xd2,0xbe,0xac,0xb8,0xca,0x5c,0x52,
0x2,0x36,0x83,0x5f,0x5c,0x30,0xcc,0x52,0xf9,0x8b,0xfb,0xc1,0xb8,0x1e,0xa7,0x5d,
0x7,0x0,0x0,0x58,0xc,0x71,0x7f,0xff,0x8b,0x56,0x1,0xb3,0x56,0xff,0xc2,0x30,
0x94,0x6e,0xb7,0x2b,0xbe,0xe7,0x49,0xd7,0xf3,0xc4,0xeb,0x76,0xc5,0x8b,0xaa,0x7e,
0x5e,0x4c,0x0,0xb4,0xaa,0x7f,0xe7,0x41,0x10,0xfc,0xf2,0xef,0xff,0xc1,0x1f,0xbc,
0x9c,0xf5,0x5a,0x2b,0xc7,0xc7,0xc7,0xa9,0x55,0xbf,0xe8,0xfe,0x43,0xd2,0xeb,0xe7,
0x97,0xf8,0xc5,0x8c,0x5a,0xfe,0x4c,0xa,0x87,0x59,0x2b,0x7f,0x49,0xdb,0x49,0xfb,
0x0,0x0,0xc0,0xfc,0x1b,0xb5,0x18,0x14,0x97,0x3b,0x92,0x72,0x8a,0xab,0xe0,0xa5,
0x94,0x12,0x3f,0xea,0xdf,0xe7,0x75,0xbb,0x3,0xe1,0xcf,0xeb,0x76,0x7,0x82,0x9f,
0xde,0xee,0x2f,0xf3,0x66,0xac,0xf8,0x11,0xf8,0x7e,0x33,0x8,0x82,0x7f,0xf4,0x3f,
0xbf,0xf5,0xad,0x37,0xb2,0x5c,0xff,0xb2,0x88,0xa4,0x36,0xf7,0x8a,0xc8,0xdb,0x45,
0xe4,0x5b,0x69,0x5f,0x8e,0x2b,0x1d,0xe7,0xd,0x7e,0x59,0xaa,0x7e,0x49,0x95,0xbf,
0x3c,0x1,0x30,0xee,0x3a,0x0,0x0,0x0,0xd2,0x8a,0x47,0x69,0xad,0x9e,0xae,0xc7,
0xae,0x63,0x95,0x39,0xcd,0x8b,0xe3,0x66,0xcf,0xfd,0xd7,0xf,0x7e,0x97,0xd5,0xbf,
0x86,0xef,0xfb,0xdf,0x16,0x91,0xf,0x67,0xb9,0xae,0xca,0x83,0x7,0xf,0xd2,0xc2,
0xdf,0xb5,0x4a,0xa5,0xf2,0x57,0x22,0xf2,0xbe,0x3c,0x5f,0x40,0xd6,0xc4,0x1b,0xd7,
0xf9,0xb1,0xec,0xf0,0x17,0x87,0xd0,0x7,0x0,0x0,0x8a,0x14,0x89,0xb2,0xb4,0x7c,
0x9a,0xdb,0xae,0x2c,0xe4,0x79,0x9e,0x74,0x2f,0x2e,0xa4,0xeb,0x79,0xd2,0xed,0x76,
0xfb,0x95,0xbf,0xee,0xc5,0xc5,0x65,0x55,0x30,0x6e,0x0,0x88,0x11,0x2,0xa3,0xdb,
0x7f,0xf8,0xdf,0xdf,0xf9,0xce,0xef,0xa6,0x5d,0x6b,0xe5,0xc1,0x83,0x7,0xb2,0xb4,
0xb4,0xd4,0x7b,0xe0,0xe,0x7f,0xbf,0x5d,0xa9,0x54,0x86,0xfa,0xf9,0xa5,0x5,0x3f,
0x73,0x3b,0x2d,0xe4,0x25,0x5,0xc1,0xbc,0xe1,0x2f,0xee,0x87,0x44,0xe5,0xf,0x0,
0x0,0x64,0x95,0xa5,0xd9,0xd7,0xf5,0x38,0x2e,0x4,0xba,0x5a,0x40,0x75,0x7f,0x3f,
0xf3,0xa6,0x9b,0x7b,0xbb,0xdd,0xae,0xf8,0xbe,0xdf,0xef,0xf,0x38,0x34,0xfd,0x4b,
0xd4,0x4,0xac,0xa7,0x7e,0xd1,0x3,0x40,0xc2,0x30,0xbc,0xfd,0x7f,0x5e,0x78,0xe1,
0xc7,0x49,0xd7,0x56,0xf9,0xd9,0xcf,0x7e,0xe6,0x5c,0xdd,0x23,0xda,0xde,0x10,0x91,
0xbf,0x8f,0x56,0xf2,0xc8,0x74,0xc1,0x49,0x17,0xab,0x2f,0xd4,0xe,0x7c,0x49,0x21,
0x30,0x2d,0xfc,0xb9,0xee,0xd3,0xce,0x33,0x9,0x21,0x10,0x0,0x0,0xd8,0xe2,0xf2,
0x41,0x52,0x93,0xae,0xbe,0x8f,0xbb,0xe9,0x70,0x67,0x6,0xbf,0xae,0x11,0xfe,0xf2,
0x4e,0xff,0x12,0xad,0x9,0x7c,0x2f,0xc,0xc3,0x5f,0xfa,0xbf,0x3f,0xf8,0x41,0xec,
0x1a,0x70,0xcb,0x29,0xd7,0xfa,0x75,0x11,0x79,0x2c,0xcb,0x5,0xc7,0x35,0xfb,0xa6,
0x55,0xfe,0x8a,0x84,0x3f,0xf3,0x33,0x5c,0x5f,0x74,0xd2,0xf,0x23,0xd,0xe1,0xf,
0x0,0x0,0x64,0x91,0xd4,0x14,0x1c,0xd7,0x32,0x69,0x1e,0x37,0x70,0x8b,0xeb,0xf3,
0x17,0x35,0xe9,0x9a,0xdb,0x3,0xd5,0xbf,0x68,0x19,0x38,0x63,0xfa,0x97,0xa7,0xc3,
0x30,0xfc,0xb4,0x88,0x7c,0x23,0xee,0xbc,0x93,0x2a,0x7f,0x9f,0x10,0x91,0x6f,0x67,
0xb9,0xe0,0x2c,0xa5,0x4d,0x57,0x95,0x2f,0x4b,0xf8,0xd3,0xdb,0xf6,0xfb,0x9b,0x8f,
0xe3,0xce,0x27,0xee,0x7c,0x1,0x0,0xc0,0x62,0xb8,0xca,0xbf,0xff,0x79,0x9a,0x7f,
0xc3,0x30,0xec,0x55,0xfe,0x2e,0x2e,0xe4,0xa2,0xdb,0xed,0xf5,0xfb,0x33,0xaa,0x7e,
0xfa,0xa6,0xa7,0x80,0xe9,0xdf,0xdb,0xd5,0x3f,0xcf,0xeb,0xd,0x2,0x31,0xa7,0x7f,
0x9,0xc3,0x37,0xc2,0x30,0xdc,0xfe,0xab,0xbf,0xfe,0xeb,0xd7,0x5c,0xe7,0x19,0x57,
0xf9,0x7b,0x42,0x44,0x7e,0x27,0xed,0xc2,0xcc,0x8b,0x71,0x5d,0x58,0xd6,0xe0,0x97,
0xa7,0xfa,0xe7,0xfa,0xcc,0xb8,0x2f,0x3c,0xee,0x71,0x1c,0x2,0x22,0x0,0x0,0x28,
0x43,0x5a,0x5,0x50,0x29,0xd5,0x5f,0xc7,0x57,0x39,0xe6,0xfe,0xeb,0x8f,0xf4,0x35,
0x46,0xfc,0x86,0xbd,0x69,0x5d,0x86,0x6,0x7d,0x98,0x4b,0xbf,0x45,0xd3,0xbf,0x3c,
0x19,0x86,0xe1,0x97,0x45,0xe4,0x93,0xae,0x73,0x5b,0xb6,0xa6,0x74,0xd1,0x3e,0xad,
0x94,0x7a,0xbb,0xf9,0x5c,0x5c,0x35,0x2d,0x4b,0x9b,0x76,0x5c,0xf0,0xd3,0x17,0xe2,
0x6a,0x2,0x2e,0xd2,0xec,0x9b,0xb4,0x1d,0xf7,0x43,0x1,0x0,0x0,0x48,0x13,0x93,
0x97,0x6,0xa4,0xb5,0x3c,0xe,0x65,0x23,0xa5,0x7a,0xb7,0x94,0x69,0x5e,0x74,0x7f,
0xbe,0x81,0x26,0x60,0x63,0xa,0x98,0x30,0xa,0x7d,0xe6,0xdc,0x7f,0x61,0x18,0x7e,
0xe2,0x3d,0x3b,0x3b,0x5f,0x7a,0x79,0x7f,0xff,0x15,0xfb,0x9c,0x5c,0x95,0xbf,0xc7,
0x44,0xe4,0x73,0x71,0x17,0x61,0xee,0xcf,0xd2,0xdc,0xeb,0x9a,0xc9,0xda,0x3c,0x71,
0x57,0xf5,0x6f,0xd4,0xca,0x5f,0xd2,0xb9,0x67,0x7d,0x1e,0x0,0x0,0x2c,0x9e,0xb8,
0x90,0x37,0x4a,0x6e,0xb0,0xf3,0xcb,0x50,0xfe,0x71,0xed,0xb3,0x42,0x9e,0x6e,0x26,
0xd6,0x8f,0xcd,0x6a,0xdf,0xd0,0xdc,0x7f,0xbd,0xe3,0xae,0x85,0x61,0xf8,0x39,0x11,
0xf9,0x94,0x7d,0x3e,0xcb,0xf6,0xc9,0x55,0x2a,0x95,0x5f,0x17,0x91,0xb7,0x65,0xb9,
0x0,0xf3,0x42,0xf2,0x56,0xfb,0xec,0x0,0x98,0xa5,0xc9,0x37,0x6f,0x73,0x6f,0xdc,
0x3e,0x0,0x0,0x0,0x97,0xb4,0xdc,0x90,0xa5,0x2,0x18,0xf7,0x9e,0xb1,0xe1,0x2f,
0x25,0x0,0x6,0xe6,0xb6,0x59,0xed,0x33,0x9b,0x7a,0xad,0x69,0x5f,0xa2,0x2c,0xf5,
0xec,0xd3,0x5b,0x5b,0x5f,0xbc,0x77,0x78,0xd8,0x34,0xcf,0xc7,0xae,0xfc,0x5d,0x53,
0x4a,0xfd,0xa6,0xeb,0xc2,0x5c,0x65,0x4b,0x73,0xdb,0xd5,0xcf,0x2f,0xee,0x2,0xe3,
0x2a,0x7f,0x65,0x7,0xbf,0xa4,0xfd,0x0,0x0,0x0,0x59,0xe9,0x6c,0x54,0x34,0x57,
0xc,0x65,0x24,0x33,0xef,0x24,0x54,0xfd,0x9c,0xc5,0xb3,0xcb,0x69,0x5d,0x6,0x57,
0xff,0x30,0xaa,0x81,0x11,0xdd,0x9a,0xfb,0x9c,0x79,0x2e,0x4b,0xd6,0x45,0xfc,0x8a,
0x88,0x34,0xd2,0x9a,0x5b,0xb3,0x4,0xbf,0xb4,0x0,0x98,0xd6,0xfc,0x1b,0xd7,0x1c,
0x9c,0xd4,0x4,0xec,0x3a,0x27,0x0,0x0,0x80,0x51,0xa5,0x15,0xa6,0xd2,0x5e,0x63,
0x3e,0xe,0xc3,0x50,0x94,0xf9,0x7c,0xef,0xc9,0xe1,0xbe,0x80,0x56,0x97,0xb9,0xc0,
0xa8,0x4,0xda,0x7d,0xfd,0x1c,0xc1,0x4f,0xfb,0xf5,0xa7,0xb7,0xb6,0x9e,0x30,0x77,
0x2c,0x99,0x27,0x28,0x22,0xcf,0x26,0x9d,0x7c,0xda,0xc5,0xbb,0x9a,0x6f,0x93,0xc2,
0x9e,0xeb,0x98,0xa4,0xf7,0xcf,0x12,0xfa,0x0,0x0,0x0,0xae,0x52,0x96,0x50,0xe8,
0x6c,0xc5,0x8c,0x6e,0x2a,0xa,0x7c,0xe6,0x73,0xb1,0x95,0x40,0xa3,0xd9,0xd7,0x37,
0x6,0x82,0xe8,0xe7,0x1d,0x1e,0x17,0x91,0x8f,0x99,0x3b,0x96,0x8c,0xed,0x27,0x95,
0x52,0xff,0x7c,0x94,0xaa,0x9f,0x1d,0x4,0xe3,0xfa,0xf3,0xa5,0xd,0xf4,0xb0,0xf7,
0xf5,0xbf,0x24,0x21,0xf4,0x1,0x0,0x80,0xd9,0x32,0x94,0x53,0x12,0xba,0xaa,0xe9,
0xfc,0xd3,0xf,0x85,0x29,0xad,0xa7,0xc1,0x60,0x1f,0xbf,0xb8,0x53,0x18,0x28,0xee,
0x2d,0x19,0x27,0xf5,0x9,0xe9,0xb5,0xd,0xf,0x9d,0x48,0x91,0xaa,0x5f,0x5c,0x10,
0x74,0x85,0x40,0xf3,0x71,0x5c,0xe0,0xb3,0xbf,0x3c,0x42,0x1f,0x0,0x0,0x98,0x76,
0xae,0xc,0x93,0xe5,0x35,0xa1,0xd5,0x1c,0x6c,0x67,0x27,0x73,0xea,0x17,0x1d,0xfe,
0x12,0xbc,0xff,0xe9,0xad,0xad,0x86,0x7e,0xb0,0x64,0x9c,0xd4,0xaf,0x8e,0x5a,0xf5,
0x4b,0xaa,0xee,0xc5,0x55,0xf5,0xf2,0xdc,0xec,0x2f,0x12,0x0,0x0,0x60,0x5a,0xc5,
0xe6,0x15,0x3d,0xb0,0xb6,0x52,0xb9,0xdc,0x76,0x34,0x9,0x9b,0xcd,0xc1,0xca,0x51,
0x9,0xcc,0x50,0xf1,0xd3,0xae,0x49,0xaf,0xc8,0x27,0x22,0x97,0xcd,0xbe,0x4f,0x8a,
0xc8,0x7b,0x5d,0x27,0x9d,0xa7,0xea,0xe7,0x3a,0xce,0x55,0xd9,0x4b,0x1b,0xe1,0x6b,
0x7e,0x61,0xae,0x36,0x73,0x0,0x0,0x80,0x59,0x36,0x34,0xb3,0x8a,0x35,0x9a,0x58,
0x45,0x95,0xbf,0x81,0xc0,0xa7,0xdc,0x93,0x42,0x67,0xcc,0x46,0x1f,0xd0,0x1b,0xba,
0xd9,0xf7,0x43,0x4a,0xa9,0x6b,0xa3,0xf6,0xf5,0xb3,0x43,0x5c,0xdc,0xc8,0xdf,0xb4,
0xea,0x1e,0xcd,0xbc,0x0,0x0,0x60,0x96,0xa5,0x65,0x96,0x8a,0xf4,0x2,0xa0,0xbe,
0x59,0x2f,0x1e,0x68,0xf2,0xd5,0xef,0x17,0xd7,0xb2,0x9a,0xd1,0x7b,0x9f,0xde,0xda,
0x7a,0x5c,0xe4,0xb2,0xd9,0xf7,0x8e,0xeb,0xa4,0x5d,0x61,0x2c,0xed,0x16,0xd7,0xb4,
0x9b,0x25,0x0,0xda,0x9f,0x95,0xf5,0xb,0x4,0x0,0x0,0x98,0x15,0x95,0xa8,0xb9,
0xb7,0x22,0xbd,0x10,0x28,0x29,0xab,0x8a,0x38,0x33,0x95,0x35,0x4e,0x22,0x83,0xc7,
0x45,0xe4,0x3d,0x22,0x97,0x95,0xbf,0xf7,0xa5,0x55,0xfd,0xb2,0x56,0xfb,0xb2,0x3c,
0x6f,0xbf,0xb7,0x7d,0x91,0x4,0x3f,0x0,0x0,0x30,0x8f,0x6,0x2a,0x7d,0x46,0x9f,
0x3f,0x5d,0x9,0x34,0xe9,0xb9,0x0,0x45,0x8c,0xdc,0x14,0x5,0xbf,0x84,0xa9,0x5d,
0x92,0x7c,0x40,0xa4,0x17,0xfe,0xea,0x22,0xf2,0x4e,0xfb,0xd9,0xac,0x55,0xbf,0xa4,
0xe7,0xe2,0x82,0x60,0x96,0xca,0x9f,0xbd,0xd,0x0,0x0,0x30,0xab,0x74,0xb0,0x33,
0xef,0xfb,0x37,0xc7,0x71,0x12,0x93,0xb1,0xf4,0x28,0xe0,0x82,0xdd,0xe1,0xde,0x2b,
0x22,0xb2,0xac,0x94,0x7a,0x3a,0xee,0x88,0xb8,0x2a,0x5d,0xd6,0xb0,0x97,0xf5,0x66,
0x7f,0x9e,0xbd,0xd,0x0,0x0,0x30,0x4b,0x2a,0x95,0xca,0x50,0x96,0x31,0xf7,0x55,
0x8c,0x66,0xdf,0xca,0xd2,0x52,0x6c,0xdf,0xbf,0xde,0x9d,0x91,0x99,0x94,0x2a,0xd2,
0xdf,0x4f,0xdb,0x11,0xe9,0xad,0xed,0xbb,0x65,0x3f,0x63,0x87,0xb0,0xb8,0xa6,0xd9,
0x51,0xc2,0x5e,0x52,0xd0,0x23,0xf8,0x1,0x0,0x80,0xb9,0x67,0x4e,0xf5,0x12,0xd3,
0xef,0x4f,0xeb,0x7,0xbf,0xe8,0xbe,0xa0,0xfa,0xd3,0x5b,0x5b,0x8d,0x65,0xa5,0xd4,
0x50,0x93,0x6f,0xff,0x43,0x24,0x3e,0xec,0x99,0xc7,0x95,0x51,0xf9,0x23,0xf0,0x1,
0x0,0x80,0x79,0x62,0x57,0xff,0xf4,0xe3,0x81,0x26,0x5f,0xab,0xd9,0xd7,0x64,0x67,
0xae,0xd0,0x8,0x80,0x5,0xfa,0xfb,0x69,0x1b,0xcb,0x22,0xd2,0xb0,0xf7,0x66,0xed,
0xef,0x97,0xb7,0x29,0xd8,0x3e,0xce,0xfe,0x3c,0x7b,0x1b,0x0,0x0,0x60,0x9e,0xc,
0xf5,0xf9,0x13,0x71,0x6,0x40,0x67,0x2b,0xec,0xe8,0x95,0x3f,0x11,0x91,0x77,0x2c,
0x89,0x11,0xfe,0x5c,0x95,0xb8,0x22,0x61,0x2f,0xcb,0x7b,0xd9,0x17,0xe6,0x7a,0xc,
0x0,0x0,0x30,0xcb,0x86,0xfa,0xf1,0xd,0x1f,0xd0,0x9b,0xf6,0xc5,0xd5,0xe7,0x4f,
0xac,0xbc,0xd5,0xdb,0x31,0x4a,0xd5,0x4f,0x44,0xa4,0xb1,0xac,0x94,0x5a,0x75,0x7d,
0x90,0xfd,0x81,0x71,0xcf,0x9b,0xf7,0x71,0xaf,0xb7,0xb7,0x93,0xde,0xb,0x0,0x0,
0x60,0x5e,0xd,0xd,0xfa,0x30,0xfa,0xfc,0x55,0xac,0xfe,0x7f,0x76,0x32,0x2a,0xa9,
0xbb,0xdc,0x93,0x4b,0xd2,0x5b,0xda,0xcd,0xf9,0xa6,0x59,0xfb,0xf6,0xc5,0x3d,0x9f,
0xf4,0xbe,0x71,0x61,0x10,0x0,0x0,0x60,0x9e,0xd8,0x15,0xbd,0x81,0x26,0x5f,0x11,
0x59,0x32,0x9e,0x8f,0xad,0x14,0xea,0x1c,0x25,0x23,0x17,0xcc,0x56,0x97,0x95,0x52,
0x8f,0xf,0xbe,0x77,0x72,0x53,0xad,0xeb,0xb8,0x2c,0x3,0x41,0xcc,0xd7,0xc,0x5f,
0xf,0x21,0x10,0x0,0x0,0x2c,0xe,0xbd,0xca,0x47,0xbf,0xd9,0x37,0xe5,0x78,0xbd,
0xce,0xaf,0x8c,0x5e,0x40,0x7b,0x62,0x69,0xe0,0x8d,0x63,0x82,0x9f,0xf9,0x7c,0x5c,
0x5f,0x3e,0xfb,0x98,0xd8,0x93,0x27,0xe8,0x1,0x0,0x80,0x5,0x53,0xc9,0x52,0xdd,
0x8b,0xd1,0xcf,0x5b,0x52,0x4a,0x8e,0xba,0xb6,0x9c,0xd6,0x9f,0xcf,0xde,0xd6,0x8f,
0xf3,0x4,0xc5,0x2c,0x83,0x41,0x0,0x0,0x0,0x16,0x89,0xd9,0xe7,0xcf,0xbe,0xb7,
0x99,0x1,0x70,0x44,0xd9,0x2b,0x7f,0x71,0x4d,0xbb,0xe6,0xbd,0xfd,0x9a,0xa4,0x93,
0x7,0x0,0x0,0x58,0x24,0xce,0xbe,0x7f,0x62,0x34,0x1,0x3b,0xc,0xe4,0x2a,0xa5,
0xfa,0xcd,0xbe,0xa3,0xe8,0x87,0xbf,0x3c,0xd3,0xae,0x24,0xf5,0x1,0xb4,0x1f,0x27,
0x55,0xf8,0x8,0x82,0x0,0x0,0x60,0x11,0xd,0x8c,0xf2,0xb5,0xf7,0xb9,0xa4,0xcc,
0x9e,0x92,0x47,0x6c,0xb3,0xaf,0xb9,0x9d,0x34,0x42,0x37,0x4f,0x9f,0x40,0x9a,0x7a,
0x1,0x0,0x0,0xac,0xa0,0x97,0xb1,0xf,0xa0,0x52,0xaa,0x8c,0x66,0x5f,0x49,0x6c,
0xf6,0x4d,0x3d,0x81,0x11,0x52,0x28,0x1,0x10,0x0,0x0,0x2c,0x9a,0xb8,0xea,0x5e,
0x25,0xe6,0xb9,0x81,0xc1,0x1e,0x25,0x9d,0xc3,0x50,0xb3,0x6f,0xd2,0x54,0x2f,0x49,
0xfd,0xfe,0xe2,0x50,0xed,0x3,0x0,0x0,0x18,0x16,0xb7,0xaa,0x47,0x9f,0xd1,0xd7,
0xaf,0xcc,0x1c,0x35,0xd4,0xec,0xdb,0xfb,0x8c,0x62,0x1f,0x90,0x65,0x5e,0x3f,0x42,
0x20,0x0,0x0,0x80,0x7b,0x4d,0xdf,0x54,0x25,0xe4,0x28,0x67,0xb3,0x6f,0xdc,0xe3,
0xe1,0xcf,0xcf,0x17,0xf2,0x8,0x7e,0x0,0x0,0x60,0xd1,0xc5,0xad,0xf8,0x11,0xa7,
0x9f,0x9e,0x4a,0xca,0x51,0xb1,0xcd,0xbe,0xe6,0xfe,0x2c,0xfb,0x92,0x10,0xfa,0x0,
0x0,0x0,0x1c,0xa,0x4e,0xf8,0x3c,0x8a,0xa5,0xb8,0x37,0x8a,0xb,0x7c,0x59,0x26,
0x85,0x2e,0xfb,0x24,0x1,0x0,0x0,0xe6,0x55,0xd6,0xf8,0x57,0xd6,0x38,0x8a,0xc4,
0x66,0xdf,0xbc,0xb2,0x9e,0x14,0x81,0x10,0x0,0x0,0xc0,0x90,0xd4,0xec,0x1b,0x4d,
0xee,0xdc,0xdf,0x1e,0xd1,0xd2,0x28,0xab,0x71,0x64,0x59,0xa,0x2e,0xeb,0x7b,0x1,
0x0,0x0,0xe0,0xd2,0x50,0x6b,0x6b,0x49,0xef,0xbb,0x94,0x76,0xc0,0x28,0xa1,0x8d,
0xc0,0x7,0x0,0x0,0x30,0x5d,0x9c,0xcb,0xbb,0x11,0xda,0x0,0x0,0x0,0xae,0x88,
0x6b,0x72,0xe7,0x94,0xc7,0xa3,0x48,0xad,0xfc,0x89,0x14,0x9b,0xb6,0x85,0x0,0x9,
0x0,0x0,0x30,0x7d,0x62,0xc3,0x5f,0xd6,0xd1,0xbe,0x0,0x0,0x0,0x98,0x1d,0xb1,
0x53,0xbd,0x24,0xa1,0x89,0x18,0x0,0x0,0x60,0x74,0x89,0xcb,0xbb,0x19,0xca,0xcc,
0x5b,0x43,0x95,0xbf,0x51,0x96,0x76,0x3,0x0,0x0,0x40,0x79,0x6,0xf2,0x55,0xd9,
0x2b,0x7c,0x0,0x0,0x0,0x60,0xa,0x95,0x5c,0x60,0x4b,0x9c,0xe7,0xaf,0x6c,0x54,
0x7,0x1,0x0,0x0,0xb2,0x19,0x57,0x6a,0x4a,0xac,0xfc,0x8d,0x23,0xac,0x11,0x0,
0x1,0x0,0x0,0x26,0xe7,0x4a,0x9a,0x7d,0x9,0x7c,0x0,0x0,0x0,0xe5,0x28,0x75,
0x6d,0x5f,0x0,0x0,0x0,0xcc,0x37,0xc2,0x1f,0x0,0x0,0xc0,0x2,0x21,0xfc,0x1,
0x0,0x0,0xcc,0x80,0xb2,0xba,0xd1,0x11,0xfe,0x0,0x0,0x0,0x16,0x8,0xe1,0xf,
0x0,0x0,0x60,0x81,0x10,0xfe,0x0,0x0,0x0,0x16,0x8,0xe1,0xf,0x0,0x0,0x60,
0x81,0x10,0xfe,0x0,0x0,0x0,0x16,0x8,0xe1,0xf,0x0,0x0,0x60,0x81,0x10,0xfe,
0x0,0x0,0x0,0x16,0x8,0xe1,0xf,0x0,0x0,0x60,0x81,0x10,0xfe,0x0,0x0,0x0,
0x16,0xc8,0xf2,0xa4,0x4f,0x0,0x0,0x80,0x51,0xd5,0xeb,0x75,0xb9,0x7d,0xfb,0xb6,
0x54,0xab,0xd5,0x81,0xfd,0xad,0x56,0x6b,0xe0,0x71,0xa7,0xd3,0x91,0x4e,0xa7,0x23,
0xf,0x1f,0x3e,0x94,0xd3,0xd3,0xd3,0xab,0x3c,0x45,0x60,0x6a,0x10,0xfe,0x0,0x0,
0x33,0x6f,0x7b,0x7b,0x7b,0x28,0xf8,0x89,0x88,0xac,0xac,0xac,0xc4,0xbe,0xc6,0xf3,
0x3c,0xf9,0xde,0xf7,0xbe,0x37,0xce,0xd3,0x2,0xa6,0x12,0xcd,0xbe,0x0,0x80,0x85,
0xe4,0xa,0x8b,0xc0,0x22,0x20,0xfc,0x1,0x0,0x66,0x9e,0xdd,0xbc,0x3b,0xae,0xd7,
0x0,0xf3,0x80,0xf0,0x7,0x0,0x98,0x79,0x9e,0xe7,0xe5,0x7e,0xcd,0xf1,0xf1,0xf1,
0x18,0xce,0x4,0x98,0x7e,0x84,0x3f,0x0,0xc0,0xcc,0x7b,0xf8,0xf0,0x61,0xae,0xe3,
0x5b,0xad,0x16,0x3,0x3e,0xb0,0xb0,0x8,0x7f,0x0,0x0,0x0,0xb,0x84,0xf0,0x7,
0x0,0x98,0x79,0xf4,0xdf,0x3,0xb2,0x63,0xaa,0x17,0x94,0x2a,0x69,0x5a,0x85,0x2c,
0xda,0xed,0x76,0xa1,0xbe,0x3b,0xf3,0xa6,0x56,0xab,0x49,0xad,0x56,0xcb,0xfd,0xba,
0xd5,0xd5,0xd5,0xfe,0xf6,0xf1,0xf1,0x31,0xdf,0x25,0x10,0x83,0xb0,0x88,0x45,0x46,
0xf8,0x43,0x69,0xb6,0xb7,0xb7,0x65,0x7d,0x7d,0x7d,0xac,0x9f,0xa1,0x27,0x68,0x4d,
0x92,0x25,0x40,0xbe,0xf5,0xd6,0x5b,0xa9,0xef,0x13,0xa7,0x5a,0xad,0xca,0x8d,0x1b,
0x37,0x12,0x8f,0x49,0xb,0x6f,0xf5,0x7a,0x7d,0xec,0xd3,0x4c,0xd4,0xeb,0x75,0xb9,
0x7b,0xf7,0xee,0x58,0x3f,0x3,0x0,0x30,0x7b,0x8,0x7f,0x28,0x4d,0xbd,0x5e,0x1f,
0xfb,0x67,0x64,0xa9,0x88,0x8d,0x5a,0x7d,0x9c,0x17,0xcc,0x61,0x86,0x45,0xd3,0x6e,
0xb7,0xaf,0xe4,0xbf,0x43,0xc0,0xac,0xa3,0xcf,0x1f,0x0,0x60,0x2e,0xd0,0xcd,0x1,
0xc8,0x86,0xca,0x1f,0x0,0xa0,0x54,0xf5,0x7a,0x5d,0x6e,0xde,0xbc,0x19,0xfb,0xfc,
0xd9,0xd9,0x59,0x7f,0x9b,0x7e,0xbe,0xc0,0xd5,0x23,0xfc,0x1,0x0,0x4a,0x53,0xaf,
0xd7,0xe5,0xce,0x9d,0x3b,0x89,0xc7,0xdc,0xba,0x75,0x6b,0xe0,0x71,0xa7,0xd3,0x91,
0xbd,0xbd,0xbd,0xc2,0xfd,0x70,0x1,0xe4,0x43,0xf8,0x3,0x0,0x94,0xa6,0x48,0x80,
0xab,0xd5,0x6a,0xa5,0x54,0xff,0xf2,0x7c,0x76,0xad,0x56,0xeb,0xf7,0xf,0xf6,0x3c,
0x4f,0xda,0xed,0xf6,0xc8,0x9f,0x6f,0x73,0xf5,0x3f,0xbe,0x71,0xe3,0x86,0x54,0xab,
0x55,0x39,0x39,0x39,0x21,0xec,0x62,0x62,0x8,0x7f,0x0,0x80,0xd2,0x78,0x9e,0x27,
0x9d,0x4e,0x27,0xd7,0x54,0x45,0x65,0x35,0xfd,0xe6,0x9,0x53,0x8d,0x46,0x43,0x1a,
0x8d,0x46,0xa6,0x63,0x93,0xa6,0x85,0xa9,0x56,0xab,0x85,0x6,0x99,0x30,0x1a,0x1f,
0x93,0x44,0xf8,0x3,0x0,0x94,0xaa,0xd5,0x6a,0x65,0xe,0x56,0x22,0x22,0xfb,0xfb,
0xfb,0x63,0x3c,0x9b,0xd1,0x8d,0x63,0x6,0x1,0x46,0xe3,0x63,0x92,0x18,0xed,0xb,
0x0,0x28,0x55,0xde,0xe6,0xcc,0x71,0x34,0xb9,0x2,0x88,0x47,0xf8,0x3,0x0,0x94,
0xea,0xe1,0xc3,0x87,0x93,0x3e,0x5,0x0,0x9,0x8,0x7f,0x0,0x80,0x52,0x31,0x75,
0xb,0x30,0xdd,0xe8,0xf3,0x87,0xd2,0x9c,0x9c,0x9c,0x8c,0x7d,0x6d,0xdf,0xac,0xa3,
0xf2,0xb2,0x2c,0xdf,0xf6,0xd4,0x53,0x4f,0xe5,0xea,0x97,0x24,0x22,0x72,0x78,0x78,
0x98,0x58,0xd5,0xa8,0xd5,0x6a,0x72,0xfd,0xfa,0xf5,0xc4,0xf7,0xc8,0xd2,0x41,0xbc,
0x8c,0x3e,0x46,0xa7,0xa7,0xa7,0x23,0xbf,0x7,0x30,0x6e,0x4,0x45,0xe0,0xea,0x11,
0xfe,0x50,0x9a,0x66,0xb3,0x29,0xed,0x76,0x7b,0xa8,0x23,0x73,0x96,0xf5,0x78,0x27,
0x61,0x75,0x75,0x35,0xf7,0x6b,0x1e,0x3e,0x7c,0x38,0x55,0xb,0xc2,0xc7,0x5,0xc9,
0x71,0x4d,0x5d,0x1,0x64,0x91,0xe7,0xf7,0x9d,0x7f,0xa7,0xc0,0xd5,0x23,0xfc,0xa1,
0x54,0xfc,0x87,0xfc,0x6a,0x79,0x9e,0x37,0x55,0x61,0x14,0x10,0x29,0x36,0xd7,0x1f,
0x80,0xab,0x43,0x9f,0x3f,0x0,0x0,0x80,0x5,0x42,0xf8,0x3,0x72,0xa0,0xca,0x6,
0x0,0x98,0x75,0x34,0xfb,0x2,0x0,0xe6,0x42,0x9e,0x95,0x36,0x5a,0xad,0xd6,0xd0,
0xff,0xcc,0x9d,0x9d,0x9d,0x39,0x8f,0x73,0xa9,0xd5,0x6a,0xce,0x55,0x4c,0xf4,0xf2,
0x6d,0x71,0xf4,0x60,0xae,0x83,0x83,0x83,0xcc,0xe7,0xa,0x94,0x8d,0xf0,0x7,0x0,
0x98,0xb,0x79,0x56,0xcd,0x68,0xb5,0x5a,0x72,0x74,0x74,0x54,0xf8,0xb3,0xe2,0x6,
0xb2,0xd1,0x3a,0x80,0x59,0x40,0xb3,0x2f,0x0,0xa0,0x74,0xc,0xfa,0x0,0xa6,0x17,
0xe1,0xf,0x0,0x50,0xba,0x49,0x84,0xbf,0x3c,0x95,0x3f,0x57,0x93,0x2d,0xb0,0x28,
0x8,0x7f,0x0,0x80,0xb9,0x90,0xa7,0xcf,0x1f,0xe1,0xf,0x8b,0x8c,0xf0,0x7,0x0,
0x28,0x5d,0x19,0xab,0xd4,0x0,0x18,0xf,0xc2,0x1f,0x0,0x0,0xc0,0x2,0x21,0xfc,
0x1,0x0,0x66,0x1e,0xcd,0xb8,0x40,0x76,0x84,0x3f,0x0,0xc0,0xc4,0xe4,0x19,0xa4,
0x91,0x24,0x6f,0xf8,0xcb,0xd3,0x3f,0x10,0x98,0x37,0x84,0x3f,0x0,0x40,0xa9,0xf2,
0x4,0xb1,0x49,0x85,0xb0,0xb2,0x42,0x27,0x30,0x8b,0x8,0x7f,0x58,0x58,0xae,0xd9,
0xfc,0x1,0x8c,0x8e,0x26,0x58,0x60,0xba,0x11,0xfe,0x0,0x0,0x0,0x16,0x8,0xcb,
0xbb,0x1,0x0,0x44,0xa4,0xd7,0x14,0xba,0xb1,0xb1,0x91,0xf9,0xf8,0x87,0xf,0x1f,
0x8a,0xe7,0x79,0x43,0xfb,0x6f,0xde,0xbc,0x59,0xe6,0x69,0x65,0x72,0xe3,0xc6,0x8d,
0x2b,0xff,0xcc,0x24,0xd5,0x6a,0x35,0xb5,0x49,0xbb,0x56,0xab,0xc9,0xf5,0xeb,0xd7,
0x13,0x8f,0xf1,0x3c,0x4f,0x8e,0x8f,0x8f,0xcb,0x3c,0x35,0x80,0xf0,0x7,0x0,0xe8,
0xd9,0xd9,0xd9,0x91,0xb5,0xb5,0xb5,0x2b,0xff,0xdc,0x67,0x9e,0x79,0x46,0x3c,0xcf,
0x93,0x76,0xbb,0x9d,0xeb,0x75,0xe6,0xfa,0xba,0x45,0xe6,0x15,0xbc,0x73,0xe7,0x8e,
0x33,0xbc,0xa6,0xc9,0x12,0xec,0xca,0x54,0xad,0x56,0x47,0x5a,0x87,0x18,0xb0,0x11,
0xfe,0x80,0x8c,0x58,0xb0,0x1d,0xf3,0x6e,0x92,0x83,0x20,0xaa,0xd5,0xea,0x95,0x4f,
0xc,0xcd,0x88,0x5f,0x2c,0x2a,0xfa,0xfc,0x1,0x5,0x6d,0x6c,0x6c,0xb0,0x8a,0x1,
0x0,0x60,0xe6,0x50,0xf9,0x3,0xa,0x58,0x59,0x59,0x91,0xad,0xad,0x2d,0x11,0xe9,
0x35,0x3d,0x3d,0x78,0xf0,0x40,0x4e,0x4e,0x4e,0xa,0x35,0x21,0x1,0x0,0x70,0x95,
0x8,0x7f,0x40,0x1,0x3b,0x3b,0x3b,0xfd,0xed,0x5a,0xad,0x26,0x5b,0x5b,0x5b,0x72,
0xeb,0xd6,0x2d,0x79,0xf0,0xe0,0x81,0x1c,0x1f,0x1f,0xcf,0x7d,0x8,0x5c,0x59,0x59,
0x91,0xd5,0xd5,0xd5,0xc4,0x63,0xe2,0x6,0x3,0xb8,0x2c,0x5a,0x93,0x7a,0xd6,0x3e,
0x63,0xd5,0x6a,0x35,0x71,0x20,0xc3,0xc3,0x87,0xf,0xe5,0xf4,0xf4,0xb4,0xcc,0x53,
0x3,0xb0,0x0,0x8,0x7f,0x40,0x4e,0x9b,0x9b,0x9b,0xce,0x79,0xcc,0xaa,0xd5,0xaa,
0xdc,0xba,0x75,0x4b,0xd6,0xd7,0xd7,0xe7,0x3a,0x4,0xae,0xad,0xad,0xc9,0xee,0xee,
0xee,0x95,0x7e,0x66,0xda,0x60,0x80,0xb4,0xe7,0xdf,0x7a,0xeb,0xad,0xfe,0xc0,0x0,
0xdb,0x8d,0x1b,0x37,0x32,0xf7,0x75,0xcb,0x3a,0x82,0xf3,0xaa,0xe6,0xb9,0x6b,0xb5,
0x5a,0x84,0x3f,0x0,0xb9,0x11,0xfe,0x80,0x1c,0xaa,0xd5,0xaa,0xac,0xaf,0xaf,0xa7,
0x1e,0xa3,0x43,0xe0,0xc1,0xc1,0x81,0x34,0x9b,0xcd,0x2b,0x3a,0xbb,0xab,0x31,0x89,
0x29,0x35,0xb2,0xc,0x6,0x98,0xc4,0x28,0x55,0x0,0x98,0x45,0xc,0xf8,0x0,0x72,
0xd8,0xde,0xde,0xce,0x55,0x25,0xda,0xd9,0xd9,0x91,0x3b,0x77,0xee,0x30,0x30,0x4,
0x0,0x30,0x35,0x8,0x7f,0x58,0x58,0x79,0xe7,0x14,0xab,0xd5,0x6a,0xd2,0x68,0x34,
0x72,0x7f,0x4e,0xbd,0x5e,0x97,0xdb,0xb7,0x6f,0xe7,0xa,0x8e,0x0,0x0,0x8c,0xb,
0xe1,0xf,0xb,0x2b,0x6f,0x7f,0xbc,0x51,0xfb,0x71,0xad,0xaf,0xaf,0xcb,0x7,0x3f,
0xf8,0x41,0x9a,0x27,0x1,0x0,0x13,0x45,0x9f,0x3f,0xe0,0xa,0x55,0xab,0x55,0xd9,
0xdd,0xdd,0x95,0x66,0xb3,0x29,0x7,0x7,0x7,0x73,0x39,0x20,0x4,0xb3,0xab,0xdd,
0x6e,0x67,0xea,0xa2,0x90,0x75,0x74,0x76,0x96,0xe3,0xce,0xce,0xce,0x32,0xbd,0x57,
0xbb,0xdd,0xce,0xf5,0xfb,0x52,0xaf,0xd7,0x53,0x2b,0xed,0x59,0x96,0x57,0xd3,0xc7,
0xe5,0xf9,0x9f,0xbf,0x2c,0x9f,0xd,0x4c,0x12,0xe1,0xf,0x98,0x80,0x46,0xa3,0x21,
0x2b,0x2b,0x2b,0x72,0xf7,0xee,0xdd,0xdc,0xcd,0xcf,0xc0,0xb8,0x1c,0x1c,0x1c,0xc8,
0xc1,0xc1,0xc1,0xa4,0x4f,0xa3,0xb0,0x46,0xa3,0x21,0x4f,0x3d,0xf5,0x54,0xe2,0x31,
0x3a,0x90,0xea,0x69,0x72,0xf8,0x1f,0x30,0x2c,0x22,0xc2,0x1f,0x30,0x21,0xb5,0x5a,
0x4d,0xee,0xdc,0xb9,0x23,0x87,0x87,0x87,0x2c,0xdc,0xe,0x8c,0x68,0x6d,0x6d,0x6d,
0x60,0xfe,0xcd,0x38,0x76,0x65,0x93,0xdf,0x3f,0x2c,0x22,0xfa,0xfc,0x1,0x19,0x9d,
0x9e,0x9e,0x8e,0x65,0x32,0xe2,0xad,0xad,0x2d,0xd9,0xd9,0xd9,0xa1,0x99,0x8,0x18,
0x41,0xd1,0xa,0x1e,0x23,0xf1,0xb1,0x88,0xa8,0xfc,0x1,0x19,0xb5,0xdb,0x6d,0x39,
0x3a,0x3a,0x92,0x95,0x95,0x15,0xd9,0xdc,0xdc,0x2c,0xf5,0x8f,0x46,0xa3,0xd1,0x90,
0x6a,0xb5,0x2a,0x77,0xef,0xde,0x2d,0xed,0x3d,0x81,0x69,0x54,0xad,0x56,0xfb,0xeb,
0x62,0xb7,0xdb,0x6d,0x39,0x3b,0x3b,0x2b,0x65,0xa2,0xea,0xa2,0xdd,0x27,0xa8,0xfa,
0x61,0x11,0x11,0xfe,0x80,0x9c,0x5a,0xad,0x96,0xec,0xed,0xed,0x49,0xa3,0xd1,0x28,
0x75,0xfa,0x16,0xdd,0x6c,0xb5,0xbf,0xbf,0x5f,0xca,0xfb,0x1,0xd3,0x68,0x63,0x63,
0x43,0x6e,0xdd,0xba,0x25,0x22,0xbd,0xaa,0xdb,0xfa,0xfa,0xba,0x78,0x9e,0x27,0xcd,
0x66,0x53,0x4e,0x4e,0x4e,0xa,0x87,0x38,0xcf,0xf3,0xc4,0xf3,0xbc,0x5c,0xbf,0x8f,
0xf,0x1e,0x3c,0x18,0xeb,0xd2,0x82,0x9b,0x9b,0x9b,0x52,0xad,0x56,0xe5,0x17,0xbf,
0xf8,0xc5,0xc2,0x2d,0x61,0x88,0xe9,0x46,0xf8,0x3,0xa,0x6a,0x36,0x9b,0x72,0x7a,
0x7a,0x2a,0x9b,0x9b,0x9b,0xa9,0xab,0x7e,0x64,0xd5,0x68,0x34,0xa4,0xdd,0x6e,0x4f,
0x75,0x35,0xe2,0x2a,0x3b,0xc8,0xa7,0x8d,0xf0,0xcc,0x3b,0x2,0x34,0x8b,0xac,0xeb,
0xee,0xd2,0x5c,0x58,0x4c,0xdc,0xd2,0x88,0xeb,0xeb,0xeb,0xb2,0xbe,0xbe,0xde,0xff,
0xf7,0x5f,0x64,0x30,0x46,0xd6,0xd1,0xca,0xda,0x38,0x7f,0xcf,0xea,0xf5,0x7a,0x3f,
0xe4,0xae,0xaf,0xaf,0x4b,0xa7,0xd3,0x91,0xa3,0xa3,0xa3,0xb9,0x5b,0xf1,0x7,0xb3,
0x89,0xf0,0x7,0x8c,0xc0,0xf3,0x3c,0x39,0x38,0x38,0x90,0xb3,0xb3,0xb3,0xd2,0xfa,
0xed,0x6d,0x6d,0x6d,0x49,0xb7,0xdb,0x9d,0xda,0x3f,0x12,0x27,0x27,0x27,0x99,0xae,
0x33,0x69,0x3d,0x5d,0x6d,0xde,0xab,0x21,0x59,0x82,0x48,0xd6,0xe9,0x46,0x5c,0xb2,
0x4e,0x93,0x32,0x4d,0xd2,0xbe,0x93,0x7a,0xbd,0x2e,0x3b,0x3b,0x3b,0xe2,0x79,0xde,
0xd8,0xd7,0xc8,0x4e,0xfb,0xf7,0x39,0x8a,0xd5,0xd5,0xd5,0x81,0xc7,0xb5,0x5a,0x4d,
0x76,0x76,0x76,0x64,0x73,0x73,0x53,0xe,0xe,0xe,0x58,0x93,0x19,0x13,0x45,0xf8,
0x3,0x4a,0x70,0x7a,0x7a,0x2a,0x2f,0xbe,0xf8,0xa2,0xec,0xee,0xee,0x96,0x52,0x11,
0xda,0xd9,0xd9,0x91,0x4e,0xa7,0x33,0x95,0xe1,0xc8,0xf3,0x3c,0x39,0x3a,0x3a,0x9a,
0xf4,0x69,0xcc,0x84,0x69,0xfc,0xf9,0x4d,0x52,0xa3,0xd1,0xc8,0x3c,0x5f,0x9e,0x5e,
0x23,0xbb,0xd1,0x68,0x64,0x9e,0x12,0xa9,0xd5,0x6a,0x4d,0x4d,0x45,0x36,0xee,0x3c,
0x6a,0xb5,0x9a,0xec,0xee,0xee,0x4a,0xab,0xd5,0x92,0xa3,0xa3,0x23,0xfe,0x8d,0x60,
0x22,0x18,0xed,0x8b,0x85,0x56,0xe6,0x1c,0x7b,0x9e,0xe7,0xc9,0xde,0xde,0x9e,0x3c,
0x78,0xf0,0xa0,0x94,0xf7,0xdb,0xdd,0xdd,0xcd,0xd4,0xfc,0x8,0xcc,0x8a,0xcd,0xcd,
0xcd,0xdc,0xaf,0xa9,0xd5,0x6a,0x85,0x5e,0x37,0x49,0xb5,0x5a,0x2d,0x75,0x25,0x9f,
0x95,0x95,0x15,0xb9,0x7d,0xfb,0x36,0x23,0xfd,0x31,0x11,0x84,0x3f,0x2c,0xb4,0x71,
0x34,0x27,0x1d,0x1c,0x1c,0x94,0x32,0x68,0xa3,0x5a,0xad,0xca,0xed,0xdb,0xb7,0x9,
0x80,0x98,0xb,0x79,0xaa,0x7e,0xa6,0x76,0xbb,0x3d,0x73,0x83,0xa0,0x36,0x36,0x36,
0x32,0x1f,0xdb,0x68,0x34,0x58,0xf6,0x11,0x57,0x8e,0xf0,0x7,0x8c,0x41,0xb3,0xd9,
0x94,0x97,0x5e,0x7a,0x69,0xe4,0x70,0x59,0xad,0x56,0xa9,0xc,0x60,0xe6,0x55,0xab,
0x55,0xd9,0xde,0xde,0xce,0xfd,0xba,0x76,0xbb,0x2d,0x7b,0x7b,0x7b,0x99,0x7f,0x8f,
0xa6,0xa1,0xf,0x64,0xb5,0x5a,0x95,0x46,0xa3,0x91,0xfb,0x35,0xbb,0xbb,0xbb,0x99,
0x26,0xa9,0x6,0xca,0x40,0xf8,0x3,0xc6,0x24,0xef,0x1f,0xae,0x38,0xf5,0x7a,0xbd,
0xd0,0x1f,0x4e,0x60,0x5a,0x6c,0x6c,0x6c,0xe4,0xfe,0x1f,0x98,0xb2,0x7e,0x7f,0xae,
0x5a,0x91,0x6b,0xd5,0xf4,0xb2,0x8f,0xc0,0xb8,0x11,0xfe,0x80,0x31,0x6a,0xb7,0xdb,
0xf2,0xe2,0x8b,0x2f,0x8e,0xd4,0xb7,0xb0,0xdd,0x6e,0xcf,0xf4,0x7a,0xab,0x58,0x6c,
0xe6,0x94,0x27,0x59,0xe9,0xfe,0xb3,0xb3,0x16,0xfc,0xf4,0x94,0x35,0x45,0xb5,0xdb,
0x6d,0xd6,0xfa,0xc6,0x95,0x20,0xfc,0x1,0x63,0xa6,0xff,0x90,0x15,0xf9,0x8f,0xfa,
0xac,0x56,0x3f,0x0,0xad,0x48,0xd5,0xfa,0xfe,0xfd,0xfb,0x33,0xf9,0x6f,0x7e,0x94,
0x49,0xdf,0xf9,0x5d,0xc7,0x55,0x22,0xfc,0x1,0x57,0xa0,0x48,0x0,0xe4,0x8f,0x1,
0x66,0x9d,0x5e,0xc6,0x2d,0x8f,0x56,0xab,0x55,0x78,0xf2,0xe5,0x49,0x4e,0x9b,0x52,
0xaf,0xd7,0x73,0xf7,0xf5,0xd3,0xf8,0x5d,0xc7,0x55,0x23,0xfc,0x1,0x19,0x8d,0x3a,
0xe8,0x22,0x4f,0x0,0x2c,0x6b,0xc0,0x8,0x30,0x29,0x45,0x9b,0x7b,0x67,0x6d,0x64,
0xaf,0x56,0xb4,0x5f,0x2e,0xbf,0xeb,0x98,0x4,0xc2,0x1f,0x16,0x5a,0x9e,0x69,0x54,
0xca,0x98,0x72,0x45,0x7,0xc0,0xa4,0xd5,0x3b,0x9a,0xcd,0xe6,0xcc,0xfe,0x1,0x4,
0xb4,0x22,0xa3,0xd4,0xf7,0xf7,0xf7,0xc7,0xba,0xea,0x86,0xa9,0xcc,0x2a,0xe1,0xda,
0xda,0x5a,0xa1,0x81,0x1a,0xa7,0xa7,0xa7,0xfc,0xae,0x63,0x22,0x58,0xe1,0x3,0xb,
0x6d,0x12,0x53,0xa8,0x98,0xd5,0xd,0xbb,0x99,0x68,0x7f,0x7f,0x7f,0x6a,0x97,0x75,
0x3,0xb2,0xda,0xde,0xde,0xce,0xfd,0x3f,0x4b,0x7a,0xad,0xec,0x59,0xa3,0xa7,0x63,
0x2a,0x82,0x81,0x5c,0x98,0x14,0x2a,0x7f,0xc0,0x84,0xec,0xef,0xef,0xf,0xfc,0xb1,
0x23,0xf8,0x61,0x1e,0xac,0xad,0xad,0xe5,0x1e,0xf1,0x3a,0xcb,0x23,0xda,0x8b,0xce,
0xc3,0xd9,0x6c,0x36,0xaf,0xac,0xca,0x9,0xd8,0xa8,0xfc,0x1,0x13,0xb4,0xbf,0xbf,
0x2f,0x3b,0x3b,0x3b,0x72,0x74,0x74,0xc4,0x14,0xf,0x98,0x79,0xf5,0x7a,0xbd,0x50,
0x15,0x6c,0x7f,0x7f,0x7f,0x26,0xfb,0xbc,0xad,0xad,0xad,0x15,0x5a,0x99,0xc3,0xf3,
0xbc,0x99,0xd,0xbb,0x98,0xf,0x84,0x3f,0x60,0x82,0x3c,0xcf,0x93,0xbb,0x77,0xef,
0x4e,0xfa,0x34,0x80,0x91,0x15,0x5d,0x8d,0xe6,0xf0,0xf0,0x70,0x26,0xff,0xc7,0xa7,
0x56,0xab,0x15,0x6e,0xee,0x9d,0xd5,0xa9,0x6c,0x30,0x3f,0x68,0xf6,0x5,0x0,0x8c,
0xac,0xc8,0x3a,0xd4,0xa7,0xa7,0xa7,0x85,0xa7,0x75,0x99,0xb4,0xdd,0xdd,0xdd,0x42,
0xcd,0xbd,0xed,0x76,0x7b,0x66,0xaf,0x19,0xf3,0x83,0xf0,0x7,0x0,0x18,0xc9,0xce,
0xce,0x4e,0xee,0xe0,0xd7,0xe9,0x74,0x4a,0x1f,0xe9,0x9a,0x27,0x8c,0x8d,0x32,0xd8,
0xab,0xc8,0x80,0x16,0x8d,0xd1,0xbd,0x98,0x6,0x84,0x3f,0x0,0x40,0x61,0x3b,0x3b,
0x3b,0x85,0x26,0x37,0xbe,0x7b,0xf7,0x6e,0xe9,0x4d,0x9f,0x57,0x31,0x75,0x53,0xa3,
0xd1,0x28,0xbc,0x84,0xdb,0xfd,0xfb,0xf7,0x67,0xb2,0x89,0x1b,0xf3,0x87,0xf0,0x7,
0x0,0x28,0xa4,0x68,0xf0,0x9b,0xd5,0x7e,0x7e,0x45,0x7,0xb4,0x88,0xf4,0x9a,0x7b,
0x8f,0x8e,0x8e,0x4a,0x3e,0x23,0xa0,0x18,0xc2,0x1f,0x0,0x20,0xb7,0xa2,0xc1,0xaf,
0xd9,0x6c,0xce,0x64,0x9f,0xb7,0x7a,0xbd,0x2e,0xb7,0x6f,0xdf,0x2e,0xf4,0x5a,0x6,
0x76,0x61,0xda,0x30,0xda,0x17,0xb,0xab,0x56,0xab,0x4d,0xfa,0x14,0x80,0x99,0x53,
0xad,0x56,0xb,0xd,0xee,0x10,0x19,0xff,0x7c,0x7e,0xe3,0xfa,0x9d,0xae,0x56,0xab,
0x85,0x7,0x78,0x88,0xf4,0x26,0x73,0x66,0x4e,0x3f,0x4c,0x13,0x2a,0x7f,0x58,0x58,
0x84,0x3f,0x20,0x9f,0x7a,0xbd,0x2e,0x77,0xee,0xdc,0x29,0x14,0xfc,0x74,0xf5,0x6b,
0x9c,0x53,0x9c,0x5c,0xbf,0x7e,0x3d,0xd7,0xf1,0x59,0xae,0x43,0x87,0xdd,0xa2,0xff,
0xbd,0x68,0x36,0x9b,0x4c,0xde,0x8e,0xa9,0x43,0xe5,0xf,0x0,0x90,0xaa,0xd1,0x68,
0xc8,0xf6,0xf6,0x76,0xe1,0xea,0xd7,0xde,0xde,0xde,0xd4,0x55,0xbf,0xd2,0xae,0x65,
0x94,0x2a,0xa7,0xc8,0x6c,0xaf,0x5c,0x82,0xf9,0x46,0xf8,0x3,0x0,0xc4,0xaa,0x56,
0xab,0xb2,0xbd,0xbd,0x5d,0xa8,0x7f,0x9f,0xb6,0xbf,0xbf,0x7f,0x25,0x3,0x3c,0xca,
0x5c,0xab,0x7b,0xd4,0xe0,0x77,0x15,0x95,0x4e,0xa0,0x28,0xc2,0x1f,0x90,0x51,0xd1,
0x3f,0x2,0xc0,0xac,0xd2,0xa3,0x5b,0x47,0xf9,0xb7,0x7f,0x95,0x6b,0x56,0x97,0xf5,
0x3b,0x3a,0x6a,0xf0,0x13,0xe9,0x4d,0x65,0x33,0x6d,0x95,0x4e,0x40,0x23,0xfc,0x1,
0x19,0x95,0x59,0x55,0x0,0xa6,0xdd,0xc6,0xc6,0x86,0xdc,0xba,0x75,0x6b,0xa4,0x7f,
0xf7,0x57,0x19,0xfc,0x8a,0x58,0x5d,0x5d,0x95,0x56,0xab,0x35,0xb0,0xaf,0x56,0xab,
0xc9,0xee,0xee,0xee,0xc8,0x81,0xd7,0x7e,0x5f,0x60,0x9a,0x10,0xfe,0x0,0x0,0x3,
0x56,0x56,0x56,0xe6,0x3e,0xf8,0xb9,0xe8,0xe9,0x5c,0x46,0xb9,0x6e,0x6,0x78,0x60,
0x16,0x30,0xda,0x17,0x0,0x30,0xa0,0xd5,0x6a,0xc9,0x8b,0x2f,0xbe,0x28,0xf,0x1e,
0x3c,0x28,0xf4,0xfa,0x49,0x5,0xbf,0x51,0x46,0xf0,0xaf,0xad,0xad,0x95,0x12,0xfc,
0x58,0xbe,0xd,0xb3,0x80,0xca,0x1f,0x0,0x60,0x88,0xe7,0x79,0x72,0x70,0x70,0x20,
0xc7,0xc7,0xc7,0xb2,0xb9,0xb9,0x99,0x69,0xc0,0x87,0x7e,0xcd,0xa4,0x2a,0x5f,0x79,
0xc3,0x9f,0xe,0x7a,0x9b,0x9b,0x9b,0x72,0xeb,0xd6,0xad,0x91,0x3e,0xbb,0xdd,0x6e,
0x13,0xfc,0x30,0x33,0x8,0x7f,0x0,0x80,0x58,0x9d,0x4e,0x47,0xf6,0xf7,0xf7,0xe5,
0xe8,0xe8,0x48,0x76,0x76,0x76,0x64,0x65,0x65,0xc5,0x79,0x9c,0xe7,0x79,0xb2,0xb7,
0xb7,0x37,0x53,0xcb,0xb6,0xad,0xac,0xac,0xc8,0xee,0xee,0xae,0xac,0xad,0xad,0x8d,
0xf4,0x3e,0xed,0x76,0x5b,0xf6,0xf6,0xf6,0x4a,0x3a,0x2b,0x60,0xfc,0x8,0x7f,0x58,
0x58,0x37,0x6e,0xdc,0x98,0xf4,0x29,0x0,0x33,0xa3,0xd3,0xe9,0xc8,0xde,0xde,0x9e,
0xac,0xac,0xac,0xc8,0xce,0xce,0xce,0x40,0x95,0x4d,0x87,0x9f,0x59,0x9b,0xd6,0xa4,
0x5e,0xaf,0x8f,0x3c,0x42,0x78,0x56,0xaf,0x1d,0x8b,0x8d,0xf0,0x87,0x85,0xc5,0xe8,
0x5d,0x20,0x3f,0xdd,0x1f,0x70,0x73,0x73,0x53,0xd6,0xd6,0xd6,0xe4,0xf4,0xf4,0x54,
0x8e,0x8e,0x8e,0x26,0x7d,0x5a,0x22,0xd2,0x9b,0x48,0x7a,0x75,0x75,0x35,0xf5,0xb8,
0x46,0xa3,0x51,0xca,0xa,0x3f,0x4,0x3f,0xcc,0x2a,0xc2,0x1f,0x0,0x20,0xb7,0xa3,
0xa3,0xa3,0xa9,0x9,0x7d,0x5a,0xab,0xd5,0x4a,0x9c,0x62,0xa5,0x56,0xab,0xd,0x55,
0x2d,0x8b,0x22,0xf8,0x61,0x96,0x11,0xfe,0x80,0x1c,0x6a,0xb5,0x1a,0x13,0xb7,0x2,
0x33,0xa6,0x5a,0xad,0xf6,0xe7,0x2d,0x2c,0x3,0xc1,0xf,0xb3,0x8e,0xf0,0x7,0xe4,
0x40,0xf8,0x3,0x66,0x87,0xe,0x7d,0xeb,0xeb,0xeb,0xa5,0x75,0xf3,0x68,0x36,0x9b,
0x72,0x70,0x70,0x40,0xf0,0xc3,0x4c,0x23,0xfc,0x1,0x0,0xe6,0xca,0x38,0x42,0x9f,
0x8,0xf3,0xf8,0x61,0x7e,0x10,0xfe,0x0,0x0,0x73,0xa1,0x5e,0xaf,0xcb,0xc6,0xc6,
0x46,0xa6,0x39,0x9,0xf3,0x3a,0x3c,0x3c,0x94,0xe3,0xe3,0xe3,0xd2,0xdf,0x17,0x98,
0x4,0xc2,0x1f,0x0,0x60,0x66,0xd5,0x6a,0x35,0xb9,0x79,0xf3,0xa6,0xac,0xaf,0xaf,
0x97,0x32,0x90,0xc3,0x36,0xe9,0x89,0xab,0x81,0x71,0x20,0xfc,0x1,0x0,0x66,0xca,
0xca,0xca,0x8a,0xdc,0xbc,0x79,0x53,0xd6,0xd6,0xd6,0xc6,0x12,0xf8,0xb4,0x59,0x9c,
0xb8,0x1a,0xc8,0x82,0xf0,0x87,0x85,0x15,0xb7,0x52,0x1,0x80,0xe9,0x51,0xad,0x56,
0xa5,0x5e,0xaf,0xcb,0xea,0xea,0xaa,0xac,0xac,0xac,0x5c,0xd9,0xef,0x6d,0xab,0xd5,
0x92,0xbb,0x77,0xef,0x32,0xb0,0x3,0x73,0x89,0xf0,0x7,0x0,0x98,0xb8,0x5a,0xad,
0xd6,0xbf,0x5d,0xbf,0x7e,0x5d,0x56,0x56,0x56,0xfa,0x8f,0xaf,0xda,0xfd,0xfb,0xf7,
0xa7,0x6e,0xe,0x43,0xa0,0x4c,0x84,0x3f,0x20,0x87,0x1b,0x37,0x6e,0x24,0x4e,0x22,
0xb,0x2c,0x8a,0x6a,0xb5,0x2a,0x3b,0x3b,0x3b,0x52,0xad,0x56,0x73,0xff,0x4e,0x98,
0xa1,0xae,0x5e,0xaf,0x4f,0xcd,0x6a,0x3b,0xed,0x76,0x5b,0xf6,0xf7,0xf7,0x69,0xe6,
0xc5,0xdc,0x23,0xfc,0x1,0x39,0x4c,0xcb,0x1f,0x29,0x60,0xd2,0xd6,0xd6,0xd6,0x64,
0x6d,0x6d,0x4d,0x44,0xe6,0xa3,0xb,0x5,0xd5,0x3e,0x2c,0x12,0xc2,0x1f,0x0,0x20,
0xb7,0x66,0xb3,0x29,0x4f,0x3d,0xf5,0xd4,0xcc,0x7,0xbf,0x56,0xab,0x25,0xfb,0xfb,
0xfb,0x4c,0xde,0x8e,0x85,0xb2,0x34,0xe9,0x13,0x0,0x0,0xcc,0xa6,0x59,0x9e,0xf0,
0x58,0x2f,0xd1,0xb6,0xb7,0xb7,0x47,0xf0,0xc3,0xc2,0xa1,0xf2,0x7,0x0,0x28,0xa4,
0xd3,0xe9,0xc8,0xfd,0xfb,0xf7,0x4b,0x5b,0x33,0xf7,0x2a,0x74,0x3a,0x1d,0x39,0x3a,
0x3a,0x62,0xde,0x3e,0x2c,0x34,0xc2,0x1f,0x16,0x56,0xbd,0x5e,0x9f,0xf4,0x29,0x0,
0x33,0xef,0xe8,0xe8,0x48,0x1a,0x8d,0xc6,0x44,0x46,0xe5,0xe6,0xd1,0x6a,0xb5,0xe4,
0xf8,0xf8,0x58,0x4e,0x4f,0x4f,0x27,0x7d,0x2a,0xc0,0xc4,0x11,0xfe,0xb0,0xb0,0x8a,
0xc,0xde,0x60,0xc0,0x7,0x30,0x6c,0x7f,0x7f,0x5f,0x6e,0xdf,0xbe,0x3d,0xe9,0xd3,
0x70,0x6a,0x36,0x9b,0x72,0x72,0x72,0xc2,0x28,0x7d,0xc0,0x40,0xf8,0x3,0x72,0xa0,
0x5a,0x8,0xc,0x6b,0xb5,0x5a,0x72,0x7a,0x7a,0xda,0x1f,0xfd,0x3b,0x69,0xed,0x76,
0xbb,0x1f,0xfa,0x98,0xa4,0x19,0x18,0x46,0xf8,0x3,0x0,0x8c,0xec,0xe0,0xe0,0x60,
0xa2,0xe1,0xaf,0xd3,0xe9,0xc8,0xe9,0xe9,0xa9,0x9c,0x9c,0x9c,0x30,0x4f,0x1f,0x90,
0x82,0xf0,0x7,0x0,0x18,0x59,0xa7,0xd3,0x91,0x66,0xb3,0x29,0x8d,0x46,0xe3,0xca,
0x3e,0x53,0x57,0xf8,0xce,0xce,0xce,0x8,0x7c,0x40,0xe,0x84,0x3f,0x2c,0xa4,0xa2,
0xcd,0xb7,0xf4,0xf9,0x3,0xe2,0x9d,0x9c,0x9c,0x8c,0x35,0xfc,0xb5,0xdb,0x6d,0x69,
0xb5,0x5a,0x72,0x76,0x76,0x26,0xad,0x56,0x8b,0x26,0x5d,0xa0,0x20,0xc2,0x1f,0x90,
0xc3,0xb4,0x8f,0x68,0x4,0x26,0xa9,0xd5,0x6a,0x49,0xa7,0xd3,0x29,0xe5,0xf7,0xc4,
0xf3,0xbc,0x7e,0xd8,0x7b,0xf8,0xf0,0x21,0x61,0xf,0x28,0x11,0xe1,0xf,0xb,0xa9,
0xdd,0x6e,0xcb,0xfd,0xfb,0xf7,0x73,0xaf,0x4e,0x70,0x70,0x70,0x30,0xa6,0x33,0x2,
0xe6,0x43,0xb3,0xd9,0xcc,0x35,0xef,0x9f,0x1e,0x85,0xdb,0x6e,0xb7,0xa5,0xd3,0xe9,
0xc8,0xc3,0x87,0xf,0xa5,0xdd,0x6e,0x13,0xf4,0x80,0x31,0x22,0xfc,0x61,0x61,0xb1,
0x8e,0x27,0x50,0xbe,0xa3,0xa3,0x23,0x39,0x3e,0x3e,0x4e,0xec,0x5a,0x41,0xb8,0x3,
0x26,0x8b,0xf0,0x7,0x0,0x28,0x95,0xe7,0x79,0xcc,0xab,0x7,0x4c,0x31,0xd6,0xf6,
0x5,0x0,0x0,0x58,0x20,0x84,0x3f,0x0,0x0,0x80,0x5,0x42,0xf8,0x3,0x0,0x0,
0x58,0x20,0xa5,0x86,0x3f,0xa5,0x54,0x99,0x6f,0x7,0x0,0x0,0x80,0x92,0x51,0xf9,
0x3,0x0,0x0,0x58,0x20,0xa5,0x86,0xbf,0x4a,0xa5,0x52,0xe6,0xdb,0x1,0x0,0x0,
0xa0,0x64,0x54,0xfe,0x0,0x0,0x0,0x16,0x8,0x7d,0xfe,0x0,0x0,0x0,0x66,0x44,
0x19,0x59,0x8b,0xca,0x1f,0x0,0x0,0xc0,0x2,0x21,0xfc,0x1,0x0,0x0,0x2c,0x10,
0xc2,0x1f,0x0,0x0,0xc0,0x94,0x52,0x4a,0x49,0xd9,0x9d,0xea,0x6,0xc2,0x9f,0x6e,
0x47,0x36,0xdb,0x93,0x93,0xda,0x96,0xe9,0xe3,0x7,0x0,0x0,0x30,0x5b,0xa8,0xfc,
0x1,0x0,0x0,0x4c,0xbb,0x12,0x2b,0x80,0x84,0x3f,0x0,0x0,0x80,0x9,0x99,0x44,
0x2b,0x2a,0xe1,0xf,0x0,0x0,0x60,0x92,0x94,0xea,0xdd,0x62,0x1e,0x67,0xed,0x8e,
0x97,0x55,0xa6,0xf0,0x57,0x66,0x2a,0x65,0x15,0x10,0x0,0x0,0x80,0xc,0xcc,0xd0,
0x57,0xe2,0xdb,0x96,0x5e,0xf9,0x63,0x10,0x8,0x0,0x0,0x40,0x71,0x4a,0x86,0xf3,
0x94,0xb2,0xab,0x83,0x23,0xe8,0x87,0x3f,0xe7,0x87,0x24,0x3c,0x2e,0x82,0xaa,0x1f,
0x0,0x0,0xc0,0x20,0x1d,0xf6,0xf4,0xad,0xbf,0x5f,0x6f,0x3b,0x66,0x63,0x19,0xc5,
0x50,0xe5,0x2f,0xeb,0xd4,0x2e,0x54,0xf8,0x0,0x0,0x0,0xca,0xd5,0xf,0x81,0xc6,
0x76,0xd9,0x4a,0x69,0xf6,0x25,0x8,0x2,0x0,0x0,0x14,0x63,0x86,0xbd,0xb8,0xe7,
0x24,0xe1,0x98,0xbc,0x96,0xf4,0x1b,0xc7,0x9d,0x8c,0xf3,0x24,0x8,0x7b,0x0,0x0,
0x0,0xa3,0x73,0x65,0x2a,0xc7,0x68,0x5f,0xdd,0xe7,0xaf,0x94,0xf0,0xe7,0x6a,0xca,
0x25,0xdc,0x1,0x0,0x0,0x8c,0x9f,0x2b,0x71,0xd,0xf5,0x1,0x2c,0xb1,0xea,0x27,
0x92,0xa1,0xd9,0x37,0xed,0x83,0xb2,0x9c,0x8,0x3,0x3d,0x0,0x0,0x0,0x7a,0x86,
0x8a,0x6d,0x46,0x55,0x2f,0xc,0xc3,0xa1,0x3e,0x7f,0x66,0xb3,0x6f,0x19,0x86,0x46,
0xfb,0xe6,0x5d,0xdf,0x17,0x0,0x0,0x0,0xc5,0xe8,0x70,0x17,0xda,0x4d,0xba,0x56,
0xe,0xb,0xcb,0x9e,0xea,0x25,0x4b,0xb8,0x8b,0xeb,0xff,0x97,0xf4,0x3c,0x0,0x0,
0x0,0xdc,0x9c,0xfd,0xf8,0x8c,0xe6,0xde,0x30,0xc,0xfb,0x95,0x40,0x73,0xff,0xa8,
0x12,0xfb,0xfc,0x65,0x9d,0xf6,0x25,0x2f,0x9a,0x81,0x1,0x0,0xc0,0x22,0x1a,0xca,
0x5a,0xbd,0x7,0xa2,0xa2,0x90,0xa7,0x2b,0x80,0xea,0xf2,0x5,0x3,0xfb,0xcb,0x10,
0x3b,0xc9,0xb3,0x6b,0xbf,0x6b,0x2,0x42,0x0,0x0,0x0,0xe4,0x63,0x66,0xaa,0xd0,
0x1c,0xd0,0x11,0x5,0x41,0x5d,0xf5,0xb,0x75,0x3f,0x40,0xdd,0x17,0xc9,0xdc,0x9b,
0x54,0x0,0x0,0xd,0x94,0x49,0x44,0x41,0x54,0x70,0x1c,0x53,0xbd,0x8c,0xd2,0xe7,
0x8f,0x50,0x8,0x0,0x0,0xe0,0x96,0xb8,0x64,0x9b,0x6e,0xe6,0x35,0x7,0x78,0x38,
0x6e,0x65,0x28,0xdc,0xec,0x3b,0x74,0xf2,0x9,0x8f,0x1,0x0,0x0,0xd0,0x63,0x8e,
0xf2,0xd,0x8d,0xd0,0xa7,0x9f,0xeb,0x87,0x40,0xdd,0x1c,0x6c,0x54,0x0,0xcb,0x90,
0x3a,0xda,0xd7,0xbc,0x77,0x85,0x3c,0x82,0x1e,0x0,0x0,0x40,0x32,0x57,0x37,0xba,
0xfe,0x8,0x5e,0xa3,0xa9,0xb7,0x1f,0xf6,0x82,0xe0,0xb2,0xd9,0xb7,0xc4,0xe0,0x27,
0x22,0xb2,0x9c,0xb7,0xf2,0x97,0x56,0x7a,0x64,0xa2,0x68,0x0,0x0,0x80,0x64,0xba,
0xc9,0x57,0x87,0x3b,0xb3,0xe2,0x17,0x9a,0x7d,0xfe,0xcc,0x50,0x38,0xae,0x1,0x1f,
0x45,0x97,0x74,0x4b,0x7b,0x9e,0x11,0xbe,0x0,0x0,0x60,0x11,0xc5,0x15,0xda,0xec,
0xa0,0xa7,0x62,0x82,0x5f,0x58,0xe2,0x60,0xf,0x91,0xa8,0xcf,0x5f,0x52,0x13,0xaf,
0xab,0x4c,0x99,0x74,0x51,0x69,0xfb,0x75,0x8,0x24,0xc,0x2,0x0,0x80,0x45,0x33,
0xb0,0x8a,0x87,0x35,0x9f,0x9f,0xf3,0x16,0x4,0xfd,0x26,0xe0,0x92,0xb4,0x13,0x2b,
0x7f,0x71,0xfd,0xfd,0xe2,0x46,0x9e,0xe4,0x9,0x86,0x0,0x0,0x0,0xf3,0xce,0xcc,
0x41,0x66,0x80,0xb,0xed,0xbe,0x7d,0x61,0x28,0x41,0x14,0xf4,0x2,0x23,0xf8,0x5,
0xd1,0xad,0xcc,0x3e,0x7f,0x4b,0x4a,0xa9,0x37,0xb3,0x6,0xbf,0x51,0x4b,0x8e,0x54,
0xfb,0x0,0x0,0xc0,0xa2,0x70,0xe5,0xaa,0xb4,0x26,0xde,0x7e,0x0,0xc,0x2,0xf1,
0x8d,0x20,0x58,0x62,0x31,0xed,0x8d,0x25,0x11,0x39,0x73,0x5,0x3c,0xbb,0xb2,0x97,
0x54,0xe1,0xcb,0x1b,0xa,0x69,0xfa,0x5,0x0,0x0,0xf3,0x2c,0x29,0x2b,0x99,0xc1,
0x2f,0x88,0x2a,0x7c,0xbe,0xef,0xf7,0xab,0x7e,0xfd,0x6a,0x5f,0x10,0x48,0xe0,0xfb,
0x12,0x4,0x41,0xb9,0xe1,0x4f,0x29,0xf5,0x86,0xeb,0xa4,0xe2,0xee,0x5d,0x21,0x31,
0xed,0x82,0x1,0x0,0x0,0x16,0x95,0x2b,0xf4,0x29,0x1d,0xfc,0x74,0xb5,0x2f,0xc,
0x7b,0x95,0xbe,0x28,0xec,0xd9,0x95,0xbf,0x12,0x9d,0x2d,0x29,0xa5,0x8e,0x93,0xaa,
0x7e,0x71,0x55,0x40,0x42,0x1f,0x0,0x0,0xc0,0x30,0xe7,0x9c,0x7e,0x46,0x53,0xaf,
0xe,0x7e,0x81,0x11,0xf6,0x7c,0xdf,0xef,0x6d,0x87,0x61,0x7f,0x5b,0xdf,0x97,0x9c,
0xaf,0x9a,0xcb,0x22,0xd2,0x4c,0xeb,0xf3,0xe7,0xba,0x37,0x2f,0x28,0xa9,0x6a,0x8,
0x0,0x0,0xb0,0x28,0xe2,0x72,0x92,0x88,0xc,0xac,0xd9,0x6b,0xe,0xee,0x8,0x8c,
0x81,0x1d,0xbe,0xe7,0xd,0x86,0xc1,0x72,0x9b,0x7c,0x45,0x44,0x8e,0x97,0x95,0x52,
0xaf,0x64,0x9d,0xe8,0x39,0x4b,0x93,0x6f,0x5e,0x95,0x4a,0x85,0xa0,0x8,0x0,0x0,
0x66,0x9e,0xab,0x9f,0x9f,0xbe,0x1f,0x18,0xd4,0xa1,0xfb,0xf9,0x45,0x61,0xcf,0xac,
0xf4,0xf9,0xbe,0x2f,0x5e,0xb4,0xcf,0xf7,0xfd,0xb2,0x9b,0x7c,0x45,0x44,0x5e,0x59,
0x56,0x4a,0xdd,0xb3,0x4f,0xd0,0xbe,0x80,0x3c,0x7d,0xff,0xe2,0x6,0x89,0x0,0x0,
0x0,0xcc,0x2b,0x3b,0xf3,0xe8,0xd0,0x16,0x37,0xa2,0xd7,0x8f,0xaa,0x7b,0x66,0xe0,
0x33,0x43,0x9f,0x17,0x55,0x0,0x4b,0xe,0x7f,0xaf,0xdd,0x3b,0x3c,0x7c,0x63,0x59,
0x29,0xf5,0x13,0x11,0x9,0x94,0x52,0xd7,0xec,0x93,0xcf,0x3a,0x0,0x24,0x4f,0xd8,
0xd3,0x95,0x3e,0x2a,0x7e,0x0,0x0,0x60,0x1e,0x24,0x5,0x3f,0xb3,0xcf,0x5f,0x7f,
0xee,0x3e,0x5d,0xe9,0x8b,0xc2,0x9e,0xe7,0x79,0xe2,0x45,0xf7,0xdd,0x6e,0xb7,0xff,
0xd8,0xf7,0xfd,0xb2,0x4f,0x75,0x5f,0xa4,0x37,0xcf,0xdf,0xb9,0x52,0x6a,0x3f,0x69,
0xba,0x17,0xf3,0xc2,0xd2,0x6,0x81,0xb8,0x9a,0x84,0xed,0x2f,0x85,0x29,0x5e,0x0,
0x0,0xc0,0x3c,0x48,0xb,0x7e,0x66,0xc5,0xcf,0xd7,0x23,0x78,0x83,0xa0,0x1f,0xee,
0x7c,0xcf,0xbb,0xbc,0x45,0x8f,0xbd,0xe8,0xf1,0x18,0x8a,0x64,0x2f,0x8b,0x5c,0x2e,
0xef,0xf6,0x23,0x7d,0x1,0x45,0x46,0xfc,0x8e,0x7a,0x72,0x84,0x41,0x0,0x0,0x30,
0x4b,0x5c,0x63,0x1f,0x86,0x2a,0x7e,0xd6,0xe0,0xe,0x5d,0xf5,0x33,0x43,0x5e,0x57,
0xdf,0xba,0x5d,0xe9,0x5e,0x5c,0xf4,0xee,0xbb,0x5d,0xf1,0xcb,0x1f,0xe5,0x2b,0x22,
0xf2,0x23,0x11,0x91,0xa5,0xe8,0x2,0x5e,0xca,0x1a,0xfc,0xf2,0x54,0x4,0xcb,0x1a,
0x14,0x2,0x0,0x0,0x30,0x2d,0x5c,0x3,0x3b,0x5c,0x15,0xbf,0xc0,0x8,0x7e,0xbe,
0xd1,0xcf,0xaf,0x1b,0x5,0x3f,0x2f,0xa,0x7a,0xf6,0xcd,0xf7,0xbc,0x71,0xc,0xf4,
0x38,0x97,0xa8,0xf2,0xb7,0x1c,0x5,0xb4,0x97,0x44,0xe4,0x5c,0x29,0xf5,0xb8,0x79,
0x51,0x59,0x7,0x7f,0xe8,0xfb,0xa4,0xb0,0x97,0x54,0x25,0x24,0x20,0x2,0x0,0x80,
0x69,0x17,0x97,0x61,0xf4,0x7e,0x7b,0xe9,0x36,0x73,0xf2,0xe6,0xfe,0x40,0xe,0xb3,
0xea,0xa7,0x3,0xdf,0xc5,0x85,0x5c,0x5c,0x5c,0xc8,0xa3,0xa8,0xf2,0x37,0x86,0xbe,
0x7e,0x22,0x22,0x2f,0xdd,0x3b,0x3c,0x3c,0x17,0xb9,0x6c,0xf6,0x3d,0x2f,0x5a,0xfd,
0xcb,0xdb,0xff,0x2f,0xee,0xcb,0xb3,0x51,0x49,0x4,0x0,0x0,0xd3,0xc2,0x95,0x3f,
0x9c,0x3,0x3a,0xac,0xa6,0xde,0x81,0x11,0xbd,0xdd,0x6e,0xbf,0xda,0x77,0x11,0x5,
0xbe,0x8b,0x47,0x8f,0xe4,0xd1,0xa3,0x47,0x72,0xf1,0xe8,0x51,0xbf,0xd9,0x77,0xc,
0x55,0x3f,0x11,0x91,0x17,0xf4,0xc6,0x92,0x11,0xaa,0xfe,0x57,0xde,0x40,0x97,0x25,
0x8,0x9a,0x5f,0x5a,0xd2,0x20,0x90,0xb8,0xe3,0x92,0x8e,0x21,0x8,0x2,0x0,0x80,
0x71,0x8a,0xcb,0x34,0x49,0x3,0x3b,0xcc,0xe5,0xd9,0x6,0x82,0x5f,0x54,0xed,0xd3,
0xc1,0xef,0x51,0x14,0xfc,0x1e,0x3d,0x7a,0xd4,0xaf,0xfa,0x8d,0x29,0xf8,0x5,0x22,
0xf2,0x1d,0xfd,0x60,0xd9,0xb8,0xa8,0xef,0x2b,0xa5,0xce,0x45,0xe4,0xf1,0xac,0xcd,
0xbc,0xf6,0x7d,0xda,0xb6,0x4b,0x96,0x40,0x98,0xc4,0x7c,0xd,0x3,0x47,0x0,0x0,
0x40,0x19,0xd2,0x9a,0x78,0xcd,0x8a,0x9f,0x52,0xc6,0xe0,0xe,0x47,0xd5,0x4f,0xcf,
0xe1,0x67,0x57,0xfb,0x1e,0x3d,0x7a,0x24,0xe7,0xe7,0xe7,0xfd,0xed,0x31,0x86,0xbf,
0xbf,0xbc,0x77,0x78,0xf8,0x86,0x7e,0x60,0x86,0xbf,0x37,0x94,0x52,0xdf,0x11,0x91,
0x67,0x5d,0x17,0x98,0xf7,0x3e,0xad,0x62,0x98,0xe5,0x7d,0x44,0x86,0x3,0x5d,0x52,
0xc0,0x23,0x8,0x2,0x0,0x80,0xa2,0xb2,0xb4,0x4a,0xda,0x79,0x66,0x68,0x12,0x67,
0xc7,0x4,0xce,0xe6,0x28,0x5e,0x1d,0xf8,0xce,0x3b,0x9d,0x5e,0xf0,0x8b,0x6e,0xdd,
0x8b,0x8b,0x71,0x5,0x3f,0x11,0x91,0x3f,0x34,0x1f,0x98,0xe1,0x4f,0x44,0xe4,0x9b,
0x4a,0xa9,0x67,0x47,0x9,0x7d,0xe6,0x17,0x63,0x6e,0xc7,0x35,0x3,0x67,0x6d,0xe,
0xb6,0x9f,0xd7,0xe1,0x2e,0x2e,0xe4,0xd9,0xef,0x43,0x18,0x4,0x0,0x0,0xb6,0xb4,
0xd6,0xc9,0xa4,0xd0,0xa7,0xef,0xf5,0xc0,0xe,0x1d,0xfc,0x2,0x63,0x70,0x87,0x6e,
0xee,0xd5,0x15,0xbf,0xf3,0xf3,0x73,0x39,0x8f,0xee,0x3b,0x9d,0x8e,0x74,0xa2,0xca,
0x5f,0x10,0x4,0xe3,0xba,0xc4,0xd7,0x45,0xe4,0xbb,0xe6,0x8e,0x65,0x2b,0xb8,0xfd,
0x48,0x29,0xf5,0xb2,0x52,0xea,0x3d,0xc6,0xbe,0xc2,0x55,0xc0,0xa4,0x6d,0xf3,0x4b,
0xb3,0x8f,0x31,0x55,0x2a,0x15,0x67,0x70,0xd3,0xfb,0x93,0x42,0x9e,0xb9,0x4d,0xff,
0x40,0x0,0x0,0x10,0xc7,0xd5,0xfa,0xe8,0x6c,0xbd,0xc,0x43,0x9,0xed,0x8a,0x5f,
0xd4,0xc7,0x6f,0xa0,0x9f,0x9f,0xb1,0x5a,0xc7,0xc5,0xc5,0x85,0x74,0xa3,0x3e,0x7e,
0xe7,0xe7,0xe7,0x72,0x7e,0x7e,0x2e,0x6f,0xbe,0xf9,0xa6,0x74,0xde,0x7a,0x4b,0x1e,
0x9d,0x9f,0x8f,0x6b,0x4e,0x3f,0xed,0x6b,0xf7,0xe,0xf,0x7,0x92,0xa5,0x1d,0xfe,
0x44,0x29,0xf5,0x25,0xa5,0xd4,0x9f,0x9b,0x17,0xed,0xfa,0x52,0xd2,0xc2,0x9e,0xeb,
0x39,0x7d,0xd3,0x5f,0x50,0x5c,0xf5,0xcf,0xd4,0xaf,0xf0,0xf5,0x1e,0xc,0xec,0x77,
0xed,0x33,0xef,0xe3,0x64,0xa9,0x2,0x52,0x29,0x4,0x0,0x60,0xb6,0x64,0xd,0x50,
0xa9,0xcd,0xbb,0x4a,0x89,0x12,0x47,0xf8,0xd3,0x61,0x4f,0x87,0x3f,0x1d,0xfa,0xc2,
0xb0,0xb7,0x64,0x5b,0x14,0xfc,0x3c,0x7b,0x2a,0x97,0xa8,0xb9,0xf7,0x51,0x54,0xe5,
0xeb,0x74,0x3a,0xd2,0x79,0xeb,0x2d,0xe9,0x9c,0x9f,0x8f,0xb3,0x9f,0x9f,0x48,0x6f,
0x6e,0xbf,0x6f,0xda,0x3b,0x5d,0xe1,0xef,0x5,0xa5,0xd4,0xa1,0x88,0x6c,0xc5,0x5,
0xba,0xbc,0x1,0xd0,0xac,0xf6,0xf9,0xbe,0x3f,0x90,0x96,0x5d,0x5f,0xb4,0x29,0x29,
0xfc,0xa5,0xee,0xbf,0xdc,0x99,0xfa,0xed,0x10,0xf6,0x0,0x0,0x98,0x3f,0xb1,0x81,
0x50,0xe7,0x14,0xf3,0x18,0x33,0x8b,0x28,0x25,0xa1,0x71,0x1f,0x86,0xe1,0x65,0xf8,
0x33,0x6,0x77,0xe8,0x81,0x1d,0x81,0x63,0x80,0x87,0xa7,0x47,0xf6,0x76,0xbb,0xfd,
0x26,0xdf,0x47,0xe7,0xe7,0xbd,0xa6,0xde,0xf1,0x7,0x3f,0x11,0x91,0x6f,0xde,0x3b,
0x3c,0x3c,0xb3,0x77,0xba,0xc2,0x9f,0x28,0xa5,0xbe,0x28,0x22,0x7f,0x9a,0xd4,0x74,
0x9b,0xb4,0xcf,0x7c,0xce,0x6c,0xf,0x37,0x67,0xb9,0x1e,0x18,0x1d,0xa3,0xc3,0x5f,
0xf4,0xa5,0x27,0xd1,0x11,0xad,0x1f,0xd6,0x62,0x6,0x84,0xe4,0xd,0x7f,0x0,0x0,
0x60,0x1,0xb8,0x42,0x5f,0xb4,0x3f,0xd4,0xcf,0x85,0x61,0xef,0xf9,0xe8,0xde,0x19,
0xfc,0xa2,0x2c,0xd3,0x6f,0xee,0xb5,0xe7,0xf3,0x33,0x2a,0x7f,0x3,0x53,0xba,0x44,
0xd5,0x3f,0x5d,0xc,0x1b,0xa3,0x37,0x45,0xe4,0x2b,0xae,0x27,0xe2,0xc2,0xdf,0x77,
0x45,0xe4,0x9e,0x52,0xea,0xe9,0x2c,0x7d,0xf8,0xe2,0x9e,0xef,0x7,0x3e,0x5d,0x1a,
0x35,0x86,0x3f,0xeb,0x66,0x5f,0x9d,0xa6,0x87,0xc2,0x9f,0xd5,0xe6,0xee,0xac,0xcc,
0xc5,0x84,0xba,0xb8,0xa8,0x47,0x75,0xf,0x0,0x80,0xc5,0x61,0x57,0xfd,0x86,0xa,
0x4c,0x56,0xf6,0xd0,0x61,0x6f,0xa0,0xea,0x67,0xad,0xda,0x31,0x34,0x89,0xb3,0x19,
0xfe,0x3c,0xaf,0xbf,0x82,0x87,0xb9,0x7a,0xc7,0xa3,0xa8,0xbf,0xdf,0xc5,0xa3,0x47,
0x72,0x71,0x71,0xd1,0xcf,0x40,0x63,0xf6,0xfc,0xbd,0xc3,0xc3,0xd7,0x5d,0x4f,0xc4,
0x85,0xbf,0x40,0x44,0xfe,0xb5,0x52,0xea,0x6f,0x94,0x52,0xd7,0x8c,0xfd,0xa9,0xa1,
0xcf,0x4e,0xc4,0xae,0xd0,0x17,0xd8,0xc3,0xa2,0xa3,0xf0,0xa7,0x13,0xb7,0x58,0x9f,
0x5,0x0,0x0,0x50,0x86,0xa4,0x81,0x1d,0xe6,0xb6,0xd9,0x7a,0x69,0x87,0xbf,0x81,
0xaa,0x9f,0xef,0xf,0x4e,0xed,0x62,0xf5,0xf5,0xeb,0x46,0x4d,0xbe,0x17,0xd1,0xea,
0x1e,0x63,0x1c,0xd5,0x6b,0x3a,0x16,0x91,0x2f,0xc5,0x3d,0xe9,0xc,0x7f,0xd1,0xfd,
0xcb,0x4a,0xa9,0x6f,0x2a,0xa5,0x7e,0x23,0x4b,0xf5,0x2f,0x31,0xf4,0xe9,0x8e,0x90,
0x56,0xe7,0x48,0x7d,0x9c,0xf9,0x5,0xdb,0xef,0xed,0x3a,0x37,0x0,0x0,0x80,0x38,
0xae,0xbc,0x10,0xb7,0x6f,0x28,0xd7,0x44,0xc5,0x28,0x33,0x9b,0xc4,0xe5,0x1c,0x3d,
0xad,0x8b,0x3d,0xd0,0xc3,0xec,0xef,0xa7,0x47,0xfc,0x5e,0x41,0x33,0xaf,0xe9,0x33,
0xf7,0xe,0xf,0xbb,0x71,0x4f,0x2e,0xeb,0xb,0xd6,0xf7,0xd6,0xf6,0xe7,0x95,0x52,
0xbf,0xaa,0x94,0x7a,0x32,0xe6,0xf9,0xe4,0xe6,0x5d,0xe3,0xcb,0x71,0x5,0x40,0x57,
0x9a,0x16,0x11,0x77,0x8,0x34,0xda,0xe8,0xcd,0x73,0x1e,0xe2,0xfa,0xe1,0xa6,0x7c,
0x43,0x84,0x4a,0x0,0x0,0xe6,0x58,0x5c,0x86,0xb0,0x6,0x78,0xc,0x8c,0xf0,0x35,
0x46,0xf5,0x9a,0xfd,0xfd,0x74,0xf1,0xca,0xc,0x7d,0x66,0xf8,0xf3,0x3d,0x4f,0xba,
0x51,0xf5,0xcf,0x8f,0x82,0xe0,0x15,0x55,0xfb,0xb4,0x17,0xee,0x1d,0x1e,0x7e,0x3f,
0xe9,0x80,0x65,0x67,0xea,0xbd,0xdc,0x7e,0x43,0x29,0xf5,0x9c,0x52,0xea,0xdb,0xae,
0xe7,0xed,0xce,0x8e,0xb1,0xd5,0x3e,0x2b,0xf8,0xd9,0x23,0x7e,0x9d,0xcd,0xbf,0xc6,
0xbd,0x3d,0x12,0x47,0xc4,0xd1,0x51,0xd3,0x7a,0x6e,0x70,0x77,0xc6,0x70,0x47,0x8,
0x4,0x0,0x60,0xa6,0x39,0x2b,0x7c,0xc3,0x7,0xa5,0xf7,0xf5,0x33,0x82,0xdf,0xd0,
0xe0,0xd5,0x98,0x81,0x1e,0xfd,0xc1,0x1e,0x51,0xf3,0xaf,0x59,0xd8,0xba,0x22,0x6f,
0x88,0xc8,0xbf,0x49,0x3b,0x68,0x39,0x21,0xf8,0xe9,0xdb,0x1f,0x8b,0xc8,0xfb,0x95,
0x52,0x9f,0x76,0x56,0xfb,0xcc,0xca,0x9e,0xf9,0xa5,0xd8,0xcd,0xbc,0xc6,0xcd,0x3e,
0xd6,0x15,0xfe,0xcc,0xe4,0xad,0x7f,0x20,0xf6,0x80,0x90,0xa1,0xd1,0xc1,0x76,0xd3,
0xb5,0xeb,0x8a,0xed,0xce,0x9f,0x31,0x81,0x8f,0x18,0x8,0x0,0xc0,0x9c,0x88,0xcb,
0x7,0x46,0x96,0xd0,0x21,0x4f,0x44,0x86,0x5a,0x23,0xed,0x81,0x1e,0xe6,0xcd,0xe,
0x7f,0x13,0xa,0x7d,0xda,0x27,0xef,0x1d,0x1e,0xbe,0x96,0x76,0x50,0x6a,0xf8,0x8b,
0x1e,0x7f,0x46,0x29,0xf5,0x3e,0xa5,0xd4,0xbb,0xec,0xb,0xef,0x87,0x3f,0xb3,0x2f,
0x9f,0xdd,0xd4,0x1b,0x6d,0xeb,0x8a,0x9f,0xef,0xfb,0xfd,0x2a,0xa1,0x7e,0x3f,0xa5,
0x54,0xbf,0xff,0x9f,0x39,0x2,0x78,0xa0,0xa,0x28,0x46,0x3a,0xef,0x9d,0x98,0x33,
0x10,0xea,0x6b,0x70,0x71,0xf5,0x25,0x4,0x0,0x0,0xf3,0x27,0xe9,0x6f,0x7e,0xd2,
0x20,0xf,0x7b,0xb0,0x87,0x6b,0xed,0x5e,0x73,0xd,0x5f,0xbb,0x55,0x73,0x42,0x7e,
0x37,0xad,0xb9,0x57,0x8b,0x1b,0xed,0x6b,0x3f,0x3e,0x57,0x4a,0x7d,0x34,0x8,0x82,
0xbf,0xd,0xc3,0xf0,0x89,0xfe,0x85,0xc6,0x84,0x3f,0x57,0x13,0xaf,0x2b,0xf8,0xe9,
0xf0,0x38,0xf4,0xc5,0x9a,0xa5,0x56,0xb9,0x4c,0xe3,0xe6,0x79,0x99,0x5f,0xae,0x6b,
0x80,0x48,0x52,0x67,0xcf,0x51,0x43,0x1f,0xa1,0x11,0x0,0x80,0xe9,0x97,0x9a,0x5,
0xac,0x3e,0x7f,0x49,0x3,0x3d,0x6,0x8a,0x56,0x56,0xeb,0xa6,0x39,0x68,0x75,0x42,
0x7e,0x2c,0x22,0x9f,0xcf,0x7a,0xb0,0x73,0xc0,0x47,0xcc,0xa0,0x8e,0x57,0xc2,0x30,
0xfc,0x97,0xbe,0xef,0xff,0x59,0x10,0x4,0xd7,0xfa,0xd5,0xbf,0x68,0x88,0xb3,0xab,
0xda,0x97,0x7a,0x33,0xfa,0x4,0xda,0xa9,0xda,0x5c,0xfd,0xc3,0x2c,0xbd,0xc6,0x5,
0xc0,0xfe,0xb6,0xdd,0x47,0xd0,0xd8,0x27,0xf6,0x7e,0xe3,0xf9,0xfe,0x66,0xd6,0x6f,
0xe,0x0,0x0,0x4c,0x54,0xde,0x3e,0xfd,0xf6,0x18,0x2,0x3b,0xf8,0xf5,0x3,0xa0,
0xe,0x7e,0xae,0xea,0x9f,0x35,0x60,0x75,0xa,0xa,0x42,0xaf,0x89,0xc8,0xc7,0x93,
0x46,0xf7,0xda,0x86,0x9a,0x7d,0x5d,0x8f,0xf5,0x45,0xfa,0xbe,0xff,0x42,0x10,0x4,
0xcf,0x5,0xbe,0xff,0x75,0x33,0xf0,0xe9,0x10,0x67,0x87,0x3e,0xbb,0xda,0xe7,0x7a,
0x8d,0xd9,0x27,0xd0,0xfe,0x82,0xed,0xf4,0x6d,0xae,0x6,0x32,0x34,0x18,0xc4,0x68,
0x1a,0x1e,0xa,0x80,0xae,0x1f,0xba,0x96,0x21,0xf8,0x4d,0xc1,0xf,0x16,0x0,0x0,
0x14,0x91,0xd0,0xdf,0x2f,0x6d,0x45,0xf,0x33,0x3,0xd9,0x4d,0xc2,0x53,0xe2,0x4c,
0x44,0xfe,0x69,0x96,0x7e,0x7e,0xa6,0xa1,0x66,0x5f,0xbd,0x1d,0x37,0xb8,0x23,0x8,
0x82,0x6f,0xf8,0x41,0x50,0xf,0x83,0xe0,0xcb,0x3,0x6d,0xdd,0xc6,0x5c,0x37,0x3,
0xe1,0x2f,0xb8,0x9c,0xfd,0x3a,0x30,0x8e,0x19,0x68,0x2a,0x36,0x82,0xdf,0xc0,0x14,
0x30,0x56,0x33,0xf0,0xd0,0x60,0x10,0xfb,0x7,0x61,0x7,0xc0,0xb8,0xfe,0x80,0xf6,
0xb7,0x90,0xd2,0xf,0x70,0x6a,0x7e,0xc4,0x0,0x0,0x20,0x1f,0xb3,0xa8,0x65,0xee,
0x36,0xc6,0x10,0xd8,0x83,0x3d,0xcc,0xfb,0x29,0xb,0x7b,0xa6,0x73,0x11,0xf9,0x17,
0xf7,0xe,0xf,0x5f,0xc9,0xfb,0xc2,0xd8,0x79,0xfe,0xf4,0x63,0x73,0x65,0xe,0xff,
0x32,0x4,0x7e,0xc5,0xf,0x82,0xb7,0x7,0xbe,0xff,0x6f,0x5d,0x93,0x1c,0x3a,0xc3,
0x5f,0x54,0xe9,0x73,0x85,0x45,0xb3,0x4f,0xa0,0x5d,0x52,0x35,0x4b,0xae,0x66,0xf5,
0xcf,0x4e,0xe9,0xce,0x51,0xc1,0x8e,0x0,0xe8,0xba,0x4e,0x0,0x0,0x30,0xfb,0x92,
0xfa,0xf8,0xb9,0xf6,0xbb,0x6,0x84,0xcc,0x48,0x3e,0xe8,0x8a,0xc8,0x47,0xef,0x1d,
0x1e,0xbe,0x5c,0xe4,0xc5,0x89,0x95,0x3f,0x57,0x1b,0xb7,0x51,0x5,0x7c,0x2e,0x8,
0xc3,0x37,0xfc,0x20,0xf8,0xc2,0x50,0xf0,0x8b,0xfa,0x1,0xe,0x6c,0x1b,0x15,0x3f,
0xf3,0xf8,0x81,0xe0,0x67,0xe,0x4,0x71,0xf4,0x5,0x34,0xdb,0xe0,0xcd,0x6d,0x31,
0xfa,0x5,0x66,0x1d,0xfc,0x61,0x5f,0x33,0x0,0x0,0x98,0x7d,0xb,0xf0,0xb7,0xfd,
0x4d,0xe9,0x55,0xfc,0x7e,0x58,0xf4,0xd,0x62,0x7,0x7c,0xe8,0xf0,0xe7,0x5a,0x8b,
0x57,0x7,0xb4,0xc0,0xf7,0x7f,0x2b,0xc,0x82,0xd7,0x83,0x20,0xf8,0xaa,0xef,0xfb,
0xd7,0xec,0x35,0xee,0xcc,0xa,0x60,0x5c,0x65,0xd0,0x35,0x5f,0xa0,0xbd,0x2,0x88,
0x6b,0x25,0x10,0x57,0xdb,0xfb,0x8c,0xa5,0x76,0x0,0x0,0x80,0x3c,0x5e,0x17,0x91,
0xf,0x8b,0xc8,0xbd,0x51,0xde,0xc4,0x39,0xcf,0x9f,0xc8,0xf0,0xa4,0x86,0x76,0x73,
0x6c,0x70,0x59,0x5,0xfc,0x46,0x10,0x4,0x67,0x61,0x18,0x7e,0x3b,0x8,0x82,0xc7,
0x7c,0x47,0x5,0xd0,0x9c,0x3,0x27,0x2e,0xfc,0xc5,0x8e,0x0,0x76,0x84,0x40,0xd7,
0xf9,0x2,0x0,0x0,0xcc,0xb1,0x63,0x11,0xf9,0x67,0x22,0xf2,0xf3,0x51,0xdf,0x68,
0xa0,0xf2,0xa7,0xb7,0x87,0x46,0xdc,0xba,0x82,0xa0,0x31,0x40,0x23,0x8,0x82,0xef,
0x4,0x41,0xf0,0xf3,0x20,0x8,0xfe,0x34,0xc,0x82,0x77,0xc,0xf4,0x11,0xb4,0xaa,
0x7e,0x49,0x4d,0xc3,0xae,0xea,0x9f,0x9e,0x3f,0x67,0xa,0xe6,0xd0,0x1,0x0,0x0,
0x98,0x84,0x17,0x44,0xe4,0x93,0x22,0xd2,0x2e,0xe3,0xcd,0x96,0x5c,0x4d,0xa6,0xae,
0xe9,0x55,0xfa,0xb7,0x98,0x8a,0x5c,0x10,0x4,0xfb,0x41,0x10,0x6c,0xfb,0xbd,0x20,
0x28,0x81,0x9e,0xcc,0xd9,0xa8,0xf2,0xb9,0x2a,0x82,0xce,0x5b,0xb4,0x10,0xb2,0x5e,
0xc,0x59,0x37,0x1,0x3,0x0,0x0,0x2c,0x90,0xae,0x88,0x7c,0x46,0x44,0x3e,0x22,
0x25,0x5,0x3f,0x11,0x91,0x25,0x91,0xe1,0xbe,0x72,0x3,0x73,0xec,0xd9,0x3,0x3f,
0x92,0x6f,0x6f,0x86,0x61,0xf8,0xf1,0x20,0xc,0x9f,0xb,0xc2,0xf0,0xdc,0xee,0xfb,
0xa7,0x27,0x80,0x8e,0x6b,0x1a,0xd6,0xc1,0x4f,0x3f,0xa7,0xcf,0x3,0x0,0x0,0x60,
0xc1,0xfc,0x5c,0x44,0xfe,0x89,0x88,0xfc,0xf7,0xb2,0xdf,0x78,0xc9,0xde,0x61,0xf7,
0xa9,0xd3,0xf3,0xe7,0xd9,0x37,0xe7,0x88,0xe0,0xcb,0xdb,0xd7,0xc2,0x30,0x7c,0x77,
0x18,0x86,0x2f,0x98,0x23,0x84,0x7d,0xb3,0xa9,0xd7,0x1e,0x1c,0x62,0x54,0xfe,0xa8,
0xf4,0x1,0x0,0x80,0x5,0x75,0x2e,0x22,0x5f,0x14,0x91,0x77,0x8b,0xc8,0xfe,0x38,
0x3e,0x60,0xc9,0x35,0xe0,0x43,0x4f,0xa8,0x3c,0x50,0xfd,0xb3,0x9a,0x7e,0x5d,0xab,
0x81,0x58,0x1,0xf0,0xe7,0x61,0x10,0x7c,0x24,0xc,0xc3,0x8f,0x84,0x61,0xf8,0xf3,
0x7e,0x53,0xb1,0xd9,0x14,0xec,0x18,0x9,0x4c,0xb5,0xf,0x0,0x0,0x2c,0xa8,0x1f,
0x88,0xc8,0xb6,0x88,0xfc,0x96,0xf4,0x42,0xe0,0x58,0xc,0x55,0xfe,0x6,0x56,0xc1,
0x48,0x9,0x61,0x76,0xdf,0x40,0x71,0xf,0xe,0x79,0x21,0xc,0xc3,0x77,0x87,0x41,
0xf0,0xd9,0x20,0xc,0xcf,0x8c,0x69,0x62,0x6,0xc2,0xa0,0xe,0x7e,0x0,0x0,0x0,
0xb,0x66,0x5f,0x7a,0xfd,0xfa,0x3e,0x2c,0xbd,0x51,0xbd,0x63,0x35,0xd0,0xe7,0xaf,
0x5f,0x75,0xb3,0x56,0xc9,0x18,0xe0,0x9a,0x1a,0x26,0x3a,0x36,0x34,0x57,0xd6,0x18,
0xc,0x80,0xe7,0x61,0x18,0x3e,0x1f,0x86,0xe1,0x53,0x61,0x18,0x3e,0x17,0x6,0xc1,
0x6b,0x41,0x18,0xe,0xf4,0xfd,0x23,0xf8,0x1,0x0,0x80,0x5,0xf3,0x63,0xe9,0x5,
0xbe,0x5f,0x92,0xde,0x88,0xde,0x2b,0xd1,0xaf,0xfc,0x8d,0xd2,0xd4,0xaa,0xcc,0xd7,
0xab,0xcb,0xf5,0x77,0xf5,0xfb,0xea,0x65,0xda,0x54,0x18,0x9e,0xab,0x5e,0x7f,0xc0,
0x7f,0x18,0x86,0xe1,0xa7,0xc2,0x30,0x7c,0x99,0x66,0x5e,0x0,0x0,0xb0,0x40,0xba,
0x22,0xf2,0x1d,0x11,0xf9,0x65,0xe9,0xd,0xe8,0xf8,0xc1,0x55,0x9f,0xc0,0x92,0x2b,
0x78,0xd,0xec,0xa9,0x54,0x6,0x9f,0x8c,0x1e,0x57,0x2a,0x15,0xa9,0xe8,0xed,0xe8,
0xf1,0xd0,0xfb,0xd8,0x21,0xf0,0x32,0x18,0x76,0x45,0xa9,0x3f,0x54,0x61,0xf8,0x8f,
0x95,0x52,0xdb,0x61,0x18,0x7e,0x49,0x44,0x9a,0x25,0x5c,0xf,0x0,0x0,0xc0,0x34,
0xfa,0x91,0xf4,0xa6,0x6d,0xf9,0x7,0x22,0xf2,0x71,0x11,0x29,0xbc,0x3c,0xdb,0xa8,
0x96,0x93,0x9e,0xd4,0x71,0xae,0x52,0xa9,0xf4,0x2,0x9e,0xb1,0xaf,0xbf,0xbf,0x52,
0x11,0x31,0x9e,0xd7,0xdb,0xfa,0xf9,0x21,0xc6,0x20,0x92,0x28,0x1c,0x1e,0x8a,0xc8,
0xa1,0x88,0x7c,0x5e,0x44,0xde,0x25,0x22,0x1f,0x12,0x91,0xf7,0x47,0xb7,0x7a,0xe1,
0x2b,0x3,0x0,0x0,0x98,0x9c,0xa6,0x88,0xbc,0x24,0xbd,0xca,0xde,0xf,0xa5,0xb7,
0x34,0xdb,0x54,0xe8,0xaf,0xf0,0xe1,0x6c,0x7a,0x8d,0xc2,0x5d,0x45,0x44,0x2a,0x4b,
0x4b,0xfd,0xdb,0xd2,0xb5,0x6b,0xb2,0x14,0x86,0xfd,0xf0,0xb7,0x54,0xa9,0x5c,0x3e,
0x1f,0x1d,0xbb,0xb4,0xd4,0x6b,0x51,0xd6,0xf7,0x3,0x41,0xd1,0x8,0x88,0x96,0x9f,
0x44,0xb7,0xe7,0xa3,0xc7,0xef,0x15,0x91,0x2d,0xe9,0x85,0xc2,0xd,0x11,0x79,0x47,
0xb4,0xd,0x0,0x0,0x30,0xd,0xba,0xd2,0x2b,0x62,0xbd,0x22,0xbd,0xc1,0x1a,0xc7,
0xd2,0xab,0xf2,0x8d,0xbc,0xc,0xdb,0xb8,0xf4,0x2b,0x7f,0x3,0xf3,0xfa,0x89,0xc,
0x34,0xe9,0x8a,0xd9,0xbc,0x2b,0x97,0xcd,0xbc,0x95,0x4a,0x45,0x96,0xa2,0xa0,0x67,
0x6e,0x3b,0x6f,0xd6,0xb1,0x66,0x88,0x4c,0x18,0xec,0xf1,0xe3,0xe8,0x66,0xab,0x4b,
0x2f,0xc,0x6a,0xab,0x22,0xd2,0x18,0xe1,0x7b,0x0,0x0,0x0,0x48,0x73,0x28,0xbd,
0xb0,0xa7,0x8d,0x65,0x1e,0xbe,0x71,0xfb,0xff,0xd8,0x95,0x4e,0x1a,0x4b,0x47,0x67,
0x26,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/done.png
0x0,0x0,0x48,0xf1,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xc8,0x0,0x0,0x0,0xc8,0x10,0x6,0x0,0x0,0x0,0xfd,0xc8,0x72,0xdd,
0x0,0x0,0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x26,0x0,0x0,0x80,0x84,0x0,0x0,0xfa,
0x0,0x0,0x0,0x80,0xe8,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,0x3a,
0x98,0x0,0x0,0x17,0x70,0x9c,0xba,0x51,0x3c,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,
0x44,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x43,0xbb,0x7f,0x0,0x0,0x0,0x9,0x70,
0x48,0x59,0x73,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x48,0x0,0x46,0xc9,0x6b,0x3e,
0x0,0x0,0x47,0x90,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0xdd,0x67,0x5c,0x54,0xd7,
0xda,0x5,0xf0,0xf5,0x9c,0x1,0x54,0x2c,0xc,0x10,0x4b,0x8c,0xd,0x7b,0x8c,0x46,
0x5,0x6,0x6c,0x89,0xb1,0x37,0xc0,0x8e,0xbd,0xb7,0xc4,0x12,0x4d,0x62,0x89,0xa2,
0x22,0xb6,0xc4,0x1a,0x7b,0xef,0xbd,0x17,0x9a,0x1d,0x3b,0x4a,0x35,0x1a,0x35,0xc6,
0xde,0x4b,0x14,0x18,0x2c,0xa0,0xc8,0x9c,0xe7,0xfd,0x10,0x87,0xdc,0x2b,0xd7,0xd7,
0x6,0x67,0xf,0xb0,0xff,0x5f,0xf2,0x53,0x61,0xf6,0x3a,0x87,0x30,0x6b,0x4e,0xdb,
0x9b,0x20,0x49,0x19,0x10,0x33,0x33,0x40,0x14,0x9b,0x23,0xa8,0x74,0x95,0x5b,0x5,
0xb,0xd2,0x1d,0xce,0xcd,0x73,0x9c,0x9c,0x68,0x2f,0xa6,0x30,0x8a,0x17,0x87,0xb,
0x4a,0xd3,0x4d,0x7b,0x7b,0x1c,0xa1,0xd6,0xea,0xdd,0x3c,0x79,0x10,0xcb,0x49,0xb4,
0xc4,0xce,0xe,0xe7,0xd0,0x1a,0xc8,0x93,0x7,0x76,0xd8,0x8c,0xf6,0x7a,0x3d,0x12,
0xb0,0x93,0x8f,0xd8,0xd9,0x21,0x11,0x4d,0x11,0x61,0x67,0x87,0x96,0xf8,0x6,0x2e,
0x56,0x56,0x29,0x3,0x95,0xc2,0x21,0xc4,0x3d,0x7e,0x8c,0x10,0x94,0xa0,0xab,0x26,
0x53,0xaa,0x20,0x65,0xb0,0xb,0xea,0xe3,0xc7,0x74,0x89,0xba,0x73,0xd5,0x17,0x2f,
0xf0,0x2b,0xd6,0xd1,0xe1,0x87,0xf,0xf9,0x2b,0xf5,0x1,0xba,0xff,0xfd,0x37,0x25,
0x29,0xdf,0xe0,0xe0,0xbd,0x7b,0x9c,0x9b,0x1b,0xb3,0xf7,0xc3,0x87,0xaa,0x37,0x1f,
0xa6,0x4d,0xf,0x1f,0x52,0x15,0xfa,0xdb,0xd4,0xe6,0xee,0xdd,0x78,0x87,0x5c,0x51,
0xb9,0xa2,0xfe,0xfe,0xdb,0x89,0x6a,0xd1,0x61,0x7a,0xfe,0x5c,0xf4,0x7e,0x95,0xa4,
0xf7,0x41,0xa2,0x3,0x48,0x12,0x0,0xc4,0x4,0x5,0x5f,0x74,0xbb,0x94,0x27,0x8f,
0x6e,0x12,0x37,0xa3,0x86,0x2e,0x2e,0xf8,0x82,0x4b,0xa9,0x8d,0x9c,0x9d,0x51,0x14,
0xf9,0x69,0x7a,0xf1,0xe2,0x50,0xb1,0x6,0x37,0x9c,0x9c,0xa0,0xf2,0x21,0xfc,0xed,
0xe4,0xc4,0x9,0x38,0x3,0xa3,0x93,0x13,0x86,0x20,0x3f,0xfc,0xb2,0x65,0x13,0x9d,
0xff,0x83,0x5d,0xa3,0x6f,0x31,0x40,0x55,0xf1,0x82,0x7,0x21,0xfa,0xfa,0x75,0x9a,
0x8d,0xf5,0x58,0xf4,0xe7,0x9f,0xfc,0x18,0x21,0x7c,0xe8,0xfc,0x79,0xba,0x82,0x89,
0xca,0x8a,0x3f,0xff,0xa4,0xa5,0xb4,0xdd,0xb4,0xf7,0xdc,0xb9,0xe4,0x38,0x25,0x48,
0x9,0xbe,0x70,0xc1,0xb1,0x49,0xe3,0xd2,0xe1,0xa5,0x1e,0x3f,0x16,0x1d,0x5f,0xca,
0xda,0x64,0x81,0x48,0xe9,0x8a,0xd5,0xe0,0x8b,0x25,0x67,0x65,0xcb,0xf6,0xc4,0x96,
0xb7,0x38,0x36,0xac,0x54,0xc9,0xd4,0x85,0x97,0xf3,0x26,0x83,0x81,0x76,0xf2,0x2f,
0x98,0x62,0x30,0xa0,0x1d,0x8e,0xf2,0x71,0x83,0x81,0x3b,0xd1,0x16,0x3a,0x55,0xa6,
0xc,0x9c,0x78,0x1,0x66,0x2b,0x8a,0xe8,0xdc,0x96,0x8e,0x8a,0xc3,0x1e,0xbd,0x6f,
0xde,0xc4,0x42,0xcc,0x65,0xdb,0xd0,0x50,0x3e,0x40,0x91,0x74,0xf5,0xf8,0x71,0xdc,
0x51,0x8d,0x54,0xfc,0xc8,0x11,0x7d,0x40,0xd4,0xdf,0x61,0xed,0xcf,0x9e,0x25,0xf2,
0x23,0x40,0x55,0x45,0xe7,0x95,0x32,0x27,0x59,0x20,0x52,0x9a,0x88,0xf3,0xf0,0xcf,
0xeb,0xbe,0xee,0xcb,0x2f,0x69,0x8d,0xb2,0x5c,0x75,0x6a,0xd4,0x88,0xed,0xb8,0x9,
0xdd,0x6a,0xd4,0x8,0x4b,0xe1,0x82,0xc5,0xd5,0xaa,0xa1,0x25,0xfc,0x10,0x6f,0x6d,
0x2d,0x3a,0x67,0x96,0xa1,0xa2,0x26,0xfa,0x1a,0x8d,0x34,0x0,0xdf,0xa0,0xdf,0xf1,
0xe3,0xea,0x1c,0x80,0x1b,0x1f,0x3b,0x86,0xef,0xe8,0x18,0xaf,0x3c,0x72,0xc4,0x7e,
0x43,0x42,0xa0,0x53,0x97,0xb0,0x30,0x22,0x6f,0xef,0xcd,0x9b,0xff,0xc7,0xa9,0x39,
0x49,0x7a,0x7,0xb2,0x40,0xa4,0x77,0x72,0xb7,0x57,0x80,0xb3,0x8b,0x8b,0xad,0xad,
0xed,0x64,0xf2,0x23,0xbf,0x6a,0xd5,0x50,0x1e,0xdd,0x14,0x1b,0x4f,0x4f,0x24,0xf0,
0xe,0xdc,0x6c,0xd6,0x8c,0xaf,0x22,0xe,0x8b,0x8a,0x14,0x11,0x9d,0x53,0x7a,0x47,
0xe1,0xd4,0x9,0x36,0x31,0x31,0xf4,0x33,0xf2,0xf2,0xe8,0xe0,0x60,0x84,0x60,0x3a,
0xf9,0x4,0x4,0x3c,0xf,0xb7,0x19,0xf1,0xdc,0x3b,0x38,0xb8,0x40,0x83,0xfa,0x7f,
0x9c,0x19,0xf2,0xec,0x99,0xe8,0x98,0x92,0x65,0x93,0x5,0x22,0xfd,0x97,0x6b,0x7c,
0x90,0x6b,0x72,0xf6,0xec,0xe,0x85,0x9f,0x2c,0x4e,0x98,0xeb,0xe5,0xc5,0x5f,0xd3,
0x2,0x1a,0xd6,0xb9,0x33,0xd7,0x6,0x50,0xad,0x7e,0x7d,0x79,0x24,0x91,0xb9,0x51,
0x65,0x38,0xf1,0x81,0x27,0x4f,0xb8,0x10,0x92,0xe8,0x7e,0x70,0xb0,0x92,0xb,0xdb,
0xd5,0xcf,0xb6,0x6f,0x7f,0x69,0xad,0x1e,0xc8,0x56,0x38,0x38,0xf8,0x93,0x80,0xa6,
0xa1,0xc7,0x63,0x9e,0x3c,0x11,0x9d,0x53,0xb2,0xc,0xb2,0x40,0xb2,0x38,0xa3,0x31,
0x30,0xd0,0xdd,0xdd,0xc5,0x5,0x5f,0xa0,0x2b,0x8f,0xeb,0xdc,0x99,0xa7,0xf2,0x46,
0x1c,0x68,0xdf,0x1e,0xd,0x91,0x80,0x83,0x9f,0x7c,0x22,0x3a,0x9f,0x64,0x21,0xa6,
0xe0,0x1,0x7c,0x5f,0xbc,0xc0,0x53,0xcc,0xc3,0x18,0x7f,0x7f,0xf2,0x23,0x3f,0xd5,
0x77,0xd1,0x22,0x3b,0x7d,0x13,0x8f,0x48,0x8f,0x3,0x7,0x88,0x88,0x0,0x66,0xd1,
0x31,0x25,0x6d,0xc9,0x2,0xc9,0x22,0x1e,0x79,0xee,0xac,0x56,0xdd,0xb1,0x60,0x41,
0x5d,0x4e,0x3a,0xfa,0x32,0x47,0xb7,0x6e,0x28,0x4e,0x2d,0x51,0xb6,0x73,0x67,0xc,
0x41,0xf,0x3c,0x2e,0x5d,0x5a,0x74,0x3e,0x29,0x63,0xa2,0x41,0x34,0x7,0xd7,0xce,
0x9f,0x67,0x1f,0x5e,0x42,0x75,0x17,0x2d,0xa2,0x7c,0x74,0xda,0xfa,0xd6,0xaa,0x55,
0x7a,0xbd,0x87,0xc7,0xb1,0x63,0x71,0x71,0xa2,0xf3,0x49,0xe9,0x4b,0x16,0x48,0x26,
0x15,0x3b,0x39,0xb0,0xa3,0x6b,0xc7,0xf2,0xe5,0xa9,0x3,0x12,0x95,0x6e,0x3f,0xfd,
0x84,0x75,0x3c,0x1f,0x87,0xda,0xb7,0x47,0x4f,0x84,0x61,0x8f,0x8d,0x8d,0xe8,0x7c,
0x52,0x26,0x35,0x2,0x8b,0x78,0xdb,0xf3,0xe7,0x74,0x92,0x2e,0xe0,0xfc,0xe6,0xcd,
0xa6,0xf1,0x6a,0x9,0x72,0x9a,0x37,0xcf,0xb1,0x89,0xd7,0xee,0xf0,0x52,0x27,0x4f,
0x8a,0x8e,0x27,0xa5,0x2d,0x59,0x20,0x99,0x44,0x6c,0x4c,0x80,0xb3,0xfb,0xb0,0x1a,
0x35,0x14,0x6f,0x2,0xdf,0x18,0x36,0x8c,0x17,0xb3,0x2b,0x3e,0x69,0xd2,0x4,0xf6,
0xf0,0x44,0x38,0xc9,0x9f,0xb3,0x24,0x14,0xf5,0xa0,0xc9,0x58,0x7b,0xfc,0xf8,0x3f,
0xf,0x54,0x4e,0x9a,0x64,0xbf,0xd2,0x73,0x78,0xc4,0xa9,0x80,0x0,0xd1,0xb9,0xa4,
0x8f,0x23,0xdf,0x58,0x32,0x18,0xe6,0x4d,0x9b,0x5a,0xb7,0xd6,0xe9,0xe2,0xa6,0xd8,
0xfa,0xdf,0x34,0xb6,0x6e,0x4d,0x25,0x39,0x9f,0xba,0x63,0xf0,0x60,0xd4,0x42,0x2d,
0xaa,0xe5,0xe2,0x22,0x3a,0x9f,0x24,0xbd,0xb,0x6a,0x8a,0x32,0xbc,0xf4,0xd8,0x31,
0x6a,0x45,0x3,0xa8,0xf6,0xf8,0xf1,0x76,0xdf,0x7b,0xec,0x9,0x7f,0xb8,0x67,0x8f,
0xe8,0x5c,0xd2,0xfb,0x91,0x5,0x92,0x41,0xc4,0xe,0xf5,0xbf,0xe0,0xba,0xa8,0x51,
0x23,0xe5,0x28,0xed,0x52,0xd4,0xc9,0x93,0x39,0x18,0x25,0xb1,0xac,0x7c,0x79,0xd1,
0xb9,0x24,0x29,0x4d,0xcc,0x43,0x6d,0x34,0x8c,0x88,0x80,0x3d,0x4d,0x23,0xcf,0xf1,
0xe3,0xf5,0xdf,0x35,0x19,0x15,0x66,0x8,0x8,0x90,0x17,0xe7,0x2d,0x9b,0x2c,0x10,
0xb,0x15,0x13,0xb4,0xe3,0x88,0xdb,0xa5,0x72,0xe5,0x74,0x6b,0x75,0x83,0x50,0x69,
0xf2,0x64,0x9e,0xb,0x3f,0x7c,0xd1,0xa4,0x89,0xe8,0x5c,0x92,0xa4,0x9,0x3f,0xdc,
0xc0,0xb4,0xf0,0x70,0xb5,0x1e,0x7,0xa2,0xc0,0xc0,0x81,0xf2,0x1a,0x8a,0x65,0x92,
0x5,0x62,0x21,0x62,0xb2,0x7,0x96,0xaa,0x72,0xeb,0xb3,0xcf,0x94,0xea,0x7c,0xd3,
0xb4,0x7e,0xf4,0x68,0xf8,0xe0,0x4,0x3c,0x7b,0xf4,0x40,0x65,0xdc,0xa1,0x2e,0x3a,
0x9d,0xe8,0x7c,0x92,0x24,0xc4,0xab,0xb9,0xc2,0xa8,0x7,0x6c,0x39,0xff,0xda,0xb5,
0x56,0x5b,0x54,0xa3,0xf2,0x68,0xc8,0x90,0x5c,0x25,0xbc,0x1e,0x86,0xb5,0x7f,0xf0,
0x40,0x74,0xbc,0xac,0x4e,0x16,0x88,0x20,0xe6,0x7,0xf6,0xec,0x6b,0x3e,0x75,0x79,
0x5e,0x72,0xc4,0x8,0x94,0xa4,0x73,0xfc,0x62,0xf0,0x60,0x9e,0xc6,0x5b,0x50,0x30,
0x47,0xe,0xd1,0xf9,0xb2,0xa,0xaa,0x4d,0x3f,0xf2,0xf8,0xa7,0x4f,0x79,0x33,0xfb,
0x20,0xf7,0xcb,0x97,0x29,0xff,0x50,0x2,0x51,0x88,0x7b,0xfc,0x18,0x27,0x51,0x84,
0xf6,0x99,0x4c,0xd8,0x84,0x66,0x58,0x91,0x33,0x27,0xfa,0xe1,0x38,0x7,0xff,0xc7,
0x5d,0x6c,0x87,0x30,0x8b,0x46,0xe7,0xca,0x25,0x1f,0xb0,0xd4,0x88,0x79,0x8a,0x16,
0x37,0xb6,0x41,0xc8,0xd8,0xb1,0x76,0x97,0xa,0xfe,0x61,0x3a,0x3b,0x67,0xe,0x29,
0xae,0x86,0xa8,0xe8,0xff,0xf8,0xf9,0x49,0x9a,0x90,0x5,0xa2,0xb1,0xd8,0x36,0x81,
0x9,0xae,0x9,0xd5,0xaa,0x29,0x15,0xf8,0xac,0x72,0x6a,0xe9,0x52,0xee,0x87,0x7,
0xf8,0xa1,0x6c,0x59,0xd1,0xb9,0x32,0x8c,0x10,0x44,0xe1,0x42,0x72,0x32,0xf6,0xd2,
0x5a,0xc,0xbd,0x72,0x85,0x42,0x79,0x5,0x8a,0x5f,0xbc,0x8,0x5b,0x76,0x44,0xe0,
0xf5,0xeb,0x68,0x8d,0x7,0x74,0xfa,0xe6,0x4d,0x9a,0x81,0xbf,0xd4,0xef,0x6e,0xde,
0x34,0x9d,0xa6,0x5,0xca,0xad,0xbb,0x77,0xf9,0xa4,0x69,0x6,0xf7,0x8c,0x8d,0xcd,
0x56,0x56,0x69,0x49,0x11,0x31,0x31,0x39,0x9d,0xa,0x6,0x27,0x4f,0x8d,0x8d,0x4d,
0xab,0x37,0x9e,0x7f,0x9e,0xb3,0xc9,0x9d,0x5b,0x57,0xc1,0xea,0x47,0x75,0x9f,0x83,
0x3,0x5d,0x48,0x7e,0xf6,0x72,0x90,0x83,0x3,0x7d,0xa3,0x5b,0xa7,0xfc,0x99,0x2f,
0x1f,0x3f,0x50,0x4b,0xa2,0x4a,0xa1,0x42,0x58,0xad,0x7c,0xc1,0xd,0x8a,0x14,0x41,
0x12,0xe7,0x23,0x9f,0x62,0xc5,0x90,0x8c,0x9e,0x68,0x51,0xac,0x18,0xcf,0xc6,0x56,
0xe4,0x2b,0x57,0x4e,0x3e,0xc0,0xf9,0x7e,0x68,0x2e,0xf2,0xe3,0xb7,0xb,0x17,0x90,
0xc8,0x2b,0xf1,0x6b,0xbf,0x7e,0xfa,0x9,0x5e,0x73,0xc3,0x3,0x42,0x42,0x44,0xe7,
0xca,0x2a,0x64,0x81,0xa4,0xb3,0xfb,0x7b,0xf6,0x56,0xf8,0x72,0x4a,0xce,0x9c,0xd9,
0xea,0xbf,0xe8,0x9a,0x2d,0x7c,0xc2,0x4,0x9c,0xa2,0xe9,0xe4,0x35,0x60,0x80,0x9c,
0x75,0xf6,0xbf,0xd1,0x4f,0xd4,0xa,0x77,0x13,0x13,0x71,0x99,0xff,0xe0,0x5d,0x51,
0x51,0xec,0x81,0xb6,0x94,0x3d,0x2c,0x8c,0x9d,0xb9,0x4,0x22,0xa2,0xa2,0xe8,0x21,
0x7d,0x8b,0xd3,0xe7,0xcf,0xeb,0xdb,0xe8,0xa,0xc7,0x7e,0x76,0xe1,0x2,0x29,0x8d,
0x4b,0x5f,0xfe,0xfe,0xc5,0xb,0xd1,0xb9,0xd3,0xda,0xd3,0x8e,0xdb,0x26,0x57,0xfb,
0x32,0x5f,0xbe,0xe4,0xa2,0x56,0x37,0x92,0x8b,0x96,0x2f,0xcf,0x55,0xe9,0x4,0x57,
0x2d,0x5f,0x9e,0xb6,0xa1,0x19,0x15,0x72,0x73,0xe3,0x9a,0xe4,0xc7,0x25,0xdc,0xdd,
0xe1,0xc5,0x3b,0xe8,0x87,0x92,0x25,0x45,0xe7,0xb5,0x18,0x71,0x8,0x80,0x1b,0x33,
0xb5,0xe3,0x1f,0x11,0x3b,0x67,0x4e,0xc2,0x97,0xd4,0xde,0xf4,0xd7,0xcf,0x3f,0x17,
0x5c,0xec,0x19,0x1d,0x15,0x95,0x90,0x20,0x3a,0x5e,0x66,0x25,0xb,0x24,0x9d,0x18,
0x83,0x3,0xe6,0x18,0x46,0xd5,0xa9,0xc3,0x25,0xd1,0x94,0x82,0x16,0x2f,0x46,0x5e,
0xfc,0xe,0x2b,0x27,0x27,0xd1,0xb9,0x44,0xa1,0x1e,0xb0,0x46,0xd1,0x84,0x4,0xb8,
0x52,0xb,0x4c,0x3c,0x7c,0x18,0x87,0x78,0x31,0xe7,0xd8,0xbf,0x1f,0x9b,0xc8,0x4e,
0x69,0x79,0xf8,0xb0,0x5d,0x9e,0x2,0xf9,0x93,0x5f,0x9e,0x39,0x23,0x4f,0x45,0xbc,
0x9b,0x27,0xd1,0xc1,0x17,0x2b,0x1d,0xc9,0x9b,0x37,0x79,0xa6,0x69,0xab,0xf5,0xc0,
0x2a,0x55,0xb0,0x2,0x36,0x28,0x59,0xa7,0xe,0x75,0xa5,0xbd,0x74,0xa8,0x5e,0x3d,
0x9e,0xc1,0xfd,0xe1,0x54,0xae,0x9c,0xe8,0x9c,0xc2,0x4c,0xc1,0x52,0xe4,0xb9,0x78,
0x51,0xad,0xce,0xcf,0x31,0xbf,0x4b,0x17,0x79,0x11,0x3e,0x7d,0xc8,0x2,0x49,0x23,
0xe6,0xd9,0x6a,0x73,0x24,0xa1,0xb5,0x6e,0xc3,0x8c,0x19,0xf0,0xc5,0x35,0xcc,0xec,
0xd9,0x33,0xcb,0x3d,0xc8,0x67,0xa2,0x5f,0x38,0xe4,0xfa,0x75,0xec,0xe3,0x71,0x34,
0x6e,0xdb,0x36,0x9a,0xaf,0xc,0xa0,0x2d,0x81,0x81,0x76,0x87,0x68,0x47,0xcc,0xc0,
0xd0,0xd0,0xcc,0x7a,0xe4,0x60,0x69,0xcc,0x53,0xd7,0x58,0x5d,0x56,0x6a,0x24,0xb7,
0x6d,0xd0,0x0,0x31,0xb8,0xa1,0x16,0x68,0xd6,0x8c,0x5b,0x22,0x1,0xdd,0xea,0xd7,
0xc7,0x44,0xf4,0xa6,0x16,0xd9,0xb3,0x8b,0xce,0x99,0xee,0x5e,0x9d,0xf2,0xa4,0x68,
0xba,0x8c,0x9a,0x93,0x26,0xd9,0x8d,0x4b,0xf0,0x7c,0xda,0x69,0xec,0x58,0x52,0xbc,
0xdb,0x9c,0xf7,0x4e,0x4a,0x12,0x1d,0x2f,0xa3,0xcb,0x3a,0x6f,0x6c,0xe9,0xe4,0xf1,
0x84,0xa0,0xdb,0x86,0xdb,0xa5,0x4b,0xab,0x2b,0x55,0x2f,0x1c,0xdc,0xb2,0x85,0xc3,
0xe0,0x47,0xb3,0x2b,0x54,0x10,0x9d,0x2b,0xdd,0x3d,0x44,0x25,0x24,0x5f,0xbb,0x46,
0x7,0x51,0x84,0xfd,0xd7,0xaf,0x47,0xe,0x54,0xd6,0xd,0xd8,0xba,0x55,0xdf,0xd9,
0x33,0xfa,0xe4,0xf6,0xe8,0x68,0xd1,0xf1,0xa4,0xff,0xed,0xef,0x8d,0x9b,0x36,0xd6,
0xe4,0x5c,0xb9,0xb2,0xfd,0x94,0x3d,0x3e,0x61,0x6e,0xe3,0xc6,0x6a,0x3f,0xca,0x89,
0x66,0xad,0x5b,0xe3,0x9,0x12,0xe9,0xb4,0xa7,0x67,0x86,0x5f,0xe1,0xf1,0x6d,0x92,
0xb1,0x1c,0xae,0xbf,0xff,0xce,0xee,0xdc,0x90,0xcb,0x75,0xec,0xe8,0x70,0xd5,0xab,
0x77,0x44,0xff,0x73,0xe7,0x44,0xc7,0xca,0xa8,0x64,0x81,0x7c,0xa0,0xb8,0x8,0xff,
0xaa,0xee,0xf9,0x9a,0x36,0x45,0x71,0xda,0xc3,0x93,0x57,0xac,0x80,0x82,0xc3,0x98,
0xa7,0xd7,0x8b,0xce,0x95,0xe6,0x5e,0xcd,0x6d,0x4,0x6b,0xdc,0xa1,0xe6,0x1,0x1,
0x72,0x16,0xd6,0xcc,0x29,0x8e,0xb7,0x73,0x45,0xd6,0xeb,0x29,0xde,0x3a,0x28,0x7b,
0x15,0x6f,0x6f,0x74,0xc7,0x24,0x5e,0xd3,0xb9,0x33,0x2f,0xe5,0xa1,0xe8,0x50,0xbd,
0xba,0xe8,0x7c,0x69,0x8d,0x5a,0x22,0x8,0x6d,0x9f,0x3d,0xc3,0x56,0x6a,0x82,0xf5,
0xdd,0xba,0xe9,0xed,0x3d,0x3c,0xc3,0x23,0x36,0x6f,0x16,0x9d,0x2b,0xa3,0x91,0x5,
0xf2,0x8e,0x58,0x8d,0x8c,0x70,0x71,0xb6,0xb6,0x36,0xd2,0xbd,0x23,0x4a,0x89,0x29,
0x53,0x60,0x44,0x69,0xba,0x31,0x70,0xa0,0xe8,0x5c,0x69,0x6e,0x39,0x12,0x11,0x7d,
0xe9,0x12,0x4a,0xe3,0x57,0x1e,0x3b,0x67,0x8e,0x4a,0xba,0xd,0xd4,0x7a,0xc5,0xa,
0xb9,0x6,0x77,0xd6,0x14,0xc7,0x41,0xad,0xc,0xad,0x2b,0x55,0x42,0xa4,0x3a,0x1e,
0xc5,0xbf,0xff,0x1e,0xcb,0x30,0x4,0x3,0xda,0xb5,0xcb,0x34,0xa7,0xc0,0xcc,0x17,
0xdf,0x9f,0xd1,0x41,0xcc,0x9c,0x34,0xc9,0xae,0x7c,0xc2,0x84,0xa2,0x6d,0x47,0x8e,
0x94,0x2b,0x35,0xbe,0x1b,0x59,0x20,0x6f,0x11,0xdb,0x66,0xc7,0x54,0xd7,0x84,0xc2,
0x85,0x95,0x92,0xba,0x72,0x4a,0x9b,0x8d,0x1b,0x79,0x30,0x4c,0x78,0x50,0xb5,0xaa,
0xe8,0x5c,0x69,0x66,0x15,0x56,0x61,0xea,0xfe,0xfd,0x98,0xc7,0x95,0xb9,0xf8,0xcc,
0x99,0xfa,0xb,0x51,0xc3,0x23,0xa,0x5,0x7,0xcb,0xb5,0xb4,0xa5,0xff,0x25,0xe5,
0xe2,0xfd,0x16,0xd3,0x11,0xeb,0x87,0x7d,0xfa,0x10,0xe1,0x21,0xad,0xe8,0xd7,0x8f,
0x7,0xa3,0x3c,0x1e,0x14,0x28,0x20,0x3a,0xdf,0x47,0xeb,0x84,0x50,0xe4,0xda,0xb3,
0x87,0xd6,0x50,0x75,0x9b,0xa4,0x76,0xed,0xe4,0xb4,0xf4,0xff,0x3f,0x59,0x20,0x6f,
0x90,0xb2,0xc6,0x77,0x12,0xcd,0x50,0xbf,0xe,0xe,0xe6,0x8d,0xc8,0x43,0x2d,0x3e,
0xfb,0x4c,0x74,0xae,0x8f,0x95,0x32,0x2b,0xea,0x56,0x3e,0x42,0x25,0x47,0x8e,0xb4,
0x27,0x4f,0xa,0xa3,0x43,0x87,0x44,0xe7,0x92,0x32,0x26,0x56,0x83,0x2f,0x96,0x9c,
0x95,0x2d,0x5b,0xfc,0x63,0xf5,0xa2,0xe3,0xda,0x2e,0x5d,0xe0,0xcd,0xf1,0xea,0xd6,
0xd1,0xa3,0x33,0xfc,0xef,0xcb,0x71,0xf8,0x62,0xc4,0x95,0x2b,0x5c,0x55,0x77,0x41,
0x71,0x69,0xde,0xdc,0xc1,0xb1,0x71,0xc2,0xc9,0xc2,0x7f,0xfc,0x21,0x3a,0x96,0xa5,
0x91,0x5,0xf2,0x9a,0x58,0xf7,0xa0,0x56,0x86,0xd6,0xd,0x1b,0x2a,0x49,0x7c,0x1a,
0xbd,0x36,0x6f,0xe6,0x10,0x9e,0x4e,0x23,0x73,0xe5,0x12,0x9d,0xeb,0x43,0xd1,0x16,
0x74,0x40,0xdb,0xdd,0xbb,0xe9,0xb,0xca,0xaf,0xce,0xf7,0xf5,0xb5,0xab,0xe6,0x71,
0x29,0xf2,0x52,0x78,0xb8,0xe8,0x5c,0x52,0xe6,0x64,0x9e,0x61,0x41,0xff,0xdb,0xb3,
0xb,0x89,0xd6,0xbd,0x7a,0xe1,0x16,0x5b,0x21,0xb7,0x8f,0xf,0x46,0xe3,0x2,0x4a,
0xe5,0xcf,0x2f,0x3a,0xdf,0xfb,0x32,0x5f,0x2b,0xe1,0xc2,0x28,0xca,0xab,0xdb,0xb5,
0x93,0xd3,0xd0,0xff,0x37,0x59,0x20,0xaf,0xc4,0xfd,0x11,0x38,0xc5,0x70,0xbb,0x4b,
0x17,0x84,0xf1,0x7a,0xea,0xb6,0x78,0x71,0x46,0x9d,0x9a,0x82,0xc6,0x62,0x3f,0x2f,
0xfb,0xf3,0x4f,0xe,0xe6,0xfc,0xd0,0xf,0x1d,0x6a,0xff,0x97,0xd7,0x88,0x88,0x42,
0x81,0x81,0xa2,0x73,0x49,0x59,0x93,0xf9,0x41,0xda,0xec,0xee,0x49,0xbf,0x64,0xab,
0xd1,0xbf,0x3f,0x6a,0xe1,0x7,0x3c,0x19,0x39,0x32,0xc3,0x7d,0x30,0x3b,0x85,0xcf,
0x78,0xa5,0xc9,0x44,0x73,0x68,0x20,0x59,0xf5,0xee,0xad,0xdf,0xe6,0x71,0x34,0xbc,
0xd4,0xb2,0x65,0xa2,0x63,0x89,0x96,0xe5,0xb,0x24,0x6e,0x49,0x60,0x15,0x43,0xcd,
0x51,0xa3,0x50,0x9b,0xbf,0xa4,0xa,0x7e,0x7e,0x19,0xee,0xb9,0x8d,0xb1,0x28,0x8b,
0x4b,0xf,0x1e,0x90,0x2d,0xcf,0x40,0xd,0x1f,0x1f,0xbb,0xf1,0xcf,0x6b,0x16,0xcd,
0xbe,0x62,0x85,0xbc,0x8,0x28,0x59,0xa2,0x94,0x6b,0x8a,0x4f,0x74,0xa3,0x15,0x9a,
0x38,0x91,0xe7,0xa0,0x23,0x86,0x74,0xe8,0x90,0x61,0x7e,0xef,0x5e,0x5d,0x74,0xc7,
0xe,0xfa,0x1,0xb,0x6,0xe,0xb4,0xff,0xd1,0xe3,0xf3,0xf0,0xe4,0xd9,0xb3,0x45,
0xc7,0x12,0xc5,0xf2,0x7f,0x60,0x69,0xcc,0xbc,0x20,0x93,0xb1,0x6b,0x8e,0x2b,0x37,
0x26,0xce,0x9f,0x8f,0x19,0x28,0x8f,0xe,0xbd,0x7a,0x89,0xce,0xf5,0xce,0xcc,0xff,
0x3,0x2f,0xa1,0xe5,0xf8,0x64,0xe9,0x52,0x1a,0x8a,0xed,0x36,0xfb,0x87,0xe,0x95,
0x17,0xfb,0xa4,0x8c,0xc8,0xe8,0xe3,0xdf,0xcf,0xcd,0xb3,0x76,0x6d,0x66,0xba,0x83,
0xc4,0xf9,0xf3,0x31,0x4,0x3d,0xf0,0xb8,0x74,0x69,0xd1,0xb9,0xde,0x59,0x1c,0x2,
0xe0,0x36,0x66,0x8c,0x7d,0x71,0xcf,0x45,0xe1,0x73,0xfc,0xfc,0x44,0xc7,0xd1,0x5a,
0x96,0x29,0x10,0x66,0x5f,0x6,0x14,0x25,0xfe,0x53,0xd7,0xad,0x6e,0x76,0xcb,0x97,
0xf3,0x9f,0xc8,0x86,0x32,0x9d,0x3b,0x8b,0xce,0xf5,0xae,0x68,0x10,0xcd,0xc1,0xb5,
0xf3,0xe7,0xf9,0x3c,0x2a,0x60,0xf8,0xb7,0xdf,0xda,0x47,0x78,0x4c,0xd,0xff,0xf1,
0xe8,0x51,0xd1,0xb9,0x24,0x29,0x2d,0xa4,0xcc,0x4e,0x5d,0xf4,0xd9,0xfc,0x84,0xb9,
0xc3,0x87,0x73,0x47,0xb6,0x21,0xa7,0x61,0xc3,0x32,0xca,0x83,0x8d,0x54,0x9e,0xba,
0x61,0xfc,0xac,0x59,0x76,0xb7,0x9b,0x3c,0xc,0xaf,0x3f,0x68,0x50,0x56,0x79,0x3e,
0x2a,0xd3,0x17,0x8,0x33,0x33,0x40,0x64,0xf4,0x9,0xb2,0x71,0x1b,0xb3,0x68,0x11,
0x86,0xf0,0x36,0x4,0xf7,0xec,0x29,0x3a,0xd7,0x5b,0xbd,0x5a,0x7,0x1,0xfb,0x39,
0x3f,0xaa,0xfc,0xf6,0x9b,0x7e,0xb0,0x6e,0x43,0xec,0x2e,0x1f,0x1f,0x39,0x15,0x88,
0x94,0x15,0xa4,0xdc,0x5,0x79,0x91,0xa,0xab,0xa6,0x35,0x6b,0x32,0xcc,0xc,0xf,
0x7a,0xf8,0xa2,0xd2,0xca,0x95,0x7a,0x44,0x46,0x85,0x2f,0xea,0xde,0x3d,0xb3,0xdf,
0xe,0x9f,0x69,0xb,0xc4,0x5c,0x1c,0xf1,0xdf,0x7,0xde,0x36,0x2c,0x9b,0x3d,0x9b,
0xc7,0xe2,0x77,0x5a,0xd0,0xaf,0x9f,0xe8,0x5c,0x6f,0x43,0xc5,0x61,0x8f,0xde,0x37,
0x6f,0xa2,0x82,0xd2,0x9b,0x7e,0xe9,0xda,0x55,0x7f,0xa4,0xc9,0xf9,0xb0,0x2b,0x7,
0xf,0x8a,0xce,0x25,0x49,0x22,0x98,0x6f,0x13,0x36,0xea,0x93,0x9f,0x3b,0x58,0xf9,
0xf9,0xe1,0x90,0xd2,0x8,0xb9,0x87,0xc,0xb1,0xf8,0xd9,0xac,0x2f,0xa3,0x14,0xd7,
0x5a,0xbe,0x5c,0xef,0xea,0x51,0x26,0x62,0x52,0x8f,0x1e,0x99,0xf5,0x88,0x24,0xd3,
0x16,0x48,0xdc,0xfa,0x80,0x3,0x6e,0xc3,0xa6,0x4d,0xfb,0x67,0x7d,0x85,0x1f,0x7f,
0x14,0x9d,0xe7,0xad,0x16,0xe0,0x31,0x6f,0xdb,0xb2,0x85,0x7b,0x67,0xcf,0xab,0x7a,
0xf5,0xec,0xe9,0xe0,0x58,0xaf,0x7e,0x54,0x74,0x7c,0xbc,0xe8,0x58,0x92,0x64,0x49,
0x52,0xae,0x99,0x24,0xd0,0x20,0x1c,0x5b,0xb7,0xce,0xe2,0x6f,0xf,0xde,0xd,0x5b,
0xd4,0x9a,0x3e,0xdd,0xbe,0x9d,0x67,0x9d,0xf0,0x49,0x3f,0xfd,0x24,0x3a,0x4e,0x5a,
0xcb,0x74,0x5,0x62,0xf4,0x9,0xec,0xe8,0xe6,0x39,0x7e,0x3c,0xf,0xe6,0x36,0x78,
0xe0,0xe3,0x23,0x3a,0xcf,0x1b,0x99,0x67,0x9,0xad,0x43,0xae,0xbc,0x67,0xe4,0x48,
0x3b,0xbb,0x26,0x4d,0x22,0xaa,0x4e,0x9e,0x9c,0x59,0x3f,0xa9,0x48,0x52,0x5a,0x32,
0xaf,0x9b,0xf2,0xb2,0xbb,0xcd,0xe2,0x64,0x5e,0xbf,0x1e,0x95,0x79,0x3a,0x72,0xd4,
0xae,0x2d,0x3a,0xd7,0x1b,0x65,0xd2,0x8b,0xed,0x99,0xa6,0x40,0xe2,0x2e,0x6,0xdc,
0x72,0x6f,0x37,0x70,0x20,0xf2,0xe2,0x77,0xbe,0x32,0x63,0x86,0xe8,0x3c,0x6f,0x42,
0x23,0xe0,0x8b,0x96,0xf7,0xee,0xb1,0xbd,0x32,0x82,0x4b,0xb6,0x6d,0x6b,0x3f,0xb1,
0x49,0xab,0x88,0x96,0x47,0x8e,0x88,0xce,0x25,0x49,0x19,0x51,0xca,0x1c,0x75,0xb7,
0xef,0x55,0x55,0xc6,0x4e,0x9e,0x8c,0xdc,0xd8,0x4e,0x63,0x7,0xd,0x12,0x9d,0xeb,
0x8d,0x7e,0xa6,0x1f,0xe1,0x35,0x60,0x80,0xfd,0x42,0x8f,0x4b,0xe1,0x23,0xe7,0xcc,
0x11,0x1d,0xe7,0x63,0x65,0xf8,0x2,0x89,0x9f,0x15,0xd8,0xc0,0x2d,0x6f,0x83,0x6,
0xea,0x67,0x5c,0x15,0x2f,0x2,0x3,0x51,0x1b,0x2e,0x28,0x6b,0x65,0x25,0x3a,0xd7,
0xeb,0xc8,0x1d,0xbe,0x3c,0xe0,0x8f,0x3f,0xd4,0x13,0x80,0xfa,0x9b,0x87,0x87,0x83,
0xa3,0x67,0x74,0x54,0xf4,0xcd,0x9b,0xa2,0x73,0x49,0x52,0x66,0x12,0xc7,0xfe,0x1b,
0xd,0xad,0xbb,0x76,0xc5,0x54,0xaa,0x45,0x65,0x17,0x2e,0x44,0x4f,0x84,0x61,0xcf,
0x7f,0xac,0x61,0x2f,0xda,0xab,0x7,0x12,0x71,0x81,0x2,0x95,0xa7,0x2d,0x5a,0xd8,
0xf7,0xf5,0x18,0x1d,0x66,0xf0,0xf7,0x17,0x1d,0xeb,0x43,0x59,0xee,0x45,0xa8,0xb7,
0x88,0xa9,0x13,0xe4,0x50,0xa5,0xf2,0xe7,0x9f,0xab,0x3,0xf8,0x21,0x9a,0x6f,0xdc,
0x68,0xa9,0xc5,0x61,0x9e,0x9c,0xcd,0xf4,0x9b,0x6e,0x3,0x55,0xa9,0x51,0x43,0x16,
0x87,0x24,0xa5,0x1f,0x7b,0xf2,0x6a,0x13,0xb1,0x79,0xc5,0xa,0x2e,0xa0,0xbe,0x54,
0xe7,0xd4,0xae,0xfd,0xcf,0x35,0x88,0x47,0x8f,0x44,0xe7,0x4a,0x51,0x19,0x77,0xa8,
0x8b,0x4e,0x47,0x8b,0xb1,0x5a,0x8d,0x5b,0xbb,0x36,0x65,0xb6,0xe3,0xc,0x2a,0xc3,
0x1d,0x81,0xa4,0x9c,0xfb,0x9c,0x61,0xb3,0xe3,0x65,0x68,0x58,0x18,0x74,0x3c,0x9c,
0x6a,0x17,0x2b,0x26,0x3a,0xd7,0xeb,0x68,0x34,0x2a,0xf1,0xb7,0x73,0xe7,0xda,0xcd,
0x4a,0x3c,0x51,0x6c,0xd7,0xc0,0x81,0xf2,0xc9,0x70,0x49,0xd2,0xde,0xa3,0x88,0x0,
0x67,0x17,0x97,0xb2,0x65,0x75,0x76,0xd8,0xa9,0xe3,0xe0,0x60,0x4b,0x5b,0x5a,0x9a,
0xea,0x63,0x9,0x1e,0xde,0xbe,0x9d,0x5c,0x40,0x7d,0x68,0xfd,0xd8,0xdd,0xfd,0x93,
0x80,0xa6,0xa1,0xc7,0x63,0xee,0xde,0x15,0x9d,0xeb,0x9d,0xf3,0x8b,0xe,0xf0,0xae,
0x52,0x66,0xfd,0x6c,0xa5,0xf6,0x70,0x68,0x74,0xe0,0x80,0xa5,0x2e,0x74,0x43,0x4d,
0xe1,0x4b,0x31,0xe3,0xc6,0xe9,0x8f,0x78,0x46,0x87,0x5d,0x19,0x3d,0x5a,0x74,0x1e,
0x49,0x92,0xfe,0x63,0x89,0xdf,0x92,0x8a,0x21,0xe9,0xf0,0xfe,0xfd,0x3c,0x1a,0x75,
0xa9,0xfb,0xe7,0x9f,0x8b,0xce,0x95,0xc2,0xf,0x37,0x30,0x2d,0x3c,0x5c,0x3f,0x5d,
0x57,0x3f,0xf6,0xd4,0xd7,0x5f,0x67,0x94,0xe7,0xbd,0x32,0x4c,0x81,0xc4,0x71,0x80,
0xb3,0x5b,0xef,0x15,0x2b,0x60,0x84,0x1f,0x7e,0xef,0xd2,0x45,0x74,0x9e,0xd7,0xd1,
0x75,0xea,0x4,0x9b,0x61,0xc3,0xf4,0x95,0x3d,0x8c,0xe1,0xc7,0x26,0x4f,0x16,0x9d,
0x47,0x92,0xa4,0xd4,0x52,0xd6,0x33,0xc9,0xa1,0xb6,0xb1,0x79,0xb8,0x67,0xf,0xa,
0xf0,0x58,0x4c,0xaa,0x5c,0x59,0x74,0x2e,0x33,0x5a,0x48,0x1,0x38,0x36,0x6f,0x9e,
0xfe,0x67,0x8f,0x45,0xe1,0x36,0x19,0xe0,0xb9,0x35,0xd1,0x1,0xde,0x26,0x65,0x96,
0xdc,0x42,0x5c,0x96,0x5a,0xac,0x58,0x21,0x3a,0xcf,0xbf,0xc1,0x5e,0xcd,0x49,0xd5,
0xd,0x39,0x68,0xd1,0x80,0x1,0xf6,0x87,0x3d,0x67,0x86,0x25,0xcd,0x9d,0x2b,0x3a,
0x96,0x24,0x49,0x6f,0x97,0xb2,0x84,0xef,0x48,0xab,0x5d,0xd9,0xbc,0x82,0x83,0x2d,
0x6e,0xa1,0xb8,0x8a,0xd4,0x86,0xbf,0xea,0xd8,0xd1,0xfe,0xa6,0x47,0x42,0xc4,0xb4,
0xb5,0x6b,0x45,0xc7,0x79,0x13,0x8b,0xbd,0x88,0x1e,0xdf,0x39,0xf8,0xa2,0x8b,0x4b,
0x89,0x12,0xf4,0x15,0xbf,0xa0,0x86,0xb3,0x66,0x89,0xce,0xf3,0x3a,0xda,0xc6,0x1d,
0xe8,0xe0,0xd0,0xa1,0xb2,0x38,0x24,0x29,0xe3,0xb1,0xa7,0xe6,0x74,0x9a,0x8c,0x46,
0x53,0x35,0x5d,0x49,0x4c,0x6f,0xd8,0x10,0x9b,0xd1,0x5,0xba,0xc8,0x48,0xd1,0xb9,
0xcc,0xa8,0x2e,0x4c,0xb4,0x71,0xf1,0x62,0x4b,0xbf,0xc8,0x6e,0x71,0x5,0x62,0xbe,
0xaf,0x5b,0x2d,0x63,0xfa,0x4c,0xd7,0x64,0xfd,0x7a,0xbe,0x86,0x8a,0xb0,0xcd,0x93,
0x47,0x74,0xae,0x14,0xf5,0xe9,0x30,0xda,0xfa,0xf8,0xe8,0x7,0x7b,0xd5,0xc,0x3b,
0x37,0x75,0xaa,0xe8,0x38,0x92,0x24,0x7d,0x38,0xc7,0x26,0x8d,0x4b,0x87,0x97,0x7a,
0xfc,0xd8,0x6a,0x1,0x8a,0x99,0x5e,0x34,0x6a,0x44,0x9d,0x50,0x5,0xc5,0xce,0x9d,
0x13,0x9d,0x8b,0xa7,0xf1,0x16,0x14,0xcc,0x91,0x83,0xba,0xf2,0x13,0x3a,0xb4,0x76,
0xed,0xad,0x69,0x9b,0x36,0x55,0xb9,0x95,0x23,0x87,0xe8,0x5c,0xaf,0xb3,0xb8,0x2,
0x31,0x56,0xbc,0x37,0x5f,0xa7,0x8e,0x1f,0x8f,0xbe,0x8,0xc1,0x6e,0x83,0x41,0x74,
0x9e,0x14,0xe7,0x69,0xe,0xae,0xfd,0xf6,0xdb,0x3f,0xb3,0xe0,0x4e,0x9c,0x28,0x3a,
0x8e,0x24,0x49,0x69,0x27,0x77,0xb4,0x67,0x74,0x54,0xf4,0xa3,0x47,0x56,0xfa,0x97,
0xcb,0xad,0x2e,0xd4,0xae,0xfd,0xcf,0x3,0x7f,0x7f,0xfd,0x25,0x3a,0x17,0xcf,0xe0,
0xfe,0x70,0x2a,0x57,0x2e,0x57,0xeb,0x1c,0xed,0x4d,0xa7,0x2d,0xef,0x7d,0xc7,0x62,
0xae,0x81,0xc4,0x85,0xf8,0x87,0xbb,0xfe,0x51,0xb3,0x26,0x40,0x56,0x64,0x75,0xe0,
0x80,0xf9,0x7e,0x69,0xd1,0xb9,0xcc,0x93,0xa2,0xd9,0x1b,0x3c,0xcb,0x46,0x4c,0xea,
0xde,0x5d,0x74,0x1c,0x49,0x92,0xd2,0xdf,0x3f,0x73,0x6e,0x39,0x39,0x71,0xe,0xe5,
0x18,0x4f,0x3a,0x79,0x12,0xfd,0x78,0x3c,0x75,0xcd,0x97,0x4f,0x58,0xa0,0x57,0xd7,
0x5c,0xb9,0x9d,0x12,0xcb,0xf,0x1a,0x37,0x76,0x8,0x6b,0xb2,0x25,0x62,0xf3,0xee,
0xdd,0xa2,0xf7,0x93,0xf0,0x23,0x10,0xa3,0x31,0x30,0xb0,0x46,0xd,0x7b,0x7b,0x5a,
0x44,0x95,0xe8,0xdc,0xba,0x75,0x16,0x53,0x1c,0xa7,0xe8,0x47,0x24,0x86,0x84,0xe8,
0x5d,0x3e,0x7d,0xa2,0xee,0xeb,0xd3,0x47,0x74,0x1c,0x49,0x92,0xb4,0xa3,0x9f,0xe0,
0x35,0x37,0x3c,0xe0,0xda,0x35,0xfe,0x3,0x27,0xb8,0x58,0xf3,0xe6,0x18,0x81,0x45,
0xbc,0xed,0xf9,0x73,0x61,0x81,0x5e,0xad,0xd8,0xa8,0xa8,0xea,0x4b,0x8a,0x5c,0xbc,
0xd8,0x7c,0x13,0x80,0xe8,0xfd,0x24,0xbc,0x40,0xb8,0x25,0xb7,0x7c,0xe1,0xf5,0xeb,
0xaf,0x3c,0x1f,0x7b,0x68,0x7a,0xc1,0x82,0xa2,0xf3,0x98,0xd7,0x14,0x47,0xad,0x97,
0x17,0x5f,0x9c,0x69,0xd9,0x92,0x14,0x57,0x43,0x54,0xf4,0xcb,0x97,0xa2,0x73,0x49,
0x92,0xa4,0x3d,0x87,0x8d,0x1e,0xb6,0x91,0xb6,0xa1,0xa1,0xca,0x35,0x54,0x62,0x87,
0xae,0x5d,0x53,0xee,0xbe,0x14,0x84,0xf7,0xa2,0x27,0xf2,0x16,0x2a,0x84,0xbb,0xd6,
0xad,0xb2,0x85,0xfc,0xf6,0x9b,0xe8,0xfd,0x23,0xac,0x40,0x62,0xb3,0x7,0xac,0x35,
0xdc,0xae,0x5a,0x15,0x53,0xe8,0x13,0xfa,0xd4,0x2,0x16,0x78,0x8a,0x41,0xc,0xcf,
0x8c,0x8b,0x83,0x2f,0xd5,0xe3,0xeb,0x1e,0x1e,0xe6,0xbb,0x34,0x44,0xc7,0x92,0x24,
0x49,0x3c,0xbb,0xdd,0x9e,0xe3,0x22,0x6d,0x37,0x6e,0xfc,0xe7,0x4f,0x16,0x30,0x9b,
0xee,0xb,0x76,0xc4,0xf6,0x2e,0x5d,0xe2,0x38,0x80,0xdd,0xf9,0x9b,0x6f,0x44,0xc5,
0xd0,0xfc,0x1a,0x8,0xab,0x7,0xb9,0x26,0x5b,0x59,0x19,0x63,0x9e,0xb6,0x4c,0xec,
0x17,0x11,0x1,0x2b,0x74,0x43,0xa4,0xc0,0xdb,0xd4,0xcc,0x9f,0x28,0x9c,0x10,0x89,
0xa4,0x16,0x2d,0xec,0xc9,0x33,0x3a,0x7c,0xd1,0x8e,0x1d,0xc2,0xf2,0x48,0x92,0x64,
0xb1,0x52,0x96,0xc6,0xfe,0xc5,0x90,0xd3,0xed,0x52,0x60,0x20,0x7f,0xc7,0x1b,0xd1,
0xa1,0x51,0x23,0x61,0x81,0xa6,0x60,0x29,0xf2,0x5c,0xbc,0x68,0x9c,0x90,0x6b,0x7b,
0x8e,0x7d,0x15,0x2b,0x3a,0x51,0x2d,0x3a,0x4c,0xda,0x9d,0x6a,0xd3,0xfc,0x8,0x24,
0x7e,0xc7,0xd3,0x7e,0x89,0x81,0x3f,0xfc,0x20,0xbc,0x38,0x5e,0xa1,0x6f,0xa8,0x12,
0x97,0x1d,0x37,0x4e,0x16,0x87,0x24,0x49,0x6f,0x93,0xb2,0x44,0x6d,0x5f,0x6c,0xb2,
0xe9,0xd6,0xa1,0x3,0x1e,0xa2,0x12,0x92,0xaf,0x5d,0x13,0x16,0x68,0x8,0x7a,0xe0,
0x71,0xe9,0xd2,0xfa,0x83,0x4f,0x22,0x12,0x2f,0xf,0x1d,0xaa,0xf5,0xf0,0x9a,0x15,
0x48,0x6c,0x4c,0x80,0xb3,0x8b,0x73,0x91,0x22,0x98,0x3,0x15,0x97,0x7c,0x7d,0xb5,
0xde,0xd0,0x54,0x56,0x61,0x15,0xa6,0xee,0xdf,0x6f,0x77,0x23,0xe2,0xbb,0x88,0xfe,
0x16,0x70,0x48,0x2a,0x49,0x52,0x86,0xa1,0xd7,0x7b,0x78,0x1c,0x3b,0x16,0x17,0xa7,
0x74,0x55,0xdb,0xe0,0x99,0xb7,0x37,0x96,0xc0,0x1d,0xd,0x92,0x92,0x84,0x5,0xda,
0x4c,0xe3,0x38,0xc7,0xf0,0xe1,0x46,0x63,0x60,0xa0,0x6b,0x60,0xf1,0xe2,0x5a,0xd,
0xab,0x59,0x81,0x50,0x12,0xf6,0xe9,0x62,0x66,0xce,0xe4,0xad,0x68,0x82,0xd,0x39,
0x73,0x6a,0x35,0x6e,0x2a,0xe1,0xd4,0x9,0x36,0x31,0x31,0xa6,0xfd,0xea,0x1d,0xeb,
0xe6,0x5d,0xba,0x64,0xf6,0x45,0xef,0x25,0x49,0x4a,0x3f,0x76,0xa1,0x4d,0x43,0xc3,
0xff,0x8a,0x8c,0xa4,0x5e,0x14,0xce,0x8d,0x5,0x4e,0x9e,0x3a,0x11,0xbd,0xa9,0x45,
0xf6,0xec,0x3c,0x9a,0x47,0x2b,0x7e,0xbf,0xfe,0xaa,0xd5,0xb0,0xe9,0x5e,0x20,0xb1,
0xab,0x77,0xde,0x71,0xb5,0xaf,0x5e,0x1d,0xd9,0x11,0x8a,0xfc,0xcd,0x9a,0x69,0xb5,
0x61,0x6f,0xdc,0xe0,0x1e,0xea,0x64,0x6e,0xdb,0xb7,0x6f,0x46,0x9b,0x36,0x59,0x92,
0x24,0xcb,0x65,0x67,0x17,0xd1,0x24,0xa2,0xea,0x94,0x29,0x48,0xc2,0x5d,0xee,0x7d,
0xe8,0x90,0xb0,0x20,0x7e,0xf0,0x3,0xb5,0x6e,0x1d,0x1b,0x13,0xe0,0xec,0x3e,0xac,
0x46,0x8d,0xf4,0x1e,0x2e,0xdd,0xb,0x84,0x2a,0x29,0x9e,0xf4,0xc7,0xb8,0x71,0xe9,
0x3d,0xce,0x5b,0x73,0x7c,0x8e,0x17,0xf8,0x6b,0xd5,0x2a,0xbb,0xdb,0x5e,0xbd,0x23,
0xfa,0x6f,0xda,0x24,0x3a,0x8f,0x24,0x49,0x99,0x47,0xca,0x99,0x8c,0x7c,0xc9,0xbd,
0x95,0x1e,0xdd,0xba,0x91,0x13,0x4e,0x23,0xe1,0xf1,0x63,0x61,0x79,0xbe,0x7,0xd4,
0x26,0x53,0xa7,0x32,0x33,0x3,0x94,0x6e,0x37,0x4b,0xa5,0x5b,0x81,0xc4,0x97,0xf1,
0xcf,0xeb,0xbe,0xae,0x5e,0x3d,0x14,0x82,0x1f,0xb5,0xa8,0x55,0x2b,0xbd,0xc6,0x79,
0x9b,0x94,0x35,0xc8,0xef,0x25,0xb7,0x7c,0x61,0x1c,0x38,0x50,0x54,0xe,0x49,0x92,
0x32,0x3f,0x7b,0x6a,0x4e,0x61,0x74,0xfd,0x3a,0xae,0x53,0x25,0xca,0x39,0x64,0x88,
0xb0,0x20,0x73,0xe0,0x47,0x83,0xdd,0xdd,0xe3,0x8d,0x41,0x81,0x6e,0x86,0x56,0xad,
0xd2,0x6b,0x98,0x74,0x2b,0x10,0xd5,0x95,0xa,0xab,0x85,0x2c,0xe0,0xc8,0x23,0x80,
0xbf,0xe5,0x9c,0x83,0x6,0xc9,0xe7,0x3a,0x24,0x49,0xd2,0x8a,0x9d,0x5d,0x44,0x93,
0xb0,0xb0,0x25,0x4b,0xa8,0x7,0x4d,0xc6,0xda,0xe3,0xc7,0x85,0x5,0x19,0x84,0x39,
0xb8,0x3e,0x66,0x8c,0xf9,0xf6,0xe3,0xb4,0x7e,0xf9,0x34,0x7f,0x41,0x63,0xe5,0xc0,
0x52,0x86,0xbd,0xcd,0x9b,0x9b,0x1b,0x50,0x9b,0xbd,0x94,0x1a,0x6d,0x41,0x7,0xb4,
0xdd,0xbd,0x5b,0x9e,0xb2,0x92,0x24,0x49,0x6b,0xe6,0x53,0x5a,0xea,0xef,0x6a,0x27,
0xde,0xd3,0xa7,0xf,0xb6,0xc2,0x17,0x76,0xda,0xcf,0x68,0x61,0x9e,0x8c,0x31,0xde,
0x68,0x8,0x74,0x33,0xb4,0x6c,0x99,0xd6,0xaf,0x9f,0x66,0x5,0x92,0xd2,0x70,0xd9,
0xb9,0x2f,0x5d,0x1d,0x3b,0x56,0xdb,0xdd,0xf4,0x2f,0xea,0x1,0x6b,0x14,0x4d,0x48,
0xc0,0x75,0xee,0x84,0x83,0x7d,0xfb,0x8a,0xca,0x21,0x49,0x92,0xe4,0x70,0xd5,0xab,
0x77,0x44,0xff,0x73,0xe7,0xc8,0x9d,0x9e,0x60,0xf7,0xb4,0x69,0xc2,0x82,0x94,0x40,
0x7b,0xde,0x3e,0x72,0x64,0x5a,0x5f,0x13,0x49,0xb3,0x2,0x89,0xef,0xe1,0xe6,0x68,
0x70,0x68,0xd6,0x8c,0x83,0x51,0x12,0xcb,0xca,0x97,0x17,0xb3,0x97,0x0,0xd8,0x42,
0x8f,0xee,0xd3,0xa7,0x9b,0x27,0x43,0x13,0x96,0x43,0x92,0x24,0xe9,0x95,0xa4,0xf3,
0x9,0xe3,0x73,0x28,0x13,0x26,0xd0,0x54,0x9c,0x45,0xfe,0xfb,0xf7,0xb5,0x1e,0x9f,
0xaf,0xf0,0x3a,0x6a,0xf1,0xe5,0x97,0xf1,0xce,0x41,0xa5,0xd,0x7b,0xd3,0xee,0x6e,
0xd8,0xb4,0x3b,0x2,0x59,0xaa,0xc6,0xd0,0x82,0xef,0xbf,0xd7,0x7a,0xc7,0x98,0x99,
0x7f,0x30,0x49,0x9e,0x89,0x37,0x72,0x34,0x9c,0x34,0x49,0x54,0xe,0x49,0x92,0xa4,
0xd7,0xe5,0x6b,0xe3,0xdd,0xe6,0x30,0x3d,0x7d,0xa,0x2f,0x7c,0xcf,0x31,0xe2,0x9e,
0x17,0xe1,0x72,0x9c,0x1b,0xd9,0x87,0xd,0x4b,0xab,0xd7,0xfb,0xe8,0x2,0x49,0x59,
0x72,0xd1,0x88,0x40,0x4c,0xad,0x59,0x53,0xd4,0x8e,0x41,0x19,0x6c,0xe6,0x21,0xa3,
0x46,0xa5,0xfc,0xa0,0x24,0x49,0x92,0x2c,0x8c,0x9d,0x5b,0x62,0x50,0xb1,0xcf,0x96,
0x2d,0x23,0x77,0xf8,0xf2,0x80,0x3f,0xfe,0xd0,0x3c,0xc0,0xab,0x6b,0xd3,0x8f,0xb3,
0x7,0x4d,0x74,0xbf,0xf8,0xf1,0xd7,0xa8,0x3f,0xfe,0x8,0x24,0x52,0x1d,0x8f,0xe2,
0x2,0x8f,0x3c,0x5e,0x4d,0xbf,0x6e,0xd7,0x29,0xf1,0xe7,0x62,0xb3,0x97,0x2f,0x17,
0x95,0x43,0x92,0x24,0xe9,0x6d,0x88,0xbc,0xbd,0x37,0x6f,0x36,0x99,0xd4,0xa9,0xd8,
0xa9,0x4,0xff,0xfc,0xb3,0xa8,0x1c,0xea,0x14,0xbe,0xaf,0x16,0xfd,0xf8,0xc7,0x1a,
0x3e,0xb8,0x40,0x9e,0x44,0x7,0x5f,0xac,0x74,0x24,0x6f,0x5e,0x2c,0xc3,0x10,0xc,
0x68,0xd7,0x4e,0xd8,0x8e,0x68,0xc2,0x77,0xe9,0xcc,0xb8,0x71,0xe6,0x1f,0x8c,0xa8,
0x1c,0x92,0x24,0x49,0xef,0xca,0xc1,0xcb,0xb3,0x70,0xd8,0xfa,0xe0,0x60,0xf8,0xe1,
0x6,0xa6,0x85,0x87,0x6b,0x3d,0x3e,0xe7,0xe0,0x63,0xe4,0xd1,0xaa,0x55,0x4c,0x50,
0xf0,0x45,0xb7,0x4b,0x85,0xa,0x7d,0xe8,0xeb,0x7c,0x70,0x81,0x24,0x6f,0x31,0x1d,
0xb1,0x7e,0xd8,0xa7,0x8f,0x79,0xe,0x16,0xad,0x77,0x0,0xcd,0x45,0x7e,0xfc,0x76,
0xe1,0x82,0x7d,0x9d,0xe7,0xad,0x8b,0x6e,0x97,0xb7,0xe9,0x4a,0x92,0x94,0x1,0xed,
0xe2,0xc7,0xec,0x24,0xe0,0x79,0xb9,0x96,0xf0,0x43,0xbc,0xb5,0xb5,0x6e,0xbd,0x29,
0x16,0x97,0x3f,0x7c,0xc5,0xd5,0xf7,0xbe,0x9d,0x8b,0xd5,0xc8,0x8,0x17,0x67,0x6b,
0xeb,0xf8,0xf6,0xf7,0x2a,0x2a,0x43,0xaf,0x5f,0x17,0xb6,0x92,0x60,0x27,0x2a,0xa7,
0x6e,0xe8,0xd4,0xc9,0x3e,0xd0,0xa3,0x44,0x64,0xf1,0x35,0x6b,0x34,0x1f,0x5f,0x92,
0xa4,0x34,0x63,0x7e,0x5f,0x89,0x8b,0xbb,0xd7,0xc7,0xaa,0x9e,0xbb,0xbb,0x52,0x3,
0x75,0xf1,0xb4,0x54,0xa9,0x94,0x7f,0xcf,0x45,0x2a,0x97,0xb8,0x7c,0x59,0x1f,0x96,
0x60,0x78,0x5a,0x28,0x2c,0x8c,0x14,0xef,0x36,0xe7,0xbd,0x5,0xce,0x7e,0x9b,0x56,
0xdb,0xfd,0xea,0xb6,0x5a,0xe3,0xf6,0xc0,0x9f,0xc,0xcf,0x22,0x22,0x50,0xb,0xb5,
0xa8,0x96,0x8b,0x8b,0x56,0xe3,0x93,0x2b,0xf5,0x41,0xd9,0x5b,0xb7,0xec,0x2e,0x47,
0xdc,0x9,0x5f,0x55,0xac,0xd8,0xfb,0x4e,0x2e,0xfb,0xde,0x47,0x20,0x71,0x81,0xf7,
0xa,0x58,0x95,0xa9,0x57,0x4f,0x58,0x71,0x98,0xe8,0x17,0xe,0xb9,0x7e,0x5d,0x1f,
0x90,0x10,0xe5,0x34,0x6c,0xfd,0x7a,0xcd,0xc7,0x97,0x24,0xe9,0xa3,0x5d,0xe3,0x83,
0x5c,0x93,0xb3,0x67,0x8f,0xbb,0x1a,0xd0,0xdb,0xad,0xbf,0xaf,0xaf,0x71,0xdf,0xfd,
0x7a,0x3a,0xdb,0x7b,0xf7,0x48,0x81,0x1f,0x1f,0x3c,0x7a,0x94,0x43,0xf1,0x15,0x47,
0x2c,0x5b,0x66,0xfe,0x2f,0xf6,0x72,0x4d,0x6c,0x38,0x72,0xc4,0x18,0x97,0xa3,0x51,
0xae,0x84,0x7,0xf,0x8c,0x3e,0x81,0x1d,0xdd,0x3c,0xc7,0x8f,0xbf,0xdb,0x2b,0xc0,
0xd9,0xc5,0xc5,0xd6,0x56,0xf4,0xf6,0x7c,0x28,0x22,0x22,0x80,0x99,0xee,0xf0,0xf,
0xca,0x6f,0xbf,0xfc,0xa2,0xf5,0xf8,0x1c,0xc9,0xb,0x71,0xa1,0x70,0xe1,0xc7,0x65,
0x5d,0xf2,0xb9,0xaf,0xab,0x53,0xe7,0x7d,0xbf,0xff,0xbd,0xb,0x44,0x59,0x80,0x32,
0xbc,0x4c,0xdc,0x35,0xf,0x6a,0xcf,0xfd,0x60,0x9c,0x3d,0x5b,0x5e,0xf3,0x90,0xa4,
0x8c,0xe7,0xe1,0xf8,0xdd,0xcd,0x5d,0x5c,0x3e,0xfd,0x54,0xff,0xe8,0x69,0xcb,0xc4,
0x7e,0x27,0x4e,0xc0,0x1e,0x9e,0x8,0x1f,0x33,0x6,0x6e,0xbc,0x1a,0x49,0x8e,0x8e,
0x6f,0x7d,0x1,0x5,0x87,0x31,0x4f,0xaf,0xe7,0xc1,0xdc,0x6,0xf,0x7c,0x7c,0x6c,
0xef,0x61,0x8f,0xae,0x44,0x78,0x78,0x6c,0x9b,0x1d,0x53,0x5d,0x13,0xa,0x17,0x16,
0xbd,0x7d,0x1f,0xca,0xae,0xff,0xf3,0x13,0x45,0x4e,0xef,0xd8,0x21,0x6a,0x81,0x2a,
0xae,0x4e,0x3,0x38,0xb9,0x4b,0x97,0xf7,0xfd,0xbe,0x77,0x2e,0x10,0xf3,0x27,0x6,
0x84,0x62,0x4,0xc,0x5e,0x5e,0x5a,0x6f,0xa0,0xf9,0x9,0x73,0x1a,0x63,0xfd,0x95,
0x8e,0x57,0xac,0xd0,0x7a,0x7c,0x49,0x92,0x3e,0xdc,0x23,0xcf,0x9d,0xd5,0xaa,0x3b,
0xe6,0xce,0x6d,0x55,0xf3,0xa5,0x9f,0xe2,0x1b,0x18,0x98,0x56,0x2b,0x92,0xf2,0x6a,
0x9c,0xc4,0xf5,0x2f,0xbe,0x50,0xb2,0x5b,0xed,0x53,0x8a,0xee,0xde,0x7d,0x7f,0xcf,
0xde,0xa,0x5f,0x4e,0x11,0xb8,0xde,0xd0,0x7,0x32,0x7f,0x20,0x26,0x7f,0xbe,0x4a,
0x2f,0xe6,0xcd,0x13,0x90,0x60,0x2,0x46,0xb4,0x68,0x11,0xc7,0xdb,0xb9,0x22,0xeb,
0xf5,0xef,0xfa,0x5d,0xef,0x5c,0x20,0xf6,0xc6,0x67,0x81,0x89,0x6e,0x9e,0x9e,0x7c,
0xd,0x15,0x61,0x9b,0x27,0x8f,0xe6,0xdb,0xe7,0x46,0xdb,0xb0,0x76,0xc5,0xa,0xbb,
0x6a,0xd,0x8b,0x9c,0x2c,0x1c,0x1b,0xab,0xf9,0xf8,0x92,0x24,0xbd,0xb7,0x7f,0xee,
0xf2,0xc9,0x93,0xc7,0xaa,0xa0,0xf2,0xe9,0xcb,0x31,0xbb,0x77,0xa3,0x3c,0x6e,0xd0,
0x78,0x67,0xe7,0xb4,0x1e,0xc7,0x3c,0xe7,0x53,0x76,0xd3,0x8b,0x3e,0xd9,0x1e,0xfb,
0xf8,0x88,0xde,0xee,0xf,0xde,0x8e,0x9f,0x4c,0x5f,0x3f,0x3f,0xbb,0x64,0x9,0xd5,
0xa6,0x1f,0x79,0xbc,0x76,0xcf,0xb3,0xf1,0x34,0xde,0x82,0x82,0x39,0x72,0xe0,0xac,
0xf5,0x54,0x9b,0x3b,0x4d,0x9b,0xbe,0xeb,0xf7,0xbd,0x73,0x81,0xf0,0x75,0xe,0x47,
0x35,0x71,0xa7,0xae,0xb8,0x28,0xb7,0xc1,0xa8,0x45,0x8b,0x44,0x8d,0x2f,0x49,0xd2,
0xbb,0x8b,0x8d,0xd9,0xb7,0xd7,0xc5,0xd9,0xce,0x4e,0x77,0x51,0xad,0x89,0xf2,0x7b,
0xf6,0xf0,0xaf,0xe8,0x8a,0xd5,0xd5,0xaa,0xa5,0xf7,0xb8,0xdc,0x8,0xcb,0xe8,0x41,
0xdf,0xbe,0xac,0x6,0x5f,0x2c,0x39,0x2b,0x5b,0x36,0xd1,0xfb,0xe1,0x7d,0x99,0x67,
0xd,0x67,0x5f,0x76,0xc7,0x27,0xda,0xdf,0x5d,0x4a,0x75,0x38,0x12,0xcb,0x5b,0xb4,
0x78,0xd7,0xaf,0x7f,0x6b,0x81,0x98,0x3f,0x41,0xd0,0x6c,0x9a,0x8c,0xad,0xd,0x1b,
0x6a,0xbd,0x41,0x38,0x88,0x83,0x7c,0x30,0x2a,0xca,0xbe,0x9d,0x67,0x9d,0xf0,0x49,
0xa7,0x4f,0x6b,0x3e,0xbe,0x24,0x49,0xef,0xcc,0x7c,0xa,0x84,0xc6,0x3d,0xbf,0xa8,
0x9b,0xb9,0x77,0x2f,0x77,0xe5,0x45,0xa8,0x58,0xa5,0x8a,0x66,0x1,0x8c,0xf0,0xc3,
0xef,0x76,0x76,0xf1,0xdf,0x70,0x33,0xc7,0x99,0xe9,0x5f,0x58,0xe9,0x26,0x5c,0x69,
0x86,0x6b,0x2b,0x57,0x6a,0x3d,0x2c,0xf7,0x44,0x3d,0x72,0x6e,0xd0,0xc0,0xfc,0xbe,
0xff,0xb6,0xaf,0x7f,0x6b,0x81,0x28,0x8f,0x4d,0xb7,0xb0,0xa4,0x59,0xb3,0x94,0x43,
0x1c,0xad,0xed,0xa1,0x0,0xfa,0x4d,0x5e,0xf3,0x90,0x24,0x4b,0x66,0x34,0x6,0x6,
0xd6,0xa8,0x61,0x6f,0x8f,0x89,0x56,0x9,0xd9,0x7c,0xf7,0xee,0x85,0x2f,0x8a,0xe2,
0x27,0x37,0x37,0x61,0x81,0xbe,0x32,0xd5,0xe2,0x72,0xc5,0x8b,0x8b,0xde,0x2f,0x1f,
0x4a,0x3f,0xa1,0x71,0xcb,0x88,0x96,0x47,0x8f,0xc2,0x9f,0x9a,0xf1,0x6f,0x97,0x2f,
0x6b,0x36,0xf0,0x10,0xe4,0x87,0x5f,0xb6,0x6c,0x56,0xb3,0x4d,0xab,0xd5,0xcf,0x1a,
0x35,0x7a,0xdb,0x97,0xbf,0xb5,0x40,0x48,0x87,0x25,0x5c,0xf1,0xed,0x2f,0x94,0xe6,
0xa6,0xe0,0x1,0x7c,0x5f,0xbc,0xd0,0x15,0x79,0xa9,0x70,0x57,0x79,0xbb,0xae,0x24,
0x59,0xa2,0xf8,0xd0,0xdd,0x37,0xab,0xdc,0x72,0x70,0xe0,0x10,0xe,0x79,0xb1,0x67,
0xdf,0x3e,0xf4,0x45,0x8,0x76,0x1b,0xc,0xa2,0x73,0x65,0x74,0xe6,0xdb,0x7b,0xf1,
0x17,0x2f,0xc4,0x7d,0xed,0x8f,0x44,0xd4,0xa7,0x68,0xae,0xdc,0x69,0xde,0xfc,0x6d,
0x5f,0xf7,0xc6,0x2,0x31,0x3f,0xe0,0xc2,0x17,0xe9,0x3c,0x2a,0xd5,0xae,0xad,0xf5,
0x6,0x50,0x0,0x3e,0x47,0xfc,0xde,0xbd,0x79,0x7c,0x9a,0xff,0x15,0x51,0x28,0x26,
0x46,0xeb,0xf1,0x25,0x49,0x7a,0xb3,0xc7,0x13,0xb6,0x97,0x31,0xdc,0x76,0x74,0x54,
0xed,0x93,0x9b,0xaa,0xe1,0xfb,0xf7,0x6b,0xfd,0x0,0xdc,0xdb,0x70,0x1d,0x74,0x51,
0x27,0x6a,0xf8,0xc9,0x3d,0x9d,0x28,0x1e,0x6a,0x39,0x9d,0xdb,0x86,0xd,0x9a,0xf,
0xbc,0x2,0x67,0xf8,0x51,0xfd,0xfa,0xcc,0x9b,0x36,0xb5,0x6e,0xad,0xd3,0xbd,0x31,
0xdf,0x9b,0xfe,0x21,0xbe,0xa5,0xff,0x2a,0xd7,0xaf,0x2b,0x55,0x42,0x3f,0x1e,0x4f,
0x5d,0xf3,0xe5,0xd3,0x3a,0x3f,0x9f,0xe1,0xdb,0xbc,0x7d,0xdb,0x36,0xad,0xc7,0x95,
0x24,0xe9,0xcd,0x9e,0x38,0x7,0x38,0xbb,0x38,0x7f,0xf2,0x89,0x69,0x84,0xd5,0x24,
0xaa,0x73,0xe0,0x0,0xa,0xf0,0x58,0x4c,0xaa,0x5c,0x59,0x74,0xae,0x14,0x2a,0x6a,
0xa2,0xaf,0xd1,0xa8,0xff,0xc6,0x4a,0x6f,0x3c,0x78,0xf2,0xa4,0xe8,0x38,0x1f,0xcb,
0xae,0x5a,0xd3,0x6a,0x27,0xb,0x5f,0xbe,0xac,0xf9,0xec,0xbd,0x8e,0x70,0xa4,0x81,
0xf6,0xf6,0x8f,0xab,0x67,0x9b,0x71,0xe3,0xcc,0x9b,0x7f,0xbe,0x6f,0x3e,0x85,0xd5,
0x51,0x9,0x53,0x86,0xd4,0xad,0xab,0xed,0xee,0x2,0x10,0x82,0x28,0x5c,0x48,0x4e,
0xb6,0x72,0xa1,0x49,0xea,0x95,0xc0,0x40,0xcd,0xc7,0x97,0x24,0x29,0x15,0xf3,0xe4,
0xa9,0xa6,0xeb,0x74,0x49,0xf1,0x3f,0x70,0x0,0x46,0xe8,0x60,0x57,0xb1,0xa2,0xe8,
0x5c,0xaf,0xa3,0x81,0x38,0x8f,0xfc,0x73,0xe6,0x90,0xd2,0xb8,0xf4,0xe5,0xef,0x5f,
0xbc,0x10,0x9d,0x27,0xad,0xf0,0x5f,0x88,0x42,0x47,0xed,0x3f,0x50,0xab,0x17,0x94,
0x45,0x74,0xb1,0x5e,0xbd,0x37,0xfd,0xfb,0x9b,0x4f,0x61,0x5,0x63,0x38,0xd7,0x15,
0x50,0x20,0x49,0xf8,0xa,0xdf,0x1d,0x3e,0x9c,0x3b,0xda,0x33,0x3a,0x2a,0xfa,0xd1,
0x23,0xcd,0xc7,0x97,0x24,0x29,0xc5,0xd3,0x8e,0xdb,0x26,0x57,0xfb,0x32,0x5f,0x3e,
0x53,0x3f,0x53,0x90,0xcd,0xf9,0x90,0x10,0xf3,0xca,0x76,0xa2,0x73,0xbd,0xce,0xfc,
0x9,0xfd,0x49,0xe5,0xc4,0x9b,0x4a,0xf9,0x89,0x13,0x45,0xe7,0x49,0x73,0x9e,0x9c,
0x4f,0x59,0x2f,0xe0,0x8c,0xcc,0x61,0x74,0x56,0x6f,0xbd,0x47,0x81,0x98,0x9f,0x38,
0x27,0x95,0x4a,0x52,0xa9,0xaf,0xbe,0xd2,0x3a,0x2f,0x1d,0xa1,0x59,0xfc,0x6c,0xd7,
0x2e,0xad,0xc7,0x95,0x24,0xe9,0x5f,0x4f,0xaf,0xf8,0xe7,0x75,0x5f,0x97,0x3f,0x7f,
0xb2,0xce,0xe6,0x40,0xf2,0xbd,0x83,0x7,0x85,0x2f,0x55,0xfd,0x6,0x54,0x82,0xda,
0xf3,0xb6,0x33,0x67,0x4c,0x37,0xe9,0x89,0xee,0x9b,0x46,0x8d,0xa,0xff,0xe4,0xed,
0x7d,0xb2,0x70,0x62,0xa2,0xe8,0x5c,0x69,0xcd,0x3e,0xd0,0xeb,0x61,0x58,0xfb,0x33,
0x67,0xa8,0x3e,0x96,0xe0,0xe1,0xed,0xdb,0x9a,0xd,0xbc,0x1e,0x7d,0xe9,0x74,0xb5,
0x6a,0x6f,0x7a,0xae,0x26,0x55,0x81,0xd8,0x8f,0x7c,0xd2,0x3f,0xd1,0xab,0x5a,0x35,
0x51,0xb7,0xed,0xf2,0x2d,0x35,0x54,0xa9,0xb6,0x6f,0x9f,0xd6,0xe3,0x4a,0x92,0xf4,
0x1f,0xc5,0x31,0x90,0xce,0xf3,0x8e,0x3,0x7,0xcc,0x4f,0x78,0x8b,0xce,0x95,0xca,
0x59,0x14,0xe5,0x91,0xd1,0xd1,0x14,0x68,0x75,0x4e,0xc7,0xb5,0x6a,0x39,0x3e,0xf7,
0xb8,0x74,0xb2,0xf0,0x9d,0x3b,0xa2,0x63,0xa5,0x37,0xde,0x41,0x56,0x58,0xb2,0x7f,
0xbf,0x66,0x3,0xbe,0xba,0xad,0x37,0xce,0xd6,0x14,0x61,0xdf,0x22,0xf5,0xc,0x2,
0xa9,0xa,0x84,0xf7,0x2a,0x39,0x50,0x4b,0xc3,0x7,0x7f,0xcc,0xc6,0xa2,0x2c,0x2e,
0x3d,0x78,0xa0,0xf,0xf0,0xfc,0x3b,0xac,0xbd,0x80,0xa5,0x1e,0x25,0x29,0xb,0x4b,
0x29,0x8e,0xb1,0x8a,0x33,0xf,0xc,0x9,0x31,0xcf,0x31,0x25,0x3a,0x57,0x2a,0xaf,
0x8a,0x43,0xd1,0x59,0xeb,0x75,0x95,0xeb,0xd5,0xcb,0x72,0x53,0x1b,0x55,0xc5,0x2e,
0xe,0xd6,0xb0,0x40,0x5e,0xa1,0x44,0x7a,0x44,0x89,0xa9,0x97,0xc0,0x4d,0x7d,0xd,
0xa4,0x18,0xa2,0x90,0xa4,0xfd,0xc5,0x31,0x8a,0xc7,0x7a,0xcc,0xdc,0xbf,0x3f,0xe5,
0xfe,0x67,0x49,0x92,0xd2,0xdd,0xdf,0x1b,0x83,0x5a,0x19,0x5a,0x17,0x28,0x90,0x52,
0x1c,0x16,0x7e,0xc4,0x91,0x65,0x8b,0xe3,0x15,0xeb,0x83,0x6a,0x4e,0xc5,0x65,0xff,
0x7e,0xc4,0x21,0x0,0x6e,0x1a,0xbe,0x4f,0x7e,0xc5,0x5f,0x1,0xa9,0xf,0x2c,0x52,
0x17,0x48,0x29,0xb6,0xc3,0xfe,0x8f,0x9f,0x25,0xf3,0x7d,0xa9,0x53,0xe9,0x3e,0xd3,
0xf1,0xe3,0x5a,0x8f,0x2b,0x49,0x59,0x91,0x79,0xfa,0x73,0xeb,0xe7,0xbc,0x1d,0x83,
0x8e,0x1e,0x95,0xc5,0x91,0x31,0xe4,0x2a,0xe1,0xf5,0x30,0xac,0xfd,0x83,0x7,0x58,
0x82,0xbf,0x71,0xe1,0xd2,0x25,0xcd,0x6,0xde,0x41,0xfd,0xf9,0xd3,0xff,0xe7,0x8,
0xe4,0xef,0x8d,0x9b,0x36,0xd6,0xe4,0x5c,0xb9,0xd0,0x8a,0x22,0xd0,0xa5,0x64,0x49,
0xad,0x77,0xc,0xd9,0xd3,0xdf,0xf0,0x3f,0x71,0x42,0xeb,0x71,0x25,0x29,0x2b,0x31,
0x17,0x7,0x75,0xd2,0xad,0x53,0xf6,0x1e,0x3c,0x8,0x2f,0xde,0x41,0x3f,0x68,0xff,
0xfb,0xfe,0x56,0xb2,0x38,0xfe,0x5f,0xb4,0xc,0x1d,0x11,0xa1,0xe1,0x73,0x2e,0x3a,
0x1e,0x4e,0xb5,0x8b,0x15,0x33,0xcf,0x3c,0x60,0xfe,0xeb,0x94,0x2,0xb1,0x4a,0xca,
0x56,0xe3,0x99,0x43,0xc5,0x8a,0x70,0xe2,0x5,0x98,0xad,0x7c,0xf0,0x5a,0xe9,0xef,
0xbd,0x23,0x5e,0xad,0xf3,0xa1,0x67,0xdb,0xcd,0xb6,0x9b,0xce,0x9e,0xd5,0x6c,0x87,
0x48,0x52,0x16,0x12,0x1b,0x13,0xe0,0xec,0xe2,0x5c,0xa4,0x48,0x4a,0x71,0x54,0x87,
0x1f,0x26,0x96,0x28,0x21,0x3a,0x57,0x2a,0xb2,0x38,0xde,0x89,0x7a,0x9e,0x42,0x78,
0x8e,0xf6,0xf,0x4a,0x9a,0xae,0xbc,0xd0,0x25,0x7f,0xf9,0xf9,0xe7,0xe6,0x3f,0xa7,
0x14,0x5,0xd,0xa6,0xd3,0xa4,0x17,0xf0,0x60,0xd0,0x11,0xb4,0x45,0xae,0xc8,0x48,
0x52,0x6a,0xd1,0x61,0x4a,0x4e,0xd6,0x7c,0x7c,0x49,0xca,0xc4,0x52,0x8a,0xe3,0x22,
0xda,0xe9,0x6a,0xca,0xe2,0xc8,0x2c,0x94,0x9e,0x26,0x77,0x5e,0xac,0x7d,0x81,0xe8,
0x7e,0xa4,0xdc,0xca,0x92,0x7f,0x6f,0xe7,0xfe,0xf7,0x48,0xa3,0x87,0xd2,0x94,0xba,
0x8,0x98,0x92,0xa0,0x4,0x9f,0xc4,0xb,0x39,0x4d,0xbb,0x24,0xa5,0xa5,0xb8,0x11,
0x41,0x5b,0xaa,0x46,0x17,0x2d,0x4a,0x31,0xd8,0xa9,0xc3,0xa1,0x43,0x28,0x8b,0xb2,
0x38,0x6e,0x81,0xb3,0xd3,0xca,0xe2,0xf8,0x20,0x76,0x5b,0x5e,0x64,0x4f,0xe8,0x7f,
0xee,0x9c,0x79,0xe6,0xe,0xad,0xc6,0x65,0x1b,0xa5,0x38,0x72,0xff,0x7b,0xad,0xec,
0xdf,0x23,0x90,0xed,0xfc,0x3,0x16,0x95,0x29,0xa3,0xf5,0x8e,0xa0,0xab,0x28,0x88,
0x96,0xe7,0xce,0x69,0x3d,0xae,0x24,0x65,0x46,0x71,0xbc,0x9d,0xdd,0xb9,0x58,0x31,
0xfc,0xc8,0xd3,0x93,0x4b,0x1f,0x3a,0x84,0xbc,0xf8,0x1d,0x56,0x4e,0x4e,0xa2,0x73,
0xa5,0x22,0x8b,0xe3,0xa3,0x90,0xe2,0xdd,0xe6,0xbc,0x77,0x52,0x12,0xfd,0x89,0xc6,
0xd8,0xa5,0xdd,0xa4,0x91,0x3c,0x95,0x37,0xe2,0xc0,0xbf,0xb7,0x77,0xa7,0x14,0x8,
0x9f,0x47,0x22,0x2f,0x29,0x52,0x44,0xeb,0x1d,0x61,0xba,0x40,0xdf,0x50,0xb8,0x2c,
0x10,0x49,0xfa,0x18,0x8f,0xcb,0x6,0xdc,0x72,0x6f,0x57,0xaa,0x14,0xb9,0x59,0x35,
0xe3,0xe2,0x47,0x8f,0x9a,0x2f,0x7a,0x8a,0xce,0x95,0x8a,0x2c,0x8e,0x34,0xc5,0xae,
0xa8,0x8d,0x97,0xe7,0xcf,0x6b,0x36,0x60,0x31,0x44,0x23,0xe9,0xdf,0xf,0x24,0xa,
0xb3,0x2f,0x3,0x8a,0x82,0xa9,0x18,0x45,0x27,0x3e,0xfd,0x54,0xeb,0x1d,0xa0,0xe8,
0x68,0xac,0xf5,0x71,0x59,0x20,0x92,0xf4,0x21,0x1e,0x4f,0x8,0xba,0x6d,0xb8,0x5d,
0xba,0xb4,0x5a,0x4,0x47,0xd4,0x29,0x7,0xf,0xf2,0x5e,0xf4,0x44,0xde,0x42,0x85,
0x44,0xe7,0x4a,0x45,0x16,0x47,0xba,0xa0,0x89,0x28,0x4d,0x3d,0x34,0x7c,0xff,0x3c,
0x87,0xf5,0x38,0x5b,0xb8,0xb0,0xb9,0x37,0xac,0x62,0xbc,0x9c,0xab,0x57,0x77,0x2c,
0x50,0x40,0xb7,0xa,0xc3,0x5f,0xee,0xb1,0xb1,0xd1,0x2c,0xc8,0x65,0x2c,0x46,0x44,
0x6c,0xac,0xde,0xe0,0xe1,0x7f,0x8c,0xe3,0xe2,0x34,0x1b,0x37,0x83,0x49,0x99,0x3e,
0xfb,0x0,0xf9,0xe9,0x74,0xb5,0x6a,0xe1,0x3a,0x3a,0x21,0x9b,0x93,0x13,0x9c,0xb0,
0x86,0xa7,0x10,0xa9,0x8b,0xb0,0x41,0x19,0x7d,0xe3,0x86,0x75,0x5d,0x65,0xf4,0x8b,
0x51,0x7,0xe,0xe4,0x76,0x6e,0x5c,0xfa,0xf7,0xaf,0x1f,0x3e,0x14,0x9d,0x5b,0x4a,
0x5f,0x8f,0x22,0x2,0x9c,0x5d,0x5c,0xca,0x96,0x55,0x97,0xa9,0x5e,0xb4,0x36,0x24,
0x84,0x37,0xc2,0xf,0x5b,0xb5,0xff,0x0,0xf8,0x56,0xf3,0x50,0x1b,0xd,0x23,0x22,
0x30,0x22,0xd9,0x36,0xc9,0xb3,0x7e,0x7d,0x3b,0xf2,0xa4,0xd3,0x64,0x34,0x8a,0x8e,
0x95,0x59,0xf0,0x61,0x1e,0xa6,0x3a,0x5f,0xbd,0xa,0x23,0x81,0x6e,0x68,0x30,0x60,
0x4b,0xf8,0x21,0xde,0xda,0x3a,0x36,0x87,0xa1,0x74,0x95,0x5b,0x9f,0x7e,0xaa,0xd8,
0xec,0xb3,0xf2,0x48,0x3e,0x51,0xb8,0xb0,0xe6,0x5b,0x5e,0xc,0x56,0xf8,0xee,0xe6,
0x4d,0xcd,0xc7,0xb5,0x70,0xe6,0x85,0x7a,0xe2,0xba,0x4,0xfc,0xe2,0x76,0x69,0xd1,
0xa2,0xe4,0x76,0xd8,0xad,0x6b,0x72,0xe7,0xe,0x83,0x1,0xda,0xb4,0x89,0x8b,0xf1,
0x6a,0x24,0x4d,0x9a,0xc4,0xcc,0x4c,0x3,0x7f,0xfd,0x95,0x7a,0x71,0x1b,0x8e,0x5f,
0xbf,0x3e,0x39,0xda,0xd4,0xd6,0x66,0xdc,0x9d,0x3b,0x71,0x3b,0x2,0x3a,0x1a,0xa2,
0x97,0x2e,0x35,0x17,0x8f,0xe8,0xed,0x91,0xd2,0x56,0x4c,0xd0,0x8e,0x23,0x6e,0x97,
0xca,0x95,0xb3,0xda,0x81,0xd6,0xba,0x82,0x7,0xf,0xf2,0x44,0xcb,0x2f,0x8e,0x17,
0x7e,0xf5,0xeb,0xdb,0x53,0x73,0x59,0x1c,0xe9,0x80,0x6a,0xea,0xfc,0x94,0xe8,0x1b,
0x5a,0x54,0xc7,0x7f,0x8f,0xdb,0x14,0xa7,0x93,0x1d,0x8b,0x16,0x55,0xd4,0x29,0xa6,
0x4e,0xd8,0x24,0xe0,0x90,0xf7,0x13,0xb2,0xe5,0x3e,0xda,0x6f,0xb8,0xa5,0x32,0x9f,
0x8a,0x30,0xf5,0xb1,0x76,0x84,0x3e,0x32,0x12,0x33,0x50,0x1e,0x1d,0x7a,0xf5,0x42,
0x4f,0x84,0xe1,0x5d,0x8e,0xc,0x5f,0x7d,0x32,0x40,0x4d,0xb4,0xa1,0x6f,0xbb,0x77,
0x37,0xc5,0xd3,0x7d,0x5d,0xf9,0xe8,0xe8,0x98,0x3a,0x41,0xe,0x55,0x2a,0xff,0x7b,
0xdf,0xb6,0x94,0x31,0xc5,0x4e,0xe,0xec,0xe8,0xda,0xb1,0x7c,0x79,0x65,0xbf,0xee,
0x53,0xb8,0x85,0x84,0xf0,0x60,0x94,0xc7,0x83,0x2,0x5,0x44,0xe7,0x4a,0x45,0x16,
0x87,0xb6,0xfc,0x79,0xb2,0x69,0xa6,0xf6,0xef,0xa3,0xba,0x78,0xfe,0x5,0x28,0x5c,
0x58,0xe1,0xfe,0xca,0x36,0x6e,0xa3,0xfd,0x11,0x8,0x55,0x51,0x47,0xd2,0x24,0x79,
0x4,0x12,0x13,0x14,0x7c,0xd1,0xed,0x52,0x9e,0x3c,0xa6,0xda,0xea,0x7a,0x9a,0xb6,
0x6b,0x57,0x5a,0x5d,0xfc,0xe4,0x48,0x5e,0x88,0xb,0x85,0xb,0x2b,0x1b,0xb9,0xac,
0xe9,0x68,0x70,0xf0,0x23,0xcf,0x9d,0xd5,0xaa,0x3b,0x16,0x2c,0x28,0x7a,0x7b,0xa5,
0xf7,0x13,0x1b,0x13,0x6c,0x5b,0xe5,0x56,0x85,0xa,0x94,0x8b,0xf3,0x28,0x6d,0x42,
0x42,0x30,0x1a,0x17,0x50,0x2a,0x7f,0x7e,0xd1,0xb9,0x52,0x91,0xc5,0x21,0x84,0x5d,
0x9e,0x2,0xf9,0x79,0xf4,0xad,0x5b,0xb8,0x46,0xdf,0x62,0x80,0xaa,0x6a,0x35,0xae,
0x9a,0x88,0xc7,0x3a,0xfd,0x27,0x9f,0x28,0xf0,0xe4,0x2e,0x6c,0xd4,0xfe,0x8d,0x85,
0x9d,0x50,0xa,0x47,0x1e,0x3c,0xd0,0x7a,0x5c,0x4b,0xa3,0x4,0xab,0xab,0x78,0xda,
0xa8,0x51,0xe9,0x76,0x9f,0xfe,0xab,0x42,0xb2,0x72,0x57,0x66,0xbc,0xf4,0x3f,0x70,
0xc0,0x3c,0x79,0x9e,0xe8,0xed,0x96,0xfe,0x7f,0x71,0xeb,0x3,0xe,0xb8,0xd,0xab,
0x58,0x91,0xf6,0x9a,0x2,0xd4,0x39,0x21,0x21,0x68,0x87,0x46,0x18,0x97,0x37,0xaf,
0xe8,0x5c,0xa9,0xc8,0xe2,0x10,0x8a,0x14,0x57,0x43,0x54,0xf4,0xcb,0x97,0xf8,0x8b,
0x57,0xe1,0xac,0x86,0x37,0x25,0x74,0xa2,0x30,0xb5,0xaa,0x83,0x83,0x42,0xde,0xa8,
0x4d,0xa7,0x73,0xe5,0xd2,0x7a,0xc3,0xb9,0x1f,0x5,0x20,0x67,0x4c,0x8c,0xd6,0xe3,
0x5a,0xa,0xf3,0x2,0x2d,0xb4,0x96,0xb3,0xd3,0xb1,0xde,0xbd,0xd3,0x7d,0xbc,0x7e,
0x78,0x80,0x1f,0xca,0x96,0xb5,0x59,0xad,0xce,0x27,0xda,0xbf,0xdf,0xbc,0x44,0xa9,
0xe8,0xfd,0x20,0xfd,0x37,0x63,0x8b,0x9d,0x2b,0x5d,0xbf,0xae,0x5c,0x19,0xe,0xd4,
0x12,0xc7,0xf,0x1c,0x40,0x43,0x24,0xe0,0xa0,0x5,0x5e,0xcb,0x92,0xc5,0x61,0x59,
0xfe,0xc0,0x6c,0x44,0x69,0x58,0x20,0xf5,0x39,0x12,0x43,0x1c,0x1c,0x14,0xae,0x43,
0x4e,0x70,0xd2,0x7e,0xe1,0x28,0xa5,0x3c,0xe9,0x90,0x27,0xeb,0x16,0x48,0x5c,0x9c,
0xa9,0xad,0xe3,0x1d,0x83,0x81,0xaf,0xa1,0x22,0x6c,0xf3,0xe4,0xd1,0x6a,0x5c,0xf3,
0x3a,0xf,0xa6,0xba,0xaa,0x8b,0x75,0xf1,0xfd,0xfb,0xcd,0x17,0xed,0x45,0xef,0x8f,
0xac,0xce,0xb8,0x2a,0xc0,0xb9,0x4a,0x73,0x67,0x67,0x1e,0xae,0x6c,0x55,0x8e,0xee,
0xdf,0xf,0x37,0x5e,0x8d,0x24,0xb,0xfc,0xb9,0xc8,0xe2,0xb0,0x48,0x94,0x97,0xc2,
0x70,0x54,0xbb,0x2,0x21,0x37,0x6c,0xa0,0xe,0xe,0xe,0xa,0xda,0xb0,0xf,0x8a,
0x68,0x5f,0x20,0x0,0xa0,0xfa,0x66,0xdd,0xdb,0x77,0xa9,0xb,0x6d,0x36,0xf5,0x11,
0xf7,0xa0,0x97,0x79,0x6d,0x6b,0x53,0xb,0x6b,0x5b,0xa,0xdb,0xb7,0xcf,0x68,0xc,
0xc,0xac,0x51,0xc3,0xde,0x5e,0xf4,0x7e,0xc9,0x6a,0xe2,0xab,0xed,0xac,0xe6,0x56,
0xc6,0xd5,0x95,0xab,0xe1,0x7b,0xd3,0xd0,0xfd,0xfb,0x51,0x12,0xbd,0x60,0xf8,0x77,
0xb6,0x53,0x8b,0x21,0x8b,0xc3,0xb2,0x45,0xf0,0xa7,0xb0,0xd2,0xee,0x3,0x39,0xdf,
0xa3,0x1d,0x7c,0xc4,0xce,0x4e,0xa1,0x78,0x24,0x22,0xc2,0xd6,0x56,0xeb,0xed,0x35,
0x85,0xaa,0x73,0x95,0x32,0x4f,0x9f,0x6a,0x3d,0xae,0xa5,0xe0,0x41,0xea,0xcf,0xca,
0x49,0x93,0x49,0x74,0xe,0x14,0xe0,0xb1,0x98,0x54,0xb9,0x32,0xcf,0xe5,0x5a,0x49,
0xb5,0xf7,0xec,0x89,0x8d,0xd9,0xb7,0xd7,0xc5,0xd9,0xce,0x4e,0x74,0xac,0xcc,0x2e,
0x3e,0x34,0xb0,0x94,0x6b,0x29,0x37,0x37,0x35,0x40,0xd9,0x8d,0xe1,0xfb,0xf6,0xc1,
0x11,0x8e,0x34,0xd0,0x2,0xb,0x5c,0x16,0x47,0x86,0xc0,0x2f,0xc9,0xe,0xa3,0x9e,
0x3d,0xd3,0x6a,0x3c,0xfa,0x5,0xdb,0xc8,0xd6,0xc6,0x46,0xe1,0x9e,0x98,0x81,0x42,
0xda,0x1f,0x81,0xe8,0xaa,0x2b,0xfd,0xa9,0xe3,0xcb,0x97,0x5a,0x8f,0x6b,0x29,0x94,
0xbb,0x74,0x45,0xd9,0xfc,0xd7,0x5f,0xa2,0x73,0xa4,0xe8,0x8b,0x10,0xec,0x36,0x18,
0x94,0x55,0x2f,0xba,0xe8,0xce,0xed,0xde,0x6d,0xbe,0x3b,0x4c,0x74,0xac,0xcc,0x26,
0x26,0xc8,0xbf,0xa1,0xdb,0xa5,0x2a,0x55,0xd4,0xaa,0x9c,0x5b,0xa9,0xb5,0x77,0x2f,
0x14,0x1c,0xc6,0x3c,0xbd,0x5e,0x74,0xae,0x54,0x64,0x71,0x64,0x28,0xf4,0x8c,0xc3,
0x30,0x30,0x29,0x49,0xab,0xf1,0xd8,0x89,0x3,0xb0,0xc4,0xc6,0x46,0xa1,0xf3,0x50,
0x71,0x5a,0xfb,0x23,0x10,0xd5,0xa4,0x78,0xd3,0x16,0xed,0x36,0xd8,0xd2,0xd8,0x75,
0x8a,0x8c,0x3a,0xb9,0xfd,0xf7,0xdf,0xc9,0x95,0xfa,0xa0,0xec,0xad,0x5b,0xa2,0xf3,
0x98,0x71,0x57,0x5e,0x84,0x8a,0x55,0xaa,0xe8,0x96,0xaa,0x3d,0x80,0xe0,0xe0,0x94,
0x85,0xc6,0xa4,0x8f,0x12,0xdb,0x26,0x30,0xc1,0x35,0xa1,0x5a,0x35,0x5d,0x7,0xaa,
0x81,0xe6,0x7b,0xf6,0xc0,0x8,0x3f,0xfc,0x6e,0x81,0x47,0x7a,0xb2,0x38,0x32,0x24,
0xf6,0xa0,0x9f,0x51,0xe9,0xc5,0xb,0xad,0xc6,0xa3,0xb1,0xd8,0x83,0xd5,0x36,0x36,
0xa,0xf,0xa2,0xab,0x28,0xa8,0xfd,0x11,0x88,0x55,0xfc,0xcb,0x4a,0xc9,0x2b,0xb2,
0x6e,0x81,0x10,0xf9,0x11,0xa0,0xaa,0x5c,0x17,0x39,0x51,0x7a,0xf2,0x64,0xd1,0x79,
0x5e,0xc7,0x4b,0x79,0x28,0x3a,0x54,0xaf,0x6e,0xed,0x9d,0xc3,0x3b,0x71,0x73,0x60,
0xe0,0xdd,0x5e,0x1,0xce,0x2e,0x2e,0xda,0x7f,0xd0,0xc8,0xe8,0x62,0x63,0x2,0x9c,
0xdd,0x87,0xd5,0xa8,0xa1,0x84,0xf1,0x55,0x32,0xed,0xde,0xad,0xf5,0x4d,0x13,0xef,
0x4c,0x16,0x47,0x86,0x46,0xb9,0x78,0x7,0x86,0x68,0x78,0x4,0xd2,0x0,0x45,0xb0,
0x31,0x5b,0x36,0xcd,0x56,0x1e,0x94,0xfe,0x37,0xfd,0x82,0x84,0x9,0x45,0x4f,0xcf,
0x9f,0x8f,0x55,0x58,0x85,0xa9,0xfb,0xf7,0x8b,0xce,0x93,0x8a,0x11,0x81,0x98,0x5a,
0xb3,0x66,0x8e,0xda,0x98,0xa2,0xab,0xeb,0xef,0x7f,0x6b,0xda,0xa6,0x4d,0x55,0x6e,
0x89,0xb9,0xe9,0x22,0x23,0x89,0x1b,0x11,0xb4,0xc5,0xb0,0xf5,0xeb,0xaf,0x95,0xba,
0xf4,0x44,0xad,0xb3,0x6b,0x17,0x9f,0xc2,0x35,0xaa,0x93,0x3b,0xb7,0xe8,0x5c,0xa9,
0xc8,0xe2,0x90,0x3e,0xc4,0x43,0x2c,0x63,0x66,0x56,0x68,0x6,0x17,0xc7,0xdd,0xc4,
0x44,0xad,0xc7,0x4f,0xb6,0xb3,0xfe,0xdd,0xaa,0xab,0x86,0x93,0x37,0x5a,0x28,0x22,
0x6f,0xef,0xcd,0x9b,0x4d,0x26,0xd3,0x7e,0xf5,0x8e,0x75,0xf3,0x16,0x2d,0xd0,0x9,
0xa1,0xc8,0xb5,0x67,0x8f,0xe8,0x5c,0xa9,0x34,0x44,0x2,0xe,0xd6,0xa9,0x93,0xeb,
0x60,0x8e,0x53,0x6a,0x97,0xed,0xdb,0xcd,0xcf,0xb1,0x88,0x8e,0x65,0x69,0xe2,0x42,
0xfc,0xc3,0x5d,0xff,0xa8,0x59,0x93,0x4e,0xaa,0xfb,0xe9,0x46,0x70,0x30,0x87,0xf0,
0x74,0x1a,0x69,0x81,0xa7,0x0,0x65,0x71,0x64,0x2a,0x9c,0x7,0xe5,0xd8,0x59,0xbb,
0xdf,0x47,0x8a,0x46,0x5d,0x6a,0x9b,0x94,0xa4,0x70,0x39,0x28,0xa8,0x98,0x90,0xa0,
0xf5,0x6,0x2b,0x3a,0x75,0x13,0xb7,0x92,0x5,0x62,0xf6,0x49,0x40,0xd3,0xd0,0xe3,
0x31,0x4f,0x9e,0xe8,0xfd,0x3f,0x6d,0x61,0x32,0x7a,0x7a,0x22,0xc,0xed,0x30,0x79,
0xdb,0x36,0xd1,0xb9,0x52,0x59,0x8d,0x6a,0x78,0xda,0xa0,0x81,0xd1,0xcb,0xb4,0xdc,
0x61,0xc7,0xce,0x9d,0xb2,0x48,0xfe,0x61,0x3e,0xe2,0xa0,0x9f,0x94,0xe,0x74,0x2f,
0x30,0x90,0xb7,0xa2,0x9,0x36,0xe4,0xcc,0x29,0x3a,0x57,0x2a,0xe6,0x69,0xd5,0x6b,
0x59,0xc7,0x28,0xbd,0x1a,0x36,0x94,0xc5,0x91,0x39,0xd0,0x22,0x6c,0xa3,0xcf,0xb5,
0x7b,0x3f,0xe5,0xd1,0x68,0x80,0x4e,0x49,0x49,0xa,0x2d,0xc1,0x20,0xdc,0xd6,0xfe,
0x8,0x44,0x2d,0xc0,0xf1,0xea,0x56,0x59,0x20,0xaf,0x33,0x4f,0x4d,0xa0,0x6f,0x90,
0xb8,0xac,0xe8,0x5c,0x6f,0x6f,0x5a,0x43,0xfb,0xf8,0xe8,0xfa,0xf5,0xa2,0x73,0xa5,
0xf2,0xaa,0x48,0xe2,0x7f,0x55,0x2b,0x39,0x34,0xca,0xba,0x47,0x24,0x29,0xc5,0xb1,
0x8b,0x87,0x23,0x77,0x50,0x90,0xc5,0x1e,0x71,0xc8,0xf5,0x38,0x32,0x35,0x2e,0x89,
0xb2,0xf8,0x5a,0xc3,0x23,0x90,0x6b,0xe4,0x89,0x9e,0x49,0x49,0xa,0xdb,0x21,0x7,
0xc,0x2,0x8e,0x40,0xee,0x51,0x1e,0xfe,0xdd,0x2,0x3f,0xa1,0x59,0x8,0xf3,0xa9,
0x2d,0xbb,0xfe,0x9,0x35,0x8a,0x75,0xec,0xd4,0x89,0xa6,0xa2,0x3e,0xf2,0xaf,0x5b,
0x27,0x3a,0xd7,0xeb,0xf8,0x3b,0xde,0x88,0xe,0x8d,0x1a,0x19,0xf7,0x9a,0x9c,0x1d,
0xbe,0x5c,0xb7,0x8e,0xd5,0x83,0x5c,0x93,0xad,0xac,0x44,0xe7,0x4a,0x6f,0xf1,0x9d,
0x3,0x9c,0xdd,0x2e,0xd5,0xaf,0x4f,0xf7,0xb9,0x3,0xd,0xdc,0xbd,0x5b,0x16,0x87,
0x24,0x12,0x29,0x18,0xc0,0x93,0xb4,0x7b,0x3f,0xe5,0xe1,0x68,0xc1,0x9,0x49,0x49,
0xa,0x36,0xd2,0x4,0xdc,0xd4,0xfe,0x8,0x84,0x2a,0xa8,0xf7,0xe8,0xba,0x5,0x3e,
0x71,0x6b,0x61,0x52,0x8a,0x64,0x7c,0xe2,0xce,0xa2,0xd9,0x3b,0x77,0xa6,0x9f,0x70,
0xa,0xfd,0xd7,0xae,0x15,0x9d,0x2b,0x15,0x77,0xac,0xc7,0xd0,0x16,0x2d,0x8c,0x93,
0x9e,0xae,0x4b,0xb8,0xb3,0x7e,0x7d,0x66,0x2d,0x92,0xf8,0x59,0x81,0xd,0xdc,0xf2,
0x36,0x68,0xc0,0x56,0x74,0xe,0xb5,0x76,0xec,0xe0,0x69,0xbc,0x45,0xc4,0x5d,0x8c,
0x6f,0x25,0x8b,0x23,0x4b,0xe1,0x87,0x98,0xd,0x2b,0x2d,0xa7,0xbe,0xe1,0xf3,0x34,
0xd7,0x68,0x54,0x68,0x35,0x1c,0xf1,0x95,0xf6,0x47,0x20,0xa6,0x33,0xca,0xef,0xb0,
0xb3,0xc0,0xb9,0x7e,0x2c,0x54,0x4a,0x91,0x2c,0x4d,0x2c,0x5b,0x34,0xa0,0x4b,0x17,
0xea,0x80,0x36,0x38,0xbc,0x66,0x8d,0xe8,0x5c,0xa9,0x7c,0x8b,0x3c,0xd4,0xa2,0x55,
0x2b,0x63,0x9b,0x67,0xb5,0x13,0x27,0xad,0x5d,0xcb,0xbc,0x69,0x53,0xeb,0xd6,0x3a,
0x9d,0xe8,0x58,0x1f,0x2b,0xd6,0x3d,0xa8,0x95,0xa1,0x75,0xc3,0x86,0xea,0x9f,0x6c,
0xc3,0xa7,0x64,0x71,0x48,0x16,0xc6,0x5,0x3f,0x53,0x6d,0xd,0x3f,0x90,0x6f,0xc0,
0x14,0xd8,0xc7,0xc4,0x28,0xbc,0x96,0x93,0xe1,0xa6,0xfd,0x94,0x22,0xd4,0x57,0x9d,
0x4d,0xc3,0xe5,0x11,0xc8,0xfb,0x4a,0x29,0x92,0xa0,0xc4,0x15,0x45,0x3b,0x77,0xed,
0x4a,0xb5,0xe9,0x47,0x1e,0xbf,0x7a,0xb5,0xe8,0x5c,0xa9,0x2c,0xe2,0x1f,0xb1,0xcd,
0xdb,0xdb,0x78,0xd7,0x76,0xe3,0x8d,0x6f,0x97,0x2c,0x31,0xaf,0xa1,0x2c,0x3a,0xd6,
0xfb,0x8a,0x1d,0xea,0x7f,0xc1,0x75,0x51,0xa3,0x46,0xe4,0xac,0xbe,0xc0,0x6f,0xdb,
0xb7,0x63,0x22,0x7a,0x53,0x8b,0xec,0xd9,0x45,0xe7,0x4a,0x45,0x16,0x47,0xd6,0xf6,
0x29,0x1c,0xf1,0x93,0x86,0x53,0xe1,0x3c,0x23,0x1f,0x3e,0x69,0x34,0x2a,0xd8,0xa,
0x3f,0xfa,0xfc,0xee,0x5d,0xad,0xb7,0x97,0x8e,0x2a,0xf9,0xb1,0x2c,0x5f,0x3e,0xad,
0xc7,0xcd,0x2c,0x52,0x8a,0x24,0x3a,0x61,0x42,0xb1,0xc5,0xdd,0xba,0x59,0x6c,0x91,
0xd8,0x72,0x57,0xc,0xef,0xda,0xd5,0xb8,0xd3,0xb5,0x93,0x21,0x7a,0xf1,0xe2,0x8c,
0x52,0x24,0xb1,0xfe,0x1,0xb7,0xdc,0xdb,0x35,0x6e,0x4c,0x56,0x74,0x4c,0xf9,0x4c,
0x16,0x87,0x64,0x99,0x58,0x8d,0x8c,0x70,0x71,0xb6,0xb6,0x46,0x19,0xea,0x8c,0xf2,
0x1a,0x7e,0x20,0xf7,0x51,0x47,0xe3,0x66,0x4c,0x8c,0x42,0xbf,0x2a,0x15,0xd5,0x3d,
0xda,0x4f,0xa5,0xc1,0xb7,0xd1,0x90,0xf3,0x17,0x2d,0xaa,0xf5,0xb8,0x99,0x4d,0xaa,
0x22,0xf9,0x1c,0x2f,0xf0,0xd7,0xaa,0x55,0xa2,0x73,0xa5,0xf2,0x6a,0xa9,0x5d,0xa3,
0x8f,0xc1,0xc6,0x6d,0xcc,0xc2,0x85,0xcc,0xcc,0x0,0x91,0xe8,0x58,0xaf,0x8b,0x8d,
0xd,0xbc,0xe7,0xb6,0xa4,0x49,0x13,0x3a,0x89,0x3d,0xdc,0x71,0xdb,0x36,0xc,0x41,
0x7e,0xf8,0x59,0xe0,0xdd,0x65,0xb2,0x38,0x24,0x0,0xf1,0x8f,0xef,0x3f,0xa0,0xb1,
0x85,0xb,0xc3,0x89,0x17,0x60,0xb6,0x76,0x1f,0xcc,0x94,0xca,0x74,0x82,0xcf,0xc5,
0xc4,0x28,0x54,0xd4,0xb4,0x6,0x76,0x2,0xe6,0x62,0xba,0x80,0x73,0x74,0xb9,0x48,
0x11,0xcd,0xc7,0xcd,0xa4,0x52,0x8a,0xe4,0x5e,0xa2,0x5a,0xb4,0x7e,0xf7,0xee,0xd0,
0xc3,0x17,0x95,0x56,0xae,0x14,0x9d,0x2b,0x95,0x21,0xbc,0xd,0xc1,0x3d,0x7b,0xc6,
0x17,0xa,0xca,0xeb,0xb6,0x77,0xc6,0xc,0xd1,0x71,0xcc,0x8c,0xb3,0xfd,0x6f,0xb9,
0x8f,0x6f,0xd9,0x92,0xb6,0x71,0x13,0x6c,0xdc,0xbe,0x5d,0x16,0x87,0x94,0x21,0x78,
0xd1,0x50,0xdd,0x40,0xed,0x3f,0x88,0x9b,0xe,0xa1,0x2c,0xc5,0xde,0xbc,0xa9,0x24,
0xe9,0x6c,0x16,0xab,0xe,0xb7,0x6f,0x6b,0xbe,0xe1,0x4f,0xb9,0x30,0x5a,0xc9,0x23,
0x90,0xb4,0x66,0x2e,0x12,0x3d,0x22,0xa3,0xc2,0x17,0x75,0xef,0x8e,0x4,0x5a,0x81,
0x5f,0x56,0xac,0x10,0x9d,0xeb,0x75,0x7c,0x96,0x97,0x63,0xe4,0xf7,0xdf,0xc7,0x1d,
0xf,0x6c,0xe0,0x96,0x77,0xfa,0x74,0x51,0x39,0x8c,0x47,0x2,0xa2,0xdd,0x2e,0xb5,
0x6a,0xc5,0x39,0xa8,0x29,0x1f,0x5e,0xbf,0x1e,0x2d,0xe1,0x87,0x78,0x6b,0x6b,0xd1,
0xfb,0x27,0x15,0x59,0x1c,0xd2,0xff,0xc0,0x87,0x4d,0xbe,0xaa,0xb3,0xf6,0xef,0xa3,
0x6a,0x3d,0x75,0xae,0x4d,0xc5,0x1b,0x37,0x94,0x4f,0x7c,0x4e,0x6c,0x8b,0x8a,0x7a,
0xf0,0x0,0x4b,0xe0,0x8e,0x6,0x1a,0x4e,0x6e,0xf8,0x6a,0xe1,0x9c,0x38,0xde,0xce,
0x15,0xd9,0x2,0xa7,0xb3,0xce,0xe0,0xcc,0x93,0x35,0xea,0xb,0x36,0xd9,0x12,0x5e,
0xa7,0x7b,0x77,0x8a,0x2,0xc1,0x76,0xc1,0x2,0xd1,0xb9,0x52,0x29,0xc7,0xfd,0xe1,
0xf4,0xc3,0xf,0x71,0x93,0x3,0x9c,0xdd,0x2e,0x4d,0x9d,0xaa,0xd5,0xb0,0xc6,0xb8,
0xc0,0x0,0x37,0x43,0xeb,0xd6,0xfc,0x10,0xfe,0x70,0x91,0xc5,0x21,0x65,0x4c,0x54,
0x93,0x26,0x29,0xd1,0xc5,0x8b,0x6b,0x36,0xe0,0xab,0x9e,0x70,0xf4,0x8f,0x3e,0x7e,
0x3c,0xe6,0xfe,0x7d,0xc5,0xfc,0x46,0x83,0x6e,0xd4,0x8c,0x87,0x69,0x7f,0x31,0x9d,
0xdb,0x5a,0x27,0x5a,0x27,0x96,0x2b,0xa7,0xf5,0xb8,0x59,0x5,0x11,0x11,0xc0,0x6c,
0x57,0xc7,0xa3,0x49,0xf8,0xa1,0xbe,0x7d,0x29,0x0,0xbe,0xe8,0x3d,0x7f,0xbe,0xe8,
0x5c,0xa9,0xf4,0x82,0x1f,0x3a,0xfc,0xf4,0x53,0x1c,0x7,0xb0,0x81,0xc7,0x8c,0x49,
0xaf,0x61,0xe2,0xb,0xf9,0x2f,0x32,0xcc,0xf1,0xf6,0xe6,0x10,0x8e,0xc2,0x5f,0xeb,
0xd6,0xa1,0x36,0x5c,0x50,0xd6,0x2,0x9f,0x57,0x91,0xc5,0x21,0xbd,0x3,0x1e,0x81,
0x8b,0xbc,0xf4,0x8b,0x2f,0x34,0x1b,0xf0,0x73,0x34,0x84,0xcb,0xad,0x5b,0xe6,0xde,
0x48,0xb9,0xe8,0x42,0x5f,0x71,0xd,0x2a,0xad,0xfd,0xb5,0x10,0x65,0x21,0x42,0x74,
0xb5,0xca,0x97,0xd7,0x7a,0xdc,0xac,0x26,0xa5,0x48,0x3a,0x79,0x44,0x85,0xf7,0xec,
0xd7,0x8f,0x16,0x52,0x0,0x8e,0xcd,0x9b,0x27,0x3a,0x57,0x2a,0x46,0x4,0x92,0xbb,
0xaf,0x6f,0xdc,0x88,0x80,0x25,0x86,0xad,0x23,0x47,0xa6,0xd5,0xcb,0xc6,0x4e,0xe,
0xec,0xe8,0x5e,0xaf,0x6d,0x5b,0x75,0x26,0xdd,0xa5,0x11,0x6b,0xd7,0xca,0xe2,0x90,
0x32,0x3,0x8a,0x44,0x8,0xac,0x35,0xfc,0x0,0x7e,0x5,0x25,0xe0,0x70,0xed,0x9a,
0xf9,0x8f,0x29,0x5,0xc2,0x5,0x31,0x93,0x7,0xfd,0xf9,0xa7,0xe6,0x7b,0xe0,0xb,
0x74,0xe5,0x71,0x1a,0x36,0x68,0x16,0x97,0x52,0x24,0xc3,0x9a,0x2c,0xc,0xb7,0xe9,
0xdf,0x9f,0x46,0xa3,0x12,0x7f,0x3b,0x77,0xae,0xe8,0x5c,0xa9,0xc,0x41,0x7e,0x9a,
0x34,0x6e,0x5c,0x9c,0x43,0xc0,0x59,0x77,0x1a,0x3e,0xfc,0x43,0x5f,0x26,0x76,0xbf,
0x7f,0x6b,0xb7,0x75,0xed,0xda,0x51,0x9,0x2e,0xc9,0x61,0xab,0x57,0xcb,0xe2,0x90,
0x32,0x3,0xf3,0xdc,0x73,0xfc,0x39,0x82,0xd1,0xa8,0x64,0x49,0xcd,0x6,0xfe,0x1e,
0x55,0x78,0xf6,0xb9,0x73,0xe6,0x3f,0xfe,0x5b,0x20,0x9b,0xa9,0x7,0x3e,0xfd,0xfd,
0x77,0xcd,0x77,0xc4,0x6d,0x7e,0x8,0x63,0xc5,0x8a,0x5a,0x8f,0x9b,0xd5,0xa5,0x14,
0xc9,0x2c,0x8f,0x42,0x11,0xdd,0x7,0xc,0xb0,0xd8,0x22,0xb9,0x82,0x6b,0x6c,0x98,
0x38,0xd1,0x78,0x2a,0x50,0xef,0x56,0x63,0xe8,0xd0,0x77,0xfd,0x36,0x63,0x8b,0xc0,
0xaf,0xdc,0x2e,0x75,0xef,0x4e,0xe,0x4a,0x28,0x4c,0x6b,0xd6,0xc8,0xe2,0x90,0x32,
0x93,0xf8,0x56,0x2f,0x4f,0xe8,0xb7,0x94,0x2b,0xa7,0xf5,0xff,0xd7,0x14,0x4f,0x65,
0x94,0x9b,0xe7,0xcf,0x9b,0xff,0xfc,0xef,0x7d,0xc3,0x5,0xb9,0x3a,0x6a,0x69,0x5f,
0x20,0x54,0x7,0xdf,0xe1,0xb6,0xab,0x6b,0x66,0x9d,0x3b,0xc9,0xd2,0xa5,0x2a,0x92,
0x1e,0xd8,0xc2,0xa1,0x73,0xe6,0x88,0xce,0xf5,0x3a,0xb6,0x63,0x6f,0x54,0xfa,0xf5,
0xd7,0xb8,0x3e,0x81,0xa5,0xdc,0xc6,0xf7,0xef,0xff,0xa6,0xaf,0x33,0x17,0x7,0x8f,
0xc4,0x55,0x9c,0x5c,0xbc,0x58,0xeb,0xfb,0xe3,0xdf,0x99,0x2c,0xe,0xe9,0x23,0xf0,
0x71,0xca,0x4b,0xb7,0xaa,0x56,0xd5,0x7a,0x5c,0xb5,0xf,0x6a,0x9b,0xe,0x9e,0x3d,
0x6b,0xfe,0x73,0xca,0x2f,0x56,0xd2,0xce,0x6c,0xbf,0xbe,0x58,0x7f,0xe6,0xc,0xae,
0xd1,0xb7,0x18,0xa0,0xaa,0x9a,0xed,0x88,0x57,0xeb,0x26,0x18,0x29,0xa1,0x75,0x82,
0xb7,0xbc,0x16,0x22,0x4a,0x4a,0x91,0x6c,0xf5,0x58,0x11,0x61,0xf5,0xfd,0xf7,0xd4,
0x90,0x4b,0xa1,0xe4,0xec,0xd9,0xa2,0x73,0xa5,0xb0,0x87,0x27,0xc2,0x89,0x30,0x8c,
0x6b,0xe1,0xfe,0xac,0x59,0x71,0xf9,0xfd,0x83,0xd,0x4e,0x7d,0xfb,0x9a,0xff,0xd9,
0xb8,0x2a,0xc0,0xd9,0x70,0xa4,0x67,0x4f,0x59,0x1c,0x52,0x56,0x40,0x5,0x95,0x81,
0x58,0x58,0xa5,0x8a,0xd6,0xe3,0x2a,0xb,0x11,0x92,0xbd,0xfe,0xbf,0x97,0x3a,0x52,
0x7e,0xc1,0xa,0x34,0xa8,0xff,0xc7,0x99,0x21,0xcf,0x9e,0x61,0x21,0x6c,0x71,0xe3,
0xd2,0x25,0xcd,0x83,0xe5,0x33,0x2d,0xa3,0xb6,0xee,0xee,0x5a,0x8f,0x2b,0xfd,0xb7,
0x94,0x22,0x39,0xe9,0x59,0x26,0x7c,0xdd,0xc0,0x81,0x16,0x5b,0x24,0xbb,0x94,0x5e,
0x34,0x76,0xf6,0x6c,0x63,0xe3,0x0,0x5b,0xb7,0xc4,0xd5,0xab,0xb9,0x6,0x5c,0x69,
0xd3,0xa2,0x45,0x16,0x5b,0x1c,0x7e,0xb8,0x81,0x69,0xe1,0xe1,0xa8,0x91,0x5c,0x21,
0xc9,0xb3,0x4e,0x1d,0x59,0x1c,0xd2,0xc7,0xe0,0x4e,0x3c,0x81,0x1a,0x6b,0x58,0x20,
0x17,0x70,0x1,0xd5,0xaf,0x5e,0xd5,0xeb,0x3d,0x3c,0x8e,0x1d,0x8b,0x8b,0x33,0xff,
0x75,0xea,0x5f,0xb4,0x73,0xbc,0x11,0x6d,0x4,0x5c,0xb,0x29,0xa4,0xb8,0x70,0xee,
0xea,0xd5,0xb5,0x1e,0x57,0xfa,0xdf,0x5e,0x2f,0x12,0xe8,0x71,0x91,0x8b,0xce,0x9c,
0x29,0x3a,0x57,0x8a,0x57,0x45,0xc1,0x6b,0xb1,0x11,0x35,0x3b,0x76,0x4c,0x29,0x16,
0x4b,0x63,0x3e,0xe2,0xf0,0xb6,0xf6,0x52,0x8a,0x35,0x6a,0x24,0x57,0x0,0x94,0x3e,
0xc6,0xd3,0x8e,0xdb,0x26,0x57,0xfb,0x32,0x5f,0x3e,0x34,0xc3,0x7e,0x7c,0xab,0xdd,
0xc5,0x73,0x8a,0xa4,0x5b,0xfc,0x6b,0x58,0xd8,0xeb,0x7f,0x9f,0xaa,0x40,0xd8,0x1f,
0x3d,0x79,0x84,0xf6,0x5,0x82,0xc6,0xdc,0x9d,0x66,0xd7,0xab,0x67,0xa9,0x73,0x24,
0x65,0x55,0xe6,0x22,0xb1,0x27,0xcf,0x9f,0x22,0x36,0xf,0x1a,0x44,0xb7,0xe9,0x47,
0x9c,0xf8,0xf5,0x57,0xd1,0xb9,0x2c,0x9e,0x3c,0x55,0x25,0xa5,0x83,0xa4,0x59,0xd6,
0x1b,0x92,0xaf,0xd4,0xad,0xab,0xf5,0x7,0x26,0x76,0xe2,0x63,0x98,0x76,0xf2,0xe4,
0xeb,0x7f,0x9f,0xaa,0x40,0x94,0x66,0xca,0x73,0x25,0x3a,0x75,0xd3,0xa4,0x7b,0xc0,
0xc1,0x28,0x8f,0x7,0x5,0xa,0xc4,0xc5,0xee,0xca,0x59,0xe5,0x96,0xbc,0x16,0x62,
0xa9,0xf4,0x15,0x3c,0x2e,0x85,0xeb,0x86,0xf,0xa7,0x13,0xb8,0xc1,0xd,0x7e,0xf9,
0x45,0x74,0x1e,0x8b,0x23,0x8b,0x43,0x4a,0x47,0x74,0x5,0xeb,0xb8,0x7f,0xdd,0xba,
0x5a,0x8f,0xab,0x6b,0xa5,0xb4,0x52,0x5a,0xbd,0xc3,0x11,0x88,0xdd,0x21,0xda,0x11,
0x33,0x30,0x34,0x94,0x7a,0xc0,0x1a,0x45,0x5,0x2c,0x75,0xdb,0xce,0xb4,0xd8,0x44,
0xf5,0xea,0x69,0x3d,0xae,0xf4,0x7e,0xf4,0x8d,0x3d,0xfb,0x47,0x8c,0x1b,0x31,0x82,
0x36,0xc1,0x8b,0xb7,0x4d,0x9c,0x28,0x3a,0x8f,0x70,0xb2,0x38,0x24,0xd,0x50,0x5f,
0xc,0xa3,0x4d,0x1a,0xbe,0x3f,0x8e,0xc0,0x22,0xde,0xf6,0xfc,0x79,0xee,0x4,0x6a,
0x15,0xb3,0x3b,0xf5,0x99,0xa9,0x54,0x5,0x42,0x4a,0xe3,0xd2,0x97,0xbf,0x7f,0xf1,
0x82,0x93,0x70,0x18,0x31,0x47,0x8f,0x6a,0xbd,0x83,0xb8,0x9,0x76,0xd0,0xd5,0x46,
0x8d,0xb4,0x1e,0x57,0xfa,0x30,0xfa,0x3e,0x9e,0x1c,0x51,0xc8,0xc7,0x87,0xa6,0xd2,
0x46,0xe4,0x9f,0x30,0x41,0x74,0x1e,0xcd,0xc9,0xe2,0x90,0x34,0x10,0x1b,0x13,0x6c,
0x5b,0xe5,0x56,0x85,0xa,0xbc,0x17,0x3d,0x91,0xb7,0x50,0x21,0xcd,0x6,0xfe,0x1a,
0x83,0x68,0xf6,0xf1,0xe3,0xe6,0x5e,0x78,0xfd,0x9f,0xdf,0x78,0xb7,0xa,0x7d,0xc3,
0xd,0xe9,0xc1,0xfe,0xfd,0x9a,0xef,0xa9,0x42,0xf8,0x2,0x1e,0xdf,0x7c,0xf3,0xc4,
0x39,0xc0,0xd9,0xc5,0xf9,0x93,0x4f,0x34,0x1f,0x5f,0xfa,0x20,0xfa,0x9,0x1e,0x6b,
0xc2,0x3,0x46,0x8e,0xa4,0x1,0xc8,0xb,0xbf,0xf1,0xe3,0x45,0xe7,0x49,0x77,0xb2,
0x38,0x24,0xd,0x51,0xbc,0xa9,0xa3,0x3a,0xa9,0x45,0xb,0xcd,0xc7,0x6d,0x44,0x89,
0xdc,0x6c,0xdf,0xbe,0x37,0xfd,0xfb,0x1b,0xb,0x84,0x7f,0xd2,0xcd,0x56,0xcb,0x9,
0x28,0x90,0x57,0x4f,0x56,0x26,0x47,0xf1,0x30,0xa5,0x84,0x87,0x87,0xe6,0xe3,0x4b,
0x1f,0x45,0xbf,0xc6,0xb3,0x4a,0x78,0xa3,0x51,0xa3,0xa8,0x29,0x7c,0x29,0x66,0xdc,
0x38,0xd1,0x79,0xd2,0x9c,0x2c,0xe,0x49,0x0,0x72,0xa5,0xf5,0xfc,0xb3,0xf6,0x5,
0x2,0x0,0xca,0xa0,0x37,0xf7,0xc0,0x1b,0xb,0x44,0x8f,0xc6,0x9b,0x23,0x36,0x9f,
0x3e,0x4d,0x53,0x71,0x16,0xf9,0xef,0xdf,0xd7,0x3a,0x34,0x7d,0x49,0x85,0xa8,0xb9,
0x98,0x1d,0x26,0x7d,0x3c,0xfd,0x11,0xcf,0xe8,0xb0,0x2b,0xa3,0x47,0x53,0x45,0xba,
0xc5,0x9d,0xc7,0x8e,0x15,0x9d,0xe7,0xa3,0xc9,0xe2,0x90,0x4,0x88,0xf,0xdd,0x19,
0x5a,0xe5,0x56,0xc9,0x92,0x7c,0x85,0xd7,0x51,0x8b,0x2f,0xbf,0xd4,0x6c,0xe0,0x70,
0xea,0x4,0x9b,0x98,0x18,0x3b,0xbb,0x88,0x26,0x61,0x61,0xa7,0x4e,0xbd,0xe9,0xcb,
0xde,0x7c,0xa,0xeb,0xd5,0xed,0x9b,0x28,0x40,0xf7,0x78,0xcb,0xc1,0x83,0x1a,0xef,
0x37,0xb0,0x27,0xfe,0x84,0x5d,0xfd,0xfa,0x46,0x63,0x60,0x60,0x8d,0x1a,0x1a,0x2e,
0x16,0x2f,0xa5,0x29,0xfd,0x4d,0x8f,0xbe,0x11,0xfd,0x7d,0x7d,0xa1,0x87,0x7,0x87,
0xf9,0xf9,0x89,0xce,0xf3,0xde,0x64,0x71,0x48,0x2,0xa9,0x3,0x75,0xdb,0xd4,0xcd,
0xde,0xde,0x5a,0x8f,0x4b,0x17,0xd1,0x99,0xf,0xec,0xdd,0x9b,0xb2,0xdc,0xc7,0x1b,
0xbc,0xf5,0x89,0x5d,0xbe,0xa7,0x8e,0x56,0x3e,0xd9,0xb5,0x4b,0xeb,0xd,0x30,0x2f,
0x29,0xca,0x65,0x54,0xe5,0xc5,0x9d,0x76,0xed,0x34,0x1f,0x5f,0x4a,0x53,0xf6,0xe4,
0x49,0x11,0x34,0x66,0xc,0x11,0x11,0xcf,0xfc,0xf9,0x67,0xd1,0x79,0xde,0x4a,0x16,
0x87,0x24,0x50,0xca,0xf3,0x70,0xf5,0xf8,0x32,0x82,0xbb,0x74,0xd1,0x3c,0x40,0x47,
0xd4,0xa3,0x1a,0xdb,0xb7,0xbf,0xed,0xcb,0xde,0x5a,0x20,0xa6,0x3f,0xd8,0xcb,0xca,
0x66,0xc7,0xe,0xfa,0x89,0x5a,0xe1,0x6e,0x62,0xa2,0xe6,0x1b,0x32,0x8e,0x3a,0x52,
0x81,0x6e,0xdd,0x34,0x1f,0x57,0x4a,0x17,0x7a,0xbd,0x87,0x47,0x44,0xd5,0x49,0x93,
0x2c,0xb6,0x48,0x64,0x71,0x48,0x16,0x20,0x6e,0x8d,0xff,0x5d,0x57,0xfb,0x6a,0xd5,
0x30,0x4,0x3d,0xf0,0xb8,0x74,0x69,0xad,0xc6,0x35,0xbf,0xcf,0x3f,0xf,0xb7,0x19,
0xf1,0xdc,0x3b,0x38,0xf8,0x6d,0x5f,0xff,0xd6,0x2,0xf9,0x24,0xa0,0x69,0xe8,0xf1,
0x98,0x27,0x4f,0xf8,0x2b,0xe8,0xf9,0xe7,0xb7,0xbf,0x60,0x9a,0x6b,0x8d,0x95,0x30,
0xb9,0xba,0xc6,0x79,0xf8,0xe7,0x75,0x5f,0xa7,0xe1,0x39,0x40,0x29,0x5d,0xa5,0x14,
0xc9,0x75,0xea,0x4,0x9b,0x61,0xc3,0x44,0xe7,0x91,0xc5,0x21,0x59,0x12,0xfa,0x53,
0x57,0x4c,0x19,0xd8,0xb5,0xab,0xd6,0xe3,0xf2,0x0,0x1e,0x8a,0x96,0xbb,0x77,0xa7,
0xcc,0x8d,0xf8,0x16,0xef,0x3c,0xe9,0x1c,0x3d,0x55,0x23,0x15,0xe3,0xfa,0xf5,0x5a,
0x6f,0x50,0xca,0xf8,0x36,0xd4,0x58,0xf5,0xee,0xd5,0x4b,0xd4,0xf8,0x52,0xfa,0xd0,
0x57,0xf6,0x30,0x86,0x1f,0x9b,0x3c,0x99,0xe,0x62,0x17,0x46,0xbd,0xfb,0x7a,0x1f,
0x69,0x46,0x16,0x87,0x64,0x41,0x62,0x63,0xf6,0xed,0x75,0x71,0xb6,0xb3,0xa3,0x75,
0x7c,0x8a,0x7f,0x6a,0xd3,0x46,0xf3,0x0,0x9b,0x79,0x20,0x2d,0x7b,0xfb,0xa9,0x2b,
0xb3,0x77,0x2e,0x90,0xb8,0xfe,0xb9,0xb,0x65,0xf7,0x9,0xa,0x82,0x1e,0xbe,0xa8,
0x14,0x1f,0xaf,0xf9,0x86,0x5d,0xa3,0x50,0x84,0x74,0xed,0x6a,0xde,0xc1,0x9a,0x8f,
0x2f,0xa5,0x2b,0x7d,0xb,0xcf,0x79,0xe1,0x9e,0x53,0xa6,0xd0,0x52,0xce,0x43,0xcf,
0x86,0xc,0x49,0xf7,0x1,0x65,0x71,0x48,0x16,0x48,0x69,0xf7,0xfc,0xa1,0xe2,0xdf,
0xa3,0x7,0x9f,0xc2,0x35,0xaa,0x93,0x3b,0xb7,0x56,0xe3,0x9a,0x4f,0x5d,0xf1,0x4f,
0x39,0xa2,0x93,0x4b,0xf9,0xfb,0xbf,0x73,0xde,0x77,0xfd,0x42,0x27,0xaa,0x45,0x87,
0xe9,0xf9,0x73,0xfa,0x14,0x23,0xb0,0x71,0xe7,0x4e,0xad,0x36,0xcc,0x8c,0x43,0x78,
0x3a,0x8d,0xcc,0x95,0x4b,0x71,0x4b,0xfc,0x5a,0x57,0xbe,0x7b,0x77,0xad,0xc7,0x97,
0xb4,0xa1,0x1f,0xec,0x55,0x33,0xec,0xdc,0xd4,0xa9,0x28,0xcb,0x3a,0x7e,0xd8,0xaf,
0x1f,0x96,0xc0,0x1d,0xd,0x92,0x92,0xd2,0xea,0xf5,0xc9,0xf,0x8f,0xf8,0xd7,0xe0,
0x60,0x2e,0x97,0xfd,0xbe,0x3a,0xa6,0x76,0x6d,0x59,0x1c,0x92,0x25,0x60,0xde,0xb4,
0xa9,0x75,0x6b,0x9d,0x8e,0xfd,0x70,0x97,0xa6,0xf5,0xeb,0xa7,0x79,0x80,0x53,0x28,
0xc2,0xcb,0xb6,0x6c,0x71,0x70,0xac,0x57,0x3f,0x2a,0xfa,0xdd,0xf,0x10,0xde,0x7b,
0xdd,0x4,0xb5,0xa8,0xb2,0x81,0xeb,0x8b,0x3b,0x95,0xc5,0x6b,0x68,0x36,0x1c,0xfb,
0xf7,0x37,0xef,0x70,0x51,0x39,0xa4,0xf4,0x65,0xff,0xc0,0xab,0x71,0xc4,0xb5,0x79,
0xf3,0x94,0xed,0x6a,0x33,0x6c,0xaa,0x5e,0x1d,0xa7,0xe8,0x47,0x24,0x86,0x84,0xbc,
0xef,0xeb,0x50,0x1b,0x3c,0xe6,0x6d,0x77,0xee,0x30,0xd3,0x2e,0x1e,0xd0,0xb7,0xaf,
0xdd,0x6f,0x1e,0x5d,0x23,0x6a,0x7b,0x78,0xbc,0xef,0x2f,0x8a,0x24,0xa5,0xa7,0x78,
0x67,0x5b,0x9f,0xeb,0xbd,0xbc,0xbc,0x50,0x16,0x65,0x71,0xbc,0x78,0x71,0xcd,0x3,
0x84,0x60,0x3a,0x27,0xad,0x5a,0xf5,0xbe,0xdf,0xf6,0xde,0xd3,0x1,0x9b,0x97,0x9e,
0x8d,0x77,0x7f,0xda,0x2c,0xb1,0xf8,0xb5,0x6b,0x9a,0xcf,0xcd,0x62,0xce,0x11,0xc5,
0xab,0x30,0xa8,0x7d,0x7b,0x87,0xba,0x5e,0x9b,0xc3,0xdb,0x8b,0x2b,0x34,0x49,0x5b,
0x8f,0x27,0x4,0xdd,0x36,0xdc,0x2e,0x5d,0xda,0x34,0xcb,0x74,0x6,0x5f,0xd5,0xad,
0x8b,0x19,0x94,0x8d,0xbc,0x4b,0x94,0xa0,0x50,0x94,0xe6,0x32,0xd9,0xb2,0xf1,0x43,
0x2e,0x48,0xa3,0xef,0xdd,0xa3,0xbb,0xba,0xa,0x94,0x2d,0x34,0xd4,0xee,0xd0,0x33,
0xdf,0x27,0xbf,0x1c,0x3f,0x4e,0x8a,0x77,0x9b,0xf3,0xde,0x69,0x77,0x24,0x23,0x49,
0x69,0x29,0x6e,0x50,0xc0,0x1c,0xb7,0xa3,0x61,0x61,0xf0,0x45,0x51,0xfc,0xe4,0xe6,
0xa6,0xd5,0xb8,0x54,0x1c,0xf6,0xe8,0x7d,0xf3,0xa6,0x5d,0x6c,0x64,0xf5,0xf0,0x9e,
0x4e,0x4e,0x6f,0x7b,0xee,0x23,0xd5,0xf7,0x7f,0xf0,0x6,0x1b,0x2,0x7,0xbb,0x4d,
0x1f,0x31,0x2,0x7b,0xb9,0x26,0x36,0x68,0x3f,0x89,0x1e,0xd,0xa2,0x39,0xb8,0x76,
0xfe,0xbc,0xdd,0x8a,0x88,0xdd,0xe1,0xf,0x2b,0x54,0x78,0xdf,0xd,0x97,0x24,0x49,
0x12,0x2d,0xd6,0x3d,0xa8,0x95,0xa1,0x75,0xc3,0x86,0xb4,0x5b,0xed,0x42,0x37,0xb4,
0x7f,0xde,0xce,0x3c,0xe5,0x90,0x79,0xe6,0x88,0xf7,0xfd,0xfe,0xf,0x5e,0xfa,0x53,
0x99,0x69,0xf5,0xbd,0xd2,0x7a,0xc1,0x2,0x51,0xd3,0xbe,0xf3,0xc,0xee,0xf,0xa7,
0x72,0xe5,0x1e,0x17,0x76,0x59,0x6c,0x98,0xd3,0xaa,0x95,0xd6,0xe3,0x4b,0x92,0x24,
0x7d,0x2c,0x25,0x9b,0x3a,0x11,0xa3,0x7d,0x7c,0x34,0x1f,0x78,0x2b,0x7c,0x61,0xf7,
0xf2,0xa5,0x29,0x9c,0x9e,0xd0,0xa1,0x85,0xb,0x3f,0x38,0xff,0x87,0x7e,0xa3,0xf9,
0xe2,0x23,0xd7,0xa5,0x70,0x9c,0x11,0x78,0x4d,0xa4,0x30,0x3d,0x23,0xab,0x51,0xa3,
0xe4,0x35,0x11,0x49,0x92,0x32,0x8a,0xf8,0x59,0x81,0xd,0xdc,0xf2,0x36,0x68,0xc0,
0x3b,0xf1,0x17,0xf5,0xa8,0x51,0x43,0xeb,0xf1,0x29,0x14,0xcd,0xd0,0x69,0xd3,0x26,
0xc7,0xe7,0x1e,0x97,0x4e,0x16,0xbe,0x73,0xe7,0x43,0x5f,0xe7,0x83,0xb,0xc4,0x8c,
0x9f,0xe2,0xa2,0x6a,0x98,0x31,0x3,0x71,0x8,0x80,0x1b,0xb3,0xd6,0x3b,0x82,0x83,
0x51,0x12,0xcb,0xca,0x97,0x8f,0x6f,0x69,0x3b,0xfb,0xc6,0x44,0x1,0x8f,0xfc,0x4b,
0x92,0x24,0xbd,0x23,0x66,0x5f,0x6,0x14,0x45,0xad,0xcc,0x53,0x78,0xa9,0xb8,0x85,
0xd8,0xa8,0x27,0xad,0x56,0xc7,0xcd,0x9a,0xf5,0xb1,0xaf,0xf3,0xd1,0x5,0xe2,0x30,
0xd4,0x63,0x4d,0xe4,0x9a,0xb3,0x67,0x91,0x13,0x2e,0x5c,0xe9,0xf0,0x61,0x51,0x3b,
0x4,0x36,0x7c,0x80,0xa3,0xc6,0x8d,0xbb,0xbf,0x67,0x6f,0x85,0x2f,0xa7,0xe4,0xcc,
0x29,0x2c,0x87,0x24,0x49,0xd2,0x1b,0xc4,0xb7,0x34,0x7c,0xed,0x76,0xa9,0x6b,0x57,
0x94,0xc7,0xd,0x1a,0xef,0xec,0xac,0xf5,0xf8,0xf4,0x33,0x56,0xa0,0x53,0x68,0xa8,
0x5d,0x35,0x8f,0x4b,0x91,0x97,0xc2,0xc3,0x3f,0xf6,0xf5,0x3e,0xba,0x40,0x52,0xe4,
0xc3,0x42,0xa,0x9f,0x39,0x53,0xeb,0x1d,0x62,0xc6,0xf3,0xb1,0x87,0xa6,0x17,0x2c,
0x98,0xad,0xfe,0x8b,0x33,0xd9,0x6,0x6b,0xf0,0x20,0x9a,0x24,0x49,0xd2,0x3b,0x4a,
0xf9,0x60,0xfb,0xea,0x83,0xae,0xa8,0x1c,0x5c,0x91,0x2a,0x52,0x95,0x49,0x93,0xd2,
0xea,0xf5,0xd2,0xac,0x40,0xf4,0x88,0x8c,0xa,0x5f,0xe4,0xef,0x4f,0x25,0xa8,0x3d,
0x6f,0x3b,0x73,0x46,0xcc,0xee,0x1,0xa8,0xe,0xbe,0xa3,0xdf,0x6,0xf,0x8e,0x8d,
0x9,0x70,0x76,0x71,0x2e,0x52,0x44,0x54,0xe,0x49,0x92,0x24,0xb3,0xec,0x47,0x92,
0x2a,0x66,0x3f,0x32,0x7c,0xb8,0xf9,0x83,0xae,0xe6,0x1,0x92,0xb1,0x1c,0xae,0xbf,
0xff,0xae,0xff,0xae,0xc9,0xa8,0x30,0x43,0x40,0x40,0x5a,0xbd,0x6c,0x9a,0x15,0x88,
0xf9,0x36,0x5a,0x1e,0x8f,0x21,0xca,0xbd,0x51,0xa3,0x34,0xdf,0x41,0xaf,0xf0,0x56,
0x34,0xc1,0x86,0x9c,0x39,0x95,0x85,0x74,0x41,0xb7,0x71,0xc1,0x2,0x51,0x39,0x24,
0x49,0x92,0x1e,0x5f,0xdd,0x59,0xcd,0x75,0x5c,0x99,0x32,0xcc,0xfc,0xd,0xbe,0x1d,
0x3c,0x58,0x54,0xe,0x1a,0xa6,0x1c,0xe2,0xd,0xe3,0xc6,0xa5,0xac,0xf3,0x94,0x46,
0xd2,0xee,0x14,0xd6,0x2b,0xf6,0x7d,0x3d,0x46,0x87,0x19,0xfc,0xfd,0x69,0x2a,0x74,
0xc8,0x7f,0xe2,0x84,0xb6,0xbb,0xe9,0x5f,0xfc,0x1d,0x6f,0x44,0x87,0x46,0x8d,0x8c,
0xdd,0x83,0x1c,0xc,0xe,0x72,0x65,0x43,0x49,0x92,0xb4,0x63,0x5e,0xcf,0xc3,0xf4,
0x4c,0x79,0x4e,0xdd,0xe6,0xcf,0x37,0xaf,0x6f,0xa4,0x75,0xe,0xea,0x84,0x2a,0x28,
0x76,0xee,0x9c,0xdd,0xd2,0xf0,0x98,0x88,0xd8,0x1d,0x3b,0xd2,0xfa,0xf5,0xd3,0xbc,
0x40,0x52,0x54,0xc7,0x55,0xae,0x24,0xee,0x48,0x24,0xc5,0x6d,0x75,0x36,0xce,0xcc,
0x9a,0x15,0x13,0x14,0x7c,0xd1,0xed,0x52,0x9e,0x3c,0xa2,0xe3,0x48,0x92,0x94,0xf9,
0xc5,0xb7,0xc,0xfa,0xda,0xed,0x52,0xb7,0x6e,0x28,0x4,0x3f,0x6a,0x51,0xab,0x96,
0xb0,0x20,0xf9,0x94,0x32,0xbc,0x7f,0xf4,0xe8,0xf4,0x7a,0xd0,0x3a,0xdd,0xa,0x44,
0xdf,0xd8,0xb3,0x7f,0xc4,0xb8,0x3,0x7,0x3e,0x74,0xe,0xa3,0xb4,0xc2,0x1b,0x91,
0x87,0x5a,0x7c,0xf6,0x99,0xf2,0xd2,0x34,0x96,0x9f,0xfc,0xf6,0x9b,0xa8,0x1c,0x92,
0x24,0x65,0x7e,0xff,0x7c,0x50,0x2d,0x54,0x88,0x27,0x73,0xf,0x7e,0x34,0x75,0xaa,
0xa8,0x1c,0xe6,0x33,0x40,0x76,0x4b,0x1b,0xc7,0x44,0xc4,0xbe,0xfb,0xf4,0xec,0xef,
0x2b,0xfd,0x8e,0x40,0xcc,0x3,0x64,0x7,0xd4,0xe7,0xc3,0x87,0x8b,0x7a,0x4e,0x24,
0x45,0x4d,0xb4,0xa1,0x6f,0xbb,0x77,0x37,0x1e,0x9,0x88,0x76,0xbb,0x24,0x9f,0x5c,
0x97,0x24,0x29,0xed,0x98,0x9f,0xef,0x50,0x8a,0x98,0xda,0x72,0x8e,0x55,0xab,0xe0,
0x8,0x47,0x1a,0x68,0x6f,0xaf,0x79,0x90,0x57,0xef,0xb3,0xea,0x65,0xfa,0x46,0xdd,
0x38,0x78,0x70,0x5a,0x5f,0xf3,0x78,0x5d,0xba,0x17,0x48,0xca,0xfd,0xc6,0x87,0x69,
0x27,0x97,0xdd,0xb6,0x2d,0xbd,0xc7,0x7b,0x1b,0x3e,0x8b,0x25,0xb8,0x30,0x6f,0xde,
0xd3,0x2b,0xfe,0x79,0xdd,0xd7,0xe5,0xcf,0x2f,0x3a,0x8f,0x24,0x49,0x19,0x5f,0xfc,
0x34,0x97,0x23,0xee,0x5f,0xfc,0xf8,0xa3,0xe8,0x53,0x56,0x14,0x89,0x27,0x5c,0x6d,
0xe3,0x46,0x87,0x8d,0x1e,0xb6,0x91,0xb6,0xa1,0xa1,0xe9,0x3d,0x5e,0xba,0x17,0x88,
0x99,0x9a,0x4f,0x39,0x4a,0xd,0x6,0xd,0xa2,0xca,0x70,0xe2,0x3,0x4f,0x9e,0x68,
0x35,0x6e,0x2a,0xed,0xd0,0x8,0xe3,0xf2,0xe6,0x4d,0xde,0xa8,0x3c,0x63,0xc3,0xf2,
0xe5,0xe6,0x4f,0xe,0xc2,0xf2,0x48,0x92,0x94,0x61,0x19,0x57,0x5,0x38,0x57,0x69,
0xee,0xec,0xcc,0xb1,0x74,0x89,0x27,0x8f,0x1f,0x2f,0x2a,0x47,0xca,0x82,0x50,0xad,
0x93,0xd7,0x29,0xed,0x86,0xf,0xd7,0x6a,0x5c,0xcd,0xde,0x38,0x1d,0x9b,0x34,0x2e,
0x1d,0x5e,0xea,0xf6,0x6d,0x94,0xc6,0x69,0xc4,0x8f,0x19,0xa3,0xd5,0xb8,0x6f,0x92,
0x72,0x97,0xd6,0x41,0x97,0x8,0xb7,0x4b,0x23,0x47,0x8a,0xce,0x23,0x49,0x52,0xc6,
0x61,0x34,0x6,0x6,0xd6,0xa8,0x61,0x6f,0xcf,0xa5,0xd0,0x4e,0x2d,0xb6,0x79,0xb3,
0xa8,0xbb,0xac,0xcc,0xf8,0xf,0xc,0xc0,0x8f,0xe3,0xc7,0xdb,0x53,0x73,0xa,0xa3,
0xeb,0xd7,0xb5,0x1a,0x57,0xf3,0x4f,0xde,0x76,0x7b,0x12,0xad,0x8b,0xfd,0x30,0x73,
0x26,0xee,0xd3,0x68,0xc,0x3b,0x75,0x4a,0xeb,0xf1,0x53,0xd1,0x2b,0xcd,0x71,0xd2,
0xd7,0x37,0x76,0xa8,0xff,0x5,0xd7,0x45,0x8d,0x1a,0x89,0x8e,0x23,0x49,0x92,0xe5,
0x32,0xdf,0x9e,0xcb,0x89,0x5c,0x35,0xe9,0xd6,0xb2,0x65,0xc2,0x16,0x80,0x32,0xfb,
0x99,0x7e,0x84,0xd7,0x5f,0x7f,0xe9,0xc3,0x94,0xde,0xb1,0x56,0xd3,0xa6,0x69,0x3d,
0xbc,0xe6,0x5,0x42,0xe4,0xed,0xbd,0x79,0xb3,0xc9,0xa4,0x5e,0x55,0xf3,0xe3,0xcb,
0xbe,0x7d,0x71,0x8d,0xbe,0xc5,0x0,0x81,0xeb,0x78,0x38,0xf1,0x2,0xcc,0x56,0x14,
0xaa,0xa3,0x54,0x51,0x56,0xad,0x5e,0x1d,0x37,0x22,0x68,0x4b,0xd5,0xe8,0xa2,0x45,
0x85,0xe5,0x91,0x24,0xc9,0x62,0x19,0x7d,0x2,0x97,0x1a,0xb6,0xfa,0xf8,0x20,0x3b,
0x42,0x91,0xbf,0x59,0x33,0x61,0x41,0xcc,0x37,0x25,0x39,0xd2,0x2f,0xfc,0x79,0xef,
0xde,0xa4,0x34,0x2e,0x7d,0xf9,0xfb,0x17,0x2f,0xb4,0x8e,0x21,0xec,0xdc,0xbf,0x63,
0x13,0xaf,0xdd,0xe1,0xa5,0x4e,0x9e,0xa4,0x58,0x5e,0x88,0xa5,0x8b,0x16,0x89,0xca,
0x91,0xc2,0x8d,0x57,0x23,0xc9,0xd1,0x91,0xe,0xaa,0xb7,0x4c,0xe1,0x81,0x81,0xf2,
0xb9,0x11,0x49,0x92,0xcc,0x8c,0xb3,0xfd,0x6f,0xb9,0x8f,0x6f,0xd9,0x12,0xad,0xc8,
0x97,0x12,0xfc,0xfc,0x44,0xe7,0xc1,0x19,0x24,0x70,0xf7,0xe5,0xcb,0xed,0x27,0x36,
0x69,0x15,0xd1,0xf2,0xc8,0x11,0x51,0x31,0xc4,0x5f,0x3c,0x76,0x25,0xd8,0x24,0x8f,
0x18,0x61,0x5e,0xbb,0x5a,0x74,0x1c,0xf3,0xf4,0xf0,0xca,0x7c,0xd3,0x72,0xf4,0xd9,
0xb4,0xc9,0xbc,0x84,0xaf,0xe8,0x5c,0x92,0x24,0x69,0xef,0x71,0xf6,0xa0,0x89,0xee,
0x17,0xdd,0xdd,0x71,0x4a,0x29,0xc9,0xb,0x56,0xaf,0x36,0x9f,0xb1,0x10,0x95,0xc7,
0xbc,0x4,0x2d,0x9a,0x26,0xaf,0x4e,0xaa,0xfc,0xd3,0x4f,0xa2,0xf7,0x8f,0xf0,0x2,
0xd1,0xeb,0x3d,0x3c,0x8e,0x1d,0x8b,0x8b,0xe3,0x9f,0xb9,0x14,0xc7,0x75,0xe8,0x80,
0x53,0xf8,0x8c,0x57,0x9a,0x4c,0xa2,0x73,0x61,0x35,0xaa,0xe1,0x69,0x83,0x6,0xc6,
0x5,0xcf,0xc6,0x25,0x96,0x95,0x73,0x6a,0x49,0x52,0x56,0x12,0xc7,0xdb,0xd9,0x9d,
0x8b,0x15,0x33,0x7d,0xa7,0xb6,0x66,0xf7,0x9d,0x3b,0x79,0x1a,0x6f,0x41,0xc1,0x1c,
0x39,0x84,0x5,0x32,0x9f,0xea,0xef,0xcb,0xeb,0xb1,0xb3,0x5b,0x37,0x7b,0x6a,0x4e,
0xa7,0xc9,0x68,0x14,0xbd,0x9f,0x84,0x17,0x88,0x99,0x7d,0x6d,0x2f,0xb7,0xc8,0xa,
0x87,0xf,0xd3,0x73,0x84,0x62,0xdd,0xe4,0xc9,0xa2,0xf3,0xa4,0x68,0xc7,0x95,0x61,
0xd7,0xa3,0x47,0xdc,0xd5,0x80,0xde,0x6e,0xfd,0x7d,0x7d,0x45,0xc7,0x91,0x24,0x29,
0xfd,0x3c,0xed,0xb8,0x6d,0x72,0xb5,0x2f,0xf3,0xe5,0xc3,0xb7,0xd6,0xa5,0x79,0xc2,
0xee,0xdd,0x18,0x8d,0xb,0x28,0x65,0x1,0xcf,0x8b,0xfd,0xc5,0xab,0x70,0x76,0xc6,
0xc,0xfd,0x4,0xaf,0xb9,0xe1,0x1,0xe2,0x66,0xf6,0x78,0x1d,0x89,0xe,0xf0,0x3a,
0x56,0x23,0x23,0x5c,0x9c,0xad,0xad,0x8d,0x9d,0xee,0xf5,0x51,0x66,0x1c,0x3d,0x8a,
0x39,0xf0,0xa3,0xc1,0xee,0xee,0xa2,0x73,0x99,0xd1,0x8,0x5a,0xc2,0x6e,0x83,0x7,
0xeb,0xe7,0x7b,0xec,0x8c,0x98,0xa3,0xfd,0x5d,0xf,0x92,0x24,0xa5,0xbd,0x94,0xdb,
0x72,0xed,0x38,0x39,0xe9,0xe1,0xc1,0x83,0x30,0x42,0x7,0xbb,0x8a,0x15,0x45,0xe7,
0xa2,0xc6,0xb8,0x8c,0xee,0x67,0xcf,0xc6,0x85,0xe6,0x1a,0x94,0xa3,0x8f,0xc1,0xe0,
0x44,0xb5,0xe8,0x30,0x3d,0x7f,0x2e,0x3a,0x97,0x99,0xc5,0x1c,0x81,0x98,0x91,0xe2,
0x6a,0x88,0x8a,0x7e,0xf9,0x92,0xe6,0xd2,0x58,0x7e,0xdc,0xbe,0x3d,0x39,0xe1,0x34,
0x12,0x1e,0x3f,0x16,0x9d,0xcb,0x8c,0x87,0x70,0x7e,0xc2,0x94,0x29,0xb1,0x47,0x3,
0x76,0xb8,0x95,0xf9,0xf6,0x5b,0xd1,0x79,0x24,0x49,0xfa,0x70,0x77,0x7b,0x5,0x38,
0xbb,0xb8,0xd8,0xda,0xc2,0x8b,0x4b,0xbf,0x98,0xef,0xef,0x6f,0x31,0xc5,0x51,0x9b,
0x7e,0xe4,0xf1,0x4f,0x9f,0xaa,0xf,0x38,0x27,0x27,0xb7,0x6d,0x6b,0x69,0xc5,0x61,
0x66,0x71,0x5,0x62,0xa6,0xd7,0x7b,0x78,0x44,0x7a,0x5c,0xbd,0xca,0x35,0xa8,0x9d,
0xea,0xdf,0xaf,0x9f,0xe8,0x3c,0x29,0xec,0xe1,0x89,0x70,0x22,0xca,0x49,0xfd,0x30,
0x72,0xee,0x5c,0xe3,0xaa,0x0,0x67,0xc3,0x91,0x9e,0x3d,0x45,0xc7,0x92,0x24,0xe9,
0xdd,0x99,0xef,0xb2,0xb4,0xdd,0x8e,0xab,0xba,0x2f,0x77,0xed,0xe2,0x9d,0xf8,0x8b,
0x7a,0xd4,0xa8,0x21,0x3a,0x97,0x99,0x3a,0x45,0xad,0x44,0x8f,0x7a,0xf7,0x76,0xb8,
0xea,0xd5,0x3b,0xa2,0xff,0xb9,0x73,0xa2,0xf3,0xbc,0x89,0xc5,0x16,0x88,0x99,0x7d,
0xa0,0x47,0x89,0xc8,0xe2,0x6b,0xd6,0x60,0x3d,0x9d,0x42,0xfc,0xd2,0xa5,0xa2,0xf3,
0xa4,0x78,0x75,0x37,0x6,0xd7,0x80,0x2b,0x6d,0x5a,0xb4,0x28,0xee,0x62,0xc0,0x2d,
0xf7,0x76,0x3,0x7,0x8a,0x8e,0x25,0x49,0xd2,0x9b,0xc5,0x87,0xee,0xbe,0x59,0xe5,
0x96,0x83,0x83,0xf2,0xbb,0xe9,0x33,0xac,0xde,0xbf,0x9f,0x2f,0x61,0x35,0xce,0x7d,
0xfd,0xb5,0xe8,0x5c,0x66,0xd4,0x3,0x5b,0x38,0x74,0xce,0x1c,0x87,0xba,0x5e,0x9b,
0xc3,0xdb,0xaf,0x5f,0x2f,0x3a,0xcf,0xdb,0x58,0x7c,0x81,0x98,0xe9,0xbf,0x4d,0x28,
0xf3,0x74,0x5c,0xdf,0xbe,0x54,0xa,0x9d,0xf0,0x85,0xb8,0xfb,0x9e,0x53,0x79,0x75,
0x44,0x82,0xbc,0xf8,0x9d,0xaf,0xcc,0x98,0x11,0x37,0x22,0x60,0x89,0x61,0xab,0x9c,
0x1a,0x45,0x92,0x2c,0xc9,0xdf,0x1b,0x83,0x5a,0x19,0x5a,0x17,0x28,0xc0,0x5d,0x5f,
0x36,0x33,0x1d,0x3a,0x74,0x8,0x7d,0x11,0x82,0xdd,0x6,0x83,0xe8,0x5c,0x66,0xb4,
0x82,0x7a,0xe3,0xf4,0xc9,0x93,0x76,0x5b,0x12,0x1b,0x3f,0xdb,0x26,0xfe,0xf6,0xdc,
0x77,0x95,0x61,0xa,0x84,0x14,0xef,0x36,0xe7,0xbd,0x93,0x92,0x74,0x45,0x50,0xdc,
0x74,0xba,0x65,0x4b,0x1c,0x87,0x2f,0x46,0x5c,0xb9,0x22,0x3a,0x57,0x2a,0x43,0x90,
0x9f,0x26,0x8d,0x1b,0x17,0x77,0x33,0xc0,0xca,0x10,0xf8,0xdb,0x6f,0x72,0xb2,0x46,
0x49,0x12,0xe7,0x71,0xd9,0x80,0x5b,0xee,0xed,0x4a,0x95,0xb2,0x7e,0xce,0xdb,0x31,
0xe8,0xe8,0x51,0xe,0x83,0x1f,0xcd,0xae,0x50,0x41,0x74,0x2e,0x33,0xf3,0x73,0x1d,
0x2f,0x9f,0x59,0x55,0x31,0x95,0x6f,0xd1,0xc2,0xfc,0x3e,0x27,0x3a,0xd7,0xbb,0xca,
0x70,0x6f,0x6c,0xb9,0xa3,0x3d,0xa3,0xa3,0xa2,0x1f,0x3d,0x32,0xe5,0x7,0x4c,0xe3,
0x3c,0x3c,0xa0,0xa2,0x26,0xfa,0x8a,0xbf,0x1f,0x3a,0x75,0x50,0x6c,0xa7,0xb1,0x83,
0x6,0xc5,0x2f,0x71,0xb5,0x73,0x9b,0x1e,0x14,0xf4,0xc8,0x73,0x67,0xb5,0xea,0x8e,
0xb9,0x73,0x8b,0x8e,0x25,0x49,0x59,0x41,0x6c,0x9b,0xc0,0x4,0xd7,0x84,0x6a,0xd5,
0x4c,0xdf,0xe3,0x17,0x6e,0x7f,0xfc,0x38,0xbc,0x78,0x7,0xfd,0x50,0xb2,0xa4,0xe8,
0x5c,0x66,0xe6,0x59,0xc9,0x79,0x1e,0x5e,0xe0,0x92,0x97,0x57,0xde,0x91,0xd,0xb7,
0x47,0x45,0xdd,0xbb,0x27,0x3a,0xd7,0x7b,0x6f,0x87,0xe8,0x0,0x1f,0x2b,0xbe,0x73,
0x80,0xb3,0xdb,0xa5,0xfa,0xf5,0xd5,0xa6,0xf0,0x82,0x4b,0x50,0x10,0x6a,0xc3,0x5,
0x65,0x2d,0xf0,0xc9,0x71,0x3d,0x4c,0x88,0x3f,0x7d,0x5a,0xd,0xd6,0x95,0x43,0xa0,
0x87,0x47,0xca,0xec,0xc4,0x92,0x24,0xa5,0x99,0xf8,0x42,0xfe,0x8b,0xc,0x73,0xbc,
0xbd,0x55,0x4f,0xa,0x40,0xb3,0x95,0x2b,0x31,0x11,0xbd,0xa9,0x45,0xf6,0xec,0xa2,
0x73,0xa5,0x30,0x3f,0x28,0xbd,0x12,0x7b,0xd0,0xbe,0x79,0x73,0xfb,0x95,0x9e,0xc3,
0x23,0x4e,0x5,0x4,0x88,0x8e,0xf5,0xa1,0x32,0xdc,0x11,0xc8,0xeb,0xec,0x56,0x79,
0x46,0x87,0x97,0xda,0xbb,0x17,0x7b,0x69,0x2d,0x86,0xfe,0xf0,0x83,0xe8,0x3c,0x6f,
0xf4,0xea,0xf6,0x40,0xdd,0x18,0xd3,0x10,0xd4,0x3f,0x71,0x22,0x36,0x7b,0xc0,0x5a,
0xc3,0xed,0xaa,0x55,0x45,0xc7,0x92,0xa4,0x8c,0xcc,0x3c,0xd5,0x50,0x9c,0x47,0x80,
0xd1,0x10,0x31,0x79,0xb2,0x7a,0x84,0x22,0xe9,0xc2,0x86,0xd,0x16,0x57,0x1c,0xe6,
0xbc,0x95,0x68,0x9,0x22,0x7,0xc,0xc8,0xe8,0xc5,0x61,0x96,0xe1,0x8f,0x40,0x5e,
0x67,0xfc,0x3a,0xc0,0xd9,0xbd,0xc4,0xd8,0xb1,0xbc,0x13,0x7e,0xec,0x38,0x6a,0x94,
0xe8,0x3c,0x6f,0x14,0x82,0x28,0x5c,0x48,0x4e,0xa6,0x3a,0xe4,0xca,0x7b,0x46,0x8e,
0xd4,0xeb,0x3d,0x3c,0x22,0xaa,0x4e,0x9a,0x24,0x3a,0x96,0x24,0x65,0x4,0x4f,0xa2,
0x83,0x2f,0x56,0x3a,0x92,0x37,0x6f,0xf2,0x51,0x93,0x8f,0xd,0xd6,0xad,0x43,0x67,
0x74,0xc6,0xe0,0xba,0x75,0x45,0xe7,0x7a,0xa3,0xad,0x34,0x81,0x73,0x8c,0x1e,0x6d,
0xdf,0xd3,0xe3,0x64,0xc4,0xe1,0x71,0xe3,0x44,0xc7,0x49,0x2b,0x99,0xae,0x40,0xcc,
0xe2,0x2a,0x4,0x74,0x77,0xab,0x34,0x69,0x12,0x8e,0xa0,0x39,0x6c,0x86,0xe,0x15,
0x9d,0xe7,0x6d,0x68,0x1f,0xd6,0xf1,0xa0,0xd,0x1b,0x92,0x57,0xab,0x37,0x6c,0x6,
0xf4,0xee,0xfd,0x49,0x40,0xd3,0xd0,0xe3,0x31,0x2,0x57,0x6e,0x94,0x24,0xb,0x14,
0x17,0xe2,0x1f,0xee,0xfa,0x47,0xcd,0x9a,0xb4,0x99,0xbe,0x55,0x82,0xd7,0xaf,0xe7,
0x89,0xf0,0xc3,0xd6,0x4f,0x3f,0x15,0x9d,0xeb,0x8d,0x46,0x52,0x18,0x3b,0x4f,0x9d,
0x6a,0x3f,0xd7,0x63,0x7c,0xc4,0x82,0x21,0x43,0x44,0xc7,0x49,0x6b,0x99,0xb6,0x40,
0xcc,0xcc,0x87,0xb6,0x58,0x8d,0xa3,0xd4,0x2f,0x3,0xfc,0x0,0xf5,0xd8,0xcb,0x63,
0x6e,0xdc,0xc0,0x41,0xee,0xc4,0x85,0xbb,0x74,0x31,0xcf,0x11,0x26,0x3a,0x96,0x24,
0x89,0x90,0x32,0xb5,0x11,0xdd,0x73,0x55,0xa2,0x7c,0x7c,0x70,0x10,0xa7,0x70,0x61,
0xe4,0x48,0x54,0xc6,0x1d,0xea,0xa2,0xd3,0x89,0xce,0xf7,0x46,0x97,0x51,0x8a,0x6b,
0x2d,0x5f,0xae,0x77,0xf5,0x28,0x13,0x31,0xa9,0x47,0xf,0x22,0x22,0x80,0x59,0x74,
0xac,0xb4,0x96,0xe9,0xb,0xc4,0xbc,0x82,0x58,0xfc,0x81,0xc0,0x20,0xb7,0x6f,0xe6,
0xcd,0x63,0x17,0x30,0x12,0x32,0xc0,0x14,0x24,0xaf,0x2e,0xb6,0x51,0x5e,0x6a,0x43,
0xa5,0xa7,0x4c,0xb1,0xfb,0x22,0x61,0xfc,0xd3,0xad,0xbe,0xbe,0x19,0xed,0x36,0x3f,
0x49,0xfa,0x10,0xb1,0xc5,0xfd,0x17,0x19,0xe6,0x7c,0xf1,0x5,0x85,0xd1,0x6e,0x3a,
0xbf,0x66,0xd,0xac,0xd0,0xd,0x91,0x95,0x2a,0x89,0xce,0xf5,0x56,0x7a,0xf8,0xa2,
0xd2,0xca,0x95,0x7a,0x44,0x46,0x85,0x2f,0xea,0xde,0x9d,0xc8,0x8f,0x0,0x81,0xb,
0xe6,0xa5,0xb3,0x4c,0x5f,0x20,0x66,0xe6,0x22,0x31,0xee,0xc,0xec,0x64,0x88,0x5e,
0xb2,0x4,0x35,0xd1,0x86,0xbe,0xed,0xde,0x5d,0x74,0xae,0x77,0x45,0x25,0xa8,0x3d,
0x6f,0x3b,0x73,0xc6,0xb4,0x5a,0xad,0x4e,0x89,0x7d,0xfa,0x98,0x17,0xe4,0x12,0x9d,
0x4b,0x92,0xd2,0x2,0xab,0x9b,0x36,0x96,0xdb,0x64,0x63,0x63,0x1c,0x99,0xe3,0x49,
0x4e,0xdd,0xd0,0xa1,0x88,0xc3,0x4e,0xb8,0xfb,0xf8,0x58,0xea,0xc5,0xf0,0x54,0xf4,
0xb8,0xc8,0x45,0x67,0xce,0xd4,0xc3,0xe3,0xc7,0x88,0xcd,0x3f,0xfc,0x90,0x59,0x8f,
0x38,0x5e,0x97,0x65,0xa,0xc4,0xcc,0xfc,0x60,0x5f,0xfc,0x24,0x43,0x1f,0xb7,0xa4,
0xd9,0xb3,0xb9,0xf,0x7b,0xa2,0x46,0xdf,0xbe,0xa2,0x73,0xbd,0xb3,0x57,0xeb,0x2,
0xd0,0x59,0xce,0x8f,0x17,0xb,0x17,0x72,0xa7,0xe4,0xa8,0x17,0x3d,0x46,0x8c,0xb0,
0x94,0xf5,0x1,0x24,0xe9,0x7d,0xc4,0x8d,0x8,0xda,0x62,0xd8,0xfa,0xf5,0xd7,0x94,
0xa8,0x1e,0x45,0x99,0x5,0xb,0x78,0x34,0xea,0x52,0xf7,0xcf,0x3f,0x17,0x9d,0xeb,
0x9d,0x9d,0xe2,0xfc,0x58,0xeb,0xeb,0x6b,0x5f,0xdb,0xcb,0x2d,0xbc,0xd4,0xd8,0xb1,
0xa2,0xe3,0x68,0x2d,0xcb,0x15,0xc8,0xeb,0xe2,0x1c,0x2,0xce,0xba,0xd3,0xf0,0xe1,
0x88,0xc4,0x2c,0xee,0x37,0x61,0x42,0xca,0xd4,0x24,0x19,0x4,0x4d,0xc5,0x59,0xe4,
0xbf,0x7f,0x9f,0xdb,0x92,0x15,0xcf,0xff,0xf9,0x67,0x7d,0xf9,0x88,0xc1,0x11,0x85,
0x56,0xaf,0xce,0xec,0x87,0xce,0x52,0xc6,0xf4,0xcf,0x3,0xb5,0x5,0xb,0xea,0xfc,
0x95,0xe7,0x2f,0x5b,0x4e,0x9c,0x88,0x6b,0x70,0x85,0x4d,0xe7,0xce,0x19,0xe6,0xf7,
0xce,0xbc,0xb0,0xd3,0x42,0xd8,0xe2,0xc6,0xc0,0x81,0xf6,0xb,0x3d,0x2e,0x85,0x8f,
0x9c,0x33,0x47,0x74,0x2c,0x51,0x2c,0xff,0x7,0xa6,0x91,0x38,0x8f,0xc0,0x2b,0xae,
0x57,0x3b,0x76,0x44,0x4d,0xce,0xad,0x2c,0x5f,0xba,0x14,0x3d,0x11,0x86,0x3d,0x36,
0x36,0xa2,0x73,0xbd,0x2f,0x1a,0x44,0x73,0x70,0xed,0xfc,0x79,0xb5,0x25,0x2f,0xa1,
0xba,0x43,0x86,0x38,0x78,0x79,0x16,0xe,0x5b,0x1f,0x1c,0x2c,0x3a,0x97,0x94,0x35,
0x99,0xa7,0x4b,0xb7,0x9d,0x42,0x63,0x95,0x39,0x3,0x6,0xa0,0x12,0x17,0x43,0x79,
0x1f,0x1f,0x3e,0x85,0x6b,0x54,0x27,0x3,0xcd,0xcc,0x60,0xbe,0x26,0xd9,0xf,0x1b,
0x94,0x39,0xbd,0x7a,0xe9,0xff,0xf4,0x9c,0x1c,0x36,0x77,0xf9,0x72,0xd1,0xb1,0x44,
0x93,0x5,0xf2,0x9a,0xf8,0x32,0xfe,0x79,0xdd,0xd7,0xd5,0xab,0xc7,0x2f,0xe8,0xa0,
0xea,0xb9,0x75,0x6b,0x86,0xfb,0x1f,0xfd,0x35,0xd4,0x8a,0x7c,0x51,0x3c,0x30,0x10,
0x76,0xa6,0x81,0xea,0xdd,0xd1,0xa3,0xf5,0xdb,0x9a,0x76,0x89,0x3c,0x72,0xea,0x94,
0xe8,0x5c,0x52,0xe6,0xc4,0x6a,0xf0,0xc5,0x92,0xb3,0xb2,0x65,0x8b,0x33,0xaa,0x33,
0xec,0xed,0xbb,0x77,0x57,0x7c,0xf8,0x24,0xdd,0x1d,0x35,0xca,0xe2,0x6f,0xb7,0x7d,
0x83,0x94,0x75,0x39,0xe,0xe0,0x8,0xdd,0x6c,0xdb,0xd6,0xc1,0xc1,0xe3,0xd3,0xf0,
0x9e,0x41,0x41,0xa2,0x73,0x59,0xa,0x59,0x20,0x6f,0x10,0x1b,0x13,0x6c,0x5b,0xe5,
0x56,0x85,0xa,0x4a,0x43,0x53,0x3d,0xf5,0xeb,0xe0,0x60,0xde,0x8b,0x9e,0xc8,0x5b,
0xa8,0x90,0xe8,0x5c,0x1f,0x6d,0x15,0x56,0x61,0xea,0xfe,0xfd,0x8a,0x81,0x7e,0x57,
0x7b,0xf8,0xf8,0xd8,0x55,0xf3,0xb8,0x14,0x79,0x29,0x3c,0x5c,0x74,0x2c,0x29,0x63,
0x32,0x5f,0xfc,0x8e,0x7f,0x6c,0x9b,0x33,0xf7,0xb4,0xae,0x5d,0x51,0x8f,0x17,0xf3,
0xdf,0xa3,0x46,0x65,0xf8,0xdf,0x17,0x7f,0x6a,0xc6,0xbf,0x5d,0xbe,0xcc,0xf,0xd0,
0x8e,0xe7,0x37,0x6f,0xee,0x30,0xd4,0x63,0x4d,0xe4,0x9a,0xb3,0x67,0x45,0xc7,0xb2,
0x34,0xb2,0x40,0xde,0xe2,0x9f,0x85,0x67,0xa,0x15,0xd2,0x2d,0x55,0x7b,0x0,0x1b,
0x36,0xf0,0x52,0x1e,0x8a,0xe,0xd5,0xab,0x8b,0xce,0x95,0x56,0x68,0x3e,0xb5,0xc1,
0xda,0x5d,0xbb,0xe8,0x2,0x97,0x5,0x66,0xcc,0xc8,0xb3,0xd2,0x23,0x2a,0xbc,0xd4,
0xbe,0x7d,0x59,0xe5,0x2e,0x12,0xe9,0xfd,0x98,0xd7,0xd3,0xe0,0x72,0xc9,0x67,0x4c,
0xb7,0x7b,0xf5,0xc2,0xb7,0x5c,0x1f,0x37,0xbe,0xff,0x9e,0xe7,0x63,0xf,0x4d,0x2f,
0x58,0x50,0x74,0xbe,0x8f,0x45,0x7e,0x78,0xc4,0xbf,0x6,0x7,0xf3,0x6f,0xc9,0x5d,
0x93,0x6a,0x75,0xe8,0x20,0x6f,0x4e,0xf9,0xff,0xc9,0x2,0x79,0x47,0x29,0xf,0x34,
0x6d,0xbc,0xf7,0x58,0x57,0xef,0xd7,0x5f,0xe1,0x8e,0x8d,0x78,0xf6,0xc3,0xf,0x19,
0xe6,0xe2,0xdf,0x3b,0x32,0x5f,0x43,0xa1,0x60,0x75,0x33,0x16,0xcc,0x9a,0xf5,0xac,
0x19,0x7d,0x63,0x9a,0xb8,0x7a,0x75,0xc1,0xc5,0x9e,0xd1,0x51,0x51,0x9,0x9,0xa2,
0xf3,0x49,0xda,0x8a,0xa9,0x13,0xe4,0x50,0xa5,0xf2,0xe7,0x9f,0x2b,0xb7,0xb9,0x84,
0x29,0x60,0xe0,0x40,0xfa,0x82,0xc7,0xd1,0xf,0x9d,0x3a,0xf1,0x52,0xbc,0xc4,0xd,
0x5b,0x5b,0xd1,0xf9,0x3e,0x5a,0x1c,0x2,0xe0,0xc6,0x4c,0xfb,0xb0,0x98,0x7f,0xfe,
0xe5,0x17,0xbb,0xde,0x91,0x6a,0x44,0xa1,0x51,0xa3,0xe4,0x4d,0x28,0xef,0x26,0xd3,
0xbc,0xf1,0x69,0x2d,0x6e,0x5e,0xe0,0x58,0xf7,0x8,0x2f,0x2f,0xd4,0xe7,0x22,0x6a,
0xf2,0x8a,0x15,0x70,0x84,0x23,0xd,0xb4,0xb7,0x17,0x9d,0x2b,0xad,0xa5,0xac,0x49,
0xef,0x44,0x2b,0x79,0xfa,0xce,0x9d,0x8,0xc1,0x74,0x4e,0x5a,0xb5,0xca,0x4e,0xdf,
0xc4,0x23,0xd2,0xe3,0xc0,0x1,0x79,0xa4,0x92,0x39,0x98,0x97,0x78,0x55,0x1e,0x9b,
0x6e,0x61,0x49,0xb3,0x66,0xf8,0x1b,0xb,0xd0,0xa4,0x53,0x27,0x78,0xc2,0x1e,0x9b,
0xea,0xd4,0xc9,0x74,0x1f,0x94,0x5e,0x5d,0xdb,0xc0,0x4c,0xde,0x48,0x4e,0xdd,0xba,
0xe9,0xbf,0xf6,0x74,0xe,0x2f,0xb5,0x65,0x8b,0xe8,0x5c,0x19,0x4d,0xa6,0xf9,0x1f,
0x42,0x94,0xf8,0xd0,0x9d,0xa1,0x55,0x6e,0x95,0x2c,0xa9,0x96,0x52,0xa6,0xaa,0xbf,
0x6c,0xde,0x9c,0x61,0x9e,0x98,0xfd,0x58,0x53,0xb0,0x14,0x79,0x2e,0x5e,0x44,0x4f,
0xe4,0x43,0xd9,0x75,0xeb,0xd8,0x4e,0xb7,0x46,0x19,0xb6,0x6d,0x9b,0x83,0x63,0xe3,
0x84,0x93,0x85,0xff,0xf8,0x43,0x74,0x3c,0xe9,0x7f,0x4b,0xb9,0x2b,0xca,0xa4,0x5c,
0x57,0xae,0x35,0x6c,0x88,0xca,0xdc,0x11,0xf7,0x5a,0xb5,0xc2,0x29,0x2c,0xa4,0x12,
0xcd,0x9a,0xf1,0x34,0xde,0x82,0x82,0x39,0x72,0x88,0xce,0x99,0x6e,0xe,0xe2,0x20,
0x1f,0x8c,0x8a,0x52,0xe7,0x2a,0x2b,0x74,0x35,0x3a,0x75,0x72,0x3c,0xd0,0x24,0xf6,
0xe4,0xa9,0x3f,0xff,0x14,0x1d,0x2b,0xa3,0x92,0x5,0x92,0x46,0x6e,0x4d,0xdb,0xb4,
0xa9,0xca,0xad,0x1c,0x39,0x72,0xbf,0xb4,0xdd,0xaf,0xe6,0x9f,0x3a,0x95,0xbd,0x19,
0xf8,0xf1,0xbb,0xef,0x32,0xdb,0x27,0xb7,0xb7,0x5a,0x8e,0x44,0x44,0x5f,0xba,0x84,
0x31,0x5c,0x16,0xb3,0xb6,0x6d,0xe3,0x6b,0xd4,0x95,0x6e,0x4,0x6,0xda,0xdb,0xe7,
0x8a,0xca,0xfe,0xeb,0xc9,0x93,0xa4,0xd4,0xa2,0xc3,0x94,0x9c,0x2c,0x3a,0x66,0x66,
0xf7,0xb4,0xe3,0xb6,0xc9,0xd5,0xbe,0xcc,0x97,0xef,0xe5,0x11,0x9b,0x31,0x2f,0xeb,
0xd5,0xab,0x7,0x3f,0xe4,0x86,0x53,0xf3,0xe6,0x14,0xc0,0x2b,0xe9,0x70,0xa3,0x46,
0x99,0xe6,0x14,0xd4,0xdb,0x98,0x67,0xbd,0xfe,0x81,0xf2,0xf1,0xc4,0x89,0x13,0xed,
0xae,0x17,0x30,0xa8,0xcb,0xc6,0x8f,0x27,0xc5,0xd5,0x10,0x15,0xfd,0xf2,0xa5,0xe8,
0x78,0x19,0x5d,0xd6,0x79,0x63,0xd3,0x98,0x79,0xd6,0x50,0xdc,0x52,0xaa,0xd2,0xe3,
0x25,0x4b,0x2c,0x6d,0x45,0x34,0xad,0x99,0x57,0x60,0x43,0x2,0xc6,0x61,0xc6,0xc1,
0x83,0xdc,0x9c,0xa2,0x89,0xf6,0xed,0xe3,0x89,0xca,0x1d,0xa5,0xcb,0xe1,0xc3,0xf6,
0xe,0x4f,0x57,0x14,0xfe,0xf1,0xfc,0x79,0x22,0x6f,0xef,0xcd,0x9b,0x4d,0x26,0xd1,
0x79,0x2d,0x5d,0x6c,0xcc,0xbe,0xbd,0x2e,0xce,0x76,0x76,0x68,0x9c,0xb4,0x48,0x29,
0x51,0xb5,0x2a,0xb9,0x72,0x59,0x38,0xd6,0xa9,0x83,0x31,0x7c,0x9e,0x94,0xba,0x75,
0xf1,0x4,0x9f,0x40,0xa9,0x58,0x31,0xcb,0x7d,0x80,0x79,0x85,0xc6,0x62,0x3f,0x2f,
0xfb,0xf3,0x4f,0xd2,0x73,0x3,0x78,0x76,0xe9,0x62,0xe7,0xeb,0xd5,0x38,0xe2,0x5a,
0x44,0x84,0xe8,0x5c,0x99,0x4d,0x96,0xfb,0x1f,0x4b,0x6b,0xe6,0x53,0x6,0x39,0x6a,
0x63,0x8a,0xae,0xee,0xb8,0x71,0xc8,0xf,0x7b,0xee,0x3a,0x70,0xa0,0xc5,0xcf,0x26,
0xaa,0xb1,0x94,0x25,0x3e,0x97,0x51,0x73,0xaa,0x16,0x11,0x41,0x7,0xe0,0x8e,0x62,
0x27,0x4e,0xa0,0x80,0xfa,0xb,0xb9,0x9f,0x3a,0xa5,0x34,0xe1,0x36,0x26,0x3e,0x7b,
0x36,0x77,0xb1,0x3c,0xc7,0x73,0x8e,0xbc,0x72,0x25,0xb3,0x1e,0xc9,0xc4,0xf1,0x76,
0xae,0xc8,0x7a,0x3d,0xb7,0xb5,0x4e,0xb4,0x4e,0x2c,0x57,0x4e,0x59,0x88,0x10,0x5d,
0xad,0xf2,0xe5,0xf9,0x10,0x6f,0x50,0xe7,0xbb,0xbb,0xd3,0x76,0x7a,0x48,0xd,0xaa,
0x54,0xe1,0x81,0x38,0x8b,0xe9,0x65,0xcb,0xc2,0x89,0x17,0x60,0xb6,0x92,0xe1,0x17,
0x86,0xfb,0x68,0xe6,0x27,0xc4,0x13,0x51,0x1e,0x3f,0xce,0x9c,0xf9,0xf4,0x64,0x42,
0xf,0x25,0xda,0xc7,0xa7,0xf0,0x4f,0xde,0xde,0x27,0xb,0x27,0x26,0x8a,0x8e,0x97,
0x59,0xc9,0x2,0xd1,0xd8,0xe3,0xec,0x41,0x13,0xdd,0x2f,0xba,0xbb,0xab,0x75,0xd5,
0x5e,0x3c,0x72,0xe9,0x52,0x5e,0x8d,0x93,0xb8,0xfe,0xc5,0x17,0xa2,0x73,0x65,0x18,
0x4b,0xe0,0x8e,0x6,0x49,0x49,0xf4,0xb,0x95,0xe0,0x3e,0x17,0x2e,0xf0,0x34,0xd8,
0x62,0xc7,0xa5,0x4b,0x28,0x8d,0x4a,0xe4,0x77,0xf3,0x26,0xf2,0xf2,0x12,0xaa,0x7b,
0xe3,0x6,0xe2,0xd9,0x1b,0x7,0xae,0x5f,0x57,0x5e,0x2a,0x8f,0x4c,0x76,0xf7,0xee,
0x1,0xa6,0x95,0x56,0x21,0xb1,0xb1,0x5c,0x4e,0x17,0x6b,0xd5,0x2e,0x26,0x46,0xaf,
0xf7,0xf0,0x38,0x76,0x2c,0x2e,0x2e,0xad,0x62,0x99,0x1f,0xa0,0x7b,0x34,0x51,0x19,
0x66,0xb7,0xd2,0xc1,0x41,0xb7,0x2c,0xa9,0x91,0xd2,0xcd,0xc1,0x81,0xda,0xea,0x1c,
0xf0,0xa9,0xa3,0x23,0x60,0xfa,0x46,0xe9,0x5a,0xb4,0x28,0x8a,0x2b,0x1e,0xaa,0x73,
0xb1,0x62,0xb8,0x8a,0x28,0xaa,0x55,0xa4,0x8,0xf2,0x73,0x33,0xd4,0x2e,0x56,0x8c,
0x82,0xd0,0x8c,0x8b,0x7f,0xfe,0x39,0x6f,0x44,0x1e,0x6a,0xf1,0xd9,0x67,0xa2,0x77,
0x73,0x46,0x61,0xbe,0x6b,0x90,0xbb,0xa8,0xe3,0xd4,0x90,0xbe,0x7d,0xe5,0xf2,0x7,
0xda,0x92,0x5,0x22,0x88,0xf9,0xd,0xc7,0x78,0xdd,0x34,0xd5,0xe1,0xe2,0xcf,0x3f,
0xd3,0x60,0xb4,0xc0,0x83,0xa1,0x43,0xb3,0xcc,0xb9,0x69,0xd1,0xcc,0x9f,0x58,0xf3,
0xf0,0x4,0x2e,0x19,0x1f,0x9f,0xf2,0xf7,0xf,0xf1,0x90,0x36,0xbd,0xb9,0x58,0x68,
0x26,0x6,0xb2,0x7b,0xf6,0xec,0x3c,0x1e,0xeb,0x50,0x34,0x47,0xe,0xea,0x8d,0x93,
0x74,0xc2,0xc6,0x86,0xb7,0xa2,0x9,0x36,0xe4,0xcc,0x29,0x7a,0xb3,0x32,0xbd,0x18,
0xc4,0xf0,0xcc,0xb8,0x38,0x5c,0xc0,0x2c,0x1c,0x1c,0x33,0x46,0xdf,0x38,0x57,0x94,
0xed,0xf0,0x79,0xf3,0x32,0xeb,0x11,0xa9,0xa5,0x93,0x5,0x62,0x21,0x52,0x26,0x99,
0x4b,0x50,0xa2,0x92,0x86,0xf9,0xfa,0xc2,0x7,0x27,0xe0,0xd9,0xa3,0x87,0x3c,0xd5,
0x25,0x65,0x69,0xe6,0xd9,0xa7,0x7b,0xc0,0x96,0xf3,0xaf,0x5d,0x6b,0xf5,0x45,0x52,
0x2f,0xeb,0xc1,0x83,0x7,0xe7,0x5a,0xd3,0x62,0x68,0xe8,0x99,0xbf,0xff,0x16,0x1d,
0x2f,0xab,0x93,0x5,0x62,0xa1,0x52,0x1e,0xe0,0xfa,0x42,0x2d,0xa6,0x5a,0xf9,0xf9,
0xc1,0xf,0x7e,0xa0,0xd6,0xad,0x45,0xe7,0x92,0x24,0x4d,0xe8,0xe1,0x81,0xc1,0x87,
0xf,0x3,0x4a,0x6b,0xde,0x3c,0x68,0x90,0x3d,0x35,0xd9,0x12,0xb1,0xf9,0xf7,0xdf,
0x45,0xc7,0x92,0xfe,0x9b,0x2c,0x90,0xc,0x22,0xbe,0x73,0x80,0xb3,0xdb,0xa5,0xfa,
0xf5,0xd5,0x95,0x18,0xd,0x8f,0xc9,0x93,0x61,0x84,0xe,0x76,0x15,0x2b,0x8a,0xce,
0x25,0x49,0x69,0xa2,0x3f,0x7c,0x79,0x6a,0x58,0x18,0xac,0xd0,0x1a,0x3,0x27,0x4c,
0xb0,0x5f,0xe9,0x39,0x3c,0xe2,0x54,0x40,0x80,0xe8,0x58,0xd2,0xff,0x4f,0x16,0x48,
0x6,0x93,0xb2,0x20,0x96,0xd1,0x10,0xe8,0x66,0x68,0xd9,0x92,0xe7,0x71,0x6d,0x34,
0x1a,0x32,0x4,0x7d,0x11,0x82,0xdd,0x6,0x83,0xe8,0x7c,0x92,0xf4,0x4e,0x5e,0x1d,
0x61,0x28,0x65,0x39,0x1f,0x25,0x4f,0x98,0x60,0xf7,0x97,0xd7,0xc3,0xb0,0xf6,0xfb,
0xf6,0x89,0x8e,0x25,0xbd,0x1f,0x59,0x20,0x99,0x44,0x6c,0x4c,0x80,0xb3,0xfb,0xb0,
0x1a,0x35,0x14,0x6f,0x2,0xdf,0x18,0x36,0x8c,0x17,0xb3,0x2b,0x3e,0x69,0xd2,0x24,
0xab,0x3e,0x7,0x20,0x59,0x16,0xea,0x41,0x93,0xb1,0xf6,0xf8,0x71,0xf4,0xe4,0x36,
0xbc,0xca,0xd7,0x57,0xdf,0xd8,0xb3,0x7f,0xc4,0xb8,0x3,0x7,0x44,0xe7,0x92,0x3e,
0x8e,0x7c,0x63,0xc9,0xa4,0x62,0x8b,0xfb,0x2f,0x32,0xcc,0xf9,0xe2,0xb,0x3a,0xaa,
0xec,0xa1,0xcf,0x7,0xf,0xc6,0x3a,0x9e,0x8f,0x43,0xed,0xdb,0x67,0xd4,0x85,0xb2,
0xa4,0x8c,0x81,0x7a,0xc0,0x1a,0x45,0x13,0x12,0x78,0x36,0x2d,0xc6,0xb7,0x9b,0x36,
0x29,0xad,0x4d,0xf7,0xd0,0x77,0xee,0x5c,0xbb,0xd0,0xa6,0xa1,0xe1,0x7f,0x45,0x46,
0x8a,0xce,0x27,0xa5,0x2d,0x59,0x20,0x59,0x44,0xca,0x5d,0x5e,0x39,0xe9,0xe8,0xcb,
0x1c,0xdd,0xba,0xa1,0x38,0xb5,0x44,0xd9,0xce,0x9d,0x31,0x4,0x3d,0xf0,0xb8,0x74,
0x69,0xd1,0xf9,0xa4,0x8c,0x89,0x4a,0x50,0x7b,0xde,0x76,0xe6,0xc,0x57,0xe0,0xee,
0x4a,0xf1,0x45,0x8b,0x78,0x5b,0xf6,0x26,0xc9,0xe5,0xd7,0xac,0x71,0x70,0xac,0x57,
0x3f,0x2a,0xfa,0x3f,0x6e,0x8f,0x96,0x32,0x25,0x59,0x20,0x59,0x9c,0xd1,0x18,0x18,
0xe8,0xee,0xee,0xe2,0x82,0x2f,0xd0,0x95,0xc7,0x75,0xee,0xcc,0x3e,0xec,0x8d,0x17,
0xed,0xda,0xa1,0x1d,0x1a,0x61,0x5c,0xde,0xbc,0xa2,0xf3,0x49,0x16,0x62,0x4,0x16,
0xf1,0xb6,0xe7,0xcf,0x61,0x8d,0x3b,0xd4,0x3c,0x20,0x80,0xfc,0xc8,0x4f,0xf5,0x5d,
0xb4,0x48,0x6f,0xef,0xe1,0x19,0xe9,0xb1,0x7f,0xbf,0xe8,0x78,0x92,0x18,0xb2,0x40,
0xa4,0xff,0x62,0x7e,0xc0,0x31,0xfe,0x98,0xe9,0xa9,0x43,0x23,0x4f,0x4f,0xf4,0x43,
0x22,0x22,0x3a,0x77,0x66,0x4f,0xfc,0x9,0xbb,0xfa,0xf5,0x31,0x4,0xf9,0xe1,0x97,
0x2d,0x9b,0xe8,0x9c,0x52,0x3a,0xd1,0xc3,0x17,0x95,0xe2,0xe3,0x69,0x24,0x4e,0xe0,
0x5e,0x50,0x10,0x1a,0xe0,0x1c,0xa6,0x6f,0xdf,0x9e,0x74,0x2f,0xf1,0x52,0x8e,0x92,
0xbb,0x77,0xe7,0x6b,0xe3,0xdd,0xe6,0x30,0x3d,0x7d,0x2a,0x3a,0xa6,0x64,0x19,0x64,
0x81,0x48,0xef,0x24,0x65,0x1a,0xf0,0xc9,0xe4,0x47,0x7e,0xd5,0xaa,0xa1,0x3c,0xba,
0x29,0x36,0x9e,0x9e,0x7c,0x9b,0xdb,0x71,0x72,0xd3,0xa6,0x30,0xa2,0x3e,0x8d,0x29,
0x5a,0x54,0x74,0x4e,0xe9,0x1d,0xed,0x86,0x2d,0x6a,0x3d,0x7a,0x44,0x93,0xe9,0x5b,
0xae,0xb3,0x6b,0x17,0x7f,0xc9,0xdd,0x31,0x6c,0xf3,0x66,0xfd,0xf2,0xc4,0xe2,0xcf,
0x86,0xef,0xd9,0x43,0x8a,0x77,0x9b,0xf3,0xde,0x49,0x49,0xa2,0x63,0x4a,0x96,0x4d,
0x16,0x88,0x94,0x26,0xcc,0x17,0xed,0x95,0xbe,0x28,0xa3,0xcc,0x6f,0xd4,0x88,0x9d,
0x95,0x9e,0xac,0x34,0x6a,0x84,0xfd,0x3c,0xc,0xbf,0x56,0xaf,0x2e,0x8f,0x5c,0x34,
0x76,0x19,0x8b,0x11,0x11,0x1b,0x4b,0xdd,0x31,0xc,0x6b,0x8f,0x1f,0x47,0x17,0x4e,
0xa6,0x9,0x47,0x8e,0x50,0x35,0xa5,0xa7,0x29,0xe9,0xc8,0x91,0x3c,0x55,0x23,0x2e,
0x46,0x5e,0x8a,0x8c,0x94,0x2b,0xef,0x49,0x1f,0x43,0x16,0x88,0x94,0xae,0xcc,0x4b,
0x1,0x3f,0xae,0x71,0x67,0xa0,0xee,0x59,0xc5,0x8a,0xa6,0x40,0x5d,0x25,0x1e,0x69,
0x30,0xd0,0x15,0xfe,0x1e,0x67,0xd,0x6,0xfa,0x1e,0xbb,0xc8,0xc9,0x60,0xe0,0x9,
0xa8,0xc9,0x35,0x3f,0xff,0x5c,0x4e,0xdd,0xf2,0x8e,0xf4,0xd8,0xcb,0x63,0x6e,0xdc,
0xa0,0x39,0x44,0xa8,0x13,0x1a,0xca,0xe3,0xd5,0x86,0x28,0x7b,0xec,0x18,0xff,0xa4,
0xac,0xe3,0xea,0x47,0x8e,0xd8,0xf,0x89,0x58,0x1d,0xb9,0xe6,0xfc,0x79,0x59,0x10,
0x52,0x7a,0x92,0x5,0x22,0x59,0x84,0xbf,0x37,0x6e,0xda,0x58,0x93,0x73,0xe5,0xb2,
0x3e,0x9d,0x53,0x97,0xb0,0xcd,0xd9,0x19,0xd5,0xd4,0x89,0xf8,0xab,0x52,0x25,0xea,
0x43,0x37,0xc9,0xb5,0x44,0x9,0x94,0x45,0x11,0x2c,0x2b,0x5e,0x1c,0x39,0x78,0xf,
0x54,0x27,0x27,0xe4,0xa3,0x42,0x8,0x2d,0x5e,0x3c,0xc3,0xaf,0xa0,0x77,0xa,0x9f,
0xf1,0x4a,0x93,0x9,0xb7,0xc8,0x80,0xd8,0x6b,0xd7,0x68,0x8,0xb7,0x42,0xc8,0xf9,
0xf3,0xfc,0x9c,0x7d,0xc8,0xf1,0xcf,0x3f,0x71,0x5c,0xd9,0xc3,0x5e,0x7f,0xfe,0xa9,
0x6c,0x53,0xbf,0xc0,0x57,0xe7,0xcf,0xbf,0x8c,0xe4,0xf1,0x36,0x8f,0x2f,0x5c,0xf8,
0x24,0xa0,0x69,0xe8,0xf1,0x98,0x27,0x4f,0x44,0xc7,0x97,0xb2,0x36,0x59,0x20,0x52,
0x86,0xf6,0x70,0xfc,0xee,0xe6,0x2e,0x2e,0x9f,0x7e,0xaa,0xfb,0x23,0x79,0x2d,0x1d,
0x75,0x72,0xa2,0x67,0xb8,0x87,0xfb,0xc5,0x8b,0xe3,0x33,0x34,0x54,0xd6,0xe9,0xf5,
0x88,0x46,0x53,0xd8,0xe6,0xc9,0x83,0xbf,0xd4,0xce,0xc8,0x9e,0x27,0xf,0xc,0x64,
0xe0,0xa7,0xf6,0xf6,0xd4,0x7,0x2d,0x50,0x28,0x4f,0x1e,0x84,0xa2,0x3e,0xa,0xe4,
0xc9,0x83,0x68,0x54,0x47,0xde,0x3c,0x79,0x78,0x10,0x16,0xa0,0x78,0x8e,0x1c,0xd4,
0x1b,0xcb,0xa8,0xff,0xb3,0x67,0x3c,0xa,0xf5,0xd0,0x2d,0xf5,0xb5,0x0,0xba,0x86,
0xc6,0x9c,0x9c,0x94,0xc4,0x2a,0x66,0xd3,0xb0,0x67,0xcf,0xe8,0x29,0x9a,0x61,0x40,
0x52,0x12,0x8f,0xc1,0x58,0x76,0x78,0xf8,0x90,0x73,0xe1,0x4b,0xac,0x7c,0xf0,0x80,
0xec,0x79,0x18,0x70,0xff,0x3e,0xc7,0x29,0x5f,0x53,0x83,0x87,0xf,0x75,0x1e,0xa6,
0x96,0x98,0xf2,0xe0,0x41,0xb2,0x8f,0xf5,0xa,0x4,0xde,0xbf,0xef,0xd0,0x8,0x88,
0xdd,0xf5,0xf0,0x21,0x29,0x8d,0x4b,0x5f,0xfe,0xfe,0xc5,0xb,0xd1,0xfb,0x53,0x92,
0xde,0xc7,0xff,0x1,0x7f,0xe9,0x7e,0x2f,0x86,0x76,0x75,0x70,0x0,0x0,0x0,0x25,
0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x63,0x72,0x65,0x61,0x74,0x65,0x0,
0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,0x54,0x32,0x32,0x3a,0x35,0x31,
0x3a,0x30,0x30,0x2b,0x30,0x38,0x3a,0x30,0x30,0x8a,0x74,0x84,0xe6,0x0,0x0,0x0,
0x25,0x74,0x45,0x58,0x74,0x64,0x61,0x74,0x65,0x3a,0x6d,0x6f,0x64,0x69,0x66,0x79,
0x0,0x32,0x30,0x31,0x39,0x2d,0x30,0x31,0x2d,0x31,0x34,0x54,0x32,0x32,0x3a,0x35,
0x31,0x3a,0x30,0x30,0x2b,0x30,0x38,0x3a,0x30,0x30,0xfb,0x29,0x3c,0x5a,0x0,0x0,
0x0,0x4a,0x74,0x45,0x58,0x74,0x73,0x76,0x67,0x3a,0x62,0x61,0x73,0x65,0x2d,0x75,
0x72,0x69,0x0,0x66,0x69,0x6c,0x65,0x3a,0x2f,0x2f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,
0x61,0x64,0x6d,0x69,0x6e,0x2f,0x69,0x63,0x6f,0x6e,0x2d,0x66,0x6f,0x6e,0x74,0x2f,
0x74,0x6d,0x70,0x2f,0x69,0x63,0x6f,0x6e,0x5f,0x67,0x7a,0x70,0x36,0x64,0x32,0x30,
0x6f,0x72,0x72,0x2f,0x77,0x61,0x6e,0x63,0x68,0x65,0x6e,0x67,0x2e,0x73,0x76,0x67,
0x80,0x5f,0x85,0xbe,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// D:/Works/Mine/IVM/Codes/IVM/VehicleManagement/VehicleManage/Resources/Images/printguide.png
0x0,0x0,0xd6,0xcb,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x1,0x87,0x0,0x0,0x1,0x74,0x8,0x6,0x0,0x0,0x0,0xc8,0x18,0xf5,0xc9,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8f,0xb,0xfc,0x61,0x5,0x0,0x0,0x0,
0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xe,0xc4,0x0,0x0,0xe,0xc4,0x1,0x95,0x2b,
0xe,0x1b,0x0,0x0,0xd6,0x60,0x49,0x44,0x41,0x54,0x78,0x5e,0xec,0x7d,0x7,0x80,
0x1d,0x67,0x75,0xf5,0x79,0xef,0xcd,0x6b,0xdb,0x9b,0x56,0xbd,0x59,0xb2,0x24,0x5b,
0xcd,0xbd,0x1b,0x6c,0x30,0x60,0x30,0x60,0x3a,0x3f,0x25,0x40,0x12,0x20,0x10,0x7a,
0x35,0x1d,0x42,0x27,0x40,0x48,0x1,0x2,0x24,0x21,0xb4,0x24,0xb4,0x80,0x8d,0x1d,
0xaa,0x1b,0x18,0x77,0x5b,0xb6,0x65,0xc9,0xb2,0x25,0xab,0xf7,0xb2,0xd2,0xf6,0x7d,
0x65,0x66,0xde,0x7f,0xce,0x9d,0x37,0xab,0x95,0xb4,0xb2,0x25,0xab,0xed,0xae,0xbe,
0xb3,0xfa,0x34,0xf3,0xe6,0xcd,0x9b,0xf9,0xea,0x3d,0xf7,0xde,0xaf,0x25,0x2a,0x4,
0x1c,0x1c,0x4e,0x34,0x54,0xb,0x13,0xd1,0x21,0xe4,0xff,0x61,0xf4,0x11,0x49,0x6,
0x3,0xbf,0xd0,0x67,0x7d,0xe7,0xeb,0x64,0x3f,0xa4,0x2a,0x7,0x5e,0x4c,0xc0,0xaf,
0x9e,0xed,0x45,0x92,0x57,0xf7,0xbf,0x53,0xcf,0xd4,0xdf,0x50,0xe8,0x2e,0xdd,0xbb,
0x3f,0x82,0xfd,0xee,0x13,0x52,0xf0,0xaa,0x67,0x42,0xf4,0x9b,0x2,0xef,0x4b,0x24,
0xa2,0x77,0xa5,0xaa,0x4d,0x2c,0xb9,0x5f,0x53,0x53,0x94,0x75,0x25,0xe4,0x7d,0x4a,
0xa7,0x82,0xfd,0x42,0x17,0xf,0x7c,0xb5,0x83,0xc3,0x71,0x85,0x23,0x7,0x87,0x11,
0x81,0xb8,0x12,0x4a,0x26,0x56,0xc2,0xe8,0x53,0x28,0xb1,0x9d,0xd8,0x5b,0x3d,0x63,
0x79,0x99,0x4c,0x54,0x29,0x63,0x48,0xd5,0x4d,0x4,0xc3,0x48,0xd3,0xe4,0x81,0xd7,
0x44,0x3a,0xfb,0x83,0xb2,0x79,0xf0,0xd9,0xd5,0x57,0x1f,0x14,0x83,0x64,0x75,0x30,
0xe8,0x61,0xc4,0x3e,0x8f,0xe1,0x43,0x95,0x8c,0x20,0xc9,0xf4,0xc4,0x51,0xaf,0xde,
0x91,0x20,0x43,0xa4,0xe2,0x8b,0xfa,0x69,0xf5,0xf7,0x71,0x7c,0x1c,0x1c,0x4e,0x14,
0x1c,0x39,0x38,0x8c,0x8,0xf8,0x14,0x96,0x49,0xd6,0x44,0x93,0x8d,0x14,0xa6,0xa1,
0x9,0x54,0x5e,0xe3,0x5,0x55,0xd1,0x44,0x2a,0x12,0xa0,0xd2,0xb2,0x43,0x93,0x9c,
0xb4,0x20,0x7c,0x1f,0xa9,0x64,0xca,0x24,0xe9,0x40,0x22,0x65,0xe2,0xd6,0xf7,0xcb,
0x28,0x95,0x4a,0x51,0x20,0x13,0x84,0x61,0x88,0x72,0xb9,0xcc,0x47,0xf2,0x99,0x41,
0x80,0xfe,0xc0,0xb7,0x67,0x57,0x2a,0x14,0xd4,0xd5,0xaa,0xbf,0x4f,0xb,0x18,0x22,
0x95,0xe3,0xd3,0x24,0xdf,0x91,0x4c,0x26,0x19,0x12,0xc8,0xf2,0xaa,0xe7,0x79,0x48,
0x29,0xa4,0x52,0x66,0x1d,0x34,0xf2,0xfb,0x74,0x26,0x8d,0x4c,0x3a,0xc3,0x6b,0xb4,
0x37,0x78,0x4d,0x69,0x31,0x6e,0xe2,0xbb,0xa2,0x23,0x43,0x22,0x7a,0xa7,0xd2,0x68,
0x4,0x17,0xc8,0x66,0x89,0xd2,0x64,0x56,0x6,0x6f,0xac,0xf0,0xa8,0x6b,0x4c,0x95,
0x83,0xc3,0x9,0x85,0x23,0x7,0x87,0x11,0x81,0x12,0x85,0x7a,0x32,0xe5,0x21,0xa0,
0x8a,0x5d,0xe,0x3,0x93,0xac,0x5e,0x20,0x42,0x48,0xa0,0x50,0xf6,0xf9,0x99,0xd7,
0x29,0xd0,0xb,0x14,0xb6,0xbd,0x14,0xf0,0x3d,0x3d,0x3d,0xd8,0xdd,0xd1,0x61,0x82,
0x7f,0xa0,0x50,0xc0,0x36,0x92,0x41,0x40,0xe1,0x2f,0x48,0x90,0x4b,0x70,0xfb,0xd5,
0x9a,0x2d,0xa1,0xab,0x6b,0xaa,0xea,0x41,0x55,0xec,0x8a,0x2c,0x74,0x4d,0x90,0x56,
0x3f,0x84,0x13,0xc,0xfa,0x69,0xec,0xa9,0xaa,0x90,0x60,0x24,0xd1,0x4d,0xe8,0x7,
0x25,0x23,0x13,0x3d,0x4b,0xc4,0xa3,0x67,0xd4,0xd8,0x8b,0xf8,0x6c,0xbe,0x5f,0xcf,
0xad,0xad,0xa9,0x45,0x5d,0x3a,0x85,0xda,0xda,0x1a,0xd4,0xe6,0x6b,0xd1,0x54,0x5f,
0x8f,0xba,0x9a,0x3a,0x64,0xc8,0x10,0xf9,0xb4,0x87,0xc,0x9,0xa4,0xc2,0xdf,0x78,
0x7c,0x6b,0x32,0x9d,0x44,0x39,0xc9,0x58,0x91,0x2c,0x3c,0xda,0x25,0x29,0xbd,0x83,
0x4f,0x1b,0xce,0xa5,0xe5,0xe0,0x70,0x3c,0xe1,0xc8,0xc1,0x61,0x44,0x40,0x82,0x96,
0x3a,0x3d,0x76,0xf7,0xf5,0x62,0x6b,0xe7,0x2e,0xec,0xe9,0xed,0x41,0xc7,0x40,0x9,
0x5,0x4a,0xe8,0x12,0xc9,0xa2,0x24,0x62,0x20,0x81,0x94,0x29,0x80,0x93,0x89,0xb4,
0x89,0x4e,0x55,0x5c,0x1d,0x13,0x14,0xd0,0x89,0x30,0xab,0xc7,0x98,0x0,0x17,0x54,
0xad,0x2b,0x21,0x9,0x47,0xdf,0x49,0x1b,0xe7,0x67,0x7d,0x15,0x54,0x22,0xb,0xc3,
0x24,0x7c,0x15,0xf6,0x8c,0xfd,0x5a,0x41,0xdc,0x1f,0x20,0xe8,0xf9,0x82,0xac,0x98,
0x44,0xa5,0x1c,0xfd,0x54,0xff,0xe9,0x33,0x4f,0xb,0x14,0xec,0xb2,0x2a,0xf4,0x24,
0x59,0x24,0x7a,0x1f,0xa9,0xc9,0x2c,0x15,0x8f,0xdf,0xd9,0xb3,0x79,0x7f,0x32,0x11,
0x80,0x5c,0x80,0x34,0xad,0x9c,0x1c,0x89,0x50,0xa9,0xa8,0xc9,0x67,0xd0,0x5a,0x9f,
0x43,0x53,0x6d,0x3d,0x26,0x36,0xb7,0xa2,0x26,0x99,0x8e,0x48,0xa3,0xfa,0x4e,0x7,
0x87,0x13,0x5,0x47,0xe,0xe,0x87,0xd,0xca,0xbf,0x48,0x72,0x4a,0xea,0xc9,0x8f,
0xae,0xbe,0x81,0xea,0x25,0x21,0xf0,0x29,0x14,0x25,0x94,0x29,0x30,0x13,0x45,0x6a,
0xc9,0x3c,0xfa,0x95,0x0,0x15,0x6a,0xcc,0xea,0x1a,0x28,0x94,0x8a,0xe8,0x2f,0x96,
0xd0,0x43,0x8b,0x60,0xf,0x9,0xa0,0xa3,0xab,0x1b,0x5b,0xa9,0xf9,0xf7,0xf5,0xf7,
0x9b,0xf6,0x2d,0xb7,0xcd,0xc9,0x6,0xa5,0x5b,0x21,0x97,0xcb,0xa1,0xb1,0xb1,0x11,
0x53,0xb2,0x9,0xb4,0xd6,0x35,0xa0,0x3e,0x9d,0x41,0x7d,0x26,0x8b,0xda,0x6c,0x8e,
0x16,0x47,0xd4,0x63,0x52,0x9,0x42,0xe6,0x2f,0x49,0x8e,0xf9,0x9c,0x60,0x5e,0x89,
0xf4,0xf4,0x9f,0xac,0x16,0x2b,0x96,0x84,0x8,0x4a,0x67,0xb2,0x96,0x48,0x32,0x64,
0x3a,0xdd,0x63,0xfc,0xe5,0xe0,0x70,0x88,0x70,0xe4,0xe0,0x70,0xd8,0xf0,0x4d,0x8,
0x51,0x13,0x57,0xa0,0x10,0xb2,0x63,0x48,0x1,0x14,0x44,0xfe,0x7f,0x69,0xdd,0x7e,
0x55,0x83,0xee,0xa2,0xe6,0xac,0x11,0x3e,0xdb,0x76,0xed,0xc2,0xe6,0x6d,0xdb,0xb0,
0x6d,0xe7,0x76,0xf4,0xe6,0x78,0x2d,0xac,0x30,0x24,0xe0,0x65,0x6a,0x28,0xd4,0xa4,
0x91,0x47,0xd6,0x83,0x70,0xb2,0x6a,0xcd,0x6a,0x8a,0xa,0xe9,0x74,0x1a,0x7e,0xd0,
0x6f,0xd7,0xb2,0xa9,0x34,0x42,0xdf,0x87,0x5f,0x2a,0xa3,0x3d,0x9f,0xc6,0xf8,0xd6,
0x71,0x98,0x3d,0x7d,0x6,0xf2,0xe9,0xac,0x8d,0x91,0x6a,0x60,0x3e,0x2b,0xb7,0xcc,
0xd,0x55,0x25,0xed,0x90,0x24,0x52,0x49,0x19,0x4d,0xf0,0x52,0x14,0xf4,0x7d,0x64,
0x6f,0x39,0x38,0x1c,0x1a,0x1c,0x39,0x38,0x1c,0x32,0xf6,0x56,0x15,0x1d,0x19,0xec,
0x40,0x62,0xe0,0xb1,0xcc,0x50,0xa0,0x16,0x3b,0x40,0x6d,0x76,0x47,0xe7,0x1e,0x74,
0x74,0x77,0xa1,0xb3,0xa7,0x1b,0x1d,0x3e,0xaf,0x17,0xa,0x28,0x5,0x7e,0xe4,0x9e,
0xe1,0xbf,0xa2,0x54,0x58,0xde,0xaf,0x4e,0x59,0x23,0x15,0xfd,0xe9,0x39,0xba,0x6c,
0xc7,0x93,0x53,0x88,0xc5,0xf9,0x1b,0xe7,0x81,0x59,0x2,0xb2,0xbe,0x98,0x6f,0xa1,
0x91,0x40,0xc9,0x84,0x7c,0xa2,0x14,0xa0,0x2e,0x9b,0x47,0xd,0x2d,0x8a,0xd6,0x7c,
0x12,0x2d,0x8d,0x4d,0x68,0x63,0x90,0x6b,0x4a,0x2e,0xa9,0x3c,0xef,0xf5,0xac,0x70,
0x48,0x14,0xb4,0x32,0xe2,0xfc,0x94,0x95,0xe1,0xe0,0x70,0xa8,0x70,0xe4,0xe0,0x70,
0xc8,0x88,0xab,0x8a,0x4f,0xad,0x9f,0xff,0xcc,0x45,0xd4,0xdb,0x5f,0x40,0x5f,0xb1,
0x88,0x2d,0x9d,0x5d,0x58,0xd9,0xb5,0x1b,0x5d,0x3d,0x3d,0x48,0xa6,0x3d,0x73,0x23,
0x25,0xbd,0x14,0x7f,0x53,0x1d,0x77,0x33,0xa4,0x96,0x25,0xc2,0xa4,0x38,0x62,0x10,
0x22,0x17,0x75,0x44,0x3b,0xc5,0x76,0x2f,0xd2,0xcc,0xdc,0x68,0x54,0xd6,0x5e,0x94,
0xbc,0x78,0xde,0x46,0x44,0xc8,0x22,0xd5,0x14,0xed,0x32,0x23,0x5a,0x5d,0x25,0x31,
0xb7,0x36,0x35,0x63,0xce,0xb8,0xf1,0x18,0x5f,0x57,0x87,0x86,0x5c,0x16,0x59,0xde,
0x91,0xe6,0x73,0x44,0x10,0x49,0xcf,0x65,0xb0,0xc3,0xa1,0xc3,0x91,0x83,0xc3,0x21,
0x23,0xae,0x2a,0x1b,0x68,0x11,0xac,0xdc,0xba,0x5,0xdb,0xf7,0x74,0xa2,0xd7,0xf7,
0x51,0xa0,0xa6,0x1a,0xda,0x50,0xd2,0x94,0x8d,0xba,0x9,0x69,0x25,0xd8,0x10,0x53,
0x22,0x4c,0x56,0x5d,0x45,0xd5,0x5a,0x66,0xe2,0xa9,0x4a,0x18,0x21,0x2f,0x9a,0x27,
0x24,0x41,0xad,0x98,0x84,0x21,0x61,0xe7,0x10,0x41,0xf3,0x3b,0x62,0xbe,0xac,0x66,
0x21,0x9,0xc0,0x37,0x97,0x9d,0x48,0xd9,0xd7,0x97,0xa9,0x24,0x32,0xe5,0x2c,0x6f,
0xe6,0x7d,0xb4,0x2e,0x34,0xe2,0xcb,0x4b,0xa5,0x50,0xe0,0x5f,0x86,0x46,0x42,0x6d,
0x85,0x56,0x45,0x3a,0x83,0x69,0xad,0x6d,0x98,0x3b,0x6d,0x3a,0x1a,0x52,0x2e,0x7f,
0x1d,0xe,0x1d,0x8e,0x1c,0x4e,0x52,0x68,0xac,0xbf,0xa4,0x8f,0xc4,0x45,0xe4,0x75,
0xa0,0x4,0xf2,0xe5,0xf3,0x56,0xe7,0x72,0xca,0xc6,0xde,0xfb,0xbc,0x14,0xf0,0x73,
0x7f,0xb9,0x8c,0x6d,0xdd,0x5d,0xd8,0x46,0x52,0xd8,0x4e,0xb,0x61,0x77,0xb1,0x8c,
0x30,0xe5,0x5c,0x14,0xa3,0x5,0x6a,0xe2,0x89,0x30,0x40,0x7b,0x5d,0x2d,0xa6,0xb5,
0xb5,0x61,0x52,0x6d,0xd,0xda,0xf2,0xb5,0xc8,0x79,0x1e,0x82,0x54,0x99,0xa4,0xc3,
0x12,0x27,0xb9,0xeb,0x4f,0x44,0x53,0x4e,0x55,0x22,0xf7,0x95,0xfa,0x82,0xec,0x58,
0xad,0x23,0x55,0xf7,0x94,0xc3,0xc9,0x1,0x47,0xe,0x27,0x2b,0x82,0x80,0xa5,0xcf,
0xe3,0x90,0x46,0xef,0x53,0x7b,0xd7,0x70,0x52,0x3f,0x99,0xc0,0x0,0xab,0xc5,0xc6,
0x6d,0x5b,0x71,0xef,0xda,0xb5,0xe8,0x2d,0xc,0x20,0x57,0x5b,0x87,0x7e,0x6a,0xa6,
0x15,0x5a,0x6,0x29,0x6a,0xfe,0x29,0x89,0x14,0x9,0x1d,0x27,0x30,0x46,0x34,0x54,
0x3e,0x2a,0x27,0xb9,0xed,0x42,0xf5,0x5f,0xd0,0xd2,0x4b,0x87,0x65,0xa0,0x54,0xc0,
0xa4,0xf6,0xf1,0xb8,0x68,0xda,0x6c,0x34,0xd4,0xd6,0xa2,0x96,0x56,0x45,0xd2,0x6,
0x4,0xd0,0xa,0xac,0xe,0x6b,0xd2,0xd0,0xdd,0x8,0xba,0x4e,0x65,0xc0,0x95,0xf5,
0x49,0x5,0x47,0xe,0x27,0x29,0xc2,0x72,0x91,0xd6,0x41,0xd2,0x2c,0x80,0x82,0x88,
0x22,0x95,0xc2,0xae,0xee,0x5e,0x6c,0xde,0xb1,0x3,0xdb,0xbb,0x3b,0xd1,0x31,0xd0,
0x8f,0x22,0xad,0x86,0x62,0x3a,0x27,0x1f,0x7,0x7f,0x41,0xed,0x52,0x64,0x60,0x3f,
0x8e,0x84,0x8e,0xc3,0xe8,0x81,0xc4,0xbb,0xa6,0x8,0xca,0x22,0x40,0xe8,0xdb,0xbc,
0xc,0x95,0x60,0xba,0x1c,0xa0,0x3e,0x97,0x46,0x6b,0x3e,0x87,0x69,0xe3,0x5b,0x31,
0xb1,0xb5,0x15,0xb5,0x5e,0x96,0xf7,0x45,0xb3,0xb4,0x2b,0x15,0x9f,0x42,0x22,0x44,
0x2a,0x99,0x75,0x65,0x7e,0x92,0xc1,0x91,0xc3,0x49,0x8a,0x3e,0x3f,0xa0,0xf0,0xaf,
0x60,0xcf,0x40,0x11,0x3b,0x7a,0x7b,0xf1,0xf8,0x86,0xd,0xe8,0xe6,0x31,0x91,0xf6,
0x50,0xa6,0xd8,0x8,0x78,0x94,0x6b,0x29,0x15,0x46,0xfd,0x3,0x29,0xa,0x8,0x9,
0x9,0xb9,0x20,0x2,0x5e,0xd7,0x77,0xe,0xa3,0x8,0x6c,0xe5,0x91,0xab,0x28,0xfa,
0x68,0xa5,0x47,0xd2,0xef,0xcb,0xf8,0x46,0x2,0x69,0xcd,0xf6,0xa6,0x55,0x41,0x75,
0x1,0x33,0xdb,0x27,0x62,0x72,0x7b,0x3b,0x9a,0x72,0x59,0x34,0xe7,0xb3,0xf6,0x5d,
0x2e,0x99,0x76,0xe4,0x70,0x92,0xc1,0x91,0xc3,0x49,0x8a,0x25,0xeb,0x36,0x92,0x10,
0x36,0xa1,0x33,0x8,0x31,0x90,0xa2,0x48,0xf0,0xd2,0x14,0xc,0x3e,0x2,0x9f,0x24,
0xc0,0x73,0x8d,0x8d,0x97,0xc1,0xa0,0xce,0x50,0xcd,0x63,0x90,0xee,0xa9,0x11,0xf3,
0x48,0x68,0x74,0x8c,0xc4,0xc9,0xd0,0xf1,0x46,0xe,0x23,0x1d,0x9a,0x97,0x82,0x84,
0xec,0x87,0x24,0x9,0x5f,0xd,0x3f,0x22,0x8a,0xb2,0xa7,0x6b,0x2a,0x56,0x75,0x80,
0x93,0x3e,0x78,0xad,0x90,0xf4,0x91,0xa1,0x58,0xa8,0xa7,0x32,0x30,0xb5,0xa1,0x1,
0xb,0x67,0xce,0xc2,0x84,0xc6,0x7a,0x47,0xe,0x27,0x19,0x1c,0x39,0x8c,0x56,0xa8,
0xd4,0xd8,0x56,0x75,0x50,0x17,0xb2,0x8e,0xd2,0xfa,0xcc,0x6d,0xc0,0x10,0xb0,0xb1,
0x4b,0xba,0xeb,0x1b,0xb6,0x71,0xf4,0x55,0x2,0xac,0xed,0xd8,0x8d,0xd,0xbb,0xf7,
0x58,0xa7,0x72,0x1f,0xaf,0xc7,0xfe,0x68,0xd7,0xe8,0x1d,0x86,0x43,0x5c,0x37,0x34,
0x39,0x71,0x52,0x4d,0x6,0x13,0x5a,0x5a,0x30,0xad,0xb5,0x15,0xe3,0x6a,0xf3,0xc8,
0xf3,0xbb,0x4a,0x22,0xc5,0x1a,0x97,0xb2,0x99,0xd7,0x69,0xb1,0x8a,0x2a,0x9a,0xea,
0xdf,0x49,0x3a,0x89,0x71,0xac,0xc1,0x91,0xc3,0x28,0x45,0xb5,0x19,0x5a,0xb0,0x49,
0x7,0x6,0x36,0x58,0x6b,0x97,0x9,0x73,0x19,0x69,0x54,0xbc,0x96,0xa8,0x58,0xb5,
0x79,0xb,0xd6,0x6e,0xda,0x84,0x5e,0x9e,0x27,0xb2,0x35,0x28,0x4,0x3e,0x92,0x29,
0xcd,0x41,0x88,0x7e,0xe7,0xc8,0xc1,0xe1,0x60,0x10,0x31,0xd8,0xea,0xb3,0x5a,0xfe,
0xc4,0x2f,0xd3,0xa2,0x8,0x31,0xae,0xae,0x16,0xb,0xe6,0xcc,0xc6,0x94,0x5c,0x3d,
0x6a,0x35,0x84,0xb9,0xda,0x41,0x11,0x48,0x4d,0x61,0x9d,0xca,0x24,0xdc,0x48,0xb6,
0xb1,0x0,0x47,0xe,0xa3,0x14,0xea,0x5c,0x8c,0xc9,0x21,0xf0,0xa3,0xc9,0x51,0xd2,
0xe4,0x8a,0x21,0x1b,0xb1,0x97,0xc2,0xc6,0x8e,0xe,0x3c,0xbe,0x79,0x13,0x76,0xf6,
0xf5,0xa0,0x53,0x2e,0x4,0x6a,0x73,0x1a,0xa0,0x68,0x3c,0x42,0x55,0x2f,0xad,0x7,
0x38,0x38,0x1c,0x22,0xa,0x24,0x0,0x59,0x8,0x49,0xd6,0xaf,0x34,0xeb,0x50,0x22,
0x8,0xd1,0x92,0x4d,0x61,0x4a,0x4b,0x33,0x66,0x4f,0x9e,0x8a,0xf1,0xf9,0x5a,0x78,
0xac,0x5c,0xb6,0xde,0x53,0x26,0x52,0x3c,0xdc,0xe2,0x81,0xa3,0x1b,0x8e,0x1c,0x46,
0x29,0x54,0x68,0xb2,0x1e,0x14,0xa,0x1a,0x9a,0x48,0xed,0x7f,0x77,0x6f,0x11,0x3b,
0xbb,0x7a,0xb1,0x6a,0xfd,0x7a,0xec,0x29,0x16,0xe0,0xb3,0x71,0x6a,0x58,0x6a,0x45,
0x4b,0x81,0x12,0xe6,0x62,0xaa,0x1a,0x9,0x69,0xad,0x83,0xe4,0xe0,0x70,0x88,0xf0,
0xab,0xb3,0x18,0xe3,0xbe,0xa,0x53,0x4a,0x12,0x3e,0xd4,0x3b,0x95,0x2e,0x94,0x31,
0x77,0xc2,0x64,0x9c,0xd2,0x36,0xe,0xed,0x4d,0x4d,0xa8,0x49,0x47,0xae,0xa8,0x78,
0x45,0x5c,0x87,0xd1,0x9,0x47,0xe,0xa3,0x14,0x2a,0x36,0xcd,0x94,0x25,0x2d,0x60,
0x77,0xa9,0x17,0x2b,0x56,0xaf,0xc2,0xc6,0x9d,0xfd,0xb4,0x1c,0x34,0xb1,0x49,0xa6,
0xbe,0x87,0x12,0x1b,0x28,0xef,0xa2,0x99,0x5f,0x32,0x52,0xd0,0x4c,0x64,0x2d,0xc9,
0xa0,0xd9,0xb7,0xc9,0x20,0x17,0x3d,0xc8,0xc1,0xe1,0x10,0x10,0x6f,0x75,0x5a,0xa5,
0x8,0x6,0xa,0x7e,0x59,0xa,0x54,0x4c,0x12,0xac,0x6f,0x21,0xeb,0x56,0x2a,0x9d,
0x42,0xbe,0x54,0xc0,0x55,0xa7,0xce,0x45,0x7b,0x7b,0xbb,0x11,0x83,0x23,0x87,0xd1,
0xb,0x47,0xe,0x23,0xd,0x2c,0x8e,0xb8,0x40,0xe2,0x5d,0xc1,0x74,0xcd,0x96,0x50,
0xa8,0xce,0x6a,0x2e,0x31,0x14,0x28,0xe5,0xb7,0x74,0xec,0xc6,0xe3,0x3b,0x77,0x62,
0x53,0x57,0x17,0xba,0x69,0xee,0x7b,0xa9,0xb4,0xd,0x4b,0x74,0x70,0x38,0x51,0x50,
0x7d,0xf5,0xfd,0x12,0xda,0x72,0x39,0xcc,0x6c,0x6a,0xc6,0x69,0x93,0x27,0xa3,0x29,
0x1b,0x29,0x22,0x9a,0x5b,0xa1,0xe5,0x9d,0x6,0xf9,0xc2,0xf1,0xc6,0x88,0x86,0x23,
0x87,0x11,0x6,0x6d,0x97,0x29,0xc8,0x11,0x44,0xbd,0x2b,0x6a,0x3f,0x81,0x16,0xbd,
0x4e,0xd0,0x52,0x48,0xa2,0x87,0xe7,0x1d,0x3,0x3,0x58,0xb2,0x62,0x39,0xf6,0xf4,
0xf4,0xa2,0x92,0xc9,0xd0,0x7a,0x48,0xa1,0x6c,0x44,0x52,0x19,0x5c,0xd3,0xc8,0xc1,
0xe1,0x44,0xc0,0xb6,0x77,0x65,0x3d,0xd5,0x9c,0x89,0x5c,0x18,0xd,0x89,0x9d,0x3f,
0x77,0x2e,0x66,0x8c,0x6b,0x42,0x3e,0x93,0x45,0x9e,0xf5,0x34,0x1a,0x4a,0xcb,0xff,
0x52,0xae,0x4f,0x62,0x24,0xc3,0x91,0xc3,0x8,0x43,0xc9,0x68,0x80,0x1a,0x98,0x7c,
0xb6,0x6c,0x48,0x32,0xcb,0x4b,0x25,0x1f,0x61,0xda,0xc3,0x9a,0x9d,0xbb,0xb0,0x7c,
0xfd,0x6,0x74,0x97,0xca,0xe8,0x37,0x87,0x92,0xa0,0xb1,0xe9,0xd1,0x0,0x56,0xcd,
0x44,0xd8,0xab,0x96,0x39,0x38,0x1c,0x7f,0x44,0xd2,0x44,0x4a,0x8d,0x4e,0x58,0x97,
0x75,0x81,0x96,0x6e,0x7d,0xa5,0x88,0x49,0x2d,0xad,0x58,0x34,0xeb,0x54,0xb4,0x64,
0xf3,0xd0,0xf4,0x8a,0x64,0x22,0x1a,0xdd,0xa4,0x3a,0xee,0x3a,0xaf,0x47,0x1e,0x1c,
0x39,0x8c,0x30,0xd8,0x46,0xf8,0x94,0xef,0xda,0x2c,0x47,0x7b,0x29,0x97,0x2b,0x1,
0x56,0xef,0xee,0xc1,0xaa,0x8d,0x1b,0x69,0x31,0xf4,0x21,0xd4,0xe,0x60,0xbc,0xc1,
0xa7,0xd6,0xa5,0x8e,0x41,0x35,0x29,0xdb,0xcc,0x9e,0x41,0x9e,0x27,0xb9,0xa2,0x1c,
0x1c,0x4e,0x14,0xa2,0x41,0xf,0x91,0x6b,0x74,0xb0,0x2e,0xf2,0x90,0xd6,0x28,0xa6,
0x72,0x19,0x35,0x89,0x14,0x4e,0x9d,0x34,0x19,0xd3,0x26,0x4e,0xc4,0xd4,0x7c,0xda,
0xbe,0xb6,0xa1,0xb2,0xae,0xde,0x8e,0x38,0x38,0x72,0x18,0x69,0x8,0xb4,0x40,0x1a,
0x30,0x50,0xf1,0xb1,0xbd,0x7b,0x37,0xee,0x7d,0x60,0x9,0x36,0x65,0x9a,0x48,0x6,
0xb4,0x2a,0x82,0x12,0x72,0x5e,0xa,0x9e,0x26,0xb8,0x41,0x4b,0x35,0x47,0x56,0x46,
0xd2,0x8e,0xf1,0xf2,0xd7,0x4e,0x3,0x73,0x38,0x71,0x50,0x2d,0xc,0x53,0xd1,0x38,
0xe9,0xa8,0x76,0x5a,0xd,0x65,0xf0,0x6c,0xd1,0xbf,0x2c,0x3f,0x7b,0x3e,0xef,0x29,
0xfb,0x38,0xaf,0x39,0x8f,0x5,0xb,0x16,0x20,0x93,0xc9,0x38,0xcb,0x61,0x4,0xc2,
0x91,0xc3,0x9,0x82,0x65,0x7b,0x35,0xeb,0x2b,0xa1,0x6f,0xde,0x20,0xed,0xda,0xd5,
0x97,0xcc,0x60,0x4b,0x57,0x17,0x1e,0x5c,0xb7,0x16,0x5b,0xfa,0xfb,0x50,0x64,0xa3,
0xa1,0x11,0x6e,0xf7,0x39,0x38,0x8c,0x25,0xd0,0x36,0x46,0xbd,0x97,0xc6,0xb4,0xc6,
0x46,0x9c,0x39,0x63,0x26,0x9a,0xd2,0x69,0x9b,0x2b,0x61,0x56,0x84,0xf1,0x8a,0x54,
0x1e,0xb9,0x56,0xed,0xd4,0xe1,0x38,0xc3,0x91,0xc3,0x89,0x82,0xd4,0x7c,0x6,0xcd,
0x2e,0x55,0x3f,0x43,0x91,0x1f,0xfa,0xb,0x5,0xdc,0xb3,0x8a,0xa4,0xb0,0x73,0x7,
0xca,0x5e,0x6,0x5,0xde,0x92,0xc8,0x64,0xe1,0xd9,0xb2,0x4,0xe,0xe,0x63,0xb,
0xe5,0x52,0x19,0xb9,0x54,0xa,0xa9,0x72,0xd9,0x96,0xc,0x9f,0x37,0xeb,0x14,0xcc,
0x6d,0x6f,0x45,0x3e,0x4d,0x4b,0x82,0x6d,0x42,0x1b,0x47,0xa9,0xcf,0x22,0x22,0xb,
0xc7,0xe,0xc7,0x1b,0x8e,0x1c,0x4e,0x10,0x42,0xb9,0x8f,0x98,0xf3,0xa5,0x64,0x2,
0x9d,0x34,0xb7,0x97,0x3e,0xbe,0x12,0x9b,0x77,0xed,0x44,0x5f,0x22,0x1d,0x99,0xe3,
0x6c,0xc,0x5a,0x29,0x49,0xd0,0x26,0xfe,0xe,0xe,0x63,0xd,0xc9,0x8a,0x66,0x52,
0x87,0x55,0xb9,0xcf,0x23,0x45,0xd1,0xb8,0x54,0x80,0xd9,0xd3,0x67,0x60,0xe6,0xa4,
0x49,0xb4,0x98,0x13,0xc8,0xb1,0xea,0xab,0xfe,0x6b,0x4,0x94,0xc3,0xf1,0x85,0x23,
0x87,0x13,0x4,0x6d,0xc8,0xbf,0x73,0x60,0x0,0x6b,0xb7,0x6f,0xc7,0x63,0x9b,0xb7,
0xa0,0x9b,0x4,0x11,0x78,0x29,0x24,0x35,0x14,0x55,0xd,0x82,0xf7,0x44,0x46,0xb5,
0x9a,0x8d,0x6b,0x18,0xe,0x63,0xf,0x83,0x82,0x87,0xec,0xa0,0x73,0x9b,0xbd,0xef,
0x97,0x90,0xe,0x42,0x4c,0x6c,0x68,0xc0,0xe2,0x19,0x33,0x31,0xa9,0xa9,0x41,0xbd,
0x6b,0x48,0x6b,0xed,0xe,0x87,0xe3,0xa,0x47,0xe,0x47,0x1b,0x71,0x6e,0x5a,0x5d,
0xe6,0x87,0xe8,0xdf,0x3e,0x8,0x98,0xe5,0x5b,0xbb,0x3a,0xf1,0xdb,0xfb,0xef,0x83,
0x4f,0x13,0xba,0x40,0xe1,0x1f,0x66,0xb2,0x28,0xf1,0x46,0xad,0x76,0x69,0x5a,0x54,
0xd4,0x5c,0xec,0xfe,0xa,0xa2,0x51,0x1d,0xe,0xe,0x63,0x9,0x15,0x2d,0xff,0x5e,
0x55,0x83,0x22,0xc7,0x69,0x2,0xc5,0x54,0x1a,0x1e,0xdb,0x40,0xa6,0x50,0x44,0x6d,
0xa9,0x84,0x69,0x2d,0xad,0xb8,0x60,0xc1,0x3c,0xd4,0x67,0xbd,0xa8,0x49,0xd,0x81,
0x2c,0x8e,0xbd,0x6d,0xab,0x3a,0x27,0xc8,0xe1,0xa8,0xc1,0x91,0xc3,0xd1,0x86,0x6a,
0x79,0x54,0xdf,0x59,0x73,0xf5,0x41,0xee,0xa3,0xd0,0x5c,0x48,0xb2,0x0,0xb6,0xf4,
0xf4,0xe1,0xbe,0xb5,0x8f,0x63,0x6b,0x6f,0x1f,0x82,0x64,0x86,0xdf,0x3b,0x38,0x38,
0x1c,0xc,0x12,0x4f,0xb5,0xc9,0x10,0x33,0xdb,0x5a,0xb1,0x68,0xfa,0xc,0x34,0xa5,
0x3d,0xa4,0x2a,0xd1,0x42,0x93,0x5e,0xca,0x33,0x35,0x2a,0x22,0x86,0x88,0x1a,0x1c,
0x41,0x1c,0x3d,0x38,0x72,0x38,0xca,0x88,0x33,0x53,0xdd,0x4,0x96,0xb3,0xac,0xad,
0xa5,0xa0,0x82,0x9e,0x30,0xc0,0xa3,0xdb,0xb6,0xe2,0x91,0xb5,0xeb,0x10,0x26,0x52,
0x28,0xfb,0x21,0x82,0xac,0xb3,0x8,0x1c,0x1c,0x9e,0xc,0xc9,0xa4,0x8f,0x44,0xa9,
0x80,0xb6,0x4c,0xe,0xe7,0xce,0x3b,0xd,0xe3,0x1a,0xea,0x91,0x4d,0xa6,0xa0,0xcd,
0x4c,0xd5,0x4f,0xa1,0x36,0x16,0x2f,0x35,0xe3,0x1c,0xb0,0x47,0xf,0x8e,0x1c,0x8e,
0x32,0xa,0x7e,0x11,0xda,0x7e,0x3f,0x9d,0xf4,0x50,0x24,0x29,0xf8,0x1e,0xb0,0x61,
0x47,0x37,0xee,0x5f,0xb9,0xa,0x1d,0x89,0x32,0xca,0x29,0x2d,0x97,0x9d,0x80,0x17,
0x26,0x78,0xee,0xb2,0xde,0xc1,0xe1,0xc9,0x10,0x88,0x1c,0xe0,0xdb,0x32,0xf3,0x39,
0x1a,0xe3,0x13,0x1a,0x9b,0x71,0xe6,0xdc,0xd3,0xd0,0x94,0x49,0xdb,0x9c,0x9f,0xac,
0x56,0x8c,0xd1,0x0,0xe,0x2d,0xfe,0xe7,0xe8,0xe1,0xa8,0xc1,0x91,0xc3,0x51,0x46,
0x29,0x2c,0x21,0x49,0xc1,0x5f,0x49,0xa6,0xb1,0xa5,0xaf,0x17,0xf,0x6d,0xda,0x80,
0xd,0x3b,0xf7,0x20,0x60,0xb5,0xd5,0xb0,0x55,0x69,0x38,0x61,0x75,0xf4,0x51,0x2a,
0x5e,0x3f,0xdb,0xc1,0xc1,0xe1,0x9,0x40,0x56,0x60,0x9b,0xd1,0xca,0x1,0xda,0xce,
0x34,0x59,0xe,0x51,0x97,0xcb,0xe0,0xb4,0x19,0xd3,0x70,0x6a,0xdb,0x78,0xb4,0x7a,
0x49,0xa3,0x4,0xcd,0xcc,0x4e,0x38,0x72,0x38,0x6a,0x70,0xe4,0x70,0x4,0xb0,0x45,
0x2,0xf8,0x4f,0x22,0x3e,0x5a,0x30,0x40,0x1d,0x6b,0x3e,0xca,0xac,0xcb,0x5b,0x3b,
0xbb,0x71,0xeb,0xb2,0xa5,0xe8,0xcc,0x24,0x51,0x4a,0x66,0x90,0xa,0x92,0xc8,0xb1,
0x62,0xab,0x13,0xad,0x40,0x6b,0xc2,0x67,0x1d,0xce,0xfa,0x8e,0x1c,0x1c,0x1c,0x9e,
0xc,0x29,0x2d,0x3d,0x4f,0xc1,0x5f,0xd6,0x5e,0xe7,0x14,0x57,0xb6,0x70,0x9f,0xf9,
0x6d,0x4b,0x98,0x9e,0xaf,0xc7,0x33,0x17,0x2c,0x40,0x9d,0xcd,0x8d,0x8,0x78,0x9d,
0x4a,0x98,0x7e,0x14,0x35,0x4a,0x1e,0xc4,0x28,0xba,0xe0,0x70,0xb8,0x70,0xe4,0x70,
0x4,0x28,0xb3,0xf6,0xd9,0x8c,0x4e,0x66,0x61,0x28,0x5a,0x48,0x56,0xd0,0x59,0xf2,
0x70,0xd7,0xf2,0x65,0x58,0xd7,0xd7,0x8d,0xb2,0x86,0xa6,0x86,0xd1,0xa2,0x78,0xe,
0xe,0xe,0x47,0xf,0x92,0x5a,0x6a,0x73,0x95,0x8a,0x8f,0xa6,0x54,0xa,0x8b,0x27,
0x4c,0xc6,0xc2,0x49,0xd3,0x90,0x4e,0x95,0x6c,0x7f,0x9,0x7d,0xaf,0x61,0xe1,0x8e,
0x1c,0x9e,0x3a,0x1c,0x39,0x1c,0x9,0x68,0x21,0x28,0xf3,0x64,0xee,0xe,0xb0,0xa2,
0x6e,0xd8,0xb1,0x15,0x77,0xae,0x78,0x1c,0x3,0xd4,0x70,0xfa,0xa9,0xd9,0x24,0x3d,
0x8d,0xac,0x60,0xf5,0x34,0xf7,0x91,0xab,0xa1,0xe,0xe,0x47,0xd,0x55,0xb1,0x15,
0x26,0x43,0x5b,0x41,0x20,0x57,0xf6,0x31,0xbd,0x79,0x1c,0xe6,0x9f,0x3a,0x1d,0xed,
0xf9,0x5a,0xa4,0xb5,0x39,0x62,0x92,0x96,0x7c,0x8a,0x24,0xe1,0x9a,0xde,0x53,0x82,
0x23,0x87,0x23,0x40,0x85,0x15,0xb0,0x40,0x12,0xe8,0xf4,0xcb,0xb8,0x87,0xd6,0xc2,
0xf6,0xee,0x4e,0xf4,0x67,0xf3,0xf0,0xb5,0x14,0x31,0xbf,0xd7,0xb4,0xff,0x68,0x91,
0x3c,0xf9,0x41,0x9d,0x2f,0xd4,0xc1,0xe1,0xa8,0x81,0x62,0x4b,0x2d,0x2a,0xa0,0xb5,
0x2e,0xbb,0x5d,0x63,0x3b,0x92,0x24,0x89,0xc,0xc3,0x45,0x73,0x4e,0xc7,0x9c,0x96,
0x71,0x48,0x91,0x14,0x44,0xe,0x19,0x47,0xe,0x4f,0x9,0x8e,0x1c,0x8e,0x0,0x3d,
0x14,0xfc,0xeb,0x3b,0x76,0xe1,0xa1,0x75,0xeb,0xd0,0xd1,0x37,0x80,0x44,0x3a,0x8d,
0xf2,0xa0,0x9a,0xa2,0x11,0xd8,0x72,0x8e,0x32,0x84,0x9a,0xc0,0xa3,0x21,0x15,0xe,
0xe,0xe,0x47,0x7,0x11,0x39,0x48,0x78,0x59,0xa8,0x36,0x3b,0xaf,0x14,0x98,0xa5,
0x30,0xbd,0xbd,0x15,0x67,0x9c,0x72,0xa,0x5a,0x33,0x19,0xe4,0x1d,0x39,0x3c,0x25,
0x38,0x72,0xd8,0xf,0x71,0x27,0x73,0x8c,0xbd,0xa2,0x5e,0x17,0xa3,0x4f,0x3a,0x2b,
0xfb,0x3e,0xee,0xd9,0xb0,0x11,0x2b,0xd6,0xaf,0x47,0x31,0xed,0xc1,0x4f,0x7a,0x8,
0x43,0x5a,0xa,0xb6,0xf4,0x70,0x34,0x35,0xa7,0x92,0xf0,0xad,0x23,0xd,0x95,0x14,
0x33,0xda,0x91,0x83,0x83,0xc3,0xd1,0x83,0x46,0x26,0xa9,0x6d,0x45,0xd3,0xdf,0x42,
0x9b,0xe7,0x90,0x40,0x36,0x48,0xa0,0x2f,0x59,0xa2,0xd5,0x1e,0xa0,0x85,0xa,0xd9,
0x25,0x73,0xe7,0xe3,0x94,0xd6,0x46,0x23,0x12,0xdd,0xa7,0xbb,0xad,0x79,0xf3,0x43,
0xd4,0x9a,0x1d,0xe,0x6,0x47,0xe,0xfb,0x41,0xe4,0xa0,0x1c,0x89,0x2b,0x8e,0x64,
0xbb,0x50,0xaa,0x14,0x91,0x22,0x1,0x68,0x4b,0xce,0x1d,0x3,0x5,0xdc,0xf1,0xe0,
0x83,0xd8,0x54,0xe,0x6d,0x1d,0x7a,0x65,0xa1,0x36,0x2c,0x71,0x70,0x70,0x18,0x19,
0x50,0x9b,0xc,0x82,0x0,0x69,0x5a,0xf3,0x67,0xb4,0xd6,0x63,0xd1,0xec,0x39,0xa8,
0x23,0x45,0x78,0x1a,0x2e,0x28,0x7a,0x10,0x39,0xd8,0xb9,0xc3,0xc1,0xe0,0xc8,0x61,
0x3f,0xc4,0xd9,0xa1,0xff,0xad,0xea,0x98,0x46,0x2,0x24,0xfd,0x92,0xad,0x81,0xf4,
0xe8,0xf6,0xed,0xb8,0x7b,0xf5,0x1a,0xf4,0xd9,0x4e,0x6c,0x1a,0x15,0x11,0xdd,0xef,
0x36,0x2b,0x71,0x70,0x18,0x39,0x8,0x43,0x5a,0xef,0x6c,0xbb,0x3a,0x66,0xc2,0x32,
0xa6,0xb5,0xb5,0xe1,0xac,0x19,0x33,0x30,0xb1,0xb6,0x16,0x5e,0x18,0xa8,0xc1,0x5a,
0xdb,0x76,0x38,0x38,0x1c,0x39,0xec,0x8f,0x98,0x1c,0x54,0xb1,0x78,0x2c,0x94,0x8b,
0xa8,0x24,0xd5,0xb1,0x9c,0xc2,0xed,0xf,0x3f,0x88,0xd5,0x3d,0xbd,0xe8,0xc9,0x66,
0x51,0x20,0x39,0xd4,0x6a,0x69,0x55,0x7,0x7,0x87,0x11,0x8d,0xa2,0x96,0xda,0x8,
0x7d,0x34,0x54,0x2,0x5c,0xbe,0x78,0x11,0xc6,0xd7,0xe4,0x91,0xd7,0x30,0x57,0x47,
0xe,0x4f,0x8,0x47,0xe,0xfb,0x43,0xd9,0xa1,0x7f,0x24,0x84,0x12,0x2b,0x93,0xcf,
0xf,0xdd,0x3d,0xdd,0xb8,0xed,0xd1,0xd,0xb6,0x87,0x73,0xd1,0x23,0x69,0x44,0x26,
0x5,0x92,0x9a,0xf2,0xec,0xe0,0xe0,0x30,0xa2,0x51,0xa6,0x95,0x20,0x55,0x4f,0x16,
0x43,0xba,0x50,0xc4,0xfc,0xe9,0x33,0x70,0xf1,0xcc,0x69,0x48,0xc9,0x2b,0xc0,0xf6,
0xee,0x5c,0xc2,0xc3,0xe3,0xe4,0x26,0x7,0x4b,0x39,0xff,0xa3,0xb0,0xd7,0xa9,0x64,
0x7e,0x25,0x5a,0x3e,0xd5,0xc8,0x61,0x0,0x1,0x36,0xec,0xdc,0x81,0x7b,0x68,0x31,
0x74,0xe6,0xdb,0xa3,0x61,0x73,0x24,0x8c,0x54,0x45,0x15,0xad,0x62,0x9d,0xd0,0xe,
0xe,0xe,0x23,0x1b,0x5a,0xae,0x46,0xa3,0x99,0xd4,0x9f,0x98,0xd5,0xa8,0xc1,0x92,
0x8f,0xd3,0xeb,0x32,0x38,0x73,0xde,0xe9,0x68,0xcc,0xe5,0xa3,0x51,0x4f,0x6c,0xdb,
0x26,0x1,0x4c,0xf1,0xd3,0x21,0x3a,0xa9,0x7e,0x3c,0x29,0x71,0x92,0x93,0x83,0x1c,
0x47,0x84,0x2a,0xe,0xcf,0xd5,0xbb,0xa0,0x4b,0x7e,0x90,0xa0,0xe0,0x4f,0xe1,0xde,
0x55,0xab,0xb0,0x74,0xdb,0x46,0xc,0xe4,0xd2,0x48,0x87,0xda,0x72,0xc4,0xc1,0xc1,
0x61,0x2c,0x20,0xa8,0x14,0x30,0x2e,0x99,0xc1,0xb3,0x16,0x9c,0x89,0xb6,0x5c,0x16,
0x6c,0xee,0x24,0x11,0x36,0xfe,0x6a,0xdf,0xa1,0xc8,0x41,0x67,0x22,0x87,0x93,0x95,
0x20,0x4e,0x6a,0x72,0xd0,0xe4,0x19,0xc1,0x46,0x24,0xd1,0x12,0xd0,0x50,0x38,0xf2,
0x2,0x76,0xd,0x94,0x70,0xdf,0xda,0x55,0x58,0xb5,0x6b,0x3b,0x12,0x5e,0x86,0x96,
0x42,0x92,0x56,0x83,0x5b,0x5e,0xdb,0xc1,0x61,0xcc,0x20,0xe1,0xb3,0xcd,0x7,0xc8,
0x50,0xfc,0x9d,0x37,0x6b,0xe,0x4e,0x1b,0x37,0x11,0x79,0x5a,0xf,0x83,0xdd,0x10,
0xea,0x73,0xac,0x9e,0x9f,0xac,0x4e,0xa7,0x93,0x9a,0x1c,0x7c,0xfe,0x69,0xf5,0x15,
0x31,0x82,0x88,0xa1,0xc4,0x6b,0xbb,0xb,0x5,0xdc,0xbc,0x74,0x39,0x76,0xfa,0xfd,
0xf0,0xd3,0x9e,0x2d,0xad,0xad,0x5,0xf2,0x4a,0x9a,0x6e,0xe9,0xe0,0xe0,0x30,0x26,
0x20,0x57,0x93,0xd6,0x42,0xd3,0x3c,0xa4,0x9a,0x52,0x88,0xb3,0xc7,0x4f,0xc7,0xa2,
0x19,0x13,0x91,0xf3,0xd8,0xce,0xcb,0x1,0x52,0xe9,0xb4,0x29,0x8a,0x72,0x47,0xa5,
0x4f,0x52,0xdb,0xe1,0x24,0x27,0x7,0xcd,0x5a,0x20,0x31,0x84,0x49,0x14,0xa9,0x29,
0xac,0xd9,0xbd,0x1b,0x77,0xae,0x5a,0x89,0x4e,0x2d,0x96,0x17,0x54,0xe0,0xd9,0xa6,
0xe6,0x51,0xf6,0xc4,0x33,0x30,0x1d,0x1c,0x1c,0x46,0x3f,0xca,0x55,0x9f,0x91,0x96,
0xd7,0x4f,0xb2,0xad,0xd7,0x24,0x52,0x98,0xda,0x9c,0xc3,0x5,0xa7,0x9d,0x8a,0xda,
0x4a,0xa,0x19,0x7e,0x76,0xe4,0x70,0x12,0x91,0xc3,0xde,0x84,0xca,0x4e,0xa0,0xc1,
0x10,0x68,0x13,0x11,0x11,0x43,0x12,0x8f,0x6e,0xdb,0x86,0x7b,0x57,0xaf,0x42,0x77,
0x2a,0x85,0x72,0x22,0x8d,0x1c,0xad,0xce,0xc,0x7f,0xa0,0xa,0xa2,0x4d,0x79,0xdc,
0xbe,0x3c,0xe,0x7,0x83,0x1c,0x92,0xd1,0xb1,0xa,0xd6,0x19,0xb9,0x2a,0x55,0xc7,
0xf6,0xa9,0x36,0x94,0x34,0xf6,0xb9,0x2a,0x6b,0xd4,0x7,0x6a,0xf7,0x54,0x3f,0x3b,
0x1c,0x3f,0x88,0x1c,0x52,0x24,0x6,0x8f,0x65,0x10,0x86,0xc,0x29,0xd,0x57,0xef,
0x45,0x7b,0x4d,0x6,0x97,0x9c,0xbe,0x18,0xe3,0x72,0xb5,0x6c,0xf3,0x51,0xe9,0x79,
0xa9,0xb8,0x1c,0xb5,0x88,0x66,0x74,0x8c,0xcb,0x70,0x2c,0xe3,0xa4,0x21,0x87,0x38,
0x91,0x3a,0x6a,0x58,0x9b,0x75,0x3e,0x7,0x49,0xf4,0x96,0x61,0x7b,0x3a,0xaf,0xdc,
0xb5,0x3,0xbd,0xd4,0x20,0x92,0x5e,0x6,0xb6,0x56,0xbc,0x83,0xc3,0x21,0x42,0xf5,
0x29,0xf6,0x4f,0xc7,0xb2,0x43,0xad,0x4a,0x97,0xe4,0xc3,0x8e,0x6b,0x53,0xd2,0x4f,
0xf2,0x3e,0xde,0x2d,0x17,0x25,0x6f,0x48,0x33,0xd8,0xd2,0x5b,0x51,0x1f,0xa8,0xc3,
0x9,0x46,0x98,0x8,0xf8,0x5f,0x19,0x35,0x64,0xeb,0x2b,0xce,0x3a,0xb,0xe3,0xbd,
0x1c,0xea,0x53,0x2c,0x9c,0x64,0x50,0x25,0x70,0xd,0x89,0xb5,0x13,0x16,0xec,0xd8,
0x2f,0xb4,0x93,0x86,0x1c,0xd4,0xf5,0x6c,0x8d,0xb5,0x9a,0x5a,0x1d,0x76,0x95,0x3,
0xdc,0xbb,0x72,0x25,0xd6,0xef,0xda,0x89,0x92,0xcd,0x98,0x4c,0x45,0xf7,0xb9,0xd9,
0xce,0xe,0x87,0x1,0x9,0x8e,0xfd,0xf5,0x9,0xf9,0xb3,0x55,0xdf,0xb4,0x31,0x8d,
0x5,0x7e,0x6f,0x9c,0xc0,0x1b,0xcb,0x3c,0x52,0xc,0xf1,0x7c,0x88,0x26,0xea,0x70,
0xc2,0x11,0xb2,0x54,0xc2,0x8a,0x6f,0x4b,0x80,0x37,0x50,0x16,0x9c,0x33,0x77,0x1e,
0x66,0x36,0xb7,0xa2,0x4e,0xe5,0x2b,0x89,0x41,0xb1,0xb0,0x77,0xaf,0x6a,0x47,0xe,
0x63,0x6,0x3e,0xb,0x3e,0xc9,0x56,0x9c,0xa8,0x24,0x51,0x66,0x92,0x7b,0xc3,0x0,
0xb7,0x2c,0x5b,0x8e,0xd,0x5d,0x9d,0xa8,0xa4,0x69,0x37,0x26,0x3d,0x6b,0xa8,0x32,
0xf5,0xa3,0x66,0xed,0xe0,0x70,0x20,0xb4,0x1c,0x83,0x10,0x2f,0x97,0xa2,0xf5,0x7b,
0x7c,0x55,0x1f,0x9,0xfa,0x90,0x96,0x27,0xeb,0x4f,0x3a,0xe5,0x21,0x28,0xf4,0xea,
0x4b,0x54,0x4a,0x3e,0x4a,0xbd,0xfd,0x78,0xf4,0xe1,0xe5,0xd8,0xb4,0x71,0x1d,0x6a,
0xeb,0x6a,0x70,0xf1,0x65,0x97,0xa3,0x6e,0x7c,0x9b,0xcd,0xdc,0x4d,0x66,0x33,0x8,
0x4b,0x27,0x45,0x13,0x1c,0x5,0x50,0x39,0x68,0xd7,0x39,0xa,0xc6,0xc0,0x47,0x8e,
0xb2,0xe2,0xec,0x39,0xa7,0xe2,0xb4,0xb6,0x71,0x48,0x7,0x21,0x32,0xb2,0x22,0x3c,
0x92,0x3b,0x65,0x49,0x86,0x7f,0x63,0x1d,0x27,0x8f,0xe5,0x50,0x9,0x4c,0xf8,0x57,
0xa8,0x11,0x6c,0x2b,0x14,0xf0,0xfb,0x7,0xee,0x47,0xa7,0xcf,0x8a,0x90,0x4a,0xdb,
0x4c,0x68,0xcd,0x92,0x54,0x73,0x4f,0x5a,0xdb,0x77,0xe4,0xe0,0x30,0x3c,0x62,0x72,
0xd0,0x31,0x26,0x88,0x36,0x2a,0x17,0x41,0xa9,0x8c,0x35,0xab,0x1e,0xc7,0xe3,0x2b,
0x1e,0xc3,0xca,0x65,0xcb,0xd0,0xbd,0x73,0x2b,0xa,0x85,0x1,0xf4,0xf6,0xf6,0xa2,
0xd0,0xd7,0x6f,0xf7,0x65,0x69,0x3a,0x84,0x41,0x5,0xa1,0xe7,0xe1,0xe2,0xe7,0x5f,
0x85,0x17,0xfd,0xe5,0xeb,0xd0,0x2f,0xab,0x22,0x39,0xf6,0x5,0xcd,0x68,0x80,0x26,
0xb6,0xa,0xda,0xc2,0x37,0xa0,0x58,0xd4,0xc,0x6a,0x52,0x37,0x16,0x4d,0x9d,0x8c,
0xc5,0x53,0xa6,0xa1,0x86,0x5f,0x27,0x69,0x6,0x96,0xa9,0x6a,0x66,0x30,0xf6,0xe7,
0x3d,0x8d,0x49,0x72,0x88,0x13,0x14,0xcd,0x5c,0x90,0xa8,0xe7,0x95,0x32,0xb,0x35,
0x91,0x44,0x87,0x5f,0xc2,0x2d,0x4b,0x1f,0xc6,0xf6,0x72,0x81,0xdf,0xa4,0xd9,0x58,
0x45,0x10,0xac,0xd,0x6a,0xe7,0x2a,0x7c,0x66,0x87,0xdb,0xa4,0xfc,0xc9,0xa0,0x1c,
0x66,0x3e,0x55,0x33,0x3a,0xa2,0x52,0x8d,0xb,0xdf,0x4b,0xaa,0x71,0x19,0x48,0x93,
0x16,0xec,0x17,0xd5,0xaa,0x56,0xa1,0x50,0xd5,0x5e,0xc0,0xc9,0xa4,0x2c,0xb9,0x68,
0x4f,0x60,0xf3,0xd9,0x1f,0x11,0x27,0x87,0xfb,0xc5,0x47,0xcf,0xdc,0xb7,0x1c,0xf5,
0x75,0x7c,0x8f,0x6e,0xb2,0xe8,0xd8,0x7b,0x19,0x1f,0x7e,0xab,0xcf,0x49,0xd6,0x5,
0xc5,0xd,0x54,0x18,0x10,0xfa,0x14,0xdc,0x54,0x1a,0xf8,0x31,0xc5,0x38,0xeb,0xb7,
0x3d,0x1d,0xdb,0xd1,0xb5,0x7b,0xf,0xba,0xf7,0x74,0x62,0xfb,0x96,0xad,0xd8,0xb4,
0x61,0x23,0x76,0xd0,0x2a,0xd8,0xc6,0x73,0xb0,0x2e,0xa5,0xf9,0xac,0x94,0xde,0x9b,
0x28,0x22,0xf0,0x7d,0x3e,0x90,0x69,0x94,0x2b,0x82,0xef,0xb1,0xba,0xc5,0xcf,0x15,
0x2d,0xef,0x9e,0xab,0xc1,0x7b,0xbf,0xf0,0x79,0x34,0xcd,0x9c,0xce,0xef,0x4e,0x1c,
0x39,0x68,0xae,0x4f,0x9c,0x5f,0x83,0x79,0x33,0xa4,0xfe,0x47,0xbe,0x76,0x9d,0x54,
0x8f,0x82,0xb9,0x56,0xa2,0xad,0x71,0xf5,0x45,0x92,0xe9,0xd5,0x6f,0x55,0x96,0x51,
0x67,0xb,0xcb,0x94,0xf9,0xa5,0x7c,0xe8,0xe9,0xea,0x46,0x4f,0x77,0x37,0x9a,0x1a,
0x6a,0x91,0xab,0xab,0x43,0xc0,0x6b,0x54,0xd3,0xec,0x97,0x91,0x3a,0x36,0x72,0x60,
0x5b,0xfe,0xf2,0x28,0xb7,0x9f,0xdc,0x47,0x22,0x8,0xd5,0x8c,0x54,0x30,0x80,0x33,
0xa6,0xcd,0xc4,0x99,0xd3,0x67,0xa2,0x96,0x69,0xab,0xd0,0xaa,0xf0,0xb4,0x15,0x69,
0xb5,0xbe,0x47,0x3b,0x3d,0xea,0x24,0xce,0xac,0xb1,0x81,0x31,0x4d,0xe,0x11,0xa2,
0xca,0x1f,0xb2,0xc4,0x77,0x94,0x4a,0xf8,0xc5,0x9d,0x7f,0x46,0x29,0x9f,0x63,0xc1,
0xca,0x8d,0xa4,0x6f,0xc6,0x5c,0xf2,0x8f,0x39,0xd4,0xb4,0x23,0xcf,0x6b,0x4,0x6b,
0x12,0xf6,0x31,0x9a,0x2e,0x64,0xa7,0xd5,0x76,0xa2,0xd1,0x5e,0x82,0xaa,0x59,0xbc,
0x84,0x32,0x98,0xf7,0x3e,0x85,0xaf,0xee,0xf3,0xb4,0x6a,0x26,0xe5,0x70,0x3c,0xb4,
0xf0,0xa9,0x42,0x22,0x27,0xc6,0xe0,0x63,0xaa,0x7b,0x68,0xc,0x8d,0x4f,0x69,0xc8,
0x7b,0xe2,0xaa,0x2f,0x6b,0xd1,0x2f,0x96,0xcc,0x7a,0xf4,0xa8,0xd5,0xb,0x69,0xde,
0xd3,0x56,0x93,0xc1,0x8e,0x2d,0xdb,0xf0,0xc0,0xbd,0xf7,0xe2,0xc1,0x7b,0x97,0xe0,
0x81,0x3b,0xee,0x40,0x32,0x5d,0x42,0xd6,0x4b,0xa3,0x52,0x28,0x21,0xa7,0x89,0x91,
0x4c,0x13,0xa5,0xbd,0xfd,0x66,0x5f,0x48,0xfc,0xed,0x8f,0xc0,0xfa,0x22,0x8c,0x6c,
0x2a,0x19,0x3c,0xf7,0xd,0x7f,0x85,0xf3,0x5f,0x7c,0x35,0x42,0x5a,0xaf,0x27,0xa,
0xf1,0x88,0x9c,0xa1,0x59,0xef,0x57,0x85,0xdc,0x20,0x31,0x10,0x25,0xa,0xc4,0xd8,
0x52,0xa,0x7d,0x5a,0xda,0x3c,0xcf,0xa8,0x28,0x79,0x5d,0x79,0xa0,0xa1,0x9f,0xf9,
0x4c,0xe,0x65,0x5a,0x49,0xf7,0xdf,0x73,0x17,0xf3,0xec,0x7e,0xdc,0x73,0xdb,0x9f,
0xd9,0xee,0x2,0x13,0xa4,0x7e,0xd8,0x8f,0x8b,0x9f,0xf5,0x2c,0xbc,0xe2,0x8d,0x6f,
0x2,0xea,0xea,0xd1,0x4f,0xab,0xdd,0xf2,0x6f,0x84,0x43,0x7d,0x44,0xda,0x97,0x25,
0x51,0x2c,0x60,0xe1,0xa4,0x29,0x38,0x6f,0xf6,0x3c,0xd4,0x33,0xcb,0x12,0x9,0xed,
0x43,0xaa,0x3b,0x98,0x27,0xca,0x2f,0xe5,0x23,0xf3,0x60,0x2c,0x61,0x4c,0x92,0x83,
0x9a,0xa5,0xca,0x2d,0xd6,0x84,0xf4,0x79,0x75,0xdf,0x0,0xee,0x78,0xe8,0x1,0xec,
0xa1,0xe5,0x0,0x56,0xe2,0xa,0xcd,0x7b,0xdd,0xe5,0x56,0x66,0x7c,0x2a,0x90,0x5f,
0x56,0x8d,0x26,0xca,0x5b,0x1d,0x95,0xd7,0x49,0xa,0xe3,0xd8,0x52,0x90,0x44,0x56,
0xce,0x6,0xa9,0x92,0x5d,0xd3,0x90,0xc1,0x1c,0x85,0xa0,0x5f,0x2c,0x53,0xc1,0xae,
0x20,0x9d,0xcb,0xa2,0x20,0x9f,0x3c,0xf3,0x3f,0xd2,0xd7,0x84,0xa7,0x5e,0x16,0x15,
0x8d,0x34,0x21,0x64,0x81,0x28,0x3e,0x8a,0x46,0x2a,0xd4,0x26,0x4b,0x7b,0x9f,0xaa,
0xf3,0x92,0x57,0xb2,0xcf,0x1e,0x23,0x9e,0x64,0x3c,0x6a,0x32,0x59,0x4,0xbd,0xbd,
0xd8,0xbc,0x7a,0xd,0x36,0xad,0xdf,0x80,0x75,0xab,0x56,0xa3,0xab,0x63,0xf,0x7a,
0x76,0x77,0xa0,0x7b,0xfb,0x16,0xc,0x50,0xd8,0x55,0x24,0xc,0xf9,0x2b,0x8f,0x56,
0x44,0x5f,0x8a,0xc2,0x90,0x30,0xab,0x87,0x7f,0x7a,0x4f,0x7a,0x38,0x1e,0x18,0x96,
0x1c,0xa2,0x89,0x57,0xca,0x8f,0x44,0x98,0xc6,0xec,0x8b,0x2e,0xc6,0x5f,0x7d,0xec,
0xa3,0x28,0xd,0x95,0xc2,0xc7,0x19,0xea,0x28,0x8f,0xcb,0x30,0xce,0xb7,0xa0,0xca,
0x75,0x16,0x2b,0x5d,0x20,0x52,0x21,0xf3,0xad,0x42,0x81,0xae,0xd1,0x7c,0x14,0xf8,
0x9b,0xd6,0xad,0xc7,0xd6,0x35,0x2b,0xb1,0x79,0xcd,0x6a,0xec,0xda,0xbe,0xc3,0x2c,
0xa9,0x5d,0x3b,0x76,0xa2,0xbf,0xbb,0xb,0x1e,0x5,0xbf,0xac,0x8,0x8f,0x82,0x53,
0x8f,0x52,0x5f,0x5f,0x29,0x93,0xc4,0x0,0x15,0x81,0xf3,0x9e,0x73,0x25,0x5e,0xf3,
0xce,0xb7,0xa3,0x87,0xcf,0x4a,0xf3,0x6f,0xa4,0x43,0xd6,0x51,0x89,0x69,0x4f,0xb3,
0xbc,0x3d,0x2a,0x97,0xa7,0xb6,0x4f,0xc0,0x85,0xf3,0x17,0xa0,0x89,0x69,0x89,0x4a,
0x4d,0x85,0xa9,0xbc,0x53,0x6d,0xa8,0x66,0xdc,0x18,0xc1,0x98,0x24,0x7,0x69,0xa5,
0xda,0xd8,0x5f,0x3b,0xb3,0x15,0xf9,0x79,0x67,0x6f,0xf,0xae,0x7d,0xf0,0x1,0x24,
0xa8,0xea,0x94,0xb5,0x86,0x52,0xb5,0xf3,0x39,0x2a,0xd7,0xa8,0x88,0x1d,0xe,0x1d,
0x1a,0xea,0xeb,0x7,0x65,0x1b,0xd5,0x65,0xdc,0x6a,0x2,0x5e,0x47,0xab,0x50,0xd6,
0x44,0x4a,0xd4,0xac,0x7,0x7a,0x7a,0x51,0xdb,0xdf,0x83,0x9d,0xdb,0xb6,0x63,0xe5,
0xb2,0x47,0x70,0xdf,0xdd,0xf7,0x60,0xdb,0xa6,0x2d,0x8,0xbd,0x24,0x4e,0x99,0x3b,
0xf,0xff,0xef,0xaf,0xff,0xa,0xed,0x33,0xa7,0xc3,0xa7,0x35,0x51,0x31,0xf1,0xfb,
0xd4,0xcb,0x22,0x64,0x3,0x4e,0x56,0x7,0xa4,0xcb,0x26,0x51,0xb5,0xe,0xb4,0xa,
0x27,0xaf,0xc9,0xed,0x21,0x21,0x28,0x41,0x9f,0x65,0x7c,0xca,0x85,0x2,0x2d,0x82,
0xad,0x78,0xe4,0x81,0xa5,0x78,0xf8,0xa1,0x87,0x48,0xa,0x6b,0xcd,0x52,0x48,0x53,
0xf8,0xa7,0xfc,0x78,0x4e,0xb,0xc5,0x42,0x32,0xea,0xa7,0x8a,0x63,0xa5,0x63,0x25,
0x95,0x31,0x21,0x1a,0x50,0x38,0x68,0x71,0x46,0xdd,0x9a,0xd4,0x8c,0xda,0x14,0x6d,
0x97,0x20,0xb4,0x63,0x92,0xcf,0x69,0x69,0x69,0x34,0x4d,0xbb,0xa9,0xa9,0x9,0x67,
0x9d,0x75,0x36,0xce,0x39,0xe7,0x1c,0xbc,0xff,0x3,0xef,0x43,0x99,0xcf,0x15,0x39,
0x24,0x49,0xe,0xe1,0xb8,0x76,0xfc,0xc3,0x8f,0xff,0x1b,0x3d,0x5,0x6a,0xa1,0xc7,
0x19,0x71,0x9f,0x89,0xc8,0x4a,0x6e,0x34,0x59,0x4c,0xca,0xb3,0x92,0x5f,0x46,0x9d,
0x7c,0xef,0xca,0x3f,0x92,0x62,0x89,0x79,0xe6,0x97,0xcb,0xe8,0xd9,0xbc,0x1e,0x8f,
0x2e,0x5b,0x8e,0xa5,0xf7,0x2f,0xc1,0x86,0xc7,0xd7,0xd2,0x62,0x8,0x91,0x4d,0x8b,
0xd6,0xa3,0xf4,0xc4,0x79,0xa4,0xfc,0x50,0xfe,0x58,0xfb,0x22,0xe2,0xeb,0x9a,0x6c,
0xa6,0x85,0x2a,0xfb,0x78,0xfe,0x4f,0x3f,0xfe,0x1f,0x14,0x6b,0xb2,0x7c,0xff,0xc8,
0xf7,0xdb,0xcb,0x7d,0xa6,0xf1,0xc6,0xe6,0xf6,0xa4,0x95,0x94,0xa6,0xe,0x32,0xb9,
0xbd,0x1d,0xcf,0x98,0x33,0x1b,0xb5,0x2c,0x67,0xed,0x11,0x9f,0xa4,0xe9,0x29,0x65,
0x29,0x91,0x18,0xf9,0x64,0x77,0x38,0x18,0x9b,0x6e,0x25,0xf9,0x8b,0x59,0x43,0x35,
0xc5,0x6d,0xd3,0xc0,0x0,0x6e,0x7c,0xe8,0x7e,0xc,0xb0,0x22,0x86,0xac,0xf4,0x51,
0x61,0x47,0xda,0x92,0xdc,0x9,0x8e,0x1c,0x9e,0x2,0x42,0xdf,0xf6,0xe9,0x4d,0x69,
0x66,0xa9,0x97,0x35,0xd7,0xc4,0x40,0x6f,0x37,0x1e,0x59,0xbe,0x4,0x8f,0x51,0x80,
0xac,0x7c,0xe4,0x51,0xa,0x95,0x1,0x14,0x29,0x84,0xfd,0x3d,0x1d,0x26,0x64,0x4,
0xfd,0x46,0xba,0xa4,0x76,0xd4,0xae,0xa4,0x33,0x28,0xd1,0x7a,0xf8,0xc8,0x57,0xbf,
0x8c,0xdc,0xc4,0x76,0xa,0xe2,0xec,0x11,0x95,0x45,0x52,0x43,0x10,0xf9,0x6c,0x69,
0xb5,0x39,0x2f,0x8d,0x9a,0x6c,0xe,0xbb,0x77,0xae,0xc7,0xb2,0x87,0x96,0x52,0xa0,
0x3d,0x80,0x4d,0x6b,0xd7,0x91,0xb0,0xa,0x28,0x76,0xee,0x41,0xb9,0x5c,0x8a,0x56,
0xdf,0x65,0x5d,0x10,0x71,0xc4,0xb,0x30,0xda,0xdb,0xcd,0xa2,0x24,0x28,0x10,0x2a,
0xa,0x3c,0x1d,0xda,0x40,0x92,0xb2,0x46,0x48,0x86,0xe6,0x67,0xe7,0xb1,0x4c,0xc1,
0x19,0x84,0x65,0x2c,0x58,0xb0,0x0,0x4f,0x7f,0xfa,0xd3,0xf1,0x8c,0x67,0x3c,0x3,
0x93,0x26,0x4d,0x42,0x5d,0x7d,0xd,0xea,0xea,0xea,0xd0,0xd8,0xd8,0x68,0xef,0xda,
0xb6,0x7d,0x1b,0x16,0x2f,0x5e,0x4c,0xad,0x9c,0xbf,0xe5,0x3,0x45,0xe,0xd,0xa7,
0xce,0xc5,0x87,0xbf,0xfe,0x4f,0x28,0x90,0x90,0x8e,0x27,0xd4,0xe4,0xe3,0x8e,0x75,
0xaf,0x52,0x44,0x26,0xe5,0xa1,0x21,0x57,0x83,0x8e,0x6d,0x3b,0xac,0x53,0xfd,0xb1,
0xfb,0xef,0xc6,0xca,0x15,0x8f,0xa2,0xc8,0x32,0x2c,0xf7,0x17,0x50,0x62,0x1b,0x42,
0xa5,0x84,0x52,0x49,0xbb,0x21,0x52,0x20,0x32,0x28,0xaf,0x34,0xc8,0x43,0xb9,0x33,
0x34,0xf6,0xb1,0xe5,0xb6,0x3f,0x8c,0x40,0x2a,0x1e,0xa,0x89,0x14,0x5e,0xf3,0xae,
0x77,0xe2,0xac,0x67,0x5e,0x66,0x93,0x4d,0x47,0x3a,0x4c,0xd9,0x61,0xdc,0x65,0x4d,
0x15,0x48,0xe,0xea,0xa4,0x66,0xc2,0x71,0xca,0xb8,0x6,0x3c,0xed,0xb4,0x85,0x68,
0xe2,0x3d,0x69,0x73,0x91,0x4a,0xe9,0x1c,0x5b,0x3,0xb,0x46,0x3d,0x39,0xc4,0x91,
0x57,0x15,0x55,0x41,0x1a,0xca,0xd4,0x6c,0xa9,0xc1,0xad,0xed,0xea,0xc4,0xad,0xcb,
0x96,0xa1,0xcf,0xd6,0x45,0xda,0x3b,0x9,0xde,0x28,0x82,0x1f,0x22,0xad,0x70,0x98,
0x9a,0x3c,0x4a,0x61,0x4b,0x13,0xf3,0x68,0x29,0xb2,0xb4,0x45,0x8d,0x52,0x66,0x7d,
0x8c,0xf8,0x54,0x3a,0x9f,0xb2,0x4b,0xb2,0x51,0x27,0x21,0x5,0xa4,0xb9,0x3c,0x78,
0x5d,0xd,0x40,0xc3,0x32,0x4d,0xf8,0x51,0xf0,0xa5,0xe5,0x8b,0xa7,0x40,0x40,0xd9,
0x47,0xc7,0x8e,0x5d,0xe8,0xd9,0xb1,0xd,0x3b,0x37,0x6f,0xc2,0x2e,0x5a,0x4,0x9b,
0xd7,0xae,0x37,0x77,0x4c,0x4f,0x47,0x7,0x3c,0xde,0xab,0x25,0x47,0x4c,0x10,0x50,
0xf6,0xc8,0x2f,0x5d,0x4e,0x96,0x2d,0x4e,0x16,0x19,0x3e,0x4f,0xe7,0x29,0xdb,0x4,
0x3e,0x85,0x32,0xb5,0xd5,0x89,0x67,0x2e,0xc6,0x3b,0xbf,0xf0,0x19,0x14,0x8b,0x7c,
0xa7,0xbe,0x67,0x5c,0xe2,0xa3,0x96,0x48,0x57,0xbc,0xf4,0x53,0x75,0x6e,0x6a,0xb8,
0xa8,0x3a,0x79,0xf9,0x58,0xbe,0x27,0x85,0x5c,0x26,0x43,0x52,0xea,0xb3,0xce,0xe0,
0xbe,0xad,0x9b,0xb0,0x87,0x71,0xd8,0xba,0x6e,0x23,0xb6,0x6c,0xdc,0x84,0x8d,0xeb,
0xd6,0xc1,0xef,0xda,0x63,0x71,0x50,0x9c,0x4c,0x9c,0x31,0x4d,0x41,0x46,0xa3,0xd9,
0x99,0x4f,0x4a,0xb3,0xe2,0xc5,0x73,0x4f,0x99,0xa2,0xf4,0xf2,0x5e,0x69,0xd1,0xd6,
0x59,0xce,0x4b,0x7a,0xa7,0x72,0x54,0x4,0xa0,0xfe,0x88,0xc6,0xe6,0x26,0x9c,0x32,
0x7d,0x3a,0xa6,0x4f,0x9b,0x8e,0xc9,0x24,0x80,0xb3,0xcf,0x3c,0xb,0x33,0x66,0xcc,
0xc0,0xc2,0xb3,0x16,0xd9,0xf3,0xa4,0x89,0x4b,0xe8,0xca,0x7a,0x90,0xec,0x4d,0xf0,
0xf7,0x4a,0xcb,0xae,0x5d,0xbb,0x70,0xfd,0xf5,0xd7,0xe3,0xdd,0xef,0x7b,0xf,0x12,
0xb4,0x9a,0x64,0xd5,0x26,0xc3,0xc,0xce,0xbb,0xfa,0x45,0xb8,0xea,0x4d,0x7f,0xcd,
0xf8,0xa8,0x10,0x4,0xfd,0x28,0x3a,0xab,0xf0,0xb7,0xca,0x2c,0x7d,0xac,0x5e,0xe2,
0x31,0x2a,0xdf,0x7d,0x20,0x69,0xac,0xc,0xb1,0xef,0xf8,0xc7,0x3a,0x10,0x5b,0x5,
0x2a,0x7,0xfd,0x40,0x69,0x4f,0xf2,0xba,0xc,0xab,0x80,0x69,0x91,0xf5,0xd6,0xb9,
0x6b,0x37,0x76,0xed,0xd8,0x81,0x9e,0x8d,0x6b,0xb1,0x99,0xf9,0xb5,0xee,0xb1,0x55,
0x28,0x91,0x8,0x54,0xee,0x69,0xd3,0x9a,0x58,0x1e,0xb4,0xe,0xf4,0xc,0x91,0x5b,
0x59,0x7e,0x38,0x95,0xb,0x5f,0xc7,0xa4,0x5a,0xc7,0x7d,0x85,0xdf,0xdb,0x7,0x95,
0x8b,0xa5,0x5b,0x96,0x1b,0xf3,0x91,0xd7,0x95,0x1f,0xd,0x24,0xc6,0xba,0xfa,0x3a,
0x6c,0xdf,0xbe,0xdd,0xac,0x79,0xfe,0x8a,0xd1,0x49,0xe1,0x34,0xb9,0xd3,0x3e,0xfc,
0x41,0x5a,0xf5,0xa3,0x83,0x1c,0x64,0x49,0xfa,0x4c,0x77,0xa8,0x72,0xad,0xa6,0xcd,
0x63,0xbd,0x9e,0xde,0xd8,0x82,0x4b,0x69,0x1,0xb7,0xf0,0x7a,0x8a,0xd7,0x7d,0xd,
0x89,0xd7,0x6f,0x2c,0x44,0x92,0x45,0x61,0xb4,0x62,0xec,0x90,0x83,0x2a,0x65,0x55,
0x90,0x94,0x4a,0x49,0x6c,0x29,0xf4,0xe3,0x37,0x4b,0xee,0x45,0x81,0x5a,0xa4,0x3a,
0x8a,0xd4,0x48,0x47,0x75,0x49,0x1d,0xa,0xaa,0x99,0xf1,0x44,0x95,0x32,0x26,0x87,
0x92,0x1a,0x3f,0x8f,0xda,0x9b,0xc2,0x44,0x36,0x1b,0x77,0x3a,0x4d,0x52,0x55,0xc7,
0xac,0x9e,0xe3,0x87,0xc8,0x26,0x3d,0xf4,0x76,0x76,0x60,0xc9,0x7d,0xf7,0xe3,0xbe,
0x3b,0xee,0xc2,0x63,0xf,0x2f,0x8f,0xd6,0xa1,0xd1,0xd,0x41,0xc9,0x5c,0x11,0xb1,
0x6,0xaa,0x47,0xc,0xef,0x73,0x8d,0x1a,0x93,0xf2,0x3f,0x16,0x9e,0x65,0x4a,0xde,
0xac,0xf5,0x37,0xa4,0xd0,0x99,0x49,0xe3,0x1f,0x7f,0xf1,0x53,0x6a,0x94,0x22,0x6f,
0xfe,0x51,0x10,0x69,0x14,0x8b,0xf1,0xb9,0x16,0x46,0x64,0x7b,0xd3,0x35,0xd0,0xfa,
0xd0,0xb1,0x42,0xe1,0xb6,0xf6,0xb1,0xc7,0xb0,0xfc,0x81,0xa5,0xb8,0xe3,0x96,0x3f,
0xa2,0xaf,0xb3,0xcb,0xae,0xd7,0xa6,0xa2,0xe,0x53,0x75,0x7a,0xc7,0xef,0xd1,0x9c,
0x96,0xfd,0x61,0x94,0x50,0xcd,0x83,0xb8,0xea,0x87,0xd4,0x8,0x33,0x5a,0x68,0x8d,
0xbf,0xb5,0x21,0xcd,0x26,0x6c,0x13,0x68,0x68,0xa0,0x76,0xf8,0xb4,0xa7,0xe3,0xa2,
0x8b,0x2e,0xc2,0xd5,0x57,0x5f,0x8d,0x71,0xe3,0xc6,0xf1,0xb9,0xa5,0x68,0x14,0x52,
0x15,0xba,0xb7,0x6c,0xbf,0xcf,0xa0,0xaf,0xbf,0xcf,0x9e,0xd1,0xd7,0xd7,0x87,0xdf,
0xfd,0xfe,0x26,0x3c,0xf0,0xc0,0x83,0xf8,0xe9,0x4f,0x99,0x36,0x59,0x50,0xfc,0x4d,
0x26,0xeb,0x91,0x8,0x98,0xcf,0x1,0xd3,0x59,0xc9,0xe0,0xea,0xb7,0xbf,0x3,0xb,
0x9f,0xf7,0x1c,0x13,0x38,0x36,0x8a,0x49,0x65,0x61,0x1a,0x4b,0x48,0xc2,0x3a,0xd0,
0xe5,0x22,0xb2,0x1c,0x44,0x5c,0xc0,0x24,0x6d,0xdf,0x2f,0x47,0x42,0x8c,0xd1,0x96,
0x36,0xaf,0x65,0x5f,0xc0,0x72,0xd4,0xed,0xb5,0x99,0x1c,0x56,0xaf,0x5c,0x89,0xa5,
0x4b,0x96,0xe0,0xee,0xdb,0x6f,0xc5,0x8e,0xcd,0x5b,0x90,0x26,0xa1,0x68,0x54,0x95,
0xe5,0x75,0xb5,0xaf,0x26,0x2e,0x23,0x41,0x51,0xd8,0x1f,0x9,0x3d,0x9c,0x88,0x89,
0x67,0x80,0xd6,0x44,0x3a,0xed,0x59,0x50,0x9e,0x29,0xe8,0xf7,0xca,0xab,0x67,0x5c,
0x76,0xb9,0xe5,0xd7,0x84,0x9,0x13,0x70,0xf3,0xcd,0x37,0xe3,0x55,0xaf,0x7a,0x15,
0xf3,0x88,0x29,0xe7,0xe3,0xf5,0xce,0xf1,0xb4,0x98,0xde,0xf6,0xf7,0x9f,0x7,0x32,
0xd,0xf6,0xcc,0xd1,0x8,0x5b,0xde,0xbb,0x54,0xc2,0xdc,0xf6,0xf1,0xb8,0x64,0xee,
0x1c,0xd4,0x90,0x3d,0x86,0xe,0x3a,0x53,0x5e,0x28,0x37,0xe3,0x30,0x1a,0x31,0xea,
0xc9,0x41,0xa2,0x29,0xd2,0x90,0x22,0xad,0x4a,0x15,0x70,0x45,0x67,0xf,0xee,0x7b,
0x64,0x39,0x3a,0x83,0x32,0x42,0xf5,0x2f,0xd8,0x4d,0x91,0x16,0x37,0x96,0x61,0x16,
0x2,0x43,0xf5,0x60,0x79,0x13,0x75,0x1c,0x47,0x45,0x6c,0xa9,0xe7,0xa9,0x8e,0x1a,
0x81,0xa1,0x4e,0xe2,0x3c,0xd5,0xc9,0xa,0x5,0xc9,0x9a,0x95,0xab,0xb0,0x75,0xc5,
0xc3,0x58,0xbb,0x7a,0xd,0xf6,0xec,0xea,0x40,0x6f,0x57,0xf,0x3a,0xa8,0xf1,0x26,
0x7b,0xfb,0x79,0xb3,0xb4,0xce,0xa8,0xf1,0xab,0xba,0xf8,0x14,0x62,0x49,0x6a,0xc0,
0x26,0x80,0xe3,0x3c,0xad,0x3e,0x77,0x7f,0x48,0xd8,0xc9,0x17,0x1f,0x86,0x14,0xee,
0xd2,0xe0,0xf9,0x1c,0xed,0xcc,0x65,0xe4,0xc0,0xdf,0xf4,0x90,0x60,0xde,0xfb,0xa5,
0xcf,0x63,0xdc,0xfc,0xd3,0xac,0x1c,0xb3,0xb2,0x8,0x58,0x66,0xbb,0xb7,0xef,0xc4,
0xfa,0x47,0x97,0xe1,0xf1,0x47,0x96,0x59,0xff,0x80,0x3a,0x3c,0x65,0x25,0xf4,0x74,
0x76,0x22,0x51,0xa2,0x30,0xa4,0x90,0x91,0xc6,0xaf,0x61,0xb0,0x7c,0x38,0x4a,0x59,
0x6a,0xaf,0x55,0x62,0x88,0x31,0x9c,0x90,0x8b,0xed,0x5,0x41,0xf7,0xab,0x9,0x9f,
0x71,0xc6,0x62,0xcc,0x9f,0x3f,0x1f,0x17,0x5e,0x78,0x21,0x26,0x4e,0x9c,0x88,0xc9,
0x93,0x27,0xa3,0xa5,0xb5,0xc5,0xfa,0xd,0x94,0x3e,0xc5,0xb9,0xc4,0x77,0xca,0x22,
0xa8,0xb0,0x82,0x89,0x14,0x7d,0x92,0xd5,0x8a,0x15,0x8f,0xe0,0x81,0x25,0xf,0xe0,
0x7e,0xa,0xde,0x4d,0x9b,0x36,0x62,0xe3,0xc6,0x8d,0xe8,0x64,0xfc,0x76,0x32,0xdf,
0x28,0x6a,0xf9,0x86,0x88,0x10,0x63,0x48,0x79,0x51,0x2d,0xd5,0x28,0xb9,0x30,0x4c,
0xe3,0x55,0xef,0xfd,0x0,0x26,0x9c,0xb3,0x98,0x6,0x99,0x95,0x94,0x4d,0x90,0xcb,
0xe5,0x44,0xa,0x55,0x72,0xe0,0x23,0x54,0x9f,0x15,0x84,0x84,0x4,0x79,0x35,0x9f,
0xe3,0xb4,0x89,0x6e,0xf2,0xb4,0xa0,0x76,0xef,0xd8,0x8e,0x35,0x8f,0xad,0xc4,0xda,
0x55,0x2b,0xb1,0x7b,0xfd,0x7a,0x74,0xef,0xd8,0x89,0xbe,0x9e,0x5e,0x5a,0x7a,0x3b,
0x8d,0xb2,0x75,0xbf,0xed,0x7c,0xa6,0x73,0x6,0x95,0x9d,0x46,0x8e,0xf9,0x24,0xbb,
0xfd,0xa1,0x78,0x1e,0x88,0x84,0x11,0x9c,0xe2,0x3f,0x6f,0xde,0x3c,0x9c,0x75,0xd6,
0x59,0x38,0xe7,0x9c,0xb3,0x31,0x69,0xd2,0x44,0xcb,0xb3,0xf6,0xf6,0x76,0xb4,0xb6,
0xb5,0x22,0x4b,0x32,0x8a,0xc4,0x62,0x94,0xbf,0x8f,0x91,0xc8,0x45,0x18,0x9,0xd6,
0x33,0x3d,0x35,0xcd,0xd8,0xa4,0x9b,0xdb,0xf0,0xf6,0x2f,0x7f,0x1e,0xf5,0xe3,0xa7,
0xd9,0x7d,0xa3,0x11,0x66,0x51,0xb3,0xd,0xa8,0x93,0x7a,0x46,0x4b,0x2b,0xce,0x9a,
0x7b,0x1a,0x26,0xca,0x34,0x8b,0xc1,0xbc,0xd6,0x48,0x3d,0x5d,0xa9,0x16,0xdf,0xa8,
0xc3,0xa8,0x27,0x87,0x80,0x9a,0x92,0xb6,0xeb,0xc,0xd9,0xe0,0xfa,0x58,0xe1,0x77,
0x51,0x7b,0xfb,0x3,0x1b,0x6d,0x89,0x15,0x53,0xfa,0x9d,0x4,0x92,0xb5,0x8,0xc3,
0x68,0x2d,0xa6,0x27,0x46,0x5c,0x84,0xda,0xcd,0x4a,0x82,0xc4,0x4,0x90,0x9,0x6d,
0x69,0xe1,0x5a,0x50,0x8c,0xc2,0x86,0xf9,0xd0,0xd7,0xdd,0x83,0x52,0xa1,0x88,0x1,
0x6a,0xb6,0x7b,0x36,0x6e,0xc0,0xca,0x15,0xcb,0xf1,0xd8,0x43,0xf,0x63,0xcb,0xda,
0x35,0xf6,0x7d,0x7a,0x48,0x7,0x6c,0x9c,0x53,0xfa,0x2c,0xa2,0x11,0x74,0x54,0x3,
0xb7,0x3c,0x95,0xd6,0x49,0xa1,0x29,0x21,0x23,0x61,0x29,0xd7,0x8b,0xb4,0x57,0x7d,
0xae,0xad,0xad,0x43,0x7d,0x7d,0x1d,0x5,0xc7,0x64,0xb4,0xb5,0x35,0xe3,0xfc,0xb,
0x2e,0xc0,0xf9,0xe7,0x9d,0x67,0x47,0x69,0x91,0xbf,0xbb,0xe5,0xcf,0xd4,0x6e,0x45,
0x4e,0x15,0x14,0xd9,0xa0,0xae,0xfe,0x8b,0xd7,0x61,0xfa,0xbc,0xb9,0x58,0xb1,0x7c,
0x39,0xd6,0x3d,0xba,0xa,0x2b,0x97,0x2d,0x87,0x3f,0x50,0xa4,0x60,0x95,0x56,0x1b,
0x39,0x5d,0x44,0x2,0x22,0xf,0xa5,0x4f,0xfe,0x5f,0x9d,0x9b,0xd0,0xd3,0x75,0x1e,
0xfd,0x21,0x42,0x58,0x50,0xfa,0x15,0x1f,0x9,0x28,0xa5,0xa6,0xbe,0xbe,0x1e,0x4d,
0x4d,0x8d,0x68,0x6c,0x6c,0xc0,0xd4,0x29,0x53,0x68,0x11,0x3c,0xd,0x67,0x9f,0x73,
0xe,0xce,0x3e,0xfb,0x6c,0xe6,0x9f,0x48,0x6e,0xaf,0xf2,0x10,0xe7,0x5d,0xd9,0x2f,
0xa2,0xab,0xab,0x1b,0x7b,0xf6,0xec,0x46,0x47,0x47,0x7,0xba,0x99,0x7f,0x7f,0xfa,
0xd3,0xed,0x78,0xf8,0xe1,0x87,0xf1,0xe7,0x3f,0xff,0x19,0x65,0xa,0x6,0x8f,0x2,
0xb6,0x9a,0x3d,0xfb,0xc0,0xc8,0xa1,0xfa,0xbc,0x18,0x72,0xa2,0x14,0x35,0xf4,0x93,
0xf9,0x16,0xd0,0x72,0x78,0xcd,0xfb,0xae,0x41,0xc3,0x9c,0x59,0xbc,0x53,0x71,0x67,
0xa9,0x31,0x4f,0xa6,0x4d,0x9b,0x8a,0x52,0xb9,0x44,0x4d,0x9d,0xc2,0x98,0x71,0xf7,
0x52,0xd4,0xcc,0x25,0x58,0x75,0xde,0xdf,0x8f,0x42,0xff,0x0,0xa,0xd4,0xda,0xd5,
0xd9,0xbf,0x66,0xd5,0x6a,0x6c,0x62,0x9e,0x2d,0x7f,0x78,0x29,0xa,0x3d,0x3d,0x36,
0xac,0x34,0x4b,0x4b,0x42,0xfd,0x2f,0xd1,0x7c,0x1d,0x7b,0xac,0x1d,0x35,0x7,0x45,
0xa4,0xac,0xfc,0x4b,0xea,0xfd,0xfc,0x42,0x2e,0x3b,0xcd,0xfc,0x8d,0x9,0x4c,0x65,
0x27,0x24,0xd8,0xa6,0xa2,0xfc,0x6a,0x42,0x23,0x43,0x3b,0x2d,0xa6,0x8b,0x2f,0xbe,
0x4,0x8b,0x17,0x2f,0xc2,0xa5,0x97,0x5c,0x8a,0xb4,0xc6,0xb0,0x1a,0xa2,0xfb,0xf,
0x44,0x24,0x24,0x45,0x26,0xa,0xb2,0xb8,0x3c,0xcd,0x4,0xe7,0x35,0x59,0x2d,0xe5,
0x74,0xe,0xef,0xfa,0xea,0x97,0xd0,0x36,0x6b,0x9e,0xdd,0x37,0x3a,0x21,0xcb,0x57,
0x96,0x17,0xf3,0xab,0xe4,0x63,0xc6,0xc4,0x49,0xb8,0x6c,0xfa,0x14,0x2a,0x5b,0x19,
0x68,0x14,0x5c,0xc2,0x94,0xa0,0xa8,0xcc,0x63,0xb2,0x1c,0x6d,0x18,0xf5,0xe4,0x10,
0x75,0x3e,0x27,0xcd,0x4d,0xb2,0xb9,0x30,0x80,0x1b,0x97,0x2e,0x41,0x6f,0x29,0xf2,
0x4f,0x4b,0x6b,0x8d,0x86,0x4a,0xea,0xc6,0xd1,0x5b,0x48,0x87,0x82,0xa8,0x18,0xe5,
0x4a,0x8,0x4c,0x3b,0x6b,0xac,0xa9,0x45,0x5f,0x67,0x37,0x56,0x3c,0xf4,0x10,0x1e,
0xb8,0xfb,0x4e,0xac,0x5e,0xf1,0x28,0xc9,0xa1,0xd7,0x96,0x73,0x90,0xdf,0x59,0x23,
0x2f,0xbc,0x24,0xb5,0x1b,0x9,0x38,0x8f,0xbf,0xa7,0x26,0x6c,0x93,0x1,0xf5,0x2c,
0xfb,0x9f,0x47,0x66,0x97,0x35,0xff,0x6a,0xb6,0xe9,0x20,0x41,0x22,0xcd,0x57,0x1d,
0x93,0x22,0x4,0x35,0x7e,0x5d,0xbb,0xf4,0xd2,0x4b,0x70,0xe9,0xc5,0x17,0xe3,0xd9,
0xcf,0x7e,0x36,0xc6,0x8f,0x1f,0x4f,0x82,0xa8,0xb5,0xdf,0xd4,0xd7,0xd7,0x9a,0xcb,
0xa4,0x58,0x2c,0x52,0xab,0xcc,0xe2,0x7d,0xef,0x7f,0x1f,0xfe,0xed,0xfb,0x3f,0x36,
0x72,0x48,0x85,0x14,0x94,0x5e,0x1a,0x41,0x2a,0x8d,0x42,0xb1,0x80,0xac,0xdc,0x54,
0x8c,0x87,0x8d,0x1a,0xa2,0xb0,0xee,0xaf,0x94,0x6c,0x91,0x3a,0x11,0x81,0xb9,0xbc,
0x79,0x54,0x9c,0x34,0x83,0x55,0x90,0xf0,0x17,0x41,0x55,0x24,0xd4,0x24,0x74,0x94,
0x2e,0x5d,0x67,0x99,0xeb,0xfd,0xcf,0x7d,0xce,0xb3,0x71,0x1,0x9,0xe9,0xf2,0xcb,
0x2f,0x37,0x41,0x27,0x4d,0xb9,0xb6,0x26,0x67,0xbf,0x11,0x44,0x1c,0x22,0xb6,0x24,
0x5,0xb0,0xc8,0x41,0x79,0x28,0x77,0xc9,0xef,0x7e,0xf7,0x3b,0xdc,0x75,0xd7,0x5d,
0xf8,0xcd,0x6f,0x7e,0x8b,0x7e,0xa,0xe3,0x22,0xe3,0x26,0xc1,0xd9,0xd3,0xdb,0xab,
0x87,0xdb,0xef,0x87,0x12,0x89,0xf9,0xde,0xf7,0x83,0xe5,0x61,0x35,0xdf,0xf4,0x5c,
0xdd,0x67,0xbe,0x6b,0x6a,0x9b,0x65,0x9,0x7b,0x92,0xc3,0xab,0xdf,0xf3,0x3e,0xb4,
0xcc,0x3e,0x15,0x9,0x5f,0x74,0x2e,0x21,0xd,0x6a,0xe1,0x13,0x78,0x7f,0x88,0x66,
0x9a,0x75,0x19,0x5a,0x50,0x2a,0xb7,0x15,0x24,0xf0,0x25,0xf7,0x2d,0x41,0xf7,0xae,
0x2d,0xe8,0x67,0x1c,0x12,0xb4,0x34,0xc2,0x82,0x3a,0xd5,0x49,0x6a,0xfc,0xa5,0xee,
0xf7,0xcc,0xf,0x27,0xeb,0x4c,0xef,0xd3,0x4b,0xf9,0x4d,0xf5,0xfd,0x42,0x14,0x9f,
0xbd,0x24,0x10,0xdf,0x27,0x77,0x9a,0x66,0x71,0xab,0xf3,0x5c,0x65,0x77,0xc6,0x19,
0x67,0xe0,0xb9,0x57,0x5e,0x61,0xf9,0x95,0xcf,0xe7,0x8d,0x24,0x14,0x77,0x96,0xba,
0x1d,0x95,0x67,0x19,0x5a,0x2a,0x11,0x94,0x6e,0x7b,0xf2,0x20,0x22,0x4a,0x8a,0xe6,
0x8a,0xa8,0x6e,0x28,0xcf,0x5f,0xf0,0x82,0x17,0xe0,0x4f,0x77,0xdc,0x6e,0x77,0x66,
0x59,0x4e,0xfd,0x61,0x12,0x6f,0xf8,0xf8,0x87,0x31,0xe7,0xa2,0xa7,0xd9,0x7d,0xa3,
0x11,0x19,0xb6,0x1f,0x9f,0x79,0x1e,0xb0,0x52,0x26,0x68,0xed,0x6,0x65,0x1f,0xb,
0x5b,0xb2,0x38,0xff,0xf4,0x45,0xa8,0xab,0xb0,0x4e,0x31,0xaf,0x1d,0x39,0x1c,0x47,
0x28,0xa2,0xa,0x32,0xce,0x63,0x78,0xa5,0x0,0x65,0x36,0xd6,0xcd,0x85,0x7e,0xdc,
0xf8,0xf0,0x32,0xec,0xe,0x4a,0x36,0xb5,0x3d,0x6a,0x34,0xbc,0x4f,0x8d,0x40,0x65,
0x63,0xa7,0x27,0xa6,0x90,0xd4,0xf4,0xf5,0xbf,0xde,0x6e,0x31,0x88,0xa3,0x2f,0x81,
0x54,0x3d,0x1d,0xbc,0x64,0xf1,0xd4,0x9,0xaf,0x55,0x1b,0xb1,0xaf,0xd,0x48,0x24,
0x60,0xd4,0x16,0x29,0x3c,0xa5,0xe5,0x87,0x54,0xa5,0x33,0x14,0xac,0x9a,0x7c,0xb4,
0x79,0xfd,0x6,0xec,0xd8,0xba,0xd,0x9d,0x9b,0xd6,0x62,0xd7,0xe6,0x8d,0xd6,0x51,
0xbc,0xfe,0xf1,0x35,0x66,0x29,0xa8,0x73,0xd0,0x26,0x9e,0x51,0x9b,0x31,0xd1,0xa0,
0xa1,0x77,0x7a,0x8c,0x7c,0x4a,0xd5,0x78,0xf1,0x45,0xd6,0xf0,0xf5,0xb2,0xa8,0x43,
0x96,0x9f,0x29,0xa9,0x24,0xf4,0xa5,0x5,0x59,0x87,0x2c,0xcf,0x27,0x51,0x3b,0x3a,
0x65,0xe6,0x4c,0x9c,0x7a,0xea,0x6c,0x4c,0x9d,0x36,0xd,0xb,0xe6,0xcf,0xc7,0xac,
0xd9,0xb3,0xad,0x53,0x56,0x2e,0x17,0x3d,0x2b,0x8a,0xb3,0x4,0x6d,0xa4,0x91,0x6a,
0x38,0xa9,0x12,0x23,0xb7,0x92,0x3e,0xff,0xfc,0xe7,0x3f,0xc7,0x5f,0xfd,0xcd,0x3b,
0x91,0x66,0x42,0x29,0x27,0x79,0x2d,0x85,0x92,0xfa,0x13,0xe4,0x73,0xb7,0xdf,0xea,
0x18,0x9,0x7d,0x75,0x65,0x2b,0xd7,0x4c,0x6b,0xe6,0x7d,0x46,0xe,0xbc,0x47,0x7e,
0x75,0x95,0xad,0x4,0xfb,0xa9,0x7c,0xff,0x14,0x5a,0x2,0xa7,0x9f,0x36,0x17,0x53,
0xa6,0x4e,0x35,0xf7,0xd0,0xdc,0xb9,0x73,0xd1,0xd6,0xda,0x1a,0x75,0x9a,0xf2,0xbe,
0x28,0xff,0x95,0x3c,0xe5,0x23,0x1b,0x34,0x85,0xd6,0x63,0x2b,0x57,0x62,0xdd,0xba,
0x75,0x58,0xb1,0x62,0x5,0x36,0x6d,0xdc,0x8c,0xc7,0x1e,0x5b,0x89,0xf5,0x1b,0xd6,
0x61,0x13,0xf3,0x4f,0xbd,0xd1,0x29,0xe6,0x6b,0x6,0xb9,0xa8,0x23,0x95,0xf1,0xf4,
0x49,0x64,0xd2,0xe6,0xf5,0xc1,0x96,0x62,0xb1,0xec,0xe2,0x93,0x99,0xce,0x34,0x85,
0x9d,0xf2,0x2d,0x9a,0x54,0x29,0xc5,0x24,0x89,0x2,0xcb,0xcc,0x67,0x5c,0x53,0xd9,
0x1c,0xc6,0xd3,0x82,0x6a,0x66,0x7c,0x1a,0xc7,0x4f,0x44,0xd3,0x84,0x71,0x68,0x6e,
0x1b,0x87,0x9,0xe3,0x27,0x21,0xd7,0xdc,0x66,0x96,0xc4,0xc0,0xae,0xed,0xe8,0xdc,
0xd5,0x81,0x8e,0xed,0x3b,0x30,0xd0,0xdb,0x53,0x2d,0xcb,0x35,0xd8,0xb6,0x79,0xab,
0xd,0x2,0x10,0x49,0x78,0x7c,0x61,0xa0,0xdd,0xcb,0x98,0x14,0xe5,0xb4,0x46,0x66,
0x29,0x2f,0x8a,0xea,0x93,0x51,0xb2,0x78,0x4d,0xa3,0xab,0x94,0x8f,0x2a,0xe3,0x38,
0x2f,0x55,0x8e,0xea,0x2c,0xe6,0x7f,0xd6,0x11,0x3e,0x7b,0xd6,0x2c,0x4c,0x99,0xcc,
0xfc,0x9a,0x77,0x1a,0xa6,0xb3,0xc,0x67,0xcd,0x9f,0xcd,0xf2,0x3c,0xd5,0x5c,0x69,
0x2a,0x1f,0x41,0xbf,0x55,0xbe,0x59,0xf9,0x31,0xef,0x75,0xb4,0x7e,0x28,0x3e,0x4f,
0x65,0x61,0xb,0x53,0x2a,0x5f,0x95,0x7,0x3c,0x8f,0xcb,0x4c,0x73,0x3f,0xe4,0x22,
0xeb,0xee,0xe9,0xc7,0xe3,0x8f,0x3f,0x8e,0x47,0x1e,0x79,0x4,0x9b,0x36,0x6d,0xc2,
0x75,0xd7,0x5d,0x8b,0x47,0xd7,0xac,0xe3,0x3,0x98,0x87,0x7c,0x76,0x98,0xca,0xe0,
0x8a,0x57,0xbe,0x1c,0x97,0xbf,0xfa,0x2f,0xed,0x7d,0xa3,0x11,0x9a,0xbc,0x29,0xb7,
0x91,0x2c,0x30,0x66,0x82,0x15,0x40,0xde,0xef,0xc5,0xc2,0x69,0x33,0x70,0xc6,0xd4,
0x99,0xc8,0xc9,0x8a,0x4f,0xb2,0x6e,0xf0,0xcf,0xea,0xdd,0x28,0xc4,0xa8,0x21,0x7,
0xab,0xfc,0x71,0x18,0x1a,0xe5,0x62,0x88,0x2e,0xa,0xca,0x5f,0xdf,0xbf,0x4,0x3b,
0x4a,0xd4,0x64,0xa9,0xd5,0x64,0xe3,0xe1,0x88,0x23,0x4,0x66,0xe2,0xc7,0x51,0xaa,
0xd6,0x13,0x7d,0xf4,0xd5,0x90,0x9,0x99,0xfa,0x82,0xe,0x12,0xcc,0x12,0x5e,0xe2,
0x83,0x4,0x1b,0x62,0xda,0x16,0x5,0xac,0xc0,0x2f,0x14,0x69,0x18,0xf8,0xc8,0x27,
0xd3,0x26,0x44,0x96,0xde,0x7f,0x2f,0x96,0x3e,0xf8,0x10,0x56,0x2e,0x5d,0x66,0x9a,
0xa4,0x86,0x23,0x26,0xfc,0x2,0x74,0xbb,0x34,0xc3,0x58,0x3b,0xd6,0x8b,0x22,0xb7,
0xc5,0x7e,0xe0,0x33,0x95,0x8f,0xa6,0x79,0x57,0xf3,0xd3,0xe7,0xef,0xa5,0x15,0xe6,
0x72,0x39,0x3b,0x6a,0x18,0xe6,0x55,0x57,0x3e,0xd7,0x86,0x60,0x3e,0xf7,0xb9,0xcf,
0x35,0x4d,0xd2,0x97,0x36,0x48,0xa1,0x5c,0x91,0xb0,0x1f,0xa2,0x41,0x1f,0xc,0x71,
0xb2,0x25,0x64,0xf4,0x9e,0x6d,0xdb,0xb6,0x61,0xfe,0xa2,0xb3,0xec,0xda,0x81,0x1d,
0xda,0xd5,0x53,0xde,0xa7,0xeb,0x1e,0x35,0x6c,0xbd,0x4f,0x1d,0xc3,0x7a,0x4f,0x4b,
0x4b,0x8b,0x75,0x72,0x5e,0x7e,0xf9,0x65,0x78,0xd6,0xb3,0x9e,0x85,0x33,0xcf,0x3c,
0xd3,0xee,0xd5,0x3d,0xe2,0x26,0x13,0x52,0xfc,0x1c,0xb,0xb4,0xbe,0xfe,0xaa,0xc6,
0xdf,0xd3,0x83,0xd,0x1b,0x36,0xe0,0xf,0x7f,0xf8,0x3,0xfe,0x7c,0xc7,0x9d,0x66,
0x15,0xc4,0xef,0xce,0x66,0xb3,0x26,0xc4,0xf5,0x72,0xb9,0x75,0xa4,0xc1,0x47,0x2c,
0x4c,0x21,0x1f,0x64,0xd4,0x40,0xcc,0x49,0x92,0xe4,0x3d,0xb2,0x60,0xfc,0x64,0x94,
0x6e,0x75,0x42,0x1b,0xf9,0x48,0x55,0xf1,0x6a,0x98,0x98,0x34,0x8f,0x14,0x4,0xb9,
0xc,0x26,0x4d,0x9b,0x4e,0x82,0x5a,0x84,0x59,0x73,0xe6,0x62,0xf2,0x94,0xa9,0x18,
0xf0,0xcb,0xe8,0x2f,0x15,0xc5,0x39,0x8,0x49,0xb4,0xea,0x3b,0x59,0xff,0xf8,0x6a,
0xac,0x22,0x21,0x2d,0x7f,0xe8,0x7e,0x5e,0xeb,0xb6,0x61,0xc1,0x9a,0x60,0x96,0x64,
0x59,0xaa,0x6f,0x40,0x63,0xaa,0xf6,0xc7,0x60,0x1d,0x1a,0x2,0xdf,0xfa,0x72,0xf6,
0x96,0x81,0xd2,0x2d,0xeb,0x48,0xf2,0x5b,0x69,0x53,0x7f,0xc0,0x55,0x57,0x5d,0x85,
0xb,0xcd,0xb5,0x77,0xee,0x60,0xba,0xf5,0x28,0x9b,0xff,0x11,0x7b,0x88,0xf6,0xc1,
0x81,0x17,0x7d,0x92,0x94,0xac,0x71,0x23,0xc,0xe5,0x17,0xf3,0xa5,0x4b,0x6e,0x4a,
0xb6,0x39,0x75,0xb8,0xff,0xe9,0x4f,0x7f,0xc2,0xdd,0x77,0xdf,0x8d,0x5b,0xff,0xf8,
0x47,0x12,0xec,0x16,0x8b,0x93,0x94,0x12,0x29,0x16,0x7a,0xa7,0x6f,0x33,0xeb,0xd4,
0x7,0xc8,0x3c,0x66,0xdd,0xba,0xf4,0x8a,0x67,0xe3,0xca,0xb7,0xbc,0x27,0x7a,0xf8,
0x18,0x41,0x4a,0x65,0x57,0x2e,0x61,0xf1,0x29,0xd3,0xb0,0x78,0xe6,0x54,0xd4,0x98,
0xd2,0xe5,0xc8,0xe1,0x98,0x43,0xcd,0x55,0xc1,0x34,0x98,0x21,0x51,0xde,0x5a,0x2c,
0xe2,0xf6,0xa5,0xf,0x62,0xcb,0xc0,0x0,0xca,0x9a,0xbe,0xcf,0x6b,0xf9,0x61,0x97,
0x33,0x38,0x71,0x50,0xa3,0x56,0xf5,0x10,0x9,0x28,0xe6,0xf1,0xfa,0xfd,0x3a,0x97,
0xc0,0x11,0xe2,0x86,0x9f,0x44,0x9,0x79,0x36,0xaa,0x24,0x1b,0xd5,0xe3,0xd4,0x6a,
0x57,0x3f,0xfa,0x18,0x1e,0x7d,0xf0,0x7e,0xeb,0x5c,0x2c,0x30,0xf4,0xb3,0x41,0xca,
0x1f,0x5f,0x4b,0xb5,0xcd,0xa7,0x80,0x8a,0xc0,0x46,0x4b,0x41,0x55,0xa6,0x76,0x2b,
0x6d,0x4e,0x45,0xaa,0x46,0x6c,0xa8,0xbe,0xfb,0x40,0x50,0x88,0x9a,0x56,0xf,0x2c,
0x5c,0xb0,0x0,0xe7,0x9c,0x7b,0x2e,0x2e,0xb9,0xe4,0x2,0xd3,0xc2,0xe5,0x23,0x16,
0x31,0x34,0x36,0x36,0xa1,0x42,0x41,0x1b,0x11,0x8d,0x9e,0xb2,0xd7,0x8d,0x63,0xe9,
0xe1,0x31,0xc5,0x86,0xff,0x44,0xa8,0x26,0xcb,0x10,0xb,0xed,0x53,0x4e,0x3d,0xcd,
0x4,0xb6,0x3e,0xf,0x62,0x48,0x3c,0xf5,0xee,0x2b,0xae,0xb8,0x2,0xa7,0x9f,0x3e,
0x17,0x67,0x9c,0xb9,0xc8,0xe2,0x53,0x57,0x57,0x8f,0xb6,0xb6,0x36,0xa,0xbc,0x1c,
0x89,0x40,0x6e,0xa0,0xc8,0xc5,0xa1,0xf8,0xe8,0xa8,0xcf,0xbd,0xd4,0xba,0x6f,0xbc,
0xf1,0x26,0x2c,0x95,0x2b,0xed,0xc1,0x7,0x48,0x44,0x3b,0xad,0x83,0xb8,0xab,0xab,
0x93,0x2,0xac,0xc8,0x7b,0xa9,0xe1,0xf3,0xf9,0x12,0x56,0x72,0x1f,0xc5,0xee,0x11,
0xea,0xb2,0xf6,0x6e,0x59,0x2,0xd2,0x6c,0x2d,0x6d,0xfc,0xcf,0xa7,0xf0,0xb4,0x59,
0xdf,0x2c,0x30,0xf5,0x6b,0xc9,0x32,0xe8,0xa7,0xdc,0x14,0x79,0x37,0xb6,0x4f,0xc4,
0xa9,0xa7,0xcd,0xc7,0xd4,0xe9,0xd3,0xd1,0x38,0x69,0x22,0xf2,0xb5,0x35,0x48,0xd7,
0xe4,0x91,0xad,0xab,0x43,0x26,0x97,0x45,0x6e,0xa0,0x82,0xcd,0x1b,0xd6,0x63,0xc3,
0xfa,0xb5,0x78,0x7c,0xe5,0xa3,0xe8,0xee,0xdc,0x83,0x80,0x71,0x29,0xf5,0xf6,0x5a,
0xbf,0x8f,0xca,0x5d,0x9d,0xea,0x52,0x3a,0xfd,0x84,0x66,0x6d,0x9b,0xad,0x6b,0xf1,
0x31,0xcd,0x7c,0x9f,0x9c,0x8b,0x10,0x77,0x14,0xc7,0xe5,0xab,0x4e,0xf1,0x32,0x89,
0xa7,0xb9,0xb9,0xd9,0x5c,0x67,0xb,0x17,0x2e,0xc4,0x79,0xe7,0x9e,0x87,0xc6,0xa6,
0x7a,0xb4,0x8f,0x6b,0xb3,0x4e,0xf5,0x7c,0x2e,0x6f,0xe5,0xac,0x8d,0xad,0xd2,0xd4,
0x38,0x34,0x38,0x40,0x30,0x21,0xaf,0x6b,0x6c,0x33,0x7,0xa0,0x32,0x7c,0x99,0xaa,
0x73,0xf9,0xf6,0xdb,0xef,0xc0,0x9d,0x77,0xde,0x41,0xb2,0xdd,0x68,0x43,0x54,0xbb,
0xba,0x7a,0xcc,0x2d,0x55,0x2a,0x31,0xd,0xcc,0x33,0x59,0x82,0x1a,0xd9,0xb4,0xbf,
0x58,0x49,0x49,0xcd,0xa6,0xe5,0x23,0x4d,0xbb,0xc8,0x32,0x7b,0xdb,0x7b,0xde,0x8f,
0x29,0x97,0x3f,0xab,0xfa,0xed,0xd8,0x40,0xb2,0xcc,0xbc,0x4d,0x4b,0x15,0x2b,0xe1,
0xa2,0x59,0xb3,0xb1,0xb0,0x65,0x2,0x75,0x86,0xc8,0x1d,0x37,0x1a,0x31,0x6a,0xc8,
0x41,0x95,0xca,0x1a,0x36,0xff,0xb,0xd9,0x38,0xa5,0x88,0x48,0xf3,0xfe,0xdd,0xf2,
0x15,0xd8,0xa6,0xc6,0xcf,0x2,0xd0,0xc8,0x24,0x41,0x3b,0x3c,0x8d,0x24,0x4,0xd4,
0x44,0x6d,0x84,0x8f,0x1a,0x3d,0xb3,0x5b,0x6e,0x17,0xc5,0x34,0x43,0xad,0xcb,0x46,
0xe0,0x74,0x75,0xa1,0x4f,0x1d,0x9f,0x3b,0x77,0x61,0xdd,0x8a,0x87,0xcd,0xcf,0xbc,
0x79,0xfd,0x3a,0x5b,0x14,0x58,0xfd,0x7,0x7e,0xa2,0x6c,0x2,0xcb,0x4,0xa,0x8f,
0x22,0x48,0xe5,0x85,0x88,0xc0,0x9a,0x3a,0x8f,0xd2,0x79,0xe5,0x6e,0x8a,0x96,0x5,
0xe1,0x25,0xe6,0x47,0x1c,0xe4,0x13,0x97,0x4f,0x59,0x42,0x76,0x1c,0x85,0x46,0x6b,
0x6b,0x1b,0x89,0xe0,0x42,0x2c,0x98,0xbf,0x0,0xe7,0x5f,0x70,0xbe,0x59,0xa,0x42,
0x58,0x39,0x70,0xe4,0x8a,0x70,0x40,0x6e,0xf2,0xc5,0xfa,0x3b,0x14,0xc,0x57,0xb9,
0x5e,0xfd,0x17,0x7f,0x89,0xdf,0xfc,0xe6,0x37,0x96,0x1f,0x22,0x18,0x43,0x35,0x6d,
0xc2,0x8f,0x7f,0xfc,0x63,0xb3,0xc,0xc2,0x50,0x8e,0x25,0x11,0x4a,0xd4,0x21,0x2b,
0x97,0x49,0x99,0x1a,0xec,0x76,0xa,0xfd,0x3d,0x7b,0xf6,0x98,0xcb,0x62,0xe5,0xca,
0x95,0x78,0xe0,0x81,0x7,0x70,0xcf,0xbd,0xf7,0x62,0xcb,0x96,0x2d,0xf6,0x4c,0x69,
0xc4,0x3a,0xe,0x57,0xb3,0xed,0xd2,0x90,0xa8,0x1b,0xc1,0xe9,0x2,0xa3,0xa1,0xbc,
0xd2,0xbb,0x2,0xb9,0x65,0xf8,0x9d,0x66,0xd4,0xd7,0x33,0xaf,0xbc,0x86,0x3a,0xd4,
0x34,0xd3,0x6a,0x99,0x3e,0xd,0x93,0x66,0x9d,0x66,0x1d,0xed,0x75,0xd,0xcd,0x28,
0xd0,0x92,0xeb,0xe9,0xed,0x47,0x79,0x60,0x27,0xfa,0x3b,0xbb,0xd1,0xb3,0x7d,0x27,
0xb6,0xaf,0xdd,0x80,0x2d,0x6b,0xd6,0x53,0x7b,0x7e,0xd4,0x2c,0x5,0xcd,0xbc,0x4e,
0xb2,0xec,0xa3,0x2e,0x60,0x11,0xc0,0x5e,0xd2,0x16,0xcc,0x2a,0x61,0x7e,0xea,0x8d,
0xe6,0xa2,0xe0,0x8f,0x14,0x6f,0x9,0x58,0xa5,0xc1,0x5c,0x7a,0x14,0xa6,0x8a,0xe7,
0xa4,0x9,0xed,0xa8,0xa7,0x15,0x35,0x6d,0xda,0x34,0xcc,0x99,0x33,0xc7,0x48,0xfd,
0x5c,0x92,0xfa,0xcc,0x19,0x33,0xcd,0xe2,0x8c,0x48,0x5c,0x20,0xe9,0xee,0x6f,0x66,
0x58,0x66,0x44,0x79,0x1d,0x91,0x72,0x94,0x9,0xc9,0x64,0xc6,0xc8,0x43,0xbf,0xf5,
0xd9,0xae,0x44,0xda,0xdb,0xb6,0xee,0xc2,0xee,0xdd,0x1d,0xd8,0xba,0x75,0x1b,0xee,
0xb8,0xe3,0xe,0xac,0x5a,0xb5,0xca,0x8e,0x52,0x46,0x44,0xac,0x7b,0x71,0x60,0x3d,
0xb0,0xb7,0xe,0xb9,0xa4,0x34,0x28,0x5f,0x4b,0x65,0x2a,0x16,0x9e,0xc4,0x66,0x5,
0x73,0xcf,0x3e,0x7,0x6f,0xf8,0x9b,0xbf,0x45,0xa1,0xa9,0x69,0x90,0xa0,0x75,0xcf,
0x68,0x87,0x26,0xf9,0x95,0x53,0xca,0x5b,0x1f,0x75,0xc5,0x32,0x2e,0x9e,0x35,0xf,
0xf3,0x27,0xb7,0xf3,0xf3,0x5e,0x2b,0x7d,0x34,0x61,0x74,0x92,0x3,0xff,0xba,0x2a,
0x65,0xdc,0xfb,0xd8,0x32,0xac,0xec,0x18,0x40,0x49,0xd,0x3c,0xcb,0x4a,0x46,0xed,
0xc4,0x86,0xe0,0x8f,0xb0,0x8a,0x96,0x62,0x5c,0x33,0x6c,0xf4,0x1a,0xc9,0xe0,0xf7,
0x17,0xf0,0xc0,0x3d,0xf7,0xe2,0x81,0x7b,0xef,0xc1,0x23,0x4b,0xee,0x45,0x59,0x1a,
0x2d,0xd3,0x54,0x1e,0x28,0xd8,0xd8,0x73,0xb9,0x34,0x92,0x64,0x1,0x11,0xa0,0xfc,
0xf2,0x82,0xf6,0xb7,0x56,0x8a,0xe2,0xf6,0xae,0x63,0x69,0x48,0x3d,0x93,0x6,0xa8,
0xe,0x43,0xcd,0xf,0x90,0x60,0x54,0x23,0x17,0x34,0x5b,0xf7,0xb2,0xa7,0x3f,0x1d,
0x2f,0x7b,0xe9,0x4b,0x4c,0x1b,0x97,0x9b,0x41,0x50,0x3,0xaf,0x68,0x96,0x73,0xb5,
0xe1,0xea,0x68,0xd0,0x62,0x62,0x87,0x2,0x69,0xd1,0xb1,0x90,0x7b,0x12,0xc,0x57,
0xb9,0xbe,0xfc,0xf,0xff,0x8c,0xcf,0x7c,0xe6,0x33,0x51,0x3c,0xe2,0xea,0xc7,0x43,
0x5c,0x6a,0x1a,0x26,0x79,0xe3,0x8d,0x37,0xe,0xa,0xc6,0xa5,0x4b,0x97,0xda,0x78,
0x79,0x5d,0x5b,0xb2,0xe4,0x7e,0xf4,0xf7,0xf7,0xdb,0x90,0x4f,0x69,0xab,0x72,0x5d,
0x18,0xc1,0x50,0xa8,0xeb,0x59,0x4a,0x8f,0x3e,0xeb,0x3c,0x69,0xa2,0x77,0x5f,0x44,
0x6e,0xa3,0xea,0x39,0xef,0xd1,0xef,0x8b,0x54,0x26,0xb4,0x10,0x9c,0xea,0xd7,0xf4,
0x79,0xf3,0x30,0x97,0xa4,0x79,0xda,0x82,0x45,0x68,0x9f,0x32,0x1d,0xbd,0x3d,0xdd,
0x48,0x67,0x49,0xd1,0x8c,0x47,0x96,0xc7,0x81,0xce,0x2e,0xac,0xa2,0x6,0xbd,0x82,
0x71,0x7a,0x9c,0xc7,0x22,0xad,0xb9,0xac,0x8a,0x4d,0xe4,0xaf,0xf7,0x52,0x93,0xaf,
0x90,0xd4,0x52,0x2c,0x6f,0x55,0x43,0xb9,0x62,0xb4,0x4c,0xb7,0x2c,0xf,0x3f,0xc9,
0x77,0xb0,0x6c,0x87,0xe6,0x89,0xc5,0x81,0xef,0xd7,0xbd,0x43,0xe3,0x5f,0xa4,0x55,
0x30,0x75,0xea,0x54,0xbc,0xe8,0x45,0x2f,0xc2,0x65,0x97,0x5d,0x66,0x16,0x81,0xba,
0x8e,0x94,0x67,0x71,0x79,0xe9,0xdc,0xc4,0x33,0x7f,0x53,0xa2,0x5,0x1d,0x93,0x7c,
0x45,0x7d,0x13,0x7,0xe4,0x3c,0xef,0xab,0x5a,0xd4,0x7a,0xbe,0xdc,0x41,0x4a,0x7b,
0x81,0x79,0x28,0xa2,0xbe,0x83,0x16,0xc1,0xd,0xff,0x77,0x83,0xe5,0x69,0xb1,0x40,
0x8b,0x84,0x79,0xaf,0xfb,0x54,0x97,0x4c,0x80,0x33,0x3d,0x3a,0xdf,0x47,0x88,0x93,
0xd4,0xf4,0x37,0x14,0x96,0x3a,0x59,0x60,0xbc,0x4f,0xf1,0x8c,0xad,0xc3,0xee,0x6c,
0x1d,0xb2,0xb9,0xc,0xae,0x7a,0xc9,0x4b,0x48,0xe,0xe7,0xc3,0xcf,0xe6,0x99,0x4f,
0x25,0xd4,0xd4,0xd4,0x58,0xe7,0xf7,0x58,0x80,0x66,0x7c,0x8b,0xe6,0x3d,0x59,0xf0,
0x7e,0xc9,0x26,0x69,0xfe,0x5,0x2d,0xdf,0xda,0x6a,0xb9,0xec,0x93,0x77,0xa3,0x0,
0xa3,0xc7,0xad,0xc4,0xc6,0x67,0x9d,0x9a,0x9,0xf,0xfd,0x34,0xc7,0x1f,0xd8,0xb4,
0x11,0x4b,0x37,0xac,0x46,0x39,0x99,0x37,0x2d,0x4b,0x15,0x39,0xda,0xcc,0x87,0xf7,
0x4a,0x65,0x3b,0x41,0xd0,0x2c,0x63,0x9,0x7b,0xcd,0x70,0xd,0x2a,0x3e,0xf2,0xcc,
0xde,0xde,0x35,0xab,0xf1,0xeb,0x9f,0xfe,0x4,0xab,0x1e,0x5d,0x89,0xce,0x8e,0xe,
0xfb,0x5e,0x1d,0xbc,0x9,0x12,0x81,0x34,0x62,0x69,0xae,0xfa,0xac,0xbf,0x1,0x75,
0xda,0xb1,0xd,0xab,0x19,0x4b,0x53,0xd3,0xa8,0xa0,0xc1,0xf6,0xa7,0x76,0x57,0x3d,
0xd5,0x30,0x47,0x15,0xdd,0xc4,0x9,0x13,0x70,0x1a,0x5,0xda,0xa2,0x85,0xb,0x31,
0x73,0xe6,0x4c,0xeb,0x8c,0x9d,0x3c,0x79,0x92,0x69,0x93,0xfa,0xde,0x3a,0x97,0x29,
0xf6,0x54,0x31,0x63,0xe1,0x23,0xc8,0x97,0xae,0xcf,0x83,0xc4,0x20,0xc4,0xec,0x33,
0x4,0xc3,0x57,0x8e,0xfd,0x45,0xc2,0xc1,0x31,0xa8,0x29,0xf,0xc1,0x9f,0xfe,0x7c,
0x37,0x5e,0x4a,0xc2,0x92,0x15,0x30,0x5c,0x83,0x91,0x85,0x70,0xd1,0x85,0x17,0x62,
0xfb,0xce,0xe,0xac,0x5e,0xbd,0x86,0x42,0x49,0x2,0x97,0xf9,0x24,0x97,0x5,0xbf,
0x93,0x0,0x52,0x5d,0x48,0xa5,0x94,0x26,0x59,0x16,0x52,0x1e,0x32,0x24,0x61,0xe6,
0x29,0x65,0x91,0x2c,0xc7,0x4,0x5,0x72,0x22,0x53,0xb2,0xc9,0x57,0xa0,0x76,0xec,
0x4b,0x38,0x33,0x31,0x1,0x8f,0xcd,0xe3,0xc7,0x63,0xfc,0xb4,0xa9,0x68,0x63,0x3e,
0x35,0xd2,0x32,0x68,0xa0,0x35,0xd5,0xd8,0xda,0x82,0xe6,0x96,0x66,0xe4,0xf2,0x79,
0x1b,0x39,0xb5,0x7d,0xcb,0x66,0xec,0xde,0xb0,0x11,0x3b,0xd5,0x39,0xbc,0x73,0x7,
0xba,0x58,0x6e,0x5a,0x60,0xae,0xdc,0xdd,0x6d,0xef,0x4b,0x33,0xde,0x91,0xb,0x4a,
0x79,0xcc,0x48,0x33,0x5e,0x12,0xfc,0x72,0x19,0xda,0x3a,0x3b,0x54,0x54,0x8c,0xae,
0x55,0xf,0x74,0x3,0xeb,0x66,0x2a,0xc9,0xf4,0x9a,0x56,0x2f,0x4d,0x5a,0x6e,0x98,
0xa4,0xd,0xf9,0x3d,0x63,0xf1,0x22,0xcc,0x9a,0x79,0x8a,0x59,0x3,0xea,0x30,0x9e,
0x4c,0xcb,0xe4,0x94,0x39,0xb3,0x90,0xcf,0xd7,0xe8,0x56,0x2b,0x27,0xcb,0x17,0xf1,
0x1a,0x2f,0x58,0x5d,0x67,0x24,0x54,0x77,0x54,0x10,0xba,0x16,0xcf,0x50,0xd6,0x33,
0x55,0xe6,0xf6,0x43,0xfd,0x46,0x9f,0x99,0x57,0x8f,0xb1,0xee,0xad,0x5f,0xbd,0x1,
0xf,0x3c,0xf4,0x0,0x36,0x6e,0x5a,0x8f,0xd5,0x6b,0x57,0x63,0xeb,0xb6,0xad,0xd8,
0xbc,0x71,0xcb,0x60,0xbd,0x50,0xfe,0xaa,0xf,0xc3,0x3c,0x40,0xfc,0x6c,0xd5,0x81,
0x41,0xee,0x38,0xbb,0x66,0x19,0x1d,0x9a,0xc0,0x57,0x7d,0x4d,0x5,0x24,0xaa,0x4a,
0xa,0x65,0xfe,0x46,0xe4,0xac,0x75,0xcb,0x52,0xe9,0x1c,0xc6,0x4f,0x9f,0x89,0xd6,
0xf1,0xed,0x18,0x37,0x69,0x2,0x1a,0xdb,0x98,0xaf,0xad,0xad,0xa8,0x99,0x30,0x11,
0x35,0xb5,0xb5,0x24,0x3d,0x5a,0xfd,0x5e,0x9a,0x65,0x91,0x80,0xc7,0xf6,0xa1,0xf7,
0x68,0x84,0x56,0x6c,0xd5,0x8c,0x66,0xf8,0x89,0x14,0xeb,0x9e,0x14,0x1,0xd6,0x50,
0x16,0x96,0x14,0xda,0xf1,0xcc,0x9b,0x4b,0xd8,0x36,0xa7,0xd6,0xd7,0x9a,0xaa,0xa2,
0x65,0xe4,0x25,0xaf,0xa2,0xd2,0x19,0xd9,0x18,0x35,0xe4,0x20,0x21,0x10,0x92,0x91,
0xc5,0xce,0x8f,0x6e,0xd9,0x89,0xbb,0x68,0xea,0xf6,0xa7,0x35,0x64,0x6c,0x64,0x65,
0x73,0x91,0xa6,0x4b,0x56,0xe4,0x40,0xa1,0x58,0xae,0x94,0x50,0x4b,0x21,0xf0,0xa5,
0xbf,0x7d,0x1b,0xba,0xb6,0x6e,0xb5,0xef,0xd5,0x18,0xc,0xcc,0xf5,0xe1,0x62,0x1e,
0x13,0x9d,0x10,0x1f,0xb3,0x99,0xa4,0xb9,0x85,0x34,0x3c,0x53,0x7e,0xf7,0xf3,0xce,
0x3b,0xf,0x67,0x2c,0x5a,0x8c,0xe7,0x3d,0xef,0x79,0x83,0x43,0x46,0x75,0xaf,0x26,
0xaa,0x45,0xa3,0x86,0x86,0xa2,0xda,0xc2,0x4f,0x18,0xf6,0x8f,0xf,0xb0,0xe2,0xb1,
0x35,0x36,0xbc,0x51,0xcb,0x4a,0xc4,0xf9,0x61,0x31,0xac,0x66,0x88,0xae,0x29,0x3d,
0xa1,0x4,0x20,0x3f,0xab,0xb1,0xc5,0x90,0x65,0x28,0xeb,0x51,0xbf,0xa8,0x2a,0xc2,
0x6c,0x84,0x81,0xcd,0x3a,0x66,0xe2,0x21,0x7,0x9c,0xec,0x28,0xed,0x19,0x51,0xdb,
0xd2,0x62,0xe3,0xeb,0x73,0xf9,0x3a,0xcc,0x9a,0x7b,0x1a,0x66,0x9c,0x32,0x1b,0xd3,
0x16,0x9d,0xc6,0xe7,0x93,0x28,0xa8,0x21,0x97,0xb,0x1a,0xd6,0xeb,0xf3,0xbc,0x88,
0x1d,0x5b,0xb6,0x60,0xc3,0xda,0xb5,0x58,0xfe,0xe0,0x12,0xec,0xde,0xb5,0x13,0xa9,
0xe2,0x0,0xe9,0x26,0xb2,0xa4,0x6c,0xb4,0x17,0x61,0x42,0x34,0x7e,0xe9,0x10,0x48,
0x10,0xd8,0x51,0x42,0xa1,0x1a,0x57,0xfd,0x46,0x5a,0xb8,0x20,0x8d,0xde,0x86,0x86,
0x52,0x73,0x6e,0x69,0x69,0xc2,0x69,0xa7,0x9d,0x66,0x7d,0x4,0x9a,0x1c,0xa6,0x65,
0x38,0xb4,0xb0,0x9d,0x4,0xae,0x34,0xf4,0xc1,0xfc,0x30,0xed,0x7f,0x5f,0x24,0x2a,
0x7b,0x3b,0x8a,0xe3,0x7e,0x16,0x9,0x6c,0x11,0x8d,0xc8,0x42,0xfd,0x28,0xf2,0xff,
0x77,0x75,0xf5,0x62,0x1b,0x89,0xec,0xa6,0x9b,0x6e,0xc2,0xbd,0xf7,0xde,0x6b,0x1d,
0xc5,0x36,0xfc,0x98,0xc2,0x4b,0xae,0x3a,0x59,0xa6,0xb6,0x6e,0x14,0x85,0x39,0xed,
0x16,0xcb,0x77,0xa5,0x80,0xb7,0x18,0xb2,0x1a,0x14,0x55,0x3d,0x17,0xe9,0xe9,0x86,
0x22,0x6f,0x30,0x4b,0xc0,0x48,0x28,0xc9,0xb8,0xd2,0xa,0x25,0x79,0x79,0xd4,0xfc,
0xdb,0xa8,0xa0,0xcc,0x5b,0xb8,0x8,0xd3,0x49,0x70,0xed,0x93,0xa6,0xa2,0xec,0x53,
0xf8,0x93,0x59,0xe4,0x42,0xf2,0x95,0x37,0x2c,0x17,0xf5,0x53,0xed,0xf,0x89,0x48,
0x8d,0xfc,0x9a,0x30,0x61,0x3c,0x6f,0x39,0x91,0x75,0xf4,0xd8,0x41,0xa,0xc3,0x44,
0xe6,0xfb,0xf3,0xcf,0x5c,0x8c,0x3a,0x65,0xb4,0xda,0xa7,0x91,0x78,0xf5,0x86,0x11,
0x8c,0x51,0x44,0xe,0xac,0x68,0xac,0x6c,0xeb,0xf6,0xec,0xc1,0x6d,0xcb,0x1f,0x41,
0x37,0x33,0xba,0xc4,0x4c,0xce,0xc,0xd3,0x58,0x4f,0x24,0x64,0x39,0x78,0xd4,0x5c,
0xd5,0xb8,0xb4,0xe6,0xfb,0x3d,0xbf,0xba,0x1e,0xbf,0xfa,0xf6,0xbf,0x51,0xa8,0x55,
0x5d,0x1d,0x6c,0x60,0x6,0x9e,0x4b,0xeb,0xdc,0x1f,0x32,0xe7,0x75,0xdf,0xa2,0xc5,
0x8b,0x6d,0xa2,0x96,0xc2,0x94,0x29,0x13,0x8c,0x14,0x24,0x64,0x34,0x72,0x47,0x82,
0x33,0x2d,0xed,0x8b,0xf7,0x6a,0x12,0x96,0x3a,0x48,0x55,0x8a,0x1e,0x2b,0xde,0x3e,
0x96,0x80,0x41,0xef,0x38,0x91,0x45,0x7c,0x60,0xf9,0x6c,0xdb,0xb1,0xc7,0x88,0x6d,
0xfd,0xfa,0xf5,0x83,0x4,0x68,0x31,0x1c,0xd2,0x60,0x4c,0x48,0x4a,0x0,0x56,0x7f,
0xaf,0xdc,0x8a,0x40,0x21,0x47,0xed,0x4c,0x1a,0x98,0x36,0x8e,0x9,0xd9,0xf0,0xa,
0xcc,0x87,0x5c,0x4d,0x16,0x53,0x4e,0x99,0x89,0xe9,0xa7,0xcf,0xc3,0x8c,0xd3,0xe7,
0xa2,0x9e,0x42,0xb8,0xe4,0xd7,0x52,0x20,0xa7,0x51,0x47,0x6b,0x20,0x9f,0xcf,0xa2,
0x63,0xe7,0x4e,0x3c,0xba,0x72,0x99,0xcd,0x22,0xde,0xbe,0x72,0x25,0x8a,0x14,0xa6,
0x95,0x42,0x1,0xa5,0xde,0x2,0x2a,0x3e,0xf3,0x94,0xf5,0x49,0x19,0x69,0xce,0x1a,
0x9e,0xfa,0x14,0xd0,0x71,0xfc,0x62,0xa1,0x3d,0x8c,0x71,0xc5,0xb8,0x55,0xd3,0xc0,
0xdf,0x6a,0x62,0x9c,0xee,0x3d,0xed,0xf4,0xd3,0xad,0xec,0x9e,0xce,0xa0,0xe1,0xbe,
0xcd,0x4d,0xcd,0x8c,0x43,0x86,0xf2,0x34,0x1a,0x9,0x26,0xab,0x49,0x30,0xb,0xd2,
0xce,0x22,0xe1,0x3b,0x8,0xd6,0xa3,0x3,0x30,0xb4,0xa3,0x98,0x5f,0x77,0x75,0x75,
0xe1,0xa6,0x9b,0x6f,0xc2,0xfd,0xf7,0xdf,0x8f,0x3f,0xff,0xf9,0x76,0xec,0xde,0xbd,
0xdb,0x96,0xf0,0xe8,0xe9,0xed,0xa3,0xb5,0x15,0x91,0x87,0x48,0x44,0xee,0x27,0x9f,
0x75,0x44,0xc3,0x81,0x25,0xa4,0x65,0xa9,0x46,0xb4,0xab,0x1a,0x18,0xd5,0x55,0x71,
0xab,0x8e,0x7a,0x6b,0xd6,0xf7,0xac,0x43,0x5e,0xd7,0xca,0x4c,0xb0,0x86,0xf3,0xd6,
0x34,0x4c,0xc2,0xe9,0xb,0x17,0x60,0x6,0x2d,0x9b,0x89,0xd3,0xa7,0xc0,0x63,0x7e,
0x6,0x75,0x79,0x4,0x72,0xb9,0xc9,0x3d,0xa8,0x77,0xf1,0x59,0x32,0x22,0x52,0xb4,
0x26,0x44,0x5a,0x22,0x1f,0xbd,0x83,0x8f,0xb1,0x77,0x1e,0x0,0x96,0xa3,0xfa,0x21,
0x9a,0x9b,0xe5,0xf2,0x1c,0xbe,0x13,0x7c,0xb4,0xa3,0x44,0xa9,0x95,0x63,0x19,0x4c,
0x66,0x7b,0x7d,0xf6,0xb9,0xe7,0xa1,0x4e,0xe3,0xb7,0x99,0xc9,0x36,0xe4,0x78,0x84,
0x63,0xc4,0x93,0x83,0xa2,0xa7,0x4a,0xae,0x7e,0x85,0xad,0xac,0xf8,0x7f,0x5c,0xbe,
0x14,0xbb,0x3,0x6a,0x7c,0x6a,0xbd,0x6c,0xc6,0x23,0xaf,0xf3,0x99,0xb1,0x62,0x8e,
0x6a,0x11,0xbc,0x2c,0xc9,0xe1,0x9f,0xdf,0xf7,0x7e,0x6c,0x5b,0xf1,0x18,0x73,0x3a,
0x8a,0xa7,0xd2,0x12,0x6b,0xf9,0xd2,0x24,0x27,0x4d,0x9e,0x64,0x1d,0x9c,0x53,0xa6,
0x4c,0x36,0x5f,0xfb,0x9c,0xd9,0xa7,0xda,0xf2,0xce,0xe9,0x21,0x5a,0xa4,0x46,0x79,
0xc,0x87,0x3,0x52,0xce,0xd6,0x1d,0x35,0xc5,0xa1,0x50,0xf1,0x9e,0xc8,0x22,0x3e,
0x90,0x1c,0xa,0xa5,0xa,0x9e,0xff,0xfc,0xe7,0x9b,0x56,0x3b,0x28,0x10,0x19,0x6d,
0x8b,0x29,0xcb,0x5b,0xd7,0x14,0x12,0x65,0x6a,0xb8,0xf2,0x5,0xa5,0x34,0x14,0x92,
0x5f,0x52,0x8,0xe5,0x9a,0xea,0x51,0x3b,0xb1,0x15,0x75,0xb5,0xf5,0x68,0x6a,0x1d,
0x87,0x29,0xd3,0x66,0x60,0xca,0xd4,0x69,0xa8,0x9d,0x36,0xcd,0x3a,0xf9,0x8b,0x14,
0x8c,0x5d,0x1d,0xbb,0x6d,0x99,0x8d,0x81,0xde,0xdd,0xd8,0xb6,0x79,0x33,0xb6,0x6f,
0xd9,0x88,0x75,0x8f,0xaf,0x42,0x79,0xa0,0x7,0x4d,0xa5,0xea,0x8,0xa5,0x24,0xcd,
0x7e,0xb,0x7a,0x30,0x5f,0x5f,0x55,0x32,0xd4,0x4f,0xa1,0x38,0x44,0x21,0x12,0xb0,
0x76,0x5d,0xf1,0xe1,0xb9,0x2c,0xe,0x7d,0x27,0x17,0x8e,0xac,0x1,0x4d,0xf8,0x9b,
0x3a,0x65,0x12,0x26,0x4c,0x9c,0x68,0xe5,0x37,0x77,0xce,0x1c,0x9c,0x71,0xc6,0x99,
0xe6,0x4b,0x3f,0xb0,0x80,0xe4,0x6,0xda,0xb7,0x2c,0xf8,0x28,0x1b,0x44,0x10,0xb,
0xf1,0x38,0xfd,0x1,0x5,0xab,0x8e,0xe5,0x52,0x19,0x9b,0x98,0x6,0x75,0xb6,0x6f,
0xda,0xb4,0xd,0x6b,0xd6,0xac,0xb6,0x19,0xda,0xf,0x3e,0xf0,0x20,0x36,0x6f,0xd9,
0x6c,0xcf,0x90,0xa2,0xa0,0x3a,0xa5,0x79,0x6,0x82,0x11,0x69,0x5c,0x77,0xaa,0xd0,
0x73,0x75,0xc9,0x68,0x21,0xf2,0x83,0xf1,0x3e,0xda,0xd,0x1,0x95,0xb,0x5e,0x57,
0x33,0x4a,0x92,0x48,0x1b,0xd4,0x49,0xcc,0x7c,0xad,0x6f,0x69,0x36,0xb7,0xd0,0xa4,
0x69,0x53,0x2d,0x64,0x6b,0xc7,0xd1,0x42,0x21,0x59,0x32,0x9b,0x44,0x18,0x51,0xb3,
0x13,0x1d,0x8,0x22,0x19,0xe5,0x5f,0x44,0x36,0xd2,0x96,0x5,0x1d,0xe2,0xe4,0xe,
0x6b,0x18,0x28,0x1e,0xbc,0x41,0x13,0x25,0xeb,0xeb,0xe5,0x42,0x8b,0x9e,0x36,0x96,
0xa0,0xf5,0xb0,0x64,0xf9,0x66,0x82,0x10,0xa7,0xd3,0x42,0x3a,0x77,0xe6,0x4c,0xd4,
0x48,0x89,0x1b,0x5,0x69,0x1d,0x35,0xe4,0xd0,0x55,0x2c,0xe1,0x7f,0xef,0xbd,0x13,
0x7b,0x52,0x21,0x8a,0x64,0xdf,0x4c,0x90,0x42,0xce,0xd7,0x48,0x1e,0x91,0xc4,0xc8,
0x81,0x1a,0x87,0x1a,0x82,0x84,0xcf,0x96,0xc7,0x97,0xe1,0x9f,0xde,0xf1,0x6e,0x34,
0x24,0x3d,0x36,0xa8,0xa8,0x32,0x68,0xae,0xc0,0xeb,0x5f,0xff,0x7a,0xbc,0xe5,0x2d,
0x7f,0x83,0x29,0x93,0x27,0x58,0xa3,0x96,0xa0,0x89,0xd3,0xa9,0xc6,0xa4,0x73,0x85,
0x78,0x74,0x43,0x25,0x39,0x4c,0x47,0xb1,0xda,0x55,0xf5,0x74,0x10,0x14,0x70,0x7,
0x76,0x14,0xab,0x78,0x4f,0x64,0x11,0xef,0x1f,0x1f,0xc6,0x26,0x91,0xc1,0x7,0x3e,
0xf0,0x1,0x7c,0xf7,0xbb,0xdf,0xb5,0x74,0xda,0x35,0x6,0x69,0x53,0xca,0x3,0x9,
0x4a,0x69,0xba,0x25,0x92,0x42,0xa6,0xb9,0xd,0x67,0x9d,0x7f,0x1,0xe6,0x9c,0xb6,
0x8,0x73,0xa8,0x8d,0x6b,0x8b,0xcd,0xee,0x42,0xaf,0xd,0xf7,0xd5,0xc2,0x80,0x52,
0xc4,0xd6,0xad,0x5e,0x83,0xe5,0x4b,0x97,0x58,0x47,0x7f,0x27,0xad,0x3,0x8f,0xea,
0xab,0x66,0x7f,0x67,0x28,0x74,0xa5,0x99,0x6a,0x38,0xae,0x56,0x25,0xe5,0xcb,0x6c,
0x29,0x11,0x69,0xc8,0x91,0xe5,0x21,0xad,0x99,0xc2,0x8c,0xe4,0x6b,0xae,0x21,0x6a,
0xbc,0xfc,0x85,0x62,0x12,0x35,0x5e,0x75,0x2c,0x57,0xcb,0x46,0x33,0xbc,0x75,0x7c,
0xc5,0xcb,0x5e,0x6a,0xb3,0xae,0xe3,0x85,0xf8,0x24,0xd0,0xc3,0x20,0x72,0xb,0xc5,
0xe5,0x15,0x97,0xe9,0xfe,0xc2,0xce,0x5c,0x45,0xb1,0xb4,0xac,0x42,0xca,0x75,0x58,
0xe5,0xfe,0x38,0x2f,0x76,0xec,0xd8,0x81,0x9f,0xfe,0xfc,0xe7,0xf8,0xfd,0xef,0x7f,
0x6f,0x73,0x32,0xe4,0x2e,0x92,0x5b,0x31,0xa0,0x64,0x8e,0xeb,0x85,0xde,0x31,0xb4,
0xbe,0xe8,0x3c,0xfe,0xbd,0xfd,0xbf,0x5f,0xe5,0xd0,0x47,0x2d,0x30,0xa8,0xa5,0xd2,
0xb5,0x5d,0x6e,0xd1,0xf2,0x21,0x81,0xc9,0xa7,0xcc,0xc7,0x59,0xe7,0x9d,0x83,0x79,
0x67,0x2c,0x42,0x4b,0x7b,0x1b,0x6,0x98,0x16,0x3f,0x51,0x63,0xcf,0x57,0x19,0x8,
0x7a,0xae,0xe6,0x70,0x68,0xa2,0x9f,0x10,0xa7,0x2b,0x81,0xb2,0xa8,0xc6,0xce,0xa0,
0xa5,0xcc,0xf9,0x17,0xbd,0x3b,0xba,0x2f,0x86,0x11,0xcf,0xbe,0x97,0x22,0x90,0x1c,
0x64,0x75,0x69,0x70,0xc1,0xb8,0x71,0x2d,0x7c,0x8f,0x9e,0x35,0xb6,0xa0,0xe5,0xec,
0x4b,0xac,0x8b,0x5a,0x25,0xba,0xa6,0x54,0xc0,0x85,0x33,0xa7,0x61,0xf1,0xe4,0xa9,
0xd1,0xe0,0x93,0x11,0x8e,0x11,0x49,0xe,0x72,0x1f,0xb1,0xc9,0x1a,0xe3,0x52,0xc9,
0x44,0x1f,0x1b,0xec,0x3d,0x8f,0xae,0xc4,0x63,0x1d,0x3b,0x6d,0xca,0xba,0xd6,0x89,
0xd1,0x6c,0x4f,0x1b,0xb9,0x34,0xc2,0x32,0x39,0x94,0x50,0x60,0xa3,0xca,0x50,0xb0,
0xfc,0xe2,0xbb,0xff,0x8e,0xbb,0xaf,0xbd,0x96,0x16,0x84,0x7c,0xe0,0x6c,0x21,0x4c,
0xcf,0xc2,0x45,0xb,0xf1,0xab,0x5f,0x5d,0x4b,0xcd,0x32,0x6f,0x2,0x2c,0x6e,0xd8,
0x36,0x9c,0x50,0x1d,0xae,0x7c,0x46,0x74,0x2d,0x7a,0x9e,0xa0,0x26,0x74,0x68,0x38,
0xd0,0x6e,0x38,0x72,0x1c,0xf8,0xc4,0xe1,0x63,0xc3,0x58,0x56,0x7d,0xef,0x43,0x91,
0xac,0xba,0x42,0x62,0x61,0x26,0x54,0x92,0x59,0xfc,0xe4,0xa7,0x3f,0xc1,0x9b,0xde,
0xf8,0x46,0xa,0xd7,0xaa,0x1f,0x9d,0x42,0x3c,0xdf,0xd2,0x8e,0xcb,0x9e,0xf7,0x22,
0xe4,0x1b,0x1b,0xd0,0xd2,0xda,0x80,0xe9,0xa7,0x9d,0xca,0xf3,0x7a,0x74,0xef,0xe9,
0xc1,0x96,0xd,0x9b,0xb0,0x65,0xe3,0x16,0x6c,0x5b,0xb7,0x1e,0x5d,0x9b,0x37,0xa2,
0xaf,0xa7,0xc7,0xe6,0xe,0x74,0xed,0xd9,0x63,0x23,0x84,0x72,0x55,0x19,0x15,0xf9,
0xd1,0x15,0x43,0xe5,0x61,0x24,0xd8,0x63,0x28,0x7f,0x4b,0x24,0x5a,0xe5,0x52,0x68,
0x6e,0x24,0xb9,0xe4,0x94,0xef,0xac,0x73,0xbe,0x2c,0x2,0x4d,0xdc,0xca,0xe0,0xd4,
0x39,0x73,0x71,0xda,0xbc,0x39,0x38,0xf7,0xfc,0xb3,0xad,0xc3,0x5f,0x33,0xc0,0xc7,
0x53,0xeb,0x9b,0x30,0x7e,0x2,0x85,0x61,0x6c,0x4d,0xf0,0x2d,0x7c,0xb4,0xd,0x21,
0xd5,0x76,0x97,0x4c,0x9f,0xde,0x14,0xa7,0x51,0x9f,0xa4,0xa1,0x6b,0xc2,0xa0,0xe6,
0x22,0xe8,0x7a,0x42,0xe5,0x2b,0x52,0x62,0x59,0x6b,0xc8,0xa8,0xfa,0x2,0x34,0x48,
0xe1,0x91,0x87,0x96,0xd3,0xa,0xd8,0x82,0x1d,0x3b,0x77,0x60,0x23,0xd3,0xd6,0xdb,
0xd7,0x8b,0x20,0xbd,0xd7,0xcd,0x22,0xca,0xd7,0x63,0x45,0x66,0x6c,0xb0,0x76,0xc5,
0x23,0x31,0x6a,0x56,0x72,0xae,0x14,0xbd,0x57,0xcb,0x38,0x28,0xb,0x64,0x0,0x69,
0x39,0x74,0xdd,0x53,0x24,0x61,0x5,0xb4,0x3e,0xd4,0xe9,0x3e,0xe5,0xd4,0xd9,0x68,
0xa2,0x85,0xd5,0xd2,0xd6,0x86,0x3a,0x5a,0x7,0xf5,0x9a,0xc7,0xd2,0xdc,0x8c,0xd0,
0xd3,0x2c,0xf0,0xa8,0xf3,0xd4,0x72,0x8e,0xef,0x49,0x51,0xf1,0x52,0xbe,0x89,0x20,
0x2d,0xa5,0x96,0xb0,0x6a,0xd0,0x79,0xf5,0x54,0x2b,0x93,0x2a,0xaf,0xa3,0xbb,0x4,
0xc5,0xcf,0xfe,0xb7,0x4f,0xd5,0x5b,0xab,0xbf,0x1b,0xfc,0x34,0x8,0x1b,0x8c,0xc1,
0xf6,0xec,0x31,0xad,0x6d,0x6d,0x4d,0xd1,0x3b,0xab,0x16,0xda,0x58,0x81,0x56,0x18,
0x50,0x19,0xc8,0x3a,0x4b,0x92,0x78,0xd3,0x94,0xd,0xcf,0x9d,0xbf,0x10,0xd3,0x9a,
0x9a,0x91,0x54,0xda,0x25,0xbe,0xe2,0xac,0x19,0x61,0x7c,0x31,0x22,0xc9,0x41,0x1b,
0x7b,0x9b,0xc9,0xca,0x9a,0xd6,0x43,0x6d,0xe9,0x1,0xa,0x86,0xa5,0xeb,0x36,0x22,
0xac,0x76,0xc,0x8e,0x64,0x14,0x19,0xf7,0x3c,0xb,0xb9,0x9e,0xc2,0xe2,0xe3,0x7f,
0xfb,0x56,0xf4,0xab,0x23,0x5a,0x6e,0x30,0x36,0x4,0x9,0xae,0x2f,0x7f,0xf9,0xef,
0xf1,0xba,0xd7,0xbf,0x16,0xd9,0x8c,0x66,0x30,0x8c,0xb8,0xac,0x1f,0x6,0x6a,0xa8,
0xfb,0x36,0xd6,0xe1,0x62,0x6d,0xa2,0x69,0x18,0x72,0x18,0xda,0x89,0xaa,0xaa,0x26,
0x92,0x8,0x13,0x9e,0x4d,0xa0,0x5a,0xb4,0x28,0xda,0x7,0x41,0x28,0x7,0x25,0xb4,
0x4e,0x9f,0x8d,0xd7,0xbf,0xfd,0x3,0xe8,0x1e,0xe8,0x47,0x5f,0xf7,0x2e,0xf4,0xee,
0xde,0x85,0x35,0xab,0x56,0xe1,0x91,0x25,0xf,0xa2,0x5c,0xa4,0x80,0x65,0x1e,0x6a,
0xbb,0x46,0x2d,0x10,0xa8,0xfc,0x1c,0x2a,0x44,0x9e,0xa8,0xa3,0x78,0x9f,0xfb,0x78,
0xae,0xdf,0x6a,0xcd,0x20,0x4d,0x1e,0xd3,0xac,0xeb,0xc9,0x13,0x27,0x40,0x6b,0x43,
0x9d,0x7e,0xfa,0x7c,0x5c,0x74,0xd1,0x85,0x91,0x66,0x2e,0x81,0xc9,0xc6,0x2c,0x61,
0x35,0x54,0x60,0xa9,0xbb,0xfb,0x0,0x54,0xd3,0x18,0x6b,0xdb,0xba,0x37,0x45,0x81,
0xa7,0x73,0xcd,0xcc,0xd6,0xc,0x62,0xa5,0xf7,0xe1,0x87,0x1f,0xc1,0x83,0xf,0x2d,
0xc5,0x1f,0xff,0xf8,0x47,0xb3,0xe,0xf4,0x5c,0x2d,0xaa,0x27,0x8b,0x49,0x93,0xd3,
0x6c,0x12,0x1e,0xff,0x4c,0xd3,0x96,0xff,0xa6,0x8a,0x38,0xf6,0xb6,0xea,0x2e,0x9f,
0xcd,0xd7,0x30,0xdf,0x74,0x93,0xee,0x91,0xf5,0xc3,0x53,0xd6,0xa7,0x5c,0x7d,0x1d,
0xf2,0xf5,0xb5,0xc8,0xd4,0xd6,0x61,0xc6,0xa9,0x73,0xcd,0x1d,0x34,0x73,0xce,0x3c,
0xa4,0x32,0x39,0xf4,0x33,0xcd,0x7e,0x3a,0x3b,0x98,0xfe,0x58,0x10,0x1f,0x9b,0xe6,
0x1f,0xc7,0x78,0x2f,0xe,0xb6,0xd2,0x6b,0x40,0xb3,0x29,0x93,0x11,0x39,0x50,0x58,
0xe,0xc9,0xe7,0xb1,0x8c,0x16,0x2a,0x7,0xcf,0x39,0xe7,0x2c,0xb4,0xb0,0x3c,0x6c,
0xd9,0x46,0x16,0xa3,0x8d,0x70,0x1b,0x61,0x69,0x1f,0x91,0xe4,0x20,0x8d,0x88,0xff,
0xa3,0xc0,0x46,0xb3,0xba,0xb3,0x13,0xb7,0x2f,0x7f,0x4,0xfd,0xbc,0x94,0xa0,0x50,
0x19,0xe9,0x28,0x33,0xde,0x79,0x36,0xbe,0xb5,0x4b,0x96,0xe0,0x9b,0x9f,0xfd,0xb4,
0x4d,0xa1,0x97,0x5b,0x43,0xd,0x59,0x2b,0x82,0x3e,0xfa,0xe8,0x23,0x14,0x6,0xbc,
0x91,0xd7,0x33,0x14,0xc,0x23,0x1f,0xaa,0xb0,0xfb,0x56,0xda,0xe1,0x2a,0x8c,0x69,
0xeb,0x52,0x1b,0xf7,0x47,0xd5,0x72,0x50,0x2d,0x53,0x67,0xbb,0x56,0x33,0xbd,0xe3,
0xae,0xbb,0x4d,0x40,0xe,0xed,0x73,0x48,0x50,0xe0,0xfb,0xb4,0x10,0xf3,0xd,0x6d,
0x28,0x16,0x8a,0x8,0x48,0x10,0xd2,0xb2,0xcc,0xc9,0x43,0xd5,0x5e,0x2,0xcd,0x96,
0xab,0x60,0x3,0xf2,0x49,0x44,0xfb,0x37,0xa4,0xe1,0x5e,0x2d,0x61,0x2b,0x1,0x5d,
0x66,0xc8,0xe7,0x72,0xd6,0x9,0x7e,0xd1,0xc5,0x17,0xe3,0xf2,0xcb,0x2e,0xb3,0x8e,
0x7d,0xb9,0x6a,0x34,0x74,0x55,0xab,0xbf,0x4a,0x83,0x95,0x70,0x37,0xd7,0x86,0xda,
0x2b,0xb5,0x6f,0x15,0x9b,0xde,0xb3,0xaf,0xd0,0x1a,0x46,0xc8,0xd,0xa6,0xb1,0x62,
0xfd,0x1,0x37,0xdd,0x74,0x33,0xfe,0xf0,0x87,0xdf,0x63,0xbd,0x36,0x41,0xea,0xed,
0xb1,0xc4,0xf7,0xf5,0xf5,0x53,0x10,0x92,0x1c,0x79,0x2e,0xf2,0x51,0x50,0x9a,0xa4,
0x7d,0xfb,0x9,0x59,0x2f,0x7c,0x7,0x59,0x41,0xa3,0x8a,0xf4,0xe7,0x55,0x37,0x72,
0x56,0xb2,0x24,0xfc,0xed,0x3c,0x49,0x2d,0x9f,0x71,0x2c,0x49,0x1b,0x65,0x5e,0xcc,
0x9e,0x7b,0x1a,0xa6,0x2e,0x9c,0x8f,0x39,0xa7,0xcd,0x43,0x33,0x49,0x4e,0xda,0xbf,
0x2c,0xd4,0x20,0x9b,0x25,0x5f,0xa5,0xab,0xed,0x48,0x3,0xa4,0x79,0x4d,0x79,0x49,
0xcb,0x25,0x76,0x49,0xc5,0x96,0xdc,0xf1,0x12,0x48,0xcc,0xdd,0xea,0xd9,0x5e,0x90,
0x42,0xf9,0x9f,0x56,0xf1,0xad,0xa5,0x25,0x9d,0xb1,0xb8,0xd9,0xf5,0xe3,0x14,0xa7,
0xe3,0xd,0xa5,0x4b,0xf9,0x8e,0xa4,0x8f,0x76,0x12,0xc3,0xb,0x16,0x9e,0x81,0x6,
0x5a,0x9d,0x15,0x8f,0xf5,0x22,0x29,0x87,0x66,0x54,0xe6,0x23,0x5,0x23,0xd3,0x72,
0x28,0x94,0x50,0x64,0x63,0xd9,0x52,0x2c,0xe2,0x16,0x6a,0x5a,0xdd,0xd4,0xbc,0xb5,
0x1e,0xfc,0x70,0x93,0x9a,0x46,0x1c,0x18,0xc5,0xcc,0x40,0x11,0x1f,0x7d,0xe3,0x9b,
0x10,0x52,0xf3,0x4d,0x57,0x4a,0x6c,0xdc,0x6c,0x90,0x6c,0xa,0x1f,0xfc,0xe0,0x7,
0x70,0xcd,0x35,0x1f,0x50,0xae,0xb3,0xa5,0x87,0x4c,0xcf,0x88,0xcb,0xfa,0x61,0xa0,
0x86,0xba,0x6f,0x63,0xd5,0x70,0xc6,0x58,0xb0,0xc4,0x5a,0xa8,0x8d,0x4e,0xa9,0x7e,
0xbf,0x61,0xc3,0x7a,0xac,0x5b,0xb7,0xde,0x16,0x5e,0xdb,0xbc,0x79,0x9b,0x2d,0x6a,
0xb7,0x71,0xe3,0x6,0x3b,0xaa,0xdd,0x6b,0x15,0xd4,0xfd,0x51,0x31,0x5a,0xa5,0x18,
0xab,0x50,0x80,0xf1,0x41,0x9a,0x55,0x2c,0xd,0x5a,0x41,0xc2,0xd1,0x86,0xf8,0xf2,
0x3e,0xc5,0xa4,0x52,0x8e,0xde,0xaf,0xf7,0xca,0xe7,0x2f,0xa8,0xa3,0x58,0xe7,0x5a,
0x44,0x2e,0x9e,0x41,0x3c,0x75,0xea,0x64,0xcc,0x9e,0x3d,0xdb,0x86,0x8e,0x4e,0x9a,
0x38,0xf1,0xe0,0xb9,0xad,0xc9,0x7f,0x55,0x2b,0xc3,0x4,0xaa,0xde,0xa9,0x97,0x6a,
0xd4,0x4d,0xf5,0x3d,0x83,0x2,0x95,0xe9,0xec,0xd8,0xd5,0x81,0x95,0xab,0x56,0xda,
0x72,0x12,0xda,0xc3,0x61,0xf5,0xe3,0xeb,0x6d,0x3f,0x87,0xe5,0x54,0x62,0x34,0x7c,
0xd5,0x2c,0x2,0x86,0xfd,0x61,0xef,0x57,0x6,0xd8,0x21,0x7a,0xae,0xae,0x52,0x9e,
0xab,0x3a,0x90,0x38,0xf4,0x1b,0x75,0x4a,0x6b,0x48,0x74,0x54,0xd7,0x9b,0xc7,0xb5,
0x59,0x68,0x1f,0xdf,0x8e,0xda,0x49,0x53,0x30,0xae,0x7d,0xbc,0xb9,0x89,0x5a,0x27,
0x4c,0x20,0x51,0x50,0x81,0xa2,0x16,0x6a,0xf1,0xb5,0xbb,0x9,0x8b,0xbb,0xf2,0x44,
0x2e,0x4a,0x3e,0x94,0x5f,0x98,0xbf,0x9f,0xe9,0x8b,0x49,0xe6,0x58,0x40,0x79,0xa3,
0x74,0x6b,0x4e,0x85,0xea,0xb7,0xce,0x95,0xbe,0x28,0x8d,0x40,0x96,0x96,0x94,0x86,
0xf7,0x2a,0xdd,0xfa,0x4e,0x23,0xb6,0xd2,0x5e,0xde,0xfa,0x84,0xa2,0xd8,0xf,0x3f,
0xe8,0x62,0x2c,0xa2,0xac,0x5,0xf9,0x28,0xd3,0xe6,0x37,0x8f,0xc3,0x45,0x73,0xe7,
0xc2,0x63,0xfd,0xd3,0xf0,0x60,0xcf,0x86,0x54,0x8c,0x1c,0x8c,0x48,0x72,0xd0,0xce,
0x58,0x9d,0x7e,0x88,0x3f,0x2c,0x5d,0x86,0x2d,0xfd,0xfd,0x48,0xa4,0xa5,0x55,0xa9,
0x72,0x8f,0x7c,0x72,0x8,0x2b,0x3e,0x36,0x2f,0x5b,0x8e,0x6f,0x7e,0xf4,0xe3,0xa8,
0xf1,0xcb,0xf0,0x44,0xe,0x6c,0x14,0x5e,0x36,0x8f,0xeb,0xae,0xfb,0x25,0xce,0x3e,
0xfb,0x2c,0x6b,0x3c,0xa3,0x99,0x1c,0xfc,0xaa,0x36,0xae,0xaa,0xa3,0xce,0x52,0x85,
0x9f,0xfe,0xec,0x67,0xb6,0x84,0xc5,0xad,0xb7,0xde,0x6a,0x16,0x42,0x77,0x77,0x2f,
0x35,0xc2,0x3c,0xbc,0x4c,0x8d,0xb9,0x55,0xe4,0xbf,0x96,0x66,0x28,0xc1,0x20,0x42,
0xd9,0x1f,0xba,0x42,0x71,0x69,0xfd,0x4c,0x91,0x96,0xa9,0xc1,0x6,0x11,0x39,0x8,
0x12,0x3e,0x1e,0x7f,0xab,0xac,0x53,0x5f,0x81,0x88,0x40,0x82,0x46,0x6b,0x41,0xbd,
0xf8,0xc5,0x2f,0xc6,0xb3,0xaf,0x78,0xa6,0x2d,0x37,0x1d,0x91,0x85,0x84,0x92,0xea,
0x11,0x1b,0x1d,0x3f,0x6b,0xc8,0xaf,0xe2,0x6a,0xf3,0x15,0xf4,0xc5,0x7e,0x42,0x72,
0xa8,0xd5,0xa3,0xfb,0x6c,0x96,0x39,0xe3,0xa8,0xf5,0x98,0xf4,0x5e,0xa5,0x4f,0xb3,
0xb3,0x35,0x64,0xf4,0xe7,0xff,0xfb,0xb,0xdb,0xdb,0x21,0x5e,0xf6,0x41,0x79,0xe1,
0x79,0xb9,0x28,0x7e,0x7c,0x97,0x7e,0x6f,0x82,0x9f,0x75,0x78,0x7f,0xd8,0x1b,0xaa,
0xef,0x8e,0xef,0x93,0x25,0x91,0xce,0xe5,0xa9,0x39,0xa6,0x31,0x10,0x54,0x90,0x6b,
0x68,0xc6,0xbc,0xd3,0x4f,0xc7,0xa9,0x67,0x9f,0x83,0x59,0x73,0x4e,0xb5,0x21,0xa3,
0x7d,0xc5,0x82,0x3a,0x4c,0x6c,0x2,0x9f,0x96,0xf6,0x90,0x5,0xa0,0xb6,0xa0,0xe1,
0xaa,0x49,0x5b,0xae,0x21,0x82,0x92,0xa0,0xc7,0x57,0xcc,0xcd,0x25,0xa1,0xcb,0x38,
0x90,0x14,0x64,0x9d,0xa8,0xaf,0x42,0x36,0xc4,0xb1,0x82,0x59,0x76,0x2c,0x1f,0x8d,
0x98,0xa,0x2b,0x51,0x47,0xbe,0xf2,0x48,0xa3,0xb6,0x64,0x19,0x84,0x6c,0xb,0x82,
0xd2,0x1d,0x87,0x54,0x32,0xcf,0x2b,0x6c,0xd7,0xc,0x9a,0x10,0x7a,0xb2,0x20,0x52,
0xae,0xd4,0xb7,0x53,0xc0,0x45,0xa7,0xcd,0xc1,0xbc,0xb6,0x71,0xa8,0x61,0xd9,0xa5,
0x52,0x51,0x9d,0x1a,0x29,0x38,0xf1,0xe4,0x60,0x66,0xbc,0x2a,0x6,0xa3,0xa1,0x98,
0x50,0x22,0x74,0x32,0xe7,0xee,0x5f,0xb3,0x1e,0xab,0xb6,0x6c,0x45,0xd1,0x63,0x65,
0x63,0x46,0xea,0xab,0x91,0x66,0x39,0x50,0x6f,0x8e,0x1a,0xbc,0x9a,0xa4,0xb2,0x91,
0x21,0xe7,0x17,0x71,0xc3,0x7f,0xfd,0x37,0x6e,0xfb,0xc5,0x75,0x48,0x85,0x25,0x36,
0x7a,0x2d,0x43,0xa0,0x19,0xbf,0x17,0xe3,0x7f,0x7f,0xfe,0x33,0x1b,0x6f,0x1f,0x6b,
0xa9,0x43,0xf7,0x76,0x3e,0x7c,0x1c,0xf8,0x5b,0x35,0xb2,0x78,0xd7,0xb7,0x18,0xb1,
0xc0,0x38,0x0,0x55,0x1f,0xbd,0x45,0x9b,0x7f,0x72,0x65,0x54,0x6c,0xc6,0x71,0x94,
0xe,0x1d,0xa4,0x5,0x7a,0x5e,0x34,0x4b,0x57,0xb8,0xbd,0xba,0xce,0x8e,0x8,0x40,
0x43,0x2b,0xb5,0xfe,0xce,0x76,0xed,0x43,0xdc,0xdd,0x63,0xdf,0x9b,0x50,0xe4,0x51,
0xcf,0x90,0xa0,0x10,0xf4,0x1c,0x7b,0x36,0xff,0x44,0x10,0x12,0x86,0xb6,0xd9,0x8c,
0x8,0x42,0xf7,0xab,0xa1,0x48,0xa8,0x28,0xb,0xf5,0x3e,0xa,0x41,0xcd,0x88,0x56,
0x47,0x75,0x3c,0xb,0xbc,0x8e,0xc2,0x45,0x33,0xa6,0x4f,0xa7,0xd0,0x3c,0xf3,0xcc,
0x33,0x30,0x69,0xca,0x44,0xb4,0xb6,0xb6,0xda,0x32,0xd3,0xf1,0xc4,0x31,0xab,0x46,
0x7a,0xbe,0xb9,0x52,0xec,0xd1,0xd6,0x19,0xa8,0xdf,0xeb,0xba,0x2e,0xa8,0x3,0x34,
0x49,0x82,0x50,0xe3,0xb4,0xf7,0xf2,0x9a,0x36,0xd3,0x51,0x69,0xf0,0x23,0x96,0x2d,
0x5f,0x66,0x4,0x70,0xcf,0x3d,0xf7,0x60,0xc3,0xfa,0xd,0xd8,0xb5,0x63,0x17,0x3a,
0x68,0xfd,0xed,0xea,0xd8,0xc1,0xec,0x52,0xbc,0x29,0x9c,0x4d,0xb3,0x57,0x7e,0xc9,
0x59,0xc3,0x3f,0x96,0xa1,0xca,0x38,0x3e,0xb7,0xd4,0xf2,0x98,0x29,0x51,0x28,0x2b,
0x2a,0x24,0x1a,0xed,0x3d,0x9c,0x10,0x49,0xf1,0x82,0x86,0x64,0x93,0xa5,0x30,0x8d,
0x16,0xcd,0xa4,0x69,0xd3,0x31,0x61,0xfa,0x74,0xe4,0xc6,0xb5,0x23,0xcf,0x34,0xd6,
0x35,0x34,0x22,0x9b,0xaf,0xb1,0xf8,0x90,0x3,0x6c,0x38,0x6b,0xf4,0xc8,0x28,0xdf,
0x6c,0xb8,0x2,0x2f,0x58,0x7a,0xf8,0xbd,0xf2,0x53,0x13,0x0,0x5,0xdd,0x16,0x43,
0x34,0x10,0x43,0xf9,0x6e,0x37,0x13,0x5a,0xc2,0xe3,0x40,0x44,0xdf,0xd9,0xef,0xab,
0xf,0x91,0x72,0xa6,0x73,0x91,0x90,0xde,0x1d,0x95,0x95,0x46,0x7c,0x45,0x37,0x28,
0xfd,0x96,0x7,0x2c,0x34,0x11,0x6e,0x2e,0x9b,0x35,0x32,0x10,0x39,0x2a,0x8f,0xa4,
0x5,0xab,0xfc,0xcd,0xd2,0xd2,0xf,0x2c,0xbe,0x51,0x39,0xe8,0x77,0x7b,0x11,0xc5,
0x27,0x7a,0xec,0xd0,0xeb,0x63,0x1b,0x6a,0xfe,0x1a,0xea,0xae,0x61,0xd4,0x4d,0xcc,
0x82,0x67,0x9f,0xbe,0x18,0x93,0xf2,0xb2,0xa2,0x98,0xb,0xca,0x2a,0xe6,0x4b,0x54,
0xbb,0x4e,0x2c,0x4e,0x38,0x39,0xc8,0x8c,0x97,0xbf,0x99,0x4d,0x81,0x8d,0x56,0x39,
0xe3,0x61,0xd9,0x8e,0xdd,0xf8,0x33,0xb5,0xef,0x64,0x86,0xd,0x8a,0x2,0x4b,0x9b,
0xbb,0xe8,0xab,0x54,0x38,0xb2,0xc8,0x41,0xa2,0x42,0xd,0x59,0x6d,0x4e,0x4b,0x62,
0xc8,0xba,0x69,0x27,0x99,0xfd,0xcd,0xab,0x5f,0x83,0x4a,0x67,0xf,0xbf,0x2f,0xd9,
0x7a,0x3a,0x12,0xd0,0x3f,0xff,0xc9,0xcf,0x6c,0xa9,0x69,0xf9,0xb6,0x99,0x9a,0xe8,
0xf7,0xc3,0x36,0xd6,0x43,0x85,0x9e,0xb3,0x6f,0xf5,0x9,0x6d,0x3f,0xe0,0x3,0x8b,
0x73,0xdf,0xbb,0xaa,0xa8,0x76,0xa2,0xfa,0xd4,0x7c,0x5,0x35,0x64,0x55,0xcc,0x9d,
0x3b,0x77,0x5a,0x67,0xa9,0x84,0xff,0xd6,0xad,0x5b,0x49,0x8,0xf7,0xe0,0xd1,0x47,
0x1f,0xc5,0xf2,0xe5,0xcb,0xad,0x71,0xc7,0x3e,0x6b,0x9d,0xeb,0x18,0xfb,0x89,0xf,
0x86,0xfd,0xb8,0xca,0x60,0x2,0x8f,0x90,0x0,0x89,0xab,0x9f,0xd6,0xd9,0x99,0x34,
0x69,0x92,0xcd,0x1d,0x90,0x5b,0x48,0x5b,0x51,0x9e,0x46,0x93,0x5b,0xeb,0xa,0x69,
0xc8,0xa8,0x20,0x21,0xa5,0xfe,0x1a,0xc9,0xac,0x3,0xb1,0xb7,0xe3,0x3b,0x86,0x9,
0xb9,0xea,0xf3,0x2d,0x7d,0x3c,0xdf,0xb1,0x73,0x97,0xf9,0xff,0x37,0x57,0xe7,0xe,
0x68,0xa8,0xe8,0xc3,0x4c,0xdb,0x92,0x25,0xf,0xd8,0x3d,0xb1,0x45,0x12,0x11,0x81,
0x20,0x82,0x92,0x70,0xd4,0x73,0x18,0xc2,0x68,0x3d,0x23,0x13,0x6c,0x2c,0x3f,0x35,
0xe2,0xa4,0x66,0x52,0x4b,0x93,0xe7,0xfb,0x92,0x24,0x35,0x7b,0x25,0x3f,0x6b,0x85,
0xd6,0x7c,0x5d,0x3d,0xea,0x9a,0x9b,0xd0,0x4a,0x2,0x98,0x78,0xea,0x2c,0x4c,0x98,
0x36,0xd5,0xf6,0x77,0xd0,0x3a,0xac,0x65,0xd6,0x7d,0x4d,0xe3,0x60,0x2e,0xe,0x23,
0x38,0x8f,0x32,0xf8,0xe8,0xe1,0xc5,0x4d,0x54,0x17,0x25,0xa1,0x87,0x7e,0x1b,0x97,
0xaf,0x62,0xa4,0x39,0x39,0x72,0xfb,0x69,0x9,0x75,0x91,0x71,0x6c,0x15,0x18,0x19,
0xb0,0xc,0x75,0x6f,0x6c,0x39,0xc4,0x75,0xc3,0xe1,0xe0,0xa0,0x48,0x30,0x65,0x43,
0xee,0x25,0xaf,0xe4,0x63,0x52,0xba,0x6,0xcf,0x3c,0x73,0x31,0x5a,0xb2,0xcc,0x3f,
0xd6,0x1,0x2d,0xfe,0xa8,0xf2,0x10,0x4e,0x64,0x4e,0x9e,0x78,0x72,0xe0,0xeb,0x65,
0x52,0x4a,0xeb,0x1d,0x20,0x3,0x14,0x98,0x71,0xbf,0xbe,0xfb,0x7e,0x74,0x51,0x7b,
0xd4,0x1a,0x49,0x16,0x98,0x43,0x23,0x91,0x1c,0x52,0x14,0x1a,0x31,0x71,0x25,0xcb,
0x1,0xea,0x13,0x69,0xdc,0xfa,0xcb,0x1f,0xe3,0xe7,0x3f,0xfc,0x11,0x3c,0xcd,0x5e,
0xe6,0x75,0x69,0x7,0xb,0x4e,0x3b,0x1d,0xb7,0xfd,0xf1,0x4f,0x6c,0x38,0xd2,0xc4,
0x45,0x8,0xc7,0x88,0x1c,0xf4,0xdc,0x7d,0x2f,0x1d,0x14,0xc9,0xea,0x6e,0xe8,0x12,
0x92,0xd7,0x5e,0x7b,0x9d,0xd,0xab,0xd4,0xe,0x68,0xb1,0xc0,0x8f,0x97,0x7e,0x88,
0x62,0x1a,0x9,0xae,0x7d,0x84,0x79,0xf5,0xf8,0x64,0x82,0x60,0xb8,0x51,0x2a,0x72,
0x3b,0xc9,0x25,0x22,0x2b,0xe0,0xca,0x2b,0xaf,0xc4,0x33,0x9f,0xf9,0x4c,0x9c,0x3a,
0xe7,0x14,0xd4,0x53,0x90,0x6a,0x94,0x90,0x66,0x82,0x8b,0xb4,0xb4,0x69,0xbf,0xad,
0x1f,0x44,0xc4,0xef,0xb1,0xa1,0xa3,0x96,0x87,0xfb,0xa1,0xda,0x29,0x3c,0x14,0x1a,
0x36,0xda,0xd7,0xdb,0x8b,0xeb,0x7e,0xf5,0x2b,0xeb,0x8,0xbf,0xe9,0xc6,0x1b,0xd1,
0xd9,0xd5,0x63,0x73,0x16,0xe2,0xe5,0x2d,0x4c,0xa0,0xb1,0xf6,0xe9,0xb3,0xde,0x19,
0xd5,0x47,0xa6,0x97,0x7f,0x7a,0xa5,0xce,0xe4,0x92,0xb1,0xc0,0x67,0x6,0x1a,0x42,
0x6a,0x57,0x35,0xdc,0x33,0x8a,0x53,0x99,0x59,0x21,0x41,0xdf,0x40,0x6b,0xe6,0x8c,
0xf3,0xce,0xc3,0x2c,0x6d,0x9e,0xb3,0xf0,0x74,0xde,0x93,0x44,0xa1,0xec,0xc3,0xa3,
0x20,0x95,0x15,0xa1,0xd9,0xc4,0xea,0x59,0xd1,0xa2,0x77,0x5e,0x2a,0x1d,0xf1,0xd,
0x9,0x45,0x7d,0x2c,0x4f,0x46,0xb2,0x47,0xc,0xbe,0x63,0xd8,0x92,0xaa,0x5a,0xb1,
0x31,0x79,0xa,0x8a,0x8b,0x75,0xd6,0xb3,0x1c,0x22,0x37,0x1d,0x6f,0x63,0x3d,0x8e,
0xe7,0x21,0x28,0x7f,0x44,0xbc,0x91,0xc5,0xb7,0xb7,0x4e,0x38,0x72,0x38,0x34,0xd8,
0xc,0x7f,0x12,0x83,0x16,0xcf,0x94,0x35,0x98,0xa5,0x86,0x30,0xbb,0xb9,0x5,0x97,
0x5b,0xff,0x83,0xf2,0x97,0x37,0x49,0xee,0xe9,0x5e,0xfb,0xc5,0x89,0xc1,0x89,0x27,
0x7,0x6,0x65,0x83,0xe6,0x5a,0x76,0x50,0x60,0xdc,0x7c,0xdf,0x83,0xe8,0x28,0x15,
0x6c,0x6c,0xb0,0xda,0x5e,0x4c,0xc,0xc2,0x48,0x23,0x7,0x4d,0xb6,0x2a,0x33,0x4a,
0x1a,0x63,0x9e,0xd,0xa8,0x55,0xf7,0x16,0xf0,0x91,0x37,0xfd,0x5,0x7c,0xf9,0xd8,
0xd5,0x48,0x94,0xb5,0xc,0x9f,0xfe,0xf4,0xa7,0xf0,0x96,0xbf,0x79,0x33,0x1b,0x9d,
0xcc,0x6d,0xfd,0x32,0x6a,0x64,0x47,0x8b,0x1c,0xd4,0x20,0x35,0x1a,0x25,0x99,0xf6,
0x4c,0x8,0xe9,0xb3,0x1a,0xaa,0xdc,0x0,0xea,0x1b,0xd0,0x92,0xa,0xea,0x3c,0xd5,
0x22,0x76,0xcb,0x1e,0x7e,0x18,0x1b,0x37,0x6d,0xc4,0x86,0xf5,0x5b,0xac,0xe3,0xb8,
0xb3,0xb3,0xcb,0x1a,0xb3,0x5,0x7b,0xda,0xbe,0xb0,0xca,0xf1,0x4,0x8d,0x3d,0xfe,
0xad,0x4,0x6b,0x7c,0x2e,0xe1,0xa2,0x7e,0x6,0x1d,0xdb,0x5a,0x9b,0x6,0x77,0x67,
0xd3,0xc2,0x80,0x9a,0x33,0x30,0x75,0xca,0x54,0xeb,0x30,0x96,0x46,0x2a,0xd,0x3d,
0x82,0xb4,0xf3,0xea,0x69,0xc,0x56,0x80,0x38,0x56,0xe6,0xda,0x20,0x14,0x1f,0xb9,
0x85,0xe4,0xdb,0x36,0xd,0x8b,0x57,0x24,0xa8,0x1e,0x7e,0x78,0x85,0x75,0xe,0x2f,
0x59,0xb2,0xc4,0x2c,0x2,0xeb,0x28,0x5e,0xb3,0x1a,0xdb,0xb7,0xef,0xb0,0x38,0x29,
0x3f,0x22,0x48,0xd7,0xdf,0x17,0xe6,0x7a,0xa9,0x5e,0xd4,0x7d,0x4a,0x8b,0xdc,0x4d,
0x49,0x56,0xbc,0xe8,0x7d,0x7c,0x7,0x83,0x6d,0xf2,0x53,0x5f,0x8b,0x49,0x93,0x27,
0xa3,0x7d,0xe2,0x24,0x8c,0x67,0xa8,0x6b,0x6c,0x42,0x1d,0x2d,0x81,0xa6,0x96,0x66,
0x64,0x6a,0x6a,0x51,0x60,0x3c,0x59,0xf2,0xb0,0x35,0x85,0xc,0x7c,0x2f,0xcb,0x59,
0x84,0x22,0x32,0x50,0x2c,0x74,0x8c,0x49,0xc7,0xfe,0x98,0x96,0xa3,0x89,0xa1,0x4d,
0x3a,0x2e,0x13,0x4b,0x25,0xeb,0xab,0xce,0x55,0x3f,0x24,0xf4,0xa3,0xe,0xe2,0xca,
0xa0,0x35,0xa0,0x10,0x5d,0x1b,0x2e,0x3e,0xb4,0x30,0x8d,0xcd,0x86,0xc0,0xea,0xef,
0xd1,0x8d,0xfb,0xc9,0x80,0x94,0x36,0x95,0x62,0x5e,0x96,0x4d,0xf1,0xd5,0x7c,0xad,
0x4,0x6a,0x58,0x5d,0x9e,0x36,0x6f,0xe,0xa6,0x35,0xb5,0xa0,0xc6,0xaa,0xaa,0x8,
0x44,0x2a,0xc8,0x89,0x93,0x79,0x27,0x9c,0x1c,0xa4,0x9,0x4a,0xc3,0x53,0x77,0xd5,
0x5d,0x2b,0x57,0xe1,0x91,0x8e,0x3d,0xe8,0xd7,0x94,0xd1,0x6a,0x5b,0xae,0x2a,0x67,
0xca,0xab,0x11,0x47,0xe,0x19,0x36,0xb6,0x2,0x15,0x2b,0xd,0x49,0x4f,0xf,0xf8,
0xd8,0xf4,0xc0,0xa,0xfc,0xc7,0x97,0x3e,0x66,0x9a,0xb1,0xad,0x86,0x49,0xb2,0xcb,
0x7a,0x59,0xfc,0xf1,0xd6,0x1b,0xa9,0x19,0xcf,0x3a,0x66,0xe4,0x10,0xad,0xad,0x54,
0x41,0x3f,0x35,0xe2,0xfe,0x81,0x1,0x94,0x8a,0x25,0x3c,0xbc,0xec,0x61,0xdc,0x72,
0xcb,0x2d,0xf8,0xd3,0x6d,0x7f,0xc2,0xaa,0xc7,0x57,0xdb,0x92,0xce,0xea,0x18,0xd4,
0xf7,0xa6,0xd,0x6a,0x36,0x30,0x7f,0x23,0x61,0xa8,0xa,0x60,0x4f,0x12,0xb3,0xec,
0x7,0xbb,0xb2,0x5f,0xfb,0x8f,0x7f,0x17,0x43,0xe7,0xea,0x78,0x94,0x60,0xd1,0x3b,
0xe4,0xa,0xd2,0x12,0x20,0xb2,0xa,0xc6,0xb5,0x35,0x99,0xb0,0x8d,0x5,0x92,0xdd,
0xcf,0x7,0xea,0x9a,0xad,0x44,0x5b,0x25,0x87,0x8a,0xcd,0x1e,0xb6,0xd3,0xbd,0x60,
0xc6,0xca,0x69,0x23,0xe8,0x7e,0x69,0xfc,0x22,0x9d,0x81,0x42,0x11,0x6b,0xd6,0xae,
0xc1,0x6f,0x7f,0xfb,0x5b,0xb3,0x78,0x6e,0xbf,0xfd,0x76,0x5a,0x19,0x35,0x76,0x9f,
0x96,0x25,0x17,0x91,0xe8,0x7d,0xaa,0x3b,0x8a,0x9b,0x82,0x8,0x45,0x48,0xd8,0x33,
0xf7,0x85,0xcd,0x87,0xa8,0x5e,0xd4,0x6f,0x95,0xe,0x75,0x12,0x17,0x92,0x69,0x24,
0x33,0x59,0xb4,0x4d,0x99,0x8c,0xf9,0x67,0x9c,0x89,0x53,0xe7,0xce,0x43,0xcb,0x84,
0x9,0x18,0xa0,0xe6,0x5f,0xd6,0xf3,0xb5,0x53,0x1d,0x33,0x48,0x7b,0x22,0x28,0x55,
0x21,0x5f,0x68,0x7b,0x4f,0x30,0x1f,0x69,0x3,0x47,0xf,0xb4,0x32,0xe6,0x3b,0xf5,
0x9d,0x65,0x26,0xff,0xa3,0x60,0x88,0xe6,0x60,0xa8,0xcf,0x8a,0x34,0x71,0x94,0x7,
0x5a,0x48,0xb8,0x9b,0xb,0x8e,0x47,0x85,0xa8,0xac,0x48,0x2,0xe9,0xa4,0xcd,0xd0,
0x8f,0xc9,0xc0,0xf2,0x25,0xa8,0x4e,0xd0,0x63,0x10,0x54,0xb6,0xf1,0xf9,0xbe,0x18,
0x9e,0xbc,0x95,0x36,0x87,0xc3,0x83,0x66,0x96,0xcb,0x62,0xd3,0xba,0x60,0xca,0x43,
0xc9,0x1,0xb3,0xb0,0x4b,0x7d,0x78,0xe1,0xf9,0x17,0x63,0xa,0xcb,0x48,0xf6,0xa9,
0xea,0xc8,0x89,0x1c,0xbe,0x7f,0xe2,0x2d,0x7,0x3f,0x44,0x81,0x75,0x6c,0x5b,0xa9,
0x88,0xdf,0xdc,0x7b,0x1f,0xfa,0xab,0x33,0x66,0x87,0x5b,0x8b,0x25,0xd6,0x22,0x47,
0xe,0x64,0x1a,0x32,0x4e,0x95,0x0,0x4d,0x6c,0x8c,0x3f,0xf9,0xa7,0xaf,0xe3,0xfe,
0x1b,0x7f,0xcf,0x88,0xea,0x9a,0xa,0x16,0x26,0x24,0xaf,0xbf,0xe1,0x97,0x48,0x57,
0xe7,0x34,0xec,0x6d,0x77,0xba,0xe7,0xc0,0x86,0x25,0x6d,0x32,0x6e,0x9c,0x71,0xc7,
0xa0,0xc4,0x88,0x84,0x8e,0x96,0xf0,0x56,0x83,0xb6,0x5,0xd4,0x58,0x7d,0xd6,0x53,
0xf3,0x97,0x70,0xd4,0x46,0x2c,0x8f,0x2c,0x5f,0x8e,0x1d,0x3b,0x77,0xa2,0xb7,0xaf,
0xcf,0x16,0x60,0x8b,0x35,0x6d,0xd3,0xae,0xa9,0x99,0xe8,0x99,0x12,0x90,0x12,0xc8,
0x12,0x9c,0xf2,0xdd,0x33,0x2,0xc,0x83,0x11,0xe2,0x7b,0x22,0xa1,0x6f,0xdf,0x5b,
0x1c,0x68,0x5,0xa8,0x12,0x93,0x4,0xad,0x9a,0xf0,0x9a,0xbe,0xa3,0xb8,0xc5,0x82,
0x5,0xb,0x70,0xd6,0x99,0x67,0xe1,0x82,0xb,0x2f,0x30,0x6b,0x60,0xa2,0x96,0x67,
0x6e,0xaa,0xb3,0x7d,0x23,0xf4,0x5c,0xfd,0xde,0x9e,0x41,0x8b,0xca,0x8e,0xfc,0xbd,
0xdc,0x12,0x3a,0x37,0xb1,0xa8,0xe7,0x30,0x12,0xb6,0x4,0x37,0xbf,0xb3,0xfd,0x87,
0xcb,0x3e,0x5,0xb3,0xc7,0xb8,0x47,0xf7,0x75,0x50,0x51,0xb8,0xfd,0xcf,0x77,0xe2,
0xa1,0x7,0x1e,0xc0,0xbd,0x77,0xdd,0x8d,0x6e,0x5a,0x39,0x7b,0xba,0xbb,0xb1,0xad,
0xa3,0x83,0x64,0x21,0x75,0x82,0xbf,0xe3,0x7d,0x12,0xf7,0xa5,0x24,0xc9,0x45,0xd9,
0xc5,0x67,0x59,0x47,0x2a,0xbf,0xf3,0xd5,0xf6,0x78,0x26,0xa1,0x6c,0x9d,0xe1,0xcc,
0x93,0x9a,0x20,0x5a,0x1a,0x22,0x12,0xee,0x54,0x4a,0x98,0x36,0x9f,0x75,0xae,0x6e,
0xfc,0x78,0xcc,0xa0,0x35,0x33,0x7d,0xd6,0x6c,0x8c,0x9b,0x32,0x5,0xa9,0x5c,0xe,
0xe9,0x7c,0x1d,0x6a,0xea,0x6a,0x59,0x4c,0x12,0xfc,0xd4,0xe4,0x14,0x4f,0xbe,0xcb,
0x4,0xba,0xfd,0x49,0xb0,0xeb,0xf9,0x71,0xcd,0xd4,0x31,0x3a,0xd3,0xd6,0x3d,0x11,
0xe2,0x2b,0x11,0x6,0xab,0xb5,0x8,0xc2,0x3e,0xf1,0xfb,0x61,0x95,0x84,0xea,0x9d,
0x7c,0xa7,0xa0,0xfc,0x30,0xc1,0xcd,0xb8,0x58,0x5a,0xaa,0x2e,0x1e,0x13,0xda,0x84,
0xee,0xd2,0xf7,0x22,0x60,0x75,0xea,0x6b,0x6,0xbe,0xd6,0xe7,0xd2,0xef,0x65,0xf1,
0x44,0x43,0x6b,0xa3,0x67,0x55,0x1f,0xc9,0x67,0x46,0xbf,0x89,0x61,0xe5,0x74,0x50,
0xec,0xbd,0x6f,0x5f,0x3c,0xd1,0x6f,0x1c,0x86,0x47,0x5c,0x76,0x82,0xa,0x81,0xff,
0xe4,0x9e,0x63,0xfd,0x9c,0x59,0x57,0x8f,0x67,0x2e,0x3a,0x1d,0x59,0x56,0xda,0x4a,
0x22,0x40,0xae,0xea,0xfe,0x3d,0x11,0x38,0xe1,0xe4,0xe0,0x7,0x15,0xec,0x26,0x31,
0xfc,0x7e,0xc9,0xfd,0xd8,0x45,0x8d,0xab,0xc8,0x86,0x6d,0x4b,0x63,0x3c,0x61,0x45,
0x1d,0x19,0xd0,0x10,0xc1,0x40,0xee,0xd,0x36,0xd4,0x7c,0x4f,0xf,0x3e,0xf0,0xfa,
0xd7,0x21,0x5d,0x50,0x57,0xa3,0x7d,0x6b,0xff,0xff,0xfe,0xf,0xbf,0xc5,0x19,0x67,
0x2e,0x64,0xe3,0xdc,0x3f,0x3d,0x6a,0xac,0x11,0x61,0xc,0x85,0x96,0x90,0x8e,0xb5,
0x3e,0x35,0xea,0x7e,0xa,0xfb,0x8d,0x9b,0xb6,0x54,0x17,0x5e,0xdb,0x64,0xbb,0x9e,
0x69,0xf7,0xb3,0xbb,0x49,0xa4,0x3e,0xb5,0x69,0x9,0xf3,0x58,0xa0,0xeb,0x18,0xb,
0x91,0x41,0xf0,0x54,0xe2,0xf3,0x40,0xec,0xad,0xa0,0x83,0x82,0x87,0x42,0x45,0xef,
0x8e,0x9f,0x27,0x41,0x3f,0x79,0x52,0xbb,0x9,0x7f,0xcd,0x24,0xbe,0x40,0x6b,0x1c,
0xcd,0x9d,0x63,0xfb,0xf,0x48,0xd8,0x44,0x6f,0x91,0x88,0xe4,0x1f,0xd3,0x97,0x88,
0x54,0xe3,0x7d,0x30,0x74,0x86,0x74,0x8c,0x62,0x39,0x9a,0x93,0x20,0xb,0x4b,0xef,
0x93,0xb,0x48,0xbb,0xbb,0x29,0x8d,0x4a,0xdb,0xb2,0x65,0xcb,0x2c,0x9d,0x3b,0x77,
0x75,0x58,0x3c,0x72,0x99,0x1c,0x95,0x8,0xa6,0x55,0xf1,0xe4,0xbb,0x4a,0x83,0xc4,
0x16,0xe5,0xa2,0x1d,0x79,0x9f,0x41,0x69,0xd0,0x39,0xb3,0xbb,0x4c,0xb5,0x5e,0xf1,
0xe2,0xf,0x4d,0xb0,0xdb,0xaa,0xb6,0x13,0xa7,0xa1,0xb6,0xae,0xce,0x3a,0x89,0x27,
0x4e,0x9d,0x82,0x9,0x53,0x27,0x63,0xc2,0x94,0x19,0x36,0x8b,0xb8,0xcc,0x7b,0x34,
0xee,0x48,0x7d,0x8,0x36,0x17,0x43,0x92,0xff,0x58,0xc3,0xca,0x67,0xb8,0xf7,0x44,
0xe9,0x89,0xcb,0x52,0xff,0xcb,0xd,0x17,0x59,0x40,0x5a,0x96,0x83,0xd6,0x8d,0xfa,
0x32,0xc2,0x82,0x59,0x4b,0xa,0x2a,0x37,0x59,0x4,0xfa,0x8d,0x95,0x27,0xf3,0xeb,
0x89,0x5,0xbe,0xc3,0x48,0x81,0x8a,0x59,0x4a,0x97,0x57,0x2e,0xe2,0xbc,0x39,0xb3,
0x71,0xfa,0xc4,0xf1,0xc8,0x53,0x49,0x4a,0x6a,0x53,0xf8,0x13,0x84,0x13,0x4e,0xe,
0xdd,0xc,0xf,0xac,0x5a,0x85,0x47,0xb7,0x6d,0xc5,0x0,0x89,0xa1,0x44,0x6,0xf5,
0xd8,0x28,0xa5,0xa1,0x8d,0x74,0x84,0x36,0xca,0xa,0xc8,0x31,0xbe,0x3f,0xfe,0xfa,
0x3f,0x63,0xc9,0xef,0x7f,0x87,0xb4,0xc6,0x20,0x1a,0x42,0x5c,0x7c,0xc9,0x45,0xb8,
0xf6,0xda,0x5f,0xb2,0x1,0x6b,0x2c,0xfc,0x7e,0x85,0x6c,0x82,0xe7,0x40,0x93,0x51,
0x2,0x5f,0x43,0x45,0x35,0x83,0xf8,0x87,0x3f,0xfc,0xa1,0x8d,0x1e,0x4a,0xa7,0xf7,
0xe,0x15,0x94,0x40,0xb5,0xc6,0xcf,0x9f,0x4b,0x20,0xa8,0x53,0x55,0xd7,0x25,0x44,
0x63,0xc1,0xbe,0xf,0x18,0x9d,0xe1,0x73,0x32,0x12,0x3e,0x12,0x1e,0xa6,0x49,0xf3,
0xb9,0x72,0x9,0xbd,0xf4,0xa5,0x2f,0xc5,0xc5,0x17,0x5f,0x8c,0x17,0xbe,0xf0,0x85,
0xd6,0x29,0xa9,0x31,0xeb,0xb1,0xb0,0x91,0xa6,0x2f,0x8d,0x55,0x7b,0x2,0xc8,0x12,
0xd2,0xef,0xf4,0x7b,0xbd,0x53,0xb5,0x48,0x6b,0x7,0x1d,0x80,0x2a,0x39,0xc,0x15,
0x54,0x12,0xfc,0xbf,0xfe,0xf5,0xaf,0x71,0xc3,0xd,0x37,0xd8,0x44,0x39,0x3d,0x5b,
0xeb,0x20,0x29,0x8d,0x8a,0x47,0xf4,0x3c,0x3d,0x90,0xf7,0x57,0x23,0x9f,0xae,0x4e,
0x9c,0xb3,0x25,0xa7,0xa9,0x44,0x68,0xa6,0xb4,0x32,0x41,0x3e,0x5b,0x6b,0x56,0xbc,
0x3d,0x9e,0x17,0x51,0xe6,0x87,0xa2,0xac,0x2c,0xaf,0x1,0x33,0x67,0xcf,0xc2,0x99,
0xe7,0x9d,0x8b,0xd3,0xcf,0x58,0x84,0xc6,0x96,0x66,0x6c,0xea,0xeb,0xb5,0xe1,0xac,
0xb2,0x92,0xe4,0xeb,0xf7,0x32,0x69,0x92,0x88,0x66,0x48,0x7b,0xa6,0xc1,0xdb,0x7b,
0x89,0xb0,0xcc,0x6b,0x47,0xd9,0xdd,0x33,0x2c,0xe,0x56,0x3e,0xe6,0x76,0x8a,0xa0,
0x7c,0x56,0x59,0xab,0x3c,0x62,0x97,0x90,0x60,0xf9,0xc6,0x3a,0x58,0xcd,0xd6,0xc1,
0xf2,0xb7,0xe5,0xba,0xf9,0x17,0xdf,0xe7,0x30,0xa,0x20,0x7d,0x46,0xf5,0x9f,0x16,
0x70,0x7a,0xa0,0xf,0x2f,0x3e,0xfb,0x3c,0x4c,0xcb,0xd4,0x53,0xb8,0x54,0xbf,0x3f,
0x1,0x38,0x21,0xe4,0x10,0xbf,0x52,0xc7,0x87,0xba,0xba,0x71,0xd7,0x43,0xf,0xa1,
0x94,0x66,0xa5,0xae,0x8e,0x4,0xd1,0x50,0xaf,0xd1,0x40,0xe,0x41,0xa2,0x88,0x4,
0xb5,0x53,0x7f,0x4f,0x37,0x3e,0xff,0xee,0x77,0x21,0xd1,0xb5,0xc7,0xfa,0x19,0x34,
0xf1,0x4a,0xc3,0x1f,0xbf,0xf2,0x95,0x2f,0xe3,0x75,0xaf,0xff,0xb,0xde,0x29,0xb7,
0xc9,0x5e,0x61,0xaa,0xbf,0xf5,0x1b,0x36,0x60,0xf9,0xb2,0x15,0xb6,0x84,0x84,0xd6,
0xdf,0x91,0x55,0xb0,0x65,0xcb,0x56,0x6c,0xdd,0xb6,0xc5,0x3a,0x91,0xd5,0xb0,0x75,
0x9f,0x30,0x9c,0xe6,0x4f,0xd1,0x76,0x80,0x54,0x89,0x85,0xaf,0x8e,0x12,0x14,0x7a,
0x9f,0x9e,0xa3,0x2d,0x47,0x63,0xad,0x52,0x47,0x75,0xe,0x6b,0xf3,0xfe,0x45,0x8b,
0x16,0xdb,0xb0,0x51,0xed,0x1c,0x37,0x71,0xd2,0x24,0x9b,0x45,0x2c,0xa8,0x78,0xe2,
0x91,0x29,0xe6,0xb6,0xd8,0xef,0x3d,0x72,0xcf,0xe8,0x55,0x26,0x9c,0x48,0x18,0xda,
0xa6,0x54,0xe5,0xe6,0x79,0xd1,0xda,0x3d,0x12,0xe0,0xea,0xf4,0xd6,0x8c,0xe1,0xa5,
0xf,0x3f,0x62,0x73,0x23,0x34,0x6f,0x40,0xee,0xae,0x35,0x6b,0xd6,0xd8,0xf7,0xfa,
0x5d,0x35,0xba,0x55,0xc,0x63,0xdd,0xf0,0x92,0x6a,0x8a,0x62,0x62,0x7d,0x53,0x8c,
0x3b,0x55,0x67,0xa4,0x43,0xe6,0x2f,0x7f,0x5f,0x22,0x13,0x24,0x53,0x69,0xd4,0x35,
0x34,0x60,0xf2,0xe9,0xa7,0x61,0xc2,0xa4,0x89,0x68,0x69,0x1f,0x87,0x6,0x92,0x40,
0x4d,0x3d,0x5,0x69,0xdb,0x4,0x23,0xb,0x2d,0x2c,0xa7,0x51,0x42,0xf2,0xde,0x64,
0xc5,0x20,0xc4,0xd0,0x4a,0x5f,0x56,0xd9,0x30,0xfe,0x1a,0x35,0x67,0x6e,0x3d,0x5e,
0x53,0xdf,0xeb,0x30,0x31,0x3a,0xaa,0xb0,0xf2,0xe2,0xfb,0xa2,0xdd,0xec,0x22,0xb,
0x50,0xc2,0x3f,0x22,0x80,0x88,0x74,0x55,0x66,0x4f,0x2c,0xe4,0x5d,0x47,0xf1,0x98,
0x0,0x8b,0x50,0x7d,0x97,0x5a,0x46,0x3e,0x4d,0xcb,0x7a,0x5a,0xb6,0xe,0xcf,0x3a,
0xfb,0x6c,0xd4,0x9f,0x40,0x7e,0x3f,0x61,0x96,0x83,0x84,0x97,0xb4,0xde,0xff,0xa4,
0x70,0x1c,0x50,0xc3,0x4d,0x47,0xd,0x5e,0xfe,0x5b,0x91,0x43,0x2c,0x18,0x47,0x32,
0x82,0x64,0x1,0x99,0x30,0x85,0x95,0x77,0xdf,0x8b,0xff,0xf8,0xc2,0x17,0x90,0x2d,
0xe,0x44,0x93,0x9d,0x48,0x10,0x1a,0xb2,0x7a,0xcb,0xad,0x37,0xa3,0x85,0x82,0x6a,
0xcf,0x9e,0xdd,0xe8,0xe9,0xe9,0x35,0x6b,0xe0,0xc1,0x7,0x1f,0xb4,0xd9,0xb6,0x81,
0x4f,0xdd,0x95,0x8d,0x58,0x5a,0xbf,0x84,0x84,0x2c,0x6,0x9,0x1,0x4d,0x7c,0xd2,
0x35,0xe5,0x4f,0x5c,0x30,0x43,0x17,0x61,0x8b,0x31,0xb4,0x13,0x35,0x46,0x24,0xac,
0x23,0x62,0x90,0x96,0x19,0x85,0x5a,0xcc,0x9a,0x39,0x93,0xd6,0xc0,0x45,0xc,0x97,
0xe0,0xcc,0x33,0xcf,0xe4,0xf3,0x53,0x28,0x96,0x6,0xf8,0xbe,0xe8,0x3d,0xfa,0xac,
0x5a,0xe0,0x31,0xff,0x7,0x51,0x7d,0x76,0xe5,0x20,0x1d,0xc5,0x7e,0x39,0x5a,0x64,
0xae,0xab,0xab,0x13,0x3,0x3,0x5,0x74,0xf5,0x74,0x5b,0xfa,0x34,0x89,0x4c,0x3b,
0x90,0x69,0x56,0xb1,0xd,0x19,0xcd,0xd4,0x58,0xbc,0x44,0x98,0xda,0x8,0xc7,0xd2,
0xcb,0x77,0x99,0x60,0x24,0x6,0xab,0xdf,0x30,0x7e,0xf7,0x40,0xfd,0x1d,0xca,0x5,
0xde,0x9a,0xa9,0xd1,0x24,0xa1,0x14,0xd2,0xda,0x3a,0xb3,0xb1,0x5,0xb3,0xe6,0x9e,
0x8e,0x53,0x4e,0x9d,0x87,0x19,0xb3,0xe7,0x20,0x9b,0xaf,0x45,0x47,0x29,0x9a,0x81,
0xab,0x84,0xe8,0x99,0x1a,0x6,0xdb,0xcf,0x46,0x66,0x82,0x95,0x9f,0xe3,0xfa,0xe4,
0xd,0xe9,0x74,0x8f,0x93,0xa5,0xfe,0x1b,0xf5,0xa4,0x18,0xd,0xd9,0x5c,0x11,0x75,
0x16,0x1e,0x7d,0x72,0x10,0x59,0x4b,0xe0,0xc7,0xe5,0x2b,0x12,0x50,0x1f,0x4b,0x36,
0x93,0xb2,0x8e,0x62,0x21,0x2e,0xc3,0x68,0xe7,0x43,0xd5,0x11,0xe6,0xdd,0x13,0x92,
0xc3,0x81,0xe4,0x2d,0x8b,0xea,0xd8,0x53,0x9b,0xc3,0xd1,0x84,0x29,0x40,0x2c,0x32,
0x79,0x1e,0xd2,0x94,0x1,0x95,0x72,0x11,0x73,0xe6,0xcd,0xc1,0xb3,0x26,0x4d,0x8e,
0x6e,0x38,0x1,0x38,0xae,0xe4,0xa0,0x6d,0x3,0x3d,0x25,0x9c,0x6f,0xec,0x67,0xe5,
0xbd,0x7f,0xd5,0x7a,0x3c,0xb4,0x73,0x6b,0xd5,0x35,0xb0,0x2f,0x46,0x3,0x39,0x68,
0xe9,0x82,0x6,0x12,0xc1,0xbf,0x7c,0xe2,0xe3,0x58,0x45,0xa1,0xaf,0x28,0xef,0xf5,
0x6,0x54,0x30,0x7d,0xfa,0x74,0x74,0x77,0x77,0x63,0xa0,0x7f,0xc0,0xf6,0x25,0x16,
0x22,0xa1,0x28,0xed,0x9a,0x42,0xa0,0xc2,0x46,0xaf,0xcf,0x55,0x81,0x20,0x68,0x5e,
0x84,0x8a,0x44,0x21,0xd6,0xfc,0xd5,0x7,0x13,0x9,0x8c,0x68,0x53,0x18,0x9,0x14,
0x9,0x31,0x7d,0x6f,0x81,0x79,0x5a,0x5b,0x53,0x8b,0x67,0x3f,0xeb,0x59,0x38,0xe7,
0x9c,0xb3,0x71,0xd1,0x85,0x17,0xa1,0xa5,0xb5,0xd5,0xf6,0x27,0x6e,0x68,0xa8,0x47,
0x26,0x27,0xff,0xb9,0x3d,0x3e,0xd2,0xc0,0xf9,0xac,0x4,0x49,0x4d,0x6f,0xd4,0xef,
0xa3,0x37,0xf3,0x96,0xa4,0x7c,0xfa,0x3c,0x4a,0x28,0xf1,0x28,0x21,0xc6,0xe4,0xd9,
0xfd,0x36,0x94,0x93,0xdf,0x4b,0xf8,0x3f,0x70,0xff,0xc3,0xf8,0xdd,0xef,0x6e,0xc4,
0xda,0xd,0x6b,0x48,0xa,0x9d,0x46,0x34,0x3d,0x24,0x7,0xcd,0x48,0x96,0xeb,0x49,
0x3f,0xb6,0x54,0xf2,0x77,0x45,0x5b,0xde,0x21,0xc1,0x34,0xc8,0xc2,0x50,0x27,0x34,
0xad,0x17,0xe6,0x91,0x3a,0x8d,0xcd,0x4d,0x65,0x2e,0x10,0xbd,0x5b,0x56,0x23,0xb5,
0x78,0xd6,0xb,0x2d,0x2c,0x97,0xa2,0x70,0x1f,0x37,0xff,0x74,0xcc,0x5c,0x30,0x1f,
0x33,0x4f,0x99,0x15,0x75,0xb0,0xf2,0x5a,0x96,0xc7,0x44,0x56,0x9d,0x74,0xea,0x47,
0x88,0x92,0xa5,0x10,0x9,0xc3,0xe8,0x4c,0x75,0x87,0x39,0x38,0xa8,0x50,0xc7,0xe9,
0x3b,0x38,0x86,0xde,0x51,0xfd,0x91,0xe1,0xc0,0x5f,0xaa,0xb,0x43,0x88,0x5,0xf7,
0xe0,0x50,0xdc,0xf8,0x67,0xfc,0x3e,0x9a,0x3,0xb0,0xd7,0xdd,0x23,0x12,0xc8,0xe6,
0x72,0x24,0xac,0x34,0xf3,0x50,0xd6,0x5b,0x64,0x15,0xc4,0x65,0xae,0x1f,0xef,0x6d,
0x86,0x2a,0x6b,0x5e,0x19,0xfc,0x1c,0x61,0xef,0xbd,0xfb,0x63,0xdf,0xfb,0xf6,0xe2,
0x60,0xf7,0x3b,0x8c,0x44,0xc,0x96,0x3e,0xcb,0x5d,0x25,0xa7,0xfa,0xab,0x8a,0xf0,
0xfc,0x5,0xf3,0x30,0xa9,0xbe,0x11,0x39,0x36,0x23,0x56,0x99,0xa8,0x9a,0x1f,0xb4,
0x2e,0x1c,0x5d,0x1c,0x57,0x72,0xf0,0xd5,0x98,0x74,0x64,0x58,0xbd,0xbb,0xb,0x7f,
0x7a,0x78,0x39,0x6,0xe4,0x8b,0x3f,0x4e,0x89,0x3d,0xda,0x8,0x2b,0x25,0xf4,0xae,
0x5b,0x8b,0xcf,0xbf,0xeb,0x9d,0xc8,0x32,0x6d,0xb6,0x66,0xbb,0x5c,0x1d,0x4c,0x8f,
0x1a,0x7f,0x2c,0x40,0x86,0x6d,0xd8,0x2a,0x7b,0xcb,0x8d,0x7d,0x11,0x2f,0x33,0xad,
0xdf,0x8b,0x8,0xcc,0x9a,0xa8,0x6e,0x29,0x29,0xbf,0xb3,0x3a,0x87,0xdb,0xdb,0xdb,
0x31,0x73,0xe6,0x34,0xcc,0x3e,0x75,0x96,0xcd,0x24,0x5e,0xb8,0x70,0xa1,0x5d,0xd3,
0xd3,0xf4,0x4e,0x69,0xf4,0xba,0x57,0x88,0x2a,0x99,0x4,0xf4,0xbe,0x88,0x3b,0x8a,
0x75,0xaf,0xe2,0x18,0x5b,0x2d,0x7a,0xaf,0xfa,0x39,0xe4,0xfe,0x91,0x2b,0x68,0xcb,
0xb6,0x9d,0x66,0xed,0xac,0xd5,0xfe,0xca,0xcb,0x97,0x9b,0x35,0x90,0xd4,0xfe,0x5,
0x14,0xec,0x9e,0x46,0x6a,0x59,0x7c,0x95,0x4e,0x11,0x4a,0x94,0x9e,0xa1,0xa9,0xcd,
0x30,0xd,0xaa,0xee,0x94,0x97,0xe6,0x53,0x55,0xed,0x2e,0xa4,0xb2,0x46,0x52,0xaa,
0x78,0x6d,0xed,0xe3,0x6c,0x3,0xfa,0xda,0x71,0x72,0x7,0xb5,0x61,0xdc,0x84,0x9,
0x98,0x4c,0x4b,0xa7,0x81,0xd6,0x41,0x81,0xef,0xd0,0xa6,0x34,0x82,0xf2,0xd0,0xf2,
0x52,0x2d,0xe4,0x78,0x54,0x17,0x2b,0x9f,0xe1,0x5e,0x14,0xc5,0x47,0x71,0xd7,0xb7,
0xca,0x5f,0x11,0xbd,0x3a,0x87,0x65,0x81,0x29,0x9e,0xea,0x2c,0x4e,0x79,0xe1,0xa0,
0x8b,0x48,0xf1,0x56,0xb9,0xc,0xc5,0xc1,0x85,0xbd,0x83,0xc3,0x5e,0xcc,0xac,0xc9,
0xe0,0x69,0xb,0x17,0xa3,0x81,0x6d,0xc1,0x16,0x57,0x88,0xcc,0xee,0xe8,0xcb,0x63,
0x8c,0xe3,0xeb,0x56,0x62,0x43,0xf7,0xa9,0x35,0xed,0x2e,0x97,0x71,0xc3,0xdd,0xf7,
0xa0,0x8f,0xe7,0x7e,0x75,0xe5,0xcb,0x51,0x89,0x44,0x19,0x6b,0xef,0xbd,0x17,0xdf,
0xfc,0xe4,0x27,0x50,0x23,0x61,0xce,0x64,0x50,0x2c,0x98,0x20,0x50,0x9a,0xe2,0x74,
0x29,0x8b,0x4d,0xb0,0xd,0x4d,0xa7,0x9,0x9f,0xe8,0x3b,0x5d,0x8f,0x8b,0x41,0x93,
0x92,0xa4,0xb1,0xb,0x3a,0x6a,0x2,0xd9,0xb3,0x9f,0xfd,0x6c,0x9b,0x45,0x2c,0x97,
0xd0,0xde,0x67,0x68,0xb9,0x91,0x68,0xc7,0xb4,0x98,0x88,0xb4,0xb1,0x8c,0x69,0xee,
0x7a,0x5e,0x2c,0x8c,0x78,0x3b,0x45,0x53,0x74,0x4e,0x44,0xef,0x92,0x76,0x9b,0x1c,
0x1c,0x2d,0xd4,0xd7,0xd7,0x87,0x5f,0xfc,0xe2,0x17,0xb6,0xa6,0x90,0x66,0x49,0xcb,
0xda,0xd1,0x33,0x23,0xc2,0x88,0x7e,0x23,0x21,0xa7,0x7b,0x8d,0xf0,0x18,0x47,0x1b,
0x5,0x24,0x4b,0xc1,0xd2,0x11,0x9,0x48,0xd2,0x85,0x92,0x55,0x7d,0x67,0x14,0x34,
0x24,0xb9,0x92,0xe2,0x75,0xb9,0x52,0xf8,0x1b,0x6d,0x32,0x33,0xfb,0x9c,0x4b,0x69,
0x32,0xcf,0xc5,0x4c,0x9a,0xcd,0x1a,0x4e,0x5a,0xf0,0xcb,0x28,0xca,0xb2,0x60,0xc4,
0xf4,0x5e,0x8d,0x16,0x12,0x75,0x68,0xa7,0x37,0x63,0x15,0x3d,0xb2,0x9a,0xee,0xc1,
0xbe,0x87,0xa3,0x84,0xa1,0xd5,0x3f,0x2e,0x7,0x7b,0x17,0x2f,0x2b,0x5d,0xf6,0xbf,
0x5d,0xb3,0x3b,0xf8,0xfe,0xea,0x7e,0xd,0xcc,0x1b,0xb9,0x82,0x34,0xbf,0x23,0x1e,
0x6c,0xa0,0x7e,0x14,0xdd,0xab,0x3c,0xd2,0x26,0xfe,0x51,0xe,0xec,0x8b,0x38,0x1d,
0xe,0xe,0x87,0x82,0x6c,0xb1,0x1f,0x67,0xcc,0x9a,0x85,0x33,0xa6,0x4d,0xad,0xf6,
0x4d,0xab,0x2e,0x1e,0xbd,0xfa,0xff,0x44,0x38,0xae,0xe4,0x10,0x96,0xca,0xe8,0xa3,
0x90,0x78,0x60,0xd3,0x66,0x3c,0xb4,0x7e,0x9d,0xad,0x9b,0x64,0xae,0x15,0x49,0x93,
0x51,0x89,0x32,0x5a,0x28,0xac,0x3e,0xfe,0x37,0x6f,0x46,0xe7,0xd6,0xad,0x46,0xe,
0x72,0x9f,0xc,0x4d,0xcd,0xd0,0xec,0x95,0x60,0x88,0x89,0x23,0x1a,0x77,0xaf,0xc9,
0x61,0x15,0x5b,0x53,0x48,0x4b,0x49,0x68,0xb3,0x99,0x33,0xce,0x58,0x88,0x89,0x13,
0x26,0xa2,0xad,0xad,0xcd,0x56,0x1c,0x95,0x9f,0x7d,0x78,0x1c,0xe8,0x6b,0x56,0x3f,
0x86,0xb4,0xdd,0x48,0x38,0x45,0x6e,0xb,0xb3,0x3e,0xd2,0xd1,0x8e,0x67,0x77,0xdc,
0x79,0x3b,0x1e,0x7f,0x7c,0xb5,0xf5,0xd,0x74,0xd0,0x72,0xdb,0xb6,0x6d,0x1b,0x76,
0x77,0xec,0x46,0x67,0x67,0x27,0xab,0x9c,0x84,0xfb,0x81,0xe5,0x60,0xb1,0x1f,0x22,
0xd0,0x94,0x1e,0xcd,0xd,0xd0,0xee,0x5d,0xb6,0xa9,0x3c,0xa3,0x21,0x41,0x69,0xe5,
0x58,0x62,0x1c,0x48,0x1c,0x99,0x5c,0xe,0xd3,0x67,0x9d,0x12,0x75,0x10,0xcf,0x99,
0x8d,0xda,0xfa,0x6,0x1b,0x3a,0xaa,0x75,0x86,0x3c,0x5a,0x34,0x1,0xef,0x55,0x27,
0xb1,0xfc,0xfa,0xf1,0xf2,0x28,0x69,0x3f,0x63,0x71,0x17,0x2d,0xd8,0x7b,0xf4,0xe6,
0xd8,0x2f,0x34,0x4,0x51,0x7c,0xec,0xf4,0xa8,0x40,0xe9,0x89,0xcb,0x48,0xf9,0xa5,
0xf3,0xe8,0xa8,0x39,0x21,0x9,0x23,0x0,0x4d,0x8a,0x13,0x51,0x2b,0x9d,0xea,0xb,
0x38,0xf8,0x2c,0xe2,0xa1,0xd8,0xd7,0x52,0x70,0x70,0x78,0x2a,0xa8,0x4,0x65,0xd4,
0xb2,0x4e,0x3e,0xf3,0x8c,0xc5,0x98,0xda,0x58,0x8f,0xb4,0x26,0x2d,0x1e,0xa7,0xd5,
0x5b,0x8f,0x2b,0x39,0x94,0x99,0xb0,0x2d,0xc5,0x32,0x7e,0xb3,0x64,0x9,0xfa,0xd9,
0xc2,0xe5,0xae,0xad,0x8c,0x62,0x72,0xa8,0x54,0x4a,0x68,0x67,0x22,0xde,0x74,0xf5,
0xb,0x6d,0x63,0x9a,0xe1,0xc8,0x21,0x16,0xd0,0x72,0xf3,0x68,0xe7,0x31,0xcd,0x1d,
0xd0,0x8a,0xa2,0x8b,0x17,0x2d,0xc2,0xb9,0xe7,0x9c,0x8d,0x8b,0x2f,0xb9,0x38,0x72,
0x9,0xf1,0x3e,0x75,0xd0,0x53,0x54,0x9a,0x4,0x54,0x7,0xee,0x20,0x91,0xc,0xb7,
0x96,0x90,0x8d,0x52,0xa9,0x9e,0x56,0xa1,0x89,0xe5,0xbb,0x3b,0xf6,0xa0,0xab,0xab,
0xcb,0x96,0x95,0xd6,0xbc,0x81,0xdf,0xfd,0xfe,0xf7,0x78,0xf4,0xb1,0xc7,0xf0,0xd0,
0x43,0xf,0x59,0x3c,0x54,0xdc,0x12,0x6e,0xda,0x8f,0xd8,0x46,0x55,0xf1,0x1d,0x83,
0x64,0x32,0x4c,0x4d,0x18,0x2a,0x8c,0x63,0x81,0x48,0xf1,0x69,0x6b,0x9,0xd5,0x35,
0xb5,0x20,0x99,0xcb,0x23,0xdf,0xd4,0x88,0xb6,0x89,0x93,0x31,0x63,0xce,0x3c,0x4c,
0x99,0x3e,0x1d,0xcd,0xed,0x6d,0xb4,0x4,0x2,0x94,0x68,0x99,0xc0,0xd3,0xcc,0x65,
0xe6,0x81,0x4f,0xf2,0x51,0x7f,0x43,0x52,0xc3,0xf5,0xa,0xbc,0x12,0xe9,0xe5,0x31,
0x12,0x61,0xce,0xae,0x58,0xfa,0x6d,0x62,0x97,0xce,0xed,0x1b,0xfb,0x3f,0xc6,0xd0,
0xf8,0x1c,0xd,0x28,0x3f,0x94,0xf6,0xd8,0x52,0xd2,0x51,0x65,0x95,0xcd,0x6a,0xbf,
0x81,0xc8,0xfa,0x8b,0xad,0xb3,0x98,0x1c,0xf4,0x1b,0x85,0x27,0x27,0x8,0x7,0x87,
0x23,0x83,0x3c,0x2d,0x5e,0xb1,0x80,0x85,0x13,0xdb,0x71,0xc1,0xec,0xd9,0xc8,0xb3,
0x91,0x27,0xd3,0xc7,0x67,0x7c,0xeb,0x31,0x23,0x87,0x8a,0xfc,0x11,0xe6,0x24,0x93,
0x36,0xab,0xb,0x15,0x74,0x14,0x2a,0xb8,0x6d,0xd9,0x52,0x6c,0xa4,0xa9,0x54,0x4a,
0xa5,0x6d,0x14,0x4e,0x24,0xc,0x46,0x27,0xb4,0xf6,0x49,0x3,0xc9,0xe1,0xad,0xcf,
0xbf,0x1a,0x8d,0x14,0xec,0xa5,0x54,0x99,0xd6,0x40,0x2,0x19,0x9,0x76,0x5a,0x5,
0xb,0xe6,0x9f,0x8e,0x4b,0x2e,0xbe,0x8,0x57,0x5e,0xf9,0x1c,0x1b,0x6f,0x9f,0xa7,
0x20,0x95,0x1b,0x22,0x9f,0x97,0x20,0x8c,0xf4,0x64,0xe5,0xb,0xa5,0x8c,0x49,0x3d,
0x1d,0x8c,0x10,0x74,0x39,0xfe,0x8e,0x10,0xe9,0xc4,0xc2,0x48,0x47,0xdd,0x93,0xce,
0xe4,0x79,0x31,0x81,0xfe,0x81,0x7e,0x73,0x9,0x2d,0x59,0x72,0x3f,0x6e,0xbe,0xf1,
0x8f,0x36,0x2a,0x4a,0x5b,0x6e,0xf6,0x16,0x7a,0xe0,0x8b,0x2d,0xf4,0x30,0xa,0x65,
0x7b,0x8d,0x5c,0x78,0x3a,0xd2,0x46,0x48,0x25,0x6,0x6,0x9f,0x69,0x96,0x0,0xe3,
0x5c,0x33,0x90,0x81,0x66,0x3,0x97,0x18,0xf7,0x80,0x9c,0xad,0x49,0x71,0x59,0x2f,
0x87,0xde,0x81,0x12,0x5,0x7a,0x12,0xad,0x13,0xa7,0xe0,0xb4,0xc5,0x67,0xa0,0x8d,
0xd6,0xc0,0x24,0xa6,0x47,0xbf,0x51,0xe9,0xa9,0xa3,0x98,0x92,0xdf,0xce,0xab,0x51,
0xb6,0xf7,0xea,0xd4,0x76,0x36,0xb3,0xf8,0xdb,0x25,0xfb,0x22,0xee,0x57,0x89,0x6e,
0x88,0x4e,0x87,0x9c,0x54,0xc1,0xb8,0xf1,0xb7,0x7,0x5e,0x17,0xe2,0x97,0xc,0x1,
0x5f,0x20,0x1,0x2e,0x8b,0xc3,0x36,0xec,0x21,0x92,0xa9,0x30,0x5a,0xf6,0x9b,0x9f,
0x15,0x57,0x7d,0x5f,0x2a,0x15,0x6c,0x32,0x5c,0x5e,0x1d,0xdc,0x36,0x91,0x4c,0xab,
0xa8,0x8a,0xb8,0x44,0x10,0x11,0x61,0xd,0x7d,0x63,0x94,0x9e,0xf8,0x7d,0xfa,0x26,
0x3a,0x77,0xc4,0xe0,0x70,0x3c,0x40,0xb5,0x8d,0xb5,0xce,0x47,0xc6,0x2f,0xe2,0xf2,
0x85,0xb,0x31,0xb3,0xae,0x9,0xb9,0x74,0xe4,0x3a,0x56,0x2b,0x52,0x2d,0x34,0xf,
0xa6,0x70,0x94,0xab,0xe4,0xb1,0x23,0x87,0x6a,0x3,0x15,0x62,0x1d,0xf1,0xc1,0x5d,
0xbb,0x71,0xc7,0xf2,0xa5,0x28,0xb1,0x71,0x92,0xff,0x6c,0xad,0x24,0x5b,0x53,0x64,
0x94,0xb6,0x33,0x8d,0xbe,0xcc,0x31,0xee,0xff,0xf0,0xee,0xf7,0x61,0xf7,0x8a,0x15,
0x28,0xa7,0x4a,0x4c,0x8b,0x47,0x2d,0xb8,0x82,0x65,0x4b,0x1f,0xc2,0x94,0xc9,0x93,
0xa8,0x75,0xd2,0xc,0x4c,0x52,0xe0,0x9b,0xe0,0x89,0x84,0x50,0x4,0xa,0x4d,0xb3,
0x9a,0xf6,0x45,0x5c,0x1c,0xb1,0xd5,0xa0,0xcf,0x85,0x52,0xd1,0x16,0xce,0x53,0x27,
0xb1,0x96,0xcf,0xd6,0x7e,0xc4,0x2b,0x57,0xad,0xc5,0xe3,0x8f,0x3f,0x6e,0xae,0x21,
0x69,0xb4,0x12,0x7e,0x3e,0x9f,0x49,0x3b,0xc0,0x84,0xb1,0x59,0x16,0x7c,0x9f,0xc8,
0x40,0xd6,0x8c,0x88,0x44,0x9d,0xc1,0xd1,0x52,0xd,0xea,0x1d,0xd0,0xe,0x75,0x22,
0x38,0xfe,0x86,0x47,0x9d,0x17,0xfd,0xc,0x3c,0x96,0xcd,0xb8,0x49,0x13,0x30,0x5e,
0x2e,0xa1,0x71,0x6d,0x68,0x18,0x3f,0x1,0x8d,0x2d,0x6d,0x98,0x38,0x79,0x2a,0x52,
0xd9,0x3c,0xa,0xe5,0xd0,0x86,0x1d,0x17,0xa9,0x4d,0xb,0x12,0xb8,0xc7,0x16,0x96,
0x98,0xbd,0x60,0x7e,0xc4,0xf5,0x69,0x1f,0xe8,0x36,0x5e,0x56,0x1e,0x1b,0xf1,0x32,
0x13,0xbc,0x74,0x75,0x39,0x9,0x86,0x38,0x8f,0x64,0x35,0xd9,0xed,0x4e,0xb8,0x3b,
0x8c,0xa,0x48,0xe1,0x9,0x90,0xe,0x4b,0x68,0xa5,0xd5,0xfd,0x8c,0xb3,0xcf,0x46,
0x6b,0x2e,0x1b,0xd5,0x71,0x7e,0x1b,0x87,0x63,0x81,0x63,0x47,0xe,0x7a,0xac,0x8,
0x82,0x92,0x47,0x43,0x55,0x7d,0x6a,0xa7,0xdf,0xbd,0xff,0x4e,0x14,0x94,0x54,0xcd,
0x3c,0xa5,0x34,0xd2,0x6a,0x84,0x11,0x46,0x67,0x43,0x55,0xa7,0x69,0xc5,0x2f,0xe0,
0xe6,0x1f,0xfe,0x37,0xee,0xf8,0xdf,0xff,0x65,0x3a,0xb5,0xf3,0x18,0xb,0x8e,0x69,
0xff,0xfc,0x67,0x3f,0x83,0xbf,0xfa,0xab,0x37,0x98,0xbb,0x48,0x43,0x5e,0xfd,0x30,
0x1a,0x87,0x6f,0xbb,0x78,0xf1,0x8f,0x67,0x7c,0x40,0x75,0xa3,0x9a,0x6a,0x11,0xc4,
0xbb,0xaa,0xf5,0xf6,0xf6,0xda,0xc4,0x31,0xcd,0x87,0x50,0x10,0x31,0x8,0x72,0x77,
0x48,0xb8,0xd9,0x88,0x21,0x6a,0xbd,0x22,0x90,0x18,0x7a,0x46,0x42,0x96,0x1a,0x8f,
0xa4,0x5c,0x7e,0x47,0xfa,0xb5,0xaf,0x79,0xcd,0x66,0xfa,0x8a,0x38,0x22,0xb,0x82,
0x12,0x1d,0xa9,0x7c,0x8d,0x75,0x6,0x57,0x32,0x29,0x4c,0x3f,0x75,0x16,0x66,0x9d,
0x36,0x17,0x33,0x17,0x9f,0x8f,0xc6,0xe6,0xa6,0x68,0xd2,0x18,0x85,0xbf,0xd6,0x72,
0xd2,0xba,0x43,0xea,0x0,0x2b,0x97,0xb4,0x50,0x5e,0xda,0xe2,0xcf,0x87,0xcb,0x50,
0x18,0x24,0xb0,0xa3,0x8d,0x38,0x3f,0xe2,0x67,0x5b,0xda,0x86,0xbe,0x46,0xa,0x5,
0xa1,0x6b,0xba,0x47,0xf1,0xd3,0xfa,0x4f,0x79,0xa6,0x29,0xee,0x23,0x88,0xac,0x88,
0x68,0xd9,0x71,0xfd,0x5e,0x9f,0x75,0x6f,0x48,0x8b,0x76,0xf0,0xfc,0x18,0xc5,0xdf,
0xc1,0xe1,0xa8,0x41,0xca,0x5c,0x22,0x60,0x5b,0xf6,0xe1,0x95,0x4a,0x58,0x38,0x7b,
0x36,0xce,0x9e,0x3e,0xc5,0x56,0x91,0xd0,0xb0,0x95,0xa1,0xb5,0xf7,0x68,0xd7,0xe5,
0x63,0xd7,0xe7,0xa0,0x6,0xcc,0x84,0x69,0xf7,0xab,0x5e,0xc6,0xf9,0xc1,0xc7,0x57,
0xe2,0xbe,0x8e,0x9d,0x14,0x4c,0x11,0xe7,0x49,0xa3,0x8d,0x84,0x97,0x34,0xcf,0xd1,
0xd9,0x40,0xb5,0xce,0x4d,0x22,0xe9,0x63,0xdd,0xdd,0xf7,0xe2,0x47,0x5f,0xf8,0x22,
0xca,0xe5,0x7e,0x26,0xc5,0xb3,0x14,0x5d,0x72,0xd1,0x85,0xb8,0xee,0xda,0x5f,0xf2,
0x4c,0x82,0x8d,0x74,0xc0,0x24,0xda,0xf0,0x4d,0x4d,0x72,0xc9,0x68,0xef,0x80,0x10,
0xdb,0x77,0x74,0xe0,0xee,0xbb,0xee,0xb6,0x51,0x42,0x5a,0x6a,0xba,0xb3,0xab,0x13,
0x9d,0x7b,0x3a,0xb1,0xa7,0xb3,0x73,0x70,0xc2,0x98,0x9,0x30,0x7b,0xdb,0xbe,0xb0,
0x42,0x1b,0x52,0x19,0x4c,0x0,0xf2,0x25,0xfa,0x53,0x9e,0x6a,0x44,0x8f,0x96,0x85,
0x28,0x69,0x84,0x18,0x49,0xa5,0x7d,0xe2,0x4,0x4c,0x3f,0x65,0x36,0x66,0xcf,0x9b,
0x87,0xb6,0x71,0xe3,0xe0,0xd7,0xd6,0x20,0xcb,0x90,0xa9,0xcd,0xdb,0x66,0xf5,0x1a,
0x70,0x1a,0xee,0x67,0xc9,0xe8,0x1d,0xa9,0x40,0x9b,0xdb,0x8,0x24,0x39,0x5e,0xd0,
0xb9,0xd6,0x94,0x52,0x7a,0x8e,0x15,0x94,0x96,0xa8,0x5a,0x32,0x4d,0xe6,0x9a,0xdc,
0xb,0xb9,0x7e,0x72,0xd5,0x21,0xa2,0xb1,0x35,0xa0,0x46,0xa1,0xf3,0x3,0x4,0xbe,
0xf6,0x86,0xde,0x1f,0x66,0x39,0x1d,0xc3,0xc8,0x3b,0x38,0x1c,0x45,0x58,0x3f,0xa0,
0xe4,0x87,0xda,0x67,0xa9,0xc8,0x7a,0xef,0xe1,0xea,0xb3,0x17,0xa2,0x29,0xc3,0xf6,
0x5b,0x8e,0xfa,0xf,0xa5,0x63,0x5b,0xad,0x1e,0x3d,0xe4,0xa0,0x8e,0xbb,0x24,0x2d,
0x85,0x4,0x36,0x16,0xfa,0x70,0xd3,0xd2,0x7,0x50,0xac,0xc8,0xbf,0x1b,0x48,0x4a,
0x52,0x78,0x49,0xc8,0xf0,0x38,0xb8,0xb3,0xd6,0x28,0x84,0x84,0x18,0xad,0x82,0xed,
0xcb,0x97,0xe3,0x5b,0x1f,0xf9,0x18,0xd9,0xa2,0x68,0x8b,0xbd,0x49,0x78,0xf5,0xf7,
0xf6,0xa0,0xab,0x73,0xf,0x9,0xa3,0x84,0xad,0x5b,0xb7,0xa1,0x63,0xf7,0x1e,0x6c,
0xdb,0xb6,0x1d,0xf7,0xde,0x7b,0xf,0x56,0xac,0x58,0x61,0x3b,0x8f,0xed,0xec,0xe8,
0x50,0x89,0x5a,0xea,0x25,0xe4,0x4,0x2d,0x10,0xa7,0x8e,0xe3,0x58,0xbb,0xd5,0x77,
0x56,0x41,0xf6,0x83,0x5d,0x1a,0x92,0x6d,0x12,0x8a,0x5e,0x6d,0x1d,0x72,0x8d,0x4d,
0xa8,0x6d,0x6a,0x46,0x4d,0x63,0x23,0x26,0x9d,0x32,0xb,0x53,0x66,0xcc,0xc4,0xa4,
0xe9,0x33,0x6c,0x52,0xd9,0x0,0x9f,0xab,0xd5,0x48,0x15,0x6a,0x92,0x39,0x23,0x37,
0x8d,0x38,0x52,0x39,0xe8,0x81,0xd1,0xf0,0xcb,0xea,0x63,0x79,0x1a,0x1d,0x53,0x56,
0xf9,0x74,0x41,0x7f,0xf1,0x3b,0x8f,0x75,0x99,0x29,0xfd,0x9e,0x27,0xd7,0x50,0xb4,
0xc7,0x80,0xf2,0xc7,0x82,0x3a,0x85,0x69,0x25,0x28,0xbd,0x42,0x4c,0xc,0x43,0x3f,
0xf,0x62,0x98,0xf9,0x1d,0x8e,0x1c,0x1c,0x46,0x13,0x54,0x5b,0x8d,0x18,0x14,0xa8,
0x28,0x95,0x69,0x41,0x2c,0xaa,0xf5,0x70,0xe1,0x82,0x33,0xd0,0x50,0xf1,0xcc,0x92,
0xf,0x78,0x53,0x54,0xab,0x8f,0x6e,0xbd,0x3e,0x66,0xe4,0xa0,0xd,0x52,0x10,0x96,
0x51,0x4a,0x7a,0xb8,0xfe,0x81,0x87,0xb0,0xbe,0x58,0x46,0x5a,0xaf,0x8a,0x5f,0xc7,
0x74,0xc4,0x2f,0x1e,0xad,0xe4,0x90,0xe,0x12,0x36,0x74,0xb3,0x73,0xdb,0x16,0x7c,
0xf5,0x9a,0xf7,0xc3,0xeb,0xd8,0x81,0x12,0x13,0xa5,0x51,0x40,0x72,0xf,0x9d,0x76,
0xda,0x3c,0x1b,0x2a,0xaa,0x3d,0x14,0x94,0xcd,0x12,0x60,0x43,0x85,0x98,0xae,0x91,
0x2,0x78,0x54,0xe,0xb0,0x78,0x79,0x2c,0xa5,0x59,0xd,0x78,0x8f,0x11,0x2,0xf3,
0x30,0x45,0x16,0xcd,0x49,0x80,0xf3,0xa3,0xf6,0x78,0x2e,0x93,0x5c,0x3,0x1e,0x7,
0xa,0x1a,0x8,0x54,0x8b,0x53,0x4f,0x3f,0x1d,0x73,0x16,0x2f,0xc6,0xcc,0x79,0xa7,
0x91,0x10,0x9a,0xcd,0x52,0x30,0x62,0x61,0x10,0xe2,0x3c,0x8e,0x10,0xe5,0xb3,0x2a,
0x9b,0xde,0x6b,0xe7,0x43,0x6f,0x18,0x52,0xc,0xf1,0xe9,0xbe,0xbf,0x17,0x74,0xe5,
0xc0,0xf2,0xb2,0xe8,0x46,0xaf,0xdc,0x7,0xea,0x63,0x89,0x5,0xb6,0x5c,0x3f,0x46,
0x62,0x5e,0x34,0x2f,0x23,0xde,0xef,0x59,0xfb,0x5c,0xa4,0x49,0x2,0xd9,0x6c,0xe,
0xb9,0x5c,0xb4,0xc8,0x60,0xf4,0x1b,0x86,0xea,0xab,0x74,0x88,0xe2,0x7a,0x60,0x8c,
0x86,0x62,0x1f,0x72,0x38,0xe8,0xbd,0x43,0xef,0x71,0x38,0x51,0xd8,0x5b,0xa,0x71,
0x39,0x49,0x4,0x46,0x62,0xce,0x61,0x5f,0x98,0x62,0x56,0x85,0x66,0xe5,0x3f,0x63,
0xfe,0x69,0x38,0xb5,0xae,0x16,0xb9,0x21,0x79,0xb6,0x6f,0xdd,0x3f,0x72,0x1c,0x33,
0x72,0x90,0x6,0xac,0x19,0xd1,0xeb,0x76,0xed,0xc2,0xcd,0xcb,0x56,0xa0,0x3f,0x5b,
0xc3,0x24,0x44,0x82,0x71,0xac,0xc0,0x14,0x6e,0x96,0x47,0xa2,0x58,0xc0,0xdf,0xbd,
0xe5,0x6f,0x90,0xda,0xb1,0x1d,0x25,0xa5,0x91,0x85,0x24,0x1,0x2d,0xec,0x4f,0x6,
0x71,0x1,0x2a,0xd3,0xe3,0xdc,0x88,0x88,0xa1,0x5a,0xc0,0xda,0x97,0x80,0xf7,0x50,
0x8c,0x46,0x2,0x94,0xb7,0x37,0x8c,0x9b,0x8e,0x89,0x53,0x26,0x59,0x27,0x71,0xd3,
0xb8,0x36,0x34,0x8f,0x6b,0x45,0x43,0xeb,0x14,0x34,0x34,0x35,0x21,0x60,0x4,0x94,
0xcf,0x72,0xa0,0x4,0xd4,0xfc,0x63,0x2b,0xe0,0x68,0x57,0x94,0x43,0xc1,0x60,0x45,
0xe2,0xab,0x8d,0xf8,0x94,0x66,0x7d,0xe6,0xb9,0x2e,0xda,0xda,0x48,0x36,0x7b,0x38,
0x9a,0x54,0x17,0xbb,0x84,0xcc,0x6a,0x4a,0x30,0xad,0x24,0xb6,0x88,0x3c,0x22,0x2b,
0xca,0x61,0x6c,0x83,0xad,0x41,0x55,0xa5,0x6a,0x19,0xeb,0x53,0x74,0x7e,0xfc,0x6b,
0xee,0xe8,0x82,0xec,0xe1,0xc9,0xf9,0xc,0xae,0x3c,0x53,0x33,0xa7,0xd9,0xce,0x4c,
0x8,0x59,0xee,0xd9,0xf7,0x47,0xb,0xc7,0x8c,0x1c,0x7c,0x36,0xf2,0x3e,0x1e,0x6f,
0x7e,0xe0,0x41,0x6c,0xec,0xea,0xa5,0x49,0x94,0xa6,0xaa,0x1b,0x9,0xcc,0xb1,0x82,
0x72,0x4a,0x7c,0x9e,0x40,0x2d,0xc3,0x3f,0x7d,0xf0,0x1a,0x74,0x3c,0xbc,0x8c,0x5,
0xa7,0x15,0x4a,0xa3,0x2c,0x8d,0xc9,0x40,0x44,0xa1,0x73,0x9,0xbe,0x41,0xd2,0x60,
0x90,0x39,0x18,0x29,0xcf,0x9,0xa4,0xa9,0x35,0xe7,0xf3,0xb5,0xd4,0x9a,0xf3,0xa8,
0x6b,0x6c,0xc0,0xbc,0x45,0xb,0x30,0x7d,0xce,0x2c,0xcc,0x9c,0x35,0x1b,0x3,0xc9,
0x1c,0xa,0xa5,0x92,0xcd,0x20,0xb6,0x3d,0x17,0x2a,0x21,0x4a,0x9,0xe6,0x27,0x7f,
0x9b,0x12,0xe5,0x9a,0x1b,0x8a,0x82,0x38,0x15,0x90,0xac,0x4e,0xc,0x1,0xab,0x5a,
0xc6,0x7d,0x12,0xd1,0xaa,0xb4,0xd1,0x48,0x21,0x91,0x40,0xbc,0x4b,0x9c,0xa0,0xb8,
0x86,0xb4,0x7e,0x86,0x92,0x67,0x4c,0x9c,0x31,0xe2,0xef,0x1c,0xc6,0x36,0x64,0x75,
0x4b,0xa8,0x45,0x45,0xaf,0x32,0xa7,0x2,0xc1,0xba,0x7d,0x74,0x45,0xdc,0xd8,0x43,
0x51,0x13,0xe3,0x28,0x41,0x2e,0x9c,0x7d,0x2a,0x4e,0x9f,0x30,0x1e,0x39,0x63,0xd7,
0xbd,0x16,0xfa,0xd1,0xc2,0x31,0x23,0x87,0x62,0x18,0x60,0x75,0x6f,0x2f,0x6e,0x24,
0x39,0x20,0x95,0x85,0x17,0x24,0x50,0x1a,0x63,0xa,0xa1,0xc8,0x41,0x55,0x39,0xc3,
0x1c,0xec,0x5f,0xb3,0x1e,0x9f,0x7e,0xdb,0xdb,0x99,0xce,0x1,0xa,0xc2,0x27,0x4f,
0xa8,0x3a,0xa7,0x29,0x5,0x31,0x71,0xf2,0x14,0xcc,0x5d,0x30,0xdf,0xb6,0xa5,0xd4,
0x6,0x33,0xe9,0xfc,0x78,0x78,0xb9,0xc,0xca,0xfc,0xde,0x3a,0x89,0x59,0xde,0xea,
0x2e,0x1e,0xa,0x15,0x58,0x50,0xdd,0x3e,0x50,0xe,0x27,0x16,0x62,0x74,0xb4,0x6f,
0x8e,0x49,0x71,0x3e,0x21,0x62,0x22,0xd0,0x3c,0x8e,0x38,0xed,0x9a,0xec,0xb6,0x77,
0xd9,0xef,0xfd,0x31,0xdc,0x75,0x47,0x8,0x27,0x1b,0x12,0x94,0x11,0xf5,0x2d,0x2d,
0x38,0x75,0xfe,0x2,0xc,0x68,0xc4,0x99,0xf5,0x27,0x45,0xca,0x82,0xc3,0xc1,0x61,
0x7b,0x4b,0x53,0xab,0x6c,0x4e,0xa7,0xf0,0xbc,0x33,0xcf,0x44,0x63,0x22,0x80,0x47,
0x19,0x3b,0x6a,0xc8,0xa1,0xa7,0xd4,0x8f,0x9f,0xdd,0x7d,0xf,0xf6,0x78,0x59,0x24,
0xc3,0x14,0x6a,0xca,0x21,0x6,0xd2,0x63,0xab,0xd0,0xa3,0x4d,0xc2,0x29,0xd6,0x2a,
0x49,0xd4,0x95,0x7d,0x3c,0x7c,0xf3,0x2d,0xf8,0xf9,0x77,0xbe,0x81,0x62,0x61,0xe0,
0x0,0x6d,0x78,0x7f,0xc8,0xa0,0xd6,0x3d,0x72,0x9,0x15,0xa5,0x2d,0x69,0x33,0x1b,
0x36,0x8e,0x94,0x4f,0xcb,0x83,0x5,0xaf,0xef,0xe2,0xc2,0x8e,0x73,0xcd,0x8e,0x7c,
0xa4,0x8e,0x1a,0xb0,0x2a,0x6b,0x52,0x46,0xa6,0xb6,0x13,0x54,0x5c,0x94,0xcf,0x47,
0xb6,0x2f,0xf5,0xe1,0x23,0x4e,0xa7,0x52,0x6a,0x5b,0x7f,0x92,0xf0,0xe4,0x13,0x8d,
0x5d,0x44,0xb6,0x6,0xd3,0x1,0x18,0x2e,0x5f,0x86,0xbb,0xcf,0x61,0x2c,0x23,0x4f,
0x9d,0x67,0x80,0x75,0xbf,0x65,0xd6,0x29,0x78,0xfd,0x3b,0xdf,0x89,0x9,0xb3,0x66,
0xb2,0x3d,0x69,0x51,0x47,0x57,0x17,0x9e,0x8,0x95,0x24,0xdb,0x16,0x1b,0x7f,0x96,
0xed,0xeb,0x69,0x73,0x66,0x63,0x6e,0x73,0x83,0xed,0x55,0x7f,0xb4,0xf3,0xed,0x88,
0xc9,0x61,0xe8,0x8f,0xad,0xdb,0xb4,0xa4,0xd1,0x48,0x1,0x6e,0xd9,0xb2,0x3,0x2b,
0x37,0x6d,0x42,0xbf,0xc6,0xab,0x4a,0x60,0xf0,0x46,0x9,0xb4,0xb1,0x84,0x64,0x45,
0xcb,0x4d,0x6b,0x44,0x16,0x85,0x63,0x58,0x46,0x5d,0x57,0x2f,0x3e,0xf4,0xba,0xd7,
0xd8,0x1c,0x80,0xa1,0x38,0x98,0xfe,0xec,0xe0,0x70,0xb2,0x60,0xb8,0x3d,0xe1,0xd5,
0x3f,0xa6,0x90,0xa6,0x79,0x5c,0x28,0x85,0xf8,0xea,0x8f,0xff,0x1b,0xc5,0xe6,0x36,
0x47,0xe,0x4f,0x2,0xed,0x5b,0x2f,0xf7,0xb1,0x57,0xa1,0xcc,0x19,0x28,0xe2,0x25,
0x97,0x5c,0x86,0xd6,0xea,0x8a,0xc0,0x92,0x35,0xca,0xbd,0xea,0xc0,0xc3,0xe8,0xc3,
0x53,0xc4,0x51,0x55,0x33,0x49,0x64,0x8,0x35,0x12,0x25,0x93,0xc6,0x96,0x1d,0xbb,
0x6c,0x59,0x86,0xc1,0x51,0x31,0xf6,0xff,0xd8,0x84,0xea,0xb2,0xe6,0x2e,0x68,0x59,
0x6b,0x8d,0xb4,0x89,0xae,0xed,0x2d,0x15,0x65,0xb2,0xb,0x2e,0x9c,0xcc,0xe1,0x9,
0x41,0xfd,0x54,0x9b,0x33,0xdd,0x76,0xdb,0x6d,0x47,0x24,0xcc,0x4e,0x16,0x24,0x99,
0x5f,0xea,0x66,0xd0,0xf2,0x32,0x41,0x22,0x89,0x95,0x1b,0x36,0x9a,0xe3,0x39,0x26,
0x6,0xcb,0xc2,0xc1,0x93,0xa7,0x8e,0xa3,0x60,0x39,0xf0,0xe7,0xd5,0x27,0xf8,0x3c,
0x96,0x18,0xa1,0x35,0x9b,0x37,0xe3,0x8f,0x2b,0xd7,0xd0,0xfc,0x21,0xc3,0x89,0x2c,
0x28,0x28,0xad,0x43,0x7d,0x98,0xe5,0x22,0x46,0x33,0x62,0xcb,0xa1,0xac,0x89,0x5a,
0x15,0x1f,0x6b,0xfe,0x74,0x7,0x7e,0xf0,0xa5,0xcf,0xd9,0x28,0x9d,0x18,0x36,0x67,
0x41,0x1f,0x8f,0x2c,0x9b,0x1d,0x1c,0xc6,0xc,0x4c,0xc3,0x95,0xcb,0xd1,0xf3,0x6,
0x2d,0x7,0xea,0xc1,0x38,0xef,0xc5,0x2f,0xc2,0x55,0x7f,0xfd,0xa6,0x31,0xad,0x48,
0x1e,0xd,0x28,0xcf,0x94,0x47,0xea,0x8b,0xcc,0xf8,0x21,0x1a,0x48,0xac,0xcf,0x3f,
0xf7,0x4c,0xe4,0x53,0x1e,0x32,0xcc,0x5b,0x11,0x47,0x8c,0xa1,0x4a,0xea,0xe1,0xe2,
0xc8,0xc9,0x81,0x3f,0xb7,0x6e,0xd9,0x4a,0x12,0x7d,0x41,0x5,0x9d,0x14,0x92,0xd7,
0xff,0xe9,0x16,0x94,0x73,0xf5,0x91,0x2b,0x89,0x71,0x53,0xa7,0xaa,0x4f,0xf5,0x41,
0x6b,0x29,0x8d,0x25,0xc4,0xe4,0x50,0xa2,0xf4,0xf,0xc3,0x12,0x36,0xdc,0x7e,0x37,
0x7e,0xf0,0xc5,0xcf,0x99,0x25,0x11,0xe3,0xb2,0xcb,0x2e,0xc3,0xa7,0x3f,0xf5,0x49,
0xde,0xe7,0x9c,0x4b,0xe,0x27,0x2f,0xa2,0xfe,0x31,0x75,0xab,0xa5,0x6c,0xf5,0xe1,
0x6f,0x7d,0xeb,0x5b,0xf8,0xf1,0x4f,0xb5,0xe4,0x8c,0xc8,0x1,0x28,0x53,0x40,0x5c,
0xf2,0xff,0x5e,0x81,0x2b,0xdf,0xf0,0x57,0x8e,0x1c,0x9e,0x4,0x54,0xb5,0xa3,0x13,
0xc9,0x5e,0x91,0x2c,0x3f,0x9e,0x33,0xa5,0x19,0xb,0x66,0x9c,0x8a,0xfa,0x84,0x16,
0xcf,0x89,0x94,0x71,0x61,0xa8,0xa2,0x7a,0xb8,0x38,0xa,0xe4,0x20,0xa1,0xc7,0x40,
0xab,0xa0,0x8f,0x91,0x7a,0x68,0xeb,0x66,0xdc,0xb7,0xfa,0x31,0x84,0x5e,0xe,0x1e,
0x2f,0x8b,0x20,0x44,0xc,0x27,0x2b,0x39,0xbc,0xea,0x55,0xaf,0xc2,0xd7,0xff,0xf9,
0x6b,0x4f,0x6e,0x5a,0x3b,0x38,0x8c,0x61,0x48,0x41,0x14,0x2,0xad,0xd7,0xe5,0xfb,
0xf8,0xcc,0x67,0x3e,0x83,0x6f,0x7e,0xeb,0xdf,0x1d,0x39,0x3c,0x5,0x68,0xb8,0xaf,
0x51,0x4,0x45,0x77,0x59,0xaa,0x39,0x5,0xce,0x84,0xb0,0x1b,0xcf,0x3c,0xf7,0x42,
0x8c,0xcf,0xd4,0xda,0xc4,0x59,0x4d,0x48,0x55,0x3e,0x8a,0x2a,0x9e,0x2a,0x8e,0x58,
0x66,0x55,0x18,0x11,0xeb,0x68,0x66,0x84,0x2b,0x2c,0xf4,0x55,0x1b,0xb7,0xa0,0x3f,
0xdf,0x44,0xd6,0x49,0xd9,0x2,0x7b,0x65,0x5b,0x68,0x2e,0x35,0xe6,0x88,0xe1,0x60,
0x10,0x8b,0xc7,0x41,0x93,0x18,0x6,0xfa,0xb4,0x73,0x5,0x3f,0x27,0xc8,0xf0,0x2e,
0xb8,0x70,0x92,0x86,0x64,0xc2,0x67,0xe0,0x91,0x6d,0x21,0x97,0xc9,0xc1,0x2f,0x45,
0xab,0xfa,0x3a,0x1c,0x3e,0xd4,0xcf,0x10,0x90,0x10,0xc2,0x64,0xd2,0x96,0xcf,0x48,
0xf3,0xf3,0x8e,0x6c,0x2b,0x96,0x6e,0xdb,0x8d,0x9e,0x62,0x91,0x37,0x94,0x91,0x90,
0x3b,0xfb,0x8,0x59,0xf6,0x88,0xc9,0x41,0x26,0x8e,0xb9,0x8e,0x18,0xd1,0x55,0x9b,
0x36,0xa1,0x77,0xa0,0x30,0xb8,0xe7,0xb1,0x83,0x83,0x83,0x83,0xc3,0xb1,0x87,0xac,
0xb1,0x6d,0x3b,0x76,0x21,0x91,0xcf,0xa3,0x42,0xc2,0xd0,0x10,0xf2,0x23,0xf0,0x28,
0x19,0x8e,0xdc,0xdb,0x41,0x76,0xd2,0xb8,0xfc,0x2e,0x46,0xee,0xe1,0x8d,0x1b,0x11,
0x78,0x29,0xe4,0xab,0x23,0x76,0x1c,0x1c,0x1c,0x1c,0x1c,0x8e,0x7,0x42,0x74,0xf6,
0xf7,0xe1,0xb1,0x4d,0x5b,0x51,0xa2,0xfc,0xd5,0x9c,0xa3,0x23,0x1d,0x4,0x73,0xe4,
0x96,0x3,0x23,0xa0,0xdd,0xb6,0xd6,0xef,0xe9,0x44,0xf,0x89,0x41,0x16,0x44,0x22,
0x70,0x96,0x83,0x83,0x83,0x83,0xc3,0xf1,0x42,0x5a,0xab,0xb3,0x92,0x14,0xee,0x5f,
0xb5,0xa,0x7b,0x4a,0x3e,0xc9,0x41,0xab,0x62,0xab,0x6f,0xe2,0xa9,0xe3,0x28,0x58,
0xe,0xd1,0x6c,0xde,0x35,0x5b,0x36,0xa3,0x40,0x62,0xf0,0xe5,0x7,0x3b,0x42,0xc6,
0x72,0x70,0x70,0x70,0x70,0x38,0x74,0x68,0xbd,0x32,0xad,0xb0,0xe0,0x27,0x3d,0x6c,
0xda,0xb9,0x13,0x61,0xe2,0xc8,0x45,0xfb,0xe1,0x3d,0x41,0x2e,0x24,0x1e,0x34,0xe1,
0x22,0x9e,0x74,0xa1,0xbd,0x85,0xd7,0xf6,0xf5,0x62,0x73,0x97,0xf6,0x26,0x28,0xc3,
0xa3,0x39,0x93,0xd6,0x6,0xc4,0xe,0xa3,0xe,0x5a,0xfa,0x77,0xff,0x50,0x28,0xfb,
0x18,0xa0,0x26,0xa2,0xa5,0xc0,0xcb,0xa1,0x36,0x2c,0xd4,0x92,0x1f,0x9a,0x8,0x5f,
0xb1,0xa0,0x6b,0x2e,0x1c,0xfd,0x60,0x9b,0x34,0x55,0x34,0x73,0xd8,0x47,0xd1,0xf,
0xec,0x5a,0xd1,0xf,0x11,0x54,0x92,0x76,0xae,0xd1,0x3f,0x61,0x52,0xcb,0x35,0x3b,
0x45,0xec,0xa9,0x40,0x8b,0xfe,0x29,0x68,0xd9,0x19,0xf5,0x9b,0x6a,0x62,0x99,0x42,
0x8a,0x42,0x4d,0x1d,0xb9,0xd6,0x99,0x1b,0x87,0x51,0x80,0x7c,0x90,0xb4,0x61,0xab,
0xc5,0x5c,0xa,0x6b,0x76,0xed,0x62,0xdd,0xd1,0xc2,0x9c,0x47,0x46,0x10,0x87,0x3d,
0x94,0x35,0xbe,0x59,0x47,0x91,0x43,0x91,0x64,0x70,0xc3,0x5d,0x77,0x63,0x47,0x58,
0x42,0xd1,0xf3,0x6c,0x54,0x52,0xda,0xa7,0x0,0x39,0x9,0xf8,0x61,0xb8,0xa1,0xac,
0x3f,0xfc,0xc2,0xde,0xa1,0xac,0xca,0xda,0x17,0xbd,0xe8,0x45,0xf8,0xee,0x7f,0x7c,
0xdb,0x46,0x6a,0x8c,0x74,0x88,0xc,0xf6,0x47,0x49,0x6b,0x3d,0x31,0x1d,0xf7,0xdf,
0x7f,0x3f,0x6e,0xb8,0xe1,0x6,0xdc,0x77,0xdf,0x7d,0x76,0x5d,0x93,0x98,0x84,0xc3,
0xac,0x3e,0xe,0x87,0x8,0x2d,0x64,0xa8,0x75,0xaa,0xa6,0x4c,0x99,0x82,0x17,0xbc,
0xe0,0x5,0x78,0xfa,0xd3,0x9f,0x6e,0xab,0xdb,0xda,0xda,0x55,0x56,0x4c,0xcc,0x77,
0x8d,0x4,0x22,0x4b,0xe8,0x6f,0xa4,0x23,0x5a,0x2d,0x38,0x89,0x80,0x4,0x97,0xa4,
0x76,0x7b,0xcd,0x35,0xd7,0xe0,0x3b,0xdf,0xfd,0xde,0x9,0x1b,0xca,0x9a,0xaa,0x8e,
0xad,0x8d,0xe7,0x3,0x18,0x58,0x97,0xe3,0x16,0xb0,0x8f,0x9c,0x3b,0x32,0x19,0x7b,
0x5c,0x90,0xa2,0x2c,0x92,0xa2,0xae,0x95,0x9e,0xf3,0x7d,0x3,0x78,0xc1,0xd9,0xe7,
0x62,0x4a,0xa3,0x86,0xb5,0x3e,0xf5,0xba,0x71,0x58,0xe4,0xa0,0x3d,0x1a,0xa2,0x8a,
0x48,0xd6,0xe5,0x79,0x99,0xa7,0xdb,0x7a,0x7a,0x70,0xe3,0xfd,0xf,0x61,0x20,0x9d,
0x44,0x31,0x25,0x97,0x52,0xd2,0xe6,0x37,0x68,0xec,0xed,0x58,0xc7,0x58,0x26,0x87,
0x78,0x37,0xba,0x25,0xf,0x2c,0xc5,0xa7,0x3e,0xf5,0x29,0xdc,0x7a,0xeb,0xad,0x36,
0x81,0x69,0xe8,0xae,0x6b,0xe,0xc7,0xe,0x72,0xd5,0xaa,0xfe,0xe8,0xa8,0x49,0x63,
0x33,0x66,0xcc,0xc0,0x7,0xaf,0x79,0x3f,0x5e,0xf1,0xf2,0x57,0xd8,0x7e,0x18,0x9e,
0x47,0xed,0xcb,0x91,0xc3,0x21,0x61,0xa8,0x88,0x8b,0xf3,0x55,0x8d,0xd4,0x46,0x59,
0x2a,0x8f,0x29,0xb7,0xec,0xe,0xd6,0xeb,0xc8,0x5e,0xe6,0x77,0x3a,0xd7,0x45,0xbb,
0x2f,0x69,0x75,0x5e,0xbf,0x55,0x18,0x89,0x48,0xc2,0xb7,0x69,0x3,0x92,0xbb,0xe9,
0x42,0x9,0x53,0xb2,0x79,0x5c,0x75,0xde,0x59,0xc8,0x2b,0x6d,0xd5,0x7a,0x74,0xb8,
0x38,0x2c,0x4e,0x94,0x11,0x1b,0x9d,0xd0,0x1c,0xab,0x84,0x28,0xb2,0xc0,0xd7,0xef,
0xdc,0x86,0x72,0x2a,0x6d,0xe6,0xae,0xfe,0xa2,0x61,0xad,0xd1,0x6d,0xe,0xa3,0x13,
0xaa,0x4c,0x6a,0xc,0xab,0x57,0xaf,0xc6,0x95,0x57,0x3e,0xf,0xb7,0xdd,0x76,0x3b,
0x72,0x39,0x69,0xad,0xda,0xa7,0x41,0xd,0x44,0x8b,0x7c,0xb9,0x70,0x2c,0x83,0x9a,
0x66,0x7c,0xcc,0x64,0x72,0xd8,0xb2,0x65,0x1b,0xde,0xf3,0x9e,0xf7,0xe0,0xa6,0x9b,
0x6f,0x22,0x71,0x3b,0x72,0x3e,0x1c,0xc4,0xe4,0x20,0x1,0x29,0xa5,0x47,0x28,0x4,
0xda,0x6d,0xa6,0x44,0xcd,0xba,0x8c,0x44,0xa9,0x1f,0xa9,0x62,0x3f,0x72,0x54,0xf0,
0x1a,0xd3,0x9,0xb4,0xe6,0x58,0xcf,0xbb,0x76,0xe3,0x91,0xbb,0xef,0xc0,0x3d,0xb7,
0xdc,0x8c,0x62,0xb1,0x68,0x4a,0xd1,0x48,0x25,0x6,0xc1,0x96,0xd4,0x60,0x50,0x7d,
0xd1,0xde,0x39,0x3d,0x4c,0xf3,0xce,0xae,0x6e,0x94,0xcb,0xc3,0xec,0xa3,0x7e,0x88,
0x38,0x3c,0x31,0x5e,0xcd,0x1b,0x3b,0x30,0xa3,0x8a,0x7e,0x9,0xeb,0xb7,0x6e,0xb1,
0x4e,0x68,0xed,0x45,0x1c,0x73,0x47,0x30,0xa,0xb4,0x64,0x87,0x83,0x23,0x6e,0x4c,
0xf,0x3c,0xf0,0x80,0x91,0x84,0x5c,0x1c,0xbe,0xef,0x46,0xa0,0x8d,0x4,0xfc,0xea,
0x57,0xbf,0x32,0x41,0xe5,0x70,0xe8,0x90,0x50,0x57,0x9e,0x69,0xc3,0xa9,0xda,0xda,
0x5a,0x74,0x77,0x77,0x63,0xc7,0xb2,0x47,0xf0,0xf0,0x8d,0x37,0xe1,0xf7,0xff,0xfe,
0x3d,0x5c,0xf7,0xb5,0x6f,0xe0,0x7f,0x3e,0xf5,0x5,0x7c,0xeb,0xdd,0x1f,0xc0,0x27,
0x5f,0xf5,0x5a,0xbc,0xed,0x8a,0x2b,0xf1,0xa9,0xff,0xf7,0x17,0xf8,0xd9,0xa7,0x3e,
0x8f,0x15,0x7f,0xb8,0xd9,0x7e,0xaf,0xfa,0x1f,0xb7,0x8b,0x91,0x88,0x38,0x66,0xf2,
0x96,0x89,0xfe,0x7a,0x3,0x1f,0xdb,0x3b,0x3a,0x8e,0xc8,0xd2,0x3f,0x4c,0x1d,0x5f,
0x16,0x3,0x99,0xa8,0x12,0xc0,0x67,0x2c,0x56,0x6d,0xee,0x40,0x57,0x90,0xb6,0x8,
0x69,0xaf,0xe0,0x14,0xb5,0x4a,0xf9,0xf2,0x4e,0x96,0xd9,0xd0,0x63,0xd,0x95,0x24,
0x1b,0x80,0x36,0xe5,0x67,0xad,0x48,0xa5,0x3d,0x73,0x1d,0xca,0x5a,0xd4,0xce,0x73,
0x2c,0x60,0xb3,0xa,0x15,0xa4,0xa0,0x68,0x25,0x76,0xd5,0xc8,0x90,0xe5,0x1d,0x84,
0xbc,0x37,0x64,0x3d,0xe0,0xf9,0x1,0x81,0xbf,0x3d,0x2e,0xa1,0xfa,0xbe,0xa,0xcd,
0xd6,0xa,0xad,0x58,0xb,0xd4,0xa,0x2b,0x9,0xa5,0x49,0x81,0x29,0x61,0xa8,0x2b,
0x7,0xc8,0x7,0x15,0x26,0xc7,0x43,0x99,0xa1,0x98,0x48,0x33,0x19,0xb2,0x79,0xa3,
0xc6,0x20,0x1f,0xad,0x5,0x7e,0xa,0xf9,0xbf,0x3a,0x2d,0xd3,0xd4,0xd4,0xb5,0x76,
0x58,0x4f,0x26,0x6d,0xae,0x36,0x5,0xb5,0x37,0x8d,0xd8,0x56,0x8,0x4b,0x19,0x94,
0xfd,0x34,0x8a,0xbc,0x7,0x29,0x35,0x4d,0x69,0xa5,0xda,0xaa,0xc9,0x56,0x1d,0x43,
0x90,0xcc,0xa2,0x88,0x1c,0xca,0xcc,0xa3,0x40,0xfb,0x8e,0xf,0x9,0x7e,0xc5,0x43,
0x29,0x99,0x33,0xcb,0x9b,0x4f,0xe2,0x2f,0x7c,0xde,0xaf,0x78,0x47,0x79,0x3d,0x34,
0x48,0xeb,0x15,0x51,0x6b,0xcf,0xed,0xb1,0x80,0xc1,0x3a,0xc4,0x43,0xa8,0xfa,0xc5,
0x64,0xb1,0xd4,0x6c,0x78,0x3c,0x3f,0xb1,0x5c,0x6d,0xb3,0x5c,0x96,0x25,0xef,0x60,
0x86,0xfb,0x12,0xd0,0xcc,0x7,0xab,0x93,0x49,0x6,0x2f,0x40,0x59,0x1b,0xf3,0xb2,
0x9c,0xa1,0x32,0xae,0x94,0x68,0x12,0xec,0x81,0xdf,0xb3,0x1d,0xfe,0xae,0xcd,0x28,
0x6d,0x5e,0x87,0xdd,0x8f,0x2c,0xc5,0xf2,0xeb,0xfe,0x7,0xbf,0xff,0xfa,0x97,0xf1,
0xb5,0x37,0xbe,0x16,0xef,0x7b,0xc6,0xa5,0xf8,0xfb,0x57,0xbc,0x18,0xff,0xfe,0xe1,
0x8f,0xe0,0x17,0x5f,0xfb,0x47,0xdc,0x75,0xdd,0x2f,0xf1,0xd0,0x1f,0x6f,0xc4,0xca,
0x87,0xee,0xc1,0xa6,0x35,0x2b,0xd1,0xbb,0xbb,0x83,0x71,0x8,0x90,0xf0,0xf8,0xfc,
0x74,0xc8,0xe7,0xfb,0xd5,0x3c,0x1f,0xd9,0x96,0x43,0xa2,0x92,0x86,0x17,0x24,0x91,
0xf5,0x43,0xa4,0x99,0x97,0x1,0xeb,0xe8,0x8a,0xce,0x4e,0x6c,0xe7,0x77,0xaa,0x83,
0x6c,0xa0,0x96,0xd1,0x87,0x43,0x6f,0x87,0x55,0xcb,0xe4,0x5f,0x57,0xd0,0xc,0xbc,
0x81,0xa0,0x8c,0xd,0x5b,0xb6,0xf0,0x9,0x63,0xa3,0xa2,0x3a,0x1c,0x3a,0xc2,0x64,
0x9,0x41,0xaa,0xc8,0x23,0x1b,0xa5,0x1c,0xc6,0x16,0x28,0x14,0x7,0xcf,0x87,0x4,
0x36,0xb2,0xe3,0x12,0xaa,0xef,0xb,0x3d,0x9f,0xf1,0x8a,0x42,0x54,0xbd,0xd5,0xa0,
0xf7,0xd6,0xd1,0x2d,0x35,0x21,0xf6,0x64,0x7c,0xca,0x92,0x6e,0x34,0x16,0x76,0xa3,
0x6d,0xa0,0x3,0xf5,0x7d,0x9d,0xc8,0xf7,0x76,0x5b,0x68,0x2a,0x15,0x50,0xd3,0xd7,
0x83,0xba,0xd2,0x0,0x32,0x61,0x64,0x92,0x6b,0xa9,0x2,0x36,0x37,0x64,0xa8,0x18,
0x85,0xc1,0x0,0x85,0x54,0xf,0x5,0x51,0x2f,0x5,0x55,0x14,0x6a,0xfc,0x3d,0xa8,
0xf5,0x3b,0x91,0x2b,0xf6,0x20,0x93,0xa8,0x43,0xc9,0x1f,0xcf,0x56,0xa8,0x6d,0x51,
0x45,0xa8,0xfc,0x4d,0xb2,0x9b,0xf9,0xb5,0xb,0x7e,0x7a,0x37,0x8a,0xe9,0xae,0x7d,
0x42,0x29,0xbd,0x7,0xa5,0xca,0x2e,0xa4,0xb2,0xb1,0xf9,0x9f,0x46,0x22,0xcc,0x56,
0xcf,0xc7,0x36,0x62,0x51,0x2b,0x81,0x2f,0x68,0xa4,0x50,0x81,0x7a,0x65,0xd1,0xd3,
0x28,0x48,0x7e,0xef,0x91,0xa2,0x2d,0xef,0x43,0x1e,0x3,0x64,0x49,0x8,0x5e,0xa9,
0x88,0x66,0x5e,0x6f,0xa7,0xb0,0x4e,0x6d,0xdb,0x8e,0xad,0xf7,0xdf,0x8f,0x3f,0xff,
0xf4,0x67,0xf8,0xcf,0xcf,0x7e,0xe,0x5f,0x7b,0xf7,0x7b,0xf0,0x95,0xb7,0xbf,0x1b,
0x5f,0xfe,0xdb,0x77,0xe1,0xef,0xdf,0xf6,0x4e,0x7c,0xfe,0xad,0x6f,0xc7,0xbf,0x7c,
0xe0,0x43,0xf8,0xef,0x1f,0xfc,0x10,0x7f,0xbc,0xe9,0x66,0x6c,0xd9,0xb4,0x5,0x1e,
0x7f,0x97,0xcd,0x64,0x7,0x85,0xfd,0x58,0xee,0x3f,0xeb,0x19,0x18,0xc0,0x96,0x9d,
0xac,0x77,0xf6,0x49,0x19,0x7a,0x78,0xe4,0x70,0x98,0x1d,0xd2,0xfa,0x5f,0xba,0xd,
0xb0,0x9e,0xac,0x74,0xf3,0xd2,0x87,0xd1,0x9f,0x62,0x65,0x3e,0xa,0x63,0x6a,0x47,
0x23,0xc6,0x5a,0x87,0xb4,0x86,0x46,0xaa,0xa5,0xaa,0x5f,0x41,0x35,0xe9,0xa7,0x6c,
0x74,0x6f,0xfd,0xdb,0x77,0x46,0x5f,0xe,0x81,0xb4,0xdc,0x94,0x57,0x87,0xb6,0xb6,
0x29,0xac,0xd,0xd2,0xbc,0x5,0x69,0x7b,0x27,0x3e,0x8d,0xda,0x4b,0x5b,0xe8,0xeb,
0xef,0xa7,0x16,0xb8,0x86,0x65,0x41,0xbb,0x40,0x5a,0xa9,0x19,0xdb,0x3c,0xa7,0xb6,
0x3e,0x8b,0x65,0xf6,0xc6,0x33,0xcf,0xc1,0xbc,0xbc,0x16,0x87,0x2c,0x9b,0x16,0x1a,
0xb,0x28,0x89,0x22,0x59,0x6,0xf7,0x52,0xf1,0xf9,0xda,0x63,0x2b,0xd1,0x99,0xcd,
0xd2,0x1a,0x49,0x20,0x4f,0xe1,0x94,0xcc,0x85,0xf8,0xbf,0xf,0x5e,0xc8,0x74,0x37,
0x23,0x29,0x49,0x26,0x8d,0x95,0x69,0xee,0x23,0xd9,0xc8,0xce,0x18,0xf0,0x73,0xf8,
0xb7,0x5f,0x2c,0xc7,0xff,0xde,0xb2,0x9,0xc5,0x62,0xad,0xf9,0x81,0x45,0xa2,0xe7,
0x3d,0x7d,0x3e,0x5e,0xf3,0xd7,0x2f,0xb6,0x3d,0xbe,0x13,0x7,0x28,0x53,0x9,0x14,
0x7a,0x7d,0xfc,0xf4,0xbb,0xd7,0xe1,0xc1,0xdb,0x1f,0x63,0x83,0xcc,0x31,0xff,0x79,
0xf,0x7f,0xb7,0x3f,0x2a,0xac,0x63,0xaf,0x79,0xcd,0x6b,0xf0,0x2f,0xff,0xf2,0x4f,
0x51,0x1d,0x63,0x9d,0x1a,0x6d,0x1d,0xd2,0xbe,0x1f,0x20,0x95,0x4c,0xe3,0x23,0x1f,
0xf9,0x8,0xfe,0xed,0x5b,0xff,0x41,0x22,0xa8,0x98,0xc7,0xa1,0x42,0xad,0xf7,0x19,
0x2f,0x7d,0x39,0xae,0xfa,0x9b,0xbf,0x42,0x58,0xf6,0xd1,0xdf,0xd5,0x83,0xee,0x5d,
0xbb,0xd1,0xbb,0xa7,0xb,0xdd,0x9d,0xbb,0xd0,0xb5,0xa7,0x3,0xbb,0xb7,0xef,0x44,
0xe7,0x8e,0x5d,0xd8,0x46,0x21,0xbf,0x7b,0x27,0xad,0x3,0xbf,0x9f,0xf5,0x90,0x24,
0xc1,0xa,0x28,0xcf,0x5,0x33,0x8e,0x25,0x2c,0x2b,0x8f,0xcf,0xe4,0x67,0x73,0xc1,
0xf3,0xbc,0x98,0x4e,0xf1,0xf9,0xb4,0x3,0x99,0xf7,0xfa,0x4e,0x82,0x2c,0x41,0x72,
0xd0,0x44,0x31,0x91,0x83,0x88,0x42,0x6d,0x55,0xe5,0x2e,0xc2,0x88,0x45,0xa2,0x8e,
0xd3,0x16,0x2d,0xc6,0x5f,0x7e,0xf6,0x8b,0xf6,0xdd,0xa8,0x3,0x2d,0xad,0x49,0x75,
0xb5,0x78,0xd6,0xa2,0x85,0x68,0x62,0x3e,0x59,0x76,0x30,0x53,0x48,0x8b,0xd1,0xf7,
0x4f,0x82,0xc3,0x26,0x7,0x1a,0x6f,0xb6,0xf3,0xd9,0xdd,0x2b,0x1f,0xc3,0xa3,0x3b,
0x3b,0x68,0x96,0xa7,0xe0,0x89,0x95,0x4e,0x42,0x9c,0xac,0xe4,0x50,0xf4,0x1b,0xf1,
0xba,0xd7,0xbf,0x7,0xd,0xd,0x53,0x78,0x7f,0xc6,0x2a,0x9c,0x1a,0xbf,0x8d,0xee,
0x38,0xc1,0x88,0xf3,0x3e,0x95,0xf2,0x70,0xdd,0xcf,0x3e,0x81,0xad,0x5b,0x37,0x53,
0x8,0x14,0xd9,0xb8,0x19,0x39,0xa,0xf8,0x81,0x5c,0x1a,0x17,0x78,0x39,0x7c,0x9c,
0xe4,0x30,0x8e,0x96,0x42,0x98,0xf2,0xe1,0x33,0xc8,0x32,0x18,0x8a,0xcd,0x14,0x56,
0x1f,0xbf,0x6b,0x19,0xd6,0xf3,0x5e,0xb9,0x9f,0x6a,0xcb,0x3d,0xb8,0xf4,0x82,0xf9,
0xf8,0xc6,0x1b,0x27,0xc3,0xa7,0xd5,0x9c,0xd4,0x1c,0x3,0xb9,0xe0,0xd8,0x16,0x32,
0x3e,0xb5,0x51,0x5a,0x12,0x3e,0x5,0xfb,0x8a,0xae,0x99,0x78,0xe5,0x35,0x3f,0x45,
0x51,0xae,0x22,0xe6,0x89,0x9f,0x2e,0xe0,0x2f,0xdf,0xf1,0x62,0x9c,0x79,0xc9,0x4c,
0x92,0x85,0xdc,0x22,0xfb,0xb6,0x15,0x89,0xb3,0x84,0x9f,0xc4,0xd2,0x3f,0x6f,0xc2,
0xf7,0xff,0xf9,0x67,0xcc,0xc3,0x3c,0xaf,0xca,0x3a,0x2f,0x45,0x37,0xc,0xc1,0x58,
0x20,0x87,0xc2,0x40,0x11,0x9e,0x97,0x31,0x72,0xf8,0xde,0xbf,0x7d,0xf,0xfd,0x69,
0xa6,0x9f,0x5f,0xd5,0x7a,0xb5,0x68,0x98,0x38,0x15,0x3,0x85,0x6e,0xec,0xd2,0x24,
0x2e,0x92,0x48,0x86,0xb2,0xc5,0x86,0x62,0x52,0x88,0xa7,0xd8,0xc6,0x24,0xd4,0x12,
0x14,0xf2,0x2a,0x4a,0x11,0x6f,0xc9,0x33,0x87,0x89,0x7d,0x36,0x22,0x20,0x8a,0x43,
0x3d,0xda,0xd5,0x6c,0x49,0x6b,0x7c,0x27,0x21,0x22,0x88,0x5c,0x82,0x2c,0x3b,0x5e,
0x4a,0x56,0xad,0x7,0xb9,0x8d,0x34,0x22,0x2c,0x93,0xc9,0x44,0xae,0x2b,0xb6,0xdb,
0x58,0x2c,0x4e,0x5d,0x28,0x72,0xf8,0xc2,0xa8,0x24,0x7,0x6d,0x41,0xdc,0xc0,0x34,
0x5e,0x3e,0x77,0xe,0x66,0xb6,0x34,0x5a,0x76,0xc8,0x25,0x47,0x75,0x3e,0xba,0xe1,
0x49,0x70,0x58,0x29,0x96,0xeb,0x4f,0x79,0x56,0xc,0x7c,0xac,0xd9,0xbc,0x89,0xc2,
0x44,0x7e,0xdd,0xd1,0x97,0x69,0xe,0x47,0x86,0xa,0x5b,0x63,0xeb,0xf8,0xf1,0xac,
0x68,0x1e,0xca,0x21,0x1b,0x56,0x98,0x82,0xcf,0xba,0x51,0x1e,0x36,0x44,0xf7,0x1c,
0xfb,0x10,0xbd,0x4f,0x8b,0x7d,0x2a,0x14,0xf9,0x61,0xc2,0x84,0xc9,0x8c,0xad,0xea,
0xe7,0x5e,0x89,0x11,0x96,0xa,0xc8,0xb1,0xfe,0xe6,0x8b,0x3c,0x86,0x55,0x83,0xdb,
0xe6,0xe6,0xa4,0xf7,0xb,0x49,0x78,0xe5,0x88,0x30,0x24,0x82,0xe4,0x50,0xcd,0xd2,
0x52,0x48,0x26,0xba,0x79,0xde,0x43,0x81,0x54,0x44,0x4a,0x42,0x8b,0x1a,0xd3,0x40,
0x2a,0xb,0x3f,0x19,0xa0,0xe2,0xf5,0x50,0x38,0x75,0xa1,0x3f,0x13,0xed,0xe9,0x1d,
0xb5,0xc1,0x4,0xf3,0x46,0x76,0xb,0x5,0x8e,0x39,0xd9,0xf7,0xd,0xea,0xf,0x81,
0xc7,0xf7,0xe8,0xf7,0xf6,0xbd,0xde,0x19,0xbb,0x98,0xc6,0x1e,0xd4,0x29,0xbc,0x6d,
0xdb,0x36,0xdc,0x7e,0xfb,0xed,0xac,0x48,0xd1,0x35,0x53,0x2e,0x98,0x47,0x9b,0xd7,
0x6f,0x40,0xff,0xae,0xad,0xa8,0x49,0x95,0x91,0x67,0x48,0x7a,0x45,0x94,0xe4,0xbe,
0xf3,0xca,0x24,0xf1,0x32,0xca,0x3c,0x16,0x32,0x65,0xf4,0x65,0xcb,0x96,0xc7,0xda,
0x2e,0x53,0xa1,0x58,0x3d,0x2a,0xa4,0xc2,0xb4,0x85,0x64,0x45,0xee,0x39,0x4d,0x4,
0x4b,0x23,0xa0,0xe0,0x57,0xf0,0x28,0xaf,0xe6,0xce,0x99,0x83,0x17,0xbf,0xf8,0xc5,
0xf8,0xdb,0xb7,0xbd,0xcd,0xf6,0x94,0xf8,0xd1,0x8f,0x7e,0x84,0x5f,0xff,0xfa,0xd7,
0xb8,0xeb,0xae,0xbb,0xf0,0x8f,0xff,0xf8,0x8f,0x46,0x1c,0xf1,0x88,0xa6,0x51,0x8f,
0x54,0x1a,0xfd,0x85,0x12,0x76,0xec,0xde,0x6d,0xb5,0x4d,0xd9,0x5d,0xcd,0xf2,0x43,
0xc2,0x61,0x49,0x76,0x35,0x6,0x96,0x24,0x1e,0xdb,0xb2,0x3,0xe5,0x74,0xad,0x75,
0x28,0xe5,0xc7,0x4a,0x46,0x3a,0x1c,0x3a,0x82,0x1e,0x4a,0xdf,0x3a,0x56,0x34,0xf,
0x41,0xba,0x48,0xf9,0x97,0x45,0x42,0x95,0x81,0xc7,0x3,0x3,0x5,0xf3,0x71,0x9,
0xd5,0xf7,0x25,0xa3,0x10,0x52,0x3f,0xa,0xc2,0x5a,0xc6,0xd1,0xa7,0xa0,0x90,0x86,
0x4d,0x4d,0x9e,0xf1,0xad,0x5,0xe3,0x4d,0x6b,0xa0,0xab,0xc6,0x43,0x6f,0x46,0xfb,
0xf0,0x52,0x68,0x68,0x90,0x85,0xac,0x0,0x86,0x54,0x8a,0x9a,0x2c,0x8f,0x61,0x2a,
0x49,0xe1,0x94,0x41,0x9e,0x4c,0xe3,0x5,0x14,0x2e,0x7c,0x52,0x58,0xca,0x51,0x86,
0x67,0xa8,0xe9,0xd3,0x56,0xa6,0xea,0xa9,0xe7,0xca,0x7a,0x4c,0x25,0xb7,0xf3,0xdb,
0x12,0x2d,0xeb,0x6,0xde,0x53,0x8b,0x4c,0x90,0x82,0x94,0x55,0x75,0x66,0x87,0x7c,
0x56,0xda,0x23,0x39,0x14,0x7b,0xf8,0x5c,0x7d,0xa6,0x95,0x39,0x24,0xc8,0xe1,0x45,
0xdb,0xcb,0xe2,0xe9,0xf3,0xfb,0x40,0x2e,0xb0,0x31,0xa8,0x70,0xc9,0x18,0x95,0x60,
0x4a,0x69,0x72,0x1f,0xb5,0xd9,0xfe,0xc2,0x0,0x85,0x7d,0x2,0xe9,0x30,0x89,0x74,
0x25,0x45,0x5,0xa3,0x80,0x4c,0xb2,0x60,0xb3,0xc2,0x7d,0x66,0x5e,0x25,0x21,0xfd,
0x36,0x8d,0xac,0x97,0x27,0x71,0xa8,0x9b,0x5a,0xc3,0xa8,0xa9,0xe9,0x57,0x94,0xf7,
0x1e,0xd5,0xe2,0x10,0x59,0xca,0xa3,0x34,0x89,0x5e,0xf9,0xe7,0xd1,0xfc,0x68,0xac,
0xcb,0x63,0xda,0xb4,0xf1,0x98,0x33,0x67,0x3a,0x2e,0x3c,0xff,0x4c,0xbc,0xf2,0x65,
0x2f,0xc4,0xe7,0x3e,0xf5,0x51,0xfc,0xe0,0xbf,0xfe,0xd,0x8f,0x3d,0xfe,0x10,0x76,
0xee,0xde,0x88,0x3b,0xee,0xba,0x19,0xdf,0xfd,0xcf,0x6f,0xe0,0x93,0x9f,0xf8,0x30,
0x5e,0xf8,0x82,0xe7,0xe2,0x99,0xcf,0xb8,0x14,0xb,0xe6,0xcf,0xc5,0xf4,0x69,0x93,
0x90,0xcb,0x66,0x8c,0x1c,0x46,0x72,0xc7,0xf3,0xe1,0xc0,0xb,0xfa,0x99,0xd7,0x65,
0xac,0xd9,0xb1,0x1d,0xdd,0x1,0xeb,0x9e,0x5f,0x66,0xdd,0x8c,0x14,0xa2,0x43,0xc1,
0xe1,0xd5,0x42,0x56,0x5c,0x9f,0x85,0xb0,0x5d,0x4c,0xc4,0xc,0xd4,0x28,0x8f,0xc3,
0x7d,0x84,0x83,0xc3,0x89,0x44,0x50,0xf4,0xd1,0xd1,0xd5,0x8f,0x30,0xd3,0x4,0x3f,
0xdd,0x2,0xdf,0x6b,0xa3,0xa2,0xd3,0x8c,0x52,0xa6,0xd1,0xc2,0x80,0x57,0xf,0xbf,
0xa6,0x15,0x3b,0x4a,0x21,0xc9,0xc3,0xc3,0x80,0x7c,0x16,0xe9,0x14,0x5,0x7f,0x2,
0xf7,0xdc,0xff,0x20,0x76,0x87,0x8d,0x8,0x1b,0xa7,0xa1,0x90,0x1b,0x8f,0x62,0xcd,
0x44,0xb,0x65,0xef,0x2c,0x94,0xb2,0x8b,0x51,0xce,0xce,0xc1,0x9f,0xee,0x7d,0x14,
0x15,0x6a,0xb0,0x12,0xf6,0x12,0x88,0x64,0x22,0x6c,0x5c,0xd3,0x81,0xe6,0x9a,0x53,
0x48,0x4c,0x2d,0xa8,0x4f,0xd4,0xed,0x13,0xea,0x12,0x2d,0xa8,0x4b,0x4f,0xc5,0xca,
0xe5,0x1b,0x79,0x73,0xdc,0x7f,0x73,0xf2,0x2a,0x5c,0xb1,0x44,0x19,0xc,0x94,0x33,
0xea,0x2b,0xd0,0x79,0x50,0x2e,0xa3,0xa4,0x39,0x7,0xfc,0xbc,0x60,0xfe,0x2,0xbc,
0xf6,0xb5,0xaf,0xb5,0x4d,0x83,0x64,0x85,0x2c,0x59,0xb2,0x4,0x4b,0xee,0x5f,0x82,
0x9b,0x6e,0xfe,0x1d,0x6e,0xb9,0xf5,0xf,0xb8,0xfe,0x86,0x5f,0xe2,0x1b,0xdf,0xfc,
0x27,0xbc,0xe5,0xad,0x6f,0xc4,0xf3,0x5f,0x78,0x35,0xc6,0x8d,0x9f,0x40,0xd2,0x91,
0x2,0xc3,0x42,0x11,0x29,0x93,0x80,0xe5,0x4e,0x92,0x27,0x64,0xe3,0xc6,0x8d,0xf8,
0xfb,0xbf,0xff,0x7b,0x7c,0xf0,0x9a,0xf,0x56,0xaf,0x1d,0x8e,0x7e,0x3d,0x72,0x61,
0x2e,0xb3,0x74,0x6,0x7d,0xb4,0x9a,0x36,0xd0,0x5a,0x93,0xf5,0x70,0x38,0x38,0xac,
0x3e,0x7,0xad,0xa9,0xb3,0xa5,0xb7,0xf,0x7f,0x78,0xf8,0x61,0xf4,0xf0,0x5c,0x1b,
0x5c,0xab,0x19,0x88,0x28,0x4e,0x46,0x9c,0xac,0x7d,0xe,0x85,0x72,0x2,0xef,0x7d,
0xf7,0xf,0x50,0x8,0x13,0x28,0x27,0xb5,0xb1,0x48,0x1d,0x92,0xc9,0x6e,0x3e,0x40,
0xfe,0xf2,0x91,0x83,0x7,0xee,0xf8,0x3e,0x1e,0x7a,0xe8,0x26,0x4a,0x15,0x9f,0x65,
0x92,0x81,0x9f,0x2a,0xa2,0x2f,0x9b,0x46,0x8d,0x5f,0x42,0x53,0x71,0x0,0xad,0x75,
0x39,0xa6,0x59,0xfe,0x65,0x8f,0x75,0x99,0xd6,0x7,0xa1,0x61,0x93,0x6a,0x11,0xdd,
0x3,0x3,0xac,0xe3,0x49,0x92,0x47,0x9a,0x5,0xed,0x21,0x2b,0xd,0x35,0x28,0xa3,
0x21,0x9d,0x47,0x63,0xa3,0x2c,0x12,0x69,0x98,0x51,0xd3,0x9,0x92,0x3e,0x35,0xe0,
0x12,0xca,0xfc,0x7e,0x7d,0x57,0x80,0x6e,0xaf,0x89,0x5a,0x6d,0x7f,0xa4,0x2a,0xb3,
0x32,0x68,0x88,0x70,0x7d,0x53,0x8e,0x9a,0xe9,0xf0,0x5d,0x81,0xfd,0x5,0x1f,0xdd,
0x7b,0x6,0x58,0x93,0xa8,0x2d,0xab,0x5d,0xf1,0x3f,0x59,0x26,0xfb,0x63,0x34,0xf7,
0x39,0x44,0x75,0x2b,0x1a,0xed,0xa8,0x9,0x7d,0x57,0x3d,0xff,0x2a,0xac,0x5b,0xbf,
0xd9,0xbe,0x93,0x10,0xf3,0xfd,0x48,0xa3,0xf5,0xd8,0x96,0x4e,0x39,0xe5,0x14,0x8c,
0x1b,0x37,0x8e,0x56,0xc0,0x34,0x4c,0x9e,0x3c,0x19,0xcd,0xcd,0xcd,0xb4,0x6,0xe6,
0xa0,0xa9,0xa9,0x9,0xb3,0x67,0xcf,0x66,0xfe,0x37,0x52,0x23,0x96,0x80,0x8f,0x86,
0xb7,0xea,0xf7,0xa,0xda,0xf8,0x26,0xa0,0x25,0x18,0x8b,0x34,0xfb,0x4c,0xeb,0x22,
0xa9,0xe1,0xca,0xd5,0x6b,0xea,0x3b,0x58,0xb3,0x66,0xd,0xee,0xb8,0xfd,0x1e,0xdc,
0x7b,0xef,0xbd,0xb6,0x2c,0xcc,0xf2,0xe5,0xcb,0xa3,0x4e,0x69,0xe5,0x24,0xbf,0x97,
0xf5,0x10,0x63,0xca,0x82,0x45,0xd6,0xe7,0x10,0x77,0x5a,0x1f,0x89,0x55,0x11,0xc7,
0xe1,0x48,0x9e,0x71,0x58,0xa8,0x68,0x83,0x25,0xc9,0x29,0x60,0x6a,0x63,0x3,0x2e,
0x3b,0xfd,0x74,0x2a,0x23,0x15,0xe6,0xb,0x2d,0xaf,0x43,0xc0,0x81,0x35,0xf0,0x9,
0xa0,0x2d,0xe9,0xb6,0xee,0xd9,0x8d,0x7e,0x16,0x88,0xa6,0x6a,0x6b,0x47,0x22,0x65,
0xa8,0x83,0xc3,0x68,0x41,0x5b,0x6f,0x19,0x75,0x85,0xa,0xeb,0x72,0x1e,0x1b,0x6,
0x12,0x78,0xbc,0x98,0xc4,0xda,0x42,0xa,0xeb,0x6,0xa2,0xb0,0xbe,0x90,0xc6,0x86,
0x62,0x1a,0x9d,0xc9,0x3a,0x84,0xa9,0x1c,0x1b,0x56,0xa,0x49,0x9a,0xe4,0x1,0x52,
0x28,0x24,0x33,0xd8,0x44,0x8b,0x60,0x79,0xf7,0x1e,0x3c,0xd2,0xdd,0x89,0xe5,0x5d,
0x7b,0x2c,0xac,0xe8,0x0,0x96,0xed,0xce,0xe2,0xb1,0xae,0x3a,0xf4,0x26,0x9b,0xac,
0x5d,0x18,0x33,0xb0,0x21,0x6a,0x74,0x4c,0x22,0x48,0xa3,0xb7,0x23,0xc4,0xee,0xcd,
0xfe,0x1,0xa1,0x83,0xa1,0x6f,0xb7,0x46,0xec,0x64,0x8d,0x18,0xf4,0x5f,0x24,0x42,
0x4e,0x1e,0xc8,0xc7,0x2f,0xe1,0xbb,0xec,0xe1,0x65,0xe8,0xe8,0xd8,0x89,0xfb,0xee,
0xbd,0x1b,0xff,0x77,0xc3,0xaf,0xf0,0x8d,0xaf,0xff,0x33,0x3e,0xf2,0xe1,0x6b,0xf0,
0xf6,0xb7,0xbd,0x15,0xcf,0x79,0xf6,0x15,0x38,0xff,0xbc,0x73,0xd0,0xda,0xd2,0x4,
0x4f,0xc4,0x60,0x7a,0xb0,0x26,0x68,0x26,0xf9,0x5b,0x8d,0x30,0x53,0x8e,0x8b,0x8,
0x3c,0xa,0xbf,0xb4,0x1d,0x8b,0x45,0x2a,0x2e,0x2c,0xb7,0xde,0xbe,0x1,0xac,0x5d,
0xb7,0x1,0xdf,0xfd,0xcf,0xef,0xe3,0xec,0x73,0xce,0xc3,0xa2,0xc5,0x67,0xe2,0xdd,
0xef,0x7e,0x2f,0x7e,0xf8,0xc3,0xff,0x22,0x31,0xac,0xe0,0x6f,0x65,0x2d,0x48,0x29,
0xe2,0x13,0xab,0xc4,0x20,0x1,0xae,0xf3,0x4c,0x46,0x73,0x53,0x8e,0x8e,0x25,0x17,
0x93,0x82,0x48,0xe2,0x78,0xf4,0x6d,0x88,0x88,0xa3,0xdd,0x38,0x13,0xd8,0xd5,0xd7,
0x87,0xee,0x52,0x91,0x39,0x74,0xe8,0xf2,0xfa,0xb0,0xc8,0x41,0x23,0x95,0x56,0x6f,
0xd8,0x60,0xfe,0x58,0x83,0x25,0xd6,0x91,0x83,0xc3,0xe8,0x41,0x67,0x4d,0x9,0x7b,
0xf2,0x15,0xf4,0xa5,0x3d,0x84,0x14,0xc8,0xf9,0x62,0xce,0x2c,0x2,0x2f,0xd1,0xb3,
0x4f,0x48,0xa1,0x68,0xda,0xbb,0xd6,0x9,0xd3,0x50,0x49,0x75,0x4a,0x97,0xcc,0x82,
0x48,0x21,0xeb,0xf3,0xa8,0x11,0x4a,0x3a,0xf2,0x73,0x26,0xd1,0x81,0xc,0x3a,0x91,
0xa9,0xf4,0xa1,0x36,0xe8,0x41,0x53,0x79,0x97,0x24,0x40,0xf4,0x42,0x11,0x4,0x7f,
0xad,0x67,0x24,0x6c,0xb2,0xd6,0xc0,0x3e,0x21,0x91,0x28,0x45,0xdf,0xd9,0x1b,0xaa,
0xbf,0x39,0xc9,0x20,0x6d,0xbe,0x50,0x28,0x60,0xea,0xb4,0xa9,0xe6,0x17,0xf,0x69,
0xa5,0x69,0xf8,0xb1,0xd6,0x8f,0x32,0x9a,0x55,0x5f,0xa7,0xe5,0xcd,0xde,0x60,0x79,
0x25,0x36,0xdd,0x3f,0xa8,0x3f,0x82,0xa1,0x50,0x8,0xf0,0xab,0xeb,0x7e,0x8d,0xd7,
0xbf,0xee,0xaf,0x71,0xe9,0xd3,0x9f,0x66,0xe1,0x83,0x1f,0xfa,0x10,0xd6,0x6e,0x58,
0x8f,0x4c,0x2e,0x6b,0xc2,0x59,0xc2,0xfa,0x60,0x5a,0xbc,0x4,0xb7,0x84,0xf8,0xc4,
0x89,0x93,0x8e,0x9a,0xab,0x29,0x1e,0xf1,0x24,0x6b,0x47,0x4b,0x72,0x28,0xcd,0xc7,
0x16,0x51,0xda,0xa4,0xac,0xf4,0x95,0xa,0xd8,0xd3,0xdb,0x3,0x5b,0xc9,0xe2,0x10,
0x71,0x70,0xb7,0x92,0x26,0x0,0xc9,0x32,0x20,0xf3,0x50,0x71,0x62,0x51,0x54,0xb0,
0xac,0xa7,0x1f,0x37,0x3d,0xf0,0xa0,0x65,0xa8,0x98,0xfe,0x64,0xc7,0xc9,0xea,0x56,
0x1a,0xf0,0x81,0xf7,0xbc,0xfb,0xfb,0x28,0x86,0x12,0x69,0x6c,0xb8,0x7e,0x23,0xab,
0x4a,0x27,0xbf,0xc9,0x45,0x37,0x8c,0x10,0xdc,0x7f,0xe7,0xf7,0xb1,0xf4,0xc1,0x9b,
0x98,0xb0,0xbd,0x6e,0xa5,0x72,0xb6,0x16,0xed,0x3,0x7d,0x78,0x26,0x35,0xd0,0xc9,
0xf9,0x34,0x2a,0x2c,0xbb,0x52,0x8a,0x44,0x51,0x6d,0x48,0xaa,0xe9,0xaa,0xdb,0xeb,
0xb6,0xef,0xc2,0x2d,0xfd,0xbd,0xe8,0x67,0xfd,0x6f,0x2e,0x78,0xe8,0xce,0x14,0x51,
0xcf,0x6,0xfd,0xf2,0xcb,0xe6,0xa0,0xb5,0xad,0x8e,0xe9,0x8d,0x87,0x9a,0x46,0x5a,
0xac,0xe7,0xe7,0xd0,0x5f,0xe,0xf1,0xeb,0x25,0x8f,0xe1,0xb1,0x3d,0x79,0xa4,0xfc,
0x22,0x1b,0x17,0x85,0xa,0xbf,0x6d,0x9c,0x9a,0xc5,0x59,0x97,0x9f,0x8a,0x1a,0x5a,
0x1e,0x1e,0x9,0x65,0x28,0x82,0x64,0x80,0x8e,0x9e,0x6e,0x3c,0xf4,0xe7,0xd5,0xe8,
0xd9,0xe5,0x93,0x94,0x2,0x96,0x43,0x89,0x75,0x4b,0x93,0xe8,0xf6,0xc5,0x58,0x73,
0x2b,0xad,0x5f,0x17,0xb9,0x95,0x84,0x81,0x81,0x1,0xf4,0x51,0xbb,0xd5,0xa0,0x80,
0x3,0xe5,0xd7,0x5e,0x11,0x25,0xa1,0x2d,0xf9,0xa3,0xb6,0xe5,0x97,0x99,0x5f,0x14,
0xdc,0xfa,0x7e,0x60,0xa0,0x80,0x35,0x6b,0x56,0x63,0xf9,0xb2,0x95,0xb8,0xf1,0xc6,
0x1b,0xf1,0x9b,0xdf,0xff,0xe,0x7d,0x3,0xfd,0x91,0x40,0x66,0x3b,0x55,0x39,0x49,
0x17,0x56,0x79,0xe8,0x98,0x26,0xf9,0x4b,0xf2,0x5,0xa1,0xca,0x9b,0xe5,0xaf,0x7c,
0xac,0xc9,0xa2,0x75,0xf2,0x14,0xb4,0x90,0x10,0xce,0xbe,0xf4,0xe9,0x38,0xfd,0xec,
0x73,0xe0,0xe5,0x6a,0x58,0xcf,0x23,0xa2,0xd8,0x57,0x54,0x46,0x73,0x22,0xf4,0xfc,
0xc1,0xf8,0x4,0x92,0x3,0x9a,0xad,0x1f,0x5,0xc5,0x55,0x21,0x3e,0xd7,0x70,0x59,
0x9d,0xcb,0xdd,0xa5,0x97,0x6b,0x1,0xc5,0x9,0x13,0xda,0x79,0x2d,0x72,0x8d,0x1d,
0x6d,0x68,0xfb,0x4,0xcd,0xe1,0x29,0xf1,0x75,0xc9,0x20,0xc4,0xb4,0x6c,0x23,0x9e,
0x73,0xf6,0x42,0x34,0xf0,0x55,0x71,0x4a,0x74,0x54,0x18,0x4e,0x9a,0x1f,0x9c,0x1c,
0x2a,0x94,0x0,0x22,0x7,0xa,0xa,0x79,0x3,0x25,0xda,0xfe,0xb0,0x72,0x35,0x56,
0xee,0xd8,0x39,0xc8,0x80,0x27,0x3b,0x1c,0x39,0x8c,0x3e,0x72,0x48,0x5,0xfd,0xb8,
0xa0,0xb1,0x11,0xef,0x3a,0xfb,0x6c,0xb4,0xf4,0xf6,0xb1,0xa1,0x32,0xd6,0xa5,0xc0,
0x96,0x1d,0x88,0xa1,0x86,0xba,0x91,0x82,0xfd,0x1d,0x8f,0x3c,0x82,0xd5,0x2c,0xe3,
0x1c,0x5,0x7a,0x98,0x29,0xe1,0x19,0xd3,0x4f,0xc1,0x37,0x3f,0x3c,0x1e,0xe5,0xa0,
0x97,0xe9,0xd5,0xfd,0x6a,0x3a,0xcc,0xaf,0xa0,0x11,0x19,0x3f,0xcf,0x9c,0xa8,0xc1,
0x43,0xdb,0x43,0xbc,0xf5,0x53,0xd7,0xa1,0x37,0xa9,0x7e,0x9,0x7e,0x47,0x61,0xf7,
0x86,0x77,0xbd,0xc,0xa7,0x9e,0xd3,0x86,0x9a,0x3a,0xe6,0xab,0x26,0xb,0xd,0x1,
0xdb,0x2f,0xd2,0xc9,0x46,0x3c,0x70,0xeb,0x1a,0xfc,0xc7,0xd7,0x7f,0x62,0xd6,0x8a,
0x66,0x9e,0xcb,0x9d,0xb5,0x3f,0x4e,0x5e,0x72,0xd8,0xb,0xbf,0xda,0x37,0x21,0x2,
0xf,0x29,0xf0,0x56,0x3c,0xba,0x2,0xff,0xfe,0xef,0xff,0x8e,0x5f,0xfe,0xf2,0x97,
0x55,0x8d,0x9c,0x42,0xb8,0x58,0x42,0x26,0x9d,0xb1,0x5c,0x91,0xa4,0xa,0x29,0xcb,
0x22,0x5b,0x43,0xca,0xae,0x8e,0xac,0xb7,0x69,0xb6,0x5b,0xde,0x5f,0x62,0x1,0x8c,
0x9b,0x30,0x1e,0x57,0xbf,0xe2,0x95,0x38,0xe7,0x92,0x8b,0x50,0xe2,0xf7,0x5e,0x26,
0x87,0x92,0xee,0xa7,0xa5,0x98,0x60,0x10,0x81,0xc4,0x13,0x7d,0x23,0x71,0x49,0x81,
0xab,0x7d,0x36,0xf8,0x1e,0x2d,0x6c,0x17,0x93,0x40,0xd2,0x26,0x4,0xf3,0x77,0xbc,
0x47,0xd7,0x75,0x1e,0x7f,0x16,0x62,0x2,0xb0,0xff,0x79,0xe9,0x58,0x93,0x43,0x8a,
0x69,0x53,0x9f,0x5a,0x59,0x55,0xc9,0xf,0x50,0x47,0x7d,0xe6,0x85,0x17,0x5d,0x8c,
0x89,0xb9,0xbd,0xf2,0x3b,0xae,0x8d,0xc3,0x49,0xf4,0xe1,0xae,0x45,0x50,0x5c,0x95,
0x28,0xfe,0xd3,0xda,0x3a,0x7d,0x34,0xbd,0xbb,0xfb,0x7a,0x2d,0xa1,0x71,0x62,0x1d,
0x4e,0x4e,0xa8,0x6a,0x1c,0x8b,0xca,0x7c,0xb4,0xb0,0x6f,0x1d,0x55,0x3,0xad,0x9e,
0xa,0xb4,0x4,0x92,0x7e,0x12,0xb9,0x81,0x10,0x2d,0xa5,0xa,0x5a,0x78,0x94,0xa0,
0xef,0xcf,0x57,0x2c,0xc,0xd4,0x0,0x7d,0xb9,0x10,0x7e,0xd2,0xe7,0x3d,0x45,0x92,
0x7a,0x2,0x45,0xb9,0x2b,0x48,0x83,0xcd,0x79,0x6a,0xfe,0x65,0xf,0xf9,0xb0,0x6,
0x99,0x52,0xe,0x99,0x72,0x9e,0xc7,0x3a,0x78,0xc9,0x1d,0x14,0xf0,0x5b,0xa9,0x8d,
0x6e,0x47,0x5e,0xcb,0x60,0x50,0xc0,0xed,0x7d,0x3d,0x1b,0x68,0x65,0x80,0x2,0xa7,
0xc4,0x67,0x96,0x50,0xf2,0x28,0x90,0x86,0x84,0x30,0xed,0x53,0xb0,0xc8,0xdc,0xa7,
0x26,0x2b,0xa2,0x15,0x86,0x21,0x86,0x93,0x9,0x2a,0x3b,0x69,0xd8,0x31,0x11,0x48,
0x61,0xf1,0x35,0x89,0x85,0xe4,0xb2,0xf2,0xb1,0xc7,0xf1,0xad,0x7f,0xfd,0xe,0x5e,
0xfb,0x9a,0xd7,0x61,0xe1,0xc2,0xc5,0x78,0xda,0xa5,0x97,0xe1,0x7,0xdf,0xff,0x11,
0x7a,0x7b,0xfa,0xd1,0xdf,0x57,0xb0,0xdf,0x69,0x32,0x5b,0x28,0x61,0xcd,0xb2,0x2b,
0xd3,0xba,0x8,0x69,0xb1,0x5,0xc9,0xb4,0xf5,0x93,0xe,0xf0,0x19,0x8d,0x13,0x27,
0xe3,0xa2,0xe7,0xbd,0x10,0x6f,0xfc,0xe0,0x47,0xf1,0xd9,0x6f,0x7f,0x17,0x9f,0xff,
0xee,0xf,0xb1,0xe8,0x59,0x57,0xa2,0x3b,0x57,0x8b,0x1e,0x92,0xca,0x1e,0x96,0xdd,
0x1e,0xa,0xfe,0x8e,0x9e,0x3e,0xec,0xd8,0xbd,0x7,0x7b,0xf6,0x74,0x61,0xe7,0xce,
0xe,0x6c,0xdb,0xb6,0xdd,0xc2,0xd6,0xad,0xdb,0xd1,0xd1,0xb1,0x7,0xbd,0x54,0x2e,
0x4a,0x45,0x92,0x83,0x14,0xb,0xc6,0x51,0x4,0xa1,0x38,0x1b,0x51,0x54,0x2d,0xa,
0x41,0x47,0x85,0xb8,0x4e,0x1e,0x2f,0x32,0x67,0x94,0xc,0xaa,0xbe,0x9a,0x4c,0x48,
0xc3,0x6,0x1b,0x77,0x6c,0x47,0x91,0xa,0x4f,0x99,0x32,0x5d,0x6b,0xa7,0xe9,0x16,
0xf5,0x8b,0xd,0x87,0x83,0x92,0x83,0x6e,0xd7,0x6f,0xec,0x87,0x7c,0xb0,0x36,0xf5,
0xe9,0xea,0xed,0x31,0xc6,0x1e,0xc9,0x82,0xc1,0xe1,0xd8,0x43,0x75,0x40,0x93,0x99,
0x54,0x2f,0x46,0x1a,0x6,0x1b,0x60,0xb5,0x31,0x5a,0xe5,0x1f,0xd2,0x18,0x8b,0xa9,
0x9c,0x7a,0x13,0x50,0xf1,0xb2,0x91,0xb0,0xd0,0x90,0x79,0x8d,0xa9,0xf,0xb2,0x16,
0xe0,0x53,0xe3,0xd4,0x91,0x86,0x76,0x39,0xc9,0x46,0xce,0xdf,0xa6,0x79,0x2e,0xb7,
0x6a,0xa8,0x85,0xde,0x52,0x5,0x92,0xc5,0x0,0x7c,0x8f,0x42,0xc1,0x63,0x3,0x63,
0x28,0x25,0x1a,0xf9,0x8c,0x3c,0x2d,0x13,0xbe,0x27,0x97,0xa5,0xd5,0x90,0x36,0xd,
0xd5,0xc0,0xe8,0xb0,0x1d,0x22,0xed,0x65,0x78,0xe4,0xcb,0x2,0x5a,0x57,0x43,0x42,
0x25,0xd0,0x62,0x7e,0x72,0x8d,0xc,0xcd,0xcb,0x28,0xd,0x27,0x27,0x48,0x91,0x14,
0xae,0x82,0x4,0xed,0xf6,0xed,0xdb,0xb1,0x64,0xc9,0x3,0xf8,0xda,0xd7,0xfe,0x9,
0x8b,0x16,0x9d,0x81,0x8b,0x2e,0xba,0x4,0x9f,0xfa,0xd4,0xa7,0x71,0xe3,0x8d,0x37,
0x9b,0xc0,0x8e,0x97,0x35,0x57,0x50,0x3e,0xaa,0xbc,0x54,0xee,0x95,0x74,0xa,0x7d,
0x61,0x19,0x61,0x4d,0x1a,0xa5,0x86,0x16,0xd4,0x4c,0x9d,0x81,0xb,0x5e,0xf4,0x52,
0x7c,0xe1,0x7b,0xdf,0xc7,0x27,0xbe,0xf5,0x1d,0x3c,0xf3,0x15,0xaf,0xc5,0xc4,0xf9,
0x67,0xc0,0xaf,0x6d,0xc6,0xaa,0xed,0x7b,0xb0,0x66,0x7b,0x37,0x36,0x6f,0xeb,0xc2,
0x8e,0x1d,0x3d,0xc,0x5d,0xe8,0xec,0xea,0x47,0x6f,0x7f,0x11,0x45,0x59,0x8,0x5,
0x12,0x3b,0x49,0x46,0xe5,0x28,0x89,0x2b,0xeb,0x27,0xe,0x51,0xb9,0xc5,0xe1,0x89,
0x11,0xcb,0xcd,0xe3,0x55,0xba,0x31,0x39,0x68,0xb4,0x52,0x92,0x75,0x3d,0x64,0xfd,
0xdc,0xb0,0x6b,0x1b,0x65,0xb9,0xf,0xd6,0xde,0x27,0x8d,0xc7,0x13,0x90,0x43,0x55,
0xfb,0x92,0x49,0xc5,0xbf,0xf5,0x5b,0x37,0x42,0x53,0xd6,0x1d,0x1c,0xa4,0x9d,0xf5,
0xf4,0xf4,0x54,0x3f,0x8d,0x2c,0xc,0x25,0x7,0x99,0xf6,0x56,0x8f,0xed,0x4a,0x84,
0xc,0xb5,0xf7,0x4,0x35,0xf9,0x4a,0xa2,0x1f,0x65,0xaf,0x1f,0x3,0xd9,0xfe,0xc8,
0x8d,0x43,0xcb,0x60,0x68,0x28,0x57,0x7c,0xf4,0x93,0xc,0x92,0x6c,0x61,0x19,0x2a,
0xb0,0x4a,0xf3,0xfa,0x5d,0x9b,0x91,0x4d,0xd4,0x21,0x19,0xe4,0x91,0x62,0x48,0xfa,
0x35,0x3c,0x57,0xa8,0xe7,0xe7,0xc,0x32,0x7c,0xe7,0xee,0xe,0x4d,0x88,0x33,0x29,
0x12,0xbd,0x90,0x4f,0xd3,0xea,0xab,0x95,0x30,0xb,0x2f,0x4c,0x22,0x23,0xcd,0x76,
0x48,0xf0,0x42,0xc6,0xb3,0xe4,0xa1,0x54,0x90,0xf6,0x59,0xb5,0x18,0x4e,0xe2,0x76,
0xa6,0x32,0xd3,0x92,0xda,0x9a,0xbd,0xac,0x99,0xcc,0xe7,0x9f,0x7f,0x1,0x9e,0xf7,
0xbc,0xe7,0xe1,0x4b,0x5f,0xfa,0x12,0x36,0x6c,0xd8,0x60,0x4a,0x89,0xca,0x38,0xf6,
0xdf,0xb,0x43,0x95,0x55,0x65,0x9d,0x3c,0x1d,0x34,0xe,0x71,0xc6,0x25,0x17,0xe0,
0x75,0xef,0x7c,0xb,0xde,0xf2,0xb1,0x8f,0xe3,0xaf,0x3e,0xf4,0x51,0x9c,0xfb,0xdc,
0xab,0xb0,0x91,0xc2,0x7e,0xd9,0x2e,0x5a,0x1,0x7d,0x3,0xb4,0xe,0x7c,0xf4,0x94,
0x48,0xee,0x81,0xc7,0x67,0xe4,0x90,0x63,0xc8,0x57,0xb2,0xc8,0x56,0xa8,0xe,0x54,
0x48,0x34,0xe6,0x56,0xd7,0x53,0x23,0xf2,0x79,0xf2,0x30,0x72,0x21,0x17,0x5c,0x25,
0x95,0x44,0x6f,0x71,0x20,0xda,0xdd,0x51,0x64,0xf6,0x24,0x7c,0x76,0xd0,0x3e,0x7,
0x36,0x1d,0x66,0x52,0x2,0x29,0xbf,0x82,0x2e,0xb2,0xf3,0x2f,0xef,0xbb,0x7,0x9d,
0xea,0x99,0x1e,0xe1,0x99,0x70,0x3c,0x31,0xd6,0xfa,0x1c,0xa2,0xf5,0x6f,0xa4,0x79,
0x49,0x98,0xa9,0xcf,0xe1,0xa7,0x78,0xeb,0xdb,0xd5,0xe7,0xb0,0x6f,0x2d,0xf2,0xa9,
0x59,0xb7,0x8f,0x9b,0x4a,0xb3,0xfe,0x6c,0xf8,0x14,0x6c,0x5a,0x5f,0x49,0xad,0xd2,
0x96,0x4e,0x3e,0x51,0xa8,0xa,0x54,0xeb,0xec,0x63,0x74,0x25,0x60,0x96,0x3e,0x78,
0x9d,0x5d,0x1b,0x8a,0x12,0x89,0xa0,0xbe,0x1c,0xe0,0x92,0x29,0x33,0x30,0x37,0x57,
0x8b,0x5a,0xf9,0x9d,0xf9,0xdb,0xd2,0x60,0xb5,0x26,0x39,0x50,0x28,0x2c,0xdb,0xb9,
0xb,0x7f,0xec,0xed,0x8f,0xae,0x50,0x8,0xc9,0x4d,0xe0,0xf3,0xde,0xb7,0x5c,0x31,
0x11,0x13,0x26,0xb6,0xf3,0x1d,0x1a,0xed,0xa2,0xfc,0x62,0xe0,0xd1,0x47,0x9e,0x82,
0x26,0x8f,0x5f,0xdf,0xf4,0x10,0xb6,0x75,0x94,0xd0,0xaf,0xa5,0x1b,0xf4,0x3d,0xf3,
0xa4,0xb9,0xb5,0x6,0xcf,0x7e,0xce,0x65,0xf0,0x6a,0xb4,0x82,0x53,0xd5,0x55,0x52,
0x85,0x47,0xab,0xa5,0xbf,0xb3,0x88,0xdf,0xfd,0xe6,0x16,0xf4,0xf6,0x96,0x99,0xc,
0x2d,0xf9,0xc0,0x3c,0x1d,0x63,0x6b,0x2b,0x3d,0xd1,0x3c,0x7,0x41,0x79,0xfc,0xc5,
0x2f,0x7e,0x11,0x37,0xdd,0x70,0x23,0x6e,0xfb,0xf3,0x9f,0x50,0x24,0x49,0xa4,0xd2,
0xea,0x40,0xe6,0x77,0x96,0x8f,0xca,0xeb,0xa8,0x8c,0x95,0x76,0xcd,0xb1,0xf2,0x28,
0x97,0xca,0x24,0xde,0x32,0x49,0x35,0x57,0x53,0x8f,0xf6,0xf1,0x13,0xd1,0x3c,0x6b,
0x3e,0xe6,0x2e,0x5a,0x88,0xa9,0x73,0x4e,0xa1,0x95,0xa7,0xef,0xd8,0x46,0x8f,0x5b,
0x1f,0xe9,0x30,0xef,0x21,0x51,0xc5,0xa5,0x23,0x79,0x60,0x44,0x96,0x90,0x65,0xa4,
0x3a,0x95,0xc2,0x84,0x9,0x13,0xf4,0xd,0x93,0x47,0x65,0x41,0xae,0x1e,0xd6,0xbd,
0x68,0x76,0x3d,0xdb,0xa0,0x7e,0xa4,0x1f,0xf3,0x77,0xf6,0xe4,0xea,0xb9,0x96,0x8f,
0x7f,0xaa,0x48,0xd2,0x6a,0x78,0xda,0xc2,0x79,0x98,0xd5,0xd8,0x84,0x3a,0xc6,0x41,
0x3,0x8e,0xb4,0x6c,0x24,0x5b,0xf0,0x1,0x38,0x28,0x39,0x68,0x71,0x3d,0x4d,0x4b,
0x4f,0xb2,0xf2,0x6d,0xec,0xed,0xc1,0xff,0xde,0x75,0x27,0x50,0xdb,0xc8,0x6f,0xe2,
0xa4,0x3a,0x9c,0xac,0xe4,0x60,0x8b,0xec,0xb1,0xe1,0x69,0x85,0x4d,0x36,0x51,0x5e,
0xe1,0xf7,0xfc,0xcd,0xf1,0x6a,0x82,0xc3,0xa2,0x9a,0xbf,0x6a,0x7c,0x12,0xe4,0xd2,
0x40,0x87,0x1b,0x38,0x51,0x4a,0xc8,0xb5,0xc3,0x86,0xe8,0x79,0x14,0xd4,0xd1,0x8a,
0xac,0x35,0x45,0x5a,0x14,0x7e,0x94,0xc6,0x41,0xd3,0xdf,0x4b,0xa2,0xdf,0x96,0xfd,
0xde,0xb,0xb9,0xd3,0xa,0xa8,0x21,0x39,0x96,0x6c,0x7c,0x7d,0x85,0xe5,0x2f,0xe4,
0x8a,0xf5,0x4c,0xbe,0x96,0xdc,0x28,0x63,0x20,0xe8,0x43,0x3a,0xa7,0x75,0x99,0x24,
0x14,0xd4,0xb4,0x64,0xbe,0x57,0x90,0xcb,0xa5,0x31,0xd0,0xa7,0xe7,0x29,0xbf,0x86,
0x82,0x79,0xc8,0xdf,0x79,0x5e,0xd6,0x5c,0x17,0x7b,0xdd,0x24,0x7,0x62,0x2c,0x4f,
0x82,0x13,0xd4,0x5e,0xca,0xa9,0x8a,0x4d,0x5c,0xcb,0xa6,0x33,0x8,0x94,0x1f,0xbc,
0x9e,0x61,0x79,0xa5,0xf8,0x9d,0x6f,0x82,0x53,0x4b,0x6d,0xf0,0x29,0xfc,0x7e,0x20,
0xac,0xa0,0x7d,0xe2,0x64,0x3c,0xe3,0xaa,0xab,0xb0,0xe8,0xec,0x73,0xd1,0x5f,0x2c,
0xa2,0x52,0xd3,0x60,0xa3,0x94,0x52,0xb4,0x30,0xb4,0xc8,0x1c,0xab,0xa5,0xad,0xd0,
0x7a,0xe2,0xb0,0x97,0x1c,0xf6,0xd6,0xcd,0x2,0x2d,0x20,0xf,0xf5,0xf5,0xf5,0xb6,
0x2f,0xb8,0xa0,0xb9,0x34,0x59,0xad,0x51,0xc6,0xa8,0x32,0x79,0xd1,0xd1,0xa2,0x2d,
0xd7,0x66,0x84,0x41,0x83,0x52,0x89,0x7a,0x8a,0x48,0xb0,0xce,0x4e,0xa9,0xcf,0xe3,
0x59,0x8b,0x16,0x83,0xb5,0x56,0x91,0xb2,0x37,0xec,0x5f,0x2b,0x85,0x83,0xe6,0x9a,
0xaa,0xa8,0x18,0x4a,0x11,0xdd,0xba,0x6b,0x37,0x32,0x35,0xe4,0x99,0xe1,0x79,0xc4,
0x61,0xac,0x81,0xe5,0x2c,0xbf,0x6f,0x64,0xb6,0x47,0x15,0x31,0x6e,0xc0,0x6,0x5d,
0xa6,0xc6,0xa6,0xca,0xc3,0xaa,0xce,0x50,0x20,0xf9,0x69,0x5e,0x80,0xd6,0x31,0x3a,
0xb1,0x21,0xc1,0x10,0xaa,0xf1,0x69,0xf2,0xc0,0x30,0x68,0x2a,0x97,0xd0,0xc8,0xb4,
0x65,0x48,0x1e,0x22,0x84,0x6c,0x89,0xc2,0x26,0x99,0xb6,0x8d,0x7c,0x14,0xba,0x33,
0x1e,0xba,0xd9,0x70,0x7b,0x86,0x69,0x7f,0xca,0x93,0x4c,0xb9,0x8b,0x1a,0x57,0x11,
0xe9,0x62,0x2f,0xb2,0x7c,0x8f,0x42,0x7f,0xa6,0x3,0x85,0xcc,0x6e,0xa,0x36,0xb6,
0x93,0x4c,0x2f,0x15,0x2a,0x8d,0xdc,0x92,0xe6,0x2f,0xf2,0x90,0xe8,0xf6,0x50,0xe8,
0xaf,0xb0,0x4d,0xe5,0x28,0xe4,0x32,0xfb,0x6,0x68,0x49,0xf0,0xac,0x6d,0x1a,0x14,
0x8d,0x88,0x51,0xe6,0xe,0x6f,0x81,0xa9,0xc,0x44,0x7a,0xb1,0x3b,0x65,0xac,0x60,
0x50,0xa3,0x26,0x34,0xa8,0x38,0xcb,0xf3,0x94,0xaf,0x75,0xaf,0x48,0x26,0xcc,0x46,
0xad,0xa9,0x54,0x50,0x48,0x64,0xd1,0x38,0xe5,0x14,0x3c,0xfd,0x85,0x2f,0xc3,0x2b,
0xdf,0xfe,0x1e,0xbc,0xeb,0xf3,0x7f,0x8f,0x37,0x7f,0xe2,0xef,0x30,0xf5,0xdc,0xf3,
0xb1,0x9d,0xa,0x5a,0x57,0x4d,0x1e,0x5d,0xcc,0xbb,0xb0,0x36,0x6b,0xc3,0x37,0xe5,
0x63,0xb7,0xe1,0x68,0xc7,0x10,0x43,0x75,0x6b,0xb9,0x13,0x15,0xb4,0x49,0x91,0x3e,
0xa9,0x2c,0x35,0x47,0x43,0x33,0xde,0x73,0xb9,0xc,0xea,0xea,0x6a,0xd1,0xdc,0xdc,
0x88,0x89,0x93,0x26,0x62,0xfc,0x84,0x76,0xe4,0x6b,0x72,0x2c,0x54,0x9,0x68,0x12,
0x1f,0xe3,0xdb,0x9b,0xae,0xa0,0x40,0xc3,0xb1,0x9c,0xad,0xb0,0x86,0x15,0x29,0x7b,
0x4b,0xa8,0x65,0xc5,0xa8,0x67,0xbd,0x28,0x75,0xf7,0xa0,0x22,0xb2,0xdc,0x6f,0xb4,
0xdb,0xe1,0x42,0x36,0xc8,0xf6,0x8e,0x4e,0x14,0xd4,0x89,0x3e,0x48,0x9a,0xc3,0xd7,
0xa7,0x83,0xe6,0x9c,0xa7,0xae,0x6d,0xc2,0x67,0x41,0x75,0xd0,0x44,0xf,0xc8,0x6c,
0xc3,0x69,0x62,0xe,0x63,0xf,0xaa,0xf0,0xd2,0x92,0x27,0x4e,0x9c,0x88,0x34,0x35,
0x6c,0x35,0xdc,0xa1,0x2,0xc9,0x5c,0x1f,0x81,0x47,0x21,0x98,0x63,0x65,0xcd,0x33,
0xd4,0x30,0x68,0x1f,0x2,0xda,0x9a,0x27,0x2c,0x50,0xc8,0x2a,0x84,0x32,0x90,0x73,
0x8,0x83,0xe1,0xc,0x65,0x60,0x37,0x1b,0x5e,0x47,0x3e,0x44,0x67,0xd6,0x47,0x5f,
0xda,0xa7,0x40,0x27,0xa9,0x50,0x90,0xa7,0x2b,0xd5,0x40,0xed,0x5c,0x47,0x8f,0x24,
0x33,0x1c,0xfa,0xa8,0x91,0xf6,0x30,0x6f,0xfa,0x33,0x39,0x9e,0xe7,0xd1,0xe7,0xd5,
0x50,0xb3,0xa5,0x59,0xee,0x67,0x91,0x2d,0x36,0x21,0x5b,0x98,0x88,0x6c,0xff,0x34,
0xe6,0x11,0xdf,0x6f,0xe6,0xbf,0xa9,0x59,0xcc,0x43,0xd,0xa3,0xe4,0x33,0xe5,0x2e,
0x1a,0x1a,0x78,0xcd,0xf6,0x22,0x30,0x12,0xe6,0xbd,0xfa,0x8d,0xdc,0x4a,0xc3,0x40,
0x6e,0x88,0xa9,0x53,0xa7,0x1a,0x41,0x8c,0x35,0xc,0xd6,0xaf,0x92,0xac,0xa1,0x24,
0x7c,0x69,0xd1,0x48,0xa3,0x69,0xf2,0x34,0xb4,0xcc,0x5b,0x8c,0x8b,0x5e,0xf6,0x3a,
0xbc,0xf3,0x8b,0x5f,0xc3,0x5f,0x7f,0xe2,0xd3,0x38,0xfb,0xea,0xab,0xd1,0x7a,0xda,
0x7c,0x78,0xcd,0x6d,0xe8,0x63,0xde,0x69,0x1e,0x34,0x73,0x87,0xff,0x47,0xbb,0x51,
0x4a,0xb,0xb7,0xe5,0xbd,0xf5,0x77,0x8c,0x79,0x34,0x26,0xb5,0xe8,0xc8,0xb8,0x53,
0xd0,0xcb,0xaa,0x94,0x65,0x2d,0xe1,0x3f,0x6e,0x5c,0x2b,0xc6,0x8f,0x1f,0x6f,0x4b,
0x7e,0xd4,0xd6,0xe6,0xd9,0xae,0xf8,0x9d,0xfd,0x24,0xba,0x37,0x12,0xcc,0xc,0x8c,
0x68,0x59,0x29,0x61,0xfd,0x4b,0x15,0xfb,0x90,0xd8,0xb3,0x13,0x9d,0xab,0x1e,0xc3,
0xaf,0xbe,0xf5,0xef,0x78,0xf3,0x4b,0x5e,0x86,0xfb,0x6e,0xbc,0x5,0x19,0x1b,0x56,
0xab,0xdf,0x3e,0x75,0x88,0x5b,0x2a,0xe9,0x2c,0x76,0x50,0xe1,0x37,0xfe,0xe2,0x7f,
0x51,0xa,0xe,0xc4,0x41,0xdd,0x4a,0x5a,0xa8,0x52,0x75,0x75,0x80,0x75,0xf5,0xfa,
0x3b,0xee,0xc4,0x36,0x92,0xa1,0xb6,0x9e,0x73,0xf4,0xb0,0x17,0x63,0xd9,0xad,0x54,
0x18,0x90,0xeb,0xc4,0xc3,0x7,0x3f,0xfc,0x31,0x7c,0xe7,0x3b,0xdf,0xa1,0xe6,0x43,
0x81,0x1b,0x37,0x60,0x69,0x7a,0x56,0x6b,0x62,0xa1,0x36,0xc4,0x37,0x7c,0xc2,0x70,
0xe0,0xbb,0xa3,0x46,0xb8,0x2f,0x1a,0xfa,0x6b,0xa8,0xf0,0x50,0x6,0x79,0xd4,0xf0,
0x98,0x8,0xb9,0x2b,0xcc,0x25,0xb4,0xdf,0xbd,0xb6,0x8c,0xb4,0xcd,0x65,0xd8,0x17,
0x5a,0xa2,0xdb,0xd2,0xac,0xce,0x63,0xeb,0x40,0xa6,0x36,0x9f,0x8e,0x3a,0xe7,0xd5,
0x79,0x6d,0xb0,0xbc,0xd1,0x9c,0xf,0x9d,0x30,0x58,0xbe,0x48,0xa7,0xd4,0xfd,0xfb,
0xb7,0x20,0x75,0x80,0x47,0xee,0xa9,0xf8,0x79,0x16,0xcc,0x2f,0xbd,0x2f,0x66,0xce,
0x98,0x82,0x5f,0xff,0xdf,0xaf,0xd1,0xdc,0xd2,0x68,0xcb,0x3a,0xe8,0xb9,0x63,0xa5,
0xcf,0x21,0x46,0x91,0x69,0x4a,0x66,0xf3,0xb8,0xe0,0xb2,0x67,0x60,0xd1,0x79,0xe7,
0x23,0x5d,0xd7,0x80,0x64,0x4d,0x1b,0x2,0x12,0xb1,0x8d,0xb0,0x49,0x93,0x38,0xd8,
0xee,0x34,0x4c,0x35,0x5d,0x8e,0x8e,0xf2,0xd7,0xab,0x1c,0x2d,0xaf,0x45,0xae,0xcc,
0xe,0x95,0xa7,0x5d,0x51,0x56,0xda,0x93,0x8f,0xd,0xd4,0xc6,0xd5,0x2e,0x34,0x7c,
0xb6,0xa6,0x36,0x83,0x7c,0x5e,0x4,0x10,0xed,0xdb,0x2c,0xc2,0x50,0xcb,0xd0,0x3d,
0x3a,0xd7,0x51,0x41,0x3a,0xf6,0xa0,0xd2,0x5e,0x85,0xa7,0x74,0x14,0xa,0xb8,0xed,
0x77,0xbf,0xc7,0x9f,0xff,0xef,0x6,0x14,0x3b,0x76,0x53,0x77,0x28,0xa1,0xec,0x27,
0x6d,0xd3,0xd9,0x97,0xbe,0xe9,0xaf,0x71,0xd1,0xf3,0x9f,0x8f,0x22,0x7f,0xac,0xbd,
0x2d,0x9e,0x2a,0x44,0x5,0x69,0xd6,0xe1,0xd3,0x9b,0x1b,0x70,0xd9,0xfc,0x79,0x26,
0x97,0xe4,0xf8,0xd4,0xae,0x3c,0xfb,0xe3,0xa0,0xe4,0x80,0xd2,0x0,0x8a,0xa9,0x2c,
0x36,0xc,0x14,0xf1,0x9b,0xfb,0xee,0x47,0x7f,0x3a,0xea,0x0,0xf2,0x8e,0xc0,0xdf,
0x35,0xd6,0x30,0xd6,0xc8,0x61,0x38,0xc8,0x1f,0xf9,0xfb,0xdf,0xff,0x1e,0xff,0xf3,
0x3f,0xff,0x63,0x2b,0x5f,0x6a,0xc4,0x48,0x5c,0xf1,0x1d,0x8e,0x1d,0x94,0xbf,0xa,
0x5a,0x6c,0x6e,0xfe,0xfc,0x5,0x78,0xde,0xf3,0x9e,0x8b,0x57,0xbd,0xfc,0xa5,0xf6,
0x59,0x16,0xfc,0xf1,0xeb,0x64,0x3d,0x3a,0x88,0xc9,0x41,0xfd,0x54,0xdb,0xb6,0xed,
0xc0,0xb,0x5f,0xf8,0x42,0xac,0x5d,0xbf,0xde,0x84,0x78,0x9a,0xff,0x55,0x48,0xa6,
0xe3,0xcf,0x3e,0xb,0xe7,0xbc,0xe0,0x25,0x18,0x3f,0x61,0xe2,0x89,0xf1,0x52,0x88,
0xc7,0xab,0xa7,0x31,0xf6,0xa,0x74,0xf5,0x31,0x45,0xa2,0x52,0xe7,0xe9,0x4c,0x5,
0xd9,0x6c,0xb4,0xdd,0xa8,0x8e,0xba,0xe6,0x7b,0x72,0xda,0xf0,0x19,0x4c,0x8f,0x86,
0x8f,0xea,0x69,0xe5,0x6a,0x39,0x26,0xf5,0xc,0xb6,0x1b,0x91,0x80,0xdc,0xf3,0x69,
0x2f,0x85,0x72,0x4f,0x37,0xd6,0xad,0x58,0x8e,0xb5,0xcb,0x1e,0xc6,0x9a,0x15,0x2b,
0xb0,0xf6,0xe1,0x87,0x7,0xdb,0x55,0x7c,0x34,0xe1,0x4d,0xcb,0xf4,0xca,0x37,0xbd,
0x11,0x17,0xbc,0xf8,0x6a,0xdb,0x31,0x4f,0x16,0xe4,0x53,0x85,0x16,0x96,0x14,0x31,
0xb5,0xe7,0xb2,0xb8,0x7a,0xd1,0x19,0xa8,0xe5,0x6b,0x34,0x48,0x23,0xa3,0xe5,0xee,
0xf7,0xc3,0xc1,0x2d,0x87,0x52,0x3f,0x4a,0x64,0xeb,0x9b,0x1e,0x79,0x14,0xab,0x76,
0xef,0xb6,0xd,0x35,0xb4,0xd2,0x89,0xcc,0x36,0x87,0x8,0x27,0x5,0x39,0xb0,0xbc,
0xcb,0xbe,0x6f,0xfb,0xee,0xc6,0xe8,0xe9,0xed,0x61,0x23,0x8f,0x5c,0x1b,0xc3,0xd7,
0x1e,0x87,0x23,0x45,0x6d,0x6d,0xd,0xf3,0x3c,0x27,0xbd,0xd3,0xc8,0x58,0xae,0xa4,
0x9c,0x17,0x9,0x4c,0xf5,0x7d,0x78,0x9a,0x67,0x32,0x8a,0x10,0x93,0x83,0x16,0xc3,
0xdb,0xb3,0xbb,0x13,0xcf,0xbb,0xea,0x79,0x7b,0xc9,0x81,0x75,0xac,0x52,0xc9,0x61,
0x11,0x9,0xf0,0xfc,0x17,0xbf,0x82,0x77,0x27,0x6c,0xa8,0xaa,0xcd,0xa5,0x39,0xae,
0xa0,0xe0,0xac,0x9e,0xd,0x85,0x4,0xb5,0xca,0x40,0xf1,0x51,0x27,0xb2,0xac,0x68,
0x20,0x9a,0xd5,0x1c,0xb,0x71,0x95,0x8f,0x97,0x8a,0x66,0x65,0x33,0xa1,0xf6,0xbf,
0x30,0x40,0x12,0xa9,0x68,0x45,0x5f,0x9e,0x67,0x7c,0x9e,0xb3,0xdd,0xf4,0x6c,0xd8,
0x82,0x9b,0xae,0xbd,0x1e,0xb7,0xdf,0x7a,0xb3,0xed,0x15,0x52,0xaf,0x49,0x7b,0x61,
0x80,0xc0,0x6,0x79,0x44,0xcf,0x8d,0x71,0xb4,0xc9,0x41,0x90,0x55,0x9c,0xaf,0xf8,
0x78,0xe5,0xf9,0x17,0xa0,0x89,0xa4,0x56,0xa6,0x95,0x9a,0x49,0x1c,0x98,0xd7,0x7,
0x27,0x7,0xbf,0x80,0xee,0x84,0x87,0xff,0xbe,0xf5,0x8f,0x28,0xe6,0xf2,0x2c,0x44,
0x66,0x4,0xb,0x51,0x7f,0xe,0x11,0x4e,0x6,0x72,0xd0,0x56,0x83,0x51,0x65,0x8d,
0xab,0xc9,0xbe,0xe5,0x3f,0xa4,0x1e,0x3b,0x1c,0x45,0x44,0xcd,0x32,0x72,0x45,0x44,
0xa0,0xe6,0xc9,0xd3,0x58,0x70,0xc,0x15,0x20,0xa3,0x1,0x31,0x39,0x4,0x41,0x8,
0xad,0xa3,0xf7,0x81,0xf,0x7e,0x0,0xdf,0xff,0xe1,0xf,0x8d,0x1c,0x34,0xd7,0x23,
0x8,0xd3,0x38,0xe3,0xaa,0xab,0x70,0xc1,0x4b,0x5e,0xc9,0xb6,0xb4,0xaf,0xa6,0x7e,
0x3c,0xa0,0xfc,0x64,0x2b,0xe6,0xbb,0x7d,0xbe,0x97,0x84,0x45,0x22,0x90,0x45,0x10,
0x5b,0x7,0x72,0xb1,0xda,0x5e,0xe4,0x83,0x51,0x8a,0xdc,0x7e,0x8a,0xa7,0x88,0x43,
0x71,0x2d,0xf3,0x3e,0x59,0x8,0x94,0xe0,0xb4,0x10,0x54,0x7a,0x40,0x3,0x5,0xfe,
0x9e,0xed,0x3b,0x71,0xf7,0x9f,0xfe,0x84,0x47,0xee,0x5b,0x82,0x3d,0xdb,0xb6,0xa1,
0x73,0xe7,0x76,0x4a,0xd,0xad,0xf3,0x2b,0x19,0x12,0xda,0x6f,0xcc,0xf3,0x9f,0x8e,
0xb6,0x29,0x8d,0x9f,0xab,0xc5,0xf9,0x72,0x59,0xef,0x28,0x5b,0xe,0x8a,0x79,0x88,
0x14,0x49,0xe9,0xb9,0xa7,0x2f,0xc0,0xa9,0x6d,0x2d,0xf6,0x59,0x5b,0xb2,0xee,0x8f,
0x83,0xda,0x6e,0x89,0x54,0x12,0x5d,0x34,0x7b,0x2a,0x96,0x4a,0x99,0x45,0x22,0x87,
0xea,0x97,0xe,0x27,0xd,0x58,0x47,0x59,0xfc,0x22,0x8,0xab,0x6,0xd5,0xf3,0xbd,
0x41,0x42,0xcb,0x85,0xa3,0x1f,0xe2,0xbc,0x56,0xfe,0x47,0x81,0x6d,0x90,0x27,0x26,
0xc4,0xf4,0xe5,0x28,0x85,0x3a,0xe6,0xe5,0x9f,0x57,0xd8,0xb,0xa6,0x57,0xa2,0x99,
0x42,0x56,0xd2,0x4b,0xe9,0x3b,0xd6,0xc4,0xa0,0x77,0xc8,0x2,0x8b,0x3b,0xf7,0x45,
0x0,0xa,0xb2,0xc,0xda,0xdb,0xc7,0x59,0x68,0x6a,0x6a,0xb4,0x51,0x46,0x99,0x8c,
0x88,0x41,0x77,0xed,0xad,0xf7,0x71,0x39,0x58,0x9c,0xab,0x48,0x94,0x8b,0xc8,0x90,
0x5c,0x52,0xb4,0xac,0x3b,0x56,0x3c,0x82,0x7b,0xae,0xfd,0x5,0x3e,0xfd,0xe6,0xb7,
0xe2,0x23,0x6f,0xf8,0x4b,0xfc,0xfe,0xfb,0x3f,0xc4,0xb6,0x87,0x97,0xa2,0x44,0x72,
0x48,0xdb,0xce,0x83,0x3e,0x2,0x6a,0xec,0x1a,0xba,0xab,0x7d,0xaf,0xb5,0x2b,0x9e,
0xc8,0x40,0x71,0x50,0x39,0x8b,0x8c,0x44,0x4c,0xc7,0x2,0xd6,0xcb,0xc5,0xf7,0xac,
0xdd,0xb6,0x15,0x25,0xf5,0xa1,0x1d,0xa4,0x3e,0x1d,0x94,0x1c,0x54,0x38,0xdd,0x3,
0x7d,0x66,0x31,0xc4,0x5d,0x63,0xa3,0xb7,0x4a,0x3a,0x3c,0x75,0xa8,0xf2,0xb8,0x30,
0x22,0x82,0xc3,0x51,0x83,0xe4,0x9b,0x84,0x6f,0x6b,0x6b,0xab,0x8d,0xca,0x6b,0x6b,
0x6b,0x63,0x68,0x41,0x5d,0x5d,0xd,0xaf,0x6b,0x16,0xb6,0x86,0x72,0xfb,0x46,0xca,
0xd6,0x6,0xe,0x8,0x11,0xf4,0x1c,0x5,0x75,0x44,0xef,0x79,0x74,0x15,0xbe,0xf1,
0xd1,0x4f,0xe0,0x53,0xaf,0xff,0x6b,0x7c,0xe7,0xbd,0x1f,0xc1,0x1f,0xff,0xf5,0x3f,
0xd0,0xb1,0x75,0x13,0x6f,0x2a,0x43,0x9b,0x10,0x69,0xbd,0xae,0xa2,0x86,0x7c,0x4b,
0x53,0x27,0xa7,0x68,0x39,0x78,0xcd,0x23,0x93,0x47,0xa6,0xa2,0x11,0x56,0x14,0xd8,
0x6f,0x7f,0xfb,0xdb,0xf1,0xbe,0xf7,0xbd,0xef,0xd8,0xe,0x59,0x56,0x9a,0xf8,0xae,
0x4d,0x5b,0xb7,0x99,0xdb,0x58,0x23,0x51,0x87,0xc3,0x41,0xc9,0x41,0x5e,0xb2,0x2d,
0xfd,0x5,0xf4,0x7a,0x19,0x46,0x3e,0xcd,0x44,0x68,0xf9,0xe1,0x83,0xde,0xee,0x30,
0x46,0x61,0x7b,0x25,0x87,0x2e,0x8c,0x84,0x30,0x9a,0x61,0xfc,0xa6,0x13,0xb9,0x60,
0x18,0x8c,0xeb,0x34,0xb4,0xd7,0x86,0xfc,0x52,0x75,0xa6,0xd0,0xb4,0xa1,0x45,0x47,
0x59,0x5,0x95,0x80,0x4d,0xa0,0x4c,0x79,0xe8,0x23,0x9f,0x4b,0xa1,0xa1,0x3e,0x87,
0xb6,0xd6,0x6,0x8c,0x6f,0x6f,0xc6,0xb8,0xb6,0x6,0xd4,0xe4,0xa9,0xa9,0x27,0xca,
0x48,0x51,0x70,0xdb,0x8,0x22,0x6a,0xed,0xea,0x30,0x56,0x87,0xbf,0xb9,0x8c,0x78,
0x1e,0x52,0x98,0xda,0xc8,0x7e,0xb9,0xc6,0xa8,0xed,0x57,0x34,0xe4,0x39,0x55,0xc2,
0x8e,0x75,0x8f,0xe2,0xcf,0xff,0xfb,0xdf,0xf8,0x9f,0xcf,0x7c,0x1c,0x1f,0x7f,0xc9,
0xb,0xf1,0x8d,0x6b,0xde,0x83,0x9d,0xcb,0x1f,0x0,0x8a,0x3d,0x28,0x79,0x65,0xf4,
0x31,0x69,0x29,0x5a,0x27,0xb9,0x24,0xdf,0x41,0xd,0x3d,0xf0,0x49,0x0,0x5e,0xe,
0x15,0x7e,0x1e,0x28,0x95,0x51,0x57,0x5f,0x87,0xab,0x9e,0x7b,0x25,0xbe,0xf4,0xf9,
0xcf,0xe1,0xc6,0xdf,0xfe,0x1a,0x3b,0xb6,0x6c,0xc4,0x27,0x3e,0xfa,0x61,0xd4,0xd5,
0xe4,0x2d,0xde,0x5a,0x18,0xef,0x68,0x43,0x59,0x9c,0xe6,0x73,0xb3,0x41,0x12,0x7d,
0x24,0xc7,0xd,0x3d,0x5d,0xc8,0x87,0xc3,0xbb,0xa9,0xe,0x5a,0xe3,0xb4,0xd1,0xf9,
0xee,0xee,0x6e,0x63,0x45,0xf2,0x1a,0x33,0x45,0x2c,0x76,0xf4,0x23,0xeb,0xe0,0xe0,
0xe0,0x70,0x2c,0x20,0x1,0x2b,0x8d,0xbe,0xa5,0xb5,0x19,0x53,0xa6,0x4c,0xa6,0x95,
0x10,0x59,0x6,0x1a,0x6,0xac,0x79,0x8,0x26,0xdb,0x86,0xb8,0x54,0x74,0x26,0x31,
0xa9,0xf9,0x93,0xd2,0xea,0xd3,0xa,0xfc,0x5c,0xf6,0x7,0x90,0xd6,0x70,0xe7,0x81,
0x7e,0x14,0x3a,0x76,0xe2,0xcf,0xbf,0xfe,0x35,0x3e,0xf3,0xaa,0xd7,0xe3,0x2b,0x7f,
0xf3,0xe,0xdc,0xf2,0x83,0xff,0xc6,0xe3,0x77,0xdd,0x8b,0x64,0x77,0xaf,0x91,0x89,
0x9e,0xa9,0x63,0xc,0x8d,0xe,0xd2,0x8a,0xa8,0x7a,0x76,0x96,0xef,0x6d,0x69,0x6a,
0xc2,0xf9,0xe7,0x9d,0x8f,0xef,0x7d,0xef,0x3f,0xf1,0xe8,0x8a,0x47,0xf1,0x5f,0x3f,
0xfa,0x11,0xde,0xf4,0xa6,0x37,0xe1,0x8c,0x33,0xce,0xb0,0xdf,0x2a,0x1c,0x4b,0xc4,
0xa9,0xd5,0x5b,0x52,0x5e,0xa,0xbb,0xf6,0xec,0xb6,0xe,0xea,0xe1,0x70,0x50,0x72,
0xe8,0x67,0xc6,0x74,0xf6,0xf5,0xd9,0xd4,0xf3,0x4,0x13,0xa8,0x31,0xf0,0x7,0x7b,
0x88,0x83,0x83,0x83,0xc3,0x48,0x82,0x84,0xbe,0xdc,0x34,0xd,0xd,0xd,0xc8,0xe5,
0xb2,0xf0,0x83,0x72,0x34,0x73,0x59,0xd2,0x91,0x72,0x4c,0xe2,0x3a,0xee,0xc3,0x91,
0x40,0x16,0x91,0xf8,0xd0,0x88,0x21,0x1d,0x7d,0xca,0xba,0x40,0x46,0x4,0x92,0xc5,
0x2,0x36,0xdc,0x76,0x27,0xbe,0xff,0x99,0xcf,0xe1,0xab,0xef,0x78,0x17,0x3e,0xff,
0xc6,0xb7,0xe2,0xf,0xdf,0xfe,0x2e,0xfc,0x3d,0xbb,0x50,0x2f,0x83,0xa7,0xc2,0x7b,
0x93,0x15,0x14,0x93,0x72,0x43,0x49,0x81,0x8e,0xde,0x1d,0xb,0x79,0xbf,0x54,0xc2,
0xe4,0x49,0x13,0xf1,0xbe,0xf7,0xbe,0x7,0xbf,0xf9,0xbf,0xff,0xc3,0x6d,0x7f,0xfa,
0x23,0xae,0xff,0xd5,0xb5,0x78,0xd9,0xcb,0x5e,0x8c,0x6c,0x4e,0xbb,0x11,0xca,0x69,
0xaf,0x91,0x50,0x29,0x7e,0xce,0x59,0x9c,0x7d,0xdf,0xb7,0xe3,0xb1,0x22,0x8a,0x58,
0xe8,0x97,0xc3,0x0,0x7d,0x85,0x81,0x68,0x7a,0xcd,0x30,0x38,0x28,0x39,0x6c,0xeb,
0xec,0xe4,0x8f,0xc5,0x64,0xca,0x4f,0x45,0x92,0xe7,0x8e,0x1c,0x1c,0x1c,0x1c,0x46,
0x11,0x22,0x1,0xab,0x79,0x39,0xb2,0x12,0x86,0x86,0x48,0x88,0xc7,0x96,0x83,0x3a,
0x80,0x73,0x14,0xf4,0xb9,0x42,0x1f,0x3a,0xd7,0xac,0xc2,0x3,0x7f,0xf8,0x1d,0xbe,
0xf7,0xe5,0x2f,0xe2,0xbd,0xaf,0x79,0x35,0x7e,0xf0,0x95,0xaf,0x62,0xd5,0x9d,0x77,
0xa2,0x7f,0xf3,0x66,0x64,0xf8,0x7d,0x8e,0x96,0x84,0x26,0x50,0xca,0xbb,0x52,0x4e,
0x25,0x51,0x4a,0xa7,0x51,0x4c,0x69,0xe9,0xf5,0x68,0xe4,0x92,0x66,0x43,0x5f,0x72,
0xc9,0x25,0x78,0xff,0xfb,0xdf,0x8f,0xbb,0xee,0xbc,0x1d,0x4b,0xee,0xbf,0x17,0x1f,
0xfc,0xc0,0xfb,0x70,0xce,0xd9,0x67,0x62,0xe2,0x84,0x76,0xa,0x7e,0xbd,0x53,0x16,
0x86,0xde,0x1f,0xd,0x3a,0x10,0x69,0x59,0x9c,0x78,0x2d,0x7e,0xce,0xb1,0x1c,0xca,
0x1b,0xe5,0xa,0xd0,0x5d,0xe8,0x27,0x15,0xe,0x8f,0x83,0x92,0xc3,0xd6,0x1d,0xbb,
0xf8,0xa3,0x88,0x59,0xa3,0x9b,0x22,0x56,0x74,0x70,0x70,0x70,0x18,0x4b,0xd0,0xc8,
0x29,0x8d,0x14,0xba,0xee,0xdf,0xff,0x13,0xef,0x7d,0xc9,0xcb,0xf1,0xf,0x6f,0x7f,
0x37,0x7e,0xf5,0x4f,0x5f,0xc7,0xaa,0xdf,0xde,0x84,0xa6,0x62,0xc9,0x7c,0x4c,0x15,
0x5a,0x6,0x41,0x3a,0x44,0x31,0x4d,0x6d,0x5b,0x4b,0xae,0x84,0xf2,0xa8,0x24,0xe1,
0x5,0x29,0xa4,0x18,0x82,0x81,0xd0,0x8,0xe1,0xff,0x68,0x1d,0xac,0x5e,0xbd,0x1a,
0xd7,0x5e,0x7b,0x2d,0x3e,0xf2,0x91,0x8f,0x60,0xee,0xa9,0xb3,0x6d,0x46,0xb3,0x5c,
0x4a,0xf2,0xc0,0x28,0xc8,0x72,0x39,0x20,0x98,0xb8,0x8e,0xb0,0x76,0xed,0xda,0x41,
0xb,0xe2,0x58,0x22,0x93,0xcd,0xa0,0xb3,0xbb,0xb,0x85,0xea,0x9c,0xa5,0xfd,0x51,
0x95,0xfb,0xfc,0x52,0xbd,0xf3,0x3c,0x55,0x74,0x4a,0x8c,0xe7,0x8a,0x8e,0xe,0x7e,
0x9b,0x46,0x46,0x63,0x93,0x49,0x10,0x15,0x78,0xd6,0x39,0xe9,0xe0,0xe0,0xe0,0x30,
0x12,0x20,0x79,0xa5,0x8e,0x62,0x2d,0x87,0xa2,0x55,0x4c,0xcb,0xc,0xb6,0xe4,0xb5,
0x3e,0x6b,0x8c,0xa5,0x3a,0x90,0x53,0x1,0xa,0x81,0xfa,0x2,0x28,0x9c,0xcb,0x14,
0xd2,0x7e,0xa,0x75,0xbc,0x39,0xb1,0xa7,0x13,0x4b,0xff,0xf0,0x7b,0xfc,0xec,0x2b,
0x5f,0xc1,0x17,0x5f,0xff,0x7a,0x7c,0xfc,0xf9,0x2f,0xc0,0xbd,0xd7,0x5e,0x8f,0x3c,
0x85,0x7e,0x3a,0x99,0xb2,0x67,0x57,0x72,0xb4,0x8,0x28,0xcc,0xd5,0xff,0x90,0xa2,
0xec,0xd3,0x8,0xd4,0x4c,0x22,0xc7,0xc7,0xa6,0x11,0x7a,0x15,0x2c,0x3a,0xe3,0x74,
0x5c,0xf3,0x21,0x12,0xc9,0x2f,0xfe,0xb,0xdb,0x37,0x3e,0x8a,0x1b,0xae,0xfd,0x39,
0x2e,0xbd,0xf0,0x5c,0xde,0x5b,0xb6,0x3e,0x8a,0x64,0x58,0x82,0x97,0x4b,0x19,0xb9,
0x84,0x49,0x1f,0x21,0xe3,0xa2,0xe0,0x7,0x21,0x2,0xc6,0x21,0x60,0xc4,0xb,0x3,
0x1,0xfa,0xfb,0xca,0x58,0xbb,0x7a,0x23,0xae,0xf9,0xc0,0x47,0x71,0xf6,0x59,0xe7,
0xe1,0x7,0x3f,0xf8,0x91,0xed,0xbf,0x60,0x73,0x26,0xe4,0xb1,0x19,0x42,0x1c,0x47,
0xa,0xf5,0xa7,0x28,0x5b,0xb4,0x75,0xe8,0x40,0x91,0x71,0xa,0xf2,0xd8,0x7a,0x90,
0xad,0x59,0x22,0x69,0x5f,0x35,0xad,0x34,0x8a,0x40,0x3d,0xe4,0xbd,0x5,0x9a,0x4d,
0x55,0x7f,0xd7,0xb1,0xee,0x20,0x71,0x70,0x70,0x70,0x38,0x5c,0x98,0xd8,0x94,0x1b,
0x46,0xc2,0xae,0x2a,0xf0,0x52,0xc,0x1,0x2f,0x28,0x44,0x7f,0x12,0xf1,0x40,0x23,
0xbf,0x48,0xf5,0x77,0xc3,0xef,0xd8,0x8e,0x55,0x77,0xde,0x86,0x7f,0xf9,0xe4,0x27,
0xf0,0xbe,0x57,0xbc,0x12,0xff,0xfb,0xf5,0xaf,0xe3,0xe1,0x3f,0xde,0x82,0xee,0xcd,
0x9b,0x50,0x9f,0xa6,0xb4,0xb4,0x3e,0x9,0x3e,0x6c,0x48,0xb0,0x67,0x50,0x2e,0xca,
0xd5,0x33,0xa1,0xbd,0x1d,0x33,0x66,0xcc,0xc0,0x35,0x1f,0xfc,0x0,0xee,0xbd,0xf7,
0x5e,0xdc,0x72,0xcb,0x2d,0x78,0xef,0x7b,0xdf,0x8b,0x4b,0x2f,0xbd,0x4,0x35,0x35,
0x79,0x7b,0xd7,0x1,0x90,0x42,0xbd,0x5f,0xd0,0x5a,0x13,0x95,0xb0,0x82,0x42,0xa1,
0x88,0x55,0xab,0x1e,0xa7,0x85,0xf1,0x51,0x9c,0x75,0xce,0x39,0xf8,0xce,0x7f,0xfe,
0x7,0xd6,0x6d,0x58,0x6f,0xef,0xa2,0x0,0xb6,0x15,0x29,0x98,0x2a,0x6,0x1d,0xf9,
0x53,0x86,0x28,0x45,0x4f,0x1d,0x7a,0x86,0x5c,0x58,0x82,0xde,0x53,0x61,0xd8,0xb2,
0x73,0x57,0x74,0x61,0x3f,0x44,0x6f,0xad,0xde,0x9c,0x20,0x11,0xd0,0x80,0x42,0x57,
0xa1,0x9f,0x1f,0xaa,0x17,0x1d,0x1c,0x1c,0x1c,0x46,0x18,0x62,0xf1,0xaf,0xd1,0x40,
0x19,0x4d,0xac,0xf3,0x43,0xe4,0x29,0xdb,0xb3,0x95,0x12,0x32,0xe5,0x22,0x6a,0x29,
0xc9,0x5a,0xd3,0x1e,0x3a,0xd7,0xaf,0xc3,0xcf,0xfe,0xf5,0xeb,0xf8,0xd2,0x7,0xdf,
0x8b,0xbf,0x7b,0xe7,0xdb,0xf1,0x9d,0x2f,0x7e,0x16,0x1b,0x1e,0xb8,0x17,0x75,0x59,
0x31,0x49,0x1f,0xc5,0x5c,0x89,0x3f,0xa2,0x6,0x9f,0xf6,0x51,0xa1,0x5a,0xad,0xe7,
0x29,0x68,0x39,0xb,0x1d,0xb5,0x2a,0xf1,0x4b,0x5e,0xfc,0x22,0xfc,0xf4,0xc7,0xff,
0x83,0x9b,0x6f,0xba,0x11,0x7f,0xfe,0xd3,0x1f,0xf1,0x91,0xf,0x7d,0x88,0x24,0x31,
0x95,0xdf,0x7,0xd6,0x7f,0xa0,0x7e,0x3,0x75,0x28,0xf,0x7,0x9,0x63,0x9b,0x15,
0xce,0xd7,0x69,0x3f,0x6b,0x2d,0x1f,0xa2,0x19,0xe0,0xbf,0xfe,0xf5,0x6f,0xf1,0xfc,
0xab,0x5e,0x88,0xe7,0x5e,0xf9,0x3c,0xfc,0xe0,0xfb,0x3f,0xa4,0xbc,0x4d,0xda,0xe,
0x6d,0xea,0x9e,0xf6,0x3,0x5a,0x1d,0x7c,0x9e,0x16,0xc4,0x1b,0x48,0x7a,0x28,0x7b,
0x69,0xe4,0xea,0x1b,0xcc,0xd5,0x94,0x3c,0xa,0x62,0x59,0x71,0x12,0xa1,0x7a,0xea,
0xdb,0x20,0x3,0x6c,0xed,0xea,0xb0,0x9,0x81,0xfb,0x1b,0x2,0x46,0xe,0xc6,0x46,
0xba,0xce,0x50,0xe6,0x4d,0x5d,0xc5,0x7e,0xbb,0x71,0x68,0x87,0x8d,0x83,0x83,0x83,
0xc3,0x88,0x81,0xe4,0x92,0xe4,0x93,0xfe,0xca,0x1,0x72,0xf0,0xd0,0x98,0xa6,0xf6,
0xbe,0x6d,0x2b,0xb6,0x3f,0x78,0x3f,0x6e,0xfa,0xc1,0xf7,0xf1,0x95,0x77,0xbf,0xb,
0xff,0xfc,0xbe,0xf7,0xe3,0xfe,0xdf,0xde,0x84,0x3d,0x6b,0xd6,0x23,0xd5,0xd7,0x87,
0xc,0xe5,0x5a,0x8a,0x42,0xdd,0x6,0xd9,0xf0,0x11,0x52,0x86,0x7d,0xad,0xe7,0x51,
0xd1,0x3c,0x2e,0xf5,0x3f,0x78,0x38,0xf3,0xcc,0xc5,0x78,0xc7,0x3b,0xde,0x86,0x1f,
0xfe,0xf0,0xfb,0x58,0xbb,0xf6,0x71,0x7c,0xe7,0xdb,0xff,0x8a,0xa7,0x5d,0x7a,0x31,
0x26,0x4f,0x9a,0x80,0x5c,0x36,0xcd,0x9f,0xa9,0x83,0x5b,0xaf,0x1f,0xda,0xb9,0x1d,
0x45,0x6b,0x7f,0x68,0x82,0x99,0x36,0x70,0x92,0xdc,0xd5,0x82,0x83,0xff,0xf9,0x9f,
0xdf,0xc3,0x15,0xcf,0x7c,0x36,0x5e,0xff,0xfa,0xbf,0xc4,0xc3,0xf,0x2f,0xc7,0xc0,
0x40,0xd1,0xbe,0xd7,0xa,0x14,0x59,0x4d,0xb4,0x20,0x71,0x64,0x6b,0xf3,0x18,0x60,
0x1c,0xeb,0x27,0xb4,0xe1,0xb2,0xff,0xf7,0x32,0x7c,0xee,0x5b,0xdf,0xc4,0x85,0x57,
0x5c,0x6e,0xab,0xd1,0xa6,0xf,0xf6,0xa2,0x43,0x84,0xd2,0x28,0xc8,0x30,0xaa,0x68,
0xfd,0x6f,0x2f,0x85,0x1d,0x3d,0x9d,0x83,0xc4,0x30,0x94,0x20,0x8c,0x1c,0x74,0xc1,
0x2e,0x92,0xde,0xc4,0x4e,0x5d,0xcc,0x44,0xb1,0xb2,0x83,0x83,0x83,0xc3,0x31,0x83,
0xfc,0x42,0x83,0x90,0x84,0xad,0x9e,0x56,0x45,0x8f,0x59,0x6,0x43,0xfe,0xec,0x9a,
0xe4,0x14,0x83,0xbc,0x1c,0xd1,0x64,0x3a,0x6d,0xa,0x54,0xc1,0x43,0xf7,0xdd,0x8b,
0x4f,0x7e,0xf0,0x1a,0xfc,0xd3,0xc7,0x3f,0x82,0x9f,0x7f,0xfb,0xdb,0x58,0xf9,0xe7,
0xdb,0x90,0xda,0xdd,0x81,0x9a,0xfe,0x1e,0xa4,0xb,0x1,0xf2,0x95,0x14,0xc2,0x92,
0xf4,0x72,0x8a,0x39,0xaa,0xdf,0x9a,0xc3,0xa0,0xbd,0xc1,0x73,0x41,0x12,0xf5,0xc8,
0x60,0x72,0xc3,0x38,0x7c,0xe5,0xb,0x5f,0xc4,0xc6,0x4d,0xeb,0xf1,0xfb,0x3f,0xfc,
0x16,0x9f,0xfa,0xd4,0xc7,0xf1,0x9c,0x2b,0x9f,0x85,0x7c,0x3e,0x4b,0x21,0xa9,0xe9,
0xbf,0xc,0x22,0x2,0x11,0x83,0xd4,0x69,0x49,0xd7,0xfd,0x42,0x2c,0x47,0x7,0x3,
0xff,0xd4,0xa9,0xbc,0x63,0xc7,0xe,0x7c,0xee,0x73,0x9f,0xc3,0xc2,0x85,0xb,0xf9,
0xdc,0x4f,0xe2,0xe1,0x65,0xf,0x9b,0x9c,0x95,0x6b,0xc9,0x92,0xc5,0x7b,0xcd,0xd9,
0x54,0x49,0xf2,0x1d,0x7c,0x3a,0x5,0xf6,0x9b,0x68,0xe5,0xfc,0xeb,0xf,0xbe,0x87,
0x67,0xbd,0xea,0xe5,0xc8,0x91,0x24,0x6,0xf4,0x34,0xde,0xa7,0x74,0x1f,0x11,0x98,
0xc7,0xe6,0x8e,0xe3,0xa9,0xf6,0x11,0xd1,0x7e,0xdb,0x34,0x8f,0xb0,0xbb,0x33,0x22,
0x8,0x8d,0x92,0xb2,0x98,0x5b,0x9c,0x74,0x7f,0xc2,0xb3,0x5d,0x93,0x12,0x8c,0xb0,
0x36,0xf9,0xd9,0xd9,0xab,0x6e,0xe9,0xb8,0xa4,0x1c,0x1c,0x1c,0x1c,0x8e,0x3e,0x6c,
0x43,0xa4,0x84,0xe6,0x14,0x54,0x6c,0xfb,0xd6,0xb2,0x3a,0x6e,0x25,0x7a,0x25,0x20,
0xf9,0x7d,0x25,0x72,0xb2,0x50,0x98,0x53,0xd3,0x4f,0x49,0x30,0x96,0x91,0x63,0x68,
0xe2,0xf9,0xf6,0x65,0x4b,0xf1,0xa7,0xef,0xfe,0x7,0x7e,0xfc,0xb9,0x4f,0xe3,0xcb,
0xef,0x7a,0x23,0x7e,0xfb,0xdd,0x7f,0x44,0xa6,0x73,0x35,0xb4,0xe9,0x66,0x96,0xbf,
0xd6,0xfc,0x81,0x12,0x9f,0xe0,0x53,0xf0,0x55,0x32,0x14,0x7a,0xea,0x77,0xc8,0x7a,
0x48,0x7a,0x69,0xdb,0x30,0x27,0xd7,0xd4,0x80,0xd7,0xbe,0xf1,0x2f,0xf1,0xa3,0x9f,
0xfe,0x37,0xfe,0x7c,0xcf,0x6d,0x58,0xb6,0xf2,0x1,0xbc,0xf1,0x4d,0xaf,0x47,0xd6,
0x53,0x87,0xb4,0x5c,0x2e,0x24,0xf,0xca,0xc4,0x14,0xe3,0x26,0x85,0xde,0x33,0xb7,
0x91,0x49,0xf2,0x6a,0x38,0x10,0x45,0xbf,0x6c,0xb,0x55,0x16,0x49,0x8,0x3e,0x5,
0xff,0x4d,0xb7,0xdc,0x82,0x57,0xbe,0xf2,0x75,0xb8,0xf8,0xa2,0xcb,0xf0,0xd5,0x2f,
0xff,0x83,0xb9,0x71,0x82,0x52,0xc9,0x84,0xae,0x64,0xbc,0x84,0xb0,0xf6,0x3c,0x4f,
0xc9,0xb2,0x60,0xbc,0xe6,0x5f,0x76,0x19,0xde,0xf6,0xd9,0xcf,0xe1,0xb3,0x3f,0xf8,
0x11,0x66,0x3f,0xfb,0x4a,0x3c,0xa6,0x99,0xf1,0x95,0x5a,0xe6,0x4d,0xce,0xf2,0xca,
0xb,0x33,0xf0,0x87,0x59,0x20,0xef,0x70,0x31,0x34,0xf6,0x15,0x59,0x22,0xa9,0x24,
0x36,0x7,0x1,0x42,0xca,0x7e,0x3d,0x5d,0x43,0x93,0x14,0x37,0x23,0x87,0x18,0xba,
0xcf,0xe7,0x2f,0xbb,0x7a,0x7b,0xf6,0x25,0x75,0x7,0x7,0x7,0x87,0x63,0x4,0x29,
0xde,0x36,0x8a,0x86,0x41,0xdb,0x65,0x6a,0xe,0x81,0x46,0xea,0xa4,0x83,0xa,0xb2,
0xd4,0x53,0x1b,0xca,0x3e,0xca,0x5b,0x37,0xa3,0x7b,0xd5,0x63,0xf8,0xd3,0x4f,0x7e,
0x8c,0x2f,0xbd,0xe3,0x1d,0xf8,0xf9,0xbf,0xfc,0xb,0x1e,0xbd,0xfb,0x1e,0xec,0xde,
0xb8,0x11,0x49,0xa,0x36,0xed,0x6,0xea,0x4b,0xb,0x36,0xd1,0xb7,0x6f,0xd0,0x3a,
0x45,0x9a,0xc,0x77,0xca,0x29,0xa7,0xe0,0xa5,0x2f,0x7d,0x9,0xae,0xbf,0xfe,0x7a,
0xac,0x5d,0xb3,0x16,0x5f,0xfe,0xfb,0xbf,0xc7,0xd3,0x9f,0xfe,0x74,0xeb,0x64,0x36,
0xe8,0xf6,0x43,0xc5,0x7e,0x9d,0xcc,0xa,0xa9,0x24,0x35,0xf0,0xdd,0x7b,0x70,0xd3,
0x8d,0x37,0xd1,0xea,0x78,0xe,0x5e,0xfa,0x92,0x97,0xe1,0xee,0x7b,0xee,0xc6,0xee,
0x3d,0xbb,0x6d,0x1d,0xa7,0x78,0x29,0x1a,0x8f,0xec,0x24,0xd2,0xf1,0xd5,0xf1,0xdc,
0xda,0x8c,0xe9,0x4f,0xbb,0x18,0xef,0xf9,0xc7,0xaf,0xe1,0xb5,0xef,0x7f,0xf,0x26,
0xcc,0x3f,0xd,0x41,0x36,0x83,0x32,0xe3,0x62,0x1d,0xd3,0xc7,0x9,0xfd,0xc5,0x92,
0xd,0x46,0xd2,0x5f,0x8c,0xe8,0xed,0xa2,0xb1,0xe8,0xc4,0x96,0xd0,0xed,0x2b,0x17,
0xab,0x9f,0x1d,0x1c,0x1c,0x1c,0x8e,0xd,0x86,0x2a,0xa0,0xda,0x2,0x53,0xbb,0x21,
0xc8,0x32,0xc8,0x84,0x25,0x34,0x90,0x2d,0xb2,0x85,0x1,0x3c,0x7c,0xeb,0x2d,0xf8,
0xe6,0xa7,0x3e,0x81,0xff,0xf8,0xd2,0xe7,0xf1,0xc3,0xaf,0x7d,0x15,0x4b,0x6f,0xfe,
0x3,0xb2,0xbd,0x5d,0xa8,0xf7,0x4b,0xbc,0xb7,0xc4,0xdf,0xf8,0xc8,0x53,0xd5,0xaf,
0xa8,0x13,0x37,0x49,0x8b,0x23,0xd4,0x4c,0xe5,0xe8,0xbc,0x5c,0x2e,0x61,0xf1,0xe2,
0x45,0xf8,0xfa,0xd7,0xff,0x19,0xb7,0xdf,0x7e,0x1b,0x6e,0xbd,0xf5,0x66,0x7c,0xf3,
0x9b,0xdf,0xc0,0xc5,0x17,0x5f,0x48,0x46,0xa2,0x8d,0x42,0x36,0xd2,0x96,0x9e,0x51,
0xbf,0x81,0xfa,0x11,0xe,0x9d,0x1d,0xd4,0xa9,0xec,0xfb,0x51,0x47,0x73,0x51,0x82,
0x95,0x2,0xff,0x9b,0xdf,0xfc,0x16,0xad,0x84,0x4b,0xf0,0x86,0x37,0xfc,0x15,0x96,
0xdc,0xff,0x20,0xe3,0xe0,0x61,0xa0,0x38,0x60,0xe9,0xd4,0xda,0x76,0x81,0x3a,0x97,
0x13,0x69,0x94,0x3c,0xc6,0x3a,0x97,0xc7,0xcb,0xdf,0xfc,0x66,0x7c,0xe2,0x1b,0x5f,
0xc7,0x5f,0x7c,0xf0,0x83,0xc8,0xcf,0x3e,0x5,0x7b,0x68,0xe5,0x14,0x32,0x59,0x5a,
0x3c,0x64,0x48,0x9a,0x2b,0xda,0xe1,0xee,0x78,0x41,0x8b,0xac,0x6a,0x9d,0xf1,0x98,
0xa,0x94,0x15,0xb6,0x9f,0x83,0x7c,0x77,0x21,0x33,0x4a,0xcc,0xbd,0xae,0xa3,0x1b,
0xd7,0x3e,0xf2,0x10,0xa9,0x9c,0xa6,0x8c,0x73,0x2d,0x3d,0x21,0x4e,0x86,0xfd,0x1c,
0x1c,0x1c,0x8e,0x6,0xa2,0x2d,0x68,0x35,0xb6,0x5f,0xc3,0x42,0x3d,0x5c,0x73,0xcd,
0x35,0xf8,0xf6,0x77,0xbf,0xc7,0xeb,0x24,0x1,0x6a,0xd3,0x1,0xc3,0xfc,0x2b,0x9e,
0x89,0xd9,0xf3,0x4f,0xc7,0x46,0x6a,0xf5,0x6b,0x56,0x3c,0x8a,0xed,0xeb,0xd6,0xc3,
0xa3,0x4c,0xb2,0xdf,0x4a,0x78,0x53,0x4e,0xed,0xdd,0xff,0x40,0x32,0x2b,0x6a,0x68,
0xf2,0xdd,0xa7,0x3c,0x2d,0x45,0x11,0x62,0xd6,0x8c,0xe9,0x14,0xfe,0x17,0xe3,0x9c,
0x73,0xce,0xc1,0xd3,0x9e,0xf6,0x34,0x5b,0x71,0x55,0xf0,0x52,0xd1,0xf7,0x9a,0x9,
0x1d,0xe1,0xc0,0x9,0x66,0x26,0x10,0xf,0x51,0xe6,0x95,0x28,0xed,0xf5,0xcc,0xfb,
0x97,0xdc,0x8f,0x5f,0xfe,0xf2,0x97,0xf8,0xc5,0x2f,0x7e,0x81,0x1d,0xdb,0x77,0xdb,
0x77,0x6a,0xf7,0x7b,0xc1,0x78,0x5a,0x3f,0x42,0xda,0x76,0x85,0x9b,0x3e,0x7b,0x16,
0x2e,0x7a,0xce,0x73,0x70,0xc6,0x5,0x17,0x22,0x53,0x57,0x8b,0x22,0x93,0x16,0xca,
0xdd,0xa4,0xf7,0x26,0x32,0xcc,0x21,0xa6,0x93,0x72,0x45,0x69,0x54,0x3f,0x7,0x6d,
0x8c,0xea,0x73,0x8e,0x2d,0x26,0xd4,0x78,0x78,0xc1,0xe2,0xb3,0x50,0xc3,0x7c,0xd6,
0x3c,0x91,0x14,0xad,0x84,0x41,0xbb,0x45,0xe9,0x9,0x49,0x71,0xdb,0x69,0x2,0x69,
0xcd,0x75,0x7,0x7,0x7,0x87,0xa3,0x5,0x89,0xcb,0xa1,0x22,0x73,0x70,0x14,0x24,
0x2f,0x6a,0xc8,0xa8,0x3a,0x64,0xef,0xb8,0xe5,0x16,0xfc,0xe4,0x5f,0xfe,0x5,0x77,
0xfd,0xdf,0xd,0xe8,0x5e,0xbf,0x16,0xd9,0x72,0x81,0xa1,0x1f,0xa9,0x80,0x82,0x9c,
0x42,0x54,0xfe,0xf1,0x12,0x35,0xd8,0x22,0xe5,0x7b,0x29,0x25,0x81,0x5b,0x41,0x26,
0x9f,0x41,0x4b,0x5b,0x33,0x5e,0xfb,0xea,0x57,0xe3,0xd1,0x65,0x8f,0xe0,0xee,0xbb,
0xef,0xc2,0x57,0xbe,0xf2,0x65,0xbc,0xfa,0xd5,0xaf,0xc2,0xf8,0xf6,0x71,0x24,0x3,
0xed,0xd3,0xa0,0xcd,0x84,0xca,0x24,0x25,0xbd,0x4f,0xf,0x12,0x51,0xc5,0x31,0x1a,
0x1a,0xf4,0xff,0x30,0x7f,0x22,0xa3,0xc1,0x0,0xc,0xc,0xc,0x60,0xe9,0xd2,0x87,
0x71,0x35,0x15,0xbf,0x67,0x3d,0xeb,0xd9,0xb4,0x18,0xfe,0x15,0x5b,0xb7,0x6d,0xe3,
0x3b,0x28,0xe2,0x19,0x47,0xdd,0xc3,0x9f,0x59,0xb0,0x1,0x41,0xd9,0x1c,0x26,0xce,
0x9c,0x81,0x4f,0x7d,0xf5,0x2b,0xf8,0xe4,0x3f,0x7d,0xd,0xb,0x9e,0xf9,0x4c,0x94,
0x5b,0x5a,0xd0,0xc3,0xef,0x45,0x70,0x52,0x32,0xb5,0x84,0x77,0x5a,0x3e,0xff,0x20,
0x9,0x8f,0x44,0x29,0xe1,0x7c,0x18,0x86,0xcc,0x11,0xa3,0xbf,0x58,0x10,0x33,0x9a,
0x45,0xa4,0x78,0xeb,0xd5,0x11,0xb,0x30,0x41,0xea,0x88,0x1e,0x60,0xee,0xad,0xa5,
0xc9,0x96,0x4b,0xd4,0x30,0x62,0x87,0xc6,0xa0,0xe,0xe,0xe,0xe,0x4f,0x8a,0x98,
0xb,0x78,0xec,0x1b,0xe8,0xc7,0xe6,0xad,0x5b,0x8c,0x10,0x34,0xd1,0x2b,0x90,0xe6,
0x9c,0xa,0xd0,0x40,0x6d,0x5e,0x9d,0xc9,0x19,0x69,0xdb,0x41,0x99,0xea,0x6b,0xb4,
0x76,0x91,0x74,0x55,0xf5,0x7,0xa7,0x28,0xd4,0xd3,0xf2,0xed,0x53,0x56,0x3d,0xf7,
0x99,0xcf,0xc6,0xf7,0xbe,0xf9,0x1d,0xfc,0xf1,0xf7,0x37,0x62,0xd9,0x3,0xf,0xe2,
0x6b,0x5f,0xfd,0x32,0xda,0xdb,0x5b,0x91,0xa6,0xb0,0xcd,0x92,0x10,0x74,0xac,0xc9,
0x65,0x6d,0x47,0xb6,0x34,0x9f,0x9f,0xa5,0xc5,0xa0,0xfd,0x9b,0x7,0x47,0x1e,0x55,
0x34,0x7c,0x54,0xab,0x3e,0xec,0xd,0x8a,0x9b,0x16,0xd1,0x1b,0x1a,0xe4,0x66,0x2f,
0xfa,0x1,0x43,0x68,0x7e,0xf9,0x6f,0xff,0xfb,0x7f,0xe0,0x8a,0xe7,0x3c,0x17,0x2f,
0x7c,0xc1,0x8b,0x71,0xcb,0xad,0xb7,0xf1,0x37,0xd5,0xf8,0x6b,0x77,0x36,0xbe,0xd7,
0xec,0x11,0x59,0x9,0x4c,0x59,0x2a,0x57,0x8b,0x17,0xbc,0xfe,0x6f,0xf1,0x81,0xbf,
0xff,0x3a,0x3e,0xfc,0xf,0xdf,0x40,0xc3,0x29,0x73,0xb0,0x85,0xcf,0xd1,0x0,0x20,
0x8f,0x26,0x43,0x6,0x69,0x7b,0x2f,0x78,0xa6,0xe7,0x20,0x11,0x6d,0x2,0x14,0xaf,
0xdb,0x14,0x1c,0x85,0xce,0xe7,0x43,0x45,0xdf,0x40,0x19,0xfd,0x55,0x32,0xd2,0x2a,
0xb2,0x25,0x46,0xc7,0xc8,0x41,0x3c,0x6a,0x20,0xe5,0x75,0xf7,0xf6,0xc2,0x3f,0x8e,
0xbe,0x2e,0x7,0x7,0x87,0x93,0x7,0xd2,0xbe,0x3b,0x3a,0x3a,0xb0,0x6c,0xd9,0xb2,
0xea,0x95,0xfd,0x21,0x9,0x15,0x7,0xa,0x28,0x69,0xd6,0x14,0xd0,0xb3,0x4f,0x39,
0x85,0x5a,0xfa,0x15,0xf8,0xe6,0x37,0xbe,0x81,0x35,0x8f,0x3f,0x8e,0xff,0xf9,0xaf,
0xff,0xc2,0xd5,0x57,0x5f,0x8d,0x39,0x73,0xe7,0xa2,0xa6,0x86,0xca,0xac,0x34,0xf6,
0x23,0x95,0x5b,0x11,0x3b,0xec,0x13,0x42,0xbf,0x82,0x35,0xab,0xd7,0xda,0xfc,0x84,
0xf3,0xce,0x3d,0x1f,0x1f,0xfa,0xd0,0x87,0xf1,0xd8,0x63,0x2b,0xd1,0x5f,0xe8,0xb1,
0x89,0x6f,0x7c,0x2d,0x5,0x7c,0x14,0xb4,0x8e,0x7,0xed,0x13,0x34,0xcf,0x9c,0x8e,
0xcb,0x5e,0xf3,0xa,0x7c,0xfc,0x7b,0xdf,0xc6,0x25,0x2f,0xb9,0xa,0x4d,0x33,0x26,
0xa1,0xab,0x34,0x80,0x62,0xe8,0x53,0xf6,0x33,0x8e,0x51,0xd2,0x46,0x14,0x64,0xc1,
0xec,0xec,0xd0,0x4c,0x69,0x26,0xa8,0xa,0x23,0x7,0x2b,0xa,0x9e,0x95,0x68,0xbe,
0x69,0x42,0x88,0x66,0xe6,0x39,0x38,0x38,0x38,0x1c,0x6d,0x78,0xd4,0xaa,0xd3,0xc,
0x43,0x27,0xd7,0x6a,0x6c,0xbd,0x46,0xe6,0xf8,0xbe,0x6f,0x44,0x20,0x89,0x14,0x50,
0x16,0x35,0x36,0xd6,0xe3,0xad,0x6f,0x7d,0xb,0xee,0xbf,0xff,0x3e,0xdc,0x7a,0xcb,
0xcd,0x46,0x8,0xaf,0x7a,0xe5,0x2b,0xd0,0xdc,0xd4,0x88,0x14,0xef,0xd7,0x6f,0x34,
0x2f,0x40,0xd0,0xf3,0x8e,0x74,0x74,0x8f,0x26,0xa3,0x95,0x4a,0xd4,0xdc,0x29,0xbf,
0x75,0x5c,0xbf,0x7e,0x23,0xde,0xf8,0xa6,0x37,0xe3,0xd2,0x4b,0x9f,0x8e,0x8f,0x7c,
0xf8,0xa3,0xd8,0xb2,0x65,0x1b,0x45,0x27,0xad,0x4,0xa,0x78,0xda,0x15,0x94,0x99,
0x24,0x3,0x8a,0xca,0x1,0x86,0x72,0x2a,0x83,0xfa,0x89,0x53,0xf0,0xa1,0xcf,0x7d,
0x1,0x1f,0xfb,0x87,0x7f,0xc0,0x15,0xaf,0xfd,0x7f,0x18,0x68,0x69,0xc0,0x40,0x36,
0x81,0x1,0xcd,0xbc,0xce,0xd2,0x42,0x50,0x1c,0x15,0xaa,0xef,0x3b,0x11,0x18,0xda,
0x1f,0x12,0x2f,0x31,0xae,0x63,0x48,0x13,0x6b,0x57,0xe7,0x1e,0x92,0x84,0x5d,0x62,
0x1c,0xab,0xf1,0x8c,0x6e,0x49,0xd0,0xb4,0x18,0x40,0x2a,0xad,0x44,0xd8,0x5,0x7,
0x7,0x7,0x87,0xa3,0x8a,0xe1,0x44,0x8b,0x84,0xba,0x96,0x6f,0x68,0x69,0x69,0xc1,
0xf3,0xae,0x7a,0x2e,0x3e,0xfb,0xb9,0x4f,0xdb,0x44,0xb4,0xa5,0xf,0x3f,0x88,0xbf,
0xfb,0xf4,0x27,0x31,0x79,0xf2,0x44,0xe4,0x73,0x19,0x1b,0xae,0xaa,0x19,0x10,0x36,
0x19,0x4d,0x1d,0xd4,0x14,0xb4,0xfb,0x87,0x23,0x81,0x9,0x4b,0x5a,0xf,0xbf,0xfa,
0xd5,0xf5,0x78,0xdd,0xeb,0x5e,0x8f,0xa7,0x3f,0xfd,0x32,0x5c,0x77,0xed,0xaf,0xf8,
0x4d,0x92,0x42,0x55,0xcf,0x96,0xb8,0x8c,0x42,0x22,0x4c,0xa3,0xac,0x15,0xff,0x6a,
0x1a,0x70,0xe9,0xf3,0xae,0xc6,0x3b,0x3f,0xfd,0x59,0x7c,0xec,0x3b,0x5f,0x47,0xdb,
0x82,0x79,0xe8,0x63,0x7a,0xc2,0x4a,0x1a,0x5e,0xa0,0x95,0x58,0xf5,0xbb,0x28,0x28,
0x7e,0xb4,0x35,0x78,0x3e,0x32,0xa0,0x7c,0x17,0x59,0x28,0xdd,0x9a,0xa3,0xd1,0xd5,
0xd7,0x5b,0xfd,0x66,0x6f,0x4a,0x19,0x69,0xe3,0x41,0x5b,0x3a,0x43,0xfd,0x11,0x96,
0x98,0x91,0x93,0x6,0x7,0x7,0x87,0xb1,0x8,0xc9,0x1a,0x6,0x8a,0x4d,0x1b,0x71,
0xb4,0x6e,0xed,0x3a,0xfc,0xe7,0x77,0xff,0x1d,0x6f,0x7e,0xd3,0x1b,0x71,0xce,0x39,
0x67,0xdb,0x52,0x16,0x5a,0xe6,0x22,0x26,0x85,0xa1,0x61,0xf0,0xc7,0x7,0x84,0x3,
0x11,0x49,0xb7,0x21,0x7f,0x14,0x88,0x12,0xf6,0xea,0x7c,0xb5,0xc0,0x9f,0x75,0xec,
0xde,0x8d,0xeb,0xae,0xbb,0x1e,0x8b,0xce,0x38,0x3,0xaf,0x7f,0xc3,0x5f,0xe2,0xe6,
0x5b,0x6e,0x45,0x57,0x77,0xf,0x92,0xa9,0x14,0xbf,0x57,0x47,0x73,0xf4,0x24,0xfb,
0x9f,0x3f,0xa8,0x69,0x19,0x8f,0xf3,0x9f,0xf1,0x6c,0x7c,0xf5,0x3b,0xff,0x81,0x57,
0xbe,0xf9,0xad,0x98,0x74,0xda,0x2,0xf4,0x30,0xbe,0x3d,0x94,0xa5,0x9a,0xa8,0xa6,
0x4e,0xe5,0xac,0xaf,0x8e,0x65,0xf5,0x95,0x50,0xd0,0x32,0xa8,0x83,0x39,0x56,0xc4,
0x8f,0xc,0x8a,0xc7,0x70,0x21,0x42,0x94,0x3e,0x5,0x9d,0xc7,0xd7,0xe2,0x3b,0x94,
0x6e,0xad,0xf3,0x14,0xa0,0xab,0xab,0x7,0x3b,0x76,0xee,0xc2,0xb6,0x6d,0xdb,0xad,
0x3f,0x65,0xeb,0xae,0x9d,0x36,0xb2,0x2a,0x7e,0x9c,0x91,0x83,0x96,0x78,0xd2,0x8f,
0xd4,0xf1,0x52,0x49,0x66,0xa2,0x87,0x44,0x4f,0x72,0x70,0x70,0x70,0x38,0x26,0x90,
0x88,0x8c,0x64,0x6e,0x5,0xa5,0x62,0xd1,0xfa,0xc,0x34,0x8b,0x38,0x4d,0x36,0x50,
0x47,0x72,0x2e,0x9d,0x56,0x9f,0xf4,0xa0,0xab,0x69,0x68,0x10,0x69,0xc,0x17,0xf6,
0xea,0xbc,0x7b,0x43,0xdc,0xb9,0x2c,0x87,0xb9,0x5f,0xf1,0x11,0x24,0x2,0xf4,0xf6,
0x17,0x51,0xf2,0x81,0xae,0x9e,0x1,0xbc,0xef,0xfd,0x1f,0xc2,0x45,0x17,0x5f,0x86,
0xbf,0x7e,0xe3,0x5b,0xb0,0x73,0x67,0x17,0xc9,0x28,0x7,0xbf,0xac,0x4e,0x6b,0x92,
0x93,0x46,0xd,0x5,0x1a,0x52,0xa,0x4,0x99,0x34,0x6a,0x27,0x4f,0xa2,0x95,0xf0,
0x49,0xbc,0xed,0x5b,0xdf,0xc4,0x55,0xef,0x7a,0x27,0xfa,0xeb,0xeb,0xd1,0xef,0xf1,
0x1d,0x69,0xf,0x69,0x92,0x41,0x16,0x19,0xfe,0x8e,0x2,0x98,0x71,0xe,0xf8,0xce,
0x90,0x44,0xa1,0xe1,0xa8,0x5a,0x63,0x55,0x41,0xd2,0xf6,0x88,0xc9,0xa1,0x3a,0xb4,
0x77,0x9f,0x30,0x4,0xb2,0x4,0x64,0xa5,0xc8,0x68,0xd1,0x8,0xaf,0x98,0x4e,0x7b,
0x7a,0xfb,0xb0,0x73,0xd7,0x6e,0x12,0xc2,0x1e,0x1e,0x3b,0xd1,0xdb,0x57,0x84,0x4f,
0xeb,0x27,0x91,0xcc,0x22,0x55,0xf6,0x30,0x90,0xc9,0xa0,0x97,0xc4,0x27,0x6b,0x47,
0x31,0x34,0x72,0x10,0x73,0xea,0x53,0xc9,0xf,0x6d,0x65,0x40,0xda,0x1b,0xba,0xec,
0xe0,0xe0,0xe0,0x30,0xfa,0x51,0xed,0x5c,0xb6,0xc5,0x21,0x78,0x2c,0x16,0xca,0x58,
0xba,0x74,0x29,0x3e,0xf6,0xb1,0x8f,0x61,0xce,0x9c,0x39,0xf8,0xfe,0xf7,0xbf,0x6f,
0xeb,0x1f,0x25,0x42,0x1f,0xc9,0xa0,0x8,0x8f,0x4,0xe2,0x51,0xc0,0x6a,0x74,0x54,
0x85,0xc4,0x90,0xca,0x37,0xe2,0x94,0x33,0xcf,0xc1,0x2b,0xdf,0xf3,0x1e,0x7c,0xe8,
0xdb,0xdf,0x44,0xe3,0xf9,0x67,0x21,0x97,0xcb,0x45,0x7d,0x1e,0x23,0x46,0x56,0x46,
0x44,0xa8,0xa0,0x79,0x24,0x9a,0xa0,0x27,0xeb,0xa0,0xbf,0xbf,0x80,0x8e,0x8e,0x3d,
0xb6,0xe8,0x5f,0x4f,0x4f,0x1f,0xca,0x34,0x0,0x86,0x5b,0x81,0x55,0x9f,0x45,0x28,
0xda,0xf4,0x28,0x86,0xa5,0xac,0xcc,0x4c,0x11,0x29,0x74,0xf5,0xf4,0xd8,0x42,0x4c,
0xea,0x90,0xde,0xf7,0xa7,0xe,0xe,0xe,0xe,0xa3,0x7,0xb2,0x42,0xca,0xa5,0x12,
0x2d,0x80,0xb2,0xad,0x7c,0xaa,0x20,0x81,0xb9,0x64,0xc9,0x83,0xb8,0xf2,0xca,0xe7,
0xe1,0xf9,0x2f,0x78,0x1,0xbe,0xfb,0xdd,0xef,0x9a,0xa0,0x14,0xa2,0xfe,0xa,0xea,
0xd7,0x34,0x55,0x7c,0x6a,0xfc,0x5a,0x93,0xa9,0x8f,0x26,0xcb,0xf4,0xb,0xce,0xc3,
0x27,0x7f,0xfa,0x3,0xbc,0xf9,0xb3,0x9f,0xc6,0xa2,0x4b,0x9e,0x4e,0xd9,0x48,0x6b,
0x26,0xa4,0xa6,0x9d,0xd2,0x48,0xa5,0x23,0xb4,0x0,0x9e,0x22,0xe4,0x16,0x52,0x90,
0x6b,0x2c,0xe,0x12,0xe5,0x3a,0x2a,0x9d,0x3b,0x77,0x76,0x18,0x19,0xec,0xda,0xb9,
0x1b,0x5d,0x9d,0x3d,0xb4,0xca,0xa8,0xf0,0x57,0x9,0xd2,0xcc,0x89,0x61,0xa0,0x2d,
0x49,0x95,0x9e,0x12,0xf3,0x2c,0x86,0x91,0x83,0xec,0xb6,0xa4,0x97,0xa2,0xa9,0xd5,
0xc7,0x73,0xcd,0xd1,0x73,0xd4,0xe0,0xe0,0xe0,0x30,0x7a,0x21,0x4d,0x38,0x16,0xe0,
0x7d,0x7d,0xfd,0xf8,0xf6,0xb7,0xbf,0x83,0x2b,0xae,0x78,0x16,0xae,0xba,0xea,0xf9,
0x58,0xb6,0x6c,0x79,0xf5,0xae,0x7d,0x11,0x26,0x53,0xe8,0xe7,0x31,0x3b,0x71,0x22,
0x9e,0xf9,0x97,0x7f,0x81,0xf,0x7e,0xe7,0x9b,0xf8,0xab,0xbf,0xfb,0x18,0x6,0xd2,
0x14,0xba,0x89,0xd0,0x76,0x9b,0xb3,0xf9,0x8,0x27,0x5a,0x3c,0x8a,0x10,0x44,0x10,
0xb4,0x6a,0x8a,0x85,0x12,0x9,0xa0,0x1b,0xdb,0xb7,0xef,0xc4,0x76,0x23,0x84,0xe,
0x92,0xa2,0x4f,0x2b,0x29,0x26,0x82,0xfd,0xc3,0xf0,0x88,0x49,0x32,0x3e,0xa,0x11,
0x39,0x30,0xb1,0x25,0x52,0x51,0x91,0x5f,0x68,0x5c,0xb1,0x5d,0x38,0xf8,0x73,0x1c,
0x1c,0x1c,0x1c,0x8e,0x1b,0x24,0x8b,0x9f,0x28,0x68,0xd7,0x4a,0x79,0x49,0x2,0xca,
0xb0,0xa0,0xda,0xc1,0xac,0xb5,0x8c,0x1e,0x7d,0x6c,0x25,0xbe,0xfc,0x95,0xaf,0x62,
0xe1,0xe2,0x33,0xf1,0xe9,0xcf,0x7e,0xe,0xf,0x8b,0x14,0x24,0x30,0xf9,0x5d,0x8a,
0x37,0x45,0xdb,0x70,0xf2,0x5e,0xa,0xbb,0x30,0xe5,0xa1,0x6d,0xe6,0x29,0x78,0xc5,
0x9b,0xdf,0x8a,0xcf,0x7c,0xe3,0x5f,0x71,0xe9,0xd5,0x2f,0x46,0x7e,0xea,0x54,0x14,
0x93,0x69,0xd4,0x99,0xb5,0xa0,0x9f,0x26,0x50,0xa6,0x55,0x51,0x88,0x57,0xe0,0x78,
0xca,0xd0,0x7b,0xf7,0xd,0xf6,0x57,0x8d,0x4f,0xd4,0x99,0x1c,0x9f,0xef,0xbd,0x4b,
0x9d,0xe7,0xd2,0xec,0x8b,0xb4,0x4,0xf6,0xec,0xe9,0xc6,0x96,0x2d,0xdb,0xd1,0xd1,
0xd1,0x49,0xf2,0x2b,0xd8,0xf0,0x5a,0xad,0xef,0x94,0x4e,0x67,0x78,0x27,0xd3,0x78,
0x50,0xab,0xe6,0xe0,0xd7,0x93,0xcc,0x83,0xfe,0x62,0xb1,0x6a,0x1c,0x68,0xd6,0x3a,
0x91,0xe1,0x79,0x89,0x16,0xc3,0x9e,0x52,0x91,0xb7,0xf0,0x4f,0xdd,0xeb,0x76,0x83,
0x83,0x83,0x83,0xc3,0xf1,0x84,0x44,0xd2,0x93,0x7,0x9b,0xe7,0x4c,0x2d,0x5e,0x81,
0x72,0x11,0x65,0xa,0xce,0x4a,0x22,0xc5,0xf3,0x24,0x96,0xad,0x58,0x89,0xab,0x5e,
0xf8,0x62,0x5c,0x76,0xc5,0x73,0xf0,0x85,0x2f,0xff,0x3,0xfa,0xb,0x9a,0xbb,0x40,
0x89,0x5e,0x49,0x51,0x88,0x6a,0xf4,0x90,0x87,0xba,0xda,0x1a,0x5b,0x5e,0xbb,0x40,
0xb9,0x37,0xf3,0xec,0xb3,0xf1,0xb1,0xaf,0x7f,0x3,0x6f,0xff,0xf2,0xd7,0x70,0xd6,
0xb,0x5e,0x82,0x3e,0xaf,0x86,0xb2,0x32,0x87,0x5c,0x90,0x81,0x47,0x73,0xa1,0x18,
0xaa,0x33,0x39,0x8d,0x24,0x8f,0xe9,0x20,0x89,0x9c,0x86,0xb0,0x1e,0x11,0x28,0x5b,
0xf,0xe8,0x50,0x56,0x88,0x20,0x62,0x90,0x6,0xef,0x6b,0xde,0x87,0xe7,0xa1,0x50,
0x2c,0xd9,0xa8,0xa2,0xcd,0x5b,0xb7,0x62,0xc7,0xae,0xe,0xec,0x26,0x31,0x14,0x4b,
0x54,0xe4,0x53,0x5a,0xf2,0x5c,0x53,0xf,0xa2,0xd9,0xdd,0xf2,0x0,0xd9,0xfe,0xc,
0x52,0xf0,0x45,0xe,0x16,0xcd,0x58,0x96,0xf,0xd,0x7,0x42,0xef,0x2c,0x86,0x9,
0xf4,0xf3,0x68,0xcb,0x78,0x6b,0x7d,0xa7,0xf8,0xb,0xfd,0x15,0xb4,0xbe,0x86,0x83,
0x83,0x83,0xc3,0x68,0x40,0xd5,0x8f,0x2e,0xf7,0x4a,0x67,0x67,0x17,0x7e,0xf0,0x83,
0x1f,0xe2,0xea,0x17,0x5d,0x8d,0x4b,0x2e,0xb9,0x4,0x77,0xdd,0x75,0x97,0x75,0xae,
0xaa,0xc3,0x38,0x47,0x41,0x9b,0xa1,0x55,0x61,0xd6,0x82,0x96,0xbb,0xe0,0x4f,0x77,
0xd7,0xd4,0xe1,0x82,0x97,0xbd,0x1c,0xef,0xfb,0xea,0x3f,0xe0,0x6f,0x3f,0xf5,0x69,
0x24,0xdb,0xc7,0x23,0x91,0xcd,0xd9,0x48,0x9f,0xe3,0x3,0x49,0xee,0xbd,0x41,0x6e,
0x20,0x75,0x24,0xab,0xdf,0x40,0x5b,0x89,0xaa,0xef,0x40,0x43,0x4d,0x37,0x6f,0xde,
0x8a,0xdd,0xbb,0x3b,0xad,0x73,0x59,0x93,0xf4,0x14,0x8e,0x15,0xe4,0x82,0x53,0xbf,
0x8c,0xd1,0x7,0xcf,0x8d,0x1c,0x94,0x61,0x8a,0xde,0x50,0x7f,0x93,0x83,0x83,0x83,
0xc3,0x48,0x83,0xdc,0x2a,0xa,0xda,0x8f,0xd9,0xf7,0x3,0x74,0x77,0xf7,0xe0,0xc7,
0x3f,0xfe,0x9,0xce,0x3d,0xe7,0x3c,0x7c,0xe0,0xfd,0x1f,0x34,0x52,0x10,0x21,0xd8,
0x7e,0xcb,0x3c,0xa,0x5a,0x50,0x54,0x96,0x45,0x39,0x9d,0x45,0x7f,0x3a,0x83,0x67,
0xff,0xbf,0x57,0xe3,0x2b,0x3f,0xfa,0x1f,0x5c,0xf5,0x86,0xbf,0x46,0xeb,0xac,0x39,
0xe8,0xa1,0x20,0xc,0x73,0x39,0x5b,0x8d,0x54,0x2,0xf2,0x58,0x75,0x34,0x4b,0x9,
0x37,0xf2,0xb1,0xe7,0xab,0x23,0x19,0x96,0x6,0xb9,0x8b,0xe4,0xe,0xdb,0xb5,0x6b,
0x37,0xb6,0x6e,0xdd,0x8e,0x3d,0x7b,0xba,0x6c,0x64,0x91,0x48,0xa2,0xa2,0x31,0xb1,
0x24,0xc0,0x68,0xfa,0x5c,0x34,0xda,0xea,0x68,0x41,0x71,0xd9,0xeb,0xbe,0x8a,0xe2,
0xd6,0xdb,0xdb,0x6b,0xee,0xb9,0x50,0x5d,0xc,0xf6,0xd,0x33,0x51,0x56,0x83,0x48,
0xc2,0xc1,0xc1,0xc1,0x61,0xa4,0x22,0x56,0x60,0x1f,0x7b,0xf4,0x31,0xbc,0xeb,0x5d,
0xef,0xa1,0x95,0xf0,0x34,0xbc,0x9f,0xa4,0xd0,0xdb,0xdb,0x4f,0xe1,0x66,0x5f,0x19,
0xcc,0x1b,0x52,0xd,0xfd,0x99,0xc,0x26,0x2e,0x5c,0x84,0x37,0x5c,0x73,0xd,0xfe,
0xee,0x3f,0xff,0x13,0x17,0xbd,0xf6,0xb5,0x28,0x68,0x48,0xa7,0xc9,0x69,0x8a,0x5c,
0xca,0x47,0xd,0x5d,0x8d,0xfb,0x20,0x8e,0x15,0xec,0x5d,0x24,0x2d,0xf9,0x80,0xe2,
0x8e,0xe4,0xdd,0x1d,0x7b,0xb0,0x75,0xcb,0x36,0x6c,0xdc,0xb0,0x9,0x7d,0x7d,0x3,
0xf6,0xdd,0x3e,0x81,0x94,0x70,0x60,0x38,0x3a,0x50,0x5c,0x2c,0x3e,0x43,0xce,0xcb,
0x7e,0xd9,0xe2,0x69,0xc3,0x74,0xf5,0x85,0xcc,0xb2,0xde,0xfe,0x1,0x9b,0x1d,0xa7,
0xf8,0x1c,0xf1,0x3e,0xa5,0xe,0xe,0xe,0xe,0x4f,0x5,0x94,0x3f,0x92,0x3e,0xa,
0xd2,0x60,0xfd,0x40,0xfd,0x5,0xfa,0x94,0x34,0x6d,0xfa,0x8e,0x3b,0xef,0xb2,0x19,
0xcc,0x97,0x5c,0xfa,0x34,0xfc,0xe8,0x47,0xff,0x85,0xad,0xdb,0xb6,0xdb,0xd2,0xf,
0xda,0xda,0xd2,0x4f,0x68,0x6e,0x82,0x1e,0xa0,0x15,0x4d,0x29,0xdc,0x6a,0xeb,0x30,
0xe7,0xac,0xb3,0x6c,0x69,0x8b,0xf,0x7e,0xe9,0x4b,0x98,0x73,0xc1,0x85,0x48,0xb7,
0xb6,0xa1,0x3f,0xe9,0x59,0xe7,0xad,0x4,0xa0,0xdc,0xfd,0xb6,0x77,0x2,0x5f,0xa1,
0x19,0xcc,0x47,0x82,0x98,0x8c,0x86,0x6a,0xe4,0x8a,0xb7,0x48,0x4b,0x6e,0x21,0xb9,
0x8a,0xe4,0x22,0xda,0xba,0x75,0x7,0x76,0x75,0x74,0xf2,0x73,0xc9,0xfa,0xe,0x2a,
0xb4,0x6,0xd2,0xe9,0x1c,0x85,0xb3,0xc7,0x74,0x53,0x6,0xf,0x9,0x47,0x4,0x45,
0x61,0x30,0xf0,0xbf,0xf8,0xa8,0x2e,0x67,0xdb,0x8b,0xa6,0x82,0x6c,0xc6,0xc3,0xb8,
0x71,0xad,0xa8,0x6f,0xa8,0xb3,0x78,0x97,0x98,0x2f,0xb6,0xff,0x84,0xc8,0x92,0x77,
0xb2,0x14,0x12,0x18,0x28,0xf9,0x28,0x33,0xb3,0xf4,0x85,0x98,0xf4,0xe8,0xf1,0x93,
0x83,0x83,0x83,0xc3,0xa1,0x41,0xb3,0x79,0x63,0xa5,0x59,0xab,0x43,0x97,0xa8,0xe1,
0x6b,0xe5,0x86,0x1f,0xfd,0xcf,0x4f,0x70,0xee,0x5,0x17,0xe1,0x35,0x7f,0xf1,0x6,
0xfc,0xee,0xf,0x37,0xa3,0xa2,0xcd,0x7d,0x32,0x29,0x94,0x42,0x1f,0x69,0x9e,0x57,
0x7c,0x12,0x3,0x8d,0xa,0xd,0xe9,0xf,0x32,0x79,0x9c,0x75,0xc5,0x95,0x78,0xd7,
0xdf,0x7f,0x19,0xaf,0xfe,0xc8,0x47,0x30,0x61,0xd1,0x42,0x74,0x53,0xb6,0x69,0x5b,
0xce,0x4,0x2d,0x8f,0x7c,0x85,0x6f,0xd1,0x7e,0x10,0x64,0x3,0x2d,0x34,0x67,0xc2,
0xd0,0x14,0xe3,0x23,0x93,0x7a,0xb1,0x3b,0x4a,0x47,0xcd,0x1b,0xf0,0x7d,0xdf,0x48,
0x60,0xeb,0xb6,0x5d,0xd8,0xbe,0x63,0x37,0x3a,0x76,0x77,0xa3,0xaf,0xbf,0x84,0xd0,
0x5c,0x43,0x5a,0x96,0x43,0xfd,0xc,0x69,0x24,0x18,0x6c,0x5d,0x72,0xfd,0x7c,0xff,
0xb0,0xaf,0x84,0xaf,0x86,0x43,0xc7,0xd0,0xc7,0x68,0xee,0x87,0xfa,0xaa,0x53,0xc9,
0x10,0xe3,0xda,0x9a,0x30,0x61,0x42,0x2b,0x1a,0x1a,0x6a,0xe0,0x51,0xe0,0x87,0xbc,
0x26,0xe7,0x55,0x81,0xe4,0xa1,0x9e,0xe7,0x94,0xc8,0x55,0xbf,0x4b,0xd0,0x9c,0x28,
0x14,0xa,0x83,0x89,0x73,0x70,0x70,0x70,0x38,0x31,0xa0,0xc,0x92,0xf0,0x64,0x78,
0x7c,0xd5,0x6a,0x7c,0xf9,0xcb,0x5f,0xc1,0xc5,0x17,0x5f,0x82,0xb7,0xbd,0xed,0x6d,
0xd8,0xbe,0x7d,0xfb,0xa0,0x9c,0x4a,0x50,0xc0,0x27,0x51,0xe6,0xdd,0xd4,0x74,0x4d,
0xd8,0x66,0x31,0x79,0xf2,0x1c,0x3c,0xfb,0x8d,0x7f,0x83,0xbf,0xf9,0xcc,0x67,0xf1,
0xb4,0x97,0xbf,0x1c,0x7d,0xd9,0x2c,0x7a,0x24,0x78,0x9,0x69,0xf2,0x47,0xb7,0x4f,
0x55,0xef,0xdc,0x37,0x68,0x25,0x57,0xb9,0x86,0x3a,0x3b,0xbb,0xb1,0x69,0xd3,0x16,
0xec,0xd8,0xb1,0xb,0xfd,0xfd,0x3,0xf6,0x5e,0x5,0x8b,0xf7,0xf1,0x94,0xb1,0x43,
0x46,0x43,0x69,0x4b,0xd4,0xda,0xba,0x3c,0x9a,0x9a,0x1b,0xd0,0xde,0xde,0x8e,0x4c,
0x26,0x63,0x71,0x89,0xdd,0x4a,0x31,0xd4,0x89,0xaf,0x2e,0x69,0xe5,0x97,0x52,0xa5,
0x9c,0xb3,0x1b,0xf7,0x9a,0x42,0xe,0xe,0xe,0xe,0xc7,0x7,0x92,0x3d,0xf9,0x7c,
0xde,0x4,0x68,0x61,0xa0,0x80,0xc7,0x1f,0x5f,0x8d,0xf7,0xbf,0xff,0x3,0xb8,0xe8,
0xa2,0x8b,0xf1,0x4f,0xff,0xf8,0xcf,0x58,0xbb,0x66,0xed,0x60,0xe7,0xb2,0x8e,0x92,
0x53,0x9a,0x77,0x90,0x2f,0x53,0x43,0xf7,0xf2,0x48,0xb7,0x4f,0xc0,0xb,0xde,0xf9,
0x4e,0xbc,0xea,0xb3,0x9f,0xc2,0x2c,0xfe,0x6,0x2d,0x6d,0xe8,0x4b,0x7a,0x28,0x25,
0xd2,0xa8,0xa4,0xa2,0x99,0xbf,0xc3,0x9,0xc2,0xc3,0x81,0xde,0xa9,0x20,0x77,0x8b,
0x10,0x4,0x22,0x9b,0x8a,0xb9,0x8b,0xba,0xbb,0x7b,0x6d,0x39,0x6f,0x75,0x28,0xeb,
0x5c,0xee,0xa3,0xe8,0x36,0x75,0x8c,0x47,0x9d,0xe3,0x7b,0xb7,0x27,0x3d,0xf6,0xd0,
0xfb,0x14,0x4f,0x26,0x99,0x71,0xe,0x90,0xcb,0x65,0x30,0x69,0xd2,0x4,0x34,0x37,
0x37,0x32,0x9f,0xa3,0x65,0x3f,0x94,0x1f,0x82,0x8e,0x71,0xde,0xa,0xea,0x7b,0x56,
0xd7,0xb7,0xbe,0x1d,0xbc,0xaa,0xad,0xef,0x86,0xde,0xe4,0xe0,0xe0,0xe0,0x70,0xbc,
0x20,0x37,0xcc,0x1f,0xff,0xf8,0x47,0xbc,0xf0,0x85,0x2f,0xc2,0x15,0x57,0x3c,0x1b,
0xdf,0xfe,0xf6,0xbf,0x51,0x1e,0xa9,0x6f,0x20,0x52,0x5c,0x63,0x88,0x40,0x24,0xf8,
0xfc,0x74,0x16,0xd3,0x2f,0x7d,0x6,0x5e,0xf5,0xc1,0xf,0xe1,0xaf,0x3e,0xf2,0x51,
0x4c,0x3a,0xeb,0x4c,0xec,0x4c,0x24,0x6d,0xf7,0x34,0x2d,0x74,0xa7,0xbe,0x87,0x4c,
0x10,0x22,0xa7,0xb5,0xe2,0x8e,0x10,0x22,0x85,0xa1,0x71,0xe8,0xea,0xea,0xc2,0x9e,
0xdd,0x9d,0xb6,0x4c,0xc5,0xce,0x1d,0x1d,0x66,0x29,0xd8,0x12,0x16,0xc3,0x86,0xea,
0x8f,0x8e,0x23,0xca,0xe5,0xb2,0x59,0x6,0x6d,0xad,0xad,0x98,0x30,0x61,0x3c,0x5a,
0x5a,0x9a,0x79,0x55,0x6c,0xa5,0xf0,0xc4,0x11,0xd2,0x8a,0xb3,0xf1,0x1d,0xc6,0x6,
0xea,0xf8,0xe8,0x2f,0x97,0x44,0xcb,0x48,0xf2,0xf7,0x47,0xda,0x31,0x73,0xb2,0x40,
0x65,0x1f,0x23,0x3e,0x8d,0xeb,0x83,0x65,0xa1,0x2e,0xb2,0x52,0xd9,0x77,0xf1,0x45,
0x17,0x5c,0x38,0x9,0x43,0xb4,0x6,0x50,0xf4,0x31,0xbe,0x18,0x8b,0x2b,0xcd,0x70,
0x96,0xc6,0xfa,0xf2,0x97,0xbf,0x1c,0xf,0x3c,0xf8,0x10,0xba,0xba,0xbb,0x91,0x4d,
0x67,0x34,0x70,0x13,0xd2,0xb7,0x13,0x14,0xf2,0x5a,0x29,0xd4,0xf,0x13,0x68,0x98,
0x30,0x5,0x67,0x3d,0xe3,0xd9,0x78,0xeb,0xa7,0x3e,0x83,0x2b,0xde,0xf4,0x26,0x64,
0xa7,0x4e,0x87,0x9f,0xab,0x85,0x5f,0xa,0x91,0x26,0xf,0x48,0x76,0x69,0xc1,0xbc,
0x28,0xd0,0xc2,0xb0,0x17,0xe,0xbe,0x69,0x48,0x88,0x62,0x22,0xc4,0x56,0x81,0xc5,
0x8a,0xff,0x59,0xff,0x37,0x5b,0xad,0xe4,0xa2,0x16,0xaa,0x2b,0x14,0xcb,0xe8,0xe9,
0xe9,0x27,0x19,0xec,0xc6,0x96,0xad,0xdb,0xd1,0xdb,0x37,0xc0,0xeb,0x51,0x47,0xb9,
0xe2,0x1e,0x5b,0x5,0xba,0x7f,0xff,0x10,0x9,0x81,0xa3,0xc,0x8b,0x28,0xff,0x49,
0x90,0x93,0x28,0xa3,0xf8,0x7,0xb6,0xb4,0x79,0x3e,0x9f,0xc5,0xf8,0xf6,0x36,0xb4,
0x33,0x78,0x5e,0x64,0xb9,0x68,0x8f,0xee,0x27,0x83,0x52,0x2f,0xd9,0xa5,0x21,0xb5,
0x51,0x3e,0x54,0xe7,0x39,0xe8,0x43,0x81,0x19,0xa6,0x63,0xd4,0xdb,0xaf,0xcb,0xc7,
0x20,0x51,0x63,0xc,0x36,0x4,0xb9,0x7a,0xae,0x93,0x41,0x52,0x55,0xd6,0x59,0x50,
0x5,0x51,0x23,0x20,0x41,0x78,0x35,0x8,0x98,0xb7,0x2e,0xb8,0x70,0x32,0x86,0x4a,
0x28,0x21,0xc5,0x23,0xdb,0x88,0x4,0xaa,0xc6,0xf7,0xf3,0x63,0xa4,0x60,0x31,0x68,
0xdf,0x4,0x6b,0x2f,0xb4,0xc,0xe4,0xd6,0x10,0xe4,0xf5,0xf6,0x32,0x79,0x5a,0x3,
0x59,0x24,0xf2,0x4d,0x78,0xc5,0x9b,0xdf,0x8e,0x77,0x7f,0xf1,0x1f,0x70,0xc1,0xcb,
0x5e,0x83,0xd4,0xc4,0x19,0xf0,0xcb,0x72,0x89,0x64,0x78,0x17,0x85,0xa0,0x5c,0x25,
0x6c,0x69,0x91,0xef,0x23,0x3a,0xd3,0xde,0xce,0xea,0x84,0xb6,0x86,0xb9,0x7f,0x18,
0x2,0x9,0x57,0x41,0xa3,0xa3,0xd4,0xff,0x9a,0xe0,0x6f,0xb4,0xf1,0xd9,0x96,0xad,
0x5b,0xb1,0x6d,0xfb,0xe,0xec,0xde,0xdd,0x8d,0x6e,0x92,0x43,0xa9,0x2c,0x57,0x8d,
0xfa,0x30,0x3c,0x4b,0x83,0xfe,0x12,0x49,0xb5,0x71,0x42,0x96,0x45,0x35,0x2d,0x7,
0x84,0xa3,0xc,0x3d,0x52,0xf3,0x10,0x2c,0x33,0xf9,0x4f,0x29,0x6f,0x6b,0x55,0x7,
0x73,0x1b,0x9a,0x1a,0x6b,0x69,0x35,0xe8,0x8a,0xcf,0xbc,0x89,0x5e,0x3e,0xd4,0xea,
0x39,0x18,0xac,0x1c,0xf8,0x2b,0x11,0x9a,0xe4,0x15,0x99,0x80,0xd9,0x44,0x94,0x4a,
0x1,0xae,0x5b,0xfe,0x20,0x36,0x15,0x4a,0xb4,0x1c,0x98,0x99,0x7a,0xe7,0x93,0x3f,
0xef,0xa4,0x47,0x25,0xc1,0x8a,0xcc,0xfc,0x2a,0xab,0x82,0x4,0x25,0x6c,0xb8,0xfd,
0x6e,0x7c,0xff,0x4b,0x9f,0xb3,0x7a,0x22,0xa8,0x50,0x5e,0xf0,0x82,0x17,0xe0,0x87,
0xdf,0xff,0x41,0x74,0x81,0xe8,0xef,0xdf,0xbb,0xdb,0x92,0x83,0xc3,0xc9,0x86,0x20,
0xc,0xb0,0x73,0xc7,0xe,0xbc,0xe8,0x45,0x2f,0xc2,0xfa,0xd,0x9b,0xa3,0x8b,0x6c,
0x2f,0xb1,0x6e,0x9b,0xf3,0x2b,0xe6,0x1a,0xd2,0x72,0x3e,0xe5,0x4c,0x16,0x73,0x16,
0x2d,0xc2,0x19,0x17,0x5f,0x8e,0x89,0x33,0x66,0xc2,0xa3,0x56,0x6c,0xdd,0xa5,0xda,
0x3f,0x81,0x32,0x2a,0x65,0x4a,0xec,0xfe,0xd0,0x35,0x9,0x71,0x1e,0x12,0x21,0x5a,
0x5b,0x5b,0x90,0xa5,0xb0,0x3c,0x0,0x15,0xd9,0x25,0x51,0x43,0x95,0xab,0xaa,0xbf,
0x5f,0xc2,0xdf,0x87,0xcf,0x73,0x9f,0x56,0x81,0x8,0x23,0x12,0xaa,0x6c,0xdb,0x43,
0x14,0xef,0x43,0x11,0xb4,0xc7,0x1a,0x61,0x50,0xb6,0x2e,0x0,0xed,0x9d,0xad,0x10,
0x59,0x2e,0xbe,0xc5,0x4d,0xfd,0xd,0x31,0xd9,0x1d,0xe,0xfc,0x14,0x2d,0x2d,0x6a,
0xbb,0xa9,0xfe,0x2,0x5e,0x75,0xf9,0xd3,0xd1,0x2a,0x9a,0x10,0x39,0x94,0x49,0x42,
0xbf,0x78,0xf0,0x5e,0x23,0x7,0x4f,0x86,0x9c,0x23,0x87,0x43,0x42,0x4c,0xe,0x25,
0xe5,0x55,0x58,0xc6,0xc6,0x3b,0xef,0xc1,0xf7,0xbe,0xf8,0xd9,0x6a,0x95,0x8b,0x60,
0x23,0x15,0x58,0xd9,0x6,0xfa,0x7,0xac,0x33,0xc8,0xc1,0xe1,0x64,0x46,0x24,0x5c,
0x2b,0xb6,0x40,0x9c,0x34,0x7e,0x89,0x31,0xd,0x29,0xd5,0xb0,0xd5,0x84,0x3a,0x6f,
0x13,0xbc,0x9e,0xaf,0x45,0xfb,0xcc,0x53,0x70,0xd5,0xab,0x5e,0x85,0xfa,0xf6,0x76,
0xf4,0x86,0x29,0x84,0x49,0xca,0x25,0x8d,0xbc,0x91,0xe0,0x63,0xbb,0x93,0xf2,0xff,
0x44,0xe4,0x60,0xf6,0x3a,0x5f,0xd5,0xd2,0xd2,0x44,0x72,0x20,0x11,0xe8,0x45,0xd6,
0x30,0x29,0xec,0x25,0xed,0x2b,0x69,0x1b,0x99,0xa3,0xa0,0xfe,0x56,0xe1,0x98,0xb9,
0x81,0x8e,0x0,0x31,0x49,0xe9,0x28,0x42,0x50,0xc8,0x65,0x53,0xa8,0xaf,0xaf,0xb7,
0x7e,0x9a,0xb8,0x83,0x5c,0x69,0x3e,0x12,0xc4,0xe4,0x90,0x2e,0x14,0xf1,0xc2,0xf3,
0xce,0xc3,0xe4,0x9a,0x9c,0x23,0x87,0x23,0x41,0x4c,0xe,0xbe,0xcc,0xb7,0x8a,0x8f,
0x75,0x7f,0xbe,0x93,0x96,0xc3,0xe7,0x55,0xfd,0xec,0xfb,0xb8,0x50,0x1d,0x1c,0x4e,
0x76,0xc,0xf5,0xe4,0xc4,0xda,0x77,0x32,0xa0,0x8,0xd7,0x29,0x49,0x21,0x4c,0xc9,
0xf5,0x9a,0xc2,0x5,0x2f,0x7a,0x35,0x16,0x9c,0x75,0x16,0x6a,0x1a,0x1b,0x50,0xa8,
0x4,0x8,0x79,0xcd,0xa7,0x7c,0x4a,0x24,0x3c,0x9b,0xa8,0x26,0x44,0xfb,0x32,0xdb,
0x49,0x74,0xdc,0x7,0x11,0x39,0x68,0x6b,0xcf,0x14,0x9f,0xd9,0xd4,0xd4,0x88,0x5c,
0x26,0x1a,0xce,0xaa,0x61,0xb0,0x7d,0x7d,0x7d,0x55,0xcb,0x20,0xba,0xa6,0x73,0x4f,
0x2e,0x2d,0xc2,0xc8,0xa1,0x1a,0xb7,0x7d,0x71,0xe2,0xda,0x70,0x2c,0x3f,0xb2,0xd9,
0xac,0x11,0x82,0xac,0x84,0xb4,0x17,0xf7,0x33,0xc4,0xd6,0xcd,0x91,0xe3,0xe0,0xe4,
0x40,0xd2,0xf9,0xf9,0x92,0x7b,0xb0,0xa5,0x54,0x26,0x1b,0xef,0x25,0x87,0xa3,0xf3,
0xda,0xb1,0xb,0x69,0x27,0xb6,0x25,0xa0,0xdc,0x4a,0x34,0x97,0x3b,0xd7,0x6f,0xc0,
0x3f,0x7e,0xf0,0x3d,0x48,0xb2,0x12,0xa6,0x68,0xa2,0x86,0x64,0xf9,0x84,0x97,0x61,
0x5,0x2c,0xbb,0xcc,0x74,0x38,0xa9,0x11,0xb,0x76,0x9,0xdf,0xd8,0x7a,0xb0,0x9d,
0xd6,0x78,0x3d,0xa0,0x55,0x50,0x4c,0xa7,0xf0,0x37,0xef,0x7b,0xf,0x32,0x33,0xe6,
0xdb,0x6a,0xa9,0xf2,0xe5,0xeb,0x36,0xad,0x32,0x4a,0x5a,0xa8,0xf2,0x80,0x7e,0xa7,
0x73,0xb6,0x37,0x5e,0x90,0x8c,0x3a,0x10,0xd1,0xb3,0x65,0x1d,0x98,0x96,0x9d,0xcf,
0x22,0x24,0xbb,0x68,0x3d,0xa6,0x50,0xd7,0x12,0xd1,0x50,0xd8,0x88,0x44,0x14,0x1d,
0x29,0x70,0x76,0x1a,0xe1,0x0,0x61,0x3b,0xf4,0xcb,0x63,0xb,0x29,0x95,0xd6,0x8f,
0xa1,0x38,0x85,0xcc,0x1f,0x12,0x63,0x8e,0xa4,0xa0,0x61,0xbe,0x99,0x6c,0x66,0x48,
0x54,0xf6,0x8e,0xc0,0x3a,0x5a,0xe4,0x10,0x6a,0x2e,0x4,0xff,0xd2,0xcc,0xa7,0xe7,
0x9e,0x79,0x26,0x66,0xd4,0xd5,0xee,0x25,0x87,0x9f,0x92,0x1c,0xb6,0x52,0xa0,0xa5,
0x68,0xc2,0xc5,0x38,0x3a,0xaf,0x1d,0xfb,0x90,0x69,0xa7,0x20,0x76,0xff,0xd3,0xd,
0x3f,0xc1,0x6f,0xff,0xe3,0xfb,0xa8,0x61,0x26,0x7,0x64,0xf9,0x42,0x81,0x85,0xcc,
0x8a,0xac,0x49,0x28,0xfb,0x80,0x1f,0x5d,0xfe,0x3a,0x9c,0x2c,0x88,0x5,0xb9,0x4,
0xb3,0x82,0xdc,0xad,0xb9,0xba,0x3c,0xc2,0x52,0xc5,0xe6,0x23,0x5c,0xfa,0xa2,0xab,
0x71,0xee,0x73,0x9f,0x83,0x42,0x28,0x8d,0x7e,0xac,0xb7,0x8c,0x3,0xd3,0xa7,0xd1,
0x46,0xa8,0x94,0xaa,0x64,0x55,0x41,0x6b,0x6b,0xab,0xf5,0x27,0x28,0x9f,0x7c,0x5a,
0x37,0xf1,0x4e,0x6d,0xc7,0xe,0x24,0x6a,0x3e,0x3f,0xcd,0x77,0x5d,0x31,0xff,0x74,
0xcc,0x6e,0x6c,0x74,0xe4,0x70,0x34,0x10,0x57,0x78,0x85,0xa4,0x57,0x40,0xd7,0xea,
0xf5,0x78,0xf8,0xf6,0x3b,0xd0,0xb9,0xa7,0x13,0xf7,0xdf,0x72,0x3b,0x50,0x2a,0xc,
0x51,0x9d,0xaa,0xe0,0xbd,0xd2,0x14,0x1c,0x1c,0x4e,0x6,0xd8,0xe,0x6a,0x55,0x48,
0xc8,0xa9,0xe3,0x74,0xe6,0xf9,0x17,0xa3,0x36,0xdf,0x80,0x79,0x8b,0x16,0x63,0xfc,
0xa9,0x5a,0x1d,0x95,0xed,0x87,0xf7,0x49,0x83,0x3d,0xd9,0x90,0x60,0xda,0xeb,0xea,
0x32,0x54,0x30,0x73,0x83,0x44,0x10,0xf5,0x8d,0xc4,0x96,0x56,0x94,0x6f,0xc7,0xe,
0x7,0x21,0x87,0xa2,0x1f,0xe2,0xe7,0xf,0xdd,0x87,0xad,0x25,0x47,0xe,0x47,0xa,
0x3f,0x55,0x42,0x96,0x56,0x9f,0xba,0xda,0xea,0x68,0x16,0xbe,0xf9,0x79,0x57,0xa3,
0x96,0x44,0x20,0xb3,0x4d,0x50,0xa3,0x98,0x3e,0x7d,0x3a,0x9a,0x98,0xf9,0x81,0xbf,
0x77,0xbf,0x56,0x97,0xdb,0xe,0x63,0xf,0x7b,0x95,0x9f,0xa5,0xcb,0x1e,0x89,0x94,
0xa7,0x64,0xd2,0x34,0x61,0xf9,0xcf,0xdf,0xfe,0x8f,0xff,0x86,0x62,0xa9,0xc,0xea,
0xcb,0x28,0xb1,0x5d,0x94,0x53,0x49,0xa4,0x43,0x2d,0x8,0x37,0x36,0xa1,0xf4,0xdb,
0xec,0x65,0x59,0x9,0xd5,0xbc,0x31,0xd7,0x57,0x2e,0x87,0xfa,0xba,0x5a,0x78,0xde,
0x30,0xca,0xe2,0xb0,0x9d,0xee,0xc7,0x2,0x11,0x39,0x78,0xe5,0x32,0xc9,0x61,0x3e,
0xc9,0xa1,0xc1,0x91,0xc3,0xd1,0x86,0x46,0x9,0x6b,0x7c,0xb6,0x86,0xb7,0xd6,0xd2,
0x42,0x7e,0xfb,0x95,0xcf,0x47,0x23,0x4d,0xc3,0x4a,0x95,0x1c,0x64,0x2e,0xfe,0xec,
0xa7,0x3f,0xc3,0x9c,0xb9,0xa7,0x22,0xed,0x45,0x39,0xac,0x4a,0xe3,0xe0,0x30,0x16,
0x11,0x6b,0xbb,0xa7,0xce,0x39,0x1d,0xbb,0x77,0xef,0xb6,0x99,0xbb,0x31,0x39,0xbc,
0xe9,0x5f,0xbe,0x87,0x42,0xb9,0x44,0x72,0x90,0x60,0x4a,0x49,0x49,0xb6,0xa5,0xb3,
0xc7,0x32,0x39,0x44,0x47,0x1f,0x99,0x6c,0x1a,0x2d,0x2d,0x2d,0xd5,0x11,0x48,0xda,
0x7b,0x82,0xd7,0xc3,0xa1,0xca,0x62,0x15,0x36,0xe4,0xf6,0x78,0xe0,0x20,0xe4,0x50,
0xa,0x2a,0xd6,0x21,0xbd,0xb5,0x1c,0x20,0xa5,0xc8,0x30,0xd,0x2a,0xa8,0xb1,0x5a,
0x48,0xc7,0x12,0xcc,0x50,0xfe,0x9f,0xa4,0x26,0x24,0x72,0xa8,0x90,0x1c,0xae,0x42,
0x13,0xc9,0x41,0x94,0xa1,0x8c,0xad,0xa3,0x86,0x70,0xfd,0xf5,0xd7,0x63,0xc1,0x82,
0xd3,0x68,0x42,0xef,0x25,0x85,0x93,0xd1,0x94,0x76,0x18,0x7b,0x88,0x6a,0x74,0x5c,
0x97,0xf7,0xd6,0xef,0x53,0x66,0xcd,0x43,0x77,0x4f,0x8f,0x9d,0x6b,0x2e,0x41,0x7d,
0x43,0x3d,0xfe,0x9a,0xe4,0x50,0x24,0x39,0xf8,0x15,0xd,0x3b,0xad,0x76,0x10,0xb3,
0xfd,0x8c,0xda,0x96,0x30,0x98,0xdc,0xf8,0x44,0x42,0x54,0x69,0xe3,0x91,0xe9,0x12,
0x11,0xe4,0x6b,0x6a,0x6c,0xad,0xa3,0x4c,0x26,0xcd,0x4b,0x91,0xc2,0x68,0xad,0x5f,
0xfd,0x92,0x43,0xf2,0x6b,0x2f,0x8e,0xaf,0xe5,0x90,0x16,0x39,0x2c,0x20,0x39,0x34,
0x34,0x44,0x6f,0x36,0xc1,0xa4,0xc8,0xdb,0xf9,0xde,0xe0,0x70,0xf8,0x50,0x6,0xab,
0x90,0x3d,0x16,0xbc,0x17,0xb2,0xc0,0xab,0xda,0x42,0x94,0xa7,0x71,0x5,0x8,0x4c,
0x53,0x48,0xf1,0xde,0x38,0x68,0x34,0xac,0xb,0x2e,0x8c,0x8d,0xa0,0xfa,0xac,0x40,
0xad,0xb8,0x1a,0x34,0xfa,0x6,0x6a,0xf,0xbc,0xae,0x16,0x60,0x81,0xf7,0xa,0xea,
0x8e,0x8b,0xf6,0x54,0x18,0xc5,0xc4,0x40,0xc,0xb6,0x6f,0xfd,0xa3,0x5,0xa4,0x11,
0x8c,0x49,0xcd,0xc9,0x80,0x8f,0xc6,0xc6,0x5a,0x8c,0x1f,0xdf,0x8a,0xfa,0xba,0x1c,
0x72,0xb4,0x1a,0x74,0xdf,0xde,0x7c,0xd2,0x6f,0x95,0x72,0x49,0xe0,0xfd,0xc3,0x71,
0x6,0xe3,0x63,0xd2,0x4a,0xf1,0x8a,0xae,0x38,0x38,0x38,0x38,0x38,0x1c,0x11,0xe4,
0x9,0xb0,0x40,0x6b,0x81,0x92,0xb5,0xae,0xbe,0x16,0xad,0x6d,0x2d,0x68,0x1f,0x3f,
0x8e,0x16,0x83,0x26,0xc0,0x46,0xdf,0x1f,0xca,0x5a,0x47,0x23,0x1,0x83,0xe4,0x10,
0x75,0x94,0x30,0xf2,0xe,0xe,0xe,0xe,0xe,0x87,0xc,0x59,0x43,0x51,0xdf,0x4a,
0x68,0x13,0xef,0xea,0x49,0xa,0x93,0x27,0x4f,0xa4,0xb5,0x50,0x8f,0x4c,0x3a,0xcd,
0x6b,0xea,0x57,0xe0,0x3d,0x94,0xb6,0xf1,0x7a,0x47,0x23,0x15,0xea,0x17,0xf1,0xbc,
0x94,0x59,0x33,0xce,0x72,0x70,0x70,0x70,0x70,0x78,0x8a,0x50,0x3f,0x82,0x4,0xaa,
0x94,0xeb,0x36,0x59,0x9,0xed,0x6d,0xa8,0xa1,0x95,0x20,0xb7,0xb1,0x2c,0x5,0xfd,
0x99,0xc5,0x70,0x40,0x18,0xb9,0xd0,0x2c,0x6c,0xd9,0x9,0x11,0x39,0x84,0x21,0xd2,
0x29,0x9b,0x87,0x18,0x59,0x45,0x76,0xd1,0xc1,0xc1,0xc1,0xc1,0xc1,0x24,0x65,0x55,
0xa6,0xab,0xef,0xc4,0x7a,0x15,0x2b,0x65,0xa4,0x92,0x15,0x12,0x81,0xf6,0x4d,0x68,
0x42,0xfb,0xb8,0x16,0x9b,0x9f,0x20,0x88,0x28,0x34,0x79,0x4d,0xc6,0x84,0xf5,0x25,
0xa8,0x73,0x65,0x68,0x18,0x81,0x12,0x36,0xea,0xff,0x61,0xda,0xc2,0x0,0xd9,0xb4,
0xc7,0x18,0xc6,0x2b,0xdc,0x32,0xf1,0x69,0xaf,0xba,0x63,0x92,0xc8,0x41,0x19,0xe1,
0xe0,0xe0,0xe0,0x70,0xb2,0x83,0xb2,0x31,0x1e,0x6d,0x64,0x4b,0x72,0x48,0x88,0xf2,
0xbc,0xad,0xb5,0x19,0x93,0x26,0x8d,0x47,0x63,0x43,0x1d,0xb2,0x59,0xa,0xd3,0xea,
0xa8,0xa4,0xa1,0x21,0x82,0x44,0xec,0xfe,0x61,0x24,0x92,0x43,0x55,0xf6,0x6b,0xa5,
0x7,0x92,0x83,0x5c,0x64,0x8a,0xa9,0x61,0xa4,0xfb,0xc2,0x1c,0x1c,0x1c,0x1c,0x8e,
0x3b,0x4c,0x2c,0x6a,0x20,0x7a,0x80,0x6,0x12,0x81,0x3a,0x97,0x27,0x4c,0x6c,0xb7,
0x89,0x6b,0x72,0x27,0x29,0x8c,0x29,0x90,0x24,0x64,0x37,0x8,0x46,0xe,0xda,0xdc,
0x22,0x25,0xb7,0x92,0x7a,0x4c,0x1c,0x1c,0x1c,0x1c,0x4e,0x42,0xec,0x2f,0xec,0xa5,
0xfd,0xa7,0xa9,0x45,0xd7,0xd5,0xd5,0x60,0xc2,0x84,0x76,0x23,0x7,0xed,0xae,0x16,
0xf5,0x27,0x44,0xf7,0xef,0xb5,0x10,0xc6,0x6,0xd4,0x79,0x5e,0xc,0xa2,0x85,0xfd,
0x22,0x72,0x60,0xa8,0xa9,0xc9,0xc3,0xaf,0x5e,0x74,0x70,0x70,0x70,0x38,0xd9,0xa0,
0xce,0xe5,0x78,0x5d,0x23,0x2d,0xa2,0xd9,0xd6,0xd6,0x86,0x71,0xe3,0xc6,0xd9,0xe8,
0x23,0x91,0x82,0x2d,0x8e,0x47,0x2b,0x22,0xa,0x63,0x13,0x9,0xfe,0x29,0x1f,0x64,
0x41,0x44,0x1c,0x98,0xa8,0x20,0xc7,0xd3,0x54,0x10,0x22,0x48,0xc6,0xeb,0x0,0xb9,
0x8e,0x7,0x7,0x7,0x87,0xb1,0x0,0xa9,0xbf,0xfb,0x86,0x90,0xb2,0x8e,0xd2,0xde,
0x26,0xab,0x49,0x20,0x6a,0x82,0x9e,0x56,0x2c,0xc8,0xe7,0x3c,0xb4,0x8f,0x6b,0x46,
0x6b,0x4b,0x23,0x32,0x69,0x5e,0x37,0x42,0x18,0x9b,0x56,0xc2,0x50,0x24,0xb4,0x8d,
0x2b,0x93,0x57,0x4b,0x4b,0x29,0xcf,0x13,0x5b,0xde,0xdc,0xbe,0x60,0xc8,0xa5,0x52,
0xb6,0xa1,0xf7,0x60,0x87,0xba,0x83,0x83,0x83,0xc3,0x18,0x45,0x4a,0x7d,0xac,0x14,
0xf8,0x1a,0x88,0x93,0xa1,0x40,0xd4,0xa6,0x40,0xed,0xe3,0xa2,0x61,0xa8,0x9a,0xab,
0xa0,0xe,0x66,0x59,0x8,0xb6,0xac,0x5,0x49,0x61,0x2c,0x13,0x83,0x10,0x6f,0xa0,
0x94,0x67,0x7e,0xa8,0x3b,0x5a,0x5d,0xd,0xb1,0xf7,0xc,0x5e,0x4a,0x97,0x1c,0x1c,
0x1c,0x1c,0xc6,0x1a,0xe4,0x5,0xd9,0x37,0x68,0xa3,0xae,0xda,0xba,0x1a,0xb4,0xb4,
0x36,0xa1,0x6d,0x5c,0xab,0x9d,0xab,0xcb,0x55,0xc3,0x50,0xcd,0xad,0x72,0x92,0x42,
0x69,0xd7,0xde,0x34,0xb2,0x94,0xaa,0x6e,0xa5,0x4,0x6a,0x6a,0x6b,0xec,0xd4,0xc1,
0xc1,0xc1,0x61,0x4c,0x81,0x56,0x80,0x46,0x1b,0x85,0xb6,0x1a,0xaa,0x87,0xc6,0xa6,
0x7a,0x8c,0x1f,0x3f,0xce,0x66,0x30,0x47,0x3c,0x10,0x5b,0x9,0x12,0x85,0x9a,0xc3,
0x70,0xf2,0xb9,0xd4,0xcd,0x3a,0x62,0x66,0x78,0xb4,0xa2,0xbc,0x54,0x44,0xb,0xf6,
0xbf,0xf2,0x22,0x97,0xcb,0x9f,0x94,0x99,0xe2,0xe0,0xe0,0x30,0xd6,0x11,0x5a,0x87,
0xb2,0x46,0x1c,0xb5,0xb6,0x36,0xf,0xba,0x8e,0xc2,0xd0,0xa7,0x50,0x94,0xcc,0x8b,
0xc8,0xe1,0xa4,0x7,0xe5,0x7f,0x9e,0x3c,0xe0,0xab,0x1f,0x86,0x64,0x11,0xf1,0x66,
0x25,0x40,0x8e,0x67,0xa9,0x64,0x80,0x72,0x32,0x5a,0xba,0xd5,0x75,0x3c,0x38,0x38,
0x38,0x8c,0x16,0xc4,0x7d,0x2,0x5a,0x5,0x55,0x41,0x7b,0x23,0xd8,0x6a,0xa8,0xd,
0x35,0xd6,0x97,0x30,0xa1,0xbd,0xdd,0x34,0xe2,0xc1,0x95,0x53,0x75,0x2f,0x35,0xe5,
0xb1,0xde,0x97,0x70,0xa8,0x30,0xcb,0x2a,0x2c,0xa3,0x2e,0x9f,0x83,0x27,0xff,0x5a,
0x4c,0xe,0x15,0xb2,0xa8,0x3a,0xa3,0x6b,0x73,0x19,0x72,0x82,0xfc,0x71,0x2e,0xc3,
0x1c,0x1c,0x1c,0x46,0x7,0x24,0xe0,0xe5,0x27,0xd7,0x6,0x42,0xcd,0xcd,0x8d,0x16,
0xb4,0xce,0xd1,0xb8,0x71,0xda,0x87,0x39,0x87,0xb4,0xa7,0xfe,0xd4,0x48,0xaa,0xd,
0x6,0xfe,0x26,0xe,0xe,0xca,0x1d,0x2d,0x31,0x1e,0x22,0x93,0x4a,0xc1,0x8b,0xa6,
0x81,0x57,0xfb,0x1c,0x48,0xa4,0x22,0x87,0x9a,0x74,0xd6,0xd6,0x56,0x77,0xce,0x25,
0x7,0x7,0x87,0xd1,0x2,0x11,0x43,0x4c,0x10,0x9a,0x9f,0x10,0x7,0x2d,0x20,0x77,
0x32,0x77,0x2e,0x1f,0xe,0xa2,0x7c,0x8a,0x16,0x10,0xc,0xb4,0xf7,0x6,0xff,0x59,
0xce,0xa9,0xbb,0xc6,0xc8,0x21,0x95,0x41,0x8a,0x17,0x8d,0x4d,0x1d,0xa1,0x3a,0x38,
0x38,0x8c,0x2,0xc,0xd5,0xfe,0x63,0x6b,0x20,0xe,0xe,0x87,0x6,0x2d,0x14,0xa8,
0x9,0x80,0xe9,0x8c,0x96,0x18,0x67,0xde,0xd1,0x7a,0x88,0x68,0x55,0x99,0x58,0x49,
0xa0,0xbe,0xa6,0x56,0x1d,0xfb,0x66,0x39,0x38,0xeb,0xc1,0xc1,0xc1,0xc1,0xe1,0xe4,
0x80,0x2c,0x87,0x20,0x8,0x6d,0x8f,0xef,0x18,0x46,0xe,0x1e,0x6d,0x87,0x14,0xe9,
0xa0,0xa1,0xae,0x16,0xda,0xfc,0x3a,0x55,0x71,0xbd,0xe,0xe,0xe,0xe,0xe,0x27,
0xb,0xca,0x94,0xfb,0x35,0xe5,0x32,0x6a,0x69,0x28,0x68,0xd0,0xaa,0x7c,0x49,0x46,
0xe,0x22,0x2,0xed,0x65,0xaa,0x45,0x97,0xb4,0xaf,0x83,0x3a,0x26,0xec,0xe,0x7,
0x7,0x7,0x7,0x87,0x31,0xf,0xd,0x4e,0xcd,0x90,0x3,0xea,0xb2,0x59,0xf3,0x24,
0xc9,0xa9,0x64,0xe4,0x20,0x1a,0xd0,0x70,0xdf,0x1a,0x2f,0x83,0x74,0x42,0xbd,0xf,
0xce,0xad,0xe4,0xe0,0xe0,0xe0,0x70,0xb2,0x20,0x49,0x63,0xa0,0x58,0x28,0x22,0xa5,
0xe1,0xbd,0x14,0xfe,0x66,0x30,0xd8,0x37,0xc6,0x14,0x40,0xad,0x97,0x46,0x85,0xa6,
0x85,0x16,0x5d,0x72,0x70,0x70,0x70,0x70,0x38,0x39,0xa0,0xed,0x1a,0x26,0x8e,0x1f,
0x8f,0x74,0x32,0x32,0xe,0x44,0x10,0x83,0x96,0x83,0xfe,0xcb,0xa7,0x33,0x48,0xf1,
0x26,0x1b,0xd6,0x44,0xc2,0x70,0x70,0x70,0x70,0x70,0x18,0xfb,0xd0,0x14,0x86,0x9a,
0x5c,0x9e,0x3c,0xc0,0x13,0x23,0x84,0x2a,0x39,0x24,0x2b,0x49,0x54,0x92,0xea,0xa9,
0x4e,0x20,0x1d,0x94,0x10,0x26,0xb4,0xaf,0x43,0xf5,0xe,0x7,0x7,0x7,0x7,0x87,
0x31,0xd,0x2d,0x25,0x32,0xa3,0x75,0x9c,0xd,0x4c,0xb2,0x21,0xab,0x3c,0x46,0x6e,
0x25,0x39,0x95,0xf8,0x4f,0x5b,0x85,0x36,0xe4,0x73,0xe6,0x7f,0x72,0x70,0x70,0x70,
0x70,0x38,0x49,0xe0,0x7,0x68,0x6f,0x69,0x31,0x77,0x92,0xf5,0x31,0x10,0x91,0x5b,
0x89,0x1f,0x74,0x4d,0x1f,0x5a,0x9b,0x9a,0x91,0xd0,0x46,0x18,0xe,0xe,0xe,0xe,
0xe,0x27,0x5,0x1a,0x6a,0x6a,0x91,0x34,0x83,0x21,0xda,0x2a,0x35,0xe6,0x3,0x22,
0x9a,0x4d,0xa8,0x65,0xa9,0xda,0x5b,0xda,0x90,0xa,0x78,0xc5,0x19,0xf,0xe,0xe,
0xe,0xe,0x27,0x5,0x6a,0x33,0x5a,0x70,0x8f,0x72,0x3f,0x8c,0x88,0x41,0xff,0x57,
0xc9,0x61,0x2f,0xc6,0xb5,0xb4,0x6a,0x2e,0x75,0xf5,0x93,0x83,0x83,0x83,0x83,0xc3,
0x58,0x47,0x5d,0xbe,0xc6,0x96,0x4e,0x32,0x66,0xa8,0xc2,0xc8,0x41,0x7d,0xc,0x3e,
0xaf,0x26,0x78,0xcc,0xf3,0x73,0x63,0xad,0xfe,0x77,0x70,0x70,0x70,0x70,0x38,0x19,
0xd0,0x9a,0x27,0x7,0x78,0x34,0xa,0x6c,0x59,0xf3,0x24,0x64,0x1e,0xec,0x6b,0x39,
0x90,0x35,0x92,0x41,0x88,0x9a,0xbc,0x23,0x7,0x7,0x7,0x7,0x87,0x93,0x5,0x75,
0x99,0xac,0xcd,0x6f,0x8b,0x7a,0x9b,0xa3,0x1e,0xe9,0xfd,0xc8,0x41,0x2b,0x6a,0x24,
0xd0,0xde,0xd4,0x52,0xbd,0xe0,0xe0,0xe0,0xe0,0xe0,0x30,0x56,0x61,0x9d,0xcf,0xc,
0xd,0xd9,0x1a,0xeb,0x67,0x8e,0x7a,0x1c,0x22,0x62,0x30,0x72,0x88,0x37,0x7d,0xd3,
0x41,0xe4,0x50,0x9f,0xcf,0x45,0x17,0x1c,0x1c,0x1c,0x1c,0x1c,0xc6,0x24,0x34,0x8,
0x49,0xc4,0x50,0x2e,0x97,0xd1,0x56,0xdf,0x80,0x4c,0xd2,0xd3,0x45,0x9b,0xff,0xac,
0x19,0xd3,0x46,0xe,0xf1,0xc0,0x55,0x5b,0x44,0x23,0xac,0xa0,0x26,0x9d,0xb1,0x85,
0xf8,0x1c,0x1c,0x1c,0x1c,0x1c,0xc6,0x26,0x44,0xc,0x5a,0xd,0xa3,0xa6,0xa6,0x6,
0x79,0x2f,0x1d,0xc9,0xff,0x64,0xb4,0x89,0xea,0xe0,0xf2,0x19,0x1e,0x2f,0x7a,0x3c,
0xad,0x68,0xd9,0x8c,0x54,0x88,0x9,0x5e,0x8a,0x16,0x44,0x80,0x4a,0x50,0x42,0x4a,
0x3b,0xec,0xf1,0x3c,0x61,0x5d,0x14,0x6e,0xfe,0x83,0x83,0x83,0x83,0xc3,0x68,0x85,
0xb6,0x3,0x4d,0xc2,0x87,0x47,0x23,0xc0,0x6,0x21,0xf9,0x25,0xcc,0x6f,0x6b,0xe3,
0xb5,0x68,0xab,0x68,0x1d,0x63,0x18,0x39,0x88,0x31,0x8c,0x35,0x8,0x6d,0x13,0x57,
0x57,0x5b,0xb,0xda,0xe,0xb6,0x7c,0xb7,0x1f,0x92,0x24,0xf8,0x95,0xb3,0x23,0x1c,
0x1c,0x1c,0x1c,0xc6,0x0,0x28,0xd0,0xad,0x67,0x81,0x42,0xbd,0x12,0xfa,0x98,0xda,
0x3e,0xce,0x5c,0x4c,0x16,0xa2,0xcb,0xf6,0x9f,0x91,0x43,0x8c,0x78,0x5b,0x3d,0x99,
0x1a,0x93,0x9a,0xdb,0xc8,0x2a,0x81,0x9d,0x5b,0x9f,0x4,0x9f,0xe6,0x26,0xc6,0x39,
0x38,0x38,0x38,0x8c,0x5e,0x44,0xe2,0x9f,0x32,0x9d,0x47,0x2d,0x97,0x94,0x49,0x25,
0xd1,0x72,0x90,0xd1,0xa9,0xfb,0x90,0x83,0x10,0x33,0xc8,0xcc,0x49,0x53,0x51,0x21,
0x39,0x94,0x3,0x7f,0x48,0x9f,0x84,0x83,0x83,0x83,0x83,0xc3,0xa8,0x5,0x35,0xfd,
0x84,0x16,0x5a,0x4d,0x24,0xcd,0x2b,0xd4,0x40,0x62,0x38,0xd8,0xf0,0xa3,0x3,0xc8,
0x21,0x46,0x4b,0x5d,0x16,0x9e,0xf9,0x93,0x14,0x1c,0x31,0x38,0x38,0x38,0x38,0x8c,
0xd,0x44,0x96,0x43,0x18,0x46,0x5b,0x43,0x7b,0x95,0xe1,0x5d,0x42,0x7,0x25,0x87,
0x5c,0xb2,0x8c,0xf6,0x86,0x2c,0x52,0xa5,0x0,0xa9,0x30,0x45,0xc6,0x89,0xba,0x2b,
0x1c,0x1c,0x1c,0x1c,0x1c,0x46,0x2b,0x2a,0x8,0x92,0x3e,0x82,0x54,0x19,0x79,0xbf,
0x80,0x89,0x79,0x1a,0x1,0xc9,0x52,0xf5,0xbb,0x7d,0x71,0x50,0x69,0x9f,0xa2,0xd5,
0xd0,0xdc,0xd4,0x64,0xe3,0x5d,0x5,0x19,0x11,0xae,0xcb,0xc1,0xc1,0xc1,0xc1,0x61,
0xf4,0x43,0x9b,0xfb,0x64,0x52,0x29,0x34,0xd5,0x35,0x1c,0xd4,0x2b,0x74,0x50,0x72,
0xd0,0xa8,0xd7,0xa6,0xda,0xfa,0x3,0x16,0x63,0x72,0x70,0x70,0x70,0x70,0x18,0x9d,
0x30,0x25,0x9f,0x52,0x5f,0x82,0xbf,0x52,0xf4,0xa3,0x85,0x56,0xf,0x82,0x83,0x92,
0x83,0xfa,0x1b,0x9a,0xeb,0xea,0x5c,0x5f,0x83,0x83,0x83,0x83,0xc3,0x18,0x81,0xc8,
0x21,0x60,0xd0,0x4a,0x18,0x53,0xdb,0x27,0x20,0x23,0xcf,0xd0,0x41,0x94,0xff,0x83,
0x93,0x3,0x7f,0x54,0xaf,0xd,0x20,0xf8,0x43,0x11,0x84,0x9b,0xfe,0xe6,0xe0,0xe0,
0xe0,0x30,0xba,0x21,0x1e,0x8,0xc3,0x10,0x15,0x3f,0xc4,0xf4,0x49,0x53,0x90,0xa,
0x79,0xe5,0x20,0x9b,0xbb,0x25,0x2a,0x9a,0x43,0x3d,0xc,0xca,0x41,0x81,0x5f,0x7a,
0xb8,0xf3,0xb1,0xc7,0xf0,0xe0,0x9e,0x5d,0x28,0x27,0x32,0x48,0xd9,0x10,0xa8,0xea,
0xd,0xe,0x7,0x85,0x8,0x35,0x20,0xed,0xd6,0x7a,0xc0,0x5b,0x9f,0x7b,0x15,0x1a,
0x55,0x18,0x51,0xb1,0xa0,0xae,0xae,0x16,0xbf,0xba,0xfe,0x3a,0x2c,0x5a,0xb4,0xc0,
0x66,0x24,0x3e,0x55,0x84,0xa2,0x6c,0x63,0xfd,0x24,0xca,0x65,0x1f,0x9,0x9e,0x7,
0x41,0x10,0x15,0xfc,0x41,0x46,0x1f,0x38,0x38,0x1c,0xc,0x1a,0xbe,0xae,0x9,0xb0,
0xb6,0xa4,0x42,0x2a,0xaa,0x43,0x9e,0x97,0xb4,0xb1,0xf0,0xda,0x53,0x38,0x11,0x6a,
0x84,0xfc,0x93,0x37,0xfe,0xa8,0xe6,0x1d,0xa8,0x73,0x4e,0x9f,0x71,0x2a,0x7a,0x7a,
0x7a,0x90,0x48,0x25,0x51,0xf2,0x7d,0xd4,0x37,0xd4,0xe3,0xaf,0xbf,0xfe,0x3d,0x94,
0x4a,0x25,0xab,0xb3,0xf1,0x1c,0xab,0x23,0x41,0x6d,0x6d,0x2d,0x9a,0x1a,0xdd,0x8a,
0xd2,0x4f,0x4,0x4d,0x4c,0x28,0x97,0x7,0x30,0x91,0x65,0xfb,0x92,0xb,0x2e,0x44,
0x43,0x2a,0xab,0x8b,0xea,0x47,0x38,0x0,0x7,0x25,0x87,0xa0,0x52,0xa2,0x4,0x4a,
0x62,0x5b,0xb1,0x84,0x6b,0xef,0xbf,0x17,0xc5,0x44,0x9a,0x45,0x4e,0x71,0xe6,0xc8,
0xe1,0x49,0x71,0xbc,0xc9,0x61,0xe3,0xc6,0x4d,0xf8,0xca,0x57,0xbe,0x8a,0x3b,0xee,
0xb8,0x3,0xdd,0xdd,0xdd,0xd6,0xd8,0x34,0x79,0xd1,0xc1,0xe1,0x50,0xe1,0x79,0x1e,
0x72,0xb9,0x1c,0xe6,0xcd,0x9b,0x87,0xf7,0xbd,0xff,0x5d,0x38,0xe3,0x8c,0x33,0x58,
0x8f,0x7c,0x5e,0x57,0x9b,0x77,0xe4,0x30,0x56,0x10,0x24,0x2a,0x8,0xa9,0xf8,0x4f,
0x67,0x59,0x3f,0xff,0xac,0xb3,0x51,0x93,0x24,0x2b,0x68,0x65,0x24,0x5b,0x26,0x69,
0x5f,0x1c,0x94,0x1c,0x4a,0x24,0x87,0xa4,0x9f,0x40,0x39,0x9d,0xc6,0x7f,0xdd,0x71,
0x27,0xfa,0x28,0x88,0x2a,0x1,0x6f,0x3d,0xa,0x85,0x38,0xd6,0x71,0x5c,0xc8,0xc1,
0x2c,0x85,0x10,0xfd,0x7d,0x5,0x3c,0xef,0x79,0x57,0x61,0xc5,0x8a,0x47,0xed,0xba,
0x48,0x41,0x8d,0x4d,0x2b,0x2d,0x3a,0x38,0x3c,0x19,0x86,0xa,0x65,0x11,0x84,0xc4,
0x41,0x53,0x73,0x1d,0x7e,0xf6,0xd3,0x9f,0x61,0xd1,0xe2,0x85,0x66,0x3d,0x38,0x72,
0x18,0x3b,0x8,0xb5,0xcc,0x85,0x5f,0xc4,0x82,0x96,0x16,0x5c,0x3e,0x7f,0x3e,0xd,
0x6,0xca,0xb,0x5e,0x1a,0x4e,0x97,0x1c,0xe6,0x52,0x4,0x15,0x96,0x47,0x33,0xd3,
0xe3,0xf,0x5b,0xea,0x1b,0xac,0x0,0xa3,0x82,0x77,0x18,0x9,0x50,0x23,0x56,0xf8,
0xca,0x57,0xbe,0x82,0xe5,0xcb,0x97,0xdb,0xb5,0xd8,0x2d,0xa0,0xb2,0xd3,0xb9,0xb,
0x2e,0x3c,0x59,0x90,0x32,0xa1,0x10,0x13,0x83,0xd0,0xd5,0xd5,0x85,0x77,0xbd,0xfb,
0x5d,0xbc,0xee,0x14,0xc1,0xb1,0x6,0x93,0xd,0x54,0x2c,0x27,0xb4,0xb4,0xd9,0x82,
0xab,0x42,0x78,0x10,0x16,0x38,0xb8,0xe5,0x80,0x32,0x32,0x41,0xca,0x34,0xd4,0x3f,
0x6e,0xdc,0x80,0x7b,0xd6,0xac,0x45,0x26,0x9d,0x3d,0x2a,0xc,0x3f,0xd6,0x71,0x3c,
0x2c,0x7,0x9f,0x8f,0xd3,0xc,0xc7,0xc9,0x93,0xa6,0x9a,0x5,0xa1,0x73,0x95,0xcd,
0xb9,0xe7,0x9e,0x8b,0xa6,0xa6,0x26,0xeb,0x7f,0x70,0x70,0x38,0x54,0x48,0x83,0x97,
0x5b,0xd2,0xb4,0xf8,0x64,0x60,0x44,0xb1,0x76,0xed,0x6a,0x34,0x50,0xc3,0x77,0x96,
0xc3,0xd8,0x41,0x40,0x19,0xe4,0x5,0x65,0xbc,0xe2,0xfc,0xb,0x30,0x41,0x4b,0x6e,
0xb3,0x3c,0x8a,0xcc,0xfa,0xe1,0x96,0xd0,0x38,0x28,0x39,0x68,0x69,0x57,0xf5,0x61,
0x6b,0x32,0xdc,0xd6,0x1d,0x5d,0xb8,0xe1,0x91,0x87,0xd1,0x93,0x91,0x11,0xe2,0xc8,
0xe1,0xc9,0x70,0x3c,0xc8,0x41,0x6b,0xa3,0x4,0x24,0x84,0xfa,0xba,0x46,0xe4,0x72,
0x6a,0x10,0x9,0x73,0x25,0xdd,0x76,0xdb,0x6d,0xc8,0xe7,0xf3,0x83,0x5a,0xa0,0x83,
0xc3,0xa1,0x20,0x93,0xc9,0x60,0xf1,0xe2,0xc5,0x66,0x41,0x8,0x12,0xda,0x9b,0x36,
0x6d,0xa0,0xa2,0xd1,0x20,0x29,0xc1,0x7f,0x14,0xe0,0xf6,0xcd,0x13,0xc3,0x91,0xc3,
0xc8,0x46,0x32,0xc,0x30,0xab,0xb9,0x9,0x97,0x9e,0x7e,0x3a,0xea,0xa9,0x3f,0x26,
0x92,0x94,0xf2,0x29,0x49,0xfa,0xa8,0xdc,0x87,0xe2,0x20,0x6,0x45,0x84,0xa8,0xb8,
0x2a,0xcc,0xf0,0x6,0x64,0xbd,0x14,0xb5,0x7,0x37,0xa0,0xd5,0xc1,0xc1,0xc1,0x61,
0xb4,0x22,0x49,0xa5,0x71,0xca,0xf8,0xf1,0x91,0xe0,0x97,0x80,0x37,0x21,0x3f,0x3c,
0xd,0x1c,0x9c,0x1c,0x68,0x46,0xa,0xb2,0x20,0x3c,0xaf,0x82,0x99,0x53,0x26,0x9a,
0xf6,0x20,0x8d,0xd4,0x69,0xa5,0xe,0xe,0xe,0xe,0xa3,0xb,0xb2,0xd0,0xb2,0xb4,
0xc,0xc7,0xd5,0xd5,0x50,0xf0,0x53,0x8e,0x53,0xfa,0x57,0x68,0xb1,0x1d,0x4c,0x9a,
0x1f,0x94,0x1c,0xe4,0x63,0x14,0xad,0x98,0x73,0x29,0xf4,0x31,0x7b,0xca,0x64,0x78,
0x11,0x5f,0x38,0x38,0x38,0x38,0x38,0x8c,0x22,0x88,0x18,0x84,0xfa,0x7c,0xe,0x4d,
0xd9,0x34,0x15,0x7d,0x3f,0x1a,0xb9,0x64,0xee,0xbc,0xc3,0xb5,0x1c,0x88,0xc8,0x4f,
0xce,0x7,0x57,0x2,0x64,0x53,0x49,0x5b,0xde,0x55,0xbe,0x41,0xd7,0x29,0xed,0xe0,
0xe0,0xe0,0x30,0x7a,0xa0,0x11,0x69,0x1a,0x9d,0xd6,0xd6,0xd2,0x8c,0x84,0x5f,0x46,
0x8a,0x22,0x5c,0xf2,0x3d,0xd0,0xff,0x7,0x31,0x1d,0xe,0x4e,0xe,0xea,0xc8,0xe6,
0xd7,0xa9,0x44,0x6,0xd9,0x6c,0xd,0x5a,0x92,0x1e,0x4e,0xc9,0xd7,0x21,0x15,0xf8,
0x28,0xf1,0x69,0x5e,0x90,0x42,0x26,0xd0,0xaa,0xe0,0x6e,0x54,0x8c,0x83,0x83,0x83,
0xc3,0x48,0x43,0x39,0x59,0x81,0xcf,0x50,0x4e,0x26,0x30,0x90,0xf0,0x91,0x1e,0xe8,
0xc5,0x99,0xed,0x13,0x90,0xcf,0xe4,0x91,0x49,0xa6,0x91,0x4e,0x24,0x6d,0x38,0xeb,
0xc1,0x46,0x2c,0x3f,0xa1,0xe5,0xb0,0x3f,0x26,0x69,0xaf,0xd1,0x30,0x40,0x9a,0xc,
0x54,0xd1,0x4c,0x3b,0x7b,0xe8,0x61,0x3d,0xc2,0xc1,0xc1,0xc1,0xc1,0xe1,0x38,0x40,
0xe2,0x59,0x9e,0x23,0x75,0x42,0x6b,0x95,0xed,0x71,0x4d,0x4d,0xa8,0xc9,0x64,0xa2,
0x2f,0xf,0x1,0x87,0x25,0xd9,0x27,0xf0,0xe1,0x8d,0x19,0xf,0x61,0x58,0xb6,0x69,
0xd8,0xb2,0x1b,0xe,0xd6,0x99,0xe1,0xe0,0x30,0x14,0xf1,0x40,0x6,0x85,0xd8,0x35,
0x39,0xf4,0x7c,0x2c,0x86,0x18,0xf1,0x0,0x8e,0xf8,0xe8,0xe0,0x70,0x3c,0x20,0x62,
0xd0,0x54,0x4,0x6d,0xbb,0x90,0xa,0xca,0x98,0x35,0x75,0x12,0xad,0x85,0x43,0xaf,
0x83,0x87,0x45,0xe,0x99,0xb0,0x82,0x59,0x93,0x27,0x92,0x10,0x7c,0x84,0x34,0x57,
0xa2,0x45,0xf8,0xe,0x62,0x93,0x38,0x38,0xc,0x81,0x4,0x63,0xdc,0x29,0x26,0xe8,
0x73,0x3a,0x4d,0x7d,0x66,0x18,0xa1,0x3a,0x16,0x82,0x10,0x1f,0x63,0x52,0x88,0x3f,
0x3b,0x38,0x1c,0xf,0xb0,0x26,0xda,0x9c,0x2b,0xad,0xbc,0x5a,0x9f,0xc9,0xa2,0xad,
0xae,0x96,0xe7,0x87,0xde,0xd,0x70,0xd0,0x49,0x70,0xc3,0x21,0x2c,0xfb,0x58,0x5f,
0x2a,0xe0,0x57,0xcb,0x1e,0x82,0x1f,0x7a,0xf0,0x2,0x6a,0x7f,0x87,0xc1,0x44,0x27,
0xb,0xdc,0x24,0xb8,0x3,0x11,0x4f,0x74,0x52,0xa7,0x58,0x67,0x67,0x27,0x1e,0x7a,
0x88,0x75,0xc8,0xa7,0x92,0x31,0x84,0x30,0xc6,0x12,0x94,0x56,0x75,0x2,0x4e,0x9e,
0x3c,0x19,0x73,0xe7,0xce,0xb5,0xb4,0xea,0xf3,0x48,0x85,0x9b,0x4,0x37,0xf6,0x20,
0xcf,0x8e,0xc7,0xe6,0x95,0xa4,0xdc,0x69,0xa9,0xcf,0xe2,0xca,0x45,0xa7,0xa3,0xc9,
0x67,0x71,0x92,0x28,0xe,0x5,0x87,0x45,0xe,0x7e,0xc5,0xc7,0x40,0xa9,0x82,0x9b,
0x1f,0x5c,0x8e,0xb5,0x61,0x19,0xa5,0x44,0x88,0xb4,0x75,0x4a,0x3b,0x8d,0x68,0x28,
0x1c,0x39,0xc,0xf,0xc5,0xe9,0x77,0xbf,0xfb,0x1d,0x3e,0xfe,0xc9,0x4f,0x18,0x49,
0xec,0x23,0x10,0x18,0xdd,0xb1,0x54,0x8b,0x2,0xa,0x53,0x91,0x81,0x84,0xdf,0x4b,
0x5f,0xfa,0x52,0x5c,0x73,0xcd,0x35,0x96,0xbe,0x78,0xdb,0xdd,0x91,0x6,0x47,0xe,
0x63,0xf,0x7e,0x2a,0x40,0x25,0x8,0x51,0x53,0x4e,0xe0,0x2,0x2a,0x28,0xa7,0x4f,
0x68,0xa5,0xbc,0x2e,0xb1,0x8c,0xf,0x8d,0x1c,0xe,0xbb,0xa6,0x66,0xd9,0xa8,0x27,
0xb7,0xb7,0x22,0xe9,0x97,0xa3,0x1f,0x8f,0x3c,0x19,0xe4,0x30,0x2,0x21,0x62,0xe8,
0xe8,0xe8,0xc0,0x57,0xbf,0xfa,0xd5,0x41,0x1,0x74,0x34,0x4,0xc2,0x48,0x45,0x6c,
0x25,0x64,0xb3,0x59,0x5c,0x7b,0xed,0xb5,0xf8,0xfa,0xd7,0xbf,0xce,0x74,0xf,0xb3,
0x68,0xbe,0x83,0xc3,0x31,0x82,0x88,0x21,0xcd,0x7a,0x98,0x66,0x55,0x9c,0x46,0x62,
0x50,0x8d,0x4c,0x69,0x3d,0xa5,0x43,0xc4,0x61,0x91,0x83,0x94,0xd1,0x74,0x32,0x81,
0x53,0x26,0x4d,0x80,0xa7,0xb1,0xb2,0xb4,0x1a,0x92,0x51,0xc7,0x83,0x83,0xc3,0x13,
0x42,0x84,0x20,0x21,0xd9,0xdb,0xdb,0x6b,0x9f,0xa5,0x2d,0xe,0xd,0xaa,0x5c,0x22,
0x90,0x31,0x13,0x68,0xd5,0x89,0xfc,0x94,0x36,0x11,0x85,0xd2,0x3e,0x30,0x30,0x60,
0x69,0x77,0x70,0x38,0x1e,0x90,0x95,0x9a,0x24,0x41,0x9c,0x3a,0x65,0x32,0xf2,0xb4,
0xfb,0x6c,0xd7,0xb7,0xea,0xca,0x17,0x87,0x82,0xc3,0x72,0x2b,0xe9,0xd6,0x44,0xa0,
0xf1,0xb3,0xc0,0x1f,0x56,0xae,0xc0,0xaa,0x1d,0x7b,0x90,0x48,0x66,0xf9,0x3e,0x37,
0xd7,0x61,0x28,0x9c,0x5b,0xe9,0x40,0x48,0x50,0x7e,0xfa,0xd3,0x9f,0xc6,0x6f,0x7f,
0xfb,0x5b,0x1b,0xc8,0x20,0x81,0xa9,0x15,0x64,0x27,0x4c,0x98,0x10,0xdd,0xa0,0x8a,
0x3b,0x86,0x50,0xc3,0x72,0x16,0x21,0x68,0xf9,0x6b,0xb9,0x6c,0x54,0x1e,0xd7,0xfd,
0xf2,0x5a,0xb4,0xb7,0xb7,0x57,0xef,0x18,0x59,0x70,0x6e,0xa5,0xb1,0x7,0xcd,0x80,
0xce,0x5,0x3e,0xae,0x58,0xb8,0x10,0xa7,0x34,0x36,0x58,0xff,0x83,0xe4,0xc4,0xa1,
0xa,0x9e,0xc3,0x24,0x7,0xfe,0x40,0xcb,0x43,0xb3,0xec,0x57,0xf4,0x74,0xe2,0xd6,
0x87,0x1f,0xa3,0x80,0xf2,0x10,0xda,0xaa,0x7e,0xe,0x31,0x1c,0x39,0x1c,0x8,0xf5,
0x31,0x7c,0xf8,0xc3,0x1f,0xc6,0x4d,0x37,0xdd,0x84,0xa4,0x97,0xb2,0x25,0xc5,0xff,
0xf6,0x6f,0xff,0x16,0x67,0x9e,0x79,0xa6,0x7d,0x2f,0x13,0x78,0x2c,0x41,0xe4,0xa0,
0xf4,0xf5,0xf5,0xf5,0x99,0xf0,0x53,0xfa,0x7f,0xfe,0xb3,0x9f,0x61,0xc2,0xf8,0x2a,
0x19,0x8e,0x30,0x38,0x72,0x18,0x7b,0x90,0xd4,0x19,0x97,0x4b,0xe3,0xb9,0x67,0x2c,
0x46,0x2b,0xf3,0xd7,0x96,0x44,0x52,0x9f,0xd7,0x21,0xa,0x9e,0x3,0x4b,0xf1,0x9,
0x50,0xa6,0x85,0x10,0x58,0xdd,0xa9,0x60,0x62,0x4d,0x3d,0xea,0xd3,0x29,0x54,0xd2,
0x8e,0x18,0x1c,0xe,0xd,0x22,0x2c,0x73,0xb5,0xf8,0x1,0xb2,0xe9,0xc,0xba,0x3b,
0xbb,0xb0,0x63,0xdb,0x76,0xb,0x3b,0x77,0xee,0x1c,0x5b,0x61,0xfb,0xe,0xc9,0x54,
0x4b,0xab,0x8e,0x5e,0x92,0x2d,0x72,0x64,0xf1,0xb5,0xc3,0x18,0x42,0xc5,0xbc,0x37,
0x1,0x5,0x7a,0x14,0xb4,0x72,0x45,0x4d,0xa9,0x1f,0xb,0x26,0x8c,0x47,0x3,0xd9,
0x80,0x56,0x0,0x2a,0xa9,0x32,0x15,0xf9,0x52,0xf4,0x83,0x43,0xc0,0x61,0x59,0xe,
0x65,0x7b,0xb1,0x18,0x28,0x44,0x21,0x91,0xc2,0xdd,0x6b,0xd7,0x63,0xd9,0xa6,0xcd,
0x8,0xe,0xa3,0x93,0xe3,0x64,0x80,0xb3,0x1c,0xe,0x84,0xdc,0x48,0xea,0x8c,0xfe,
0xc9,0x4f,0x7e,0x62,0xda,0xa9,0x34,0x46,0xc5,0x53,0x43,0x3c,0xc7,0x22,0xa4,0x89,
0x17,0xa,0x5,0x3b,0x17,0x21,0xca,0x72,0xb8,0xfe,0xfa,0xeb,0xa9,0x89,0x37,0xd9,
0xb5,0x91,0x6,0x67,0x39,0x8c,0x76,0x44,0xae,0xfd,0x38,0xe7,0xa5,0x90,0x34,0x26,
0x42,0x3c,0xff,0xa2,0x8b,0x51,0x4b,0x39,0x91,0xe5,0xb9,0x56,0xd8,0xae,0x24,0x13,
0xbc,0xe7,0xd0,0x6,0x46,0x1c,0x96,0xe5,0x90,0xb4,0x3f,0x55,0x76,0x86,0xd0,0xc7,
0xbc,0x29,0x93,0x51,0x53,0x15,0x42,0x6e,0xe7,0x31,0x87,0x27,0x82,0xc8,0x4a,0x7d,
0xc,0x22,0x9,0x11,0x82,0x84,0x50,0xb1,0x58,0xb4,0xeb,0x63,0x31,0x28,0x6d,0x43,
0x5,0xde,0x29,0xa7,0x9c,0x82,0xe6,0xe6,0xe6,0xea,0x27,0x7,0x87,0xa3,0x8b,0xb8,
0xa6,0x5,0x92,0xcd,0xac,0x7f,0x9a,0x62,0x30,0x6b,0xc2,0x24,0xd2,0x40,0x85,0x6d,
0x4e,0xa4,0x4d,0xb5,0x9e,0xa,0xa5,0xa8,0xe1,0x50,0x71,0x98,0xe4,0xa0,0x19,0xd,
0xfc,0x63,0x4,0x3c,0x46,0xa0,0x91,0x5a,0xc0,0xcc,0xf1,0xe3,0xad,0xb1,0xab,0x21,
0xa8,0x51,0x38,0x38,0x1c,0xc,0x67,0x9d,0x75,0x16,0x2e,0xb8,0xe0,0x2,0x3b,0x97,
0x26,0x2d,0x48,0x6b,0x1c,0x8b,0x41,0x6d,0x41,0x47,0x29,0x4d,0x2d,0x2d,0x2d,0xb6,
0xd7,0xb7,0x6b,0x1f,0xe,0xc7,0xa,0xb2,0x14,0x4,0xd,0xf6,0xd0,0x48,0x39,0x79,
0xfb,0xa7,0xb4,0x8d,0x43,0x46,0xac,0x61,0xda,0xbc,0x4e,0x3c,0xde,0x77,0xe8,0xfe,
0x8a,0xc3,0x72,0x2b,0x19,0x74,0xbb,0xfa,0x1e,0x7c,0x6,0xa4,0xb0,0xb1,0x77,0x0,
0xbf,0x7e,0xf4,0x31,0xd3,0x94,0xd4,0xe0,0x8f,0x86,0x79,0x38,0xda,0xe1,0xdc,0x4a,
0x7,0x42,0x16,0x83,0x4,0xa5,0x5c,0x2d,0xb7,0xde,0x7a,0x2b,0xee,0xb9,0xe7,0x9e,
0x3,0xb4,0xeb,0xb1,0x4,0xa5,0x4b,0xe4,0x30,0x7b,0xf6,0x6c,0x5c,0x75,0xd5,0x55,
0x36,0x2a,0x6b,0x24,0x93,0x83,0x73,0x2b,0x8d,0x6e,0xa4,0x2a,0x94,0xc7,0xcc,0xc2,
0x80,0x42,0x25,0x53,0xae,0x60,0x5c,0x2a,0x87,0xe7,0x5d,0x70,0x26,0xf2,0x12,0x46,
0x2c,0x39,0x4f,0xaa,0xbd,0xba,0x87,0xf5,0xf1,0x10,0x5,0xcf,0xe1,0x93,0xc3,0x7e,
0x18,0x8,0x42,0xfc,0xfa,0xee,0xfb,0xb0,0x99,0x82,0xa9,0x98,0xd1,0xda,0x7f,0x21,
0x32,0x8c,0xc4,0xa1,0x55,0xa5,0xb1,0x9,0x47,0xe,0x4f,0xe,0x91,0x85,0xc2,0x58,
0x25,0x7,0x59,0xd3,0xb1,0xb,0x6d,0x34,0xa4,0xd1,0x91,0xc3,0x68,0x47,0x80,0xd0,
0xdc,0x46,0x40,0x7e,0x60,0x0,0xcf,0x3e,0x6b,0x31,0xa6,0x35,0x35,0xc1,0xe3,0xb5,
0xa7,0x8a,0xa7,0xfe,0xcb,0x2a,0x3c,0x36,0x80,0xf9,0x73,0x4e,0x65,0x6b,0x28,0x1b,
0x31,0x24,0x68,0xd7,0xc4,0x26,0x8e,0x83,0xc3,0xc1,0x10,0xbb,0x5c,0x24,0x3c,0xc7,
0x62,0x10,0x39,0xeb,0x38,0x56,0xc9,0xcf,0x61,0xa4,0x21,0x22,0x6,0x8f,0x24,0xde,
0xd6,0x58,0x8f,0x71,0x8d,0x4d,0x47,0x2c,0x87,0x8f,0x98,0x1c,0xb4,0xa8,0xd3,0xc4,
0x96,0x46,0xb4,0x33,0x42,0x9a,0x64,0xe1,0x31,0x42,0xea,0x97,0x70,0x70,0x78,0x32,
0x48,0x80,0x8e,0xd5,0x20,0x38,0x62,0x70,0x38,0x5e,0x90,0xc7,0x28,0x49,0x62,0x48,
0xfb,0x25,0xcc,0x9a,0x30,0x81,0x72,0x58,0x9b,0xf8,0x1c,0x59,0xfd,0x3b,0x72,0x72,
0x60,0x3b,0xc8,0xb1,0x31,0xcc,0x9a,0x32,0xd9,0x36,0x94,0x48,0x84,0x15,0x24,0x15,
0x53,0x7,0x7,0x7,0x7,0x87,0xe3,0x2,0xa9,0x23,0x89,0xc0,0x87,0x57,0x2a,0x60,
0x46,0xfb,0x38,0xa4,0xe5,0xaa,0x23,0x41,0x1c,0x9,0x8e,0x98,0x1c,0x34,0x6c,0xca,
0x4b,0x84,0x18,0xd7,0xdc,0x82,0xb0,0x5c,0x26,0x5b,0xa5,0x48,0x11,0x47,0xfc,0x58,
0x7,0x7,0x7,0x7,0x87,0x43,0x44,0x85,0x52,0x37,0x24,0x39,0xcc,0x9f,0x37,0x7,
0xb9,0xb4,0x7,0x4f,0x3d,0x9a,0x27,0xda,0xad,0x14,0xa6,0x92,0x48,0x24,0x3d,0x4c,
0xcd,0xa6,0x71,0xd1,0xf4,0xa9,0x24,0x88,0x2,0xba,0xf2,0x6e,0xf5,0xc9,0x63,0xd,
0xf9,0x13,0x63,0x9f,0xa2,0xe,0xd1,0xcc,0xf8,0xa8,0x93,0x57,0xfe,0xfc,0xe1,0x5c,
0x1d,0x2e,0xb8,0x70,0xb0,0xa0,0x8e,0xe8,0x78,0x80,0x40,0x1c,0x1c,0x46,0xf,0xb4,
0xa4,0x51,0x63,0xb6,0x16,0x8b,0xa7,0x9e,0x82,0x9c,0x3e,0xd8,0xf6,0x6f,0xd5,0x2f,
0x9f,0x22,0x8e,0xdc,0x72,0xb0,0xfe,0x5,0xfd,0x9f,0xc0,0xac,0x69,0xd3,0x50,0x97,
0x49,0x23,0x59,0x8c,0x66,0x86,0x3a,0x1c,0x5f,0x24,0x35,0x12,0xa4,0x54,0xb2,0x8e,
0x50,0x8d,0x5c,0x72,0xc1,0x85,0x43,0xd,0x52,0x28,0x8e,0xd6,0xa8,0x21,0x87,0xe3,
0x8f,0x5c,0x39,0xc0,0xc4,0xd6,0x66,0xf3,0xe4,0xa8,0x7,0x82,0x94,0x7f,0xa4,0x86,
0x83,0x9e,0x65,0x4f,0x7b,0xca,0x88,0xbb,0x17,0xa4,0xc5,0x16,0xf9,0xa8,0x25,0x9b,
0xb6,0xe0,0xbe,0xb5,0xeb,0x10,0x52,0x13,0x89,0x1f,0x7d,0xb2,0x55,0xb8,0xe3,0x31,
0x94,0xb5,0x50,0x28,0x21,0x9d,0xcd,0x61,0xfa,0xf4,0x99,0xe8,0x1f,0x28,0xa0,0xc2,
0x3c,0xd6,0xdc,0x93,0x69,0x53,0xa6,0xd8,0xb0,0xc4,0x78,0x48,0xa2,0x83,0xc3,0xa1,
0x40,0x23,0xc7,0x56,0xaf,0x5e,0x6d,0xe7,0xaa,0x3b,0x22,0x8a,0xcd,0x9b,0x37,0x22,
0x9b,0x4d,0x5b,0xe3,0x76,0x43,0x59,0x47,0x1e,0x62,0xab,0x4f,0x79,0xd7,0x58,0xec,
0xc7,0x33,0xce,0x3b,0x17,0x13,0x6b,0xb2,0xc8,0x28,0x2f,0x35,0x84,0xd5,0x86,0xb6,
0x3e,0xf5,0x7c,0x3d,0x6a,0xe4,0xa0,0x4e,0xe8,0x12,0x85,0xd3,0xae,0x4a,0x80,0x1b,
0x6e,0xbf,0x13,0xfd,0x14,0x5c,0x8e,0x1c,0x8e,0x1d,0x39,0x84,0x41,0x5,0xfc,0x87,
0x6f,0x7f,0xe7,0xdf,0xf1,0x99,0xcf,0x7e,0xe,0x1,0xdf,0x61,0xda,0x9f,0x16,0x7a,
0x63,0x7e,0xeb,0xdc,0xc1,0xe1,0x50,0xa1,0x3a,0x13,0xb7,0x53,0xd5,0x9d,0x2b,0xaf,
0xbc,0x12,0xff,0xfd,0xdf,0x3f,0xe2,0x35,0x56,0x32,0x47,0xe,0x23,0x12,0x71,0xbe,
0x89,0xd8,0x9f,0x36,0xbe,0xd,0xb,0xe7,0xcc,0x42,0x3a,0x2c,0xc3,0x4b,0xa5,0x28,
0x69,0x34,0x21,0xf9,0xc8,0xc8,0xe1,0xc0,0x52,0x7c,0xa,0x30,0xe,0x60,0xe5,0xf1,
0x58,0x89,0x6a,0xa8,0x75,0x9c,0x36,0x7b,0x96,0x45,0x7c,0x2c,0x4f,0x72,0x3a,0xd1,
0x10,0xf1,0x2a,0x7f,0xdf,0xf2,0x96,0xb7,0xe0,0xfc,0xf3,0xcf,0x47,0x92,0x15,0x42,
0xe5,0xe0,0xf2,0xdb,0xe1,0x48,0xa1,0x7d,0xaf,0xb5,0xf7,0x86,0xc3,0xc8,0x86,0x56,
0xa4,0x10,0x31,0x88,0x14,0x4f,0x9b,0x39,0x1d,0x19,0x2a,0xe6,0x9a,0xc,0x17,0x51,
0xb4,0x94,0xc3,0x88,0xaa,0x9f,0x2a,0x8e,0xd8,0x72,0x38,0x18,0x7e,0x70,0xd7,0x9d,
0xe8,0x26,0xf7,0xf4,0xf3,0xe9,0xe9,0x50,0x9b,0x4e,0x0,0xc5,0xd4,0xc9,0x21,0xb8,
0x8e,0x8b,0xe5,0x20,0x5e,0xaf,0x12,0xc1,0xb6,0x6d,0xdb,0x70,0xdd,0x75,0xd7,0xe1,
0xf,0x7f,0xb8,0x19,0x3b,0xb6,0xef,0xa2,0x36,0xa6,0x5,0xed,0xec,0x2b,0x7,0x87,
0x43,0x42,0x8a,0x1a,0xfd,0xb8,0x71,0xed,0x38,0xfb,0xec,0xb3,0xf0,0x17,0xaf,0x7d,
0x25,0xa6,0x4e,0x9d,0x6a,0xc2,0x47,0xa,0x48,0x4,0x67,0x39,0x8c,0x14,0x24,0x12,
0x45,0x94,0xab,0x4b,0xc0,0xd7,0x14,0x8a,0x38,0x6b,0xd2,0x54,0x9c,0x37,0x67,0xf6,
0x11,0xcf,0x6b,0xd8,0x1f,0xc7,0x8c,0x1c,0x6e,0x5f,0xb7,0xe,0xf7,0x33,0x94,0x73,
0x79,0x24,0x49,0xc,0x99,0xa0,0x82,0xb2,0x23,0x87,0x63,0x42,0xe,0x5a,0xa3,0x48,
0x9d,0x8a,0x35,0x35,0x35,0xd6,0xc8,0x6c,0x13,0x7b,0xb9,0x3,0x1c,0x1c,0xe,0x15,
0x15,0xb9,0x95,0x60,0xf5,0xc8,0x67,0x48,0xa7,0xd3,0x26,0xb4,0x75,0x8c,0xe0,0xc8,
0x61,0xa4,0x20,0x91,0x60,0x19,0x31,0xbf,0xb4,0xed,0x67,0x6d,0xb1,0x8c,0x17,0x5d,
0x7c,0x11,0xda,0xb2,0xd9,0x23,0x70,0x20,0xd,0x8f,0x3,0x4b,0xf1,0x28,0xe1,0xd4,
0xf1,0xed,0xa8,0x67,0x6c,0xbd,0x40,0x5,0xcf,0x4a,0x93,0x3c,0xda,0x51,0x77,0x88,
0x21,0x7e,0xb7,0xa1,0x88,0xcc,0xe8,0x20,0xf0,0x51,0x2a,0x17,0xad,0xc1,0xb9,0xe0,
0xc2,0xa1,0x86,0x20,0xf4,0xe1,0xb3,0xee,0xc8,0x52,0x50,0x10,0x49,0x38,0x8c,0x4c,
0x84,0x24,0xf2,0x54,0x98,0x80,0x57,0xf6,0x71,0xd6,0xbc,0x39,0xa8,0xf1,0x24,0x60,
0x8f,0xbe,0x32,0x78,0xcc,0x2c,0x7,0x69,0xb3,0xab,0x7b,0x7b,0x71,0xd3,0xb2,0x15,
0xf0,0x29,0xb8,0x68,0xa0,0x52,0xf7,0x38,0x39,0xb4,0xd9,0xe3,0x6d,0x39,0x6c,0xd9,
0xb2,0xc5,0x36,0xd1,0xb9,0xfe,0xfa,0x1b,0xb0,0x62,0xc5,0xa3,0x46,0x16,0x65,0x6a,
0x64,0xe,0xe,0x87,0x8a,0x74,0x26,0x83,0x53,0x4f,0x3d,0x15,0x97,0x5f,0x7e,0x39,
0x5e,0xf1,0xb2,0x97,0xd8,0xb9,0x46,0xbd,0x39,0xb7,0xd2,0xc8,0x43,0x10,0x94,0x6c,
0x99,0xa2,0x56,0x96,0xcf,0x73,0xce,0x39,0x13,0x2d,0x94,0x33,0xda,0xc0,0xe7,0x68,
0xf7,0x37,0x1e,0x33,0x72,0x28,0xf7,0xf5,0x61,0x4f,0x26,0x8b,0x3f,0x2c,0x7f,0x14,
0xdb,0x7a,0x7b,0x90,0x4a,0x32,0x5,0x95,0x93,0x63,0x4,0xcd,0xf1,0x26,0x87,0xcb,
0x2f,0x7f,0x26,0x1e,0x79,0x64,0x19,0xb3,0x57,0x4f,0x64,0xe3,0x63,0x83,0x73,0x43,
0x59,0x1d,0xe,0x7,0xb2,0x14,0xb2,0xd9,0xac,0xcd,0x91,0xa9,0xaf,0x4b,0x5b,0x1f,
0xd6,0xa2,0x45,0x8b,0x6,0xf7,0xdd,0x70,0xe4,0x30,0x72,0x50,0x81,0x8f,0x4c,0x0,
0x9c,0x31,0x73,0x6,0xce,0x9a,0x3a,0x19,0xa9,0x62,0x37,0xc9,0xbd,0xfe,0xa8,0x93,
0xc3,0x81,0xa5,0x78,0x94,0x90,0xae,0xa9,0x45,0x4b,0xda,0xc3,0x19,0x93,0xb4,0xce,
0x87,0x8f,0x3e,0x56,0xa,0x87,0xa3,0x87,0x62,0x29,0xea,0x67,0xf8,0xc2,0xe7,0xbf,
0x84,0x87,0x1e,0x5c,0x4a,0x4b,0x81,0xd6,0x2,0x3f,0x7,0x41,0x99,0xd,0x5a,0x95,
0x44,0x44,0xec,0x82,0xb,0x87,0x16,0x3c,0x4f,0xcb,0x8b,0x4b,0x50,0xfb,0xe8,0xed,
0x2b,0xe1,0x63,0x1f,0xff,0x34,0x12,0x49,0xed,0x23,0x96,0xb0,0xd,0x64,0x1c,0x46,
0xe,0xc2,0xb0,0x82,0xf6,0x5c,0x6,0x67,0x4d,0x9e,0x80,0x5c,0x18,0xc0,0xcb,0xd6,
0x52,0x51,0xac,0x7e,0x79,0x14,0x71,0xcc,0x2c,0x7,0x69,0xca,0xaa,0x58,0x3d,0x7c,
0xfc,0x6f,0x1e,0x7c,0x8,0x5b,0x6,0x8a,0xa6,0x51,0x9f,0xc,0x38,0x1e,0x96,0x43,
0xa1,0xac,0x65,0xa1,0x81,0x59,0xa7,0x9c,0x8a,0x42,0x21,0x1a,0x9d,0x24,0xcd,0xa1,
0xbd,0xbd,0xdd,0xb4,0xbd,0x63,0x54,0xac,0xe,0x63,0x14,0xd2,0xde,0x77,0xee,0xdc,
0x39,0x78,0x2e,0x45,0x63,0xd7,0xae,0x1d,0xc8,0x64,0x58,0x89,0xdd,0x3c,0x87,0x11,
0x85,0x1c,0x15,0xc0,0xa7,0x2d,0x98,0x8f,0x53,0x9a,0xea,0x91,0x65,0xbe,0x29,0xcf,
0xb5,0x9e,0xdd,0xa8,0x71,0x2b,0x45,0xc2,0x90,0x42,0x8c,0x87,0x4d,0x3d,0xfd,0xb8,
0x6d,0xe9,0x32,0x74,0x55,0xaf,0x1d,0xed,0x44,0x8c,0x34,0x1c,0x17,0xb7,0x52,0x42,
0x3b,0xab,0x85,0x68,0xa8,0x6f,0x42,0x36,0x9b,0xb7,0x3c,0x95,0x4b,0xe0,0x77,0xbf,
0xfb,0x9d,0x35,0x12,0x35,0x38,0x7,0x87,0x43,0x85,0x46,0x25,0x69,0xb,0x57,0xb9,
0x23,0x55,0x97,0xd4,0x67,0xa8,0x19,0xd2,0x8d,0x8d,0xf5,0x8e,0x1c,0x46,0x8,0x34,
0xa7,0x41,0x7d,0x40,0xf3,0x6a,0xf3,0xb8,0x90,0xf2,0xa3,0x81,0x82,0x46,0x93,0xdc,
0xa2,0xff,0x35,0xda,0x6c,0x94,0x90,0x83,0x44,0x53,0x92,0xe6,0x8f,0xcf,0xd0,0xc7,
0x37,0xdc,0xbf,0xf2,0x71,0x2c,0xed,0xdc,0x63,0xdf,0xe9,0x95,0x63,0x99,0x20,0x8e,
0x7,0x39,0x8c,0xf6,0x9d,0xe0,0x1c,0x46,0x16,0xdc,0x4e,0x70,0x23,0x1f,0x71,0x3e,
0xbd,0x7a,0xfe,0x7c,0xb4,0x34,0xe4,0x91,0x36,0x1,0x92,0xb0,0xed,0x9a,0x95,0xe3,
0x47,0x5b,0xa2,0x1e,0x58,0x8a,0x47,0x9,0xb1,0x68,0xf2,0x78,0xa6,0xb5,0x3e,0x16,
0xcc,0x9a,0x85,0x94,0x55,0x0,0x7e,0xc3,0x83,0x9,0x4b,0x9,0x30,0x27,0xc4,0x1c,
0x1c,0x1c,0x1c,0x86,0x87,0x44,0x24,0xf,0x5a,0x1e,0x47,0xb2,0x72,0xf6,0xcc,0x99,
0x18,0x57,0x5f,0x4f,0xb9,0x4a,0x8b,0xc1,0x8f,0x67,0x43,0x1f,0x1b,0x1c,0x33,0x72,
0x30,0x52,0xd3,0xdc,0x6,0x2f,0x85,0xbc,0x97,0x40,0x7b,0x2e,0x85,0x8b,0xa7,0x4d,
0x43,0x2e,0x28,0xa2,0x94,0x2c,0xc3,0x4f,0x69,0xf5,0xf,0x7,0x7,0x7,0x7,0x87,
0x83,0x21,0x23,0xef,0x4b,0x32,0x89,0x90,0x66,0x42,0x73,0x32,0xc4,0xf9,0x4d,0xb5,
0xd0,0xc0,0xcf,0x44,0x2a,0x85,0x84,0x97,0xe5,0x1d,0xb6,0x73,0xc3,0x51,0xb7,0x1a,
0x84,0x63,0x46,0xe,0xc3,0x61,0x72,0x7b,0x1b,0xda,0x6a,0xeb,0x50,0x13,0x54,0xe0,
0x31,0xd1,0x11,0xe7,0x1d,0x8b,0x64,0x39,0x38,0x38,0x38,0x8c,0x7e,0x94,0x28,0xf9,
0x93,0x95,0x0,0xd9,0x72,0x9,0x67,0xcc,0x9a,0x8d,0xfa,0xb4,0x8,0xe1,0xf8,0xe0,
0xb8,0x92,0x43,0x43,0xc6,0xc3,0xb9,0x73,0xe7,0xa0,0xa6,0x1c,0xc0,0xd3,0x72,0x1a,
0x34,0x93,0x62,0x8a,0x70,0x38,0xf9,0xa0,0x7e,0x91,0xb1,0x1c,0x1c,0x1c,0x8e,0x14,
0x3e,0x2,0xa4,0xfd,0x2,0x66,0x36,0xd6,0x61,0xf6,0xf8,0x76,0x64,0x8e,0xa3,0xc8,
0x3e,0xae,0xe4,0x90,0xf4,0xcb,0x68,0xcf,0xd7,0xe2,0xb4,0xc9,0xd3,0x91,0x2a,0x87,
0xb6,0x7,0x1,0x8e,0x42,0x47,0x94,0xc3,0xe8,0x84,0x3a,0xd7,0xe2,0xe5,0x1a,0xc6,
0x5a,0x18,0xcb,0x3,0x2e,0x1c,0x8e,0x1f,0xe4,0x32,0xaa,0xd,0x2b,0x38,0x7b,0xc6,
0x4c,0xe4,0x10,0xda,0xce,0x9b,0xc7,0xb,0xc7,0x95,0x1c,0xd2,0x89,0x10,0xa9,0x30,
0xc4,0xbc,0x69,0x53,0x90,0x4f,0x69,0xc8,0x9c,0xae,0x4a,0xc3,0x8a,0xc2,0xd0,0x3f,
0x87,0xb1,0x85,0xa1,0x9a,0xb4,0x46,0x5d,0xf4,0xf5,0xf7,0x31,0xf4,0xa3,0x7f,0x60,
0x6c,0x86,0xde,0xde,0x5e,0xf4,0xf5,0xf5,0xd9,0x8,0xb2,0x18,0xce,0x9a,0x70,0x38,
0x38,0xaa,0x72,0x50,0x75,0xa4,0x1a,0xec,0xa,0xeb,0xcf,0xec,0xa9,0x53,0xd0,0x52,
0x93,0x53,0xc3,0x39,0xae,0x12,0xfb,0x98,0xd,0x65,0x1d,0x16,0xb6,0xde,0x78,0x12,
0x7e,0x25,0x81,0x95,0x9d,0x7b,0xf0,0x87,0x87,0xee,0x47,0x22,0x13,0xd,0xc3,0x14,
0x2,0x1e,0x34,0x4,0x34,0x19,0x52,0xa3,0xac,0x1c,0x57,0xde,0x3a,0xaa,0x70,0x43,
0x59,0x87,0x47,0x34,0xb1,0x6a,0x17,0x3e,0xfc,0xd1,0x8f,0xd8,0xb0,0xc6,0x93,0x41,
0x58,0x36,0x37,0x37,0xe3,0xd5,0xaf,0x7e,0x35,0x9e,0xf9,0xcc,0x67,0x56,0x1b,0x7d,
0xf5,0x8b,0x11,0x6,0x37,0x94,0xf5,0x44,0x43,0xb3,0x15,0x94,0xcf,0xd1,0xe6,0x3d,
0x48,0x69,0xc3,0x1e,0x60,0x46,0x53,0x6,0x97,0x9e,0xbe,0x8,0x2d,0xfc,0xd6,0x43,
0xc0,0x76,0xaf,0xbc,0x22,0x51,0x1c,0x7,0x1c,0x67,0x72,0x50,0x72,0x13,0x24,0x7,
0x60,0xf,0x5f,0xfb,0xc0,0x9a,0x55,0x78,0x6c,0xfb,0x2e,0x73,0x2f,0x69,0x83,0xfc,
0xbd,0xd,0x47,0x1f,0x1c,0x39,0x3c,0x11,0x46,0x23,0x39,0x74,0x75,0x75,0xe1,0x1d,
0xef,0x78,0x7,0xd6,0xac,0x5b,0x6b,0x42,0x41,0xee,0x97,0xb1,0x8a,0x38,0x6d,0x9a,
0x98,0x98,0xcb,0xe5,0xf0,0xcf,0xff,0xfc,0xcf,0x58,0xbc,0x68,0xb1,0xd5,0xec,0x91,
0x8,0x47,0xe,0x27,0x18,0x6c,0xaf,0xca,0x35,0xc9,0x8d,0x50,0x4a,0x34,0x3f,0x2b,
0x5f,0x5e,0xbc,0x70,0x1,0xa6,0x35,0x35,0xc3,0xb3,0x3c,0xa2,0xfc,0x54,0x59,0x24,
0x32,0xd1,0x6f,0x8e,0x31,0x8e,0x6b,0xeb,0x14,0x37,0x54,0x28,0xd0,0x34,0xc2,0x35,
0xcf,0x44,0x2e,0x9c,0x32,0x15,0x19,0xf1,0x85,0x8d,0xd7,0x8d,0x28,0x41,0xab,0xd,
0x4a,0xb8,0x3a,0x8c,0x3d,0xdc,0x7a,0xeb,0xad,0x58,0xb3,0x66,0x8d,0x9,0x4c,0xcd,
0xc8,0x15,0x81,0x8d,0xe5,0x20,0x82,0xd0,0x51,0xa4,0xfd,0x81,0xf,0x7c,0x80,0x9f,
0x47,0x2a,0x35,0x38,0x8c,0x1c,0xb0,0xee,0x84,0x65,0xa4,0xfd,0x32,0x16,0x4f,0x9b,
0x4e,0xcb,0xa1,0x19,0x69,0xca,0x43,0x6d,0xf9,0x19,0xed,0xb,0x7d,0x24,0x2a,0xe5,
0xe1,0xe1,0xb8,0x5a,0xe,0x95,0x80,0x9,0x27,0x29,0x88,0x5,0xac,0x1,0xf1,0x6f,
0xc5,0xce,0x1e,0xdc,0xb5,0xe2,0x11,0xf4,0xa5,0xf8,0x89,0x5a,0x85,0x47,0xb2,0x90,
0x8e,0x22,0xcd,0x78,0xb4,0xc2,0x59,0xe,0x7,0x42,0x82,0xf2,0xb3,0x9f,0xfd,0x2c,
0x6e,0xb8,0xe1,0x6,0xe6,0x42,0x14,0x37,0xb9,0x5c,0xa4,0xed,0x8d,0x45,0xc8,0x5a,
0xd0,0x86,0xfd,0x2a,0x87,0x58,0x2b,0xbe,0xe1,0xfa,0xeb,0xd1,0xda,0xd2,0x6a,0xe7,
0x23,0xd,0xce,0x72,0x38,0xf1,0xb0,0xbc,0x4b,0x4,0xc8,0x90,0x18,0x26,0x66,0x6b,
0x70,0xf9,0x19,0x67,0xa3,0x31,0xa3,0xab,0xda,0xb,0x5a,0x2d,0x5c,0x82,0xd3,0x3e,
0x1e,0x17,0x1c,0x5f,0x72,0xa0,0x30,0xfb,0xff,0xed,0x7d,0x59,0x8c,0x64,0xd7,0x79,
0xde,0x77,0xd7,0xaa,0xea,0x65,0x7a,0x7a,0x99,0x9e,0x5e,0x66,0xe9,0x9e,0x85,0xd3,
0xcd,0xd9,0xb8,0x98,0x9b,0x68,0x52,0xe2,0x22,0x93,0x94,0x13,0x4,0x91,0xf2,0x60,
0x20,0x8,0x10,0x5,0x10,0x62,0x38,0x4f,0x81,0x5e,0x14,0x20,0x1,0x12,0x29,0xa1,
0xd,0x48,0xb2,0x1f,0x82,0x3c,0x28,0xb,0x14,0xb,0x79,0x89,0x65,0xc7,0x91,0x65,
0x3d,0xd8,0x26,0xcd,0xc0,0x89,0x19,0x47,0xb4,0x6c,0x51,0x24,0x47,0x24,0x35,0x33,
0x1c,0x52,0x9c,0x7d,0x7a,0x7a,0x99,0xde,0xaa,0xee,0x96,0xef,0x3b,0xb7,0xaa,0x7b,
0x38,0x9b,0x7a,0xa9,0xee,0xae,0xaa,0x3e,0x5f,0xcf,0x99,0x7b,0xeb,0xd6,0xad,0xaa,
0x7b,0xcf,0xfd,0xff,0xff,0xfb,0xff,0xf3,0x9f,0x45,0x7f,0x46,0xe,0x24,0x10,0x2c,
0xd3,0x8e,0x8f,0x1f,0x9d,0xfe,0x10,0x6f,0x5d,0xf9,0x18,0x71,0xe0,0x99,0xd5,0x8d,
0x9c,0x8c,0x1e,0x97,0x25,0x87,0x7b,0xa2,0xd9,0xc8,0x41,0x46,0xe7,0x2b,0x5f,0xf9,
0xa,0x5e,0x7b,0xed,0x35,0x5e,0x6a,0x3e,0xf,0xcc,0x6f,0xfc,0xb3,0xdf,0xc0,0x43,
0xf,0x3d,0x54,0x3d,0xa3,0xb5,0xd0,0xd1,0xd1,0x81,0x2f,0x7d,0xe9,0x4b,0x98,0x9c,
0x9c,0x34,0xcf,0x42,0xc6,0xf7,0xbb,0xff,0xfd,0xf7,0x30,0x30,0x30,0x50,0x3d,0xa3,
0xb1,0x60,0xc9,0x61,0x6b,0xa1,0x7a,0x53,0xf1,0x10,0xa3,0x58,0x2e,0xe3,0xb9,0xf1,
0xe3,0x38,0x44,0x47,0x22,0x2e,0xe4,0x96,0x43,0x13,0xeb,0xf9,0xd9,0xe6,0x92,0xc3,
0xa6,0x5a,0x60,0x87,0x61,0x75,0xde,0xcd,0x8f,0xc5,0xa3,0x10,0x6,0x21,0xda,0xb3,
0x8,0x47,0x47,0x6,0x51,0x50,0x9b,0x53,0x94,0x18,0xc3,0xa1,0x3a,0xb0,0x68,0x2d,
0x48,0xf9,0x65,0x4,0x8c,0x21,0xe0,0x6b,0xad,0x5a,0x97,0xc6,0x9,0xe2,0x4a,0xd4,
0x92,0x45,0xf9,0x15,0x41,0xf7,0xdb,0xca,0xb9,0x15,0x8b,0xfa,0x20,0x35,0xce,0x5c,
0x6,0x2f,0x8a,0xf1,0xc0,0xe1,0x3,0xd8,0xd3,0xdf,0x4d,0xfb,0x98,0x98,0xf1,0xcf,
0x1,0x8b,0xa6,0xcb,0xc8,0x15,0xc7,0x9c,0xbe,0x29,0xd8,0xdc,0x84,0xf4,0x9d,0xc0,
0xca,0x98,0xa5,0xa1,0x38,0x37,0x3b,0x8b,0xbf,0x78,0xfb,0x6d,0xdc,0x88,0x2a,0x28,
0x14,0x8a,0xac,0xa7,0xe6,0x55,0x28,0x1b,0x39,0xdc,0xe,0x19,0xc8,0xaf,0x7d,0xed,
0x6b,0xf8,0xc1,0xf,0x7e,0xb0,0xe4,0x25,0x8e,0x8f,0x8f,0x9b,0xa6,0xa5,0x56,0x44,
0x10,0x6,0xf8,0xcb,0xd7,0x5f,0xc7,0xfc,0xfc,0xbc,0xf1,0xc6,0xb5,0x90,0xce,0xef,
0x7f,0xf7,0xbb,0xe8,0xeb,0xed,0xab,0x9e,0xd1,0x58,0xb0,0x91,0xc3,0xd6,0x42,0xf6,
0x21,0x4d,0x22,0xec,0x65,0xc4,0xf9,0xd9,0x7,0x4e,0xa2,0x3d,0x49,0x10,0x2a,0x31,
0x1d,0x6e,0x4e,0xcf,0xa4,0x3b,0x61,0xeb,0xc9,0x21,0x61,0xa5,0x50,0x2e,0x16,0x18,
0x55,0xbc,0xfe,0xb3,0xd3,0xf8,0xe9,0xa5,0x8b,0x34,0xac,0xe2,0x49,0x4b,0xe,0xf7,
0x42,0xb3,0x91,0x83,0xf0,0xed,0x6f,0x7f,0x1b,0xdf,0xfa,0xd6,0xb7,0xaa,0xd1,0x23,
0x23,0xc4,0x6,0xbc,0xc6,0x7a,0x21,0x91,0x31,0xe5,0x3d,0x6a,0x6d,0xd,0x6d,0x65,
0x74,0x5f,0xfd,0xb3,0x57,0x6e,0x5a,0x59,0xad,0xb1,0x60,0xc9,0x61,0x6b,0x20,0x1d,
0x50,0xd1,0x22,0xca,0x41,0x79,0x11,0x2f,0x3e,0xfe,0x4,0xf6,0xb6,0xb7,0x21,0xe0,
0x31,0xc6,0xd6,0xac,0xca,0xad,0x93,0x97,0x2d,0xb7,0xc0,0x31,0x49,0x41,0xcd,0x48,
0x45,0x56,0xc6,0x89,0xfd,0xfb,0xd1,0x57,0x68,0x87,0x9b,0x77,0x5e,0xb2,0x68,0x31,
0xbc,0xf4,0xd2,0x4b,0x66,0x31,0xa2,0x56,0x27,0x6,0xa1,0x46,0x80,0xea,0xb3,0xae,
0xb5,0x11,0xbe,0xfc,0xe5,0x2f,0x1b,0x3,0x6c,0x61,0x71,0x33,0x44,0x8c,0x82,0x9f,
0xa4,0x78,0xfa,0xe8,0x31,0xf4,0x87,0x5,0x4,0x74,0xfa,0xe4,0x30,0x57,0xb6,0xb8,
0x77,0xdb,0x96,0x47,0xe,0x5a,0x6,0xdf,0xa3,0x57,0xe2,0xd1,0xe7,0x98,0x63,0x8d,
0x4c,0x54,0x52,0xfc,0xe9,0x9b,0x7f,0x8b,0x59,0x7a,0x17,0x79,0xd5,0x68,0xc,0x4,
0x8d,0x9,0xf7,0x9a,0x25,0x96,0xb0,0x91,0xc3,0xed,0x90,0xb1,0x94,0xa1,0x7c,0xe3,
0x8d,0x37,0xf0,0xcd,0x6f,0x7e,0x13,0x33,0x33,0x33,0xf9,0x60,0x9f,0x56,0x85,0x14,
0x9b,0xcf,0xa0,0xbd,0xbd,0x3,0x5f,0xf8,0xc2,0xe7,0xf1,0xc5,0x2f,0x7e,0x91,0x24,
0x51,0x31,0xb9,0x96,0x46,0x84,0x8d,0x1c,0x36,0x11,0xd2,0x4d,0x89,0x87,0x6a,0x8b,
0xfb,0xe,0x89,0x61,0xb4,0xb7,0x17,0xcf,0x1e,0x39,0x82,0x12,0xdf,0x60,0x15,0x19,
0xfb,0x11,0xf1,0x1c,0xbd,0xde,0x2a,0x6c,0x7d,0xb3,0xd2,0x4d,0xa8,0x19,0x8b,0xbf,
0xb9,0x74,0x11,0x7f,0xfd,0xb3,0x33,0x14,0xa4,0x0,0x15,0x1a,0xc1,0x48,0xd1,0x5,
0x2b,0xc9,0x6f,0x30,0x83,0x77,0x37,0x58,0x72,0xb8,0x1d,0x32,0x0,0x32,0x3c,0x7a,
0xc6,0xba,0x4e,0x8d,0x75,0x10,0xea,0x61,0x14,0x1a,0x15,0xba,0x47,0xdd,0x73,0x5b,
0x5b,0x9b,0x31,0x82,0x32,0xc0,0x8d,0xf6,0x5c,0x6a,0xb0,0xe4,0xb0,0x79,0x50,0x5d,
0x66,0x6e,0x4a,0xa7,0x37,0x31,0x53,0x72,0xf7,0x38,0x1,0x5e,0x7a,0xf4,0x31,0x74,
0xfb,0x8d,0xd5,0xe4,0x78,0xfb,0x53,0xdc,0x42,0x48,0x40,0x54,0x8e,0xf6,0xf,0xe1,
0xe8,0xee,0x21,0x44,0x69,0x19,0x65,0xd,0x7c,0x20,0x82,0x7c,0x63,0xd1,0xa4,0x50,
0xe4,0x20,0x23,0xa0,0xad,0x92,0xb3,0x32,0x98,0x22,0x31,0x8d,0x7,0x68,0xd5,0xa2,
0xee,0xac,0xba,0x57,0xa1,0x91,0x89,0xc1,0x62,0x73,0x61,0x5a,0x42,0xc8,0x85,0x32,
0x6d,0x6d,0xdc,0x79,0x74,0x7c,0x1c,0x25,0x3a,0x7b,0x8d,0x86,0x86,0xba,0x22,0x19,
0xe,0x15,0x55,0xd8,0x3,0x7,0x46,0xd0,0xdb,0xb1,0x83,0xde,0xb5,0x52,0xd3,0xac,
0x4c,0x4b,0xe,0x2d,0x1,0x19,0xc8,0x9a,0x91,0xac,0x39,0x3,0xad,0x5c,0x24,0xcf,
0x37,0xdf,0xb3,0x85,0x85,0x4c,0x99,0x93,0x38,0xf0,0x2a,0x9,0x8e,0xc,0xd,0x63,
0xa0,0xb3,0x13,0x21,0xa3,0xb3,0x46,0x43,0xe3,0xd1,0x95,0xc0,0xc8,0x36,0x64,0xf8,
0xf9,0xe4,0xd8,0x38,0xba,0x22,0x56,0x64,0xcc,0x30,0x4c,0xd,0x71,0x16,0x16,0x16,
0x16,0x4d,0xe,0xd,0x66,0xb,0xe2,0xc,0x87,0x6,0xf6,0x60,0x6c,0x64,0x4,0xbe,
0x7a,0xe0,0x38,0x8d,0x97,0x7f,0x6b,0x48,0x8b,0x1b,0xb1,0xa2,0x7c,0xcf,0x41,0x7f,
0xa9,0xd,0x8f,0x1c,0x19,0x47,0xc0,0x10,0x2c,0x75,0x48,0x10,0x35,0xf,0xcc,0x78,
0x61,0xb5,0x62,0x61,0x61,0x61,0xd1,0x98,0x30,0xb9,0x9a,0xaa,0xbd,0xd2,0x9f,0xb2,
0x8f,0x5e,0x16,0xa1,0xaf,0xbd,0x88,0xa3,0xa3,0xfb,0x51,0x62,0x74,0xe9,0x39,0x9a,
0x81,0xb5,0xf1,0x72,0x6f,0xd,0x49,0xe,0x1,0x2f,0x4b,0x69,0x31,0xd,0xff,0xd8,
0xdf,0xd7,0x85,0x43,0x83,0xbd,0x70,0xa2,0x39,0x53,0xb1,0x99,0x92,0x57,0xdc,0xea,
0xc2,0xf3,0x3e,0x4c,0x16,0x16,0x16,0x16,0x8d,0x9,0x7,0x9,0x6d,0x55,0x6a,0x8a,
0xd2,0xa,0xb1,0x9b,0xa1,0xe0,0x46,0x78,0xfa,0x81,0x23,0xe8,0xa3,0xd7,0x5b,0x62,
0x14,0x41,0x7a,0x40,0xb6,0x89,0x13,0xea,0xad,0x14,0x8d,0xd9,0x56,0x63,0x48,0x94,
0x95,0x46,0xdb,0x5f,0x64,0xb4,0xf5,0xe8,0xe8,0x41,0x8c,0xf5,0xed,0xe6,0x91,0x58,
0xfd,0x5e,0x91,0xf2,0xaa,0x4d,0xbb,0x9d,0xb2,0x3a,0x16,0x16,0x16,0x16,0xd,0x8a,
0xc4,0x75,0x11,0xd1,0xee,0x27,0x9a,0x6e,0x3b,0x8e,0xe0,0x2f,0x2c,0xe0,0xc9,0xb1,
0x63,0xe8,0x76,0xb,0x8,0x1b,0x7c,0x16,0x88,0x86,0xbc,0xba,0x3c,0x2e,0xc8,0xf7,
0xa,0xae,0x83,0x9d,0xa4,0xdc,0xc7,0xf,0x1f,0x46,0x17,0xe9,0x21,0x34,0x7c,0xc0,
0x8a,0xae,0x12,0x88,0xc5,0x32,0x94,0xfc,0xd4,0x8,0xdc,0xda,0xc0,0x1a,0xb,0x8b,
0x5f,0x84,0x5a,0xe2,0x5c,0x5d,0x58,0x6b,0xfb,0xb5,0xe3,0x9a,0x56,0xdd,0x62,0x7d,
0x50,0x97,0x73,0x8d,0x79,0x51,0xad,0x86,0x69,0x8c,0x87,0xf7,0x8f,0x62,0xb4,0xbb,
0xf,0x5,0x87,0xf5,0x4d,0x7d,0x65,0x45,0x9b,0xba,0x56,0xa7,0x9b,0x46,0x43,0x43,
0x92,0x43,0x9e,0xb8,0x67,0x65,0xe9,0xea,0x18,0x86,0x69,0x91,0x8b,0x1d,0xbe,0x87,
0x17,0x4e,0x3c,0x84,0x9d,0xae,0xcf,0x43,0x6a,0xbd,0xcb,0xbb,0x84,0x59,0x2c,0xc3,
0x8,0x19,0x5,0x4e,0x4a,0x2d,0x65,0xb7,0xc5,0x96,0x95,0x96,0x9b,0xa7,0xf5,0xd0,
0x6b,0xe5,0xf6,0xe2,0xea,0x58,0x14,0x8b,0x75,0x20,0xd5,0x20,0x37,0x9a,0xb1,0x34,
0xc1,0x7d,0x3,0x43,0xf8,0xa5,0xbd,0x23,0x66,0x7d,0x6,0xb3,0xea,0x25,0x8b,0x46,
0x42,0xcb,0x8a,0x35,0xa2,0x25,0x6b,0xa8,0x41,0x70,0x4b,0xd0,0x15,0x89,0x0,0xc,
0xe3,0xe6,0x5e,0xb0,0xd6,0x82,0x88,0x59,0x93,0x67,0xa6,0x27,0xf1,0xda,0x3b,0x3f,
0x41,0xd9,0xf,0x18,0xb2,0x51,0xb0,0x79,0xbc,0x6,0xb5,0x32,0xe9,0xd5,0x56,0xcf,
0xcb,0xb4,0x19,0x83,0xe0,0x12,0xde,0xa5,0x9e,0xdc,0xfe,0x7d,0x23,0x98,0x9b,0x5f,
0x30,0x37,0xaf,0x47,0x79,0xe4,0xc8,0x11,0x74,0x75,0x75,0x55,0xcf,0xb2,0xb0,0xb8,
0x37,0x6a,0xea,0xaf,0xc1,0x68,0x6f,0xbe,0xf9,0xa6,0x21,0x86,0x38,0x89,0xc,0x59,
0x9c,0x3b,0x77,0x16,0x1d,0xed,0x6d,0x54,0x28,0x25,0x55,0x57,0x66,0xc0,0xf2,0x6f,
0xbb,0x5d,0xff,0xb6,0xc3,0x20,0x38,0xe9,0xf8,0xf2,0x5d,0x54,0x33,0xa2,0x2e,0xef,
0x4d,0xeb,0x33,0xb4,0xb5,0xe1,0xb9,0x93,0x27,0xd1,0x6d,0xf2,0xb,0x3c,0xd7,0xcb,
0xcf,0x54,0xc4,0xa0,0xda,0x5a,0xff,0xdd,0xd7,0x1f,0x8d,0x49,0xe,0x77,0x82,0xc8,
0x22,0x4b,0x50,0x66,0x98,0xf6,0xde,0xd5,0xcb,0xf8,0x8b,0x77,0x4f,0x61,0xde,0x57,
0x42,0x67,0x79,0xd6,0x42,0xdd,0x88,0x49,0x43,0x64,0x5b,0x9b,0xdc,0xd9,0xc,0x72,
0x98,0x5b,0x5c,0x60,0x84,0x50,0xc0,0x6f,0xff,0xf6,0xef,0xe0,0x37,0x7f,0xf3,0xb7,
0xe0,0x91,0x28,0x13,0x12,0xa5,0x22,0x7,0xb,0x8b,0xf5,0x20,0x43,0x84,0xc7,0x1e,
0x7b,0xc,0x7f,0xfc,0xc7,0xdf,0x27,0x49,0x50,0xa1,0x44,0xe,0x74,0xcc,0xf2,0xc6,
0x91,0x7b,0x23,0x37,0x26,0xdb,0x93,0x1c,0xaa,0x4d,0x1e,0x6,0x46,0xdb,0x75,0x4f,
0xd9,0x3c,0xfa,0xbc,0x22,0x5e,0x7a,0xf8,0x11,0x33,0x2,0xda,0x24,0xa6,0xd,0x21,
0x34,0xbe,0x9e,0x36,0x8d,0x25,0x31,0xc6,0x95,0xc4,0xa0,0xb,0xde,0xd3,0xd7,0x8f,
0xfb,0xf7,0xee,0x43,0x1b,0x85,0x2c,0xe2,0x81,0x5a,0x51,0x88,0x26,0xc3,0xbc,0x1d,
0x10,0x86,0x6a,0x23,0xce,0xf0,0xeb,0xbf,0xfe,0x4f,0xf1,0xc8,0x23,0xf,0x9b,0x75,
0x67,0x1d,0x73,0xf3,0x8a,0xb4,0x6c,0xb1,0x65,0xed,0xa5,0xaf,0xaf,0xf,0x5f,0xfd,
0xea,0x57,0xb9,0xbf,0x4d,0x94,0xa9,0x4e,0xa8,0x69,0x5f,0x4c,0xbd,0x54,0x2,0x5a,
0x1d,0x68,0xba,0x2a,0x29,0x9e,0x18,0xbb,0x1f,0x25,0x1a,0xa7,0x7c,0x9,0x64,0x52,
0x83,0xf1,0x60,0x1b,0x1f,0xcd,0x13,0x39,0x54,0xa1,0x45,0x31,0xca,0xac,0xdb,0xd9,
0x2c,0xc6,0xff,0xfb,0xc9,0x8f,0x71,0x76,0x36,0x42,0x45,0x8c,0xed,0x3a,0xf0,0xf8,
0x64,0x34,0x24,0x3d,0xd9,0xe2,0x6e,0x61,0x9b,0x11,0x39,0x68,0x5e,0x16,0xe3,0xc8,
0x65,0x2e,0xae,0x5d,0x9b,0xc4,0xd7,0xbf,0xfe,0xd,0xfc,0xc9,0x9f,0xfc,0x29,0x16,
0xe6,0x17,0x18,0x41,0xd4,0xc7,0x13,0xb3,0xd8,0x3e,0x90,0x7c,0x16,0xc2,0x10,0xc7,
0x8f,0x9f,0xc0,0xcb,0x2f,0xff,0x5b,0x1c,0x38,0x78,0x0,0x51,0x54,0x61,0x74,0x4a,
0x29,0xb5,0x91,0xc3,0x8a,0x90,0xd2,0xe,0xc9,0x41,0xcd,0xb4,0x9a,0x1b,0xeb,0x2a,
0x8c,0x13,0xbc,0xc4,0xfa,0xdc,0xd5,0xd5,0x85,0x2,0x5f,0x2b,0x57,0x6a,0xa0,0x5b,
0x6d,0x2,0xfd,0x6c,0x1a,0x72,0x58,0xba,0xc8,0x94,0xac,0x9c,0x26,0x88,0xbc,0xc,
0x15,0x6e,0x5f,0x7d,0xeb,0x2c,0x2e,0xce,0x4e,0x61,0x91,0xaf,0xc5,0xca,0xdb,0x87,
0x1c,0xe2,0x5c,0xc8,0xa8,0x88,0xe5,0xc5,0x98,0xe1,0xbf,0x6f,0x96,0xa4,0x8c,0xa2,
0xd8,0x28,0x9a,0x6d,0x5e,0xb2,0x58,0xd,0x64,0xa4,0x35,0x1f,0x54,0x67,0x67,0x27,
0x4a,0xc5,0x12,0xca,0x95,0xb2,0x69,0x52,0xf2,0x34,0x33,0x81,0x25,0x87,0x15,0x41,
0x13,0x84,0xaa,0xae,0x34,0xc8,0x2d,0x98,0x99,0xc3,0x33,0xc7,0x4f,0xe2,0xc8,0xae,
0x5e,0xea,0xa2,0xf2,0x81,0xaa,0x4b,0xb3,0x9e,0x5b,0x8e,0xf5,0xdf,0xee,0x86,0xa3,
0xe9,0xc8,0x81,0x17,0xcc,0xff,0x49,0x10,0x2c,0x62,0xea,0x89,0xd9,0x14,0xaf,0xbe,
0xfd,0x63,0x5c,0x49,0x22,0x1e,0x77,0x11,0x24,0x1e,0x62,0x12,0xc5,0x56,0xe2,0x4e,
0xe4,0x20,0x7a,0xd0,0x75,0x8b,0x1c,0xbe,0xff,0xfd,0x3f,0x22,0x39,0x1c,0xe5,0xd5,
0x2a,0x8,0x5d,0x1b,0x32,0xa,0x21,0x2b,0x83,0x7b,0x9a,0xd0,0x8e,0xd4,0xa3,0x7a,
0xa1,0x0,0x8a,0x84,0xbc,0x2d,0x5c,0x20,0xc4,0xa2,0x79,0x11,0xd3,0x68,0xcb,0xa3,
0x35,0x5d,0xa2,0x59,0x34,0x83,0x6e,0x4e,0xe,0x99,0x21,0x87,0x95,0x20,0xd7,0xbc,
0xe5,0x73,0x6b,0x7b,0xfb,0x46,0x8e,0x18,0x72,0x70,0xf9,0x7d,0x51,0x95,0x1c,0xfe,
0x49,0x53,0x93,0x43,0x55,0xa3,0xab,0x97,0xad,0xfd,0x44,0xfa,0x48,0xbd,0x2c,0xf1,
0xfe,0x9e,0xd8,0x77,0x0,0xc7,0xfa,0x87,0x19,0x8d,0xf1,0xd,0xde,0x9b,0x71,0xe,
0xe9,0xb4,0xd6,0xee,0x72,0xfd,0x77,0xbb,0xf1,0x68,0x1a,0xf7,0x52,0x95,0x69,0x2a,
0x54,0x42,0xe4,0x50,0x78,0x59,0xd1,0x1,0x7c,0x74,0xd3,0x0,0xbf,0xf8,0xc8,0xc3,
0xd8,0xc1,0x5b,0x9,0xbd,0x70,0xcb,0xa3,0x86,0xbb,0xc2,0xdc,0x40,0x7e,0xed,0x1a,
0xc7,0x61,0xa,0x85,0x69,0xad,0xc5,0x7c,0xa1,0x6,0xd1,0x70,0x57,0x6b,0x4,0x48,
0x99,0xe5,0xe9,0xf9,0x54,0x3e,0xe5,0x22,0x6c,0xb1,0x65,0xb5,0x45,0x4d,0x48,0x81,
0x2f,0x62,0x90,0xc0,0xd2,0x3,0x36,0x3d,0x6a,0x28,0x60,0xfa,0xc7,0xf7,0x57,0x52,
0x8c,0xc3,0x62,0x1c,0x97,0xaa,0xf3,0x22,0x4f,0x49,0xc5,0xc8,0xbf,0xbe,0xb7,0xba,
0xcb,0x43,0xcd,0xc,0x73,0xaf,0xbc,0x2f,0x6d,0xe5,0xa4,0x9a,0xfb,0x47,0x5,0x5,
0x12,0xc3,0xd1,0x81,0x21,0x1c,0xdf,0xbb,0x17,0xa1,0xb9,0x6f,0xe9,0xa3,0x4b,0x1d,
0x55,0x32,0xfa,0x13,0xd5,0xd0,0xf0,0x68,0x1a,0x72,0xb8,0x1b,0xfc,0xd0,0x33,0xc4,
0xf0,0xfc,0xb1,0x13,0x8,0x2b,0x8b,0x88,0x3c,0x2d,0x1f,0xd4,0xc,0x90,0x88,0xa8,
0xfa,0x6d,0xb1,0xa5,0x55,0xcb,0xcd,0x32,0xde,0x5a,0x30,0x11,0x3,0x6d,0xbf,0xf2,
0x9c,0x5a,0x4e,0x20,0x54,0xe1,0x81,0x63,0x83,0xc3,0x78,0x64,0xef,0x41,0xd3,0xc5,
0x3e,0x26,0xd1,0x36,0x33,0x9a,0x2e,0x21,0x7d,0x2b,0x94,0xfc,0x71,0x52,0xf,0xe5,
0x34,0xc3,0x47,0x8b,0xf3,0x78,0xed,0x9d,0x37,0x71,0xa3,0x9c,0x87,0xc6,0xa,0x57,
0xb7,0x62,0xcd,0xde,0x3b,0x36,0x2b,0x55,0x5d,0x25,0xad,0x61,0xf0,0x9d,0xdf,0xfd,
0xe,0xe,0x1c,0x1c,0xa5,0x97,0xdf,0xd4,0x55,0x6f,0x61,0xb1,0x62,0xfc,0xf2,0x53,
0xcf,0x62,0x6e,0x6e,0xce,0x34,0x7f,0xaa,0xb9,0x4a,0xb9,0x8d,0x2f,0xfe,0x87,0xe6,
0x6d,0x56,0x8a,0xbd,0x64,0x89,0x18,0x34,0x6b,0xb4,0x9a,0xbb,0xf7,0xec,0x6a,0xc7,
0x53,0x63,0xc7,0xd1,0x99,0x78,0xf0,0x49,0xc,0x15,0xda,0x0,0x4d,0x1a,0xba,0xfe,
0x3b,0xdb,0x1a,0x34,0x3d,0x39,0x20,0x8b,0x48,0x10,0xe,0x2a,0x24,0x7,0xad,0x1a,
0x77,0x65,0x7a,0xa,0xff,0xf3,0xad,0xf7,0xcc,0x5b,0x22,0x88,0x7a,0x8,0xdd,0x6a,
0x71,0x2f,0x72,0x10,0x59,0xe5,0x23,0x52,0x15,0xbe,0x5b,0x72,0xb0,0x68,0x5d,0xdc,
0xac,0x7b,0x53,0xd3,0x73,0xe6,0xb5,0x74,0xb2,0x15,0xc8,0x21,0x22,0x39,0xa8,0xf3,
0x8b,0x1f,0x25,0x28,0xa6,0x2e,0x6,0x77,0xf5,0xe3,0xb3,0x63,0x23,0x26,0xdf,0xa7,
0xae,0xaa,0x4b,0xcb,0xc1,0x72,0xb3,0x5,0x26,0xa8,0x2e,0x68,0x1,0x72,0x48,0x18,
0xe2,0x69,0xee,0x43,0x98,0xc4,0xac,0x7a,0x2c,0x9d,0xba,0x31,0x8b,0xbf,0x7e,0xfb,
0x14,0xe6,0xf8,0xf0,0x12,0x1a,0xe1,0x4,0x9a,0x15,0x71,0x25,0x7d,0x2d,0xd6,0xf,
0xfe,0x24,0x85,0x41,0x6d,0x90,0x29,0x3a,0xf9,0x83,0xff,0xe2,0x1f,0xfd,0x63,0xa4,
0x13,0xd7,0x78,0x9d,0xa9,0xf1,0x9a,0xcc,0xf2,0x9e,0xa2,0x33,0xbe,0xe7,0xae,0x63,
0x5,0x23,0xd,0xbd,0xbf,0x15,0xa6,0x89,0xb3,0xba,0x6f,0x61,0xb1,0x56,0x98,0xf6,
0x74,0xea,0x51,0x2e,0x4b,0xf9,0x1c,0x5,0x4a,0xa9,0xae,0x56,0xb6,0x34,0x77,0x50,
0xed,0x33,0x29,0xbd,0xe9,0xfc,0x3b,0xd4,0x99,0xc4,0xc1,0xc0,0xf0,0x1e,0x7c,0xe1,
0xdf,0x7d,0xc3,0x2c,0x19,0x2b,0xbd,0x68,0x54,0x72,0x50,0x55,0x48,0xaf,0x94,0x8f,
0xaf,0x15,0x35,0x29,0x79,0x9,0xf5,0x99,0x6f,0x78,0x71,0x8c,0xd1,0x1d,0xbd,0x78,
0xfc,0xc8,0x11,0xf4,0xfb,0xac,0x2b,0x57,0x85,0x9f,0xd1,0x9f,0x2c,0xab,0x6e,0x4b,
0xa5,0x9,0xd1,0xfc,0xe4,0x70,0x7,0xc4,0x69,0x8c,0xf,0xa7,0x6e,0xe0,0xd5,0x37,
0x4f,0xa1,0x5c,0x28,0x60,0x91,0xd1,0x85,0x3a,0x91,0x6d,0x6,0x3d,0x24,0x14,0x72,
0x11,0x83,0x19,0x0,0x43,0xad,0xfa,0x5f,0xbf,0xff,0x87,0xf8,0xde,0x7f,0xfd,0x2f,
0x8,0x29,0x30,0xa6,0x57,0x51,0xf5,0x1c,0x5d,0xc9,0xb2,0xea,0xac,0x1e,0x77,0xa2,
0x15,0x97,0x7,0xf9,0x33,0x16,0x16,0xeb,0x82,0x56,0x1d,0x90,0x84,0xd6,0xe8,0xc0,
0x6c,0x65,0x25,0xd7,0xa1,0x3e,0xe,0x2d,0xa6,0x71,0x8b,0x1c,0xf,0xe5,0xcc,0xc5,
0x93,0xcf,0x7d,0x16,0x27,0x7f,0xed,0x1f,0x1a,0x62,0x50,0x34,0x51,0xf,0x33,0xb4,
0x51,0xe4,0xa0,0xc1,0x6b,0xd2,0xb7,0x98,0xca,0xa5,0xa2,0x7a,0x8,0x22,0x39,0x9c,
0x19,0x6,0xbb,0x3a,0xf1,0xdc,0xb1,0x63,0xd8,0x41,0xd6,0xf0,0x7d,0xf3,0x91,0x96,
0x41,0x4b,0xda,0x12,0x27,0x5e,0xc4,0xd0,0xce,0xe,0x3c,0x71,0x62,0x1c,0x5e,0x65,
0x11,0xc5,0x2a,0x35,0x6c,0x6,0x6a,0x2a,0x25,0x55,0xa8,0x50,0xa8,0x9e,0xfe,0xdc,
0xe7,0xb0,0xf7,0xe8,0xfd,0x98,0xa5,0x94,0x2d,0x78,0x40,0x45,0x29,0x10,0x27,0x9f,
0xe3,0x7d,0x7d,0xd0,0xaf,0x7c,0xb2,0x28,0x82,0x92,0x5a,0xdb,0x62,0xcb,0x7a,0x8a,
0x97,0x6,0x64,0x4,0x59,0xba,0xdc,0x12,0x7a,0x75,0x30,0xdc,0x89,0x1b,0xa3,0x42,
0x57,0x5a,0x3a,0xd0,0x36,0x3c,0x8c,0x87,0x9f,0x7f,0xd1,0x34,0x27,0x89,0x14,0xb4,
0x6d,0x54,0xe8,0xce,0x6b,0x13,0xe4,0x9,0x4a,0x13,0x2a,0xd7,0x90,0x3a,0x65,0xc,
0xb5,0x17,0xf1,0xcc,0x7d,0x63,0xe8,0xe0,0x71,0x45,0xb,0xad,0x86,0x96,0x8c,0x1c,
0x90,0x96,0xf9,0xf0,0x1c,0x2c,0xc2,0xc3,0x99,0x89,0x29,0xfc,0xf0,0x9d,0xf7,0x30,
0xe3,0xe5,0x9,0x6a,0x61,0x63,0x93,0xd4,0x6a,0x3a,0xaa,0x9a,0xeb,0x34,0x41,0xc0,
0xbd,0x80,0x4,0xf5,0xbd,0x3f,0xf8,0x3d,0x7c,0x78,0xee,0x3,0x24,0x73,0xb3,0xb8,
0x76,0xee,0x23,0x54,0xa6,0x6f,0xf0,0x84,0xaa,0xc4,0xad,0x2,0x7a,0x5c,0x1a,0xac,
0xd4,0x3d,0x7a,0x18,0xae,0xee,0x83,0x4f,0x2f,0xcd,0x52,0xd3,0x8e,0xab,0xd1,0xe3,
0x16,0x16,0xeb,0x85,0x9b,0xf8,0x26,0xfa,0x55,0x4e,0x2c,0x88,0x13,0x5c,0x3e,0xf7,
0x21,0xa2,0x74,0x31,0x17,0xea,0x55,0x40,0x7a,0x16,0xc7,0x31,0xa,0x8c,0xde,0x3b,
0x46,0x46,0x35,0x89,0x1,0x86,0xe,0x1e,0xc6,0xb3,0x7f,0xe7,0xf3,0x24,0x8a,0x2,
0x22,0xb9,0xe5,0x75,0xc4,0x46,0x44,0xe,0xba,0x42,0xe9,0xb3,0x76,0x34,0xc2,0x59,
0x89,0x67,0x35,0x81,0xd,0xed,0xf4,0xf0,0x99,0xf1,0x7,0xd1,0x9d,0x79,0xac,0x27,
0xc7,0x10,0x48,0x75,0x2e,0xbd,0x96,0x41,0x8b,0x92,0x83,0x48,0x40,0x99,0x86,0x14,
0xb3,0x34,0x9a,0x57,0x6e,0xcc,0xe3,0x7b,0x3f,0x79,0x17,0x2e,0xe3,0x3e,0x11,0xc4,
0x46,0x92,0x83,0x22,0x87,0x1a,0x4c,0x1b,0x25,0xb7,0x6a,0x7b,0x74,0xa9,0x8,0x49,
0x5c,0x46,0xa9,0x12,0xe1,0xdb,0xdf,0xf8,0x1d,0xbc,0xf3,0x7f,0xff,0xa,0xc1,0x2a,
0x7b,0x2b,0xe9,0x51,0x49,0x30,0xf7,0xee,0xdd,0x8b,0x2f,0x7d,0xf3,0xdf,0xc3,0xf1,
0xf2,0xa9,0x95,0x95,0xd4,0xbb,0x76,0xed,0x5a,0xbe,0xce,0xb6,0x34,0xd0,0xc2,0x62,
0x1d,0xc8,0xb2,0x50,0x96,0x1,0x21,0x62,0xec,0x4c,0x32,0xfc,0xa7,0x97,0xbf,0x8e,
0xcb,0x17,0xde,0xd7,0x3b,0xf9,0x9,0x2b,0x84,0x9a,0x8b,0x94,0x53,0x18,0x19,0x19,
0xc1,0xdf,0xfb,0x57,0x2f,0x73,0x7f,0x91,0x3a,0xe8,0xa1,0xcc,0x48,0x3e,0xf5,0xa,
0x8,0xcc,0xc0,0xd5,0xfa,0x61,0x23,0xc8,0xc1,0x58,0x12,0x9a,0xb,0xa3,0xc3,0x51,
0x62,0x7a,0x26,0x75,0x77,0x77,0xe3,0xef,0x9f,0x38,0x88,0x82,0x4b,0x62,0x50,0x73,
0x92,0x93,0xeb,0xa1,0xd3,0x62,0xec,0xd0,0x92,0xe4,0x90,0xdf,0x11,0x1f,0xeb,0x52,
0xb2,0xda,0xc5,0x3b,0xd3,0x33,0xf8,0xdb,0x9f,0xbe,0x4b,0xb2,0x70,0xe8,0xb1,0xf0,
0x18,0x5,0xd3,0x27,0x49,0xd4,0xbf,0xb9,0x49,0xe2,0x94,0x7f,0xa7,0xf6,0xf4,0xfb,
0xba,0x1e,0x6e,0xf4,0xa,0x45,0x4a,0xd9,0xef,0xbe,0xfc,0x5b,0x78,0xef,0x7f,0xff,
0x25,0x8f,0xad,0x6c,0x51,0xf1,0x25,0x82,0xe1,0x56,0x1e,0x4a,0xf7,0x40,0x3f,0xfe,
0xf9,0x7f,0xfc,0x8e,0x49,0xec,0x89,0x2c,0xe6,0xe7,0x17,0x31,0x35,0x39,0x65,0xa2,
0x25,0xe3,0xe5,0x58,0x58,0xac,0x3,0xa9,0x16,0xa2,0x91,0xbc,0x31,0x7a,0xe8,0xa2,
0xf4,0xfd,0xe7,0x7f,0xf9,0x6f,0x30,0x7d,0xe9,0x74,0x55,0x86,0x57,0xe,0x39,0x62,
0xea,0x99,0x37,0x3c,0x3c,0x8c,0x5f,0xfd,0xd7,0xdf,0x24,0x39,0x94,0xf3,0xef,0x20,
0x69,0xa8,0xc5,0xde,0x63,0x64,0x5d,0x4f,0xac,0x97,0x1c,0x94,0x6b,0x91,0xea,0x4a,
0xdf,0xb4,0x95,0x19,0x71,0x32,0x17,0x4e,0xc2,0xeb,0xf5,0x79,0x2f,0x71,0x5,0x87,
0x7b,0xfa,0xf0,0xd8,0x91,0x31,0xf4,0x38,0x31,0xf5,0x4f,0xb7,0xc2,0xfb,0x90,0x66,
0xea,0xe4,0x16,0x73,0xcc,0x5a,0xb0,0xa5,0x2c,0x37,0xc4,0x1a,0x95,0xe8,0xb8,0x1,
0x9f,0x97,0x8f,0x80,0xfb,0x7,0xbb,0xda,0xf0,0xd4,0xb1,0x71,0x14,0x29,0x90,0x19,
0xbd,0x77,0x57,0x53,0x4c,0xe8,0x81,0xd6,0x1d,0xaa,0x52,0x9,0x89,0xc3,0x3d,0xb5,
0xd7,0x32,0xdc,0xe4,0xab,0x3c,0x48,0x70,0xcc,0x8c,0x8d,0xea,0xd,0xa2,0x26,0xa7,
0x95,0x22,0x17,0xd2,0xbc,0x24,0x54,0xb8,0x58,0x97,0xae,0x59,0x58,0x29,0xc6,0xf9,
0x2f,0xe5,0xbf,0xa6,0x9e,0x5a,0x9e,0x2d,0xb6,0xac,0xb7,0xa4,0x99,0xe9,0xa6,0x29,
0xb9,0x8b,0x69,0xf0,0x9c,0x75,0x18,0xbd,0x5a,0x5e,0x41,0x91,0xb3,0xbc,0x24,0x39,
0x63,0xe,0xbf,0xbf,0xde,0xc4,0x50,0x17,0xf0,0x36,0x53,0xe3,0x85,0xe5,0x3a,0x9a,
0x8f,0x7a,0x26,0x29,0xd0,0x7e,0x14,0xe2,0x4,0x87,0x76,0xed,0x22,0x31,0x1c,0x42,
0x37,0x75,0xcf,0xf5,0x2,0x46,0xfe,0x81,0x99,0xa9,0xc1,0x18,0x9c,0x16,0x8c,0xd8,
0x5b,0x92,0x1c,0xee,0x4,0x9f,0x21,0xed,0x60,0x7b,0x11,0x2f,0x3e,0xfe,0x4b,0xe8,
0x29,0x6,0x28,0xe8,0xd6,0x25,0xfd,0x16,0x16,0x16,0x16,0x84,0x89,0x18,0x8,0xf1,
0x98,0x92,0xce,0x21,0xf9,0xcb,0xa3,0x91,0x48,0x92,0x79,0x1c,0x1f,0x1c,0xc2,0x67,
0xe,0x1f,0xc1,0xe,0x92,0x41,0xa4,0x6e,0x81,0xdb,0x0,0xdb,0x86,0x1c,0x4a,0x7e,
0x1,0x25,0x32,0xfc,0xae,0xd0,0xc3,0xa7,0x8f,0xdf,0x8f,0x1e,0xcd,0x43,0x54,0x1d,
0x7b,0xd0,0xc8,0xbd,0x25,0x2c,0x2c,0x2c,0x36,0x7,0xc,0x9a,0x96,0xa2,0x74,0x5f,
0xd1,0x4d,0x25,0x41,0x29,0x4a,0x70,0x62,0xdf,0x30,0x1e,0x3e,0x38,0x82,0x76,0xda,
0x8f,0x80,0x16,0x33,0x68,0xb5,0xcc,0xf3,0x5d,0xb0,0x6d,0xc8,0x1,0x8a,0x15,0x32,
0x17,0x45,0x86,0x84,0xbb,0x8b,0x2e,0x5e,0x7c,0xec,0x1,0x74,0xb7,0x97,0xec,0x3a,
0xb9,0x16,0x16,0x16,0x6,0x37,0x93,0x3,0x48,0xc,0x4e,0x25,0xc6,0x83,0x7,0xe,
0xe3,0x53,0x23,0xa3,0xf0,0x93,0x98,0xef,0xf3,0x18,0xcb,0x76,0x99,0xf5,0x66,0x1b,
0x91,0x3,0x61,0x66,0x6c,0xf5,0x50,0xf2,0x42,0x74,0x3a,0x24,0x88,0xe3,0xc7,0x70,
0xbc,0xbf,0x97,0x47,0x22,0xfe,0x25,0xc8,0x34,0x50,0x87,0x45,0x6d,0xf9,0xa,0x32,
0xd5,0x9d,0x2f,0xad,0x96,0x75,0x83,0x92,0x97,0x27,0xc7,0xd5,0xed,0x2d,0x9f,0x95,
0xd5,0x74,0x8e,0x5e,0x41,0xf1,0x58,0x44,0x6c,0x9a,0x85,0x55,0x9,0x32,0x2f,0xd5,
0x7d,0x6c,0xf,0xef,0xc5,0x62,0xf3,0xe1,0x64,0x6a,0x4c,0xa1,0x16,0x48,0x5e,0x69,
0xc,0x35,0x46,0xc1,0x48,0x9b,0x8c,0xe2,0x2a,0xcb,0xd2,0xe7,0x1a,0xc,0xa9,0x1b,
0x51,0x1f,0x75,0x5f,0x2a,0xf9,0x5,0xaa,0xe7,0x91,0x19,0xc7,0x4d,0x7d,0x6f,0x63,
0x88,0xf0,0xcc,0x89,0xe3,0x38,0x39,0xb0,0x9b,0xe,0x65,0x86,0xd0,0x4c,0x55,0xab,
0xce,0x25,0x4a,0xf8,0x49,0xff,0x5a,0x1f,0xba,0xe3,0xed,0x1,0xf3,0x6c,0x29,0xaa,
0x9a,0x3a,0xd7,0x24,0xa9,0x3d,0xec,0xf4,0x5d,0x3c,0x71,0xdf,0x61,0x8c,0xed,0xee,
0x47,0x91,0x61,0x64,0x42,0xef,0x40,0x73,0xb2,0x9b,0x79,0x90,0x58,0x24,0x34,0x32,
0xe3,0x35,0xe1,0x59,0x3b,0xaa,0xdf,0x47,0x82,0xd0,0xe0,0x38,0x63,0xe8,0xf9,0xad,
0x89,0xcb,0xdf,0x5c,0x41,0x51,0x62,0xac,0xb6,0x6f,0x12,0x66,0xf5,0x20,0x2b,0xb,
0x8b,0xbb,0x40,0xd2,0x6e,0x12,0xc7,0xdc,0x91,0xb8,0xa9,0x7f,0xbf,0x96,0xbd,0x4c,
0xdc,0x35,0x94,0xea,0xe7,0x1a,0xd,0xc6,0x1,0xe4,0xb5,0xe5,0x4,0x98,0xeb,0xbc,
0xc6,0x30,0x78,0x51,0x8c,0x2e,0xea,0xe8,0x93,0xc7,0x8e,0x61,0x94,0x8e,0x63,0x28,
0x93,0xa1,0x1e,0x49,0x74,0xe8,0x5c,0x16,0x75,0x74,0x51,0x6f,0xab,0xed,0x80,0xed,
0x43,0xe,0x77,0x80,0xfa,0x22,0x14,0x58,0x9e,0xdc,0x7f,0x18,0x4f,0xec,0x1f,0x45,
0xa8,0xf8,0x81,0x5e,0x12,0x25,0xc7,0xa0,0xa6,0x1c,0xea,0xb9,0xb1,0x1e,0xd4,0xe6,
0x7b,0xf7,0xb2,0x14,0x41,0xe2,0x30,0x44,0xcd,0x7b,0x85,0x68,0x3a,0x81,0x95,0x16,
0x2f,0xcb,0x8b,0x89,0x3d,0xb8,0x6d,0x48,0x77,0xcc,0xa2,0x25,0x90,0x1a,0x63,0x9e,
0xc2,0xa7,0xb1,0xc,0xe8,0x4d,0x2b,0x9a,0xce,0x49,0x62,0xed,0xa5,0xd1,0x20,0x7,
0x2d,0x63,0xd1,0x4,0x99,0xb9,0x7e,0xf2,0x7e,0xa9,0x5b,0xfd,0x85,0x2,0x3e,0x77,
0xe2,0x21,0x1c,0xe8,0x20,0x45,0xf0,0xba,0xd5,0x33,0x70,0xbb,0x62,0x5b,0x93,0x83,
0xf2,0x4a,0x5,0xd7,0x41,0x7,0x23,0x88,0xa3,0x43,0x83,0xf8,0xf4,0xb1,0x71,0xec,
0xa4,0xd1,0xf5,0x63,0x46,0xc,0x8c,0x24,0x6a,0x95,0x53,0x1b,0x3a,0xbf,0x56,0x48,
0xf0,0x34,0x28,0xcf,0x78,0x60,0x69,0x8a,0xce,0x5d,0x7d,0x66,0x6,0x59,0xbe,0x61,
0x8a,0x96,0x10,0xbc,0x67,0xe1,0x5,0x98,0xc2,0xfd,0x42,0x58,0x42,0x5b,0x5b,0x7,
0x3d,0x98,0xfc,0xa2,0x5a,0x70,0x98,0x8a,0xc5,0x16,0x43,0xf2,0x4a,0x69,0x93,0xc8,
0x22,0xa2,0x1e,0x94,0xba,0xbb,0x91,0x26,0x3e,0xd2,0x78,0x75,0xc5,0x73,0x4a,0xfc,
0xb2,0x10,0x3,0xfd,0xfb,0x4c,0x6e,0x4f,0x32,0xdb,0x30,0xf2,0xba,0x34,0x3d,0x8,
0xff,0xa7,0x4e,0xb6,0x45,0x29,0xe,0x74,0x75,0xe1,0xf9,0x7,0x1e,0x40,0x6f,0xa9,
0x88,0x80,0x76,0xc1,0xa7,0x81,0x58,0x9a,0x5d,0x75,0x1b,0xa2,0x35,0x47,0x48,0xaf,
0x14,0x29,0xa3,0x4,0xf5,0x58,0xa2,0xa1,0xd6,0xa0,0x1c,0x4d,0xfb,0x3d,0xb1,0x50,
0xc1,0x1f,0xfd,0xf0,0xd,0x64,0x81,0x67,0x26,0xd9,0x4a,0x28,0x24,0xf2,0x2e,0xb4,
0xfc,0xe8,0x5a,0x11,0x7b,0x51,0x1e,0x7d,0x50,0x20,0xb5,0xee,0x75,0xb1,0x1c,0xe3,
0xb5,0x3f,0xfc,0x1f,0xb8,0x72,0xfd,0x82,0x79,0xff,0x17,0xf5,0x96,0x92,0x7,0xa3,
0x24,0x98,0x79,0x50,0xc5,0x0,0xbf,0xfc,0xec,0x33,0xd8,0x7d,0xf8,0x64,0x35,0x76,
0x70,0xb1,0xb0,0x50,0xc6,0xd4,0xe4,0x4c,0xfe,0x7a,0xfb,0xca,0xb2,0x45,0x9d,0xa0,
0xae,0x9a,0x21,0x5d,0x66,0x35,0x63,0x7a,0x5e,0x8a,0xf2,0xcf,0xcf,0xe3,0xff,0xfc,
0xf9,0x9f,0x19,0xc7,0x66,0x35,0x8,0x82,0xc0,0x4c,0xf5,0xf2,0xc2,0xb,0x2f,0x60,
0xaa,0xd4,0x55,0x3d,0x4a,0x11,0xdd,0x20,0x83,0xbb,0xda,0x41,0x70,0xb5,0x88,0x41,
0xfa,0x38,0xba,0xa3,0x1b,0x4f,0x9f,0x38,0x8a,0x2,0xd5,0xbc,0x22,0x7,0x91,0x36,
0x21,0xa0,0x33,0x66,0x82,0xa8,0x6d,0x1a,0x3d,0x6c,0x6f,0x72,0xa8,0x4e,0x99,0xad,
0xa,0x50,0x2d,0xa8,0x9d,0x35,0xe1,0xb1,0x89,0x38,0xc2,0x8f,0xde,0x7f,0xf,0x1f,
0x4c,0x4e,0xa0,0x4c,0x63,0x5c,0x26,0x39,0x14,0xcb,0xa1,0x31,0xd2,0xf2,0xa8,0x28,
0x33,0xfa,0x9f,0x9f,0xca,0x3d,0x8f,0x5f,0x4,0xd,0xa4,0xc9,0xd5,0x21,0x4f,0x75,
0xcb,0xd0,0x6b,0xba,0x6e,0x67,0xa5,0x2b,0x45,0x99,0xdf,0xad,0xee,0x92,0xac,0x2a,
0xbc,0x3e,0xfa,0x35,0xd5,0x23,0x96,0x1c,0x2c,0xea,0xb,0x75,0xc0,0x70,0x15,0xa9,
0xca,0x88,0xd3,0x80,0xfa,0x24,0x5,0xb5,0xbb,0xaf,0x16,0x35,0xd3,0x22,0x32,0x88,
0x15,0x1,0xdf,0xf4,0x7a,0x23,0x70,0x77,0x72,0x90,0xfe,0xe5,0x39,0x94,0x3c,0xd1,
0x4e,0xa7,0xcf,0x4f,0xe0,0x53,0x8f,0x44,0xc,0x9f,0x3a,0x7c,0x4,0x47,0x86,0x7,
0x49,0x6,0xbc,0x36,0xea,0x97,0xfa,0x2f,0xea,0x1a,0xd5,0xf4,0x6b,0xae,0x74,0x9b,
0xea,0xd4,0xf6,0x26,0x87,0x3b,0x20,0xa3,0xd1,0x2e,0xa7,0x11,0x66,0x19,0x45,0xbc,
0x71,0xee,0xc,0x4e,0x5f,0xbe,0x6c,0xc8,0xc1,0x43,0x9b,0x31,0xd2,0x35,0x15,0x91,
0xbc,0xd4,0x4c,0xfe,0xd6,0xc2,0xad,0x4e,0x9f,0x61,0xc9,0xc1,0x62,0x7b,0xe3,0x6e,
0xe4,0xa0,0x4e,0x25,0x35,0x23,0x67,0xdc,0x41,0xea,0x88,0x97,0x2e,0x60,0x87,0x1b,
0xe0,0xa9,0xfb,0x8f,0x62,0xa8,0x73,0x7,0xa,0x64,0xe,0x25,0x9c,0xc9,0xe,0xe6,
0x3c,0x8b,0x65,0x5b,0x67,0x51,0x3,0xa5,0x28,0xc8,0x3c,0x74,0xfa,0x5,0x3c,0x7a,
0x70,0xc,0x4f,0xdd,0x37,0x8e,0x9e,0x5,0x25,0x83,0x95,0xa8,0xce,0x57,0x74,0x33,
0x82,0x56,0x93,0x36,0xb,0xb,0x8b,0xc6,0x6,0x75,0x55,0xea,0x2a,0xdd,0x95,0xe,
0x4b,0x97,0x7,0x33,0x1f,0x2f,0x3e,0xf4,0x8,0xfa,0x4b,0x9d,0x8,0xc9,0x16,0x6a,
0x31,0xb3,0xb3,0x1a,0x7f,0x12,0x36,0x72,0xb8,0x5,0x4b,0xd5,0xc1,0xb0,0x32,0xa2,
0xc4,0xa8,0x9,0x69,0x7a,0xe6,0x6,0xfe,0xfc,0xd4,0xbb,0x98,0x8c,0xcb,0x58,0x54,
0x78,0xed,0xfa,0xa6,0x4f,0x74,0xde,0x28,0xb5,0xd5,0xb0,0x91,0x83,0x85,0x85,0x70,
0xd7,0x66,0x25,0xea,0xb1,0x86,0xc,0xa9,0xa7,0x9f,0x57,0x2e,0xe3,0xd8,0xfe,0x51,
0x3c,0x3e,0xba,0x9f,0xd1,0x82,0x26,0xcd,0xa3,0xc2,0x50,0xe7,0xb5,0x82,0x9b,0x60,
0xbd,0xe5,0x65,0xd8,0xba,0xb8,0x5,0x66,0xa0,0x5a,0xb5,0x4d,0x54,0x6b,0x31,0x14,
0xe2,0x18,0x3d,0x41,0x80,0x17,0x4e,0x3e,0x84,0x3d,0xed,0x5d,0xa6,0xfd,0x55,0x56,
0x58,0x9d,0x4a,0x2d,0x2c,0x2c,0x1a,0x1f,0xd2,0x55,0xc5,0xfb,0x45,0xcf,0xc5,0xd3,
0x27,0x1e,0xc2,0xc3,0xc3,0x23,0xf0,0x4c,0x8f,0x2c,0xb9,0x77,0xb9,0x33,0x28,0x6d,
0xb6,0x1a,0xfd,0x49,0xd8,0xc8,0xe1,0x16,0xa8,0x32,0x54,0x8c,0xa0,0x28,0x11,0xa7,
0xad,0x3c,0xb,0x1e,0x8d,0xc8,0xa5,0xef,0x9c,0x3f,0x8f,0xd7,0x4f,0xbf,0x8f,0x4a,
0x29,0xc4,0xa2,0xd7,0x86,0x30,0x4a,0x51,0x32,0xdd,0x4c,0x35,0x5b,0x6a,0xde,0xe4,
0xb4,0xd9,0x42,0xb6,0xb0,0xb0,0x88,0xc9,0xeb,0x93,0xbc,0x46,0xf5,0xdd,0xce,0x7f,
0x5d,0x53,0x9,0xaf,0x16,0x1a,0xe0,0x93,0x8b,0x3,0x8b,0x42,0x70,0x6e,0x35,0x22,
0xdb,0xc2,0x62,0x23,0x60,0x24,0x8c,0xf2,0xb6,0xb6,0x4,0xb5,0x63,0x66,0x44,0xd5,
0x22,0x57,0x9e,0xcf,0x6d,0x1c,0xa1,0xa3,0xb3,0x3,0x3b,0xba,0x8a,0x26,0x91,0xac,
0x2f,0xaf,0x50,0x27,0xb3,0xc0,0x47,0xa9,0x72,0x3,0x7d,0xc5,0x12,0x9e,0x1c,0x3f,
0x86,0xfe,0x8e,0xe,0x46,0xb,0xd4,0x14,0xfe,0xa6,0xf9,0xd3,0x4f,0xf3,0x5c,0x93,
0x7c,0x37,0xdf,0x6a,0x51,0x83,0x25,0x87,0x15,0x42,0x53,0x64,0x6b,0xfa,0x8a,0x32,
0xc5,0xe7,0xa3,0xd9,0x1b,0xf8,0xe1,0xe9,0x77,0x71,0x7e,0x2e,0x46,0xa0,0xd1,0x93,
0x12,0xa9,0x6a,0x35,0x9a,0xff,0x37,0x59,0xc2,0xb4,0xa0,0x8a,0x16,0xfb,0x89,0x13,
0x91,0x94,0x4,0xde,0x59,0x13,0x39,0xb8,0x6e,0xbe,0x68,0x49,0x92,0x54,0xa0,0x19,
0xcd,0x75,0x37,0x8e,0x99,0xaa,0xc3,0xc2,0xa2,0xfe,0xa8,0x19,0xe4,0xb5,0x81,0x72,
0x4e,0x7d,0xd4,0x57,0xa4,0x9a,0xfe,0x9b,0x91,0x40,0x77,0xf7,0x4e,0xb4,0xb5,0xf9,
0xa6,0x37,0x92,0xa6,0x5,0xd7,0x58,0x25,0x35,0xff,0x8e,0xd,0x74,0xe1,0xc4,0xe8,
0x21,0x74,0xd2,0x79,0x2a,0x92,0x2c,0x34,0x62,0x5b,0x6b,0x30,0x88,0x1c,0x2c,0xee,
0xe,0x4b,0xe,0x2b,0x84,0xd6,0x95,0x33,0x79,0x6,0x96,0x88,0xf6,0x72,0x2e,0xc9,
0xf0,0x57,0x3f,0xfd,0x19,0x3e,0xb8,0x7e,0x9,0x8b,0x45,0x19,0x55,0xa0,0x18,0xb9,
0x88,0x25,0x6f,0xeb,0x12,0xfa,0xd5,0x43,0xe3,0x24,0x44,0x8,0x95,0x28,0x33,0xdd,
0x5a,0xe7,0xe6,0xe6,0xaa,0xef,0xac,0xe,0xf2,0xc2,0x44,0x2a,0xbd,0x7d,0xdd,0x8,
0x2,0x91,0x82,0x9a,0xd0,0x36,0x62,0x41,0x24,0xb,0xb,0xca,0x1b,0xc5,0x6b,0x66,
0x66,0xc6,0xac,0x64,0xb8,0x6a,0x33,0xc4,0xd3,0x3d,0xe5,0xfe,0x3c,0xd7,0x90,0x82,
0xd6,0x65,0xf7,0x19,0x41,0xb8,0x59,0x84,0x8a,0xcf,0xc8,0x80,0x51,0x43,0xfb,0x42,
0x82,0xa7,0xc6,0x4e,0xe2,0xd0,0x60,0xb7,0xe9,0x3e,0x4e,0x2f,0xa,0x6e,0x10,0x80,
0x6a,0x8a,0x80,0x2f,0xad,0x5c,0xdf,0x1b,0x96,0x1c,0x56,0x8,0xb5,0x4e,0x9a,0x69,
0x0,0x58,0x5d,0x66,0xc3,0xb2,0x48,0xcf,0xe4,0xcc,0xf5,0x6b,0x8c,0x22,0xde,0xc7,
0x1c,0x85,0x51,0x59,0x2f,0xad,0xa2,0xb5,0xd9,0xe4,0x50,0x43,0x4a,0x43,0x6e,0x92,
0xd3,0x53,0x53,0x86,0x2c,0x56,0xd,0x27,0x23,0xd1,0xc4,0x18,0x1e,0x1e,0xac,0xde,
0x2,0xef,0x52,0xde,0x99,0x55,0x22,0x8b,0xd,0x80,0xe4,0xf5,0xea,0xd5,0xab,0x6b,
0x9b,0x19,0x99,0x7a,0xa8,0x9,0x68,0xe4,0xc4,0xf4,0xed,0xea,0xa1,0xbc,0xe6,0x5a,
0x19,0x24,0x8b,0x48,0xe3,0x8,0xa3,0xbb,0xfb,0xf1,0xd0,0xc8,0x21,0xf4,0x14,0x8a,
0x28,0xba,0x9a,0x6e,0x46,0xef,0xba,0x4b,0x39,0x45,0x8d,0x12,0xb2,0x72,0x7d,0x6f,
0x58,0x72,0x58,0x21,0x6a,0x84,0xa0,0xff,0x1d,0x11,0x1,0xb7,0x71,0x85,0x1e,0xbb,
0xef,0xe3,0x7a,0x25,0xc2,0xab,0x6f,0xbd,0x89,0x4b,0xd1,0x2,0x8f,0x17,0xb6,0x4c,
0xe8,0xd6,0x4f,0xe,0x8c,0x8f,0x18,0xa2,0x2f,0x91,0x83,0x14,0x8e,0x91,0x92,0x55,
0x22,0x8b,0x8d,0x40,0x9a,0x5,0xeb,0x24,0x7,0x7,0x41,0xe8,0xa2,0xaf,0xaf,0x77,
0x89,0x1c,0xba,0x9c,0x14,0xf7,0xef,0x1a,0xc4,0xc9,0xfd,0x23,0xf0,0x5d,0xe5,0x1,
0x53,0x6a,0xa4,0xc8,0x41,0x83,0xdf,0x34,0xe2,0x81,0x11,0x31,0x1d,0x1e,0xc5,0xc5,
0x6b,0x51,0x91,0xed,0x4,0x4b,0xe,0x2b,0xc4,0x72,0x25,0x71,0xaf,0xf6,0xc2,0x54,
0x9d,0x7a,0x42,0x30,0x8a,0x48,0x12,0x7c,0x78,0xe1,0x63,0xbc,0xf2,0xc1,0x79,0x24,
0x1e,0xbd,0x13,0x5,0x10,0x7c,0x5f,0x8b,0x86,0xa8,0x9b,0x5c,0xad,0x7,0x54,0xd,
0x66,0x86,0xd6,0x3a,0x27,0x7b,0x53,0x7e,0xe7,0xfc,0xc2,0x2,0xc9,0x61,0x86,0x57,
0xa5,0xef,0xae,0xfd,0xe6,0xf2,0xd5,0xdf,0xb,0x3a,0x3b,0x8f,0x1c,0x86,0xf8,0x22,
0x27,0xc0,0xfc,0xb8,0xd5,0x22,0x8b,0xfa,0x43,0xf2,0x7a,0xed,0xea,0x4,0xa2,0x48,
0xe4,0x50,0x93,0x57,0xca,0xdc,0x2d,0xe2,0x66,0xba,0x85,0x48,0x5f,0xf4,0xc2,0xe8,
0x8c,0x91,0x54,0x7e,0xbe,0x82,0xa0,0x2d,0x40,0x5f,0xef,0x4e,0xf8,0x49,0x5,0x5d,
0xa5,0x12,0xfe,0xee,0xd8,0x38,0xb7,0x6d,0xf0,0xa5,0x6f,0x2c,0x66,0x49,0xde,0xa5,
0xef,0xab,0xee,0xf0,0xbb,0x4,0x4b,0xe,0xf7,0x86,0x25,0x87,0x3a,0x40,0x55,0xa8,
0xa2,0xb6,0xff,0x73,0x95,0x4,0x6f,0x9d,0x3d,0x8d,0x8f,0x26,0xae,0x0,0x7e,0xc8,
0x77,0x25,0xa0,0xd5,0xf3,0x58,0x94,0x2c,0x33,0x32,0xca,0x17,0xf9,0xba,0xc,0xf5,
0x83,0xcc,0x79,0x1e,0x39,0x4c,0xf3,0x27,0x8c,0x6f,0x64,0x8e,0xe7,0xbf,0xfc,0x8b,
0x61,0x2,0x85,0xac,0x16,0x39,0xe8,0xdb,0x2c,0x2c,0x36,0xe,0xea,0x3c,0x71,0x95,
0xe4,0x10,0x2f,0x91,0x83,0x3c,0x7b,0xca,0xdd,0x2d,0x46,0x5b,0x31,0x82,0x4a,0xd,
0x79,0xcc,0x40,0xf5,0xa2,0xc0,0x16,0x43,0x7,0x3,0xdd,0x1d,0x18,0xdb,0x3b,0x84,
0xb1,0x7d,0xfb,0x30,0x60,0xd6,0x6c,0xe1,0x57,0x58,0xcb,0xbf,0x6e,0x18,0x32,0xb6,
0xa8,0x1f,0xf6,0x14,0x7c,0x3c,0x7b,0xff,0x38,0x9e,0x1a,0x3b,0x8a,0x92,0x8c,0x32,
0x49,0x43,0x93,0x77,0x69,0xd1,0xf6,0x7c,0x4e,0x25,0x9e,0xb4,0x32,0x5b,0x6d,0x61,
0x61,0x41,0xc8,0x69,0x11,0x3d,0x98,0x85,0xb7,0x94,0x3f,0x70,0x22,0x78,0x4e,0x8c,
0x42,0x9a,0xa0,0xd7,0xf7,0xf0,0xf9,0x4f,0x3d,0x81,0xc7,0xf7,0xef,0x43,0x5f,0x1a,
0x19,0x27,0x4d,0xb0,0x3e,0xef,0xfa,0x61,0xc9,0xa1,0xe,0xa8,0x75,0x1d,0xf5,0x7d,
0xdf,0xcc,0xd1,0xd2,0xe9,0x3a,0x18,0xdf,0xdd,0x8f,0x5f,0x79,0xf0,0x41,0x1c,0xee,
0xeb,0x41,0x48,0xcf,0x48,0xd3,0x80,0x3b,0x91,0xa6,0xe1,0xa8,0x12,0x84,0x85,0x85,
0xc5,0x8a,0x61,0xba,0x81,0x68,0x89,0x4e,0xc4,0x68,0x4b,0x2a,0xd8,0x49,0x22,0x78,
0xfa,0xd8,0x7d,0xf8,0x7,0xcf,0x3c,0x85,0x5e,0xd7,0x43,0x91,0x11,0x87,0x9a,0x92,
0xa4,0x87,0xd2,0x47,0x1b,0x39,0xac,0x1f,0x96,0x1c,0xea,0x8c,0xc8,0xc9,0x7b,0xf7,
0x14,0x92,0x14,0x43,0x85,0x12,0x3e,0x75,0xf8,0x20,0x1e,0x64,0x29,0x78,0x81,0x99,
0x6,0x58,0x5e,0x90,0x85,0x85,0xc5,0x2a,0x40,0x3b,0x6f,0x72,0x7,0x24,0x88,0x30,
0x4e,0xb0,0xaf,0xb3,0xb,0xbf,0xf6,0xdc,0x67,0xf0,0xd8,0x7d,0x7b,0xb1,0x2b,0xf4,
0x48,0x18,0x9,0xb4,0xf4,0xee,0xa2,0x59,0xca,0xd3,0xa2,0x5e,0xb0,0x39,0x87,0x3a,
0xa3,0x56,0x99,0x4a,0x46,0xd7,0xf6,0x35,0x46,0x67,0xae,0x1c,0xe3,0x6f,0xce,0x9e,
0xc6,0xfb,0x57,0xaf,0xa0,0x5c,0x28,0x80,0x1,0x30,0x99,0xd9,0x47,0x9a,0xc5,0x66,
0x9a,0xe0,0x5a,0xb,0xbf,0x19,0xdd,0xb9,0x46,0xa4,0x29,0x15,0x64,0xa1,0x82,0xc9,
0xc9,0x49,0x85,0x33,0xd5,0xa3,0xab,0x41,0xc4,0x92,0x61,0x48,0x39,0x87,0xa5,0x2b,
0x92,0xc2,0x59,0x2f,0xcc,0xa2,0xfe,0xc8,0x52,0x1f,0x57,0xaf,0x5e,0x43,0x1c,0x4b,
0xee,0x72,0x19,0xd3,0x4a,0x8c,0x86,0x6,0x28,0xbf,0x89,0x9a,0x64,0x3d,0x9f,0x1,
0x43,0x82,0x20,0x8a,0xd0,0xeb,0x79,0xf8,0xdc,0xe3,0x8f,0xe2,0xd0,0xee,0x3e,0x90,
0x13,0xf8,0x5e,0x2d,0x67,0xc7,0xcf,0xf2,0x9f,0xf4,0x4d,0xae,0x99,0x45,0x7d,0x60,
0xc9,0x61,0x13,0x90,0x51,0xb8,0xb5,0x56,0xed,0x2,0xe5,0xf6,0xe7,0x93,0xd3,0x38,
0x75,0xee,0x1c,0xae,0xcc,0xdc,0x40,0xe2,0x17,0x11,0x93,0x39,0x32,0x4f,0xdd,0xec,
0x78,0x22,0x8b,0x6,0xda,0xad,0x15,0x1a,0xa0,0xb7,0xb8,0x98,0x93,0xc3,0x5a,0x7a,
0x18,0x69,0x82,0x10,0x71,0x8a,0xc8,0x21,0x4f,0x6f,0xeb,0xa0,0x25,0x7,0x8b,0x8d,
0x81,0x21,0x87,0x6b,0x57,0xab,0x9,0xe9,0x1c,0x15,0x33,0x5a,0x2d,0x6f,0x7a,0xad,
0xad,0xa7,0xd0,0xe6,0xc4,0x78,0xe0,0xf0,0x1,0x3c,0x7c,0xe8,0x30,0xfa,0xdb,0x8a,
0x26,0x7f,0xa7,0xd4,0xf5,0x32,0x39,0x58,0x6c,0x4,0x2c,0x39,0x6c,0x2,0x52,0x25,
0xca,0x68,0x63,0x13,0xd6,0xb4,0x6,0xee,0x57,0x58,0xe5,0x1f,0x5e,0xbc,0x8a,0x1f,
0x9d,0xfd,0x8,0x11,0xf7,0xb5,0xf2,0x54,0xc4,0xe8,0x41,0xb,0xf9,0x28,0xe2,0x58,
0x2b,0x44,0xe,0xe5,0xb2,0xc8,0xe1,0xba,0xf2,0xe0,0xab,0x86,0xa6,0x8,0xf1,0x48,
0x54,0x83,0x43,0x3,0x7c,0x65,0xc9,0xc1,0x62,0x63,0xa1,0x48,0xf7,0xfa,0xf5,0x89,
0xea,0x8,0xe9,0xfc,0x58,0x85,0xf6,0xde,0xe7,0x7e,0x98,0xa4,0x28,0x52,0x9e,0x7b,
0xda,0xda,0xf1,0xab,0xcf,0x3c,0x82,0x81,0xce,0x36,0xb3,0x9a,0xa2,0x3a,0xd1,0x29,
0xb2,0x30,0x39,0x3e,0xdb,0x8c,0xb4,0xa1,0xb0,0xe4,0xb0,0x9,0xc8,0xc0,0xe8,0xc0,
0x88,0xb4,0x8c,0x6c,0x6e,0x68,0x63,0xd6,0xfa,0x54,0x25,0xc6,0x99,0xb,0x97,0xf0,
0xf6,0x99,0xb3,0xa8,0x68,0xf2,0x30,0xa,0x7c,0xc2,0x30,0x7a,0xad,0xd0,0x93,0x4c,
0xe9,0x55,0x69,0xae,0xa5,0xb5,0xcc,0xad,0x24,0xe8,0x63,0xe,0x8b,0x48,0xc2,0xc0,
0x92,0x83,0xc5,0x6,0x41,0x13,0x1c,0xab,0xfb,0x77,0x5c,0x5d,0x5f,0x5a,0xfb,0x1,
0x75,0x25,0xa4,0x1c,0x77,0x5,0x21,0x1e,0x64,0xa4,0x70,0x60,0xa0,0xf,0x45,0xcd,
0x85,0x44,0x56,0xc8,0x87,0xde,0xb8,0x48,0x49,0xa,0x5a,0xda,0xd7,0xc6,0xd,0x1b,
0xb,0x4b,0xe,0x9b,0x80,0xe5,0x1a,0xd6,0x1c,0x48,0xf9,0x5e,0x46,0xcf,0x28,0xa3,
0x21,0x5f,0x64,0xb4,0x70,0x79,0x7e,0x1,0x6f,0x9d,0x3d,0x8b,0x4b,0x53,0x93,0x98,
0xf7,0x57,0xbe,0x6,0xee,0xbd,0xb0,0x96,0xde,0x1a,0x22,0x16,0x8d,0x90,0x16,0x39,
0x2c,0x71,0x8b,0x25,0x7,0x8b,0xd,0x82,0xc8,0x40,0xe6,0x47,0x8e,0x8c,0x8a,0xf6,
0x7,0xa9,0xf,0x7b,0x77,0xf7,0x63,0x7c,0xff,0x7e,0xb4,0x31,0x92,0xd,0x12,0xca,
0xa3,0x2f,0x87,0x49,0x9d,0x39,0xc,0x3b,0x68,0xba,0x2f,0x43,0xe,0xfa,0xb3,0xd8,
0x38,0x58,0x72,0xd8,0x4,0x2c,0xd7,0x30,0xa3,0x87,0x9a,0x9d,0xad,0x1e,0xd3,0x46,
0x2b,0x50,0x69,0x2b,0xf,0xea,0x7,0x6f,0xfc,0x18,0x13,0xf3,0xf3,0x28,0x7,0x1,
0xca,0x54,0x8a,0x44,0xbd,0x9c,0x32,0x25,0xec,0xa4,0x1e,0xb5,0x2f,0x52,0x6c,0x9d,
0xf7,0x8a,0xba,0x13,0xf4,0x48,0xd7,0x42,0xe,0x37,0x8b,0xc2,0x27,0x3f,0x6e,0xc9,
0xc1,0x62,0x7d,0xf0,0xaa,0x32,0x2c,0xa3,0x9e,0x3b,0x1c,0xc0,0x74,0xc1,0x37,0x63,
0x15,0x4a,0x8c,0xa0,0xb,0xb,0x65,0x43,0x8,0x8f,0x1d,0xd2,0xb4,0x17,0xcb,0x69,
0x65,0x6d,0x73,0xa9,0x94,0xb4,0xe7,0x7b,0xe6,0x7f,0xbe,0x71,0x37,0xf9,0xb7,0xa8,
0xf,0x2c,0x39,0x34,0x0,0x6e,0x7e,0x4,0x33,0x71,0x8a,0xf3,0x93,0x93,0x38,0xf5,
0xf1,0xc7,0xf8,0x78,0x66,0xa,0x89,0xbc,0x26,0x2f,0x34,0x1a,0x61,0x54,0xaa,0x7a,
0xae,0x55,0xb,0x8b,0x66,0x82,0xa6,0xc9,0x16,0x34,0x6d,0x4c,0x4d,0x76,0x93,0xb8,
0x8c,0x12,0xc9,0xe2,0xf0,0xee,0x1,0x8c,0xd,0xe,0xa2,0xa7,0x54,0x42,0xbb,0x47,
0x62,0x58,0x83,0x63,0x63,0x51,0x7f,0x58,0x72,0x68,0x0,0xdc,0xfc,0x8,0xd4,0xdc,
0x14,0x51,0x41,0xe6,0xc8,0x6,0x67,0x2e,0x5f,0xc4,0x4f,0x3f,0x38,0x83,0xe9,0x24,
0xac,0x9e,0x23,0xdf,0x29,0x6f,0xe6,0xc9,0xd4,0x0,0x6b,0x75,0xc8,0xa2,0x49,0x50,
0xf6,0xe8,0xdc,0x50,0x86,0x3d,0x95,0x34,0x43,0x40,0x19,0x3f,0xd8,0x1e,0xe2,0xd8,
0x7d,0xe3,0xe8,0xc,0x43,0x14,0x6b,0xef,0x29,0xe7,0x66,0xc9,0xa1,0x21,0x60,0xc9,
0xa1,0xd1,0x40,0xc5,0x51,0xaf,0xa5,0x28,0x4b,0x51,0x41,0x8a,0x72,0x54,0xc1,0xf9,
0xe9,0x45,0x9c,0x7a,0xff,0x7d,0xcc,0xc6,0x89,0x29,0x59,0x10,0x50,0xd3,0xe8,0x81,
0x59,0x25,0xb2,0x68,0x12,0x64,0x69,0x82,0x82,0x9a,0x8b,0xca,0x8b,0x38,0x38,0x3c,
0x88,0x83,0x7b,0xf6,0x60,0x5f,0x7b,0xd1,0xf8,0x37,0xea,0xb6,0xaa,0x6d,0x2e,0xcd,
0x74,0x7e,0xac,0x5c,0x37,0x4,0x2c,0x39,0x34,0x18,0x6a,0xc3,0x81,0xb4,0x8a,0x55,
0x96,0xa6,0x66,0x5b,0xa1,0xb2,0xcc,0x93,0x2c,0x4e,0x5d,0x38,0x8f,0x33,0xd7,0x27,
0x70,0x6d,0x6e,0x8e,0xfa,0x13,0x5a,0x72,0xb0,0x68,0x1a,0x74,0x25,0x31,0xfa,0x3a,
0x3b,0x70,0xff,0xfe,0xfd,0xd8,0xdd,0xd9,0x8e,0x2,0x65,0xd7,0x37,0x63,0x1a,0xaa,
0x99,0x34,0x23,0xcb,0x79,0xae,0xc1,0x4a,0x75,0x63,0xc0,0x92,0x43,0x13,0x41,0xbd,
0x3b,0x54,0xa6,0xa7,0xa7,0xf1,0xdf,0xde,0x3d,0x85,0x4a,0xac,0xf9,0x64,0x34,0x82,
0xd4,0xf8,0x5b,0xf9,0x2c,0xb0,0x9a,0x66,0xa0,0x1a,0xa2,0xeb,0x98,0x5a,0x7a,0x2b,
0xb5,0x6e,0xa9,0x16,0x16,0x75,0x84,0xe4,0xcc,0xc8,0x1d,0xa1,0x8e,0xda,0x32,0xeb,
0x31,0x23,0x5a,0x35,0x21,0x85,0x4a,0x34,0xb3,0x4,0xe5,0x32,0x76,0xf7,0xf4,0xe0,
0x57,0xc6,0xc6,0x10,0x30,0xe2,0x95,0x43,0xb3,0xd6,0x6e,0xd6,0x16,0x9b,0xb,0x4b,
0xe,0x4d,0x86,0xda,0xe3,0x9a,0x8d,0x81,0x4b,0x93,0x93,0x38,0x73,0xe5,0x12,0x4e,
0x5f,0xbb,0x8c,0xb8,0xe0,0x23,0xc9,0x7c,0x86,0xe8,0xb9,0xe2,0xe5,0x74,0x50,0x7b,
0xb4,0x96,0x1c,0x2c,0xea,0x8f,0x94,0x8e,0x88,0x99,0xed,0xa5,0x9a,0x64,0xd6,0xbc,
0x61,0xca,0x2b,0x84,0x69,0x8c,0x36,0x12,0xc0,0x7d,0x7b,0x87,0xb1,0xb7,0xaf,0xf,
0x9d,0xc5,0x2,0x76,0xe4,0x8b,0x92,0x1b,0xd8,0x88,0xb7,0x39,0x60,0xc9,0xa1,0x9,
0x61,0xfa,0x87,0x2f,0x44,0x74,0xcf,0x7c,0x44,0x81,0x87,0x8b,0xb3,0x33,0x78,0xe7,
0xcc,0x69,0x5c,0x9e,0x2b,0x63,0x2e,0x62,0x18,0xe1,0x79,0x66,0xc4,0xb5,0x56,0xbe,
0x92,0x1a,0x6a,0xc1,0x21,0xb,0x8b,0x7a,0x43,0x6b,0x31,0xcb,0xf1,0xf0,0x32,0x35,
0x7f,0x32,0x8a,0xa5,0x98,0xf5,0x16,0x8b,0x38,0xd2,0xd3,0x85,0x43,0xfb,0xf6,0x23,
0xa4,0xf0,0x15,0xd4,0xfb,0x88,0x11,0x44,0xea,0x78,0x4b,0xa4,0x60,0xc9,0xa1,0x39,
0x60,0xc9,0xa1,0x49,0x51,0xce,0x2a,0x70,0xa9,0x70,0xfa,0xcb,0xe2,0xd4,0x78,0x6d,
0x93,0x71,0x64,0x22,0x89,0x53,0x1f,0x9c,0xc5,0xac,0xda,0x93,0xa8,0xa8,0xe5,0x84,
0x4a,0xeb,0x69,0x39,0xf5,0xe5,0xa8,0xc3,0xc2,0x62,0x3d,0x90,0x71,0x97,0x2c,0x65,
0x9,0x1d,0x94,0x28,0x46,0x1,0x29,0x6,0xba,0xba,0x30,0x36,0x3a,0x82,0xc1,0x9d,
0x5d,0xe8,0x12,0x21,0xd4,0xce,0x95,0xcc,0xc9,0x39,0x59,0xc7,0xc8,0x7f,0x8b,0xad,
0x81,0x25,0x87,0x66,0x5,0xbd,0x31,0x3e,0x3e,0xfe,0x73,0xcd,0xfc,0x4c,0x31,0x15,
0x30,0x60,0x38,0xaf,0xc7,0xb9,0x80,0xc,0x67,0x27,0x26,0x70,0xee,0xda,0x4,0x2e,
0x4e,0x4f,0xf3,0x75,0xae,0x98,0x52,0x6a,0xeb,0xb5,0x59,0xd4,0x3,0x8a,0x5e,0xfb,
0x18,0xb9,0x8e,0xf4,0xf6,0x62,0x5f,0xff,0x2e,0x33,0x21,0x5e,0x48,0x19,0x74,0xb5,
0x5e,0x73,0x18,0x56,0x73,0x10,0x42,0x3e,0x74,0xcd,0x5f,0x7a,0x6d,0xd1,0x2c,0xb0,
0xe4,0xd0,0xe2,0x98,0xae,0x54,0xf0,0xfa,0xfb,0xef,0xe2,0xe3,0xeb,0xd7,0x31,0xcf,
0x28,0x43,0x73,0xde,0xc7,0xf4,0xe2,0xfc,0x74,0xde,0xf4,0xd,0x71,0xdd,0x80,0x42,
0x20,0xc5,0x75,0x51,0x64,0x4,0x22,0x24,0x55,0x3d,0xd6,0xe1,0xd4,0xa4,0x1c,0xad,
0x62,0xb7,0x2a,0xd4,0x24,0x94,0x8f,0x58,0x66,0x4,0x6a,0x9e,0xb5,0xcb,0x97,0x8b,
0xc6,0xb8,0xc7,0x74,0x24,0xb4,0x4e,0x82,0xba,0x4d,0xa7,0x69,0x19,0x5,0xca,0x47,
0x47,0x1c,0x63,0x77,0x10,0xe2,0xe8,0x9e,0x7d,0x18,0xdd,0x3b,0x4,0x8f,0xf2,0x64,
0xd1,0x9a,0xb0,0xe4,0xd0,0xe2,0x88,0xa9,0xfc,0x8a,0x24,0xe6,0x18,0xfe,0x5f,0x9a,
0xb9,0x81,0x33,0x17,0x2e,0xe0,0x12,0xa3,0xa,0xf8,0xbe,0x99,0x26,0x5c,0xca,0x9f,
0xba,0x9e,0xe9,0xd5,0xc4,0x3d,0xf3,0x19,0x35,0x51,0xa9,0xe4,0xb0,0xe4,0xd0,0xca,
0x70,0x33,0x45,0xa0,0x7c,0xf2,0x55,0x22,0x30,0x1e,0xbf,0x26,0xb9,0xa3,0x59,0x50,
0x1e,0xc1,0x4b,0x62,0xd1,0x5,0x3a,0x7c,0x17,0xfb,0x7,0x87,0x31,0xdc,0xd3,0x8d,
0xdd,0x1d,0xed,0x66,0x24,0xb3,0x4b,0xef,0xc1,0xf6,0x3c,0x6a,0x5d,0x58,0x72,0x68,
0x71,0x68,0xf0,0x51,0x5c,0x5e,0x0,0xe8,0xed,0x99,0x59,0x5f,0x69,0x4,0x2a,0x54,
0xfa,0xb7,0xcf,0x9d,0xc7,0xf9,0x2b,0x57,0x19,0x59,0x94,0x4d,0x57,0x57,0xbd,0x17,
0xb9,0x19,0x32,0x25,0x17,0x15,0x51,0x88,0x20,0xf4,0x67,0x27,0xde,0x6b,0x69,0x38,
0x59,0x4c,0x97,0x20,0xa3,0x83,0xa0,0x51,0xf7,0x22,0x6,0x1e,0x24,0x5f,0xf8,0x94,
0x9b,0x9d,0x81,0x8f,0x5d,0x85,0x2,0xf6,0xed,0xde,0x85,0x43,0x3,0xc3,0xf0,0xf4,
0x3e,0xc9,0xc4,0xe7,0xf9,0x14,0x2c,0x38,0xae,0xf,0xa7,0xba,0xa0,0xbf,0x45,0xeb,
0xc1,0x92,0x43,0xab,0x43,0xcd,0x6,0x69,0xcc,0x27,0x2d,0xc5,0x97,0x1,0xc8,0xf,
0x97,0x13,0x1f,0x8b,0x7c,0x6f,0x2e,0x89,0x70,0x9a,0xd1,0xc4,0xd9,0x8f,0x3e,0xc4,
0xd,0x12,0x81,0xc,0x84,0x43,0xa2,0xd0,0x79,0xca,0x4f,0xd8,0x66,0xa5,0xd6,0x86,
0x93,0x46,0x26,0x7f,0xa5,0xf5,0x97,0x15,0x3f,0x46,0xe5,0xa,0xfa,0x77,0xec,0xc0,
0xf8,0xe1,0xc3,0x18,0xdc,0xd1,0x5,0xcd,0x11,0x5c,0xa0,0x9c,0xf8,0x9e,0x7a,0x1b,
0xe5,0x9f,0xa1,0x50,0x89,0x4e,0xb8,0x15,0x39,0xd8,0xc8,0xa1,0x55,0x61,0xc9,0xa1,
0xc5,0xa1,0xc7,0x6b,0x14,0xd9,0x28,0xb6,0x1a,0xd,0xaa,0x8f,0x9b,0x7c,0x21,0x2,
0x88,0x15,0x31,0x50,0xeb,0xb5,0x10,0xd1,0x47,0xd7,0x67,0x31,0x31,0x73,0x3,0x17,
0xaf,0x5d,0xc3,0xf5,0x85,0x59,0xc4,0x7c,0x5f,0x5d,0x10,0x6f,0xb2,0xa,0x16,0xad,
0x86,0x78,0x11,0x45,0xca,0xc0,0xbe,0x9e,0x5e,0xc,0xed,0xdc,0x69,0x6,0xac,0x75,
0x7a,0x24,0x3,0x46,0x5,0x1a,0x9d,0xef,0x93,0x32,0x4c,0x4,0xa9,0xe,0x6f,0x94,
0x3,0x23,0x41,0xc6,0x64,0xe8,0xa8,0xe,0x59,0xd9,0x68,0x55,0x58,0x72,0xb0,0x58,
0x86,0xba,0x1c,0x52,0xd9,0x35,0xa7,0xd3,0xd4,0xfc,0xd,0x9c,0x3d,0xf7,0x1,0xde,
0xbd,0x3a,0x83,0x84,0x5e,0xe3,0x8d,0x24,0x46,0x52,0x8,0x50,0xa1,0x2d,0xf0,0x48,
0x2c,0x2a,0x2e,0xbd,0x46,0x4d,0xaf,0x2c,0x48,0x88,0x22,0x2f,0x27,0x1f,0x63,0x34,
0x8c,0x58,0xa9,0xd8,0x66,0x87,0x8d,0x44,0xe4,0x29,0x67,0xa0,0xfa,0xae,0x66,0x87,
0xb4,0x4d,0xe9,0xd1,0xab,0x39,0x90,0x2f,0xd4,0x4c,0xa8,0x6e,0x5,0x7a,0x99,0x4,
0x2e,0x1c,0x4d,0x8f,0x4d,0x4f,0x20,0xe4,0xf3,0xe9,0x2c,0x15,0xf1,0xe4,0xd0,0x0,
0x86,0x87,0x87,0xcd,0x77,0xd8,0xfc,0x81,0xc5,0xcd,0xb0,0xe4,0x60,0xb1,0x8c,0x2a,
0x39,0x68,0x89,0xf7,0x88,0x6,0x45,0x6d,0xd1,0xe5,0xd4,0xc5,0x8d,0x85,0x5,0x92,
0xc5,0x3c,0xce,0x5c,0x3c,0x8f,0xb,0x5a,0xf3,0xd7,0x2f,0x98,0x1,0x76,0x1a,0x21,
0xeb,0xf8,0x5e,0xde,0x4,0x45,0xeb,0x13,0x24,0xcb,0xc6,0xa5,0xe6,0x4f,0x26,0xcb,
0x99,0x6d,0x8b,0xd,0x80,0x48,0x58,0x75,0xad,0x67,0x60,0x6a,0x9a,0x5b,0xd,0x4e,
0xd3,0xbe,0x46,0x2b,0x23,0x8a,0x10,0x68,0x92,0xc6,0x38,0x45,0x4f,0x5b,0x11,0x83,
0xbd,0x7d,0x18,0x62,0x94,0xd0,0x59,0x28,0x60,0x47,0x5b,0x9,0x6d,0xd5,0x55,0xd8,
0x54,0x2c,0x39,0x58,0xdc,0xc,0x4b,0xe,0x16,0x4b,0xd0,0xca,0x74,0x32,0x2e,0xa6,
0xb9,0x49,0xa3,0xb0,0x79,0x2c,0x64,0x91,0xef,0xc9,0x40,0x1,0x11,0xdf,0x97,0x9f,
0xfa,0xf3,0x89,0xeb,0xb8,0x30,0x31,0x81,0xa9,0xb9,0x59,0xcc,0x56,0x16,0xb1,0x98,
0x90,0x4a,0x3c,0x9f,0x84,0x62,0xda,0x1e,0xe8,0xa5,0xba,0x26,0xd5,0x61,0x96,0x72,
0x54,0xbe,0xa3,0xa,0xdb,0x4,0x51,0x1f,0x48,0x65,0x6b,0x6a,0xeb,0xaa,0x13,0x1,
0xb7,0xe,0xa3,0xbb,0x38,0x4d,0xcc,0xf1,0x80,0x95,0xaf,0xc8,0xa0,0x23,0xc,0xd1,
0x55,0x6a,0x43,0xdf,0x8e,0x2e,0xc,0xf4,0xec,0xc4,0xae,0xce,0x1d,0x66,0xc4,0x8b,
0xcb,0x28,0x30,0x10,0x19,0xe8,0x59,0x55,0x89,0xc1,0x3e,0x1b,0x8b,0x5b,0x61,0xc9,
0xc1,0xe2,0x13,0xb8,0x5d,0x1c,0x22,0xa,0x89,0xb6,0x32,0x1e,0x6a,0x22,0x52,0xc3,
0x11,0x23,0x82,0xd4,0x31,0x2b,0x63,0x47,0x24,0x91,0xd9,0xc5,0x79,0xbc,0x75,0xf6,
0x34,0xde,0x99,0xb8,0x4c,0xcb,0xe3,0x33,0x9a,0x28,0xd0,0xe8,0x68,0x35,0xe0,0xc,
0x71,0x25,0x42,0xb1,0x58,0x34,0x83,0xa6,0xac,0x1,0xaa,0xf,0x54,0x97,0x82,0xf1,
0xf4,0xb3,0x45,0x13,0x3d,0xf0,0xc1,0x99,0x1e,0x66,0x85,0x20,0xc4,0xb1,0xc1,0x61,
0x8c,0xd,0xe,0xa1,0x40,0xc2,0x28,0xfa,0xa4,0x0,0x93,0x72,0x72,0x48,0xe0,0xfc,
0xc,0x9f,0x89,0x9e,0x9c,0xce,0x37,0xf,0xd2,0xcd,0x47,0xcf,0x5b,0x58,0xdc,0xa,
0x4b,0xe,0x16,0xb7,0x41,0x53,0x85,0x1b,0xc3,0x41,0x24,0x2e,0xd,0x9,0x6d,0xba,
0x9a,0x8d,0xe4,0x69,0x3a,0x86,0x14,0x18,0x55,0x88,0x31,0x28,0x3a,0x32,0xf7,0x69,
0xc2,0xf3,0x69,0x88,0xca,0x7c,0x71,0x63,0x7e,0x11,0x93,0xb3,0xb,0x98,0x99,0x5f,
0xc0,0x95,0x6b,0x53,0x38,0x53,0x99,0x47,0x14,0x45,0xf0,0x7d,0xdf,0x36,0x5b,0xd4,
0x9,0x22,0x87,0x38,0x8e,0xd1,0xd1,0xd1,0x81,0x83,0x6d,0x3e,0xfa,0x76,0xee,0x44,
0x67,0x58,0x34,0x91,0x41,0xc9,0xf,0x4d,0xee,0xc1,0x3c,0x1b,0xb2,0x85,0x19,0xa3,
0xc6,0x48,0x42,0x11,0x42,0xac,0x19,0x7c,0xf9,0x60,0x35,0xdc,0x4d,0xfd,0xd0,0xf4,
0xec,0x1c,0x13,0x4b,0x58,0x58,0xdc,0xe,0x4b,0xe,0x16,0x1b,0x8a,0x72,0x1a,0x61,
0x6a,0x6e,0xe,0xe7,0x2e,0x5d,0xc6,0xc5,0xc9,0xeb,0x58,0x8c,0x13,0x4c,0x21,0x34,
0x51,0x45,0x25,0x25,0xcd,0x78,0x79,0x8e,0xc3,0x4f,0xe4,0xdb,0xd2,0x5c,0x19,0xc2,
0xa1,0x1,0x73,0x34,0x11,0x83,0xf2,0x1e,0xf2,0x76,0x1d,0xb8,0x8a,0x3a,0x28,0xa9,
0x26,0x6e,0xb9,0x43,0x1e,0x23,0xd5,0xaa,0xf3,0xb7,0xe2,0xe,0xe7,0xd5,0x96,0xab,
0xfc,0x4,0xcc,0x67,0x6f,0x25,0x2e,0xb9,0xdb,0x79,0xb2,0xf7,0x66,0x78,0xe9,0xed,
0x4,0xa7,0xc1,0x60,0xb7,0x42,0xa4,0xaa,0x9f,0x37,0x6,0xb8,0xba,0xd5,0xef,0x68,
0xb0,0x99,0x90,0x88,0x80,0xb9,0xaf,0x97,0x32,0xd6,0x89,0xc,0xb8,0x4e,0x61,0xf1,
0xcc,0x0,0xc5,0x58,0xca,0x9,0x27,0x4a,0x50,0xa,0x18,0x89,0xb1,0xde,0xba,0x83,
0x5,0x74,0x77,0x76,0xa1,0x7f,0x47,0x37,0x46,0x7,0x86,0x49,0x4,0x1,0x2,0xd5,
0x4e,0xf5,0x3b,0x2d,0x2c,0xea,0x9,0x4b,0xe,0x16,0x1b,0x8a,0x72,0x26,0xd3,0x4f,
0x2,0xa0,0x94,0xa9,0xc8,0x28,0x2e,0x32,0xd2,0x28,0xd3,0xf3,0x9d,0x5b,0xac,0xe0,
0xc2,0xd5,0xcb,0x98,0x99,0x9b,0xc5,0xf9,0xe9,0x19,0x5a,0x59,0x17,0x51,0x92,0x20,
0x2c,0x86,0xb4,0xa3,0x2e,0x3d,0x64,0x7d,0x83,0x48,0x82,0x1f,0xe4,0xeb,0x9a,0xa0,
0xaa,0xf9,0xe4,0x56,0x14,0xd4,0xef,0xf6,0x16,0x98,0x41,0x5d,0xb7,0xc0,0x4c,0x17,
0x71,0xb,0xe4,0x43,0xdf,0x6a,0xdf,0x65,0xd0,0x97,0x7f,0x71,0x19,0x66,0x3a,0x89,
0xdb,0x70,0xfb,0x79,0x8b,0x9a,0xa2,0x94,0xd0,0xd7,0x9a,0xeb,0x65,0x49,0x95,0x1f,
0xe0,0x17,0x1b,0xce,0x62,0x1d,0x98,0x4e,0xa2,0x3c,0xc1,0xc,0x3c,0xe4,0x31,0x2d,
0x11,0xab,0x6d,0x18,0x4,0x18,0xee,0x6c,0xc3,0xee,0xbe,0x5d,0xe8,0x61,0x34,0x10,
0xba,0x1e,0x7c,0x96,0xb6,0x10,0xe8,0xf6,0xa,0xfa,0x5a,0xb,0x8b,0xd,0x87,0x25,
0x7,0x8b,0x4d,0x47,0x1c,0xd1,0x8,0x9a,0x11,0xb9,0xc6,0x3f,0xa7,0x9d,0xcc,0xcc,
0x58,0x8b,0x5,0x7a,0xc7,0xd3,0xf3,0xb3,0x2c,0x73,0x98,0x24,0x61,0xc4,0xe5,0x14,
0x73,0x73,0xb,0xa6,0xe7,0xd4,0x9c,0x46,0x72,0x67,0x9,0x2a,0xb4,0xb2,0xea,0x5a,
0x6b,0x92,0xa8,0xfc,0x6c,0x4d,0x78,0xe5,0xbd,0x6b,0x40,0x56,0x9e,0x9e,0xcd,0x11,
0xd7,0xc,0x39,0x4f,0xd4,0xb9,0x82,0xc7,0xdf,0x36,0xfb,0xe6,0xf3,0xf9,0x51,0x79,
0xf9,0xea,0x79,0x75,0x33,0x34,0xdf,0x54,0x2d,0x4a,0x90,0x8a,0xe4,0xbf,0xe7,0xa0,
0x52,0xd,0x50,0xf2,0x2e,0xa2,0x3c,0xc2,0xfb,0xc8,0xef,0x62,0x19,0xe6,0x7c,0x5e,
0x87,0xa2,0x1d,0x93,0xf4,0x95,0xd1,0xd7,0x1b,0x69,0xc5,0x4c,0x63,0x5d,0xa,0x42,
0x14,0xdd,0x0,0x6d,0xdc,0x96,0x8a,0x45,0x84,0x85,0x10,0x9f,0x3e,0x70,0xc0,0x7c,
0xd6,0xc2,0xa2,0x51,0x60,0xc9,0xc1,0xa2,0x29,0xf0,0xca,0x2b,0xaf,0x54,0xf7,0x9a,
0x1b,0xcf,0x3f,0xff,0x7c,0x75,0xcf,0xc2,0xa2,0xb1,0x61,0xc9,0xc1,0xc2,0xc2,0xc2,
0xc2,0xe2,0x16,0x0,0xff,0x1f,0x38,0x74,0x95,0x28,0x95,0x4a,0xdb,0xd3,0x0,0x0,
0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// Resources
0x0,0x9,
0xa,0x6c,0x38,0x43,
0x0,0x52,
0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x73,
// Images
0x0,0x6,
0x5,0x3,0x7d,0xc3,
0x0,0x49,
0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,
// doing.png
0x0,0x9,
0x0,0x4a,0x81,0x87,
0x0,0x64,
0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// undoneline.png
0x0,0xe,
0x9,0x2c,0xd8,0x7,
0x0,0x75,
0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// prepared.png
0x0,0xc,
0x6,0x46,0xda,0x47,
0x0,0x70,
0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// homepageon.png
0x0,0xe,
0x8,0x59,0x83,0x27,
0x0,0x68,
0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// nexton.png
0x0,0xa,
0xb,0x6f,0xce,0xa7,
0x0,0x6e,
0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// homepageoff.png
0x0,0xf,
0x2,0x44,0x10,0x47,
0x0,0x68,
0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// doneline.png
0x0,0xc,
0x5,0x2c,0xcf,0x7,
0x0,0x64,
0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// canceloff.png
0x0,0xd,
0x6,0xc0,0x6e,0x87,
0x0,0x63,
0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// cancelon.png
0x0,0xc,
0xe,0x91,0xc4,0xc7,
0x0,0x63,
0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// nextoff.png
0x0,0xb,
0x5,0x20,0xc8,0x27,
0x0,0x6e,
0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// done.png
0x0,0x8,
0x6,0x48,0x5a,0x27,
0x0,0x64,
0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// printguide.png
0x0,0xe,
0xd,0xaf,0x17,0xc7,
0x0,0x70,
0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
// :/Resources
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,
// :/Resources/Images
0x0,0x0,0x0,0x18,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x3,
// :/Resources/Images/doing.png
0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
// :/Resources/Images/homepageoff.png
0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe9,0xf3,
// :/Resources/Images/nextoff.png
0x0,0x0,0x1,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8d,0x13,
// :/Resources/Images/doneline.png
0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x17,0x31,
// :/Resources/Images/prepared.png
0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3f,0x4e,
// :/Resources/Images/done.png
0x0,0x0,0x1,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xbb,0x5,
// :/Resources/Images/canceloff.png
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x19,0x20,
// :/Resources/Images/homepageon.png
0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7a,0x8a,
// :/Resources/Images/undoneline.png
0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3d,0x62,
// :/Resources/Images/nexton.png
0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb1,0xb2,
// :/Resources/Images/printguide.png
0x0,0x0,0x1,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3,0xfa,
// :/Resources/Images/cancelon.png
0x0,0x0,0x1,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x4d,0x69,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_checkreceiptdialog)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_checkreceiptdialog)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_checkreceiptdialog)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_checkreceiptdialog)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_checkreceiptdialog)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_checkreceiptdialog)(); }
} dummy;
}
| 81.033787 | 128 | 0.767507 | maanjun |
bca2d09f4f302e89db2a8671a43c88ab8e3a0ac8 | 583,227 | cpp | C++ | compiler/parser/bison-chapel.cpp | jhh67/chapel | f041470e9b88b5fc4914c75aa5a37efcb46aa08f | [
"ECL-2.0",
"Apache-2.0"
] | 1 | 2021-09-30T11:10:34.000Z | 2021-09-30T11:10:34.000Z | compiler/parser/bison-chapel.cpp | jhh67/chapel | f041470e9b88b5fc4914c75aa5a37efcb46aa08f | [
"ECL-2.0",
"Apache-2.0"
] | 2 | 2021-08-24T18:56:56.000Z | 2021-09-16T22:52:26.000Z | compiler/parser/bison-chapel.cpp | jhh67/chapel | f041470e9b88b5fc4914c75aa5a37efcb46aa08f | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | /* A Bison parser, made by GNU Bison 3.8.2. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
especially those whose name start with YY_ or yy_. They are
private implementation details that can be changed or removed. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output, and Bison version. */
#define YYBISON 30802
/* Bison version string. */
#define YYBISON_VERSION "3.8.2"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 1
/* Push parsers. */
#define YYPUSH 1
/* Pull parsers. */
#define YYPULL 0
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
#include "bison-chapel.h"
/* Symbol kind. */
enum yysymbol_kind_t
{
YYSYMBOL_YYEMPTY = -2,
YYSYMBOL_YYEOF = 0, /* "end of file" */
YYSYMBOL_YYerror = 1, /* error */
YYSYMBOL_YYUNDEF = 2, /* "invalid token" */
YYSYMBOL_TIDENT = 3, /* TIDENT */
YYSYMBOL_TQUERIEDIDENT = 4, /* TQUERIEDIDENT */
YYSYMBOL_INTLITERAL = 5, /* INTLITERAL */
YYSYMBOL_REALLITERAL = 6, /* REALLITERAL */
YYSYMBOL_IMAGLITERAL = 7, /* IMAGLITERAL */
YYSYMBOL_STRINGLITERAL = 8, /* STRINGLITERAL */
YYSYMBOL_BYTESLITERAL = 9, /* BYTESLITERAL */
YYSYMBOL_CSTRINGLITERAL = 10, /* CSTRINGLITERAL */
YYSYMBOL_EXTERNCODE = 11, /* EXTERNCODE */
YYSYMBOL_TALIGN = 12, /* TALIGN */
YYSYMBOL_TAS = 13, /* TAS */
YYSYMBOL_TATOMIC = 14, /* TATOMIC */
YYSYMBOL_TBEGIN = 15, /* TBEGIN */
YYSYMBOL_TBREAK = 16, /* TBREAK */
YYSYMBOL_TBOOL = 17, /* TBOOL */
YYSYMBOL_TBORROWED = 18, /* TBORROWED */
YYSYMBOL_TBY = 19, /* TBY */
YYSYMBOL_TBYTES = 20, /* TBYTES */
YYSYMBOL_TCATCH = 21, /* TCATCH */
YYSYMBOL_TCLASS = 22, /* TCLASS */
YYSYMBOL_TCOBEGIN = 23, /* TCOBEGIN */
YYSYMBOL_TCOFORALL = 24, /* TCOFORALL */
YYSYMBOL_TCOMPLEX = 25, /* TCOMPLEX */
YYSYMBOL_TCONFIG = 26, /* TCONFIG */
YYSYMBOL_TCONST = 27, /* TCONST */
YYSYMBOL_TCONTINUE = 28, /* TCONTINUE */
YYSYMBOL_TDEFER = 29, /* TDEFER */
YYSYMBOL_TDELETE = 30, /* TDELETE */
YYSYMBOL_TDEPRECATED = 31, /* TDEPRECATED */
YYSYMBOL_TDMAPPED = 32, /* TDMAPPED */
YYSYMBOL_TDO = 33, /* TDO */
YYSYMBOL_TDOMAIN = 34, /* TDOMAIN */
YYSYMBOL_TELSE = 35, /* TELSE */
YYSYMBOL_TENUM = 36, /* TENUM */
YYSYMBOL_TEXCEPT = 37, /* TEXCEPT */
YYSYMBOL_TEXPORT = 38, /* TEXPORT */
YYSYMBOL_TEXTERN = 39, /* TEXTERN */
YYSYMBOL_TFALSE = 40, /* TFALSE */
YYSYMBOL_TFOR = 41, /* TFOR */
YYSYMBOL_TFORALL = 42, /* TFORALL */
YYSYMBOL_TFOREACH = 43, /* TFOREACH */
YYSYMBOL_TFORWARDING = 44, /* TFORWARDING */
YYSYMBOL_TIF = 45, /* TIF */
YYSYMBOL_TIMAG = 46, /* TIMAG */
YYSYMBOL_TIMPORT = 47, /* TIMPORT */
YYSYMBOL_TIN = 48, /* TIN */
YYSYMBOL_TINCLUDE = 49, /* TINCLUDE */
YYSYMBOL_TINDEX = 50, /* TINDEX */
YYSYMBOL_TINLINE = 51, /* TINLINE */
YYSYMBOL_TINOUT = 52, /* TINOUT */
YYSYMBOL_TINT = 53, /* TINT */
YYSYMBOL_TITER = 54, /* TITER */
YYSYMBOL_TINITEQUALS = 55, /* TINITEQUALS */
YYSYMBOL_TIMPLEMENTS = 56, /* TIMPLEMENTS */
YYSYMBOL_TINTERFACE = 57, /* TINTERFACE */
YYSYMBOL_TLABEL = 58, /* TLABEL */
YYSYMBOL_TLAMBDA = 59, /* TLAMBDA */
YYSYMBOL_TLET = 60, /* TLET */
YYSYMBOL_TLIFETIME = 61, /* TLIFETIME */
YYSYMBOL_TLOCAL = 62, /* TLOCAL */
YYSYMBOL_TLOCALE = 63, /* TLOCALE */
YYSYMBOL_TMANAGE = 64, /* TMANAGE */
YYSYMBOL_TMINUSMINUS = 65, /* TMINUSMINUS */
YYSYMBOL_TMODULE = 66, /* TMODULE */
YYSYMBOL_TNEW = 67, /* TNEW */
YYSYMBOL_TNIL = 68, /* TNIL */
YYSYMBOL_TNOINIT = 69, /* TNOINIT */
YYSYMBOL_TNONE = 70, /* TNONE */
YYSYMBOL_TNOTHING = 71, /* TNOTHING */
YYSYMBOL_TON = 72, /* TON */
YYSYMBOL_TONLY = 73, /* TONLY */
YYSYMBOL_TOPERATOR = 74, /* TOPERATOR */
YYSYMBOL_TOTHERWISE = 75, /* TOTHERWISE */
YYSYMBOL_TOUT = 76, /* TOUT */
YYSYMBOL_TOVERRIDE = 77, /* TOVERRIDE */
YYSYMBOL_TOWNED = 78, /* TOWNED */
YYSYMBOL_TPARAM = 79, /* TPARAM */
YYSYMBOL_TPLUSPLUS = 80, /* TPLUSPLUS */
YYSYMBOL_TPRAGMA = 81, /* TPRAGMA */
YYSYMBOL_TPRIMITIVE = 82, /* TPRIMITIVE */
YYSYMBOL_TPRIVATE = 83, /* TPRIVATE */
YYSYMBOL_TPROC = 84, /* TPROC */
YYSYMBOL_TPROTOTYPE = 85, /* TPROTOTYPE */
YYSYMBOL_TPUBLIC = 86, /* TPUBLIC */
YYSYMBOL_TREAL = 87, /* TREAL */
YYSYMBOL_TRECORD = 88, /* TRECORD */
YYSYMBOL_TREDUCE = 89, /* TREDUCE */
YYSYMBOL_TREF = 90, /* TREF */
YYSYMBOL_TREQUIRE = 91, /* TREQUIRE */
YYSYMBOL_TRETURN = 92, /* TRETURN */
YYSYMBOL_TSCAN = 93, /* TSCAN */
YYSYMBOL_TSELECT = 94, /* TSELECT */
YYSYMBOL_TSERIAL = 95, /* TSERIAL */
YYSYMBOL_TSHARED = 96, /* TSHARED */
YYSYMBOL_TSINGLE = 97, /* TSINGLE */
YYSYMBOL_TSPARSE = 98, /* TSPARSE */
YYSYMBOL_TSTRING = 99, /* TSTRING */
YYSYMBOL_TSUBDOMAIN = 100, /* TSUBDOMAIN */
YYSYMBOL_TSYNC = 101, /* TSYNC */
YYSYMBOL_TTHEN = 102, /* TTHEN */
YYSYMBOL_TTHIS = 103, /* TTHIS */
YYSYMBOL_TTHROW = 104, /* TTHROW */
YYSYMBOL_TTHROWS = 105, /* TTHROWS */
YYSYMBOL_TTRUE = 106, /* TTRUE */
YYSYMBOL_TTRY = 107, /* TTRY */
YYSYMBOL_TTRYBANG = 108, /* TTRYBANG */
YYSYMBOL_TTYPE = 109, /* TTYPE */
YYSYMBOL_TUINT = 110, /* TUINT */
YYSYMBOL_TUNDERSCORE = 111, /* TUNDERSCORE */
YYSYMBOL_TUNION = 112, /* TUNION */
YYSYMBOL_TUNMANAGED = 113, /* TUNMANAGED */
YYSYMBOL_TUSE = 114, /* TUSE */
YYSYMBOL_TVAR = 115, /* TVAR */
YYSYMBOL_TVOID = 116, /* TVOID */
YYSYMBOL_TWHEN = 117, /* TWHEN */
YYSYMBOL_TWHERE = 118, /* TWHERE */
YYSYMBOL_TWHILE = 119, /* TWHILE */
YYSYMBOL_TWITH = 120, /* TWITH */
YYSYMBOL_TYIELD = 121, /* TYIELD */
YYSYMBOL_TZIP = 122, /* TZIP */
YYSYMBOL_TALIAS = 123, /* TALIAS */
YYSYMBOL_TAND = 124, /* TAND */
YYSYMBOL_TASSIGN = 125, /* TASSIGN */
YYSYMBOL_TASSIGNBAND = 126, /* TASSIGNBAND */
YYSYMBOL_TASSIGNBOR = 127, /* TASSIGNBOR */
YYSYMBOL_TASSIGNBXOR = 128, /* TASSIGNBXOR */
YYSYMBOL_TASSIGNDIVIDE = 129, /* TASSIGNDIVIDE */
YYSYMBOL_TASSIGNEXP = 130, /* TASSIGNEXP */
YYSYMBOL_TASSIGNLAND = 131, /* TASSIGNLAND */
YYSYMBOL_TASSIGNLOR = 132, /* TASSIGNLOR */
YYSYMBOL_TASSIGNMINUS = 133, /* TASSIGNMINUS */
YYSYMBOL_TASSIGNMOD = 134, /* TASSIGNMOD */
YYSYMBOL_TASSIGNMULTIPLY = 135, /* TASSIGNMULTIPLY */
YYSYMBOL_TASSIGNPLUS = 136, /* TASSIGNPLUS */
YYSYMBOL_TASSIGNREDUCE = 137, /* TASSIGNREDUCE */
YYSYMBOL_TASSIGNSL = 138, /* TASSIGNSL */
YYSYMBOL_TASSIGNSR = 139, /* TASSIGNSR */
YYSYMBOL_TBANG = 140, /* TBANG */
YYSYMBOL_TBAND = 141, /* TBAND */
YYSYMBOL_TBNOT = 142, /* TBNOT */
YYSYMBOL_TBOR = 143, /* TBOR */
YYSYMBOL_TBXOR = 144, /* TBXOR */
YYSYMBOL_TCOLON = 145, /* TCOLON */
YYSYMBOL_TCOMMA = 146, /* TCOMMA */
YYSYMBOL_TDIVIDE = 147, /* TDIVIDE */
YYSYMBOL_TDOT = 148, /* TDOT */
YYSYMBOL_TDOTDOT = 149, /* TDOTDOT */
YYSYMBOL_TDOTDOTDOT = 150, /* TDOTDOTDOT */
YYSYMBOL_TEQUAL = 151, /* TEQUAL */
YYSYMBOL_TEXP = 152, /* TEXP */
YYSYMBOL_TGREATER = 153, /* TGREATER */
YYSYMBOL_TGREATEREQUAL = 154, /* TGREATEREQUAL */
YYSYMBOL_THASH = 155, /* THASH */
YYSYMBOL_TIO = 156, /* TIO */
YYSYMBOL_TLESS = 157, /* TLESS */
YYSYMBOL_TLESSEQUAL = 158, /* TLESSEQUAL */
YYSYMBOL_TMINUS = 159, /* TMINUS */
YYSYMBOL_TMOD = 160, /* TMOD */
YYSYMBOL_TNOTEQUAL = 161, /* TNOTEQUAL */
YYSYMBOL_TOR = 162, /* TOR */
YYSYMBOL_TPLUS = 163, /* TPLUS */
YYSYMBOL_TQUESTION = 164, /* TQUESTION */
YYSYMBOL_TSEMI = 165, /* TSEMI */
YYSYMBOL_TSHIFTLEFT = 166, /* TSHIFTLEFT */
YYSYMBOL_TSHIFTRIGHT = 167, /* TSHIFTRIGHT */
YYSYMBOL_TSTAR = 168, /* TSTAR */
YYSYMBOL_TSWAP = 169, /* TSWAP */
YYSYMBOL_TLCBR = 170, /* TLCBR */
YYSYMBOL_TRCBR = 171, /* TRCBR */
YYSYMBOL_TLP = 172, /* TLP */
YYSYMBOL_TRP = 173, /* TRP */
YYSYMBOL_TLSBR = 174, /* TLSBR */
YYSYMBOL_TRSBR = 175, /* TRSBR */
YYSYMBOL_TNOELSE = 176, /* TNOELSE */
YYSYMBOL_TDOTDOTOPENHIGH = 177, /* TDOTDOTOPENHIGH */
YYSYMBOL_TUPLUS = 178, /* TUPLUS */
YYSYMBOL_TUMINUS = 179, /* TUMINUS */
YYSYMBOL_TLNOT = 180, /* TLNOT */
YYSYMBOL_YYACCEPT = 181, /* $accept */
YYSYMBOL_program = 182, /* program */
YYSYMBOL_toplevel_stmt_ls = 183, /* toplevel_stmt_ls */
YYSYMBOL_toplevel_stmt = 184, /* toplevel_stmt */
YYSYMBOL_pragma_ls = 185, /* pragma_ls */
YYSYMBOL_stmt = 186, /* stmt */
YYSYMBOL_tryable_stmt = 187, /* tryable_stmt */
YYSYMBOL_deprecated_decl_stmt = 188, /* deprecated_decl_stmt */
YYSYMBOL_deprecated_decl_base = 189, /* deprecated_decl_base */
YYSYMBOL_module_decl_start = 190, /* module_decl_start */
YYSYMBOL_module_decl_stmt = 191, /* module_decl_stmt */
YYSYMBOL_access_control = 192, /* access_control */
YYSYMBOL_opt_prototype = 193, /* opt_prototype */
YYSYMBOL_include_access_control = 194, /* include_access_control */
YYSYMBOL_include_module_stmt = 195, /* include_module_stmt */
YYSYMBOL_196_1 = 196, /* $@1 */
YYSYMBOL_block_stmt = 197, /* block_stmt */
YYSYMBOL_stmt_ls = 198, /* stmt_ls */
YYSYMBOL_renames_ls = 199, /* renames_ls */
YYSYMBOL_use_renames_ls = 200, /* use_renames_ls */
YYSYMBOL_opt_only_ls = 201, /* opt_only_ls */
YYSYMBOL_use_access_control = 202, /* use_access_control */
YYSYMBOL_use_stmt = 203, /* use_stmt */
YYSYMBOL_import_stmt = 204, /* import_stmt */
YYSYMBOL_import_expr = 205, /* import_expr */
YYSYMBOL_import_ls = 206, /* import_ls */
YYSYMBOL_require_stmt = 207, /* require_stmt */
YYSYMBOL_assignment_stmt = 208, /* assignment_stmt */
YYSYMBOL_opt_label_ident = 209, /* opt_label_ident */
YYSYMBOL_ident_fn_def = 210, /* ident_fn_def */
YYSYMBOL_ident_def = 211, /* ident_def */
YYSYMBOL_ident_use = 212, /* ident_use */
YYSYMBOL_internal_type_ident_def = 213, /* internal_type_ident_def */
YYSYMBOL_scalar_type = 214, /* scalar_type */
YYSYMBOL_reserved_type_ident_use = 215, /* reserved_type_ident_use */
YYSYMBOL_do_stmt = 216, /* do_stmt */
YYSYMBOL_return_stmt = 217, /* return_stmt */
YYSYMBOL_manager_expr = 218, /* manager_expr */
YYSYMBOL_manager_expr_ls = 219, /* manager_expr_ls */
YYSYMBOL_manage_stmt = 220, /* manage_stmt */
YYSYMBOL_deprecated_class_level_stmt = 221, /* deprecated_class_level_stmt */
YYSYMBOL_class_level_stmt = 222, /* class_level_stmt */
YYSYMBOL_223_2 = 223, /* @2 */
YYSYMBOL_private_decl = 224, /* private_decl */
YYSYMBOL_forwarding_stmt = 225, /* forwarding_stmt */
YYSYMBOL_extern_export_decl_stmt = 226, /* extern_export_decl_stmt */
YYSYMBOL_227_3 = 227, /* $@3 */
YYSYMBOL_228_4 = 228, /* $@4 */
YYSYMBOL_229_5 = 229, /* $@5 */
YYSYMBOL_230_6 = 230, /* $@6 */
YYSYMBOL_231_7 = 231, /* $@7 */
YYSYMBOL_232_8 = 232, /* $@8 */
YYSYMBOL_extern_block_stmt = 233, /* extern_block_stmt */
YYSYMBOL_loop_stmt = 234, /* loop_stmt */
YYSYMBOL_zippered_iterator = 235, /* zippered_iterator */
YYSYMBOL_if_stmt = 236, /* if_stmt */
YYSYMBOL_ifvar = 237, /* ifvar */
YYSYMBOL_interface_stmt = 238, /* interface_stmt */
YYSYMBOL_ifc_formal_ls = 239, /* ifc_formal_ls */
YYSYMBOL_ifc_formal = 240, /* ifc_formal */
YYSYMBOL_implements_type_ident = 241, /* implements_type_ident */
YYSYMBOL_implements_type_error_ident = 242, /* implements_type_error_ident */
YYSYMBOL_implements_stmt = 243, /* implements_stmt */
YYSYMBOL_ifc_constraint = 244, /* ifc_constraint */
YYSYMBOL_defer_stmt = 245, /* defer_stmt */
YYSYMBOL_try_token = 246, /* try_token */
YYSYMBOL_try_stmt = 247, /* try_stmt */
YYSYMBOL_catch_stmt_ls = 248, /* catch_stmt_ls */
YYSYMBOL_catch_stmt = 249, /* catch_stmt */
YYSYMBOL_catch_expr = 250, /* catch_expr */
YYSYMBOL_throw_stmt = 251, /* throw_stmt */
YYSYMBOL_select_stmt = 252, /* select_stmt */
YYSYMBOL_when_stmt_ls = 253, /* when_stmt_ls */
YYSYMBOL_when_stmt = 254, /* when_stmt */
YYSYMBOL_class_decl_stmt = 255, /* class_decl_stmt */
YYSYMBOL_class_tag = 256, /* class_tag */
YYSYMBOL_opt_inherit = 257, /* opt_inherit */
YYSYMBOL_class_level_stmt_ls = 258, /* class_level_stmt_ls */
YYSYMBOL_enum_decl_stmt = 259, /* enum_decl_stmt */
YYSYMBOL_enum_header = 260, /* enum_header */
YYSYMBOL_enum_ls = 261, /* enum_ls */
YYSYMBOL_deprecated_enum_item = 262, /* deprecated_enum_item */
YYSYMBOL_enum_item = 263, /* enum_item */
YYSYMBOL_lambda_decl_expr = 264, /* lambda_decl_expr */
YYSYMBOL_265_9 = 265, /* $@9 */
YYSYMBOL_266_10 = 266, /* $@10 */
YYSYMBOL_linkage_spec = 267, /* linkage_spec */
YYSYMBOL_fn_decl_stmt = 268, /* fn_decl_stmt */
YYSYMBOL_269_11 = 269, /* $@11 */
YYSYMBOL_270_12 = 270, /* $@12 */
YYSYMBOL_fn_decl_stmt_inner = 271, /* fn_decl_stmt_inner */
YYSYMBOL_fn_decl_receiver_expr = 272, /* fn_decl_receiver_expr */
YYSYMBOL_fn_ident = 273, /* fn_ident */
YYSYMBOL_op_ident = 274, /* op_ident */
YYSYMBOL_assignop_ident = 275, /* assignop_ident */
YYSYMBOL_all_op_name = 276, /* all_op_name */
YYSYMBOL_opt_formal_ls = 277, /* opt_formal_ls */
YYSYMBOL_req_formal_ls = 278, /* req_formal_ls */
YYSYMBOL_formal_ls_inner = 279, /* formal_ls_inner */
YYSYMBOL_formal_ls = 280, /* formal_ls */
YYSYMBOL_formal = 281, /* formal */
YYSYMBOL_opt_intent_tag = 282, /* opt_intent_tag */
YYSYMBOL_required_intent_tag = 283, /* required_intent_tag */
YYSYMBOL_opt_this_intent_tag = 284, /* opt_this_intent_tag */
YYSYMBOL_proc_iter_or_op = 285, /* proc_iter_or_op */
YYSYMBOL_opt_ret_tag = 286, /* opt_ret_tag */
YYSYMBOL_opt_throws_error = 287, /* opt_throws_error */
YYSYMBOL_opt_function_body_stmt = 288, /* opt_function_body_stmt */
YYSYMBOL_function_body_stmt = 289, /* function_body_stmt */
YYSYMBOL_query_expr = 290, /* query_expr */
YYSYMBOL_var_arg_expr = 291, /* var_arg_expr */
YYSYMBOL_opt_lifetime_where = 292, /* opt_lifetime_where */
YYSYMBOL_lifetime_components_expr = 293, /* lifetime_components_expr */
YYSYMBOL_lifetime_expr = 294, /* lifetime_expr */
YYSYMBOL_lifetime_ident = 295, /* lifetime_ident */
YYSYMBOL_type_alias_decl_stmt = 296, /* type_alias_decl_stmt */
YYSYMBOL_type_alias_decl_stmt_inner = 297, /* type_alias_decl_stmt_inner */
YYSYMBOL_opt_init_type = 298, /* opt_init_type */
YYSYMBOL_var_decl_type = 299, /* var_decl_type */
YYSYMBOL_var_decl_stmt = 300, /* var_decl_stmt */
YYSYMBOL_var_decl_stmt_inner_ls = 301, /* var_decl_stmt_inner_ls */
YYSYMBOL_var_decl_stmt_inner = 302, /* var_decl_stmt_inner */
YYSYMBOL_tuple_var_decl_component = 303, /* tuple_var_decl_component */
YYSYMBOL_tuple_var_decl_stmt_inner_ls = 304, /* tuple_var_decl_stmt_inner_ls */
YYSYMBOL_opt_init_expr = 305, /* opt_init_expr */
YYSYMBOL_ret_array_type = 306, /* ret_array_type */
YYSYMBOL_opt_ret_type = 307, /* opt_ret_type */
YYSYMBOL_opt_type = 308, /* opt_type */
YYSYMBOL_array_type = 309, /* array_type */
YYSYMBOL_opt_formal_array_elt_type = 310, /* opt_formal_array_elt_type */
YYSYMBOL_formal_array_type = 311, /* formal_array_type */
YYSYMBOL_opt_formal_type = 312, /* opt_formal_type */
YYSYMBOL_expr_ls = 313, /* expr_ls */
YYSYMBOL_simple_expr_ls = 314, /* simple_expr_ls */
YYSYMBOL_tuple_component = 315, /* tuple_component */
YYSYMBOL_tuple_expr_ls = 316, /* tuple_expr_ls */
YYSYMBOL_opt_actual_ls = 317, /* opt_actual_ls */
YYSYMBOL_actual_ls = 318, /* actual_ls */
YYSYMBOL_actual_expr = 319, /* actual_expr */
YYSYMBOL_ident_expr = 320, /* ident_expr */
YYSYMBOL_type_level_expr = 321, /* type_level_expr */
YYSYMBOL_sub_type_level_expr = 322, /* sub_type_level_expr */
YYSYMBOL_for_expr = 323, /* for_expr */
YYSYMBOL_cond_expr = 324, /* cond_expr */
YYSYMBOL_nil_expr = 325, /* nil_expr */
YYSYMBOL_stmt_level_expr = 326, /* stmt_level_expr */
YYSYMBOL_opt_task_intent_ls = 327, /* opt_task_intent_ls */
YYSYMBOL_task_intent_clause = 328, /* task_intent_clause */
YYSYMBOL_task_intent_ls = 329, /* task_intent_ls */
YYSYMBOL_forall_intent_clause = 330, /* forall_intent_clause */
YYSYMBOL_forall_intent_ls = 331, /* forall_intent_ls */
YYSYMBOL_intent_expr = 332, /* intent_expr */
YYSYMBOL_shadow_var_prefix = 333, /* shadow_var_prefix */
YYSYMBOL_io_expr = 334, /* io_expr */
YYSYMBOL_new_maybe_decorated = 335, /* new_maybe_decorated */
YYSYMBOL_new_expr = 336, /* new_expr */
YYSYMBOL_let_expr = 337, /* let_expr */
YYSYMBOL_expr = 338, /* expr */
YYSYMBOL_opt_expr = 339, /* opt_expr */
YYSYMBOL_opt_try_expr = 340, /* opt_try_expr */
YYSYMBOL_lhs_expr = 341, /* lhs_expr */
YYSYMBOL_call_base_expr = 342, /* call_base_expr */
YYSYMBOL_call_expr = 343, /* call_expr */
YYSYMBOL_dot_expr = 344, /* dot_expr */
YYSYMBOL_parenthesized_expr = 345, /* parenthesized_expr */
YYSYMBOL_bool_literal = 346, /* bool_literal */
YYSYMBOL_str_bytes_literal = 347, /* str_bytes_literal */
YYSYMBOL_literal_expr = 348, /* literal_expr */
YYSYMBOL_assoc_expr_ls = 349, /* assoc_expr_ls */
YYSYMBOL_binary_op_expr = 350, /* binary_op_expr */
YYSYMBOL_unary_op_expr = 351, /* unary_op_expr */
YYSYMBOL_reduce_expr = 352, /* reduce_expr */
YYSYMBOL_scan_expr = 353, /* scan_expr */
YYSYMBOL_reduce_scan_op_expr = 354 /* reduce_scan_op_expr */
};
typedef enum yysymbol_kind_t yysymbol_kind_t;
/* Unqualified %code blocks. */
#line 39 "chapel.ypp"
#include <string>
int captureTokens;
std::string captureString;
bool parsingPrivate=false;
#line 214 "chapel.ypp"
#include "build.h"
#include "CatchStmt.h"
#include "DeferStmt.h"
#include "DoWhileStmt.h"
#include "driver.h"
#include "flex-chapel.h"
#include "ForallStmt.h"
#include "ForLoop.h"
#include "IfExpr.h"
#include "misc.h"
#include "parser.h"
#include "stmt.h"
#include "stringutil.h"
#include "TryStmt.h"
#include "vec.h"
#include "WhileDoStmt.h"
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <stdint.h>
#define YYLLOC_DEFAULT(Current, Rhs, N) \
if (N) { \
(Current).first_line = (Rhs)[1].first_line; \
(Current).first_column = (Rhs)[1].first_column; \
(Current).last_line = (Rhs)[N].last_line; \
(Current).last_column = (Rhs)[N].last_column; \
(Current).comment = NULL; \
\
if ((Current).first_line) \
yystartlineno = (Current).first_line; \
\
} else { \
(Current) = yylloc; \
}
void yyerror(YYLTYPE* ignored,
ParserContext* context,
const char* str) {
// like USR_FATAL_CONT
setupError("parser", __FILE__, __LINE__, 3);
// TODO -- should this begin with error:
if (!chplParseString) {
const char* yyText = yyget_text(context->scanner);
fprintf(stderr, "%s:%d: %s", yyfilename, chplLineno, str);
if (strlen(yyText) > 0) {
fprintf(stderr, ": near '%s'", yyText);
}
} else {
fprintf(stderr, "%s: %s", yyfilename, str);
if (chplParseStringMsg && (strlen(chplParseStringMsg) > 0)) {
fprintf(stderr, " %s", chplParseStringMsg);
}
}
fprintf(stderr, "\n");
}
#line 529 "bison-chapel.cpp"
#ifdef short
# undef short
#endif
/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
<limits.h> and (if available) <stdint.h> are included
so that the code can choose integer types of a good width. */
#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
# define YY_STDINT_H
# endif
#endif
/* Narrow types that promote to a signed type and that can represent a
signed or unsigned integer of at least N bits. In tables they can
save space and decrease cache pressure. Promoting to a signed type
helps avoid bugs in integer arithmetic. */
#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif
#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
typedef short yytype_int16;
#endif
/* Work around bug in HP-UX 11.23, which defines these macros
incorrectly for preprocessor constants. This workaround can likely
be removed in 2023, as HPE has promised support for HP-UX 11.23
(aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
<https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>. */
#ifdef __hpux
# undef UINT_LEAST8_MAX
# undef UINT_LEAST16_MAX
# define UINT_LEAST8_MAX 255
# define UINT_LEAST16_MAX 65535
#endif
#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
typedef short yytype_uint8;
#endif
#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
typedef int yytype_uint16;
#endif
#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
# define YYPTRDIFF_T __PTRDIFF_TYPE__
# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
# ifndef ptrdiff_t
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# endif
# define YYPTRDIFF_T ptrdiff_t
# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
# define YYPTRDIFF_T long
# define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
#define YYSIZE_MAXIMUM \
YY_CAST (YYPTRDIFF_T, \
(YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
? YYPTRDIFF_MAXIMUM \
: YY_CAST (YYSIZE_T, -1)))
#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
/* Stored state numbers (used for stacks). */
typedef yytype_int16 yy_state_t;
/* State numbers in computations. */
typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
# else
# define YY_ATTRIBUTE_UNUSED
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YY_USE(E) ((void) (E))
#else
# define YY_USE(E) /* empty */
#endif
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
# else
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# endif
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
#define YY_ASSERT(E) ((void) (0 && (E)))
#if !defined yyoverflow
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* !defined yyoverflow */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
&& defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yy_state_t yyss_alloc;
YYSTYPE yyvs_alloc;
YYLTYPE yyls_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE) \
+ YYSIZEOF (YYLTYPE)) \
+ 2 * YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 3
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 21112
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 181
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 174
/* YYNRULES -- Number of rules. */
#define YYNRULES 715
/* YYNSTATES -- Number of states. */
#define YYNSTATES 1289
/* YYMAXUTOK -- Last valid token kind. */
#define YYMAXUTOK 435
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
(0 <= (YYX) && (YYX) <= YYMAXUTOK \
? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
: YYSYMBOL_YYUNDEF)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
175, 176, 177, 178, 179, 180
};
#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_int16 yyrline[] =
{
0, 518, 518, 523, 524, 530, 531, 536, 537, 542,
543, 544, 545, 546, 547, 548, 549, 550, 551, 552,
553, 554, 555, 556, 557, 558, 559, 560, 564, 565,
566, 567, 568, 569, 570, 571, 572, 573, 574, 575,
576, 577, 578, 579, 583, 584, 586, 591, 592, 596,
609, 614, 619, 627, 628, 629, 633, 634, 638, 639,
640, 645, 644, 665, 666, 667, 672, 673, 678, 683,
688, 693, 697, 701, 710, 715, 720, 725, 729, 733,
741, 746, 750, 751, 752, 756, 757, 758, 759, 760,
761, 762, 766, 771, 772, 778, 779, 783, 784, 788,
792, 794, 796, 798, 800, 802, 809, 810, 814, 815,
816, 817, 818, 819, 822, 823, 824, 825, 826, 827,
839, 840, 851, 852, 853, 854, 855, 856, 857, 858,
859, 860, 861, 862, 863, 864, 865, 866, 867, 868,
869, 873, 874, 875, 876, 877, 878, 879, 880, 881,
882, 883, 884, 891, 892, 893, 894, 898, 899, 903,
904, 908, 909, 910, 914, 915, 919, 923, 924, 926,
931, 932, 933, 943, 943, 948, 949, 950, 951, 952,
953, 954, 958, 959, 960, 961, 966, 965, 982, 981,
999, 998, 1015, 1014, 1032, 1031, 1047, 1046, 1062, 1066,
1071, 1079, 1090, 1097, 1098, 1099, 1100, 1101, 1102, 1103,
1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113,
1114, 1115, 1116, 1117, 1118, 1119, 1120, 1126, 1132, 1138,
1144, 1151, 1158, 1162, 1169, 1173, 1174, 1175, 1176, 1178,
1179, 1180, 1181, 1183, 1185, 1187, 1189, 1194, 1195, 1199,
1201, 1209, 1210, 1215, 1220, 1221, 1222, 1223, 1224, 1225,
1226, 1227, 1228, 1229, 1230, 1231, 1232, 1239, 1240, 1241,
1242, 1251, 1252, 1256, 1258, 1261, 1267, 1269, 1272, 1278,
1281, 1282, 1285, 1286, 1290, 1291, 1295, 1296, 1297, 1301,
1302, 1306, 1309, 1311, 1316, 1317, 1321, 1323, 1325, 1332,
1342, 1356, 1361, 1366, 1374, 1375, 1380, 1381, 1383, 1388,
1404, 1411, 1420, 1428, 1432, 1439, 1440, 1442, 1447, 1448,
1453, 1458, 1452, 1485, 1488, 1492, 1500, 1510, 1499, 1549,
1553, 1558, 1562, 1567, 1574, 1575, 1579, 1580, 1581, 1585,
1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595,
1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605,
1606, 1607, 1608, 1609, 1610, 1614, 1615, 1616, 1617, 1618,
1619, 1620, 1621, 1622, 1623, 1624, 1625, 1629, 1630, 1634,
1635, 1639, 1643, 1644, 1648, 1649, 1653, 1655, 1657, 1659,
1661, 1663, 1668, 1669, 1673, 1674, 1675, 1676, 1677, 1678,
1679, 1680, 1681, 1685, 1686, 1687, 1688, 1689, 1690, 1694,
1695, 1696, 1700, 1701, 1702, 1703, 1704, 1705, 1709, 1710,
1713, 1714, 1718, 1719, 1723, 1727, 1728, 1729, 1737, 1738,
1740, 1742, 1744, 1749, 1751, 1756, 1757, 1758, 1759, 1760,
1761, 1762, 1766, 1768, 1773, 1775, 1777, 1782, 1795, 1812,
1813, 1815, 1820, 1821, 1822, 1823, 1824, 1828, 1834, 1842,
1843, 1851, 1853, 1858, 1860, 1862, 1867, 1869, 1871, 1878,
1879, 1880, 1885, 1887, 1889, 1893, 1897, 1899, 1903, 1911,
1912, 1913, 1914, 1915, 1920, 1921, 1922, 1923, 1924, 1944,
1948, 1952, 1960, 1967, 1968, 1969, 1973, 1975, 1981, 1983,
1985, 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002, 2003,
2007, 2008, 2012, 2013, 2014, 2018, 2019, 2023, 2024, 2028,
2029, 2033, 2034, 2035, 2036, 2040, 2041, 2052, 2054, 2056,
2062, 2063, 2064, 2065, 2066, 2067, 2069, 2071, 2073, 2075,
2077, 2079, 2082, 2084, 2086, 2088, 2090, 2092, 2094, 2096,
2099, 2101, 2106, 2108, 2110, 2112, 2114, 2116, 2118, 2120,
2122, 2124, 2126, 2128, 2130, 2137, 2143, 2149, 2155, 2164,
2174, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2194,
2195, 2199, 2203, 2204, 2208, 2212, 2213, 2217, 2221, 2225,
2232, 2233, 2234, 2235, 2236, 2237, 2241, 2242, 2247, 2249,
2253, 2257, 2261, 2269, 2274, 2280, 2286, 2293, 2303, 2311,
2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2322,
2324, 2326, 2341, 2343, 2345, 2347, 2352, 2353, 2357, 2358,
2359, 2363, 2364, 2365, 2366, 2375, 2376, 2377, 2378, 2379,
2383, 2384, 2385, 2389, 2390, 2391, 2392, 2393, 2401, 2402,
2403, 2404, 2408, 2409, 2413, 2414, 2418, 2419, 2420, 2421,
2422, 2423, 2424, 2425, 2427, 2429, 2430, 2431, 2435, 2443,
2444, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456,
2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466,
2467, 2468, 2469, 2470, 2475, 2476, 2477, 2478, 2479, 2480,
2481, 2485, 2486, 2487, 2488, 2492, 2493, 2494, 2495, 2500,
2501, 2502, 2503, 2504, 2505, 2506
};
#endif
/** Accessing symbol of state STATE. */
#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
#if YYDEBUG || 0
/* The user-facing name of the symbol whose (internal) number is
YYSYMBOL. No bounds checking. */
static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"\"end of file\"", "error", "\"invalid token\"", "TIDENT",
"TQUERIEDIDENT", "INTLITERAL", "REALLITERAL", "IMAGLITERAL",
"STRINGLITERAL", "BYTESLITERAL", "CSTRINGLITERAL", "EXTERNCODE",
"TALIGN", "TAS", "TATOMIC", "TBEGIN", "TBREAK", "TBOOL", "TBORROWED",
"TBY", "TBYTES", "TCATCH", "TCLASS", "TCOBEGIN", "TCOFORALL", "TCOMPLEX",
"TCONFIG", "TCONST", "TCONTINUE", "TDEFER", "TDELETE", "TDEPRECATED",
"TDMAPPED", "TDO", "TDOMAIN", "TELSE", "TENUM", "TEXCEPT", "TEXPORT",
"TEXTERN", "TFALSE", "TFOR", "TFORALL", "TFOREACH", "TFORWARDING", "TIF",
"TIMAG", "TIMPORT", "TIN", "TINCLUDE", "TINDEX", "TINLINE", "TINOUT",
"TINT", "TITER", "TINITEQUALS", "TIMPLEMENTS", "TINTERFACE", "TLABEL",
"TLAMBDA", "TLET", "TLIFETIME", "TLOCAL", "TLOCALE", "TMANAGE",
"TMINUSMINUS", "TMODULE", "TNEW", "TNIL", "TNOINIT", "TNONE", "TNOTHING",
"TON", "TONLY", "TOPERATOR", "TOTHERWISE", "TOUT", "TOVERRIDE", "TOWNED",
"TPARAM", "TPLUSPLUS", "TPRAGMA", "TPRIMITIVE", "TPRIVATE", "TPROC",
"TPROTOTYPE", "TPUBLIC", "TREAL", "TRECORD", "TREDUCE", "TREF",
"TREQUIRE", "TRETURN", "TSCAN", "TSELECT", "TSERIAL", "TSHARED",
"TSINGLE", "TSPARSE", "TSTRING", "TSUBDOMAIN", "TSYNC", "TTHEN", "TTHIS",
"TTHROW", "TTHROWS", "TTRUE", "TTRY", "TTRYBANG", "TTYPE", "TUINT",
"TUNDERSCORE", "TUNION", "TUNMANAGED", "TUSE", "TVAR", "TVOID", "TWHEN",
"TWHERE", "TWHILE", "TWITH", "TYIELD", "TZIP", "TALIAS", "TAND",
"TASSIGN", "TASSIGNBAND", "TASSIGNBOR", "TASSIGNBXOR", "TASSIGNDIVIDE",
"TASSIGNEXP", "TASSIGNLAND", "TASSIGNLOR", "TASSIGNMINUS", "TASSIGNMOD",
"TASSIGNMULTIPLY", "TASSIGNPLUS", "TASSIGNREDUCE", "TASSIGNSL",
"TASSIGNSR", "TBANG", "TBAND", "TBNOT", "TBOR", "TBXOR", "TCOLON",
"TCOMMA", "TDIVIDE", "TDOT", "TDOTDOT", "TDOTDOTDOT", "TEQUAL", "TEXP",
"TGREATER", "TGREATEREQUAL", "THASH", "TIO", "TLESS", "TLESSEQUAL",
"TMINUS", "TMOD", "TNOTEQUAL", "TOR", "TPLUS", "TQUESTION", "TSEMI",
"TSHIFTLEFT", "TSHIFTRIGHT", "TSTAR", "TSWAP", "TLCBR", "TRCBR", "TLP",
"TRP", "TLSBR", "TRSBR", "TNOELSE", "TDOTDOTOPENHIGH", "TUPLUS",
"TUMINUS", "TLNOT", "$accept", "program", "toplevel_stmt_ls",
"toplevel_stmt", "pragma_ls", "stmt", "tryable_stmt",
"deprecated_decl_stmt", "deprecated_decl_base", "module_decl_start",
"module_decl_stmt", "access_control", "opt_prototype",
"include_access_control", "include_module_stmt", "$@1", "block_stmt",
"stmt_ls", "renames_ls", "use_renames_ls", "opt_only_ls",
"use_access_control", "use_stmt", "import_stmt", "import_expr",
"import_ls", "require_stmt", "assignment_stmt", "opt_label_ident",
"ident_fn_def", "ident_def", "ident_use", "internal_type_ident_def",
"scalar_type", "reserved_type_ident_use", "do_stmt", "return_stmt",
"manager_expr", "manager_expr_ls", "manage_stmt",
"deprecated_class_level_stmt", "class_level_stmt", "@2", "private_decl",
"forwarding_stmt", "extern_export_decl_stmt", "$@3", "$@4", "$@5", "$@6",
"$@7", "$@8", "extern_block_stmt", "loop_stmt", "zippered_iterator",
"if_stmt", "ifvar", "interface_stmt", "ifc_formal_ls", "ifc_formal",
"implements_type_ident", "implements_type_error_ident",
"implements_stmt", "ifc_constraint", "defer_stmt", "try_token",
"try_stmt", "catch_stmt_ls", "catch_stmt", "catch_expr", "throw_stmt",
"select_stmt", "when_stmt_ls", "when_stmt", "class_decl_stmt",
"class_tag", "opt_inherit", "class_level_stmt_ls", "enum_decl_stmt",
"enum_header", "enum_ls", "deprecated_enum_item", "enum_item",
"lambda_decl_expr", "$@9", "$@10", "linkage_spec", "fn_decl_stmt",
"$@11", "$@12", "fn_decl_stmt_inner", "fn_decl_receiver_expr",
"fn_ident", "op_ident", "assignop_ident", "all_op_name", "opt_formal_ls",
"req_formal_ls", "formal_ls_inner", "formal_ls", "formal",
"opt_intent_tag", "required_intent_tag", "opt_this_intent_tag",
"proc_iter_or_op", "opt_ret_tag", "opt_throws_error",
"opt_function_body_stmt", "function_body_stmt", "query_expr",
"var_arg_expr", "opt_lifetime_where", "lifetime_components_expr",
"lifetime_expr", "lifetime_ident", "type_alias_decl_stmt",
"type_alias_decl_stmt_inner", "opt_init_type", "var_decl_type",
"var_decl_stmt", "var_decl_stmt_inner_ls", "var_decl_stmt_inner",
"tuple_var_decl_component", "tuple_var_decl_stmt_inner_ls",
"opt_init_expr", "ret_array_type", "opt_ret_type", "opt_type",
"array_type", "opt_formal_array_elt_type", "formal_array_type",
"opt_formal_type", "expr_ls", "simple_expr_ls", "tuple_component",
"tuple_expr_ls", "opt_actual_ls", "actual_ls", "actual_expr",
"ident_expr", "type_level_expr", "sub_type_level_expr", "for_expr",
"cond_expr", "nil_expr", "stmt_level_expr", "opt_task_intent_ls",
"task_intent_clause", "task_intent_ls", "forall_intent_clause",
"forall_intent_ls", "intent_expr", "shadow_var_prefix", "io_expr",
"new_maybe_decorated", "new_expr", "let_expr", "expr", "opt_expr",
"opt_try_expr", "lhs_expr", "call_base_expr", "call_expr", "dot_expr",
"parenthesized_expr", "bool_literal", "str_bytes_literal",
"literal_expr", "assoc_expr_ls", "binary_op_expr", "unary_op_expr",
"reduce_expr", "scan_expr", "reduce_scan_op_expr", YY_NULLPTR
};
static const char *
yysymbol_name (yysymbol_kind_t yysymbol)
{
return yytname[yysymbol];
}
#endif
#define YYPACT_NINF (-1142)
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
#define YYTABLE_NINF (-716)
#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
-1142, 153, 3771, -1142, 50, 178, -1142, -1142, -1142, -1142,
-1142, -1142, 5173, 144, 284, 241, 15347, 286, 19928, 144,
12312, 371, 342, 266, 284, 5173, 12312, 1509, 5173, 234,
20648, 12485, 8488, 387, 9182, 10747, 10747, 7617, 9355, 442,
-1142, 267, -1142, 450, 20735, 20735, 20735, -1142, 2525, 10920,
464, 12312, 12312, 208, -1142, 496, 518, 12312, -1142, 15347,
-1142, 12312, 579, 423, 350, 17229, 537, 20822, -1142, 11095,
8661, 12312, 10920, 15347, 12312, 507, 561, 446, 5173, 575,
12312, 576, -1142, -1142, 20735, 588, -1142, 15347, -1142, 592,
9355, 12312, -1142, 12312, -1142, 12312, -1142, -1142, 14862, 12312,
-1142, 12312, -1142, -1142, -1142, 4123, 7792, 9530, 12312, -1142,
4998, -1142, -1142, -1142, -1142, 353, -1142, 566, -1142, -1142,
26, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -1142, -1142, -1142, -1142, 601, -1142, -1142,
-1142, -1142, 7444, -1142, -1142, -1142, -1142, 20735, -1142, 20735,
264, 402, -1142, -1142, 2525, -1142, 494, -1142, 497, -1142,
-1142, 499, 501, 513, 12312, 505, 506, 19998, 3577, 171,
512, 516, -1142, -1142, 333, -1142, -1142, -1142, -1142, -1142,
17, -1142, -1142, 19998, 510, 5173, -1142, -1142, 519, 12312,
-1142, -1142, 12312, 12312, 12312, 20735, -1142, 12312, 11095, 11095,
630, 420, -1142, -1142, -1142, -1142, 204, 467, -1142, -1142,
517, 17006, 20735, 2525, -1142, 523, -1142, -42, 19998, 1393,
-1142, -1142, 9703, 47, 17492, -1142, -1142, 570, 8836, 603,
20909, 19998, 239, 42, -1142, 20996, 20735, -1142, 239, 20735,
520, 23, 16577, 18, 3255, 23, 16617, 238, -1142, 16769,
20735, 20735, -59, 15817, 224, 8836, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142,
526, -1142, 223, 5173, 527, 1759, 107, 16, -1142, 5173,
-1142, -1142, 17046, -1142, 20, 17555, 1197, -1142, 528, 529,
-1142, 17046, 204, 1197, -1142, 8836, 2657, -1142, -1142, -1142,
190, 19998, 12312, 12312, -1142, 19998, 525, 17662, -1142, 17046,
204, 19998, 530, 8836, -1142, 19998, 17707, 568, 538, 204,
23, 17046, 17747, 394, 394, 15026, 1197, 1197, 175, -1142,
-1142, 4298, -49, -1142, 12312, -1142, 136, 189, -1142, -29,
19, 17899, -46, 15026, 705, -1142, 4473, -1142, 651, 12312,
12312, 20735, -1142, -1142, 573, 552, -1142, -1142, -1142, -1142,
277, 471, -1142, 12312, 571, 12312, 12312, 12312, 10747, 10747,
12312, 480, 12312, 12312, 12312, 12312, 12312, 221, 14862, 12312,
12312, 12312, 12312, 12312, 12312, 12312, 12312, 12312, 12312, 12312,
12312, 12312, 12312, 12312, 12312, 654, -1142, -1142, -1142, -1142,
-1142, 9876, 9876, -1142, -1142, -1142, -1142, 9876, -1142, -1142,
9876, 9876, 8836, 8836, 10747, 10747, 8315, -1142, -1142, 17086,
17238, 17939, 553, 76, 20735, 4648, -1142, 10747, 23, 567,
344, -1142, 12312, -1142, -1142, 12312, 606, -1142, 560, 590,
-1142, -1142, -1142, 20735, -1142, 2525, -1142, -1142, 20735, 572,
20735, -1142, 2525, 690, 11095, -1142, 5348, 10747, -1142, 569,
-1142, 23, 5523, 10747, -1142, 23, -1142, 10747, -1142, 7271,
7271, -1142, 614, 615, 5173, 707, 5173, -1142, 709, 12312,
-1142, -1142, 566, 574, 8836, 20735, -1142, -1142, 116, -1142,
-1142, 1759, -1142, 600, 577, -1142, 12658, 624, 12312, 2525,
-1142, -1142, 12312, -1142, 20547, 12312, 12312, -1142, 581, -1142,
11095, -1142, 19998, 19998, -1142, 40, -1142, 8836, 585, -1142,
12831, 613, -1142, -1142, -1142, -1142, -1142, -1142, -1142, 10051,
-1142, 17979, 7967, -1142, 8142, -1142, 5173, 586, 10747, 10226,
3948, 587, 12312, 11268, -1142, -1142, 389, -1142, 4823, 20735,
-1142, 368, 18131, 382, 16809, 131, 731, 11095, 593, 20460,
369, -1142, 18171, 20190, 20190, 458, -1142, 458, -1142, 458,
20288, 1097, 2019, 1860, 204, 394, -1142, 598, -1142, -1142,
-1142, -1142, -1142, 15026, 16515, 458, 2337, 2337, 20190, 2337,
2337, 1570, 394, 16515, 20235, 1570, 1197, 1197, 394, 15026,
609, 611, 620, 623, 626, 627, 605, 621, -1142, 458,
-1142, 458, 69, -1142, -1142, -1142, 255, -1142, 2171, 20150,
488, 13004, 10747, 13177, 10747, 12312, 8836, 10747, 15629, 625,
144, 18216, -1142, -1142, -1142, 19998, 18323, 8836, -1142, 8836,
20735, 573, 397, 20735, 20735, 573, -1142, 573, 405, 12312,
258, 9355, 19998, 49, 17278, 8315, -1142, 9355, 19998, 21,
16854, -1142, 23, 17046, -1142, -1142, -1142, 12312, 515, 12312,
540, 541, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, 12312, -1142, -1142, 10399, -1142, -1142, 549, -1142,
410, -1142, -1142, -1142, 18368, 619, 634, 12312, 12312, 760,
5173, 767, 18408, 5173, 17318, 737, -1142, 272, -1142, 274,
-1142, 247, -1142, -1142, -1142, -1142, -1142, -1142, 708, 658,
632, -1142, 2912, -1142, 390, 633, 1759, 107, 45, 51,
12312, 12312, 7098, -1142, -1142, 602, 9009, -1142, 19998, -1142,
-1142, -1142, 20735, 18560, 18600, -1142, -1142, 19998, 636, 160,
635, -1142, -1142, 417, 20735, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, 5173, -28, 17470, -1142, -1142, 19998, 5173, 19998,
-1142, 18646, -1142, -1142, -1142, 12312, -1142, 109, 3520, 12312,
-1142, 11441, 7271, 7271, -1142, 8836, 1865, -1142, 663, 1362,
639, 19464, 687, 127, -1142, -1142, 723, -1142, -1142, -1142,
-1142, 14694, 643, -1142, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, 8315, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -1142, -1142, -1142, 84, 10747, 10747, 12312,
785, 18752, 12312, 787, 18798, 300, 646, 18838, 8836, 23,
23, -1142, -1142, -1142, -1142, 573, 652, -1142, 573, 573,
653, 659, -1142, 17046, -1142, 15893, 5698, -1142, 5873, -1142,
338, -1142, 15969, 6048, -1142, 23, 6223, -1142, 23, -1142,
-1142, 7271, -1142, 12312, -1142, 19998, 19998, 5173, -1142, 5173,
12312, -1142, 5173, 793, 20735, 666, 20735, 517, -1142, -1142,
20735, 852, -1142, 1759, 688, 742, -1142, -1142, -1142, 113,
-1142, -1142, 624, 660, 100, -1142, -1142, -1142, 662, 667,
-1142, 6398, 11095, -1142, -1142, -1142, -1142, -1142, 6573, 668,
6748, 669, -1142, 12312, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -1142, 7271, -1142, 18990, 232, 17510, 418,
673, 345, 20735, -1142, 696, 517, 671, 2264, -1142, 20735,
-1142, 12312, 19696, -1142, -1142, 390, 675, 341, 697, 700,
701, 710, 704, 711, 712, 713, 714, 715, 718, 354,
717, 722, 724, 12312, -1142, 733, 734, 727, 675, -1142,
675, -1142, -1142, -1142, 624, 346, 349, 19030, 13350, 13523,
19070, 13696, 13869, -1142, 14042, 14215, 351, -1142, -1142, 685,
-1142, 706, 716, -1142, -1142, -1142, 5173, 9355, 19998, 9355,
19998, 8315, -1142, 5173, 9355, 19998, -1142, 9355, 19998, -1142,
-1142, 19222, 19998, -1142, -1142, 19998, 823, 5173, 719, -1142,
-1142, -1142, 688, -1142, 720, 11616, 299, -1142, 15, -1142,
-1142, 10747, 15488, 8836, 8836, 5173, -1142, 32, 9355, -1142,
19998, 5173, 9355, -1142, 19998, 5173, 19998, 187, 11789, 7271,
7271, 7271, 7271, -1142, -1142, 729, 725, 12312, -1142, -1142,
869, -1142, 2657, -1142, 20383, -1142, -1142, -1142, 19998, -1142,
115, 116, -1142, 19262, -1142, 15734, -1142, -1142, -1142, 12312,
12312, 12312, 12312, 12312, 12312, 12312, 12312, -1142, -1142, 2626,
-1142, -1142, 3083, 3436, 18408, 16045, 16121, -1142, 18408, 16197,
16273, 12312, 5173, -1142, -1142, 299, 688, 10574, -1142, -1142,
-1142, 177, 11095, -1142, -1142, 164, 12312, -20, 19302, -1142,
937, 726, 730, 570, -1142, 16349, -1142, 16425, -1142, -1142,
-1142, 19998, 421, 732, 426, 744, -1142, 517, 19998, 1295,
-1142, -1142, -1142, 14388, 775, 738, -1142, 745, 747, 675,
675, 19454, 19494, 19534, 19686, 19726, 19766, 18135, -1142, 18571,
20154, -1142, -1142, 5173, 5173, 5173, 5173, 19998, -1142, -1142,
-1142, 299, 11964, 101, -1142, 19998, -1142, 176, -1142, -15,
-1142, 521, 19918, -1142, -1142, -1142, 14215, 728, 748, 5173,
5173, -1142, -1142, -1142, -1142, -1142, -1142, 6923, -1142, -1142,
233, -1142, 15, -1142, -1142, -1142, 12312, 12312, 12312, 12312,
12312, 12312, -1142, -1142, -1142, 18408, 18408, 18408, 18408, -1142,
-1142, -1142, -1142, -1142, 312, 10747, 15034, -1142, 12312, 164,
176, 176, 176, 176, 176, 176, 164, 1019, -1142, -1142,
18408, 18408, 740, 14561, 103, 169, 19958, -1142, -1142, 19998,
-1142, -1142, -1142, -1142, -1142, -1142, -1142, 735, -1142, -1142,
361, 15206, -1142, -1142, -1142, 12139, -1142, 383, -1142
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_int16 yydefact[] =
{
3, 0, 0, 1, 0, 120, 658, 659, 660, 654,
655, 661, 0, 579, 106, 141, 548, 148, 550, 579,
0, 147, 0, 453, 106, 0, 0, 323, 0, 271,
142, 626, 626, 652, 0, 0, 0, 0, 0, 146,
61, 272, 324, 143, 0, 0, 0, 320, 0, 0,
150, 0, 0, 598, 570, 662, 151, 0, 325, 542,
452, 0, 0, 0, 173, 323, 145, 551, 454, 0,
0, 0, 0, 546, 0, 0, 149, 0, 0, 121,
0, 653, 280, 281, 0, 144, 303, 544, 456, 152,
0, 0, 711, 0, 713, 0, 714, 715, 625, 0,
712, 709, 529, 170, 710, 0, 0, 0, 0, 4,
0, 5, 12, 9, 44, 0, 47, 56, 10, 11,
0, 13, 14, 15, 28, 525, 526, 21, 31, 48,
171, 180, 181, 16, 30, 29, 18, 0, 266, 17,
617, 19, 0, 20, 33, 32, 179, 0, 177, 0,
614, 0, 175, 178, 0, 176, 631, 610, 527, 611,
532, 530, 0, 0, 0, 615, 616, 0, 531, 0,
632, 633, 634, 656, 657, 609, 534, 533, 612, 613,
0, 27, 22, 540, 0, 0, 580, 107, 0, 0,
550, 142, 0, 0, 0, 0, 551, 0, 0, 0,
0, 614, 631, 530, 615, 616, 549, 531, 632, 633,
0, 579, 0, 0, 455, 0, 279, 0, 510, 323,
301, 311, 626, 173, 323, 302, 46, 0, 517, 654,
551, 627, 323, 654, 202, 551, 0, 190, 323, 0,
0, 0, 0, 0, 0, 0, 0, 0, 185, 0,
0, 0, 0, 0, 58, 517, 114, 122, 134, 128,
127, 136, 117, 126, 137, 123, 138, 115, 139, 132,
125, 133, 131, 129, 130, 116, 118, 124, 135, 140,
0, 119, 0, 0, 0, 0, 0, 0, 459, 0,
158, 39, 0, 164, 0, 163, 696, 602, 599, 600,
601, 0, 543, 697, 7, 517, 323, 172, 424, 507,
0, 506, 0, 0, 159, 630, 0, 0, 42, 0,
547, 535, 0, 517, 43, 541, 0, 449, 0, 545,
0, 0, 0, 698, 700, 623, 695, 694, 0, 63,
66, 0, 0, 512, 0, 514, 0, 0, 513, 0,
0, 506, 0, 624, 0, 6, 0, 57, 0, 0,
0, 0, 282, 284, 304, 0, 410, 411, 409, 326,
0, 528, 34, 0, 603, 0, 0, 0, 0, 0,
0, 699, 0, 0, 0, 0, 0, 0, 622, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 365, 372, 373, 374, 369,
371, 0, 0, 367, 370, 368, 366, 0, 376, 375,
0, 0, 517, 517, 0, 0, 0, 35, 23, 0,
0, 0, 0, 0, 0, 0, 36, 0, 0, 0,
0, 24, 0, 37, 45, 0, 525, 523, 0, 518,
519, 524, 196, 0, 199, 0, 188, 192, 0, 0,
0, 198, 0, 0, 0, 212, 0, 0, 211, 0,
220, 0, 0, 0, 218, 0, 225, 0, 224, 0,
80, 182, 0, 0, 0, 240, 0, 365, 236, 0,
60, 59, 56, 0, 0, 0, 250, 25, 392, 321,
463, 0, 464, 466, 0, 488, 0, 469, 0, 0,
157, 38, 0, 166, 0, 0, 0, 40, 0, 174,
0, 99, 628, 629, 160, 0, 41, 0, 0, 291,
0, 447, 444, 205, 204, 26, 65, 64, 67, 0,
663, 0, 0, 648, 0, 650, 0, 0, 0, 0,
0, 0, 0, 0, 667, 8, 0, 50, 0, 0,
97, 0, 93, 0, 74, 277, 283, 0, 0, 0,
403, 458, 578, 691, 690, 693, 702, 701, 706, 705,
687, 684, 685, 686, 619, 674, 120, 0, 645, 646,
121, 644, 643, 620, 678, 689, 683, 681, 692, 682,
680, 672, 677, 679, 688, 671, 675, 676, 673, 621,
0, 0, 0, 0, 0, 0, 0, 0, 704, 703,
708, 707, 590, 591, 593, 595, 0, 582, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 665, 277,
579, 579, 208, 445, 457, 511, 0, 0, 537, 0,
0, 304, 0, 0, 0, 304, 446, 304, 0, 0,
0, 0, 554, 0, 0, 0, 221, 0, 560, 0,
0, 219, 0, 0, 360, 358, 363, 357, 339, 342,
340, 341, 364, 352, 343, 356, 348, 346, 359, 362,
347, 345, 350, 355, 344, 349, 353, 354, 351, 361,
0, 377, 378, 69, 68, 81, 0, 0, 0, 239,
0, 235, 0, 0, 0, 0, 536, 0, 253, 0,
251, 397, 394, 395, 396, 400, 401, 402, 392, 385,
0, 382, 0, 393, 412, 0, 467, 0, 155, 156,
154, 153, 0, 487, 486, 610, 0, 461, 608, 460,
165, 162, 0, 0, 0, 642, 509, 508, 0, 0,
0, 538, 451, 610, 0, 664, 618, 649, 515, 651,
516, 232, 0, 0, 0, 666, 230, 564, 0, 669,
668, 0, 52, 51, 49, 0, 92, 0, 0, 0,
85, 0, 0, 80, 274, 0, 0, 285, 305, 0,
0, 0, 318, 0, 312, 315, 407, 404, 405, 408,
327, 0, 0, 105, 103, 104, 102, 101, 100, 640,
641, 592, 594, 0, 581, 141, 148, 147, 146, 143,
150, 151, 145, 149, 144, 152, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 203, 521, 522, 520, 304, 0, 201, 304, 304,
0, 0, 200, 0, 234, 0, 0, 210, 0, 209,
0, 585, 0, 0, 216, 0, 0, 214, 0, 223,
222, 0, 183, 0, 184, 248, 247, 0, 242, 0,
0, 238, 0, 244, 0, 276, 0, 0, 398, 399,
0, 392, 381, 0, 501, 413, 416, 415, 417, 0,
465, 468, 469, 0, 0, 470, 471, 161, 0, 0,
293, 0, 0, 292, 295, 539, 448, 233, 0, 0,
0, 0, 231, 0, 98, 95, 357, 339, 342, 340,
341, 350, 349, 351, 0, 94, 77, 76, 75, 0,
0, 0, 0, 286, 289, 0, 0, 323, 310, 0,
317, 0, 313, 309, 406, 412, 379, 108, 122, 128,
127, 111, 126, 123, 138, 109, 139, 125, 129, 110,
112, 124, 140, 0, 336, 0, 113, 0, 379, 338,
379, 334, 647, 583, 469, 631, 631, 0, 0, 0,
0, 0, 0, 276, 0, 0, 0, 207, 206, 0,
306, 0, 0, 306, 306, 213, 0, 0, 553, 0,
552, 0, 584, 0, 0, 559, 217, 0, 558, 215,
72, 71, 70, 241, 237, 569, 243, 0, 0, 273,
252, 249, 501, 383, 0, 0, 469, 414, 428, 462,
492, 0, 665, 517, 517, 0, 297, 0, 0, 228,
566, 0, 0, 226, 565, 0, 670, 0, 0, 0,
80, 0, 80, 86, 89, 278, 0, 0, 287, 300,
323, 173, 323, 299, 323, 307, 167, 316, 319, 314,
0, 392, 333, 0, 337, 0, 329, 330, 587, 0,
0, 0, 0, 0, 0, 0, 0, 278, 306, 323,
306, 306, 323, 323, 557, 0, 0, 586, 563, 0,
0, 0, 0, 246, 62, 469, 501, 0, 504, 503,
505, 610, 425, 388, 386, 0, 0, 0, 0, 490,
610, 0, 0, 298, 296, 0, 229, 0, 227, 96,
79, 78, 0, 0, 0, 0, 275, 0, 290, 323,
169, 308, 483, 0, 418, 0, 335, 108, 110, 379,
379, 0, 0, 0, 0, 0, 0, 323, 195, 323,
323, 187, 191, 0, 0, 0, 0, 73, 245, 389,
387, 469, 493, 0, 427, 426, 442, 0, 443, 430,
433, 0, 429, 422, 423, 322, 0, 604, 605, 0,
0, 88, 91, 87, 90, 288, 168, 0, 482, 481,
610, 419, 428, 380, 331, 332, 0, 0, 0, 0,
0, 0, 197, 189, 193, 556, 555, 562, 561, 391,
390, 495, 496, 498, 610, 0, 665, 441, 0, 0,
0, 0, 0, 0, 0, 0, 0, 610, 606, 607,
568, 567, 0, 473, 0, 0, 0, 497, 499, 432,
434, 435, 438, 439, 440, 436, 437, 431, 478, 476,
610, 665, 420, 328, 421, 493, 477, 610, 500
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-1142, -1142, -1142, 8, 78, 2505, 746, -1142, -11, -1142,
-1142, -1142, 414, -1142, -1142, -1142, 463, 533, -472, -1142,
-757, -1142, -1142, -1142, 97, -1142, -1142, -1142, 878, -1142,
2798, -186, -783, -1142, -990, 2895, -1093, 407, -1142, -1142,
-161, -909, -1142, -64, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -1142, 92, -1142, 834, -1142, -1142, 31,
2434, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -1142, -27,
-1142, -1142, -1142, -1142, -1142, -1142, -567, -751, -1142, -1142,
-1142, -26, -770, 741, -1142, -1142, -1142, 352, -1142, -1142,
-1142, -1142, -160, -781, -151, -725, -956, -1142, -1142, -154,
38, 212, -1142, -1142, -1142, -24, -1142, -1142, -322, 29,
-1007, -277, -309, -299, -639, -1142, -203, -1142, 7, 916,
-136, 447, -1142, -488, -885, -982, -1142, -691, -527, -1141,
-1121, -968, -57, -1142, 114, -1142, -253, -473, -428, 812,
-495, -1142, -1142, -1142, 1210, -1142, -13, -1142, -1142, -229,
-1142, -627, -1142, -1142, -1142, 1281, 1352, -12, 927, 168,
1894, -1142, 1965, 2036, -1142, -1142, -1142, -1142, -1142, -1142,
-1142, -1142, -1142, -421
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
0, 1, 2, 340, 1084, 711, 112, 113, 114, 115,
116, 117, 358, 492, 118, 254, 119, 341, 705, 563,
706, 120, 121, 122, 560, 561, 123, 124, 188, 984,
286, 125, 281, 126, 743, 291, 127, 293, 294, 128,
1085, 129, 306, 130, 131, 132, 458, 653, 460, 654,
453, 650, 133, 134, 846, 135, 252, 136, 719, 720,
200, 138, 139, 140, 141, 142, 143, 566, 797, 955,
144, 145, 759, 924, 146, 147, 568, 957, 148, 149,
803, 804, 805, 201, 284, 734, 151, 152, 570, 965,
810, 987, 988, 701, 702, 703, 1092, 499, 729, 730,
731, 732, 733, 811, 369, 909, 1222, 1283, 1205, 447,
1133, 1137, 1199, 1200, 1201, 153, 328, 531, 154, 155,
287, 288, 503, 504, 747, 1219, 1164, 507, 744, 1242,
1130, 1046, 342, 217, 346, 347, 448, 449, 450, 202,
157, 158, 159, 160, 203, 162, 185, 186, 626, 471,
870, 627, 628, 163, 164, 204, 205, 167, 238, 451,
207, 169, 208, 209, 172, 173, 174, 175, 352, 176,
177, 178, 179, 180
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
183, 307, 493, 762, 206, 630, 210, 700, 211, 439,
109, 745, 310, 735, 218, 475, 226, 421, 370, 231,
231, 717, 242, 244, 246, 249, 253, 1049, 986, 213,
989, 960, 1096, 459, 1097, 763, 950, 292, 871, 295,
296, 758, 446, 484, 1204, 301, 912, 302, 1086, 303,
350, 289, 518, 289, 873, 1128, 289, 311, 315, 317,
319, 320, 321, 945, 508, 289, 325, 548, 326, 446,
528, 1243, 70, 359, 1125, 329, 1135, 440, 331, 332,
110, 333, 866, 334, 856, 505, 335, 336, 860, 337,
861, 469, 469, 311, 315, 351, 353, 539, 309, 760,
553, -271, 489, 1248, 442, 1267, 424, -272, 505, 1098,
425, 435, 586, -55, 505, -294, 1162, 821, 1189, 446,
547, 551, 540, 443, 637, 1268, 241, 243, 245, 554,
456, 1249, -55, 1136, 309, 345, 309, 446, 469, 469,
360, 469, 433, 721, 1288, 994, 546, 928, 1051, 1245,
435, 637, 374, 3, 457, -484, 1030, -294, 1191, 822,
307, 1134, 509, 845, 722, 549, 512, 1196, 723, 616,
617, 1160, 1204, 1218, -484, 1086, -479, 183, 520, 1196,
429, 430, 431, 110, 1239, 325, 311, 351, 435, 1087,
435, 435, 724, 435, 550, 725, 993, 62, 438, 349,
1086, 592, 435, 1086, 1086, -484, 726, -479, 444, -484,
231, -294, 590, 1224, 1225, 181, 315, 228, 1048, 435,
-479, 854, 549, 255, 586, 727, 297, 309, 309, 506,
-484, -484, -484, -479, -254, 921, 446, 446, 316, 455,
1190, 587, 519, 315, 630, 462, 549, 549, 911, 549,
1216, 638, 506, -484, 213, 588, 1197, -484, 506, 1109,
1163, 70, 1112, 1113, 184, 23, 23, 1198, 1086, 1069,
1086, 1086, -484, 962, 348, 1052, 1246, 922, 1281, 1198,
-479, 1279, 542, -484, 589, -479, 298, 187, 1009, -384,
42, 1011, 1012, 315, -480, 898, 794, -255, 963, 1286,
522, 523, -502, 795, 299, 1070, 1240, 490, 446, 543,
491, 315, 986, 1153, 989, 1155, 58, 60, 60, 652,
949, 300, 951, -502, 590, -480, 658, -502, 68, 68,
591, 923, 541, 881, 1282, 544, 520, 899, -480, 435,
181, 446, -261, 422, 381, 423, 536, 562, 564, 538,
-502, -480, 387, 88, 88, 521, 214, 1177, 1149, 1179,
1180, 572, 545, 573, 574, 575, 577, 579, 580, 23,
581, 582, 583, 584, 585, 1006, 593, 594, 595, 596,
597, 598, 599, 600, 601, 602, 603, 604, 605, 606,
607, 608, 609, 435, 1117, 495, 806, -84, -480, 315,
315, 823, 630, -480, 520, 315, 228, 660, 315, 315,
315, 315, 619, 621, 629, 1044, -55, 905, 649, 110,
896, 60, -472, 509, 746, 641, 377, -260, 824, -575,
645, 864, 68, 646, 110, -55, -638, -494, -638, 255,
875, 878, 571, -269, -474, 895, 649, 897, 807, 1132,
446, 212, 311, -472, 662, 664, 366, 88, -494, 808,
668, 670, -494, 446, -84, 673, -472, 704, 704, 906,
576, 578, 1067, 1003, 712, -474, 367, 714, 809, -472,
907, -114, 315, 378, 1021, -494, 368, 379, -474, -120,
509, 649, -589, 309, -116, -588, 748, 649, -259, 908,
295, -474, -121, 753, 754, -639, -256, -639, 757, 644,
798, 1022, 290, 110, 785, 315, 618, 620, 1075, -589,
-263, 752, -588, 356, 1107, 1139, -472, 757, 789, 640,
315, -472, 315, 786, 381, 290, 774, 757, 777, 385,
779, 781, 387, 509, 929, 931, 390, 790, -474, 756,
1131, 509, -267, -474, 181, 311, 881, 1140, 1247, 663,
782, 926, 857, -450, 881, 669, 538, 881, 756, 672,
862, 345, 881, 345, -264, 882, 728, 838, 756, 611,
612, 425, -450, 1073, 454, 613, 1211, 304, 614, 615,
461, 1213, -638, -258, -638, 305, 309, 1152, 381, 1154,
630, 935, 592, 385, -713, 363, 387, 322, -713, 446,
390, 1271, 1272, 1273, 1274, 1275, 1276, -262, 323, 662,
841, 668, 844, 712, 315, 847, 777, 849, 850, -714,
-715, -268, -270, -714, -715, 315, 110, 315, -710, -635,
773, -635, -710, -637, -257, -637, 1250, 863, -265, 865,
-485, 357, -636, 629, -636, 872, 768, 361, 770, -572,
990, 371, 446, -485, -571, 333, 372, 334, 1220, 373,
-576, -577, 1251, 436, 1252, 1253, 852, -574, 1254, 1255,
336, -573, 426, 337, 428, 914, 434, 435, 441, 445,
524, 452, 464, 530, -485, 885, 886, 1244, 494, 498,
515, 516, 527, 532, 290, 290, 290, 290, 290, 290,
348, 1257, 348, 555, 489, 485, 488, 559, 567, 387,
-485, 489, 569, 610, 840, 636, 843, -485, 321, 325,
351, 647, 643, 648, 315, 721, 649, 656, 659, 707,
708, 665, 710, 150, 713, 496, 736, 716, -485, 746,
737, 1244, 796, 150, 755, 290, 722, 290, 761, 764,
723, 772, 778, 799, 290, 881, 150, -485, 1280, 150,
812, 309, -485, 562, 813, -485, 814, 946, 819, 948,
704, 704, 290, 315, 724, 815, 1287, 725, 816, 354,
1244, 817, 818, 290, 290, 887, 820, 848, 726, 884,
1141, 1142, 889, 894, 901, 902, 910, 920, 925, 520,
958, 629, 961, 964, 156, 853, 992, 727, 998, 150,
1001, 1004, 1010, 1013, 156, 577, 619, 997, 1037, 1014,
1000, 1039, 1047, 1045, 1053, 1050, 315, 156, 1074, 1054,
156, 1077, 1079, 1061, 1065, -141, 150, 1091, -148, -147,
-117, 150, -146, -115, 1018, 1108, 1020, -118, 1122, -143,
-150, 1025, -151, -145, 1028, 1057, -149, 446, 446, 1031,
-144, 1032, -152, 1094, -119, 1095, 1110, 1159, 1035, 721,
1221, 1249, 934, 150, 1124, -114, 1111, -116, 362, 558,
156, 220, 1258, 1126, 1156, 22, 23, 1212, 1157, 1207,
722, 290, 215, 1208, 723, 221, 715, 31, 222, 1214,
311, 1223, 1259, 37, 916, 1278, 1060, 156, 1064, 750,
42, 1066, 156, 1161, 330, 1076, 150, 1040, 724, 576,
618, 725, 704, 62, 290, 1169, 1089, 1165, 290, 1043,
900, 1090, 726, 1284, 1170, 1265, 58, 1277, 60, 1088,
1270, 309, 1081, 248, 156, 1082, 749, 225, 232, 68,
0, 727, 0, 0, 489, 489, 0, 0, 489, 489,
0, 1093, 0, 0, 0, 0, 0, 0, 84, 728,
0, 86, 0, 0, 88, -489, 1018, 1020, 0, 1025,
1028, 0, 1060, 1064, 489, 0, 489, 156, -489, 0,
0, 0, 0, 0, 1114, 1115, 0, 1116, 0, 629,
0, 1118, 1119, 0, 0, 1120, 0, 0, 307, 0,
0, 0, 0, 0, 150, 0, 0, 0, 0, -489,
150, 0, 0, 0, 103, 0, 0, 0, 0, 1138,
777, 315, 315, 0, 0, 0, 1145, 0, 0, 0,
1147, 0, 0, 0, 0, -489, 1151, 704, 704, 704,
704, 0, -489, 0, 0, 1158, 0, -491, 0, 0,
1193, 0, 0, 0, 1129, 0, 0, 0, 0, 0,
-491, 0, 150, -489, 0, 0, 0, 1114, 1171, 1172,
1118, 1173, 1174, 1175, 1176, 156, 0, 150, 0, 0,
0, 156, -489, 0, 0, 0, 0, -489, 0, 1187,
-489, -491, 0, 0, 0, 351, 0, 0, 0, 0,
1195, 0, 0, 0, 1202, 0, 290, 290, 0, 377,
0, 0, 290, 290, 0, 290, 290, -491, 0, 0,
0, 0, 0, 0, -491, 0, 0, 0, 0, 0,
0, 0, 0, 156, 0, 0, 309, 0, 0, 0,
1264, 1194, 0, 0, 0, -491, 0, 0, 156, 728,
0, 1235, 1236, 1237, 1238, 0, 150, 893, 0, 0,
0, 0, 0, 0, -491, 0, 378, 0, 0, -491,
379, 0, -491, 0, 1064, 0, 0, 1260, 1261, 0,
0, 0, 0, 0, 0, 351, 0, 150, 0, 0,
0, 0, 161, 150, 1235, 1236, 1237, 1238, 1260, 1261,
0, 1241, 161, 0, 0, 150, 0, 150, 0, 377,
0, 0, 0, 1266, 777, 161, 1269, 381, 161, 0,
0, 0, 385, 0, 386, 387, 309, 156, 0, 390,
0, 0, 0, 0, 0, 0, 0, 397, 0, 953,
0, 0, 0, 401, 402, 403, 0, 0, 0, 777,
0, 0, 0, 1064, 0, 1241, 0, 0, 156, 0,
0, 0, 0, 165, 156, 0, 378, 150, 161, 0,
379, 150, 0, 165, 0, 0, 156, 0, 156, 150,
0, 0, 0, 0, 0, 0, 165, 0, 0, 165,
0, 0, 290, 290, 1241, 161, 0, 220, 0, 0,
161, 22, 23, 0, 0, 0, 290, 0, 488, 0,
0, 221, 0, 31, 222, 488, 0, 381, 290, 37,
0, 290, 385, 0, 386, 387, 42, 0, 0, 390,
0, 0, 161, 0, 166, 0, 0, 397, 156, 165,
1041, 0, 156, 956, 166, 403, 0, 0, 0, 0,
156, 0, 58, 0, 60, 0, 0, 166, 1081, 0,
166, 1082, 0, 225, -306, 68, 165, 0, -306, -306,
0, 165, 0, -306, 0, 161, 0, 0, -306, 0,
-306, -306, 0, 0, 84, 0, -306, 86, 0, 0,
88, 0, 0, -306, 0, 220, -306, 0, 1078, 22,
23, 0, 0, 165, 0, 0, 0, 0, 0, 221,
166, 31, 222, 0, 0, 0, -306, 37, 0, -306,
836, -306, 0, -306, 42, -306, -306, 0, -306, 0,
-306, 150, -306, 0, 150, 0, 0, 166, 0, -53,
103, 0, 166, 0, 0, 0, 165, 0, 0, 0,
58, -306, 60, 0, -306, 0, 223, -306, -53, 224,
0, 225, 0, 68, 0, 0, 0, 0, 0, 0,
0, 0, 0, 161, 166, 0, 0, 0, 0, 161,
0, 0, 84, 0, 0, 86, 0, 0, 88, 0,
0, 0, 0, 150, 0, 0, 0, 219, 0, 150,
290, 0, 156, 0, 0, 156, 0, -306, 0, 0,
0, 220, 0, -306, 0, 22, 23, 166, 0, 0,
0, 0, 0, 0, 0, 221, 0, 31, 222, 0,
0, 161, 0, 37, 0, 0, 0, 0, 103, 0,
42, 0, 0, 0, 165, 0, 161, 0, 0, 0,
165, 0, 0, 0, 0, -53, 0, 0, 488, 488,
0, 0, 488, 488, 156, 0, 58, 0, 60, 0,
156, 0, 223, 0, -53, 224, 0, 225, 0, 68,
1203, 0, 377, 0, 0, 0, 0, 150, 488, 150,
488, 0, 0, 0, 150, 0, 0, 150, 84, 0,
1215, 86, 165, 991, 88, 0, 0, 0, 150, 0,
150, 0, 0, 150, 0, 166, 0, 165, 0, 0,
0, 166, 0, 0, 0, 161, 0, 0, 0, 995,
996, 0, 0, 0, 0, 0, 0, 0, 0, 378,
0, 0, 150, 379, 0, 0, 0, 0, 0, 150,
0, 150, 0, 0, 103, 0, 161, 0, 156, 0,
156, 0, 161, 0, 0, 156, 0, 0, 156, 0,
0, 0, 0, 166, 161, 0, 161, 0, 0, 156,
0, 156, 0, 0, 156, 0, 0, 0, 166, 0,
381, 382, 0, 383, 384, 385, 165, 386, 387, 0,
0, 0, 390, 0, 0, 0, 0, 0, 1203, 0,
397, 0, 0, 156, 0, 0, 401, 402, 403, 0,
156, 0, 156, 0, 0, 0, 0, 165, 0, 0,
0, 0, 0, 165, 0, 0, 161, 150, 0, 0,
161, 0, 256, 0, 150, 165, 0, 165, 161, 0,
0, 0, 0, 0, 0, 0, 257, 258, 150, 259,
0, 0, 0, 0, 260, 0, 0, 166, 0, 0,
0, 0, 0, 261, 0, 0, 150, 0, 0, 262,
0, 0, 150, 0, 0, 263, 150, 0, 0, 264,
0, 0, 265, 0, 0, 0, 0, 0, 166, 0,
0, 0, 266, 0, 166, 0, 0, 165, 156, 267,
268, 165, 0, 0, 0, 156, 166, 269, 166, 165,
0, 0, 0, 0, 0, 0, 270, 0, 0, 156,
0, 0, 0, 0, 0, 271, 272, 0, 273, 0,
274, 0, 275, 150, 0, 276, 0, 156, 256, 277,
500, 0, 278, 156, 0, 279, 0, 156, 0, 0,
0, 0, 257, 258, 0, 259, 0, 0, 0, 0,
260, 0, 377, 0, 0, 0, 168, 0, 166, 261,
0, 0, 166, 0, 0, 262, 168, 0, 0, 0,
166, 263, 0, 0, 0, 264, 0, 0, 265, 168,
161, 0, 168, 161, 150, 150, 150, 150, 266, 0,
0, 501, 0, 0, 156, 267, 268, 0, 0, 0,
0, 0, 0, 269, 0, 0, 0, 0, 0, 378,
150, 150, 270, 379, 0, 0, 0, 0, 0, 0,
0, 271, 272, 0, 273, 0, 274, 170, 275, 0,
0, 276, 168, 0, 0, 277, 0, 170, 278, 0,
0, 279, 161, 0, 0, 0, 0, 0, 161, 0,
170, 165, 0, 170, 165, 156, 156, 156, 156, 168,
381, 382, 0, 0, 168, 385, 0, 386, 387, 0,
0, 0, 390, 0, 0, 0, 0, 0, 0, 0,
397, 156, 156, 0, 0, 0, 401, 402, 403, 0,
0, 0, 0, 0, 0, 435, 168, 952, 171, 0,
0, 0, 0, 170, 0, 0, 0, 0, 171, 0,
0, 377, 0, 165, 0, 0, 0, 0, 0, 165,
0, 171, 166, 0, 171, 166, 0, 0, 0, 0,
170, 0, 0, 0, 0, 170, 161, 0, 161, 168,
0, 0, 0, 161, 0, 0, 161, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 161, 0, 161,
0, 0, 161, 0, 0, 0, 0, 170, 378, 0,
0, 0, 379, 0, 171, 0, 0, 0, 0, 0,
0, 0, 0, 0, 166, 0, 0, 0, 0, 0,
166, 161, 0, 0, 0, 0, 0, 0, 161, 0,
161, 171, 0, 0, 0, 0, 171, 165, 0, 165,
170, 0, 0, 0, 165, 0, 0, 165, 0, 381,
382, 0, 0, 384, 385, 0, 386, 387, 165, 0,
165, 390, 0, 165, 586, 0, 0, 168, 171, 397,
0, 0, 0, 168, 0, 401, 402, 403, 825, 0,
0, 826, 0, 0, 0, 0, 827, 0, 0, 0,
0, 0, 165, 0, 0, 0, 0, 191, 0, 165,
0, 165, 0, 0, 0, 0, 0, 828, 166, 0,
166, 171, 0, 0, 829, 166, 161, 0, 166, 0,
0, 0, 0, 161, 830, 168, 0, 0, 0, 166,
0, 166, 831, 0, 166, 0, 0, 161, 170, 0,
168, 0, 0, 0, 170, 0, 0, 0, 832, 0,
0, 0, 0, 0, 0, 161, 0, 0, 0, 0,
833, 161, 0, 166, 590, 161, 0, 0, 0, 0,
166, 834, 166, 0, 0, 0, 220, 835, 0, 0,
22, 23, 0, 0, 0, 1080, 0, 165, 0, 0,
221, 0, 31, 222, 165, 0, 170, 0, 37, 0,
0, 0, 0, 0, 0, 42, 0, 0, 165, 171,
0, 170, 0, 0, 0, 171, 0, 0, 0, 168,
0, 0, 161, 0, 0, 0, 165, 0, 0, 0,
0, 58, 165, 60, 0, 62, 165, 1081, 0, 0,
1082, 0, 225, 0, 68, 0, 0, 0, 0, 0,
168, 0, 0, 0, 0, 0, 168, 0, 166, 377,
0, 0, 0, 84, 0, 166, 86, 171, 168, 88,
168, 0, 0, 0, 0, 0, 0, 0, 0, 166,
0, 0, 171, 161, 161, 161, 161, 0, 0, 0,
170, 0, 0, 165, 0, 0, 0, 166, 0, 0,
0, 0, 0, 166, 0, 0, 0, 166, 0, 161,
161, 0, 0, 0, 0, 0, 378, 0, 0, 103,
379, 170, 0, 0, 0, 1083, 137, 170, 0, 0,
168, 0, 0, 0, 168, 0, 137, 0, 0, 170,
0, 170, 168, 0, 0, 0, 0, 0, 0, 137,
0, 0, 137, 0, 165, 165, 165, 165, 0, 0,
0, 171, 0, 0, 166, 0, 0, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 0, 390,
165, 165, 0, 0, 0, 0, 396, 397, 0, 0,
400, 0, 171, 401, 402, 403, 0, 111, 171, 0,
0, 170, 137, 0, 404, 170, 0, 182, 0, 0,
171, 0, 171, 170, 0, 0, 0, 0, 256, 0,
216, 0, 0, 227, 0, 166, 166, 166, 166, 137,
0, 0, 257, 258, 137, 259, 0, 0, 0, 0,
260, 0, 0, 0, 0, 0, 0, 0, 0, 261,
0, 166, 166, 0, 0, 262, 0, 0, 0, 0,
0, 263, 0, 0, 0, 264, 0, 0, 265, 0,
0, 0, 171, 324, 0, 0, 171, 0, 266, 0,
0, 0, 0, 0, 171, 267, 268, 0, 0, 0,
0, 0, 0, 269, 168, 0, 0, 168, 0, 0,
111, 0, 270, 0, 0, 355, 0, 0, 0, 137,
0, 271, 272, 0, 273, 0, 274, 0, 275, 0,
0, 276, 0, 0, 0, 277, 0, 0, 278, 0,
0, 279, 0, 0, 0, 0, 0, 0, 220, 0,
0, 0, 22, 23, 0, 0, 0, 1080, 0, 0,
0, 0, 221, 0, 31, 222, 168, 0, 0, 0,
37, 0, 168, 0, 0, 170, 0, 42, 170, 220,
0, 0, 0, 22, 23, 0, 0, 0, 0, 0,
427, 0, 0, 221, 0, 31, 222, 285, 0, 0,
0, 37, 0, 58, 0, 60, 0, 62, 42, 1081,
0, 0, 1082, 0, 225, 0, 68, 137, 0, 0,
0, 0, 0, 137, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 58, 84, 60, 170, 86, 0,
0, 88, 0, 170, 0, 225, 171, 68, 0, 171,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
168, 0, 168, 0, 0, 0, 84, 168, 0, 86,
168, 0, 88, 0, 0, 137, 0, 0, 0, 0,
0, 168, 0, 168, 0, 0, 168, 0, 497, 0,
137, 103, 0, 0, 510, 0, 0, 1178, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 171, 0,
0, 0, 0, 0, 171, 168, 0, 0, 0, 0,
0, 0, 168, 0, 168, 0, 0, 0, 0, 0,
0, 170, 0, 170, 0, 0, 0, 0, 170, 0,
0, 170, 280, 282, 283, 0, 111, 0, 0, 0,
0, 0, 170, 0, 170, 0, 0, 170, 0, 0,
0, 111, 0, 0, 0, 0, 0, 0, 0, 137,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 327, 0, 0, 0, 170, 0, 0, 0,
0, 0, 0, 170, 0, 170, 0, 0, 0, 0,
137, 0, 171, 0, 171, 0, 137, 0, 0, 171,
168, 0, 171, 0, 0, 256, 0, 168, 137, 0,
137, 0, 0, 171, 0, 171, 0, 0, 171, 257,
258, 168, 259, 0, 0, 0, 0, 260, 0, 0,
111, 0, 0, 0, 0, 364, 261, 365, 0, 168,
0, 0, 262, 0, 0, 168, 0, 171, 263, 168,
0, 0, 264, 0, 171, 265, 171, 318, 0, 0,
0, 510, 0, 0, 0, 266, 0, 510, 0, 0,
137, 170, 267, 268, 137, 0, 0, 0, 170, 709,
269, 0, 137, 432, 0, 0, 0, 0, 0, 270,
0, 0, 170, 0, 0, 0, 0, 0, 271, 272,
327, 273, 0, 274, 0, 275, 168, 0, 276, 0,
170, 0, 277, 0, 0, 278, 170, 0, 279, 0,
170, 0, 0, 0, 327, 0, 0, 463, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 482, 483,
0, 771, 171, 0, 0, 776, 0, 0, 0, 171,
0, 0, 0, 111, 0, 0, 0, 0, 0, 0,
0, 0, 0, 171, 0, 0, 0, 168, 168, 168,
168, 0, 0, 502, 903, 0, 0, 170, 0, 0,
0, 171, 0, 0, 0, 0, 0, 171, 0, 0,
0, 171, 0, 168, 168, 220, 0, 0, 0, 22,
23, 0, 0, 0, 1080, 0, 0, 0, 0, 221,
0, 31, 222, 0, 0, 0, 0, 37, 0, 0,
0, 0, 0, 0, 42, 0, 465, 468, 470, 474,
476, 478, 0, 0, 137, 0, 0, 137, 170, 170,
170, 170, 0, 0, 0, 0, 0, 0, 171, 565,
58, 0, 60, 0, 62, 0, 1081, 0, 0, 1082,
0, 225, 0, 68, 170, 170, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 511, 0, 513,
0, 0, 84, 0, 0, 86, 517, 0, 88, 0,
0, 0, 0, 0, 0, 0, 137, 0, 0, 0,
0, 0, 137, 0, 526, 888, 0, 0, 891, 171,
171, 171, 171, 0, 0, 533, 534, 0, 0, 0,
0, 0, 639, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 171, 171, 0, 103, 0,
0, 651, 0, 0, 1181, 0, 655, 0, 657, 0,
0, 0, 0, 0, 0, 0, 0, 375, 0, 0,
0, 0, 0, 0, 376, 0, 0, 927, 0, 0,
0, 0, 0, 932, 0, 0, 0, 377, 472, 0,
0, 0, 0, 718, 0, 0, 0, 0, 0, 502,
137, 0, 137, 473, 0, 0, 0, 137, 0, 0,
137, 0, 751, 0, 0, 0, 0, 0, 0, 0,
0, 137, 0, 137, 0, 0, 137, 0, 0, 0,
0, 0, 0, 642, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 378, 0, 0, 0, 379, 0,
0, 0, 0, 0, 0, 137, 0, 784, 0, 0,
0, 0, 137, 0, 137, 0, 666, 802, 0, 0,
671, 510, 0, 510, 0, 469, 0, 0, 510, 380,
0, 510, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1033, 0, 1034, 381, 382, 1036, 383, 384,
385, 0, 386, 387, 388, 0, 389, 390, 391, 392,
393, 0, 394, 395, 396, 397, 398, 399, 400, 0,
0, 401, 402, 403, 0, 435, 1056, 0, 0, 0,
0, 0, 404, 1059, 0, 1063, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 855, 0,
137, 858, 859, 0, 0, 0, 0, 137, 220, 0,
0, 0, 22, 23, 0, 0, 0, 1080, 0, 0,
0, 137, 221, 0, 31, 222, 0, 0, 0, 0,
37, 0, 0, 0, 0, 0, 0, 42, 0, 137,
0, 0, 0, 0, 0, 137, 0, 0, 0, 137,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 58, 0, 60, 0, 62, 0, 1081,
0, 0, 1082, 586, 225, 0, 68, 0, 0, 0,
904, 0, 674, 0, 502, 0, 0, 0, 0, 675,
587, 0, 1123, 0, 0, 84, 0, 0, 86, 0,
917, 88, 0, 0, 588, 0, 137, 0, 867, 869,
1143, 0, 327, 0, 874, 877, 1146, 879, 880, 0,
1148, 0, 0, 0, 0, 676, 0, 0, 0, 0,
0, 0, 0, 589, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 954, 0, 0, 0, 0, 802,
0, 103, 0, 0, 0, 0, 0, 1182, 0, 985,
0, 0, 0, 0, 0, 0, 0, 137, 137, 137,
137, 0, 0, 590, 0, 0, 0, 1188, 0, 591,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 137, 137, 487, 406, 407, 408, 409,
410, 0, 0, 413, 414, 415, 416, 0, 418, 419,
936, 937, 938, 939, 940, 682, 0, 683, 0, 0,
0, 684, 685, 686, 687, 688, 689, 690, 691, 941,
693, 694, 0, 942, 0, 0, 696, 697, 943, 699,
944, 0, 1038, 0, 718, 0, 0, 0, 1042, 0,
0, 502, 405, 406, 407, 408, 409, 410, 411, 412,
413, 414, 415, 416, 417, 418, 419, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -596, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1007, 1008, 420, 0, 0, -635,
954, -635, 0, 0, 0, 0, 0, 802, 1015, 0,
802, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1026, -2, 4, 1029, 5, 0, 6, 7, 8, 9,
10, 11, 0, 0, 0, 12, 13, 14, 15, 16,
0, 17, 0, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 0, 28, 29, 0, 30, 0, 31,
32, 33, 34, 35, 36, 37, 38, 39, -82, 0,
40, 41, 42, 0, 43, -323, 0, 44, 45, 46,
47, 48, 0, 49, 50, 51, 52, -53, 53, 54,
0, 55, 56, 57, 0, -323, 0, 0, 58, 59,
60, 61, 62, 63, 64, -323, -53, 65, 66, 67,
0, 68, 69, 70, 0, 71, 72, 73, 74, 75,
76, 77, 78, 0, 79, 80, 0, 81, 82, 83,
84, 85, 0, 86, 87, -82, 88, 89, 0, 0,
90, 0, 91, 985, 0, 92, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 93, 94, 95, 96, 97, 0, 0, 0, 0,
98, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99, 0, 0, 100, 101, 102, 103, 0, 0, 104,
0, 105, 0, 106, 0, 107, 0, 0, 108, 4,
0, 5, 1144, 6, 7, 8, 9, 10, 11, 0,
-665, 0, 12, 13, 14, 15, 16, -665, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
-665, 28, 29, -665, 30, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 0,
63, 64, -323, -53, 65, 66, 67, -665, 68, 69,
70, -665, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, -665, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, -665, -665,
95, -665, -665, -665, -665, -665, -665, -665, 0, -665,
-665, -665, -665, -665, 0, -665, -665, -665, -665, -665,
-665, -665, -665, 103, -665, -665, -665, 0, 105, -665,
106, 0, 107, 0, 338, -665, 5, 308, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 38, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 62, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 339, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 62,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 537,
106, 0, 107, 0, 556, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 38, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 62, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 557, 106, 0, 107, 0, 338,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 62,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 339,
106, 0, 107, 0, 4, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 38, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 62, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 783, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 354,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 0,
106, 0, 107, 0, 4, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 38, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 0, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 0, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 661, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 0,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 0,
106, 0, 107, 0, 4, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 667, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 0, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 0, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 1017, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 0,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 0,
106, 0, 107, 0, 4, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 1019, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 0, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 0, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 1024, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 0,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 0,
106, 0, 107, 0, 4, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 1027, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 0, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 0, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 1055, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 38, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 0,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 0,
106, 0, 107, 0, 4, 108, 5, 0, 6, 7,
8, 9, 10, 11, 0, 0, 0, 12, 13, 14,
15, 16, 0, 17, 0, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 0, 28, 29, 0, 30,
0, 31, 32, 33, 34, 35, 36, 37, 1058, 39,
-82, 0, 40, 41, 42, 0, 43, -323, 0, 44,
45, 46, 47, 48, 0, 49, 50, 51, 52, -53,
53, 54, 0, 55, 56, 57, 0, -323, 0, 0,
58, 59, 60, 61, 0, 63, 64, -323, -53, 65,
66, 67, 0, 68, 69, 70, 0, 71, 72, 73,
74, 75, 76, 77, 78, 0, 79, 80, 0, 81,
82, 83, 84, 85, 0, 86, 87, -82, 88, 89,
0, 0, 90, 0, 91, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 103, 0,
0, 104, 0, 105, 0, 106, 0, 107, 0, 4,
108, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 12, 13, 14, 15, 16, 0, 17, 0,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
0, 28, 29, 0, 30, 0, 31, 32, 33, 34,
35, 36, 37, 1062, 39, -82, 0, 40, 41, 42,
0, 43, -323, 0, 44, 45, 46, 47, 48, 0,
49, 50, 51, 52, -53, 53, 54, 0, 55, 56,
57, 0, -323, 0, 0, 58, 59, 60, 61, 0,
63, 64, -323, -53, 65, 66, 67, 0, 68, 69,
70, 0, 71, 72, 73, 74, 75, 76, 77, 78,
0, 79, 80, 0, 81, 82, 83, 84, 85, 0,
86, 87, -82, 88, 89, 0, 0, 90, 0, 91,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 103, 0, 0, 104, 0, 105, 0,
106, 0, 107, 0, 1262, 108, 5, 308, 6, 7,
8, 9, 10, 11, 0, 0, 0, 189, 0, 0,
15, 16, 0, 17, 0, 190, 0, 0, 21, 0,
0, 0, 0, 0, 0, 0, 0, 29, 0, 191,
0, 0, 0, 33, 192, 193, 0, 0, 194, 39,
0, 0, 0, 41, 0, 0, 43, 0, 0, 195,
0, 0, 47, 48, 0, 0, 50, 0, 52, 0,
53, 54, 0, 55, 56, 0, 0, 0, 0, 0,
0, 59, 0, 61, 0, 63, 0, 0, 0, 0,
66, 196, 0, 0, 0, 0, 0, 0, 0, 73,
74, 75, 76, 77, 197, 0, 79, 0, 0, 81,
0, 0, 0, 85, 0, 0, 87, 0, 0, 89,
0, 0, 0, 0, 0, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 0, 0,
0, 104, 0, 198, 0, 106, 0, 199, 1263, 913,
108, 5, 308, 6, 7, 8, 9, 10, 11, 0,
0, 0, 189, 0, 0, 15, 16, 0, 17, 0,
190, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 0, 29, 0, 191, 0, 0, 0, 33, 192,
193, 0, 0, 194, 39, 0, 0, 0, 41, 0,
0, 43, 0, 0, 195, 0, 0, 47, 48, 0,
0, 50, 0, 52, 0, 53, 54, 0, 55, 56,
0, 0, 0, 0, 0, 0, 59, 0, 61, 0,
63, 0, 0, 0, 0, 66, 196, 0, 0, 0,
0, 0, 0, 0, 73, 74, 75, 76, 77, 197,
0, 79, 0, 0, 81, 0, 0, 0, 85, 0,
0, 87, 0, 0, 89, 0, 0, 0, 0, 0,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 0, 0, 0, 104, 0, 198, 0,
106, 0, 199, 0, 5, 108, 6, 7, 8, 9,
10, 11, 0, 674, 0, 189, 0, 0, 15, 16,
675, 17, 0, 190, 0, 0, 21, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 191, 0, 0,
0, 33, 192, 193, 0, 0, 194, 39, 0, 0,
0, 41, 0, 0, 43, 0, 676, 195, 0, 0,
47, 48, 0, 0, 50, 0, 52, 0, 53, 54,
0, 55, 56, 0, 0, 0, 0, 0, 0, 59,
0, 61, 0, 63, 0, 0, 0, 0, 66, 196,
0, 0, 0, 0, 0, 0, 0, 73, 74, 75,
76, 77, 197, 0, 79, 0, 0, 81, 0, 0,
0, 85, 0, 0, 87, 0, 0, 89, 0, 0,
0, 0, 0, 0, 0, 92, 487, 406, 407, 408,
409, 410, 0, 0, 413, 414, 415, 416, 0, 418,
419, 677, 678, 679, 680, 681, 682, 0, 683, 0,
98, 0, 684, 685, 686, 687, 688, 689, 690, 691,
692, 693, 694, 100, 695, 102, 0, 696, 697, 698,
699, 198, 0, 106, 0, 199, 0, 5, 108, 6,
7, 8, 9, 10, 11, 0, 0, 0, 189, 13,
0, 15, 16, 0, 17, 0, 190, 19, 20, 21,
0, 0, 0, 0, 26, 0, 0, 28, 29, 0,
191, 0, 0, 0, 33, 34, 35, 36, 0, 38,
39, 0, 0, 0, 41, 0, 0, 43, 0, 0,
195, 0, 0, 47, 48, 0, 49, 50, 51, 52,
0, 53, 54, 0, 55, 56, 57, 0, 0, 0,
0, 0, 59, 0, 61, 0, 63, 0, 0, 0,
0, 66, 196, 0, 0, 0, 0, 0, 71, 72,
73, 74, 75, 76, 77, 78, 0, 79, 80, 0,
81, 0, 0, 0, 85, 0, 0, 87, 0, 0,
89, 0, 0, 90, 0, 0, 0, 0, 92, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 93, 94, 95, 96, 97, 0,
0, 0, 0, 98, 0, 0, 0, 0, 0, 0,
0, 0, 0, 99, 0, 0, 100, 101, 102, 0,
0, 0, 104, 0, 105, 0, 106, 0, 107, 0,
5, 108, 6, 7, 8, 9, 10, 11, 0, 0,
0, 189, 0, 0, 15, 16, 0, 17, 0, 190,
0, 0, 21, 247, 23, 0, 0, 0, 0, 0,
0, 29, 0, 191, 0, 0, 0, 33, 192, 193,
0, 0, 194, 39, 0, 0, 0, 41, 0, 0,
43, 0, 0, 195, 0, 0, 47, 48, 0, 0,
50, 0, 52, 0, 53, 54, 0, 55, 56, 0,
0, 0, 0, 0, 0, 59, 60, 61, 0, 63,
0, 0, 0, 0, 66, 196, 0, 68, 0, 0,
0, 0, 0, 73, 74, 75, 76, 77, 197, 0,
79, 0, 0, 81, 0, 0, 0, 85, 0, 0,
87, 0, 88, 89, 0, 0, 0, 0, 0, 0,
0, 92, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 93, 94, 95,
96, 97, 0, 0, 0, 0, 98, 0, 0, 0,
0, 0, 0, 0, 0, 0, 99, 0, 0, 100,
101, 102, 0, 0, 0, 104, 0, 198, 0, 106,
0, 199, 0, 0, 108, 5, 308, 6, 7, 8,
9, 10, 11, 0, 0, 0, 189, 0, 0, 15,
16, 0, 17, 0, 190, 0, 0, 21, 0, 0,
0, 0, 0, 0, 0, 0, 29, 0, 191, 0,
0, 0, 33, 192, 193, 0, 0, 194, 39, 0,
0, 0, 41, 0, 0, 43, 0, 0, 195, 0,
0, 47, 48, 0, 0, 50, 0, 52, 0, 53,
54, 0, 55, 56, 0, 0, 0, 0, 0, 0,
59, 0, 61, 0, 63, 0, 0, 0, 0, 66,
196, 0, 0, 0, 0, 0, 0, 0, 73, 74,
75, 76, 77, 197, 0, 79, 0, 0, 81, 312,
313, 0, 85, 343, 0, 87, 0, 0, 89, 0,
0, 0, 0, 0, 0, 0, 92, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 93, 94, 95, 96, 97, 0, 0, 0,
0, 98, 344, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 100, 101, 102, 0, 0, 0,
104, 0, 198, 0, 106, 0, 199, 0, 0, 108,
5, 308, 6, 7, 8, 9, 10, 11, 0, 0,
0, 189, 0, 0, 15, 16, 0, 17, 0, 190,
0, 0, 21, 0, 0, 0, 0, 0, 0, 0,
0, 29, 0, 191, 0, 0, 0, 33, 192, 193,
0, 0, 194, 39, 0, 0, 0, 41, 0, 0,
43, 0, 0, 195, 0, 0, 47, 48, 0, 0,
50, 0, 52, 0, 53, 54, 0, 55, 56, 0,
0, 0, 0, 0, 0, 59, 0, 61, 0, 63,
0, 0, 0, 0, 66, 196, 0, 0, 0, 0,
0, 0, 0, 73, 74, 75, 76, 77, 197, 0,
79, 0, 0, 81, 312, 313, 0, 85, 343, 0,
87, 0, 0, 89, 0, 0, 0, 0, 0, 0,
0, 92, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 93, 94, 95,
96, 97, 0, 0, 0, 0, 98, 0, 0, 0,
0, 0, 0, 0, 0, 0, 99, 0, 0, 100,
101, 102, 0, 0, 0, 104, 0, 198, 0, 106,
767, 199, 0, 0, 108, 5, 308, 6, 7, 8,
9, 10, 11, 0, 0, 0, 189, 0, 0, 15,
16, 0, 17, 0, 190, 0, 0, 21, 0, 0,
0, 0, 0, 0, 0, 0, 29, 0, 191, 0,
0, 0, 33, 192, 193, 0, 0, 194, 39, 0,
0, 0, 41, 0, 0, 43, 0, 0, 195, 0,
0, 47, 48, 0, 0, 50, 0, 52, 0, 53,
54, 0, 55, 56, 0, 0, 0, 0, 0, 0,
59, 0, 61, 0, 63, 0, 0, 0, 0, 66,
196, 0, 0, 0, 0, 0, 0, 0, 73, 74,
75, 76, 77, 197, 0, 79, 0, 0, 81, 312,
313, 0, 85, 343, 0, 87, 0, 0, 89, 0,
0, 0, 0, 0, 0, 0, 92, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 93, 94, 95, 96, 97, 0, 0, 0,
0, 98, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 100, 101, 102, 0, 0, 0,
104, 0, 198, 0, 106, 769, 199, 0, 5, 108,
6, 7, 8, 9, 10, 11, 0, 0, 0, 189,
0, 0, 15, 16, 0, 17, 0, 190, 0, 0,
21, 0, 622, 0, 0, 0, 0, 0, 0, 29,
0, 191, 0, 0, 0, 33, 192, 193, 0, 0,
194, 39, 0, 623, 0, 41, 0, 0, 43, 0,
0, 195, 0, 0, 47, 48, 0, 0, 50, 0,
52, 0, 53, 54, 0, 55, 56, 0, 0, 0,
0, 0, 0, 59, 0, 61, 0, 63, 0, 0,
0, 0, 66, 196, 0, 624, 0, 0, 0, 0,
0, 73, 74, 75, 76, 77, 197, 0, 79, 0,
0, 81, 0, 0, 0, 85, 0, 0, 87, 0,
625, 89, 0, 0, 0, 0, 0, 0, 0, 92,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 93, 94, 95, 96, 97,
0, 0, 0, 0, 98, 0, 0, 0, 0, 0,
0, 0, 0, 0, 99, 0, 0, 100, 101, 102,
0, 0, 0, 104, 0, 198, 0, 106, 0, 199,
0, 5, 108, 6, 7, 8, 233, 10, 11, 234,
0, 0, 189, 0, 0, 15, 16, 0, 17, 0,
190, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 0, 29, 0, 191, 0, 0, 0, 33, 192,
193, 0, 0, 194, 39, 0, 0, 0, 41, 0,
0, 43, 0, 0, 195, 0, 0, 47, 48, 0,
0, 50, 0, 52, 0, 53, 54, 0, 55, 56,
0, 0, 0, 0, 0, 0, 59, 0, 61, 0,
63, 0, 0, 0, 0, 66, 235, 0, 0, 0,
0, 0, 0, 0, 73, 74, 75, 76, 77, 197,
0, 79, 0, 0, 81, 0, 0, 236, 85, 0,
237, 87, 0, 0, 89, 0, 0, 0, 0, 0,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 0, 0, 0, 104, 0, 198, 0,
106, 0, 199, 0, 5, 108, 6, 7, 8, 9,
10, 11, 0, 0, 0, 189, 0, 0, 15, 16,
0, 17, 0, 190, 0, 0, 21, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 191, 0, 0,
0, 33, 192, 193, 0, 0, 194, 39, 0, 0,
0, 41, 0, 0, 43, 0, 0, 195, 0, 0,
47, 48, 0, 0, 50, 0, 52, 0, 53, 54,
0, 55, 56, 0, 0, 0, 0, 0, 0, 59,
0, 61, 0, 63, 0, 0, 0, 0, 66, 196,
0, 0, 0, 0, 0, 0, 0, 73, 74, 75,
76, 77, 197, 0, 79, 0, 0, 81, 312, 313,
0, 85, 0, 0, 87, 0, 0, 89, 0, 0,
0, 0, 0, 0, 0, 92, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 93, 94, 95, 96, 97, 0, 0, 0, 0,
98, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99, 0, 0, 100, 101, 102, 314, 0, 0, 104,
0, 198, 0, 106, 0, 199, 0, 0, 108, 5,
308, 6, 7, 8, 9, 10, 11, 0, 0, 0,
189, 0, 0, 15, 16, 0, 17, 0, 190, 0,
0, 21, 0, 0, 0, 0, 0, 0, 0, 0,
29, 0, 191, 0, 0, 0, 33, 192, 193, 0,
0, 194, 39, 0, 0, 0, 41, 0, 0, 43,
0, 0, 195, 0, 0, 47, 48, 0, 0, 50,
0, 52, 0, 53, 54, 0, 55, 56, 0, 0,
0, 0, 0, 0, 59, 0, 61, 0, 63, 0,
0, 0, 0, 66, 196, 0, 0, 0, 0, 0,
0, 0, 73, 74, 75, 76, 77, 197, 0, 79,
0, 0, 81, 312, 313, 0, 85, 0, 0, 87,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
92, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 93, 94, 95, 96,
97, 0, 0, 0, 0, 98, 0, 0, 0, 0,
0, 0, 0, 0, 0, 99, 0, 0, 100, 101,
102, 0, 0, 0, 104, 0, 198, 0, 106, 0,
199, 0, 5, 108, 6, 7, 8, 9, 10, 11,
0, 0, 0, 189, 0, 0, 15, 16, 0, 17,
0, 190, 0, 0, 21, 0, 0, 0, 0, 0,
0, 0, 0, 29, 0, 191, 0, 0, 0, 33,
192, 193, 0, 0, 194, 39, 0, 0, 0, 41,
0, 0, 43, 0, 0, 195, 0, 0, 47, 48,
0, 0, 50, 0, 52, 0, 53, 54, 915, 55,
56, 0, 0, 0, 0, 0, 0, 59, 0, 61,
0, 63, 0, 0, 0, 0, 66, 196, 0, 0,
0, 0, 0, 0, 0, 73, 74, 75, 76, 77,
197, 0, 79, 0, 0, 81, 312, 313, 0, 85,
0, 0, 87, 0, 0, 89, 0, 0, 0, 0,
0, 0, 0, 92, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 93,
94, 95, 96, 97, 0, 0, 0, 0, 98, 0,
0, 0, 0, 0, 0, 0, 0, 0, 99, 0,
0, 100, 101, 102, 0, 0, 0, 104, 0, 198,
0, 106, 0, 199, 0, 5, 108, 6, 7, 8,
9, 10, 11, 0, 0, 0, 189, 0, 0, 15,
16, 0, 17, 0, 190, 0, 0, 21, 0, 0,
0, 0, 0, 0, 0, 0, 29, 0, 191, 0,
0, 0, 33, 192, 193, 0, 0, 194, 39, 0,
0, 0, 41, 0, 0, 43, 0, 0, 195, 0,
0, 47, 48, 0, 0, 50, 0, 52, 0, 53,
54, 0, 55, 56, 0, 0, 0, 0, 0, 0,
59, 239, 61, 0, 63, 0, 0, 0, 0, 66,
196, 0, 0, 0, 0, 0, 0, 0, 73, 74,
75, 76, 77, 197, 0, 79, 0, 0, 81, 0,
0, 0, 85, 0, 0, 87, 0, 0, 89, 0,
0, 0, 0, 0, 240, 0, 92, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 93, 94, 95, 96, 97, 0, 0, 0,
0, 98, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 100, 101, 102, 0, 0, 0,
104, 0, 198, 0, 106, 0, 199, 0, 5, 108,
6, 7, 8, 9, 10, 11, 0, 0, 0, 189,
0, 0, 15, 16, 0, 17, 0, 190, 0, 0,
21, 0, 250, 0, 0, 0, 0, 0, 0, 29,
0, 191, 0, 0, 0, 33, 192, 193, 0, 0,
194, 39, 0, 0, 0, 41, 0, 0, 43, 0,
0, 195, 0, 0, 47, 48, 0, 0, 50, 0,
52, 0, 53, 54, 0, 55, 56, 0, 0, 0,
0, 0, 0, 59, 0, 61, 0, 63, 0, 0,
0, 0, 66, 196, 0, 0, 0, 0, 0, 0,
0, 73, 74, 75, 76, 77, 197, 0, 79, 0,
0, 81, 0, 0, 0, 85, 0, 0, 87, 0,
251, 89, 0, 0, 0, 0, 0, 0, 0, 92,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 93, 94, 95, 96, 97,
0, 0, 0, 0, 98, 0, 0, 0, 0, 0,
0, 0, 0, 0, 99, 0, 0, 100, 101, 102,
0, 0, 0, 104, 0, 198, 0, 106, 0, 199,
0, 0, 108, 5, 308, 6, 7, 8, 9, 10,
11, 0, 0, 0, 189, 0, 0, 15, 16, 0,
17, 0, 190, 0, 0, 21, 0, 0, 0, 0,
0, 0, 0, 0, 29, 0, 191, 0, 0, 0,
33, 192, 193, 0, 0, 194, 39, 0, 0, 0,
41, 0, 0, 43, 0, 0, 195, 0, 0, 47,
48, 0, 0, 50, 0, 52, 0, 53, 54, 0,
55, 56, 0, 0, 0, 0, 0, 0, 59, 0,
61, 0, 63, 0, 0, 0, 0, 66, 196, 0,
0, 0, 0, 0, 0, 0, 73, 74, 75, 76,
77, 197, 0, 79, 0, 0, 81, 0, 0, 0,
85, 0, 0, 87, 0, 0, 89, 0, 0, 0,
0, 0, 240, 0, 92, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
93, 94, 95, 96, 97, 0, 0, 0, 0, 98,
0, 0, 0, 0, 0, 0, 0, 0, 0, 99,
0, 0, 100, 101, 102, 0, 0, 0, 104, 0,
198, 0, 106, 0, 199, 0, 5, 108, 6, 7,
8, 233, 10, 11, 0, 0, 0, 189, 0, 0,
15, 16, 0, 17, 0, 190, 0, 0, 21, 0,
0, 0, 0, 0, 0, 0, 0, 29, 0, 191,
0, 0, 0, 33, 192, 193, 0, 0, 194, 39,
0, 0, 0, 41, 0, 0, 43, 0, 0, 195,
0, 0, 47, 48, 0, 0, 50, 0, 52, 0,
53, 54, 0, 55, 56, 0, 0, 0, 0, 0,
0, 59, 0, 61, 0, 63, 0, 0, 0, 0,
66, 235, 0, 0, 0, 0, 0, 0, 0, 73,
74, 75, 76, 77, 197, 0, 79, 0, 0, 81,
0, 0, 236, 85, 0, 237, 87, 0, 0, 89,
0, 0, 0, 0, 0, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 0, 0,
0, 104, 0, 198, 0, 106, 0, 199, 0, 5,
108, 6, 7, 8, 9, 10, 11, 0, 0, 0,
189, 0, 0, 15, 16, 0, 17, 0, 190, 0,
0, 21, 0, 0, 0, 0, 0, 0, 0, 0,
29, 0, 191, 0, 0, 0, 33, 192, 193, 0,
0, 194, 39, 0, 0, 0, 41, 0, 0, 43,
0, 0, 195, 0, 0, 47, 48, 0, 0, 50,
0, 52, 0, 53, 54, 0, 55, 56, 0, 0,
0, 0, 0, 0, 59, 0, 61, 0, 63, 0,
0, 0, 0, 66, 196, 0, 0, 0, 0, 0,
0, 0, 73, 74, 75, 76, 77, 197, 0, 79,
0, 0, 81, 312, 313, 0, 85, 0, 0, 87,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
92, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 93, 94, 95, 96,
97, 0, 0, 0, 0, 98, 0, 0, 0, 0,
0, 0, 0, 0, 0, 99, 0, 0, 100, 101,
102, 0, 0, 0, 104, 0, 198, 0, 106, 0,
199, 0, 0, 108, 5, 308, 6, 7, 8, 9,
10, 11, 0, 0, 0, 189, 0, 0, 15, 16,
0, 17, 0, 190, 0, 0, 21, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 191, 0, 0,
0, 33, 192, 193, 0, 0, 194, 39, 0, 0,
0, 41, 0, 0, 43, 0, 0, 195, 0, 0,
47, 48, 0, 0, 50, 0, 52, 0, 53, 54,
0, 55, 56, 0, 0, 0, 0, 0, 0, 59,
0, 61, 0, 63, 0, 0, 0, 0, 66, 196,
0, 0, 0, 0, 0, 0, 0, 73, 74, 75,
76, 77, 197, 0, 79, 0, 0, 81, 0, 0,
0, 85, 0, 0, 87, 0, 0, 89, 0, 0,
0, 0, 0, 0, 0, 92, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 93, 94, 95, 96, 97, 0, 0, 0, 0,
98, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99, 0, 0, 100, 101, 102, 0, 0, 0, 104,
0, 198, 765, 106, 0, 199, 0, 0, 108, 5,
308, 6, 7, 8, 9, 10, 11, 0, 0, 0,
189, 0, 0, 15, 16, 0, 17, 0, 190, 0,
0, 21, 0, 0, 0, 0, 0, 0, 0, 0,
29, 0, 191, 0, 0, 0, 33, 192, 193, 0,
0, 194, 39, 0, 0, 0, 41, 0, 0, 43,
0, 0, 195, 0, 0, 47, 48, 0, 0, 50,
0, 52, 0, 53, 54, 0, 55, 56, 0, 0,
0, 0, 0, 0, 59, 0, 61, 0, 63, 0,
0, 0, 0, 66, 196, 0, 0, 0, 0, 0,
0, 0, 73, 74, 75, 76, 77, 197, 0, 79,
0, 0, 81, 0, 0, 0, 85, 0, 0, 87,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
92, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 93, 94, 95, 96,
97, 0, 0, 0, 0, 98, 0, 0, 0, 0,
0, 0, 0, 0, 0, 99, 0, 0, 100, 101,
102, 0, 0, 0, 104, 0, 198, 0, 106, 0,
199, 775, 5, 108, 6, 7, 8, 9, 10, 11,
0, 0, 0, 189, 0, 0, 15, 16, 0, 17,
0, 190, 0, 0, 21, 0, 0, 0, 0, 0,
0, 0, 0, 29, 0, 191, 0, 0, 0, 33,
192, 193, 0, 0, 194, 39, 0, 0, 0, 41,
0, 0, 43, 0, 0, 195, 0, 0, 47, 48,
0, 0, 50, 0, 52, 0, 53, 54, 0, 55,
56, 0, 0, 0, 0, 0, 0, 59, 0, 61,
0, 63, 0, 0, 0, 0, 66, 196, -709, 0,
0, 0, -709, 0, 0, 73, 74, 75, 76, 77,
197, 0, 79, 0, 0, 81, 0, 0, 0, 85,
0, 0, 87, 0, 0, 89, 0, 0, 0, 0,
0, 0, 0, 92, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 93,
94, 95, 96, 97, 0, 0, 0, 0, 98, 0,
0, 0, 0, 0, 0, 0, 0, 0, 99, 0,
0, 100, 101, 102, 0, 0, 0, 104, 0, 198,
0, 106, 0, 199, 0, 0, 108, 5, 308, 6,
7, 8, 9, 10, 11, 0, 0, 0, 189, 0,
0, 15, 16, 0, 17, 0, 190, 0, 0, 21,
0, 0, 0, 0, 0, 0, 0, 0, 29, 0,
191, 0, 0, 0, 33, 192, 193, 0, 0, 194,
39, 0, 0, 0, 41, 0, 0, 43, 0, 0,
195, 0, 0, 47, 48, 0, 0, 50, 0, 52,
0, 53, 54, 0, 55, 56, 0, 0, 0, 0,
0, 0, 59, 0, 61, 0, 63, 0, 0, 0,
0, 66, 196, 0, 0, 0, 0, 0, 0, 0,
73, 74, 75, 76, 77, 197, 0, 79, 0, 0,
81, 0, 0, 0, 85, 0, 0, 87, 0, 0,
89, 0, 0, 0, 0, 0, 0, 0, 92, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 93, 94, 95, 96, 97, 0,
0, 0, 0, 98, 0, 0, 0, 0, 0, 0,
0, 0, 0, 99, 0, 0, 100, 101, 102, 0,
0, 0, 104, 0, 198, 0, 106, 0, 199, 1192,
5, 108, 6, 7, 8, 9, 10, 11, 0, 0,
0, 189, 0, 0, 15, 16, 0, 17, 0, 190,
0, 0, 21, 0, 0, 0, 0, 0, 0, 0,
0, 29, 0, 191, 0, 0, 0, 33, 192, 193,
0, 0, 194, 39, 0, 0, 0, 41, 0, 0,
43, 0, 0, 195, 0, 0, 47, 48, 0, 0,
50, 0, 52, 0, 53, 54, 0, 55, 56, 0,
0, 0, 0, 0, 0, 59, 0, 61, 0, 63,
0, 0, 0, 0, 66, 196, 0, 0, 0, 0,
0, 0, 0, 73, 74, 75, 76, 77, 197, 0,
79, 0, 0, 81, 0, 0, 0, 85, 0, 0,
87, 0, 0, 89, 0, 0, 0, 0, 0, 240,
0, 92, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 93, 94, 95,
96, 97, 0, 0, 0, 0, 98, 0, 0, 0,
0, 0, 0, 0, 0, 0, 99, 0, 0, 100,
101, 102, 0, 0, 0, 104, 0, 198, 0, 106,
0, 199, 0, 5, 108, 6, 7, 8, 9, 10,
11, 0, 0, 0, 189, 0, 0, 15, 16, 0,
17, 0, 190, 0, 0, 21, 0, 0, 0, 0,
0, 0, 0, 289, 29, 0, 191, 0, 0, 0,
33, 192, 193, 0, 0, 194, 39, 0, 0, 0,
41, 0, 0, 43, 0, 0, 195, 0, 0, 47,
48, 0, 0, 50, 0, 52, 0, 53, 54, 0,
55, 56, 0, 0, 0, 0, 0, 0, 59, 0,
61, 0, 63, 0, 0, 0, 0, 66, 196, 0,
0, 0, 0, 0, 0, 0, 73, 74, 75, 76,
77, 197, 0, 79, 0, 0, 81, 0, 0, 0,
85, 0, 0, 87, 0, 0, 89, 0, 0, 0,
0, 0, 0, 0, 92, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
93, 94, 95, 96, 97, 0, 0, 0, 0, 98,
0, 0, 0, 0, 0, 0, 0, 0, 0, 99,
0, 0, 100, 101, 102, 0, 0, 0, 104, 0,
105, 0, 106, 0, 199, 0, 0, 108, 5, 308,
6, 7, 8, 9, 10, 11, 0, 0, 0, 189,
0, 0, 15, 16, 0, 17, 0, 190, 0, 0,
21, 0, 0, 0, 0, 0, 0, 0, 0, 29,
0, 191, 0, 0, 0, 33, 192, 193, 0, 0,
194, 39, 0, 0, 0, 41, 0, 0, 43, 0,
0, 195, 0, 0, 47, 48, 0, 0, 50, 0,
52, 0, 53, 54, 0, 55, 56, 0, 0, 0,
0, 0, 0, 59, 0, 61, 0, 63, 0, 0,
0, 0, 66, 196, 0, 0, 0, 0, 0, 0,
0, 73, 74, 75, 76, 77, 197, 0, 79, 0,
0, 81, 0, 0, 0, 85, 0, 0, 87, 0,
0, 89, 0, 0, 0, 0, 0, 0, 0, 92,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 93, 94, 95, 96, 97,
0, 0, 0, 0, 98, 0, 0, 0, 0, 0,
0, 0, 0, 0, 99, 0, 0, 100, 101, 102,
0, 0, 0, 104, 0, 198, 0, 106, 0, 199,
0, 5, 108, 6, 7, 8, 9, 10, 11, 0,
0, 0, 189, 0, 0, 15, 16, 0, 17, 0,
190, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 0, 29, 0, 191, 0, 0, 0, 33, 192,
193, 0, 0, 194, 39, 0, 0, 0, 41, 0,
0, 43, 0, 0, 195, 0, 0, 47, 48, 0,
0, 50, 0, 52, 0, 53, 54, 0, 55, 56,
0, 0, 0, 0, 0, 0, 59, 0, 61, 0,
63, 0, 0, 0, 0, 66, 196, 0, 0, 0,
0, 0, 0, 0, 73, 74, 75, 76, 77, 197,
0, 79, 0, 0, 81, 0, 0, 0, 85, 0,
0, 87, 0, 0, 89, 0, 0, 0, 0, 0,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 0, 0, 0, 104, 0, 198, 0,
106, 0, 199, 780, 5, 108, 6, 7, 8, 9,
10, 11, 0, 0, 0, 189, 0, 0, 15, 16,
0, 17, 0, 190, 0, 0, 21, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 191, 0, 0,
0, 33, 192, 193, 0, 0, 194, 39, 0, 0,
0, 41, 0, 0, 43, 0, 0, 195, 0, 0,
47, 48, 0, 0, 50, 0, 52, 0, 53, 54,
0, 55, 56, 0, 0, 0, 0, 0, 0, 59,
0, 61, 0, 63, 0, 0, 0, 0, 66, 196,
0, 0, 0, 0, 0, 0, 0, 73, 74, 75,
76, 77, 197, 0, 79, 0, 0, 81, 0, 0,
0, 85, 947, 0, 87, 0, 0, 89, 0, 0,
0, 0, 0, 0, 0, 92, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 93, 94, 95, 96, 97, 0, 0, 0, 0,
98, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99, 0, 0, 100, 101, 102, 0, 0, 0, 104,
0, 198, 0, 106, 0, 199, 0, 0, 108, 5,
308, 6, 7, 8, 9, 10, 11, 0, 0, 0,
189, 0, 0, 15, 16, 0, 17, 0, 190, 0,
0, 21, 0, 0, 0, 0, 0, 0, 0, 0,
738, 0, 191, 0, 0, 0, 33, 192, 193, 0,
0, 194, 39, 0, 0, 0, 739, 0, 0, 43,
0, 0, 195, 0, 0, 47, 48, 0, 0, 50,
0, 52, 0, 53, 54, 0, 55, 56, 0, 0,
0, 0, 0, 0, 59, 0, 61, 0, 63, 0,
0, 0, 0, 66, 196, 0, 0, 0, 0, 0,
0, 0, 73, 740, 75, 76, 77, 741, 0, 79,
0, 0, 81, 0, 0, 0, 85, 0, 0, 87,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
92, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 93, 94, 95, 96,
97, 0, 0, 0, 0, 98, 0, 0, 0, 0,
0, 0, 0, 0, 0, 99, 0, 0, 100, 101,
102, 0, 0, 0, 104, 0, 198, 0, 106, 0,
1127, 0, 5, 108, 6, 7, 8, 9, 10, 11,
0, 0, 0, 189, 0, 0, 15, 16, 0, 17,
0, 190, 0, 0, 21, 0, 0, 0, 0, 0,
0, 0, 0, 29, 0, 191, 0, 0, 0, 33,
192, 193, 0, 0, 194, 39, 0, 0, 0, 41,
0, 0, 43, 0, 0, 195, 0, 0, 47, 48,
0, 0, 50, 0, 52, 0, 53, 54, 0, 55,
56, 0, 0, 0, 0, 0, 0, 59, 0, 61,
0, 63, 0, 0, 0, 0, 66, 196, 0, 0,
0, 0, 0, 0, 0, 73, 74, 75, 76, 77,
197, 0, 79, 0, 0, 81, 0, 0, 0, 85,
1150, 0, 87, 0, 0, 89, 0, 0, 0, 0,
0, 0, 0, 92, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 93,
94, 95, 96, 97, 0, 0, 0, 0, 98, 0,
0, 0, 0, 0, 0, 0, 0, 0, 99, 0,
0, 100, 101, 102, 0, 0, 0, 104, 0, 198,
0, 106, 0, 199, 0, 0, 108, 5, 308, 6,
7, 8, 9, 10, 11, 0, 0, 0, 189, 0,
0, 15, 16, 0, 17, 0, 190, 0, 0, 21,
0, 0, 0, 0, 0, 0, 0, 0, 29, 0,
191, 0, 0, 0, 33, 192, 193, 0, 0, 194,
39, 0, 0, 0, 41, 0, 0, 43, 0, 0,
195, 0, 0, 47, 48, 0, 0, 50, 0, 52,
0, 53, 54, 0, 55, 56, 0, 0, 0, 0,
0, 0, 59, 0, 61, 0, 63, 0, 0, 0,
0, 66, 196, 0, 0, 0, 0, 0, 0, 0,
73, 74, 75, 76, 77, 197, 0, 79, 0, 0,
81, 0, 0, 0, 85, 0, 0, 87, 0, 0,
89, 0, 0, 0, 0, 0, 0, 0, 92, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 93, 94, 95, 96, 97, 0,
0, 0, 0, 98, 0, 0, 0, 0, 0, 0,
0, 0, 0, 99, 0, 0, 100, 101, 102, 0,
0, 0, 104, 0, 198, 0, 106, 0, 1127, 0,
0, 108, 5, 308, 6, 7, 8, 9, 10, 11,
0, 0, 0, 189, 0, 0, 15, 16, 0, 17,
0, 190, 0, 0, 21, 0, 0, 0, 0, 0,
0, 0, 0, 29, 0, 191, 0, 0, 0, 33,
192, 193, 0, 0, 1106, 39, 0, 0, 0, 41,
0, 0, 43, 0, 0, 195, 0, 0, 47, 48,
0, 0, 50, 0, 52, 0, 53, 54, 0, 55,
56, 0, 0, 0, 0, 0, 0, 59, 0, 61,
0, 63, 0, 0, 0, 0, 66, 196, 0, 0,
0, 0, 0, 0, 0, 73, 74, 75, 76, 77,
197, 0, 79, 0, 0, 81, 0, 0, 0, 85,
0, 0, 87, 0, 0, 89, 0, 0, 0, 0,
0, 0, 0, 92, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 93,
94, 95, 96, 97, 0, 0, 0, 0, 98, 0,
0, 0, 0, 0, 0, 0, 0, 0, 99, 0,
0, 100, 101, 102, 0, 0, 0, 104, 0, 198,
0, 106, 0, 199, 0, 5, 108, 6, 7, 8,
9, 10, 11, 0, 0, 0, 189, 0, 0, 15,
16, 0, 17, 0, 190, 0, 0, 21, 0, 0,
0, 0, 0, 0, 0, 0, 29, 0, 191, 0,
0, 0, 33, 192, 193, 0, 0, 194, 39, 0,
0, 0, 41, 0, 0, 43, 0, 0, 195, 0,
0, 47, 48, 0, 0, 50, 0, 52, 0, 53,
54, 0, 55, 56, 0, 0, 0, 0, 0, 0,
59, 0, 61, 0, 63, 0, 0, 0, 0, 66,
196, 0, 0, 0, 0, 0, 0, 0, 73, 74,
75, 76, 77, 197, 0, 79, 0, 0, 81, 0,
0, 0, 85, 0, 0, 87, 0, 0, 89, 0,
0, 0, 0, 0, 0, 0, 92, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 93, 94, 95, 96, 97, 0, 0, 0,
0, 98, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 100, 101, 102, 0, 0, 0,
104, 0, 198, 0, 106, 0, 199, 0, 5, 108,
6, 7, 8, 229, 10, 11, 0, 0, 0, 189,
0, 0, 15, 16, 0, 17, 0, 190, 0, 0,
21, 0, 0, 0, 0, 0, 0, 0, 0, 29,
0, 191, 0, 0, 0, 33, 192, 193, 0, 0,
194, 39, 0, 0, 0, 41, 0, 0, 43, 0,
0, 195, 0, 0, 47, 48, 0, 0, 50, 0,
52, 0, 53, 54, 0, 55, 56, 0, 0, 0,
0, 0, 0, 59, 0, 61, 0, 63, 0, 0,
0, 0, 66, 230, 0, 0, 0, 0, 0, 0,
0, 73, 74, 75, 76, 77, 197, 0, 79, 0,
0, 81, 0, 0, 0, 85, 0, 0, 87, 0,
0, 89, 0, 0, 0, 0, 0, 0, 0, 92,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 93, 94, 95, 96, 97,
0, 0, 0, 0, 98, 0, 0, 0, 0, 0,
0, 0, 0, 0, 99, 0, 0, 100, 101, 102,
0, 0, 0, 104, 0, 198, 0, 106, 0, 199,
0, 5, 108, 6, 7, 8, 9, 10, 11, 0,
0, 0, 189, 0, 0, 15, 16, 0, 17, 0,
190, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 0, 738, 0, 191, 0, 0, 0, 33, 192,
193, 0, 0, 194, 39, 0, 0, 0, 739, 0,
0, 43, 0, 0, 195, 0, 0, 47, 48, 0,
0, 50, 0, 52, 0, 53, 54, 0, 55, 56,
0, 0, 0, 0, 0, 0, 59, 0, 61, 0,
63, 0, 0, 0, 0, 66, 196, 0, 0, 0,
0, 0, 0, 0, 73, 740, 75, 76, 77, 741,
0, 79, 0, 0, 81, 0, 0, 0, 85, 0,
0, 87, 0, 0, 89, 0, 0, 0, 0, 0,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 0, 0, 0, 104, 0, 198, 0,
106, 0, 742, 0, 5, 108, 6, 7, 8, 9,
10, 11, 0, 0, 0, 189, 0, 0, 15, 16,
0, 17, 0, 190, 0, 0, 21, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 191, 0, 0,
0, 33, 192, 193, 0, 0, 194, 39, 0, 0,
0, 41, 0, 0, 43, 0, 0, 195, 0, 0,
47, 48, 0, 0, 50, 0, 52, 0, 53, 54,
0, 55, 56, 0, 0, 0, 0, 0, 0, 59,
0, 61, 0, 63, 0, 0, 0, 0, 66, 196,
0, 0, 0, 0, 0, 0, 0, 73, 74, 75,
76, 77, 197, 0, 79, 0, 0, 81, 0, 0,
0, 85, 0, 0, 87, 0, 0, 89, 0, 0,
0, 0, 0, 0, 0, 92, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 93, 94, 95, 96, 97, 0, 0, 0, 0,
98, 0, 0, 0, 0, 0, 0, 0, 0, 0,
99, 0, 0, 100, 101, 102, 0, 0, 0, 104,
0, 198, 0, 106, 0, 742, 0, 5, 108, 6,
7, 8, 9, 10, 11, 0, 0, 0, 189, 0,
0, 15, 16, 0, 17, 0, 190, 0, 0, 21,
0, 0, 0, 0, 0, 0, 0, 0, 29, 0,
191, 0, 0, 0, 33, 192, 193, 0, 0, 839,
39, 0, 0, 0, 41, 0, 0, 43, 0, 0,
195, 0, 0, 47, 48, 0, 0, 50, 0, 52,
0, 53, 54, 0, 55, 56, 0, 0, 0, 0,
0, 0, 59, 0, 61, 0, 63, 0, 0, 0,
0, 66, 196, 0, 0, 0, 0, 0, 0, 0,
73, 74, 75, 76, 77, 197, 0, 79, 0, 0,
81, 0, 0, 0, 85, 0, 0, 87, 0, 0,
89, 0, 0, 0, 0, 0, 0, 0, 92, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 93, 94, 95, 96, 97, 0,
0, 0, 0, 98, 0, 0, 0, 0, 0, 0,
0, 0, 0, 99, 0, 0, 100, 101, 102, 0,
0, 0, 104, 0, 198, 0, 106, 0, 199, 0,
5, 108, 6, 7, 8, 9, 10, 11, 0, 0,
0, 189, 0, 0, 15, 16, 0, 17, 0, 190,
0, 0, 21, 0, 0, 0, 0, 0, 0, 0,
0, 29, 0, 191, 0, 0, 0, 33, 192, 193,
0, 0, 842, 39, 0, 0, 0, 41, 0, 0,
43, 0, 0, 195, 0, 0, 47, 48, 0, 0,
50, 0, 52, 0, 53, 54, 0, 55, 56, 0,
0, 0, 0, 0, 0, 59, 0, 61, 0, 63,
0, 0, 0, 0, 66, 196, 0, 0, 0, 0,
0, 0, 0, 73, 74, 75, 76, 77, 197, 0,
79, 0, 0, 81, 0, 0, 0, 85, 0, 0,
87, 0, 0, 89, 0, 0, 0, 0, 0, 0,
0, 92, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 93, 94, 95,
96, 97, 0, 0, 0, 0, 98, 0, 0, 0,
0, 0, 0, 0, 0, 0, 99, 0, 0, 100,
101, 102, 0, 0, 0, 104, 0, 198, 0, 106,
0, 199, 0, 5, 108, 6, 7, 8, 9, 10,
11, 0, 0, 0, 189, 0, 0, 15, 16, 0,
17, 0, 190, 0, 0, 21, 0, 0, 0, 0,
0, 0, 0, 0, 29, 0, 191, 0, 0, 0,
33, 192, 193, 0, 0, 1100, 39, 0, 0, 0,
41, 0, 0, 43, 0, 0, 195, 0, 0, 47,
48, 0, 0, 50, 0, 52, 0, 53, 54, 0,
55, 56, 0, 0, 0, 0, 0, 0, 59, 0,
61, 0, 63, 0, 0, 0, 0, 66, 196, 0,
0, 0, 0, 0, 0, 0, 73, 74, 75, 76,
77, 197, 0, 79, 0, 0, 81, 0, 0, 0,
85, 0, 0, 87, 0, 0, 89, 0, 0, 0,
0, 0, 0, 0, 92, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
93, 94, 95, 96, 97, 0, 0, 0, 0, 98,
0, 0, 0, 0, 0, 0, 0, 0, 0, 99,
0, 0, 100, 101, 102, 0, 0, 0, 104, 0,
198, 0, 106, 0, 199, 0, 5, 108, 6, 7,
8, 9, 10, 11, 0, 0, 0, 189, 0, 0,
15, 16, 0, 17, 0, 190, 0, 0, 21, 0,
0, 0, 0, 0, 0, 0, 0, 29, 0, 191,
0, 0, 0, 33, 192, 193, 0, 0, 1101, 39,
0, 0, 0, 41, 0, 0, 43, 0, 0, 195,
0, 0, 47, 48, 0, 0, 50, 0, 52, 0,
53, 54, 0, 55, 56, 0, 0, 0, 0, 0,
0, 59, 0, 61, 0, 63, 0, 0, 0, 0,
66, 196, 0, 0, 0, 0, 0, 0, 0, 73,
74, 75, 76, 77, 197, 0, 79, 0, 0, 81,
0, 0, 0, 85, 0, 0, 87, 0, 0, 89,
0, 0, 0, 0, 0, 0, 0, 92, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 93, 94, 95, 96, 97, 0, 0,
0, 0, 98, 0, 0, 0, 0, 0, 0, 0,
0, 0, 99, 0, 0, 100, 101, 102, 0, 0,
0, 104, 0, 198, 0, 106, 0, 199, 0, 5,
108, 6, 7, 8, 9, 10, 11, 0, 0, 0,
189, 0, 0, 15, 16, 0, 17, 0, 190, 0,
0, 21, 0, 0, 0, 0, 0, 0, 0, 0,
29, 0, 191, 0, 0, 0, 33, 192, 193, 0,
0, 1103, 39, 0, 0, 0, 41, 0, 0, 43,
0, 0, 195, 0, 0, 47, 48, 0, 0, 50,
0, 52, 0, 53, 54, 0, 55, 56, 0, 0,
0, 0, 0, 0, 59, 0, 61, 0, 63, 0,
0, 0, 0, 66, 196, 0, 0, 0, 0, 0,
0, 0, 73, 74, 75, 76, 77, 197, 0, 79,
0, 0, 81, 0, 0, 0, 85, 0, 0, 87,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
92, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 93, 94, 95, 96,
97, 0, 0, 0, 0, 98, 0, 0, 0, 0,
0, 0, 0, 0, 0, 99, 0, 0, 100, 101,
102, 0, 0, 0, 104, 0, 198, 0, 106, 0,
199, 0, 5, 108, 6, 7, 8, 9, 10, 11,
0, 0, 0, 189, 0, 0, 15, 16, 0, 17,
0, 190, 0, 0, 21, 0, 0, 0, 0, 0,
0, 0, 0, 29, 0, 191, 0, 0, 0, 33,
192, 193, 0, 0, 1104, 39, 0, 0, 0, 41,
0, 0, 43, 0, 0, 195, 0, 0, 47, 48,
0, 0, 50, 0, 52, 0, 53, 54, 0, 55,
56, 0, 0, 0, 0, 0, 0, 59, 0, 61,
0, 63, 0, 0, 0, 0, 66, 196, 0, 0,
0, 0, 0, 0, 0, 73, 74, 75, 76, 77,
197, 0, 79, 0, 0, 81, 0, 0, 0, 85,
0, 0, 87, 0, 0, 89, 0, 0, 0, 0,
0, 0, 0, 92, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 93,
94, 95, 96, 97, 0, 0, 0, 0, 98, 0,
0, 0, 0, 0, 0, 0, 0, 0, 99, 0,
0, 100, 101, 102, 0, 0, 0, 104, 0, 198,
0, 106, 0, 199, 0, 5, 108, 6, 7, 8,
9, 10, 11, 0, 0, 0, 189, 0, 0, 15,
16, 0, 17, 0, 190, 0, 0, 21, 0, 0,
0, 0, 0, 0, 0, 0, 29, 0, 191, 0,
0, 0, 33, 192, 193, 0, 0, 1105, 39, 0,
0, 0, 41, 0, 0, 43, 0, 0, 195, 0,
0, 47, 48, 0, 0, 50, 0, 52, 0, 53,
54, 0, 55, 56, 0, 0, 0, 0, 0, 0,
59, 0, 61, 0, 63, 0, 0, 0, 0, 66,
196, 0, 0, 0, 0, 0, 0, 0, 73, 74,
75, 76, 77, 197, 0, 79, 0, 0, 81, 0,
0, 0, 85, 0, 0, 87, 0, 0, 89, 0,
0, 0, 0, 0, 0, 0, 92, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 93, 94, 95, 96, 97, 0, 0, 0,
0, 98, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 100, 101, 102, 0, 0, 0,
104, 0, 198, 0, 106, 0, 199, 0, 5, 108,
6, 7, 8, 9, 10, 11, 0, 0, 0, 189,
0, 0, 15, 16, 0, 17, 0, 190, 0, 0,
21, 0, 0, 0, 0, 0, 0, 0, 0, 29,
0, 191, 0, 0, 0, 33, 192, 193, 0, 0,
1106, 39, 0, 0, 0, 41, 0, 0, 43, 0,
0, 195, 0, 0, 47, 48, 0, 0, 50, 0,
52, 0, 53, 54, 0, 55, 56, 0, 0, 0,
0, 0, 0, 59, 0, 61, 0, 63, 0, 0,
0, 0, 66, 196, 0, 0, 0, 0, 0, 0,
0, 73, 74, 75, 76, 77, 197, 0, 79, 0,
0, 81, 0, 0, 0, 85, 0, 0, 87, 0,
0, 89, 0, 0, 0, 0, 0, 0, 0, 92,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 93, 94, 95, 96, 97,
0, 0, 0, 0, 98, 0, 0, 0, 0, 0,
0, 0, 0, 0, 99, 0, 0, 100, 101, 102,
0, 0, 0, 104, 0, 198, 0, 106, 0, 199,
0, 5, 108, 6, 7, 8, 9, 10, 11, 0,
0, 0, 189, 0, 0, 15, 16, 0, 17, 0,
190, 0, 0, 21, 0, 0, 0, 0, 0, 0,
0, 0, 738, 0, 191, 0, 0, 0, 33, 192,
193, 0, 0, 194, 39, 0, 0, 0, 739, 0,
0, 43, 0, 0, 195, 0, 0, 47, 48, 0,
0, 50, 0, 52, 0, 53, 54, 0, 55, 56,
0, 0, 0, 0, 0, 0, 59, 0, 61, 0,
63, 0, 0, 0, 0, 66, 196, 0, 0, 0,
0, 0, 0, 0, 73, 740, 75, 76, 77, 741,
0, 79, 0, 0, 81, 0, 0, 0, 85, 0,
0, 87, 0, 0, 89, 0, 0, 0, 0, 0,
0, 0, 92, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 93, 94,
95, 96, 97, 0, 0, 0, 0, 98, 0, 0,
0, 0, 0, 0, 0, 0, 0, 99, 0, 0,
100, 101, 102, 0, 0, 0, 104, 0, 198, 0,
106, 0, 1217, 0, 5, 108, 6, 7, 8, 9,
10, 11, 0, 0, 0, 189, 0, 0, 15, 16,
0, 17, 0, 190, 0, 0, 21, 0, 0, 0,
0, 0, 0, 0, 0, 29, 0, 191, 0, 0,
0, 33, 192, 193, 0, 0, 194, 39, 0, 0,
0, 41, 0, 0, 43, 0, 0, 195, 0, 0,
47, 48, 0, 0, 50, 0, 52, 0, 53, 54,
0, 55, 56, 0, 0, 0, 0, 0, 0, 59,
0, 61, 0, 63, 0, 0, 0, 0, 66, 196,
0, 0, 0, 0, 0, 0, 0, 73, 74, 75,
76, 77, 197, 0, 79, 0, 0, 81, 0, 0,
0, 85, 0, 0, 87, 0, 0, 89, 0, 0,
0, 0, 0, 0, 0, 92, 0, 0, 0, 0,
0, 0, 0, 0, 0, 966, 0, 967, 0, 0,
0, 93, 94, 95, 96, 97, 674, 0, 0, 0,
98, 968, 258, 675, 969, 0, 0, 0, 0, 970,
99, 0, 0, 100, 101, 102, 0, 0, 261, 104,
191, 0, 0, 106, 971, 1217, 0, 0, 108, 0,
972, 0, 0, 0, 264, 0, 0, 973, 0, 676,
0, 0, 0, 0, 0, 0, 0, 974, 0, 0,
0, 0, 0, 0, 975, 976, 0, 0, 0, 0,
0, 0, 269, 0, 0, 0, 0, 0, 0, 0,
0, 977, 0, 0, 0, 0, 0, 0, 0, 0,
271, 272, 0, 978, 0, 274, 0, 979, 0, 0,
980, 0, 0, 0, 981, 0, 0, 278, 0, 0,
982, 0, 0, 0, 0, 0, 0, 0, 0, 487,
406, 407, 408, 409, 410, 0, 0, 413, 414, 415,
416, 0, 418, 419, 936, 937, 938, 939, 940, 682,
0, 683, 0, 0, 0, 684, 685, 686, 687, 688,
689, 690, 691, 941, 693, 694, 0, 942, 0, 0,
696, 697, 943, 699, 0, 5, 983, 6, 7, 8,
9, 10, 11, 0, 0, 0, 189, 0, 0, 15,
16, 0, 17, 0, 190, 0, 0, 21, 0, 0,
0, 0, 0, 0, 0, 0, 29, 0, 191, 0,
0, 0, 33, 192, 193, 0, 0, 194, 39, 0,
0, 0, 41, 0, 0, 43, 0, 0, 195, 0,
0, 47, 48, 0, 0, 50, 0, 52, 0, 53,
54, 0, 55, 56, 0, 0, 0, 0, 0, 0,
59, 0, 61, 0, 63, 0, 0, 0, 0, 66,
196, 0, 0, 0, 0, 0, 0, 0, 73, 74,
75, 76, 77, 197, 0, 79, 0, 0, 81, 0,
0, 0, 85, 0, 0, 87, 0, 0, 89, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 93, 94, 95, 96, 97, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 0, 101, 102, 0, 0, 0,
104, 0, 198, 0, 106, 0, 199, 5, 308, 6,
7, 8, 9, 10, 11, 0, 0, 0, 189, 0,
0, 15, 16, 0, 17, 0, 190, 0, 377, 21,
0, 0, 0, 0, 0, 0, 0, 0, 29, 0,
191, 0, 0, 0, 33, 192, 193, 0, 0, 194,
39, 0, 0, 0, 41, 0, 0, 43, 0, 0,
195, 0, 0, 47, 48, 0, 0, 50, 0, 52,
0, 53, 54, 0, 55, 56, 0, 0, 0, 0,
0, 0, 59, 0, 61, 378, 63, 0, 0, 379,
0, 66, 196, 0, 0, 0, 0, 0, 0, 0,
73, 74, 75, 76, 77, 197, 0, 79, 0, 0,
81, 0, 0, 0, 85, 0, 0, 87, 0, 0,
89, 0, 0, 0, 0, 0, 0, 0, 0, -493,
0, 0, 0, 0, 0, 0, 381, 382, 0, 383,
384, 385, 0, 386, 387, 0, 95, 0, 390, 0,
-493, 0, 0, 0, -493, 396, 397, 0, 0, 400,
0, 0, 401, 402, 403, 0, 0, 0, 102, 0,
0, 0, 0, 0, 198, 0, 106, -493, 1127, 5,
0, 6, 7, 8, 9, 10, 11, 0, 0, 0,
189, 0, 0, 15, 16, 0, 17, 0, 190, 0,
0, 21, 0, 0, 0, 0, 0, 0, 0, 0,
29, 0, 191, 0, 0, 0, 33, 192, 193, 0,
0, 194, 39, 0, 0, 0, 41, 0, 0, 43,
0, 0, 195, 0, 0, 47, 48, -475, 0, 50,
0, 52, 0, 53, 54, 0, 55, 56, 0, 0,
0, 0, 0, 0, 59, 0, 61, 0, 63, 0,
0, 0, 0, 66, 196, 0, 0, 0, -475, 0,
0, 0, 73, 74, 75, 76, 77, 197, 0, 79,
0, -475, 81, 0, 0, 0, 85, 0, 0, 87,
0, 0, 89, 0, -475, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 95, 0,
5, 0, 6, 7, 8, 9, 10, 11, 0, 0,
0, 189, 0, 0, 15, 16, 0, 17, 0, 190,
102, -475, 21, 0, 0, 0, -475, 0, 106, 0,
1217, 29, 0, 191, 0, 0, 0, 33, 192, 193,
0, 0, 194, 39, 0, 0, 0, 41, 0, 0,
43, 0, 0, 195, 0, 0, 47, 48, 0, 0,
50, 0, 52, 0, 53, 54, 0, 55, 56, 0,
0, 0, 0, 0, 0, 59, 0, 61, 0, 63,
0, 0, 0, 0, 66, 196, 0, 0, 0, 0,
0, 0, 0, 73, 74, 75, 76, 77, 197, 0,
79, 0, 0, 81, 0, 0, 0, 85, 0, 0,
87, 0, 0, 89, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 93, 0, 95,
0, 5, 0, 6, 7, 8, 9, 10, 11, 0,
0, 0, 189, 0, 0, 15, 16, 0, 17, 0,
190, 102, 0, 21, 0, 0, 0, 198, 0, 106,
0, 199, 29, 0, 191, 0, 0, 0, 33, 192,
193, 0, 0, 194, 39, 0, 0, 0, 41, 0,
0, 43, 0, 0, 195, 0, 0, 47, 48, 0,
0, 50, 0, 52, 0, 53, 54, 0, 55, 56,
0, 0, 0, 0, 0, 0, 59, 0, 61, 0,
63, 0, 0, 0, 0, 66, 196, 0, 0, 0,
0, 0, 0, 0, 73, 74, 75, 76, 77, 197,
0, 79, 0, 0, 81, 0, 0, 0, 85, 0,
0, 87, 0, 0, 89, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
95, 0, 5, 0, 6, 7, 8, 9, 10, 11,
0, 0, 0, 189, 0, 0, 15, 16, 0, 17,
0, 190, 102, 0, 21, 0, 0, 0, 198, 0,
106, 0, 742, 29, 0, 191, 0, 0, 0, 33,
192, 193, 0, 0, 194, 39, 0, 0, 0, 41,
0, 0, 43, 0, 0, 195, 0, 0, 47, 48,
0, 0, 50, 0, 52, 0, 53, 54, 0, 55,
56, 0, 0, 0, 0, 0, 0, 59, 0, 61,
0, 63, 0, 0, 0, 0, 66, 196, 0, 0,
0, 0, 0, 0, 0, 73, 74, 75, 76, 77,
197, 0, 79, 0, 0, 81, 0, 1167, 0, 85,
0, 0, 87, 0, 0, 89, 674, 0, 0, 0,
0, 257, 258, 675, 259, 0, 0, 0, 0, 260,
0, 0, 0, 0, 0, 0, 0, 0, 261, 0,
0, 95, 0, 0, 971, 0, 0, 0, 0, 0,
263, 0, 0, 0, 264, 0, 0, 265, 0, 676,
0, 0, 0, 0, 0, 0, 0, 266, 0, 0,
0, 106, 0, 199, 975, 268, 0, 0, 0, 0,
0, 0, 269, 0, 0, 0, 0, 0, 0, 0,
0, 270, 0, 0, 0, 0, 0, 0, 0, 375,
271, 272, 0, 273, 0, 274, 376, 1168, 0, 0,
980, 0, 0, 0, 277, 0, 0, 278, 0, 377,
279, 0, 0, 0, 0, 0, 0, 0, 0, 487,
406, 407, 408, 409, 410, 0, 0, 413, 414, 415,
416, 0, 418, 419, 936, 937, 938, 939, 940, 682,
0, 683, 0, 0, 0, 684, 685, 686, 687, 688,
689, 690, 691, 941, 693, 694, 0, 942, 0, 0,
696, 697, 943, 699, 0, 375, 378, 0, 0, 0,
379, 0, 376, 0, 0, 0, 0, 0, 0, 486,
0, 0, 0, 0, 0, 377, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 380, 487, 406, 407, 408, 409, 410, 0, 0,
413, 414, 415, 416, 0, 418, 419, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 389, 390,
391, 392, 393, 0, 394, 395, 396, 397, 398, 399,
400, 375, 378, 401, 402, 403, 379, 435, 376, 0,
0, 0, 0, 0, 404, 1016, 0, 0, 0, 0,
0, 377, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 380, 487, 406,
407, 408, 409, 410, 0, 0, 413, 414, 415, 416,
0, 418, 419, 381, 382, 0, 383, 384, 385, 0,
386, 387, 388, 0, 389, 390, 391, 392, 393, 0,
394, 395, 396, 397, 398, 399, 400, 375, 378, 401,
402, 403, 379, 435, 376, 0, 0, 0, 0, 0,
404, 1023, 0, 0, 0, 0, 0, 377, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 380, 487, 406, 407, 408, 409, 410,
0, 0, 413, 414, 415, 416, 0, 418, 419, 381,
382, 0, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 375, 378, 401, 402, 403, 379, 435,
376, 0, 0, 0, 0, 0, 404, 1183, 0, 0,
0, 0, 0, 377, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 380,
487, 406, 407, 408, 409, 410, 0, 0, 413, 414,
415, 416, 0, 418, 419, 381, 382, 0, 383, 384,
385, 0, 386, 387, 388, 0, 389, 390, 391, 392,
393, 0, 394, 395, 396, 397, 398, 399, 400, 375,
378, 401, 402, 403, 379, 435, 376, 0, 0, 0,
0, 0, 404, 1184, 0, 0, 0, 0, 0, 377,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 380, 487, 406, 407, 408,
409, 410, 0, 0, 413, 414, 415, 416, 0, 418,
419, 381, 382, 0, 383, 384, 385, 0, 386, 387,
388, 0, 389, 390, 391, 392, 393, 0, 394, 395,
396, 397, 398, 399, 400, 375, 378, 401, 402, 403,
379, 435, 376, 0, 0, 0, 0, 0, 404, 1185,
0, 0, 0, 0, 0, 377, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 380, 487, 406, 407, 408, 409, 410, 0, 0,
413, 414, 415, 416, 0, 418, 419, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 389, 390,
391, 392, 393, 0, 394, 395, 396, 397, 398, 399,
400, 375, 378, 401, 402, 403, 379, 435, 376, 0,
0, 0, 0, 0, 404, 1186, 0, 0, 0, 0,
0, 377, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 380, 487, 406,
407, 408, 409, 410, 0, 0, 413, 414, 415, 416,
0, 418, 419, 381, 382, 0, 383, 384, 385, 0,
386, 387, 388, 0, 389, 390, 391, 392, 393, 0,
394, 395, 396, 397, 398, 399, 400, 375, 378, 401,
402, 403, 379, 435, 376, 0, 0, 0, 0, 0,
404, 1209, 0, 0, 0, 0, 0, 377, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 380, 487, 406, 407, 408, 409, 410,
0, 0, 413, 414, 415, 416, 0, 418, 419, 381,
382, 0, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 0, 378, 401, 402, 403, 379, 435,
0, 0, 0, 0, 0, 0, 404, 1210, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 377, 0, 380,
487, 406, 407, 408, 409, 410, 0, 0, 413, 414,
415, 416, 0, 418, 419, 381, 382, 0, 383, 384,
385, 0, 386, 387, 388, 0, 389, 390, 391, 392,
393, 0, 394, 395, 396, 397, 398, 399, 400, 375,
0, 401, 402, 403, 0, 435, 376, 0, 0, 0,
0, 0, 404, 0, 378, 0, 0, 0, 379, 377,
466, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 467, 0, 0, 0, 375,
0, 0, 0, 0, 0, 0, 376, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 377,
289, 0, 0, 0, 0, 381, 382, 0, 383, 384,
385, 0, 386, 387, 388, 477, 378, 390, 391, 392,
379, 0, 394, 395, 396, 397, 0, 0, 400, 0,
0, 401, 402, 403, 0, 0, 0, 0, 0, 0,
0, 0, 404, 0, 0, 0, 0, 0, 0, 0,
0, 380, 0, 0, 0, 0, 378, 0, 0, 0,
379, 0, 0, 0, 0, 0, 0, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 389, 390,
391, 392, 393, 0, 394, 395, 396, 397, 398, 399,
400, 380, 0, 401, 402, 403, 0, 435, 0, 0,
0, 0, 0, 0, 404, 0, 0, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 389, 390,
391, 392, 393, 0, 394, 395, 396, 397, 398, 399,
400, 375, 0, 401, 402, 403, 0, 435, 376, 0,
0, 0, 0, 0, 404, 0, 0, 0, 0, 0,
0, 377, 0, 0, 0, 0, 479, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 375, 791, 0, 0, 0, 0, 0, 376, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 377, 480, 0, 0, 0, 792, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 378, 0,
0, 0, 379, 0, 0, 0, 375, 0, 0, 0,
0, 0, 0, 376, 0, 0, 0, 0, 0, 0,
0, 0, 793, 0, 0, 0, 377, 876, 0, 0,
0, 0, 0, 380, 0, 0, 0, 0, 378, 0,
0, 0, 379, 0, 0, 0, 0, 0, 0, 381,
382, 0, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 380, 481, 401, 402, 403, 0, 0,
0, 0, 0, 378, 0, 0, 404, 379, 0, 381,
382, 0, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 0, 469, 401, 402, 403, 380, 0,
0, 0, 0, 0, 0, 0, 404, 0, 0, 0,
0, 0, 0, 0, 381, 382, 0, 383, 384, 385,
0, 386, 387, 388, 0, 389, 390, 391, 392, 393,
0, 394, 395, 396, 397, 398, 399, 400, 375, 0,
401, 402, 403, 0, 435, 376, 0, 0, 0, 0,
0, 404, 0, 0, 0, 0, 0, 0, 377, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 437, 0, 0, 0, 375, 0,
0, 0, 0, 0, 0, 376, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 377, 289,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 378, 0, 0, 375, 379,
0, 0, 0, 0, 0, 376, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 377, 631,
0, 0, 0, 0, 0, 0, 184, 0, 0, 0,
380, 0, 0, 0, 632, 378, 0, 0, 0, 379,
0, 0, 0, 0, 0, 0, 381, 382, 0, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
380, 0, 401, 402, 403, 378, 0, 0, 0, 379,
0, 0, 0, 404, 0, 0, 381, 382, 0, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
380, 0, 401, 402, 403, 0, 435, 0, 0, 0,
0, 0, 0, 404, 0, 0, 381, 382, 0, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
375, 220, 401, 402, 403, 22, 23, 376, 0, 0,
0, 0, 0, 404, 0, 221, 0, 31, 222, 0,
377, 633, 0, 37, 0, 0, -83, 0, 0, 0,
42, 0, 0, 0, 0, 0, 634, 0, 0, 0,
375, 0, 0, 0, 0, -54, 0, 376, 0, 0,
0, 0, 0, 0, 0, 0, 58, 0, 60, 0,
377, 868, 0, 0, -54, 0, 0, 225, 0, 68,
0, 0, 0, 0, 0, 0, 0, 378, 0, 0,
375, 379, 0, 0, 0, 0, 0, 376, 84, 0,
0, 86, 0, -83, 88, 0, 0, 0, 0, 0,
377, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 380, 0, 0, 0, 0, 378, 0, 0,
0, 379, 0, 0, 0, 0, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 380, 0, 401, 402, 403, 378, 0, 0,
0, 379, 0, 0, 0, 404, 0, 0, 381, 382,
892, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 380, 0, 401, 402, 403, 0, 435, 0,
0, 0, 0, 0, 0, 404, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 375, 0, 401, 402, 403, 0, 435, 376,
0, 0, 0, 0, 0, 404, 0, 0, 0, 0,
0, 0, 377, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 220, 0, 0, 0, 22, 23,
0, 0, 375, 0, 0, 0, 0, 0, 221, 376,
31, 222, 0, 0, 0, 0, 37, 0, 0, 0,
0, 0, 377, 42, 0, 0, 0, 1071, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, -54, 378,
0, 0, 0, 379, 0, 0, 0, 375, 514, 58,
0, 60, 0, 0, 376, 0, 0, -54, 0, 0,
225, 0, 68, 1072, 0, 0, 0, 377, 0, 0,
469, 0, 0, 0, 380, 0, 0, 0, 0, 378,
0, 84, 0, 379, 86, 0, 0, 88, 0, 0,
381, 382, 0, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 380, 0, 401, 402, 403, 0,
0, 0, 0, 0, 378, 930, 0, 404, 379, 0,
381, 382, 0, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 375, 0, 401, 402, 403, 380,
0, 376, 0, 0, 0, 0, 0, 404, 0, 0,
0, 0, 0, 0, 377, 381, 382, 0, 383, 384,
385, 0, 386, 387, 388, 0, 389, 390, 391, 392,
393, 0, 394, 395, 396, 397, 398, 399, 400, 375,
0, 401, 402, 403, 0, 0, 376, 0, 0, 0,
0, 0, 404, 0, 0, 0, 0, 0, 0, 377,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 378, 0, 0, 0, 379, 0, 0, 0, 375,
0, 0, 0, 0, 0, 0, 376, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 377,
0, 0, 0, 0, 0, 0, 380, 0, 0, 0,
0, 0, 0, 0, 0, 0, 378, 0, 0, 0,
379, 0, 381, 382, 0, 383, 384, 385, 0, 386,
387, 388, 0, 389, 390, 391, 392, 393, 0, 394,
395, 396, 397, 398, 399, 400, 0, 0, 401, 402,
403, 380, 525, 0, 0, 0, 378, 0, 0, 404,
379, 0, 0, 0, 0, 0, 0, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 389, 390,
391, 392, 393, 0, 394, 395, 396, 397, 398, 399,
400, 380, 529, 401, 402, 403, 0, 0, 0, 0,
0, 0, 0, 0, 404, 0, 0, 381, 382, 0,
383, 384, 385, 0, 386, 387, 388, 0, 389, 390,
391, 392, 393, 0, 394, 395, 396, 397, 398, 399,
400, 375, 535, 401, 402, 403, 0, 0, 376, 0,
0, 0, 0, 0, 404, 0, 0, 0, 0, 0,
0, 377, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 375, 0, 0, 0, 0, 0, 0, 376, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 377, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 378, 0,
0, 375, 379, 0, 0, 0, 0, 0, 376, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 377, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 552, 380, 0, 0, 0, 0, 378, 0,
0, 0, 379, 0, 0, 0, 0, 0, 0, 381,
382, 635, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 380, 0, 401, 402, 403, 378, 0,
0, 0, 379, 0, 0, 0, 404, 0, 0, 381,
382, 0, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 380, 0, 401, 402, 403, 0, 0,
0, 0, 0, 0, 0, 0, 404, 0, 0, 381,
382, 0, 383, 384, 385, 0, 386, 387, 388, 0,
389, 390, 391, 392, 393, 0, 394, 395, 396, 397,
398, 399, 400, 375, 787, 401, 402, 403, 0, 0,
376, 0, 766, 0, 0, 0, 404, 220, 0, 0,
0, 22, 23, 377, 0, 0, 1080, 0, 0, 0,
0, 221, 0, 31, 222, 0, 0, 0, 0, 37,
0, 0, 0, 375, 0, 0, 42, 0, 0, 0,
376, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 377, 0, 0, 0, 0, 0, 0,
0, 0, 58, 0, 60, 0, 62, 0, 1081, 0,
378, 1082, 0, 225, 379, 68, 0, 0, 375, 0,
0, 0, 0, 0, 0, 376, 0, 0, 0, 0,
0, 0, 0, 0, 84, 0, 0, 86, 377, 0,
88, 0, 0, 0, 0, 380, 0, 0, 0, 0,
378, 0, 0, 0, 379, 0, 0, 0, 0, 0,
0, 381, 382, 0, 383, 384, 385, 0, 386, 788,
388, 0, 389, 390, 391, 392, 393, 0, 394, 395,
396, 397, 398, 399, 400, 380, 0, 401, 402, 403,
103, 0, 0, 0, 0, 378, 1232, 0, 404, 379,
0, 381, 382, 0, 383, 384, 385, 0, 386, 387,
388, 0, 389, 390, 391, 392, 393, -597, 394, 395,
396, 397, 398, 399, 400, 375, 184, 401, 402, 403,
380, 0, 376, 0, 0, 0, 0, 0, 404, 0,
0, 0, 0, 0, 0, 377, 381, 382, 0, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
375, 883, 401, 402, 403, 0, 0, 376, 0, 0,
0, 0, 0, 404, 0, 0, 0, 0, 0, 0,
377, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 378, 0, 0, 0, 379, 0, 0, 0,
375, 0, 0, 0, 0, 0, 0, 376, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
377, 0, 0, 890, 0, 0, 0, 380, 0, 0,
0, 0, 0, 0, 0, 0, 0, 378, 0, 0,
0, 379, 0, 381, 382, 0, 383, 384, 385, 0,
386, 387, 388, 0, 389, 390, 391, 392, 393, 0,
394, 395, 396, 397, 398, 399, 400, 0, 851, 401,
402, 403, 380, 0, 0, 0, 0, 378, 0, 0,
404, 379, 0, 0, 0, 0, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 380, 0, 401, 402, 403, 0, 0, 0,
0, 0, 0, 0, 0, 404, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 375, 0, 401, 402, 403, 0, 0, 376,
0, 0, 0, 0, 0, 404, 0, 0, 0, 0,
0, 0, 377, 220, 0, 0, 0, 22, 23, 0,
0, 0, 1080, 0, 0, 0, 0, 221, 0, 31,
222, 0, 375, 0, 0, 37, 0, 0, 0, 376,
0, 0, 42, 0, 0, 0, 0, 0, 0, 0,
0, 0, 377, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 58, 378,
60, 0, 62, 379, 1081, 0, 0, 1082, 375, 225,
0, 68, 0, 0, 0, 376, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 377, 0,
84, 0, 0, 86, 380, 0, 88, 0, 0, 378,
0, 0, 0, 379, 0, 0, 0, 0, 0, 0,
381, 382, 0, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 380, 0, 401, 402, 403, 0,
0, 0, 0, 918, 0, 378, 103, 404, 0, 379,
381, 382, 1233, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 375, 0, 401, 402, 403, 933,
380, 376, 0, 919, 0, 0, 0, 404, 0, 0,
0, 0, 0, 0, 377, 999, 381, 382, 0, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
375, 0, 401, 402, 403, 0, 0, 376, 0, 0,
0, 0, 0, 404, 0, 0, 0, 0, 0, 0,
377, 1002, 0, 0, 0, 0, 0, 0, 0, 0,
0, 378, 0, 0, 0, 379, 0, 0, 0, 0,
375, 0, 0, 0, 0, 0, 0, 376, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
377, 0, 0, 0, 0, 0, 380, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 378, 0, 0,
0, 379, 381, 382, 0, 383, 384, 385, 0, 386,
387, 388, 0, 389, 390, 391, 392, 393, 0, 394,
395, 396, 397, 398, 399, 400, 0, 0, 401, 402,
403, 0, 380, 0, 0, 0, 0, 378, 0, 404,
0, 379, 0, 0, 0, 0, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 380, 0, 401, 402, 403, 0, 0, 0,
0, 0, 0, 0, 0, 404, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 375, 1068, 401, 402, 403, 0, 0, 376,
0, 0, 0, 1005, 0, 404, 0, 0, 0, 0,
0, 0, 377, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 375, 0, 0, 0, 0, 0, 0, 376,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 377, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 378,
0, 0, 375, 379, 0, 0, 0, 0, 0, 376,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 377, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 380, 0, 0, 0, 0, 378,
0, 0, 0, 379, 0, 0, 0, 0, 0, 0,
381, 382, 1099, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 380, 0, 401, 402, 403, 378,
0, 0, 0, 379, 0, 0, 0, 404, 0, 0,
381, 382, 1102, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 380, 0, 401, 402, 403, 0,
0, 0, 0, 0, 0, 0, 0, 404, 0, 0,
381, 382, 0, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 375, 1121, 401, 402, 403, 0,
0, 376, 0, 0, 0, 0, 0, 404, 0, 0,
0, 0, 0, 0, 377, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 375, 0, 0, 0, 0, 0,
0, 376, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 377, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 378, 0, 0, 375, 379, 0, 0, 0, 0,
0, 376, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 377, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 380, 0, 0, 0,
0, 378, 0, 0, 0, 379, 0, 0, 0, 0,
0, 0, 381, 382, 0, 383, 384, 385, 0, 386,
387, 388, 0, 389, 390, 391, 392, 393, 0, 394,
395, 396, 397, 398, 399, 400, 380, 0, 401, 402,
403, 378, 0, 0, 0, 379, 0, 0, 0, 404,
0, 0, 381, 382, 0, 383, 384, 385, 0, 386,
387, 388, 0, 389, 390, 391, 392, 393, 0, 394,
395, 396, 397, 398, 399, 400, 380, 0, 401, 402,
403, 0, 0, 0, 0, 1166, 0, 0, 0, 404,
0, 0, 381, 382, 0, 383, 384, 385, 0, 386,
387, 388, 0, 389, 390, 391, 392, 393, 0, 394,
395, 396, 397, 398, 399, 400, 375, 256, 401, 402,
403, 0, 959, 376, 0, 0, 0, 1206, 0, 404,
0, 257, 258, 0, 259, 0, 377, 0, 0, 260,
0, 0, 0, 0, 0, 0, 0, 0, 261, 0,
0, 0, 0, 0, 262, 0, 375, 0, 0, 0,
263, 0, 0, 376, 264, 0, 0, 265, 0, 0,
0, 0, 0, 0, 0, 0, 377, 266, 0, 0,
0, 0, 0, 0, 267, 268, 0, 0, 0, 0,
0, 0, 269, 378, 0, 0, 375, 379, 0, 0,
0, 270, 0, 376, 0, 0, 1226, 0, 0, 0,
271, 272, 0, 273, 0, 274, 377, 275, 0, 0,
276, 0, 0, 0, 277, 0, 0, 278, 380, 0,
279, 0, 0, 378, 0, 0, 0, 379, 0, 0,
0, 0, 0, 0, 381, 382, 1227, 383, 384, 385,
0, 386, 387, 388, 0, 389, 390, 391, 392, 393,
0, 394, 395, 396, 397, 398, 399, 400, 380, 0,
401, 402, 403, 378, 0, 0, 0, 379, 0, 0,
0, 404, 0, 0, 381, 382, 1228, 383, 384, 385,
0, 386, 387, 388, 0, 389, 390, 391, 392, 393,
0, 394, 395, 396, 397, 398, 399, 400, 380, 0,
401, 402, 403, 0, 0, 0, 0, 0, 0, 0,
0, 404, 0, 0, 381, 382, 0, 383, 384, 385,
0, 386, 387, 388, 0, 389, 390, 391, 392, 393,
0, 394, 395, 396, 397, 398, 399, 400, 375, 256,
401, 402, 403, 0, 0, 376, 0, 0, 0, 0,
0, 404, 0, 257, 258, 0, 259, 0, 377, 0,
0, 260, 0, 0, 0, 0, 0, 801, 0, 0,
261, 0, 0, 0, 0, 0, 262, 0, 375, 0,
0, 0, 263, 0, 0, 376, 264, 0, 0, 265,
0, 0, 0, 0, 0, 0, 0, 0, 377, 266,
0, 0, 0, 0, 0, 0, 267, 268, 0, 0,
0, 0, 0, 0, 269, 378, 0, 0, 375, 379,
0, 0, 0, 270, 0, 376, 0, 0, 1229, 0,
0, 0, 271, 272, 0, 273, 0, 274, 377, 275,
0, 0, 276, 0, 0, 0, 277, 0, 0, 278,
380, 0, 279, 0, 0, 378, 0, 0, 0, 379,
0, 0, 0, 0, 0, 0, 381, 382, 1230, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
380, 0, 401, 402, 403, 378, 0, 0, 0, 379,
0, 0, 0, 404, 0, 0, 381, 382, 1231, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
380, 0, 401, 402, 403, 0, 0, 0, 0, 0,
0, 0, 0, 404, 0, 0, 381, 382, 0, 383,
384, 385, 0, 386, 387, 388, 0, 389, 390, 391,
392, 393, 0, 394, 395, 396, 397, 398, 399, 400,
375, -301, 401, 402, 403, 0, 0, 376, 0, 0,
0, 0, 0, 404, 0, -301, -301, 0, -301, 0,
377, 0, 0, -301, 0, 0, 0, 0, 0, 0,
0, 0, -301, 0, 0, 0, 0, 0, -301, 0,
375, 0, 0, 0, -301, 0, 0, 376, -301, 1256,
0, -301, 0, 0, 0, 0, 0, 0, 0, 0,
377, -301, 0, 0, 0, 0, 0, 0, -301, -301,
0, 0, 0, 0, 0, 0, -301, 378, 0, 0,
375, 379, 0, 0, 0, -301, 0, 376, 0, 0,
0, 0, 0, 0, -301, -301, 0, -301, 0, -301,
377, -301, 0, 0, -301, 0, 0, 0, -301, 0,
0, -301, 380, 0, -301, 0, 0, 378, 0, 0,
0, 379, 0, 0, 0, 0, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 380, 0, 401, 402, 403, 378, 0, 0,
0, 379, 0, 0, 0, 404, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 380, 0, 401, 402, 403, 0, 0, 0,
0, 0, 0, 1285, 0, 404, 0, 0, 381, 382,
0, 383, 384, 385, 0, 386, 387, 388, 0, 389,
390, 391, 392, 393, 0, 394, 395, 396, 397, 398,
399, 400, 375, 0, 401, 402, 403, 0, 0, 376,
0, 0, 0, 0, 0, 404, 220, 0, 0, 0,
22, 23, 377, 0, 0, 1080, 0, 0, 0, 0,
221, 0, 31, 222, 0, 0, 0, 0, 37, 0,
0, 0, 0, 0, 0, 42, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 377, 0, 0, 0, 0, 0, 0, 0,
0, 58, 0, 60, 0, 62, 0, 1081, 0, 837,
1082, 0, 225, 379, 68, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 84, 0, 0, 86, 377, 0, 88,
0, 0, 0, 0, 380, 0, 0, 0, 0, 378,
0, 0, 0, 379, 0, 0, 0, 0, 0, 0,
381, 382, 0, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 393, 0, 394, 395, 396,
397, 398, 399, 400, 380, 0, 401, 402, 403, 103,
377, 0, 0, 0, 378, 1234, 0, 404, 379, 0,
381, 382, 0, 383, 384, 385, 0, 386, 387, 388,
0, 389, 390, 391, 392, 0, 0, 394, 395, 396,
397, 398, 399, 400, 0, 0, 401, 402, 403, 380,
0, 0, 0, 0, 0, 0, 0, 404, 0, 0,
0, 0, 0, 0, 0, 381, 382, 378, 383, 384,
385, 379, 386, 387, 388, 0, 389, 390, 391, 392,
0, 0, 394, 395, 396, 397, 398, 0, 400, 0,
0, 401, 402, 403, 0, 220, 0, 0, 0, 22,
23, 0, 404, 0, 1080, 0, 0, 0, 0, 221,
0, 31, 222, 0, 0, 0, 0, 37, 381, 382,
0, 383, 384, 385, 42, 386, 387, 388, 0, 389,
390, 391, 392, 0, 0, 394, 395, 396, 397, 398,
0, 400, 0, 0, 401, 402, 403, 0, 0, 0,
58, 800, 60, 256, 354, 404, 1081, 0, 0, 1082,
0, 225, 0, 68, 0, 0, 0, 257, 258, 0,
259, 0, 0, 0, 0, 260, 0, 0, 0, 0,
0, 801, 84, 0, 261, 86, 0, 0, 88, 0,
262, 0, 0, 0, 0, 0, 263, 0, 0, 0,
264, 0, 0, 265, 0, 0, 0, 0, 0, 0,
0, 0, 0, 266, 0, 0, 0, 0, 0, 0,
267, 268, 0, 0, 0, 0, 0, 0, 269, 0,
0, 0, 0, 0, 0, 0, 0, 270, 103, 0,
256, 0, 0, 0, 0, 0, 271, 272, 0, 273,
0, 274, 0, 275, 257, 258, 276, 259, 0, 0,
277, 0, 260, 278, 23, 0, 279, 0, 0, 0,
0, 261, 0, 0, 0, 0, 0, 262, 0, 0,
0, 0, 0, 263, 0, 0, 0, 264, 0, 0,
265, 0, 0, 0, 0, 0, 0, 0, 0, 0,
266, 0, 0, 0, 0, 0, 0, 267, 268, 0,
0, 0, 0, 0, 0, 269, 60, 0, 0, 0,
0, 0, 0, 0, 270, 0, 0, 68, 0, 0,
0, 0, 0, 271, 272, 0, 273, 0, 274, 0,
275, -311, 0, 276, 0, 0, 0, 277, 0, 0,
278, 0, 88, 279, 0, -311, -311, 0, -311, 0,
0, 0, 0, -311, 0, 0, 0, 0, 0, 0,
0, 0, -311, 0, 0, 0, 0, 0, -311, 0,
0, 0, 0, 0, -311, 0, 0, 0, -311, 0,
0, -311, 0, 0, 0, 0, 0, 0, 0, 0,
0, -311, 0, 0, 0, 0, 0, 0, -311, -311,
0, 0, 0, 0, 0, 0, -311, 0, 0, 0,
0, 0, 0, 0, 0, -311, 0, 0, 256, 0,
0, 0, 0, 0, -311, -311, 0, -311, 0, -311,
0, -311, 257, 258, -311, 259, 0, 0, -311, 0,
260, -311, 0, 0, -311, 0, 0, 0, 0, 261,
0, 0, 0, 0, 0, 262, 0, 0, 0, 0,
0, 263, 0, 0, 0, 264, 0, 0, 265, 0,
0, 0, 0, 0, 0, 0, 0, 0, 266, 0,
0, 0, 0, 0, 0, 267, 268, 0, 0, 0,
0, 0, 0, 269, 0, 0, 0, 0, 0, 0,
0, 0, 270, 0, 0, -302, 0, 0, 0, 0,
0, 271, 272, 0, 273, 0, 274, 0, 275, -302,
-302, 276, -302, 0, 0, 277, 0, -302, 278, 0,
0, 279, 0, 0, 0, 0, -302, 0, 0, 0,
0, 0, -302, 0, 0, 0, 0, 0, -302, 0,
0, 0, -302, 0, 0, -302, 0, 0, 0, 0,
0, 0, 0, 0, 0, -302, 0, 0, 0, 0,
0, 0, -302, -302, 0, 0, 0, 0, 0, 0,
-302, 0, 0, 0, 0, 0, 0, 0, 0, -302,
0, 0, -194, 0, 0, 0, 0, 0, -302, -302,
0, -302, 0, -302, 0, -302, -194, -194, -302, -194,
0, 0, -302, 0, -194, -302, 0, 0, -302, 0,
0, 0, 0, -194, 0, 0, 0, 0, 0, -194,
0, 0, 0, 0, 0, -194, 0, 0, 0, -194,
0, 0, -194, 0, 0, 0, 0, 0, 0, 0,
0, 0, -194, 0, 0, 0, 0, 0, 0, -194,
-194, 0, 0, 0, 0, 0, 0, -194, 0, 0,
0, 0, 0, 0, 0, 0, -194, 0, 0, -186,
0, 0, 0, 0, 0, -194, -194, 0, -194, 0,
-194, 0, -194, -186, -186, -194, -186, 0, 0, -194,
0, -186, -194, 0, 0, -194, 0, 0, 0, 0,
-186, 0, 0, 0, 0, 0, -186, 0, 0, 0,
0, 0, -186, 0, 0, 0, -186, 0, 0, -186,
0, 0, 0, 0, 0, 0, 0, 0, 0, -186,
0, 0, 0, 0, 0, 0, -186, -186, 0, 0,
0, 0, 0, 0, -186, 0, 0, 0, 0, 0,
0, 0, 0, -186, 0, 0, 0, 0, 0, 0,
0, 0, -186, -186, 0, -186, 0, -186, 0, -186,
0, 0, -186, 0, 0, 0, -186, 0, 0, -186,
0, 0, -186
};
static const yytype_int16 yycheck[] =
{
12, 65, 255, 530, 16, 426, 19, 479, 20, 212,
2, 506, 69, 501, 26, 244, 27, 168, 154, 31,
32, 494, 34, 35, 36, 37, 38, 912, 811, 22,
811, 801, 988, 236, 990, 530, 793, 49, 665, 51,
52, 1, 228, 102, 1137, 57, 737, 59, 957, 61,
107, 33, 305, 33, 33, 1045, 33, 69, 70, 71,
72, 73, 74, 788, 48, 33, 78, 48, 80, 255,
323, 1192, 92, 47, 1042, 87, 61, 213, 90, 91,
2, 93, 33, 95, 651, 1, 98, 99, 655, 101,
657, 120, 120, 105, 106, 107, 108, 146, 69, 527,
146, 56, 253, 118, 146, 1246, 89, 56, 1, 994,
93, 170, 3, 66, 1, 75, 1, 48, 1125, 305,
349, 350, 171, 165, 48, 1246, 34, 35, 36, 175,
88, 146, 85, 118, 105, 106, 107, 323, 120, 120,
114, 120, 199, 27, 1285, 836, 175, 175, 48, 48,
170, 48, 164, 0, 112, 48, 881, 117, 1126, 90,
224, 1046, 146, 636, 48, 146, 146, 3, 52, 422,
423, 1080, 1265, 1163, 61, 1084, 61, 189, 146, 3,
192, 193, 194, 105, 1191, 197, 198, 199, 170, 959,
170, 170, 76, 170, 175, 79, 823, 81, 211, 107,
1109, 387, 170, 1112, 1113, 92, 90, 92, 219, 125,
222, 171, 103, 1169, 1170, 165, 228, 172, 909, 170,
105, 649, 146, 172, 3, 109, 18, 198, 199, 145,
146, 118, 125, 118, 56, 75, 422, 423, 70, 232,
1125, 20, 306, 255, 665, 238, 146, 146, 736, 146,
1159, 175, 145, 146, 247, 34, 92, 173, 145, 1010,
145, 92, 1013, 1014, 120, 27, 27, 103, 1177, 37,
1179, 1180, 165, 146, 106, 175, 175, 117, 175, 103,
165, 1263, 146, 170, 63, 170, 78, 3, 855, 173,
51, 858, 859, 305, 61, 48, 165, 56, 171, 1281,
312, 313, 125, 172, 96, 73, 1191, 83, 494, 173,
86, 323, 1095, 1070, 1095, 1072, 77, 79, 79, 455,
792, 113, 795, 146, 103, 92, 462, 150, 90, 90,
109, 171, 344, 146, 165, 146, 146, 90, 105, 170,
165, 527, 56, 172, 140, 174, 171, 359, 360, 341,
173, 118, 148, 115, 115, 165, 90, 1108, 171, 1110,
1111, 373, 173, 375, 376, 377, 378, 379, 380, 27,
382, 383, 384, 385, 386, 848, 388, 389, 390, 391,
392, 393, 394, 395, 396, 397, 398, 399, 400, 401,
402, 403, 404, 170, 1021, 172, 27, 47, 165, 411,
412, 146, 823, 170, 146, 417, 172, 464, 420, 421,
422, 423, 424, 425, 426, 903, 66, 27, 146, 341,
146, 79, 61, 146, 125, 437, 32, 56, 173, 165,
442, 173, 90, 445, 356, 85, 172, 125, 174, 172,
669, 670, 165, 56, 61, 173, 146, 173, 79, 150,
636, 109, 464, 92, 466, 467, 54, 115, 146, 90,
472, 473, 150, 649, 114, 477, 105, 479, 480, 79,
378, 379, 944, 173, 486, 92, 74, 489, 109, 118,
90, 140, 494, 89, 146, 173, 84, 93, 105, 148,
146, 146, 146, 464, 140, 146, 508, 146, 56, 109,
512, 118, 148, 515, 516, 172, 56, 174, 520, 165,
567, 173, 49, 435, 146, 527, 424, 425, 173, 173,
56, 514, 173, 170, 173, 1052, 165, 539, 146, 437,
542, 170, 544, 165, 140, 72, 548, 549, 550, 145,
552, 553, 148, 146, 773, 774, 152, 165, 165, 520,
1045, 146, 56, 170, 165, 567, 146, 1052, 1197, 467,
171, 764, 165, 146, 146, 473, 558, 146, 539, 477,
165, 542, 146, 544, 56, 165, 498, 89, 549, 411,
412, 93, 165, 165, 232, 417, 165, 8, 420, 421,
238, 165, 172, 56, 174, 172, 567, 1069, 140, 1071,
1021, 787, 788, 145, 89, 142, 148, 100, 93, 795,
152, 1250, 1251, 1252, 1253, 1254, 1255, 56, 172, 631,
632, 633, 634, 635, 636, 637, 638, 640, 641, 89,
89, 56, 56, 93, 93, 647, 558, 649, 89, 172,
548, 174, 93, 172, 56, 174, 125, 659, 56, 661,
48, 85, 172, 665, 174, 667, 542, 56, 544, 165,
811, 164, 848, 61, 165, 677, 165, 679, 1163, 156,
165, 165, 151, 210, 153, 154, 647, 165, 157, 158,
692, 165, 172, 695, 165, 742, 56, 170, 165, 119,
165, 88, 172, 125, 92, 707, 708, 1192, 172, 172,
172, 172, 172, 165, 241, 242, 243, 244, 245, 246,
542, 1206, 544, 8, 865, 252, 253, 66, 145, 148,
118, 872, 170, 69, 632, 172, 634, 125, 740, 741,
742, 125, 165, 173, 746, 27, 146, 165, 48, 125,
125, 172, 35, 2, 35, 282, 146, 173, 146, 125,
173, 1246, 21, 12, 173, 292, 48, 294, 173, 146,
52, 175, 175, 170, 301, 146, 25, 165, 1263, 28,
172, 742, 170, 785, 165, 173, 165, 789, 173, 791,
792, 793, 319, 795, 76, 165, 1281, 79, 165, 81,
1285, 165, 165, 330, 331, 35, 175, 172, 90, 165,
1053, 1054, 35, 66, 146, 173, 173, 171, 173, 146,
171, 823, 125, 90, 2, 647, 173, 109, 33, 78,
33, 175, 170, 170, 12, 837, 838, 839, 35, 170,
842, 165, 90, 145, 172, 175, 848, 25, 165, 172,
28, 145, 171, 175, 175, 148, 105, 172, 148, 148,
140, 110, 148, 140, 866, 170, 868, 140, 35, 148,
148, 873, 148, 148, 876, 922, 148, 1053, 1054, 881,
148, 883, 148, 140, 140, 148, 170, 8, 890, 27,
105, 146, 785, 142, 165, 140, 170, 140, 142, 356,
78, 22, 164, 173, 165, 26, 27, 165, 173, 173,
48, 438, 24, 173, 52, 36, 492, 38, 39, 165,
922, 173, 164, 44, 746, 175, 928, 105, 930, 512,
51, 933, 110, 1084, 90, 952, 185, 896, 76, 837,
838, 79, 944, 81, 471, 1095, 962, 1091, 475, 901,
728, 965, 90, 1265, 1095, 1222, 77, 1256, 79, 961,
1249, 922, 83, 37, 142, 86, 509, 88, 31, 90,
-1, 109, -1, -1, 1115, 1116, -1, -1, 1119, 1120,
-1, 983, -1, -1, -1, -1, -1, -1, 109, 901,
-1, 112, -1, -1, 115, 48, 998, 999, -1, 1001,
1002, -1, 1004, 1005, 1145, -1, 1147, 185, 61, -1,
-1, -1, -1, -1, 1016, 1017, -1, 1019, -1, 1021,
-1, 1023, 1024, -1, -1, 1027, -1, -1, 1082, -1,
-1, -1, -1, -1, 283, -1, -1, -1, -1, 92,
289, -1, -1, -1, 165, -1, -1, -1, -1, 1051,
1052, 1053, 1054, -1, -1, -1, 1058, -1, -1, -1,
1062, -1, -1, -1, -1, 118, 1068, 1069, 1070, 1071,
1072, -1, 125, -1, -1, 1077, -1, 48, -1, -1,
1127, -1, -1, -1, 1045, -1, -1, -1, -1, -1,
61, -1, 341, 146, -1, -1, -1, 1099, 1100, 1101,
1102, 1103, 1104, 1105, 1106, 283, -1, 356, -1, -1,
-1, 289, 165, -1, -1, -1, -1, 170, -1, 1121,
173, 92, -1, -1, -1, 1127, -1, -1, -1, -1,
1132, -1, -1, -1, 1136, -1, 663, 664, -1, 32,
-1, -1, 669, 670, -1, 672, 673, 118, -1, -1,
-1, -1, -1, -1, 125, -1, -1, -1, -1, -1,
-1, -1, -1, 341, -1, -1, 1127, -1, -1, -1,
1217, 1132, -1, -1, -1, 146, -1, -1, 356, 1091,
-1, 1183, 1184, 1185, 1186, -1, 435, 714, -1, -1,
-1, -1, -1, -1, 165, -1, 89, -1, -1, 170,
93, -1, 173, -1, 1206, -1, -1, 1209, 1210, -1,
-1, -1, -1, -1, -1, 1217, -1, 466, -1, -1,
-1, -1, 2, 472, 1226, 1227, 1228, 1229, 1230, 1231,
-1, 1192, 12, -1, -1, 484, -1, 486, -1, 32,
-1, -1, -1, 1245, 1246, 25, 1248, 140, 28, -1,
-1, -1, 145, -1, 147, 148, 1217, 435, -1, 152,
-1, -1, -1, -1, -1, -1, -1, 160, -1, 796,
-1, -1, -1, 166, 167, 168, -1, -1, -1, 1281,
-1, -1, -1, 1285, -1, 1246, -1, -1, 466, -1,
-1, -1, -1, 2, 472, -1, 89, 546, 78, -1,
93, 550, -1, 12, -1, -1, 484, -1, 486, 558,
-1, -1, -1, -1, -1, -1, 25, -1, -1, 28,
-1, -1, 849, 850, 1285, 105, -1, 22, -1, -1,
110, 26, 27, -1, -1, -1, 863, -1, 865, -1,
-1, 36, -1, 38, 39, 872, -1, 140, 875, 44,
-1, 878, 145, -1, 147, 148, 51, -1, -1, 152,
-1, -1, 142, -1, 2, -1, -1, 160, 546, 78,
897, -1, 550, 1, 12, 168, -1, -1, -1, -1,
558, -1, 77, -1, 79, -1, -1, 25, 83, -1,
28, 86, -1, 88, 22, 90, 105, -1, 26, 27,
-1, 110, -1, 31, -1, 185, -1, -1, 36, -1,
38, 39, -1, -1, 109, -1, 44, 112, -1, -1,
115, -1, -1, 51, -1, 22, 54, -1, 955, 26,
27, -1, -1, 142, -1, -1, -1, -1, -1, 36,
78, 38, 39, -1, -1, -1, 74, 44, -1, 77,
628, 79, -1, 81, 51, 83, 84, -1, 86, -1,
88, 710, 90, -1, 713, -1, -1, 105, -1, 66,
165, -1, 110, -1, -1, -1, 185, -1, -1, -1,
77, 109, 79, -1, 112, -1, 83, 115, 85, 86,
-1, 88, -1, 90, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 283, 142, -1, -1, -1, -1, 289,
-1, -1, 109, -1, -1, 112, -1, -1, 115, -1,
-1, -1, -1, 772, -1, -1, -1, 8, -1, 778,
1057, -1, 710, -1, -1, 713, -1, 165, -1, -1,
-1, 22, -1, 171, -1, 26, 27, 185, -1, -1,
-1, -1, -1, -1, -1, 36, -1, 38, 39, -1,
-1, 341, -1, 44, -1, -1, -1, -1, 165, -1,
51, -1, -1, -1, 283, -1, 356, -1, -1, -1,
289, -1, -1, -1, -1, 66, -1, -1, 1115, 1116,
-1, -1, 1119, 1120, 772, -1, 77, -1, 79, -1,
778, -1, 83, -1, 85, 86, -1, 88, -1, 90,
1137, -1, 32, -1, -1, -1, -1, 866, 1145, 868,
1147, -1, -1, -1, 873, -1, -1, 876, 109, -1,
1157, 112, 341, 811, 115, -1, -1, -1, 887, -1,
889, -1, -1, 892, -1, 283, -1, 356, -1, -1,
-1, 289, -1, -1, -1, 435, -1, -1, -1, 837,
838, -1, -1, -1, -1, -1, -1, -1, -1, 89,
-1, -1, 921, 93, -1, -1, -1, -1, -1, 928,
-1, 930, -1, -1, 165, -1, 466, -1, 866, -1,
868, -1, 472, -1, -1, 873, -1, -1, 876, -1,
-1, -1, -1, 341, 484, -1, 486, -1, -1, 887,
-1, 889, -1, -1, 892, -1, -1, -1, 356, -1,
140, 141, -1, 143, 144, 145, 435, 147, 148, -1,
-1, -1, 152, -1, -1, -1, -1, -1, 1265, -1,
160, -1, -1, 921, -1, -1, 166, 167, 168, -1,
928, -1, 930, -1, -1, -1, -1, 466, -1, -1,
-1, -1, -1, 472, -1, -1, 546, 1016, -1, -1,
550, -1, 3, -1, 1023, 484, -1, 486, 558, -1,
-1, -1, -1, -1, -1, -1, 17, 18, 1037, 20,
-1, -1, -1, -1, 25, -1, -1, 435, -1, -1,
-1, -1, -1, 34, -1, -1, 1055, -1, -1, 40,
-1, -1, 1061, -1, -1, 46, 1065, -1, -1, 50,
-1, -1, 53, -1, -1, -1, -1, -1, 466, -1,
-1, -1, 63, -1, 472, -1, -1, 546, 1016, 70,
71, 550, -1, -1, -1, 1023, 484, 78, 486, 558,
-1, -1, -1, -1, -1, -1, 87, -1, -1, 1037,
-1, -1, -1, -1, -1, 96, 97, -1, 99, -1,
101, -1, 103, 1122, -1, 106, -1, 1055, 3, 110,
111, -1, 113, 1061, -1, 116, -1, 1065, -1, -1,
-1, -1, 17, 18, -1, 20, -1, -1, -1, -1,
25, -1, 32, -1, -1, -1, 2, -1, 546, 34,
-1, -1, 550, -1, -1, 40, 12, -1, -1, -1,
558, 46, -1, -1, -1, 50, -1, -1, 53, 25,
710, -1, 28, 713, 1183, 1184, 1185, 1186, 63, -1,
-1, 172, -1, -1, 1122, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, -1, -1, -1, -1, 89,
1209, 1210, 87, 93, -1, -1, -1, -1, -1, -1,
-1, 96, 97, -1, 99, -1, 101, 2, 103, -1,
-1, 106, 78, -1, -1, 110, -1, 12, 113, -1,
-1, 116, 772, -1, -1, -1, -1, -1, 778, -1,
25, 710, -1, 28, 713, 1183, 1184, 1185, 1186, 105,
140, 141, -1, -1, 110, 145, -1, 147, 148, -1,
-1, -1, 152, -1, -1, -1, -1, -1, -1, -1,
160, 1209, 1210, -1, -1, -1, 166, 167, 168, -1,
-1, -1, -1, -1, -1, 170, 142, 172, 2, -1,
-1, -1, -1, 78, -1, -1, -1, -1, 12, -1,
-1, 32, -1, 772, -1, -1, -1, -1, -1, 778,
-1, 25, 710, -1, 28, 713, -1, -1, -1, -1,
105, -1, -1, -1, -1, 110, 866, -1, 868, 185,
-1, -1, -1, 873, -1, -1, 876, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 887, -1, 889,
-1, -1, 892, -1, -1, -1, -1, 142, 89, -1,
-1, -1, 93, -1, 78, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 772, -1, -1, -1, -1, -1,
778, 921, -1, -1, -1, -1, -1, -1, 928, -1,
930, 105, -1, -1, -1, -1, 110, 866, -1, 868,
185, -1, -1, -1, 873, -1, -1, 876, -1, 140,
141, -1, -1, 144, 145, -1, 147, 148, 887, -1,
889, 152, -1, 892, 3, -1, -1, 283, 142, 160,
-1, -1, -1, 289, -1, 166, 167, 168, 17, -1,
-1, 20, -1, -1, -1, -1, 25, -1, -1, -1,
-1, -1, 921, -1, -1, -1, -1, 36, -1, 928,
-1, 930, -1, -1, -1, -1, -1, 46, 866, -1,
868, 185, -1, -1, 53, 873, 1016, -1, 876, -1,
-1, -1, -1, 1023, 63, 341, -1, -1, -1, 887,
-1, 889, 71, -1, 892, -1, -1, 1037, 283, -1,
356, -1, -1, -1, 289, -1, -1, -1, 87, -1,
-1, -1, -1, -1, -1, 1055, -1, -1, -1, -1,
99, 1061, -1, 921, 103, 1065, -1, -1, -1, -1,
928, 110, 930, -1, -1, -1, 22, 116, -1, -1,
26, 27, -1, -1, -1, 31, -1, 1016, -1, -1,
36, -1, 38, 39, 1023, -1, 341, -1, 44, -1,
-1, -1, -1, -1, -1, 51, -1, -1, 1037, 283,
-1, 356, -1, -1, -1, 289, -1, -1, -1, 435,
-1, -1, 1122, -1, -1, -1, 1055, -1, -1, -1,
-1, 77, 1061, 79, -1, 81, 1065, 83, -1, -1,
86, -1, 88, -1, 90, -1, -1, -1, -1, -1,
466, -1, -1, -1, -1, -1, 472, -1, 1016, 32,
-1, -1, -1, 109, -1, 1023, 112, 341, 484, 115,
486, -1, -1, -1, -1, -1, -1, -1, -1, 1037,
-1, -1, 356, 1183, 1184, 1185, 1186, -1, -1, -1,
435, -1, -1, 1122, -1, -1, -1, 1055, -1, -1,
-1, -1, -1, 1061, -1, -1, -1, 1065, -1, 1209,
1210, -1, -1, -1, -1, -1, 89, -1, -1, 165,
93, 466, -1, -1, -1, 171, 2, 472, -1, -1,
546, -1, -1, -1, 550, -1, 12, -1, -1, 484,
-1, 486, 558, -1, -1, -1, -1, -1, -1, 25,
-1, -1, 28, -1, 1183, 1184, 1185, 1186, -1, -1,
-1, 435, -1, -1, 1122, -1, -1, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, -1, 152,
1209, 1210, -1, -1, -1, -1, 159, 160, -1, -1,
163, -1, 466, 166, 167, 168, -1, 2, 472, -1,
-1, 546, 78, -1, 177, 550, -1, 12, -1, -1,
484, -1, 486, 558, -1, -1, -1, -1, 3, -1,
25, -1, -1, 28, -1, 1183, 1184, 1185, 1186, 105,
-1, -1, 17, 18, 110, 20, -1, -1, -1, -1,
25, -1, -1, -1, -1, -1, -1, -1, -1, 34,
-1, 1209, 1210, -1, -1, 40, -1, -1, -1, -1,
-1, 46, -1, -1, -1, 50, -1, -1, 53, -1,
-1, -1, 546, 78, -1, -1, 550, -1, 63, -1,
-1, -1, -1, -1, 558, 70, 71, -1, -1, -1,
-1, -1, -1, 78, 710, -1, -1, 713, -1, -1,
105, -1, 87, -1, -1, 110, -1, -1, -1, 185,
-1, 96, 97, -1, 99, -1, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, -1, -1, 113, -1,
-1, 116, -1, -1, -1, -1, -1, -1, 22, -1,
-1, -1, 26, 27, -1, -1, -1, 31, -1, -1,
-1, -1, 36, -1, 38, 39, 772, -1, -1, -1,
44, -1, 778, -1, -1, 710, -1, 51, 713, 22,
-1, -1, -1, 26, 27, -1, -1, -1, -1, -1,
185, -1, -1, 36, -1, 38, 39, 172, -1, -1,
-1, 44, -1, 77, -1, 79, -1, 81, 51, 83,
-1, -1, 86, -1, 88, -1, 90, 283, -1, -1,
-1, -1, -1, 289, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 77, 109, 79, 772, 112, -1,
-1, 115, -1, 778, -1, 88, 710, 90, -1, 713,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
866, -1, 868, -1, -1, -1, 109, 873, -1, 112,
876, -1, 115, -1, -1, 341, -1, -1, -1, -1,
-1, 887, -1, 889, -1, -1, 892, -1, 283, -1,
356, 165, -1, -1, 289, -1, -1, 171, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 772, -1,
-1, -1, -1, -1, 778, 921, -1, -1, -1, -1,
-1, -1, 928, -1, 930, -1, -1, -1, -1, -1,
-1, 866, -1, 868, -1, -1, -1, -1, 873, -1,
-1, 876, 44, 45, 46, -1, 341, -1, -1, -1,
-1, -1, 887, -1, 889, -1, -1, 892, -1, -1,
-1, 356, -1, -1, -1, -1, -1, -1, -1, 435,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 84, -1, -1, -1, 921, -1, -1, -1,
-1, -1, -1, 928, -1, 930, -1, -1, -1, -1,
466, -1, 866, -1, 868, -1, 472, -1, -1, 873,
1016, -1, 876, -1, -1, 3, -1, 1023, 484, -1,
486, -1, -1, 887, -1, 889, -1, -1, 892, 17,
18, 1037, 20, -1, -1, -1, -1, 25, -1, -1,
435, -1, -1, -1, -1, 147, 34, 149, -1, 1055,
-1, -1, 40, -1, -1, 1061, -1, 921, 46, 1065,
-1, -1, 50, -1, 928, 53, 930, 72, -1, -1,
-1, 466, -1, -1, -1, 63, -1, 472, -1, -1,
546, 1016, 70, 71, 550, -1, -1, -1, 1023, 484,
78, -1, 558, 195, -1, -1, -1, -1, -1, 87,
-1, -1, 1037, -1, -1, -1, -1, -1, 96, 97,
212, 99, -1, 101, -1, 103, 1122, -1, 106, -1,
1055, -1, 110, -1, -1, 113, 1061, -1, 116, -1,
1065, -1, -1, -1, 236, -1, -1, 239, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 250, 251,
-1, 546, 1016, -1, -1, 550, -1, -1, -1, 1023,
-1, -1, -1, 558, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 1037, -1, -1, -1, 1183, 1184, 1185,
1186, -1, -1, 285, 172, -1, -1, 1122, -1, -1,
-1, 1055, -1, -1, -1, -1, -1, 1061, -1, -1,
-1, 1065, -1, 1209, 1210, 22, -1, -1, -1, 26,
27, -1, -1, -1, 31, -1, -1, -1, -1, 36,
-1, 38, 39, -1, -1, -1, -1, 44, -1, -1,
-1, -1, -1, -1, 51, -1, 241, 242, 243, 244,
245, 246, -1, -1, 710, -1, -1, 713, 1183, 1184,
1185, 1186, -1, -1, -1, -1, -1, -1, 1122, 361,
77, -1, 79, -1, 81, -1, 83, -1, -1, 86,
-1, 88, -1, 90, 1209, 1210, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 292, -1, 294,
-1, -1, 109, -1, -1, 112, 301, -1, 115, -1,
-1, -1, -1, -1, -1, -1, 772, -1, -1, -1,
-1, -1, 778, -1, 319, 710, -1, -1, 713, 1183,
1184, 1185, 1186, -1, -1, 330, 331, -1, -1, -1,
-1, -1, 434, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 1209, 1210, -1, 165, -1,
-1, 453, -1, -1, 171, -1, 458, -1, 460, -1,
-1, -1, -1, -1, -1, -1, -1, 12, -1, -1,
-1, -1, -1, -1, 19, -1, -1, 772, -1, -1,
-1, -1, -1, 778, -1, -1, -1, 32, 33, -1,
-1, -1, -1, 495, -1, -1, -1, -1, -1, 501,
866, -1, 868, 48, -1, -1, -1, 873, -1, -1,
876, -1, 514, -1, -1, -1, -1, -1, -1, -1,
-1, 887, -1, 889, -1, -1, 892, -1, -1, -1,
-1, -1, -1, 438, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 89, -1, -1, -1, 93, -1,
-1, -1, -1, -1, -1, 921, -1, 559, -1, -1,
-1, -1, 928, -1, 930, -1, 471, 569, -1, -1,
475, 866, -1, 868, -1, 120, -1, -1, 873, 124,
-1, 876, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 887, -1, 889, 140, 141, 892, 143, 144,
145, -1, 147, 148, 149, -1, 151, 152, 153, 154,
155, -1, 157, 158, 159, 160, 161, 162, 163, -1,
-1, 166, 167, 168, -1, 170, 921, -1, -1, -1,
-1, -1, 177, 928, -1, 930, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 650, -1,
1016, 653, 654, -1, -1, -1, -1, 1023, 22, -1,
-1, -1, 26, 27, -1, -1, -1, 31, -1, -1,
-1, 1037, 36, -1, 38, 39, -1, -1, -1, -1,
44, -1, -1, -1, -1, -1, -1, 51, -1, 1055,
-1, -1, -1, -1, -1, 1061, -1, -1, -1, 1065,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 77, -1, 79, -1, 81, -1, 83,
-1, -1, 86, 3, 88, -1, 90, -1, -1, -1,
732, -1, 12, -1, 736, -1, -1, -1, -1, 19,
20, -1, 1037, -1, -1, 109, -1, -1, 112, -1,
752, 115, -1, -1, 34, -1, 1122, -1, 663, 664,
1055, -1, 764, -1, 669, 670, 1061, 672, 673, -1,
1065, -1, -1, -1, -1, 55, -1, -1, -1, -1,
-1, -1, -1, 63, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 796, -1, -1, -1, -1, 801,
-1, 165, -1, -1, -1, -1, -1, 171, -1, 811,
-1, -1, -1, -1, -1, -1, -1, 1183, 1184, 1185,
1186, -1, -1, 103, -1, -1, -1, 1122, -1, 109,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 1209, 1210, 125, 126, 127, 128, 129,
130, -1, -1, 133, 134, 135, 136, -1, 138, 139,
140, 141, 142, 143, 144, 145, -1, 147, -1, -1,
-1, 151, 152, 153, 154, 155, 156, 157, 158, 159,
160, 161, -1, 163, -1, -1, 166, 167, 168, 169,
170, -1, 894, -1, 896, -1, -1, -1, 900, -1,
-1, 903, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, 135, 136, 137, 138, 139, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 156, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 849, 850, 169, -1, -1, 172,
952, 174, -1, -1, -1, -1, -1, 959, 863, -1,
962, -1, -1, -1, -1, -1, -1, -1, -1, -1,
875, 0, 1, 878, 3, -1, 5, 6, 7, 8,
9, 10, -1, -1, -1, 14, 15, 16, 17, 18,
-1, 20, -1, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, -1, 33, 34, -1, 36, -1, 38,
39, 40, 41, 42, 43, 44, 45, 46, 47, -1,
49, 50, 51, -1, 53, 54, -1, 56, 57, 58,
59, 60, -1, 62, 63, 64, 65, 66, 67, 68,
-1, 70, 71, 72, -1, 74, -1, -1, 77, 78,
79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
-1, 90, 91, 92, -1, 94, 95, 96, 97, 98,
99, 100, 101, -1, 103, 104, -1, 106, 107, 108,
109, 110, -1, 112, 113, 114, 115, 116, -1, -1,
119, -1, 121, 1095, -1, 124, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 140, 141, 142, 143, 144, -1, -1, -1, -1,
149, -1, -1, -1, -1, -1, -1, -1, -1, -1,
159, -1, -1, 162, 163, 164, 165, -1, -1, 168,
-1, 170, -1, 172, -1, 174, -1, -1, 177, 1,
-1, 3, 1057, 5, 6, 7, 8, 9, 10, -1,
12, -1, 14, 15, 16, 17, 18, 19, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, 34, 35, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, -1,
82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, 145, 146, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 164, 165, 166, 167, 168, -1, 170, 171,
172, -1, 174, -1, 1, 177, 3, 4, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, 171, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, 81,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, 171,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, 171, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, 81,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, 171,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, 81, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, 171, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, 81,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, -1, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, -1,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, -1, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, -1,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, -1, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, -1,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, -1, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, -1,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 1, 177, 3, -1, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, 15, 16,
17, 18, -1, 20, -1, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, -1, 33, 34, -1, 36,
-1, 38, 39, 40, 41, 42, 43, 44, 45, 46,
47, -1, 49, 50, 51, -1, 53, 54, -1, 56,
57, 58, 59, 60, -1, 62, 63, 64, 65, 66,
67, 68, -1, 70, 71, 72, -1, 74, -1, -1,
77, 78, 79, 80, -1, 82, 83, 84, 85, 86,
87, 88, -1, 90, 91, 92, -1, 94, 95, 96,
97, 98, 99, 100, 101, -1, 103, 104, -1, 106,
107, 108, 109, 110, -1, 112, 113, 114, 115, 116,
-1, -1, 119, -1, 121, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, 165, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 1,
177, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, 15, 16, 17, 18, -1, 20, -1,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
-1, 33, 34, -1, 36, -1, 38, 39, 40, 41,
42, 43, 44, 45, 46, 47, -1, 49, 50, 51,
-1, 53, 54, -1, 56, 57, 58, 59, 60, -1,
62, 63, 64, 65, 66, 67, 68, -1, 70, 71,
72, -1, 74, -1, -1, 77, 78, 79, 80, -1,
82, 83, 84, 85, 86, 87, 88, -1, 90, 91,
92, -1, 94, 95, 96, 97, 98, 99, 100, 101,
-1, 103, 104, -1, 106, 107, 108, 109, 110, -1,
112, 113, 114, 115, 116, -1, -1, 119, -1, 121,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, 165, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 1, 177, 3, 4, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, -1, -1,
17, 18, -1, 20, -1, 22, -1, -1, 25, -1,
-1, -1, -1, -1, -1, -1, -1, 34, -1, 36,
-1, -1, -1, 40, 41, 42, -1, -1, 45, 46,
-1, -1, -1, 50, -1, -1, 53, -1, -1, 56,
-1, -1, 59, 60, -1, -1, 63, -1, 65, -1,
67, 68, -1, 70, 71, -1, -1, -1, -1, -1,
-1, 78, -1, 80, -1, 82, -1, -1, -1, -1,
87, 88, -1, -1, -1, -1, -1, -1, -1, 96,
97, 98, 99, 100, 101, -1, 103, -1, -1, 106,
-1, -1, -1, 110, -1, -1, 113, -1, -1, 116,
-1, -1, -1, -1, -1, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, -1, -1,
-1, 168, -1, 170, -1, 172, -1, 174, 175, 1,
177, 3, 4, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, -1, -1, 17, 18, -1, 20, -1,
22, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,
42, -1, -1, 45, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, 56, -1, -1, 59, 60, -1,
-1, 63, -1, 65, -1, 67, 68, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, 80, -1,
82, -1, -1, -1, -1, 87, 88, -1, -1, -1,
-1, -1, -1, -1, 96, 97, 98, 99, 100, 101,
-1, 103, -1, -1, 106, -1, -1, -1, 110, -1,
-1, 113, -1, -1, 116, -1, -1, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, -1, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 3, 177, 5, 6, 7, 8,
9, 10, -1, 12, -1, 14, -1, -1, 17, 18,
19, 20, -1, 22, -1, -1, 25, -1, -1, -1,
-1, -1, -1, -1, -1, 34, -1, 36, -1, -1,
-1, 40, 41, 42, -1, -1, 45, 46, -1, -1,
-1, 50, -1, -1, 53, -1, 55, 56, -1, -1,
59, 60, -1, -1, 63, -1, 65, -1, 67, 68,
-1, 70, 71, -1, -1, -1, -1, -1, -1, 78,
-1, 80, -1, 82, -1, -1, -1, -1, 87, 88,
-1, -1, -1, -1, -1, -1, -1, 96, 97, 98,
99, 100, 101, -1, 103, -1, -1, 106, -1, -1,
-1, 110, -1, -1, 113, -1, -1, 116, -1, -1,
-1, -1, -1, -1, -1, 124, 125, 126, 127, 128,
129, 130, -1, -1, 133, 134, 135, 136, -1, 138,
139, 140, 141, 142, 143, 144, 145, -1, 147, -1,
149, -1, 151, 152, 153, 154, 155, 156, 157, 158,
159, 160, 161, 162, 163, 164, -1, 166, 167, 168,
169, 170, -1, 172, -1, 174, -1, 3, 177, 5,
6, 7, 8, 9, 10, -1, -1, -1, 14, 15,
-1, 17, 18, -1, 20, -1, 22, 23, 24, 25,
-1, -1, -1, -1, 30, -1, -1, 33, 34, -1,
36, -1, -1, -1, 40, 41, 42, 43, -1, 45,
46, -1, -1, -1, 50, -1, -1, 53, -1, -1,
56, -1, -1, 59, 60, -1, 62, 63, 64, 65,
-1, 67, 68, -1, 70, 71, 72, -1, -1, -1,
-1, -1, 78, -1, 80, -1, 82, -1, -1, -1,
-1, 87, 88, -1, -1, -1, -1, -1, 94, 95,
96, 97, 98, 99, 100, 101, -1, 103, 104, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, -1,
116, -1, -1, 119, -1, -1, -1, -1, 124, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 140, 141, 142, 143, 144, -1,
-1, -1, -1, 149, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 159, -1, -1, 162, 163, 164, -1,
-1, -1, 168, -1, 170, -1, 172, -1, 174, -1,
3, 177, 5, 6, 7, 8, 9, 10, -1, -1,
-1, 14, -1, -1, 17, 18, -1, 20, -1, 22,
-1, -1, 25, 26, 27, -1, -1, -1, -1, -1,
-1, 34, -1, 36, -1, -1, -1, 40, 41, 42,
-1, -1, 45, 46, -1, -1, -1, 50, -1, -1,
53, -1, -1, 56, -1, -1, 59, 60, -1, -1,
63, -1, 65, -1, 67, 68, -1, 70, 71, -1,
-1, -1, -1, -1, -1, 78, 79, 80, -1, 82,
-1, -1, -1, -1, 87, 88, -1, 90, -1, -1,
-1, -1, -1, 96, 97, 98, 99, 100, 101, -1,
103, -1, -1, 106, -1, -1, -1, 110, -1, -1,
113, -1, 115, 116, -1, -1, -1, -1, -1, -1,
-1, 124, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 140, 141, 142,
143, 144, -1, -1, -1, -1, 149, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 159, -1, -1, 162,
163, 164, -1, -1, -1, 168, -1, 170, -1, 172,
-1, 174, -1, -1, 177, 3, 4, 5, 6, 7,
8, 9, 10, -1, -1, -1, 14, -1, -1, 17,
18, -1, 20, -1, 22, -1, -1, 25, -1, -1,
-1, -1, -1, -1, -1, -1, 34, -1, 36, -1,
-1, -1, 40, 41, 42, -1, -1, 45, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, 56, -1,
-1, 59, 60, -1, -1, 63, -1, 65, -1, 67,
68, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, -1, 80, -1, 82, -1, -1, -1, -1, 87,
88, -1, -1, -1, -1, -1, -1, -1, 96, 97,
98, 99, 100, 101, -1, 103, -1, -1, 106, 107,
108, -1, 110, 111, -1, 113, -1, -1, 116, -1,
-1, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 140, 141, 142, 143, 144, -1, -1, -1,
-1, 149, 150, -1, -1, -1, -1, -1, -1, -1,
-1, 159, -1, -1, 162, 163, 164, -1, -1, -1,
168, -1, 170, -1, 172, -1, 174, -1, -1, 177,
3, 4, 5, 6, 7, 8, 9, 10, -1, -1,
-1, 14, -1, -1, 17, 18, -1, 20, -1, 22,
-1, -1, 25, -1, -1, -1, -1, -1, -1, -1,
-1, 34, -1, 36, -1, -1, -1, 40, 41, 42,
-1, -1, 45, 46, -1, -1, -1, 50, -1, -1,
53, -1, -1, 56, -1, -1, 59, 60, -1, -1,
63, -1, 65, -1, 67, 68, -1, 70, 71, -1,
-1, -1, -1, -1, -1, 78, -1, 80, -1, 82,
-1, -1, -1, -1, 87, 88, -1, -1, -1, -1,
-1, -1, -1, 96, 97, 98, 99, 100, 101, -1,
103, -1, -1, 106, 107, 108, -1, 110, 111, -1,
113, -1, -1, 116, -1, -1, -1, -1, -1, -1,
-1, 124, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 140, 141, 142,
143, 144, -1, -1, -1, -1, 149, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 159, -1, -1, 162,
163, 164, -1, -1, -1, 168, -1, 170, -1, 172,
173, 174, -1, -1, 177, 3, 4, 5, 6, 7,
8, 9, 10, -1, -1, -1, 14, -1, -1, 17,
18, -1, 20, -1, 22, -1, -1, 25, -1, -1,
-1, -1, -1, -1, -1, -1, 34, -1, 36, -1,
-1, -1, 40, 41, 42, -1, -1, 45, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, 56, -1,
-1, 59, 60, -1, -1, 63, -1, 65, -1, 67,
68, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, -1, 80, -1, 82, -1, -1, -1, -1, 87,
88, -1, -1, -1, -1, -1, -1, -1, 96, 97,
98, 99, 100, 101, -1, 103, -1, -1, 106, 107,
108, -1, 110, 111, -1, 113, -1, -1, 116, -1,
-1, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 140, 141, 142, 143, 144, -1, -1, -1,
-1, 149, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 159, -1, -1, 162, 163, 164, -1, -1, -1,
168, -1, 170, -1, 172, 173, 174, -1, 3, 177,
5, 6, 7, 8, 9, 10, -1, -1, -1, 14,
-1, -1, 17, 18, -1, 20, -1, 22, -1, -1,
25, -1, 27, -1, -1, -1, -1, -1, -1, 34,
-1, 36, -1, -1, -1, 40, 41, 42, -1, -1,
45, 46, -1, 48, -1, 50, -1, -1, 53, -1,
-1, 56, -1, -1, 59, 60, -1, -1, 63, -1,
65, -1, 67, 68, -1, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, 80, -1, 82, -1, -1,
-1, -1, 87, 88, -1, 90, -1, -1, -1, -1,
-1, 96, 97, 98, 99, 100, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, -1, -1, 113, -1,
115, 116, -1, -1, -1, -1, -1, -1, -1, 124,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 140, 141, 142, 143, 144,
-1, -1, -1, -1, 149, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 159, -1, -1, 162, 163, 164,
-1, -1, -1, 168, -1, 170, -1, 172, -1, 174,
-1, 3, 177, 5, 6, 7, 8, 9, 10, 11,
-1, -1, 14, -1, -1, 17, 18, -1, 20, -1,
22, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,
42, -1, -1, 45, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, 56, -1, -1, 59, 60, -1,
-1, 63, -1, 65, -1, 67, 68, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, 80, -1,
82, -1, -1, -1, -1, 87, 88, -1, -1, -1,
-1, -1, -1, -1, 96, 97, 98, 99, 100, 101,
-1, 103, -1, -1, 106, -1, -1, 109, 110, -1,
112, 113, -1, -1, 116, -1, -1, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, -1, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 3, 177, 5, 6, 7, 8,
9, 10, -1, -1, -1, 14, -1, -1, 17, 18,
-1, 20, -1, 22, -1, -1, 25, -1, -1, -1,
-1, -1, -1, -1, -1, 34, -1, 36, -1, -1,
-1, 40, 41, 42, -1, -1, 45, 46, -1, -1,
-1, 50, -1, -1, 53, -1, -1, 56, -1, -1,
59, 60, -1, -1, 63, -1, 65, -1, 67, 68,
-1, 70, 71, -1, -1, -1, -1, -1, -1, 78,
-1, 80, -1, 82, -1, -1, -1, -1, 87, 88,
-1, -1, -1, -1, -1, -1, -1, 96, 97, 98,
99, 100, 101, -1, 103, -1, -1, 106, 107, 108,
-1, 110, -1, -1, 113, -1, -1, 116, -1, -1,
-1, -1, -1, -1, -1, 124, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 140, 141, 142, 143, 144, -1, -1, -1, -1,
149, -1, -1, -1, -1, -1, -1, -1, -1, -1,
159, -1, -1, 162, 163, 164, 165, -1, -1, 168,
-1, 170, -1, 172, -1, 174, -1, -1, 177, 3,
4, 5, 6, 7, 8, 9, 10, -1, -1, -1,
14, -1, -1, 17, 18, -1, 20, -1, 22, -1,
-1, 25, -1, -1, -1, -1, -1, -1, -1, -1,
34, -1, 36, -1, -1, -1, 40, 41, 42, -1,
-1, 45, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, 56, -1, -1, 59, 60, -1, -1, 63,
-1, 65, -1, 67, 68, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, 80, -1, 82, -1,
-1, -1, -1, 87, 88, -1, -1, -1, -1, -1,
-1, -1, 96, 97, 98, 99, 100, 101, -1, 103,
-1, -1, 106, 107, 108, -1, 110, -1, -1, 113,
-1, -1, 116, -1, -1, -1, -1, -1, -1, -1,
124, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 140, 141, 142, 143,
144, -1, -1, -1, -1, 149, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 159, -1, -1, 162, 163,
164, -1, -1, -1, 168, -1, 170, -1, 172, -1,
174, -1, 3, 177, 5, 6, 7, 8, 9, 10,
-1, -1, -1, 14, -1, -1, 17, 18, -1, 20,
-1, 22, -1, -1, 25, -1, -1, -1, -1, -1,
-1, -1, -1, 34, -1, 36, -1, -1, -1, 40,
41, 42, -1, -1, 45, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, 56, -1, -1, 59, 60,
-1, -1, 63, -1, 65, -1, 67, 68, 69, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, 80,
-1, 82, -1, -1, -1, -1, 87, 88, -1, -1,
-1, -1, -1, -1, -1, 96, 97, 98, 99, 100,
101, -1, 103, -1, -1, 106, 107, 108, -1, 110,
-1, -1, 113, -1, -1, 116, -1, -1, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 140,
141, 142, 143, 144, -1, -1, -1, -1, 149, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 159, -1,
-1, 162, 163, 164, -1, -1, -1, 168, -1, 170,
-1, 172, -1, 174, -1, 3, 177, 5, 6, 7,
8, 9, 10, -1, -1, -1, 14, -1, -1, 17,
18, -1, 20, -1, 22, -1, -1, 25, -1, -1,
-1, -1, -1, -1, -1, -1, 34, -1, 36, -1,
-1, -1, 40, 41, 42, -1, -1, 45, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, 56, -1,
-1, 59, 60, -1, -1, 63, -1, 65, -1, 67,
68, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, 79, 80, -1, 82, -1, -1, -1, -1, 87,
88, -1, -1, -1, -1, -1, -1, -1, 96, 97,
98, 99, 100, 101, -1, 103, -1, -1, 106, -1,
-1, -1, 110, -1, -1, 113, -1, -1, 116, -1,
-1, -1, -1, -1, 122, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 140, 141, 142, 143, 144, -1, -1, -1,
-1, 149, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 159, -1, -1, 162, 163, 164, -1, -1, -1,
168, -1, 170, -1, 172, -1, 174, -1, 3, 177,
5, 6, 7, 8, 9, 10, -1, -1, -1, 14,
-1, -1, 17, 18, -1, 20, -1, 22, -1, -1,
25, -1, 27, -1, -1, -1, -1, -1, -1, 34,
-1, 36, -1, -1, -1, 40, 41, 42, -1, -1,
45, 46, -1, -1, -1, 50, -1, -1, 53, -1,
-1, 56, -1, -1, 59, 60, -1, -1, 63, -1,
65, -1, 67, 68, -1, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, 80, -1, 82, -1, -1,
-1, -1, 87, 88, -1, -1, -1, -1, -1, -1,
-1, 96, 97, 98, 99, 100, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, -1, -1, 113, -1,
115, 116, -1, -1, -1, -1, -1, -1, -1, 124,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 140, 141, 142, 143, 144,
-1, -1, -1, -1, 149, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 159, -1, -1, 162, 163, 164,
-1, -1, -1, 168, -1, 170, -1, 172, -1, 174,
-1, -1, 177, 3, 4, 5, 6, 7, 8, 9,
10, -1, -1, -1, 14, -1, -1, 17, 18, -1,
20, -1, 22, -1, -1, 25, -1, -1, -1, -1,
-1, -1, -1, -1, 34, -1, 36, -1, -1, -1,
40, 41, 42, -1, -1, 45, 46, -1, -1, -1,
50, -1, -1, 53, -1, -1, 56, -1, -1, 59,
60, -1, -1, 63, -1, 65, -1, 67, 68, -1,
70, 71, -1, -1, -1, -1, -1, -1, 78, -1,
80, -1, 82, -1, -1, -1, -1, 87, 88, -1,
-1, -1, -1, -1, -1, -1, 96, 97, 98, 99,
100, 101, -1, 103, -1, -1, 106, -1, -1, -1,
110, -1, -1, 113, -1, -1, 116, -1, -1, -1,
-1, -1, 122, -1, 124, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
140, 141, 142, 143, 144, -1, -1, -1, -1, 149,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 159,
-1, -1, 162, 163, 164, -1, -1, -1, 168, -1,
170, -1, 172, -1, 174, -1, 3, 177, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, -1, -1,
17, 18, -1, 20, -1, 22, -1, -1, 25, -1,
-1, -1, -1, -1, -1, -1, -1, 34, -1, 36,
-1, -1, -1, 40, 41, 42, -1, -1, 45, 46,
-1, -1, -1, 50, -1, -1, 53, -1, -1, 56,
-1, -1, 59, 60, -1, -1, 63, -1, 65, -1,
67, 68, -1, 70, 71, -1, -1, -1, -1, -1,
-1, 78, -1, 80, -1, 82, -1, -1, -1, -1,
87, 88, -1, -1, -1, -1, -1, -1, -1, 96,
97, 98, 99, 100, 101, -1, 103, -1, -1, 106,
-1, -1, 109, 110, -1, 112, 113, -1, -1, 116,
-1, -1, -1, -1, -1, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, -1, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 3,
177, 5, 6, 7, 8, 9, 10, -1, -1, -1,
14, -1, -1, 17, 18, -1, 20, -1, 22, -1,
-1, 25, -1, -1, -1, -1, -1, -1, -1, -1,
34, -1, 36, -1, -1, -1, 40, 41, 42, -1,
-1, 45, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, 56, -1, -1, 59, 60, -1, -1, 63,
-1, 65, -1, 67, 68, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, 80, -1, 82, -1,
-1, -1, -1, 87, 88, -1, -1, -1, -1, -1,
-1, -1, 96, 97, 98, 99, 100, 101, -1, 103,
-1, -1, 106, 107, 108, -1, 110, -1, -1, 113,
-1, -1, 116, -1, -1, -1, -1, -1, -1, -1,
124, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 140, 141, 142, 143,
144, -1, -1, -1, -1, 149, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 159, -1, -1, 162, 163,
164, -1, -1, -1, 168, -1, 170, -1, 172, -1,
174, -1, -1, 177, 3, 4, 5, 6, 7, 8,
9, 10, -1, -1, -1, 14, -1, -1, 17, 18,
-1, 20, -1, 22, -1, -1, 25, -1, -1, -1,
-1, -1, -1, -1, -1, 34, -1, 36, -1, -1,
-1, 40, 41, 42, -1, -1, 45, 46, -1, -1,
-1, 50, -1, -1, 53, -1, -1, 56, -1, -1,
59, 60, -1, -1, 63, -1, 65, -1, 67, 68,
-1, 70, 71, -1, -1, -1, -1, -1, -1, 78,
-1, 80, -1, 82, -1, -1, -1, -1, 87, 88,
-1, -1, -1, -1, -1, -1, -1, 96, 97, 98,
99, 100, 101, -1, 103, -1, -1, 106, -1, -1,
-1, 110, -1, -1, 113, -1, -1, 116, -1, -1,
-1, -1, -1, -1, -1, 124, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 140, 141, 142, 143, 144, -1, -1, -1, -1,
149, -1, -1, -1, -1, -1, -1, -1, -1, -1,
159, -1, -1, 162, 163, 164, -1, -1, -1, 168,
-1, 170, 171, 172, -1, 174, -1, -1, 177, 3,
4, 5, 6, 7, 8, 9, 10, -1, -1, -1,
14, -1, -1, 17, 18, -1, 20, -1, 22, -1,
-1, 25, -1, -1, -1, -1, -1, -1, -1, -1,
34, -1, 36, -1, -1, -1, 40, 41, 42, -1,
-1, 45, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, 56, -1, -1, 59, 60, -1, -1, 63,
-1, 65, -1, 67, 68, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, 80, -1, 82, -1,
-1, -1, -1, 87, 88, -1, -1, -1, -1, -1,
-1, -1, 96, 97, 98, 99, 100, 101, -1, 103,
-1, -1, 106, -1, -1, -1, 110, -1, -1, 113,
-1, -1, 116, -1, -1, -1, -1, -1, -1, -1,
124, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 140, 141, 142, 143,
144, -1, -1, -1, -1, 149, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 159, -1, -1, 162, 163,
164, -1, -1, -1, 168, -1, 170, -1, 172, -1,
174, 175, 3, 177, 5, 6, 7, 8, 9, 10,
-1, -1, -1, 14, -1, -1, 17, 18, -1, 20,
-1, 22, -1, -1, 25, -1, -1, -1, -1, -1,
-1, -1, -1, 34, -1, 36, -1, -1, -1, 40,
41, 42, -1, -1, 45, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, 56, -1, -1, 59, 60,
-1, -1, 63, -1, 65, -1, 67, 68, -1, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, 80,
-1, 82, -1, -1, -1, -1, 87, 88, 89, -1,
-1, -1, 93, -1, -1, 96, 97, 98, 99, 100,
101, -1, 103, -1, -1, 106, -1, -1, -1, 110,
-1, -1, 113, -1, -1, 116, -1, -1, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 140,
141, 142, 143, 144, -1, -1, -1, -1, 149, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 159, -1,
-1, 162, 163, 164, -1, -1, -1, 168, -1, 170,
-1, 172, -1, 174, -1, -1, 177, 3, 4, 5,
6, 7, 8, 9, 10, -1, -1, -1, 14, -1,
-1, 17, 18, -1, 20, -1, 22, -1, -1, 25,
-1, -1, -1, -1, -1, -1, -1, -1, 34, -1,
36, -1, -1, -1, 40, 41, 42, -1, -1, 45,
46, -1, -1, -1, 50, -1, -1, 53, -1, -1,
56, -1, -1, 59, 60, -1, -1, 63, -1, 65,
-1, 67, 68, -1, 70, 71, -1, -1, -1, -1,
-1, -1, 78, -1, 80, -1, 82, -1, -1, -1,
-1, 87, 88, -1, -1, -1, -1, -1, -1, -1,
96, 97, 98, 99, 100, 101, -1, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, -1,
116, -1, -1, -1, -1, -1, -1, -1, 124, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 140, 141, 142, 143, 144, -1,
-1, -1, -1, 149, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 159, -1, -1, 162, 163, 164, -1,
-1, -1, 168, -1, 170, -1, 172, -1, 174, 175,
3, 177, 5, 6, 7, 8, 9, 10, -1, -1,
-1, 14, -1, -1, 17, 18, -1, 20, -1, 22,
-1, -1, 25, -1, -1, -1, -1, -1, -1, -1,
-1, 34, -1, 36, -1, -1, -1, 40, 41, 42,
-1, -1, 45, 46, -1, -1, -1, 50, -1, -1,
53, -1, -1, 56, -1, -1, 59, 60, -1, -1,
63, -1, 65, -1, 67, 68, -1, 70, 71, -1,
-1, -1, -1, -1, -1, 78, -1, 80, -1, 82,
-1, -1, -1, -1, 87, 88, -1, -1, -1, -1,
-1, -1, -1, 96, 97, 98, 99, 100, 101, -1,
103, -1, -1, 106, -1, -1, -1, 110, -1, -1,
113, -1, -1, 116, -1, -1, -1, -1, -1, 122,
-1, 124, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 140, 141, 142,
143, 144, -1, -1, -1, -1, 149, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 159, -1, -1, 162,
163, 164, -1, -1, -1, 168, -1, 170, -1, 172,
-1, 174, -1, 3, 177, 5, 6, 7, 8, 9,
10, -1, -1, -1, 14, -1, -1, 17, 18, -1,
20, -1, 22, -1, -1, 25, -1, -1, -1, -1,
-1, -1, -1, 33, 34, -1, 36, -1, -1, -1,
40, 41, 42, -1, -1, 45, 46, -1, -1, -1,
50, -1, -1, 53, -1, -1, 56, -1, -1, 59,
60, -1, -1, 63, -1, 65, -1, 67, 68, -1,
70, 71, -1, -1, -1, -1, -1, -1, 78, -1,
80, -1, 82, -1, -1, -1, -1, 87, 88, -1,
-1, -1, -1, -1, -1, -1, 96, 97, 98, 99,
100, 101, -1, 103, -1, -1, 106, -1, -1, -1,
110, -1, -1, 113, -1, -1, 116, -1, -1, -1,
-1, -1, -1, -1, 124, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
140, 141, 142, 143, 144, -1, -1, -1, -1, 149,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 159,
-1, -1, 162, 163, 164, -1, -1, -1, 168, -1,
170, -1, 172, -1, 174, -1, -1, 177, 3, 4,
5, 6, 7, 8, 9, 10, -1, -1, -1, 14,
-1, -1, 17, 18, -1, 20, -1, 22, -1, -1,
25, -1, -1, -1, -1, -1, -1, -1, -1, 34,
-1, 36, -1, -1, -1, 40, 41, 42, -1, -1,
45, 46, -1, -1, -1, 50, -1, -1, 53, -1,
-1, 56, -1, -1, 59, 60, -1, -1, 63, -1,
65, -1, 67, 68, -1, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, 80, -1, 82, -1, -1,
-1, -1, 87, 88, -1, -1, -1, -1, -1, -1,
-1, 96, 97, 98, 99, 100, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, -1, -1, 113, -1,
-1, 116, -1, -1, -1, -1, -1, -1, -1, 124,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 140, 141, 142, 143, 144,
-1, -1, -1, -1, 149, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 159, -1, -1, 162, 163, 164,
-1, -1, -1, 168, -1, 170, -1, 172, -1, 174,
-1, 3, 177, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, -1, -1, 17, 18, -1, 20, -1,
22, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,
42, -1, -1, 45, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, 56, -1, -1, 59, 60, -1,
-1, 63, -1, 65, -1, 67, 68, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, 80, -1,
82, -1, -1, -1, -1, 87, 88, -1, -1, -1,
-1, -1, -1, -1, 96, 97, 98, 99, 100, 101,
-1, 103, -1, -1, 106, -1, -1, -1, 110, -1,
-1, 113, -1, -1, 116, -1, -1, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, -1, -1, -1, 168, -1, 170, -1,
172, -1, 174, 175, 3, 177, 5, 6, 7, 8,
9, 10, -1, -1, -1, 14, -1, -1, 17, 18,
-1, 20, -1, 22, -1, -1, 25, -1, -1, -1,
-1, -1, -1, -1, -1, 34, -1, 36, -1, -1,
-1, 40, 41, 42, -1, -1, 45, 46, -1, -1,
-1, 50, -1, -1, 53, -1, -1, 56, -1, -1,
59, 60, -1, -1, 63, -1, 65, -1, 67, 68,
-1, 70, 71, -1, -1, -1, -1, -1, -1, 78,
-1, 80, -1, 82, -1, -1, -1, -1, 87, 88,
-1, -1, -1, -1, -1, -1, -1, 96, 97, 98,
99, 100, 101, -1, 103, -1, -1, 106, -1, -1,
-1, 110, 111, -1, 113, -1, -1, 116, -1, -1,
-1, -1, -1, -1, -1, 124, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 140, 141, 142, 143, 144, -1, -1, -1, -1,
149, -1, -1, -1, -1, -1, -1, -1, -1, -1,
159, -1, -1, 162, 163, 164, -1, -1, -1, 168,
-1, 170, -1, 172, -1, 174, -1, -1, 177, 3,
4, 5, 6, 7, 8, 9, 10, -1, -1, -1,
14, -1, -1, 17, 18, -1, 20, -1, 22, -1,
-1, 25, -1, -1, -1, -1, -1, -1, -1, -1,
34, -1, 36, -1, -1, -1, 40, 41, 42, -1,
-1, 45, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, 56, -1, -1, 59, 60, -1, -1, 63,
-1, 65, -1, 67, 68, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, 80, -1, 82, -1,
-1, -1, -1, 87, 88, -1, -1, -1, -1, -1,
-1, -1, 96, 97, 98, 99, 100, 101, -1, 103,
-1, -1, 106, -1, -1, -1, 110, -1, -1, 113,
-1, -1, 116, -1, -1, -1, -1, -1, -1, -1,
124, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 140, 141, 142, 143,
144, -1, -1, -1, -1, 149, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 159, -1, -1, 162, 163,
164, -1, -1, -1, 168, -1, 170, -1, 172, -1,
174, -1, 3, 177, 5, 6, 7, 8, 9, 10,
-1, -1, -1, 14, -1, -1, 17, 18, -1, 20,
-1, 22, -1, -1, 25, -1, -1, -1, -1, -1,
-1, -1, -1, 34, -1, 36, -1, -1, -1, 40,
41, 42, -1, -1, 45, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, 56, -1, -1, 59, 60,
-1, -1, 63, -1, 65, -1, 67, 68, -1, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, 80,
-1, 82, -1, -1, -1, -1, 87, 88, -1, -1,
-1, -1, -1, -1, -1, 96, 97, 98, 99, 100,
101, -1, 103, -1, -1, 106, -1, -1, -1, 110,
111, -1, 113, -1, -1, 116, -1, -1, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 140,
141, 142, 143, 144, -1, -1, -1, -1, 149, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 159, -1,
-1, 162, 163, 164, -1, -1, -1, 168, -1, 170,
-1, 172, -1, 174, -1, -1, 177, 3, 4, 5,
6, 7, 8, 9, 10, -1, -1, -1, 14, -1,
-1, 17, 18, -1, 20, -1, 22, -1, -1, 25,
-1, -1, -1, -1, -1, -1, -1, -1, 34, -1,
36, -1, -1, -1, 40, 41, 42, -1, -1, 45,
46, -1, -1, -1, 50, -1, -1, 53, -1, -1,
56, -1, -1, 59, 60, -1, -1, 63, -1, 65,
-1, 67, 68, -1, 70, 71, -1, -1, -1, -1,
-1, -1, 78, -1, 80, -1, 82, -1, -1, -1,
-1, 87, 88, -1, -1, -1, -1, -1, -1, -1,
96, 97, 98, 99, 100, 101, -1, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, -1,
116, -1, -1, -1, -1, -1, -1, -1, 124, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 140, 141, 142, 143, 144, -1,
-1, -1, -1, 149, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 159, -1, -1, 162, 163, 164, -1,
-1, -1, 168, -1, 170, -1, 172, -1, 174, -1,
-1, 177, 3, 4, 5, 6, 7, 8, 9, 10,
-1, -1, -1, 14, -1, -1, 17, 18, -1, 20,
-1, 22, -1, -1, 25, -1, -1, -1, -1, -1,
-1, -1, -1, 34, -1, 36, -1, -1, -1, 40,
41, 42, -1, -1, 45, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, 56, -1, -1, 59, 60,
-1, -1, 63, -1, 65, -1, 67, 68, -1, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, 80,
-1, 82, -1, -1, -1, -1, 87, 88, -1, -1,
-1, -1, -1, -1, -1, 96, 97, 98, 99, 100,
101, -1, 103, -1, -1, 106, -1, -1, -1, 110,
-1, -1, 113, -1, -1, 116, -1, -1, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 140,
141, 142, 143, 144, -1, -1, -1, -1, 149, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 159, -1,
-1, 162, 163, 164, -1, -1, -1, 168, -1, 170,
-1, 172, -1, 174, -1, 3, 177, 5, 6, 7,
8, 9, 10, -1, -1, -1, 14, -1, -1, 17,
18, -1, 20, -1, 22, -1, -1, 25, -1, -1,
-1, -1, -1, -1, -1, -1, 34, -1, 36, -1,
-1, -1, 40, 41, 42, -1, -1, 45, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, 56, -1,
-1, 59, 60, -1, -1, 63, -1, 65, -1, 67,
68, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, -1, 80, -1, 82, -1, -1, -1, -1, 87,
88, -1, -1, -1, -1, -1, -1, -1, 96, 97,
98, 99, 100, 101, -1, 103, -1, -1, 106, -1,
-1, -1, 110, -1, -1, 113, -1, -1, 116, -1,
-1, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 140, 141, 142, 143, 144, -1, -1, -1,
-1, 149, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 159, -1, -1, 162, 163, 164, -1, -1, -1,
168, -1, 170, -1, 172, -1, 174, -1, 3, 177,
5, 6, 7, 8, 9, 10, -1, -1, -1, 14,
-1, -1, 17, 18, -1, 20, -1, 22, -1, -1,
25, -1, -1, -1, -1, -1, -1, -1, -1, 34,
-1, 36, -1, -1, -1, 40, 41, 42, -1, -1,
45, 46, -1, -1, -1, 50, -1, -1, 53, -1,
-1, 56, -1, -1, 59, 60, -1, -1, 63, -1,
65, -1, 67, 68, -1, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, 80, -1, 82, -1, -1,
-1, -1, 87, 88, -1, -1, -1, -1, -1, -1,
-1, 96, 97, 98, 99, 100, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, -1, -1, 113, -1,
-1, 116, -1, -1, -1, -1, -1, -1, -1, 124,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 140, 141, 142, 143, 144,
-1, -1, -1, -1, 149, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 159, -1, -1, 162, 163, 164,
-1, -1, -1, 168, -1, 170, -1, 172, -1, 174,
-1, 3, 177, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, -1, -1, 17, 18, -1, 20, -1,
22, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,
42, -1, -1, 45, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, 56, -1, -1, 59, 60, -1,
-1, 63, -1, 65, -1, 67, 68, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, 80, -1,
82, -1, -1, -1, -1, 87, 88, -1, -1, -1,
-1, -1, -1, -1, 96, 97, 98, 99, 100, 101,
-1, 103, -1, -1, 106, -1, -1, -1, 110, -1,
-1, 113, -1, -1, 116, -1, -1, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, -1, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 3, 177, 5, 6, 7, 8,
9, 10, -1, -1, -1, 14, -1, -1, 17, 18,
-1, 20, -1, 22, -1, -1, 25, -1, -1, -1,
-1, -1, -1, -1, -1, 34, -1, 36, -1, -1,
-1, 40, 41, 42, -1, -1, 45, 46, -1, -1,
-1, 50, -1, -1, 53, -1, -1, 56, -1, -1,
59, 60, -1, -1, 63, -1, 65, -1, 67, 68,
-1, 70, 71, -1, -1, -1, -1, -1, -1, 78,
-1, 80, -1, 82, -1, -1, -1, -1, 87, 88,
-1, -1, -1, -1, -1, -1, -1, 96, 97, 98,
99, 100, 101, -1, 103, -1, -1, 106, -1, -1,
-1, 110, -1, -1, 113, -1, -1, 116, -1, -1,
-1, -1, -1, -1, -1, 124, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 140, 141, 142, 143, 144, -1, -1, -1, -1,
149, -1, -1, -1, -1, -1, -1, -1, -1, -1,
159, -1, -1, 162, 163, 164, -1, -1, -1, 168,
-1, 170, -1, 172, -1, 174, -1, 3, 177, 5,
6, 7, 8, 9, 10, -1, -1, -1, 14, -1,
-1, 17, 18, -1, 20, -1, 22, -1, -1, 25,
-1, -1, -1, -1, -1, -1, -1, -1, 34, -1,
36, -1, -1, -1, 40, 41, 42, -1, -1, 45,
46, -1, -1, -1, 50, -1, -1, 53, -1, -1,
56, -1, -1, 59, 60, -1, -1, 63, -1, 65,
-1, 67, 68, -1, 70, 71, -1, -1, -1, -1,
-1, -1, 78, -1, 80, -1, 82, -1, -1, -1,
-1, 87, 88, -1, -1, -1, -1, -1, -1, -1,
96, 97, 98, 99, 100, 101, -1, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, -1,
116, -1, -1, -1, -1, -1, -1, -1, 124, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 140, 141, 142, 143, 144, -1,
-1, -1, -1, 149, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 159, -1, -1, 162, 163, 164, -1,
-1, -1, 168, -1, 170, -1, 172, -1, 174, -1,
3, 177, 5, 6, 7, 8, 9, 10, -1, -1,
-1, 14, -1, -1, 17, 18, -1, 20, -1, 22,
-1, -1, 25, -1, -1, -1, -1, -1, -1, -1,
-1, 34, -1, 36, -1, -1, -1, 40, 41, 42,
-1, -1, 45, 46, -1, -1, -1, 50, -1, -1,
53, -1, -1, 56, -1, -1, 59, 60, -1, -1,
63, -1, 65, -1, 67, 68, -1, 70, 71, -1,
-1, -1, -1, -1, -1, 78, -1, 80, -1, 82,
-1, -1, -1, -1, 87, 88, -1, -1, -1, -1,
-1, -1, -1, 96, 97, 98, 99, 100, 101, -1,
103, -1, -1, 106, -1, -1, -1, 110, -1, -1,
113, -1, -1, 116, -1, -1, -1, -1, -1, -1,
-1, 124, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 140, 141, 142,
143, 144, -1, -1, -1, -1, 149, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 159, -1, -1, 162,
163, 164, -1, -1, -1, 168, -1, 170, -1, 172,
-1, 174, -1, 3, 177, 5, 6, 7, 8, 9,
10, -1, -1, -1, 14, -1, -1, 17, 18, -1,
20, -1, 22, -1, -1, 25, -1, -1, -1, -1,
-1, -1, -1, -1, 34, -1, 36, -1, -1, -1,
40, 41, 42, -1, -1, 45, 46, -1, -1, -1,
50, -1, -1, 53, -1, -1, 56, -1, -1, 59,
60, -1, -1, 63, -1, 65, -1, 67, 68, -1,
70, 71, -1, -1, -1, -1, -1, -1, 78, -1,
80, -1, 82, -1, -1, -1, -1, 87, 88, -1,
-1, -1, -1, -1, -1, -1, 96, 97, 98, 99,
100, 101, -1, 103, -1, -1, 106, -1, -1, -1,
110, -1, -1, 113, -1, -1, 116, -1, -1, -1,
-1, -1, -1, -1, 124, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
140, 141, 142, 143, 144, -1, -1, -1, -1, 149,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 159,
-1, -1, 162, 163, 164, -1, -1, -1, 168, -1,
170, -1, 172, -1, 174, -1, 3, 177, 5, 6,
7, 8, 9, 10, -1, -1, -1, 14, -1, -1,
17, 18, -1, 20, -1, 22, -1, -1, 25, -1,
-1, -1, -1, -1, -1, -1, -1, 34, -1, 36,
-1, -1, -1, 40, 41, 42, -1, -1, 45, 46,
-1, -1, -1, 50, -1, -1, 53, -1, -1, 56,
-1, -1, 59, 60, -1, -1, 63, -1, 65, -1,
67, 68, -1, 70, 71, -1, -1, -1, -1, -1,
-1, 78, -1, 80, -1, 82, -1, -1, -1, -1,
87, 88, -1, -1, -1, -1, -1, -1, -1, 96,
97, 98, 99, 100, 101, -1, 103, -1, -1, 106,
-1, -1, -1, 110, -1, -1, 113, -1, -1, 116,
-1, -1, -1, -1, -1, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 140, 141, 142, 143, 144, -1, -1,
-1, -1, 149, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 159, -1, -1, 162, 163, 164, -1, -1,
-1, 168, -1, 170, -1, 172, -1, 174, -1, 3,
177, 5, 6, 7, 8, 9, 10, -1, -1, -1,
14, -1, -1, 17, 18, -1, 20, -1, 22, -1,
-1, 25, -1, -1, -1, -1, -1, -1, -1, -1,
34, -1, 36, -1, -1, -1, 40, 41, 42, -1,
-1, 45, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, 56, -1, -1, 59, 60, -1, -1, 63,
-1, 65, -1, 67, 68, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, 80, -1, 82, -1,
-1, -1, -1, 87, 88, -1, -1, -1, -1, -1,
-1, -1, 96, 97, 98, 99, 100, 101, -1, 103,
-1, -1, 106, -1, -1, -1, 110, -1, -1, 113,
-1, -1, 116, -1, -1, -1, -1, -1, -1, -1,
124, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 140, 141, 142, 143,
144, -1, -1, -1, -1, 149, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 159, -1, -1, 162, 163,
164, -1, -1, -1, 168, -1, 170, -1, 172, -1,
174, -1, 3, 177, 5, 6, 7, 8, 9, 10,
-1, -1, -1, 14, -1, -1, 17, 18, -1, 20,
-1, 22, -1, -1, 25, -1, -1, -1, -1, -1,
-1, -1, -1, 34, -1, 36, -1, -1, -1, 40,
41, 42, -1, -1, 45, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, 56, -1, -1, 59, 60,
-1, -1, 63, -1, 65, -1, 67, 68, -1, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, 80,
-1, 82, -1, -1, -1, -1, 87, 88, -1, -1,
-1, -1, -1, -1, -1, 96, 97, 98, 99, 100,
101, -1, 103, -1, -1, 106, -1, -1, -1, 110,
-1, -1, 113, -1, -1, 116, -1, -1, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 140,
141, 142, 143, 144, -1, -1, -1, -1, 149, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 159, -1,
-1, 162, 163, 164, -1, -1, -1, 168, -1, 170,
-1, 172, -1, 174, -1, 3, 177, 5, 6, 7,
8, 9, 10, -1, -1, -1, 14, -1, -1, 17,
18, -1, 20, -1, 22, -1, -1, 25, -1, -1,
-1, -1, -1, -1, -1, -1, 34, -1, 36, -1,
-1, -1, 40, 41, 42, -1, -1, 45, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, 56, -1,
-1, 59, 60, -1, -1, 63, -1, 65, -1, 67,
68, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, -1, 80, -1, 82, -1, -1, -1, -1, 87,
88, -1, -1, -1, -1, -1, -1, -1, 96, 97,
98, 99, 100, 101, -1, 103, -1, -1, 106, -1,
-1, -1, 110, -1, -1, 113, -1, -1, 116, -1,
-1, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 140, 141, 142, 143, 144, -1, -1, -1,
-1, 149, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 159, -1, -1, 162, 163, 164, -1, -1, -1,
168, -1, 170, -1, 172, -1, 174, -1, 3, 177,
5, 6, 7, 8, 9, 10, -1, -1, -1, 14,
-1, -1, 17, 18, -1, 20, -1, 22, -1, -1,
25, -1, -1, -1, -1, -1, -1, -1, -1, 34,
-1, 36, -1, -1, -1, 40, 41, 42, -1, -1,
45, 46, -1, -1, -1, 50, -1, -1, 53, -1,
-1, 56, -1, -1, 59, 60, -1, -1, 63, -1,
65, -1, 67, 68, -1, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, 80, -1, 82, -1, -1,
-1, -1, 87, 88, -1, -1, -1, -1, -1, -1,
-1, 96, 97, 98, 99, 100, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, -1, -1, 113, -1,
-1, 116, -1, -1, -1, -1, -1, -1, -1, 124,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 140, 141, 142, 143, 144,
-1, -1, -1, -1, 149, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 159, -1, -1, 162, 163, 164,
-1, -1, -1, 168, -1, 170, -1, 172, -1, 174,
-1, 3, 177, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, -1, -1, 17, 18, -1, 20, -1,
22, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, 36, -1, -1, -1, 40, 41,
42, -1, -1, 45, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, 56, -1, -1, 59, 60, -1,
-1, 63, -1, 65, -1, 67, 68, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, 80, -1,
82, -1, -1, -1, -1, 87, 88, -1, -1, -1,
-1, -1, -1, -1, 96, 97, 98, 99, 100, 101,
-1, 103, -1, -1, 106, -1, -1, -1, 110, -1,
-1, 113, -1, -1, 116, -1, -1, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 140, 141,
142, 143, 144, -1, -1, -1, -1, 149, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 159, -1, -1,
162, 163, 164, -1, -1, -1, 168, -1, 170, -1,
172, -1, 174, -1, 3, 177, 5, 6, 7, 8,
9, 10, -1, -1, -1, 14, -1, -1, 17, 18,
-1, 20, -1, 22, -1, -1, 25, -1, -1, -1,
-1, -1, -1, -1, -1, 34, -1, 36, -1, -1,
-1, 40, 41, 42, -1, -1, 45, 46, -1, -1,
-1, 50, -1, -1, 53, -1, -1, 56, -1, -1,
59, 60, -1, -1, 63, -1, 65, -1, 67, 68,
-1, 70, 71, -1, -1, -1, -1, -1, -1, 78,
-1, 80, -1, 82, -1, -1, -1, -1, 87, 88,
-1, -1, -1, -1, -1, -1, -1, 96, 97, 98,
99, 100, 101, -1, 103, -1, -1, 106, -1, -1,
-1, 110, -1, -1, 113, -1, -1, 116, -1, -1,
-1, -1, -1, -1, -1, 124, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 1, -1, 3, -1, -1,
-1, 140, 141, 142, 143, 144, 12, -1, -1, -1,
149, 17, 18, 19, 20, -1, -1, -1, -1, 25,
159, -1, -1, 162, 163, 164, -1, -1, 34, 168,
36, -1, -1, 172, 40, 174, -1, -1, 177, -1,
46, -1, -1, -1, 50, -1, -1, 53, -1, 55,
-1, -1, -1, -1, -1, -1, -1, 63, -1, -1,
-1, -1, -1, -1, 70, 71, -1, -1, -1, -1,
-1, -1, 78, -1, -1, -1, -1, -1, -1, -1,
-1, 87, -1, -1, -1, -1, -1, -1, -1, -1,
96, 97, -1, 99, -1, 101, -1, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, -1,
116, -1, -1, -1, -1, -1, -1, -1, -1, 125,
126, 127, 128, 129, 130, -1, -1, 133, 134, 135,
136, -1, 138, 139, 140, 141, 142, 143, 144, 145,
-1, 147, -1, -1, -1, 151, 152, 153, 154, 155,
156, 157, 158, 159, 160, 161, -1, 163, -1, -1,
166, 167, 168, 169, -1, 3, 172, 5, 6, 7,
8, 9, 10, -1, -1, -1, 14, -1, -1, 17,
18, -1, 20, -1, 22, -1, -1, 25, -1, -1,
-1, -1, -1, -1, -1, -1, 34, -1, 36, -1,
-1, -1, 40, 41, 42, -1, -1, 45, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, 56, -1,
-1, 59, 60, -1, -1, 63, -1, 65, -1, 67,
68, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, -1, 80, -1, 82, -1, -1, -1, -1, 87,
88, -1, -1, -1, -1, -1, -1, -1, 96, 97,
98, 99, 100, 101, -1, 103, -1, -1, 106, -1,
-1, -1, 110, -1, -1, 113, -1, -1, 116, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 140, 141, 142, 143, 144, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 159, -1, -1, -1, 163, 164, -1, -1, -1,
168, -1, 170, -1, 172, -1, 174, 3, 4, 5,
6, 7, 8, 9, 10, -1, -1, -1, 14, -1,
-1, 17, 18, -1, 20, -1, 22, -1, 32, 25,
-1, -1, -1, -1, -1, -1, -1, -1, 34, -1,
36, -1, -1, -1, 40, 41, 42, -1, -1, 45,
46, -1, -1, -1, 50, -1, -1, 53, -1, -1,
56, -1, -1, 59, 60, -1, -1, 63, -1, 65,
-1, 67, 68, -1, 70, 71, -1, -1, -1, -1,
-1, -1, 78, -1, 80, 89, 82, -1, -1, 93,
-1, 87, 88, -1, -1, -1, -1, -1, -1, -1,
96, 97, 98, 99, 100, 101, -1, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, -1,
116, -1, -1, -1, -1, -1, -1, -1, -1, 125,
-1, -1, -1, -1, -1, -1, 140, 141, -1, 143,
144, 145, -1, 147, 148, -1, 142, -1, 152, -1,
146, -1, -1, -1, 150, 159, 160, -1, -1, 163,
-1, -1, 166, 167, 168, -1, -1, -1, 164, -1,
-1, -1, -1, -1, 170, -1, 172, 173, 174, 3,
-1, 5, 6, 7, 8, 9, 10, -1, -1, -1,
14, -1, -1, 17, 18, -1, 20, -1, 22, -1,
-1, 25, -1, -1, -1, -1, -1, -1, -1, -1,
34, -1, 36, -1, -1, -1, 40, 41, 42, -1,
-1, 45, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, 56, -1, -1, 59, 60, 61, -1, 63,
-1, 65, -1, 67, 68, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, 80, -1, 82, -1,
-1, -1, -1, 87, 88, -1, -1, -1, 92, -1,
-1, -1, 96, 97, 98, 99, 100, 101, -1, 103,
-1, 105, 106, -1, -1, -1, 110, -1, -1, 113,
-1, -1, 116, -1, 118, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 142, -1,
3, -1, 5, 6, 7, 8, 9, 10, -1, -1,
-1, 14, -1, -1, 17, 18, -1, 20, -1, 22,
164, 165, 25, -1, -1, -1, 170, -1, 172, -1,
174, 34, -1, 36, -1, -1, -1, 40, 41, 42,
-1, -1, 45, 46, -1, -1, -1, 50, -1, -1,
53, -1, -1, 56, -1, -1, 59, 60, -1, -1,
63, -1, 65, -1, 67, 68, -1, 70, 71, -1,
-1, -1, -1, -1, -1, 78, -1, 80, -1, 82,
-1, -1, -1, -1, 87, 88, -1, -1, -1, -1,
-1, -1, -1, 96, 97, 98, 99, 100, 101, -1,
103, -1, -1, 106, -1, -1, -1, 110, -1, -1,
113, -1, -1, 116, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 140, -1, 142,
-1, 3, -1, 5, 6, 7, 8, 9, 10, -1,
-1, -1, 14, -1, -1, 17, 18, -1, 20, -1,
22, 164, -1, 25, -1, -1, -1, 170, -1, 172,
-1, 174, 34, -1, 36, -1, -1, -1, 40, 41,
42, -1, -1, 45, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, 56, -1, -1, 59, 60, -1,
-1, 63, -1, 65, -1, 67, 68, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, 80, -1,
82, -1, -1, -1, -1, 87, 88, -1, -1, -1,
-1, -1, -1, -1, 96, 97, 98, 99, 100, 101,
-1, 103, -1, -1, 106, -1, -1, -1, 110, -1,
-1, 113, -1, -1, 116, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
142, -1, 3, -1, 5, 6, 7, 8, 9, 10,
-1, -1, -1, 14, -1, -1, 17, 18, -1, 20,
-1, 22, 164, -1, 25, -1, -1, -1, 170, -1,
172, -1, 174, 34, -1, 36, -1, -1, -1, 40,
41, 42, -1, -1, 45, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, 56, -1, -1, 59, 60,
-1, -1, 63, -1, 65, -1, 67, 68, -1, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, 80,
-1, 82, -1, -1, -1, -1, 87, 88, -1, -1,
-1, -1, -1, -1, -1, 96, 97, 98, 99, 100,
101, -1, 103, -1, -1, 106, -1, 3, -1, 110,
-1, -1, 113, -1, -1, 116, 12, -1, -1, -1,
-1, 17, 18, 19, 20, -1, -1, -1, -1, 25,
-1, -1, -1, -1, -1, -1, -1, -1, 34, -1,
-1, 142, -1, -1, 40, -1, -1, -1, -1, -1,
46, -1, -1, -1, 50, -1, -1, 53, -1, 55,
-1, -1, -1, -1, -1, -1, -1, 63, -1, -1,
-1, 172, -1, 174, 70, 71, -1, -1, -1, -1,
-1, -1, 78, -1, -1, -1, -1, -1, -1, -1,
-1, 87, -1, -1, -1, -1, -1, -1, -1, 12,
96, 97, -1, 99, -1, 101, 19, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, -1, 32,
116, -1, -1, -1, -1, -1, -1, -1, -1, 125,
126, 127, 128, 129, 130, -1, -1, 133, 134, 135,
136, -1, 138, 139, 140, 141, 142, 143, 144, 145,
-1, 147, -1, -1, -1, 151, 152, 153, 154, 155,
156, 157, 158, 159, 160, 161, -1, 163, -1, -1,
166, 167, 168, 169, -1, 12, 89, -1, -1, -1,
93, -1, 19, -1, -1, -1, -1, -1, -1, 102,
-1, -1, -1, -1, -1, 32, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 124, 125, 126, 127, 128, 129, 130, -1, -1,
133, 134, 135, 136, -1, 138, 139, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, 151, 152,
153, 154, 155, -1, 157, 158, 159, 160, 161, 162,
163, 12, 89, 166, 167, 168, 93, 170, 19, -1,
-1, -1, -1, -1, 177, 102, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 124, 125, 126,
127, 128, 129, 130, -1, -1, 133, 134, 135, 136,
-1, 138, 139, 140, 141, -1, 143, 144, 145, -1,
147, 148, 149, -1, 151, 152, 153, 154, 155, -1,
157, 158, 159, 160, 161, 162, 163, 12, 89, 166,
167, 168, 93, 170, 19, -1, -1, -1, -1, -1,
177, 102, -1, -1, -1, -1, -1, 32, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 124, 125, 126, 127, 128, 129, 130,
-1, -1, 133, 134, 135, 136, -1, 138, 139, 140,
141, -1, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, 12, 89, 166, 167, 168, 93, 170,
19, -1, -1, -1, -1, -1, 177, 102, -1, -1,
-1, -1, -1, 32, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 124,
125, 126, 127, 128, 129, 130, -1, -1, 133, 134,
135, 136, -1, 138, 139, 140, 141, -1, 143, 144,
145, -1, 147, 148, 149, -1, 151, 152, 153, 154,
155, -1, 157, 158, 159, 160, 161, 162, 163, 12,
89, 166, 167, 168, 93, 170, 19, -1, -1, -1,
-1, -1, 177, 102, -1, -1, -1, -1, -1, 32,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 124, 125, 126, 127, 128,
129, 130, -1, -1, 133, 134, 135, 136, -1, 138,
139, 140, 141, -1, 143, 144, 145, -1, 147, 148,
149, -1, 151, 152, 153, 154, 155, -1, 157, 158,
159, 160, 161, 162, 163, 12, 89, 166, 167, 168,
93, 170, 19, -1, -1, -1, -1, -1, 177, 102,
-1, -1, -1, -1, -1, 32, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 124, 125, 126, 127, 128, 129, 130, -1, -1,
133, 134, 135, 136, -1, 138, 139, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, 151, 152,
153, 154, 155, -1, 157, 158, 159, 160, 161, 162,
163, 12, 89, 166, 167, 168, 93, 170, 19, -1,
-1, -1, -1, -1, 177, 102, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 124, 125, 126,
127, 128, 129, 130, -1, -1, 133, 134, 135, 136,
-1, 138, 139, 140, 141, -1, 143, 144, 145, -1,
147, 148, 149, -1, 151, 152, 153, 154, 155, -1,
157, 158, 159, 160, 161, 162, 163, 12, 89, 166,
167, 168, 93, 170, 19, -1, -1, -1, -1, -1,
177, 102, -1, -1, -1, -1, -1, 32, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 124, 125, 126, 127, 128, 129, 130,
-1, -1, 133, 134, 135, 136, -1, 138, 139, 140,
141, -1, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, -1, 89, 166, 167, 168, 93, 170,
-1, -1, -1, -1, -1, -1, 177, 102, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 32, -1, 124,
125, 126, 127, 128, 129, 130, -1, -1, 133, 134,
135, 136, -1, 138, 139, 140, 141, -1, 143, 144,
145, -1, 147, 148, 149, -1, 151, 152, 153, 154,
155, -1, 157, 158, 159, 160, 161, 162, 163, 12,
-1, 166, 167, 168, -1, 170, 19, -1, -1, -1,
-1, -1, 177, -1, 89, -1, -1, -1, 93, 32,
33, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 48, -1, -1, -1, 12,
-1, -1, -1, -1, -1, -1, 19, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 32,
33, -1, -1, -1, -1, 140, 141, -1, 143, 144,
145, -1, 147, 148, 149, 48, 89, 152, 153, 154,
93, -1, 157, 158, 159, 160, -1, -1, 163, -1,
-1, 166, 167, 168, -1, -1, -1, -1, -1, -1,
-1, -1, 177, -1, -1, -1, -1, -1, -1, -1,
-1, 124, -1, -1, -1, -1, 89, -1, -1, -1,
93, -1, -1, -1, -1, -1, -1, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, 151, 152,
153, 154, 155, -1, 157, 158, 159, 160, 161, 162,
163, 124, -1, 166, 167, 168, -1, 170, -1, -1,
-1, -1, -1, -1, 177, -1, -1, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, 151, 152,
153, 154, 155, -1, 157, 158, 159, 160, 161, 162,
163, 12, -1, 166, 167, 168, -1, 170, 19, -1,
-1, -1, -1, -1, 177, -1, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, 37, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 12, 13, -1, -1, -1, -1, -1, 19, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 32, 73, -1, -1, -1, 37, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 89, -1,
-1, -1, 93, -1, -1, -1, 12, -1, -1, -1,
-1, -1, -1, 19, -1, -1, -1, -1, -1, -1,
-1, -1, 73, -1, -1, -1, 32, 33, -1, -1,
-1, -1, -1, 124, -1, -1, -1, -1, 89, -1,
-1, -1, 93, -1, -1, -1, -1, -1, -1, 140,
141, -1, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, 124, 165, 166, 167, 168, -1, -1,
-1, -1, -1, 89, -1, -1, 177, 93, -1, 140,
141, -1, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, -1, 120, 166, 167, 168, 124, -1,
-1, -1, -1, -1, -1, -1, 177, -1, -1, -1,
-1, -1, -1, -1, 140, 141, -1, 143, 144, 145,
-1, 147, 148, 149, -1, 151, 152, 153, 154, 155,
-1, 157, 158, 159, 160, 161, 162, 163, 12, -1,
166, 167, 168, -1, 170, 19, -1, -1, -1, -1,
-1, 177, -1, -1, -1, -1, -1, -1, 32, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 48, -1, -1, -1, 12, -1,
-1, -1, -1, -1, -1, 19, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 32, 33,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 89, -1, -1, 12, 93,
-1, -1, -1, -1, -1, 19, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 32, 33,
-1, -1, -1, -1, -1, -1, 120, -1, -1, -1,
124, -1, -1, -1, 48, 89, -1, -1, -1, 93,
-1, -1, -1, -1, -1, -1, 140, 141, -1, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
124, -1, 166, 167, 168, 89, -1, -1, -1, 93,
-1, -1, -1, 177, -1, -1, 140, 141, -1, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
124, -1, 166, 167, 168, -1, 170, -1, -1, -1,
-1, -1, -1, 177, -1, -1, 140, 141, -1, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
12, 22, 166, 167, 168, 26, 27, 19, -1, -1,
-1, -1, -1, 177, -1, 36, -1, 38, 39, -1,
32, 33, -1, 44, -1, -1, 47, -1, -1, -1,
51, -1, -1, -1, -1, -1, 48, -1, -1, -1,
12, -1, -1, -1, -1, 66, -1, 19, -1, -1,
-1, -1, -1, -1, -1, -1, 77, -1, 79, -1,
32, 33, -1, -1, 85, -1, -1, 88, -1, 90,
-1, -1, -1, -1, -1, -1, -1, 89, -1, -1,
12, 93, -1, -1, -1, -1, -1, 19, 109, -1,
-1, 112, -1, 114, 115, -1, -1, -1, -1, -1,
32, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, 89, -1, -1,
-1, 93, -1, -1, -1, -1, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 124, -1, 166, 167, 168, 89, -1, -1,
-1, 93, -1, -1, -1, 177, -1, -1, 140, 141,
102, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 124, -1, 166, 167, 168, -1, 170, -1,
-1, -1, -1, -1, -1, 177, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 12, -1, 166, 167, 168, -1, 170, 19,
-1, -1, -1, -1, -1, 177, -1, -1, -1, -1,
-1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 22, -1, -1, -1, 26, 27,
-1, -1, 12, -1, -1, -1, -1, -1, 36, 19,
38, 39, -1, -1, -1, -1, 44, -1, -1, -1,
-1, -1, 32, 51, -1, -1, -1, 37, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 66, 89,
-1, -1, -1, 93, -1, -1, -1, 12, 13, 77,
-1, 79, -1, -1, 19, -1, -1, 85, -1, -1,
88, -1, 90, 73, -1, -1, -1, 32, -1, -1,
120, -1, -1, -1, 124, -1, -1, -1, -1, 89,
-1, 109, -1, 93, 112, -1, -1, 115, -1, -1,
140, 141, -1, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 124, -1, 166, 167, 168, -1,
-1, -1, -1, -1, 89, 175, -1, 177, 93, -1,
140, 141, -1, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 12, -1, 166, 167, 168, 124,
-1, 19, -1, -1, -1, -1, -1, 177, -1, -1,
-1, -1, -1, -1, 32, 140, 141, -1, 143, 144,
145, -1, 147, 148, 149, -1, 151, 152, 153, 154,
155, -1, 157, 158, 159, 160, 161, 162, 163, 12,
-1, 166, 167, 168, -1, -1, 19, -1, -1, -1,
-1, -1, 177, -1, -1, -1, -1, -1, -1, 32,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 89, -1, -1, -1, 93, -1, -1, -1, 12,
-1, -1, -1, -1, -1, -1, 19, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 32,
-1, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 89, -1, -1, -1,
93, -1, 140, 141, -1, 143, 144, 145, -1, 147,
148, 149, -1, 151, 152, 153, 154, 155, -1, 157,
158, 159, 160, 161, 162, 163, -1, -1, 166, 167,
168, 124, 170, -1, -1, -1, 89, -1, -1, 177,
93, -1, -1, -1, -1, -1, -1, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, 151, 152,
153, 154, 155, -1, 157, 158, 159, 160, 161, 162,
163, 124, 165, 166, 167, 168, -1, -1, -1, -1,
-1, -1, -1, -1, 177, -1, -1, 140, 141, -1,
143, 144, 145, -1, 147, 148, 149, -1, 151, 152,
153, 154, 155, -1, 157, 158, 159, 160, 161, 162,
163, 12, 165, 166, 167, 168, -1, -1, 19, -1,
-1, -1, -1, -1, 177, -1, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 12, -1, -1, -1, -1, -1, -1, 19, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 89, -1,
-1, 12, 93, -1, -1, -1, -1, -1, 19, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 32, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 123, 124, -1, -1, -1, -1, 89, -1,
-1, -1, 93, -1, -1, -1, -1, -1, -1, 140,
141, 102, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, 124, -1, 166, 167, 168, 89, -1,
-1, -1, 93, -1, -1, -1, 177, -1, -1, 140,
141, -1, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, 124, -1, 166, 167, 168, -1, -1,
-1, -1, -1, -1, -1, -1, 177, -1, -1, 140,
141, -1, 143, 144, 145, -1, 147, 148, 149, -1,
151, 152, 153, 154, 155, -1, 157, 158, 159, 160,
161, 162, 163, 12, 13, 166, 167, 168, -1, -1,
19, -1, 173, -1, -1, -1, 177, 22, -1, -1,
-1, 26, 27, 32, -1, -1, 31, -1, -1, -1,
-1, 36, -1, 38, 39, -1, -1, -1, -1, 44,
-1, -1, -1, 12, -1, -1, 51, -1, -1, -1,
19, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 32, -1, -1, -1, -1, -1, -1,
-1, -1, 77, -1, 79, -1, 81, -1, 83, -1,
89, 86, -1, 88, 93, 90, -1, -1, 12, -1,
-1, -1, -1, -1, -1, 19, -1, -1, -1, -1,
-1, -1, -1, -1, 109, -1, -1, 112, 32, -1,
115, -1, -1, -1, -1, 124, -1, -1, -1, -1,
89, -1, -1, -1, 93, -1, -1, -1, -1, -1,
-1, 140, 141, -1, 143, 144, 145, -1, 147, 148,
149, -1, 151, 152, 153, 154, 155, -1, 157, 158,
159, 160, 161, 162, 163, 124, -1, 166, 167, 168,
165, -1, -1, -1, -1, 89, 171, -1, 177, 93,
-1, 140, 141, -1, 143, 144, 145, -1, 147, 148,
149, -1, 151, 152, 153, 154, 155, 156, 157, 158,
159, 160, 161, 162, 163, 12, 120, 166, 167, 168,
124, -1, 19, -1, -1, -1, -1, -1, 177, -1,
-1, -1, -1, -1, -1, 32, 140, 141, -1, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
12, 13, 166, 167, 168, -1, -1, 19, -1, -1,
-1, -1, -1, 177, -1, -1, -1, -1, -1, -1,
32, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 89, -1, -1, -1, 93, -1, -1, -1,
12, -1, -1, -1, -1, -1, -1, 19, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
32, -1, -1, 35, -1, -1, -1, 124, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 89, -1, -1,
-1, 93, -1, 140, 141, -1, 143, 144, 145, -1,
147, 148, 149, -1, 151, 152, 153, 154, 155, -1,
157, 158, 159, 160, 161, 162, 163, -1, 165, 166,
167, 168, 124, -1, -1, -1, -1, 89, -1, -1,
177, 93, -1, -1, -1, -1, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 124, -1, 166, 167, 168, -1, -1, -1,
-1, -1, -1, -1, -1, 177, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 12, -1, 166, 167, 168, -1, -1, 19,
-1, -1, -1, -1, -1, 177, -1, -1, -1, -1,
-1, -1, 32, 22, -1, -1, -1, 26, 27, -1,
-1, -1, 31, -1, -1, -1, -1, 36, -1, 38,
39, -1, 12, -1, -1, 44, -1, -1, -1, 19,
-1, -1, 51, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 77, 89,
79, -1, 81, 93, 83, -1, -1, 86, 12, 88,
-1, 90, -1, -1, -1, 19, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 32, -1,
109, -1, -1, 112, 124, -1, 115, -1, -1, 89,
-1, -1, -1, 93, -1, -1, -1, -1, -1, -1,
140, 141, -1, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 124, -1, 166, 167, 168, -1,
-1, -1, -1, 173, -1, 89, 165, 177, -1, 93,
140, 141, 171, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 12, -1, 166, 167, 168, 123,
124, 19, -1, 173, -1, -1, -1, 177, -1, -1,
-1, -1, -1, -1, 32, 33, 140, 141, -1, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
12, -1, 166, 167, 168, -1, -1, 19, -1, -1,
-1, -1, -1, 177, -1, -1, -1, -1, -1, -1,
32, 33, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 89, -1, -1, -1, 93, -1, -1, -1, -1,
12, -1, -1, -1, -1, -1, -1, 19, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
32, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 89, -1, -1,
-1, 93, 140, 141, -1, 143, 144, 145, -1, 147,
148, 149, -1, 151, 152, 153, 154, 155, -1, 157,
158, 159, 160, 161, 162, 163, -1, -1, 166, 167,
168, -1, 124, -1, -1, -1, -1, 89, -1, 177,
-1, 93, -1, -1, -1, -1, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 124, -1, 166, 167, 168, -1, -1, -1,
-1, -1, -1, -1, -1, 177, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 12, 13, 166, 167, 168, -1, -1, 19,
-1, -1, -1, 175, -1, 177, -1, -1, -1, -1,
-1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 12, -1, -1, -1, -1, -1, -1, 19,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 89,
-1, -1, 12, 93, -1, -1, -1, -1, -1, 19,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 124, -1, -1, -1, -1, 89,
-1, -1, -1, 93, -1, -1, -1, -1, -1, -1,
140, 141, 102, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 124, -1, 166, 167, 168, 89,
-1, -1, -1, 93, -1, -1, -1, 177, -1, -1,
140, 141, 102, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 124, -1, 166, 167, 168, -1,
-1, -1, -1, -1, -1, -1, -1, 177, -1, -1,
140, 141, -1, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 12, 13, 166, 167, 168, -1,
-1, 19, -1, -1, -1, -1, -1, 177, -1, -1,
-1, -1, -1, -1, 32, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 12, -1, -1, -1, -1, -1,
-1, 19, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 32, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 89, -1, -1, 12, 93, -1, -1, -1, -1,
-1, 19, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 32, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 124, -1, -1, -1,
-1, 89, -1, -1, -1, 93, -1, -1, -1, -1,
-1, -1, 140, 141, -1, 143, 144, 145, -1, 147,
148, 149, -1, 151, 152, 153, 154, 155, -1, 157,
158, 159, 160, 161, 162, 163, 124, -1, 166, 167,
168, 89, -1, -1, -1, 93, -1, -1, -1, 177,
-1, -1, 140, 141, -1, 143, 144, 145, -1, 147,
148, 149, -1, 151, 152, 153, 154, 155, -1, 157,
158, 159, 160, 161, 162, 163, 124, -1, 166, 167,
168, -1, -1, -1, -1, 173, -1, -1, -1, 177,
-1, -1, 140, 141, -1, 143, 144, 145, -1, 147,
148, 149, -1, 151, 152, 153, 154, 155, -1, 157,
158, 159, 160, 161, 162, 163, 12, 3, 166, 167,
168, -1, 8, 19, -1, -1, -1, 175, -1, 177,
-1, 17, 18, -1, 20, -1, 32, -1, -1, 25,
-1, -1, -1, -1, -1, -1, -1, -1, 34, -1,
-1, -1, -1, -1, 40, -1, 12, -1, -1, -1,
46, -1, -1, 19, 50, -1, -1, 53, -1, -1,
-1, -1, -1, -1, -1, -1, 32, 63, -1, -1,
-1, -1, -1, -1, 70, 71, -1, -1, -1, -1,
-1, -1, 78, 89, -1, -1, 12, 93, -1, -1,
-1, 87, -1, 19, -1, -1, 102, -1, -1, -1,
96, 97, -1, 99, -1, 101, 32, 103, -1, -1,
106, -1, -1, -1, 110, -1, -1, 113, 124, -1,
116, -1, -1, 89, -1, -1, -1, 93, -1, -1,
-1, -1, -1, -1, 140, 141, 102, 143, 144, 145,
-1, 147, 148, 149, -1, 151, 152, 153, 154, 155,
-1, 157, 158, 159, 160, 161, 162, 163, 124, -1,
166, 167, 168, 89, -1, -1, -1, 93, -1, -1,
-1, 177, -1, -1, 140, 141, 102, 143, 144, 145,
-1, 147, 148, 149, -1, 151, 152, 153, 154, 155,
-1, 157, 158, 159, 160, 161, 162, 163, 124, -1,
166, 167, 168, -1, -1, -1, -1, -1, -1, -1,
-1, 177, -1, -1, 140, 141, -1, 143, 144, 145,
-1, 147, 148, 149, -1, 151, 152, 153, 154, 155,
-1, 157, 158, 159, 160, 161, 162, 163, 12, 3,
166, 167, 168, -1, -1, 19, -1, -1, -1, -1,
-1, 177, -1, 17, 18, -1, 20, -1, 32, -1,
-1, 25, -1, -1, -1, -1, -1, 31, -1, -1,
34, -1, -1, -1, -1, -1, 40, -1, 12, -1,
-1, -1, 46, -1, -1, 19, 50, -1, -1, 53,
-1, -1, -1, -1, -1, -1, -1, -1, 32, 63,
-1, -1, -1, -1, -1, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, 89, -1, -1, 12, 93,
-1, -1, -1, 87, -1, 19, -1, -1, 102, -1,
-1, -1, 96, 97, -1, 99, -1, 101, 32, 103,
-1, -1, 106, -1, -1, -1, 110, -1, -1, 113,
124, -1, 116, -1, -1, 89, -1, -1, -1, 93,
-1, -1, -1, -1, -1, -1, 140, 141, 102, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
124, -1, 166, 167, 168, 89, -1, -1, -1, 93,
-1, -1, -1, 177, -1, -1, 140, 141, 102, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
124, -1, 166, 167, 168, -1, -1, -1, -1, -1,
-1, -1, -1, 177, -1, -1, 140, 141, -1, 143,
144, 145, -1, 147, 148, 149, -1, 151, 152, 153,
154, 155, -1, 157, 158, 159, 160, 161, 162, 163,
12, 3, 166, 167, 168, -1, -1, 19, -1, -1,
-1, -1, -1, 177, -1, 17, 18, -1, 20, -1,
32, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, -1, -1, -1, -1, 40, -1,
12, -1, -1, -1, 46, -1, -1, 19, 50, 61,
-1, 53, -1, -1, -1, -1, -1, -1, -1, -1,
32, 63, -1, -1, -1, -1, -1, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, 89, -1, -1,
12, 93, -1, -1, -1, 87, -1, 19, -1, -1,
-1, -1, -1, -1, 96, 97, -1, 99, -1, 101,
32, 103, -1, -1, 106, -1, -1, -1, 110, -1,
-1, 113, 124, -1, 116, -1, -1, 89, -1, -1,
-1, 93, -1, -1, -1, -1, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 124, -1, 166, 167, 168, 89, -1, -1,
-1, 93, -1, -1, -1, 177, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 124, -1, 166, 167, 168, -1, -1, -1,
-1, -1, -1, 175, -1, 177, -1, -1, 140, 141,
-1, 143, 144, 145, -1, 147, 148, 149, -1, 151,
152, 153, 154, 155, -1, 157, 158, 159, 160, 161,
162, 163, 12, -1, 166, 167, 168, -1, -1, 19,
-1, -1, -1, -1, -1, 177, 22, -1, -1, -1,
26, 27, 32, -1, -1, 31, -1, -1, -1, -1,
36, -1, 38, 39, -1, -1, -1, -1, 44, -1,
-1, -1, -1, -1, -1, 51, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, 77, -1, 79, -1, 81, -1, 83, -1, 89,
86, -1, 88, 93, 90, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 109, -1, -1, 112, 32, -1, 115,
-1, -1, -1, -1, 124, -1, -1, -1, -1, 89,
-1, -1, -1, 93, -1, -1, -1, -1, -1, -1,
140, 141, -1, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, 155, -1, 157, 158, 159,
160, 161, 162, 163, 124, -1, 166, 167, 168, 165,
32, -1, -1, -1, 89, 171, -1, 177, 93, -1,
140, 141, -1, 143, 144, 145, -1, 147, 148, 149,
-1, 151, 152, 153, 154, -1, -1, 157, 158, 159,
160, 161, 162, 163, -1, -1, 166, 167, 168, 124,
-1, -1, -1, -1, -1, -1, -1, 177, -1, -1,
-1, -1, -1, -1, -1, 140, 141, 89, 143, 144,
145, 93, 147, 148, 149, -1, 151, 152, 153, 154,
-1, -1, 157, 158, 159, 160, 161, -1, 163, -1,
-1, 166, 167, 168, -1, 22, -1, -1, -1, 26,
27, -1, 177, -1, 31, -1, -1, -1, -1, 36,
-1, 38, 39, -1, -1, -1, -1, 44, 140, 141,
-1, 143, 144, 145, 51, 147, 148, 149, -1, 151,
152, 153, 154, -1, -1, 157, 158, 159, 160, 161,
-1, 163, -1, -1, 166, 167, 168, -1, -1, -1,
77, 1, 79, 3, 81, 177, 83, -1, -1, 86,
-1, 88, -1, 90, -1, -1, -1, 17, 18, -1,
20, -1, -1, -1, -1, 25, -1, -1, -1, -1,
-1, 31, 109, -1, 34, 112, -1, -1, 115, -1,
40, -1, -1, -1, -1, -1, 46, -1, -1, -1,
50, -1, -1, 53, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 63, -1, -1, -1, -1, -1, -1,
70, 71, -1, -1, -1, -1, -1, -1, 78, -1,
-1, -1, -1, -1, -1, -1, -1, 87, 165, -1,
3, -1, -1, -1, -1, -1, 96, 97, -1, 99,
-1, 101, -1, 103, 17, 18, 106, 20, -1, -1,
110, -1, 25, 113, 27, -1, 116, -1, -1, -1,
-1, 34, -1, -1, -1, -1, -1, 40, -1, -1,
-1, -1, -1, 46, -1, -1, -1, 50, -1, -1,
53, -1, -1, -1, -1, -1, -1, -1, -1, -1,
63, -1, -1, -1, -1, -1, -1, 70, 71, -1,
-1, -1, -1, -1, -1, 78, 79, -1, -1, -1,
-1, -1, -1, -1, 87, -1, -1, 90, -1, -1,
-1, -1, -1, 96, 97, -1, 99, -1, 101, -1,
103, 3, -1, 106, -1, -1, -1, 110, -1, -1,
113, -1, 115, 116, -1, 17, 18, -1, 20, -1,
-1, -1, -1, 25, -1, -1, -1, -1, -1, -1,
-1, -1, 34, -1, -1, -1, -1, -1, 40, -1,
-1, -1, -1, -1, 46, -1, -1, -1, 50, -1,
-1, 53, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 63, -1, -1, -1, -1, -1, -1, 70, 71,
-1, -1, -1, -1, -1, -1, 78, -1, -1, -1,
-1, -1, -1, -1, -1, 87, -1, -1, 3, -1,
-1, -1, -1, -1, 96, 97, -1, 99, -1, 101,
-1, 103, 17, 18, 106, 20, -1, -1, 110, -1,
25, 113, -1, -1, 116, -1, -1, -1, -1, 34,
-1, -1, -1, -1, -1, 40, -1, -1, -1, -1,
-1, 46, -1, -1, -1, 50, -1, -1, 53, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 63, -1,
-1, -1, -1, -1, -1, 70, 71, -1, -1, -1,
-1, -1, -1, 78, -1, -1, -1, -1, -1, -1,
-1, -1, 87, -1, -1, 3, -1, -1, -1, -1,
-1, 96, 97, -1, 99, -1, 101, -1, 103, 17,
18, 106, 20, -1, -1, 110, -1, 25, 113, -1,
-1, 116, -1, -1, -1, -1, 34, -1, -1, -1,
-1, -1, 40, -1, -1, -1, -1, -1, 46, -1,
-1, -1, 50, -1, -1, 53, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 63, -1, -1, -1, -1,
-1, -1, 70, 71, -1, -1, -1, -1, -1, -1,
78, -1, -1, -1, -1, -1, -1, -1, -1, 87,
-1, -1, 3, -1, -1, -1, -1, -1, 96, 97,
-1, 99, -1, 101, -1, 103, 17, 18, 106, 20,
-1, -1, 110, -1, 25, 113, -1, -1, 116, -1,
-1, -1, -1, 34, -1, -1, -1, -1, -1, 40,
-1, -1, -1, -1, -1, 46, -1, -1, -1, 50,
-1, -1, 53, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 63, -1, -1, -1, -1, -1, -1, 70,
71, -1, -1, -1, -1, -1, -1, 78, -1, -1,
-1, -1, -1, -1, -1, -1, 87, -1, -1, 3,
-1, -1, -1, -1, -1, 96, 97, -1, 99, -1,
101, -1, 103, 17, 18, 106, 20, -1, -1, 110,
-1, 25, 113, -1, -1, 116, -1, -1, -1, -1,
34, -1, -1, -1, -1, -1, 40, -1, -1, -1,
-1, -1, 46, -1, -1, -1, 50, -1, -1, 53,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 63,
-1, -1, -1, -1, -1, -1, 70, 71, -1, -1,
-1, -1, -1, -1, 78, -1, -1, -1, -1, -1,
-1, -1, -1, 87, -1, -1, -1, -1, -1, -1,
-1, -1, 96, 97, -1, 99, -1, 101, -1, 103,
-1, -1, 106, -1, -1, -1, 110, -1, -1, 113,
-1, -1, 116
};
/* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of
state STATE-NUM. */
static const yytype_int16 yystos[] =
{
0, 182, 183, 0, 1, 3, 5, 6, 7, 8,
9, 10, 14, 15, 16, 17, 18, 20, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 33, 34,
36, 38, 39, 40, 41, 42, 43, 44, 45, 46,
49, 50, 51, 53, 56, 57, 58, 59, 60, 62,
63, 64, 65, 67, 68, 70, 71, 72, 77, 78,
79, 80, 81, 82, 83, 86, 87, 88, 90, 91,
92, 94, 95, 96, 97, 98, 99, 100, 101, 103,
104, 106, 107, 108, 109, 110, 112, 113, 115, 116,
119, 121, 124, 140, 141, 142, 143, 144, 149, 159,
162, 163, 164, 165, 168, 170, 172, 174, 177, 184,
185, 186, 187, 188, 189, 190, 191, 192, 195, 197,
202, 203, 204, 207, 208, 212, 214, 217, 220, 222,
224, 225, 226, 233, 234, 236, 238, 241, 242, 243,
244, 245, 246, 247, 251, 252, 255, 256, 259, 260,
264, 267, 268, 296, 299, 300, 320, 321, 322, 323,
324, 325, 326, 334, 335, 336, 337, 338, 341, 342,
343, 344, 345, 346, 347, 348, 350, 351, 352, 353,
354, 165, 186, 338, 120, 327, 328, 3, 209, 14,
22, 36, 41, 42, 45, 56, 88, 101, 170, 174,
241, 264, 320, 325, 336, 337, 338, 341, 343, 344,
327, 338, 109, 299, 90, 209, 186, 314, 338, 8,
22, 36, 39, 83, 86, 88, 189, 186, 172, 8,
88, 338, 339, 8, 11, 88, 109, 112, 339, 79,
122, 235, 338, 235, 338, 235, 338, 26, 300, 338,
27, 115, 237, 338, 196, 172, 3, 17, 18, 20,
25, 34, 40, 46, 50, 53, 63, 70, 71, 78,
87, 96, 97, 99, 101, 103, 106, 110, 113, 116,
211, 213, 211, 211, 265, 172, 211, 301, 302, 33,
197, 216, 338, 218, 219, 338, 338, 18, 78, 96,
113, 338, 338, 338, 8, 172, 223, 224, 4, 290,
313, 338, 107, 108, 165, 338, 340, 338, 216, 338,
338, 338, 100, 172, 186, 338, 338, 211, 297, 338,
237, 338, 338, 338, 338, 338, 338, 338, 1, 171,
184, 198, 313, 111, 150, 290, 315, 316, 340, 235,
313, 338, 349, 338, 81, 186, 170, 85, 193, 47,
114, 56, 187, 197, 211, 211, 54, 74, 84, 285,
301, 164, 165, 156, 338, 12, 19, 32, 89, 93,
124, 140, 141, 143, 144, 145, 147, 148, 149, 151,
152, 153, 154, 155, 157, 158, 159, 160, 161, 162,
163, 166, 167, 168, 177, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
169, 275, 172, 174, 89, 93, 172, 186, 165, 338,
338, 338, 211, 313, 56, 170, 197, 48, 327, 297,
301, 165, 146, 165, 189, 119, 212, 290, 317, 318,
319, 340, 88, 231, 268, 299, 88, 112, 227, 297,
229, 268, 299, 211, 172, 216, 33, 48, 216, 120,
216, 330, 33, 48, 216, 330, 216, 48, 216, 37,
73, 165, 211, 211, 102, 197, 102, 125, 197, 275,
83, 86, 194, 317, 172, 172, 197, 186, 172, 278,
111, 172, 211, 303, 304, 1, 145, 308, 48, 146,
186, 216, 146, 216, 13, 172, 172, 216, 317, 224,
146, 165, 338, 338, 165, 170, 216, 172, 317, 165,
125, 298, 165, 216, 216, 165, 171, 171, 184, 146,
171, 338, 146, 173, 146, 173, 175, 330, 48, 146,
175, 330, 123, 146, 175, 8, 1, 171, 198, 66,
205, 206, 338, 200, 338, 211, 248, 145, 257, 170,
269, 165, 338, 338, 338, 338, 235, 338, 235, 338,
338, 338, 338, 338, 338, 338, 3, 20, 34, 63,
103, 109, 212, 338, 338, 338, 338, 338, 338, 338,
338, 338, 338, 338, 338, 338, 338, 338, 338, 338,
69, 340, 340, 340, 340, 340, 317, 317, 235, 338,
235, 338, 27, 48, 90, 115, 329, 332, 333, 338,
354, 33, 48, 33, 48, 102, 172, 48, 175, 211,
235, 338, 216, 165, 165, 338, 338, 125, 173, 146,
232, 211, 301, 228, 230, 211, 165, 211, 301, 48,
313, 45, 338, 235, 338, 172, 216, 45, 338, 235,
338, 216, 235, 338, 12, 19, 55, 140, 141, 142,
143, 144, 145, 147, 151, 152, 153, 154, 155, 156,
157, 158, 159, 160, 161, 163, 166, 167, 168, 169,
199, 274, 275, 276, 338, 199, 201, 125, 125, 186,
35, 186, 338, 35, 338, 193, 173, 318, 211, 239,
240, 27, 48, 52, 76, 79, 90, 109, 185, 279,
280, 281, 282, 283, 266, 304, 146, 173, 34, 50,
97, 101, 174, 215, 309, 321, 125, 305, 338, 302,
218, 211, 299, 338, 338, 173, 290, 338, 1, 253,
319, 173, 309, 321, 146, 171, 173, 173, 315, 173,
315, 186, 175, 235, 338, 175, 186, 338, 175, 338,
175, 338, 171, 171, 211, 146, 165, 13, 148, 146,
165, 13, 37, 73, 165, 172, 21, 249, 313, 170,
1, 31, 211, 261, 262, 263, 27, 79, 90, 109,
271, 284, 172, 165, 165, 165, 165, 165, 165, 173,
175, 48, 90, 146, 173, 17, 20, 25, 46, 53,
63, 71, 87, 99, 110, 116, 320, 89, 89, 45,
235, 338, 45, 235, 338, 318, 235, 338, 172, 327,
327, 165, 290, 340, 319, 211, 257, 165, 211, 211,
257, 257, 165, 338, 173, 338, 33, 216, 33, 216,
331, 332, 338, 33, 216, 330, 33, 216, 330, 216,
216, 146, 165, 13, 165, 338, 338, 35, 186, 35,
35, 186, 102, 197, 66, 173, 146, 173, 48, 90,
282, 146, 173, 172, 211, 27, 79, 90, 109, 286,
173, 304, 308, 1, 313, 69, 340, 211, 173, 173,
171, 75, 117, 171, 254, 173, 297, 186, 175, 330,
175, 330, 186, 123, 205, 212, 140, 141, 142, 143,
144, 159, 163, 168, 170, 276, 338, 111, 338, 199,
201, 318, 172, 197, 211, 250, 1, 258, 171, 8,
263, 125, 146, 171, 90, 270, 1, 3, 17, 20,
25, 40, 46, 53, 63, 70, 71, 87, 99, 103,
106, 110, 116, 172, 210, 211, 213, 272, 273, 274,
275, 320, 173, 332, 308, 320, 320, 338, 33, 33,
338, 33, 33, 173, 175, 175, 318, 216, 216, 257,
170, 257, 257, 170, 170, 216, 102, 45, 338, 45,
338, 146, 173, 102, 45, 338, 216, 45, 338, 216,
276, 338, 338, 186, 186, 338, 186, 35, 211, 165,
240, 197, 211, 281, 304, 145, 312, 90, 308, 305,
175, 48, 175, 172, 172, 33, 186, 313, 45, 186,
338, 175, 45, 186, 338, 175, 338, 199, 13, 37,
73, 37, 73, 165, 165, 173, 250, 145, 197, 171,
31, 83, 86, 171, 185, 221, 222, 263, 338, 262,
286, 172, 277, 338, 140, 148, 277, 277, 305, 102,
45, 45, 102, 45, 45, 45, 45, 173, 170, 258,
170, 170, 258, 258, 338, 338, 338, 332, 338, 338,
338, 13, 35, 186, 165, 312, 173, 174, 215, 290,
311, 321, 150, 291, 305, 61, 118, 292, 338, 309,
321, 317, 317, 186, 216, 338, 186, 338, 186, 171,
111, 338, 199, 201, 199, 201, 165, 173, 338, 8,
222, 221, 1, 145, 307, 280, 173, 3, 103, 273,
275, 338, 338, 338, 338, 338, 338, 258, 171, 258,
258, 171, 171, 102, 102, 102, 102, 338, 186, 291,
305, 312, 175, 313, 290, 338, 3, 92, 103, 293,
294, 295, 338, 197, 217, 289, 175, 173, 173, 102,
102, 165, 165, 165, 165, 197, 222, 174, 215, 306,
321, 105, 287, 173, 277, 277, 102, 102, 102, 102,
102, 102, 171, 171, 171, 338, 338, 338, 338, 291,
305, 290, 310, 311, 321, 48, 175, 295, 118, 146,
125, 151, 153, 154, 157, 158, 61, 321, 164, 164,
338, 338, 1, 175, 313, 292, 338, 310, 311, 338,
294, 295, 295, 295, 295, 295, 295, 293, 175, 306,
321, 175, 165, 288, 289, 175, 306, 321, 310
};
/* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */
static const yytype_int16 yyr1[] =
{
0, 181, 182, 183, 183, 184, 184, 185, 185, 186,
186, 186, 186, 186, 186, 186, 186, 186, 186, 186,
186, 186, 186, 186, 186, 186, 186, 186, 187, 187,
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
187, 187, 187, 187, 188, 188, 188, 189, 189, 190,
191, 191, 191, 192, 192, 192, 193, 193, 194, 194,
194, 196, 195, 197, 197, 197, 198, 198, 199, 199,
199, 199, 199, 199, 200, 200, 200, 200, 200, 200,
201, 201, 202, 202, 202, 203, 203, 203, 203, 203,
203, 203, 204, 205, 205, 205, 205, 206, 206, 207,
208, 208, 208, 208, 208, 208, 209, 209, 210, 210,
210, 210, 210, 210, 211, 211, 211, 211, 211, 211,
212, 212, 213, 213, 213, 213, 213, 213, 213, 213,
213, 213, 213, 213, 213, 213, 213, 213, 213, 213,
213, 214, 214, 214, 214, 214, 214, 214, 214, 214,
214, 214, 214, 215, 215, 215, 215, 216, 216, 217,
217, 218, 218, 218, 219, 219, 220, 221, 221, 221,
222, 222, 222, 223, 222, 224, 224, 224, 224, 224,
224, 224, 225, 225, 225, 225, 227, 226, 228, 226,
229, 226, 230, 226, 231, 226, 232, 226, 226, 226,
226, 226, 233, 234, 234, 234, 234, 234, 234, 234,
234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
234, 234, 234, 234, 234, 234, 234, 234, 234, 234,
234, 234, 234, 234, 235, 236, 236, 236, 236, 236,
236, 236, 236, 236, 236, 236, 236, 237, 237, 238,
238, 239, 239, 240, 241, 241, 241, 241, 241, 241,
241, 241, 241, 241, 241, 241, 241, 242, 242, 242,
242, 242, 242, 243, 243, 243, 244, 244, 244, 245,
246, 246, 247, 247, 248, 248, 249, 249, 249, 250,
250, 251, 252, 252, 253, 253, 254, 254, 254, 255,
255, 256, 256, 256, 257, 257, 258, 258, 258, 259,
259, 260, 261, 261, 261, 262, 262, 262, 263, 263,
265, 266, 264, 267, 267, 267, 269, 270, 268, 271,
271, 271, 271, 271, 272, 272, 273, 273, 273, 274,
274, 274, 274, 274, 274, 274, 274, 274, 274, 274,
274, 274, 274, 274, 274, 274, 274, 274, 274, 274,
274, 274, 274, 274, 274, 275, 275, 275, 275, 275,
275, 275, 275, 275, 275, 275, 275, 276, 276, 277,
277, 278, 279, 279, 280, 280, 281, 281, 281, 281,
281, 281, 282, 282, 283, 283, 283, 283, 283, 283,
283, 283, 283, 284, 284, 284, 284, 284, 284, 285,
285, 285, 286, 286, 286, 286, 286, 286, 287, 287,
288, 288, 289, 289, 290, 291, 291, 291, 292, 292,
292, 292, 292, 293, 293, 294, 294, 294, 294, 294,
294, 294, 295, 295, 296, 296, 296, 297, 297, 298,
298, 298, 299, 299, 299, 299, 299, 300, 300, 301,
301, 302, 302, 303, 303, 303, 304, 304, 304, 305,
305, 305, 306, 306, 306, 306, 306, 306, 306, 307,
307, 307, 307, 307, 308, 308, 308, 308, 308, 309,
309, 309, 309, 310, 310, 310, 311, 311, 311, 311,
311, 312, 312, 312, 312, 312, 313, 313, 313, 313,
314, 314, 315, 315, 315, 316, 316, 317, 317, 318,
318, 319, 319, 319, 319, 320, 320, 321, 321, 321,
322, 322, 322, 322, 322, 322, 322, 322, 322, 322,
322, 322, 322, 322, 322, 322, 322, 322, 322, 322,
322, 322, 323, 323, 323, 323, 323, 323, 323, 323,
323, 323, 323, 323, 323, 323, 323, 323, 323, 324,
325, 326, 326, 326, 326, 326, 326, 326, 326, 327,
327, 328, 329, 329, 330, 331, 331, 332, 332, 332,
333, 333, 333, 333, 333, 333, 334, 334, 335, 335,
335, 335, 335, 336, 336, 336, 336, 336, 337, 338,
338, 338, 338, 338, 338, 338, 338, 338, 338, 338,
338, 338, 338, 338, 338, 338, 339, 339, 340, 340,
340, 341, 341, 341, 341, 342, 342, 342, 342, 342,
343, 343, 343, 344, 344, 344, 344, 344, 345, 345,
345, 345, 346, 346, 347, 347, 348, 348, 348, 348,
348, 348, 348, 348, 348, 348, 348, 348, 348, 349,
349, 350, 350, 350, 350, 350, 350, 350, 350, 350,
350, 350, 350, 350, 350, 350, 350, 350, 350, 350,
350, 350, 350, 350, 351, 351, 351, 351, 351, 351,
351, 352, 352, 352, 352, 353, 353, 353, 353, 354,
354, 354, 354, 354, 354, 354
};
/* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */
static const yytype_int8 yyr2[] =
{
0, 2, 1, 0, 2, 1, 2, 2, 3, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 2, 3, 3, 3, 3, 2, 1, 1,
1, 1, 1, 1, 2, 3, 3, 3, 3, 2,
3, 3, 2, 2, 1, 3, 2, 1, 1, 4,
3, 4, 4, 0, 1, 1, 0, 1, 0, 1,
1, 0, 7, 2, 3, 3, 1, 2, 1, 1,
3, 3, 3, 5, 1, 3, 3, 3, 5, 5,
0, 1, 0, 1, 1, 4, 6, 8, 8, 6,
8, 8, 4, 1, 3, 3, 5, 1, 3, 3,
4, 4, 4, 4, 4, 4, 0, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 2, 1, 2,
3, 4, 3, 1, 1, 3, 3, 1, 3, 2,
1, 1, 2, 0, 3, 1, 1, 1, 1, 1,
1, 1, 3, 5, 5, 2, 0, 8, 0, 9,
0, 8, 0, 9, 0, 8, 0, 9, 3, 3,
5, 5, 2, 5, 3, 3, 6, 6, 4, 5,
5, 3, 3, 6, 5, 6, 5, 6, 3, 4,
3, 4, 5, 5, 3, 3, 6, 7, 6, 7,
4, 5, 4, 5, 4, 4, 3, 6, 5, 4,
3, 6, 5, 6, 5, 8, 7, 4, 4, 6,
3, 1, 3, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 6, 4, 7, 5, 3, 6, 2,
1, 1, 2, 3, 0, 2, 2, 3, 5, 1,
3, 3, 5, 5, 0, 2, 3, 2, 3, 6,
6, 1, 1, 1, 0, 2, 0, 2, 3, 5,
5, 1, 1, 2, 3, 1, 3, 2, 1, 3,
0, 0, 8, 0, 1, 1, 0, 0, 10, 3,
3, 5, 5, 3, 1, 3, 1, 2, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
3, 3, 1, 3, 0, 1, 4, 5, 4, 5,
6, 6, 0, 1, 1, 1, 1, 1, 2, 2,
1, 1, 1, 0, 1, 1, 2, 1, 1, 1,
1, 1, 0, 1, 2, 1, 1, 1, 0, 1,
1, 1, 1, 1, 1, 1, 2, 2, 0, 2,
2, 4, 4, 1, 3, 3, 3, 3, 3, 3,
3, 2, 1, 1, 3, 4, 4, 2, 4, 0,
2, 2, 1, 1, 1, 2, 1, 4, 3, 1,
3, 3, 5, 1, 1, 3, 1, 2, 3, 0,
2, 2, 3, 2, 4, 3, 3, 4, 3, 0,
2, 2, 2, 1, 0, 2, 2, 2, 1, 4,
4, 6, 3, 0, 1, 1, 3, 4, 3, 4,
6, 0, 2, 2, 2, 2, 1, 1, 3, 3,
1, 3, 1, 1, 1, 3, 3, 0, 1, 1,
3, 3, 3, 1, 1, 1, 1, 1, 2, 1,
1, 1, 1, 1, 1, 2, 4, 4, 4, 5,
2, 2, 1, 2, 1, 2, 1, 2, 1, 2,
1, 1, 6, 6, 4, 9, 9, 7, 6, 6,
4, 9, 9, 7, 4, 6, 6, 9, 9, 6,
1, 1, 1, 1, 1, 1, 1, 1, 3, 0,
1, 4, 1, 3, 4, 1, 3, 4, 3, 3,
1, 1, 2, 1, 2, 1, 1, 3, 1, 2,
2, 2, 2, 2, 8, 8, 9, 9, 4, 1,
1, 1, 1, 1, 1, 1, 1, 1, 4, 3,
3, 3, 2, 2, 2, 1, 0, 1, 2, 2,
1, 1, 1, 1, 1, 1, 2, 2, 1, 1,
4, 4, 4, 3, 3, 3, 3, 5, 3, 4,
3, 4, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 3, 4, 3, 4, 3, 4, 3,
5, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 2, 2, 2, 2, 2, 2,
2, 3, 3, 3, 3, 3, 3, 3, 3, 1,
1, 1, 1, 1, 1, 1
};
enum { YYENOMEM = -2 };
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYNOMEM goto yyexhaustedlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (&yylloc, context, YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Backward compatibility with an undocumented macro.
Use YYerror or YYUNDEF. */
#define YYERRCODE YYUNDEF
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
#ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT(Current, Rhs, N) \
do \
if (N) \
{ \
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
} \
else \
{ \
(Current).first_line = (Current).last_line = \
YYRHSLOC (Rhs, 0).last_line; \
(Current).first_column = (Current).last_column = \
YYRHSLOC (Rhs, 0).last_column; \
} \
while (0)
#endif
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
/* YYLOCATION_PRINT -- Print the location on the stream.
This macro was not mandated originally: define only if we know
we won't break user code: when these are the locations we know. */
# ifndef YYLOCATION_PRINT
# if defined YY_LOCATION_PRINT
/* Temporary convenience wrapper in case some people defined the
undocumented and private YY_LOCATION_PRINT macros. */
# define YYLOCATION_PRINT(File, Loc) YY_LOCATION_PRINT(File, *(Loc))
# elif defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
/* Print *YYLOCP on YYO. Private, do not rely on its existence. */
YY_ATTRIBUTE_UNUSED
static int
yy_location_print_ (FILE *yyo, YYLTYPE const * const yylocp)
{
int res = 0;
int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
if (0 <= yylocp->first_line)
{
res += YYFPRINTF (yyo, "%d", yylocp->first_line);
if (0 <= yylocp->first_column)
res += YYFPRINTF (yyo, ".%d", yylocp->first_column);
}
if (0 <= yylocp->last_line)
{
if (yylocp->first_line < yylocp->last_line)
{
res += YYFPRINTF (yyo, "-%d", yylocp->last_line);
if (0 <= end_col)
res += YYFPRINTF (yyo, ".%d", end_col);
}
else if (0 <= end_col && yylocp->first_column < end_col)
res += YYFPRINTF (yyo, "-%d", end_col);
}
return res;
}
# define YYLOCATION_PRINT yy_location_print_
/* Temporary convenience wrapper in case some people defined the
undocumented and private YY_LOCATION_PRINT macros. */
# define YY_LOCATION_PRINT(File, Loc) YYLOCATION_PRINT(File, &(Loc))
# else
# define YYLOCATION_PRINT(File, Loc) ((void) 0)
/* Temporary convenience wrapper in case some people defined the
undocumented and private YY_LOCATION_PRINT macros. */
# define YY_LOCATION_PRINT YYLOCATION_PRINT
# endif
# endif /* !defined YYLOCATION_PRINT */
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Kind, Value, Location, context); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*-----------------------------------.
| Print this symbol's value on YYO. |
`-----------------------------------*/
static void
yy_symbol_value_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, ParserContext* context)
{
FILE *yyoutput = yyo;
YY_USE (yyoutput);
YY_USE (yylocationp);
YY_USE (context);
if (!yyvaluep)
return;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*---------------------------.
| Print this symbol on YYO. |
`---------------------------*/
static void
yy_symbol_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp, ParserContext* context)
{
YYFPRINTF (yyo, "%s %s (",
yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));
YYLOCATION_PRINT (yyo, yylocationp);
YYFPRINTF (yyo, ": ");
yy_symbol_value_print (yyo, yykind, yyvaluep, yylocationp, context);
YYFPRINTF (yyo, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
static void
yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, YYLTYPE *yylsp,
int yyrule, ParserContext* context)
{
int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr,
YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
&yyvsp[(yyi + 1) - (yynrhs)],
&(yylsp[(yyi + 1) - (yynrhs)]), context);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, yylsp, Rule, context); \
} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args) ((void) 0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
/* Parser data structure. */
struct yypstate
{
/* Number of syntax errors so far. */
int yynerrs;
yy_state_fast_t yystate;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* Their size. */
YYPTRDIFF_T yystacksize;
/* The state stack: array, bottom, top. */
yy_state_t yyssa[YYINITDEPTH];
yy_state_t *yyss;
yy_state_t *yyssp;
/* The semantic value stack: array, bottom, top. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs;
YYSTYPE *yyvsp;
/* The location stack: array, bottom, top. */
YYLTYPE yylsa[YYINITDEPTH];
YYLTYPE *yyls;
YYLTYPE *yylsp;
/* Whether this instance has not started parsing yet.
* If 2, it corresponds to a finished parsing. */
int yynew;
};
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg,
yysymbol_kind_t yykind, YYSTYPE *yyvaluep, YYLTYPE *yylocationp, ParserContext* context)
{
YY_USE (yyvaluep);
YY_USE (yylocationp);
YY_USE (context);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YY_USE (yykind);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
#define yynerrs yyps->yynerrs
#define yystate yyps->yystate
#define yyerrstatus yyps->yyerrstatus
#define yyssa yyps->yyssa
#define yyss yyps->yyss
#define yyssp yyps->yyssp
#define yyvsa yyps->yyvsa
#define yyvs yyps->yyvs
#define yyvsp yyps->yyvsp
#define yylsa yyps->yylsa
#define yyls yyps->yyls
#define yylsp yyps->yylsp
#define yystacksize yyps->yystacksize
/* Initialize the parser data structure. */
static void
yypstate_clear (yypstate *yyps)
{
yynerrs = 0;
yystate = 0;
yyerrstatus = 0;
yyssp = yyss;
yyvsp = yyvs;
yylsp = yyls;
/* Initialize the state stack, in case yypcontext_expected_tokens is
called before the first call to yyparse. */
*yyssp = 0;
yyps->yynew = 1;
}
/* Initialize the parser data structure. */
yypstate *
yypstate_new (void)
{
yypstate *yyps;
yyps = YY_CAST (yypstate *, YYMALLOC (sizeof *yyps));
if (!yyps)
return YY_NULLPTR;
yystacksize = YYINITDEPTH;
yyss = yyssa;
yyvs = yyvsa;
yyls = yylsa;
yypstate_clear (yyps);
return yyps;
}
void
yypstate_delete (yypstate *yyps)
{
if (yyps)
{
#ifndef yyoverflow
/* If the stack was reallocated but the parse did not complete, then the
stack still needs to be freed. */
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
YYFREE (yyps);
}
}
/*---------------.
| yypush_parse. |
`---------------*/
int
yypush_parse (yypstate *yyps,
int yypushed_char, YYSTYPE const *yypushed_val, YYLTYPE *yypushed_loc, ParserContext* context)
{
/* Lookahead token kind. */
int yychar;
/* The semantic value of the lookahead symbol. */
/* Default value used for initialization, for pacifying older GCCs
or non-GCC compilers. */
YY_INITIAL_VALUE (static YYSTYPE yyval_default;)
YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
/* Location data for the lookahead symbol. */
static YYLTYPE yyloc_default
# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
= { 1, 1, 1, 1 }
# endif
;
YYLTYPE yylloc = yyloc_default;
int yyn;
/* The return value of yyparse. */
int yyresult;
/* Lookahead symbol kind. */
yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
YYLTYPE yyloc;
/* The locations where the error started and ended. */
YYLTYPE yyerror_range[3];
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
switch (yyps->yynew)
{
case 0:
yyn = yypact[yystate];
goto yyread_pushed_token;
case 2:
yypstate_clear (yyps);
break;
default:
break;
}
YYDPRINTF ((stderr, "Starting parse\n"));
yychar = YYEMPTY; /* Cause a token to be read. */
yylsp[0] = *yypushed_loc;
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/*--------------------------------------------------------------------.
| yysetstate -- set current state (the top of the stack) to yystate. |
`--------------------------------------------------------------------*/
yysetstate:
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
YY_IGNORE_USELESS_CAST_BEGIN
*yyssp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
YY_STACK_PRINT (yyss, yyssp);
if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
YYNOMEM;
#else
{
/* Get the current used size of the three stacks, in elements. */
YYPTRDIFF_T yysize = yyssp - yyss + 1;
# if defined yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
yy_state_t *yyss1 = yyss;
YYSTYPE *yyvs1 = yyvs;
YYLTYPE *yyls1 = yyls;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * YYSIZEOF (*yyssp),
&yyvs1, yysize * YYSIZEOF (*yyvsp),
&yyls1, yysize * YYSIZEOF (*yylsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
yyls = yyls1;
}
# else /* defined YYSTACK_RELOCATE */
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
YYNOMEM;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yy_state_t *yyss1 = yyss;
union yyalloc *yyptr =
YY_CAST (union yyalloc *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
if (! yyptr)
YYNOMEM;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
YYSTACK_RELOCATE (yyls_alloc, yyls);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
yylsp = yyls + yysize - 1;
YY_IGNORE_USELESS_CAST_BEGIN
YYDPRINTF ((stderr, "Stack size increased to %ld\n",
YY_CAST (long, yystacksize)));
YY_IGNORE_USELESS_CAST_END
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either empty, or end-of-input, or a valid lookahead. */
if (yychar == YYEMPTY)
{
if (!yyps->yynew)
{
YYDPRINTF ((stderr, "Return for a new token:\n"));
yyresult = YYPUSH_MORE;
goto yypushreturn;
}
yyps->yynew = 0;
yyread_pushed_token:
YYDPRINTF ((stderr, "Reading a token\n"));
yychar = yypushed_char;
if (yypushed_val)
yylval = *yypushed_val;
if (yypushed_loc)
yylloc = *yypushed_loc;
}
if (yychar <= YYEOF)
{
yychar = YYEOF;
yytoken = YYSYMBOL_YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else if (yychar == YYerror)
{
/* The scanner already issued an error message, process directly
to error recovery. But do not keep the error token as
lookahead, it is too special and may lead us to an endless
loop in error recovery. */
yychar = YYUNDEF;
yytoken = YYSYMBOL_YYerror;
yyerror_range[1] = yylloc;
goto yyerrlab1;
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
*++yylsp = yylloc;
/* Discard the shifted token. */
yychar = YYEMPTY;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
/* Default location. */
YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
yyerror_range[1] = yyloc;
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 2: /* program: toplevel_stmt_ls */
#line 518 "chapel.ypp"
{ yyblock = (yyval.pblockstmt); }
#line 6612 "bison-chapel.cpp"
break;
case 3: /* toplevel_stmt_ls: %empty */
#line 523 "chapel.ypp"
{ (yyval.pblockstmt) = new BlockStmt(); resetTempID(); }
#line 6618 "bison-chapel.cpp"
break;
case 4: /* toplevel_stmt_ls: toplevel_stmt_ls toplevel_stmt */
#line 524 "chapel.ypp"
{ (yyvsp[-1].pblockstmt)->appendChapelStmt((yyvsp[0].pblockstmt)); context->generatedStmt = (yyvsp[-1].pblockstmt); resetTempID(); }
#line 6624 "bison-chapel.cpp"
break;
case 6: /* toplevel_stmt: pragma_ls stmt */
#line 531 "chapel.ypp"
{ (yyval.pblockstmt) = buildPragmaStmt( (yyvsp[-1].vpch), (yyvsp[0].pblockstmt) ); }
#line 6630 "bison-chapel.cpp"
break;
case 7: /* pragma_ls: TPRAGMA STRINGLITERAL */
#line 536 "chapel.ypp"
{ (yyval.vpch) = new Vec<const char*>(); (yyval.vpch)->add(astr((yyvsp[0].pch))); }
#line 6636 "bison-chapel.cpp"
break;
case 8: /* pragma_ls: pragma_ls TPRAGMA STRINGLITERAL */
#line 537 "chapel.ypp"
{ (yyvsp[-2].vpch)->add(astr((yyvsp[0].pch))); }
#line 6642 "bison-chapel.cpp"
break;
case 22: /* stmt: TATOMIC stmt */
#line 555 "chapel.ypp"
{ (yyval.pblockstmt) = buildAtomicStmt((yyvsp[0].pblockstmt)); }
#line 6648 "bison-chapel.cpp"
break;
case 23: /* stmt: TBREAK opt_label_ident TSEMI */
#line 556 "chapel.ypp"
{ (yyval.pblockstmt) = buildGotoStmt(GOTO_BREAK, (yyvsp[-1].pch)); }
#line 6654 "bison-chapel.cpp"
break;
case 24: /* stmt: TCONTINUE opt_label_ident TSEMI */
#line 557 "chapel.ypp"
{ (yyval.pblockstmt) = buildGotoStmt(GOTO_CONTINUE, (yyvsp[-1].pch)); }
#line 6660 "bison-chapel.cpp"
break;
case 25: /* stmt: TLABEL ident_def stmt */
#line 558 "chapel.ypp"
{ (yyval.pblockstmt) = buildLabelStmt((yyvsp[-1].pch), (yyvsp[0].pblockstmt)); }
#line 6666 "bison-chapel.cpp"
break;
case 26: /* stmt: TYIELD expr TSEMI */
#line 559 "chapel.ypp"
{ (yyval.pblockstmt) = buildPrimitiveStmt(PRIM_YIELD, (yyvsp[-1].pexpr)); }
#line 6672 "bison-chapel.cpp"
break;
case 27: /* stmt: error TSEMI */
#line 560 "chapel.ypp"
{ (yyval.pblockstmt) = buildErrorStandin(); }
#line 6678 "bison-chapel.cpp"
break;
case 34: /* tryable_stmt: stmt_level_expr TSEMI */
#line 570 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt((yyvsp[-1].pexpr)); }
#line 6684 "bison-chapel.cpp"
break;
case 35: /* tryable_stmt: TBEGIN opt_task_intent_ls stmt */
#line 571 "chapel.ypp"
{ (yyval.pblockstmt) = buildBeginStmt((yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt)); }
#line 6690 "bison-chapel.cpp"
break;
case 36: /* tryable_stmt: TCOBEGIN opt_task_intent_ls block_stmt */
#line 572 "chapel.ypp"
{ (yyval.pblockstmt) = buildCobeginStmt((yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt)); }
#line 6696 "bison-chapel.cpp"
break;
case 37: /* tryable_stmt: TDELETE simple_expr_ls TSEMI */
#line 573 "chapel.ypp"
{ (yyval.pblockstmt) = buildDeleteStmt((yyvsp[-1].pcallexpr)); }
#line 6702 "bison-chapel.cpp"
break;
case 38: /* tryable_stmt: TLOCAL expr do_stmt */
#line 574 "chapel.ypp"
{ (yyval.pblockstmt) = buildLocalStmt((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 6708 "bison-chapel.cpp"
break;
case 39: /* tryable_stmt: TLOCAL do_stmt */
#line 575 "chapel.ypp"
{ (yyval.pblockstmt) = buildLocalStmt((yyvsp[0].pblockstmt)); }
#line 6714 "bison-chapel.cpp"
break;
case 40: /* tryable_stmt: TON expr do_stmt */
#line 576 "chapel.ypp"
{ (yyval.pblockstmt) = buildOnStmt((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 6720 "bison-chapel.cpp"
break;
case 41: /* tryable_stmt: TSERIAL expr do_stmt */
#line 577 "chapel.ypp"
{ (yyval.pblockstmt) = buildSerialStmt((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 6726 "bison-chapel.cpp"
break;
case 42: /* tryable_stmt: TSERIAL do_stmt */
#line 578 "chapel.ypp"
{ (yyval.pblockstmt) = buildSerialStmt(new SymExpr(gTrue), (yyvsp[0].pblockstmt)); }
#line 6732 "bison-chapel.cpp"
break;
case 43: /* tryable_stmt: TSYNC stmt */
#line 579 "chapel.ypp"
{ (yyval.pblockstmt) = buildSyncStmt((yyvsp[0].pblockstmt)); }
#line 6738 "bison-chapel.cpp"
break;
case 45: /* deprecated_decl_stmt: TDEPRECATED STRINGLITERAL deprecated_decl_base */
#line 585 "chapel.ypp"
{ (yyval.pblockstmt) = buildDeprecated((yyvsp[0].pblockstmt), (yyvsp[-1].pch)); }
#line 6744 "bison-chapel.cpp"
break;
case 46: /* deprecated_decl_stmt: TDEPRECATED deprecated_decl_base */
#line 587 "chapel.ypp"
{ (yyval.pblockstmt) = buildDeprecated((yyvsp[0].pblockstmt)); }
#line 6750 "bison-chapel.cpp"
break;
case 49: /* module_decl_start: access_control opt_prototype TMODULE ident_def */
#line 597 "chapel.ypp"
{
(yyval.pmodsymbol) = buildModule((yyvsp[0].pch), currentModuleType, NULL, yyfilename, (yyvsp[-3].b), (yyvsp[-2].b), (yylsp[-3]).comment);
// store previous module name in order to restore it once we're
// done with this module in module_decl_stmt below. Ultimately,
// we will need to store a stack of module names in order to
// support full module path resolution of -s config flags.
(yyloc).prevModule = currentModuleName;
currentModuleName = (yyvsp[0].pch);
}
#line 6764 "bison-chapel.cpp"
break;
case 50: /* module_decl_stmt: module_decl_start TLCBR TRCBR */
#line 610 "chapel.ypp"
{ (yyvsp[-2].pmodsymbol)->block = new BlockStmt();
(yyval.pblockstmt) = buildChapelStmt(new DefExpr((yyvsp[-2].pmodsymbol)));
currentModuleName = (yylsp[-2]).prevModule; // restore previous module name
}
#line 6773 "bison-chapel.cpp"
break;
case 51: /* module_decl_stmt: module_decl_start TLCBR stmt_ls TRCBR */
#line 615 "chapel.ypp"
{ (yyvsp[-3].pmodsymbol)->block = (yyvsp[-1].pblockstmt);
(yyval.pblockstmt) = buildChapelStmt(new DefExpr((yyvsp[-3].pmodsymbol)));
currentModuleName = (yylsp[-3]).prevModule; // restore previous module name
}
#line 6782 "bison-chapel.cpp"
break;
case 52: /* module_decl_stmt: module_decl_start TLCBR error TRCBR */
#line 620 "chapel.ypp"
{ (yyvsp[-3].pmodsymbol)->block = buildErrorStandin();
(yyval.pblockstmt) = buildChapelStmt(new DefExpr((yyvsp[-3].pmodsymbol)));
currentModuleName = (yylsp[-3]).prevModule; // restore previous module name
}
#line 6791 "bison-chapel.cpp"
break;
case 53: /* access_control: %empty */
#line 627 "chapel.ypp"
{ (yyval.b) = false; (yyloc).comment = context->latestComment; context->latestComment = NULL; }
#line 6797 "bison-chapel.cpp"
break;
case 54: /* access_control: TPUBLIC */
#line 628 "chapel.ypp"
{ (yyval.b) = false; (yyloc).comment = context->latestComment; context->latestComment = NULL; }
#line 6803 "bison-chapel.cpp"
break;
case 55: /* access_control: TPRIVATE */
#line 629 "chapel.ypp"
{ (yyval.b) = true; (yyloc).comment = context->latestComment; context->latestComment = NULL; }
#line 6809 "bison-chapel.cpp"
break;
case 56: /* opt_prototype: %empty */
#line 633 "chapel.ypp"
{ (yyval.b) = false; }
#line 6815 "bison-chapel.cpp"
break;
case 57: /* opt_prototype: TPROTOTYPE */
#line 634 "chapel.ypp"
{ (yyval.b) = true; }
#line 6821 "bison-chapel.cpp"
break;
case 58: /* include_access_control: %empty */
#line 638 "chapel.ypp"
{ (yyval.b) = false; }
#line 6827 "bison-chapel.cpp"
break;
case 59: /* include_access_control: TPUBLIC */
#line 639 "chapel.ypp"
{ (yyval.b) = false; }
#line 6833 "bison-chapel.cpp"
break;
case 60: /* include_access_control: TPRIVATE */
#line 640 "chapel.ypp"
{ (yyval.b) = true; }
#line 6839 "bison-chapel.cpp"
break;
case 61: /* $@1: %empty */
#line 645 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 6848 "bison-chapel.cpp"
break;
case 62: /* include_module_stmt: TINCLUDE $@1 include_access_control opt_prototype TMODULE ident_def TSEMI */
#line 650 "chapel.ypp"
{
(yyval.pblockstmt) = buildIncludeModule((yyvsp[-1].pch), (yyvsp[-4].b), (yyvsp[-3].b), (yylsp[-6]).comment);
}
#line 6856 "bison-chapel.cpp"
break;
case 63: /* block_stmt: TLCBR TRCBR */
#line 665 "chapel.ypp"
{ (yyval.pblockstmt) = new BlockStmt(); }
#line 6862 "bison-chapel.cpp"
break;
case 64: /* block_stmt: TLCBR stmt_ls TRCBR */
#line 666 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[-1].pblockstmt); }
#line 6868 "bison-chapel.cpp"
break;
case 65: /* block_stmt: TLCBR error TRCBR */
#line 667 "chapel.ypp"
{ (yyval.pblockstmt) = buildErrorStandin(); }
#line 6874 "bison-chapel.cpp"
break;
case 66: /* stmt_ls: toplevel_stmt */
#line 672 "chapel.ypp"
{ (yyval.pblockstmt) = new BlockStmt(); (yyval.pblockstmt)->appendChapelStmt((yyvsp[0].pblockstmt)); }
#line 6880 "bison-chapel.cpp"
break;
case 67: /* stmt_ls: stmt_ls toplevel_stmt */
#line 673 "chapel.ypp"
{ (yyvsp[-1].pblockstmt)->appendChapelStmt((yyvsp[0].pblockstmt)); }
#line 6886 "bison-chapel.cpp"
break;
case 68: /* renames_ls: expr */
#line 678 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = (yyvsp[0].pexpr);
(yyval.ponlylist)->push_back(cur); }
#line 6896 "bison-chapel.cpp"
break;
case 69: /* renames_ls: all_op_name */
#line 683 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = new UnresolvedSymExpr((yyvsp[0].pch));
(yyval.ponlylist)->push_back(cur); }
#line 6906 "bison-chapel.cpp"
break;
case 70: /* renames_ls: expr TAS expr */
#line 688 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::DOUBLE;
cur->renamed = new std::pair<Expr*, Expr*>((yyvsp[-2].pexpr), (yyvsp[0].pexpr));
(yyval.ponlylist)->push_back(cur); }
#line 6916 "bison-chapel.cpp"
break;
case 71: /* renames_ls: renames_ls TCOMMA expr */
#line 693 "chapel.ypp"
{ PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = (yyvsp[0].pexpr);
(yyvsp[-2].ponlylist)->push_back(cur); }
#line 6925 "bison-chapel.cpp"
break;
case 72: /* renames_ls: renames_ls TCOMMA all_op_name */
#line 697 "chapel.ypp"
{ PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = new UnresolvedSymExpr((yyvsp[0].pch));
(yyvsp[-2].ponlylist)->push_back(cur); }
#line 6934 "bison-chapel.cpp"
break;
case 73: /* renames_ls: renames_ls TCOMMA expr TAS expr */
#line 701 "chapel.ypp"
{ PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::DOUBLE;
cur->renamed = new std::pair<Expr*, Expr*>((yyvsp[-2].pexpr), (yyvsp[0].pexpr));
(yyvsp[-4].ponlylist)->push_back(cur); }
#line 6943 "bison-chapel.cpp"
break;
case 74: /* use_renames_ls: expr */
#line 710 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = (yyvsp[0].pexpr);
(yyval.ponlylist)->push_back(cur); }
#line 6953 "bison-chapel.cpp"
break;
case 75: /* use_renames_ls: expr TAS expr */
#line 715 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::DOUBLE;
cur->renamed = new std::pair<Expr*, Expr*>((yyvsp[-2].pexpr), (yyvsp[0].pexpr));
(yyval.ponlylist)->push_back(cur); }
#line 6963 "bison-chapel.cpp"
break;
case 76: /* use_renames_ls: expr TAS TUNDERSCORE */
#line 720 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::DOUBLE;
cur->renamed = new std::pair<Expr*, Expr*>((yyvsp[-2].pexpr), new UnresolvedSymExpr("_"));
(yyval.ponlylist)->push_back(cur); }
#line 6973 "bison-chapel.cpp"
break;
case 77: /* use_renames_ls: use_renames_ls TCOMMA expr */
#line 725 "chapel.ypp"
{ PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = (yyvsp[0].pexpr);
(yyvsp[-2].ponlylist)->push_back(cur); }
#line 6982 "bison-chapel.cpp"
break;
case 78: /* use_renames_ls: use_renames_ls TCOMMA expr TAS expr */
#line 729 "chapel.ypp"
{ PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::DOUBLE;
cur->renamed = new std::pair<Expr*, Expr*>((yyvsp[-2].pexpr), (yyvsp[0].pexpr));
(yyvsp[-4].ponlylist)->push_back(cur); }
#line 6991 "bison-chapel.cpp"
break;
case 79: /* use_renames_ls: use_renames_ls TCOMMA expr TAS TUNDERSCORE */
#line 733 "chapel.ypp"
{ PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::DOUBLE;
cur->renamed = new std::pair<Expr*, Expr*>((yyvsp[-2].pexpr), new UnresolvedSymExpr("_"));
(yyvsp[-4].ponlylist)->push_back(cur); }
#line 7000 "bison-chapel.cpp"
break;
case 80: /* opt_only_ls: %empty */
#line 741 "chapel.ypp"
{ (yyval.ponlylist) = new std::vector<PotentialRename*>();
PotentialRename* cur = new PotentialRename();
cur->tag = PotentialRename::SINGLE;
cur->elem = new UnresolvedSymExpr("");
(yyval.ponlylist)->push_back(cur); }
#line 7010 "bison-chapel.cpp"
break;
case 82: /* use_access_control: %empty */
#line 750 "chapel.ypp"
{ (yyval.b) = true; }
#line 7016 "bison-chapel.cpp"
break;
case 83: /* use_access_control: TPUBLIC */
#line 751 "chapel.ypp"
{ (yyval.b) = false; }
#line 7022 "bison-chapel.cpp"
break;
case 84: /* use_access_control: TPRIVATE */
#line 752 "chapel.ypp"
{ (yyval.b) = true; }
#line 7028 "bison-chapel.cpp"
break;
case 85: /* use_stmt: use_access_control TUSE use_renames_ls TSEMI */
#line 756 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-1].ponlylist), (yyvsp[-3].b)); }
#line 7034 "bison-chapel.cpp"
break;
case 86: /* use_stmt: use_access_control TUSE expr TEXCEPT renames_ls TSEMI */
#line 757 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-3].pexpr), "", (yyvsp[-1].ponlylist), true, (yyvsp[-5].b)); }
#line 7040 "bison-chapel.cpp"
break;
case 87: /* use_stmt: use_access_control TUSE expr TAS expr TEXCEPT renames_ls TSEMI */
#line 758 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-5].pexpr), (yyvsp[-3].pexpr), (yyvsp[-1].ponlylist), true, (yyvsp[-7].b)); }
#line 7046 "bison-chapel.cpp"
break;
case 88: /* use_stmt: use_access_control TUSE expr TAS TUNDERSCORE TEXCEPT renames_ls TSEMI */
#line 759 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-5].pexpr), new UnresolvedSymExpr("_"), (yyvsp[-1].ponlylist), true, (yyvsp[-7].b)); }
#line 7052 "bison-chapel.cpp"
break;
case 89: /* use_stmt: use_access_control TUSE expr TONLY opt_only_ls TSEMI */
#line 760 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-3].pexpr), "", (yyvsp[-1].ponlylist), false, (yyvsp[-5].b)); }
#line 7058 "bison-chapel.cpp"
break;
case 90: /* use_stmt: use_access_control TUSE expr TAS expr TONLY opt_only_ls TSEMI */
#line 761 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-5].pexpr), (yyvsp[-3].pexpr), (yyvsp[-1].ponlylist), false, (yyvsp[-7].b)); }
#line 7064 "bison-chapel.cpp"
break;
case 91: /* use_stmt: use_access_control TUSE expr TAS TUNDERSCORE TONLY opt_only_ls TSEMI */
#line 762 "chapel.ypp"
{ (yyval.pblockstmt) = buildUseStmt((yyvsp[-5].pexpr), new UnresolvedSymExpr("_"), (yyvsp[-1].ponlylist), false, (yyvsp[-7].b)); }
#line 7070 "bison-chapel.cpp"
break;
case 92: /* import_stmt: use_access_control TIMPORT import_ls TSEMI */
#line 766 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[-1].pblockstmt);
setImportPrivacy((yyval.pblockstmt), (yyvsp[-3].b));}
#line 7077 "bison-chapel.cpp"
break;
case 93: /* import_expr: expr */
#line 771 "chapel.ypp"
{ (yyval.pimportstmt) = buildImportStmt((yyvsp[0].pexpr)); }
#line 7083 "bison-chapel.cpp"
break;
case 94: /* import_expr: expr TDOT all_op_name */
#line 772 "chapel.ypp"
{ std::vector<PotentialRename*>* renames = new std::vector<PotentialRename*>();
PotentialRename* nameInMod = new PotentialRename();
nameInMod->tag = PotentialRename::SINGLE;
nameInMod->elem = new UnresolvedSymExpr((yyvsp[0].pch));
renames->push_back(nameInMod);
(yyval.pimportstmt) = buildImportStmt((yyvsp[-2].pexpr), renames); }
#line 7094 "bison-chapel.cpp"
break;
case 95: /* import_expr: expr TAS ident_use */
#line 778 "chapel.ypp"
{ (yyval.pimportstmt) = buildImportStmt((yyvsp[-2].pexpr), (yyvsp[0].pch)); }
#line 7100 "bison-chapel.cpp"
break;
case 96: /* import_expr: expr TDOT TLCBR renames_ls TRCBR */
#line 779 "chapel.ypp"
{ (yyval.pimportstmt) = buildImportStmt((yyvsp[-4].pexpr), (yyvsp[-1].ponlylist)); }
#line 7106 "bison-chapel.cpp"
break;
case 97: /* import_ls: import_expr */
#line 783 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt((yyvsp[0].pimportstmt)); }
#line 7112 "bison-chapel.cpp"
break;
case 98: /* import_ls: import_ls TCOMMA import_expr */
#line 784 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[-2].pblockstmt); (yyval.pblockstmt)->insertAtTail((yyvsp[0].pimportstmt)); }
#line 7118 "bison-chapel.cpp"
break;
case 99: /* require_stmt: TREQUIRE expr_ls TSEMI */
#line 788 "chapel.ypp"
{ (yyval.pblockstmt) = buildRequireStmt((yyvsp[-1].pcallexpr)); }
#line 7124 "bison-chapel.cpp"
break;
case 100: /* assignment_stmt: lhs_expr assignop_ident opt_try_expr TSEMI */
#line 793 "chapel.ypp"
{ (yyval.pblockstmt) = buildAssignment((yyvsp[-3].pexpr), (yyvsp[-1].pexpr), (yyvsp[-2].pch)); }
#line 7130 "bison-chapel.cpp"
break;
case 101: /* assignment_stmt: lhs_expr TSWAP opt_try_expr TSEMI */
#line 795 "chapel.ypp"
{ (yyval.pblockstmt) = buildAssignment((yyvsp[-3].pexpr), (yyvsp[-1].pexpr), "<=>"); }
#line 7136 "bison-chapel.cpp"
break;
case 102: /* assignment_stmt: lhs_expr TASSIGNREDUCE opt_try_expr TSEMI */
#line 797 "chapel.ypp"
{ (yyval.pblockstmt) = buildAssignment((yyvsp[-3].pexpr), (yyvsp[-1].pexpr), PRIM_REDUCE_ASSIGN); }
#line 7142 "bison-chapel.cpp"
break;
case 103: /* assignment_stmt: lhs_expr TASSIGNLAND opt_try_expr TSEMI */
#line 799 "chapel.ypp"
{ (yyval.pblockstmt) = buildLAndAssignment((yyvsp[-3].pexpr), (yyvsp[-1].pexpr)); }
#line 7148 "bison-chapel.cpp"
break;
case 104: /* assignment_stmt: lhs_expr TASSIGNLOR opt_try_expr TSEMI */
#line 801 "chapel.ypp"
{ (yyval.pblockstmt) = buildLOrAssignment((yyvsp[-3].pexpr), (yyvsp[-1].pexpr)); }
#line 7154 "bison-chapel.cpp"
break;
case 105: /* assignment_stmt: lhs_expr TASSIGN TNOINIT TSEMI */
#line 803 "chapel.ypp"
{ (yyval.pblockstmt) = buildAssignment((yyvsp[-3].pexpr), new SymExpr(gNoInit), "="); }
#line 7160 "bison-chapel.cpp"
break;
case 106: /* opt_label_ident: %empty */
#line 809 "chapel.ypp"
{ (yyval.pch) = NULL; }
#line 7166 "bison-chapel.cpp"
break;
case 107: /* opt_label_ident: TIDENT */
#line 810 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 7172 "bison-chapel.cpp"
break;
case 108: /* ident_fn_def: TIDENT */
#line 814 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 7178 "bison-chapel.cpp"
break;
case 109: /* ident_fn_def: TNONE */
#line 815 "chapel.ypp"
{ (yyval.pch) = "none"; redefiningReservedWordError((yyval.pch)); }
#line 7184 "bison-chapel.cpp"
break;
case 110: /* ident_fn_def: TTHIS */
#line 816 "chapel.ypp"
{ (yyval.pch) = "this"; }
#line 7190 "bison-chapel.cpp"
break;
case 111: /* ident_fn_def: TFALSE */
#line 817 "chapel.ypp"
{ (yyval.pch) = "false"; redefiningReservedWordError((yyval.pch)); }
#line 7196 "bison-chapel.cpp"
break;
case 112: /* ident_fn_def: TTRUE */
#line 818 "chapel.ypp"
{ (yyval.pch) = "true"; redefiningReservedWordError((yyval.pch)); }
#line 7202 "bison-chapel.cpp"
break;
case 113: /* ident_fn_def: internal_type_ident_def */
#line 819 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); redefiningReservedTypeError((yyvsp[0].pch)); }
#line 7208 "bison-chapel.cpp"
break;
case 114: /* ident_def: TIDENT */
#line 822 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 7214 "bison-chapel.cpp"
break;
case 115: /* ident_def: TNONE */
#line 823 "chapel.ypp"
{ (yyval.pch) = "none"; redefiningReservedWordError((yyval.pch)); }
#line 7220 "bison-chapel.cpp"
break;
case 116: /* ident_def: TTHIS */
#line 824 "chapel.ypp"
{ (yyval.pch) = "this"; redefiningReservedWordError((yyval.pch)); }
#line 7226 "bison-chapel.cpp"
break;
case 117: /* ident_def: TFALSE */
#line 825 "chapel.ypp"
{ (yyval.pch) = "false"; redefiningReservedWordError((yyval.pch)); }
#line 7232 "bison-chapel.cpp"
break;
case 118: /* ident_def: TTRUE */
#line 826 "chapel.ypp"
{ (yyval.pch) = "true"; redefiningReservedWordError((yyval.pch)); }
#line 7238 "bison-chapel.cpp"
break;
case 119: /* ident_def: internal_type_ident_def */
#line 827 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); redefiningReservedTypeError((yyvsp[0].pch)); }
#line 7244 "bison-chapel.cpp"
break;
case 120: /* ident_use: TIDENT */
#line 839 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 7250 "bison-chapel.cpp"
break;
case 121: /* ident_use: TTHIS */
#line 840 "chapel.ypp"
{ (yyval.pch) = "this"; }
#line 7256 "bison-chapel.cpp"
break;
case 122: /* internal_type_ident_def: TBOOL */
#line 851 "chapel.ypp"
{ (yyval.pch) = "bool"; }
#line 7262 "bison-chapel.cpp"
break;
case 123: /* internal_type_ident_def: TINT */
#line 852 "chapel.ypp"
{ (yyval.pch) = "int"; }
#line 7268 "bison-chapel.cpp"
break;
case 124: /* internal_type_ident_def: TUINT */
#line 853 "chapel.ypp"
{ (yyval.pch) = "uint"; }
#line 7274 "bison-chapel.cpp"
break;
case 125: /* internal_type_ident_def: TREAL */
#line 854 "chapel.ypp"
{ (yyval.pch) = "real"; }
#line 7280 "bison-chapel.cpp"
break;
case 126: /* internal_type_ident_def: TIMAG */
#line 855 "chapel.ypp"
{ (yyval.pch) = "imag"; }
#line 7286 "bison-chapel.cpp"
break;
case 127: /* internal_type_ident_def: TCOMPLEX */
#line 856 "chapel.ypp"
{ (yyval.pch) = "complex"; }
#line 7292 "bison-chapel.cpp"
break;
case 128: /* internal_type_ident_def: TBYTES */
#line 857 "chapel.ypp"
{ (yyval.pch) = "bytes"; }
#line 7298 "bison-chapel.cpp"
break;
case 129: /* internal_type_ident_def: TSTRING */
#line 858 "chapel.ypp"
{ (yyval.pch) = "string"; }
#line 7304 "bison-chapel.cpp"
break;
case 130: /* internal_type_ident_def: TSYNC */
#line 859 "chapel.ypp"
{ (yyval.pch) = "sync"; }
#line 7310 "bison-chapel.cpp"
break;
case 131: /* internal_type_ident_def: TSINGLE */
#line 860 "chapel.ypp"
{ (yyval.pch) = "single"; }
#line 7316 "bison-chapel.cpp"
break;
case 132: /* internal_type_ident_def: TOWNED */
#line 861 "chapel.ypp"
{ (yyval.pch) = "owned"; }
#line 7322 "bison-chapel.cpp"
break;
case 133: /* internal_type_ident_def: TSHARED */
#line 862 "chapel.ypp"
{ (yyval.pch) = "shared"; }
#line 7328 "bison-chapel.cpp"
break;
case 134: /* internal_type_ident_def: TBORROWED */
#line 863 "chapel.ypp"
{ (yyval.pch) = "borrowed"; }
#line 7334 "bison-chapel.cpp"
break;
case 135: /* internal_type_ident_def: TUNMANAGED */
#line 864 "chapel.ypp"
{ (yyval.pch) = "unmanaged"; }
#line 7340 "bison-chapel.cpp"
break;
case 136: /* internal_type_ident_def: TDOMAIN */
#line 865 "chapel.ypp"
{ (yyval.pch) = "domain"; }
#line 7346 "bison-chapel.cpp"
break;
case 137: /* internal_type_ident_def: TINDEX */
#line 866 "chapel.ypp"
{ (yyval.pch) = "index"; }
#line 7352 "bison-chapel.cpp"
break;
case 138: /* internal_type_ident_def: TLOCALE */
#line 867 "chapel.ypp"
{ (yyval.pch) = "locale"; }
#line 7358 "bison-chapel.cpp"
break;
case 139: /* internal_type_ident_def: TNOTHING */
#line 868 "chapel.ypp"
{ (yyval.pch) = "nothing"; }
#line 7364 "bison-chapel.cpp"
break;
case 140: /* internal_type_ident_def: TVOID */
#line 869 "chapel.ypp"
{ (yyval.pch) = "void"; }
#line 7370 "bison-chapel.cpp"
break;
case 141: /* scalar_type: TBOOL */
#line 873 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtBools[BOOL_SIZE_DEFAULT]->symbol); }
#line 7376 "bison-chapel.cpp"
break;
case 142: /* scalar_type: TENUM */
#line 874 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtAnyEnumerated->symbol); }
#line 7382 "bison-chapel.cpp"
break;
case 143: /* scalar_type: TINT */
#line 875 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtInt[INT_SIZE_DEFAULT]->symbol); }
#line 7388 "bison-chapel.cpp"
break;
case 144: /* scalar_type: TUINT */
#line 876 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtUInt[INT_SIZE_DEFAULT]->symbol); }
#line 7394 "bison-chapel.cpp"
break;
case 145: /* scalar_type: TREAL */
#line 877 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtReal[FLOAT_SIZE_DEFAULT]->symbol); }
#line 7400 "bison-chapel.cpp"
break;
case 146: /* scalar_type: TIMAG */
#line 878 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtImag[FLOAT_SIZE_DEFAULT]->symbol); }
#line 7406 "bison-chapel.cpp"
break;
case 147: /* scalar_type: TCOMPLEX */
#line 879 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtComplex[COMPLEX_SIZE_DEFAULT]->symbol); }
#line 7412 "bison-chapel.cpp"
break;
case 148: /* scalar_type: TBYTES */
#line 880 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtBytes->symbol); }
#line 7418 "bison-chapel.cpp"
break;
case 149: /* scalar_type: TSTRING */
#line 881 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtString->symbol); }
#line 7424 "bison-chapel.cpp"
break;
case 150: /* scalar_type: TLOCALE */
#line 882 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtLocale->symbol); }
#line 7430 "bison-chapel.cpp"
break;
case 151: /* scalar_type: TNOTHING */
#line 883 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtNothing->symbol); }
#line 7436 "bison-chapel.cpp"
break;
case 152: /* scalar_type: TVOID */
#line 884 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtVoid->symbol); }
#line 7442 "bison-chapel.cpp"
break;
case 153: /* reserved_type_ident_use: TSYNC */
#line 891 "chapel.ypp"
{ (yyval.pch) = "_syncvar"; }
#line 7448 "bison-chapel.cpp"
break;
case 154: /* reserved_type_ident_use: TSINGLE */
#line 892 "chapel.ypp"
{ (yyval.pch) = "_singlevar"; }
#line 7454 "bison-chapel.cpp"
break;
case 155: /* reserved_type_ident_use: TDOMAIN */
#line 893 "chapel.ypp"
{ (yyval.pch) = "_domain"; }
#line 7460 "bison-chapel.cpp"
break;
case 156: /* reserved_type_ident_use: TINDEX */
#line 894 "chapel.ypp"
{ (yyval.pch) = "_index"; }
#line 7466 "bison-chapel.cpp"
break;
case 157: /* do_stmt: TDO stmt */
#line 898 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[0].pblockstmt); }
#line 7472 "bison-chapel.cpp"
break;
case 158: /* do_stmt: block_stmt */
#line 899 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[0].pblockstmt); }
#line 7478 "bison-chapel.cpp"
break;
case 159: /* return_stmt: TRETURN TSEMI */
#line 903 "chapel.ypp"
{ (yyval.pblockstmt) = buildPrimitiveStmt(PRIM_RETURN); }
#line 7484 "bison-chapel.cpp"
break;
case 160: /* return_stmt: TRETURN opt_try_expr TSEMI */
#line 904 "chapel.ypp"
{ (yyval.pblockstmt) = buildPrimitiveStmt(PRIM_RETURN, (yyvsp[-1].pexpr)); }
#line 7490 "bison-chapel.cpp"
break;
case 161: /* manager_expr: expr TAS var_decl_type ident_def */
#line 908 "chapel.ypp"
{ (yyval.pblockstmt) = buildManagerBlock((yyvsp[-3].pexpr), (yyvsp[-1].pflagset), (yyvsp[0].pch)); }
#line 7496 "bison-chapel.cpp"
break;
case 162: /* manager_expr: expr TAS ident_def */
#line 909 "chapel.ypp"
{ (yyval.pblockstmt) = buildManagerBlock((yyvsp[-2].pexpr), NULL, (yyvsp[0].pch)); }
#line 7502 "bison-chapel.cpp"
break;
case 163: /* manager_expr: expr */
#line 910 "chapel.ypp"
{ (yyval.pblockstmt) = buildManagerBlock((yyvsp[0].pexpr), NULL, NULL); }
#line 7508 "bison-chapel.cpp"
break;
case 164: /* manager_expr_ls: manager_expr */
#line 914 "chapel.ypp"
{ (yyval.pblockstmt) = new BlockStmt(); (yyval.pblockstmt)->insertAtTail((yyvsp[0].pblockstmt)); }
#line 7514 "bison-chapel.cpp"
break;
case 165: /* manager_expr_ls: manager_expr_ls TCOMMA manager_expr */
#line 915 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[-2].pblockstmt); (yyval.pblockstmt)->insertAtTail((yyvsp[0].pblockstmt)); }
#line 7520 "bison-chapel.cpp"
break;
case 166: /* manage_stmt: TMANAGE manager_expr_ls do_stmt */
#line 919 "chapel.ypp"
{ (yyval.pblockstmt) = buildManageStmt((yyvsp[-1].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 7526 "bison-chapel.cpp"
break;
case 168: /* deprecated_class_level_stmt: TDEPRECATED STRINGLITERAL class_level_stmt */
#line 925 "chapel.ypp"
{ (yyval.pblockstmt) = buildDeprecated((yyvsp[0].pblockstmt), (yyvsp[-1].pch)); }
#line 7532 "bison-chapel.cpp"
break;
case 169: /* deprecated_class_level_stmt: TDEPRECATED class_level_stmt */
#line 927 "chapel.ypp"
{ (yyval.pblockstmt) = buildDeprecated((yyvsp[0].pblockstmt)); }
#line 7538 "bison-chapel.cpp"
break;
case 170: /* class_level_stmt: TSEMI */
#line 931 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(new BlockStmt()); }
#line 7544 "bison-chapel.cpp"
break;
case 172: /* class_level_stmt: TPUBLIC private_decl */
#line 933 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[0].pblockstmt); }
#line 7550 "bison-chapel.cpp"
break;
case 173: /* @2: %empty */
#line 943 "chapel.ypp"
{ (yyval.b) = parsingPrivate; parsingPrivate=true;}
#line 7556 "bison-chapel.cpp"
break;
case 174: /* class_level_stmt: TPRIVATE @2 private_decl */
#line 944 "chapel.ypp"
{ parsingPrivate=(yyvsp[-1].b); applyPrivateToBlock((yyvsp[0].pblockstmt)); (yyval.pblockstmt) = (yyvsp[0].pblockstmt); }
#line 7562 "bison-chapel.cpp"
break;
case 182: /* forwarding_stmt: TFORWARDING expr TSEMI */
#line 958 "chapel.ypp"
{ (yyval.pblockstmt) = buildForwardingStmt((yyvsp[-1].pexpr)); }
#line 7568 "bison-chapel.cpp"
break;
case 183: /* forwarding_stmt: TFORWARDING expr TEXCEPT renames_ls TSEMI */
#line 959 "chapel.ypp"
{ (yyval.pblockstmt) = buildForwardingStmt((yyvsp[-3].pexpr), (yyvsp[-1].ponlylist), true); }
#line 7574 "bison-chapel.cpp"
break;
case 184: /* forwarding_stmt: TFORWARDING expr TONLY opt_only_ls TSEMI */
#line 960 "chapel.ypp"
{ (yyval.pblockstmt) = buildForwardingStmt((yyvsp[-3].pexpr), (yyvsp[-1].ponlylist), false); }
#line 7580 "bison-chapel.cpp"
break;
case 185: /* forwarding_stmt: TFORWARDING var_decl_stmt */
#line 961 "chapel.ypp"
{ (yyval.pblockstmt) = buildForwardingDeclStmt((yyvsp[0].pblockstmt)); }
#line 7586 "bison-chapel.cpp"
break;
case 186: /* $@3: %empty */
#line 966 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 7595 "bison-chapel.cpp"
break;
case 187: /* extern_export_decl_stmt: TEXTERN TRECORD $@3 ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 971 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
NULL,
AGGREGATE_RECORD,
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_EXTERN,
(yylsp[-6]).comment));
}
#line 7609 "bison-chapel.cpp"
break;
case 188: /* $@4: %empty */
#line 982 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 7618 "bison-chapel.cpp"
break;
case 189: /* extern_export_decl_stmt: TEXTERN STRINGLITERAL TRECORD $@4 ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 987 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
(yyvsp[-7].pch),
AGGREGATE_RECORD,
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_EXTERN,
(yylsp[-6]).comment));
}
#line 7633 "bison-chapel.cpp"
break;
case 190: /* $@5: %empty */
#line 999 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 7642 "bison-chapel.cpp"
break;
case 191: /* extern_export_decl_stmt: TEXTERN TUNION $@5 ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 1004 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
NULL,
AGGREGATE_UNION,
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_EXTERN,
(yylsp[-6]).comment));
}
#line 7656 "bison-chapel.cpp"
break;
case 192: /* $@6: %empty */
#line 1015 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 7665 "bison-chapel.cpp"
break;
case 193: /* extern_export_decl_stmt: TEXTERN STRINGLITERAL TUNION $@6 ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 1020 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
(yyvsp[-7].pch),
AGGREGATE_UNION,
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_EXTERN,
(yylsp[-6]).comment));
}
#line 7680 "bison-chapel.cpp"
break;
case 194: /* $@7: %empty */
#line 1032 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 7689 "bison-chapel.cpp"
break;
case 195: /* extern_export_decl_stmt: TEXPORT TRECORD $@7 ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 1037 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
NULL,
AGGREGATE_RECORD,
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_EXPORT,
(yylsp[-6]).comment));
}
#line 7703 "bison-chapel.cpp"
break;
case 196: /* $@8: %empty */
#line 1047 "chapel.ypp"
{
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
}
#line 7712 "bison-chapel.cpp"
break;
case 197: /* extern_export_decl_stmt: TEXPORT STRINGLITERAL TRECORD $@8 ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 1052 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
(yyvsp[-7].pch),
AGGREGATE_RECORD,
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_EXPORT,
(yylsp[-6]).comment));
}
#line 7726 "bison-chapel.cpp"
break;
case 198: /* extern_export_decl_stmt: TEXTERN opt_expr fn_decl_stmt */
#line 1063 "chapel.ypp"
{
(yyval.pblockstmt) = buildExternExportFunctionDecl(FLAG_EXTERN, (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt));
}
#line 7734 "bison-chapel.cpp"
break;
case 199: /* extern_export_decl_stmt: TEXPORT opt_expr fn_decl_stmt */
#line 1067 "chapel.ypp"
{
(yyval.pblockstmt) = buildExternExportFunctionDecl(FLAG_EXPORT, (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt));
}
#line 7742 "bison-chapel.cpp"
break;
case 200: /* extern_export_decl_stmt: TEXTERN opt_expr var_decl_type var_decl_stmt_inner_ls TSEMI */
#line 1072 "chapel.ypp"
{
const char* comment = context->latestComment;
context->latestComment = NULL;
(yyvsp[-2].pflagset)->insert(FLAG_EXTERN);
(yyval.pblockstmt) = buildVarDecls((yyvsp[-1].pblockstmt), comment, (yyvsp[-2].pflagset), (yyvsp[-3].pexpr));
}
#line 7754 "bison-chapel.cpp"
break;
case 201: /* extern_export_decl_stmt: TEXPORT opt_expr var_decl_type var_decl_stmt_inner_ls TSEMI */
#line 1080 "chapel.ypp"
{
const char* comment = context->latestComment;
context->latestComment = NULL;
(yyvsp[-2].pflagset)->insert(FLAG_EXPORT);
(yyval.pblockstmt) = buildVarDecls((yyvsp[-1].pblockstmt), comment, (yyvsp[-2].pflagset), (yyvsp[-3].pexpr));
}
#line 7766 "bison-chapel.cpp"
break;
case 202: /* extern_block_stmt: TEXTERN EXTERNCODE */
#line 1091 "chapel.ypp"
{
(yyval.pblockstmt) = buildExternBlockStmt(astr((yyvsp[0].pch)));
}
#line 7774 "bison-chapel.cpp"
break;
case 203: /* loop_stmt: TDO stmt TWHILE expr TSEMI */
#line 1097 "chapel.ypp"
{ (yyval.pblockstmt) = DoWhileStmt::build((yyvsp[-1].pexpr), (yyvsp[-3].pblockstmt)); }
#line 7780 "bison-chapel.cpp"
break;
case 204: /* loop_stmt: TWHILE expr do_stmt */
#line 1098 "chapel.ypp"
{ (yyval.pblockstmt) = WhileDoStmt::build((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 7786 "bison-chapel.cpp"
break;
case 205: /* loop_stmt: TWHILE ifvar do_stmt */
#line 1099 "chapel.ypp"
{ (yyval.pblockstmt) = WhileDoStmt::build((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 7792 "bison-chapel.cpp"
break;
case 206: /* loop_stmt: TCOFORALL expr TIN expr opt_task_intent_ls do_stmt */
#line 1100 "chapel.ypp"
{ (yyval.pblockstmt) = buildCoforallLoopStmt((yyvsp[-4].pexpr), (yyvsp[-2].pexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt)); }
#line 7798 "bison-chapel.cpp"
break;
case 207: /* loop_stmt: TCOFORALL expr TIN zippered_iterator opt_task_intent_ls do_stmt */
#line 1101 "chapel.ypp"
{ (yyval.pblockstmt) = buildCoforallLoopStmt((yyvsp[-4].pexpr), (yyvsp[-2].pcallexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true); }
#line 7804 "bison-chapel.cpp"
break;
case 208: /* loop_stmt: TCOFORALL expr opt_task_intent_ls do_stmt */
#line 1102 "chapel.ypp"
{ (yyval.pblockstmt) = buildCoforallLoopStmt(NULL, (yyvsp[-2].pexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt)); }
#line 7810 "bison-chapel.cpp"
break;
case 209: /* loop_stmt: TFOR expr TIN expr do_stmt */
#line 1103 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForLoop( (yyvsp[-3].pexpr), (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt), false, false); }
#line 7816 "bison-chapel.cpp"
break;
case 210: /* loop_stmt: TFOR expr TIN zippered_iterator do_stmt */
#line 1104 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForLoop( (yyvsp[-3].pexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true, false); }
#line 7822 "bison-chapel.cpp"
break;
case 211: /* loop_stmt: TFOR expr do_stmt */
#line 1105 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForLoop(NULL, (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt), false, false); }
#line 7828 "bison-chapel.cpp"
break;
case 212: /* loop_stmt: TFOR zippered_iterator do_stmt */
#line 1106 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForLoop(NULL, (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true, false); }
#line 7834 "bison-chapel.cpp"
break;
case 213: /* loop_stmt: TFOR TPARAM ident_def TIN expr do_stmt */
#line 1107 "chapel.ypp"
{ (yyval.pblockstmt) = buildParamForLoopStmt((yyvsp[-3].pch), (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 7840 "bison-chapel.cpp"
break;
case 214: /* loop_stmt: TFORALL expr TIN expr do_stmt */
#line 1108 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build((yyvsp[-3].pexpr), (yyvsp[-1].pexpr), NULL, (yyvsp[0].pblockstmt), false, false); }
#line 7846 "bison-chapel.cpp"
break;
case 215: /* loop_stmt: TFORALL expr TIN expr forall_intent_clause do_stmt */
#line 1109 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build((yyvsp[-4].pexpr), (yyvsp[-2].pexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), false, false); }
#line 7852 "bison-chapel.cpp"
break;
case 216: /* loop_stmt: TFORALL expr TIN zippered_iterator do_stmt */
#line 1110 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build((yyvsp[-3].pexpr), (yyvsp[-1].pcallexpr), NULL, (yyvsp[0].pblockstmt), true, false); }
#line 7858 "bison-chapel.cpp"
break;
case 217: /* loop_stmt: TFORALL expr TIN zippered_iterator forall_intent_clause do_stmt */
#line 1111 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build((yyvsp[-4].pexpr), (yyvsp[-2].pcallexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true, false); }
#line 7864 "bison-chapel.cpp"
break;
case 218: /* loop_stmt: TFORALL expr do_stmt */
#line 1112 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-1].pexpr), NULL, (yyvsp[0].pblockstmt), false, false); }
#line 7870 "bison-chapel.cpp"
break;
case 219: /* loop_stmt: TFORALL expr forall_intent_clause do_stmt */
#line 1113 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-2].pexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), false, false); }
#line 7876 "bison-chapel.cpp"
break;
case 220: /* loop_stmt: TFORALL zippered_iterator do_stmt */
#line 1114 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-1].pcallexpr), NULL, (yyvsp[0].pblockstmt), true, false); }
#line 7882 "bison-chapel.cpp"
break;
case 221: /* loop_stmt: TFORALL zippered_iterator forall_intent_clause do_stmt */
#line 1115 "chapel.ypp"
{ (yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-2].pcallexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true, false); }
#line 7888 "bison-chapel.cpp"
break;
case 222: /* loop_stmt: TFOREACH expr TIN expr do_stmt */
#line 1116 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForeachLoop( (yyvsp[-3].pexpr), (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt), false, false); }
#line 7894 "bison-chapel.cpp"
break;
case 223: /* loop_stmt: TFOREACH expr TIN zippered_iterator do_stmt */
#line 1117 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForeachLoop( (yyvsp[-3].pexpr), (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true, false); }
#line 7900 "bison-chapel.cpp"
break;
case 224: /* loop_stmt: TFOREACH expr do_stmt */
#line 1118 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForeachLoop(NULL, (yyvsp[-1].pexpr), (yyvsp[0].pblockstmt), false, false); }
#line 7906 "bison-chapel.cpp"
break;
case 225: /* loop_stmt: TFOREACH zippered_iterator do_stmt */
#line 1119 "chapel.ypp"
{ (yyval.pblockstmt) = ForLoop::buildForeachLoop(NULL, (yyvsp[-1].pcallexpr), (yyvsp[0].pblockstmt), true, false); }
#line 7912 "bison-chapel.cpp"
break;
case 226: /* loop_stmt: TLSBR expr_ls TIN expr TRSBR stmt */
#line 1121 "chapel.ypp"
{
if ((yyvsp[-4].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-2].pexpr), "invalid index expression");
(yyval.pblockstmt) = ForallStmt::build((yyvsp[-4].pcallexpr)->get(1)->remove(), (yyvsp[-2].pexpr), NULL, new BlockStmt((yyvsp[0].pblockstmt)), false, true);
}
#line 7922 "bison-chapel.cpp"
break;
case 227: /* loop_stmt: TLSBR expr_ls TIN expr forall_intent_clause TRSBR stmt */
#line 1127 "chapel.ypp"
{
if ((yyvsp[-5].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-3].pexpr), "invalid index expression");
(yyval.pblockstmt) = ForallStmt::build((yyvsp[-5].pcallexpr)->get(1)->remove(), (yyvsp[-3].pexpr), (yyvsp[-2].pcallexpr), new BlockStmt((yyvsp[0].pblockstmt)), false, true);
}
#line 7932 "bison-chapel.cpp"
break;
case 228: /* loop_stmt: TLSBR expr_ls TIN zippered_iterator TRSBR stmt */
#line 1133 "chapel.ypp"
{
if ((yyvsp[-4].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-2].pcallexpr), "invalid index expression");
(yyval.pblockstmt) = ForallStmt::build((yyvsp[-4].pcallexpr)->get(1)->remove(), (yyvsp[-2].pcallexpr), NULL, new BlockStmt((yyvsp[0].pblockstmt)), true, true);
}
#line 7942 "bison-chapel.cpp"
break;
case 229: /* loop_stmt: TLSBR expr_ls TIN zippered_iterator forall_intent_clause TRSBR stmt */
#line 1139 "chapel.ypp"
{
if ((yyvsp[-5].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-3].pcallexpr), "invalid index expression");
(yyval.pblockstmt) = ForallStmt::build((yyvsp[-5].pcallexpr)->get(1)->remove(), (yyvsp[-3].pcallexpr), (yyvsp[-2].pcallexpr), new BlockStmt((yyvsp[0].pblockstmt)), true, true);
}
#line 7952 "bison-chapel.cpp"
break;
case 230: /* loop_stmt: TLSBR expr_ls TRSBR stmt */
#line 1145 "chapel.ypp"
{
if ((yyvsp[-2].pcallexpr)->argList.length > 1)
(yyval.pblockstmt) = ForallStmt::build(NULL, new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pcallexpr)), NULL, new BlockStmt((yyvsp[0].pblockstmt)), false, true);
else
(yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-2].pcallexpr)->get(1)->remove(), NULL, new BlockStmt((yyvsp[0].pblockstmt)), false, true);
}
#line 7963 "bison-chapel.cpp"
break;
case 231: /* loop_stmt: TLSBR expr_ls forall_intent_clause TRSBR stmt */
#line 1152 "chapel.ypp"
{
if ((yyvsp[-3].pcallexpr)->argList.length > 1)
(yyval.pblockstmt) = ForallStmt::build(NULL, new CallExpr("chpl__ensureDomainExpr", (yyvsp[-3].pcallexpr)), (yyvsp[-2].pcallexpr), new BlockStmt((yyvsp[0].pblockstmt)), false, true);
else
(yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-3].pcallexpr)->get(1)->remove(), (yyvsp[-2].pcallexpr), new BlockStmt((yyvsp[0].pblockstmt)), false, true);
}
#line 7974 "bison-chapel.cpp"
break;
case 232: /* loop_stmt: TLSBR zippered_iterator TRSBR stmt */
#line 1159 "chapel.ypp"
{
(yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-2].pcallexpr), NULL, new BlockStmt((yyvsp[0].pblockstmt)), true, true);
}
#line 7982 "bison-chapel.cpp"
break;
case 233: /* loop_stmt: TLSBR zippered_iterator forall_intent_clause TRSBR stmt */
#line 1163 "chapel.ypp"
{
(yyval.pblockstmt) = ForallStmt::build(NULL, (yyvsp[-3].pcallexpr), (yyvsp[-2].pcallexpr), new BlockStmt((yyvsp[0].pblockstmt)), true, true);
}
#line 7990 "bison-chapel.cpp"
break;
case 234: /* zippered_iterator: TZIP TLP expr_ls TRP */
#line 1169 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ZIP, (yyvsp[-1].pcallexpr)); }
#line 7996 "bison-chapel.cpp"
break;
case 235: /* if_stmt: TIF expr TTHEN stmt */
#line 1173 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-2].pexpr), (yyvsp[0].pblockstmt)); }
#line 8002 "bison-chapel.cpp"
break;
case 236: /* if_stmt: TIF expr block_stmt */
#line 1174 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 8008 "bison-chapel.cpp"
break;
case 237: /* if_stmt: TIF expr TTHEN stmt TELSE stmt */
#line 1175 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-4].pexpr), (yyvsp[-2].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8014 "bison-chapel.cpp"
break;
case 238: /* if_stmt: TIF expr block_stmt TELSE stmt */
#line 1176 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-3].pexpr), (yyvsp[-2].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8020 "bison-chapel.cpp"
break;
case 239: /* if_stmt: TIF ifvar TTHEN stmt */
#line 1178 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-2].pexpr), (yyvsp[0].pblockstmt)); }
#line 8026 "bison-chapel.cpp"
break;
case 240: /* if_stmt: TIF ifvar block_stmt */
#line 1179 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-1].pexpr), (yyvsp[0].pblockstmt)); }
#line 8032 "bison-chapel.cpp"
break;
case 241: /* if_stmt: TIF ifvar TTHEN stmt TELSE stmt */
#line 1180 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-4].pexpr), (yyvsp[-2].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8038 "bison-chapel.cpp"
break;
case 242: /* if_stmt: TIF ifvar block_stmt TELSE stmt */
#line 1181 "chapel.ypp"
{ (yyval.pblockstmt) = buildIfStmt((yyvsp[-3].pexpr), (yyvsp[-2].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8044 "bison-chapel.cpp"
break;
case 243: /* if_stmt: TIF expr assignop_ident expr TTHEN stmt */
#line 1183 "chapel.ypp"
{
(yyval.pblockstmt) = buildIfStmt(convertAssignmentAndWarn((yyvsp[-4].pexpr),(yyvsp[-3].pch),(yyvsp[-2].pexpr)), (yyvsp[0].pblockstmt)); }
#line 8051 "bison-chapel.cpp"
break;
case 244: /* if_stmt: TIF expr assignop_ident expr block_stmt */
#line 1185 "chapel.ypp"
{
(yyval.pblockstmt) = buildIfStmt(convertAssignmentAndWarn((yyvsp[-3].pexpr),(yyvsp[-2].pch),(yyvsp[-1].pexpr)), (yyvsp[0].pblockstmt)); }
#line 8058 "bison-chapel.cpp"
break;
case 245: /* if_stmt: TIF expr assignop_ident expr TTHEN stmt TELSE stmt */
#line 1187 "chapel.ypp"
{
(yyval.pblockstmt) = buildIfStmt(convertAssignmentAndWarn((yyvsp[-6].pexpr),(yyvsp[-5].pch),(yyvsp[-4].pexpr)), (yyvsp[-2].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8065 "bison-chapel.cpp"
break;
case 246: /* if_stmt: TIF expr assignop_ident expr block_stmt TELSE stmt */
#line 1189 "chapel.ypp"
{
(yyval.pblockstmt) = buildIfStmt(convertAssignmentAndWarn((yyvsp[-5].pexpr),(yyvsp[-4].pch),(yyvsp[-3].pexpr)), (yyvsp[-2].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8072 "bison-chapel.cpp"
break;
case 247: /* ifvar: TVAR ident_def TASSIGN expr */
#line 1194 "chapel.ypp"
{ (yyval.pexpr) = buildIfVar((yyvsp[-2].pch), (yyvsp[0].pexpr), false); }
#line 8078 "bison-chapel.cpp"
break;
case 248: /* ifvar: TCONST ident_def TASSIGN expr */
#line 1195 "chapel.ypp"
{ (yyval.pexpr) = buildIfVar((yyvsp[-2].pch), (yyvsp[0].pexpr), true); }
#line 8084 "bison-chapel.cpp"
break;
case 249: /* interface_stmt: TINTERFACE ident_def TLP ifc_formal_ls TRP block_stmt */
#line 1200 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(InterfaceSymbol::buildDef((yyvsp[-4].pch), (yyvsp[-2].pcallexpr), (yyvsp[0].pblockstmt))); }
#line 8090 "bison-chapel.cpp"
break;
case 250: /* interface_stmt: TINTERFACE ident_def block_stmt */
#line 1202 "chapel.ypp"
{ // mimick ifc_formal_ls for a single formal "Self"
DefExpr* formal = InterfaceSymbol::buildFormal("Self", INTENT_TYPE);
CallExpr* ls = new CallExpr(PRIM_ACTUALS_LIST, formal);
(yyval.pblockstmt) = buildChapelStmt(InterfaceSymbol::buildDef((yyvsp[-1].pch), ls, (yyvsp[0].pblockstmt))); }
#line 8099 "bison-chapel.cpp"
break;
case 251: /* ifc_formal_ls: ifc_formal */
#line 1209 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[0].pdefexpr)); }
#line 8105 "bison-chapel.cpp"
break;
case 252: /* ifc_formal_ls: ifc_formal_ls TCOMMA ifc_formal */
#line 1210 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtTail((yyvsp[0].pdefexpr)); }
#line 8111 "bison-chapel.cpp"
break;
case 253: /* ifc_formal: ident_def */
#line 1215 "chapel.ypp"
{ (yyval.pdefexpr) = InterfaceSymbol::buildFormal((yyvsp[0].pch), INTENT_TYPE); }
#line 8117 "bison-chapel.cpp"
break;
case 254: /* implements_type_ident: TIDENT */
#line 1220 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 8123 "bison-chapel.cpp"
break;
case 255: /* implements_type_ident: TBOOL */
#line 1221 "chapel.ypp"
{ (yyval.pch) = "bool"; }
#line 8129 "bison-chapel.cpp"
break;
case 256: /* implements_type_ident: TINT */
#line 1222 "chapel.ypp"
{ (yyval.pch) = "int"; }
#line 8135 "bison-chapel.cpp"
break;
case 257: /* implements_type_ident: TUINT */
#line 1223 "chapel.ypp"
{ (yyval.pch) = "uint"; }
#line 8141 "bison-chapel.cpp"
break;
case 258: /* implements_type_ident: TREAL */
#line 1224 "chapel.ypp"
{ (yyval.pch) = "real"; }
#line 8147 "bison-chapel.cpp"
break;
case 259: /* implements_type_ident: TIMAG */
#line 1225 "chapel.ypp"
{ (yyval.pch) = "imag"; }
#line 8153 "bison-chapel.cpp"
break;
case 260: /* implements_type_ident: TCOMPLEX */
#line 1226 "chapel.ypp"
{ (yyval.pch) = "complex"; }
#line 8159 "bison-chapel.cpp"
break;
case 261: /* implements_type_ident: TBYTES */
#line 1227 "chapel.ypp"
{ (yyval.pch) = "bytes"; }
#line 8165 "bison-chapel.cpp"
break;
case 262: /* implements_type_ident: TSTRING */
#line 1228 "chapel.ypp"
{ (yyval.pch) = "string"; }
#line 8171 "bison-chapel.cpp"
break;
case 263: /* implements_type_ident: TLOCALE */
#line 1229 "chapel.ypp"
{ (yyval.pch) = "locale"; }
#line 8177 "bison-chapel.cpp"
break;
case 264: /* implements_type_ident: TNOTHING */
#line 1230 "chapel.ypp"
{ (yyval.pch) = "nothing"; }
#line 8183 "bison-chapel.cpp"
break;
case 265: /* implements_type_ident: TVOID */
#line 1231 "chapel.ypp"
{ (yyval.pch) = "void"; }
#line 8189 "bison-chapel.cpp"
break;
case 266: /* implements_type_ident: implements_type_error_ident */
#line 1233 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch);
USR_FATAL_CONT("'%s' is not allowed to \"implement\" an interface", (yyvsp[0].pch)); }
#line 8196 "bison-chapel.cpp"
break;
case 267: /* implements_type_error_ident: TNONE */
#line 1239 "chapel.ypp"
{ (yyval.pch) = "none"; }
#line 8202 "bison-chapel.cpp"
break;
case 268: /* implements_type_error_ident: TTHIS */
#line 1240 "chapel.ypp"
{ (yyval.pch) = "this"; }
#line 8208 "bison-chapel.cpp"
break;
case 269: /* implements_type_error_ident: TFALSE */
#line 1241 "chapel.ypp"
{ (yyval.pch) = "false"; }
#line 8214 "bison-chapel.cpp"
break;
case 270: /* implements_type_error_ident: TTRUE */
#line 1242 "chapel.ypp"
{ (yyval.pch) = "true"; }
#line 8220 "bison-chapel.cpp"
break;
case 271: /* implements_type_error_ident: TDOMAIN */
#line 1251 "chapel.ypp"
{ (yyval.pch) = "domain"; }
#line 8226 "bison-chapel.cpp"
break;
case 272: /* implements_type_error_ident: TINDEX */
#line 1252 "chapel.ypp"
{ (yyval.pch) = "index"; }
#line 8232 "bison-chapel.cpp"
break;
case 273: /* implements_stmt: TIMPLEMENTS ident_def TLP actual_ls TRP TSEMI */
#line 1257 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(ImplementsStmt::build((yyvsp[-4].pch), (yyvsp[-2].pcallexpr), NULL)); }
#line 8238 "bison-chapel.cpp"
break;
case 274: /* implements_stmt: implements_type_ident TIMPLEMENTS ident_def TSEMI */
#line 1259 "chapel.ypp"
{ CallExpr* act = new CallExpr(PRIM_ACTUALS_LIST, new UnresolvedSymExpr((yyvsp[-3].pch)));
(yyval.pblockstmt) = buildChapelStmt(ImplementsStmt::build((yyvsp[-1].pch), act, NULL)); }
#line 8245 "bison-chapel.cpp"
break;
case 275: /* implements_stmt: implements_type_ident TIMPLEMENTS ident_def TLP actual_ls TRP TSEMI */
#line 1262 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtHead(new UnresolvedSymExpr((yyvsp[-6].pch)));
(yyval.pblockstmt) = buildChapelStmt(ImplementsStmt::build((yyvsp[-4].pch), (yyvsp[-2].pcallexpr), NULL)); }
#line 8252 "bison-chapel.cpp"
break;
case 276: /* ifc_constraint: TIMPLEMENTS ident_def TLP actual_ls TRP */
#line 1268 "chapel.ypp"
{ (yyval.pexpr) = IfcConstraint::build((yyvsp[-3].pch), (yyvsp[-1].pcallexpr)); }
#line 8258 "bison-chapel.cpp"
break;
case 277: /* ifc_constraint: implements_type_ident TIMPLEMENTS ident_def */
#line 1270 "chapel.ypp"
{ CallExpr* act = new CallExpr(PRIM_ACTUALS_LIST, new UnresolvedSymExpr((yyvsp[-2].pch)));
(yyval.pexpr) = IfcConstraint::build((yyvsp[0].pch), act); }
#line 8265 "bison-chapel.cpp"
break;
case 278: /* ifc_constraint: implements_type_ident TIMPLEMENTS ident_def TLP actual_ls TRP */
#line 1273 "chapel.ypp"
{ (yyvsp[-1].pcallexpr)->insertAtHead(new UnresolvedSymExpr((yyvsp[-5].pch)));
(yyval.pexpr) = IfcConstraint::build((yyvsp[-3].pch), (yyvsp[-1].pcallexpr)); }
#line 8272 "bison-chapel.cpp"
break;
case 279: /* defer_stmt: TDEFER stmt */
#line 1278 "chapel.ypp"
{ (yyval.pblockstmt) = DeferStmt::build((yyvsp[0].pblockstmt)); }
#line 8278 "bison-chapel.cpp"
break;
case 280: /* try_token: TTRY */
#line 1281 "chapel.ypp"
{ (yyval.b) = false; }
#line 8284 "bison-chapel.cpp"
break;
case 281: /* try_token: TTRYBANG */
#line 1282 "chapel.ypp"
{ (yyval.b) = true; }
#line 8290 "bison-chapel.cpp"
break;
case 282: /* try_stmt: try_token tryable_stmt */
#line 1285 "chapel.ypp"
{ (yyval.pblockstmt) = TryStmt::build((yyvsp[-1].b), (yyvsp[0].pblockstmt)); }
#line 8296 "bison-chapel.cpp"
break;
case 283: /* try_stmt: try_token block_stmt catch_stmt_ls */
#line 1286 "chapel.ypp"
{ (yyval.pblockstmt) = TryStmt::build((yyvsp[-2].b), (yyvsp[-1].pblockstmt), (yyvsp[0].pblockstmt)); }
#line 8302 "bison-chapel.cpp"
break;
case 284: /* catch_stmt_ls: %empty */
#line 1290 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(); }
#line 8308 "bison-chapel.cpp"
break;
case 285: /* catch_stmt_ls: catch_stmt_ls catch_stmt */
#line 1291 "chapel.ypp"
{ (yyvsp[-1].pblockstmt)->insertAtTail((yyvsp[0].pexpr)); }
#line 8314 "bison-chapel.cpp"
break;
case 286: /* catch_stmt: TCATCH block_stmt */
#line 1295 "chapel.ypp"
{ (yyval.pexpr) = CatchStmt::build((yyvsp[0].pblockstmt)); }
#line 8320 "bison-chapel.cpp"
break;
case 287: /* catch_stmt: TCATCH catch_expr block_stmt */
#line 1296 "chapel.ypp"
{ (yyval.pexpr) = CatchStmt::build((yyvsp[-1].pdefexpr), (yyvsp[0].pblockstmt)); }
#line 8326 "bison-chapel.cpp"
break;
case 288: /* catch_stmt: TCATCH TLP catch_expr TRP block_stmt */
#line 1297 "chapel.ypp"
{ (yyval.pexpr) = CatchStmt::build((yyvsp[-2].pdefexpr), (yyvsp[0].pblockstmt)); }
#line 8332 "bison-chapel.cpp"
break;
case 289: /* catch_expr: ident_def */
#line 1301 "chapel.ypp"
{ (yyval.pdefexpr) = new DefExpr(new VarSymbol((yyvsp[0].pch)), NULL, new UnresolvedSymExpr("Error")); }
#line 8338 "bison-chapel.cpp"
break;
case 290: /* catch_expr: ident_def TCOLON expr */
#line 1302 "chapel.ypp"
{ (yyval.pdefexpr) = new DefExpr(new VarSymbol((yyvsp[-2].pch)), NULL, (yyvsp[0].pexpr)); }
#line 8344 "bison-chapel.cpp"
break;
case 291: /* throw_stmt: TTHROW expr TSEMI */
#line 1306 "chapel.ypp"
{ (yyval.pblockstmt) = buildPrimitiveStmt(PRIM_THROW, (yyvsp[-1].pexpr)); }
#line 8350 "bison-chapel.cpp"
break;
case 292: /* select_stmt: TSELECT expr TLCBR when_stmt_ls TRCBR */
#line 1310 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(buildSelectStmt((yyvsp[-3].pexpr), (yyvsp[-1].pblockstmt))); }
#line 8356 "bison-chapel.cpp"
break;
case 293: /* select_stmt: TSELECT expr TLCBR error TRCBR */
#line 1312 "chapel.ypp"
{ (yyval.pblockstmt) = buildErrorStandin(); }
#line 8362 "bison-chapel.cpp"
break;
case 294: /* when_stmt_ls: %empty */
#line 1316 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(); }
#line 8368 "bison-chapel.cpp"
break;
case 295: /* when_stmt_ls: when_stmt_ls when_stmt */
#line 1317 "chapel.ypp"
{ (yyvsp[-1].pblockstmt)->insertAtTail((yyvsp[0].pexpr)); }
#line 8374 "bison-chapel.cpp"
break;
case 296: /* when_stmt: TWHEN expr_ls do_stmt */
#line 1322 "chapel.ypp"
{ (yyval.pexpr) = new CondStmt(new CallExpr(PRIM_WHEN, (yyvsp[-1].pcallexpr)), (yyvsp[0].pblockstmt)); }
#line 8380 "bison-chapel.cpp"
break;
case 297: /* when_stmt: TOTHERWISE stmt */
#line 1324 "chapel.ypp"
{ (yyval.pexpr) = new CondStmt(new CallExpr(PRIM_WHEN), (yyvsp[0].pblockstmt)); }
#line 8386 "bison-chapel.cpp"
break;
case 298: /* when_stmt: TOTHERWISE TDO stmt */
#line 1326 "chapel.ypp"
{ (yyval.pexpr) = new CondStmt(new CallExpr(PRIM_WHEN), (yyvsp[0].pblockstmt)); }
#line 8392 "bison-chapel.cpp"
break;
case 299: /* class_decl_stmt: class_tag ident_def opt_inherit TLCBR class_level_stmt_ls TRCBR */
#line 1333 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
NULL,
(yyvsp[-5].aggrTag),
(yyvsp[-3].pcallexpr),
(yyvsp[-1].pblockstmt),
FLAG_UNKNOWN,
(yylsp[-5]).comment));
}
#line 8406 "bison-chapel.cpp"
break;
case 300: /* class_decl_stmt: class_tag ident_def opt_inherit TLCBR error TRCBR */
#line 1343 "chapel.ypp"
{
(yyval.pblockstmt) = buildChapelStmt(buildClassDefExpr((yyvsp[-4].pch),
NULL,
(yyvsp[-5].aggrTag),
(yyvsp[-3].pcallexpr),
new BlockStmt(),
FLAG_UNKNOWN,
(yylsp[-5]).comment));
}
#line 8420 "bison-chapel.cpp"
break;
case 301: /* class_tag: TCLASS */
#line 1356 "chapel.ypp"
{
(yyval.aggrTag) = AGGREGATE_CLASS;
(yyloc).comment = context->latestComment;
context->latestComment = NULL;
}
#line 8430 "bison-chapel.cpp"
break;
case 302: /* class_tag: TRECORD */
#line 1361 "chapel.ypp"
{
(yyval.aggrTag) = AGGREGATE_RECORD;
(yyloc).comment = context->latestComment;
context->latestComment = NULL;
}
#line 8440 "bison-chapel.cpp"
break;
case 303: /* class_tag: TUNION */
#line 1366 "chapel.ypp"
{
(yyval.aggrTag) = AGGREGATE_UNION;
(yyloc).comment = context->latestComment;
context->latestComment = NULL;
}
#line 8450 "bison-chapel.cpp"
break;
case 304: /* opt_inherit: %empty */
#line 1374 "chapel.ypp"
{ (yyval.pcallexpr) = NULL; }
#line 8456 "bison-chapel.cpp"
break;
case 305: /* opt_inherit: TCOLON expr_ls */
#line 1375 "chapel.ypp"
{ (yyval.pcallexpr) = (yyvsp[0].pcallexpr); }
#line 8462 "bison-chapel.cpp"
break;
case 306: /* class_level_stmt_ls: %empty */
#line 1380 "chapel.ypp"
{ (yyval.pblockstmt) = new BlockStmt(); }
#line 8468 "bison-chapel.cpp"
break;
case 307: /* class_level_stmt_ls: class_level_stmt_ls deprecated_class_level_stmt */
#line 1382 "chapel.ypp"
{ (yyvsp[-1].pblockstmt)->insertAtTail((yyvsp[0].pblockstmt)); }
#line 8474 "bison-chapel.cpp"
break;
case 308: /* class_level_stmt_ls: class_level_stmt_ls pragma_ls deprecated_class_level_stmt */
#line 1384 "chapel.ypp"
{ (yyvsp[-2].pblockstmt)->insertAtTail(buildPragmaStmt((yyvsp[-1].vpch), (yyvsp[0].pblockstmt))); }
#line 8480 "bison-chapel.cpp"
break;
case 309: /* enum_decl_stmt: enum_header ident_def TLCBR enum_ls TRCBR */
#line 1389 "chapel.ypp"
{
EnumType* pdt = (yyvsp[-4].penumtype);
for_vector(DefExpr, ec, *(yyvsp[-1].pvecOfDefs)) {
ec->sym->type = pdt;
pdt->constants.insertAtTail(ec);
if (pdt->defaultValue == NULL) {
pdt->defaultValue = ec->sym;
}
}
delete (yyvsp[-1].pvecOfDefs);
pdt->doc = (yylsp[-4]).comment;
TypeSymbol* pst = new TypeSymbol((yyvsp[-3].pch), pdt);
(yyvsp[-4].penumtype)->symbol = pst;
(yyval.pblockstmt) = buildChapelStmt(new DefExpr(pst));
}
#line 8500 "bison-chapel.cpp"
break;
case 310: /* enum_decl_stmt: enum_header ident_def TLCBR error TRCBR */
#line 1405 "chapel.ypp"
{
(yyval.pblockstmt) = buildErrorStandin();
}
#line 8508 "bison-chapel.cpp"
break;
case 311: /* enum_header: TENUM */
#line 1412 "chapel.ypp"
{
(yyval.penumtype) = new EnumType();
(yyloc).comment = context->latestComment;
context->latestComment = NULL;
}
#line 8518 "bison-chapel.cpp"
break;
case 312: /* enum_ls: deprecated_enum_item */
#line 1421 "chapel.ypp"
{
(yyval.pvecOfDefs) = new std::vector<DefExpr*>();
(yyval.pvecOfDefs)->push_back((yyvsp[0].pdefexpr));
//$$->doc = context->latestComment;
// start here for enabling documentation of enum constants
//context->latestComment = NULL;
}
#line 8530 "bison-chapel.cpp"
break;
case 313: /* enum_ls: enum_ls TCOMMA */
#line 1429 "chapel.ypp"
{
(yyval.pvecOfDefs) = (yyvsp[-1].pvecOfDefs);
}
#line 8538 "bison-chapel.cpp"
break;
case 314: /* enum_ls: enum_ls TCOMMA deprecated_enum_item */
#line 1433 "chapel.ypp"
{
(yyvsp[-2].pvecOfDefs)->push_back((yyvsp[0].pdefexpr));
}
#line 8546 "bison-chapel.cpp"
break;
case 316: /* deprecated_enum_item: TDEPRECATED STRINGLITERAL enum_item */
#line 1441 "chapel.ypp"
{ (yyval.pdefexpr) = buildDeprecated((yyvsp[0].pdefexpr), (yyvsp[-1].pch)); }
#line 8552 "bison-chapel.cpp"
break;
case 317: /* deprecated_enum_item: TDEPRECATED enum_item */
#line 1443 "chapel.ypp"
{ (yyval.pdefexpr) = buildDeprecated((yyvsp[0].pdefexpr)); }
#line 8558 "bison-chapel.cpp"
break;
case 318: /* enum_item: ident_def */
#line 1447 "chapel.ypp"
{ (yyval.pdefexpr) = new DefExpr(new EnumSymbol((yyvsp[0].pch))); }
#line 8564 "bison-chapel.cpp"
break;
case 319: /* enum_item: ident_def TASSIGN expr */
#line 1448 "chapel.ypp"
{ (yyval.pdefexpr) = new DefExpr(new EnumSymbol((yyvsp[-2].pch)), (yyvsp[0].pexpr)); }
#line 8570 "bison-chapel.cpp"
break;
case 320: /* $@9: %empty */
#line 1453 "chapel.ypp"
{
captureTokens = 1;
captureString.clear();
}
#line 8579 "bison-chapel.cpp"
break;
case 321: /* $@10: %empty */
#line 1458 "chapel.ypp"
{
captureTokens = 0;
(yyvsp[0].pfnsymbol)->userString = astr(captureString);
}
#line 8588 "bison-chapel.cpp"
break;
case 322: /* lambda_decl_expr: TLAMBDA $@9 req_formal_ls $@10 opt_ret_tag opt_type opt_lifetime_where function_body_stmt */
#line 1463 "chapel.ypp"
{
(yyvsp[-5].pfnsymbol)->retTag = (yyvsp[-3].retTag);
if ((yyvsp[-3].retTag) == RET_REF || (yyvsp[-3].retTag) == RET_CONST_REF)
USR_FATAL("'ref' return types are not allowed in lambdas");
if ((yyvsp[-3].retTag) == RET_PARAM)
USR_FATAL("'param' return types are not allowed in lambdas");
if ((yyvsp[-3].retTag) == RET_TYPE)
USR_FATAL("'type' return types are not allowed in lambdas");
if ((yyvsp[-2].pexpr))
(yyvsp[-5].pfnsymbol)->retExprType = new BlockStmt((yyvsp[-2].pexpr), BLOCK_SCOPELESS);
if ((yyvsp[-1].lifetimeAndWhere).where)
(yyvsp[-5].pfnsymbol)->where = new BlockStmt((yyvsp[-1].lifetimeAndWhere).where);
if ((yyvsp[-1].lifetimeAndWhere).lifetime)
(yyvsp[-5].pfnsymbol)->lifetimeConstraints = new BlockStmt((yyvsp[-1].lifetimeAndWhere).lifetime);
(yyvsp[-5].pfnsymbol)->insertAtTail((yyvsp[0].pblockstmt));
(yyval.pexpr) = new DefExpr(buildLambda((yyvsp[-5].pfnsymbol)));
}
#line 8610 "bison-chapel.cpp"
break;
case 323: /* linkage_spec: %empty */
#line 1485 "chapel.ypp"
{
(yyval.pfnsymbol) = new FnSymbol("");
}
#line 8618 "bison-chapel.cpp"
break;
case 324: /* linkage_spec: TINLINE */
#line 1488 "chapel.ypp"
{
(yyval.pfnsymbol) = new FnSymbol("");
(yyval.pfnsymbol)->addFlag(FLAG_INLINE);
}
#line 8627 "bison-chapel.cpp"
break;
case 325: /* linkage_spec: TOVERRIDE */
#line 1492 "chapel.ypp"
{
(yyval.pfnsymbol) = new FnSymbol("");
(yyval.pfnsymbol)->addFlag(FLAG_OVERRIDE);
}
#line 8636 "bison-chapel.cpp"
break;
case 326: /* $@11: %empty */
#line 1500 "chapel.ypp"
{
// Capture the latest comment
(yylsp[0]).comment = context->latestComment;
context->latestComment = NULL;
// Sets up to capture tokens while parsing the next grammar nonterminal.
captureTokens = 1;
captureString.clear();
}
#line 8650 "bison-chapel.cpp"
break;
case 327: /* $@12: %empty */
#line 1510 "chapel.ypp"
{
// Stop capturing and save the result.
captureTokens = 0;
(yyvsp[0].pfnsymbol)->userString = astr(captureString);
}
#line 8661 "bison-chapel.cpp"
break;
case 328: /* fn_decl_stmt: linkage_spec proc_iter_or_op $@11 fn_decl_stmt_inner $@12 opt_ret_tag opt_ret_type opt_throws_error opt_lifetime_where opt_function_body_stmt */
#line 1517 "chapel.ypp"
{
FnSymbol* fn = (yyvsp[-6].pfnsymbol);
FnSymbol* linkageFn = (yyvsp[-9].pfnsymbol);
fn->copyFlags((yyvsp[-9].pfnsymbol));
if (*linkageFn->name)
// The user explicitly named this function (controls mangling).
fn->cname = linkageFn->name;
else if (linkageFn->numFormals() == 1)
// cname should be set based upon param
fn->insertFormalAtTail(linkageFn->getFormal(1));
if ((yyvsp[-8].procIterOp) == ProcIterOp_ITER)
{
if (fn->hasFlag(FLAG_EXTERN))
USR_FATAL_CONT(fn, "'iter' is not legal with 'extern'");
fn->addFlag(FLAG_ITERATOR_FN);
}
if ((yyvsp[-8].procIterOp) == ProcIterOp_OP) {
fn->addFlag(FLAG_OPERATOR);
if (fn->_this != NULL) {
updateOpThisTagOrErr(fn);
setupTypeIntentArg(toArgSymbol(fn->_this));
}
}
(yyval.pblockstmt) = buildFunctionDecl((yyvsp[-6].pfnsymbol), (yyvsp[-4].retTag), (yyvsp[-3].pexpr), (yyvsp[-2].b), (yyvsp[-1].lifetimeAndWhere).where, (yyvsp[-1].lifetimeAndWhere).lifetime, (yyvsp[0].pblockstmt), (yylsp[-8]).comment);
context->latestComment = NULL;
}
#line 8695 "bison-chapel.cpp"
break;
case 329: /* fn_decl_stmt_inner: opt_this_intent_tag fn_ident opt_formal_ls */
#line 1550 "chapel.ypp"
{
(yyval.pfnsymbol) = buildFunctionSymbol((yyvsp[0].pfnsymbol), (yyvsp[-1].pch), (yyvsp[-2].pt), NULL);
}
#line 8703 "bison-chapel.cpp"
break;
case 330: /* fn_decl_stmt_inner: opt_this_intent_tag assignop_ident opt_formal_ls */
#line 1554 "chapel.ypp"
{
(yyval.pfnsymbol) = buildFunctionSymbol((yyvsp[0].pfnsymbol), (yyvsp[-1].pch), (yyvsp[-2].pt), NULL);
(yyval.pfnsymbol)->addFlag(FLAG_ASSIGNOP);
}
#line 8712 "bison-chapel.cpp"
break;
case 331: /* fn_decl_stmt_inner: opt_this_intent_tag fn_decl_receiver_expr TDOT fn_ident opt_formal_ls */
#line 1559 "chapel.ypp"
{
(yyval.pfnsymbol) = buildFunctionSymbol((yyvsp[0].pfnsymbol), (yyvsp[-1].pch), (yyvsp[-4].pt), (yyvsp[-3].pexpr));
}
#line 8720 "bison-chapel.cpp"
break;
case 332: /* fn_decl_stmt_inner: opt_this_intent_tag fn_decl_receiver_expr TDOT assignop_ident opt_formal_ls */
#line 1563 "chapel.ypp"
{
(yyval.pfnsymbol) = buildFunctionSymbol((yyvsp[0].pfnsymbol), (yyvsp[-1].pch), (yyvsp[-4].pt), (yyvsp[-3].pexpr));
(yyval.pfnsymbol)->addFlag(FLAG_ASSIGNOP);
}
#line 8729 "bison-chapel.cpp"
break;
case 333: /* fn_decl_stmt_inner: opt_this_intent_tag error opt_formal_ls */
#line 1568 "chapel.ypp"
{
(yyval.pfnsymbol) = buildFunctionSymbol((yyvsp[0].pfnsymbol), "dummy", INTENT_BLANK, NULL);
}
#line 8737 "bison-chapel.cpp"
break;
case 335: /* fn_decl_receiver_expr: TLP expr TRP */
#line 1575 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[-1].pexpr); }
#line 8743 "bison-chapel.cpp"
break;
case 336: /* fn_ident: ident_fn_def */
#line 1579 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 8749 "bison-chapel.cpp"
break;
case 337: /* fn_ident: ident_def TBANG */
#line 1580 "chapel.ypp"
{ (yyval.pch) = astr((yyvsp[-1].pch), "!"); }
#line 8755 "bison-chapel.cpp"
break;
case 338: /* fn_ident: op_ident */
#line 1581 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 8761 "bison-chapel.cpp"
break;
case 339: /* op_ident: TBAND */
#line 1585 "chapel.ypp"
{ (yyval.pch) = "&"; }
#line 8767 "bison-chapel.cpp"
break;
case 340: /* op_ident: TBOR */
#line 1586 "chapel.ypp"
{ (yyval.pch) = "|"; }
#line 8773 "bison-chapel.cpp"
break;
case 341: /* op_ident: TBXOR */
#line 1587 "chapel.ypp"
{ (yyval.pch) = "^"; }
#line 8779 "bison-chapel.cpp"
break;
case 342: /* op_ident: TBNOT */
#line 1588 "chapel.ypp"
{ (yyval.pch) = "~"; }
#line 8785 "bison-chapel.cpp"
break;
case 343: /* op_ident: TEQUAL */
#line 1589 "chapel.ypp"
{ (yyval.pch) = "=="; }
#line 8791 "bison-chapel.cpp"
break;
case 344: /* op_ident: TNOTEQUAL */
#line 1590 "chapel.ypp"
{ (yyval.pch) = "!="; }
#line 8797 "bison-chapel.cpp"
break;
case 345: /* op_ident: TLESSEQUAL */
#line 1591 "chapel.ypp"
{ (yyval.pch) = "<="; }
#line 8803 "bison-chapel.cpp"
break;
case 346: /* op_ident: TGREATEREQUAL */
#line 1592 "chapel.ypp"
{ (yyval.pch) = ">="; }
#line 8809 "bison-chapel.cpp"
break;
case 347: /* op_ident: TLESS */
#line 1593 "chapel.ypp"
{ (yyval.pch) = "<"; }
#line 8815 "bison-chapel.cpp"
break;
case 348: /* op_ident: TGREATER */
#line 1594 "chapel.ypp"
{ (yyval.pch) = ">"; }
#line 8821 "bison-chapel.cpp"
break;
case 349: /* op_ident: TPLUS */
#line 1595 "chapel.ypp"
{ (yyval.pch) = "+"; }
#line 8827 "bison-chapel.cpp"
break;
case 350: /* op_ident: TMINUS */
#line 1596 "chapel.ypp"
{ (yyval.pch) = "-"; }
#line 8833 "bison-chapel.cpp"
break;
case 351: /* op_ident: TSTAR */
#line 1597 "chapel.ypp"
{ (yyval.pch) = "*"; }
#line 8839 "bison-chapel.cpp"
break;
case 352: /* op_ident: TDIVIDE */
#line 1598 "chapel.ypp"
{ (yyval.pch) = "/"; }
#line 8845 "bison-chapel.cpp"
break;
case 353: /* op_ident: TSHIFTLEFT */
#line 1599 "chapel.ypp"
{ (yyval.pch) = "<<"; }
#line 8851 "bison-chapel.cpp"
break;
case 354: /* op_ident: TSHIFTRIGHT */
#line 1600 "chapel.ypp"
{ (yyval.pch) = ">>"; }
#line 8857 "bison-chapel.cpp"
break;
case 355: /* op_ident: TMOD */
#line 1601 "chapel.ypp"
{ (yyval.pch) = "%"; }
#line 8863 "bison-chapel.cpp"
break;
case 356: /* op_ident: TEXP */
#line 1602 "chapel.ypp"
{ (yyval.pch) = "**"; }
#line 8869 "bison-chapel.cpp"
break;
case 357: /* op_ident: TBANG */
#line 1603 "chapel.ypp"
{ (yyval.pch) = "!"; }
#line 8875 "bison-chapel.cpp"
break;
case 358: /* op_ident: TBY */
#line 1604 "chapel.ypp"
{ (yyval.pch) = "chpl_by"; }
#line 8881 "bison-chapel.cpp"
break;
case 359: /* op_ident: THASH */
#line 1605 "chapel.ypp"
{ (yyval.pch) = "#"; }
#line 8887 "bison-chapel.cpp"
break;
case 360: /* op_ident: TALIGN */
#line 1606 "chapel.ypp"
{ (yyval.pch) = "chpl_align"; }
#line 8893 "bison-chapel.cpp"
break;
case 361: /* op_ident: TSWAP */
#line 1607 "chapel.ypp"
{ (yyval.pch) = "<=>"; }
#line 8899 "bison-chapel.cpp"
break;
case 362: /* op_ident: TIO */
#line 1608 "chapel.ypp"
{ (yyval.pch) = "<~>"; }
#line 8905 "bison-chapel.cpp"
break;
case 363: /* op_ident: TINITEQUALS */
#line 1609 "chapel.ypp"
{ (yyval.pch) = "init="; }
#line 8911 "bison-chapel.cpp"
break;
case 364: /* op_ident: TCOLON */
#line 1610 "chapel.ypp"
{ (yyval.pch) = ":"; }
#line 8917 "bison-chapel.cpp"
break;
case 365: /* assignop_ident: TASSIGN */
#line 1614 "chapel.ypp"
{ (yyval.pch) = "="; }
#line 8923 "bison-chapel.cpp"
break;
case 366: /* assignop_ident: TASSIGNPLUS */
#line 1615 "chapel.ypp"
{ (yyval.pch) = "+="; }
#line 8929 "bison-chapel.cpp"
break;
case 367: /* assignop_ident: TASSIGNMINUS */
#line 1616 "chapel.ypp"
{ (yyval.pch) = "-="; }
#line 8935 "bison-chapel.cpp"
break;
case 368: /* assignop_ident: TASSIGNMULTIPLY */
#line 1617 "chapel.ypp"
{ (yyval.pch) = "*="; }
#line 8941 "bison-chapel.cpp"
break;
case 369: /* assignop_ident: TASSIGNDIVIDE */
#line 1618 "chapel.ypp"
{ (yyval.pch) = "/="; }
#line 8947 "bison-chapel.cpp"
break;
case 370: /* assignop_ident: TASSIGNMOD */
#line 1619 "chapel.ypp"
{ (yyval.pch) = "%="; }
#line 8953 "bison-chapel.cpp"
break;
case 371: /* assignop_ident: TASSIGNEXP */
#line 1620 "chapel.ypp"
{ (yyval.pch) = "**="; }
#line 8959 "bison-chapel.cpp"
break;
case 372: /* assignop_ident: TASSIGNBAND */
#line 1621 "chapel.ypp"
{ (yyval.pch) = "&="; }
#line 8965 "bison-chapel.cpp"
break;
case 373: /* assignop_ident: TASSIGNBOR */
#line 1622 "chapel.ypp"
{ (yyval.pch) = "|="; }
#line 8971 "bison-chapel.cpp"
break;
case 374: /* assignop_ident: TASSIGNBXOR */
#line 1623 "chapel.ypp"
{ (yyval.pch) = "^="; }
#line 8977 "bison-chapel.cpp"
break;
case 375: /* assignop_ident: TASSIGNSR */
#line 1624 "chapel.ypp"
{ (yyval.pch) = ">>="; }
#line 8983 "bison-chapel.cpp"
break;
case 376: /* assignop_ident: TASSIGNSL */
#line 1625 "chapel.ypp"
{ (yyval.pch) = "<<="; }
#line 8989 "bison-chapel.cpp"
break;
case 377: /* all_op_name: op_ident */
#line 1629 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 8995 "bison-chapel.cpp"
break;
case 378: /* all_op_name: assignop_ident */
#line 1630 "chapel.ypp"
{ (yyval.pch) = (yyvsp[0].pch); }
#line 9001 "bison-chapel.cpp"
break;
case 379: /* opt_formal_ls: %empty */
#line 1634 "chapel.ypp"
{ (yyval.pfnsymbol) = new FnSymbol("_"); (yyval.pfnsymbol)->addFlag(FLAG_NO_PARENS); }
#line 9007 "bison-chapel.cpp"
break;
case 380: /* opt_formal_ls: TLP formal_ls TRP */
#line 1635 "chapel.ypp"
{ (yyval.pfnsymbol) = (yyvsp[-1].pfnsymbol); }
#line 9013 "bison-chapel.cpp"
break;
case 381: /* req_formal_ls: TLP formal_ls TRP */
#line 1639 "chapel.ypp"
{ (yyval.pfnsymbol) = (yyvsp[-1].pfnsymbol); }
#line 9019 "bison-chapel.cpp"
break;
case 382: /* formal_ls_inner: formal */
#line 1643 "chapel.ypp"
{ (yyval.pfnsymbol) = buildFunctionFormal(NULL, (yyvsp[0].pdefexpr)); }
#line 9025 "bison-chapel.cpp"
break;
case 383: /* formal_ls_inner: formal_ls_inner TCOMMA formal */
#line 1644 "chapel.ypp"
{ (yyval.pfnsymbol) = buildFunctionFormal((yyvsp[-2].pfnsymbol), (yyvsp[0].pdefexpr)); }
#line 9031 "bison-chapel.cpp"
break;
case 384: /* formal_ls: %empty */
#line 1648 "chapel.ypp"
{ (yyval.pfnsymbol) = buildFunctionFormal(NULL, NULL); }
#line 9037 "bison-chapel.cpp"
break;
case 385: /* formal_ls: formal_ls_inner */
#line 1649 "chapel.ypp"
{ (yyval.pfnsymbol) = (yyvsp[0].pfnsymbol); }
#line 9043 "bison-chapel.cpp"
break;
case 386: /* formal: opt_intent_tag ident_def opt_formal_type opt_init_expr */
#line 1654 "chapel.ypp"
{ (yyval.pdefexpr) = buildArgDefExpr((yyvsp[-3].pt), (yyvsp[-2].pch), (yyvsp[-1].pexpr), (yyvsp[0].pexpr), NULL); }
#line 9049 "bison-chapel.cpp"
break;
case 387: /* formal: pragma_ls opt_intent_tag ident_def opt_formal_type opt_init_expr */
#line 1656 "chapel.ypp"
{ (yyval.pdefexpr) = buildPragmaDefExpr((yyvsp[-4].vpch), buildArgDefExpr((yyvsp[-3].pt), (yyvsp[-2].pch), (yyvsp[-1].pexpr), (yyvsp[0].pexpr), NULL)); }
#line 9055 "bison-chapel.cpp"
break;
case 388: /* formal: opt_intent_tag ident_def opt_formal_type var_arg_expr */
#line 1658 "chapel.ypp"
{ (yyval.pdefexpr) = buildArgDefExpr((yyvsp[-3].pt), (yyvsp[-2].pch), (yyvsp[-1].pexpr), NULL, (yyvsp[0].pexpr)); }
#line 9061 "bison-chapel.cpp"
break;
case 389: /* formal: pragma_ls opt_intent_tag ident_def opt_formal_type var_arg_expr */
#line 1660 "chapel.ypp"
{ (yyval.pdefexpr) = buildPragmaDefExpr((yyvsp[-4].vpch), buildArgDefExpr((yyvsp[-3].pt), (yyvsp[-2].pch), (yyvsp[-1].pexpr), NULL, (yyvsp[0].pexpr))); }
#line 9067 "bison-chapel.cpp"
break;
case 390: /* formal: opt_intent_tag TLP tuple_var_decl_stmt_inner_ls TRP opt_formal_type opt_init_expr */
#line 1662 "chapel.ypp"
{ (yyval.pdefexpr) = buildTupleArgDefExpr((yyvsp[-5].pt), (yyvsp[-3].pblockstmt), (yyvsp[-1].pexpr), (yyvsp[0].pexpr)); }
#line 9073 "bison-chapel.cpp"
break;
case 391: /* formal: opt_intent_tag TLP tuple_var_decl_stmt_inner_ls TRP opt_formal_type var_arg_expr */
#line 1664 "chapel.ypp"
{ USR_FATAL("variable-length argument may not be grouped in a tuple"); }
#line 9079 "bison-chapel.cpp"
break;
case 392: /* opt_intent_tag: %empty */
#line 1668 "chapel.ypp"
{ (yyval.pt) = INTENT_BLANK; }
#line 9085 "bison-chapel.cpp"
break;
case 393: /* opt_intent_tag: required_intent_tag */
#line 1669 "chapel.ypp"
{ (yyval.pt) = (yyvsp[0].pt); }
#line 9091 "bison-chapel.cpp"
break;
case 394: /* required_intent_tag: TIN */
#line 1673 "chapel.ypp"
{ (yyval.pt) = INTENT_IN; }
#line 9097 "bison-chapel.cpp"
break;
case 395: /* required_intent_tag: TINOUT */
#line 1674 "chapel.ypp"
{ (yyval.pt) = INTENT_INOUT; }
#line 9103 "bison-chapel.cpp"
break;
case 396: /* required_intent_tag: TOUT */
#line 1675 "chapel.ypp"
{ (yyval.pt) = INTENT_OUT; }
#line 9109 "bison-chapel.cpp"
break;
case 397: /* required_intent_tag: TCONST */
#line 1676 "chapel.ypp"
{ (yyval.pt) = INTENT_CONST; }
#line 9115 "bison-chapel.cpp"
break;
case 398: /* required_intent_tag: TCONST TIN */
#line 1677 "chapel.ypp"
{ (yyval.pt) = INTENT_CONST_IN; }
#line 9121 "bison-chapel.cpp"
break;
case 399: /* required_intent_tag: TCONST TREF */
#line 1678 "chapel.ypp"
{ (yyval.pt) = INTENT_CONST_REF; }
#line 9127 "bison-chapel.cpp"
break;
case 400: /* required_intent_tag: TPARAM */
#line 1679 "chapel.ypp"
{ (yyval.pt) = INTENT_PARAM; }
#line 9133 "bison-chapel.cpp"
break;
case 401: /* required_intent_tag: TREF */
#line 1680 "chapel.ypp"
{ (yyval.pt) = INTENT_REF; }
#line 9139 "bison-chapel.cpp"
break;
case 402: /* required_intent_tag: TTYPE */
#line 1681 "chapel.ypp"
{ (yyval.pt) = INTENT_TYPE; }
#line 9145 "bison-chapel.cpp"
break;
case 403: /* opt_this_intent_tag: %empty */
#line 1685 "chapel.ypp"
{ (yyval.pt) = INTENT_BLANK; }
#line 9151 "bison-chapel.cpp"
break;
case 404: /* opt_this_intent_tag: TPARAM */
#line 1686 "chapel.ypp"
{ (yyval.pt) = INTENT_PARAM; }
#line 9157 "bison-chapel.cpp"
break;
case 405: /* opt_this_intent_tag: TREF */
#line 1687 "chapel.ypp"
{ (yyval.pt) = INTENT_REF; }
#line 9163 "bison-chapel.cpp"
break;
case 406: /* opt_this_intent_tag: TCONST TREF */
#line 1688 "chapel.ypp"
{ (yyval.pt) = INTENT_CONST_REF; }
#line 9169 "bison-chapel.cpp"
break;
case 407: /* opt_this_intent_tag: TCONST */
#line 1689 "chapel.ypp"
{ (yyval.pt) = INTENT_CONST; }
#line 9175 "bison-chapel.cpp"
break;
case 408: /* opt_this_intent_tag: TTYPE */
#line 1690 "chapel.ypp"
{ (yyval.pt) = INTENT_TYPE; }
#line 9181 "bison-chapel.cpp"
break;
case 409: /* proc_iter_or_op: TPROC */
#line 1694 "chapel.ypp"
{ (yyval.procIterOp) = ProcIterOp_PROC; }
#line 9187 "bison-chapel.cpp"
break;
case 410: /* proc_iter_or_op: TITER */
#line 1695 "chapel.ypp"
{ (yyval.procIterOp) = ProcIterOp_ITER; }
#line 9193 "bison-chapel.cpp"
break;
case 411: /* proc_iter_or_op: TOPERATOR */
#line 1696 "chapel.ypp"
{ (yyval.procIterOp) = ProcIterOp_OP; }
#line 9199 "bison-chapel.cpp"
break;
case 412: /* opt_ret_tag: %empty */
#line 1700 "chapel.ypp"
{ (yyval.retTag) = RET_VALUE; }
#line 9205 "bison-chapel.cpp"
break;
case 413: /* opt_ret_tag: TCONST */
#line 1701 "chapel.ypp"
{ (yyval.retTag) = RET_VALUE; }
#line 9211 "bison-chapel.cpp"
break;
case 414: /* opt_ret_tag: TCONST TREF */
#line 1702 "chapel.ypp"
{ (yyval.retTag) = RET_CONST_REF; }
#line 9217 "bison-chapel.cpp"
break;
case 415: /* opt_ret_tag: TREF */
#line 1703 "chapel.ypp"
{ (yyval.retTag) = RET_REF; }
#line 9223 "bison-chapel.cpp"
break;
case 416: /* opt_ret_tag: TPARAM */
#line 1704 "chapel.ypp"
{ (yyval.retTag) = RET_PARAM; }
#line 9229 "bison-chapel.cpp"
break;
case 417: /* opt_ret_tag: TTYPE */
#line 1705 "chapel.ypp"
{ (yyval.retTag) = RET_TYPE; }
#line 9235 "bison-chapel.cpp"
break;
case 418: /* opt_throws_error: %empty */
#line 1709 "chapel.ypp"
{ (yyval.b) = false; }
#line 9241 "bison-chapel.cpp"
break;
case 419: /* opt_throws_error: TTHROWS */
#line 1710 "chapel.ypp"
{ (yyval.b) = true; }
#line 9247 "bison-chapel.cpp"
break;
case 420: /* opt_function_body_stmt: TSEMI */
#line 1713 "chapel.ypp"
{ (yyval.pblockstmt) = NULL; }
#line 9253 "bison-chapel.cpp"
break;
case 423: /* function_body_stmt: return_stmt */
#line 1719 "chapel.ypp"
{ (yyval.pblockstmt) = new BlockStmt((yyvsp[0].pblockstmt)); }
#line 9259 "bison-chapel.cpp"
break;
case 424: /* query_expr: TQUERIEDIDENT */
#line 1723 "chapel.ypp"
{ (yyval.pexpr) = buildQueriedExpr((yyvsp[0].pch)); }
#line 9265 "bison-chapel.cpp"
break;
case 425: /* var_arg_expr: TDOTDOTDOT */
#line 1727 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gUninstantiated); }
#line 9271 "bison-chapel.cpp"
break;
case 426: /* var_arg_expr: TDOTDOTDOT expr */
#line 1728 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9277 "bison-chapel.cpp"
break;
case 427: /* var_arg_expr: TDOTDOTDOT query_expr */
#line 1729 "chapel.ypp"
{ if (DefExpr* def = toDefExpr((yyvsp[0].pexpr))) {
def->sym->addFlag(FLAG_PARAM);
}
(yyval.pexpr) = (yyvsp[0].pexpr);
}
#line 9287 "bison-chapel.cpp"
break;
case 428: /* opt_lifetime_where: %empty */
#line 1737 "chapel.ypp"
{ (yyval.lifetimeAndWhere) = makeWhereAndLifetime(NULL, NULL); }
#line 9293 "bison-chapel.cpp"
break;
case 429: /* opt_lifetime_where: TWHERE expr */
#line 1739 "chapel.ypp"
{ (yyval.lifetimeAndWhere) = makeWhereAndLifetime((yyvsp[0].pexpr), NULL); }
#line 9299 "bison-chapel.cpp"
break;
case 430: /* opt_lifetime_where: TLIFETIME lifetime_components_expr */
#line 1741 "chapel.ypp"
{ (yyval.lifetimeAndWhere) = makeWhereAndLifetime(NULL, (yyvsp[0].pexpr)); }
#line 9305 "bison-chapel.cpp"
break;
case 431: /* opt_lifetime_where: TWHERE expr TLIFETIME lifetime_components_expr */
#line 1743 "chapel.ypp"
{ (yyval.lifetimeAndWhere) = makeWhereAndLifetime((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 9311 "bison-chapel.cpp"
break;
case 432: /* opt_lifetime_where: TLIFETIME lifetime_components_expr TWHERE expr */
#line 1745 "chapel.ypp"
{ (yyval.lifetimeAndWhere) = makeWhereAndLifetime((yyvsp[0].pexpr), (yyvsp[-2].pexpr)); }
#line 9317 "bison-chapel.cpp"
break;
case 433: /* lifetime_components_expr: lifetime_expr */
#line 1750 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9323 "bison-chapel.cpp"
break;
case 434: /* lifetime_components_expr: lifetime_components_expr TCOMMA lifetime_expr */
#line 1752 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(",", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 9329 "bison-chapel.cpp"
break;
case 435: /* lifetime_expr: lifetime_ident TASSIGN lifetime_ident */
#line 1756 "chapel.ypp"
{(yyval.pexpr) = new CallExpr("=", (yyvsp[-2].pexpr), (yyvsp[0].pexpr));}
#line 9335 "bison-chapel.cpp"
break;
case 436: /* lifetime_expr: lifetime_ident TLESS lifetime_ident */
#line 1757 "chapel.ypp"
{(yyval.pexpr) = new CallExpr("<", (yyvsp[-2].pexpr), (yyvsp[0].pexpr));}
#line 9341 "bison-chapel.cpp"
break;
case 437: /* lifetime_expr: lifetime_ident TLESSEQUAL lifetime_ident */
#line 1758 "chapel.ypp"
{(yyval.pexpr) = new CallExpr("<=", (yyvsp[-2].pexpr), (yyvsp[0].pexpr));}
#line 9347 "bison-chapel.cpp"
break;
case 438: /* lifetime_expr: lifetime_ident TEQUAL lifetime_ident */
#line 1759 "chapel.ypp"
{(yyval.pexpr) = new CallExpr("==", (yyvsp[-2].pexpr), (yyvsp[0].pexpr));}
#line 9353 "bison-chapel.cpp"
break;
case 439: /* lifetime_expr: lifetime_ident TGREATER lifetime_ident */
#line 1760 "chapel.ypp"
{(yyval.pexpr) = new CallExpr(">", (yyvsp[-2].pexpr), (yyvsp[0].pexpr));}
#line 9359 "bison-chapel.cpp"
break;
case 440: /* lifetime_expr: lifetime_ident TGREATEREQUAL lifetime_ident */
#line 1761 "chapel.ypp"
{(yyval.pexpr) = new CallExpr(">=", (yyvsp[-2].pexpr), (yyvsp[0].pexpr));}
#line 9365 "bison-chapel.cpp"
break;
case 441: /* lifetime_expr: TRETURN lifetime_ident */
#line 1762 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_RETURN, (yyvsp[0].pexpr)); }
#line 9371 "bison-chapel.cpp"
break;
case 442: /* lifetime_ident: TIDENT */
#line 1767 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_LIFETIME_OF, new UnresolvedSymExpr((yyvsp[0].pch))); }
#line 9377 "bison-chapel.cpp"
break;
case 443: /* lifetime_ident: TTHIS */
#line 1769 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_LIFETIME_OF, new UnresolvedSymExpr("this")); }
#line 9383 "bison-chapel.cpp"
break;
case 444: /* type_alias_decl_stmt: TTYPE type_alias_decl_stmt_inner TSEMI */
#line 1774 "chapel.ypp"
{ (yyval.pblockstmt) = (yyvsp[-1].pblockstmt); }
#line 9389 "bison-chapel.cpp"
break;
case 445: /* type_alias_decl_stmt: TCONFIG TTYPE type_alias_decl_stmt_inner TSEMI */
#line 1776 "chapel.ypp"
{ (yyval.pblockstmt) = handleConfigTypes((yyvsp[-1].pblockstmt)); }
#line 9395 "bison-chapel.cpp"
break;
case 446: /* type_alias_decl_stmt: TEXTERN TTYPE type_alias_decl_stmt_inner TSEMI */
#line 1778 "chapel.ypp"
{ (yyval.pblockstmt) = convertTypesToExtern((yyvsp[-1].pblockstmt)); }
#line 9401 "bison-chapel.cpp"
break;
case 447: /* type_alias_decl_stmt_inner: ident_def opt_init_type */
#line 1783 "chapel.ypp"
{
VarSymbol* var = new VarSymbol((yyvsp[-1].pch));
var->addFlag(FLAG_TYPE_VARIABLE);
var->doc = context->latestComment;
context->latestComment = NULL;
DefExpr* def = new DefExpr(var, (yyvsp[0].pexpr));
(yyval.pblockstmt) = buildChapelStmt(def);
}
#line 9418 "bison-chapel.cpp"
break;
case 448: /* type_alias_decl_stmt_inner: ident_def opt_init_type TCOMMA type_alias_decl_stmt_inner */
#line 1796 "chapel.ypp"
{
VarSymbol* var = new VarSymbol((yyvsp[-3].pch));
var->addFlag(FLAG_TYPE_VARIABLE);
var->doc = context->latestComment;
context->latestComment = NULL;
DefExpr* def = new DefExpr(var, (yyvsp[-2].pexpr));
(yyvsp[0].pblockstmt)->insertAtHead(def);
(yyval.pblockstmt) = buildChapelStmt((yyvsp[0].pblockstmt));
}
#line 9436 "bison-chapel.cpp"
break;
case 449: /* opt_init_type: %empty */
#line 1812 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9442 "bison-chapel.cpp"
break;
case 450: /* opt_init_type: TASSIGN type_level_expr */
#line 1814 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9448 "bison-chapel.cpp"
break;
case 451: /* opt_init_type: TASSIGN array_type */
#line 1816 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExprFromArrayType((yyvsp[0].pcallexpr)); }
#line 9454 "bison-chapel.cpp"
break;
case 452: /* var_decl_type: TPARAM */
#line 1820 "chapel.ypp"
{ (yyval.pflagset) = buildVarDeclFlags(FLAG_PARAM); }
#line 9460 "bison-chapel.cpp"
break;
case 453: /* var_decl_type: TCONST */
#line 1821 "chapel.ypp"
{ (yyval.pflagset) = buildVarDeclFlags(FLAG_CONST); }
#line 9466 "bison-chapel.cpp"
break;
case 454: /* var_decl_type: TREF */
#line 1822 "chapel.ypp"
{ (yyval.pflagset) = buildVarDeclFlags(FLAG_REF_VAR); }
#line 9472 "bison-chapel.cpp"
break;
case 455: /* var_decl_type: TCONST TREF */
#line 1823 "chapel.ypp"
{ (yyval.pflagset) = buildVarDeclFlags(FLAG_CONST, FLAG_REF_VAR); }
#line 9478 "bison-chapel.cpp"
break;
case 456: /* var_decl_type: TVAR */
#line 1824 "chapel.ypp"
{ (yyval.pflagset) = buildVarDeclFlags(); }
#line 9484 "bison-chapel.cpp"
break;
case 457: /* var_decl_stmt: TCONFIG var_decl_type var_decl_stmt_inner_ls TSEMI */
#line 1829 "chapel.ypp"
{
(yyvsp[-2].pflagset)->insert(FLAG_CONFIG);
(yyval.pblockstmt) = buildVarDecls((yyvsp[-1].pblockstmt), context->latestComment, (yyvsp[-2].pflagset));
context->latestComment = NULL;
}
#line 9494 "bison-chapel.cpp"
break;
case 458: /* var_decl_stmt: var_decl_type var_decl_stmt_inner_ls TSEMI */
#line 1835 "chapel.ypp"
{
(yyval.pblockstmt) = buildVarDecls((yyvsp[-1].pblockstmt), context->latestComment, (yyvsp[-2].pflagset));
context->latestComment = NULL;
}
#line 9503 "bison-chapel.cpp"
break;
case 460: /* var_decl_stmt_inner_ls: var_decl_stmt_inner_ls TCOMMA var_decl_stmt_inner */
#line 1844 "chapel.ypp"
{
for_alist(expr, (yyvsp[0].pblockstmt)->body)
(yyvsp[-2].pblockstmt)->insertAtTail(expr->remove());
}
#line 9512 "bison-chapel.cpp"
break;
case 461: /* var_decl_stmt_inner: ident_def opt_type opt_init_expr */
#line 1852 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt(new DefExpr(new VarSymbol((yyvsp[-2].pch)), (yyvsp[0].pexpr), (yyvsp[-1].pexpr))); }
#line 9518 "bison-chapel.cpp"
break;
case 462: /* var_decl_stmt_inner: TLP tuple_var_decl_stmt_inner_ls TRP opt_type opt_init_expr */
#line 1854 "chapel.ypp"
{ (yyval.pblockstmt) = buildTupleVarDeclStmt((yyvsp[-3].pblockstmt), (yyvsp[-1].pexpr), (yyvsp[0].pexpr)); }
#line 9524 "bison-chapel.cpp"
break;
case 463: /* tuple_var_decl_component: TUNDERSCORE */
#line 1859 "chapel.ypp"
{ (yyval.pexpr) = new DefExpr(new VarSymbol("chpl__tuple_blank")); }
#line 9530 "bison-chapel.cpp"
break;
case 464: /* tuple_var_decl_component: ident_def */
#line 1861 "chapel.ypp"
{ (yyval.pexpr) = new DefExpr(new VarSymbol((yyvsp[0].pch))); }
#line 9536 "bison-chapel.cpp"
break;
case 465: /* tuple_var_decl_component: TLP tuple_var_decl_stmt_inner_ls TRP */
#line 1863 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[-1].pblockstmt); }
#line 9542 "bison-chapel.cpp"
break;
case 466: /* tuple_var_decl_stmt_inner_ls: tuple_var_decl_component */
#line 1868 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt((yyvsp[0].pexpr)); }
#line 9548 "bison-chapel.cpp"
break;
case 467: /* tuple_var_decl_stmt_inner_ls: tuple_var_decl_component TCOMMA */
#line 1870 "chapel.ypp"
{ (yyval.pblockstmt) = buildChapelStmt((yyvsp[-1].pexpr)); }
#line 9554 "bison-chapel.cpp"
break;
case 468: /* tuple_var_decl_stmt_inner_ls: tuple_var_decl_component TCOMMA tuple_var_decl_stmt_inner_ls */
#line 1872 "chapel.ypp"
{ (yyval.pblockstmt) = ((yyvsp[0].pblockstmt)->insertAtHead((yyvsp[-2].pexpr)), (yyvsp[0].pblockstmt)); }
#line 9560 "bison-chapel.cpp"
break;
case 469: /* opt_init_expr: %empty */
#line 1878 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9566 "bison-chapel.cpp"
break;
case 470: /* opt_init_expr: TASSIGN TNOINIT */
#line 1879 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gNoInit); }
#line 9572 "bison-chapel.cpp"
break;
case 471: /* opt_init_expr: TASSIGN opt_try_expr */
#line 1880 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9578 "bison-chapel.cpp"
break;
case 472: /* ret_array_type: TLSBR TRSBR type_level_expr */
#line 1886 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType", gNil, (yyvsp[0].pexpr)); }
#line 9584 "bison-chapel.cpp"
break;
case 473: /* ret_array_type: TLSBR TRSBR */
#line 1888 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType", gNil, NULL); }
#line 9590 "bison-chapel.cpp"
break;
case 474: /* ret_array_type: TLSBR expr_ls TRSBR type_level_expr */
#line 1890 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType",
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pcallexpr)), (yyvsp[0].pexpr));
}
#line 9598 "bison-chapel.cpp"
break;
case 475: /* ret_array_type: TLSBR expr_ls TRSBR */
#line 1894 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType",
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-1].pcallexpr)), NULL);
}
#line 9606 "bison-chapel.cpp"
break;
case 476: /* ret_array_type: TLSBR TRSBR ret_array_type */
#line 1898 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType", gNil, (yyvsp[0].pexpr)); }
#line 9612 "bison-chapel.cpp"
break;
case 477: /* ret_array_type: TLSBR expr_ls TRSBR ret_array_type */
#line 1900 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType",
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pcallexpr)), (yyvsp[0].pexpr));
}
#line 9620 "bison-chapel.cpp"
break;
case 478: /* ret_array_type: TLSBR error TRSBR */
#line 1904 "chapel.ypp"
{
(yyval.pexpr) = new CallExpr(PRIM_ERROR);
}
#line 9628 "bison-chapel.cpp"
break;
case 479: /* opt_ret_type: %empty */
#line 1911 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9634 "bison-chapel.cpp"
break;
case 480: /* opt_ret_type: TCOLON type_level_expr */
#line 1912 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9640 "bison-chapel.cpp"
break;
case 481: /* opt_ret_type: TCOLON ret_array_type */
#line 1913 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9646 "bison-chapel.cpp"
break;
case 482: /* opt_ret_type: TCOLON reserved_type_ident_use */
#line 1914 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr((yyvsp[0].pch)); }
#line 9652 "bison-chapel.cpp"
break;
case 483: /* opt_ret_type: error */
#line 1915 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9658 "bison-chapel.cpp"
break;
case 484: /* opt_type: %empty */
#line 1920 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9664 "bison-chapel.cpp"
break;
case 485: /* opt_type: TCOLON type_level_expr */
#line 1921 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9670 "bison-chapel.cpp"
break;
case 486: /* opt_type: TCOLON array_type */
#line 1922 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pcallexpr); }
#line 9676 "bison-chapel.cpp"
break;
case 487: /* opt_type: TCOLON reserved_type_ident_use */
#line 1923 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr((yyvsp[0].pch)); }
#line 9682 "bison-chapel.cpp"
break;
case 488: /* opt_type: error */
#line 1924 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9688 "bison-chapel.cpp"
break;
case 489: /* array_type: TLSBR expr_ls TRSBR type_level_expr */
#line 1945 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr("chpl__buildArrayRuntimeType",
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pcallexpr)), (yyvsp[0].pexpr));
}
#line 9696 "bison-chapel.cpp"
break;
case 490: /* array_type: TLSBR expr_ls TRSBR array_type */
#line 1949 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr("chpl__buildArrayRuntimeType",
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pcallexpr)), (yyvsp[0].pcallexpr));
}
#line 9704 "bison-chapel.cpp"
break;
case 491: /* array_type: TLSBR expr_ls TIN expr TRSBR type_level_expr */
#line 1953 "chapel.ypp"
{
if ((yyvsp[-4].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-2].pexpr), "invalid index expression");
(yyval.pcallexpr) = new CallExpr("chpl__buildArrayRuntimeType",
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pexpr)), (yyvsp[0].pexpr), (yyvsp[-4].pcallexpr)->get(1)->remove(),
new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pexpr)->copy()));
}
#line 9716 "bison-chapel.cpp"
break;
case 492: /* array_type: TLSBR error TRSBR */
#line 1961 "chapel.ypp"
{
(yyval.pcallexpr) = new CallExpr(PRIM_ERROR);
}
#line 9724 "bison-chapel.cpp"
break;
case 493: /* opt_formal_array_elt_type: %empty */
#line 1967 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9730 "bison-chapel.cpp"
break;
case 494: /* opt_formal_array_elt_type: type_level_expr */
#line 1968 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9736 "bison-chapel.cpp"
break;
case 495: /* opt_formal_array_elt_type: query_expr */
#line 1969 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9742 "bison-chapel.cpp"
break;
case 496: /* formal_array_type: TLSBR TRSBR opt_formal_array_elt_type */
#line 1974 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType", gNil, (yyvsp[0].pexpr)); }
#line 9748 "bison-chapel.cpp"
break;
case 497: /* formal_array_type: TLSBR expr_ls TRSBR opt_formal_array_elt_type */
#line 1976 "chapel.ypp"
{ (yyval.pexpr) = buildFormalArrayType((yyvsp[-2].pcallexpr), (yyvsp[0].pexpr)); }
#line 9754 "bison-chapel.cpp"
break;
case 498: /* formal_array_type: TLSBR TRSBR formal_array_type */
#line 1982 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayRuntimeType", gNil, (yyvsp[0].pexpr)); }
#line 9760 "bison-chapel.cpp"
break;
case 499: /* formal_array_type: TLSBR expr_ls TRSBR formal_array_type */
#line 1984 "chapel.ypp"
{ (yyval.pexpr) = buildFormalArrayType((yyvsp[-2].pcallexpr), (yyvsp[0].pexpr)); }
#line 9766 "bison-chapel.cpp"
break;
case 500: /* formal_array_type: TLSBR expr_ls TIN expr TRSBR opt_formal_array_elt_type */
#line 1986 "chapel.ypp"
{ (yyval.pexpr) = buildFormalArrayType((yyvsp[-2].pexpr), (yyvsp[0].pexpr), (yyvsp[-4].pcallexpr)); }
#line 9772 "bison-chapel.cpp"
break;
case 501: /* opt_formal_type: %empty */
#line 1990 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 9778 "bison-chapel.cpp"
break;
case 502: /* opt_formal_type: TCOLON type_level_expr */
#line 1991 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9784 "bison-chapel.cpp"
break;
case 503: /* opt_formal_type: TCOLON query_expr */
#line 1992 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9790 "bison-chapel.cpp"
break;
case 504: /* opt_formal_type: TCOLON reserved_type_ident_use */
#line 1993 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr((yyvsp[0].pch)); }
#line 9796 "bison-chapel.cpp"
break;
case 505: /* opt_formal_type: TCOLON formal_array_type */
#line 1994 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9802 "bison-chapel.cpp"
break;
case 506: /* expr_ls: expr */
#line 2000 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[0].pexpr)); }
#line 9808 "bison-chapel.cpp"
break;
case 507: /* expr_ls: query_expr */
#line 2001 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[0].pexpr)); }
#line 9814 "bison-chapel.cpp"
break;
case 508: /* expr_ls: expr_ls TCOMMA expr */
#line 2002 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtTail((yyvsp[0].pexpr)); }
#line 9820 "bison-chapel.cpp"
break;
case 509: /* expr_ls: expr_ls TCOMMA query_expr */
#line 2003 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtTail((yyvsp[0].pexpr)); }
#line 9826 "bison-chapel.cpp"
break;
case 510: /* simple_expr_ls: expr */
#line 2007 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[0].pexpr));}
#line 9832 "bison-chapel.cpp"
break;
case 511: /* simple_expr_ls: simple_expr_ls TCOMMA expr */
#line 2008 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtTail((yyvsp[0].pexpr)); }
#line 9838 "bison-chapel.cpp"
break;
case 512: /* tuple_component: TUNDERSCORE */
#line 2012 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("chpl__tuple_blank"); }
#line 9844 "bison-chapel.cpp"
break;
case 513: /* tuple_component: opt_try_expr */
#line 2013 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9850 "bison-chapel.cpp"
break;
case 514: /* tuple_component: query_expr */
#line 2014 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9856 "bison-chapel.cpp"
break;
case 515: /* tuple_expr_ls: tuple_component TCOMMA tuple_component */
#line 2018 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 9862 "bison-chapel.cpp"
break;
case 516: /* tuple_expr_ls: tuple_expr_ls TCOMMA tuple_component */
#line 2019 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtTail((yyvsp[0].pexpr)); }
#line 9868 "bison-chapel.cpp"
break;
case 517: /* opt_actual_ls: %empty */
#line 2023 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST); }
#line 9874 "bison-chapel.cpp"
break;
case 519: /* actual_ls: actual_expr */
#line 2028 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[0].pexpr)); }
#line 9880 "bison-chapel.cpp"
break;
case 520: /* actual_ls: actual_ls TCOMMA actual_expr */
#line 2029 "chapel.ypp"
{ (yyvsp[-2].pcallexpr)->insertAtTail((yyvsp[0].pexpr)); }
#line 9886 "bison-chapel.cpp"
break;
case 521: /* actual_expr: ident_use TASSIGN query_expr */
#line 2033 "chapel.ypp"
{ (yyval.pexpr) = buildNamedActual((yyvsp[-2].pch), (yyvsp[0].pexpr)); }
#line 9892 "bison-chapel.cpp"
break;
case 522: /* actual_expr: ident_use TASSIGN opt_try_expr */
#line 2034 "chapel.ypp"
{ (yyval.pexpr) = buildNamedActual((yyvsp[-2].pch), (yyvsp[0].pexpr)); }
#line 9898 "bison-chapel.cpp"
break;
case 523: /* actual_expr: query_expr */
#line 2035 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9904 "bison-chapel.cpp"
break;
case 524: /* actual_expr: opt_try_expr */
#line 2036 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9910 "bison-chapel.cpp"
break;
case 525: /* ident_expr: ident_use */
#line 2040 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr((yyvsp[0].pch)); }
#line 9916 "bison-chapel.cpp"
break;
case 526: /* ident_expr: scalar_type */
#line 2041 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9922 "bison-chapel.cpp"
break;
case 527: /* type_level_expr: sub_type_level_expr */
#line 2053 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 9928 "bison-chapel.cpp"
break;
case 528: /* type_level_expr: sub_type_level_expr TQUESTION */
#line 2055 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( PRIM_TO_NILABLE_CLASS_CHECKED, (yyvsp[-1].pexpr)); }
#line 9934 "bison-chapel.cpp"
break;
case 529: /* type_level_expr: TQUESTION */
#line 2057 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gUninstantiated); }
#line 9940 "bison-chapel.cpp"
break;
case 535: /* sub_type_level_expr: TSINGLE expr */
#line 2068 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( "_singlevar", (yyvsp[0].pexpr)); }
#line 9946 "bison-chapel.cpp"
break;
case 536: /* sub_type_level_expr: TINDEX TLP opt_actual_ls TRP */
#line 2070 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildIndexType", (yyvsp[-1].pcallexpr)); }
#line 9952 "bison-chapel.cpp"
break;
case 537: /* sub_type_level_expr: TDOMAIN TLP opt_actual_ls TRP */
#line 2072 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildDomainRuntimeType", new UnresolvedSymExpr("defaultDist"), (yyvsp[-1].pcallexpr)); }
#line 9958 "bison-chapel.cpp"
break;
case 538: /* sub_type_level_expr: TSUBDOMAIN TLP opt_actual_ls TRP */
#line 2074 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildSubDomainType", (yyvsp[-1].pcallexpr)); }
#line 9964 "bison-chapel.cpp"
break;
case 539: /* sub_type_level_expr: TSPARSE TSUBDOMAIN TLP actual_expr TRP */
#line 2076 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildSparseDomainRuntimeType", buildDotExpr((yyvsp[-1].pexpr)->copy(), "defaultSparseDist"), (yyvsp[-1].pexpr)); }
#line 9970 "bison-chapel.cpp"
break;
case 540: /* sub_type_level_expr: TATOMIC expr */
#line 2078 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__atomicType", (yyvsp[0].pexpr)); }
#line 9976 "bison-chapel.cpp"
break;
case 541: /* sub_type_level_expr: TSYNC expr */
#line 2080 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( "_syncvar", (yyvsp[0].pexpr)); }
#line 9982 "bison-chapel.cpp"
break;
case 542: /* sub_type_level_expr: TOWNED */
#line 2083 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("_owned"); }
#line 9988 "bison-chapel.cpp"
break;
case 543: /* sub_type_level_expr: TOWNED expr */
#line 2085 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( "_owned", (yyvsp[0].pexpr)); }
#line 9994 "bison-chapel.cpp"
break;
case 544: /* sub_type_level_expr: TUNMANAGED */
#line 2087 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtUnmanaged->symbol); }
#line 10000 "bison-chapel.cpp"
break;
case 545: /* sub_type_level_expr: TUNMANAGED expr */
#line 2089 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( PRIM_TO_UNMANAGED_CLASS_CHECKED, (yyvsp[0].pexpr)); }
#line 10006 "bison-chapel.cpp"
break;
case 546: /* sub_type_level_expr: TSHARED */
#line 2091 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("_shared"); }
#line 10012 "bison-chapel.cpp"
break;
case 547: /* sub_type_level_expr: TSHARED expr */
#line 2093 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( "_shared", (yyvsp[0].pexpr)); }
#line 10018 "bison-chapel.cpp"
break;
case 548: /* sub_type_level_expr: TBORROWED */
#line 2095 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtBorrowed->symbol); }
#line 10024 "bison-chapel.cpp"
break;
case 549: /* sub_type_level_expr: TBORROWED expr */
#line 2097 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr( PRIM_TO_BORROWED_CLASS_CHECKED, (yyvsp[0].pexpr)); }
#line 10030 "bison-chapel.cpp"
break;
case 550: /* sub_type_level_expr: TCLASS */
#line 2100 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtAnyManagementNonNilable->symbol); }
#line 10036 "bison-chapel.cpp"
break;
case 551: /* sub_type_level_expr: TRECORD */
#line 2102 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(dtAnyRecord->symbol); }
#line 10042 "bison-chapel.cpp"
break;
case 552: /* for_expr: TFOR expr TIN expr TDO expr */
#line 2107 "chapel.ypp"
{ (yyval.pexpr) = buildForLoopExpr((yyvsp[-4].pexpr), (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10048 "bison-chapel.cpp"
break;
case 553: /* for_expr: TFOR expr TIN zippered_iterator TDO expr */
#line 2109 "chapel.ypp"
{ (yyval.pexpr) = buildForLoopExpr((yyvsp[-4].pexpr), (yyvsp[-2].pcallexpr), (yyvsp[0].pexpr), NULL, false, true); }
#line 10054 "bison-chapel.cpp"
break;
case 554: /* for_expr: TFOR expr TDO expr */
#line 2111 "chapel.ypp"
{ (yyval.pexpr) = buildForLoopExpr(NULL, (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10060 "bison-chapel.cpp"
break;
case 555: /* for_expr: TFOR expr TIN expr TDO TIF expr TTHEN expr */
#line 2113 "chapel.ypp"
{ (yyval.pexpr) = buildForLoopExpr((yyvsp[-7].pexpr), (yyvsp[-5].pexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr)); }
#line 10066 "bison-chapel.cpp"
break;
case 556: /* for_expr: TFOR expr TIN zippered_iterator TDO TIF expr TTHEN expr */
#line 2115 "chapel.ypp"
{ (yyval.pexpr) = buildForLoopExpr((yyvsp[-7].pexpr), (yyvsp[-5].pcallexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr), false, true); }
#line 10072 "bison-chapel.cpp"
break;
case 557: /* for_expr: TFOR expr TDO TIF expr TTHEN expr */
#line 2117 "chapel.ypp"
{ (yyval.pexpr) = buildForLoopExpr(NULL, (yyvsp[-5].pexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr)); }
#line 10078 "bison-chapel.cpp"
break;
case 558: /* for_expr: TFORALL expr TIN expr TDO expr */
#line 2119 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExpr((yyvsp[-4].pexpr), (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10084 "bison-chapel.cpp"
break;
case 559: /* for_expr: TFORALL expr TIN zippered_iterator TDO expr */
#line 2121 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExpr((yyvsp[-4].pexpr), (yyvsp[-2].pcallexpr), (yyvsp[0].pexpr), NULL, false, true); }
#line 10090 "bison-chapel.cpp"
break;
case 560: /* for_expr: TFORALL expr TDO expr */
#line 2123 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExpr(NULL, (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10096 "bison-chapel.cpp"
break;
case 561: /* for_expr: TFORALL expr TIN expr TDO TIF expr TTHEN expr */
#line 2125 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExpr((yyvsp[-7].pexpr), (yyvsp[-5].pexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr)); }
#line 10102 "bison-chapel.cpp"
break;
case 562: /* for_expr: TFORALL expr TIN zippered_iterator TDO TIF expr TTHEN expr */
#line 2127 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExpr((yyvsp[-7].pexpr), (yyvsp[-5].pcallexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr), false, true); }
#line 10108 "bison-chapel.cpp"
break;
case 563: /* for_expr: TFORALL expr TDO TIF expr TTHEN expr */
#line 2129 "chapel.ypp"
{ (yyval.pexpr) = buildForallLoopExpr(NULL, (yyvsp[-5].pexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr)); }
#line 10114 "bison-chapel.cpp"
break;
case 564: /* for_expr: TLSBR expr_ls TRSBR expr */
#line 2131 "chapel.ypp"
{
if ((yyvsp[-2].pcallexpr)->argList.length > 1)
(yyval.pexpr) = buildForallLoopExpr(NULL, new CallExpr("chpl__ensureDomainExpr", (yyvsp[-2].pcallexpr)), (yyvsp[0].pexpr), NULL, true);
else
(yyval.pexpr) = buildForallLoopExpr(NULL, (yyvsp[-2].pcallexpr)->get(1)->remove(), (yyvsp[0].pexpr), NULL, true);
}
#line 10125 "bison-chapel.cpp"
break;
case 565: /* for_expr: TLSBR expr_ls TIN expr TRSBR expr */
#line 2138 "chapel.ypp"
{
if ((yyvsp[-4].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-2].pexpr), "invalid index expression");
(yyval.pexpr) = buildForallLoopExpr((yyvsp[-4].pcallexpr)->get(1)->remove(), (yyvsp[-2].pexpr), (yyvsp[0].pexpr), NULL, true);
}
#line 10135 "bison-chapel.cpp"
break;
case 566: /* for_expr: TLSBR expr_ls TIN zippered_iterator TRSBR expr */
#line 2144 "chapel.ypp"
{
if ((yyvsp[-4].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-2].pcallexpr), "invalid index expression");
(yyval.pexpr) = buildForallLoopExpr((yyvsp[-4].pcallexpr)->get(1)->remove(), (yyvsp[-2].pcallexpr), (yyvsp[0].pexpr), NULL, false, true);
}
#line 10145 "bison-chapel.cpp"
break;
case 567: /* for_expr: TLSBR expr_ls TIN expr TRSBR TIF expr TTHEN expr */
#line 2150 "chapel.ypp"
{
if ((yyvsp[-7].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-5].pexpr), "invalid index expression");
(yyval.pexpr) = buildForallLoopExpr((yyvsp[-7].pcallexpr)->get(1)->remove(), (yyvsp[-5].pexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr));
}
#line 10155 "bison-chapel.cpp"
break;
case 568: /* for_expr: TLSBR expr_ls TIN zippered_iterator TRSBR TIF expr TTHEN expr */
#line 2156 "chapel.ypp"
{
if ((yyvsp[-7].pcallexpr)->argList.length != 1)
USR_FATAL((yyvsp[-5].pcallexpr), "invalid index expression");
(yyval.pexpr) = buildForallLoopExpr((yyvsp[-7].pcallexpr)->get(1)->remove(), (yyvsp[-5].pcallexpr), (yyvsp[0].pexpr), (yyvsp[-2].pexpr), false, true);
}
#line 10165 "bison-chapel.cpp"
break;
case 569: /* cond_expr: TIF expr TTHEN expr TELSE expr */
#line 2165 "chapel.ypp"
{ (yyval.pexpr) = new IfExpr((yyvsp[-4].pexpr), (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10171 "bison-chapel.cpp"
break;
case 570: /* nil_expr: TNIL */
#line 2174 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gNil); }
#line 10177 "bison-chapel.cpp"
break;
case 578: /* stmt_level_expr: io_expr TIO expr */
#line 2190 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("<~>", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10183 "bison-chapel.cpp"
break;
case 579: /* opt_task_intent_ls: %empty */
#line 2194 "chapel.ypp"
{ (yyval.pcallexpr) = NULL; }
#line 10189 "bison-chapel.cpp"
break;
case 581: /* task_intent_clause: TWITH TLP task_intent_ls TRP */
#line 2199 "chapel.ypp"
{ (yyval.pcallexpr) = (yyvsp[-1].pcallexpr); }
#line 10195 "bison-chapel.cpp"
break;
case 582: /* task_intent_ls: intent_expr */
#line 2203 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST); addTaskIntent((yyval.pcallexpr), (yyvsp[0].pShadowVar)); }
#line 10201 "bison-chapel.cpp"
break;
case 583: /* task_intent_ls: task_intent_ls TCOMMA intent_expr */
#line 2204 "chapel.ypp"
{ addTaskIntent((yyvsp[-2].pcallexpr), (yyvsp[0].pShadowVar)); }
#line 10207 "bison-chapel.cpp"
break;
case 584: /* forall_intent_clause: TWITH TLP forall_intent_ls TRP */
#line 2208 "chapel.ypp"
{ (yyval.pcallexpr) = (yyvsp[-1].pcallexpr); }
#line 10213 "bison-chapel.cpp"
break;
case 585: /* forall_intent_ls: intent_expr */
#line 2212 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST); addForallIntent((yyval.pcallexpr), (yyvsp[0].pShadowVar)); }
#line 10219 "bison-chapel.cpp"
break;
case 586: /* forall_intent_ls: forall_intent_ls TCOMMA intent_expr */
#line 2213 "chapel.ypp"
{ addForallIntent((yyvsp[-2].pcallexpr), (yyvsp[0].pShadowVar)); }
#line 10225 "bison-chapel.cpp"
break;
case 587: /* intent_expr: shadow_var_prefix ident_expr opt_type opt_init_expr */
#line 2218 "chapel.ypp"
{
(yyval.pShadowVar) = ShadowVarSymbol::buildForPrefix((yyvsp[-3].pShadowVarPref), (yyvsp[-2].pexpr), (yyvsp[-1].pexpr), (yyvsp[0].pexpr));
}
#line 10233 "bison-chapel.cpp"
break;
case 588: /* intent_expr: reduce_scan_op_expr TREDUCE ident_expr */
#line 2222 "chapel.ypp"
{
(yyval.pShadowVar) = ShadowVarSymbol::buildFromReduceIntent((yyvsp[0].pexpr), (yyvsp[-2].pexpr));
}
#line 10241 "bison-chapel.cpp"
break;
case 589: /* intent_expr: expr TREDUCE ident_expr */
#line 2226 "chapel.ypp"
{
(yyval.pShadowVar) = ShadowVarSymbol::buildFromReduceIntent((yyvsp[0].pexpr), (yyvsp[-2].pexpr));
}
#line 10249 "bison-chapel.cpp"
break;
case 590: /* shadow_var_prefix: TCONST */
#line 2232 "chapel.ypp"
{ (yyval.pShadowVarPref) = SVP_CONST; }
#line 10255 "bison-chapel.cpp"
break;
case 591: /* shadow_var_prefix: TIN */
#line 2233 "chapel.ypp"
{ (yyval.pShadowVarPref) = SVP_IN; }
#line 10261 "bison-chapel.cpp"
break;
case 592: /* shadow_var_prefix: TCONST TIN */
#line 2234 "chapel.ypp"
{ (yyval.pShadowVarPref) = SVP_CONST_IN; }
#line 10267 "bison-chapel.cpp"
break;
case 593: /* shadow_var_prefix: TREF */
#line 2235 "chapel.ypp"
{ (yyval.pShadowVarPref) = SVP_REF; }
#line 10273 "bison-chapel.cpp"
break;
case 594: /* shadow_var_prefix: TCONST TREF */
#line 2236 "chapel.ypp"
{ (yyval.pShadowVarPref) = SVP_CONST_REF; }
#line 10279 "bison-chapel.cpp"
break;
case 595: /* shadow_var_prefix: TVAR */
#line 2237 "chapel.ypp"
{ (yyval.pShadowVarPref) = SVP_VAR; }
#line 10285 "bison-chapel.cpp"
break;
case 597: /* io_expr: io_expr TIO expr */
#line 2243 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("<~>", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10291 "bison-chapel.cpp"
break;
case 598: /* new_maybe_decorated: TNEW */
#line 2248 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_NEW); }
#line 10297 "bison-chapel.cpp"
break;
case 599: /* new_maybe_decorated: TNEW TOWNED */
#line 2250 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtOwned->symbol))); }
#line 10305 "bison-chapel.cpp"
break;
case 600: /* new_maybe_decorated: TNEW TSHARED */
#line 2254 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtShared->symbol))); }
#line 10313 "bison-chapel.cpp"
break;
case 601: /* new_maybe_decorated: TNEW TUNMANAGED */
#line 2258 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtUnmanaged->symbol))); }
#line 10321 "bison-chapel.cpp"
break;
case 602: /* new_maybe_decorated: TNEW TBORROWED */
#line 2262 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtBorrowed->symbol))); }
#line 10329 "bison-chapel.cpp"
break;
case 603: /* new_expr: new_maybe_decorated expr */
#line 2270 "chapel.ypp"
{ (yyvsp[-1].pcallexpr)->insertAtTail((yyvsp[0].pexpr));
(yyval.pexpr) = (yyvsp[-1].pcallexpr); }
#line 10336 "bison-chapel.cpp"
break;
case 604: /* new_expr: TNEW TOWNED TLP expr TRP TLP opt_actual_ls TRP */
#line 2275 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtOwned->symbol)),
new CallExpr((yyvsp[-4].pexpr), (yyvsp[-1].pcallexpr)));
}
#line 10346 "bison-chapel.cpp"
break;
case 605: /* new_expr: TNEW TSHARED TLP expr TRP TLP opt_actual_ls TRP */
#line 2281 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtShared->symbol)),
new CallExpr((yyvsp[-4].pexpr), (yyvsp[-1].pcallexpr)));
}
#line 10356 "bison-chapel.cpp"
break;
case 606: /* new_expr: TNEW TOWNED TLP expr TRP TLP opt_actual_ls TRP TQUESTION */
#line 2287 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtOwned->symbol)),
new CallExpr(PRIM_TO_NILABLE_CLASS_CHECKED,
new CallExpr((yyvsp[-5].pexpr), (yyvsp[-2].pcallexpr))));
}
#line 10367 "bison-chapel.cpp"
break;
case 607: /* new_expr: TNEW TSHARED TLP expr TRP TLP opt_actual_ls TRP TQUESTION */
#line 2294 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_NEW,
new NamedExpr(astr_chpl_manager,
new SymExpr(dtShared->symbol)),
new CallExpr(PRIM_TO_NILABLE_CLASS_CHECKED,
new CallExpr((yyvsp[-5].pexpr), (yyvsp[-2].pcallexpr))));
}
#line 10378 "bison-chapel.cpp"
break;
case 608: /* let_expr: TLET var_decl_stmt_inner_ls TIN expr */
#line 2304 "chapel.ypp"
{ (yyval.pexpr) = buildLetExpr((yyvsp[-2].pblockstmt), (yyvsp[0].pexpr)); }
#line 10384 "bison-chapel.cpp"
break;
case 618: /* expr: TLP TDOTDOTDOT expr TRP */
#line 2321 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_TUPLE_EXPAND, (yyvsp[-1].pexpr)); }
#line 10390 "bison-chapel.cpp"
break;
case 619: /* expr: expr TCOLON expr */
#line 2323 "chapel.ypp"
{ (yyval.pexpr) = createCast((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10396 "bison-chapel.cpp"
break;
case 620: /* expr: expr TDOTDOT expr */
#line 2325 "chapel.ypp"
{ (yyval.pexpr) = buildBoundedRange((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10402 "bison-chapel.cpp"
break;
case 621: /* expr: expr TDOTDOTOPENHIGH expr */
#line 2327 "chapel.ypp"
{ (yyval.pexpr) = buildBoundedRange((yyvsp[-2].pexpr), (yyvsp[0].pexpr), false, true); }
#line 10408 "bison-chapel.cpp"
break;
case 622: /* expr: expr TDOTDOT */
#line 2342 "chapel.ypp"
{ (yyval.pexpr) = buildLowBoundedRange((yyvsp[-1].pexpr)); }
#line 10414 "bison-chapel.cpp"
break;
case 623: /* expr: TDOTDOT expr */
#line 2344 "chapel.ypp"
{ (yyval.pexpr) = buildHighBoundedRange((yyvsp[0].pexpr)); }
#line 10420 "bison-chapel.cpp"
break;
case 624: /* expr: TDOTDOTOPENHIGH expr */
#line 2346 "chapel.ypp"
{ (yyval.pexpr) = buildHighBoundedRange((yyvsp[0].pexpr), true); }
#line 10426 "bison-chapel.cpp"
break;
case 625: /* expr: TDOTDOT */
#line 2348 "chapel.ypp"
{ (yyval.pexpr) = buildUnboundedRange(); }
#line 10432 "bison-chapel.cpp"
break;
case 626: /* opt_expr: %empty */
#line 2352 "chapel.ypp"
{ (yyval.pexpr) = NULL; }
#line 10438 "bison-chapel.cpp"
break;
case 627: /* opt_expr: expr */
#line 2353 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 10444 "bison-chapel.cpp"
break;
case 628: /* opt_try_expr: TTRY expr */
#line 2357 "chapel.ypp"
{ (yyval.pexpr) = tryExpr((yyvsp[0].pexpr)); }
#line 10450 "bison-chapel.cpp"
break;
case 629: /* opt_try_expr: TTRYBANG expr */
#line 2358 "chapel.ypp"
{ (yyval.pexpr) = tryBangExpr((yyvsp[0].pexpr)); }
#line 10456 "bison-chapel.cpp"
break;
case 630: /* opt_try_expr: expr */
#line 2359 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 10462 "bison-chapel.cpp"
break;
case 635: /* call_base_expr: lhs_expr */
#line 2375 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 10468 "bison-chapel.cpp"
break;
case 636: /* call_base_expr: expr TBANG */
#line 2376 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("postfix!", (yyvsp[-1].pexpr)); }
#line 10474 "bison-chapel.cpp"
break;
case 637: /* call_base_expr: sub_type_level_expr TQUESTION */
#line 2377 "chapel.ypp"
{(yyval.pexpr) = new CallExpr(PRIM_TO_NILABLE_CLASS_CHECKED, (yyvsp[-1].pexpr));}
#line 10480 "bison-chapel.cpp"
break;
case 638: /* call_base_expr: lambda_decl_expr */
#line 2378 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[0].pexpr); }
#line 10486 "bison-chapel.cpp"
break;
case 640: /* call_expr: call_base_expr TLP opt_actual_ls TRP */
#line 2383 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr((yyvsp[-3].pexpr), (yyvsp[-1].pcallexpr)); }
#line 10492 "bison-chapel.cpp"
break;
case 641: /* call_expr: call_base_expr TLSBR opt_actual_ls TRSBR */
#line 2384 "chapel.ypp"
{ (yyval.pexpr) = buildSquareCallExpr((yyvsp[-3].pexpr), (yyvsp[-1].pcallexpr)); }
#line 10498 "bison-chapel.cpp"
break;
case 642: /* call_expr: TPRIMITIVE TLP opt_actual_ls TRP */
#line 2385 "chapel.ypp"
{ (yyval.pexpr) = buildPrimitiveExpr((yyvsp[-1].pcallexpr)); }
#line 10504 "bison-chapel.cpp"
break;
case 643: /* dot_expr: expr TDOT ident_use */
#line 2389 "chapel.ypp"
{ (yyval.pexpr) = buildDotExpr((yyvsp[-2].pexpr), (yyvsp[0].pch)); }
#line 10510 "bison-chapel.cpp"
break;
case 644: /* dot_expr: expr TDOT TTYPE */
#line 2390 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(PRIM_TYPEOF, (yyvsp[-2].pexpr)); }
#line 10516 "bison-chapel.cpp"
break;
case 645: /* dot_expr: expr TDOT TDOMAIN */
#line 2391 "chapel.ypp"
{ (yyval.pexpr) = buildDotExpr((yyvsp[-2].pexpr), "_dom"); }
#line 10522 "bison-chapel.cpp"
break;
case 646: /* dot_expr: expr TDOT TLOCALE */
#line 2392 "chapel.ypp"
{ (yyval.pexpr) = buildDotExpr((yyvsp[-2].pexpr), "locale"); }
#line 10528 "bison-chapel.cpp"
break;
case 647: /* dot_expr: expr TDOT TBYTES TLP TRP */
#line 2393 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(buildDotExpr((yyvsp[-4].pexpr), "chpl_bytes")); }
#line 10534 "bison-chapel.cpp"
break;
case 648: /* parenthesized_expr: TLP tuple_component TRP */
#line 2401 "chapel.ypp"
{ (yyval.pexpr) = (yyvsp[-1].pexpr); }
#line 10540 "bison-chapel.cpp"
break;
case 649: /* parenthesized_expr: TLP tuple_component TCOMMA TRP */
#line 2402 "chapel.ypp"
{ (yyval.pexpr) = buildOneTuple((yyvsp[-2].pexpr)); }
#line 10546 "bison-chapel.cpp"
break;
case 650: /* parenthesized_expr: TLP tuple_expr_ls TRP */
#line 2403 "chapel.ypp"
{ (yyval.pexpr) = buildTuple((yyvsp[-1].pcallexpr)); }
#line 10552 "bison-chapel.cpp"
break;
case 651: /* parenthesized_expr: TLP tuple_expr_ls TCOMMA TRP */
#line 2404 "chapel.ypp"
{ (yyval.pexpr) = buildTuple((yyvsp[-2].pcallexpr)); }
#line 10558 "bison-chapel.cpp"
break;
case 652: /* bool_literal: TFALSE */
#line 2408 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gFalse); }
#line 10564 "bison-chapel.cpp"
break;
case 653: /* bool_literal: TTRUE */
#line 2409 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gTrue); }
#line 10570 "bison-chapel.cpp"
break;
case 654: /* str_bytes_literal: STRINGLITERAL */
#line 2413 "chapel.ypp"
{ (yyval.pexpr) = buildStringLiteral((yyvsp[0].pch)); }
#line 10576 "bison-chapel.cpp"
break;
case 655: /* str_bytes_literal: BYTESLITERAL */
#line 2414 "chapel.ypp"
{ (yyval.pexpr) = buildBytesLiteral((yyvsp[0].pch)); }
#line 10582 "bison-chapel.cpp"
break;
case 658: /* literal_expr: INTLITERAL */
#line 2420 "chapel.ypp"
{ (yyval.pexpr) = buildIntLiteral((yyvsp[0].pch), yyfilename, chplLineno); }
#line 10588 "bison-chapel.cpp"
break;
case 659: /* literal_expr: REALLITERAL */
#line 2421 "chapel.ypp"
{ (yyval.pexpr) = buildRealLiteral((yyvsp[0].pch)); }
#line 10594 "bison-chapel.cpp"
break;
case 660: /* literal_expr: IMAGLITERAL */
#line 2422 "chapel.ypp"
{ (yyval.pexpr) = buildImagLiteral((yyvsp[0].pch)); }
#line 10600 "bison-chapel.cpp"
break;
case 661: /* literal_expr: CSTRINGLITERAL */
#line 2423 "chapel.ypp"
{ (yyval.pexpr) = buildCStringLiteral((yyvsp[0].pch)); }
#line 10606 "bison-chapel.cpp"
break;
case 662: /* literal_expr: TNONE */
#line 2424 "chapel.ypp"
{ (yyval.pexpr) = new SymExpr(gNone); }
#line 10612 "bison-chapel.cpp"
break;
case 663: /* literal_expr: TLCBR expr_ls TRCBR */
#line 2425 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildDomainExpr", (yyvsp[-1].pcallexpr),
new SymExpr(gTrue)); }
#line 10619 "bison-chapel.cpp"
break;
case 664: /* literal_expr: TLCBR expr_ls TCOMMA TRCBR */
#line 2427 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildDomainExpr", (yyvsp[-2].pcallexpr),
new SymExpr(gTrue)); }
#line 10626 "bison-chapel.cpp"
break;
case 665: /* literal_expr: TLSBR expr_ls TRSBR */
#line 2429 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayExpr", (yyvsp[-1].pcallexpr)); }
#line 10632 "bison-chapel.cpp"
break;
case 666: /* literal_expr: TLSBR expr_ls TCOMMA TRSBR */
#line 2430 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__buildArrayExpr", (yyvsp[-2].pcallexpr)); }
#line 10638 "bison-chapel.cpp"
break;
case 667: /* literal_expr: TLSBR assoc_expr_ls TRSBR */
#line 2432 "chapel.ypp"
{
(yyval.pexpr) = new CallExpr("chpl__buildAssociativeArrayExpr", (yyvsp[-1].pcallexpr));
}
#line 10646 "bison-chapel.cpp"
break;
case 668: /* literal_expr: TLSBR assoc_expr_ls TCOMMA TRSBR */
#line 2436 "chapel.ypp"
{
(yyval.pexpr) = new CallExpr("chpl__buildAssociativeArrayExpr", (yyvsp[-2].pcallexpr));
}
#line 10654 "bison-chapel.cpp"
break;
case 669: /* assoc_expr_ls: expr TALIAS expr */
#line 2443 "chapel.ypp"
{ (yyval.pcallexpr) = new CallExpr(PRIM_ACTUALS_LIST, (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10660 "bison-chapel.cpp"
break;
case 670: /* assoc_expr_ls: assoc_expr_ls TCOMMA expr TALIAS expr */
#line 2444 "chapel.ypp"
{ (yyvsp[-4].pcallexpr)->insertAtTail((yyvsp[-2].pexpr)); (yyvsp[-4].pcallexpr)->insertAtTail((yyvsp[0].pexpr)); }
#line 10666 "bison-chapel.cpp"
break;
case 671: /* binary_op_expr: expr TPLUS expr */
#line 2448 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("+", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10672 "bison-chapel.cpp"
break;
case 672: /* binary_op_expr: expr TMINUS expr */
#line 2449 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("-", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10678 "bison-chapel.cpp"
break;
case 673: /* binary_op_expr: expr TSTAR expr */
#line 2450 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("*", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10684 "bison-chapel.cpp"
break;
case 674: /* binary_op_expr: expr TDIVIDE expr */
#line 2451 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("/", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10690 "bison-chapel.cpp"
break;
case 675: /* binary_op_expr: expr TSHIFTLEFT expr */
#line 2452 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("<<", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10696 "bison-chapel.cpp"
break;
case 676: /* binary_op_expr: expr TSHIFTRIGHT expr */
#line 2453 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(">>", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10702 "bison-chapel.cpp"
break;
case 677: /* binary_op_expr: expr TMOD expr */
#line 2454 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("%", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10708 "bison-chapel.cpp"
break;
case 678: /* binary_op_expr: expr TEQUAL expr */
#line 2455 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("==", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10714 "bison-chapel.cpp"
break;
case 679: /* binary_op_expr: expr TNOTEQUAL expr */
#line 2456 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("!=", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10720 "bison-chapel.cpp"
break;
case 680: /* binary_op_expr: expr TLESSEQUAL expr */
#line 2457 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("<=", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10726 "bison-chapel.cpp"
break;
case 681: /* binary_op_expr: expr TGREATEREQUAL expr */
#line 2458 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(">=", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10732 "bison-chapel.cpp"
break;
case 682: /* binary_op_expr: expr TLESS expr */
#line 2459 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("<", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10738 "bison-chapel.cpp"
break;
case 683: /* binary_op_expr: expr TGREATER expr */
#line 2460 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr(">", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10744 "bison-chapel.cpp"
break;
case 684: /* binary_op_expr: expr TBAND expr */
#line 2461 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("&", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10750 "bison-chapel.cpp"
break;
case 685: /* binary_op_expr: expr TBOR expr */
#line 2462 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("|", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10756 "bison-chapel.cpp"
break;
case 686: /* binary_op_expr: expr TBXOR expr */
#line 2463 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("^", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10762 "bison-chapel.cpp"
break;
case 687: /* binary_op_expr: expr TAND expr */
#line 2464 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("&&", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10768 "bison-chapel.cpp"
break;
case 688: /* binary_op_expr: expr TOR expr */
#line 2465 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("||", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10774 "bison-chapel.cpp"
break;
case 689: /* binary_op_expr: expr TEXP expr */
#line 2466 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("**", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10780 "bison-chapel.cpp"
break;
case 690: /* binary_op_expr: expr TBY expr */
#line 2467 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl_by", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10786 "bison-chapel.cpp"
break;
case 691: /* binary_op_expr: expr TALIGN expr */
#line 2468 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl_align", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10792 "bison-chapel.cpp"
break;
case 692: /* binary_op_expr: expr THASH expr */
#line 2469 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("#", (yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10798 "bison-chapel.cpp"
break;
case 693: /* binary_op_expr: expr TDMAPPED expr */
#line 2470 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("chpl__distributed", (yyvsp[0].pexpr), (yyvsp[-2].pexpr),
new SymExpr(gTrue)); }
#line 10805 "bison-chapel.cpp"
break;
case 694: /* unary_op_expr: TPLUS expr */
#line 2475 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("+", (yyvsp[0].pexpr)); }
#line 10811 "bison-chapel.cpp"
break;
case 695: /* unary_op_expr: TMINUS expr */
#line 2476 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("-", (yyvsp[0].pexpr)); }
#line 10817 "bison-chapel.cpp"
break;
case 696: /* unary_op_expr: TMINUSMINUS expr */
#line 2477 "chapel.ypp"
{ (yyval.pexpr) = buildPreDecIncWarning((yyvsp[0].pexpr), '-'); }
#line 10823 "bison-chapel.cpp"
break;
case 697: /* unary_op_expr: TPLUSPLUS expr */
#line 2478 "chapel.ypp"
{ (yyval.pexpr) = buildPreDecIncWarning((yyvsp[0].pexpr), '+'); }
#line 10829 "bison-chapel.cpp"
break;
case 698: /* unary_op_expr: TBANG expr */
#line 2479 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("!", (yyvsp[0].pexpr)); }
#line 10835 "bison-chapel.cpp"
break;
case 699: /* unary_op_expr: expr TBANG */
#line 2480 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("postfix!", (yyvsp[-1].pexpr)); }
#line 10841 "bison-chapel.cpp"
break;
case 700: /* unary_op_expr: TBNOT expr */
#line 2481 "chapel.ypp"
{ (yyval.pexpr) = new CallExpr("~", (yyvsp[0].pexpr)); }
#line 10847 "bison-chapel.cpp"
break;
case 701: /* reduce_expr: expr TREDUCE expr */
#line 2485 "chapel.ypp"
{ (yyval.pexpr) = buildReduceExpr((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10853 "bison-chapel.cpp"
break;
case 702: /* reduce_expr: expr TREDUCE zippered_iterator */
#line 2486 "chapel.ypp"
{ (yyval.pexpr) = buildReduceExpr((yyvsp[-2].pexpr), (yyvsp[0].pcallexpr), true); }
#line 10859 "bison-chapel.cpp"
break;
case 703: /* reduce_expr: reduce_scan_op_expr TREDUCE expr */
#line 2487 "chapel.ypp"
{ (yyval.pexpr) = buildReduceExpr((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10865 "bison-chapel.cpp"
break;
case 704: /* reduce_expr: reduce_scan_op_expr TREDUCE zippered_iterator */
#line 2488 "chapel.ypp"
{ (yyval.pexpr) = buildReduceExpr((yyvsp[-2].pexpr), (yyvsp[0].pcallexpr), true); }
#line 10871 "bison-chapel.cpp"
break;
case 705: /* scan_expr: expr TSCAN expr */
#line 2492 "chapel.ypp"
{ (yyval.pexpr) = buildScanExpr((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10877 "bison-chapel.cpp"
break;
case 706: /* scan_expr: expr TSCAN zippered_iterator */
#line 2493 "chapel.ypp"
{ (yyval.pexpr) = buildScanExpr((yyvsp[-2].pexpr), (yyvsp[0].pcallexpr), true); }
#line 10883 "bison-chapel.cpp"
break;
case 707: /* scan_expr: reduce_scan_op_expr TSCAN expr */
#line 2494 "chapel.ypp"
{ (yyval.pexpr) = buildScanExpr((yyvsp[-2].pexpr), (yyvsp[0].pexpr)); }
#line 10889 "bison-chapel.cpp"
break;
case 708: /* scan_expr: reduce_scan_op_expr TSCAN zippered_iterator */
#line 2495 "chapel.ypp"
{ (yyval.pexpr) = buildScanExpr((yyvsp[-2].pexpr), (yyvsp[0].pcallexpr), true); }
#line 10895 "bison-chapel.cpp"
break;
case 709: /* reduce_scan_op_expr: TPLUS */
#line 2500 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("SumReduceScanOp"); }
#line 10901 "bison-chapel.cpp"
break;
case 710: /* reduce_scan_op_expr: TSTAR */
#line 2501 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("ProductReduceScanOp"); }
#line 10907 "bison-chapel.cpp"
break;
case 711: /* reduce_scan_op_expr: TAND */
#line 2502 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("LogicalAndReduceScanOp"); }
#line 10913 "bison-chapel.cpp"
break;
case 712: /* reduce_scan_op_expr: TOR */
#line 2503 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("LogicalOrReduceScanOp"); }
#line 10919 "bison-chapel.cpp"
break;
case 713: /* reduce_scan_op_expr: TBAND */
#line 2504 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("BitwiseAndReduceScanOp"); }
#line 10925 "bison-chapel.cpp"
break;
case 714: /* reduce_scan_op_expr: TBOR */
#line 2505 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("BitwiseOrReduceScanOp"); }
#line 10931 "bison-chapel.cpp"
break;
case 715: /* reduce_scan_op_expr: TBXOR */
#line 2506 "chapel.ypp"
{ (yyval.pexpr) = new UnresolvedSymExpr("BitwiseXorReduceScanOp"); }
#line 10937 "bison-chapel.cpp"
break;
#line 10941 "bison-chapel.cpp"
default: break;
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
*++yyvsp = yyval;
*++yylsp = yyloc;
/* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
{
const int yylhs = yyr1[yyn] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyssp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
? yytable[yyi]
: yydefgoto[yylhs]);
}
goto yynewstate;
/*--------------------------------------.
| yyerrlab -- here on detecting error. |
`--------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
yyerror (&yylloc, context, YY_("syntax error"));
}
yyerror_range[1] = yylloc;
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval, &yylloc, context);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers when the user code never invokes YYERROR and the
label yyerrorlab therefore never appears in user code. */
if (0)
YYERROR;
++yynerrs;
/* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
/* Pop stack until we find a state that shifts the error token. */
for (;;)
{
yyn = yypact[yystate];
if (!yypact_value_is_default (yyn))
{
yyn += YYSYMBOL_YYerror;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yyerror_range[1] = *yylsp;
yydestruct ("Error: popping",
YY_ACCESSING_SYMBOL (yystate), yyvsp, yylsp, context);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
yyerror_range[2] = yylloc;
++yylsp;
YYLLOC_DEFAULT (*yylsp, yyerror_range, 2);
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturnlab;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturnlab;
/*-----------------------------------------------------------.
| yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. |
`-----------------------------------------------------------*/
yyexhaustedlab:
yyerror (&yylloc, context, YY_("memory exhausted"));
yyresult = 2;
goto yyreturnlab;
/*----------------------------------------------------------.
| yyreturnlab -- parsing is finished, clean up and return. |
`----------------------------------------------------------*/
yyreturnlab:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval, &yylloc, context);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
YY_ACCESSING_SYMBOL (+*yyssp), yyvsp, yylsp, context);
YYPOPSTACK (1);
}
yyps->yynew = 2;
goto yypushreturn;
/*-------------------------.
| yypushreturn -- return. |
`-------------------------*/
yypushreturn:
return yyresult;
}
#undef yynerrs
#undef yystate
#undef yyerrstatus
#undef yyssa
#undef yyss
#undef yyssp
#undef yyvsa
#undef yyvs
#undef yyvsp
#undef yylsa
#undef yyls
#undef yylsp
#undef yystacksize
| 52.288596 | 241 | 0.381892 | jhh67 |
bcaa8201cc02612c8acaffd0313851be2353dc8e | 1,117 | cc | C++ | test/tcp_test.cc | bzEq/kl | 92de2c1db5ca4bb6c38a632cda7a80d2c9823841 | [
"BSD-3-Clause"
] | null | null | null | test/tcp_test.cc | bzEq/kl | 92de2c1db5ca4bb6c38a632cda7a80d2c9823841 | [
"BSD-3-Clause"
] | null | null | null | test/tcp_test.cc | bzEq/kl | 92de2c1db5ca4bb6c38a632cda7a80d2c9823841 | [
"BSD-3-Clause"
] | null | null | null | // Copyright (c) 2017 Kai Luo <gluokai@gmail.com>. All rights reserved.
// Use of this source code is governed by the BSD license that can be found in
// the LICENSE file.
#include "kl/tcp.h"
#include "kl/env.h"
#include "kl/inet.h"
#include "kl/testkit.h"
namespace {
class T {};
TEST(T, ListenAndSetNonBlocking) {
auto listen = kl::tcp::Listen("127.0.0.1", 4000);
ASSERT(listen);
DEFER([fd = *listen]() { ::close(fd); });
ASSERT(kl::env::SetNonBlocking(*listen));
}
TEST(T, Rebind) {
auto sock0 = kl::tcp::Socket();
ASSERT(sock0);
DEFER([fd = *sock0]() { ::close(fd); });
auto bind0 = kl::inet::Bind(*sock0, "127.0.0.1", 4000);
ASSERT(bind0);
auto sock1 = kl::tcp::Socket();
ASSERT(sock1);
DEFER([fd = *sock1]() { ::close(fd); });
auto bind1 = kl::inet::Bind(*sock1, "127.0.0.1", 4000);
ASSERT(!bind1);
}
TEST(T, Connect) {
auto listen = kl::tcp::Listen("127.0.0.1", 4000);
ASSERT(listen);
DEFER([fd = *listen]() { ::close(fd); });
auto connect = kl::tcp::BlockingConnect("127.0.0.1", 4000);
ASSERT(connect);
DEFER([fd = *connect]() { ::close(fd); });
}
} // namespace
| 26.595238 | 78 | 0.608774 | bzEq |
bcab8d785b9dd65a49671c34619864efbfc673af | 5,689 | cpp | C++ | sources/HybridDetector/Segment.cpp | onderkalaci/dyndatarace | 8e916b11d2d4f6d812d4b0c5a2616387be4d6572 | [
"Intel"
] | 6 | 2018-01-11T01:47:01.000Z | 2022-03-08T16:22:59.000Z | sources/HybridDetector/Segment.cpp | chakku000/dyndatarace | 8e916b11d2d4f6d812d4b0c5a2616387be4d6572 | [
"Intel"
] | 1 | 2018-01-11T02:36:09.000Z | 2018-01-12T03:32:41.000Z | sources/HybridDetector/Segment.cpp | chakku000/dyndatarace | 8e916b11d2d4f6d812d4b0c5a2616387be4d6572 | [
"Intel"
] | 2 | 2018-01-15T02:37:50.000Z | 2021-03-21T14:53:44.000Z |
#
# +--------------------------------------------------------------------------+
# |Copyright (C) 2014 Bogazici University |
# | onderkalaci@gmail.com |
# | |
# | This is free software: you can redistribute it and/or modify |
# | it under the terms of the GNU Lesser General Public License as published |
# | by the Free Software Foundation, either version 2.1 of the License, or |
# | (at your option) any later version. |
# | |
# | This is distributed in the hope that it will be useful, |
# | but WITHOUT ANY WARRANTY; without even the implied warranty of |
# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# | GNU Lesser General Public License for more details. |
# | |
# | You should have received a copy of the GNU Lesser General Public License |
# | along with this program. If not, see <http://www.gnu.org/licenses/>. |
# +--------------------------------------------------------------------------+
/*
* Segment.cpp
*
* Created on: Apr 19, 2013
* Author: onder
*/
#include "Segment.h"
/*
*
*
* ADDRINT insPtr; instruction pointer of enterence of segment, it is utilzed for extracting line number information of segment.
* if this segment is included in any race
*
UINT32 segmentId; //it is mostly used for debug purposes
VectorClock* clock;//vector clock of a segment
THREADID ownerThreadId;
LockSet writerLockSet, readerLockSet; Lockset IDs of a segment
*
* */
/*
* This method is only used in isRace for performance reasons
* Shallow copy is enough since only read from segment is applied, no updates
* */
Segment& Segment::operator=(Segment *segmentIn)
{
//cout << "SEGMENT operator= CALLED****************************************" << endl;
insPtr = segmentIn->insPtr;
//segmentId = segmentIn->segmentId;
clock = segmentIn->clock;
ownerThreadId = segmentIn->ownerThreadId;
writerLockSetId = segmentIn->writerLockSetId;
readerLockSetId = segmentIn->readerLockSetId;
segmentId = segmentIn->segmentId;
return *this;
}
int Segment::deletedSegmentCount = 0;
Segment::~Segment()
{
//cout << "Destructor called:" << this << endl;
//delete clock yapabiliriz!!!
++deletedSegmentCount;
//cout << "readSize:" << readMemoryAddresses.size() << " writeSize:" << writeMemoryAddresses.size() << endl;
//writeMemoryAddresses.clear();
//readMemoryAddresses.clear();
delete clock;
}
Segment::Segment()
{
//owner_thread = NULL;
clock = NULL;
//cout << "SEGMENT CREATED WITH NULL CLOCK_1:" << endl;
InitLock(&segmentLock);
segmentIsActive = true;
referenceCount = 0;
inAvaliableQueue = true;
++totalSegmentCount;
segmentId = totalSegmentCount;
}
/* When a race happens, this function is called to get line information of the instruction
* pointer of the segment's first instruction
* */
void Segment::fillLineAndFileInfo(ADDRINT insPtrIn, const char* imageNameIn)
{
//return;
insPtr = insPtrIn;
//return;
//cout << "::::::::fillLineAndFileInfo:::::" << insPtr << endl;
if (segmentInfoFilled)
return; //already filled
imageName = string(imageNameIn);
segmentInfoFilled = true;
INT32 col = 0,line =0;
string file = "";
PIN_LockClient();
PIN_GetSourceLocation(insPtr, &col, &line, &file);
PIN_UnlockClient();
// cout << "::::::::fillLineAndFileInfo_end:::::" << file <<" line:" << line << endl;
}
void Segment::setWriterLockSetId(UINT32 threadsWriterLockSetId)
{
writerLockSetId = threadsWriterLockSetId;
}
void Segment::setReaderLockSetId(UINT32 threadsReaderLockSetId)
{
readerLockSetId = threadsReaderLockSetId;
}
void Segment::deactivateSegment()
{
segmentIsActive = false;
//readMemoryAddresses.clear();
//writeMemoryAddresses.clear();
}
Segment::Segment(UINT32 threadsWriterLockSetId, UINT32 threadsReaderLockSetId, VectorClock* currentThreadsClock, THREADID tid, ADDRINT insPtrIn)
{
clock = new VectorClock(currentThreadsClock, tid);
ownerThreadId = tid;
insPtr = insPtrIn;
//cout << "Segment Created thread:" << tid << " , with lock count write:" << threadsWriterLockSetId << " read:" << threadsReaderLockSetId << endl;
setWriterLockSetId(threadsWriterLockSetId);
setReaderLockSetId(threadsReaderLockSetId);
//readMemoryAddresses.reserve(1000);
//writeMemoryAddresses.reserve(1000);
InitLock(&segmentLock);
segmentIsActive = true;
segmentInfoFilled = false;
++totalSegmentCount;
segmentId = totalSegmentCount;
referenceCount = 0;
inAvaliableQueue = true;
}
int Segment::totalSegmentCount = 0;
Segment::Segment(UINT32 threadsWriterLockSetId, UINT32 threadsReaderLockSetId, VectorClock* currentThreadsClock,
THREADID threadId, string fileNameIn, UINT32 lineIn, ADDRINT insPtrIn)
{
clock = new VectorClock(currentThreadsClock, threadId);
ownerThreadId = threadId;
//insPtr = insPtrIn;
//output_stream << "Segment Created thread:" << threadId << " , with lock count write:" << threadsWriterLockSet.locks.size() << " read:" << threadsReaderLockSet.locks.size() << endl;
setWriterLockSetId(threadsWriterLockSetId);
setReaderLockSetId(threadsReaderLockSetId);
file = fileNameIn;
line = lineIn;
insPtr = insPtrIn;
InitLock(&segmentLock);
referenceCount = 0;
segmentIsActive = true;
segmentInfoFilled = false;
inAvaliableQueue = true;
++totalSegmentCount;
segmentId = totalSegmentCount;
}
| 32.884393 | 186 | 0.646687 | onderkalaci |
bcb1f4160b4082a97e019d9c494c0ef26b428d3a | 522 | cpp | C++ | examples/mbedos5/mbed-os-example-blinky/main.cpp | winneymj/nrf52832-mdk | c733ecf72512824151e20bdadaefaaa38769e80e | [
"MIT"
] | 189 | 2017-04-01T03:05:01.000Z | 2022-03-29T10:36:48.000Z | examples/mbedos5/mbed-os-example-blinky/main.cpp | winneymj/nrf52832-mdk | c733ecf72512824151e20bdadaefaaa38769e80e | [
"MIT"
] | 47 | 2018-09-10T13:55:32.000Z | 2022-02-28T14:15:42.000Z | examples/mbedos5/mbed-os-example-blinky/main.cpp | winneymj/nrf52832-mdk | c733ecf72512824151e20bdadaefaaa38769e80e | [
"MIT"
] | 56 | 2017-05-04T03:51:13.000Z | 2022-01-10T06:23:29.000Z | /* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
* SPDX-License-Identifier: Apache-2.0
*/
#include "mbed.h"
#include "stats_report.h"
DigitalOut led1(LED1);
// main() runs in its own thread in the OS
int main()
{
SystemReport sys_state(500 /* Loop delay time in ms */);
while (true) {
// Blink LED and wait 0.5 seconds
led1 = !led1;
wait(0.5f);
// Following the main thread wait, report on the current system status
sys_state.report_state();
}
}
| 20.88 | 78 | 0.6341 | winneymj |
bcb90b7371ff101a3913029125e27268f85ff097 | 6,933 | cpp | C++ | pybind/spam.cpp | maxime-tournier/cpp | 303def38a523f0e5699ef389182974f4f50d10fb | [
"MIT"
] | null | null | null | pybind/spam.cpp | maxime-tournier/cpp | 303def38a523f0e5699ef389182974f4f50d10fb | [
"MIT"
] | null | null | null | pybind/spam.cpp | maxime-tournier/cpp | 303def38a523f0e5699ef389182974f4f50d10fb | [
"MIT"
] | null | null | null |
#include <Python.h>
#include <memory>
#include <vector>
#include <iostream>
template<class T>
using ptr = std::shared_ptr<T>;
// a base class for a c++ object that has a python counterpart: the two objects
// will live exactly for the same duration, with python detecting and collecting
// garbage.
struct base {
PyObject* self = nullptr;
base(PyObject* self) : self(self) {
// the c++ object keeps the python object alive, which in turn keeps the c++
// object alive. only the python gc can detect/break the cycle (see
// tp_traverse/tp_clear).
Py_XINCREF(self);
// precondition: self is a 'freshly' instantiated python object
std::clog << "base()" << std::endl;
}
virtual ~base() {
// the c++ object is expected to live as long as the python object, with
// python controlling the release. the only legal way this object can be
// destroyed is after tp_clear is called on the python object, which clears
// 'self' for this object. henceforth, 'self' must be null.
assert( !self && "python object outliving its c++ counterpart");
std::clog << "~base()" << std::endl;
}
// python object
struct object {
PyObject_HEAD;
ptr<base> obj;
};
// python methods
static int tp_traverse(PyObject *self, visitproc visit, void *arg) {
// std::clog << "tp_traverse" << std::endl;
// Py_VISIT notifies python gc about the c++/python/c++ cycle: to python,
// this object acts like a container containing itself. when python detects
// this object is unreachable, tp_clear will be called and the python object
// will be collected.
// note: we only allow python gc to collect this object when it becomes
// unreachable from the c++ side too
object* cast = reinterpret_cast<object*>(self);
if(cast->obj.unique()) {
Py_VISIT(self);
}
return 0;
}
static int tp_clear(PyObject *self) {
// std::clog << "tp_clear" << std::endl;
object* cast = reinterpret_cast<object*>(self);
// the python object became unreachable: it will be collected. we notify the
// c++ object accordingly.
cast->obj->self = nullptr;
// c++ object must be released after this point, otherwise it will outlive
// its python counterpart.
assert( cast->obj.unique() && "c++ object outliving its python counterpart");
cast->obj.reset();
return 0;
}
// python type object
static PyTypeObject pto;
// convenience
template<class Derived>
static Derived* as(PyObject* self) {
// TODO check python types
object* cast = reinterpret_cast<object*>(self);
return static_cast<Derived*>(cast->obj.get());
}
};
PyTypeObject base::pto = {
PyVarObject_HEAD_INIT(NULL, 0)
"base", /* tp_name */
sizeof(object), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE, /* tp_flags */
"base class for collectable objects", /* tp_doc */
tp_traverse,
tp_clear,
};
// a user class
struct spam : base {
using base::base;
std::string bacon() const {
PyObject* obj = PyObject_CallMethod(self, (char*) "bacon", NULL);
std::string res = PyString_AsString(obj);
Py_XDECREF(obj);
return res;
}
static PyObject* tp_new(PyTypeObject* cls, PyObject* args, PyObject* kwargs) {
std::clog << "tp_new" << std::endl;
PyObject* self = PyType_GenericAlloc(cls, 1);
// allocate c++ object
base::object* cast = reinterpret_cast<base::object*>(self);
cast->obj = std::make_shared<spam>(self);
// keep a handle on c++ objects
static std::vector<ptr<base> > instances;
return self;
}
static PyObject* py_bacon(PyObject* self, PyObject* args, PyObject* kwargs) {
return PyString_FromString("default bacon");
}
static PyMethodDef tp_methods[];
};
PyMethodDef spam::tp_methods[] = {
{"bacon", (PyCFunction)py_bacon, METH_KEYWORDS, "give the user some bacon"},
{NULL}
};
static const struct sentinel {
sentinel() { std::clog << "sentinel" << std::endl; }
~sentinel() { std::clog << "~sentinel" << std::endl; }
} instance;
static PyMethodDef module_methods[] = {
{NULL}
};
static PyTypeObject spam_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"spam", /* tp_name */
sizeof(base::object), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
"spam bacon and spam", /* tp_doc */
};
#define AS_GC(o) ((PyGC_Head *)(o)-1)
static long& gc_refs(PyObject* self) {
PyGC_Head *gc = AS_GC(self);
return gc->gc.gc_refs;
}
// static std::size_t force_gc(PyObject* self) {
// PyGC_Head *gc = AS_GC(self);
// _PyGCHead_SET_REFS(gc, _PyGC_REFS_TENTATIVELY_UNREACHABLE);
// }
PyMODINIT_FUNC initspam(void) {
if (PyType_Ready(&base::pto) < 0) return;
Py_INCREF(&base::pto);
// spam_type.tp_traverse = (traverseproc) py_spam::tp_traverse;
// spam_type.tp_clear = (inquiry) py_spam::tp_clear;
spam_type.tp_new = spam::tp_new;
spam_type.tp_methods = spam::tp_methods;
spam_type.tp_base = &base::pto;
// noddy_NoddyType.tp_new = PyType_GenericNew;
if (PyType_Ready(&spam_type) < 0) return;
PyObject* module = Py_InitModule3("spam", module_methods,
"Example module that creates an extension type.");
Py_INCREF(&spam_type);
PyModule_AddObject(module, "spam", (PyObject *)&spam_type);
}
| 29.883621 | 86 | 0.560796 | maxime-tournier |
bcbbf792d141d18a59e5ab8ca0005451aa7b129b | 716 | cpp | C++ | session.cpp | F1shb0ne/mail-admin | d671c8c51cf96c994dc2a202453cf699d7c79d5f | [
"MIT"
] | null | null | null | session.cpp | F1shb0ne/mail-admin | d671c8c51cf96c994dc2a202453cf699d7c79d5f | [
"MIT"
] | null | null | null | session.cpp | F1shb0ne/mail-admin | d671c8c51cf96c994dc2a202453cf699d7c79d5f | [
"MIT"
] | null | null | null | #include <iostream>
#include "session.h"
#include "config.h"
using namespace std;
pqxx::connection* Session::Connection = nullptr;
bool Session::Valid = false;
bool Session::IsValid() {
return Valid;
}
pqxx::connection *Session::GetConnection() {
return Connection;
}
void Session::Init() {
try {
Connection = new pqxx::connection(Config::GetPSQLInitString());
if (Connection->is_open()) {
Valid = true;
} else {
cout << "Something fucked up." << endl;
}
} catch (const exception& e) {
cout << e.what() << endl;
}
}
void Session::Destroy() {
if (Valid) {
Connection->disconnect();
Valid = false;
}
}
| 18.358974 | 71 | 0.575419 | F1shb0ne |
bcbce77334a38d24c3c97510452a82ca2ebd0cf1 | 12,447 | cc | C++ | nscon/configurator/user_ns_configurator_test.cc | claytonbrown/lmctfy | 94729318edb06f7d149f67581a07a4c70ed29250 | [
"Apache-2.0"
] | 1,145 | 2015-01-01T22:07:47.000Z | 2022-03-30T19:19:23.000Z | nscon/configurator/user_ns_configurator_test.cc | claytonbrown/lmctfy | 94729318edb06f7d149f67581a07a4c70ed29250 | [
"Apache-2.0"
] | 9 | 2015-01-09T08:50:27.000Z | 2020-02-11T09:16:20.000Z | nscon/configurator/user_ns_configurator_test.cc | claytonbrown/lmctfy | 94729318edb06f7d149f67581a07a4c70ed29250 | [
"Apache-2.0"
] | 123 | 2015-01-02T12:10:08.000Z | 2021-10-12T02:49:48.000Z | // Copyright 2014 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Tests for UserNsConfigurator class
//
#include "nscon/configurator/user_ns_configurator.h"
#include <fcntl.h>
#include <memory>
#include "include/namespaces.pb.h"
#include "nscon/ns_util_mock.h"
#include "util/errors_test_util.h"
#include "system_api/libc_fs_api_test_util.h"
#include "gtest/gtest.h"
#include "util/task/status.h"
using ::std::unique_ptr;
using ::testing::Invoke;
using ::testing::Return;
using ::testing::StrEq;
using ::testing::_;
using ::util::error::INTERNAL;
using ::util::error::INVALID_ARGUMENT;
using ::util::Status;
using ::util::StatusOr;
namespace containers {
namespace nscon {
class UserNsConfiguratorTest : public ::testing::Test {
public:
void SetUp() override {
mock_ns_util_.reset(new ::testing::StrictMock<MockNsUtil>());
user_ns_config_.reset(new UserNsConfigurator(mock_ns_util_.get()));
}
Status CallSetupUserNamespace(const UserNsSpec &user_spec,
pid_t init_pid) const {
return user_ns_config_->SetupUserNamespace(user_spec, init_pid);
}
Status CallWriteIdMap(const string &id_map_file,
const vector<IdMapEntry> &id_map) const {
return user_ns_config_->WriteIdMap(id_map_file, id_map);
}
StatusOr<vector<IdMapEntry>> CallValidateIdMap(
const ::google::protobuf::RepeatedPtrField<IdMapEntry> &id_map) const {
return user_ns_config_->ValidateIdMap(id_map);
}
protected:
struct IdMapEntryData {
public:
IdMapEntryData(int in, int out, int len)
: id_in(in), id_out(out), length(len) {}
int id_in;
int id_out;
int length;
};
vector<IdMapEntry> GetIdMapEntryVector(
const vector<IdMapEntryData> &entry_list) {
vector<IdMapEntry> id_list;
for (IdMapEntryData data : entry_list) {
IdMapEntry *entry = test_userns_.add_uid_map();
SetIdMapEntry(entry, data.id_in, data.id_out, data.length);
id_list.push_back(*entry);
}
return id_list;
}
// The value '0' (zero) is special for all these inputs. If they are zero,
// then corresponding field in IdMapEntry is left unset.
void SetIdMapEntry(IdMapEntry *entry, int id_in, int id_out, int length) {
if (id_in != 0) entry->set_id_inside_ns(id_in);
if (id_out != 0) entry->set_id_outside_ns(id_out);
if (length != 0) entry->set_length(length);
}
void AddUidMapEntry(UserNsSpec *userns, int id_in, int id_out, int length) {
IdMapEntry *entry = userns->add_uid_map();
SetIdMapEntry(entry, id_in, id_out, length);
}
void AddGidMapEntry(UserNsSpec *userns, int id_in, int id_out, int length) {
IdMapEntry *entry = userns->add_gid_map();
SetIdMapEntry(entry, id_in, id_out, length);
}
system_api::MockLibcFsApiOverride mock_libc_fs_api_;
unique_ptr<MockNsUtil> mock_ns_util_;
unique_ptr<UserNsConfigurator> user_ns_config_;
UserNsSpec test_userns_;
const char *kUidMapFile_ = "/proc/9999/uid_map";
const char *kGidMapFile_ = "/proc/9999/gid_map";
const int kUidMapFd_ = 55;
const int kGidMapFd_ = 66;
const pid_t kPid_ = 9999;
};
TEST_F(UserNsConfiguratorTest, SetupInsideNamespace_NoSpec) {
NamespaceSpec spec;
ASSERT_OK(user_ns_config_->SetupInsideNamespace(spec));
}
TEST_F(UserNsConfiguratorTest, SetupInsideNamespace_WithSpec) {
// Even with any userns spec, SetupInsideNamespace() should return OK without
// actually doing anything.
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
AddUidMapEntry(userns, 99, 99, 1);
AddGidMapEntry(userns, 99, 99, 1);
ASSERT_OK(user_ns_config_->SetupInsideNamespace(spec));
}
TEST_F(UserNsConfiguratorTest, SetupOutsideNamespace_NoSpec) {
NamespaceSpec spec;
ASSERT_OK(user_ns_config_->SetupOutsideNamespace(spec, kPid_));
}
TEST_F(UserNsConfiguratorTest, SetupOutsideNamespace_EmptyUserSpec) {
NamespaceSpec spec;
spec.mutable_user();
ASSERT_OK(user_ns_config_->SetupOutsideNamespace(spec, kPid_));
}
typedef UserNsConfiguratorTest WriteIdMapTest;
const char *g_write_data;
static int WriteVerifier(int fd, const void *buf, size_t size) {
// const char *str = static_cast<const char *>(buf);
StringPiece sp(static_cast<const char *>(buf), size);
EXPECT_EQ(g_write_data, sp.ToString());
EXPECT_EQ(strlen(g_write_data), size);
return sizeof(g_write_data);
}
TEST_F(WriteIdMapTest, Success) {
g_write_data = "99 99 1\n5000 5000 1\n";
const vector<IdMapEntry> id_map = GetIdMapEntryVector({
{99, 99, 1},
{5000, 5000, 1},
});
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(kUidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kUidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kUidMapFd_)).WillOnce(Return(0));
EXPECT_OK(CallWriteIdMap("/proc/9999/uid_map", id_map));
}
TEST_F(WriteIdMapTest, EmptyIdMap) {
const vector<IdMapEntry> id_map;
EXPECT_OK(CallWriteIdMap(kUidMapFile_, id_map));
}
TEST_F(WriteIdMapTest, OpenFailure) {
const vector<IdMapEntry> id_map = GetIdMapEntryVector({
{99, 99, 1},
{5000, 5000, 1},
});
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(-1));
EXPECT_ERROR_CODE(INTERNAL, CallWriteIdMap(kUidMapFile_, id_map));
}
TEST_F(WriteIdMapTest, WriteFailure) {
g_write_data = "99 99 1\n5000 5000 1\n";
const vector<IdMapEntry> id_map = GetIdMapEntryVector({
{99, 99, 1},
{5000, 5000, 1},
});
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(kUidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kUidMapFd_, _, _))
.WillOnce(Return(-1));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kUidMapFd_)).WillOnce(Return(0));
EXPECT_ERROR_CODE(INTERNAL, CallWriteIdMap(kUidMapFile_, id_map));
}
TEST_F(WriteIdMapTest, CloseFailure) {
g_write_data = "99 99 1\n5000 5000 1\n";
const vector<IdMapEntry> id_map = GetIdMapEntryVector({
{99, 99, 1},
{5000, 5000, 1},
});
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(kUidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kUidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kUidMapFd_)).WillOnce(Return(-1));
EXPECT_ERROR_CODE(INTERNAL, CallWriteIdMap(kUidMapFile_, id_map));
}
typedef UserNsConfiguratorTest ValidateIdMapTest;
TEST_F(ValidateIdMapTest, Success) {
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
AddUidMapEntry(userns, 99, 99, 1);
AddUidMapEntry(userns, 5000, 5000, 1);
AddUidMapEntry(userns, 8000, 8000, 1000);
StatusOr<vector<IdMapEntry>> statusor = CallValidateIdMap(userns->uid_map());
ASSERT_OK(statusor);
EXPECT_EQ(3, statusor.ValueOrDie().size());
}
TEST_F(ValidateIdMapTest, SuccessWithEmptyMap) {
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
StatusOr<vector<IdMapEntry>> statusor = CallValidateIdMap(userns->uid_map());
ASSERT_OK(statusor);
EXPECT_EQ(0, statusor.ValueOrDie().size());
}
TEST_F(ValidateIdMapTest, NoIdInside) {
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
AddUidMapEntry(userns, 99, 99, 1);
AddUidMapEntry(userns, 0, 5000, 1); // '0' implies the value wont be set.
AddUidMapEntry(userns, 8000, 8000, 1000);
EXPECT_ERROR_CODE(INVALID_ARGUMENT, CallValidateIdMap(userns->uid_map()));
}
TEST_F(ValidateIdMapTest, NoIdOutside) {
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
AddUidMapEntry(userns, 99, 99, 1);
AddUidMapEntry(userns, 5000, 0, 1); // '0' implies the value wont be set.
AddUidMapEntry(userns, 8000, 8000, 1000);
EXPECT_ERROR_CODE(INVALID_ARGUMENT, CallValidateIdMap(userns->uid_map()));
}
TEST_F(ValidateIdMapTest, NoLength) {
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
AddUidMapEntry(userns, 99, 99, 1);
AddUidMapEntry(userns, 5000, 5000, 0); // '0' implies the value wont be set.
AddUidMapEntry(userns, 8000, 8000, 1000);
EXPECT_ERROR_CODE(INVALID_ARGUMENT, CallValidateIdMap(userns->uid_map()));
}
TEST_F(ValidateIdMapTest, MultipleMissingFields) {
NamespaceSpec spec;
UserNsSpec *userns = spec.mutable_user();
AddUidMapEntry(userns, 99, 99, 1);
AddUidMapEntry(userns, 0, 5000, 0); // '0' implies the value wont be set.
AddUidMapEntry(userns, 8000, 8000, 1000);
EXPECT_ERROR_CODE(INVALID_ARGUMENT, CallValidateIdMap(userns->uid_map()));
}
typedef UserNsConfiguratorTest SetupUserNamespaceTest;
TEST_F(SetupUserNamespaceTest, EmptySpec) {
UserNsSpec userns;
ASSERT_OK(CallSetupUserNamespace(userns, kPid_));
}
TEST_F(SetupUserNamespaceTest, ValidSpec) {
UserNsSpec userns;
AddUidMapEntry(&userns, 99, 99, 1);
AddUidMapEntry(&userns, 5000, 5000, 1);
AddUidMapEntry(&userns, 8000, 8000, 1000);
AddGidMapEntry(&userns, 99, 99, 1);
AddGidMapEntry(&userns, 5000, 5000, 1);
AddGidMapEntry(&userns, 8000, 8000, 1000);
g_write_data = "99 99 1\n5000 5000 1\n8000 8000 1000\n";
// Expect uid_map file write.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(kUidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kUidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kUidMapFd_)).WillOnce(Return(0));
// Expect gid_map file write.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kGidMapFile_), O_WRONLY))
.WillOnce(Return(kGidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kGidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kGidMapFd_)).WillOnce(Return(0));
ASSERT_OK(CallSetupUserNamespace(userns, kPid_));
}
TEST_F(SetupUserNamespaceTest, GidMapWriteFailure) {
UserNsSpec userns;
AddUidMapEntry(&userns, 99, 99, 1);
AddUidMapEntry(&userns, 5000, 5000, 1);
AddUidMapEntry(&userns, 8000, 8000, 1000);
AddGidMapEntry(&userns, 99, 99, 1);
AddGidMapEntry(&userns, 5000, 5000, 1);
AddGidMapEntry(&userns, 8000, 8000, 1000);
g_write_data = "99 99 1\n5000 5000 1\n8000 8000 1000\n";
// Expect uid_map file write.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(kUidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kUidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kUidMapFd_)).WillOnce(Return(0));
// Expect gid_map file write.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kGidMapFile_), O_WRONLY))
.WillOnce(Return(kGidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kGidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
// Close() fails for gid_map.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kGidMapFd_)).WillOnce(Return(-1));
EXPECT_ERROR_CODE(INTERNAL, CallSetupUserNamespace(userns, kPid_));
}
TEST_F(SetupUserNamespaceTest, UidMapWriteFailure) {
// If uid_map write fails, we don't even try to write the gid_map.
UserNsSpec userns;
AddUidMapEntry(&userns, 99, 99, 1);
AddUidMapEntry(&userns, 5000, 5000, 1);
AddUidMapEntry(&userns, 8000, 8000, 1000);
AddGidMapEntry(&userns, 99, 99, 1);
AddGidMapEntry(&userns, 5000, 5000, 1);
AddGidMapEntry(&userns, 8000, 8000, 1000);
g_write_data = "99 99 1\n5000 5000 1\n8000 8000 1000\n";
// Expect uid_map file write.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Open(StrEq(kUidMapFile_), O_WRONLY))
.WillOnce(Return(kUidMapFd_));
EXPECT_CALL(mock_libc_fs_api_.Mock(), Write(kUidMapFd_, _, _))
.WillOnce(Invoke(&WriteVerifier));
// Close() fails for uid_map.
EXPECT_CALL(mock_libc_fs_api_.Mock(), Close(kUidMapFd_)).WillOnce(Return(-1));
EXPECT_ERROR_CODE(INTERNAL, CallSetupUserNamespace(userns, kPid_));
}
} // namespace nscon
} // namespace containers
| 33.640541 | 80 | 0.730055 | claytonbrown |
bcbf647c2d6f6d6cb5434dc7c5518d228f7a9363 | 237 | cpp | C++ | tests/test_Base.cpp | jonathanbuchanan/Sunglasses | ab82b66f32650a813234cee8963f9b598ef5c1c8 | [
"MIT"
] | 1 | 2016-04-01T02:21:27.000Z | 2016-04-01T02:21:27.000Z | tests/test_Base.cpp | jonathanbuchanan/Sunglasses | ab82b66f32650a813234cee8963f9b598ef5c1c8 | [
"MIT"
] | 49 | 2015-07-08T13:48:06.000Z | 2017-06-27T01:40:51.000Z | tests/test_Base.cpp | jonathanbuchanan/Sunglasses | ab82b66f32650a813234cee8963f9b598ef5c1c8 | [
"MIT"
] | null | null | null | // Copyright 2016 Jonathan Buchanan.
// This file is part of Sunglasses, which is licensed under the MIT License.
// See LICENSE.md for details.
#include <gtest/gtest.h>
#include <sunglasses/Sunglasses.hpp>
using namespace sunglasses;
| 26.333333 | 76 | 0.767932 | jonathanbuchanan |
bcc4373122f130e7f1599e0d0d502f849dc510e4 | 336 | hpp | C++ | Game Engine 2D/UtilConstants.hpp | LaPeste/ComposeEngine | 8ae80ec7c49af896978d06371dee96a4d2315372 | [
"Apache-2.0"
] | 1 | 2017-03-13T11:19:40.000Z | 2017-03-13T11:19:40.000Z | Game Engine 2D/UtilConstants.hpp | LaPeste/ComposeEngine | 8ae80ec7c49af896978d06371dee96a4d2315372 | [
"Apache-2.0"
] | null | null | null | Game Engine 2D/UtilConstants.hpp | LaPeste/ComposeEngine | 8ae80ec7c49af896978d06371dee96a4d2315372 | [
"Apache-2.0"
] | null | null | null | //
// UtilConstants.hpp
// GameEngine2D
//
// Created by Andrea Catalini on 11/12/16.
// Copyright © 2016 Andrea Catalini. All rights reserved.
//
#ifndef _UTIL_CONSTANTS_HPP_
#define _UTIL_CONSTANTS_HPP_
#include "stdafx.h"
class UtilConstants
{
public:
static const int NO_COMPONENTS;
};
#endif /* _UTIL_CONSTANTS_HPP_ */
| 16 | 58 | 0.729167 | LaPeste |
bcc46357d09df76e866398c35ad19d0bf3832ad1 | 2,576 | cc | C++ | src/RouteChoice/patSampleChoiceSetWithRandomWalk.cc | godosou/smaroute | e2ccc9492dff54c8ef5c74d5309d2b06758ba342 | [
"MIT"
] | 4 | 2015-02-23T16:02:52.000Z | 2021-03-26T17:58:53.000Z | src/RouteChoice/patSampleChoiceSetWithRandomWalk.cc | godosou/smaroute | e2ccc9492dff54c8ef5c74d5309d2b06758ba342 | [
"MIT"
] | null | null | null | src/RouteChoice/patSampleChoiceSetWithRandomWalk.cc | godosou/smaroute | e2ccc9492dff54c8ef5c74d5309d2b06758ba342 | [
"MIT"
] | 5 | 2015-02-23T16:05:59.000Z | 2017-05-04T16:13:16.000Z | /*
* patSampleChoiceSetWithRandomWalk.cc
*
* Created on: Jun 26, 2012
* Author: jchen
*/
#include "patSampleChoiceSetWithRandomWalk.h"
#include "patNBParameters.h"
#include "patDisplay.h"
#include "patOd.h"
#include <boost/lexical_cast.hpp>
#include <set>
#include <unistd.h>
patSampleChoiceSetWithRandomWalk::patSampleChoiceSetWithRandomWalk() {
// TODO Auto-generated constructor stub
}
patSampleChoiceSetWithRandomWalk::~patSampleChoiceSetWithRandomWalk() {
// TODO Auto-generated destructor stub
}
void patSampleChoiceSetWithRandomWalk::sampleChoiceSet(
RWPathGenerator* path_generator, string folder) {
const string choice_set_folder = folder + "/"
+ patNBParameters::the()->choiceSetFolder + "/";
int num_threads = patNBParameters::the()->nbrOfThreads;
if (m_observations.size() <= num_threads) {
num_threads = m_observations.size();
}
const int num_blocks = ceil((double) m_observations.size() / num_threads);
DEBUG_MESSAGE(
"threads: " << num_threads << ", " << "blocks: " << num_blocks << ", obs:" << m_observations.size());
DEBUG_MESSAGE("path generators and networks cloned");
#pragma omp parallel num_threads( num_threads)
{
#pragma omp for
for (int j = 0; j < m_observations.size(); ++j) {
patNetworkBase* cloned_network =
path_generator->getNetwork()->clone();
RWPathGenerator* generator_clone = path_generator->clone();
generator_clone->setNetwork(cloned_network);
m_observations.at(j).sampleChoiceSet(path_generator,
choice_set_folder);
delete generator_clone;
generator_clone = NULL;
delete cloned_network;
cloned_network = NULL;
}
}
}
void patSampleChoiceSetWithRandomWalk::addObservation(patObservation& obs) {
/**
* Get relevant OD first.
*/
if (obs.getId() == string("")) {
obs.setId(boost::lexical_cast<string>(m_observations.size()));
}
map<const patMultiModalPath, double> path_probas =
obs.getNormalizedPathProbas();
set<patOd> od_set;
unsigned long obs_id = 1;
for (map<const patMultiModalPath, double>::const_iterator path_iter =
path_probas.begin(); path_iter != path_probas.end(); ++path_iter) {
patOd the_od(path_iter->first.getUpNode(),
path_iter->first.getDownNode());
pair<set<patOd>::const_iterator, bool> insert_result = od_set.insert(
the_od);
if (insert_result.second == true) {
patObservation new_obs;
new_obs.setId(
obs.getId() + string("_")
+ boost::lexical_cast<string>(obs_id));
new_obs.addPath(path_iter->first, path_iter->second);
m_observations.push_back(new_obs);
++obs_id;
}
}
}
| 28.307692 | 104 | 0.719332 | godosou |
344a19dc0a0650d0fc2995726ab04cd29eddb250 | 1,525 | cpp | C++ | source/Vector.cpp | Wroyk-UniProjects/Robo_Steuerung_BS_A2a | 0bf7fcf2c455b3fb9564452bf5c316a3502e5d4b | [
"MIT"
] | null | null | null | source/Vector.cpp | Wroyk-UniProjects/Robo_Steuerung_BS_A2a | 0bf7fcf2c455b3fb9564452bf5c316a3502e5d4b | [
"MIT"
] | null | null | null | source/Vector.cpp | Wroyk-UniProjects/Robo_Steuerung_BS_A2a | 0bf7fcf2c455b3fb9564452bf5c316a3502e5d4b | [
"MIT"
] | null | null | null | /*
* Betribssicherheit
* Aufgabe 2 Teil a
* Robotorsteuerung in C++
*
*
* File: Vector.cpp
* Author: Rudolf
*
* Created on 22. Mai 2017, 23:35
*/
#include "../header/Vector.h"
Vector::Vector() {
this->x = 0.0;
this->y = 0.0;
this->z = 0.0;
}
Vector::Vector(double x, double y, double z) {
this->x = x;
this->y = y;
this->z = z;
}
Vector::Vector(const Vector& orig) {
this->x = orig.getX();
this->y = orig.getY();
this->z = orig.getZ();
}
Vector::~Vector() {
}
std::vector<Vector> Vector::linear(const Vector& end, int steps) {
std::vector<Vector> v_V;
double dX = (end.getX()-(this->x))/(steps-1);
double dY = (end.getY()-(this->y))/(steps-1);
double dZ = (end.getZ()-(this->z))/(steps-1);
Vector v (this->x,this->y,this->z);
v_V.push_back(v);
for(int i = 0; i < steps-1; i++) {
v.setCoord(v_V[i].getX()+dX, v_V[i].getY()+dY, v_V[i].getZ()+dZ);
v_V.push_back(v);
}
return v_V;
}
void Vector::printCoord() const{
std::cout << "x: " << x << "\n" << "y: " << y << "\n" << "z: " << z << std::endl;
}
void Vector::setCoord(double x, double y, double z) {
this->x = x;
this->y = y;
this->z = z;
}
void Vector::setCoord(const Vector& orig) {
this->x = orig.x;
this->y = orig.y;
this->z = orig.z;
}
double Vector::getX() const{
return this->x;
}
double Vector::getY() const{
return this->y;
}
double Vector::getZ() const{
return this->z;
} | 18.373494 | 85 | 0.523279 | Wroyk-UniProjects |
344e85ecf0634becfb5e6c55169a2b82b6dc0c92 | 955 | cpp | C++ | pico_dsp-arduino-esp32/arduino-esp32_pico_dsp_mics_omnidirectional/src/main.cpp | ohmic-net/pico_dsp | e3a66666fbcfd8d8ed30dfd6ac2c01b7fa23c3b2 | [
"MIT"
] | 23 | 2021-08-06T22:44:27.000Z | 2022-03-24T06:20:44.000Z | pico_dsp-arduino-esp32/arduino-esp32_pico_dsp_mics_omnidirectional/src/main.cpp | ohmic-net/pico_dsp | e3a66666fbcfd8d8ed30dfd6ac2c01b7fa23c3b2 | [
"MIT"
] | null | null | null | pico_dsp-arduino-esp32/arduino-esp32_pico_dsp_mics_omnidirectional/src/main.cpp | ohmic-net/pico_dsp | e3a66666fbcfd8d8ed30dfd6ac2c01b7fa23c3b2 | [
"MIT"
] | 1 | 2021-08-19T10:37:36.000Z | 2021-08-19T10:37:36.000Z | // example microphone omnidirectional configuration using Faust DSP for PICO_DSP development board
#include <Arduino.h>
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_spi_flash.h"
#include "WM8978.h"
#include "picodsp_mics_omnidirectional.h"
WM8978 wm8978;
void setup() {
Serial.begin(115200);
wm8978.init();
wm8978.addaCfg(1,1);
wm8978.inputCfg(1,0,0);
wm8978.outputCfg(1,0);
wm8978.sampleRate(0);
wm8978.micGain(55); // 16 = 0dB (0.75 per dB)
wm8978.auxGain(0);
wm8978.lineinGain(0);
wm8978.spkVolSet(0);
wm8978.hpVolSet(50,50);
wm8978.i2sCfg(2,0); // format MSB, 16Bit
vTaskDelay(500 / portTICK_PERIOD_MS);
int SR = 48000;
int BS = 8;
picodsp_mics_omnidirectional* DSP = new picodsp_mics_omnidirectional(SR, BS);
DSP->start();
vTaskDelay(500 / portTICK_PERIOD_MS);
}
void loop() {
//vTaskDelay(pdMS_TO_TICKS(10));
} | 22.738095 | 99 | 0.697382 | ohmic-net |
344ed0b936c90706c5a353fe9a22ccdcf66c9005 | 569 | cpp | C++ | src/netlib/internal/init_windows.cpp | yksz/libnet | e286907cc591a8f89e6c1abfe726ccf40bee3f4a | [
"MIT"
] | 2 | 2017-06-03T10:42:48.000Z | 2018-04-19T23:47:47.000Z | src/netlib/internal/init_windows.cpp | yksz/libnet | e286907cc591a8f89e6c1abfe726ccf40bee3f4a | [
"MIT"
] | null | null | null | src/netlib/internal/init_windows.cpp | yksz/libnet | e286907cc591a8f89e6c1abfe726ccf40bee3f4a | [
"MIT"
] | 1 | 2019-01-01T15:08:21.000Z | 2019-01-01T15:08:21.000Z | #include "netlib/internal/init.h"
#include <cstdio>
#include <cstdlib>
#include <mutex>
#include <winsock2.h>
#pragma comment(lib, "ws2_32.lib")
namespace net {
namespace internal {
static void cleanup() {
WSACleanup();
}
static void initOnce() {
WSADATA data;
if (WSAStartup(MAKEWORD(2, 0), &data) != 0) {
fprintf(stderr, "ERROR: WSAStartup: %d\n", WSAGetLastError());
} else {
atexit(cleanup);
}
}
void init() {
static std::once_flag flag;
std::call_once(flag, initOnce);
}
} // namespace internal
} // namespace net
| 17.78125 | 70 | 0.637961 | yksz |
344f14565cf17fc2924d21d9bde79ebba19bcaaf | 84 | cpp | C++ | Source/Common/Service/Private/LocalVariables.cpp | RChehowski/ExcessiveJet | bbb504aa9d56045c6047f50424511459307bd13a | [
"MIT"
] | 2 | 2021-02-17T07:48:02.000Z | 2022-01-09T19:53:54.000Z | Source/Common/Service/Private/LocalVariables.cpp | RChehowski/ExcessiveJet | bbb504aa9d56045c6047f50424511459307bd13a | [
"MIT"
] | null | null | null | Source/Common/Service/Private/LocalVariables.cpp | RChehowski/ExcessiveJet | bbb504aa9d56045c6047f50424511459307bd13a | [
"MIT"
] | null | null | null | //
// Created by ASUS on 05/04/2021.
//
#include "Service/Public/LocalVariables.h"
| 14 | 42 | 0.690476 | RChehowski |
3455c17c2e179f15a503a4f59c3c00de4b3bbb5b | 44,496 | cpp | C++ | src/gui/overview.cpp | skill-lang/sirEdit | 20f973aa425c24107aa4331fe82c928093d2a087 | [
"Apache-2.0"
] | null | null | null | src/gui/overview.cpp | skill-lang/sirEdit | 20f973aa425c24107aa4331fe82c928093d2a087 | [
"Apache-2.0"
] | null | null | null | src/gui/overview.cpp | skill-lang/sirEdit | 20f973aa425c24107aa4331fe82c928093d2a087 | [
"Apache-2.0"
] | null | null | null | #include <sirEdit/data/tools.hpp>
#include <sirEdit/data/serialize.hpp>
#include <gtkmm.h>
#include <unordered_set>
#include <stdio.h>
#include <fstream>
#include <functional>
#include <iostream>
#include <sirEdit/main.hpp>
using namespace sirEdit;
using namespace sirEdit::data;
//
// Dependencie graph
//
class ImageRender : public Gtk::Widget
{
private:
Cairo::RefPtr<Cairo::ImageSurface> __surface;
Glib::RefPtr<Gdk::Window> __refGdkWindow;
public:
ImageRender() {
this->set_has_window(true);
}
void loadImage(std::string path) {
this->__surface = Cairo::ImageSurface::create_from_png(path);
this->queue_resize();
this->queue_draw();
}
protected:
//
// Size
//
Gtk::SizeRequestMode get_request_mode_vfunc() const override {
return Gtk::SizeRequestMode::SIZE_REQUEST_CONSTANT_SIZE;
}
void get_preferred_width_vfunc(int& minimum_width, int& natural_width) const override {
if(this->__surface)
minimum_width = this->__surface->get_width();
else
minimum_width = 0;
natural_width = minimum_width;
}
void get_preferred_height_for_width_vfunc(int width, int& minimum_height, int& natural_height) const override {
this->get_preferred_height_vfunc(minimum_height, natural_height);
}
void get_preferred_height_vfunc(int& minimum_height, int& natural_height) const override {
if(this->__surface)
minimum_height = this->__surface->get_height();
else
minimum_height = 0;
natural_height = minimum_height;
}
void get_preferred_width_for_height_vfunc(int height, int& minimum_width, int& natural_width) const override {
this->get_preferred_width_vfunc(minimum_width, natural_width);
}
void on_realize() override {
this->set_realized();
//if(!this->__refGdkWindow)
{
//Create the GdkWindow
GdkWindowAttr attributes;
memset(&attributes, 0, sizeof(attributes));
Gtk::Allocation allocation = get_allocation();
//Set initial position and size of the Gdk::Window
attributes.x = allocation.get_x();
attributes.y = allocation.get_y();
attributes.width = allocation.get_width();
attributes.height = allocation.get_height();
attributes.event_mask = this->get_events() | Gdk::EXPOSURE_MASK;
attributes.window_type = GDK_WINDOW_CHILD;
attributes.wclass = GDK_INPUT_OUTPUT;
this->__refGdkWindow = Gdk::Window::create(this->get_parent_window(), &attributes, GDK_WA_X | GDK_WA_Y);
set_window(this->__refGdkWindow);
//make the widget receive expose events
this->__refGdkWindow->set_user_data(this->gobj());
}
}
void on_unrealize() override {
this->set_realized();
}
void on_size_allocate(Gtk::Allocation& allocation) override {
this->set_allocation(allocation);
}
//
// Draw
//
bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr) override {
if(this->__surface) {
cr->save();
cr->set_source(this->__surface, 0, 0);
cr->rectangle(0, 0, this->__surface->get_width(), this->__surface->get_height());
cr->fill();
cr->restore();
}
return true;
}
};
/**
* Check if subset is a subset of superset.
* @param subset the subset to check
* @param superset the source subset
* @return true if subset is a subset of a superset
*/
bool subset(const auto& subset, const auto& superset) {
for(auto& i : subset)
if(superset.find(i) == superset.end())
return false;
return true;
}
/**
* Bind tools for hashing and comparision
*/
struct ToolBinding {
Tool tool;
bool operator ==(const ToolBinding& tool) const {
if(tool.tool.getStatesFields().size() != this->tool.getStatesFields().size())
return false;
for(auto& i : tool.tool.getStatesFields())
if((tool.tool.getFieldTransitiveState(*(i.first)) >= FIELD_STATE::READ) != (this->tool.getFieldTransitiveState(*(i.first)) >= FIELD_STATE::READ))
return false;
return true;
}
};
template<>
struct std::hash<ToolBinding> {
size_t operator()(const ToolBinding& tool) const {
size_t result = 0;
std::hash<const Field*> hasher;
for(auto& i : tool.tool.getStatesFields())
result ^= hasher(i.first);
return result;
}
};
/**
* A Edge of a graph
*/
struct Edge {
ToolBinding from; /// Source state
const Tool* tool; /// Tool (edge info)
ToolBinding to; /// Target state
bool operator ==(const Edge& edge) const {
return this->tool == edge.tool && this->from == edge.from && this->to == edge.to;
}
};
template<>
struct std::hash<Edge> {
size_t operator()(const Edge& edge) const {
return std::hash<ToolBinding>()(edge.from) ^ std::hash<const Tool*>()(edge.tool) ^ std::hash<ToolBinding>()(edge.to);
}
};
class DependencieGraph : public Gtk::VBox {
private:
struct NodeInfo {
std::unordered_map<ToolBinding, std::unordered_set<const Tool*>> edges;
std::unordered_set<const Tool*> selfReferences;
bool isFirstNode;
std::unordered_set<const Tool*> knownTools = {};
std::unordered_map<ToolBinding, std::unordered_set<const Tool*>> backEdges = {};
};
ImageRender __renderer;
Gtk::ScrolledWindow __scrollable;
const Serializer& __serializer;
Gtk::Button __update;
std::unordered_set<Edge> singleChain(std::unordered_set<const Tool*> tools) {
std::unordered_set<ToolBinding> todo;
{ // argmin
const Tool* tmp = nullptr;
size_t counter = 0;
for(auto& i : tools) {
size_t iCounter = i->requiredFields().size();
if(tmp == nullptr) {
tmp = i;
counter = iCounter;
}
else if(counter > iCounter) {
tmp = i;
counter = iCounter;
}
}
if(tmp == nullptr)
return {};
else {
Tool tmpTool;
for(auto& i : tmp->requiredFields()) {
auto tmp2 = tmp->getStatesFields().find(i);
tmpTool.setFieldState(*(tmp2->second.begin()->first), *i, FIELD_STATE::READ);
}
todo.insert({tmpTool});
}
}
std::unordered_set<ToolBinding> done;
std::unordered_set<Edge> result;
while(todo.size() > 0) { // Tools todo
ToolBinding currentState;
{ // Remove any
auto tmp = todo.begin();
currentState = std::move(*tmp);
todo.erase(tmp);
}
done.insert(currentState);
for(auto& i : tools) {
if(subset(i->requiredFields(), currentState.tool.requiredFields())) {
Tool nextState = currentState.tool;
for(auto& j : i->generatedFields()) {
auto tmp = i->getStatesFields().find(j);
if(tmp == i->getStatesFields().end())
throw; // That should never happen
nextState.setFieldState(*(tmp->second.begin()->first), *j, FIELD_STATE::READ);
}
if(nextState.isValid()) {
result.insert({currentState, i, {nextState}});
if(done.find({nextState}) == done.end())
todo.insert({nextState});
}
}
}
}
return result;
}
std::unordered_set<Edge> chain(std::unordered_set<const Tool*> tools) {
std::unordered_set<Edge> result;
std::unordered_set<Edge> nextChain = singleChain(tools);
while(!subset(nextChain, result)) {
for(auto& i : nextChain) {
auto tmp = tools.find(i.tool);
if(tmp != tools.end())
tools.erase(tmp);
}
result.insert(nextChain.begin(), nextChain.end());
nextChain = singleChain(tools);
}
return result;
}
std::string genFile(auto statesSource, auto edgesSource) {
// Gen dot file
std::string file = tmpnam(nullptr);
{
// Generate output
std::ofstream output(file + ".gv", std::ios::binary | std::ios::out);
output << "digraph G {\n";
// Generate nodes
std::unordered_map<ToolBinding, size_t> states;
{
size_t counter = 0;
statesSource([&](const ToolBinding& state, bool isStart) -> void {
// Set data
states[state] = counter;
// Write node
output << "n" << counter << " [label=\"";
if(isStart) {
bool first = true;
for(auto& i : state.tool.getStatesFields())
if(state.tool.getFieldTransitiveState(*(i.first)) >= FIELD_STATE::READ) {
if(first)
first = false;
else
output << "\\n";
for(auto& j : i.second)
if(j.second >= FIELD_STATE::READ)
output << j.first->getName();
output << "::" << i.first->getName();
}
}
output << "\"];\n";
// Update counter
counter++;
});
}
// Generate edges
edgesSource([&](const ToolBinding& from, const std::unordered_set<const Tool*>& tools, const ToolBinding& to) -> void {
output << "n" << states[from] << " -> n" << states[to] << " [label=\"";
bool first = true;
for(auto& i : tools) {
if(first)
first = false;
else
output << "\\n";
output << i->getName();
}
output << "\"];\n";
});
output << "}";
output.close();
}
// Command
int result = runCommand({"dot", "-Tpng", file + ".gv", "-o", file + ".png"}, ".");
if(result != 0)
throw; // TODO: Remove
return file + ".png";
}
std::string showTools(const std::unordered_set<const Tool*>& tools) {
// Edges
auto edges = chain(tools);
// Convert representation
std::unordered_map<ToolBinding, NodeInfo> nodeInfo;
for(auto& i : edges) {
// Add from state
{
auto tmp = nodeInfo.find(i.from);
if(tmp == nodeInfo.end())
nodeInfo[i.from] = {{}, {}, true};
}
auto& tmp = nodeInfo[i.from];
if(i.from == i.to) // Self reference
tmp.selfReferences.insert(i.tool);
else { // Real edge
{ // Insert edge
auto tmp2 = tmp.edges.find(i.to);
if(tmp2 == tmp.edges.end())
tmp.edges.insert({i.to, {i.tool}});
else
tmp2->second.insert(i.tool);
}
{ // to state info
auto tmp2 = nodeInfo.find(i.to);
if(tmp2 == nodeInfo.end())
nodeInfo[i.to] = {{}, {}, false};
else
tmp2->second.isFirstNode = false;
auto tmp3 = nodeInfo[i.to].backEdges.find(i.from);
if(tmp3 == nodeInfo[i.to].backEdges.end())
nodeInfo[i.to].backEdges[i.from] = {i.tool};
else
nodeInfo[i.to].backEdges[i.from].insert(i.tool);
}
}
}
// Remove double
{
std::unordered_set<ToolBinding> todo; // Find first nodes and prepare
for(auto& i : nodeInfo) {
i.second.knownTools = i.second.selfReferences;
if(i.second.isFirstNode)
todo.insert(i.first);
}
// Update types
while(todo.size() > 0) {
ToolBinding i; // Parse node
{
auto tmp = todo.begin();
i = std::move(*tmp);
todo.erase(i);
}
auto& tmp2 = nodeInfo[i];
for(auto& j : tmp2.edges) {
// Find not referenced tools
auto& tmp = nodeInfo[j.first];
std::unordered_set<const Tool*> toRemove;
for(auto& k : tmp.knownTools) {
if(tmp2.knownTools.find(k) != tmp2.knownTools.end()) // Is local known
continue;
if(j.second.find(k) != j.second.end())
continue;
if(tmp2.selfReferences.find(k) != tmp2.selfReferences.end())
continue;
toRemove.insert(k);
}
// Remove not referenced tools
for(auto& k : toRemove)
tmp.knownTools.erase(k);
// Add modified to todo
todo.insert(j.first);
}
}
// Do cleanup
for(auto& i : nodeInfo)
for(auto& j : i.second.knownTools)
i.second.selfReferences.erase(j);
}
{ // Remove unused diamonds
// Find ende nodes
std::unordered_set<ToolBinding> todo;
for(auto& i : nodeInfo)
if(i.second.edges.size() == 0)
todo.insert(i.first);
while(todo.size() > 0) { // Remove all edges that do not required
ToolBinding i; // Take an todo
{
auto tmp = todo.begin();
i = std::move(*tmp);
todo.erase(tmp);
}
auto& iData = nodeInfo[i];
if(iData.selfReferences.size() > 0) // Nothing to do
continue;
// Check edges
std::unordered_set<ToolBinding> edgesToRemove;
for(auto& j : iData.edges) {
bool found = false;
for(auto& k : j.second) {
for(auto& l : k->requiredFields()) {
for(auto& m : iData.backEdges) {
for(auto& n : m.second) {
auto tmp = n->generatedFields();
if(tmp.find(l) != tmp.end()) {
found = true;
break;
}
}
if(found)
break;
}
if(found)
break;
}
if(found)
break;
}
if(!found)
edgesToRemove.insert(j.first);
}
// Remove edges
if(edgesToRemove.size() > 0 || iData.edges.size() == 0)
for(auto& j : iData.backEdges)
todo.insert(j.first);
for(auto& j : edgesToRemove) {
iData.edges.erase(j);
nodeInfo[j].backEdges.erase(i);
}
}
{ // Remove empty nodes
std::unordered_set<ToolBinding> toRemove;
for(auto& i : nodeInfo)
if(i.second.edges.size() == 0 && i.second.selfReferences.size() == 0 && i.second.backEdges.size() == 0)
toRemove.insert(i.first);
for(auto& i : toRemove)
nodeInfo.erase(i);
}
}
// Draw and show
return this->genFile([&](auto func) -> void {
for(auto& i : nodeInfo)
func(i.first, i.second.isFirstNode);
}, [&](auto func) -> void {
for(auto& i : nodeInfo) {
for(auto& j : i.second.edges)
func(i.first, j.second, j.first);
if(i.second.selfReferences.size() > 0)
func(i.first, i.second.selfReferences, i.first);
}
});
}
public:
DependencieGraph(const Serializer& serializer) : __serializer(serializer) {
// Layout
this->__update = Gtk::Button("Update");
this->__scrollable.add(this->__renderer);
this->pack_start(this->__update, false, true);
this->pack_end(this->__scrollable, true, true);
// Button
this->__update.signal_clicked().connect([this]() -> void {
this->__renderer.loadImage(showTools({this->__serializer.getTools().begin(), this->__serializer.getTools().end()}));
});
}
};
//
// Overview
//
class ToolModel : public Gtk::TreeModel::ColumnRecord
{
public:
Gtk::TreeModelColumn<Glib::ustring> data_name;
Gtk::TreeModelColumn<Glib::ustring> data_sort_name;
Gtk::TreeModelColumn<bool> data_used;
Gtk::TreeModelColumn<bool> data_active;
Gtk::TreeModelColumn<Tool*> data_tool;
ToolModel() {
this->add(data_used);
this->add(data_active);
this->add(data_name);
this->add(data_sort_name);
this->add(data_tool);
}
};
static ToolModel toolModel;
class TypeModel : public Gtk::TreeModel::ColumnRecord
{
public:
Gtk::TreeModelColumn<Glib::ustring> data_name;
Gtk::TreeModelColumn<Glib::ustring> data_sort_name;
Gtk::TreeModelColumn<bool> data_used;
Gtk::TreeModelColumn<bool> data_active;
Gtk::TreeModelColumn<Type*> data_type;
TypeModel() {
this->add(data_used);
this->add(data_active);
this->add(data_name);
this->add(data_sort_name);
this->add(data_type);
}
};
static TypeModel typeModel;
class FieldModel : public Gtk::TreeModel::ColumnRecord
{
public:
Gtk::TreeModelColumn<Glib::ustring> data_name;
Gtk::TreeModelColumn<Glib::ustring> data_sort_name;
Gtk::TreeModelColumn<bool> data_used;
Gtk::TreeModelColumn<bool> data_active;
Gtk::TreeModelColumn<Field*> data_field;
Gtk::TreeModelColumn<bool> data_isUsable;
FieldModel() {
this->add(data_used);
this->add(data_active);
this->add(data_name);
this->add(data_sort_name);
this->add(data_field);
this->add(data_isUsable);
}
};
static FieldModel fieldModel;
class Overview : public Gtk::VBox {
private:
Transactions& transactions;
// Stack
Gtk::Stack stack;
Gtk::StackSwitcher stack_switcher;
// Type overview
Gtk::HPaned tool_paned;
Gtk::HPaned type_paned;
Gtk::HPaned field_paned;
Gtk::ToggleButton hide_inactive_tool = Gtk::ToggleButton("Hide inactive");
Gtk::ToggleButton hide_unused_tool = Gtk::ToggleButton("Hide unused");
Gtk::ToggleButton hide_inactive_type = Gtk::ToggleButton("Hide inactive");
Gtk::ToggleButton hide_unused_type = Gtk::ToggleButton("Hide unused");
Gtk::ToggleButton hide_inactive_field = Gtk::ToggleButton("Hide inactive");
Gtk::ToggleButton hide_unused_field = Gtk::ToggleButton("Hide unused");
Gtk::ScrolledWindow tool_scroll;
Gtk::TreeView tool_view;
Glib::RefPtr<Gtk::TreeStore> tool_store;
Gtk::ScrolledWindow type_scroll;
Gtk::TreeView type_view;
Glib::RefPtr<Gtk::TreeStore> type_store;
Gtk::ScrolledWindow field_scroll;
Gtk::TreeView field_view;
Glib::RefPtr<Gtk::TreeStore> field_store;
Gtk::VBox sidebar;
DependencieGraph graph;
//
// Render sidebar
//
inline void clearSidebar() {
auto tmp = this->sidebar.get_children();
for(auto& i : tmp)
this->sidebar.remove(*i);
}
inline Gtk::Label* createLabel(const std::string& text) {
Gtk::Label* result = Gtk::manage(new Gtk::Label(text));
result->set_xalign(0);
result->set_line_wrap(true);
return result;
};
inline void renderToolSidebar(const Tool& tool) {
// Create base structure
Gtk::VBox* typesSet;
Gtk::VBox* fieldsSet;
Gtk::VBox* typeSet;
{
this->clearSidebar();
this->sidebar.pack_start(*(createLabel(std::string("Name: ") + tool.getName())), false, false);
this->sidebar.pack_start(*(createLabel(std::string("Description:\n") + tool.getDescription())), false, false);
this->sidebar.pack_start(*(createLabel(std::string("Command-Line:\n") + tool.getCommand())), false, false);
typesSet = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*typesSet, false, false);
fieldsSet = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*fieldsSet, false, false);
typeSet = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*typeSet, false, false);
}
// Add types
{ // TODO: Sort
bool first = true;
for(auto& i : tool.getStatesTypes())
if(std::get<1>(i.second) >= TYPE_STATE::UNUSED) {
if(first) {
first = false;
typesSet->pack_start(*(createLabel(std::string(" "))), false, false);
typesSet->pack_start(*(createLabel(std::string("Types:"))), false, false);
}
const char* state;
switch(std::get<1>(i.second)) {
case TYPE_STATE::UNUSED:
state = "UNUSED";
break;
case TYPE_STATE::READ:
state = "READ";
break;
case TYPE_STATE::WRITE:
state = "WRITE";
break;
case TYPE_STATE::DELETE:
state = "DELETE";
break;
default:
throw; // That should never happen!
}
typesSet->pack_start(*(createLabel(i.first->getName() + " : " + state)), false, false);
}
}
// Add fileds
{ // TODO: Sort
bool first = true;
for(auto& i : tool.getStatesFields())
for(auto& j : i.second)
if(j.second > FIELD_STATE::NO) {
if(first) {
first = false;
typeSet->pack_start(*(createLabel(std::string(" "))), false, false);
typeSet->pack_start(*(createLabel(std::string("Fields:"))), false, false);
}
const char* state;
switch(j.second) {
case FIELD_STATE::UNUSED:
state = "UNUSED";
break;
case FIELD_STATE::READ:
state = "READ";
break;
case FIELD_STATE::WRITE:
state = "WRITE";
break;
case FIELD_STATE::CREATE:
state = "CREATE";
break;
default:
throw; // That should never happen
}
typesSet->pack_start(*(createLabel(j.first->getName() + "." + i.first->getName() + " : " + state)), false, false);
}
}
this->sidebar.show_all();
}
template<class SOURCE>
inline void renderSidebarHints(const SOURCE& source, Gtk::VBox& target) {
// Hints
{
bool first = true;
for(auto& i : source.getHints()) {
if(first) {
first = false;
target.pack_start(*(createLabel(std::string(" "))), false, false);
target.pack_start(*(createLabel(std::string("Hints:"))), false, false);
}
std::string tmp = i.first;
if(i.second.size() > 0) {
tmp += "(";
bool first2 = true;
for(auto& j : i.second) {
if(first2)
first2 = false;
else
tmp += ", ";
tmp += j;
}
tmp += ")";
}
target.pack_start(*(createLabel(tmp)), false, false);
}
}
// Restrictions
{
bool first = true;
for(auto& i : source.getRestrictions()) {
if(first) {
first = false;
target.pack_start(*(createLabel(std::string(" "))), false, false);
target.pack_start(*(createLabel(std::string("Restrictions:"))), false, false);
}
std::string tmp = i.first;
if(i.second.size() > 0) {
tmp += "(";
bool first2 = true;
for(auto& j : i.second) {
if(first2)
first2 = false;
else
tmp += ", ";
tmp += j;
}
tmp += ")";
}
target.pack_start(*(createLabel(tmp)), false, false);
}
}
}
inline void renderTypeSidebar(const Type& type) {
// Base structure
Gtk::VBox* hints;
Gtk::VBox* types;
{
this->clearSidebar();
this->sidebar.pack_start(*(createLabel(std::string("Name: ") + type.getName())), false, false);
this->sidebar.pack_start(*(createLabel(std::string("Description:\n") + type.getComment())), false, false);
this->sidebar.pack_start(*(createLabel(std::string("Kind: ") + type.getMetaTypeName())), false, false);
hints = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*hints, false, false);
types = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*types, false, false);
}
// Generate hints
renderSidebarHints(type, *hints);
// Used in tools
{ // TODO: Sort
bool first = true;
for(auto& i : this->transactions.getData().getTools()) {
TYPE_STATE fs = i->getTypeTransitiveState(type);
if(fs > TYPE_STATE::NO) {
if(first) {
first = false;
types->pack_start(*(createLabel(std::string(" "))), false, false);
types->pack_start(*(createLabel(std::string("Tools:"))), false, false);
}
const char* state;
switch(fs) {
case TYPE_STATE::UNUSED:
state = "UNUSED";
break;
case TYPE_STATE::READ:
state = "READ";
break;
case TYPE_STATE::WRITE:
state = "WRITE";
break;
case TYPE_STATE::DELETE:
state = "DELETE";
break;
default:
throw; // That should never happen!
}
types->pack_start(*(createLabel(i->getName() + " : " + state)), false, false);
}
}
}
// Finalize
this->sidebar.show_all();
}
inline void renderFieldSidebar(const Field& field) {
// Base structure
Gtk::VBox* hints;
Gtk::VBox* types;
{
this->clearSidebar();
this->sidebar.pack_start(*(createLabel(std::string("Name: ") + field.getName())), false, false);
this->sidebar.pack_start(*(createLabel(std::string("Description:\n") + field.getComment())), false, false);
this->sidebar.pack_start(*(createLabel(std::string("Type: ") + field.printType())), false, false);
hints = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*hints, false, false);
types = Gtk::manage(new Gtk::VBox());
this->sidebar.pack_start(*types, false, false);
}
// Generate hints
renderSidebarHints(field, *hints);
// Used in tools
{ // TODO: Sort
bool first = true;
for(auto& i : this->transactions.getData().getTools()) {
FIELD_STATE fs = i->getFieldTransitiveState(field);
if(fs > FIELD_STATE::NO) {
if(first) {
first = false;
types->pack_start(*(createLabel(std::string(" "))), false, false);
types->pack_start(*(createLabel(std::string("Tools:"))), false, false);
}
const char* state;
switch(fs) {
case FIELD_STATE::UNUSED:
state = "UNUSED";
break;
case FIELD_STATE::READ:
state = "READ";
break;
case FIELD_STATE::WRITE:
state = "WRITE";
break;
case FIELD_STATE::CREATE:
state = "CREATE";
break;
default:
throw; // That should never happen!
}
types->pack_start(*(createLabel(i->getName() + " : " + state)), false, false);
}
}
}
// Finalize
this->sidebar.show_all();
}
//
// Cache
//
std::unordered_set<const Type*> __cache_used_type;
std::unordered_set<const Type*> __cache_selected_type;
std::unordered_set<const Tool*> __cache_selected_tools;
std::unordered_set<const Tool*> __cache_used_tools;
std::unordered_set<const Field*> __cache_used_field;
std::unordered_set<const Field*> __cache_selected_fields;
const Type* __current_type = nullptr;
std::unordered_set<const Type*> getActiveTypes() {
std::unordered_set<const Type*> result;
for(auto& i : this->type_view.get_selection()->get_selected_rows()) {
const Type* tmp = (*(this->type_store->get_iter(i)))[typeModel.data_type];
if(tmp != nullptr)
result.insert(tmp);
}
return std::move(result);
}
std::unordered_set<const Field*> getActiveFields() {
std::unordered_set<const Field*> result;
for(auto& i : this->field_view.get_selection()->get_selected_rows()) {
const Field* tmp = (*(this->field_store->get_iter(i)))[fieldModel.data_field];
if(tmp != nullptr)
result.insert(tmp);
}
return std::move(result);
}
void genCacheTools() {
this->__cache_selected_tools = {};
for(auto& i : this->tool_view.get_selection()->get_selected_rows()) {
const Tool* tmp = (*(this->tool_store->get_iter(i)))[toolModel.data_tool];
if(tmp != nullptr)
this->__cache_selected_tools.insert(tmp);
}
}
void genCacheTypes() {
this->__cache_selected_type = std::move(this->getActiveTypes());
}
void genCacheFields() {
this->__cache_selected_fields = std::move(this->getActiveFields());
}
//
// Helpers
//
bool blockChange = false;
bool isToolActive(const Tool* tool) {
// Check marked tools
if(this->__cache_selected_tools.size() != 0) {
bool found = false;
for(auto& i : this->__cache_selected_tools) {
if(i == tool) {
found = true;
break;
}
}
if(!found)
return false;
}
// Check type
if(this->__cache_selected_type.size() != 0) {
bool found = false;
for(auto& i : this->__cache_selected_type) {
if(tool->getTypeTransitiveState(*i) >= TYPE_STATE::READ) {
found = true;
break;
}
}
if(!found)
return false;
}
// Check field
if(this->__cache_selected_fields.size() != 0) {
bool found = false;
for(auto& i : this->__cache_selected_fields) {
auto tmp = tool->getStatesFields().find(i);
if(tmp != tool->getStatesFields().end()) {
for(auto& j : tmp->second)
if(j.second >= FIELD_STATE::READ) {
found = true;
break;
}
if(found)
break;
}
}
if(!found)
return false;
}
return true;
}
bool isTypeActive(const Type* type) {
// Check selected types
if(this->__cache_selected_type.size() != 0) {
bool found = false;
for(auto& i : this->__cache_selected_type) {
if(i == type) {
found = true;
break;
}
}
if(!found)
return false;
}
// Check tools
if(this->__cache_selected_tools.size() != 0) {
bool found = false;
for(auto& i : this->__cache_selected_tools) {
if(i->getTypeTransitiveState(*type) >= TYPE_STATE::READ) {
found = true;
break;
}
}
if(!found)
return false;
}
// Check field
if(this->__cache_selected_fields.size() != 0) {
bool found = false;
for(auto& i : this->__cache_selected_fields) {
for(auto& j : this->transactions.getData().getTools())
if(j->getFieldSetState(*i, *type) >= FIELD_STATE::READ) {
found = true;
break;
}
if(found)
break;
}
if(!found)
return false;
}
return true;
}
bool isFieldActive(const Field* field) {
// Check tools
if(this->__cache_selected_tools.size() > 0) {
bool found = false;
for(auto& i : this->__cache_selected_tools) {
for(auto& j : i->getStatesFields()) { // TODO: Optimize
if(j.first == field)
for(auto& k : j.second)
if(k.second >= FIELD_STATE::READ) {
found = true;
break;
}
if(found)
break;
}
if(found)
break;
}
if(!found)
return false;
}
// Check types
if(this->__cache_selected_type.size() > 0) {
bool found = false;
for(auto& i : this->transactions.getData().getTools()) {
for(auto& j : i->getStatesFields()) { // TODO: Optimize
if(j.first == field)
for(auto& k : this->__cache_selected_type) {
auto tmp = j.second.find(k);
if(tmp != j.second.end())
if(tmp->second >= FIELD_STATE::READ) {
found = true;
break;
}
}
if(found)
break;
}
if(found)
break;
}
if(!found)
return false;
}
// Check fields
if(this->__cache_selected_fields.size() > 0) {
bool found = false;
for(auto& i : this->__cache_selected_fields)
if(i == field) {
found = true;
break;
}
if(!found)
return false;
}
return true;
}
void updateToolData() {
this->tool_view.get_selection()->unselect_all();
this->tool_store->clear();
this->tool_store->set_sort_column(toolModel.data_sort_name, Gtk::SortType::SORT_ASCENDING);
// Empty selection
{
auto tmp = *(this->tool_store->append());
tmp[toolModel.data_name] = "-- NO SELECTION --";
tmp[toolModel.data_sort_name] = "a";
tmp[toolModel.data_active] = false;
tmp[toolModel.data_used] = false;
tmp[toolModel.data_tool] = nullptr;
}
// Add Tools
for(auto& i : this->transactions.getData().getTools()) {
// Checks
if(this->hide_unused_tool.property_active().get_value() && this->__cache_used_tools.find(i) == this->__cache_used_tools.end())
continue;
if(this->hide_inactive_tool.property_active().get_value() && !this->isToolActive(i))
continue;
// Insert
auto tmp = *(this->tool_store->append());
tmp[toolModel.data_name] = i->getName();
tmp[toolModel.data_sort_name] = "b_" + i->getName();
tmp[toolModel.data_active] = this->isToolActive(i);
tmp[toolModel.data_used] = this->__cache_used_tools.find(i) != this->__cache_used_tools.end();
tmp[toolModel.data_tool] = const_cast<Tool*>(i);
}
// Select tools
for(auto& i : this->tool_store->children())
if(this->__cache_selected_tools.find((*i)[toolModel.data_tool]) != this->__cache_selected_tools.end())
this->tool_view.get_selection()->select(i);
}
template<bool FIRST>
void __genTypeItem(Gtk::TreeStore& tree, Gtk::TreeStore::Row& row, const Type* type) {
// Checks
if(this->hide_unused_type.property_active().get_value() && this->__cache_used_type.find(type) == this->__cache_used_type.end()) {
for(auto& i : type->getSubTypes())
if(getSuper(*i) == type)
this->__genTypeItem<FIRST>(tree, row, i);
return;
}
if(this->hide_inactive_type.property_active().get_value() && !this->isTypeActive(type)) {
for(auto& i : type->getSubTypes())
if(getSuper(*i) == type)
this->__genTypeItem<FIRST>(tree, row, i);
return;
}
// Insert
Gtk::TreeStore::Row own;
Gtk::TreeStore::iterator ownIter;
{
if constexpr(FIRST)
ownIter = tree.append();
else
ownIter = tree.append(row.children());
}
own = *ownIter;
own[typeModel.data_name] = type->getName() + " : " + type->getMetaTypeName();
own[typeModel.data_sort_name] = "b_" + type->getName();
own[typeModel.data_active] = this->isTypeActive(type);
own[typeModel.data_used] = this->__cache_used_type.find(type) != this->__cache_used_type.end();
own[typeModel.data_type] = const_cast<Type*>(type);
for(auto& i : type->getSubTypes())
if(getSuper(*i) == type)
this->__genTypeItem<false>(tree, own, i);
}
void selectTypes(Gtk::TreeStore::iterator iter) {
// Check entry
if(this->__cache_selected_type.find((*iter)[typeModel.data_type]) != this->__cache_selected_type.end())
this->type_view.get_selection()->select(iter);
// Update children
for(auto& i : iter->children())
this->selectTypes(i);
}
void updateTypeData() {
// Get scroll bar
double x = this->type_scroll.get_hadjustment()->get_value();
double y = this->type_scroll.get_vadjustment()->get_value();
// Update entries
this->type_view.get_selection()->unselect_all();
this->type_store->clear(); // TODO: Just clear when required.
this->type_store->set_sort_column(typeModel.data_sort_name, Gtk::SortType::SORT_ASCENDING);
//Add empty
{
auto tmp = *(this->type_store->append());
tmp[typeModel.data_name] = "-- NO SELECTION --";
tmp[typeModel.data_sort_name] = "a";
tmp[typeModel.data_active] = false;
tmp[typeModel.data_used] = false;
tmp[typeModel.data_type] = nullptr;
}
{
Gtk::TreeStore::Row tmp;
for(auto& i : this->transactions.getData().getBaseTypes())
this->__genTypeItem<true>(*(this->type_store.get()), tmp, i);
this->type_view.expand_all();
for(auto& i : this->type_store->children())
this->selectTypes(i);
}
// Set scroll bar
this->type_scroll.get_hadjustment()->set_value(x);
this->type_scroll.get_vadjustment()->set_value(y);
}
Gtk::TreeStore::Path __genFieldData(const Type* type, bool required, Gtk::TreeStore::Path* insertInto) {
// Find local fields to show
auto fields = getFields(*type);
// Generate class iter
const Type* parent = getSuper(*type);
Gtk::TreeStore::iterator classIter;
if(insertInto != nullptr)
classIter = this->field_store->append(this->field_store->get_iter(*insertInto)->children()); // TODO: Check if is empty
else if(parent != nullptr) {
Gtk::TreeStore::Path parentPath = this->__genFieldData(parent, required | fields.size() > 0, nullptr);
if(!required & fields.size() == 0)
return {};
classIter = this->field_store->append(this->field_store->get_iter(parentPath)->children());
}
else {
if(!required & fields.size() == 0)
return {};
classIter = this->field_store->append();
}
// Set class info
{
auto tmp = *classIter;
tmp[fieldModel.data_isUsable] = false;
tmp[fieldModel.data_active] = false;
tmp[fieldModel.data_used] = false;
tmp[fieldModel.data_field] = nullptr;
tmp[fieldModel.data_name] = type->getName() + " : " + type->getMetaTypeName();
tmp[fieldModel.data_sort_name] = "b_" + type->getName();
}
// Add interfaces
for(auto& i : getInterfaces(*type)) {
Gtk::TreeStore::Path tmp = this->field_store->get_path(classIter);
this->__genFieldData(i, false, &tmp);
}
// Show data
for(auto& i : fields) {
auto tmpIter = this->field_store->append(classIter->children());
auto tmp = *tmpIter;
tmp[fieldModel.data_active] = this->isFieldActive(&i);
tmp[fieldModel.data_isUsable] = true;
tmp[fieldModel.data_field] = &i;
tmp[fieldModel.data_name] = i.getName() + " : " + i.printType();
tmp[fieldModel.data_used] = this->__cache_used_field.find(&i) != this->__cache_used_field.end();
tmp[fieldModel.data_sort_name] = "c_" + i.getName();
}
return this->field_store->get_path(classIter);
}
void selectFields(Gtk::TreeStore::iterator iter) {
// Update this
{
const Field* field = (*iter)[fieldModel.data_field];
if(this->__cache_selected_fields.find(field) != this->__cache_selected_fields.end())
this->field_view.get_selection()->select(iter);
}
// Update children
for(auto& i : iter->children())
this->selectFields(i);
}
void updateFieldData() {
// Get scrollbar
double x = this->field_scroll.get_hadjustment()->get_value();
double y = this->field_scroll.get_vadjustment()->get_value();
// TODO: Check filter
this->field_view.get_selection()->unselect_all();
this->field_store->clear();
this->field_store->set_sort_column(fieldModel.data_sort_name, Gtk::SortType::SORT_ASCENDING);
{
// Add fiedls
if(this->__current_type != nullptr) {
// Empty slot
{
auto tmp = *(this->field_store->append());
tmp[fieldModel.data_active] = false;
tmp[fieldModel.data_isUsable] = true;
tmp[fieldModel.data_field] = nullptr;
tmp[fieldModel.data_name] = "-- NO SELECTION --";
tmp[fieldModel.data_used] = false;
tmp[fieldModel.data_sort_name] = "a";
}
this->__genFieldData(this->__current_type, false, nullptr);
}
this->field_view.expand_all();
// Select
for(auto& i : this->field_store->children())
this->selectFields(i);
}
// Set scrollbar
this->field_scroll.get_hadjustment()->set_value(x);
this->field_scroll.get_vadjustment()->set_value(y);
}
//
// Generators
//
template<bool USED_CHECK = false, class MODEL, class TOGGLE_CALLBACK>
static void genTreeView(Gtk::TreeView& tree_view, MODEL& tree_model, const TOGGLE_CALLBACK& toggle_callback) {
auto tmp_used = Gtk::manage(new Gtk::CellRendererToggle());
tree_view.append_column("used", *tmp_used);
tree_view.get_column(0)->add_attribute(tmp_used->property_active(), tree_model.data_used);
tmp_used->signal_toggled().connect(toggle_callback);
if constexpr(USED_CHECK)
tree_view.get_column(0)->add_attribute(tmp_used->property_activatable(), tree_model.data_isUsable);
auto tmp_active = Gtk::manage(new Gtk::CellRendererToggle());
tmp_active->set_activatable(false);
tree_view.append_column("active", *tmp_active);
tree_view.get_column(1)->add_attribute(tmp_active->property_active(), tree_model.data_active);
tree_view.append_column("name", tree_model.data_name);
tree_view.set_search_column(2);
tree_view.set_expander_column(*(tree_view.get_column(2)));
tree_view.expand_all();
tree_view.get_selection()->set_mode(Gtk::SelectionMode::SELECTION_MULTIPLE);
}
//
// Events
//
void toggle_tool_used(const Glib::ustring& index) {
auto tmp = *(this->tool_store->get_iter(index));
auto tmpInter = this->__cache_used_tools.find(static_cast<const Tool*>(tmp[toolModel.data_tool]));
if(tmpInter == this->__cache_used_tools.end()) {
this->__cache_used_tools.insert(static_cast<const Tool*>(tmp[toolModel.data_tool]));
tmp[toolModel.data_used] = true;
}
else {
this->__cache_used_tools.erase(tmpInter);
tmp[toolModel.data_used] = false;
}
this->update_all();
}
void toggle_type_used(const Glib::ustring& index) {
auto tmp = *(this->type_store->get_iter(index));
auto tmpIter = this->__cache_used_type.find(static_cast<const Type*>(tmp[typeModel.data_type]));
if(tmpIter == this->__cache_used_type.end()) {
this->__cache_used_type.insert(static_cast<const Type*>(tmp[typeModel.data_type]));
tmp[typeModel.data_used] = true;
}
else {
this->__cache_used_type.erase(tmpIter);
tmp[typeModel.data_used] = false;
}
this->update_all();
}
void toggle_field_used(const Glib::ustring& index) {
auto tmp = *(this->field_store->get_iter(index));
auto tmpIter = this->__cache_used_field.find(static_cast<const Field*>(tmp[fieldModel.data_field]));
if(tmpIter == this->__cache_used_field.end()) {
this->__cache_used_field.insert(static_cast<const Field*>(tmp[fieldModel.data_field]));
tmp[fieldModel.data_used] = true;
}
else {
this->__cache_used_field.erase(tmpIter);
tmp[fieldModel.data_used] = false;
}
this->update_all();
}
void update_all() {
if(blockChange)
return;
blockChange = true;
// Update views
this->genCacheTools();
this->genCacheTypes();
this->genCacheFields();
this->updateToolData();
this->updateTypeData();
this->updateFieldData();
blockChange = false;
}
public:
Overview(Transactions& transactions) : Gtk::VBox(), transactions(transactions), graph(transactions.getData()) {
// Init Stack
this->stack.add(this->tool_paned, "Tool Overview", "Tool Overview");
this->stack.add(this->graph, "Tool Relations", "Tool Relations");
this->stack_switcher.set_stack(this->stack);
{
Gtk::Alignment* tmp = Gtk::manage(new Gtk::Alignment());
tmp->set(0.5, 0.5, 0, 0);
tmp->add(this->stack_switcher);
this->pack_start(*tmp, false, true);
}
this->pack_start(this->stack, true, true);
// Init layout
this->tool_paned.pack2(this->type_paned);
{
Gtk::VBox* tmp = Gtk::manage(new Gtk::VBox());
tmp->pack_start(this->hide_inactive_tool, false, true);
this->hide_inactive_tool.signal_toggled().connect([this]() -> void {
this->update_all();
});
tmp->pack_start(this->hide_unused_tool, false, true);
this->hide_unused_tool.signal_toggled().connect([this]() -> void {
this->update_all();
});
this->tool_scroll.add(this->tool_view);
tmp->pack_start(this->tool_scroll, true, true);
this->tool_paned.pack1(*tmp);
}
this->type_paned.pack2(this->field_paned);
{
Gtk::VBox* tmp = Gtk::manage(new Gtk::VBox());
tmp->pack_start(this->hide_inactive_type, false, true);
this->hide_inactive_type.signal_toggled().connect([this]() -> void {
this->update_all();
});
tmp->pack_start(this->hide_unused_type, false, true);
this->hide_unused_type.signal_toggled().connect([this]() -> void {
this->update_all();
});
this->type_scroll.add(this->type_view);
tmp->pack_start(this->type_scroll, true, true);
this->type_paned.pack1(*tmp);
}
{
Gtk::VBox* tmp = Gtk::manage(new Gtk::VBox());
tmp->pack_start(this->hide_inactive_field, false, true);
this->hide_inactive_field.signal_toggled().connect([this]() -> void {
this->update_all();
});
tmp->pack_start(this->hide_unused_field, false, true);
this->hide_unused_field.signal_toggled().connect([this]() -> void {
this->update_all();
});
this->field_scroll.add(this->field_view);
tmp->pack_start(this->field_scroll, true, true);
this->field_paned.pack1(*tmp);
}
{
Gtk::ScrolledWindow* tmp = Gtk::manage(new Gtk::ScrolledWindow());
tmp->add(this->sidebar);
this->field_paned.pack2(*tmp);
}
// Trees
this->tool_store = Gtk::TreeStore::create(toolModel);
this->tool_view.set_model(this->tool_store);
genTreeView(this->tool_view, toolModel, [this](Glib::ustring index) -> void {
this->toggle_tool_used(index);
});
this->tool_view.get_selection()->signal_changed().connect([this]() -> void {
this->update_all();
});
this->tool_view.signal_row_activated().connect([this](const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column) -> void {
const Tool* tool = (*(this->tool_store->get_iter(path)))[toolModel.data_tool];
if(tool != nullptr)
this->renderToolSidebar(*tool);
});
this->type_store = Gtk::TreeStore::create(typeModel);
this->type_view.set_model(this->type_store);
genTreeView(this->type_view, typeModel, [this](Glib::ustring index) -> void {
this->toggle_type_used(index);
});
this->type_view.get_selection()->signal_changed().connect([this]() -> void {
this->update_all();
});
this->type_view.signal_row_activated().connect([this](const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column) -> void {
const Type* type = (*(this->type_store->get_iter(path)))[typeModel.data_type];
if(type != nullptr) {
this->__current_type = type;
this->update_all();
this->renderTypeSidebar(*type);
}
});
this->field_store = Gtk::TreeStore::create(fieldModel);
this->field_view.set_model(this->field_store);
genTreeView<true>(this->field_view, fieldModel, [this](Glib::ustring index) -> void {
this->toggle_field_used(index);
});
this->field_view.get_selection()->signal_changed().connect([this]() -> void {
this->update_all();
});
this->field_view.signal_row_activated().connect([this](const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column) -> void {
const Field* field = (*(this->field_store->get_iter(path)))[fieldModel.data_field];
if(field != nullptr)
this->renderFieldSidebar(*field);
});
// Content
this->update_all();
// Change notification
this->transactions.addChangeCallback([this]() -> void {
this->update_all();
});
}
};
namespace sirEdit::gui {
Gtk::Widget* createOverview(Transactions& transactions) {
return new Overview(transactions);
}
}
| 29.545817 | 148 | 0.627472 | skill-lang |
3459f19a9560647698d7e2c21f83248f6e952567 | 2,011 | cpp | C++ | Classes/Layer/GameLayer.cpp | Pythians/MyGame | 78cf7727b5ccdae5cd011aa093343e954cce8651 | [
"MIT"
] | null | null | null | Classes/Layer/GameLayer.cpp | Pythians/MyGame | 78cf7727b5ccdae5cd011aa093343e954cce8651 | [
"MIT"
] | null | null | null | Classes/Layer/GameLayer.cpp | Pythians/MyGame | 78cf7727b5ccdae5cd011aa093343e954cce8651 | [
"MIT"
] | null | null | null | #include "GameLayer.h"
#include "Resource/ResourcesManage.h"
#include "Layer/bg/BgLayer.h"
USING_NS_CC;
GameLayer::GameLayer( )
{
}
GameLayer::~GameLayer( )
{
}
bool GameLayer::init( )
{
if( !Node::init( ) )
{
return false;
}
this->addChild( LayerColor::create( Color4B( 182, 228, 254, 255 ) ) );
auto size = _director->getVisibleSize( );
auto cloud = createCloud( );
cloud->setScale( 0.6 );
cloud->setPosition( size.width * 0.81, size.height * 0.90 );
this->addChild( cloud );
auto cloud1 = createCloud( );
cloud1->setScale( 0.5 );
cloud1->setPosition( size.width * 0.5, size.height * 0.92 );
this->addChild( cloud1 );
auto cloud2 = createCloud( );
cloud2->setScale( 0.4 );
cloud2->setPosition( size.width * 0.162, size.height * 0.84 );
this->addChild( cloud2 );
auto res = new ResourcesManage( );
auto data = res->getBgLayerDataFromFile( "lines" );
auto li = data->getLineLayer( );
for( auto l : *li )
{
this->addChild( BgLayer::create( l ) );
}
/*for( int i = 0; i < li->size( ); i++ )
{
auto bg = BgLayer::create( li->at( i ) );
this->addChild( bg );
}*/
res->release( );
return true;
}
Node * GameLayer::createCloud( )
{
Color4F color = Color4F( 0.929f, 0.972f, 1.0f, 1.0f );
auto circle = DrawNode::create( );
circle->drawSolidCircle( Vec2::ZERO, 60.0f, 0.0f, 24, color );
circle->setPosition( 0, 0 );
auto circle1 = DrawNode::create( );
circle1->drawSolidCircle( Vec2::ZERO, 35.0f, 0.0f, 24, color );
circle1->setPosition( 50, -15 );
auto circle2 = DrawNode::create( );
circle2->drawSolidCircle( Vec2::ZERO, 40.0f, 0.0f, 24, color );
circle2->setPosition( -50, -10 );
auto circle3 = DrawNode::create( );
circle3->drawSolidCircle( Vec2::ZERO, 25.0f, 0.0f, 24, color );
circle3->setPosition( -80, -22 );
auto cloud = Node::create( );
cloud->addChild( circle3 );
cloud->addChild( circle2 );
cloud->addChild( circle1 );
cloud->addChild( circle );
return cloud;
}
| 25.455696 | 72 | 0.617603 | Pythians |
3459fcd4c781afa1ef86909af207aac5c21bf411 | 2,415 | cpp | C++ | src/Base/TaskProcessors/ThreadedTaskProcessor/WorkerThread.cpp | PhilipVinc/PincoSimulator | 562192cf3b09d0e67be7e6fee67ff9b59fbc3fd3 | [
"MIT"
] | 1 | 2017-10-23T13:22:01.000Z | 2017-10-23T13:22:01.000Z | src/Base/TaskProcessors/ThreadedTaskProcessor/WorkerThread.cpp | PhilipVinc/PincoSimulator | 562192cf3b09d0e67be7e6fee67ff9b59fbc3fd3 | [
"MIT"
] | null | null | null | src/Base/TaskProcessors/ThreadedTaskProcessor/WorkerThread.cpp | PhilipVinc/PincoSimulator | 562192cf3b09d0e67be7e6fee67ff9b59fbc3fd3 | [
"MIT"
] | null | null | null | //
// WorkerThread.cpp
// DataElaborator
//
// Created by Filippo Vicentini on 24/03/14.
// Copyright (c) 2014 Filippo Vicentini. All rights reserved.
//
#include "WorkerThread.hpp"
#include "ThreadedTaskProcessor.hpp"
#include "Base/Solver.hpp"
#include "Base/TaskData.hpp"
#include "Base/TaskResults.hpp"
#include <iostream>
#include <memory>
WorkerThread::WorkerThread(size_t id, ThreadedTaskProcessor* manager, Solver* solver)
{
_id = id;
_manager = manager;
_solver = solver;
computing = false;
}
WorkerThread::~WorkerThread()
{
delete _solver;
}
void WorkerThread::WorkerLoop()
{
while (!terminate.load(std::memory_order_acquire))
{
_currentTasks = _manager->GetDispatchedTasks(_id, _solver->nTasksToRequest);
if (_currentTasks.size() != 0)
{
// Profiler
if (profileEnabled)
{
startTime = std::chrono::high_resolution_clock::now();
monitoringTime = true;
}
size_t tmp = _currentTasks.size();
computing = true;
std::vector<unique_ptr<TaskResults>> results = _solver->Compute(_currentTasks);
completedTasks += tmp;
_manager->GiveResults(_id, std::move(results));
computing = false;
if (profileEnabled)
{
auto t = chrono::high_resolution_clock::now();
std::chrono::duration<float> dT = t - startTime;
float dt_ms = std::chrono::duration_cast<std::chrono::milliseconds>(dT).count();
speed = 1.0/dt_ms;
monitoringTime = false;
_manager->ReportAverageSpeed(speed);
}
} else if (terminateWhenDone.load(std::memory_order_acquire)) {
terminate.store(terminate, std::memory_order_release);
}
}
_manager->ReportThreadTermination(_id);
}
// Optimizer
float WorkerThread::GetSimulationSpeed()
{
if (_currentTasks.size() != 0 && monitoringTime)
{
auto t = chrono::high_resolution_clock::now();
std::chrono::duration<float> dT = t - startTime;
float dt_ms = std::chrono::duration_cast<std::chrono::milliseconds>(dT).count();
return _solver->ApproximateComputationProgress()/dt_ms;
}
else
{
return speed;
}
return 0;
}
float WorkerThread::GetSimulationProgress()
{
if (computing) {
return _solver->ApproximateComputationProgress();
}
return 0;
}
| 24.896907 | 96 | 0.633954 | PhilipVinc |
346466210c1d3661a11296962286e65adea5697f | 3,053 | cpp | C++ | Source/Engine/src/video/texture.cpp | DatZach/Swift | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | [
"MIT"
] | null | null | null | Source/Engine/src/video/texture.cpp | DatZach/Swift | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | [
"MIT"
] | null | null | null | Source/Engine/src/video/texture.cpp | DatZach/Swift | b0c6f9c87e8c8dfe8a19dedc4dd57081fa5cdef7 | [
"MIT"
] | 1 | 2021-10-30T20:43:01.000Z | 2021-10-30T20:43:01.000Z | /*
* texture.cpp
* Texture
*/
#include <Video/Texture.hpp>
#include <Util/Logger.hpp>
#include <SOIL.h>
namespace Video
{
Texture::Texture()
: textureIndex(0),
size(),
linearFiltering(false)
{
glGenTextures(1, &textureIndex);
}
Texture::~Texture()
{
glDeleteTextures(1, &textureIndex);
}
bool Texture::LoadFilename(const std::string& filename)
{
unsigned char* imageData = SOIL_load_image(filename.c_str(), &size.x, &size.y, NULL, SOIL_LOAD_RGBA);
if (imageData == nullptr)
return false;
bool result = LoadMemory(imageData, size);
SOIL_free_image_data(imageData);
return result;
}
bool Texture::LoadStream(Util::Stream* stream)
{
const unsigned char* buffer = stream->GetRawMemoryBuffer();
int length = stream->GetLength();
unsigned char* imageData = SOIL_load_image_from_memory(buffer, length, &size.x, &size.y, NULL, SOIL_LOAD_RGBA);
if (imageData == nullptr)
return false;
bool result = LoadMemory(imageData, size);
SOIL_free_image_data(imageData);
return result;
}
bool Texture::LoadMemory(const unsigned char* buffer, const Vector2i& imageSize)
{
if (buffer == nullptr)
return false;
if (size.x > GetMaximumSize() || size.y > GetMaximumSize())
{
Error << "Texture::LoadMemory: Texture exceeds maximum size of "
<< GetMaximumSize()
<< " supported by this GPU."
<< lendl;
return false;
}
// Set defaults
size = imageSize;
// Bind the texture
Bind();
// Generate texture image and set texture parameters
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, size.x, size.y, 0, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
// TODO Mipmaps
GlCheckError();
return true;
}
void Texture::SetLinear(bool value)
{
if (linearFiltering == value)
return;
linearFiltering = value;
// Preserve texture binding
GLint bindingIndex;
glGetIntegerv(GL_TEXTURE_BINDING_2D, &bindingIndex);
// Bind this texture and update linear filtering
Bind();
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, linearFiltering ? GL_LINEAR : GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, linearFiltering ? GL_LINEAR : GL_NEAREST);
// Restore preserved binding
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, bindingIndex);
}
void Texture::Bind()
{
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, textureIndex);
}
const Vector2i& Texture::GetSize() const
{
return size;
}
int Texture::GetMaximumSize() const
{
GLint size;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &size);
return size;
}
int Texture::ClampToValidSize(int value)
{
if (GLEW_ARB_texture_non_power_of_two)
return value;
int valuePower = 1;
while(valuePower < value)
valuePower <<= 1;
return valuePower;
}
}
| 21.652482 | 113 | 0.718637 | DatZach |
34651d6260a68e90f9abe09eaa51fb77455216f3 | 1,199 | cpp | C++ | training/Codeforces/834B.cpp | voleking/ICPC | fc2cf408fa2607ad29b01eb00a1a212e6d0860a5 | [
"MIT"
] | 68 | 2017-10-08T04:44:23.000Z | 2019-08-06T20:15:02.000Z | training/Codeforces/834B.cpp | voleking/ICPC | fc2cf408fa2607ad29b01eb00a1a212e6d0860a5 | [
"MIT"
] | null | null | null | training/Codeforces/834B.cpp | voleking/ICPC | fc2cf408fa2607ad29b01eb00a1a212e6d0860a5 | [
"MIT"
] | 18 | 2017-05-31T02:52:23.000Z | 2019-07-05T09:18:34.000Z | // written at 22:19 on 30 Jul 2017
#include <bits/stdc++.h>
#define IOS std::ios::sync_with_stdio(false); std::cin.tie(nullptr); std::cout.tie(nullptr);
#define filename ""
#define setfile() freopen(filename".in", "r", stdin); freopen(filename".ans", "w", stdout);
#define resetfile() freopen("/dev/tty", "r", stdin); freopen("/dev/tty", "w", stdout); system("more " filename".ans");
using namespace std;
template <typename T>
inline T sqr(T a) { return a * a;};
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int > Pii;
int n, k, l[30], r[30];
string s;
int main() {
cin >> n >> k;
cin >> s;
memset(l, -1, sizeof l);
memset(r, -1, sizeof r);
for (int i = 0; i < (int)s.size(); i++)
if (l[s[i] - 'A'] == -1) l[s[i] - 'A'] = i;
for (int i = (int)s.size() - 1; i >= 0; i--)
if (r[s[i] - 'A'] == -1) r[s[i] - 'A'] = i;
int cnt = 0;
bool flag = true;
for (int i = 0; i < (int)s.size(); i++) {
if (l[s[i] - 'A'] == i) cnt++;
if (cnt > k) flag = false;
if (r[s[i] - 'A'] == i) cnt--;
}
if (flag) cout << "NO" << endl;
else cout << "YES" << endl;
return 0;
}
| 28.547619 | 118 | 0.524604 | voleking |
34676faf248068e3f70f35aeaa69a1f459a64e6a | 8,613 | cpp | C++ | src/view/view2d/viewport.cpp | panzergame/dxfplotter | 95393027903c8e907c1d1ef7b4982d1aadc968c8 | [
"MIT"
] | 19 | 2020-04-08T16:38:27.000Z | 2022-03-30T19:53:18.000Z | src/view/view2d/viewport.cpp | panzergame/dxfplotter | 95393027903c8e907c1d1ef7b4982d1aadc968c8 | [
"MIT"
] | 3 | 2020-10-27T05:50:37.000Z | 2022-03-19T17:22:04.000Z | src/view/view2d/viewport.cpp | panzergame/dxfplotter | 95393027903c8e907c1d1ef7b4982d1aadc968c8 | [
"MIT"
] | 6 | 2020-06-15T13:00:58.000Z | 2022-02-09T13:18:04.000Z | #include <viewport.h>
#include <polylinepathitem.h>
#include <pointpathitem.h>
#include <QDebug> // TODO
namespace View::View2d
{
constexpr int rubberBandTolerance = 2;
// Rectangle extend used when clicking with empty rubber band.
constexpr QPoint pointSelectionRectExtend(10, 10);
void Viewport::setupPathItems()
{
task().forEachPath(
[scene = scene()](Model::Path &path) {
BasicPathItem *item;
if (path.isPoint()) {
item = new PointPathItem(path);
}
else {
item = new PolylinePathItem(path);
}
scene->addItem(item);
}
);
}
void Viewport::startMovement(const QPoint &mousePos)
{
m_lastMousePosition = mousePos;
}
void Viewport::updateMovement(const QPoint &mousePos)
{
const QPointF delta = mapToScene(mousePos) - mapToScene(m_lastMousePosition);
// Disable anchor to avoid interferences
setTransformationAnchor(NoAnchor);
translate(delta.x(), delta.y());
// Restore anchor
setTransformationAnchor(AnchorUnderMouse);
m_lastMousePosition = mousePos;
}
void Viewport::startRubberBand(const QPoint &mousePos)
{
m_rubberBand.start(mousePos, mapToScene(mousePos));
}
void Viewport::updateRubberBand(const QPoint &mousePos)
{
m_rubberBand.update(mousePos, mapToScene(mousePos));
}
void Viewport::endRubberBand(const QPoint &mousePos, bool addToSelection)
{
m_rubberBand.end(mousePos, mapToScene(mousePos));
// Point selection
if (m_rubberBand.empty(rubberBandTolerance)) {
// Fake selection area
const QRect rect(mousePos - pointSelectionRectExtend, mousePos + pointSelectionRectExtend);
// Find items in fake selection area
const QList<QGraphicsItem *> items = QGraphicsView::items(rect);
if (!items.empty()) {
// Obtain only the first item.
QGraphicsItem *item = items.front();
if (!addToSelection) {
// Clear all and select one in replacive selection
scene()->clearSelection();
item->setSelected(true);
}
else {
// Toggle selection in additive selection
item->setSelected(!item->isSelected());
}
}
}
// Area selection
else {
// Create a path with selection area
QPainterPath path;
path.addRect(m_rubberBand.rect());
scene()->setSelectionArea(path, addToSelection ? Qt::AddToSelection : Qt::ReplaceSelection);
}
}
void Viewport::selectAllItems()
{
for (QGraphicsItem *item : scene()->items()) {
item->setSelected(true);
}
}
void Viewport::deselecteAllItems()
{
for (QGraphicsItem *item : scene()->selectedItems()) {
item->setSelected(false);
}
}
void Viewport::setupModel()
{
setScene(new QGraphicsScene());
scene()->addItem(&m_rubberBand);
setupPathItems();
// Expand scene rect by margin allowing moving out of bound
const QRectF originalRect = scene()->itemsBoundingRect();
const QRectF expandedRect = originalRect.adjusted(-2000.0f, -2000.0f, 2000.0f, 2000.0f);
setSceneRect(expandedRect);
}
void Viewport::fitItemsInView()
{
setTransformationAnchor(NoAnchor);
const QRectF boundingRect = scene()->itemsBoundingRect();
centerOn(boundingRect.center());
fitInView(boundingRect, Qt::KeepAspectRatio);
setTransformationAnchor(AnchorUnderMouse);
}
/** @brief Painter for grid and axis into background
*/
class BackgroundPainter
{
private:
QPainter *m_painter;
const QRectF &m_sceneRect;
float m_pixelRatio;
// Draw grid using dashed lines
void drawLineGrid(float step)
{
// Point grid color
static const QBrush brush(QColor(120, 120, 120));
static const QPen pen(brush, 0, Qt::DashLine);
m_painter->setPen(pen);
const float startX = m_sceneRect.left();
const float startY = m_sceneRect.top();
const float endX = m_sceneRect.right();
const float endY = m_sceneRect.bottom();
// Reduce resolution to have the same as the grid
const float gridStartX = std::ceil(startX / step) * step;
const float gridStartY = std::ceil(startY / step) * step;
for (float x = gridStartX; x <= endX; x += step) {
const QPointF start(x, startY);
const QPointF end(x, endY);
m_painter->drawLine(start, end);
}
for (float y = gridStartY; y <= endY; y += step) {
const QPointF start(startX, y);
const QPointF end(endX, y);
m_painter->drawLine(start, end);
}
}
// Draw grid using points
void drawPointGrid(float step)
{
// Point grid color
static const QBrush brush(QColor(180, 180, 180));
static const QPen pen(brush, 0);
m_painter->setPen(pen);
// Reduce resolution to have the same as the grid
const float gridStartX = std::ceil(m_sceneRect.left() / step) * step;
const float gridStartY = std::ceil(m_sceneRect.top() / step) * step;
for (float x = gridStartX, endX = m_sceneRect.right(); x <= endX; x += step) {
for (float y = gridStartY, endY = m_sceneRect.bottom(); y <= endY; y += step) {
const QPointF point(x, y);
m_painter->drawPoint(point);
}
}
}
void drawGrid()
{
// Minimum pixel spacing two lines
static const float minimumPixelStep = 20;
const int resolution = std::ceil(std::log10(m_pixelRatio * minimumPixelStep));
const float step = std::pow(10.0f, resolution);
drawPointGrid(step);
drawLineGrid(step * 10.0f);
}
void drawOriginAxis(const QPointF &dir, float scale, const QPen &pen)
{
static const QPointF center(0.0f, 0.0f);
m_painter->setPen(pen);
m_painter->drawLine(center, center + dir * scale);
}
void drawOrigin()
{
// X axis color
static const QBrush xBrush(QColor(255, 0, 0));
static const QPen xPen(xBrush, 0);
// Y axis color
static const QBrush yBrush(QColor(0, 255, 0));
static const QPen yPen(yBrush, 0);
static const QPointF x(1.0f, 0.0f);
static const QPointF y(0.0f, 1.0f);
// Axis size in pixel
static const int axisSize = 20;
const float scale = axisSize * m_pixelRatio;
// raw each axis
drawOriginAxis(x, scale, xPen);
drawOriginAxis(y, scale, yPen);
}
public:
explicit BackgroundPainter(QPainter *painter, const QRectF &sceneRect, float pixelRatio)
:m_painter(painter),
m_sceneRect(sceneRect),
m_pixelRatio(pixelRatio)
{
drawGrid();
drawOrigin();
}
};
void Viewport::documentChanged()
{
setupModel();
fitItemsInView();
}
void Viewport::wheelEvent(QWheelEvent *event)
{
constexpr float SCALE_STEP = 0.2f;
const float factor = 1.0f + ((event->angleDelta().y() > 0) ? SCALE_STEP : -SCALE_STEP);
scale(factor, factor);
event->accept();
}
void Viewport::mousePressEvent(QMouseEvent *event)
{
const QPoint &mousePos = event->pos();
switch (event->button()) {
case Qt::MiddleButton:
{
startMovement(mousePos);
break;
}
case Qt::LeftButton:
{
startRubberBand(mousePos);
break;
}
default:
{
break;
}
}
event->accept();
}
void Viewport::mouseReleaseEvent(QMouseEvent *event)
{
const QPoint &mousePos = event->pos();
switch (event->button()) {
case Qt::LeftButton:
{
const bool addToSelection = event->modifiers() & Qt::ControlModifier;
endRubberBand(mousePos, addToSelection);
break;
}
default:
{
break;
}
}
event->accept();
}
void Viewport::mouseMoveEvent(QMouseEvent *event)
{
const QPoint &mousePos = event->pos();
const Qt::MouseButtons buttons = event->buttons();
if (buttons & Qt::MiddleButton) {
updateMovement(mousePos);
}
if (buttons & Qt::LeftButton) {
updateRubberBand(mousePos);
}
// Forward event used for anchors
QGraphicsView::mouseMoveEvent(event);
emit cursorMoved(mapToScene(mousePos));
}
void Viewport::keyPressEvent(QKeyEvent *event)
{
const int key = event->key();
const int modifier = event->modifiers();
if (key == Qt::Key_A && modifier & Qt::ControlModifier) {
selectAllItems();
}
else if (key == Qt::Key_Escape) {
deselecteAllItems();
}
}
void Viewport::drawBackground(QPainter *painter, const QRectF &updatedRect)
{
const QRect screenRect = rect();
const QRectF sceneRect = mapToScene(rect()).boundingRect();
const float pixelRatio = std::max(sceneRect.width() / screenRect.width(), sceneRect.height() / screenRect.height());
// Basic background color
static const QBrush brush(QColor(0, 0, 0));
painter->fillRect(updatedRect, brush);
BackgroundPainter backgroundPainter(painter, sceneRect, pixelRatio);
}
Viewport::Viewport(Model::Application &app)
:DocumentModelObserver(app)
{
// Setup default empty scene
setScene(new QGraphicsScene());
// Invert Y axis
scale(1.0f, -1.0f);
// Disable dragging support
setDragMode(NoDrag);
// Anchor under mouse for zooming
setResizeAnchor(AnchorUnderMouse);
setTransformationAnchor(AnchorUnderMouse);
setRenderHints(QPainter::Antialiasing);
// Hide scroll bars
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
}
| 22.606299 | 117 | 0.705677 | panzergame |
34725a23647d21aa01629b3766ae67cb271de3e7 | 21,737 | cpp | C++ | src/program/kss2-program.cpp | Dragon987/mbed-xml | a5130f319fd6b8c7585635e5366c28ba9379bb7f | [
"Apache-2.0"
] | null | null | null | src/program/kss2-program.cpp | Dragon987/mbed-xml | a5130f319fd6b8c7585635e5366c28ba9379bb7f | [
"Apache-2.0"
] | null | null | null | src/program/kss2-program.cpp | Dragon987/mbed-xml | a5130f319fd6b8c7585635e5366c28ba9379bb7f | [
"Apache-2.0"
] | null | null | null | #include "kss2-program.h"
#include "string.h"
#include "../common.h"
#define GET_TXT_VALUE_FROM_CHILD(parent, child) atoi(dxml_child(parent, child)->txt)
bool ellement_in_array(int el, int *arr, int n)
{
for(int i = 0; i < n; i++)
if (el == arr[i])
return true;
return false;
}
namespace kss2_program
{
int load_plan(ssplan_t *splan, dxml_t signal_plan)
{
splan->broj_plana = atoi(dxml_attr(signal_plan, "NO"));
splan->RBC = atoi(dxml_child(signal_plan, "RBC")->txt);
splan->TPP = atoi(dxml_child(signal_plan, "TPP")->txt);
splan->REF = atoi(dxml_child(signal_plan, "REF")->txt);
dxml_t sigr; // Variable which keeps tracks of all SIGR elements in document
char startString[10];
char stopString[10];
int readSIGR[NOSIGGR]; // Array that keeps track of SIGR "NO" attributes
for (int i = 0; i < NOSIGGR; i++)
readSIGR[i] = -1;
int nsgr = 0;
// citanje nodova signalnih grupa
for (sigr = dxml_child(signal_plan, "SIGR"); sigr; sigr = sigr->next)
{
if (ellement_in_array(atoi(dxml_attr(sigr, "NO")) - 1, readSIGR, NOSIGGR))
return SIGR_NUMBER_ERROR; // Two SIGR with same NUMBER
else
readSIGR[nsgr] = atoi(dxml_attr(sigr, "NO")) - 1;
dxml_t start1 = dxml_child(sigr, "start1");
dxml_t stop1 = dxml_child(sigr, "stop1");
// provera postojanja starta1 i stopa1
if (!start1 || !stop1)
return SIGR_START_STOP; // No start1 or stop1
sspar_t sp1 = {(uchar)atoi(start1->txt),
(uchar)atoi(stop1->txt)};
for (int i = 1; i < NOSIGPAR; i++)
{
sprintf(startString, "start%d", i + 1);
sprintf(stopString, "stop%d", i + 1);
dxml_t start = dxml_child(sigr, startString);
dxml_t stop = dxml_child(sigr, stopString);
sspar_t sp;
if (start && stop)
sp = (sspar_t){(uchar)atoi(start->txt),
(uchar)atoi(stop->txt)};
else if (start)
sp = (sspar_t){(uchar)atoi(start->txt),
0};
else if (stop)
sp = (sspar_t){0,
(uchar)atoi(stop->txt)};
else
sp = (sspar_t){0, 0};
splan->Sgrupe[atoi(dxml_attr(sigr, "NO")) - 1].Spar[i] = sp;
}
splan->Sgrupe[atoi(dxml_attr(sigr, "NO")) - 1].Spar[0] = sp1;
nsgr++;
}
for (int i = nsgr + 1; i < NOSIGGR; i++)
{
for (int j = 0; j < NOSIGPAR; j++)
{
splan->Sgrupe[i].Spar[j] = (sspar_t){0, 0}; // Filling the rest with 0s
}
}
int zbirSIGR = 0; // The sum of all SIGR "NO"s
for (int i = 0; i < NOSIGGR; i++)
zbirSIGR += (readSIGR[i] == -1) ? 0 : readSIGR[i]; // readSigr[i] was -1 by default which means it wasn't changed, so it has no effect on the sum
if (zbirSIGR != nsgr * (nsgr - 1) / 2) // The sum of all numbers from 1 to n = (n*(n+1))/2, so nsgr * (nsgr - 1) / 2 represents the sum of all numbers between 1 and nsgr-1 and if our tracked sum doesn't equal that we know a SIGR "NO" attribute value was skipped.
return SIGR_NUMBER_ERROR;
dxml_t stop_points = dxml_child(signal_plan, "STOP_POINTS");
if (stop_points)
{
dxml_t nofsp = dxml_child(stop_points, "NUMBER_OF_STOP_POINTS");
if (nofsp)
splan->no_stop_tacaka = atoi(nofsp->txt);
else
splan->no_stop_tacaka = NOSTOPTACAKA;
dxml_t stop_p;
int nstop_p = 0;
for (stop_p = dxml_child(stop_points, "STOP_POINT"); stop_p; stop_p = stop_p->next)
{
uchar start = (dxml_child(stop_p, "start")) ? atoi(dxml_child(stop_p, "start")->txt) : 0;
uchar max = (dxml_child(stop_p, "max")) ? atoi(dxml_child(stop_p, "max")->txt) : 0;
uchar skok = (dxml_child(stop_p, "stop")) ? atoi(dxml_child(stop_p, "stop")->txt) : 0;
splan->stop_tacke[atoi(dxml_attr(stop_p, "NO")) - 1].start = start;
splan->stop_tacke[atoi(dxml_attr(stop_p, "NO")) - 1].max = max;
splan->stop_tacke[atoi(dxml_attr(stop_p, "NO")) - 1].skok = skok;
nstop_p++;
}
for (int i = nstop_p + 1; i < NOSTOPTACAKA; i++) // Filling the rest of stop points with 0s if their number in xml is smaller than NOSTOPTACAKA.
{
splan->stop_tacke[i].start = 0;
splan->stop_tacke[i].max = 0;
splan->stop_tacke[i].skok = 0;
}
}
if (dxml_child(signal_plan, "SIGNAL_PLAN_CRC"))
splan->CRC_plana = atoi(dxml_child(signal_plan, "SIGNAL_PLAN_CRC")->txt);
else
return NO_CRC; // No CRC
return SIGR_NO_ERROR;
}
void load_plan_with_0s(ssplan_t *plan)
{
plan->broj_plana = 0;
plan->CRC_plana = 0;
plan->RBC = 0;
plan->REF = 0;
plan->TPP = 0;
plan->no_stop_tacaka = 0;
for (int i = 0; i < NOSTOPTACAKA; i++)
{
plan->stop_tacke[i].max = 0;
plan->stop_tacke[i].start = 0;
plan->stop_tacke[i].skok = 0;
}
for (int i = 0; i < NOSIGGR; i++)
for (int j = 0; j < NOSIGPAR; j++)
{
plan->Sgrupe[i].Spar[j].start = 0;
plan->Sgrupe[i].Spar[j].stop = 0;
}
}
int load_plans(ssplan_t *planovi, dxml_t xml)
{
dxml_t root = dxml_child(xml, "SIGNAL_PLANS");
//int nsigplans = atoi(dxml_child(root, "NUMBER_OF_SIGNAL_PLANS")->txt);
bool filled[NOPLANS];
for (int i = 0; i < NOPLANS; i++)
filled[i] = false;
for (dxml_t sp = dxml_child(root, "SIGNAL_PLAN"); sp; sp = sp->next)
{
int indSP;
indSP = atoi(dxml_attr(sp, "NO")) - 1;
if (indSP >= NOPLANS)
continue;
filled[indSP] = true;
int error = load_plan(&(planovi[indSP]), sp);
if (error != SIGR_NO_ERROR)
{
printf("Error occured at signal plan %d\n", ++indSP);
return error;
}
}
for (int i = 0; i < NOPLANS; i++)
if (!filled[i])
load_plan_with_0s(&(planovi[i]));
return SIGR_NO_ERROR;
}
static int load_days(dxml_t timeTable, stdan_t *dani)
{
if (timeTable == NULL)
{
printf("Cannot retreive time table object from file!\n");
return TimeTableErrorInvalidFile;
}
dxml_t timeTableDay = dxml_child(timeTable, "TIME_TABLE_DAY");
if (timeTableDay == NULL)
{
printf("Cannot retreive time table day object from file!\n");
return TimeTableErrorInvalidFile;
}
int noDays = 0, sumDay = 0;
for (dxml_t day = dxml_child(timeTableDay, "DAY"); day; day = day->next) // Loop through all of the days
{
int dayIdx = atoi(dxml_attr(day, "NO")) - 1;
sumDay += dayIdx + 1;
dani[dayIdx].dan = dayIdx + 1;
dani[dayIdx].broj_planova = atoi(dxml_child(day, "NUMBER_OF_PLANS_PER_DAY")->txt);
int noPlans = 0;
for (dxml_t plan = dxml_child(day, "PLAN"); plan; plan = plan->next)
{
int planIdx = atoi(dxml_attr(plan, "NO")) - 1;
if (planIdx < 0 || planIdx > 18)
{
printf("Plan %d in day %d has invalid number!\n", planIdx + 1, dayIdx + 1);
return TimeTableErrorInvalidPlanNumber;
}
uchar sat = atoi(dxml_child(plan, "hour")->txt);
if ((int)sat > 23 || (int)sat < 0)
{
printf("Plan %d in day %d has invalid hour number %d!\n", planIdx + 1, dayIdx + 1, sat);
return TimeTableErrorInvalidValue;
}
dani[dayIdx].trojka[planIdx].sat = sat;
uchar min = atoi(dxml_child(plan, "minut")->txt);
if ((int)min > 59 || (int)min < 0)
{
printf("Plan %d in day %d has invalid minut number %d!\n", planIdx + 1, dayIdx + 1, min);
return TimeTableErrorInvalidValue;
}
dani[dayIdx].trojka[planIdx].minut = min;
uchar planNumber = atoi(dxml_child(plan, "plan_number")->txt);
if ((int)planNumber > 16 || (int)planNumber < 0)
{
printf("Plan %d in day %d has invalid plan_number number %d!\n", planIdx + 1, dayIdx + 1, planNumber);
return TimeTableErrorInvalidValue;
}
dani[dayIdx].trojka[planIdx].broj_plana = planNumber;
noPlans++;
}
if (noPlans > dani[dayIdx].broj_planova)
{
printf("Number of plans is too large for day %d\n", dayIdx + 1);
return TimeTableErrorInvalidValue;
}
else if (noPlans < dani[dayIdx].broj_planova)
{
printf("Number of plans is too small for day %d\n", dayIdx + 1);
return TimeTableErrorInvalidValue;
}
noDays++;
}
if (noDays != 7)
{
printf("Wrong number of days.\n");
return TimeTableErrorInvalidDays;
}
if (! (sumDay == 7 * 8 / 2.f)) // Checks
{
printf("Some day numbers are invalid or repeated.\n");
return TimeTableErrorInvalidDays;
}
return TimeTableNoErrors;
}
static int load_hollydays(dxml_t timeTable, stpraznik_t *praznik)
{
if (praznik == NULL)
{
printf("No hollydays loaded(no error).\n");
return TimeTableNoErrors;
}
dxml_t timeTableHol = dxml_child(timeTable, "TIME_TABLE_HOLLYDAY");
int noHol = 0;
praznik->broj_praznika = atoi(dxml_child(timeTableHol, "NUMBER_OF_HOLDAYS") ->txt);
if (praznik->broj_praznika > 19 || praznik->broj_praznika < 0)
{
printf("Invalid number of hollydays.\n");
return TimeTableErrorInvalidValue;
}
for (dxml_t holDate = dxml_child(timeTableHol, "DATE_OF_HOLIDAY"); holDate; holDate = holDate->next)
{
int holDateIdx = atoi(dxml_attr(holDate, "NO")) - 1;
if (holDateIdx < 0 || holDateIdx > 18)
{
printf ("Error at hollyday date number %d, invalid index!\n", holDateIdx + 1);
return TimeTableErrorInvalidValue;
}
int datum = atoi(dxml_child(holDate, "datum")->txt);
int mesec = atoi(dxml_child(holDate, "mesec")->txt);
if (mesec <= 0 || mesec > 12)
{
printf("Error at holyday day %d, value of mesec is %d\n", holDateIdx + 1, mesec);
return TimeTableErrorInvalidValue;
}
if ((mesec <= 7 && mesec % 2 == 1) || (mesec >= 8 && mesec % 2 == 0))
{
if (datum <= 0 || datum > 31)
{
printf("Error at holyday day %d, value of mesec is %d and value of datum is %d\n", holDateIdx + 1, mesec, datum);
return TimeTableErrorInvalidValue;
}
}
else if ((mesec <= 7 && mesec % 2 == 0) || (mesec >= 8 && mesec % 2 == 1))
{
if (mesec != 2)
{
if (datum <= 0 || datum > 30)
{
printf("Error at holyday day %d, value of mesec is %d and value of datum is %d\n", holDateIdx + 1, mesec, datum);
return TimeTableErrorInvalidValue;
}
}
else
{
if (datum <= 0 || datum > 28)
{
printf("Error at holyday day %d, value of mesec is %d and value of datum is %d\n", holDateIdx + 1, mesec, datum);
return TimeTableErrorInvalidValue;
}
}
}
praznik->datum[holDateIdx].datum = datum;
praznik->datum[holDateIdx].mesec = mesec;
noHol++;
}
if (noHol > praznik->broj_praznika || noHol < praznik->broj_praznika)
{
printf("Invalid number of hollydays.\n");
return TimeTableErrorInvalidValue;
}
int noPlans = atoi(dxml_child(timeTableHol, "NUMBER_OF_PLANS_PER_HOLIDAY")->txt);
if (noPlans > 16 || noPlans < 0)
{
printf("Invalid number of plans %d", noPlans);
return TimeTableErrorInvalidValue;
}
int cPlans = 0;
for (dxml_t plan = dxml_child(timeTableHol, "PLAN"); plan; plan = plan->next)
{
int planIdx = atoi(dxml_attr(plan, "NO")) - 1;
if (planIdx < 0 || planIdx > 18)
{
printf("Invalid plan index %d\n", planIdx);
return TimeTableErrorInvalidValue;
}
praznik->planovi[planIdx].broj_plana = atoi(dxml_child(plan, "plan_number")->txt);
praznik->planovi[planIdx].minut = atoi(dxml_child(plan, "minut")->txt);
praznik->planovi[planIdx].sat = atoi(dxml_child(plan, "hour")->txt);
cPlans++;
}
if (cPlans != noPlans)
{
printf("Invalid number of plans!\n");
return TimeTableErrorInvalidValue;
}
return TimeTableNoErrors;
}
static int load_dates(dxml_t timeTable, stdatum_t *datumi)
{
if (datumi == NULL)
{
printf("No dates loaded(no error).\n");
return TimeTableNoErrors;
}
dxml_t ttd = dxml_child(timeTable, "TIME_TABLE_DATE");
for (dxml_t date = dxml_child(ttd, "DATE_NUMBER"); date; date = date->next)
{
int dateIdx = atoi(dxml_attr(date, "NO")) - 9;
if (dateIdx < 0 || dateIdx > 7)
{
printf("Error at special date %d, invalid value", dateIdx + 9);
return TimeTableErrorInvalidValue;
}
datumi[dateIdx].broj_planova = GET_TXT_VALUE_FROM_CHILD(date, "NUMBER_OF_PLANS_PER_DATE");
datumi[dateIdx].godina = GET_TXT_VALUE_FROM_CHILD(date, "YEAR");
datumi[dateIdx].mesec = GET_TXT_VALUE_FROM_CHILD(date, "MONTH");
datumi[dateIdx].datum = GET_TXT_VALUE_FROM_CHILD(date, "DATE");
int nPlans = 0;
for (dxml_t plan = dxml_child(date, "PLAN"); plan; plan = plan->next)
{
nPlans++;
datumi[dateIdx].dan = dateIdx + 9;
int planIdx = atoi(dxml_attr(plan, "NO")) - 1;
if (planIdx < 0 || planIdx > 18)
{
printf("Error plan %d", planIdx + 1);
return TimeTableErrorInvalidValue;
}
datumi[dateIdx].trojka[planIdx].broj_plana = GET_TXT_VALUE_FROM_CHILD(plan, "plan_number");
datumi[dateIdx].trojka[planIdx].sat = GET_TXT_VALUE_FROM_CHILD(plan, "hour");
datumi[dateIdx].trojka[planIdx].minut = GET_TXT_VALUE_FROM_CHILD(plan, "minut");
}
if (nPlans != datumi[dateIdx].broj_planova)
{
printf("Error on date %d invalid amount of plans.\n", dateIdx + 9);
return TimeTableErrorInvalidValue;
}
}
return TimeTableNoErrors;
}
int load_time_table(dxml_t file, stdan_t *dani, stpraznik_t *praznik, stdatum_t *datumi)
{
dxml_t timeTable = dxml_child(file, "TIME_TABLE"); // Representation of time table in xml
if (timeTable == NULL)
{
printf("Failed to load time table object from file!\n");
return TimeTableErrorInvalidFile;
}
if (dani == NULL)
{
printf("You must provide pointer for dani!\n");
return TimeTableErrorInvalidDays;
}
printf("Loading days... ");
int err = load_days(timeTable, dani);
if (err != TimeTableNoErrors)
{
printf("Error occured while loading Days.\n");
return err;
}
printf("Done.\n");
printf("Loading hollydays... ");
err = load_hollydays(timeTable, praznik);
if (err != TimeTableNoErrors)
{
printf("Error occured while loading Hollydays.\n");
return err;
}
printf("Done.\n");
printf("Loading dates... ");
err = load_dates(timeTable, datumi);
if (err != TimeTableNoErrors)
{
printf("Error occured while loading dates.\n");
return err;
}
printf("Done!\n");
return TimeTableNoErrors;
}
int load(ssplan_t* planovi, stdan_t *dani, stpraznik_t *praznik, stdatum_t *datumi, const char* filename)
{
auto fp = fopen(filename, "r");
auto xml = dxml_parse_fp(fp);
auto err = load_plans(planovi, xml);
if (err) {
printf("Failed to load plans: %d\n\r", err);
// return err;
}
err = load_time_table(xml, dani, praznik, datumi);
if (err) {
printf("Failed to load time table: %d\n\r", err);
return err;
}
return 0;
}
static void save_sigr(dxml_t xml, const ssplan_t& plan, int current)
{
auto sigr = create_tag_with_attr(xml, "SIGR", "NO", current + 1);
create_tag_with_txt(sigr, "name1", strdup("somename1"));
create_tag_with_txt(sigr, "name2", strdup("somename2"));
create_tag_with_txt(sigr, "enable", 0);
for (int i = 0; i < NOSIGPAR; ++i)
{
char *start = new char[7];
start[6] = 0;
char *stop = new char[6];
stop[5] = 0;
snprintf(start, 7, "start%d", i + 1);
snprintf(stop, 6, "stop%d", i + 1);
create_tag_with_txt(sigr, start, plan.Sgrupe[current].Spar[i].start);
create_tag_with_txt(sigr, stop, plan.Sgrupe[current].Spar[i].stop);
}
}
static void save_stop_point(dxml_t xml, const ssplan_t &plan, uchar current)
{
auto stop_point = create_tag_with_attr(xml, "STOP_POINT", "NO", current + 1);
create_tag_with_txt(stop_point, "start", plan.stop_tacke[current].start);
create_tag_with_txt(stop_point, "max", plan.stop_tacke[current].max);
create_tag_with_txt(stop_point, "skok", plan.stop_tacke[current].skok);
}
static void save_signal_plans(dxml_t xml, const ssplan_t planovi[NOPLANS], int current)
{
if (current == NOPLANS)
return;
auto& plan = planovi[current];
auto sig_plan = create_tag_with_attr(xml, "SIGNAL_PLAN", "NO", current + 1);
create_tag_with_txt(sig_plan, "RBC", plan.RBC);
create_tag_with_txt(sig_plan, "TPP", plan.TPP);
create_tag_with_txt(sig_plan, "REF", plan.REF);
for (int i = 0; i < NOSIGGR; ++i)
save_sigr(sig_plan, plan, i);
auto stop_points = dxml_add_child(sig_plan, "STOP_POINTS", 0);
create_tag_with_txt(stop_points, "NUMBER_OF_STOP_POINTS", plan.no_stop_tacaka);
for (uchar i = 0; i < plan.no_stop_tacaka; ++i)
save_stop_point(stop_points, plan, i);
// </STOP_POINTS>
create_tag_with_txt(sig_plan, "SIGNAL_PLAN_CRC", plan.CRC_plana);
// </SIGNAL_PLAN>
save_signal_plans(xml, planovi, current + 1);
}
void save_day(dxml_t xml, const stdan_t& dan, uchar current)
{
dxml_t day = create_tag_with_attr(xml, "DAY", "NO", current);
create_tag_with_txt(day, "NUMBER_OF_PLANS_PER_DAY", dan.broj_planova);
for (int i = 0; i < dan.broj_planova; ++i)
{
dxml_t plan = create_tag_with_attr(day, "PLAN", "NO", i + 1);
const auto& info = dan.trojka[i];
create_tag_with_txt(plan, "hour", info.sat);
create_tag_with_txt(plan, "minut", info.minut);
create_tag_with_txt(plan, "plan_number", info.broj_plana);
}
}
void save_date_number(dxml_t xml, const stdatum_t &datum, int current)
{
auto date_number = create_tag_with_attr(xml, "DATE_NUMBER", "NO", current);
create_tag_with_txt(date_number, "NUMBER_OF_PLANS_PER_DATE", datum.broj_planova);
create_tag_with_txt(date_number, "DATE", datum.datum);
create_tag_with_txt(date_number, "MONTH", datum.mesec);
create_tag_with_txt(date_number, "YEAR", datum.godina);
for (int i = 0; i < datum.broj_planova; ++i)
{
dxml_t plan = create_tag_with_attr(date_number, "PLAN", "NO", i + 1);
create_tag_with_txt(plan, "hour", datum.trojka[i].sat);
create_tag_with_txt(plan, "minut", datum.trojka[i].minut);
create_tag_with_txt(plan, "plan_number", datum.trojka[i].broj_plana);
}
}
void save(const ssplan_t planovi[NOPLANS], const stdan_t *dani,
const stpraznik_t *praznik, stdatum_t *datumi, const char* filename)
{
auto xml = dxml_new("PROGRAM_DATA");
auto sig_plans = dxml_add_child(xml, "SIGNAL_PLANS", 0);
create_tag_with_txt(sig_plans, "NUMBER_OF_SIGNAL_PLANS", NOPLANS);
save_signal_plans(sig_plans, planovi, 0);
// </SIGNAL_PLANS>
auto time_table = dxml_add_child(xml, "TIME_TABLE", 0);
auto tt_day = dxml_add_child(time_table, "TIME_TABLE_DAY", 0);
for (int i = 0; i < 7; ++i)
save_day(tt_day, dani[i], dani[i].dan);
// </TIME_TABLE_DAY>
auto tt_hollyday = dxml_add_child(time_table, "TIME_TABLE_HOLLYDAY", 0);
create_tag_with_txt(tt_hollyday, "NUMBER_OF_HOLDAYS", praznik->broj_praznika);
for (int i = 0; i < praznik->broj_praznika; ++i)
{
auto doh = create_tag_with_attr(tt_hollyday, "DATE_OF_HOLIDAY", "NO", i + 1);
create_tag_with_txt(doh, "datum", praznik->datum[i].datum);
create_tag_with_txt(doh, "mesec", praznik->datum[i].mesec);
}
create_tag_with_txt(tt_hollyday, "NUMBER_OF_PLANS_PER_HOLIDAY", BROJ_PLANOVA_NA_PRAZNIKU);
for (int i = 0; i < BROJ_PLANOVA_NA_PRAZNIKU; ++i)
{
dxml_t plan = create_tag_with_attr(tt_hollyday, "PLAN", "NO", i + 1);
create_tag_with_txt(plan, "hour", praznik->planovi[i].sat);
create_tag_with_txt(plan, "minut", praznik->planovi[i].minut);
create_tag_with_txt(plan, "plan_number", praznik->planovi[i].broj_plana);
}
// </TIME_TABLE_HOLLYDAY>
dxml_t tt_date = dxml_add_child(time_table, "TIME_TABLE_DATE", 0);
for (int i = 9; i < 16; ++i)
save_date_number(tt_date, datumi[i - 9], i);
// </TIME_TABLE_DATE>
// </TIME_TABLE>
auto fp = fopen(filename, "w");
auto buff = dxml_toxml(xml);
fwrite(buff, sizeof (char), strlen(buff), fp);
free(buff);
fclose(fp);
}
} // namespace kss2_program
| 32.443284 | 266 | 0.582969 | Dragon987 |
347a33b9a8cc5b8581d4094543dd9a5abb969da8 | 38,090 | inl | C++ | src/fonts/stb_font_consolas_32_usascii.inl | stetre/moonfonts | 5c8010c02ea62edcf42902e09478b0cd14af56ea | [
"MIT"
] | 3 | 2018-03-13T12:51:57.000Z | 2021-10-11T11:32:17.000Z | src/fonts/stb_font_consolas_32_usascii.inl | stetre/moonfonts | 5c8010c02ea62edcf42902e09478b0cd14af56ea | [
"MIT"
] | null | null | null | src/fonts/stb_font_consolas_32_usascii.inl | stetre/moonfonts | 5c8010c02ea62edcf42902e09478b0cd14af56ea | [
"MIT"
] | null | null | null | // Font generated by stb_font_inl_generator.c (4/1 bpp)
//
// Following instructions show how to use the only included font, whatever it is, in
// a generic way so you can replace it with any other font by changing the include.
// To use multiple fonts, replace STB_SOMEFONT_* below with STB_FONT_consolas_32_usascii_*,
// and separately install each font. Note that the CREATE function call has a
// totally different name; it's just 'stb_font_consolas_32_usascii'.
//
/* // Example usage:
static stb_fontchar fontdata[STB_SOMEFONT_NUM_CHARS];
static void init(void)
{
// optionally replace both STB_SOMEFONT_BITMAP_HEIGHT with STB_SOMEFONT_BITMAP_HEIGHT_POW2
static unsigned char fontpixels[STB_SOMEFONT_BITMAP_HEIGHT][STB_SOMEFONT_BITMAP_WIDTH];
STB_SOMEFONT_CREATE(fontdata, fontpixels, STB_SOMEFONT_BITMAP_HEIGHT);
... create texture ...
// for best results rendering 1:1 pixels texels, use nearest-neighbor sampling
// if allowed to scale up, use bilerp
}
// This function positions characters on integer coordinates, and assumes 1:1 texels to pixels
// Appropriate if nearest-neighbor sampling is used
static void draw_string_integer(int x, int y, char *str) // draw with top-left point x,y
{
... use texture ...
... turn on alpha blending and gamma-correct alpha blending ...
glBegin(GL_QUADS);
while (*str) {
int char_codepoint = *str++;
stb_fontchar *cd = &fontdata[char_codepoint - STB_SOMEFONT_FIRST_CHAR];
glTexCoord2f(cd->s0, cd->t0); glVertex2i(x + cd->x0, y + cd->y0);
glTexCoord2f(cd->s1, cd->t0); glVertex2i(x + cd->x1, y + cd->y0);
glTexCoord2f(cd->s1, cd->t1); glVertex2i(x + cd->x1, y + cd->y1);
glTexCoord2f(cd->s0, cd->t1); glVertex2i(x + cd->x0, y + cd->y1);
// if bilerping, in D3D9 you'll need a half-pixel offset here for 1:1 to behave correct
x += cd->advance_int;
}
glEnd();
}
// This function positions characters on float coordinates, and doesn't require 1:1 texels to pixels
// Appropriate if bilinear filtering is used
static void draw_string_float(float x, float y, char *str) // draw with top-left point x,y
{
... use texture ...
... turn on alpha blending and gamma-correct alpha blending ...
glBegin(GL_QUADS);
while (*str) {
int char_codepoint = *str++;
stb_fontchar *cd = &fontdata[char_codepoint - STB_SOMEFONT_FIRST_CHAR];
glTexCoord2f(cd->s0f, cd->t0f); glVertex2f(x + cd->x0f, y + cd->y0f);
glTexCoord2f(cd->s1f, cd->t0f); glVertex2f(x + cd->x1f, y + cd->y0f);
glTexCoord2f(cd->s1f, cd->t1f); glVertex2f(x + cd->x1f, y + cd->y1f);
glTexCoord2f(cd->s0f, cd->t1f); glVertex2f(x + cd->x0f, y + cd->y1f);
// if bilerping, in D3D9 you'll need a half-pixel offset here for 1:1 to behave correct
x += cd->advance;
}
glEnd();
}
*/
#ifndef STB_FONTCHAR__TYPEDEF
#define STB_FONTCHAR__TYPEDEF
typedef struct
{
// coordinates if using integer positioning
float s0,t0,s1,t1;
signed short x0,y0,x1,y1;
int advance_int;
// coordinates if using floating positioning
float s0f,t0f,s1f,t1f;
float x0f,y0f,x1f,y1f;
float advance;
} stb_fontchar;
#endif
#define STB_FONT_consolas_32_usascii_BITMAP_WIDTH 256
#define STB_FONT_consolas_32_usascii_BITMAP_HEIGHT 138
#define STB_FONT_consolas_32_usascii_BITMAP_HEIGHT_POW2 256
#define STB_FONT_consolas_32_usascii_FIRST_CHAR 32
#define STB_FONT_consolas_32_usascii_NUM_CHARS 95
#define STB_FONT_consolas_32_usascii_LINE_SPACING 21
static unsigned int stb__consolas_32_usascii_pixels[]={
0x04000993,0x2654c000,0x00015793,0x99930620,0x40019999,0xccca8008,
0x26004ccc,0x654c001a,0x000000ac,0x06600000,0x00000000,0x00000000,
0x401fee00,0x000ba25d,0x53ffff4c,0x0019ffff,0xb877fc40,0x1fffffff,
0x7fff6440,0xffff902d,0x3a001fff,0xffb1002f,0x001dffff,0x7ccdfb00,
0xff70002f,0x37ec05ff,0x2e7fd800,0xfe8001ff,0x39dff32f,0xfffffd80,
0x00ff704f,0x3ff63ff9,0x7ffc4002,0x3fb264df,0x320004ff,0x99933fff,
0x5403ffb9,0xfffddfff,0xcccffc82,0x07fe004c,0x3bfffe60,0x001effff,
0xfd0ffe20,0xbff7000b,0xff503fff,0x9ff60003,0xe8001ffb,0xffff32ff,
0x3ff603df,0xf704ffff,0x23ffc80f,0x2001ffe8,0x4c00bffc,0x70001ffe,
0x7d407fff,0x19ff701f,0x7e42ffb8,0xff510007,0x7ffc4015,0x1fff660b,
0xa87fc800,0x3e2000ff,0x889fd12f,0x360004fe,0x007fee7f,0x544bffa0,
0x82ffffcb,0x4ffa9998,0x7d40ff70,0x0fff884f,0x400ffd00,0x10003ffb,
0xffa80bfb,0x202ff981,0x03fe46fc,0xfffff910,0xff903fff,0x01ffec07,
0xff04ff80,0x23fcc009,0x037e46fc,0xfb9ff600,0xffe8001f,0x3fff9102,
0x704ff880,0x1bfe20ff,0xf005ff98,0x7fc4009f,0xa8000004,0x04fe81ff,
0x1ff21fe8,0x7ffffd40,0x441fffff,0x7fc406ff,0x0ffa8006,0x5400ff90,
0xf337d47f,0xfd80003f,0x0007fee7,0xf7007ff6,0x4ff880bf,0x3f20ff70,
0x0ffec01f,0x000ffe20,0x00000bfd,0xfb83ff50,0x649f9006,0xfff9807f,
0xb98dfb9c,0x401ffdc0,0x74001ffe,0x0bfe205f,0xf707fcc0,0x00027f4b,
0x3ff73fec,0x03ffb000,0x4401fff0,0x0ff704ff,0xf1009ff3,0x3ff880df,
0x102ff400,0x99999999,0x7fd40199,0xa8017f41,0x201ff27f,0x13f22ffd,
0x7001ff90,0x7cc005ff,0x037ec02f,0xf88cff88,0x001ff93f,0x76776dd4,
0x4c7fee7f,0xfb03dfdb,0x5ffb003f,0xb827fc40,0x00ffd87f,0x4405ff70,
0x7f4003ff,0x3fffe605,0x00ffffff,0x7fa87fea,0x8898aa88,0x201ff27f,
0x01fec7ff,0x7d401ff6,0x1bf2003f,0x4007fea0,0x36fffffb,0x3a2005ff,
0xffffffff,0x3ea3fee7,0xd85fffff,0xffc801ff,0x413fe201,0x2ffc47fb,
0x40bff100,0x74003ff8,0x3332205f,0x0ffecccc,0xfd87fea0,0x3ffff624,
0x3f21ff1f,0x20fff807,0x37f402ff,0x004ff980,0x3a007ff1,0x3faa005f,
0x4017fa4e,0xbabdfff9,0x3fee7ffd,0xfecbdffc,0x00ffec4f,0xf1007ff4,
0x51fee09f,0xfe8005ff,0x03ff100f,0x0005fd80,0xfa803ff2,0xfe87fe1f,
0xff0fffcf,0x3601ff23,0x007fe4ff,0x3e600dff,0x1ff7005f,0x003fee00,
0x001ff700,0x7ec07bfa,0x0bfffee7,0x7e41ffd1,0x3ff2600f,0x827fc405,
0x03fec7fb,0xb817fdc0,0xffa8007f,0x1ff90000,0xf88ffd40,0x2e1ff50f,
0x7e4bfa7f,0xefff9807,0x7fc00ffb,0x09ff3006,0x88013fa0,0x260003ff,
0xff7002ff,0xf73fec05,0x3fee03ff,0xfb03ff23,0x801fffff,0xff704ff8,
0x98005ff8,0x3ee624ff,0xff88004f,0x7e4001ae,0x47fea00f,0xc93f66fa,
0x7e4bfa6f,0xffff5007,0x7ff801ff,0x007ff300,0xc8003ff5,0x3fa0007f,
0x01bfa005,0x17fdcffb,0x7e49ff10,0x77ffec0f,0x4ff8800c,0x7fc4ff70,
0x4ff88005,0x005dfff7,0x3fffe440,0x401ff900,0x2bf71ffa,0x97f62ff8,
0x00ff91fe,0x7ffffec4,0x00ffd00c,0x3600bfea,0xff98006f,0x0ffb8002,
0xb017fe00,0x00ffdcff,0x0ffc97fe,0x44003fe4,0x4ff704ff,0xf0004ff8,
0x3bffeebf,0x7fdc0002,0x3ff2007f,0x647fea00,0x741ff54f,0x7e43fe3f,
0xffd88007,0xffd83fff,0x01ffc801,0x80017fc4,0x7c4005fe,0x3dffd33f,
0x6c04ff88,0x007fee7f,0x07fdcdff,0x22001bf2,0x4ff704ff,0xf0003ff9,
0x7fe4c4df,0xeff88005,0x3f20009a,0x47fea00f,0xf8ff73fd,0x7e43fe2f,
0xdbfb0007,0xffb87fff,0x807ff804,0x2a0007fc,0x3f6001ff,0xffffff56,
0x201ffcc1,0x07fee7fd,0x3fdcdff0,0x440037e4,0x4ff704ff,0xf0004ff9,
0x01fee0df,0x0003fea0,0xf5007fe4,0x7e4ff63f,0x7c47fe66,0x4001ff27,
0x3fff52fe,0x2e037fc4,0x4ff803ff,0x027fc000,0x9fd0ffa8,0xff897fa2,
0xf73fec04,0x27fc403f,0x0df90ff7,0x209ff100,0x13fe27fb,0x982ffc00,
0x7e4001ff,0x3ff20005,0x747fea00,0x7d4df92f,0x7e4bf50f,0x43ff0007,
0x7fec3ffb,0x01fff305,0x0000ffb8,0x22007fdc,0x41ff13ff,0x13fe26fb,
0x7fdcffd0,0x00ffe601,0x3fe20000,0xff8ff704,0x4ff88005,0x8007ff10,
0x320005fe,0x3fea00ff,0x9fee7fb1,0xc8bf67fd,0xff88007f,0xf113fea0,
0xf9537dff,0xbfd005ff,0x7ff10000,0x3ea6fd80,0x3fe3fd47,0xb9fff607,
0x3ff201ff,0x88000001,0x8ff704ff,0xfa8007fe,0x07ff102f,0x0005fe80,
0xfa803ff2,0x3ea7f91f,0xa9fffa9f,0x01ff20ff,0xffb1fe60,0xfffff305,
0x3005ffff,0x200003ff,0x3fea06fd,0xfa83fe61,0x6417fe46,0x3fee7fff,
0xa8bff301,0x0275c0cd,0xb827fc40,0x00ffe47f,0x4403ff20,0x7f4003ff,
0x3ff20005,0x647fea00,0x37fffe4f,0x642ffffb,0x7d40807f,0x403ffea6,
0xcffffeb8,0x00dfb001,0x417fcc00,0x7fc44ff8,0xff313fa4,0x9dfd515f,
0x4e7fdcff,0x41fff730,0x3e64fff8,0x4ccc03ff,0x999dffa9,0xff98ff71,
0x037fc004,0xe8007ff1,0x3f20005f,0x47fea00f,0x33f225fb,0xc82dfc88,
0x677cc07f,0xfffdefdc,0x1ff9003f,0x01ffc400,0x217fa000,0xdff906fc,
0xff701fff,0xf71dffff,0x7ffffdcf,0x4c1effff,0x3fea5fff,0x3ffe604f,
0xffffffff,0xfe87fb9f,0x0ffea007,0x4003ff88,0x320005fe,0x3fea00ff,
0x0000ff51,0xff980ff9,0xffffffff,0x3fea002f,0x03fee003,0x1ff70000,
0xf700ffd4,0x75c01dff,0xff70ceff,0x7fffed44,0x3ff603ef,0x807ffa22,
0xfffffff9,0xfb9fffff,0x003ffb87,0xff880ffd,0x02ff4003,0xa80ffb00,
0x03ff11ff,0x407fc800,0xfffeecb8,0xf88003ce,0x20ea0aff,0x000004ff,
0x4c0009ff,0x00022000,0x02600088,0x8000004c,0x1ffd07fb,0x802ffb80,
0x3e2005ff,0x3fa0004f,0xb0ffd406,0xfc80009f,0x02ff8007,0xffffb800,
0x3ea1fffe,0x9000001f,0x000000ff,0x00000000,0x70000000,0x17fe60ff,
0xd006ff88,0x3ee001ff,0xff30003f,0x21ffa809,0x20001ff9,0xff8007fc,
0xff700001,0x741bffff,0x2000005f,0x00002ff8,0x00000000,0x00000000,
0xff903fdc,0x007ff607,0x1016ffdc,0x6401ffd7,0x07ffdc41,0xfd07fea0,
0xc805403f,0x7fcc007f,0x2a200000,0x1aa81acb,0x55400000,0x00000001,
0x00000000,0x7dc00000,0x0bffa207,0xe8005ff9,0x3aa6ffff,0x7c04ffff,
0xffffeeff,0x77777543,0xeffd81ff,0x01ffdcbc,0xdddddff9,0x00132601,
0x00000000,0x00000000,0x00000000,0x00000000,0x3a203fdc,0x07ff71ff,
0xffff9100,0x017fffd4,0x7ffffff4,0xffffb81e,0xff901fff,0x019dffff,
0x3ffffff2,0x0000000f,0x00000000,0x00000000,0x00000000,0x70000000,
0x1df100ff,0x100013ea,0x04d44553,0x2aeea600,0x2aaaa601,0x54400aaa,
0xaa9801aa,0x0002aaaa,0x00000000,0x00000000,0x00000000,0x00000000,
0x401fee00,0x00000c09,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x5c000000,0x0000007f,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x0000154c,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x59751000,0x20000001,0xca800ccb,
0x0004c00c,0xfd930000,0x199999bd,0x01331000,0x59ddb750,0x73264cd9,
0x4c007bfb,0x654c0003,0x555400ac,0x2aaaaaaa,0x0acca880,0x5554c000,
0x332ea200,0x077ae02b,0x7fffffd4,0x027fc403,0x804ffb80,0x7fec07ff,
0x007fee02,0xfffffc80,0x01ffffff,0xfffff910,0xfffd105f,0x5cffffff,
0xfffff57f,0x1ff900bf,0xfffb1000,0x3a01dfff,0xffffffff,0xffb100ff,
0x8009ffff,0x2fffffeb,0xffffff70,0xfffa87ff,0xedfffa86,0x3e203fff,
0xff10004f,0x04ff980f,0xb81bffe6,0xf90001ff,0xffb313bf,0xf300199f,
0x5fffffff,0xabcfff98,0x3ee7ffdb,0xecbdffbf,0x7fe404ff,0x7ffcc000,
0x1efffeef,0xffffffe8,0xe880ffff,0xfffddfff,0x7ffd400d,0xb82fffff,
0xffdcefff,0x3ffee2ff,0x30fff40f,0x7fc40fff,0x3ff60004,0x807ff202,
0x2e05fff9,0xf88001ff,0x03ff906f,0x45efff40,0x77f40a98,0x7dcffb01,
0x7f442fff,0x03ff200f,0x0bfff880,0x3a1fff62,0xffd0005f,0x03ffd887,
0x06b7ffea,0x701dff30,0x7ffccfff,0x6c27fc46,0x9ff100ff,0x2ffcc000,
0xf700dff0,0x0ffdc03d,0x817fd400,0xf3004ff9,0x3fee00df,0xfb9ff602,
0x7ff701ff,0x0007fe40,0x7ec07ff9,0x002ff43f,0xe8827fcc,0x3dff107f,
0x01ffdc00,0x66d41ffd,0x641ffcc0,0x9ff100ff,0x0ffe8000,0x0003ffa8,
0x0007fee0,0x7c407fee,0x7ff7004f,0xb01bfa00,0x017fdcff,0x66649ff1,
0xccccffec,0x3fe20ccc,0x237fc406,0xfd8005fe,0x0bfee00f,0x90003ff6,
0x7fe401ff,0x0bff1000,0x7fc40dfd,0x7fdc0004,0x000ffd83,0x007fee00,
0x4c0bfee0,0xff9003ff,0x017fe001,0x0ffdcffb,0xfff97fe0,0xffffffff,
0x3fee0fff,0x21ffe803,0x7c4005fe,0x2ffe405f,0x2000ffe2,0x3fe03ffa,
0x07ffc006,0x7c407ff9,0x0f32e04f,0x3e237fc4,0x9999705f,0x7fdc0599,
0x07bfdb31,0x7ec1bfe2,0x0ffb001f,0xb013fe20,0x00ffdcff,0xcccc9bfe,
0xcccccffe,0x03ff20cc,0xfe8bfee0,0x17fcc005,0x46fffd88,0xf0000ffb,
0x7ff905ff,0x8dffb800,0x7c405ffd,0x1dff904f,0xf50ffec0,0x3fff605f,
0x3ee04fff,0xfffffc8f,0x5dff905f,0x009ffb53,0xf9803fec,0x73fec03f,
0x6ff803ff,0x4003ff20,0xff5007fd,0x4d577f47,0x417fd400,0x47fffffa,
0x2f2a67fd,0x3ffee009,0x0dffe98c,0xffffe800,0x4ff8803f,0x400effb8,
0x1ff64ffa,0xffccccb8,0x3f7fee04,0x2fffdadf,0xffffffd8,0x2aa604ff,
0xaabffeaa,0x3fe22aaa,0xf73fec04,0x04ff803f,0x74003ff2,0x9ff3006f,
0x7ffffff4,0x1ffb81cf,0x7e5fffe4,0x7fe77f47,0x203fffff,0xfffffff9,
0x3ff20003,0xff1001ef,0x00effb89,0x3fe2ffd0,0x13fe2004,0x41ffffb8,
0x7fd46ff9,0x01cdedba,0x7fffffec,0x7fffffff,0xfd013fe2,0x300ffdcf,
0x7fe407ff,0x00dff000,0xffe97fe6,0x2fffffff,0xfe887fe4,0x41ff71ef,
0xcdefffff,0x2604fffe,0x00efffff,0xfffffb00,0x7c44cb83,0x03bfee4f,
0xfbaffb80,0x3fe2001f,0x07ffee04,0x17f63ffc,0xeeeec800,0xeeeeefff,
0xb03ffc5e,0x0ffdcfff,0x6403ff90,0xdff000ff,0x013fe600,0x45fffb53,
0xfffa8ffb,0xff07fe45,0xffd3019f,0xfdffd303,0x57105fff,0xff99ffb0,
0x2237f41d,0x1dff74ff,0xedff8800,0x7fc4006f,0x80bfee04,0x3ffa0ffd,
0x3f600000,0x0bff2007,0xfb9ffff2,0x0bff301f,0xf000ffc8,0x3fe600ff,
0x97fee003,0x2fffdffb,0x2ffc7fc8,0xf713fea0,0x3ff665df,0x93ffe23f,
0x3ff65ffa,0xff117fe5,0x001dff79,0x0fffff60,0x409ff100,0x3f201ffb,
0x3bfff20f,0x00acccde,0x9801ff60,0xfea8afff,0x3fee7fde,0xfff7309c,
0x00ffc801,0x2a00ffd0,0x7fc002ff,0x3bfffea7,0xff8ffb01,0x266ff806,
0xffb80eff,0x1ffff70f,0xfe883ff6,0x444ff9cf,0x00fffeff,0x3fffea00,
0x27fc4000,0x6403ff70,0x3ff620ff,0xffffffff,0x00ffb004,0xffffffb8,
0x3ee7fc8e,0xffffffff,0x0ffc801e,0x003ffb00,0xd8003ff9,0x9fff30ff,
0x7f46fe80,0x327fe807,0x3ff201ff,0x21ffff73,0xfff986ff,0x7fc42ffd,
0x0005ffcc,0x40027ffc,0x3ee04ff8,0x83ff201f,0xdcccffe8,0x804ffffe,
0xeb8007fd,0xff90ceff,0x7fffffdc,0x3f2003ef,0x7ff7000f,0x000fff00,
0x37fc4ffd,0xfb13fe60,0x26ff801f,0x7fcc06fe,0xff8fffa4,0xfffff505,
0xfb4ff881,0x7fc0009f,0xff88000f,0x807fee04,0x3ffa0ffc,0x01ffea00,
0x88001ff6,0x3ee7fd80,0x0000989f,0x22005ff7,0x7fd406ff,0x2ffc4003,
0xfc807ff2,0x01ffdc0f,0x3fe29ff1,0x227fcc06,0x903ffc09,0xff109fff,
0x00fffa29,0x0013fee0,0xf7027fc4,0x87fe403f,0xfd803ff9,0x03fec00f,
0x73fec000,0x500003ff,0x7e400bff,0x0fff305f,0x42ffe880,0xff506ff9,
0x40dff10b,0x3ffa1ffd,0x00bff601,0x7cc0fff6,0x4ff885ff,0x800fffa2,
0x0000fff9,0x7dc09ff1,0x43ff201f,0xfe803ffb,0x007fd807,0x2e7fd800,
0x880001ff,0x998bdfff,0x77ffcc0b,0x2fffca9b,0x4cc4cd44,0xfb03fffc,
0xff7313df,0x3bff203f,0x713ff661,0x31137fff,0x3001dffb,0x73339fff,
0x889fffff,0x7ffcc4ff,0x1fffb802,0x13fe2000,0x3201ffb8,0x3fff30ff,
0x013ff220,0x00001ff6,0x1ffb9ff6,0xfff50000,0x101fffff,0xfffffffd,
0xffff305f,0x807fffff,0xfffffffd,0x7ffec01e,0xb05fffff,0xffffffff,
0x7dc001df,0xefffffff,0x3e22fffb,0x2fffa84f,0x3ffffff8,0x54cccc00,
0x21999dff,0x3f201ffb,0x3ffff60f,0x6fffedce,0x000ffb00,0x7dcffb00,
0x2600001f,0x0efffffd,0xdfffd910,0x3ffe601b,0x000cefff,0x19dfffd7,
0x3fffae00,0x7f4c02df,0x003effff,0xdffffb30,0x88fffd47,0xfff704ff,
0x1effff83,0x7fffcc00,0xffffffff,0x6403ff71,0x7ffe40ff,0x03efffff,
0x0001ff60,0xffb9ff60,0x31000001,0x00980013,0x00133310,0x80001300,
0x33100009,0x00880000,0x9027fc40,0x55543fff,0xfff30000,0xffffffff,
0x807fee3f,0x75300ffc,0xb0003559,0x300000ff,0x00554c55,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x3bd70000,0x79973100,
0x99953005,0x55550359,0x23555555,0xaa801aa8,0x665cc402,0xccb980ac,
0x555402bc,0xaaaaaaaa,0x02aaa1aa,0xaa86aa60,0x2aa6001a,0xaccb9881,
0x00155500,0xaa88554c,0x00aa6000,0xaaa80997,0xa88d5401,0xaaaaaaaa,
0x7d41aaaa,0x3f6206ff,0x2fffffff,0xfffffea8,0x7ff41fff,0x5fffffff,
0xfd007ff3,0x3fff620d,0x3a4fffff,0xefffffff,0xffffff02,0x9fffffff,
0x2202ffe4,0x3fee0fff,0x1fff1006,0xffffffc8,0x03ffc82f,0x7cc7ff60,
0x1bf2002f,0x103fff54,0xfe80dfff,0xffffff15,0x9fffffff,0x80ffffb8,
0xeeffffe9,0x7fdc3fff,0xffeeeeef,0x7fffff41,0xff35ffff,0x50dfd007,
0xfddfffff,0x777f4bff,0x82ffffed,0xffffffff,0x744fffff,0x3ff201ff,
0x802ffe83,0x3fa23ffc,0xffffeeff,0x0037fcc2,0x17fc4dff,0xea8bfb00,
0x2207ffff,0x3a02ffff,0xfffff15f,0xffffffff,0x86fff989,0x981dfff9,
0x07ffe63c,0x3e200098,0x007ff35f,0xfffb8dfd,0x2a4c981c,0x87ffc880,
0x99999999,0x540fff99,0xdff306ff,0x101bfea0,0xbff98dff,0x207ffdc0,
0xfa800fff,0x00ffe23f,0xffd35fd8,0x440fffdf,0x3a06ffff,0x2666665f,
0xffb99999,0xd80cda83,0x7ec004ff,0x4400003f,0x07ff35ff,0x7fc4dfd0,
0x2200002f,0xd8001fff,0x7ffb03ff,0x6c03ffd0,0x3ff203ff,0x3f601a82,
0x01ffe42f,0x3fe0ffec,0x653fa003,0x0fff2eff,0x0fff7fc4,0xe8005fe8,
0xffa8007f,0x07ff8005,0x5ff88000,0xfd007ff3,0x001ffe4d,0x00ffe400,
0x881bfea0,0x3fee0fff,0x07ffcc04,0x80037fcc,0x7fcc3ffa,0xf86ff805,
0x53fa004f,0x03ffc3f9,0x0bff7ff1,0xf50017fa,0xffd0007f,0x1ffd0003,
0xff880000,0xd007ff35,0x01bfe6df,0x03fe4000,0x003ffe20,0x3fe2bff7,
0x09ff9006,0x20003ffb,0xfff84ff9,0x20ffea00,0x3fa004fe,0x103ffc03,
0x03ff97ff,0xfe800bfd,0x0dff0007,0x037ff200,0x5ff88000,0xfd007ff3,
0x000ffead,0x002ff400,0x7400fff2,0x01ffdaff,0x4c1fff10,0x2a0005ff,
0x2ffc83ff,0x3a07ff20,0x7c1e445f,0x03ffc03f,0xbff17ff1,0x4c00bfd0,
0xf98003ff,0xff30005f,0x200005df,0x7ff35ff8,0x3f2dfd00,0x4400001f,
0x2a001ffd,0x3e6006ff,0x4004ffff,0x3ff64ffb,0x3ff20000,0x205ff981,
0x8bfb06ff,0x17fc0ffb,0xf881ffe0,0xe81ffb3f,0x3ff6005f,0x4ffa8000,
0x3ffea000,0x20000bef,0x7ff35ff8,0x3f6dfd00,0xaaaaa80f,0xfeccc82a,
0x3e2000df,0x7e4000ff,0xf8000fff,0x04ff98ff,0x81bfe200,0x7ff307ff,
0xffd1bf60,0x2017fc47,0x3fe207ff,0xfe89ff33,0x09ff3005,0x00ffee00,
0xffffb100,0xf100019f,0x00ffe6bf,0x43ff5bfa,0x6ffffff8,0xdffffff8,
0x0fff2001,0x13ffe200,0x6e7fd400,0x3a0000ff,0x3ff201ff,0x900ffc82,
0x2fffc4df,0xff803ff1,0xd8ffe207,0x017fa0ff,0x32007fec,0x0ffee1ef,
0x7fe44000,0x44003fff,0x07ff35ff,0x1ffadfd0,0x3fffffe2,0xfedccc86,
0xff9804ff,0xfff70006,0x3fa0001f,0x20003fff,0x7cc04ffd,0x206fe84f,
0x3fbee6fb,0x803ff10f,0x3fe207ff,0xfe8ffea3,0x04ff9805,0xf537ffd4,
0x7000009f,0x4007fffd,0x7ff35ff8,0x3f6dfd00,0x06ff800f,0x409ffb30,
0x8001ffe8,0x05fffff9,0x0dfff300,0x02ffe400,0x7fcc7ff8,0xfe9fee03,
0x1ff33ffa,0x2207ff80,0x87ff43ff,0xffd805fe,0x7fffd400,0x000bff31,
0x07ffe400,0xf35ff880,0x2dfd007f,0xff801ffc,0x07ff4006,0x0003ffc8,
0x5ffd3ffd,0x0bff6000,0x02ffe400,0x7dc3ff90,0x45fea00f,0xf36fd8ff,
0x40fff00f,0x7fd43ff8,0xf980bfd3,0xfffd004f,0x001bfe25,0x05ffb000,
0x7cd7fe20,0x76ff803f,0xdff007ff,0x81ffc800,0x70006ff9,0x3ffe6bff,
0x1ffc8000,0x05ffc800,0xfd27fd40,0xb8ffa80d,0xf51ff55f,0x40fff00f,
0x6fe83ff8,0xffd80bfd,0x3fff3000,0x00017ff4,0x007ff500,0x7fc53fea,
0xf34ff804,0x0dff00df,0xe81ffc80,0xf88001ff,0x13ff20ff,0x007ff200,
0x000bff90,0x1ffcdffe,0x3f63fe60,0x1feaffe2,0xf881ffe0,0xeaffb83f,
0x17fe605f,0x541fff00,0x000006ff,0x6400bfee,0x01bfe2ff,0x7fec7ff5,
0x0037fc02,0x3ff21ffa,0x7ffb0003,0x002fff88,0x9000ffe4,0x64000bff,
0x00ffb9ff,0x07fd7fcc,0x00df5df9,0x7fc40fff,0xbfdbff03,0x000ffec0,
0xffd0bff3,0x4000801d,0x0510fff8,0xfd83ffe2,0x83ffa02f,0x3e03fff9,
0x3fee006f,0x0037fcc4,0xf506ffa8,0xffc800df,0x0bff9001,0xecffa800,
0xdff8806f,0x7effd45f,0x207ff806,0xff703ff8,0x3fe60bff,0x3ffea005,
0xcffffa80,0x33fcaa9b,0x5333559d,0x7c47fff9,0xfffc9abe,0x4e7ffcc4,
0x83ffea88,0x9abdfffc,0x3516ffb9,0x3ffae663,0xccdffe86,0x3ccccccc,
0xe807ffe2,0x3f2004ff,0xfffb801f,0xcccccccc,0x7fffc03c,0xfff8803f,
0x5ffff83f,0x3f333322,0x12ccccff,0x3fe207ff,0x3ffb05ff,0xffffe880,
0x3fffa601,0x33ffffff,0xffffffff,0xff889fff,0x0dffffff,0xffffffb8,
0x3ea04fff,0xffffffff,0xfffff76f,0x981bffff,0xffffffff,0x366fffff,
0x7fcc04ff,0x3ff9001f,0xfffffb00,0xbfffffff,0x0ffffc80,0x01ffff00,
0x7ccbfff9,0xffffffff,0x7ff14fff,0x42fffe40,0xf8805ff9,0x36e004ef,
0x0bceffff,0xffffffb1,0x3aa039ff,0x403effff,0xdfffffd8,0xffec8801,
0xf70befff,0x3bdfffff,0x3ffffe60,0xffffffff,0x001fff56,0x3200dff9,
0xffd801ff,0xffffffff,0x7fd405ff,0x3ffe006f,0x49fff305,0xfffffff9,
0xf14fffff,0x7ffc407f,0x002ffd85,0x18800013,0x03333100,0x20003300,
0x4c000098,0x26662019,0x00000001,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x4c02aa88,0x02aa62aa,0x2a62aa98,
0xaaaaaaaa,0x510aaaaa,0x55555555,0x06aa2555,0x5544aaa0,0x4009aaaa,
0xaaaaaaaa,0x55551aaa,0x35555555,0x2aaaaaa2,0x06a60001,0x55530551,
0x00133555,0x00055550,0x202aaa60,0x9aaaaaa9,0x002aa201,0xabcba880,
0x05fff300,0xff937ff4,0x87ffe203,0xfffffffc,0x1fffffff,0xfffffff3,
0x3e6dffff,0x56fe803f,0xffffffff,0x3fff605d,0x5fffffff,0xfffffffd,
0x3fe6bfff,0x4effffff,0x262fe400,0xffffb87f,0x00cfffff,0x01ffff50,
0xffff9800,0xfffffb81,0x540befff,0xf50003ff,0x05ffffff,0x260bfff5,
0x3ff27fff,0xc85ffb01,0xffffffff,0x31ffffff,0xffffffff,0x3fe6dfff,
0xf56fe803,0xffffffff,0xffffb09f,0x2bffffff,0xfffffffe,0xfff35fff,
0xdfffffff,0x513f6005,0xffff70df,0x1dffffff,0x5ffffb00,0xfffe8000,
0xeeffb81f,0x0efffffe,0x2000ffea,0xfdcdfffc,0x7ffd44ff,0x7fffc80f,
0x3f207ff2,0x3ff2004f,0x1ffc8001,0xd007ff30,0x50ffeadf,0xfd83fff9,
0x01ffa007,0x4c43ff98,0xd802fffd,0x5c37dc3f,0x7f5441ff,0xfdff805f,
0x3ee0005f,0xfb81ffdf,0x6ffea81f,0x3000ffea,0xfe881bff,0x3fb7ea0f,
0x27fcff83,0x7fd41ffc,0x0ffe4005,0x80ffe400,0xfe803ff9,0x3607ff56,
0x03fec4ff,0x4c00ffd0,0x3fee03ff,0x642fe806,0x01ffb85f,0xfa80fff1,
0x0007fe9f,0x3ff79ff1,0x7403ff70,0x07ff52ff,0x100ffe80,0x66fdcbff,
0x7d77d46f,0xf987ff27,0x7e4000ef,0xffc8001f,0x007ff301,0x0ffeadfd,
0x3f62ffd4,0x01ffa007,0x6c03ff98,0x4ccc43ff,0xfd999bff,0x3ff7199d,
0xb007ff40,0x00bfeeff,0x3ee3ff60,0x01ffb81f,0x7fd53fe6,0x13fe2003,
0x3ee1ffb0,0x3f60ff9d,0xff90ffab,0x003ffa23,0x0007ff20,0x7cc07ff2,
0x56fe803f,0x3fe207ff,0xd003fec5,0x7fcc00ff,0x237fc403,0xfffffffb,
0x7fffffff,0x7f403ff7,0xf9affc06,0x7fd4005f,0xf703ff72,0xaffc403f,
0x2a003ffa,0x7fdc03ff,0x4ffabf91,0x0ffa8ff8,0x3ff63ff9,0x3ff90001,
0x03ff9000,0x3a00ffe6,0x207ff56f,0x3fec4ffa,0x400ffd00,0xfe803ff9,
0x7ff77547,0xeeffeeee,0x203ff75e,0x3ea04ff8,0x801ffa2f,0x3fee5ff8,
0x201ffb81,0x7ff55ff8,0x01ffd400,0xafe4bfea,0x26bf76fb,0x73ff90ff,
0x640005ff,0xfc8001ff,0x07ff301f,0x3feadfd0,0x41ffe883,0x3fa007fd,
0x0ffe6007,0x4c03ff60,0xb81ff87f,0xefe981ff,0xc83ff601,0xffb002ff,
0x5c0ffdc1,0x3fe601ff,0x4007ff54,0x7cc04ff9,0x3e2bf93f,0xff32fe9f,
0x3fefff23,0x7fe40004,0x1ffc8001,0xddddff30,0xdffddddd,0x2aab3fea,
0xfd83fffc,0xaaaaaaaf,0xdddffd0a,0x265ddddd,0xffc803ff,0xf88df501,
0xcdffb80f,0x00cffedc,0x3fe62ffc,0x42ffa804,0xffb81ffb,0x547ffa01,
0x7fc003ff,0x53fea00f,0x3f7f65fd,0x7e47fe67,0x0000ffff,0x4000ffe4,
0xff301ffc,0xffffffff,0x3feadfff,0x2effffff,0xffffffb0,0x3fa3ffff,
0xffffffff,0x007ff32f,0x3ee05ff7,0x5c07fcc5,0xffffffff,0x3fea01cf,
0x4407ff82,0x1ffb85fe,0xd981ffb8,0x0ffea4ff,0x35fff700,0x4ffff6a6,
0x3ffea4fd,0x7e4bfe64,0x0006ffcf,0x4000ffe4,0xff301ffc,0x9999999d,
0x3feadff9,0x00efffff,0x3ffffff6,0xffd1ffff,0x99999999,0x200ffe63,
0xbf902ffc,0xff707f98,0xfffd999b,0x03ff605f,0xfc80bff2,0x81ffb80f,
0xeeeeeffb,0x7fd45fff,0xfffd8003,0xffffffff,0x7fc49fd2,0x64bfe21f,
0x04ffc9ff,0x007ff200,0x4c07ff20,0x6fe803ff,0x7fd47ff5,0x00ffb00f,
0xf3003ff4,0x3ffb007f,0xdf513f60,0x2207fee0,0xff81fffb,0x209ff506,
0xff703ff9,0xfffff703,0xf505ffff,0x36a0007f,0xf9adffff,0xfd89fd1f,
0xfc97fc46,0x007ffd1f,0x0007ff20,0x7cc07ff2,0x56fe803f,0x5ffa87ff,
0x7400ffb0,0x3fe6007f,0x30ffe803,0xdddffddd,0x1dddffdd,0xfb807fee,
0x01ffd44f,0x1bfa0fff,0xfb81ffb8,0x01acccdf,0x0000ffea,0x743fee02,
0x220d444f,0x23ff93ff,0x8001fff8,0xc8001ffc,0x7ff301ff,0x3eadfd00,
0x81ffd83f,0x3fa007fd,0x0ffe6007,0x7d4dff10,0xffffffff,0x70ffffff,
0x7fcc03ff,0x7ffffec5,0x1fffffff,0x7fffffd4,0xffffffff,0x003ff75f,
0x0003ffa8,0x7fcffb00,0x27ff1004,0x3fea1ffc,0x7fe4000e,0x1ffc8001,
0xd007ff30,0x20ffeadf,0x7fd85ff9,0x801ffa00,0x7e403ff9,0x3e66624f,
0xcfd999af,0x07fee199,0x7fc5ff88,0xffffffff,0x7fd44fff,0xffffffff,
0xf75fffff,0xffa8003f,0xf9800003,0x800ffe3f,0x83ff93ff,0x64005ffc,
0xfc8001ff,0x07ff301f,0x3feadfd0,0xd83ffd03,0x1ffa007f,0x203ff980,
0xf100fff9,0x703fe81f,0x7fd403ff,0x3337fea3,0xffcccccc,0x55555447,
0xcffdaaaa,0x03ff72aa,0x003ffa80,0x237f4400,0x3fe003ff,0xfb03ff94,
0x7fe4009f,0x1ffc8001,0xd007ff30,0x40ffeadf,0x3fec5ffa,0x400ffd00,
0xff703ff9,0x07fcc07f,0x7fdc0bfe,0x43fff101,0xfd800ffd,0xffb8001f,
0x001ffb81,0x0001ffd4,0x443ffd50,0x3fe003ff,0xf103ff94,0x3f2005ff,
0x5554401f,0xaaabffda,0xd007ff32,0x80ffeadf,0x1ff61ffe,0xaaaffe80,
0xf31aaaaa,0xfdb955bf,0x7fa809ff,0xff701ff8,0xffb75557,0x006ff87f,
0x70009ff5,0x3ff703ff,0xadffa800,0x0aaaaaaa,0x3b72eaa2,0x7fc43fff,
0x653fe003,0xfff301ff,0x03ff9001,0xffffff98,0xf36fffff,0x2dfd007f,
0x3ea03ffa,0x801ff65f,0xfffffffe,0xfff35fff,0x5dffffff,0xf88df500,
0xffff700f,0x87ffffff,0xf1003ffa,0xff7000ff,0x003ff703,0xffffffa8,
0x222fffff,0xcfffffff,0x003ff980,0x0ffe57fe,0x900dff70,0xff9803ff,
0xffffffff,0x007ff36f,0x0ffeadfd,0x3f61fff0,0x3fffa007,0x5fffffff,
0xddfffff3,0x2fdc0039,0x7dc03fe6,0x2cefffff,0x4003ff90,0x5c001ffd,
0x1ffb81ff,0x7fffd400,0x2fffffff,0x2f37bfe2,0x00000001,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x80000000,0x7765c400,0x372a00bd,0x000ceefe,0x17bddb95,0x37bb6e20,
0x2000000b,0x32a00cc9,0xffdb7104,0x666447bd,0xcccccccc,0x6f5472a2,
0x930bbaa2,0x66440199,0x5cc5970c,0x4c982ded,0x20f7fb66,0xca800ccb,
0x0019930c,0x1bb02654,0x2fa80000,0xfffffd30,0xfff905ff,0x07ffffff,
0x7fffff4c,0xfffb85ff,0x002fffff,0xf7003fee,0x07fe403f,0x3fffffea,
0x3ffe66ff,0xffffffff,0x3feaff25,0xffff98ff,0xb027fec3,0xaa7f47ff,
0x44ffffff,0xffff97fb,0x4ffb8bff,0x3e67ff80,0x1bf6002f,0x000f7fdc,
0x40fffb80,0xca9bfff9,0x77e41fff,0xfffecabc,0xcefffa81,0x7e45fcca,
0xffdbacff,0x1ff7003f,0x201ffb80,0x3fe60ffc,0x5cbaaabf,0x33333322,
0x324ffecc,0xafeaefcf,0x445fdafe,0xffa82fff,0x7fdeff45,0x21fffdad,
0xacffcffb,0x3e22fffd,0x27fd406f,0x74007ff1,0x3ffee05f,0x7fe40002,
0x80efe80e,0x004c6ff9,0xff88bff7,0xff98603f,0x0fffa80e,0x400ffb80,
0x3f201ffb,0x003ff60f,0x237fcc00,0xff70fffc,0x261fea5f,0x3fe20fff,
0x7ffff40e,0xf72ffd41,0xff983fff,0xb00ffec6,0x04ff83ff,0xf5013fe0,
0xb10007ff,0xff501bff,0x00ffe405,0xfc8dff10,0x3ff6003f,0x013fee00,
0xf7003fee,0x07fe403f,0x20000dfd,0x7e40fff8,0xa97fee4f,0x5ffb80ff,
0x3fa07ff6,0x6ff880ff,0x7c07ffee,0x827fd47f,0x5fe86ff8,0x3fe22f4c,
0x4ffe9803,0x13ffa600,0x7cc07fd8,0x3fec003f,0xf8801bfe,0x2ffc404f,
0x2007fdc0,0x3f201ffb,0x00bff60f,0x20bff600,0x3fee0ffc,0x6c03fe61,
0x03ffbaff,0x7f403ffd,0xd80bfee7,0x507ff87f,0x8dfb05ff,0x3fe60ffc,
0xbffb1001,0x3fffa801,0x2202ff40,0x4ccc04ff,0x3fe67fd9,0x0bfe6004,
0x2e01ffa0,0x7fdc00ff,0xa83ff201,0x000adfff,0xf903ffc8,0x7cc7fb8d,
0xffff100f,0x037f40bf,0x1ffb8662,0xf903ff20,0x20ffb05f,0x1fffc7fb,
0xc8001ff5,0xff700eff,0xffff003f,0xffffffff,0xfffc88bf,0x2a7fffff,
0x3ee002ff,0x27fd801f,0xfeeeeeec,0x1eeeeeef,0x7e403ff7,0x7fffdc0f,
0xff5002df,0x2e37e40b,0x007fcc7f,0x401ffff5,0xfb8006fe,0x03ff201f,
0xff88bff1,0x261ff504,0x1fee6fff,0x0fffdc00,0x2003bff2,0xfffffff8,
0x25ffffff,0xeeeffffb,0x3fee7ffe,0x07fee002,0x7ec3ff20,0xffffffff,
0xf71fffff,0x07fe403f,0x7ffffe44,0x3bfe201e,0xf71bf200,0x200ff98f,
0x7405fff8,0xffb8006f,0x203ff201,0x3fee0ffd,0x323ff301,0xdf91ffcf,
0x7ffdc000,0x001fff90,0x4c002ffc,0xffb02eff,0x5001ffd4,0xffb005ff,
0x76666654,0xccccccff,0x6403ff70,0x7ed400ff,0xffd01fff,0x5c6fc803,
0x007fcc7f,0x407ffffd,0xfb8006fe,0x03ff201f,0x6fe8ffea,0x7f4bfe20,
0x0bfb4fd9,0x07ffea00,0x2003dff9,0xfc8006fe,0x99ff601f,0x3e6004ff,
0x05ff803f,0x5c00ffb8,0x3ff201ff,0xbffb1000,0x9007ff90,0x4c7fb8df,
0x7ff900ff,0x3fa03ffd,0x1ffb8006,0x7c03ff20,0x807ff36f,0xf76f9bff,
0x20013f6f,0xf700effc,0xffb005ff,0x07fe8003,0x3ffe3fec,0x0dff1000,
0xb803ffa8,0x7fd400ff,0x01fff303,0x7dc6ff80,0x8df9005f,0x07fcc7fb,
0xff8affd4,0x006fe80f,0x3201ffb8,0x3ff900ff,0xfe801ff9,0x3ff14fcc,
0x6c4007ff,0x7cc00dff,0x7fcc03ff,0x07ff4006,0x323ffec4,0xf9000dff,
0x3ffa207f,0x00ffb800,0x7cc2ffcc,0x26000fff,0x1bfe65ff,0x7dc6fc80,
0x2607fcc7,0x3fee0fff,0x8006fe86,0x3f201ffb,0xf9ff300f,0xdbfb00bf,
0x7fe7ec3f,0x9ffd1001,0x27ff4400,0x06bfff60,0x6ffe4753,0xfffff731,
0x337fffd0,0x7fc49b53,0xfea889df,0x1ff7003f,0x13bfff00,0x21ffdff7,
0x2a619bd8,0xffd13ffe,0x33333335,0x3ee37e43,0xd107fcc7,0x9ffb05ff,
0xb8006fe8,0x3ff201ff,0x3ffffa00,0x6fffb801,0x007fffd4,0x001fffcc,
0x806ffec4,0xffffffd8,0x3fe26fff,0xbcffffff,0xfffe987f,0x4c5fffff,
0xffffffff,0x3fee003f,0xffffb800,0x0ffabfff,0xfffffff1,0x7fdc9fff,
0xffffffff,0xb8df91ff,0xb07fcc7f,0x3fe209ff,0x001bfa2f,0xfc807fee,
0x3ffea00f,0x9fff5006,0x807fff88,0x0001fffb,0x500f7fe4,0xdffffffd,
0xffffd889,0x5c0ff71d,0x2dfffffe,0xfffffc88,0x7fdc001d,0xffff5000,
0x443fea5d,0xfffffffe,0x7fffdc2d,0xffffffff,0x7fb8df91,0xffb87fcc,
0x3ffea00e,0x7000dfd1,0x7fe403ff,0x01fffc00,0xd81fff98,0x7fdc06ff,
0xf700000e,0x331001ff,0x00066003,0x88002620,0x00000009,0x88001310,
0x00001999,0x00000000,0x00000000,0x00000000,0x001bb000,0x002f9800,
0x00000000,0x00000000,0x00000000,0x00000000,0x00005530,0x55555554,
0x01aaaaaa,0xcdc98000,0x06f64001,0xddddddd9,0x0000005d,0x00000001,
0x00000000,0x00000000,0xf3000000,0x6fec400d,0x02ffe800,0xffe8fffe,
0xfffffff3,0x27ffffff,0xffb84fff,0xffff701f,0x5cfba07f,0x3ffa6fff,
0x02ffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x400df300,
0x5c05fffb,0xfd00efff,0xf9ffec5f,0xffffffff,0xffd3ffff,0x07ffe607,
0xfffbfff3,0xfd2ff889,0x37721fff,0x01dddddd,0x00000000,0x00000000,
0x00000000,0x00000000,0x22fc4150,0xffff700a,0x3a7fe201,0x45ffd04f,
0x80002ffd,0x36203ffe,0x43ff21ff,0xf90dffe8,0x3ffff63f,0x00000000,
0x00000000,0x00000000,0x00000000,0x7c400000,0x7ec53e3f,0x3ffff104,
0x7fd53f20,0x361ffd81,0xd80002ff,0xdeb802ff,0xfe88bfd0,0x225fffff,
0x00002ffe,0x00000000,0x00000000,0x00000000,0x00000000,0xf8dffc88,
0x203fffac,0xf980fffb,0x3617f60f,0x07ff21ff,0x0bff6000,0xc81ee400,
0x980effff,0x00000000,0x00000000,0x00000000,0x00000000,0x44000000,
0x3ffffffc,0xb07ff980,0x42ff989f,0x3ff20ffc,0xfffffff1,0x27ffffff,
0x00001ffc,0x000aee60,0x00000000,0x00000000,0x00000000,0x00000000,
0x7cc00000,0x3ee005ff,0x80ffa84f,0x3ff20ffc,0x7fc3fee0,0xffffffff,
0x3ff93fff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x22000000,0x2efffffb,0xe837fdc0,0x49ff103f,0x50cc4198,0x55555555,
0x26235555,0x00000001,0x00000000,0x00000000,0x00000000,0x00000000,
0x88000000,0xbcf9effc,0x3fa62eff,0x6fb81eff,0x000ffdc0,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x27ff1000,
0x49fb14f8,0x3203eff9,0x02cc801c,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x10540000,0x0620b8bf,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x05f98000,0xddddd000,0xdddddddd,0x0007dddd,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00df3000,0x3ffffe00,
0xffffffff,0x0004ffff,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00013000,0x2aaaaaa0,0xaaaaaaaa,0x00001aaa,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,
};
static signed short stb__consolas_32_usascii_x[95]={ 0,6,4,0,1,0,0,7,4,4,2,1,3,4,
6,1,1,2,2,2,0,2,1,1,1,1,6,3,2,2,3,4,0,0,2,1,1,3,3,1,1,2,2,2,
3,0,1,0,2,0,2,1,1,1,0,0,0,0,1,5,2,4,1,0,0,2,2,2,1,1,0,1,2,2,
2,2,2,1,2,1,2,1,3,2,0,2,1,0,1,0,2,2,7,3,1, };
static signed short stb__consolas_32_usascii_y[95]={ 23,0,0,2,-1,0,1,0,-1,-1,0,6,17,13,
18,0,2,2,2,2,2,2,2,2,2,2,7,7,5,10,5,0,0,2,2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,2,27,0,7,0,7,0,7,0,7,0,0,
0,0,0,7,7,7,7,7,7,7,2,7,7,7,7,7,7,0,-3,0,11, };
static unsigned short stb__consolas_32_usascii_w[95]={ 0,5,10,17,15,18,18,4,10,9,14,16,9,10,
6,15,16,14,14,14,17,14,15,15,15,15,6,9,13,14,13,11,18,18,14,15,16,12,12,15,15,13,12,15,
13,17,15,17,14,18,15,15,16,15,18,17,18,18,15,9,14,9,15,18,11,14,14,13,15,15,17,16,14,14,
12,15,14,16,14,16,14,15,14,13,16,14,16,18,16,17,14,13,4,13,16, };
static unsigned short stb__consolas_32_usascii_h[95]={ 0,24,9,21,28,24,23,9,31,31,15,17,12,3,
6,27,22,21,21,22,21,22,22,21,22,21,17,22,19,9,19,24,30,21,21,22,21,21,21,22,21,21,22,21,
21,21,21,22,21,27,21,22,21,22,21,21,21,21,21,30,27,30,11,3,8,17,24,17,24,17,23,23,23,23,
30,23,23,16,16,17,23,23,16,17,22,17,16,16,16,23,16,30,33,30,7, };
static unsigned short stb__consolas_32_usascii_s[95]={ 241,223,178,141,107,173,1,204,6,17,137,
91,152,245,238,142,200,209,157,88,193,185,217,240,233,240,249,1,15,189,1,
229,78,174,159,11,124,111,98,72,66,52,43,19,226,1,224,167,211,123,82,
27,35,56,172,191,119,138,103,97,158,68,162,162,209,45,208,60,192,29,101,
84,69,54,55,20,241,152,201,74,135,119,186,123,150,108,216,233,169,36,137,
27,1,41,221, };
static unsigned short stb__consolas_32_usascii_t[95]={ 25,1,121,82,1,1,35,121,1,1,121,
104,121,121,121,1,35,59,59,59,82,35,35,59,35,82,35,59,104,121,104,
1,1,82,82,59,82,82,82,59,82,82,59,82,82,82,59,35,82,1,82,
59,82,59,59,59,59,59,59,1,1,1,121,133,121,104,1,104,1,104,35,
35,35,35,1,35,1,104,104,104,35,35,104,104,35,104,104,104,104,35,104,
1,1,1,121, };
static unsigned short stb__consolas_32_usascii_a[95]={ 282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,282,
282,282,282,282,282,282,282, };
// Call this function with
// font: NULL or array length
// data: NULL or specified size
// height: STB_FONT_consolas_32_usascii_BITMAP_HEIGHT or STB_FONT_consolas_32_usascii_BITMAP_HEIGHT_POW2
// return value: spacing between lines
static void stb_font_consolas_32_usascii(stb_fontchar font[STB_FONT_consolas_32_usascii_NUM_CHARS],
unsigned char data[STB_FONT_consolas_32_usascii_BITMAP_HEIGHT][STB_FONT_consolas_32_usascii_BITMAP_WIDTH],
int height)
{
int i,j;
if (data != 0) {
unsigned int *bits = stb__consolas_32_usascii_pixels;
unsigned int bitpack = *bits++, numbits = 32;
for (i=0; i < STB_FONT_consolas_32_usascii_BITMAP_WIDTH*height; ++i)
data[0][i] = 0; // zero entire bitmap
for (j=1; j < STB_FONT_consolas_32_usascii_BITMAP_HEIGHT-1; ++j) {
for (i=1; i < STB_FONT_consolas_32_usascii_BITMAP_WIDTH-1; ++i) {
unsigned int value;
if (numbits==0) bitpack = *bits++, numbits=32;
value = bitpack & 1;
bitpack >>= 1, --numbits;
if (value) {
if (numbits < 3) bitpack = *bits++, numbits = 32;
data[j][i] = (bitpack & 7) * 0x20 + 0x1f;
bitpack >>= 3, numbits -= 3;
} else {
data[j][i] = 0;
}
}
}
}
// build font description
if (font != 0) {
float recip_width = 1.0f / STB_FONT_consolas_32_usascii_BITMAP_WIDTH;
float recip_height = 1.0f / height;
for (i=0; i < STB_FONT_consolas_32_usascii_NUM_CHARS; ++i) {
// pad characters so they bilerp from empty space around each character
font[i].s0 = (stb__consolas_32_usascii_s[i]) * recip_width;
font[i].t0 = (stb__consolas_32_usascii_t[i]) * recip_height;
font[i].s1 = (stb__consolas_32_usascii_s[i] + stb__consolas_32_usascii_w[i]) * recip_width;
font[i].t1 = (stb__consolas_32_usascii_t[i] + stb__consolas_32_usascii_h[i]) * recip_height;
font[i].x0 = stb__consolas_32_usascii_x[i];
font[i].y0 = stb__consolas_32_usascii_y[i];
font[i].x1 = stb__consolas_32_usascii_x[i] + stb__consolas_32_usascii_w[i];
font[i].y1 = stb__consolas_32_usascii_y[i] + stb__consolas_32_usascii_h[i];
font[i].advance_int = (stb__consolas_32_usascii_a[i]+8)>>4;
font[i].s0f = (stb__consolas_32_usascii_s[i] - 0.5f) * recip_width;
font[i].t0f = (stb__consolas_32_usascii_t[i] - 0.5f) * recip_height;
font[i].s1f = (stb__consolas_32_usascii_s[i] + stb__consolas_32_usascii_w[i] + 0.5f) * recip_width;
font[i].t1f = (stb__consolas_32_usascii_t[i] + stb__consolas_32_usascii_h[i] + 0.5f) * recip_height;
font[i].x0f = stb__consolas_32_usascii_x[i] - 0.5f;
font[i].y0f = stb__consolas_32_usascii_y[i] - 0.5f;
font[i].x1f = stb__consolas_32_usascii_x[i] + stb__consolas_32_usascii_w[i] + 0.5f;
font[i].y1f = stb__consolas_32_usascii_y[i] + stb__consolas_32_usascii_h[i] + 0.5f;
font[i].advance = stb__consolas_32_usascii_a[i]/16.0f;
}
}
}
#ifndef STB_SOMEFONT_CREATE
#define STB_SOMEFONT_CREATE stb_font_consolas_32_usascii
#define STB_SOMEFONT_BITMAP_WIDTH STB_FONT_consolas_32_usascii_BITMAP_WIDTH
#define STB_SOMEFONT_BITMAP_HEIGHT STB_FONT_consolas_32_usascii_BITMAP_HEIGHT
#define STB_SOMEFONT_BITMAP_HEIGHT_POW2 STB_FONT_consolas_32_usascii_BITMAP_HEIGHT_POW2
#define STB_SOMEFONT_FIRST_CHAR STB_FONT_consolas_32_usascii_FIRST_CHAR
#define STB_SOMEFONT_NUM_CHARS STB_FONT_consolas_32_usascii_NUM_CHARS
#define STB_SOMEFONT_LINE_SPACING STB_FONT_consolas_32_usascii_LINE_SPACING
#endif
| 65 | 123 | 0.787792 | stetre |
348159ff209f445fb25dd54f0c7f876f36c2bb02 | 623 | cpp | C++ | QEdit/src/CFGReader.cpp | JannikNickel/QEdit | 8d09bcdc6fd4a8e2ecf969edb852de8a1c43dd7e | [
"MIT"
] | null | null | null | QEdit/src/CFGReader.cpp | JannikNickel/QEdit | 8d09bcdc6fd4a8e2ecf969edb852de8a1c43dd7e | [
"MIT"
] | null | null | null | QEdit/src/CFGReader.cpp | JannikNickel/QEdit | 8d09bcdc6fd4a8e2ecf969edb852de8a1c43dd7e | [
"MIT"
] | null | null | null | #include "CFGReader.h"
CFGReader::CFGReader(std::ifstream* file)
{
if(file == nullptr)
{
return;
}
std::string line;
while(getline(*file, line))
{
long index = line.find('=');
if(index != std::string::npos)
{
std::string attribute = line.substr(0, index);
std::string value = line.substr(index + 1, line.length() - (index + 1));
if(!pairs.contains(attribute))
{
pairs.insert(std::pair<std::string, std::string>(attribute, value));
}
}
}
file->close();
}
std::string CFGReader::Read(std::string attribute)
{
if(pairs.contains(attribute))
{
return pairs[attribute];
}
return "";
} | 18.878788 | 75 | 0.629213 | JannikNickel |
34851f8db2d45beda90ff00a004978998bc317ea | 2,863 | hpp | C++ | include/codegen/include/System/Threading/AbandonedMutexException.hpp | Futuremappermydud/Naluluna-Modifier-Quest | bfda34370764b275d90324b3879f1a429a10a873 | [
"MIT"
] | 1 | 2021-11-12T09:29:31.000Z | 2021-11-12T09:29:31.000Z | include/codegen/include/System/Threading/AbandonedMutexException.hpp | Futuremappermydud/Naluluna-Modifier-Quest | bfda34370764b275d90324b3879f1a429a10a873 | [
"MIT"
] | null | null | null | include/codegen/include/System/Threading/AbandonedMutexException.hpp | Futuremappermydud/Naluluna-Modifier-Quest | bfda34370764b275d90324b3879f1a429a10a873 | [
"MIT"
] | 2 | 2021-10-03T02:14:20.000Z | 2021-11-12T09:29:36.000Z | // Autogenerated from CppHeaderCreator on 7/27/2020 3:09:45 PM
// Created by Sc2ad
// =========================================================================
#pragma once
#pragma pack(push, 8)
// Begin includes
// Including type: System.SystemException
#include "System/SystemException.hpp"
#include "utils/il2cpp-utils.hpp"
// Completed includes
// Begin forward declares
// Forward declaring namespace: System::Threading
namespace System::Threading {
// Forward declaring type: Mutex
class Mutex;
// Forward declaring type: WaitHandle
class WaitHandle;
}
// Forward declaring namespace: System::Runtime::Serialization
namespace System::Runtime::Serialization {
// Forward declaring type: SerializationInfo
class SerializationInfo;
// Forward declaring type: StreamingContext
struct StreamingContext;
}
// Completed forward declares
// Type namespace: System.Threading
namespace System::Threading {
// Autogenerated type: System.Threading.AbandonedMutexException
class AbandonedMutexException : public System::SystemException {
public:
// private System.Int32 m_MutexIndex
// Offset: 0x88
int m_MutexIndex;
// private System.Threading.Mutex m_Mutex
// Offset: 0x90
System::Threading::Mutex* m_Mutex;
// public System.Void .ctor(System.Int32 location, System.Threading.WaitHandle handle)
// Offset: 0x13C0370
static AbandonedMutexException* New_ctor(int location, System::Threading::WaitHandle* handle);
// private System.Void SetupException(System.Int32 location, System.Threading.WaitHandle handle)
// Offset: 0x13C040C
void SetupException(int location, System::Threading::WaitHandle* handle);
// public System.Void .ctor()
// Offset: 0x13C02F4
// Implemented from: System.SystemException
// Base method: System.Void SystemException::.ctor()
// Base method: System.Void Exception::.ctor()
// Base method: System.Void Object::.ctor()
static AbandonedMutexException* New_ctor();
// protected System.Void .ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
// Offset: 0x13C0494
// Implemented from: System.SystemException
// Base method: System.Void SystemException::.ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
// Base method: System.Void Exception::.ctor(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
static AbandonedMutexException* New_ctor(System::Runtime::Serialization::SerializationInfo* info, System::Runtime::Serialization::StreamingContext context);
}; // System.Threading.AbandonedMutexException
}
DEFINE_IL2CPP_ARG_TYPE(System::Threading::AbandonedMutexException*, "System.Threading", "AbandonedMutexException");
#pragma pack(pop)
| 46.934426 | 162 | 0.747468 | Futuremappermydud |
348607e6739ad68f3ca92c3db60ded07b791a985 | 2,734 | cpp | C++ | src/scexpressionparser.cpp | BryanMorfe/SciCalc | 1602c159c48013beb8dee09ff648923f37c69e09 | [
"Apache-2.0"
] | 1 | 2020-12-13T16:56:32.000Z | 2020-12-13T16:56:32.000Z | src/scexpressionparser.cpp | BryanMorfe/SciCalc | 1602c159c48013beb8dee09ff648923f37c69e09 | [
"Apache-2.0"
] | null | null | null | src/scexpressionparser.cpp | BryanMorfe/SciCalc | 1602c159c48013beb8dee09ff648923f37c69e09 | [
"Apache-2.0"
] | null | null | null | #include "include/scexpressionparser.h"
#include <QStack>
#include <QDebug>
#include "include/sctokenoperations.h"
const SCExpressionParser SCExpressionParser::shared;
SCExpressionParser::SCExpressionParser() {}
SCParsedExpression SCExpressionParser::parse(const SCInExpression &exp)
{
QStack<SCToken> opStack;
SCParsedExpression parsedExp;
QList<SCToken> tokens = exp.getTokens();
QString partialToken = exp.getPartialToken();
if (!partialToken.isEmpty())
{
SCToken *tokenFromPartial = SCTokenOperations::token(exp.getPartialToken());
tokens.append(*tokenFromPartial);
delete tokenFromPartial;
}
for (auto token : tokens)
{
SCTokenTypes::TokenType type = token.getType();
if (type == SCTokenTypes::operand)
parsedExp.addToken(token);
else if (type == SCTokenTypes::lParenthesis)
opStack.push(token);
else if (type == SCTokenTypes::rParenthesis)
{
SCToken topOp(opStack.pop());
while (topOp.getType() != SCTokenTypes::lParenthesis)
{
parsedExp.addToken(topOp);
topOp = opStack.pop();
}
}
else if (type == SCTokenTypes::lBracket)
opStack.push(token);
else if (type == SCTokenTypes::rBracket)
{
SCToken topOp(opStack.pop());
while (topOp.getType() != SCTokenTypes::lBracket)
{
parsedExp.addToken(topOp);
topOp = opStack.pop();
}
}
else if (type == SCTokenTypes::unaryOperator || type == SCTokenTypes::binaryOperator)
{
SCOperator *newOp = static_cast<SCOperator *>(SCTokenOperations::token(token.getToken()));
bool shouldLook = true;
while (shouldLook && !opStack.isEmpty())
{
SCOperator *topOp = static_cast<SCOperator *>(SCTokenOperations::token(opStack.top().getToken()));
if ((topOp->getType() == binaryOperator || topOp->getType() == unaryOperator) &&
newOp->getPrecedence() <= topOp->getPrecedence())
{
opStack.pop();
parsedExp.addToken(*topOp);
delete topOp;
if (!opStack.isEmpty())
topOp = static_cast<SCOperator *>(SCTokenOperations::token(opStack.top().getToken()));
}
else
shouldLook = false;
}
opStack.push(*newOp);
delete newOp;
}
}
while (!opStack.isEmpty())
parsedExp.addToken(opStack.pop());
return parsedExp;
}
| 30.719101 | 114 | 0.557059 | BryanMorfe |
348bafc7e3314b9fc89b277c6e4b7730831638be | 1,001 | cpp | C++ | Server/Server/src/core/item/item.cpp | vahmoh26/Messenger | 3413b2eedbb5ed867928c2dfe17ad2c118712f6e | [
"MIT"
] | null | null | null | Server/Server/src/core/item/item.cpp | vahmoh26/Messenger | 3413b2eedbb5ed867928c2dfe17ad2c118712f6e | [
"MIT"
] | null | null | null | Server/Server/src/core/item/item.cpp | vahmoh26/Messenger | 3413b2eedbb5ed867928c2dfe17ad2c118712f6e | [
"MIT"
] | null | null | null | #include "item.h"
#include <sstream>
#include <boost/iostreams/stream.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
namespace server::core
{
using namespace boost;
item::item()
{
_type = type::unknown;
}
item::item(type type) : item()
{
set_type(type);
}
item::item(const protocol::package& package)
{
iostreams::array_source array_source(package.get_buffer().data(), package.get_buffer().size());
iostreams::stream<boost::iostreams::array_source> stream(array_source);
archive::text_iarchive text_iarchive(stream);
text_iarchive >> _type;
}
item::~item()
{
}
void item::set_type(type type)
{
_type = type;
}
void item::set_ip(const string& ip)
{
_ip = ip;
}
item::type item::get_type()
{
return _type;
}
const string& item::get_ip() const
{
return _ip;
}
bool item::valid()
{
return _type > type::unknown && _type <= type::logout;
}
protocol::package item::to_package()
{
return {};
}
} | 15.4 | 97 | 0.669331 | vahmoh26 |
348e1436324a8a5116a0d47c51a987498a14e5ac | 28,923 | hpp | C++ | src/attention_layer.hpp | isi-nlp/Zoph_RNN | 1e3e7da688cfcd0cdfb0c117cb84705399d1a967 | [
"MIT"
] | 199 | 2015-08-30T18:45:02.000Z | 2021-11-04T09:04:20.000Z | src/attention_layer.hpp | isi-nlp/Zoph_RNN | 1e3e7da688cfcd0cdfb0c117cb84705399d1a967 | [
"MIT"
] | 12 | 2016-03-07T04:37:23.000Z | 2019-04-10T08:14:06.000Z | src/attention_layer.hpp | isi-nlp/Zoph_RNN | 1e3e7da688cfcd0cdfb0c117cb84705399d1a967 | [
"MIT"
] | 72 | 2015-08-17T23:00:21.000Z | 2021-11-29T14:03:58.000Z |
template<typename dType>
attention_layer<dType>::attention_layer(int LSTM_size,int minibatch_size, int device_number, int D, int longest_sent,cublasHandle_t &handle,neuralMT_model<dType> *model,
bool feed_input,bool clip_gradients,dType norm_clip,bool dropout,dType dropout_rate,global_params ¶ms,bool bi_side)
{
this->handle = handle;
this->model = model;
this->device_number = device_number;
this->LSTM_size = LSTM_size;
this->minibatch_size = minibatch_size;
this->clip_gradients = clip_gradients;
this->norm_clip = norm_clip;
this->feed_input = feed_input;
this->longest_sent = longest_sent;
this->multi_attention_v2 = params.multi_src_params.multi_attention_v2;
cudaSetDevice(device_number);
layer_info.init(device_number,D);
dType *h_temp;
full_matrix_setup(&h_temp,&d_W_a,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_p,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_v_p,1,LSTM_size);
full_matrix_setup(&h_temp,&d_output_bias,LSTM_size,1);
full_matrix_setup(&h_temp,&d_W_c_p1,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_c_p2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_a_grad,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_p_grad,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_v_p_grad,1,LSTM_size);
full_matrix_setup(&h_temp,&d_output_bias_grad,LSTM_size,1);
full_matrix_setup(&h_temp,&d_W_c_p1_grad,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_c_p2_grad,LSTM_size,LSTM_size);
if(multi_attention_v2) {
full_matrix_setup(&h_temp,&d_W_a_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_p_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_v_p_v2,1,LSTM_size);
full_matrix_setup(&h_temp,&d_W_c_p3_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_a_grad_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_p_grad_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_v_p_grad_v2,1,LSTM_size);
full_matrix_setup(&h_temp,&d_W_c_p3_grad_v2,LSTM_size,LSTM_size);
}
//cudaMemset(d_output_bias,0,LSTM_size*sizeof(dType));
full_matrix_setup(&h_temp,&d_ERRnTOt_tan_htild,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_ERRnTOt_ct,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_ERRnTOt_ht_p1,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_ERRnTOt_as,2*D+1,minibatch_size);
full_matrix_setup(&h_temp,&d_ERRnTOt_pt,1,minibatch_size);
full_matrix_setup(&h_temp,&d_temp_1,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_h_t_Wa_factor,2*D+1,minibatch_size);
if(multi_attention_v2) {
full_matrix_setup(&h_temp,&d_ERRnTOt_ct_v2,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_ERRnTOt_as_v2,2*D+1,minibatch_size);
full_matrix_setup(&h_temp,&d_ERRnTOt_pt_v2,1,minibatch_size);
full_matrix_setup(&h_temp,&d_temp_1_v2,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_h_t_Wa_factor_v2,2*D+1,minibatch_size);
}
full_vector_setup_ones(&h_temp,&d_ones_minibatch,minibatch_size);
curandCreateGenerator(&rand_gen,CURAND_RNG_PSEUDO_DEFAULT);
boost::uniform_int<> unif_boost( 1, 1000000 );
curandSetPseudoRandomGeneratorSeed(rand_gen,BZ_CUDA::curr_seed);
BZ_CUDA::curr_seed+=7;
thrust_d_W_a_grad = thrust::device_pointer_cast(d_W_a_grad);
thrust_d_v_p_grad = thrust::device_pointer_cast(d_v_p_grad);
thrust_d_W_p_grad = thrust::device_pointer_cast(d_W_p_grad);
thrust_d_W_c_p1_grad = thrust::device_pointer_cast(d_W_c_p1_grad);
thrust_d_W_c_p2_grad = thrust::device_pointer_cast(d_W_c_p2_grad);
thrust_d_output_bias_grad = thrust::device_pointer_cast(d_output_bias_grad);
if(multi_attention_v2) {
thrust_d_W_a_grad_v2 = thrust::device_pointer_cast(d_W_a_grad_v2);
thrust_d_v_p_grad_v2 = thrust::device_pointer_cast(d_v_p_grad_v2);
thrust_d_W_p_grad_v2 = thrust::device_pointer_cast(d_W_p_grad_v2);
thrust_d_W_c_p3_grad_v2 = thrust::device_pointer_cast(d_W_c_p3_grad_v2);
}
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_result, 1*sizeof(dType)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_temp_result, NORM_THREADS*sizeof(dType)),"GPU memory allocation failed\n");
clear_gradients();
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_t_sum, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_s_sum, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
if(multi_attention_v2) {
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_t_sum_v2, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_s_sum_v2, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
}
for(int i=0; i<longest_sent; i++) {
nodes.push_back( attention_node<dType>(LSTM_size,minibatch_size,device_number,D,feed_input,this,i,dropout,dropout_rate,params.multi_src_params.multi_attention,multi_attention_v2) );
}
//now construct d_total_hs_mat
dType **h_total_hs_mat = (dType **)malloc(longest_sent*sizeof(dType*));
dType **h_total_hs_error = (dType **)malloc(longest_sent*sizeof(dType*));
dType **h_total_hs_mat_v2;
dType **h_total_hs_error_v2;
if(multi_attention_v2) {
h_total_hs_mat_v2 = (dType **)malloc(longest_sent*sizeof(dType*));
h_total_hs_error_v2 = (dType **)malloc(longest_sent*sizeof(dType*));
}
for(int i=0; i<longest_sent; i++) {
if(params.bi_dir_params.bi_dir) {
h_total_hs_mat[i] = model->bi_dir_source.d_final_mats[i];
h_total_hs_error[i] = model->bi_dir_source.d_final_errors[i];
}
else {
if(model->source_hidden_layers.size() == 0) {
if(!bi_side) {
h_total_hs_mat[i] = model->input_layer_source.nodes[i].d_h_t;
h_total_hs_error[i] = model->input_layer_source.nodes[i].d_d_ERRt_ht;
if(multi_attention_v2) {
h_total_hs_mat_v2[i] = model->input_layer_source_bi.nodes[i].d_h_t;
h_total_hs_error_v2[i] = model->input_layer_source_bi.nodes[i].d_d_ERRt_ht;
}
}
else {
h_total_hs_mat[i] = model->input_layer_source_bi.nodes[i].d_h_t;
h_total_hs_error[i] = model->input_layer_source_bi.nodes[i].d_d_ERRt_ht;
}
}
else {
if(!bi_side) {
h_total_hs_mat[i] = model->source_hidden_layers[model->source_hidden_layers.size()-1].nodes[i].d_h_t;
h_total_hs_error[i] = model->source_hidden_layers[model->source_hidden_layers.size()-1].nodes[i].d_d_ERRt_ht;
if(multi_attention_v2) {
h_total_hs_mat_v2[i] = model->source_hidden_layers_bi[model->source_hidden_layers.size()-1].nodes[i].d_h_t;
h_total_hs_error_v2[i] = model->source_hidden_layers_bi[model->source_hidden_layers.size()-1].nodes[i].d_d_ERRt_ht;
}
}
else {
h_total_hs_mat[i] = model->source_hidden_layers_bi[model->source_hidden_layers.size()-1].nodes[i].d_h_t;
h_total_hs_error[i] = model->source_hidden_layers_bi[model->source_hidden_layers.size()-1].nodes[i].d_d_ERRt_ht;
}
}
}
}
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_total_hs_mat, longest_sent*sizeof(dType*)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_total_hs_error, longest_sent*sizeof(dType*)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_batch_info, 2*minibatch_size*sizeof(int)),"GPU memory allocation failed\n");
cudaMemcpy(d_total_hs_mat,h_total_hs_mat,longest_sent*sizeof(dType*),cudaMemcpyHostToDevice);
cudaMemcpy(d_total_hs_error,h_total_hs_error,longest_sent*sizeof(dType*),cudaMemcpyHostToDevice);
free(h_total_hs_mat);
if(multi_attention_v2) {
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_total_hs_mat_v2, longest_sent*sizeof(dType*)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_total_hs_error_v2, longest_sent*sizeof(dType*)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_batch_info_v2, 2*minibatch_size*sizeof(int)),"GPU memory allocation failed\n");
cudaMemcpy(d_total_hs_mat_v2,h_total_hs_mat_v2,longest_sent*sizeof(dType*),cudaMemcpyHostToDevice);
cudaMemcpy(d_total_hs_error_v2,h_total_hs_error_v2,longest_sent*sizeof(dType*),cudaMemcpyHostToDevice);
free(h_total_hs_mat_v2);
}
}
template<typename dType>
void attention_layer<dType>::init_att_decoder(int LSTM_size,int beam_size, int device_number, int D, int longest_sent,cublasHandle_t &handle,neuralMT_model<dType> *model,
bool feed_input,std::vector<dType*> &top_source_states,bool multi_attention_v2,std::vector<dType*> &top_source_states_v2)
{
this->handle = handle;
this->model = model;
this->device_number = device_number;
this->LSTM_size = LSTM_size;
this->minibatch_size = beam_size;
this->longest_sent = longest_sent;
this->multi_attention_v2 = multi_attention_v2;
cudaSetDevice(device_number);
layer_info.init(device_number,D);
dType *h_temp;
full_matrix_setup(&h_temp,&d_W_a,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_p,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_v_p,1,LSTM_size);
full_matrix_setup(&h_temp,&d_output_bias,LSTM_size,1);
full_matrix_setup(&h_temp,&d_W_c_p1,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_c_p2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_temp_1,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_h_t_Wa_factor,2*D+1,minibatch_size);
full_vector_setup_ones(&h_temp,&d_ones_minibatch,minibatch_size);
if(multi_attention_v2) {
full_matrix_setup(&h_temp,&d_W_a_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_W_p_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_v_p_v2,1,LSTM_size);
full_matrix_setup(&h_temp,&d_W_c_p3_v2,LSTM_size,LSTM_size);
full_matrix_setup(&h_temp,&d_temp_1_v2,LSTM_size,minibatch_size);
full_matrix_setup(&h_temp,&d_h_t_Wa_factor_v2,2*D+1,minibatch_size);
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_t_sum_v2, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_s_sum_v2, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
}
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_t_sum, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_h_s_sum, LSTM_size*minibatch_size*sizeof(dType)),"GPU memory allocation failed\n");
for(int i=0; i<1; i++) {
nodes.push_back( attention_node<dType>(LSTM_size,minibatch_size,device_number,D,false,this,i,false,1,false,multi_attention_v2) );
}
//now construct d_total_hs_mat
dType **h_total_hs_mat = (dType **)malloc(longest_sent*sizeof(dType*));
for(int i=0; i<longest_sent; i++) {
h_total_hs_mat[i] = top_source_states[i];
//cudaMemset(top_source_states[i],0,LSTM_size*minibatch_size*sizeof(dType));
}
dType **h_total_hs_mat_v2;
if(multi_attention_v2) {
h_total_hs_mat_v2 = (dType **)malloc(longest_sent*sizeof(dType*));
for(int i=0; i<longest_sent; i++) {
h_total_hs_mat_v2[i] = top_source_states_v2[i];
}
}
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_ones_minibatch_int,minibatch_size*sizeof(int)),"GPU memory allocation failed\n");
thrust::device_ptr<int> ones_ptr = thrust::device_pointer_cast(d_ones_minibatch_int);
for(int i=0; i<minibatch_size; i++) {
ones_ptr[i] = 1;
}
nodes[0].d_indicies_mask = &d_ones_minibatch_int;
//std::cout << "MINIBATCH SIZE IN INITIALIZATION: " << minibatch_size << "\n";
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_total_hs_mat, longest_sent*sizeof(dType*)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_batch_info, 2*minibatch_size*sizeof(int)),"GPU memory allocation failed\n");
cudaMemcpy(d_total_hs_mat,h_total_hs_mat,longest_sent*sizeof(dType*),cudaMemcpyHostToDevice);
if(multi_attention_v2) {
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_total_hs_mat_v2, longest_sent*sizeof(dType*)),"GPU memory allocation failed\n");
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_batch_info_v2, 2*minibatch_size*sizeof(int)),"GPU memory allocation failed\n");
cudaMemcpy(d_total_hs_mat_v2,h_total_hs_mat_v2,longest_sent*sizeof(dType*),cudaMemcpyHostToDevice);
free(h_total_hs_mat_v2);
}
if(BZ_CUDA::unk_replacement) {
//std::cout << "UNK REPLACEMENT SET TO TRUE\n";
CUDA_ERROR_WRAPPER(cudaMalloc((void**)&d_viterbi_alignments, minibatch_size*sizeof(int)),"GPU memory allocation failed\n");
}
free(h_total_hs_mat);
}
template<typename dType>
void attention_layer<dType>::clear_gradients() {
cudaSetDevice(device_number);
cudaMemsetAsync(d_W_a_grad,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_W_p_grad,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_v_p_grad,0,LSTM_size*1*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_output_bias_grad,0,LSTM_size*1*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_W_c_p1_grad,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_W_c_p2_grad,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
if(multi_attention_v2) {
cudaMemsetAsync(d_W_a_grad_v2,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_W_p_grad_v2,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_v_p_grad_v2,0,LSTM_size*1*sizeof(dType),layer_info.s0);
cudaMemsetAsync(d_W_c_p3_grad_v2,0,LSTM_size*LSTM_size*sizeof(dType),layer_info.s0);
}
devSynchAll();
}
template<typename dType>
void attention_layer<dType>::clip_gradients_func() {
norm_clip_GPU_v2(thrust_d_W_a_grad,d_W_a_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_W_p_grad,d_W_p_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_v_p_grad,d_v_p_grad,norm_clip,LSTM_size*1,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_output_bias_grad,d_output_bias_grad,norm_clip,LSTM_size*1,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_W_c_p1_grad,d_W_c_p1_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_W_c_p2_grad,d_W_c_p2_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
if(multi_attention_v2) {
norm_clip_GPU_v2(thrust_d_W_a_grad_v2,d_W_a_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_W_p_grad_v2,d_W_p_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_v_p_grad_v2,d_v_p_grad_v2,norm_clip,LSTM_size*1,d_temp_result,d_result);
norm_clip_GPU_v2(thrust_d_W_c_p3_grad_v2,d_W_c_p3_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
}
}
template<typename dType>
void attention_layer<dType>::scale_gradients() {
scale_functor unary_op(minibatch_size);
thrust::for_each(thrust_d_W_a_grad,thrust_d_W_a_grad + LSTM_size*LSTM_size,unary_op);
thrust::for_each(thrust_d_W_p_grad,thrust_d_W_p_grad + LSTM_size*LSTM_size,unary_op);
thrust::for_each(thrust_d_v_p_grad,thrust_d_v_p_grad + LSTM_size*1,unary_op);
thrust::for_each(thrust_d_output_bias_grad,thrust_d_output_bias_grad + LSTM_size*1,unary_op);
thrust::for_each(thrust_d_W_c_p1_grad,thrust_d_W_c_p1_grad + LSTM_size*LSTM_size,unary_op);
thrust::for_each(thrust_d_W_c_p2_grad,thrust_d_W_c_p2_grad + LSTM_size*LSTM_size,unary_op);
if(multi_attention_v2) {
thrust::for_each(thrust_d_W_a_grad_v2,thrust_d_W_a_grad_v2 + LSTM_size*LSTM_size,unary_op);
thrust::for_each(thrust_d_W_p_grad_v2,thrust_d_W_p_grad_v2 + LSTM_size*LSTM_size,unary_op);
thrust::for_each(thrust_d_v_p_grad_v2,thrust_d_v_p_grad_v2 + LSTM_size*1,unary_op);
thrust::for_each(thrust_d_W_c_p3_grad_v2,thrust_d_W_c_p3_grad_v2 + LSTM_size*LSTM_size,unary_op);
}
}
template<typename dType>
void attention_layer<dType>::update_params() {
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_a,d_W_a_grad,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_p,d_W_p_grad,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
gradient_update_mats<<<std::min(256,(LSTM_size*1 + 256 - 1)/256),256,0,layer_info.s0>>>(d_v_p,d_v_p_grad,model->input_layer_target.learning_rate,LSTM_size*1);
gradient_update_mats<<<std::min(256,(LSTM_size*1 + 256 - 1)/256),256,0,layer_info.s0>>>(d_output_bias,d_output_bias_grad,model->input_layer_target.learning_rate,LSTM_size*1);
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_c_p1,d_W_c_p1_grad,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_c_p2,d_W_c_p2_grad,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
if(multi_attention_v2) {
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_a_v2,d_W_a_grad_v2,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_p_v2,d_W_p_grad_v2,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
gradient_update_mats<<<std::min(256,(LSTM_size*1 + 256 - 1)/256),256,0,layer_info.s0>>>(d_v_p_v2,d_v_p_grad_v2,model->input_layer_target.learning_rate,LSTM_size*1);
gradient_update_mats<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_c_p3_v2,d_W_c_p3_grad_v2,model->input_layer_target.learning_rate,LSTM_size*LSTM_size);
}
}
template<typename dType>
void attention_layer<dType>::norm_p1() {
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING ATTENTION GRADIENTS -----------------------\n";
// }
norm_clip_GPU_v2_p1(thrust_d_W_a_grad,d_W_a_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_a_grad -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_W_p_grad,d_W_p_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_p_grad -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_v_p_grad,d_v_p_grad,norm_clip,LSTM_size*1,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_v_p_grad -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_output_bias_grad,d_output_bias_grad,norm_clip,LSTM_size*1,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_output_bias_grad -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_W_c_p1_grad,d_W_c_p1_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_c_p1_grad -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_W_c_p2_grad,d_W_c_p2_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_c_p2_grad -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
if(multi_attention_v2) {
norm_clip_GPU_v2_p1(thrust_d_W_a_grad_v2,d_W_a_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_a_grad_v2 -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_W_p_grad_v2,d_W_p_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_p_grad_v2 -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_v_p_grad_v2,d_v_p_grad_v2,norm_clip,LSTM_size*1,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_v_p_grad_v2 -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
norm_clip_GPU_v2_p1(thrust_d_W_c_p3_grad_v2,d_W_c_p3_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
// if(BZ_CUDA::print_norms) {
// HPC_output << "----------------------- PRINTING GRAD NORM FOR d_W_c_p3_grad_v2 -----------------------\n";
// HPC_output << BZ_CUDA::recent_sum << "\n";
// }
}
}
template<typename dType>
void attention_layer<dType>::norm_p2() {
norm_clip_GPU_v2_p2(thrust_d_W_a_grad,d_W_a_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_W_p_grad,d_W_p_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_v_p_grad,d_v_p_grad,norm_clip,LSTM_size*1,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_output_bias_grad,d_output_bias_grad,norm_clip,LSTM_size*1,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_W_c_p1_grad,d_W_c_p1_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_W_c_p2_grad,d_W_c_p2_grad,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
if(multi_attention_v2) {
norm_clip_GPU_v2_p2(thrust_d_W_a_grad_v2,d_W_a_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_W_p_grad_v2,d_W_p_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_v_p_grad_v2,d_v_p_grad_v2,norm_clip,LSTM_size*1,d_temp_result,d_result);
norm_clip_GPU_v2_p2(thrust_d_W_c_p3_grad_v2,d_W_c_p3_grad_v2,norm_clip,LSTM_size*LSTM_size,d_temp_result,d_result);
}
}
template<typename dType>
void attention_layer<dType>::clip_indiv() {
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_a_grad,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_p_grad,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
clip_mat_kernel<<<std::min(256,(LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_v_p_grad,BZ_CUDA::ind_norm_clip_thres,LSTM_size*1);
clip_mat_kernel<<<std::min(256,(LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_output_bias_grad,BZ_CUDA::ind_norm_clip_thres,LSTM_size*1);
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_c_p1_grad,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_c_p2_grad,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
if(multi_attention_v2) {
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_a_grad_v2,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_p_grad_v2,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
clip_mat_kernel<<<std::min(256,(LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_v_p_grad_v2,BZ_CUDA::ind_norm_clip_thres,LSTM_size*1);
clip_mat_kernel<<<std::min(256,(LSTM_size*LSTM_size + 256 - 1)/256),256,0,layer_info.s0>>>(d_W_c_p3_grad_v2,BZ_CUDA::ind_norm_clip_thres,LSTM_size*LSTM_size);
}
devSynchAll();
}
template<typename dType>
void attention_layer<dType>::dump_weights(std::ofstream &output) {
write_matrix_GPU(d_W_a,LSTM_size,LSTM_size,output);
write_matrix_GPU(d_W_p,LSTM_size,LSTM_size,output);
write_matrix_GPU(d_v_p,LSTM_size,1,output);
write_matrix_GPU(d_output_bias,LSTM_size,1,output);
write_matrix_GPU(d_W_c_p1,LSTM_size,LSTM_size,output);
write_matrix_GPU(d_W_c_p2,LSTM_size,LSTM_size,output);
if(multi_attention_v2) {
write_matrix_GPU(d_W_a_v2,LSTM_size,LSTM_size,output);
write_matrix_GPU(d_W_p_v2,LSTM_size,LSTM_size,output);
write_matrix_GPU(d_v_p_v2,LSTM_size,1,output);
write_matrix_GPU(d_W_c_p3_v2,LSTM_size,LSTM_size,output);
}
}
template<typename dType>
void attention_layer<dType>::load_weights(std::ifstream &input) {
read_matrix_GPU(d_W_a,LSTM_size,LSTM_size,input);
read_matrix_GPU(d_W_p,LSTM_size,LSTM_size,input);
read_matrix_GPU(d_v_p,LSTM_size,1,input);
read_matrix_GPU(d_output_bias,LSTM_size,1,input);
read_matrix_GPU(d_W_c_p1,LSTM_size,LSTM_size,input);
read_matrix_GPU(d_W_c_p2,LSTM_size,LSTM_size,input);
if(multi_attention_v2) {
read_matrix_GPU(d_W_a_v2,LSTM_size,LSTM_size,input);
read_matrix_GPU(d_W_p_v2,LSTM_size,LSTM_size,input);
read_matrix_GPU(d_v_p_v2,LSTM_size,1,input);
read_matrix_GPU(d_W_c_p3_v2,LSTM_size,LSTM_size,input);
}
}
template<typename dType>
void attention_layer<dType>::check_gradients(dType epsilon) {
std::cout << "--------------------GRADIENT CHECKING FOR ATTENTION LAYER GPU-------------------------\n";
std::cout << "GRADIENT CHECKING FOR W_c_p1\n";
check_gradient_GPU(epsilon,d_W_c_p1,d_W_c_p1_grad,LSTM_size,LSTM_size);
std::cout << "GRADIENT CHECKING FOR W_c_p2\n";
check_gradient_GPU(epsilon,d_W_c_p2,d_W_c_p2_grad,LSTM_size,LSTM_size);
std::cout << "GRADIENT CHECKING FOR OUTPUT BIAS\n";
check_gradient_GPU(epsilon,d_output_bias,d_output_bias_grad,LSTM_size,1);
std::cout << "GRADIENT CHECKING FOR v_p\n";
check_gradient_GPU(epsilon,d_v_p,d_v_p_grad,LSTM_size,1);
std::cout << "GRADIENT CHECKING FOR W_p\n";
check_gradient_GPU(epsilon,d_W_p,d_W_p_grad,LSTM_size,LSTM_size);
std::cout << "GRADIENT CHECKING FOR W_a\n";
check_gradient_GPU(epsilon,d_W_a,d_W_a_grad,LSTM_size,LSTM_size);
if(multi_attention_v2) {
std::cout << "GRADIENT CHECKING FOR v_p_v2\n";
check_gradient_GPU(epsilon,d_v_p_v2,d_v_p_grad_v2,LSTM_size,1);
std::cout << "GRADIENT CHECKING FOR W_p_v2\n";
check_gradient_GPU(epsilon,d_W_p_v2,d_W_p_grad_v2,LSTM_size,LSTM_size);
std::cout << "GRADIENT CHECKING FOR W_a_v2\n";
check_gradient_GPU(epsilon,d_W_a_v2,d_W_a_grad_v2,LSTM_size,LSTM_size);
std::cout << "GRADIENT CHECKING FOR W_c_p3_v2\n";
check_gradient_GPU(epsilon,d_W_c_p3_v2,d_W_c_p3_grad_v2,LSTM_size,LSTM_size);
}
}
template<typename dType>
void attention_layer<dType>::check_gradient_GPU(dType epsilon,dType *d_mat,dType *d_grad,int rows,int cols) {
cudaSetDevice(device_number);
thrust::device_ptr<dType> d_thrust_mat = thrust::device_pointer_cast(d_mat);
thrust::device_ptr<dType> d_thrust_grad = thrust::device_pointer_cast(d_grad);
for(int i=0; i<rows; i++) {
for(int j=0; j<cols; j++) {
dType loss =0;
d_thrust_mat[IDX2C(i,j,rows)]+= epsilon;
loss = model->getError(true);
cudaSetDevice(device_number);
cudaDeviceSynchronize();
d_thrust_mat[IDX2C(i,j,rows)]+= -2*epsilon;
loss -=model->getError(true);
cudaSetDevice(device_number);
cudaDeviceSynchronize();
d_thrust_mat[IDX2C(i,j,rows)]+= epsilon;
//std::cout << "My gradient: " << d_thrust_grad[IDX2C(i,j,rows)] << "\n";
std::cout << "Gradient difference: " << std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon)) << " my gradient: " << d_thrust_grad[IDX2C(i,j,rows)] <<"\n";
if( (std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon))) > 1/(dType)1000.0 || (std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon))/(std::abs(d_thrust_grad[IDX2C(i,j,rows)]) + std::abs(loss/(2*epsilon)))) > 1/1000.0 ) {
std::cout << "Gradient for gradient check: " << loss/(2*epsilon) << "\n";
std::cout << "My gradient: " << d_thrust_grad[IDX2C(i,j,rows)] << "\n";
std::cout << "Gradient difference: " << std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon)) << "\n";
std::cout << "Gradient difference (Equation 2): " << std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon))/(std::abs(d_thrust_grad[IDX2C(i,j,rows)]) + std::abs(loss/(2*epsilon)) ) << "\n\n";
}
else if(d_thrust_grad[IDX2C(i,j,rows)]==0 ||loss/(2*epsilon) ==0) {
std::cout << "ZERO GRADIENTS\n";
std::cout << "Gradient for gradient check: " << loss/(2*epsilon) << "\n";
std::cout << "My gradient: " << d_thrust_grad[IDX2C(i,j,rows)] << "\n";
std::cout << "Gradient difference: " << std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon)) << "\n";
std::cout << "Gradient difference (Equation 2): " << std::abs(d_thrust_grad[IDX2C(i,j,rows)] - loss/(2*epsilon))/(std::abs(d_thrust_grad[IDX2C(i,j,rows)]) + std::abs(loss/(2*epsilon)) ) << "\n\n";
}
}
}
}
template<typename dType>
void attention_layer<dType>::prep_minibatch_info(int *h_batch_info) {
cudaSetDevice(device_number);
cudaMemcpy(d_batch_info,h_batch_info,2*minibatch_size*sizeof(int),cudaMemcpyHostToDevice);
}
template<typename dType>
void attention_layer<dType>::prep_minibatch_info_v2(int *h_batch_info_v2) {
cudaSetDevice(device_number);
cudaMemcpy(d_batch_info_v2,h_batch_info_v2,2*minibatch_size*sizeof(int),cudaMemcpyHostToDevice);
}
| 48.856419 | 240 | 0.763959 | isi-nlp |
3492168940e6c054403efb893ccd2ae5e67eee86 | 271 | cpp | C++ | Olamundo/02/freq03/main.cpp | tosantos1/LIP | 7dbc045afa02729f4e2f2f1d3b29baebf5be72ad | [
"MIT"
] | null | null | null | Olamundo/02/freq03/main.cpp | tosantos1/LIP | 7dbc045afa02729f4e2f2f1d3b29baebf5be72ad | [
"MIT"
] | null | null | null | Olamundo/02/freq03/main.cpp | tosantos1/LIP | 7dbc045afa02729f4e2f2f1d3b29baebf5be72ad | [
"MIT"
] | null | null | null | #include <iostream>
using namespace std;
int opa(int a);
int main()
{
int n;
cin >> n;
cout << opa(n);
return 0;
}
int opa(int n){
if(n == 1 || n == 0){
return n;
}else{
return opa(n - 1) + opa (n-2);
}
return 0;
}
| 10.037037 | 38 | 0.450185 | tosantos1 |
34946d44745756e2ec3f3c918ad22612c3b6c769 | 1,568 | cpp | C++ | training/Codeforces/765E.cpp | voleking/ICPC | fc2cf408fa2607ad29b01eb00a1a212e6d0860a5 | [
"MIT"
] | 68 | 2017-10-08T04:44:23.000Z | 2019-08-06T20:15:02.000Z | training/Codeforces/765E.cpp | voleking/ICPC | fc2cf408fa2607ad29b01eb00a1a212e6d0860a5 | [
"MIT"
] | null | null | null | training/Codeforces/765E.cpp | voleking/ICPC | fc2cf408fa2607ad29b01eb00a1a212e6d0860a5 | [
"MIT"
] | 18 | 2017-05-31T02:52:23.000Z | 2019-07-05T09:18:34.000Z | // written at 10:47 on 15 Feb 2017
#include <bits/stdc++.h>
#define IOS std::ios::sync_with_stdio(false); std::cin.tie(nullptr); std::cout.tie(nullptr);
// #define __DEBUG__
#ifdef __DEBUG__
#define DEBUG(...) printf(__VA_ARGS__)
#else
#define DEBUG(...)
#endif
#define filename ""
#define setfile() freopen(filename".in", "r", stdin); freopen(filename".ans", "w", stdout);
#define resetfile() freopen("/dev/tty", "r", stdin); freopen("/dev/tty", "w", stdout); system("more " filename".ans");
#define rep(i, j, k) for (int i = j; i < k; ++i)
#define irep(i, j, k) for (int i = j - 1; i >= k; --i)
using namespace std;
template <typename T>
inline T sqr(T a) { return a * a;};
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int > Pii;
const double pi = acos(-1.0);
const int INF = INT_MAX;
const ll LLINF = LLONG_MAX;
const int MAX_N = 2e5 + 10;
int N, u, v, ans;
vector<int> G[MAX_N];
int dfs(int v, int p) {
set<int> h;
for (auto u : G[v]) if (u != p) {
int res = dfs(u, v);
if (res == -1) return -1;
else h.insert(res + 1);
}
if (!h.size()) return 0;
if (h.size() == 1) return *h.begin();
if (!p && h.size() == 2) return *h.begin() + *h.rbegin();
u = v; return -1;
}
int main(int argc, char const *argv[])
{
scanf("%d", &N);
rep(i, 1, N) scanf("%d%d", &u, &v), G[v].push_back(u), G[u].push_back(v);
u = 0;
ans = dfs(1, 0);
if (u) ans = dfs(u, 0);
while (~ans && !(ans & 1)) ans /= 2;
printf("%d\n", ans);
return 0;
} | 27.034483 | 118 | 0.568878 | voleking |
34980dd4ee5102d7f277e8da22a98350b5762241 | 4,210 | cpp | C++ | samples/widgets/app/app.cpp | reubenscratton/oaknut | 03b37965ad84745bd5c077a27d8b53d58a173662 | [
"MIT"
] | 5 | 2019-10-04T05:10:06.000Z | 2021-02-03T23:29:10.000Z | samples/widgets/app/app.cpp | reubenscratton/oaknut | 03b37965ad84745bd5c077a27d8b53d58a173662 | [
"MIT"
] | null | null | null | samples/widgets/app/app.cpp | reubenscratton/oaknut | 03b37965ad84745bd5c077a27d8b53d58a173662 | [
"MIT"
] | 2 | 2019-09-27T00:34:36.000Z | 2020-10-27T09:44:26.000Z | //
// Copyright © 2020 Sandcastle Software Ltd. All rights reserved.
//
// This file is part of 'Oaknut' which is released under the MIT License.
// See the LICENSE file in the root of this installation for details.
//
#include <oaknut.h>
class Drawer : public LinearLayout {
public:
Drawer() : LinearLayout() {
_orientation = Vertical;
}
bool applySingleStyle(const string& name, const style& value) override {
return LinearLayout::applySingleStyle(name, value);
}
void setSelectedSubview(View* subview) override {
View::setSelectedSubview(subview);
if (subview != _selectedSubview) {
if (_onSelectedSubviewChanged) {
_onSelectedSubviewChanged(subview);
}
_selectedSubview = subview;
}
}
std::function<void(View*)> _onSelectedSubviewChanged;
View* _selectedSubview;
};
DECLARE_DYNCREATE(Drawer);
class Tabs : public LinearLayout {
protected:
sp<RectRenderOp> _selectedOp;
float _barHeight;
public:
Tabs() : LinearLayout() {
_selectedOp = new RectRenderOp();
_hideScrollbars = true;
addDecorOp(_selectedOp);
}
bool applySingleStyle(const string& name, const style& value) override {
if (name == "bar-color") {
_selectedOp->setFillColor(value.colorVal());
return true;
}
if (name == "bar-height") {
_barHeight = value.floatVal();
setNeedsLayout();
return true;
}
if (name == "tabs") {
auto tabs = value.arrayVal();
for (auto& vtab : tabs) {
auto title = vtab.stringVal();
Button* button = new Button();
button->setSelectable(true);
button->applyStyle("material_design.Tabs.Button");
button->setText(title);
button->setImage("star.png");
addSubview(button);
}
return true;
}
return LinearLayout::applySingleStyle(name, value);
}
void setSelectedSubview(View* subview) override {
for (auto& it : _subviews) {
if (!it->isSelectable()) {
continue;
}
bool selected = subview == it._obj;
it->setSelected(selected);
if (selected) {
RECT oldRect = _selectedOp->_rect;
RECT rectTarget = it->getRect();
rectTarget.origin.y = rectTarget.bottom() - _barHeight;
rectTarget.size.height = _barHeight;
if (oldRect.size.width <=0) {
_selectedOp->setRect(rectTarget);
} else {
Animation::start(this, 300, [=](float val) {
RECT rect = rectTarget;
rect.origin.x = oldRect.origin.x + (rectTarget.origin.x-oldRect.origin.x) * val;
rect.size.width = oldRect.size.width + (rectTarget.size.width-oldRect.size.width) * val;
_selectedOp->setRect(rect);
}, Animation::strongEaseOut);
}
}
}
}
};
DECLARE_DYNCREATE(Tabs);
class MainViewController : public ViewController {
public:
MainViewController() {
inflate("layout/main.res");
bind(_drawer, "drawer");
bind(_content, "content");
_drawer->_onSelectedSubviewChanged = [=](View* selectedSubview) {
int index = _drawer->indexOfSubview(selectedSubview);
if (index == 1) {
_content->setCurrentSubview(0);
} else {
_content->setCurrentSubview(1);
}
};
/*ShadowRenderOp* shadow = new ShadowRenderOp();
shadow->setSigma(0);
shadow->setRect(RECT(50,50,200,200));
view->addRenderOp(shadow);*/
}
Drawer* _drawer;
ViewSwitcher* _content;
};
class WidgetsApp : public App {
public:
void main() override {
MainViewController* mainVC = new MainViewController();
_window->setRootViewController(mainVC);
};
};
static WidgetsApp the_app;
| 27.337662 | 108 | 0.553682 | reubenscratton |
349ba7372ae75faf9748c31dd57c25d3c5bad952 | 11,795 | hh | C++ | BdbTime/BdbTime.hh | brownd1978/FastSim | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | [
"Apache-2.0"
] | null | null | null | BdbTime/BdbTime.hh | brownd1978/FastSim | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | [
"Apache-2.0"
] | null | null | null | BdbTime/BdbTime.hh | brownd1978/FastSim | 05f590d72d8e7f71856fd833114a38b84fc7fd48 | [
"Apache-2.0"
] | null | null | null | #ifndef BDBTIME_HH
#define BDBTIME_HH
//-----------------------------------------------------------------------------
//
// File and Version Information:
// $Id: BdbTime.hh 496 2010-01-13 17:10:44Z stroili $
//
// Description:
// Class BdbTime.
// This is a persistent time class.
//
// Environment:
// Software developed for the BaBar Detector at the SLAC B-Factory.
//
// Author List:
// J. Ohnemus Original Author
// Gregory Dubois-Felsmann Rogue Wave migration, 2002/2003
//
// Copyright Information:
// Copyright (C) 1994, 1995 Lawrence Berkeley Laboratory
// Copyright (c) 2002, 2003 California Institute of Technology
//
//-----------------------------------------------------------------------------
//-----------------
// BaBar Headers --
//-----------------
#include "BaBar/BaBarODMGTypes.h"
//-----------------
// C/C++ Headers --
//-----------------
#include <time.h>
#include <iostream>
#include <string>
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
#include "BdbTime/BdbDuration.hh"
#include "BdbTime/BdbTimeConst.hh"
//------------------------------------
// Collaborating Class Declarations --
//------------------------------------
// ---------------------
// -- Class Interface --
// ---------------------
class BdbTime {
public:
enum Zone { Local, UTC };
// Constructors
/**
* (Deprecated)
* Constructs with the current time, to the nearest second. This
* constructor is deprecated and may be removed in a future release.
* The static function BdbTime::now() should be used in preference
* to this in all new code, if the current time is really required.
*
* For some reason, the original implementation did not set the _gmtNsec
* member, perhaps because it was not easy to get it synchronized with
* the Rogue Wave "now()" function's return value. Now that we use
* clock_gettime() directly, this could be fixed.
*
* However, we have decided not to do this at this time, in order not
* to change the behavior of existing programs.
*
* BdbTime::now() preserves the full significance available from
* clock_gettime().
*
* Please note that this constructor involves a system call and is
* expensive! Do not default-construct BdbTimes unless you really need
* the current time value. If you are just declaring a time variable
* to fill in later, BdbTime(0) is a more performant choice.
*/
BdbTime( );
/** Copy constructor. */
BdbTime( const BdbTime& t );
/**
* Constructs a time from an unsigned number of seconds since the
* BdbTime epoch of 1901. NB: this is not the Unix epoch of 1970!
*/
explicit BdbTime( d_ULong sec_since_1901, d_ULong nsec = 0 );
/**
* Constructs a time from a broken-down list of components of a date
* and time.
*
* This uses definitions inherited from the old RogueWave implementation
* of BdbTime. Thus "year" is the calendar year C.E. (e.g., 2003), and
* "month" is the month in the range {1..12}. Note that these differ
* from the POSIX broken-down time (struct tm) definitions, where
* 2003 C.E. is represented as 103, and the month is in the range {0..11}.
*/
BdbTime( d_ULong year,
d_ULong month,
d_ULong day,
d_ULong hour,
d_ULong minute,
d_ULong second,
d_ULong nanosecond = 0,
Zone zone = UTC );
/**
* (Deprecated - use parseTime())
* Constructs a BdbTime from a string date and a string time.
*
* The use of this constructor is strongly discouraged, as it does not
* have a means of reliably reporting parsing errors (BaBar does not
* use C++ exceptions). Use BdbTime::parseTime() instead (which this
* is implemented over).
*/
BdbTime( const std::string& date, const std::string& time, Zone zone = UTC );
/**
* (Deprecated - use parseTime())
* Constructs a BdbTime from a single date-time string, in which the
* date and time must be given separated by whitespace. Otherwise
* identical to the above constructor.
*
* The use of this constructor is strongly discouraged, as it does not
* have a means of reliably reporting parsing errors (BaBar does not
* use C++ exceptions). Use BdbTime::parseTime() instead (which this
* is implemented over).
*/
explicit BdbTime( const std::string&, Zone zone = UTC );
/**
* Constructs from POSIX high-resolution time, as might be
* obtained from clock_gettime.
*/
BdbTime( const struct timespec& ts );
/**
* Constructs from POSIX "broken-down time".
* @param stm Cannot be const because it is internally provided to
* POSIX mktime(), which normalizes it -- see man mktime.
*/
BdbTime( struct tm& stm, Zone zone = UTC );
/**
* The destructor is non-virtual in order to keep this representational
* class small and suitable for processing with value semantics.
* Classes with non-empty destructors should not be constructed with
* non-private inheritance from BdbTime.
*/
~BdbTime( ) { }
// Assignment operator
BdbTime& operator=( const BdbTime& t );
// Calculational operators
/**
* Calculates the absolute value of the difference between two times.
* NB: BdbDuration is an inherently unsigned quantity! This is
* in essence because reasonably foreseeable time differences are
* larger in seconds than 2^31 and so can't be represented as a
* signed 32 bit integer.
*/
BdbDuration operator-( const BdbTime& t ) const;
BdbTime& operator+=( const BdbDuration& d );
BdbTime operator+( const BdbDuration& d ) const;
BdbTime& operator-=( const BdbDuration& d );
BdbTime operator-( const BdbDuration& d ) const;
// Comparison operators
bool operator==( const BdbTime& t ) const
{
return ( _gmtSec == t._gmtSec && _gmtNsec == t._gmtNsec );
}
bool operator!=( const BdbTime& t ) const
{
return !( *this == t );
}
bool operator<( const BdbTime& t ) const
{
return ( _gmtSec < t._gmtSec ) ||
( _gmtSec == t._gmtSec && _gmtNsec < t._gmtNsec );
}
bool operator<=( const BdbTime& t ) const
{
return ( _gmtSec < t._gmtSec ) ||
( _gmtSec == t._gmtSec && _gmtNsec <= t._gmtNsec );
}
bool operator>( const BdbTime& t ) const
{
return !( *this <= t );
}
bool operator>=( const BdbTime& t ) const
{
return !( *this < t );
}
// Selectors
d_ULong getGmtSec( ) const { return _gmtSec; }
d_ULong getGmtNsec( ) const { return _gmtNsec; }
/**
* Extracts the value of the BdbTime as a POSIX.1b "struct timespec".
* Returns 0 on success in analogy with POSIX.1b clock_gettime().
* WARNING: Must and will fail for valid BdbTime values that are more
* than 2^31-1 seconds before the beginning of the POSIX 1970 epoch,
* i.e., before around 1901.12.13 20:45:53 UTC.
*
* There are such times in the conditions database from early
* SP production, before all times were renormalized into 1997+ space.
*/
int timeSpec( struct timespec* ts ) const;
/**
* Extracts the value of the BdbTime as a POSIX "struct tm" broken-down
* time. This requires the use of a time zone. In analogy with the
* POSIX.1b gmtime_r() function, a pointer to a "struct tm" to receive
* the data must be supplied -- so this function is thread-safe(*).
* Following this analogy, the function returns the supplied pointer
* on success, and 0 on failure.
*
* This function should work for all times in the BdbTime range.
*/
struct tm* tm( struct tm* stm, Zone zone ) const;
/**
* Creates a string from the value of the BdbTime, based on a
* specified format specification, as for POSIX strftime(), and on
* a time zone. Note that this function does not provide a way
* to embed the "nanoseconds" part of the BdbTime, since this is
* not possible to express in a form recognized by strftime.
*
* The "%N" format specified does not appear to be used in the POSIX
* definition of strftime. It's possible it could be hijacked in a
* future upgrade. FIXME
*
* This function should work for all times in the BdbTime range.
*/
std::string asString( const char* fmt, Zone zone ) const;
// Friends
friend BdbTime operator+( const BdbDuration& d, const BdbTime& t );
friend std::ostream& operator<<( std::ostream& os, const BdbTime& t );
private:
void renormalizeNanoseconds( );
// Data members
d_ULong _gmtSec; // number of seconds since 00:00:00 Jan. 1, 1901 UTC
d_ULong _gmtNsec; // number of nanoseconds
public:
// static interfaces:
/**
* Constructs and returns a BdbTime representing the current time.
* This interface, unlike the deprecated default constructor, returns
* a BdbTime set to the full resolution available from clock_gettime().
* Note that this may vary between platforms and even operating
* system versions.
*/
static BdbTime now();
/**
* Determines whether a string representing a date and a string
* representing a time can be converted successfully to a date/time
* in BdbTime format, i.e., in the unsigned 1901 epoch.
*
* Note that 1901.01.01 00:00:00 UTC is not a valid time; 00:00:01
* is the first valid time.
*
* Date is parsed using strptime formats "%D" and "%d%b%Y", controlled
* by BdbTimeInput, with the first one that succeeds taking precedence.
* Time is parsed with formats "%T" and "%R". These are quite a
* restricted set compared to those originally accepted by the
* Rogue Wave implementation first used here.
*
* By default times are interpreted as UTC (a logical alternative might
* be the local time zone. If an invalid date or time string is supplied,
* the BdbTime time will be set to -Infinity. If the date string is set to
* "+Infinity" or "-Infinity", the time string will be ignored and the
* BdbTime will be set to the corresponding value.
*
* @param time Returned time value; modified only if parsing is successful.
* @return Flag indicating whether parsing was successful.
*/
static bool parseTime( const std::string& sdate, const std::string& stime,
Zone zone,
BdbTime& time );
/**
* Determines whether a string representing a date and time can be
* converted successfully to a date/time in BdbTime format, i.e., in
* the unsigned 1901 epoch.
*
* Equivalent to a call to parseTime( const std::string& sdate,
* const std::string& stime, Zone zone, BdbTime& time )
* with the date and time set from the first and second whitespace-
* delimited tokens in the sdatetime string and subsequent text ignored.
*
* This is a less precise parsing method than the above.
*
* @param time Returned time value; modified only if parsing is successful.
* @return Flag indicating whether parsing was successful.
*/
static bool parseTime( const std::string& sdatetime,
Zone zone,
BdbTime& time );
// Static members
static const BdbTime minusInfinity;
static const BdbTime plusInfinity;
};
inline void
BdbTime::renormalizeNanoseconds( )
{
if ( _gmtNsec >= BdbTimeConst::nsecInASec ) {
// carry nanoseconds over into seconds
d_ULong extraSec = _gmtNsec / BdbTimeConst::nsecInASec;
d_ULong remainNsec = _gmtNsec % BdbTimeConst::nsecInASec;
_gmtSec += extraSec;
_gmtNsec = remainNsec;
}
}
#endif
| 34.188406 | 79 | 0.635693 | brownd1978 |
34a130d2f192dabab62ccfa996c7233cbfd19e29 | 434 | cc | C++ | exercises/ESEMPI_BASE/operatori_aritmetici.cc | mfranzil/Programmazione1UniTN | 0aee3ec51d424039afcabfa9de80046c1d5be7d9 | [
"MIT"
] | 3 | 2021-11-05T16:25:50.000Z | 2022-02-10T14:06:00.000Z | exercises/ESEMPI_BASE/operatori_aritmetici.cc | mfranzil/Programmazione1UniTN | 0aee3ec51d424039afcabfa9de80046c1d5be7d9 | [
"MIT"
] | null | null | null | exercises/ESEMPI_BASE/operatori_aritmetici.cc | mfranzil/Programmazione1UniTN | 0aee3ec51d424039afcabfa9de80046c1d5be7d9 | [
"MIT"
] | 2 | 2018-10-31T14:53:40.000Z | 2020-01-09T22:34:37.000Z | using namespace std;
#include <iostream>
int main ()
{
int n = 7;
int m = 3;
cout << "n = " << n << endl;
cout << "m = " << m << endl;
cout << "n+m = " << n+m << endl;
cout << "n-m = " << n-m << endl;
cout << "n*m = " << n*m << endl;
cout << "n/m = " << n/m << endl;
cout << "n%m = " << n%m << endl;
cout << "-(n-m) = " << -(n-m) << endl;
cout << "-n-m = " << -n-m << endl;
return 0;
}
| 17.36 | 40 | 0.368664 | mfranzil |
34af9fbebdb458197455883fd2889c4ad5b4a65f | 1,788 | cpp | C++ | src/main/utils.cpp | qzerrty/graphics-editor | af76f1466bac3b3ba7363272af74ab04e6ee44ae | [
"MIT"
] | null | null | null | src/main/utils.cpp | qzerrty/graphics-editor | af76f1466bac3b3ba7363272af74ab04e6ee44ae | [
"MIT"
] | null | null | null | src/main/utils.cpp | qzerrty/graphics-editor | af76f1466bac3b3ba7363272af74ab04e6ee44ae | [
"MIT"
] | null | null | null | #include <SDL/SDL.h>
#include <SDL/SDL_ttf.h>
#include "graphicsEditor.hpp"
#include "utils.hpp"
SDL_Color translate_color(Uint32 int_color) {
#if SDL_BYTEORDER != SDL_BIG_ENDIAN
SDL_Color color={
(Uint8) ((int_color & 0x00ff0000)/0x10000),
(Uint8) ((int_color & 0x0000ff00)/0x100),
(Uint8) (int_color & 0x000000ff), 0};
#else
SDL_Color color={
(Uint8) (int_color & 0x000000ff),
(Uint8) ((int_color & 0x0000ff00)/0x100),
(Uint8) ((int_color & 0x00ff0000)/0x10000), 0};
#endif
return color;
}
void renderText(SDL_Surface* screen, SDL_Rect dst, const char* message, int fontSize, Uint32 color) {
SDL_Surface* textSurface;
TTF_Font* fnt;
if (!(fnt = TTF_OpenFont("../public/Ubuntu.ttf", fontSize))) {
return;
}
if ((textSurface = TTF_RenderUTF8_Blended(fnt, message, translate_color(color)))) {
SDL_BlitSurface(textSurface, NULL, screen, &dst);
SDL_FreeSurface(textSurface);
textSurface = NULL;
}
TTF_CloseFont(fnt);
}
char* IntToHexChars(int value) {
char* result = new char[7];
sprintf(result, "#%06X", value);
return result;
}
char* IntToChars(int value) {
char* result = new char[3];
sprintf(result, "%d", value);
return result;
}
Uint32 createRGB(int r, int g, int b) {
return ((r & 0xff) << 16) + ((g & 0xff) << 8) + (b & 0xff);
}
Uint32 getpixel(SDL_Surface * surface, int x, int y) {
int bpp = surface->format->BytesPerPixel;
Uint8 * p = (Uint8 *) surface->pixels + y * surface->pitch + x * bpp;
switch (bpp) {
case 1:
return *p;
case 2:
return *(Uint16 *) p;
case 3:
if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
return p[0] << 16 | p[1] << 8 | p[2];
else
return p[0] | p[1] << 8 | p[2] << 16;
case 4:
return *(Uint32 *) p;
default:
return 0;
}
} | 24.833333 | 101 | 0.630313 | qzerrty |
34b072586a0bd73e7f7ce8ab30fc9e1f3d7410ee | 7,245 | cpp | C++ | Tests/GuiTests/DFNs/DisparityImage/DisparityImageEdres.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | 7 | 2019-02-26T15:09:50.000Z | 2021-09-30T07:39:01.000Z | Tests/GuiTests/DFNs/DisparityImage/DisparityImageEdres.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | null | null | null | Tests/GuiTests/DFNs/DisparityImage/DisparityImageEdres.cpp | H2020-InFuse/cdff | e55fd48f9a909d0c274c3dfa4fe2704bc5071542 | [
"BSD-2-Clause"
] | 1 | 2020-12-06T12:09:05.000Z | 2020-12-06T12:09:05.000Z | /**
* @author Clément Bazerque
*/
/**
* Test application for the DFN DisparityImageEdres
*/
/**
* @addtogroup DFNsTest
* @{
*/
#include <DisparityImage/DisparityImageEdres.hpp>
#include <GuiTests/ParametersInterface.hpp>
#include <GuiTests/MainInterface.hpp>
#include <GuiTests/DFNs/DFNTestInterface.hpp>
#include <Visualizers/OpenCVVisualizer.hpp>
#include <Errors/Assert.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/imgcodecs/imgcodecs.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace CDFF::DFN::DisparityImage;
using namespace FrameWrapper;
class DisparityImageEdresTestInterface : public DFNTestInterface
{
public:
DisparityImageEdresTestInterface(const std::string& dfnName, int buttonWidth, int buttonHeight);
~DisparityImageEdresTestInterface();
private:
DisparityImageEdres disparityImageEdres;
cv::Mat cvLeftImage;
cv::Mat cvRightImage;
std::string outputWindowName;
void SetupParameters() override;
void DisplayResult() override;
};
DisparityImageEdresTestInterface::DisparityImageEdresTestInterface(const std::string& dfnName, int buttonWidth, int buttonHeight) :
DFNTestInterface(dfnName, buttonWidth, buttonHeight),
disparityImageEdres()
{
SetDFN(&disparityImageEdres);
// Loads two grayscaled rectified images
cvLeftImage = cv::imread("../../tests/Data/Images/MinnieStereo/MinnieRectDeg3Left.png", cv::IMREAD_GRAYSCALE);
cvRightImage = cv::imread("../../tests/Data/Images/MinnieStereo/MinnieRectDeg3Right.png", cv::IMREAD_GRAYSCALE);
// Initialise a frame pair and set its metadata
asn1SccFramePair *framePair = new asn1SccFramePair();
asn1SccFramePair_Initialize(framePair);
framePair->msgVersion = frame_Version;
framePair->baseline = 0.270268442641143;
// Fill the left image data
{
framePair->left.msgVersion = frame_Version;
framePair->left.metadata.msgVersion = frame_Version;
framePair->left.metadata.status = asn1Sccstatus_VALID;
framePair->left.metadata.pixelModel = asn1Sccpix_UNDEF;
framePair->left.metadata.mode = asn1Sccmode_GRAY;
framePair->left.intrinsic.msgVersion = frame_Version;
framePair->left.intrinsic.cameraModel = asn1Scccam_PINHOLE;
framePair->left.intrinsic.cameraMatrix.arr[0].arr[0] = 1069.23438117834;
framePair->left.intrinsic.cameraMatrix.arr[0].arr[1] = 0;
framePair->left.intrinsic.cameraMatrix.arr[0].arr[2] = 956.907250034732;
framePair->left.intrinsic.cameraMatrix.arr[1].arr[0] = 0;
framePair->left.intrinsic.cameraMatrix.arr[1].arr[1] = 1071.73940921359;
framePair->left.intrinsic.cameraMatrix.arr[1].arr[2] = 621.662860111553;
framePair->left.intrinsic.cameraMatrix.arr[2].arr[0] = 0;
framePair->left.intrinsic.cameraMatrix.arr[2].arr[1] = 0;
framePair->left.intrinsic.cameraMatrix.arr[2].arr[2] = 1;
asn1SccArray3D &imageOnly = framePair->left.data;
imageOnly.msgVersion = array3D_Version;
imageOnly.rows = static_cast<asn1SccT_UInt32>(cvLeftImage.rows);
imageOnly.cols = static_cast<asn1SccT_UInt32>(cvLeftImage.cols);
imageOnly.channels = static_cast<asn1SccT_UInt32>(cvLeftImage.channels());
imageOnly.depth = static_cast<asn1SccArray3D_depth_t>(cvLeftImage.depth());
imageOnly.rowSize = cvLeftImage.step[0];
imageOnly.data.nCount = static_cast<int>(imageOnly.rows * imageOnly.rowSize);
memcpy(imageOnly.data.arr, cvLeftImage.data, static_cast<size_t>(imageOnly.data.nCount));
}
// Fill the right image data
{
framePair->right.msgVersion = frame_Version;
framePair->right.metadata.msgVersion = frame_Version;
framePair->right.metadata.status = asn1Sccstatus_VALID;
framePair->right.metadata.pixelModel = asn1Sccpix_UNDEF;
framePair->right.metadata.mode = asn1Sccmode_GRAY;
framePair->right.intrinsic.msgVersion = frame_Version;
framePair->right.intrinsic.cameraModel = asn1Scccam_PINHOLE;
framePair->right.intrinsic.cameraMatrix.arr[0].arr[0] = 1066.44771376037;
framePair->right.intrinsic.cameraMatrix.arr[0].arr[1] = 0;
framePair->right.intrinsic.cameraMatrix.arr[0].arr[2] = 943.937535155249;
framePair->right.intrinsic.cameraMatrix.arr[1].arr[0] = 0;
framePair->right.intrinsic.cameraMatrix.arr[1].arr[1] = 1069.28469804725;
framePair->right.intrinsic.cameraMatrix.arr[1].arr[2] = 617.141031157546;
framePair->right.intrinsic.cameraMatrix.arr[2].arr[0] = 0;
framePair->right.intrinsic.cameraMatrix.arr[2].arr[1] = 0;
framePair->right.intrinsic.cameraMatrix.arr[2].arr[2] = 1;
asn1SccArray3D &imageOnly = framePair->right.data;
imageOnly.msgVersion = array3D_Version;
imageOnly.rows = static_cast<asn1SccT_UInt32>(cvRightImage.rows);
imageOnly.cols = static_cast<asn1SccT_UInt32>(cvRightImage.cols);
imageOnly.channels = static_cast<asn1SccT_UInt32>(cvRightImage.channels());
imageOnly.depth = static_cast<asn1SccArray3D_depth_t>(cvRightImage.depth());
imageOnly.rowSize = cvRightImage.step[0];
imageOnly.data.nCount = static_cast<int>(imageOnly.rows * imageOnly.rowSize);
memcpy(imageOnly.data.arr, cvRightImage.data, static_cast<size_t>(imageOnly.data.nCount));
}
// Set the DFN input with this image pair
disparityImageEdres.framePairInput(*framePair);
outputWindowName = "Disparity Image Result";
delete(framePair);
}
DisparityImageEdresTestInterface::~DisparityImageEdresTestInterface()
{
}
void DisparityImageEdresTestInterface::SetupParameters()
{
AddParameter("DisparityParams", "minDistance", 1.0, 100.0);
AddParameter("DisparityParams", "maxDistance", 40.0, 100.0);
AddParameter("DisparityParams", "method", 1, 4);
AddParameter("DisparityParams", "grad", 2, 5);
AddParameter("DisparityParams", "gradType", 5, 8);
AddParameter("DisparityParams", "dispType", 8, 8);
AddParameter("FilterParams", "filter", 1, 1);
AddParameter("FilterParams", "trimWidth", 3, 100, 1);
AddParameter("FilterParams", "connexityThresh", 2, 10, 0.1);
AddParameter("FilterParams", "surfMin", 20, 1000, 10);
AddParameter("FilterParams", "surfMax", 1000, 5000, 10);
}
void DisparityImageEdresTestInterface::DisplayResult()
{
// Fetch the resulting disparity image
asn1SccFrame* res = new asn1SccFrame();
*res = disparityImageEdres.disparityOutput();
PRINT_TO_LOG("Processing time (seconds): ", GetLastProcessingTimeSeconds());
PRINT_TO_LOG("Virtual memory used (kB): ", GetTotalVirtualMemoryUsedKB());
// Convert the disparity image as a cv::Mat for display
cv::Mat disparity = cv::Mat(res->data.rows, res->data.cols, CV_MAKETYPE((int)(res->data.depth), res->data.channels), res->data.data.arr, res->data.rowSize);
// Apply a colormap
cv::Mat dispColor;
double min, max;
cv::minMaxLoc(disparity, &min, &max);
disparity.convertTo(disparity, CV_8U, 255 / (max - min), -255.0 * min / (max - min));
cv::Mat mask = disparity > 0;
cv::applyColorMap(disparity, disparity, 2);
disparity.copyTo(dispColor, mask);
// Display the disparity
cv::namedWindow(outputWindowName, CV_WINDOW_NORMAL);
cv::imshow(outputWindowName, dispColor);
cv::resizeWindow(outputWindowName, dispColor.cols, dispColor.rows);
cv::waitKey(500);
delete(res);
}
int main(int argc, char** argv)
{
DisparityImageEdresTestInterface* interface = new DisparityImageEdresTestInterface("DisparityImageEdres", 100, 40);
interface->Run();
delete(interface);
};
/** @} */
| 38.333333 | 157 | 0.757902 | H2020-InFuse |
34b0b7cb584507f7860dc717ae0d4d5746ee8dc8 | 3,093 | cpp | C++ | src/Solver/NumericalJacobian.cpp | chalmersplasmatheory/DREAM | 715637ada94f5e35db16f23c2fd49bb7401f4a27 | [
"MIT"
] | 12 | 2020-09-07T11:19:10.000Z | 2022-02-17T17:40:19.000Z | src/Solver/NumericalJacobian.cpp | chalmersplasmatheory/DREAM | 715637ada94f5e35db16f23c2fd49bb7401f4a27 | [
"MIT"
] | 110 | 2020-09-02T15:29:24.000Z | 2022-03-09T09:50:01.000Z | src/Solver/NumericalJacobian.cpp | chalmersplasmatheory/DREAM | 715637ada94f5e35db16f23c2fd49bb7401f4a27 | [
"MIT"
] | 3 | 2021-05-21T13:24:31.000Z | 2022-02-11T14:43:12.000Z | /**
* Routines for numerically evaluating the jacobian numerically
* in the non-linear solver.
*/
#include <iostream>
#include "DREAM/Solver/SolverNonLinear.hpp"
#include "FVM/BlockMatrix.hpp"
#include "FVM/UnknownQuantity.hpp"
using namespace DREAM;
/**
* Evaluate jacobian numerically using finite difference
* of the residual function.
*
* jac: Jacobian matrix.
*/
void SolverNonLinear::_EvaluateJacobianNumerically(
FVM::BlockMatrix *jac
) {
printf("Evaluating Jacobian numerically... 0.00%%");
len_t nSize = this->unknowns->GetLongVectorSize(this->nontrivial_unknowns);
const real_t *iniVec = this->unknowns->GetLongVector(this->nontrivial_unknowns);
real_t *dFVec = new real_t[nSize];
real_t *FVec = new real_t[nSize];
real_t *iniFVec = new real_t[nSize];
real_t *xhVec = new real_t[nSize];
// Copy initial vector to shifted solution vector
for (len_t i = 0; i < nSize; i++)
xhVec[i] = iniVec[i];
jac->SetOffset(0, 0);
jac->Zero();
this->_EvaluateF(iniVec, iniFVec, jac);
const real_t h = 1e-6, hDefault = 10;
len_t index = 0;
for (auto uid : this->nontrivial_unknowns) {
FVM::UnknownQuantity *uqn = this->unknowns->GetUnknown(uid);
const len_t N = uqn->NumberOfElements();
// Differentiate w.r.t. index...
for (len_t _i = 0; _i < N; _i++, index++) {
// Restore previous element
if (index > 0)
xhVec[index-1] = iniVec[index-1];
// Determine derivative step length
real_t hStep;
if (iniVec[index] == 0)
hStep = hDefault;
else
hStep = h*iniVec[index];
xhVec[index] += hStep;
// Evaluate F(x+h)
this->_EvaluateF(xhVec, FVec, jac);
// Evaluate dF/dx_index
for (len_t j = 0; j < nSize; j++)
dFVec[j] = (FVec[j]-iniFVec[j]) / hStep;
// Set Jacobian column
for (len_t j = 0; j < nSize; j++) {
if (dFVec[j] != 0)
jac->SetElement(j, index, dFVec[j], INSERT_VALUES);
}
printf("\b\b\b\b\b\b\b%6.2f%%", double(index)/double(nSize-1)*100);
std::cout << std::flush;
}
}
printf("\n");
jac->Assemble();
delete [] xhVec;
delete [] iniFVec;
delete [] FVec;
delete [] dFVec;
}
/**
* Evaluate the non-linear function 'F'.
*
* xVec: Point in which to evaluate the function.
* FVec: Contains function value on return.
* jac: Associated jacobian (for obtaining vector/matrix structure).
*/
void SolverNonLinear::_EvaluateF(const real_t *xVec, real_t *FVec, FVM::BlockMatrix *jac) {
len_t offset = 0;
for (auto uqnid : this->nontrivial_unknowns) {
unknowns->Store(uqnid, xVec, offset);
offset += unknowns->GetUnknown(uqnid)->NumberOfElements();
}
this->RebuildTerms(this->CurrentTime(), this->CurrentTimeStep());
this->BuildVector(this->CurrentTime(), this->CurrentTimeStep(), FVec, jac);
}
| 28.118182 | 91 | 0.589395 | chalmersplasmatheory |
34b7758ac1a85618e9b620de9522e93938a1edfa | 2,223 | cpp | C++ | App/src/UI/Windows/UIMatrixWindow.cpp | Shorakie/GraphDelta | f930ccd7c3bffc7a12fa864d6dca72375623cbcf | [
"MIT"
] | 1 | 2021-07-08T22:51:59.000Z | 2021-07-08T22:51:59.000Z | App/src/UI/Windows/UIMatrixWindow.cpp | Shorakie/GraphDelta | f930ccd7c3bffc7a12fa864d6dca72375623cbcf | [
"MIT"
] | null | null | null | App/src/UI/Windows/UIMatrixWindow.cpp | Shorakie/GraphDelta | f930ccd7c3bffc7a12fa864d6dca72375623cbcf | [
"MIT"
] | null | null | null | #include "UIMatrixWindow.h"
#include <IconsFontAwesome5.h>
#include <spdlog/fmt/fmt.h>
#include <Core/Application.h>
#include <Core/Utils.h>
#include "Components/Components.h"
using namespace entt::literals;
namespace Project {
UIMatrixWindow::UIMatrixWindow(GraphSystem& graphSystem, std::string name)
: Engine::UIWindow(name), graphSystem(graphSystem), mode(MatrixMode::ADJ) {}
void UIMatrixWindow::init() { show = true; }
void UIMatrixWindow::deinit() {}
void UIMatrixWindow::render() {
if (show) {
if (ImGui::Begin(getName(), &show, ImGuiWindowFlags_NoFocusOnAppearing)) renderImGui();
ImGui::End();
}
}
void UIMatrixWindow::update() {}
void UIMatrixWindow::renderImGui() {
auto& reg = Engine::Application::get().reg;
ImGui::PushFont(ImGui::GetIO().Fonts->Fonts[1]);
if (ImGui::Button(ICON_FA_HOME, {28, 28})) mode = MatrixMode::ADJ;
ImGui::PopFont();
if (ImGui::IsItemHovered()) ImGui::SetTooltip("Adjacency matrix");
ImGui::SameLine();
ImGui::PushFont(ImGui::GetIO().Fonts->Fonts[1]);
if (ImGui::Button(ICON_FA_DOLLAR_SIGN, {28, 28})) mode = MatrixMode::COST;
ImGui::PopFont();
if (ImGui::IsItemHovered()) ImGui::SetTooltip("Cost matrix");
ImGui::Separator();
auto nodes = reg.view<Component::Node>(entt::exclude<entt::tag<"PREVIEW"_hs>>);
Engine::Util::NMatrix<double_t> matrix;
if (mode == MatrixMode::ADJ)
matrix = graphSystem.getAdjacencyMatrix();
else if (mode == MatrixMode::COST)
matrix = graphSystem.getCostMatrix();
if (ImGui::BeginTable("Matrix", matrix.size() + 1,
ImGuiTableFlags_NoHostExtendY | ImGuiTableFlags_Borders | ImGuiTableFlags_ScrollY |
ImGuiTableFlags_ScrollX)) {
ImGui::TableSetupScrollFreeze(1, 1);
ImGui::TableSetupColumn("##Nodes");
for (auto& [nodeId, node] : nodes.each())
ImGui::TableSetupColumn(node.name.c_str());
ImGui::TableHeadersRow();
for (auto& [startId, startNode] : nodes.each()) {
ImGui::TableNextColumn();
ImGui::Text(startNode.name.c_str());
for (auto& [endId, endNode] : nodes.each()) {
ImGui::TableNextColumn();
ImGui::Text(fmt::to_string(matrix[startId][endId]).c_str());
}
}
ImGui::EndTable();
}
}
} // namespace Project
| 29.64 | 92 | 0.682861 | Shorakie |
34c3762ad4e9b277af235f077a414c405f58eda2 | 1,061 | cpp | C++ | src/database/library/artist.cpp | jeanyvesb9/PROJECTu | 9534ce3e067425a75a194e56ec53344c5346c151 | [
"Apache-2.0"
] | null | null | null | src/database/library/artist.cpp | jeanyvesb9/PROJECTu | 9534ce3e067425a75a194e56ec53344c5346c151 | [
"Apache-2.0"
] | null | null | null | src/database/library/artist.cpp | jeanyvesb9/PROJECTu | 9534ce3e067425a75a194e56ec53344c5346c151 | [
"Apache-2.0"
] | null | null | null | #include "artist.h"
using namespace DB;
Artist::Artist(QObject *parent)
:QObject(parent)
{
}
Artist::Artist(quint64 id, QByteArray name, bool albumArtist, QObject *parent)
: QObject(parent), id{id}, albumArtist{albumArtist}, name{name}
{
}
Artist::~Artist()
{
emit artistDeleted(this);
}
void Artist::setId(quint64 id)
{
this->id = id;
}
void Artist::setName(QString name)
{
this->name = name.toUtf8();
}
void Artist::setName(QByteArray name)
{
this->name = name;
}
void Artist::setAlbumArtist(bool albumArtist)
{
this->albumArtist = albumArtist;
}
void Artist::setAlbumList(QList<quint64> albums)
{
this->albumList = albums;
}
void Artist::addAlbum(quint16 possition, quint64 albumNumber)
{
this->albumList.insert(possition, albumNumber);
}
void Artist::appendAlbum(quint64 albumNumber)
{
this->albumList.append(albumNumber);
}
void Artist::removeAlbum(quint16 possition)
{
this->albumList.removeAt(possition);
}
void Artist::moveAlbum(quint16 from, quint16 to)
{
this->albumList.move(from, to);
}
| 16.323077 | 78 | 0.702168 | jeanyvesb9 |
34c3c0adf0797ceeb3c51c7caa3a1ab2eecde196 | 213 | cc | C++ | build/ARM/python/m5/internal/param_RubyPort.i_init.cc | Jakgn/gem5_test | 0ba7cc5213cf513cf205af7fc995cf679ebc1a3f | [
"BSD-3-Clause"
] | null | null | null | build/ARM/python/m5/internal/param_RubyPort.i_init.cc | Jakgn/gem5_test | 0ba7cc5213cf513cf205af7fc995cf679ebc1a3f | [
"BSD-3-Clause"
] | null | null | null | build/ARM/python/m5/internal/param_RubyPort.i_init.cc | Jakgn/gem5_test | 0ba7cc5213cf513cf205af7fc995cf679ebc1a3f | [
"BSD-3-Clause"
] | null | null | null | #include "sim/init.hh"
extern "C" {
void init_param_RubyPort();
}
EmbeddedSwig embed_swig_param_RubyPort(init_param_RubyPort, "m5.internal._param_RubyPort");
| 23.666667 | 99 | 0.596244 | Jakgn |
34c3fc0f23e5ac1ba2efe95219cd74ae93d99036 | 1,816 | cpp | C++ | evias/network/connection.cpp | evias/evias | 5b5d4c16404f855c3234afa05b11c339a3ebb4cb | [
"BSD-3-Clause"
] | 1 | 2015-10-31T03:18:02.000Z | 2015-10-31T03:18:02.000Z | evias/network/connection.cpp | evias/evias | 5b5d4c16404f855c3234afa05b11c339a3ebb4cb | [
"BSD-3-Clause"
] | null | null | null | evias/network/connection.cpp | evias/evias | 5b5d4c16404f855c3234afa05b11c339a3ebb4cb | [
"BSD-3-Clause"
] | null | null | null | #include "connection.hpp"
using namespace evias::network;
/**
* searchQueue
*
* pop the queue's first element or the first with identification reqId.
*
* \note returned object has to be free'd
* \return netPacket*
*/
netPacket *evias::network::netConnection::searchQueue(__netRequest_t reqId)
{
// execute this algorithm safely in creating a specific thread and locking
// the mutex
Lock l(_mutex);
if (_queue.empty()) {
return NULL;
}
netPacket *p = NULL;
// either get the first message available
// or get a specific packet by its message ID
if (reqId == EVIAS_MSG_NONE) {
p = _queue.front();
_queue.pop_front();
}
else {
for (std::list<netPacket*>::iterator i = _queue.begin() ; i != _queue.end() ; i++) {
// packet is current iterator's value
p = *i;
if ( ((__packetHeader_t *) p->m_dataPointer)->requestId == reqId ) {
_queue.erase(i);
break;
}
p = NULL;
}
if (p == NULL) {
return NULL;
}
}
return p;
}
/**
* addPacketToQueue
*
* adds the specified packet to the current queue. If the queue's length
* is greater than allowed, pop the first element.
*
* \return void
**/
void evias::network::netConnection::pushQueue(netPacket* packetAdded)
{
if (! packetAdded)
return ;
Lock l(_mutex);
// add the specified packet
_queue.push_back(packetAdded);
while (_queue.size() > QUEUE_MAX) {
// get the instance for free-ing memory
netPacket* frontPacket = _queue.front();
_queue.pop_front();
releaseMemory(frontPacket);
}
}
| 21.364706 | 93 | 0.556718 | evias |
34c7dc7488185dc25907f14567154347348f23d1 | 1,048 | cpp | C++ | apr.2020after/20200507/20200507/n_11328/n_11328.cpp | lis0517/BOJ_ | 8aafb2db9c3c08afd145db911144c28a7cec3279 | [
"MIT"
] | null | null | null | apr.2020after/20200507/20200507/n_11328/n_11328.cpp | lis0517/BOJ_ | 8aafb2db9c3c08afd145db911144c28a7cec3279 | [
"MIT"
] | null | null | null | apr.2020after/20200507/20200507/n_11328/n_11328.cpp | lis0517/BOJ_ | 8aafb2db9c3c08afd145db911144c28a7cec3279 | [
"MIT"
] | null | null | null | // n_11328.cpp : 이 파일에는 'main' 함수가 포함됩니다. 거기서 프로그램 실행이 시작되고 종료됩니다.
//
#include <iostream>
#include <string>
using namespace std;
int arr1[26];
int arr2[26];
int main()
{
int lp = 0;
cin >> lp;
for (int i = 0; i < lp; ++i)
{
fill(arr1 + 0, arr1 + 26, 0);
fill(arr2 + 0, arr2 + 26, 0);
string s1, s2;
cin >> s1 >> s2;
for (auto c : s1)
{
arr1[c - 'a']++;
}
for (auto c : s2)
{
arr2[c - 'a']++;
}
bool flag = true;
for (int i = 0; i < 26; ++i)
{
if (arr1[i] != arr2[i])
{
flag = false;
break;
}
}
cout << ((flag) ? "Possible" : "Impossible") << "\n";
}
}
// 프로그램 실행: <Ctrl+F5> 또는 [디버그] > [디버깅하지 않고 시작] 메뉴
// 프로그램 디버그: <F5> 키 또는 [디버그] > [디버깅 시작] 메뉴
// 시작을 위한 팁:
// 1. [솔루션 탐색기] 창을 사용하여 파일을 추가/관리합니다.
// 2. [팀 탐색기] 창을 사용하여 소스 제어에 연결합니다.
// 3. [출력] 창을 사용하여 빌드 출력 및 기타 메시지를 확인합니다.
// 4. [오류 목록] 창을 사용하여 오류를 봅니다.
// 5. [프로젝트] > [새 항목 추가]로 이동하여 새 코드 파일을 만들거나, [프로젝트] > [기존 항목 추가]로 이동하여 기존 코드 파일을 프로젝트에 추가합니다.
// 6. 나중에 이 프로젝트를 다시 열려면 [파일] > [열기] > [프로젝트]로 이동하고 .sln 파일을 선택합니다.
| 19.407407 | 96 | 0.510496 | lis0517 |
34cddbfed49e6957150bde6c006b2a22752bfed9 | 1,241 | hpp | C++ | core/include/storm/core/Singleton.hpp | Arthapz/StormKit | 7c8dead874734d04b97776287b25bf2ebe9be617 | [
"MIT"
] | 17 | 2019-02-12T14:40:06.000Z | 2021-12-21T12:54:17.000Z | core/include/storm/core/Singleton.hpp | Arthapz/StormKit | 7c8dead874734d04b97776287b25bf2ebe9be617 | [
"MIT"
] | null | null | null | core/include/storm/core/Singleton.hpp | Arthapz/StormKit | 7c8dead874734d04b97776287b25bf2ebe9be617 | [
"MIT"
] | 2 | 2019-02-21T10:07:42.000Z | 2020-05-08T19:49:10.000Z | // Copyright (C) 2021 Arthur LAURENT <arthur.laurent4@gmail.com>
// This file is subject to the license terms in the LICENSE file
// found in the top-level of this distribution
#pragma once
#include <functional>
#include <memory>
#include <mutex>
#include <storm/core/Memory.hpp>
#include <storm/core/NonCopyable.hpp>
#include <storm/core/NonMovable.hpp>
#include <utility>
namespace storm::core {
template<class T>
class Singleton: public NonMovable, public NonCopyable {
public:
template<typename... Args>
static T &instance(Args &&...args) {
auto lambdas = [](Args &&...args) mutable {
m_instance = std::make_unique<T>(std::forward<Args>(args)...);
};
std::call_once(onceFlag(), lambdas, std::forward<Args>(args)...);
return *m_instance;
}
protected:
explicit Singleton() = default;
~Singleton() = default;
private:
static std::once_flag &onceFlag() {
static auto once_flag = std::once_flag {};
return once_flag;
}
static inline std::unique_ptr<T> m_instance = nullptr;
};
} // namespace storm::core
| 29.547619 | 79 | 0.589847 | Arthapz |
34d0bb63038a190ded7209dd6ecf81a9cc83c18d | 2,177 | cpp | C++ | DataProcessingList.cpp | AlanRace/imzMLParser | 1b9bc7f0b09bdeca9c8427448baed53483ce64e7 | [
"Apache-2.0"
] | 1 | 2021-03-18T09:51:10.000Z | 2021-03-18T09:51:10.000Z | DataProcessingList.cpp | AlanRace/imzMLParser | 1b9bc7f0b09bdeca9c8427448baed53483ce64e7 | [
"Apache-2.0"
] | null | null | null | DataProcessingList.cpp | AlanRace/imzMLParser | 1b9bc7f0b09bdeca9c8427448baed53483ce64e7 | [
"Apache-2.0"
] | 1 | 2018-06-08T09:11:55.000Z | 2018-06-08T09:11:55.000Z | /*
*
* Copyright 2013 Alan Race
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*/
/*
* DataProcessingList.cpp
*
* Created on: 18 May 2012
* Author: alan
*/
#include "DataProcessingList.h"
namespace ImzML {
DataProcessingList::DataProcessingList(int count) {
dataProcessingList.reserve(count);
}
DataProcessingList::~DataProcessingList()
{
// TODO Auto-generated destructor stub
}
void DataProcessingList::addDataProcessing(boost::shared_ptr<ImzML::DataProcessing> dataProcessing) {
dataProcessingList.push_back(dataProcessing);
}
boost::shared_ptr<ImzML::DataProcessing> DataProcessingList::getDataProcessing(int index) {
return dataProcessingList[index];
}
boost::shared_ptr<ImzML::DataProcessing> DataProcessingList::getDataProcessing(std::string id) {
for(std::vector< boost::shared_ptr<ImzML::DataProcessing> >::iterator iter = dataProcessingList.begin(); iter < dataProcessingList.end(); iter++)
if(id.compare((*iter)->getID()) == 0)
return *iter;
return boost::shared_ptr<ImzML::DataProcessing>();
}
std::ostream& operator<<(std::ostream& os, const ImzML::DataProcessingList& dpl) {
for(int i = 0; i < dpl.indent; i++)
os << dpl.indentString;
os << "<dataProcessingList count=\"" << dpl.dataProcessingList.size() << "\">" << std::endl;
dpl.indent++;
for(ImzML::DataProcessingList::dataProcessingList_type::size_type i = 0; i < dpl.dataProcessingList.size(); i++)
os << *dpl.dataProcessingList[i] << std::endl;
dpl.indent--;
for(int i = 0; i < dpl.indent; i++)
os << dpl.indentString;
os << "</dataProcessingList>";
return os;
}
} /* namespace ImzML */
| 29.418919 | 147 | 0.702802 | AlanRace |
34daa666825c85dcb0228a49cf58f7b01a528b56 | 4,104 | cpp | C++ | third-year/GeometricModelling/Aufgabe01/Aufgabe01/AffineMap.cpp | JulianGR/university | 2f643825b238892d602baf0c8e71e4c1b0fdefc2 | [
"MIT"
] | null | null | null | third-year/GeometricModelling/Aufgabe01/Aufgabe01/AffineMap.cpp | JulianGR/university | 2f643825b238892d602baf0c8e71e4c1b0fdefc2 | [
"MIT"
] | null | null | null | third-year/GeometricModelling/Aufgabe01/Aufgabe01/AffineMap.cpp | JulianGR/university | 2f643825b238892d602baf0c8e71e4c1b0fdefc2 | [
"MIT"
] | null | null | null | ////////////////////////////////////////////////////////////////////
//
// Georg Umlauf, (c) 2020
//
////////////////////////////////////////////////////////////////////
#include "AffineMap.h"
// constructors
AffineMap::AffineMap (double t)
{
for (int j=0; j<4; j++)
for (int i=0; i<4; i++)
m_aatData[i][j] = (i==j)? t: 0.0;
}
AffineMap::AffineMap (const double aatData[4][4])
{
for (int j=0; j<4; j++)
for (int i=0; i<4; i++)
m_aatData[i][j] = aatData[i][j];
}
AffineMap::AffineMap (const AffineMap &mat)
{
for (int j=0; j<4; j++)
for (int i=0; i<4; i++)
m_aatData[i][j] = mat(i,j);
}
// destructor
AffineMap::~AffineMap ()
{ // nothing to do here ...
}
// index operations and related methods
double &AffineMap::operator () (unsigned i, unsigned j)
{
return m_aatData[i%4][j%4];
}
double AffineMap::operator () (unsigned i, unsigned j) const
{
return m_aatData[i%4][j%4];
}
void AffineMap::swap (unsigned i, unsigned j)
{
i %= 4;
j %= 4;
double tmp = m_aatData[i][j];
m_aatData[i][j] = m_aatData[j][i];
m_aatData[j][i] = tmp;
}
// arithmetic operations
AffineMap AffineMap::operator + (const AffineMap &mat)
{
AffineMap buf(0.0);
for (int i=0; i<4; i++)
for (int j=0; j<4; j++)
buf(i,j) = m_aatData[i][j] + mat.m_aatData[i][j];
return buf;
}
AffineMap AffineMap::operator - (const AffineMap &mat)
{
AffineMap buf(0.0);
for (int i=0; i<4; i++)
for (int j=0; j<4; j++)
buf(i,j) = m_aatData[i][j] - mat.m_aatData[i][j];
return buf;
}
AffineMap AffineMap::operator * (const AffineMap &mat)
{
AffineMap buf(0.0);
for (int i=0; i<4; i++) // row i
for (int j=0; j<4; j++) // column j
for (int k=0; k<4; k++) // k
buf(i,j) += m_aatData[i][k] * mat.m_aatData[k][j];
return buf;
}
Vector AffineMap::operator * (const Vector &vec)
{
Vector buf(0,0,0,0);
for (int j=0; j<4; j++) // column j
for (int i=0; i<4; i++) // row i
buf[i] += m_aatData[i][j] * vec[j];
return buf;
}
Point AffineMap::operator * (const Point &pnt)
{
Point buf(0,0,0,1);
for (int j=0; j<4; j++) // column j
for (int i=0; i<4; i++) // row i
buf[i] += m_aatData[i][j] * pnt[j];
return buf;
}
// matrix operations
void AffineMap::transpose()
{ // transpose submatrix (a_ij) for i,j = r,...,l.
for( int i=0; i<4; i++) // row i
for (int j=i+1; j<4; j++) // column j
swap(i,j);
}
void AffineMap::inverse()
// Computes the inverse of a 4x4 matrix M of the form
// ⎡ R P ⎤
// M = ⎢ ⎥,
// ⎣ 0 1 ⎦
// with an orthonormal 3x3 matrix R, a 3d-column vector P and a 3d-row vector 0=(0,0,0).
//
// The inverse if computed as
// ⎡ Rᵗ -Rᵗ·P ⎤
// M⁻¹ = ⎢ ⎥ .
// ⎣ 0 1 ⎦
//
// The steps in the computation are
// ⎡ R P ⎤ ⎡ R 0 ⎤ ⎡ Rᵗ 0 ⎤ ⎡ Rᵗ -Rᵗ·P ⎤
// M = ⎢ ⎥ ⇒¹ ⎢ ⎥ ⇒² ⎢ ⎥ ⇒³ ⎢ ⎥ = M⁻¹ .
// ⎣ 0 1 ⎦ ⎣ 0 1 ⎦ ⎣ 0 1 ⎦ ⎣ 0 1 ⎦
//
{
AffineMap& M = *this;
CoordTuple4d P = M.getCol(3); // copy P from M
CoordTuple4d b(0,0,0,1);
M.setCol ( b, 3); // step ⇒¹: remove P from M -> the upper left 3x3 block of M is R
M.transpose( ); // step ⇒²: transpose M -> the upper left 3x3 block of M is Rᵗ
M.setCol (-(M*P), 3); // step ⇒³: insert -Rᵗ·P into M -> M⁻¹
}
// row/column operations
void AffineMap::setRow(const CoordTuple4d& r, int i)
{
for (int j=0; j<4; j++) m_aatData[i%4][j] = r[j]; // column j
}
void AffineMap::setCol(const CoordTuple4d& c, int j)
{
for (int i=0; i<4; i++) m_aatData[i][j%4] = c[i];// row i
}
CoordTuple4d AffineMap::getCol(int j) const
{
Vector vec;
for (int i=0; i<4; i++) vec[i] = m_aatData[i][j%4]; // row i
return vec;
}
CoordTuple4d AffineMap::getRow(int i) const
{
Vector vec;
for (int j=0; j<4; j++) vec[j] = m_aatData[i%4][j]; // column j
return vec;
}
// output
std::ostream &operator<< (std::ostream &ostr, const AffineMap &u)
{
ostr << "Affine Map:\n";
for (int i = 0; i < 4; i++) {
ostr << "[";
for (int j = 0; j < 4; j++) {
ostr << u(i, j);
if (j != 3) ostr << ", ";
}
ostr << "]\n";
}
return ostr;
} | 23.318182 | 93 | 0.522661 | JulianGR |
34dd8c2f033593082df54b2853bba8225c0295d4 | 4,986 | cpp | C++ | src/lockrace/modtrack.cpp | nicholasjalbert/Thrille | 117dbdbe93f81eec9398a75aebc62543498363ac | [
"OLDAP-2.8"
] | 2 | 2015-02-19T13:15:08.000Z | 2018-05-30T05:34:15.000Z | src/lockrace/modtrack.cpp | nicholasjalbert/Thrille | 117dbdbe93f81eec9398a75aebc62543498363ac | [
"OLDAP-2.8"
] | null | null | null | src/lockrace/modtrack.cpp | nicholasjalbert/Thrille | 117dbdbe93f81eec9398a75aebc62543498363ac | [
"OLDAP-2.8"
] | null | null | null | #include "modtrack.h"
ModifiedRaceTracker::ModifiedRaceTracker() : HybridRaceTracker() {
initializationHelper();
}
ModifiedRaceTracker::ModifiedRaceTracker(unsigned int wr, unsigned int rd) :
HybridRaceTracker(wr, rd) {
initializationHelper();
}
ModifiedRaceTracker::~ModifiedRaceTracker() {
}
void ModifiedRaceTracker::initializationHelper() {
printf("Using modified hybrid tracker\n");
outfilename = "thrille-randomactive";
eventcount = 0;
lockprofiling = 20;
}
void ModifiedRaceTracker::beforeSignal(thrID me, pthread_cond_t * cond) {}
void ModifiedRaceTracker::afterWait(thrID me, pthread_cond_t * cond) {}
void ModifiedRaceTracker::addLockEvent(lockRaceEvent e) {
int count = lock_profile_map[e.addr];
if (count > lockprofiling) {
return;
}
count++;
lock_profile_map[e.addr] = count;
vector<lockRaceEvent> eset = lockeventset[e.addr];
eset.push_back(e);
lockeventset[e.addr] = eset;
}
void ModifiedRaceTracker::outputRaces() {
printf("Races:\n");
map<void *, vector<dataRaceEvent> >::iterator mitr;
vector<dataRaceEvent>::iterator vitr;
for (mitr = eventset.begin(); mitr != eventset.end(); mitr++) {
vector<dataRaceEvent> tmpv = mitr->second;
for (vitr = tmpv.begin(); vitr != tmpv.end(); vitr++) {
eventcount++;
if (eventcount % 1000 == 0) {
printf("Events Processed: %d\n", eventcount);
}
checkRace((*vitr));
}
}
map<void *, vector<lockRaceEvent> >::iterator mliter;
vector<lockRaceEvent>::iterator vliter;
for (mliter = lockeventset.begin();
mliter != lockeventset.end(); mliter++) {
vector<lockRaceEvent> tmplv = mliter->second;
for (vliter = tmplv.begin(); vliter != tmplv.end(); vliter++) {
eventcount++;
if (eventcount % 1000 == 0) {
printf("Events Processed: %d\n", eventcount);
}
checkLockRace((*vliter));
}
}
ofstream * fout = new ofstream;
fout->open(outfilename.c_str());
dumpRaces(fout);
fout->close();
delete fout;
}
void ModifiedRaceTracker::checkLockRace(lockRaceEvent e) {
vector<lockRaceEvent> addrevents = lockeventset[e.addr];
vector<lockRaceEvent>::iterator itr;
for (itr = addrevents.begin(); itr != addrevents.end(); itr++) {
if (isRacing((*itr), e)) {
lockRaceRecord tmprec((*itr).lock, e.lock);
vector<lockRaceRecord>::iterator litr;
bool addrace = true;
for (litr = foundlockraces.begin(); litr != foundlockraces.end();
litr++) {
if ((*litr) == tmprec) {
addrace = false;
}
}
if (addrace) {
foundlockraces.push_back(tmprec);
}
}
}
}
void ModifiedRaceTracker::dumpRaces(ofstream * fout) {
vector<dataRaceRecord>::iterator itr;
if (((int) foundraces.size()) == 0 && ((int) foundlockraces.size()) == 0) {
printf("No races discovered\n");
}
for (itr = foundraces.begin(); itr != foundraces.end(); itr++) {
printf("Race: DataRaceRecord(%p, %p)\n",
((dataRaceRecord)(*itr)).getLeft(),
((dataRaceRecord)(*itr)).getRight());
(*fout) << "DATA" << endl
<< ((dataRaceRecord)(*itr)).getLeft() << endl
<< ((dataRaceRecord) (*itr)).getRight() << endl << flush;
}
vector<lockRaceRecord>::iterator litr;
for (litr = foundlockraces.begin(); litr != foundlockraces.end(); litr++) {
printf("Race: LockRaceRecord(%p, %p)\n",
((lockRaceRecord)(*litr)).getLeft(),
((lockRaceRecord)(*litr)).getRight());
(*fout) << "LOCK" << endl
<< ((lockRaceRecord)(*litr)).getLeft() << endl
<< ((lockRaceRecord) (*litr)).getRight() << endl << flush;
}
int racecount = 0;
map<void *, vector<dataRaceEvent> > potraces = eventset;
map<void *, vector<dataRaceEvent> >::iterator mitr;
vector<dataRaceEvent>::iterator sitr;
vector<dataRaceEvent> tmp;
for (mitr = potraces.begin(); mitr != potraces.end(); mitr++) {
tmp = mitr->second;
for (sitr = tmp.begin(); sitr != tmp.end(); sitr++) {
racecount++;
}
}
printf("\nData Race Events: %d\n", racecount);
int lockracecount = 0;
map<void *, vector<lockRaceEvent> > potlockraces = lockeventset;
map<void *, vector<lockRaceEvent> >::iterator mlitr;
vector<lockRaceEvent>::iterator slitr;
vector<lockRaceEvent> ltmp;
for (mlitr = potlockraces.begin();
mlitr != potlockraces.end(); mlitr++) {
ltmp = mlitr->second;
for (slitr = ltmp.begin(); slitr != ltmp.end(); slitr++) {
lockracecount++;
}
}
printf("\nLock Race Events: %d\n", lockracecount);
}
| 31.961538 | 79 | 0.573606 | nicholasjalbert |
34e068bf48a74368721b09af4684c7e0457d20c8 | 769 | cpp | C++ | plugins/Nephilim/AngelScriptEXT/ASXRuntime.cpp | GrimshawA/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 19 | 2015-12-19T11:15:57.000Z | 2022-03-09T11:22:11.000Z | plugins/Nephilim/AngelScriptEXT/ASXRuntime.cpp | DevilWithin/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 1 | 2017-05-17T09:31:10.000Z | 2017-05-19T17:01:31.000Z | plugins/Nephilim/AngelScriptEXT/ASXRuntime.cpp | GrimshawA/Nephilim | 1e69df544078b55fdaf58a04db963e20094f27a9 | [
"Zlib"
] | 3 | 2015-12-14T17:40:26.000Z | 2021-02-25T00:42:42.000Z | #include <Nephilim/AngelScriptEXT/ASXRuntime.h>
#include <Nephilim/AngelScriptEXT/ASXEngine.h>
#include <angelscript.h>
NEPHILIM_NS_BEGIN
ASXRuntime::ASXRuntime()
: m_context(NULL)
{
}
ASXRuntime::ASXRuntime(ASXEngine& engine)
{
m_context = engine.get()->CreateContext();
}
ASXRuntime::~ASXRuntime()
{
if(m_context) m_context->Release();
}
asIScriptContext* ASXRuntime::get()
{
return m_context;
}
void ASXRuntime::pushState()
{
if(m_context) m_context->PushState();
}
void ASXRuntime::popState()
{
if(m_context) m_context->PopState();
}
void ASXRuntime::set(ASXEngine& engine)
{
m_context = engine.get()->CreateContext();
}
void ASXRuntime::reset(ASXModule& module)
{
if(m_context)
{
module.get()->ResetGlobalVars(m_context);
}
}
NEPHILIM_NS_END | 14.788462 | 47 | 0.73212 | GrimshawA |
34e4275045040f9b3400d0cdefb85c2055a8dee0 | 21,640 | cpp | C++ | Tests/FileMgrTest.cpp | igalink/omniscidb | 94e878916991e7cf76bcd85b4091119b1ec66012 | [
"Apache-2.0"
] | null | null | null | Tests/FileMgrTest.cpp | igalink/omniscidb | 94e878916991e7cf76bcd85b4091119b1ec66012 | [
"Apache-2.0"
] | 1 | 2021-02-24T03:22:29.000Z | 2021-02-24T03:22:29.000Z | Tests/FileMgrTest.cpp | isabella232/omniscidb | bf83d84833710679debdf7a0484b6fbfc421cc96 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2020 OmniSci, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file FileMgrTest.cpp
* @brief Unit tests for FileMgr class.
*/
#include <gtest/gtest.h>
#include "DBHandlerTestHelpers.h"
#include "DataMgr/FileMgr/FileMgr.h"
#include "DataMgr/FileMgr/GlobalFileMgr.h"
#include "TestHelpers.h"
class FileMgrTest : public DBHandlerTestFixture {
protected:
std::string table_name;
Data_Namespace::DataMgr* dm;
ChunkKey chunk_key;
std::pair<int, int> file_mgr_key;
File_Namespace::GlobalFileMgr* gfm;
Catalog_Namespace::Catalog* cat;
void SetUp() override {
DBHandlerTestFixture::SetUp();
cat = &getCatalog();
dm = &cat->getDataMgr();
gfm = dm->getGlobalFileMgr();
table_name = "test_table";
sql("DROP TABLE IF EXISTS " + table_name + ";");
sql("CREATE TABLE " + table_name + " (col1 INT)");
sql("INSERT INTO " + table_name + " VALUES(1)");
const TableDescriptor* td = cat->getMetadataForTable(table_name);
const auto col_descs =
cat->getAllColumnMetadataForTable(td->tableId, false, false, false);
const ColumnDescriptor* cd = *(col_descs.begin());
int db_id = cat->getCurrentDB().dbId;
int tb_id = td->tableId;
chunk_key = {db_id, tb_id, cd->columnId, 0};
file_mgr_key = std::make_pair(db_id, tb_id);
}
void TearDown() override {
sql("DROP TABLE " + table_name);
DBHandlerTestFixture::TearDown();
}
ChunkKey setUpCappedRollbackTable(const int32_t max_rollback_epochs) {
Catalog_Namespace::Catalog* cat = &getCatalog();
const std::string capped_table_name("capped_table");
sql("DROP TABLE IF EXISTS " + capped_table_name + ";");
std::stringstream capped_ddl;
capped_ddl << "CREATE TABLE " << capped_table_name << " "
<< "(col1 INT) WITH (max_rollback_epochs=" << max_rollback_epochs << ")";
sql(capped_ddl.str());
sql("INSERT INTO " + capped_table_name + " VALUES(1)");
const TableDescriptor* td = cat->getMetadataForTable(capped_table_name);
const auto col_descs =
cat->getAllColumnMetadataForTable(td->tableId, false, false, false);
const ColumnDescriptor* cd = *(col_descs.begin());
const int db_id = cat->getCurrentDB().dbId;
const int tb_id = td->tableId;
const ChunkKey capped_chunk_key = {db_id, tb_id, cd->columnId, 0};
return capped_chunk_key;
}
void compareBuffers(AbstractBuffer* left_buffer,
AbstractBuffer* right_buffer,
size_t num_bytes) {
int8_t left_array[num_bytes];
int8_t right_array[num_bytes];
left_buffer->read(left_array, num_bytes);
right_buffer->read(right_array, num_bytes);
ASSERT_EQ(std::memcmp(left_array, right_array, num_bytes), 0);
ASSERT_EQ(left_buffer->hasEncoder(), right_buffer->hasEncoder());
}
void compareMetadata(const std::shared_ptr<ChunkMetadata> lhs_metadata,
const std::shared_ptr<ChunkMetadata> rhs_metadata) {
SQLTypeInfo lhs_sqltypeinfo = lhs_metadata->sqlType;
SQLTypeInfo rhs_sqltypeinfo = rhs_metadata->sqlType;
ASSERT_EQ(lhs_sqltypeinfo.get_type(), rhs_sqltypeinfo.get_type());
ASSERT_EQ(lhs_sqltypeinfo.get_subtype(), rhs_sqltypeinfo.get_subtype());
ASSERT_EQ(lhs_sqltypeinfo.get_dimension(), rhs_sqltypeinfo.get_dimension());
ASSERT_EQ(lhs_sqltypeinfo.get_scale(), rhs_sqltypeinfo.get_scale());
ASSERT_EQ(lhs_sqltypeinfo.get_notnull(), rhs_sqltypeinfo.get_notnull());
ASSERT_EQ(lhs_sqltypeinfo.get_comp_param(), rhs_sqltypeinfo.get_comp_param());
ASSERT_EQ(lhs_sqltypeinfo.get_size(), rhs_sqltypeinfo.get_size());
ASSERT_EQ(lhs_metadata->numBytes, rhs_metadata->numBytes);
ASSERT_EQ(lhs_metadata->numElements, rhs_metadata->numElements);
ChunkStats lhs_chunk_stats = lhs_metadata->chunkStats;
ChunkStats rhs_chunk_stats = rhs_metadata->chunkStats;
ASSERT_EQ(lhs_chunk_stats.min.intval, rhs_chunk_stats.min.intval);
ASSERT_EQ(lhs_chunk_stats.max.intval, rhs_chunk_stats.max.intval);
ASSERT_EQ(lhs_chunk_stats.has_nulls, rhs_chunk_stats.has_nulls);
}
std::shared_ptr<ChunkMetadata> getMetadataForBuffer(AbstractBuffer* buffer) {
const std::shared_ptr<ChunkMetadata> metadata = std::make_shared<ChunkMetadata>();
buffer->getEncoder()->getMetadata(metadata);
return metadata;
}
void compareBuffersAndMetadata(AbstractBuffer* left_buffer,
AbstractBuffer* right_buffer) {
ASSERT_TRUE(left_buffer->hasEncoder());
ASSERT_TRUE(right_buffer->hasEncoder());
ASSERT_TRUE(left_buffer->getEncoder());
ASSERT_TRUE(right_buffer->getEncoder());
ASSERT_EQ(left_buffer->size(), getMetadataForBuffer(left_buffer)->numBytes);
ASSERT_EQ(right_buffer->size(), getMetadataForBuffer(right_buffer)->numBytes);
compareMetadata(getMetadataForBuffer(left_buffer),
getMetadataForBuffer(right_buffer));
compareBuffers(left_buffer, right_buffer, left_buffer->size());
}
int8_t* getDataPtr(std::vector<int32_t>& data_vector) {
return reinterpret_cast<int8_t*>(data_vector.data());
}
void appendData(AbstractBuffer* data_buffer, std::vector<int32_t>& append_data) {
CHECK(data_buffer->hasEncoder());
SQLTypeInfo sql_type_info = getMetadataForBuffer(data_buffer)->sqlType;
int8_t* append_ptr = getDataPtr(append_data);
data_buffer->getEncoder()->appendData(append_ptr, append_data.size(), sql_type_info);
}
void writeData(AbstractBuffer* data_buffer,
std::vector<int32_t>& write_data,
const size_t offset) {
CHECK(data_buffer->hasEncoder());
SQLTypeInfo sql_type_info = getMetadataForBuffer(data_buffer)->sqlType;
int8_t* write_ptr = getDataPtr(write_data);
// appendData is a misnomer, with the offset we are overwriting part of the buffer
data_buffer->getEncoder()->appendData(
write_ptr, write_data.size(), sql_type_info, false /*replicating*/, offset);
}
};
TEST_F(FileMgrTest, putBuffer_update) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
source_buffer->setUpdated();
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 4);
compareBuffersAndMetadata(source_buffer, file_buffer);
ASSERT_FALSE(source_buffer->isAppended());
ASSERT_FALSE(source_buffer->isUpdated());
ASSERT_FALSE(source_buffer->isDirty());
}
TEST_F(FileMgrTest, putBuffer_subwrite) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
int8_t temp_array[8] = {1, 2, 3, 4, 5, 6, 7, 8};
source_buffer->write(temp_array, 8);
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 4);
compareBuffers(source_buffer, file_buffer, 4);
}
TEST_F(FileMgrTest, putBuffer_exists) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
int8_t temp_array[4] = {1, 2, 3, 4};
source_buffer->write(temp_array, 4);
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
file_mgr.putBuffer(chunk_key, source_buffer, 4);
file_mgr.checkpoint();
source_buffer->write(temp_array, 4);
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 4);
compareBuffersAndMetadata(source_buffer, file_buffer);
}
TEST_F(FileMgrTest, putBuffer_append) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
int8_t temp_array[4] = {1, 2, 3, 4};
source_buffer->append(temp_array, 4);
auto file_mgr =
File_Namespace::FileMgr(0, gfm, file_mgr_key, -1, 0, -1, gfm->getDefaultPageSize());
AbstractBuffer* file_buffer = file_mgr.putBuffer(chunk_key, source_buffer, 8);
compareBuffersAndMetadata(source_buffer, file_buffer);
}
TEST_F(FileMgrTest, put_checkpoint_get) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
std::vector<int32_t> data_v1 = {1, 2, 3, 5, 7};
appendData(source_buffer, data_v1);
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
AbstractBuffer* file_buffer_put = file_mgr->putBuffer(chunk_key, source_buffer, 24);
ASSERT_TRUE(file_buffer_put->isDirty());
ASSERT_FALSE(file_buffer_put->isUpdated());
ASSERT_TRUE(file_buffer_put->isAppended());
ASSERT_EQ(file_buffer_put->size(), static_cast<size_t>(24));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
AbstractBuffer* file_buffer_get = file_mgr->getBuffer(chunk_key, 24);
ASSERT_EQ(file_buffer_put, file_buffer_get);
CHECK(!(file_buffer_get->isDirty()));
CHECK(!(file_buffer_get->isUpdated()));
CHECK(!(file_buffer_get->isAppended()));
ASSERT_EQ(file_buffer_get->size(), static_cast<size_t>(24));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
compareBuffersAndMetadata(source_buffer, file_buffer_get);
}
TEST_F(FileMgrTest, put_checkpoint_get_double_write) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
std::vector<int32_t> data_v1 = {1, 2, 3, 5, 7};
std::vector<int32_t> data_v2 = {11, 13, 17, 19};
appendData(source_buffer, data_v1);
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
file_mgr->putBuffer(chunk_key, source_buffer, 24);
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
AbstractBuffer* file_buffer = file_mgr->getBuffer(chunk_key, 24);
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(24));
compareBuffersAndMetadata(source_buffer, file_buffer);
appendData(file_buffer, data_v2);
ASSERT_TRUE(file_buffer->isDirty());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(40));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
appendData(file_buffer, data_v2);
CHECK(file_buffer->isDirty());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(56));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
file_mgr->checkpoint();
CHECK(!(file_buffer->isDirty()));
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(56));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 3);
appendData(source_buffer, data_v2);
appendData(source_buffer, data_v2);
compareBuffersAndMetadata(source_buffer, file_buffer);
}
TEST_F(FileMgrTest, buffer_append_and_recovery) {
AbstractBuffer* source_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
ASSERT_EQ(getMetadataForBuffer(source_buffer)->numElements, static_cast<size_t>(1));
std::vector<int32_t> data_v1 = {1, 2, 3, 5, 7};
std::vector<int32_t> data_v2 = {11, 13, 17, 19};
appendData(source_buffer, data_v1);
{
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 1);
AbstractBuffer* file_buffer = file_mgr->putBuffer(chunk_key, source_buffer, 24);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
ASSERT_EQ(getMetadataForBuffer(source_buffer)->numElements, static_cast<size_t>(6));
ASSERT_EQ(getMetadataForBuffer(file_buffer)->numElements, static_cast<size_t>(6));
SCOPED_TRACE("Buffer Append and Recovery - Compare #1");
compareBuffersAndMetadata(source_buffer, file_buffer);
// Now write data we will not checkpoint
appendData(file_buffer, data_v1);
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(44));
// Now close filemgr to test recovery
cat->removeFragmenterForTable(file_mgr_key.second);
dm->getGlobalFileMgr()->closeFileMgr(file_mgr_key.first, file_mgr_key.second);
}
{
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(file_mgr_key.first, file_mgr_key.second));
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 2);
ChunkMetadataVector chunkMetadataVector;
file_mgr->getChunkMetadataVecForKeyPrefix(chunkMetadataVector, chunk_key);
ASSERT_EQ(chunkMetadataVector.size(), static_cast<size_t>(1));
ASSERT_EQ(std::memcmp(chunkMetadataVector[0].first.data(), chunk_key.data(), 16), 0);
ASSERT_EQ(chunkMetadataVector[0].first, chunk_key);
std::shared_ptr<ChunkMetadata> chunk_metadata = chunkMetadataVector[0].second;
ASSERT_EQ(chunk_metadata->numBytes, static_cast<size_t>(24));
ASSERT_EQ(chunk_metadata->numElements, static_cast<size_t>(6));
AbstractBuffer* file_buffer =
file_mgr->getBuffer(chunk_key, chunk_metadata->numBytes);
{
SCOPED_TRACE("Buffer Append and Recovery - Compare #2");
compareBuffersAndMetadata(source_buffer, file_buffer);
}
appendData(source_buffer, data_v2);
appendData(file_buffer, data_v2);
file_mgr->checkpoint();
ASSERT_EQ(file_mgr->lastCheckpointedEpoch(), 3);
{
SCOPED_TRACE("Buffer Append and Recovery - Compare #3");
compareBuffersAndMetadata(source_buffer, file_buffer);
}
}
}
TEST_F(FileMgrTest, buffer_update_and_recovery) {
std::vector<int32_t> data_v1 = {
2,
3,
5,
7,
11}; // Make first element different than 1 stored in col1 at t0 so that we can
// ensure updates and rollbacks show a change in col[0]
std::vector<int32_t> data_v2 = {13, 17, 19, 23};
{
EXPECT_EQ(dm->getTableEpoch(file_mgr_key.first, file_mgr_key.second), std::size_t(1));
AbstractBuffer* cpu_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::CPU_LEVEL);
AbstractBuffer* file_buffer =
dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::DISK_LEVEL);
ASSERT_FALSE(cpu_buffer->isDirty());
ASSERT_FALSE(cpu_buffer->isUpdated());
ASSERT_FALSE(cpu_buffer->isAppended());
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_FALSE(file_buffer->isUpdated());
ASSERT_FALSE(file_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(4));
{
SCOPED_TRACE("Buffer Update and Recovery - Compare #1");
compareBuffersAndMetadata(file_buffer, cpu_buffer);
}
writeData(file_buffer, data_v1, 0);
ASSERT_TRUE(file_buffer->isDirty());
ASSERT_TRUE(file_buffer->isUpdated());
ASSERT_TRUE(file_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(20));
{
std::vector<int32_t> file_buffer_data(file_buffer->size() / sizeof(int32_t));
file_buffer->read(reinterpret_cast<int8_t*>(file_buffer_data.data()),
file_buffer->size());
ASSERT_EQ(file_buffer_data[0], 2);
ASSERT_EQ(file_buffer_data[1], 3);
ASSERT_EQ(file_buffer_data[2], 5);
ASSERT_EQ(file_buffer_data[3], 7);
ASSERT_EQ(file_buffer_data[4], 11);
std::shared_ptr<ChunkMetadata> file_chunk_metadata =
getMetadataForBuffer(file_buffer);
ASSERT_EQ(file_chunk_metadata->numElements, static_cast<size_t>(5));
ASSERT_EQ(file_chunk_metadata->numBytes, static_cast<size_t>(20));
ASSERT_EQ(file_chunk_metadata->chunkStats.min.intval,
1); // We don't currently narrow the metadata on a full rewrite
ASSERT_EQ(file_chunk_metadata->chunkStats.max.intval, 11);
ASSERT_EQ(file_chunk_metadata->chunkStats.has_nulls, false);
}
dm->checkpoint(file_mgr_key.first, file_mgr_key.second);
EXPECT_EQ(dm->getTableEpoch(file_mgr_key.first, file_mgr_key.second), std::size_t(2));
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_FALSE(file_buffer->isUpdated());
ASSERT_FALSE(file_buffer->isAppended());
cpu_buffer->unPin(); // Neccessary as we just have a raw_ptr, so there is no way to
// auto un-pin the pin that getBuffer sets, normally this is
// handled by the Chunk class wrapper
dm->clearMemory(Data_Namespace::MemoryLevel::CPU_LEVEL);
cpu_buffer = dm->getChunkBuffer(
chunk_key,
Data_Namespace::MemoryLevel::CPU_LEVEL,
0,
20); // Dragons here: if we didn't unpin andy flush the data, the first value
// will be 1, and not 2, as we only fetch the portion of data we don't have
// from FileMgr (there's no DataMgr versioning currently, so for example,
// for updates we just flush the in-memory buffers to get a clean start)
ASSERT_FALSE(cpu_buffer->isDirty());
ASSERT_FALSE(cpu_buffer->isUpdated());
ASSERT_FALSE(cpu_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(20));
{
std::vector<int32_t> cpu_buffer_data(cpu_buffer->size() / sizeof(int32_t));
cpu_buffer->read(reinterpret_cast<int8_t*>(cpu_buffer_data.data()),
cpu_buffer->size());
ASSERT_EQ(cpu_buffer_data[0], 2);
ASSERT_EQ(cpu_buffer_data[1], 3);
ASSERT_EQ(cpu_buffer_data[2], 5);
ASSERT_EQ(cpu_buffer_data[3], 7);
ASSERT_EQ(cpu_buffer_data[4], 11);
std::shared_ptr<ChunkMetadata> cpu_chunk_metadata =
getMetadataForBuffer(cpu_buffer);
ASSERT_EQ(cpu_chunk_metadata->numElements, static_cast<size_t>(5));
ASSERT_EQ(cpu_chunk_metadata->numBytes, static_cast<size_t>(20));
ASSERT_EQ(cpu_chunk_metadata->chunkStats.min.intval,
1); // We don't currently narrow the metadata on a full rewrite
ASSERT_EQ(cpu_chunk_metadata->chunkStats.max.intval, 11);
ASSERT_EQ(cpu_chunk_metadata->chunkStats.has_nulls, false);
}
{
SCOPED_TRACE("Buffer Update and Recovery - Compare #2");
compareBuffersAndMetadata(file_buffer, cpu_buffer);
}
// Now roll back to epoch 1
cat->setTableEpoch(file_mgr_key.first, file_mgr_key.second, 1);
file_buffer = dm->getChunkBuffer(chunk_key, Data_Namespace::MemoryLevel::DISK_LEVEL);
ASSERT_FALSE(file_buffer->isDirty());
ASSERT_FALSE(file_buffer->isUpdated());
ASSERT_FALSE(file_buffer->isAppended());
ASSERT_EQ(file_buffer->size(), static_cast<size_t>(4));
{
std::vector<int32_t> file_buffer_data(file_buffer->size() / sizeof(int32_t));
file_buffer->read(reinterpret_cast<int8_t*>(file_buffer_data.data()),
file_buffer->size());
ASSERT_EQ(file_buffer_data[0], 1);
std::shared_ptr<ChunkMetadata> file_chunk_metadata =
getMetadataForBuffer(file_buffer);
ASSERT_EQ(file_chunk_metadata->numElements, static_cast<size_t>(1));
ASSERT_EQ(file_chunk_metadata->numBytes, static_cast<size_t>(4));
ASSERT_EQ(file_chunk_metadata->chunkStats.min.intval, 1);
ASSERT_EQ(file_chunk_metadata->chunkStats.max.intval, 1);
ASSERT_EQ(file_chunk_metadata->chunkStats.has_nulls, false);
}
}
}
TEST_F(FileMgrTest, capped_metadata) {
const int rollback_ceiling = 10;
const int num_data_writes = rollback_ceiling * 2;
for (int max_rollback_epochs = 0; max_rollback_epochs != rollback_ceiling;
++max_rollback_epochs) {
const ChunkKey capped_chunk_key = setUpCappedRollbackTable(max_rollback_epochs);
// Have one element already written to key -- epoch should be 2
ASSERT_EQ(dm->getTableEpoch(capped_chunk_key[0], capped_chunk_key[1]),
static_cast<size_t>(1));
File_Namespace::FileMgr* file_mgr = dynamic_cast<File_Namespace::FileMgr*>(
dm->getGlobalFileMgr()->getFileMgr(capped_chunk_key[0], capped_chunk_key[1]));
// buffer inside loop
for (int data_write = 1; data_write <= num_data_writes; ++data_write) {
std::vector<int32_t> data;
data.emplace_back(data_write);
AbstractBuffer* file_buffer =
dm->getChunkBuffer(capped_chunk_key, Data_Namespace::MemoryLevel::DISK_LEVEL);
appendData(file_buffer, data);
dm->checkpoint(capped_chunk_key[0], capped_chunk_key[1]);
ASSERT_EQ(dm->getTableEpoch(capped_chunk_key[0], capped_chunk_key[1]),
static_cast<size_t>(data_write + 1));
const size_t num_metadata_pages_expected =
std::min(data_write + 1, max_rollback_epochs + 1);
ASSERT_EQ(file_mgr->getNumUsedMetadataPagesForChunkKey(capped_chunk_key),
num_metadata_pages_expected);
}
}
}
int main(int argc, char** argv) {
TestHelpers::init_logger_stderr_only(argc, argv);
testing::InitGoogleTest(&argc, argv);
int err{0};
try {
err = RUN_ALL_TESTS();
} catch (const std::exception& e) {
LOG(ERROR) << e.what();
}
return err;
}
| 44.989605 | 90 | 0.717976 | igalink |
34e5824156bb4489ce6a05a52d37e029521986e1 | 17,532 | cpp | C++ | examples/example-rtc.cpp | kirchnerlab/libpipe | 28f08b9399945bd13329937a9dd0691211826886 | [
"MIT"
] | 1 | 2018-11-08T13:41:18.000Z | 2018-11-08T13:41:18.000Z | examples/example-rtc.cpp | kirchnerlab/libpipe | 28f08b9399945bd13329937a9dd0691211826886 | [
"MIT"
] | null | null | null | examples/example-rtc.cpp | kirchnerlab/libpipe | 28f08b9399945bd13329937a9dd0691211826886 | [
"MIT"
] | null | null | null | /*
* example-rtc.cpp
*
* Copyright (c) 2010 Marc Kirchner
* 2011 David Sichau
*
*/
#include <libpipe/config.hpp>
#include <stdlib.h>
#include <exception>
#include <iostream>
#include <set>
#include <boost/pointer_cast.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/make_shared.hpp>
#include <libpipe/rtc/Algorithm.hpp>
#include <libpipe/rtc/Filter.hpp>
#include <libpipe/rtc/Manager.hpp>
#include <libpipe/rtc/ManagerFactory.hpp>
#include <libpipe/rtc/AlgorithmFactory.hpp>
#include <libpipe/utilities/Exception.hpp>
#include <libpipe/Request.hpp>
#include <libpipe/rtc/SharedData.hpp>
#include <libpipe/rtc/PipelineLoader.hpp>
/** Converts std::string input to uppercase.
* Although not exceedingly useful, this is a good example of how to write
* an LIBPIPE algorithm. Basically, there are only two requirements (and one
* additional option):
* \li derive from \c libpipe::Algorithm.
* \li implement the \c update() function.
* \li optionally, override the \c processRequest() function (if your
* implementation does not call the \c update function, you do not
* need to implement it).
*
* Contrary to other approaches to pipelining (most notably probably the VTK
* way), LIBPIPE attempts to minimize hard constraints on the implementations.
* There is a diverse collection of datatypes and a set of software suites
* that are being used to process mass spectrometry data. Minimizing the
* structural imprint that LIBPIPE leaves on applications allows easy cross-suite
* interfacing and allows for a more rapid algorithmic development cycle.
*/
class UppercaseAlgorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new UppercaseAlgorithm;
}
/** Destructor.
*/
virtual ~UppercaseAlgorithm()
{
}
/** Runs the algorithm and updates the output data.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input_, dataIn_, String, "StringInput");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
LIBPIPE_PIPELINE_TRACE("UppercaseAlgorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"UppercaseAlgorithm::update: transforming to uppercase.");
std::transform(dataIn_.begin(), dataIn_.end(),
std::back_inserter(dataOut_), toupper);
LIBPIPE_PIPELINE_TRACE("UppercaseAlgorithm::update: end.");
#ifdef ENABLE_THREADING
output_->unlock();
input_->unlock();
#endif
}
protected:
/** Constructor.
* Make sure to call the \c libpipe::rtc::Algorithm constructor.
*/
UppercaseAlgorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput"] = boost::make_shared<
SharedString>();
ports_["StringOutput"] = boost::make_shared<
SharedString >(new std::string);
}
private:
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "UppercaseAlgorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
UppercaseAlgorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool UppercaseAlgorithm::registered_ = registerLoader();
/** Converts std::string input to lowercase.
* Although not exceedingly useful, this is a good example of how to write
* an LIBPIPE algorithm. Basically, there are only two requirements (and one
* additional option):
* \li derive from \c libpipe::Algorithm.
* \li implement the \c update() function.
* \li optionally, override the \c processRequest() function (if your
* implementation does not call the \c update function, you do not
* need to implement it).
*
* Contrary to other approaches to pipelining (most notably probably the VTK
* way), LIBPIPE attempts to minimize hard constraints on the implementations.
* There is a diverse collection of datatypes and a set of software suites
* that are being used to process mass spectrometry data. Minimizing the
* structural imprint that LIBPIPE leaves on applications allows easy cross-suite
* interfacing and allows for a more rapid algorithmic development cycle.
*/
class LowercaseAlgorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new LowercaseAlgorithm;
}
/** Destructor.
*/
virtual ~LowercaseAlgorithm()
{
}
/** Runs the algorithm and updates the output data.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input_, dataIn_, String, "StringInput");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
LIBPIPE_PIPELINE_TRACE("LowercaseAlgorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"LowercaseAlgorithm::update: transforming to uppercase.");
std::transform(dataIn_.begin(), dataIn_.end(),
std::back_inserter(dataOut_), tolower);
LIBPIPE_PIPELINE_TRACE("LowercaseAlgorithm::update: end.");
#ifdef ENABLE_THREADING
output_->unlock();
input_->unlock();
#endif
}
protected:
private:
/** Constructor.
* Make sure to call the \c libpipe::Algorithm constructor.
*/
LowercaseAlgorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput"] = boost::make_shared<
SharedString >();
ports_["StringOutput"] = boost::make_shared<
SharedString >(new std::string);
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "LowercaseAlgorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
LowercaseAlgorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool LowercaseAlgorithm::registered_ = registerLoader();
/** Combines the input strings to one string.
*
*/
class CombineAlgorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new CombineAlgorithm;
}
/** Destructor.
*/
virtual ~CombineAlgorithm()
{
LIBPIPE_PREPARE_READ_ACCESS(input1_, dataIn1_, String,
"StringInput1");
LIBPIPE_PREPARE_READ_ACCESS(input2_, dataIn2_, String,
"StringInput2");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
std::cout << "\033[22;32m Combine Algorithm destroyed with input: "
<< dataIn1_ << " and " << dataIn2_
<< "\t and output: " << dataOut_ << "\e[m"
<< std::endl;
#ifdef ENABLE_THREADING
output_->unlock();
input1_->unlock();
input2_->unlock();
#endif
}
/** Runs the algorithm and updates the output data.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input1_, dataIn1_, String,
"StringInput1");
LIBPIPE_PREPARE_READ_ACCESS(input2_, dataIn2_, String,
"StringInput2");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
LIBPIPE_PIPELINE_TRACE("CombineAlgorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"CombineAlgorithm::update: combining inputs");
combine(dataOut_, dataIn1_, dataIn2_);
LIBPIPE_PIPELINE_TRACE("CombineAlgorithm::update: end.");
#ifdef ENABLE_THREADING
output_->unlock();
input1_->unlock();
input2_->unlock();
#endif
}
protected:
private:
/** Combines two inputs
* @param result The result
*/
void combine(String& result,
const String& input1_,
const String& input2_)
{
result.append(input1_);
result.append(input2_);
}
/** Constructor.
* Make sure to call the \c libpipe::Algorithm constructor.
*/
CombineAlgorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput1"] = boost::make_shared<
SharedString >();
ports_["StringInput2"] = boost::make_shared<
SharedString >();
ports_["StringOutput"] = boost::make_shared<
SharedString >(new std::string);
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "CombineAlgorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
CombineAlgorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool CombineAlgorithm::registered_ = registerLoader();
/** cipher the string with ROT13
*
*/
class ROT13Algorithm : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new ROT13Algorithm;
}
/** virtual Destructor
*/
virtual ~ROT13Algorithm()
{
}
/** Runs the algorithm and updates the output data.
* If the request type is DELETE the input gets deleted.
* This is where all the algorithm implementation goes.
* @param[in,out] req The request object, forwarded from \c process request.
* @return The request
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_READ_ACCESS(input_, dataIn_, String,
"StringInput");
LIBPIPE_PREPARE_WRITE_ACCESS(output_, dataOut_, String,
"StringOutput");
if (req.is(libpipe::Request::UPDATE) && this->needUpdate()) {
LIBPIPE_PIPELINE_TRACE("ROT13Algorithm::update: start.");
dataOut_.clear();
LIBPIPE_PIPELINE_TRACE(
"ROT13Algorithm::update: transforming with ROT13.");
rot13(dataIn_, dataOut_);
LIBPIPE_PIPELINE_TRACE("ROT13Algorithm::update: end.");
} else if (req.is(libpipe::Request::DELETE)) {
input_.reset();
LIBPIPE_PIPELINE_TRACE(
"ROT13Algorithm::update: deleted the input");
}
#ifdef ENABLE_THREADING
output_->unlock();
input_->unlock();
#endif
}
protected:
private:
/**
* Function to calculate the ROT13 cipher
* @param[in] str A handle to the input string
* @param[out] result A handle to the ciphered input
*/
void rot13(const String& str, String& result)
{
static std::string const lcalph = "abcdefghijklmnopqrstuvwxyz",
ucalph = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
std::string::size_type pos;
result.reserve(str.length());
for (std::string::const_iterator it = str.begin(); it != str.end();
++it) {
if ((pos = lcalph.find(*it)) != std::string::npos)
result.push_back(lcalph[(pos + 13) % 26]);
else if ((pos = ucalph.find(*it)) != std::string::npos)
result.push_back(ucalph[(pos + 13) % 26]);
else
result.push_back(*it);
}
}
/** Constructor.
* Make sure to call the \c libpipe::Algorithm constructor.
*/
ROT13Algorithm() :
libpipe::rtc::Algorithm()
{
ports_["StringInput"] = boost::make_shared<SharedString>();
ports_["StringOutput"] = boost::make_shared<SharedString>(
new std::string);
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "ROT13Algorithm";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
ROT13Algorithm::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool ROT13Algorithm::registered_ = registerLoader();
/** Provides a constant string as output.
* This is an example of a 'source'. The \c Source algorithm does not require
* any input and will always provide a predefined string as its output.
*/
class Source : public libpipe::rtc::Algorithm
{
public:
// use convenience typedefs to avoid cluttering up the code
typedef std::string String;
typedef libpipe::rtc::SharedData<String> SharedString;
static Algorithm* create()
{
return new Source;
}
/** Destructor.
*/
virtual ~Source()
{
}
/** Updates the output data (i.e. does nothing).
* The output is provided as a constant, hence there is nothing to do.
* @param[in] req The request object.
* @return The request object.
*/
void update(libpipe::Request& req)
{
LIBPIPE_PREPARE_WRITE_ACCESS(output_, tempOut, String,
"StringOutput");
String temp = parameters_.get<String>("SourceString")
+ parameters_.get<String>("SourceString2");
tempOut = temp;
#ifdef ENABLE_THREADING
output_->unlock();
#endif
}
protected:
private:
/** Constructor.
*/
Source() :
libpipe::rtc::Algorithm()
{
ports_["StringOutput"] = boost::make_shared<SharedString>(
new std::string(""));
}
/** registers the Algorithm in the factory
* @return true is registration was successful
*/
static const bool registerLoader()
{
std::string ids = "Source";
return libpipe::rtc::AlgorithmFactory::instance().registerType(ids,
Source::create);
}
/// true is class is registered in Algorithm Factory
static const bool registered_;
};
const bool Source::registered_ = registerLoader();
int main(int argc, char *argv[])
{
using namespace libpipe::rtc;
std::map<std::string, std::string> inputFiles;
inputFiles["FilterInput"] = "inputFileFilterJSON.txt";
inputFiles["ConnectionInput"] = "inputFileConnectionJSON.txt";
inputFiles["PipelineInput"] = "inputFilePipelineJSON.txt";
inputFiles["ParameterInput"] = "inputFileParametersJSON.txt";
Pipeline pipeline;
try {
PipelineLoader loader(inputFiles);
pipeline = loader.getPipeline();
} catch (libpipe::utilities::Exception& e) {
std::cerr << e.what() << std::endl;
}
try {
pipeline.run();
} catch (libpipe::utilities::Exception& e) {
std::cerr << e.what() << std::endl;
}
std::vector<std::string> trace;
trace = pipeline.getTrace();
for (std::vector<std::string>::const_iterator i = trace.begin();
i != trace.end(); ++i) {
std::cout << *i << '\n';
}
std::cout
<< "All output after this is due to automatically called destructors."
<< std::endl;
return EXIT_SUCCESS;
}
| 32.346863 | 84 | 0.592745 | kirchnerlab |
34e5fb3069618dfe4b629d3f544a01ef8e570dde | 2,942 | cpp | C++ | core/CODeMDistribution.cpp | shaulsal/CODeM | 8cc85972cbb21ec55f323e6a049429b9ab2e2c74 | [
"MIT"
] | null | null | null | core/CODeMDistribution.cpp | shaulsal/CODeM | 8cc85972cbb21ec55f323e6a049429b9ab2e2c74 | [
"MIT"
] | null | null | null | core/CODeMDistribution.cpp | shaulsal/CODeM | 8cc85972cbb21ec55f323e6a049429b9ab2e2c74 | [
"MIT"
] | null | null | null | /****************************************************************************
**
** Copyright (C) 2012-2015 The University of Sheffield (www.sheffield.ac.uk)
**
** This file is part of Liger.
**
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General
** Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
****************************************************************************/
#include <core/CODeMDistribution.h>
#include <core/CODeMOperators.h>
#include <core/Distributions/IDistribution.h>
#include <tigon/Utils/NormalisationUtils.h>
namespace CODeM {
CODeMDistribution::CODeMDistribution(IDistribution* d,
const vector<double> oVec,
double lowerBound,
double upperBound,
const vector<double> ideal,
const vector<double> antiIdeal,
double dirPertRad,
double dirPertNorm)
: m_lb(lowerBound),
m_ub(upperBound),
m_pNorm(1)
{
defineDistribution(d);
defineIdealAndAntiIdeal(ideal, antiIdeal);
defineDirection(oVec);
defineDirectionPertRadius(dirPertRad);
definePerturbationNorm(dirPertNorm);
}
CODeMDistribution::~CODeMDistribution()
{
}
vector<double> CODeMDistribution::sampleDistribution()
{
if(m_distribution.isNull()) {
return vector<double>(0);
}
double sFactor = m_distribution->sample();
// scale to the interval [lb ub]
sFactor = m_lb + sFactor*(m_ub-m_lb);
// scale the 2-norm direction vector
vector<double> samp = m_direction;
scale(samp,sFactor);
samp = directionPerturbation(samp, m_directionPertRadius, m_pNorm);
scaleBackFromUnitBox(samp, m_ideal, m_antiIdeal);
return samp;
}
void CODeMDistribution::defineDirectionPertRadius(double r)
{
if(r >= 0.0) {
m_directionPertRadius = r;
}
}
void CODeMDistribution::definePerturbationNorm(double p)
{
if(p > 0.0) {
m_pNorm = p;
}
}
void CODeMDistribution::defineDirection(const vector<double> oVec)
{
m_direction = oVec;
normaliseToUnitBox(m_direction, m_ideal, m_antiIdeal);
toUnitVec(m_direction);
}
void CODeMDistribution::defineIdealAndAntiIdeal(const vector<double> ideal,
const vector<double> antiIdeal)
{
m_ideal = ideal;
m_antiIdeal = antiIdeal;
}
void CODeMDistribution::defineDistribution(IDistribution* d)
{
m_distribution = d;
}
} // namespace CODeM
| 29.128713 | 79 | 0.615228 | shaulsal |
34ec9e7f840721668c5b529c756e4cf5d515b7b4 | 753 | hpp | C++ | test/framework/test_logger.hpp | akshatkarani/iroha | 5acef9dd74720c6185360d951e9b11be4ef73260 | [
"Apache-2.0"
] | 1,467 | 2016-10-25T12:27:19.000Z | 2022-03-28T04:32:05.000Z | test/framework/test_logger.hpp | akshatkarani/iroha | 5acef9dd74720c6185360d951e9b11be4ef73260 | [
"Apache-2.0"
] | 2,366 | 2016-10-25T10:07:57.000Z | 2022-03-31T22:03:24.000Z | test/framework/test_logger.hpp | akshatkarani/iroha | 5acef9dd74720c6185360d951e9b11be4ef73260 | [
"Apache-2.0"
] | 662 | 2016-10-26T04:41:22.000Z | 2022-03-31T04:15:02.000Z | /**
* Copyright Soramitsu Co., Ltd. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef TEST_FRAMEWORK_TEST_LOGGER_HPP
#define TEST_FRAMEWORK_TEST_LOGGER_HPP
#include "logger/logger.hpp"
#include "logger/logger_manager_fwd.hpp"
/// Allows to log objects, which have toString() method without calling it, e.g.
/// log.info("{}", myObject)
template <typename StreamType, typename T>
auto operator<<(StreamType &os, const T &object)
-> decltype(os << object.toString()) {
return os << object.toString();
}
logger::LoggerManagerTreePtr getTestLoggerManager(
const logger::LogLevel &log_level = logger::LogLevel::kDebug);
logger::LoggerPtr getTestLogger(const std::string &tag);
#endif // TEST_FRAMEWORK_TEST_LOGGER_HPP
| 28.961538 | 80 | 0.746348 | akshatkarani |
34ef50181b03004b1772f96aee5628700062067b | 2,797 | cpp | C++ | CardReaderLibrary/ImageEditHelper.cpp | klanderfri/CardReaderLibrary | 71fc4b7fc6052a9ec3fb477fccd9b3fcfa0b9c60 | [
"MIT"
] | 4 | 2019-03-18T14:06:59.000Z | 2021-07-17T18:36:12.000Z | CardReaderLibrary/ImageEditHelper.cpp | klanderfri/ReadMagicCard | 71fc4b7fc6052a9ec3fb477fccd9b3fcfa0b9c60 | [
"MIT"
] | 17 | 2018-04-12T18:03:16.000Z | 2018-05-09T18:33:07.000Z | CardReaderLibrary/ImageEditHelper.cpp | klanderfri/ReadMagicCard | 71fc4b7fc6052a9ec3fb477fccd9b3fcfa0b9c60 | [
"MIT"
] | 1 | 2019-03-25T18:31:17.000Z | 2019-03-25T18:31:17.000Z | #include "stdafx.h"
#include "ImageEditHelper.h"
#include <opencv2\imgproc.hpp>
using namespace cv;
using namespace std;
ImageEditHelper::ImageEditHelper()
{
this->converter = new ConversionHelper();
this->rectangleMethods = new RectangleHelper();
this->imageInfo = new ImageInformationHelper();
this->transformations = new TransformHelper();
}
ImageEditHelper::~ImageEditHelper()
{
delete converter;
delete rectangleMethods;
delete imageInfo;
delete transformations;
}
void ImageEditHelper::RotateImage(const Mat rawImage, Mat& outImage, const double angleToRotate, const Point2f centerPoint)
{
//Implemented as suggested at:
//http://opencvexamples.blogspot.com/2014/01/rotate-image.html
Mat r = getRotationMatrix2D(centerPoint, angleToRotate, 1.0);
//Seems like INTER_LANCZOS4 causes the least blur.
//See https://stackoverflow.com/questions/24953935/opencv-image-getting-blurred-when-rotating-with-warpaffine
warpAffine(rawImage, outImage, r, Size(rawImage.cols, rawImage.rows), INTER_LANCZOS4);
}
void ImageEditHelper::StraightenUpImage(const Mat rawImage, Mat& outImage, const RotatedRect rawCardArea, Rect2f& outCardArea, bool enforcePortraitMode) {
//Rotate the image to straighten up the card.
double angleToRotate = rectangleMethods->GetAnglesToStrightenUp(rawCardArea, enforcePortraitMode);
RotateImage(rawImage, outImage, angleToRotate, rawCardArea.center);
//Rotate the card area rectangle.
outCardArea = converter->ToStraightRectangle(rawCardArea, enforcePortraitMode);
}
void ImageEditHelper::CropImage(const Mat rawImage, Mat& outImage, const Rect cropArea) {
float centerX = (float)cropArea.x + cropArea.size().width / 2;
float centerY = (float)cropArea.y + cropArea.size().height / 2;
Point2f center(centerX, centerY);
getRectSubPix(rawImage, cropArea.size(), center, outImage);
}
void ImageEditHelper::CropImageWithSolidBorder(const Mat rawImage, Mat& outImage, const Rect cropArea, int borderThickness) {
//Crop the image.
CropImage(rawImage, outImage, cropArea);
//Add the border.
copyMakeBorder(
outImage, outImage,
borderThickness, borderThickness, borderThickness, borderThickness,
BORDER_ISOLATED, converter->ToScalarColour(White));
}
void ImageEditHelper::ResizeImage(const Mat rawImage, Mat& outImage, int height) {
float ratio = (float)rawImage.size().height / rawImage.size().width;
int width = (int)round(height / ratio);
Size newSize(width, height);
resize(rawImage, outImage, newSize);
}
void ImageEditHelper::SetBackgroundByInverting(Mat& blackAndWhiteimage, bool setblackBackground) {
bool isblackOnWhite = imageInfo->IsBlackTextWhiteBackground(blackAndWhiteimage);
if (setblackBackground && isblackOnWhite ||
!setblackBackground && !isblackOnWhite) {
blackAndWhiteimage = ~blackAndWhiteimage;
}
}
| 32.905882 | 154 | 0.782267 | klanderfri |
34f211ffa6f801582b60db6fe75a22298c813dd3 | 1,331 | cpp | C++ | src/library/sorry.cpp | leodemoura/lean_clone | cc077554b584d39bab55c360bc12a6fe7957afe6 | [
"Apache-2.0"
] | 130 | 2016-12-02T22:46:10.000Z | 2022-03-22T01:09:48.000Z | src/library/sorry.cpp | soonhokong/lean | 38607e3eb57f57f77c0ac114ad169e9e4262e24f | [
"Apache-2.0"
] | 8 | 2017-05-03T01:21:08.000Z | 2020-02-25T11:38:05.000Z | src/library/sorry.cpp | soonhokong/lean | 38607e3eb57f57f77c0ac114ad169e9e4262e24f | [
"Apache-2.0"
] | 28 | 2016-12-02T22:46:20.000Z | 2022-03-18T21:28:20.000Z | /*
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "kernel/type_checker.h"
#include "kernel/environment.h"
#include "library/module.h"
#include "library/constants.h"
namespace lean {
static name * g_l = nullptr;
static expr * g_sorry_type = nullptr;
void initialize_sorry() {
g_l = new name("l");
g_sorry_type = new expr(mk_pi("A", mk_sort(mk_param_univ(*g_l)), mk_var(0), binder_info(true)));
}
void finalize_sorry() {
delete g_sorry_type;
delete g_l;
}
bool has_sorry(environment const & env) {
auto decl = env.find(get_sorry_name());
return decl && decl->get_type() == *g_sorry_type;
}
environment declare_sorry(environment const & env) {
if (auto decl = env.find(get_sorry_name())) {
if (decl->get_type() != *g_sorry_type)
throw exception("failed to declare 'sorry', environment already has an object named 'sorry'");
return env;
} else {
return module::add(env, check(env, mk_constant_assumption(get_sorry_name(), list<name>(*g_l), *g_sorry_type)));
}
}
expr mk_sorry() { return mk_constant(get_sorry_name()); }
bool is_sorry(expr const & e) { return is_constant(e) && const_name(e) == get_sorry_name(); }
}
| 30.25 | 119 | 0.67994 | leodemoura |
34f55e2c82c209303e5e12fa681355f0770aae26 | 11,053 | cpp | C++ | src/module_handler/handler_base.cpp | umichan0621/P2P-File-Share-System | 3025dcde37c9fe4988f993ec2fa5bfe2804eaedb | [
"MIT"
] | null | null | null | src/module_handler/handler_base.cpp | umichan0621/P2P-File-Share-System | 3025dcde37c9fe4988f993ec2fa5bfe2804eaedb | [
"MIT"
] | null | null | null | src/module_handler/handler_base.cpp | umichan0621/P2P-File-Share-System | 3025dcde37c9fe4988f993ec2fa5bfe2804eaedb | [
"MIT"
] | null | null | null | #include "handler_base.h"
#include <base/timer.h>
#include <base/config.hpp>
#include <base/logger/logger.h>
#include <module_net/net/nat_type.hpp>
#include <module_net/session_manager.h>
#include <module_peer/routing_table.h>
#include <module_peer/partner_table.h>
#define BASE_REGISTER(_FUNC) std::bind(&HandlerBase::_FUNC,this, \
std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)
//定时器事件
static bool heartbeat_probe(uint16_t SessionId)
{
net::Session* pCurSession = g_pSessionManager->session(SessionId);
if (nullptr == pCurSession)
{
return true;
}
//当前连接断开,终止定时器
if (SessionStatus::STATUS_CONNECT_COMPLETE != pCurSession->status())
{
return true;
}
//所有数据包都会重置超时次数,如果当前超时次数为0,这时得到1
uint8_t TimeoutCount = pCurSession->timeout();
//=2表示当前时间段内没有数据传输,发送一个心跳包检测
if (2 == TimeoutCount)
{
//对端收到之后会发送KCP的ACK报文,收到后会重置超时次数
//发送一个长度为0的心跳包即可
pCurSession->send_reliable(nullptr, 0);
}
else if (3 == TimeoutCount)
{
//断开连接
pCurSession->set_status(SessionStatus::STATUS_DISCONNECT);
LOG_TRACE << "Session ID = " << SessionId << " disconnect, Reason:Timeout.";
g_pSessionManager->disconnect_in_timer(SessionId);
return true;
}
return false;
}
//定时器事件
namespace handler
{
HandlerBase::HandlerBase() {}
void HandlerBase::register_recv_event()
{
//注册Recv事件的处理方式
//m_RecvHandlerMap[PROTOCOL_BASE_HEARTBEAT_ACK] = BASE_REGISTER(handle_heartbeat_ack);
m_RecvHandlerMap[PROTOCOL_BASE_HEARTBEAT_REQ] = BASE_REGISTER(handle_heartbeat_req);
m_RecvHandlerMap[PROTOCOL_BASE_PING_REQ] = BASE_REGISTER(handle_ping_req);
m_RecvHandlerMap[PROTOCOL_BASE_PING_ACK] = BASE_REGISTER(handle_ping_ack);
m_RecvHandlerMap[PROTOCOL_BASE_PING_HELP] = BASE_REGISTER(handle_ping_help);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_REQ] = BASE_REGISTER(handle_connect_req);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_ACK] = BASE_REGISTER(handle_connect_ack);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_RFS] = BASE_REGISTER(handle_connect_rfs);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_HELP_REQ] = BASE_REGISTER(handle_connect_help_req);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_HELP_ACK] = BASE_REGISTER(handle_connect_help_ack);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_HELP_RFS] = BASE_REGISTER(handle_connect_help_rfs);
m_RecvHandlerMap[PROTOCOL_BASE_DISCONNECT] = BASE_REGISTER(handle_disconnect);
m_RecvHandlerMap[PROTOCOL_BASE_NAT_TYPE_PROBE_REQ] = BASE_REGISTER(handle_nat_probe_req);
m_RecvHandlerMap[PROTOCOL_BASE_NAT_TYPE_PROBE_ACK] = BASE_REGISTER(handle_nat_probe_ack);
}
void HandlerBase::register_gateway_event()
{
//注册Gateway事件的处理方式
m_RecvHandlerMap[PROTOCOL_BASE_PING_REQ] = BASE_REGISTER(handle_ping_req);
m_RecvHandlerMap[PROTOCOL_BASE_PING_ACK] = BASE_REGISTER(handle_ping_ack);
m_RecvHandlerMap[PROTOCOL_BASE_CONNECT_REQ] = BASE_REGISTER(handle_connect_req);
m_RecvHandlerMap[PROTOCOL_BASE_NAT_TYPE_PROBE_REQ] = BASE_REGISTER(handle_nat_probe_req);
m_RecvHandlerMap[PROTOCOL_BASE_NAT_TYPE_PROBE_ACK] = BASE_REGISTER(handle_nat_probe_ack);
}
int8_t HandlerBase::handle_event(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//解析基础协议头
uint16_t ProtocolId;
parse_header(pMessage, ProtocolId);
//如果协议注册过
if (0 != m_RecvHandlerMap.count(ProtocolId))
{
return m_RecvHandlerMap[ProtocolId](SessionId, pMessage, Len);
}
//未注册协议直接无视
return DO_NOTHING;
}
int8_t HandlerBase::handle_connect_req(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//对端节点申请建立连接,如果连接建立需要加入定时器检测心跳包
//还未建立连接
if (ERROR_SESSION_ID == SessionId)
{
//回复接受
return DO_CONNECT;
}
//已建立连接,回复CONNECT_ACK
create_header(pMessage, PROTOCOL_BASE_CONNECT_ACK);
return DO_REPLY;
}
int8_t HandlerBase::handle_connect_ack(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
net::Session* pCurSession = g_pSessionManager->session(SessionId);
if (nullptr == pCurSession)
{
return DO_NOTHING;
}
//第一次收到ACK包,创建定时器
if (SessionStatus::STATUS_CONNECT_COMPLETE != pCurSession->status())
{
pCurSession->set_status(SessionStatus::STATUS_CONNECT_COMPLETE);
//定时检测超时状态,然后发送心跳包
g_pTimer->add_timer(HEARTBEAT_CLOCK, std::bind(heartbeat_probe, SessionId));
//连接成功,接下来需要注册PID和查询CID
g_pPeerManager->register_push(SessionId);
{//TEST
std::string strIP;
uint16_t Port;
PeerAddress CurPeerAddr = { 0 };
pCurSession->get_peer_addr(CurPeerAddr);
bool res1 = peer::PeerManager::info(CurPeerAddr, strIP, Port);
if (false != res1)
{
LOG_TRACE << "Connect to [" << strIP << ":" << Port<<"] successfully.";
}
}//TEST
}
//无需回复
return DO_NOTHING;
}
int8_t HandlerBase::handle_connect_rfs(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
LOG_DEBUG << "Connect Fail";
//对端节点发送CONNECT_RFS,表示对端节点拒绝建立连接,但是可以发送询问消息
if (ERROR_SESSION_ID == SessionId)
{
return DO_NOTHING;
}
return DO_DISCONNECT;
}
int8_t HandlerBase::handle_connect_help_req(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//其他Peer想要连接某个Peer,但是因为NAT的原因无法连接
//想通过我帮他建立连接
//Req发起连接的请求方
//Target被连接的接收方
uint16_t ReqSessionId = SessionId;
net::Session* pReqSession = g_pSessionManager->session(ReqSessionId);
if (nullptr == pReqSession)
{
return DO_NOTHING;
}
PeerAddress ReqPeerAddr = { 0 }, TargetPeerAddr = { 0 };
pReqSession->get_peer_addr(ReqPeerAddr);
memcpy(&TargetPeerAddr, &pMessage[BASE_HEADER_LEN], KSOCKADDR_LEN_V6);
uint16_t TargetSessionId = g_pPeerManager->session_id(TargetPeerAddr);
{//Test
std::string strIP, strIP1;
uint16_t Port, Port1;
bool res1 = peer::PeerManager::info(ReqPeerAddr, strIP, Port);
bool res2 = peer::PeerManager::info(TargetPeerAddr, strIP1, Port1);
if (res1 && res2)
{
LOG_TRACE << "["<<strIP << ":" << Port << "] want to connect [" << strIP1 << ":" << Port1<<"]";
}
}//Test
//目标Peer不可达,拒绝协助
if (0 == TargetSessionId || ERROR_SESSION_ID == TargetSessionId)
{
create_header(pMessage, PROTOCOL_BASE_CONNECT_HELP_RFS);
pReqSession->send_reliable(pMessage, BASE_HEADER_LEN + KSOCKADDR_LEN_V6);
return DO_NOTHING;
}
net::Session* pTargetSession = g_pSessionManager->session(TargetSessionId);
if (nullptr == pTargetSession)
{
create_header(pMessage, PROTOCOL_BASE_CONNECT_HELP_RFS);
pReqSession->send_reliable(pMessage, BASE_HEADER_LEN + KSOCKADDR_LEN_V6);
return DO_NOTHING;
}
//可以协助当前Peer
create_header(pMessage, PROTOCOL_BASE_CONNECT_HELP_ACK);
//告知请求节点尝试继续连接,已通知目标节点协助UDP打洞
pReqSession->send_reliable(pMessage, Len);
create_header(pMessage, PROTOCOL_BASE_PING_HELP);
memcpy(&pMessage[BASE_HEADER_LEN], &ReqPeerAddr, KSOCKADDR_LEN_V6);
//通知目标节点协助UDP打洞
pTargetSession->send_reliable(pMessage, BASE_HEADER_LEN + KSOCKADDR_LEN_V6);
//TEST
{
std::string strIP, strIP1;
uint16_t Port, Port1;
bool res1 = peer::PeerManager::info(ReqPeerAddr, strIP, Port);
bool res2 = peer::PeerManager::info(TargetPeerAddr, strIP1, Port1);
if (res1 && res2)
{
LOG_TRACE << "Try help [" << strIP << ":" << Port << "] connect [" << strIP1 << ":" << Port1<<"]";
}
}
//TEST
return DO_NOTHING;
}
int8_t HandlerBase::handle_connect_help_ack(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//对方已接受请求,已经通知另一个节点尝试ping自己
//如果NAT没问题可以实现UDP打洞
//继续尝试连接
PeerAddress TargetPeerAddr = { 0 };
memcpy(&TargetPeerAddr, &pMessage[BASE_HEADER_LEN], KSOCKADDR_LEN_V6);
const uint8_t* pKey = (uint8_t*)&pMessage[BASE_HEADER_LEN+ KSOCKADDR_LEN_V6];
base::SHA1 CID = { 0 };
memcpy(&CID, pKey, KLEN_KEY);
g_pSessionManager->connect_peer(CID, TargetPeerAddr);
{//TEST
std::string strIP, strIP1;
uint16_t Port, Port1;
net::Session* pAckSession = g_pSessionManager->session(SessionId);
PeerAddress AckPeerAddr = { 0 };
pAckSession->get_peer_addr(AckPeerAddr);
if (nullptr != pAckSession)
{
bool res1 = peer::PeerManager::info(AckPeerAddr, strIP, Port);
bool res2 = peer::PeerManager::info(TargetPeerAddr, strIP1, Port1);
if (res1 && res2)
{
LOG_TRACE << "["<<strIP << ":" << Port << "] will help me to connect [" << strIP1 << ":" << Port1<<"]";
}
}
}
return DO_NOTHING;
}
int8_t HandlerBase::handle_connect_help_rfs(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
LOG_ERROR << "Conenct Help Rfs";
//拒绝协助,就直接断开连接
PeerAddress TargetPeeraddr = { 0 };
memcpy(&TargetPeeraddr, &pMessage[2], KSOCKADDR_LEN_V6);
uint16_t TargetSessionId = g_pPeerManager->session_id(TargetPeeraddr);
if (0 != TargetSessionId && ERROR_SESSION_ID != TargetSessionId)
{
g_pSessionManager->disconnect(TargetSessionId);
//Test
{
std::string strIP;
uint16_t Port;
bool res = peer::PeerManager::info(TargetPeeraddr, strIP, Port);
if (true == res)
{
LOG_TRACE << "Fail to connect " << strIP << ":" << Port << ", Relay Node can't help.";
}
}
//Test
}
return DO_NOTHING;
}
int8_t HandlerBase::handle_ping_ack(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//对端节点发送PING_ACK,表示本机与对端节点可以建立直接连接并通信
net::Session* pCurSession = g_pSessionManager->session(SessionId);
if (nullptr != pCurSession)
{
if (SessionStatus::STATUS_DISCONNECT == pCurSession->status())
{
pCurSession->set_status(SessionStatus::STATUS_PING_COMPLETE);
}
}
//无需回复
return DO_NOTHING;
}
int8_t HandlerBase::handle_ping_req(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//对端节点发送PING_REQ,尝试ping本机,直接回复ACK
create_header(pMessage, PROTOCOL_BASE_PING_ACK);
//当前状态未连接
return DO_REPLY;
}
int8_t HandlerBase::handle_ping_help(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
PeerAddress TargetPeerAddr = { 0 };
memcpy(&TargetPeerAddr, &pMessage[BASE_HEADER_LEN], KSOCKADDR_LEN_V6);
g_pSessionManager->ping_peer(TargetPeerAddr);
//TEST
{
std::string strIP;
uint16_t Port;
bool res1 = peer::PeerManager::info(TargetPeerAddr, strIP, Port);
if (res1)
{
LOG_TRACE << "Ping [" << strIP << ":" << Port << "] to help it to connect me.";
}
}
//TEST
return DO_NOTHING;
}
int8_t HandlerBase::handle_heartbeat_req(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
LOG_DEBUG << "Recv Heartbeat";
//对端节点发送HEARTBEAT_REQ
//重置心跳包定时器超时计数
net::Session* pCurSession = g_pSessionManager->session(SessionId);
if (nullptr != pCurSession)
{
pCurSession->reset_timeout();
//回复HEARTBEAT_ACK表示连接无异常
create_header(pMessage, PROTOCOL_BASE_HEARTBEAT_ACK);
return DO_REPLY;
}
return DO_NOTHING;
}
int8_t HandlerBase::handle_disconnect(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
return DO_DISCONNECT;
}
int8_t HandlerBase::handle_nat_probe_req(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//直接用其他端口返回NAT确认
LOG_TRACE << "NAT probe";
create_header(pMessage, PROTOCOL_BASE_NAT_TYPE_PROBE_ACK);
return DO_REPLY_NAT;
}
int8_t HandlerBase::handle_nat_probe_ack(uint16_t& SessionId, char* pMessage, uint16_t& Len)
{
//能够收到表面自身NAT类型为B+
LOG_TRACE << "NAT = B+";
g_pHostNatType->set_nat_type(NAT_TYPE::NAT_TYPE_B_PLUS);
//无需回复
return DO_NOTHING;
}
} | 30.788301 | 108 | 0.733104 | umichan0621 |
5a560a47e4c98284c4949d131cbe6cd6b3f1822b | 2,056 | hpp | C++ | types/containers/ColumnVectorUtil.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 82 | 2016-04-18T03:59:06.000Z | 2019-02-04T11:46:08.000Z | types/containers/ColumnVectorUtil.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 265 | 2016-04-19T17:52:43.000Z | 2018-10-11T17:55:08.000Z | types/containers/ColumnVectorUtil.hpp | Hacker0912/quickstep-datalog | 1de22e7ab787b5efa619861a167a097ff6a4f549 | [
"Apache-2.0"
] | 68 | 2016-04-18T05:00:34.000Z | 2018-10-30T12:41:02.000Z | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
**/
#ifndef QUICKSTEP_TYPES_CONTAINERS_COLUMN_VECTOR_UTIL_HPP_
#define QUICKSTEP_TYPES_CONTAINERS_COLUMN_VECTOR_UTIL_HPP_
#include "types/containers/ColumnVector.hpp"
namespace quickstep {
/** \addtogroup Types
* @{
*/
/**
* @brief Invoke a generic functor (or lambda) on a ColumnVector that is
* downcast to its actual concrete type.
*
* @param column_vector A ColumnVector that will be downcast to its concrete
* type so that inline methods can be used.
* @param functor A generic functor or lambda that has a templated call
* operator taking a single argument. The call operator will be invoked
* with the downcast column_vector as its argument.
* @return The return value of functor's call operator applied to the downcast
* column_vector.
**/
template <typename FunctorT>
auto InvokeOnColumnVector(const ColumnVector &column_vector,
const FunctorT &functor) {
if (column_vector.isNative()) {
return functor(static_cast<const NativeColumnVector&>(column_vector));
} else {
return functor(static_cast<const IndirectColumnVector&>(column_vector));
}
}
/** @} */
} // namespace quickstep
#endif // QUICKSTEP_TYPES_CONTAINERS_COLUMN_VECTOR_UTIL_HPP_
| 35.448276 | 78 | 0.738327 | Hacker0912 |
5a6056593fed418eec1850f6ec3aad256a72945f | 9,432 | cpp | C++ | KeePass.1.39.a/LibraryMB/Date.cpp | rrvt/KeePassLastPass | 217b627d906cf0af21ac69643a2d2e24e88f934b | [
"MIT"
] | null | null | null | KeePass.1.39.a/LibraryMB/Date.cpp | rrvt/KeePassLastPass | 217b627d906cf0af21ac69643a2d2e24e88f934b | [
"MIT"
] | 1 | 2020-05-01T00:37:31.000Z | 2020-05-01T00:37:31.000Z | KeePass.1.39.a/LibraryMB/Date.cpp | rrvt/KeePassLastPass | 217b627d906cf0af21ac69643a2d2e24e88f934b | [
"MIT"
] | 1 | 2020-02-25T09:11:37.000Z | 2020-02-25T09:11:37.000Z | // Date & Time using CTime
#include "stdafx.h"
#include "Date.h"
#include "MessageBox.h"
#include "StringInput.h"
// Helper functions for dealing with Edit boxes
static bool vrfyMnth( int cnt, TCchar ch, int& v);
static bool vrfyDay( int cnt, TCchar ch, int& v);
static bool vrfyYr( int cnt, TCchar ch, int& v);
static void replDtSel(int i, TCchar ch, CEdit& ctrl);
static bool vrfyHr( int cnt, TCchar ch, int& v);
static bool vrfyMin( int cnt, TCchar ch, int& v);
static void replTmSel(int i, TCchar ch, CEdit& ctrl);
const int Date::MinDate = 30000;
typedef struct tm Tm;
const double Date::SecondsPerDay = 86400;
static TCchar* msg = _T("Date format accepted:\n"
"mm/dd - defaults to current year\n"
"mm/dd/yr\n"
"where:\n"
" mm is 1 - 12\n"
" dd is 1 - 31\n"
" yr is 0 - 69 translates to 2000 - 2069\n"
" 70 - 99 translates to 1970 - 1999\n"
" >100 - exact year\n"
" Date only good from 1/1/1970 to year 3000\n"
"At least one slash ('/') must be present to accept a date.\n"
"Time Formats include the following where\n"
" H is either one or two hour digits:\n"
" Hmm -- Hours and minutes\n"
" hh:mm:ss -- Hour, minutes and seconds\n"
" <time>a -- am\n"
" <time>p -- pm\n"
" hhmm -- Hour and minutes in the 24-hour system\n"
"Notes:\n"
" ':' -- may separate hours and minutes in any of the above except the latter\n"
" H > 12 -- 24 hour clock always interpreted correctly");
typedef LexT<StringInput, LexTOut, false, false, false> Lex;
static int utcOffset = 0;
Date::Date() : dt(0) {
Tm utcTime;
Tm lclTime;
int noDays;
dt.GetGmtTm(&utcTime);
dt.GetLocalTm(&lclTime);
noDays = lclTime.tm_yday ? 365 - lclTime.tm_yday : 0;
utcOffset = ((noDays * 24 - lclTime.tm_hour) * 60 + lclTime.tm_min) * 60 + lclTime.tm_sec;
}
Date Date::operator= (String& s) {
Lex lex;
__time64_t tm = 0;
int nDigits;
int mm = 0; // Date may not be ealier than 1/1/1970 at UTC
int dd = 0;
int yr = 0;
int hr = 0; // Time w/o date based on 1/1/70 date. Sorry no zero date!
int mn = 0;
int ss = 0;
Token* t;
Token* t1;
Tm today;
getToday(); dt.GetLocalTm(&today);
lex.initialize(); lex.input.set(s);
lex.get_token(); t = lex.token; t1 = lex.token1;
if (t1->code == SlashToken) {
if (t->code == IntLitToken) {
mm = t->value.integer;
if (mm < 1 || 12 < mm) {messageBox(msg); goto finDate;}
lex.accept_two_tokens();
if (lex.get_token() == IntLitToken) {
t = lex.token; t1 = lex.token1;
dd = t->value.integer;
if (dd < 1 || 31 < dd) {messageBox(msg); goto finDate;}
lex.accept_token();
if (t1->code == SlashToken) {
lex.accept_two_tokens();
if (lex.get_token() == IntLitToken) {
yr = lex.token->value.integer;
if ( 0 <= yr && yr < 70) yr += 2000;
else if (70 <= yr && yr < 100) yr += 1900;
lex.accept_token();
}
}
else yr = today.tm_year + 1900;
}
}
}
if (lex.get_token() == SlashToken) lex.accept_token();
if (lex.get_token() == EolToken || lex.token->code == EOFToken) goto finDate;
if (lex.get_token() == IntLitToken) {
t = lex.token; hr = t->value.integer; nDigits = t->noDigits;
if (hr > 60 || nDigits > 2) {mn = hr % 100; hr = hr / 100;}
if (hr < 0 || 24 <= hr || mn < 0 || 60 <= mn) {messageBox(msg); goto finDate;}
if (nDigits == 4) goto finDate;
lex.accept_token();
if (lex.get_token() == ColonToken) {
lex.accept_token();
if (lex.get_token() == IntLitToken) {
mn = lex.token->value.integer; lex.accept_token();
if (mn < 0 || 60 <= mn) {messageBox(msg); goto finDate;}
lex.accept_token();
if (lex.get_token() == ColonToken) {
lex.accept_token();
if (lex.get_token() == IntLitToken) {ss = lex.token->value.integer;}
lex.accept_token();
if (ss < 0 || 60 <= ss) {messageBox(msg); goto finDate;}
}
}
}
if (lex.get_token() == IdentToken) {
if (!amPM(hr, lex.token->name)) messageBox(msg); goto finDate;
}
if (lex.get_token() == EolToken || lex.token->code == EOFToken) goto finDate;
}
messageBox(msg);
finDate:
if (!yr) {int t = (hr * 60 + mn) * 60 + ss + utcOffset; CTime x((__time64_t) t); dt = x;}
else {CTime x(yr, mm, dd, hr, mn, ss); dt = x; }
return *this;
}
bool Date::amPM(int& h, String& txt) {
if ((txt == _T("a") || txt == _T("A")) && h <= 12) return true;
if ((txt == _T("p") || txt == _T("P")) && h <= 12) {h += 12; return true;}
return false;
}
static const double secPerDay = 86400; // 60 * 60 * 24
Date::operator variant_t() {
double t = double(dt.GetTime());
variant_t v;
v.date = t / secPerDay; v.vt = VT_DATE; return v;
}
String Date::getTime() {CString s; s = dt.Format(_T("%X")); return s;}
String Date::getHHMM() {CString s; s = dt.Format(_T("%R")); return s;}
String Date::getHHMMSS() {CString s; s = dt.Format(_T("%T")); return s;}
String Date::getDate() {CString s = dt.Format(_T("%x")); return s;}
String Date::dayOfWeek() {CString s = dt.Format("%a"); return s;}
static bool updateDate = false;
void Date::onChangeDate(CEdit& ctrl) {
CString date;
int i;
int n;
String s;
int count = 0;
int slCnt = 0;
bool legal;
int mon = 0;
int day = 0;
int yr = 0;
if (!updateDate) { // To avoid infinite recursion
updateDate = true;
ctrl.GetWindowText(date); s = date;
for (i = 0, n = s.length(); i < n; i++) {
Tchar ch = s[i]; legal = false;
if (_T('0') <= ch && ch <= _T('9')) {
legal = true;
if (count || ch != _T('0')) {
if (slCnt == 0 && !vrfyMnth(count, ch, mon)) {replDtSel(i, 0, ctrl); break;}
if (slCnt == 1 && !vrfyDay( count, ch, day)) {replDtSel(i, 0, ctrl); break;}
if (slCnt == 2 && !vrfyYr( count, ch, yr)) {replDtSel(i, 0, ctrl); break;}
}
if (count > 1) {replDtSel(i, slCnt < 2 ? ch : 0, ctrl); break;}
count++;
}
if (ch == _T('/')) {
if (slCnt >= 2) {replDtSel(i, 0, ctrl); break;}
count = 0; slCnt++; legal = true;
}
if (!legal) {replDtSel(i, 0, ctrl); break;}
}
updateDate = false;
}
}
bool vrfyMnth(int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return 1 <= v && v <= 12;}
bool vrfyDay( int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return 1 <= v && v <= 31;}
bool vrfyYr( int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return 0 <= v && v <= 40;}
void replDtSel(int i, TCchar ch, CEdit& ctrl) {
bool aCh = ch != 0;
String s;
if (aCh) {s = _T('/'); s += ch;}
else {Beep(1500, 120);}
ctrl.SetSel(i, i+1); ctrl.ReplaceSel(s);
}
static bool updateTime = false;
void Date::onChangeTime(CEdit& ctrl) {
CString time;
int i;
int n;
String s;
int count = 0;
int clnCnt = 0;
bool legal;
int hr = 0;
int min = 0;
if (!updateTime) { // To avoid infinite recursion
updateTime = true;
ctrl.GetWindowText(time); s = time;
for (i = 0, n = s.length(); i < n; i++) {
Tchar ch = s[i]; legal = false;
if (_T('0') <= ch && ch <= _T('9')) {
legal = true;
if (count || ch != _T('0')) {
if (i > 4) {replTmSel(i, 0, ctrl); break;}
if (count > 1) {replTmSel(i, ch, ctrl); clnCnt++; count = 1; break; }
if ( !clnCnt && !vrfyHr( count, ch, hr)) {replTmSel(i, 0, ctrl); break;}
else if (clnCnt && !vrfyMin(count, ch, min)) {replTmSel(i, 0, ctrl); break;}
}
count++;
}
if (ch == _T(':')) {
if (clnCnt >= 1) {replTmSel(i, 0, ctrl); break;}
count = 0; clnCnt++; legal = true;
}
if (!legal) {replTmSel(i, 0, ctrl); break;}
}
updateTime = false;
}
}
bool vrfyHr( int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return v < 24;}
bool vrfyMin(int cnt, TCchar ch, int& v) {v = v * cnt * 10 + ch - _T('0'); return v < 60;}
void replTmSel(int i, TCchar ch, CEdit& ctrl) {
bool aCh = ch != 0;
String s;
if (aCh) {s = _T(':'); s += ch;}
else {Beep(1500, 120);}
ctrl.SetSel(i, i+1); ctrl.ReplaceSel(s);
}
void ToDate::convert() {
if (stg.length() < 14) return;
year = next(4);
month = next(2);
day = next(2);
hour = next(2);
min = next(2);
sec = next(2);
Date d(year, month, day, hour, min, sec); date = d;
}
int ToDate::next(int noChar) {
String s = stg.substr(pos, noChar);
uint x;
pos += noChar; return s.stoi(x);
}
| 24.886544 | 105 | 0.502969 | rrvt |
5a63f54de0d91ae503705aea54597e7b8c540ec2 | 4,572 | cpp | C++ | active16/src/libalf/libalf_interfaces/jalf/src/jni_algorithm_kearns_vazirani.cpp | adiojha629/JIRP_LRM | a06e3725a8f4f406a100d2a4c2c69d4e9450a2d3 | [
"MIT"
] | 2 | 2021-09-22T13:02:55.000Z | 2021-11-08T19:16:55.000Z | active16/src/libalf/libalf_interfaces/jalf/src/jni_algorithm_kearns_vazirani.cpp | adiojha629/JIRP_LRM | a06e3725a8f4f406a100d2a4c2c69d4e9450a2d3 | [
"MIT"
] | null | null | null | active16/src/libalf/libalf_interfaces/jalf/src/jni_algorithm_kearns_vazirani.cpp | adiojha629/JIRP_LRM | a06e3725a8f4f406a100d2a4c2c69d4e9450a2d3 | [
"MIT"
] | null | null | null | /* $Id: jni_algorithm_angluin.cpp 1081 2009-11-11 16:33:40Z davidpiegdon $
* vim: fdm=marker
*
* This file is part of libalf.
*
* libalf is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* libalf is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libalf. If not, see <http://www.gnu.org/licenses/>.
*
* (c) 2010 Lehrstuhl Softwaremodellierung und Verifikation (I2), RWTH Aachen University
* and Lehrstuhl Logik und Theorie diskreter Systeme (I7), RWTH Aachen University
* Author: Daniel Neider <neider@automata.rwth-aachen.de>
*
*/
#include <iostream>
#include <libalf/knowledgebase.h>
#include <libalf/learning_algorithm.h>
#include <libalf/algorithm_kearns_vazirani.h>
#include <jni.h>
#include "jni_algorithm_kearns_vazirani.h"
using namespace std;
using namespace libalf;
JNIEXPORT jlong JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_init__JI (JNIEnv *env, jobject obj, jlong knowledgebase_pointer, jint alphabet_size) {
// Get the knowledgebase object
knowledgebase<bool> *base = (knowledgebase<bool>*) knowledgebase_pointer;
/*
* Return the new object
*/
learning_algorithm<bool>* algorithm = new kearns_vazirani<bool>(base, NULL, alphabet_size, true);
return ((jlong)algorithm);
}
JNIEXPORT jlong JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_init__JIJ (JNIEnv *env, jobject obj, jlong knowledgebase_pointer, jint alphabet_size, jlong logger_pointer) {
// Get the knowledgebase object
knowledgebase<bool> *base = (knowledgebase<bool>*) knowledgebase_pointer;
// Get the logger object
buffered_logger *logger = (buffered_logger*) logger_pointer;
/*
* Return the new object
*/
learning_algorithm<bool>* algorithm = new kearns_vazirani<bool>(base, logger, alphabet_size, true);
return ((jlong)algorithm);
}
JNIEXPORT jlong JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_init__JIZ (JNIEnv *env, jobject obj, jlong knowledgebase_pointer, jint alphabet_size, jboolean use_binary_search) {
// Get the knowledgebase object
knowledgebase<bool> *base = (knowledgebase<bool>*) knowledgebase_pointer;
/*
* Return the new object
*/
learning_algorithm<bool>* algorithm = new kearns_vazirani<bool>(base, NULL, alphabet_size, use_binary_search);
return ((jlong)algorithm);
}
JNIEXPORT jlong JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_init__JIJZ (JNIEnv *env, jobject obj, jlong knowledgebase_pointer, jint alphabet_size, jlong logger_pointer, jboolean use_binary_search) {
// Get the knowledgebase object
knowledgebase<bool> *base = (knowledgebase<bool>*) knowledgebase_pointer;
// Get the logger object
buffered_logger *logger = (buffered_logger*) logger_pointer;
/*
* Return the new object
*/
learning_algorithm<bool>* algorithm = new kearns_vazirani<bool>(base, logger, alphabet_size, use_binary_search);
return ((jlong)algorithm);
}
JNIEXPORT jint JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_get_1inner_1node_1count (JNIEnv *env, jobject obj, jlong pointer) {
// Get the algorithm object
kearns_vazirani<bool>* algorithm = (kearns_vazirani<bool>*)pointer;
// Forward method call
return algorithm->get_inner_node_count();
}
JNIEXPORT jint JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_get_1leaf_1node_1count (JNIEnv *env, jobject obj, jlong pointer) {
// Get the algorithm object
kearns_vazirani<bool>* algorithm = (kearns_vazirani<bool>*)pointer;
// Forward method call
return algorithm->get_leaf_node_count();
}
JNIEXPORT jboolean JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_uses_1binary_1search (JNIEnv *env, jobject obj, jlong pointer) {
// Get the algorithm object
kearns_vazirani<bool>* algorithm = (kearns_vazirani<bool>*)pointer;
// Forward method call
return algorithm->uses_binary_search();
}
JNIEXPORT void JNICALL Java_de_libalf_jni_JNIAlgorithmKearnsVazirani_set_1binary_1search (JNIEnv *env, jobject obj, jlong pointer, jboolean use_binary_search) {
// Get the algorithm object
kearns_vazirani<bool>* algorithm = (kearns_vazirani<bool>*)pointer;
// Forward method call
return algorithm->set_binary_search(use_binary_search);
}
| 38.1 | 208 | 0.783902 | adiojha629 |
5a669cb970f23e3dc4e79c2350eaf2177bf271a6 | 36 | cpp | C++ | src/lib/universal_include.cpp | abainbridge/trex-warrior | fac95802ce7efd8dc9c50f915ce8d5891f545640 | [
"BSD-2-Clause"
] | null | null | null | src/lib/universal_include.cpp | abainbridge/trex-warrior | fac95802ce7efd8dc9c50f915ce8d5891f545640 | [
"BSD-2-Clause"
] | null | null | null | src/lib/universal_include.cpp | abainbridge/trex-warrior | fac95802ce7efd8dc9c50f915ce8d5891f545640 | [
"BSD-2-Clause"
] | null | null | null | #include "lib/universal_include.h"
| 18 | 35 | 0.777778 | abainbridge |
5a6a1c2975c6531dff0687018ae8062dd9ace258 | 1,354 | hpp | C++ | include/utility/container/helper/in_place_t.hpp | SakuraLife/utility | b9bf26198917b6dc415520f74eb3eebf8aa8195e | [
"Unlicense"
] | 2 | 2017-12-10T10:59:48.000Z | 2017-12-13T04:11:14.000Z | include/utility/container/helper/in_place_t.hpp | SakuraLife/utility | b9bf26198917b6dc415520f74eb3eebf8aa8195e | [
"Unlicense"
] | null | null | null | include/utility/container/helper/in_place_t.hpp | SakuraLife/utility | b9bf26198917b6dc415520f74eb3eebf8aa8195e | [
"Unlicense"
] | null | null | null |
#ifndef __UTILITY_CONTAINER_HELPER_IN_PLACE_T__
#define __UTILITY_CONTAINER_HELPER_IN_PLACE_T__
/**
* \file ignore_t.hpp
* \author Inochi Amaoto
*
*/
#include<utility/config/utility_config.hpp>
#include<utility/trait/trait_helper.hpp>
namespace utility
{
namespace container
{
namespace helper
{
struct in_place_t
{ explicit in_place_t() = default;};
__UTILITY_CPP17_INLINE__
constexpr in_place_t in_place{};
template<typename _T>
struct in_place_type_t
{ explicit in_place_type_t() = default;};
#ifndef __UTILITY_NO_CPP14__
template<typename _T>
__UTILITY_CPP17_INLINE__
constexpr in_place_type_t<_T> in_place_type{};
#endif // ! __UTILITY_NO_CPP14__
template<size_t _I>
struct in_place_index_t
{ explicit in_place_index_t() = default;};
#ifndef __UTILITY_NO_CPP14__
template<size_t _I>
__UTILITY_CPP17_INLINE__
constexpr in_place_index_t<_I> in_place_index{};
#endif // ! __UTILITY_NO_CPP14__
} // helper
namespace helper_traits
{
template<typename _T>
struct is_in_place_type: public trait::false_type
{ };
template<typename _T>
struct is_in_place_type<helper::in_place_type_t<_T>>: public trait::true_type
{ };
}
}
}
#endif // ! __UTILITY_CONTAINER_HELPER_IN_PLACE_T__
| 21.492063 | 84 | 0.70384 | SakuraLife |
5a6bba96e35124ac92ce3b4f4a40e291e65d674f | 1,591 | cpp | C++ | data/train/cpp/469397c48114ed209f7e63666c457ceb0a48a171StreamInterface.cpp | harshp8l/deep-learning-lang-detection | 2a54293181c1c2b1a2b840ddee4d4d80177efb33 | [
"MIT"
] | 84 | 2017-10-25T15:49:21.000Z | 2021-11-28T21:25:54.000Z | data/train/cpp/469397c48114ed209f7e63666c457ceb0a48a171StreamInterface.cpp | vassalos/deep-learning-lang-detection | cbb00b3e81bed3a64553f9c6aa6138b2511e544e | [
"MIT"
] | 5 | 2018-03-29T11:50:46.000Z | 2021-04-26T13:33:18.000Z | data/train/cpp/469397c48114ed209f7e63666c457ceb0a48a171StreamInterface.cpp | vassalos/deep-learning-lang-detection | cbb00b3e81bed3a64553f9c6aa6138b2511e544e | [
"MIT"
] | 24 | 2017-11-22T08:31:00.000Z | 2022-03-27T01:22:31.000Z | /////////////////////////////////////////////////////////////
/** @file StreamInterface.cpp
* @ingroup Utils
*
* @author Luk2010
* @version 0.1A
*
* @date 04/01/2013 - 23/03/2014
*
* Implements the Streams class.
*
**/
/////////////////////////////////////////////////////////////
#include "StreamInterface.h"
namespace APro
{
CursorStream::CursorStream()
{
}
CursorStream::~CursorStream()
{
}
bool CursorStream::operator bool() const
{
return !isEOS();
}
size_t CursorStream::size()
{
size_t _p, _ret;
_p = tell();
seek(0, CP_END);
_ret = tell();
seek(_p, CP_BEGIN);
return ret;
}
InputStream::InputStream()
: CursorStream()
{
}
InputStream::~CursorStream()
{
}
InputStream& InputStream::operator >> (String& str)
{
readWord(str);
return *this;
}
InputStream& InputStream::operator >> (Real& r)
{
readReal(r);
return *this;
}
InputStream& InputStream::operator >> (int& i)
{
readInt(i);
return *this;
}
OutputStream::OutputStream()
{
}
OutputStream::~OutputStream()
{
}
OutputStream& OutputStream::operator << (const String& str)
{
write(str);
return *this;
}
OutputStream& OutputStream::operator << (const Real& r)
{
write(r);
return *this;
}
OutputStream& OutputStream::operator << (const int& i)
{
write(i);
return *this;
}
}
| 15.598039 | 63 | 0.478944 | harshp8l |
5a6dac2ed132145899c82aff673bf5521101c34d | 2,484 | cpp | C++ | src/event.cpp | jaykang920/x2boost | 2a1160b7f840b7ceea6b18e61603ab4e0ce7a94c | [
"MIT"
] | null | null | null | src/event.cpp | jaykang920/x2boost | 2a1160b7f840b7ceea6b18e61603ab4e0ce7a94c | [
"MIT"
] | null | null | null | src/event.cpp | jaykang920/x2boost | 2a1160b7f840b7ceea6b18e61603ab4e0ce7a94c | [
"MIT"
] | null | null | null | // Copyright (c) 2014-2017 Jae-jun Kang
// See the file LICENSE for details.
#include "x2boost/event.hpp"
#include <boost/functional/hash.hpp>
#include <boost/thread/once.hpp>
#include "x2boost/deserializer.hpp"
#include "x2boost/event_factory.hpp"
#include "x2boost/serializer.hpp"
using namespace x2boost;
namespace
{
event::tag event_tag;
boost::once_flag event_once = BOOST_ONCE_INIT;
void event_init()
{
event_tag.set(NULL, 1, 0);
}
struct static_event_initializer
{
static_event_initializer()
{
event_factory::enroll(0, event::_new);
}
};
static_event_initializer static_event_init;
}
bool event::_equals(const cell& other) const
{
if (!cell::_equals(other))
{
return false;
}
const event& o = static_cast<const event&>(other);
if (_handle_ != o._handle_)
{
return false;
}
return true;
}
bool event::_equivalent(const cell& other) const
{
if (!cell::_equivalent(other))
{
return false;
}
const event& o = static_cast<const event&>(other);
if (fingerprint_[_tag()->offset() + 0])
{
if (_handle_ != o._handle_)
{
return false;
}
}
return true;
}
std::size_t event::_hash_code() const
{
return _hash_code(fingerprint_, _type_id());
}
std::size_t event::_hash_code(const fingerprint& fp) const
{
std::size_t value = cell::_hash_code(fp);
if (fp[_tag()->offset() + 0])
{
boost::hash_combine(value, _handle_);
}
return value;
}
std::size_t event::_hash_code(const fingerprint& fp, boost::int32_t type_id) const
{
std::size_t value = 17;
boost::hash_combine(value, _hash_code(fp));
boost::hash_combine(value, type_id);
return value;
}
const event::tag* event::_tag()
{
boost::call_once(event_init, event_once);
return &event_tag;
}
const cell::tag* event::_type_tag() const
{
return _tag();
}
void event::_describe(std::ostringstream& /*oss*/) const
{
return;
}
void event::_deserialize(deserializer& deserializer)
{
cell::_deserialize(deserializer);
}
int event::_get_encoded_length() const
{
int length = serializer::get_encoded_length((boost::int32_t)_type_id());
length += cell::_get_encoded_length();
return length;
}
void event::_serialize(serializer& serializer) const
{
serializer.write((boost::int32_t)_type_id());
cell::_serialize(serializer);
}
// EOF event.cpp
| 20.032258 | 82 | 0.646135 | jaykang920 |
5a6f5388a2fccc8bc1c1b26effb8ed7388b6643e | 8,267 | cpp | C++ | Source/Platform/String.cpp | Hork-Engine/Hork-Source | 1670e7b04dcfd28d6efdcae06a30c00e303be28f | [
"MIT"
] | 17 | 2022-01-31T07:43:06.000Z | 2022-03-29T10:30:25.000Z | Source/Platform/String.cpp | Hork-Engine/Hork-Source | 1670e7b04dcfd28d6efdcae06a30c00e303be28f | [
"MIT"
] | 2 | 2022-02-06T14:46:40.000Z | 2022-02-08T09:46:54.000Z | Source/Platform/String.cpp | Hork-Engine/Hork-Source | 1670e7b04dcfd28d6efdcae06a30c00e303be28f | [
"MIT"
] | 1 | 2022-02-15T08:23:23.000Z | 2022-02-15T08:23:23.000Z | /*
Hork Engine Source Code
MIT License
Copyright (C) 2017-2022 Alexander Samusev.
This file is part of the Hork Engine Source Code.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <Platform/String.h>
#include <Platform/Memory/Memory.h>
#define STB_SPRINTF_IMPLEMENTATION
#define STB_SPRINTF_STATIC
#include "stb_sprintf.h"
namespace Platform
{
int Stricmp(const char* _S1, const char* _S2)
{
char c1, c2;
HK_ASSERT(_S1 && _S2);
do {
c1 = *_S1++;
c2 = *_S2++;
if (c1 != c2)
{
if (c1 >= 'a' && c1 <= 'z')
{
c1 -= ('a' - 'A');
}
if (c2 >= 'a' && c2 <= 'z')
{
c2 -= ('a' - 'A');
}
if (c1 != c2)
{
return (int)((uint8_t)c1 - (uint8_t)c2);
}
}
} while (c1);
return 0;
}
int StricmpN(const char* _S1, const char* _S2, int _Num)
{
char c1, c2;
HK_ASSERT(_S1 && _S2 && _Num >= 0);
do {
if (!_Num--)
{
return 0;
}
c1 = *_S1++;
c2 = *_S2++;
if (c1 != c2)
{
if (c1 >= 'a' && c1 <= 'z')
{
c1 -= ('a' - 'A');
}
if (c2 >= 'a' && c2 <= 'z')
{
c2 -= ('a' - 'A');
}
if (c1 != c2)
{
return (int)((uint8_t)c1 - (uint8_t)c2);
}
}
} while (c1);
return 0;
}
int Strcmp(const char* _S1, const char* _S2)
{
HK_ASSERT(_S1 && _S2);
while (*_S1 == *_S2)
{
if (!*_S1)
{
return 0;
}
_S1++;
_S2++;
}
return (int)((uint8_t)*_S1 - (uint8_t)*_S2);
}
int StrcmpN(const char* _S1, const char* _S2, int _Num)
{
char c1, c2;
HK_ASSERT(_S1 && _S2 && _Num >= 0);
do {
if (!_Num--)
{
return 0;
}
c1 = *_S1++;
c2 = *_S2++;
if (c1 != c2)
{
return (int)((uint8_t)c1 - (uint8_t)c2);
}
} while (c1);
return 0;
}
int Sprintf(char* _Buffer, size_t _Size, const char* _Format, ...)
{
int result;
va_list va;
va_start(va, _Format);
result = stbsp_vsnprintf(_Buffer, _Size, _Format, va);
va_end(va);
return result;
}
int VSprintf(char* _Buffer, size_t _Size, const char* _Format, va_list _VaList)
{
HK_ASSERT(_Buffer && _Format);
return stbsp_vsnprintf(_Buffer, _Size, _Format, _VaList);
}
char* Fmt(const char* _Format, ...)
{
HK_ASSERT(_Format);
thread_local static char String[4][16384];
thread_local static int Index = 0;
va_list VaList;
Index = (Index + 1) & 3; // for nested calls
va_start(VaList, _Format);
stbsp_vsnprintf(String[Index], sizeof(String[0]), _Format, VaList);
va_end(VaList);
return String[Index];
}
void Strcat(char* _Dest, size_t _Size, const char* _Src)
{
if (!_Dest || !_Src)
{
return;
}
//#ifdef HK_COMPILER_MSVC
// strcat_s( _Dest, _Size, _Src );
//#else
size_t destLength = Strlen(_Dest);
if (destLength >= _Size)
{
return;
}
Strcpy(_Dest + destLength, _Size - destLength, _Src);
//#endif
}
void StrcatN(char* _Dest, size_t _Size, const char* _Src, int _Num)
{
if (!_Dest || !_Src)
{
return;
}
size_t destLength = Strlen(_Dest);
if (destLength >= _Size)
{
return;
}
int len = Strlen(_Src);
if (len > _Num)
{
len = _Num;
}
StrcpyN(_Dest + destLength, _Size - destLength, _Src, _Num);
}
void Strcpy(char* _Dest, size_t _Size, const char* _Src)
{
if (!_Dest)
{
return;
}
if (!_Src)
{
_Src = "";
}
//#ifdef HK_COMPILER_MSVC
// strcpy_s( _Dest, _Size, _Src );
//#else
if (_Size > 0)
{
while (*_Src && --_Size != 0)
{
*_Dest++ = *_Src++;
}
*_Dest = 0;
}
//#endif
}
void StrcpyN(char* _Dest, size_t _Size, const char* _Src, int _Num)
{
if (!_Dest)
{
return;
}
if (!_Src)
{
_Src = "";
}
//#ifdef HK_COMPILER_MSVC
// strncpy_s( _Dest, _Size, _Src, _Num );
//#else
if (_Size > 0 && _Num > 0)
{
while (*_Src && --_Size != 0 && --_Num != -1)
{
*_Dest++ = *_Src++;
}
*_Dest = 0;
}
//#endif
}
char* ToLower(char* _Str)
{
char* p = _Str;
if (p)
{
while (*p)
{
*p = ::tolower(*p);
p++;
}
}
return _Str;
}
char ToLower(char Ch)
{
return ::tolower(Ch);
}
char* ToUpper(char* _Str)
{
char* p = _Str;
if (p)
{
while (*p)
{
*p = ::toupper(*p);
p++;
}
}
return _Str;
}
char ToUpper(char Ch)
{
return ::toupper(Ch);
}
int Strlen(const char* _Str)
{
if (!_Str)
{
return 0;
}
const char* p = _Str;
while (*p)
{
p++;
}
return p - _Str;
//return (int)strlen( _Str );
}
int StrContains(const char* _String, char _Ch)
{
if (_String)
{
for (const char* s = _String; *s; s++)
{
if (*s == _Ch)
{
return s - _String;
}
}
}
return -1;
}
int Substring(const char* _Str, const char* _SubStr)
{
if (!_Str || !_SubStr)
{
return -1;
}
const char* s = strstr(_Str, _SubStr);
if (!s)
{
return -1;
}
return (int)(s - _Str);
}
int SubstringIcmp(const char* _Str, const char* _SubStr)
{
if (!_Str || !_SubStr)
{
return -1;
}
const char* s = _Str;
int length = Strlen(_SubStr);
while (*s)
{
if (StricmpN(s, _SubStr, length) == 0)
{
return (int)(s - _Str);
}
++s;
}
return -1;
}
uint32_t HexToUInt32(const char* _Str, int _Len)
{
uint32_t value = 0;
if (!_Str)
{
return 0;
}
for (int i = std::max(0, _Len - 8); i < _Len; i++)
{
uint32_t ch = _Str[i];
if (ch >= 'A' && ch <= 'F')
{
value = (value << 4) + ch - 'A' + 10;
}
else if (ch >= 'a' && ch <= 'f')
{
value = (value << 4) + ch - 'a' + 10;
}
else if (ch >= '0' && ch <= '9')
{
value = (value << 4) + ch - '0';
}
else
{
return value;
}
}
return value;
}
uint64_t HexToUInt64(const char* _Str, int _Len)
{
uint64_t value = 0;
if (!_Str)
{
return 0;
}
for (int i = std::max(0, _Len - 16); i < _Len; i++)
{
uint64_t ch = _Str[i];
if (ch >= 'A' && ch <= 'F')
{
value = (value << 4) + ch - 'A' + 10;
}
else if (ch >= 'a' && ch <= 'f')
{
value = (value << 4) + ch - 'a' + 10;
}
else if (ch >= '0' && ch <= '9')
{
value = (value << 4) + ch - '0';
}
else
{
return value;
}
}
return value;
}
} // namespace Platform
| 18.961009 | 79 | 0.477803 | Hork-Engine |
5a7101e2844fbc9e66964710842291a84c9e091d | 4,022 | cpp | C++ | Project1.cpp | TomasOchoa/CSCI-261-Project1-SimpleFileProcessing | a3413ee5b404944a2e4ea9204c35ad252f899e84 | [
"MIT"
] | null | null | null | Project1.cpp | TomasOchoa/CSCI-261-Project1-SimpleFileProcessing | a3413ee5b404944a2e4ea9204c35ad252f899e84 | [
"MIT"
] | null | null | null | Project1.cpp | TomasOchoa/CSCI-261-Project1-SimpleFileProcessing | a3413ee5b404944a2e4ea9204c35ad252f899e84 | [
"MIT"
] | null | null | null | // CSCI 216 Fundamentals of Programming II Spring 2015
// Program #1: Getting started
// Author: Tomas Ochoa
// Date Due: 26 January 2015
//
// This object of this program is to do some simple file processing. The program will first
// ask the user to input a file name. If it doesn't exist it will continue to ask the user
// to enter a file name until one that exists is found or exited manually. The program then
// takes the first and last number in the file and finds the average between them. The results
// are then printed
//neccearry header files
#include <iostream>
#include <fstream>
#include <iomanip>
using namespace std;
int main()
{
//Declaration for the file object and name of the file
//user wants
fstream dataFile;
char name[50];
//gets the name of the file the user wants
cout << "What file should I use? ";
cin >> name;
dataFile.open(name, ios::in || ios::binary);
//Check if it exists
//If it doesnt exist keep asking user for a correct file
if (dataFile.fail())
{
do
{
cout << "That file does not exist!" << endl
<< endl
<< "What file should I use? ";
cin >> name;
dataFile.open(name, ios::in | ios::binary);
} while (dataFile.fail());
}
//Declaration for variables needed to see how many
//items are in the file. Set to one because we automatically
//take the first item before loop, which would then not account
//for it
int itemCount = 1;
//Variables for the first and last number
double firstNum = 0,
lastNum = 0;
//Variable to store the average of the first and second number
double avg = 0;
//since we're already at the beggining of the file, simply set
//firstNum to the first item of the file
dataFile >> firstNum;
//This loop counts the number of items in the file
while (!dataFile.eof())
{
//Everytime the loop iterates the variable lastNum changes acording
//to the current iteration. By the time its at the end of the file, the
//lastNum will be set to the last number in the file, which is what we
//want
dataFile >> lastNum;
itemCount++;
}
//Once reached to this point clear the screen for better legibility
system("CLS");
//calculate the avg
avg = ((firstNum + lastNum) / 2);
//displays the info
cout << "For the file " << name << endl
<< endl
<< "There are " << itemCount << " numbers in the file" << endl
<< "The first number is: " << firstNum << endl
<< "The last number is: " << lastNum << endl
<< "The average of the two is: " << setprecision(8) << avg << endl;
//Close the file
dataFile.close();
system("Pause");
return 0;
}
/*
***********************************************************
IF "data1.txt" IS INPUTED:
***********************************************************
For the file data1.txt
There are 10000 numbers in the file
The first number is: 195650
The last number is: 887747
The average of the two is: 541698.5
Press any key to continue...
***********************************************************
IF DIFFERENT THINGS RATHER THAN AN EXISTING FILE
IS INPUTEDID:
***********************************************************
What File should I use? sdasd
That file does not exist!
What File should I use? data
That file does not exist!
What File should I use? data7.txt
That file does not exist!
What File should I use? data1
That file does not exist!
What file should I use?
(will continue to ask unless a file exists or closed manually)
************************************************************
IF "data3.txt" IS INPUTED:
***********************************************************
For the file data3.txt
There are 100000 numbers in the file
The first number is: 195650
The last number is: 922741
The average of the two is: 559195.5
Press any key to continue...
*/
| 28.323944 | 95 | 0.58901 | TomasOchoa |
5a72682a7ae8be6fabc274a1d8efa6a2371a9390 | 96 | cpp | C++ | src/examples/06_module/02_shapes/circle.cpp | acc-cosc-1337-spring-2021/acc-cosc-1337-spring-2021-willcastl3 | 47a99259ea78662bd61a7f3390c8d59e004179e3 | [
"MIT"
] | null | null | null | src/examples/06_module/02_shapes/circle.cpp | acc-cosc-1337-spring-2021/acc-cosc-1337-spring-2021-willcastl3 | 47a99259ea78662bd61a7f3390c8d59e004179e3 | [
"MIT"
] | null | null | null | src/examples/06_module/02_shapes/circle.cpp | acc-cosc-1337-spring-2021/acc-cosc-1337-spring-2021-willcastl3 | 47a99259ea78662bd61a7f3390c8d59e004179e3 | [
"MIT"
] | 1 | 2021-05-25T20:20:15.000Z | 2021-05-25T20:20:15.000Z | //circle.cpp
#include "circle.h"
using std::cout;
void Circle::draw()
{
cout<<"Circle\n";
} | 12 | 21 | 0.625 | acc-cosc-1337-spring-2021 |
5a77c92d07cdc42e7f340155d5922230aa50d47a | 4,199 | cpp | C++ | ofxTweener/src/ofxTweener.cpp | itsukichang/vacuuuum | 9bb8605270d3da1acc6901287f9d08fc31119d87 | [
"MIT"
] | null | null | null | ofxTweener/src/ofxTweener.cpp | itsukichang/vacuuuum | 9bb8605270d3da1acc6901287f9d08fc31119d87 | [
"MIT"
] | null | null | null | ofxTweener/src/ofxTweener.cpp | itsukichang/vacuuuum | 9bb8605270d3da1acc6901287f9d08fc31119d87 | [
"MIT"
] | null | null | null | /*
* ofxTweener.cpp
* openFrameworks
*
* Created by Sander ter Braak on 26-08-10.
*
*/
#include "ofxTweener.h"
ofxTweener Tweener;
ofxTweener::ofxTweener(){
_scale = 1;
setMode(TWEENMODE_OVERRIDE);
}
void ofxTweener::addTween(float &var, float to, float time, void (^callback)(float * arg)){
addTween(var,to,time, &ofxTransitions::easeOutExpo ,0,0,false, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), void (^callback)(float * arg)){
addTween(var,to,time,ease,0,0,false, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), float delay, void (^callback)(float * arg)){
addTween(var,to,time,ease,delay,0,false, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), float delay, float bezierPoint, void (^callback)(float * arg)){
addTween(var,to,time,ease,delay, bezierPoint, true, callback);
}
void ofxTweener::addTween(float &var, float to, float time, float (ofxTransitions::*ease) (float,float,float,float), float delay, float bezierPoint, bool useBezier, void (^callback)(float * arg)){
float from = var;
float _delay = delay;
Poco::Timestamp latest = 0;
for(int i = 0; i < tweens.size(); ++i){
if(tweens[i]._var == &var) {
// object already tweening, just kill the old one
if(_override){
tweens[i]._from = from;
tweens[i]._to = to;
tweens[i]._by = bezierPoint;
tweens[i]._useBezier = useBezier;
tweens[i]._easeFunction = ease;
tweens[i]._timestamp = Poco::Timestamp() + ((delay / _scale) * 1000000.0f) ;
tweens[i]._duration = (time / _scale) * 1000000.0f;
return;
}
else {
//sequence mode
if((tweens[i]._timestamp + tweens[i]._duration) > latest){
latest = (tweens[i]._timestamp + tweens[i]._duration);
delay = _delay + ((tweens[i]._duration - tweens[i]._timestamp.elapsed())/1000000.0f);
from = tweens[i]._to;
}
}
}
}
Tween t;
t._var = &var;
t._from = from;
t._to = to;
t._by = bezierPoint;
t._useBezier = useBezier;
t._easeFunction = ease;
t._timestamp = Poco::Timestamp() + ((delay / _scale) * 1000000.0f) ;
t._duration = (time / _scale) * 1000000.0f;
tweens.push_back(t);
if (callback!=NULL) callbacks[t._var] = callback;
}
void ofxTweener::update(){
for(int i = tweens.size() -1; i >= 0; --i){
if(float(tweens[i]._timestamp.elapsed()) >= float(tweens[i]._duration)){
//tween is done
bool found = false;
if(!_override){
//if not found anymore, place on exact place
for(int j = 0; j < tweens.size(); ++j){
if(tweens[j]._var == tweens[i]._var) {
found = true;
break;
}
}
}
if(!found) tweens[i]._var[0] = tweens[i]._to;
map<float *,void (^)(float * arg)>::iterator it = callbacks.find(tweens[i]._var);
if(it != callbacks.end()) {
it->second(tweens[i]._var);
callbacks.erase(it);
}
tweens.erase(tweens.begin() + i);
}
else if(float(tweens[i]._timestamp.elapsed()) > 0){
//smaller than 0 would be delayed
if(tweens[i]._useBezier) tweens[i]._var[0] = bezier(tweens[i]._from, tweens[i]._to ,(a.*tweens[i]._easeFunction )(float(tweens[i]._timestamp.elapsed()), 0, 1, float(tweens[i]._duration)), tweens[i]._by);
else tweens[i]._var[0] = (a.*tweens[i]._easeFunction )(float(tweens[i]._timestamp.elapsed()), tweens[i]._from, tweens[i]._to - tweens[i]._from, float(tweens[i]._duration));
}
}
}
void ofxTweener::removeTween(float &var){
for(int i = 0; i < tweens.size(); i++){
if(tweens[i]._var == &var) {
// tween found, erase it
tweens.erase(tweens.begin() + i);
return;
}
}
}
float ofxTweener::bezier(float b, float e, float t, float p){
return b + t*(2*(1-t)*(p-b) + t*(e - b));
}
void ofxTweener::removeAllTweens(){
tweens.clear();
}
void ofxTweener::setMode(int mode){
_override = (mode == TWEENMODE_OVERRIDE);
}
int ofxTweener::getTweenCount(){
return int(tweens.size());
}
void ofxTweener::setTimeScale(float scale){
_scale = scale;
}
| 30.208633 | 206 | 0.637056 | itsukichang |
5a7821bce812b57e30493eaad57b046a6b4320a8 | 319 | cpp | C++ | test/io.cpp | victorrseloy/JSCPP-LIVE-REPL | 941b5fd787b05e7ff18327a982b0a225ebfba70f | [
"MIT"
] | 773 | 2015-05-26T23:51:00.000Z | 2022-03-12T13:39:09.000Z | test/io.cpp | victorrseloy/JSCPP-LIVE-REPL | 941b5fd787b05e7ff18327a982b0a225ebfba70f | [
"MIT"
] | 128 | 2015-03-28T09:11:26.000Z | 2022-03-11T09:14:28.000Z | test/io.cpp | victorrseloy/JSCPP-LIVE-REPL | 941b5fd787b05e7ff18327a982b0a225ebfba70f | [
"MIT"
] | 74 | 2015-06-16T08:44:49.000Z | 2022-02-22T18:48:58.000Z | #include "iostream"
#include "iomanip"
using namespace std;
int main() {
double f = 3.14159;
cout << setprecision(5) << f << '\n';
cout << setprecision(9) << f << '\n';
cout << fixed;
cout << setprecision(5) << f << '\n';
cout << setprecision(9) << f << '\n';
cout << setw(15) << f << '\n';
return 0;
} | 22.785714 | 39 | 0.532915 | victorrseloy |
5a7921f5c48252f44f0dcb2adfe8895fe89dcca0 | 189 | cpp | C++ | mod01/ex05/main.cpp | paozer/piscine_cpp | 449d4a60b3c50c7ba6d94e38a7b632b5f447a438 | [
"Unlicense"
] | null | null | null | mod01/ex05/main.cpp | paozer/piscine_cpp | 449d4a60b3c50c7ba6d94e38a7b632b5f447a438 | [
"Unlicense"
] | null | null | null | mod01/ex05/main.cpp | paozer/piscine_cpp | 449d4a60b3c50c7ba6d94e38a7b632b5f447a438 | [
"Unlicense"
] | 2 | 2021-01-31T13:52:11.000Z | 2021-05-19T18:36:17.000Z | #include <iostream>
#include "Human.hpp"
int main()
{
Human bob;
std::cout << bob.identity() << std::endl;
std::cout << bob.getBrain().identity() << std::endl;
return 0;
}
| 17.181818 | 56 | 0.582011 | paozer |
5a798feffd0da4d3021a49dd4b74f077919dffa2 | 5,576 | cpp | C++ | implementations/ugene/src/corelibs/U2Lang/src/model/ExternalToolCfg.cpp | r-barnes/sw_comparison | 1ac2c9cc10a32badd6b8fb1e96516c97f7800176 | [
"BSD-Source-Code"
] | null | null | null | implementations/ugene/src/corelibs/U2Lang/src/model/ExternalToolCfg.cpp | r-barnes/sw_comparison | 1ac2c9cc10a32badd6b8fb1e96516c97f7800176 | [
"BSD-Source-Code"
] | null | null | null | implementations/ugene/src/corelibs/U2Lang/src/model/ExternalToolCfg.cpp | r-barnes/sw_comparison | 1ac2c9cc10a32badd6b8fb1e96516c97f7800176 | [
"BSD-Source-Code"
] | null | null | null | /**
* UGENE - Integrated Bioinformatics Tools.
* Copyright (C) 2008-2020 UniPro <ugene@unipro.ru>
* http://ugene.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#include <U2Core/BaseDocumentFormats.h>
#include <U2Lang/BaseTypes.h>
#include <U2Lang/ExternalToolCfg.h>
namespace U2 {
const DocumentFormatId DataConfig::STRING_VALUE = DocumentFormatId("string-value");
const DocumentFormatId DataConfig::OUTPUT_FILE_URL = DocumentFormatId("output-file-url");
bool DataConfig::isStringValue() const {
return (BaseTypes::STRING_TYPE()->getId() == type) && (STRING_VALUE == format);
}
bool DataConfig::isFileUrl() const {
return (OUTPUT_FILE_URL == format);
}
bool DataConfig::isSequence() const {
return (BaseTypes::DNA_SEQUENCE_TYPE()->getId() == type);
}
bool DataConfig::isAnnotations() const {
return (BaseTypes::ANNOTATION_TABLE_TYPE()->getId() == type);
}
bool DataConfig::isAnnotatedSequence() const {
return (SEQ_WITH_ANNS == type);
}
bool DataConfig::isAlignment() const {
return (BaseTypes::MULTIPLE_ALIGNMENT_TYPE()->getId() == type);
}
bool DataConfig::isText() const {
return (BaseTypes::STRING_TYPE()->getId() == type) && (BaseDocumentFormats::PLAIN_TEXT == format);
}
bool DataConfig::operator==(const DataConfig &other) const {
return attributeId == other.attributeId && attrName == other.attrName && type == other.type && format == other.format && description == other.description;
}
const QString AttributeConfig::NUMBER_DEPRECATED_TYPE = "Number";
const QString AttributeConfig::URL_DEPRECATED_TYPE = "URL";
const QString AttributeConfig::BOOLEAN_TYPE = "Boolean";
const QString AttributeConfig::STRING_TYPE = "String";
const QString AttributeConfig::INTEGER_TYPE = "Integer";
const QString AttributeConfig::DOUBLE_TYPE = "Double";
const QString AttributeConfig::INPUT_FILE_URL_TYPE = "Input_file_URL";
const QString AttributeConfig::OUTPUT_FILE_URL_TYPE = "Output_file_URL";
const QString AttributeConfig::INPUT_FOLDER_URL_TYPE = "Input_dir_URL";
const QString AttributeConfig::OUTPUT_FOLDER_URL_TYPE = "Output_dir_URL";
AttributeConfig::AttributeConfig()
: flags(None) {
}
void AttributeConfig::fixTypes() {
if (type == URL_DEPRECATED_TYPE) {
type = INPUT_FILE_URL_TYPE;
} else if (type == NUMBER_DEPRECATED_TYPE) {
type = STRING_TYPE;
}
}
bool AttributeConfig::isOutputUrl() const {
return type == OUTPUT_FILE_URL_TYPE || type == OUTPUT_FOLDER_URL_TYPE;
}
bool AttributeConfig::isFile() const {
return type == INPUT_FILE_URL_TYPE || type == OUTPUT_FILE_URL_TYPE;
}
bool AttributeConfig::isFolder() const {
return type == INPUT_FOLDER_URL_TYPE || type == OUTPUT_FOLDER_URL_TYPE;
}
bool AttributeConfig::operator==(const AttributeConfig &other) const {
return attributeId == other.attributeId && attrName == other.attrName && type == other.type && defaultValue == other.defaultValue && description == other.description && flags == other.flags;
}
ExternalProcessConfig::ExternalProcessConfig()
: useIntegratedTool(false) {
}
#define CHECK_EQ(expr1, expr2) \
if (!(expr1 == expr2)) { \
return false; \
}
bool ExternalProcessConfig::operator==(const ExternalProcessConfig &other) const {
CHECK_EQ(inputs.size(), other.inputs.size());
CHECK_EQ(outputs.size(), other.outputs.size());
CHECK_EQ(attrs.size(), other.attrs.size());
CHECK_EQ(cmdLine, other.cmdLine);
CHECK_EQ(id, other.id);
CHECK_EQ(name, other.name);
CHECK_EQ(description, other.description);
CHECK_EQ(templateDescription, other.templateDescription);
CHECK_EQ(useIntegratedTool, other.useIntegratedTool);
CHECK_EQ(customToolPath, other.customToolPath);
CHECK_EQ(integratedToolId, other.integratedToolId);
foreach (const DataConfig &in, inputs) {
CHECK_EQ(other.inputs.contains(in), true);
}
foreach (const DataConfig &out, outputs) {
CHECK_EQ(other.outputs.contains(out), true);
}
foreach (const AttributeConfig &at, attrs) {
CHECK_EQ(other.attrs.contains(at), true);
}
return true;
}
bool ExternalProcessConfig::operator!=(const ExternalProcessConfig &other) const {
return !operator==(other);
}
ExternalToolCfgRegistry::ExternalToolCfgRegistry(QObject *_parent)
: QObject(_parent) {
}
bool ExternalToolCfgRegistry::registerExternalTool(ExternalProcessConfig *cfg) {
if (configs.contains(cfg->id)) {
return false;
} else {
configs.insert(cfg->id, cfg);
return true;
}
}
void ExternalToolCfgRegistry::unregisterConfig(const QString &id) {
// TODO: UTI-294
configs.remove(id);
}
ExternalProcessConfig *ExternalToolCfgRegistry::getConfigById(const QString &id) const {
return configs.value(id, nullptr);
}
QList<ExternalProcessConfig *> ExternalToolCfgRegistry::getConfigs() const {
return configs.values();
}
} // namespace U2
| 32.8 | 194 | 0.725072 | r-barnes |
5a7a8fd8615ec69ed0acb0c456a9a617b264a834 | 11,651 | cpp | C++ | Examples/Example1/Example1.cpp | mpartio/MXADataModel | cfab4b41bca5c71d0ab16fb4f3ed3097093f0a57 | [
"BSD-3-Clause"
] | null | null | null | Examples/Example1/Example1.cpp | mpartio/MXADataModel | cfab4b41bca5c71d0ab16fb4f3ed3097093f0a57 | [
"BSD-3-Clause"
] | null | null | null | Examples/Example1/Example1.cpp | mpartio/MXADataModel | cfab4b41bca5c71d0ab16fb4f3ed3097093f0a57 | [
"BSD-3-Clause"
] | 1 | 2020-08-26T07:08:26.000Z | 2020-08-26T07:08:26.000Z | ///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2007, 2010 Michael A. Jackson for BlueQuartz Software
// All rights reserved.
// BSD License: http://www.opensource.org/licenses/bsd-license.html
//
// This code was written under United States Air Force Contract number
// FA8650-04-C-5229
//
///////////////////////////////////////////////////////////////////////////////
/**
* This example demonstrates the following:
* Programmitically Creating a Data Model
* Exporting the Model to an XML File
* Retrieving a list of the Data Dimensions
* Retrieving a list of the Data Records
* Saving the Model to an HDF5 File
* Writing some sample data to the HDF5 file
* Shows 2 different ways to get the value from a User Defined Meta Data Object
*/
//-- MXA Includes
#include "MXA/MXA.h"
#include <MXA/Common/MXATypeDefs.h>
#include <MXA/Common/LogTime.h>
#include <MXA/Core/MXADataDimension.h>
#include <MXA/Core/MXADataRecord.h>
#include <MXA/Core/MXADataModel.h>
#include "MXA/Core/MXADataModelWriter.hpp"
#include <MXA/HDF5/H5Lite.h>
#include <MXA/HDF5/H5Utilities.h>
#include <MXA/HDF5/H5MXAUtilities.h>
#include <MXA/HDF5/H5MXADataFile.h>
#include <MXA/DataWrappers/MXAArrayTemplate.hpp>
#include <MXA/XML/XMLFileUtilities.hpp>
#include <Examples/ExampleFileLocations.h>
// HDF5 Include
#include <hdf5.h>
// Declare methods
void listDataDimensions(MXADataModel* model);
void listDataRecords(MXADataModel* model);
void captureSampleImage(std::vector<uint8_t> &imageBuffer);
void listUserMetaData(IDataFile::Pointer dataFile);
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
int main(int argc, char **argv) {
std::cout << "Starting Example 1." << std::endl;
//Instatiate a new model using the predefined boost shared pointer type
MXADataModel::Pointer modelPtr = MXADataModel::New();
MXADataModel* model = modelPtr.get();
//Define at what path in the HDF5 file the data will be stored
model->setDataRoot("/Experimental Data");
//Instantiate 2 Data Dimensions
// The first dimension has 10 elements from 0 to 9 and increments by 1. Since this
// is the first dimension we give it an index of 0
int32_t index = 0;
int32_t count = 10;
int32_t start = 0;
int32_t end = 9;
int32_t increment = 1;
int32_t uniform = 1;
MXADataDimension::Pointer dim1 = MXADataDimension::New("Time", "Time (minutes)", index, count, start, end, increment, uniform);
// The second dimension will have 4 elements ranging from 2 to 8 with an increment of 2;
index = 1;
count = 4;
start = 200;
end = 800;
increment = 200;
uniform = 1;
MXADataDimension::Pointer dim2 = MXADataDimension::New("Pressure", "Press (kPa)", index, count, start, end, increment, uniform);
//Next we need to add these dimensions to the model. Since we are using Boost shared pointers
// the dimension objects are refcounted thus relieving us from having to worry about cleaning up
// the memory allocations
model->addDataDimension(dim1);
model->addDataDimension(dim2);
// Next we need to create a data record to hold one of the dependent variables for our experiment.
// In our sample experiment we are going to measure the temperature and record an image of the sample.
// The important argument is the 'luid' argument. These need to be unique within each group of Data Records.
MXADataRecord::Pointer temp = MXADataRecord::New(0, "Temperature" , "Temp (K)");
MXADataRecord::Pointer cameraImage = MXADataRecord::New(1, "Camera", "Camera Image");
// Next, add these Records to the Data Model
model->addDataRecord(temp);
model->addDataRecord(cameraImage);
//Lastly a certain number of meta data fields are required to be set to non-empty values
std::map<std::string, std::string> md;
md[MXA::MXA_CREATOR_TAG] = "Mike Jackson"; // Who is performing the experiment
md[MXA::MXA_DATE_TAG] = "2006:12:24 15:34.51"; // What date is the experiment being performed
md[MXA::MXA_DSET_NAME_TAG] = "Testing Data Import"; // Give this specific experiment a name or other identifying tag
md[MXA::MXA_DESCRIPTION_TAG] = "Application to test importing data to the data file"; // Give a short description of the experiment
md[MXA::MXA_PEDIGREE_TAG] = MXA::MXA_PEDIGREE_ORIGINAL_VALUE; // Is the data being stored original data or was it imported from another source?
md[MXA::MXA_DERIVED_SRC_TAG] = MXA::MXA_NOT_APPLICABLE_VALUE; // The data is original from the instrument so this tag is not needed
md[MXA::MXA_RIGHTS_TAG] = MXA::MXA_RIGHTS_UNLIMITED_VALUE; // There are no limitations on the distribution of the data
md[MXA::MXA_RELEASE_NUMBER_TAG] = "90312901291239012390"; // The Data has been through a local public affairs office which assigned the data this unique ID
model->setRequiredMetaData(md);
// So now our model should be valid. We can check the validity of the model with the following:
std::string message;
bool valid = model->isValid(message);
if ( !valid )
{
std::cout << "Model was NOT valid. Exiting with Failure. Error message given was: \n" << message << std::endl;
return EXIT_FAILURE;
}
// Add some user defined Meta Data to the model
float value = 12.234234f;
IMXAArray::Pointer umd = MXAArrayTemplate<float>::CreateSingleValueArray(value);
model->addUserMetaData("Float32 User Meta Data", umd);
int32_t iMDValue = 34212;
IMXAArray::Pointer iUmd = MXAArrayTemplate<int32_t>::CreateSingleValueArray(iMDValue);
model->addUserMetaData("Int32 User Meta Data", iUmd);
int32_t err = MXAXMLModelFileWriter::writeModel(modelPtr, Examples::Example1_XMLFile);
if (err < 0)
{
std::cout << "Error writing model to an xml file" << std::endl;
return -1;
}
// List the Data Dimensions of the model
listDataDimensions(model);
// List the Data Records in the model
listDataRecords(model);
//Write the model to a new HDF5 file, deleting any existing file and
// allowing the Hdf5 file to remain open for further processing
IDataFile::Pointer dataFile = H5MXADataFile::CreateFileWithModel(Examples::Example1File, modelPtr);
if (NULL == dataFile.get() )
{
std::cout << "Error Writing Model to HDF5 File" << std::endl;
return EXIT_FAILURE;
}
//List the User Meta Data
listUserMetaData(dataFile);
//Lets store some data into the HDF5 File. In our experiment we are recording the time
// in 1 minute intervals for 10 minutes and also incrementing the pressure by
// 200 KPa starting at 200 and ending at 800 KPa. At each combination of those
// values we are taking the temperature and capturing an image of our sample
hid_t fileId = dataFile->getFileId();//We need the HDF5 indentifier for the open file
std::vector<int32_t> indices(2, 0); // we keep this for re-use during the loop
std::string temperaturePath;
std::string cameraImagePath;
std::string::size_type pos = 0;
float temperature = 1200.0f;
std::vector<uint8_t> image;
err = 0;
// Define the height/width of our camera "image"
std::vector<hsize_t> dims (2,0);
dims[0] = 10;
dims[1] = 10;
for (int t = 0; t <= 9; ++t)
{
indices[0] = t;
for (int p = 200; p <= 800; p+=200)
{
temperature += (float)p;
indices[1] = p;
temperaturePath = H5MXAUtilities::generateH5PathToDataset(modelPtr, indices, temp );
cameraImagePath = H5MXAUtilities::generateH5PathToDataset(modelPtr, indices, cameraImage );
pos = temperaturePath.find_last_of("/");
std::string parentPath ( temperaturePath.substr(0, pos) );
// Make sure the path to the dataset in the HDF5 file is already created.
H5Utilities::createGroupsFromPath(parentPath, fileId);
// Write the temperature value to the HDF5 File
err = H5Lite::writeScalarDataset(fileId, temperaturePath, temperature);
if (err < 0)
{
std::cout << "Error writing temperature dataset for (t,p):" << t << "," << p << std::endl;
break;
}
captureSampleImage(image);
err = H5Lite::writeVectorDataset(fileId, cameraImagePath, dims, image);
if (err < 0)
{
std::cout << "Error writing image dataset for (t,p):" << t << "," << p << std::endl;
break;
}
}
}
std::cout << "... Ending Example 1" << std::endl;
return EXIT_SUCCESS;
}
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void captureSampleImage(std::vector<uint8_t> &imageBuffer)
{
imageBuffer.clear(); // Clear the Array first
for (int i = 0; i < 10; ++i) {
for (int j = 0; j < 10; ++j) {
imageBuffer.push_back(i*j);
}
}
}
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void listUserMetaData(IDataFile::Pointer dataFile)
{
IDataModel::Pointer modelPtr = dataFile->getDataModel();
MXAAbstractAttributes userMetaData = modelPtr->getUserMetaData();
float* fAttr = NULL;
IMXAArray::Pointer attr;
std::string key;
//std::string value;
for (MXAAbstractAttributes::iterator iter = userMetaData.begin(); iter != userMetaData.end(); ++iter ) {
key = (*iter).first;
attr = (*iter).second;
if (key.compare("Int32 User Meta Data") == 0)
{
// This works because we have a-priori knowledge of the type of data stored
int32_t* valuePtr = static_cast<int32_t*>( attr->getVoidPointer(0) );
std::cout << "Value is: " << *valuePtr << std::endl;
}
if (key.compare("Float32 User Meta Data") == 0)
{
// This works because we have a-priori knowledge of the type of data stored
fAttr = static_cast<float*>(attr->getVoidPointer(0) );
std::cout << "Value is: " << *fAttr << std::endl;
}
}
}
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void listDataDimensions(MXADataModel* model)
{
//We can now get a list of the Data Dimensions and print out various properties for each
IDataDimension::Container dims = model->getDataDimensions();
MXADataDimension* dim = NULL; // Use a Pointer to make the code a bit easier to read
for (IDataDimension::Container::iterator iter = dims.begin(); iter != dims.end(); ++iter )
{
dim = static_cast<MXADataDimension*>((*(iter)).get() );
if (NULL == dim)
{
std::cout << logTime() << "Error: Dimension was NULL. " << std::endl;
break;
}
std::cout << "Data Dimension:[" << dim->getIndex() << "]: " << dim->getDimensionName() << std::endl;
}
}
// -----------------------------------------------------------------------------
//
// -----------------------------------------------------------------------------
void listDataRecords(MXADataModel* model)
{
// We can get a list of Data Records and print out the top level records.
// Note that Data Records are stored in a tree structure, so without any type of
// tree traversal, this code will only print the top level records.
IDataRecord::Container records = model->getDataRecords();
MXADataRecord* rec = NULL; //Create a convenience pointer
for (IDataRecord::Container::iterator iter = records.begin(); iter != records.end(); ++iter ) {
rec = static_cast<MXADataRecord*>( (*(iter)).get() );
std::cout << "Data Record: " << rec->getRecordName() << std::endl;
}
}
| 40.314879 | 157 | 0.634967 | mpartio |
5a7bd61fb13f1c2a6333018f5dd33db02ad43053 | 345 | cpp | C++ | C++/queue/queueTest2.cpp | faber222/Aulas-Prog | 989843c5e0ede5b7a5e8fffbd4c2da80e924ffdb | [
"MIT"
] | null | null | null | C++/queue/queueTest2.cpp | faber222/Aulas-Prog | 989843c5e0ede5b7a5e8fffbd4c2da80e924ffdb | [
"MIT"
] | null | null | null | C++/queue/queueTest2.cpp | faber222/Aulas-Prog | 989843c5e0ede5b7a5e8fffbd4c2da80e924ffdb | [
"MIT"
] | null | null | null | #include <iostream>
#include <queue>
using namespace std;
int main() {
queue<int> q;
q.push(11);
while (!q.empty()) {
int x = q.front();
q.pop();
cout << x << endl;
int y = x / 2;
if (y > 1) {
if ((x % 2)) {
q.push(y - 1);
q.push(y + 1);
} else {
q.push(y);
}
}
}
} | 12.777778 | 22 | 0.402899 | faber222 |
5a7d5025b11a7afb6aa28b7aab0f0696421d0e6b | 2,410 | hxx | C++ | opencascade/Vrml_Separator.hxx | valgur/OCP | 2f7d9da73a08e4ffe80883614aedacb27351134f | [
"Apache-2.0"
] | 117 | 2020-03-07T12:07:05.000Z | 2022-03-27T07:35:22.000Z | opencascade/Vrml_Separator.hxx | CadQuery/cpp-py-bindgen | 66e7376d3a27444393fc99acbdbef40bbc7031ae | [
"Apache-2.0"
] | 66 | 2019-12-20T16:07:36.000Z | 2022-03-15T21:56:10.000Z | opencascade/Vrml_Separator.hxx | CadQuery/cpp-py-bindgen | 66e7376d3a27444393fc99acbdbef40bbc7031ae | [
"Apache-2.0"
] | 76 | 2020-03-16T01:47:46.000Z | 2022-03-21T16:37:07.000Z | // Created on: 1997-03-27
// Created by: Alexander BRIVIN and Dmitry TARASOV
// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _Vrml_Separator_HeaderFile
#define _Vrml_Separator_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Handle.hxx>
#include <Vrml_SeparatorRenderCulling.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_OStream.hxx>
//! defines a Separator node of VRML specifying group properties.
//! This group node performs a push (save) of the traversal state before traversing its children
//! and a pop (restore) after traversing them. This isolates the separator's children from the
//! rest of the scene graph. A separator can include lights, cameras, coordinates, normals,
//! bindings, and all other properties.
//! Separators can also perform render culling. Render culling skips over traversal of the
//! separator's children if they are not going to be rendered, based on the comparison of the
//! separator's bounding box with the current view volume. Culling is controlled by the
//! renderCulling field. These are set to AUTO by default, allowing the implementation to
//! decide whether or not to cull.
class Vrml_Separator
{
public:
DEFINE_STANDARD_ALLOC
Standard_EXPORT Vrml_Separator(const Vrml_SeparatorRenderCulling aRenderCulling);
Standard_EXPORT Vrml_Separator();
Standard_EXPORT void SetRenderCulling (const Vrml_SeparatorRenderCulling aRenderCulling);
Standard_EXPORT Vrml_SeparatorRenderCulling RenderCulling() const;
Standard_EXPORT Standard_OStream& Print (Standard_OStream& anOStream);
protected:
private:
Vrml_SeparatorRenderCulling myRenderCulling;
Standard_Boolean myFlagPrint;
};
#endif // _Vrml_Separator_HeaderFile
| 29.390244 | 96 | 0.785477 | valgur |
5a7e22263a30f08d591916b4d9b50b99e85f836b | 11,581 | cpp | C++ | source/de/hackcraft/world/sub/computer/rController.cpp | DMJC/linwarrior | 50cd46660c11e58cc6fbc431a150cf55ce0dd682 | [
"Apache-2.0"
] | 23 | 2015-12-08T19:29:10.000Z | 2021-09-22T04:13:31.000Z | source/de/hackcraft/world/sub/computer/rController.cpp | DMJC/linwarrior | 50cd46660c11e58cc6fbc431a150cf55ce0dd682 | [
"Apache-2.0"
] | 7 | 2018-04-30T13:05:57.000Z | 2021-08-25T03:58:07.000Z | source/de/hackcraft/world/sub/computer/rController.cpp | DMJC/linwarrior | 50cd46660c11e58cc6fbc431a150cf55ce0dd682 | [
"Apache-2.0"
] | 4 | 2018-01-25T03:05:19.000Z | 2021-08-25T03:30:15.000Z | #include "rController.h"
#include "de/hackcraft/log/Logger.h"
#include "de/hackcraft/world/Entity.h"
#include "de/hackcraft/world/World.h"
#include "de/hackcraft/world/object/cMech.h"
#include "de/hackcraft/world/sub/weapon/rTarcom.h"
#include <cstdlib>
#include <cassert>
#include <sstream>
using std::string;
Logger* rController::logger = Logger::getLogger("de.hackcraft.world.sub.computer.rController");
std::string rController::cname = "CONTROLLER";
unsigned int rController::cid = 3637;
rController::rController(Entity* entity, bool enable) {
object = entity;
enabled = enable;
lastDisturbedBy = 0;
disturbedBy = 0;
enemyNearby = 0;
aimtarget = 0;
firetarget = false;
walktargetdist = 0.0f;
vector_zero(walktarget);
idling = false;
aimrange = 0;
walkrange = 0;
nearToDistance = 23;
debugState = !true;
debugTransitions = !true;
debugStep = !true;
}
rController::~rController() {
while (!commandStack.empty()) commandStack.pop_back();
}
void rController::doit(OID aim, float* go, bool fire, float distance) {
aimtarget = aim;
firetarget = fire;
if (go != NULL) {
vector_cpy(walktarget, go);
} else if (aimtarget == 0) {
vector_set(walktarget, float_NAN, float_NAN, float_NAN);
} else {
Entity* tgt = World::getInstance()->getObject(aimtarget);
if (tgt != NULL) {
vector_cpy(walktarget, tgt->pos0);
} else {
vector_set(walktarget, float_NAN, float_NAN, float_NAN);
}
}
walktargetdist = distance;
idling = !firetarget && (aimtarget == 0) && (go == NULL);
/*
if (!true) {
//object->do_moveFor(go);
//object->do_aimFor(aim);
object->do_aimAt();
if (go) {
object->do_moveTowards();
} else if (aim) {
object->do_moveNear();
}
if (fire) object->do_fireAt();
if (idling) object->do_idle();
}
*/
}
void rController::printState() {
int framesize = getFrameSize();
string framename = getFrameName();
logger->debug() << "CtrlSt of " << object->name.c_str() << "#" << object->oid << " Frame: " << framename << " Framesize:" << framesize << " Stack: " << commandStack.size() << "\n";
}
string rController::getFrameName() {
//cout << "getFrameName()\n";
const char* names[] = {
"WAIT", "ATTACK", "FOLLOW", "GOTO", "REPEAT",
"NOSTATENAME"
};
unsigned int i = commandStack.back();
i = (i < OPCODE_MAX) ? i : OPCODE_MAX - 1;
string s = string(names[i]);
return s;
};
unsigned int rController::getFrameSizeOf(int opcode) {
switch (opcode) {
case WAIT: return 3;
case ATTACK: return 2;
case FOLLOW: return 3;
case GOTO: return 5;
case REPEAT: return 2;
default: return 2;
}
}
unsigned int rController::getFrameSize() {
return getFrameSizeOf(commandStack.back());
}
OID rController::getParameter(int offset) {
return commandStack[commandStack.size() - offset - 1];
}
void rController::setParameter(int offset, OID value) {
commandStack[commandStack.size() - offset - 1] = value;
}
void rController::push(OID value) {
commandStack.push_back(value);
}
void rController::pop(std::string reason) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pop(" << reason << ")\n";
}
int size = getFrameSize(); // Important: eval outside loop-condition!
for (int i = 0; i < size; i++) {
commandStack.pop_back();
}
if (debugTransitions) {
printState();
}
}
void rController::animate(float spf) {
if (debugState) logger->debug() << "cController::process()\n";
if (!active || !enabled || object == NULL) return;
if (commandStack.empty()) pushWaitEvent();
if (debugStep) printState();
switch (commandStack.back()) {
case WAIT: waitEvent();
break;
case ATTACK: attackEnemy();
break;
case FOLLOW: followLeader();
break;
case GOTO: gotoDestination();
break;
case REPEAT: repeatInstructions();
break;
default: logger->error() << "Invalid Instruction Request!\n";
break;
}
if (debugStep) {
logger->debug() << "=> ";
printState();
}
}
// -------------------------------------------------------------
void rController::pushWaitEvent(long mseconds, bool patrol) {
push(patrol);
push(mseconds);
push(WAIT);
}
void rController::waitEvent() {
//OID opcode = getParameter(0);
long mseconds = getParameter(1);
bool patrol = getParameter(2);
{
this->doit(0, NULL, false);
}
if (patrol) {
OID enemy = 0;
if (enemy == 0 && lastDisturbedBy != disturbedBy) {
// Ignore next time - probably destroyed.
// FIXME: Find better solution to prevent jumpy/locked behavior.
lastDisturbedBy = disturbedBy;
enemy = disturbedBy;
//cout << "DISTURBER !!!!!!!!!!!!!\n";
}
if (enemy == 0) {
enemy = enemyNearby;
if (enemy != 0) {
//cout << "INTRUDER !!!!!!!!!!!!!\n";
}
}
if (enemy) {
{
OID self = object->oid;
std::stringstream s;
s << self << ": Intruder!\n";
//World::getInstance()->sendMessage(0, self, 0, "DEBUG", s.str());
}
this->doit(enemy, NULL, false, nearToDistance);
pushAttackEnemy(enemy);
}
}
if (mseconds > 0) {
mseconds -= 1000 / 40;
setParameter(1, mseconds);
if (mseconds <= 0) {
pop("Timeout for wait was reached.");
return;
}
}
}
// -------------------------------------------------------------
void rController::pushAttackEnemy(OID entity) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushAttackEnemy( " << entity << " )\n";
}
{
//OID self = mDevice->mSerial;
//World::getInstance()->sendMessage("@%llu: All ur base belongs to us.\n", entity);
}
push(entity);
push(ATTACK);
}
void rController::attackEnemy() {
//OID opcode = getParameter(0);
OID entity = getParameter(1);
{
//((cMech*)mDevice)->Pattern(tf, "nrnlln");
this->doit(entity, NULL, aimrange < 50.0f, nearToDistance);
}
// FIXME: Depends on Mech/tarcom.
//cMech* mech = (cMech*) object;
if (disturbedBy != 0 && disturbedBy != entity) {
pop("Changing target (disturbed by another)");
pushAttackEnemy(disturbedBy);
return;
}
//Entity* target = World::getInstance()->getObject(entity);
rTarget* target = WeaponSystem::getInstance()->findTargetByEntity(entity);
rTarcom* tarcom = WeaponSystem::getInstance()->findTarcomByEntity(this->object->oid);
if (target == NULL) {
this->doit(0, NULL, false);
pop("Target disappeared (removed from world: fragged).");
return;
} else if (tarcom == NULL) {
this->doit(0, NULL, false);
pop("Tarcom disappeared (removed from world: fragged).");
return;
//} else if (!mech->tarcom->isEnemy(&target->tags)) { // TODO: Change dependency.
} else if (!target->isEnemy(tarcom)) {
this->doit(0, NULL, false);
pop("Not an enemy anymore (maybe dead or not interesting anymore).");
return;
} else if (aimrange > 60.0f && disturbedBy == 0) {
this->doit(0, NULL, false);
pop("Target is out of targeting range.");
return;
}
}
// -------------------------------------------------------------
void rController::pushFollowLeader(OID entity, bool patrol) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushFollowLeader( " << entity << ", " << patrol << " )\n";
}
push(patrol ? 1 : 0);
push(entity);
push(FOLLOW);
}
void rController::followLeader() {
//OID opcode = getParameter(0);
OID entity = getParameter(1);
OID patrol = getParameter(2);
{
this->doit(entity, NULL, false, nearToDistance);
}
if (patrol) {
OID nearby = enemyNearby; //controlledDevice->enemyNearby();
if (nearby) {
this->doit(nearby, NULL, false, nearToDistance);
pushAttackEnemy(nearby);
return;
}
}
}
// -------------------------------------------------------------
void rController::pushGotoDestination(float* v, bool patrol) {
if (v == NULL) return;
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushGotoDestination( <" << v[0] << "," << v[1] << "," << v[2] << ">, " << patrol << " )\n";
}
unsigned long *p = (unsigned long*) v;
push(patrol ? !0 : 0);
push(p[2]);
push(p[1]);
push(p[0]);
push(GOTO);
}
void rController::gotoDestination() {
//OID opcode = getParameter(0);
OID v0 = getParameter(1);
OID v1 = getParameter(2);
OID v2 = getParameter(3);
OID patrol = getParameter(4);
// Store data in integer array that really holds binary float data.
unsigned long p[] = {
(unsigned long) v0, (unsigned long) v1, (unsigned long) v2
};
// Now re-interprete as a float array.
float* v = (float*) ((void*) p);
{
if (debugState) logger->debug() << "going " << ((patrol > 0) ? "patrolling" : "directly") << " to <" << v[0] << "," << v[1] << "," << v[2] << " >\n";
float* u = new float[3];
vector_set(u, v[0], v[1], v[2]);
this->doit(0, u, false);
delete[] u;
}
float range = walkrange;
if (debugState) logger->debug() << "DestinationRange " << range << "\n";
if (range < 8.0f) {
this->doit(0, NULL, false);
pop("Destination was reached (within destination range).");
return;
}
if (patrol) {
OID nearby = enemyNearby;
if (nearby) {
this->doit(nearby, NULL, false, nearToDistance);
pushAttackEnemy(nearby);
return;
}
}
}
// -------------------------------------------------------------
void rController::pushRepeatInstructions(int n) {
if (debugTransitions) {
logger->debug() << object->name.c_str() << "#" << object->oid << ".pushRepeatInstructions( " << n << " )\n";
}
push(n);
push(REPEAT);
}
void rController::repeatInstructions() {
OID opcode = getParameter(0);
OID n = getParameter(1);
if (debugState) {
printState();
}
unsigned int first = getFrameSize();
if (debugState) logger->debug() << "first " << first << " -> opcode " << opcode << "\n";
unsigned int last = first;
for (int i = 0; i < (int) n; i++) {
int opcode = getParameter(last);
last += getFrameSizeOf(opcode);
if (debugState) logger->debug() << "last " << last << " -> opcode " << opcode << "\n";
}
int size = last - first;
if (debugState) logger->debug() << size << " = " << last << " - " << first << "\n";
for (int i = 0; i < size; i++) {
push(getParameter(last - 1));
}
}
| 24.640426 | 187 | 0.528711 | DMJC |
5a7f917a1641628bc3ba2cee0b77fbc8aedb6a29 | 34 | cpp | C++ | src/IceRay/type/type.cpp | dmilos/IceRay | 4e01f141363c0d126d3c700c1f5f892967e3d520 | [
"MIT-0"
] | 2 | 2020-09-04T12:27:15.000Z | 2022-01-17T14:49:40.000Z | src/IceRay/type/type.cpp | dmilos/IceRay | 4e01f141363c0d126d3c700c1f5f892967e3d520 | [
"MIT-0"
] | null | null | null | src/IceRay/type/type.cpp | dmilos/IceRay | 4e01f141363c0d126d3c700c1f5f892967e3d520 | [
"MIT-0"
] | 1 | 2020-09-04T12:27:52.000Z | 2020-09-04T12:27:52.000Z | #include "./general/general.cpp"
| 17 | 33 | 0.705882 | dmilos |
5a8379011405bdc4d048a92c93eb0001eb3e44e7 | 1,756 | cpp | C++ | Logger.cpp | alonf/UniversalACRemote | 6d4bb6e475a5f71e264a4b48a757ae182df796aa | [
"MIT"
] | 1 | 2019-12-26T01:11:30.000Z | 2019-12-26T01:11:30.000Z | Logger.cpp | alonf/UniversalACRemote | 6d4bb6e475a5f71e264a4b48a757ae182df796aa | [
"MIT"
] | 1 | 2020-12-06T12:55:01.000Z | 2020-12-06T12:55:01.000Z | Logger.cpp | alonf/UniversalACRemote | 6d4bb6e475a5f71e264a4b48a757ae182df796aa | [
"MIT"
] | null | null | null | #include "Logger.h"
using namespace std;
Logger::Logger(int redLedPin, int greenLedPin, int baudRate /*= 115200*/): _ledsLogger(LedsLogger::Create(redLedPin, greenLedPin))
{
Serial.begin(baudRate);
Serial.setDebugOutput(true);
}
void Logger::OnCommand(const String &commandName, int commandId) const
{
Serial.println(commandName + " command recieved");
_ledsLogger->BlinkGreen(commandId, 250);
}
void Logger::WriteErrorMessage(const String& message, int blinks) const
{
Serial.println(message.c_str());
_ledsLogger->BlinkRed(blinks, 500);
}
void Logger::OnWiFiStatusChanged(const ConnectionStatus& status) const
{
if (status.IsAccessPointModeOn())
{
if (status.IsJustConnected())
{
_ledsLogger->SetRed(1);
_ledsLogger->SetGreen(1);
}
if (status.IsJustDissconnected())
{
_ledsLogger->BlinkGreen(1000000, 150);
_ledsLogger->BlinkRed(1000000, 150);
}
return;
}
if (status.IsJustConnected())
{
Serial.println(status.Message().c_str());
Serial.print("IP address: ");
Serial.println(status.LocalIP());
}
_ledsLogger->SetGreen(status.IsConnected() ? HIGH : LOW);
_ledsLogger->SetRed(status.IsConnected() ? LOW : HIGH);
if (status.IsConnected())
{
_ledsLogger->BlinkIpAddress(status.LocalIP());
}
else
{
_ledsLogger->BlinkRed(3 + status.WifiCode(), 250);
}
}
void Logger::OnLongButtonPressDetection() const
{
_ledsLogger->BlinkGreen(1000, 40);
_ledsLogger->BlinkRed(1000, 40);
}
void Logger::OnVeryLongButtonPressDetection() const
{
_ledsLogger->BlinkGreen(10000, 20);
_ledsLogger->BlinkRed(10000, 20);
}
void Logger::WriteMessage(const String& message)
{
Serial.println(message.c_str());
}
void Logger::TestLeds() const
{
_ledsLogger->BlinkGreen(3, 100);
_ledsLogger->BlinkRed(3, 100);
}
| 21.679012 | 130 | 0.723235 | alonf |
5a870fd79cf4d1010645b3db87f9e3820b60be81 | 392 | cpp | C++ | 1451/a.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | 1 | 2021-10-24T00:46:37.000Z | 2021-10-24T00:46:37.000Z | 1451/a.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | null | null | null | 1451/a.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | null | null | null | #include <iostream>
#include <cstdio>
using namespace std;
int solve_x(int x) {
if (x == 1) {
return 0;
} else if (x == 2) {
return 1;
} else if (x & 1) {
return 1 + solve_x(x - 1);
} else {
return 2;
}
}
int solve() {
int n;
scanf("%d", &n);
return solve_x(n);
}
int main() {
int t;
scanf("%d", &t);
while (t--) {
printf("%d\n", solve());
}
}
| 12.645161 | 30 | 0.484694 | vladshablinsky |
5a9035c976299f8f74d6b077936d00b2cef53368 | 7,932 | hpp | C++ | shared/dumps/UnityEngine_GameObject.hpp | zoller27osu/beatsaber-hook | 83a4bb55ed8b2f9e4c977877bc1b0601fed36f39 | [
"MIT"
] | 1 | 2020-04-22T07:37:13.000Z | 2020-04-22T07:37:13.000Z | shared/dumps/UnityEngine_GameObject.hpp | zoller27osu/beatsaber-hook | 83a4bb55ed8b2f9e4c977877bc1b0601fed36f39 | [
"MIT"
] | null | null | null | shared/dumps/UnityEngine_GameObject.hpp | zoller27osu/beatsaber-hook | 83a4bb55ed8b2f9e4c977877bc1b0601fed36f39 | [
"MIT"
] | null | null | null | #ifndef UnityEngine_GameObject_DEFINED
#define UnityEngine_GameObject_DEFINED
// This .hpp file was compiled via beatsaber-hook/shared/helper.py's Parse Mode.
// Created by Sc2ad.
// Methods may not be valid!
#include <dlfcn.h>
#include <string_view>
#include "../utils/typedefs.h"
#include "../utils/il2cpp-functions.hpp"
#include "../utils/il2cpp-utils.hpp"
// Contains MethodInfo/Il2CppClass data for: UnityEngine.GameObject
namespace UnityEngine_GameObject {
// UnityEngine.GameObject
typedef struct Class : Il2CppObject {
} Class;
static bool __cached = false;
static Il2CppClass* klass;
static const MethodInfo* CreatePrimitive_PrimitiveType;
static const MethodInfo* GetComponent_generic;
static const MethodInfo* GetComponent_Type;
static const MethodInfo* GetComponentFastPath_Type_IntPtr;
static const MethodInfo* GetComponentByName_string;
static const MethodInfo* GetComponent_string;
static const MethodInfo* GetComponentInChildren_Type_bool;
static const MethodInfo* GetComponentInChildren_Type;
static const MethodInfo* GetComponentInChildren_generic;
static const MethodInfo* GetComponentInChildren_bool_generic;
static const MethodInfo* GetComponentInParent_Type;
static const MethodInfo* GetComponentsInternal_Type_bool_bool_bool_bool_object;
static const MethodInfo* GetComponents_Type;
static const MethodInfo* GetComponents;
static const MethodInfo* GetComponents_List1;
static const MethodInfo* GetComponentsInChildren_Type_bool;
static const MethodInfo* GetComponentsInChildren_bool;
static const MethodInfo* GetComponentsInChildren_bool_List1;
static const MethodInfo* GetComponentsInChildren;
static const MethodInfo* GetComponentsInParent_Type_bool;
static const MethodInfo* GetComponentsInParent_bool_List1;
static const MethodInfo* GetComponentsInParent_bool;
static const MethodInfo* Internal_AddComponentWithType_Type;
static const MethodInfo* AddComponent_Type;
static const MethodInfo* AddComponent_generic;
static const MethodInfo* get_transform;
static const MethodInfo* get_layer;
static const MethodInfo* set_layer;
static const MethodInfo* SetActive_bool;
static const MethodInfo* get_activeSelf;
static const MethodInfo* get_activeInHierarchy;
static const MethodInfo* get_tag;
static const MethodInfo* set_tag;
static const MethodInfo* FindGameObjectsWithTag_string;
static const MethodInfo* SendMessage_string_object_SendMessageOptions;
static const MethodInfo* BroadcastMessage_string_object_SendMessageOptions;
static const MethodInfo* Internal_CreateGameObject_GameObject_string;
static const MethodInfo* Find_string;
static const MethodInfo* get_scene;
static const MethodInfo* get_gameObject;
static const MethodInfo* get_scene_Injected_out_Scene;
// The Initialization function that must be called before using any of these definitions
static void Init() {
if (!__cached) {
klass = il2cpp_utils::GetClassFromName("UnityEngine", "GameObject");
CreatePrimitive_PrimitiveType = il2cpp_functions::class_get_method_from_name(klass, "CreatePrimitive", 1);
GetComponent_generic = il2cpp_functions::class_get_method_from_name(klass, "GetComponent", 0);
GetComponent_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponent", 1);
GetComponentFastPath_Type_IntPtr = il2cpp_functions::class_get_method_from_name(klass, "GetComponentFastPath", 2);
GetComponentByName_string = il2cpp_functions::class_get_method_from_name(klass, "GetComponentByName", 1);
GetComponent_string = il2cpp_functions::class_get_method_from_name(klass, "GetComponent", 1);
GetComponentInChildren_Type_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 2);
GetComponentInChildren_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 1);
GetComponentInChildren_generic = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 0);
GetComponentInChildren_bool_generic = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInChildren", 1);
GetComponentInParent_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponentInParent", 1);
GetComponentsInternal_Type_bool_bool_bool_bool_object = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInternal", 6);
GetComponents_Type = il2cpp_functions::class_get_method_from_name(klass, "GetComponents", 1);
GetComponents = il2cpp_functions::class_get_method_from_name(klass, "GetComponents", 0);
GetComponents_List1 = il2cpp_functions::class_get_method_from_name(klass, "GetComponents", 1);
GetComponentsInChildren_Type_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 2);
GetComponentsInChildren_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 1);
GetComponentsInChildren_bool_List1 = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 2);
GetComponentsInChildren = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInChildren", 0);
GetComponentsInParent_Type_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInParent", 2);
GetComponentsInParent_bool_List1 = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInParent", 2);
GetComponentsInParent_bool = il2cpp_functions::class_get_method_from_name(klass, "GetComponentsInParent", 1);
Internal_AddComponentWithType_Type = il2cpp_functions::class_get_method_from_name(klass, "Internal_AddComponentWithType", 1);
AddComponent_Type = il2cpp_functions::class_get_method_from_name(klass, "AddComponent", 1);
AddComponent_generic = il2cpp_functions::class_get_method_from_name(klass, "AddComponent", 0);
get_transform = il2cpp_functions::class_get_method_from_name(klass, "get_transform", 0);
get_layer = il2cpp_functions::class_get_method_from_name(klass, "get_layer", 0);
set_layer = il2cpp_functions::class_get_method_from_name(klass, "set_layer", 1);
SetActive_bool = il2cpp_functions::class_get_method_from_name(klass, "SetActive", 1);
get_activeSelf = il2cpp_functions::class_get_method_from_name(klass, "get_activeSelf", 0);
get_activeInHierarchy = il2cpp_functions::class_get_method_from_name(klass, "get_activeInHierarchy", 0);
get_tag = il2cpp_functions::class_get_method_from_name(klass, "get_tag", 0);
set_tag = il2cpp_functions::class_get_method_from_name(klass, "set_tag", 1);
FindGameObjectsWithTag_string = il2cpp_functions::class_get_method_from_name(klass, "FindGameObjectsWithTag", 1);
SendMessage_string_object_SendMessageOptions = il2cpp_functions::class_get_method_from_name(klass, "SendMessage", 3);
BroadcastMessage_string_object_SendMessageOptions = il2cpp_functions::class_get_method_from_name(klass, "BroadcastMessage", 3);
Internal_CreateGameObject_GameObject_string = il2cpp_functions::class_get_method_from_name(klass, "Internal_CreateGameObject", 2);
Find_string = il2cpp_functions::class_get_method_from_name(klass, "Find", 1);
get_scene = il2cpp_functions::class_get_method_from_name(klass, "get_scene", 0);
get_gameObject = il2cpp_functions::class_get_method_from_name(klass, "get_gameObject", 0);
get_scene_Injected_out_Scene = il2cpp_functions::class_get_method_from_name(klass, "get_scene_Injected", 1);
__cached = true;
}
}
}
#endif /* UnityEngine_GameObject_DEFINED */ | 73.444444 | 148 | 0.775466 | zoller27osu |
5a9b0d466153bbd7f0f42fe011b3fd24696215c6 | 5,388 | hh | C++ | src/mem/tcu/cmds.hh | Barkhausen-Institut/gem5-TCU | c3c86be12debec937b9b5dd351df13e5ea43ab4a | [
"BSD-3-Clause"
] | null | null | null | src/mem/tcu/cmds.hh | Barkhausen-Institut/gem5-TCU | c3c86be12debec937b9b5dd351df13e5ea43ab4a | [
"BSD-3-Clause"
] | null | null | null | src/mem/tcu/cmds.hh | Barkhausen-Institut/gem5-TCU | c3c86be12debec937b9b5dd351df13e5ea43ab4a | [
"BSD-3-Clause"
] | null | null | null | /*
* Copyright (c) 2015, Christian Menard
* Copyright (C) 2020 Nils Asmussen, Barkhausen Institut
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the FreeBSD Project.
*/
#ifndef __MEM_TCU_CMDS_HH__
#define __MEM_TCU_CMDS_HH__
#include "mem/tcu/base.hh"
#include "mem/tcu/error.hh"
class Tcu;
class TcuCommands
{
public:
enum class AbortType
{
NONE,
LOCAL,
REMOTE,
};
public:
TcuCommands(Tcu &_tcu);
const std::string name() const;
void regStats();
void startCommand(RegFile::Result written, PacketPtr pkt, Tick when);
void stopCommand();
void scheduleCmdFinish(Cycles delay, TcuError error = TcuError::NONE);
void scheduleExtCmdFinish(Cycles delay, TcuError error, RegFile::reg_t arg);
void setRemoteCommand(bool remote)
{
cmdIsRemote = remote;
}
bool isCommandAborting() const
{
return abort != AbortType::NONE;
}
private:
void executeCommand(PacketPtr pkt);
void abortCommand();
void executePrivCommand(PacketPtr pkt);
void finishAbort();
void executeExtCommand(PacketPtr pkt);
void finishCommand(TcuError error);
void finishExtCommand(TcuError error, RegFile::reg_t arg);
private:
struct CmdEvent : public Event
{
TcuCommands& cmds;
CmdEvent(TcuCommands& _cmds)
: cmds(_cmds)
{}
const std::string name() const override;
};
struct ExecCmdEvent : public CmdEvent
{
PacketPtr pkt;
ExecCmdEvent(TcuCommands& _cmds, PacketPtr _pkt)
: CmdEvent(_cmds), pkt(_pkt)
{}
void process() override
{
cmds.executeCommand(pkt);
setFlags(AutoDelete);
}
const char* description() const override { return "ExecCmdEvent"; }
};
struct ExecPrivCmdEvent : public CmdEvent
{
PacketPtr pkt;
ExecPrivCmdEvent(TcuCommands& _cmds, PacketPtr _pkt)
: CmdEvent(_cmds), pkt(_pkt)
{}
void process() override
{
cmds.executePrivCommand(pkt);
setFlags(AutoDelete);
}
const char* description() const override { return "ExecPrivCmdEvent"; }
};
struct ExecExtCmdEvent : public CmdEvent
{
PacketPtr pkt;
ExecExtCmdEvent(TcuCommands& _cmds, PacketPtr _pkt)
: CmdEvent(_cmds), pkt(_pkt)
{}
void process() override
{
cmds.executeExtCommand(pkt);
setFlags(AutoDelete);
}
const char* description() const override { return "ExecExtCmdEvent"; }
};
struct FinishCommandEvent : public CmdEvent
{
TcuError error;
FinishCommandEvent(TcuCommands& _cmds, TcuError _error = TcuError::NONE)
: CmdEvent(_cmds), error(_error)
{}
void process() override
{
cmds.finishCommand(error);
setFlags(AutoDelete);
}
const char* description() const override { return "FinishCommandEvent"; }
};
struct FinishExtCommandEvent : public CmdEvent
{
TcuError error;
RegFile::reg_t arg;
FinishExtCommandEvent(TcuCommands& _cmds,
TcuError _error, RegFile::reg_t _arg)
: CmdEvent(_cmds), error(_error), arg(_arg)
{}
void process() override
{
cmds.finishExtCommand(error, arg);
setFlags(AutoDelete);
}
const char* description() const override
{
return "FinishExtCommandEvent";
}
};
Tcu &tcu;
PacketPtr cmdPkt;
PacketPtr privCmdPkt;
PacketPtr extCmdPkt;
FinishCommandEvent *cmdFinish;
FinishExtCommandEvent *extCmdFinish;
AbortType abort;
bool cmdIsRemote;
public:
Stats::Vector commands;
Stats::Vector privCommands;
Stats::Vector extCommands;
};
#endif // __MEM_TCU_CMDS_HH__
| 25.17757 | 81 | 0.648107 | Barkhausen-Institut |
5a9e15128229c9f829ebe95b5c346e9c54dfd520 | 30,756 | cpp | C++ | taglib/mp4tag.cpp | acristoffers/SimplePlayer | aba0702901960648fc6602201f85198af87377ed | [
"MIT-0"
] | null | null | null | taglib/mp4tag.cpp | acristoffers/SimplePlayer | aba0702901960648fc6602201f85198af87377ed | [
"MIT-0"
] | null | null | null | taglib/mp4tag.cpp | acristoffers/SimplePlayer | aba0702901960648fc6602201f85198af87377ed | [
"MIT-0"
] | null | null | null | /**************************************************************************
* copyright : (C) 2007,2011 by Lukáš Lalinský
* email : lalinsky@gmail.com
**************************************************************************/
/***************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License version *
* 2.1 as published by the Free Software Foundation. *
* *
* This library is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
* 02110-1301 USA *
* *
* Alternatively, this file is available under the Mozilla Public *
* License Version 1.1. You may obtain a copy of the License at *
* http://www.mozilla.org/MPL/ *
***************************************************************************/
#include <tdebug.h>
#include <tstring.h>
#include <tpropertymap.h>
#include "mp4atom.h"
#include "mp4tag.h"
#include "id3v1genres.h"
using namespace TagLib;
class MP4::Tag::TagPrivate
{
public:
TagPrivate() : file(0), atoms(0)
{
}
~TagPrivate()
{
}
TagLib::File *file;
Atoms *atoms;
ItemListMap items;
};
MP4::Tag::Tag()
{
d = new TagPrivate;
}
MP4::Tag::Tag(TagLib::File *file, MP4::Atoms *atoms)
{
d = new TagPrivate;
d->file = file;
d->atoms = atoms;
MP4::Atom *ilst = atoms->find("moov", "udta", "meta", "ilst");
if (!ilst) {
// debug("Atom moov.udta.meta.ilst not found.");
return;
}
for (unsigned int i = 0; i < ilst->children.size(); i++) {
MP4::Atom *atom = ilst->children[i];
file->seek(atom->offset + 8);
if (atom->name == "----") {
parseFreeForm(atom, file);
} else if ((atom->name == "trkn") || (atom->name == "disk")) {
parseIntPair(atom, file);
} else if ((atom->name == "cpil") || (atom->name == "pgap") || (atom->name == "pcst") ||
(atom->name == "hdvd")) {
parseBool(atom, file);
} else if (atom->name == "tmpo") {
parseInt(atom, file);
} else if ((atom->name == "tvsn") || (atom->name == "tves") || (atom->name == "cnID") ||
(atom->name == "sfID") || (atom->name == "atID") || (atom->name == "geID")) {
parseUInt(atom, file);
} else if (atom->name == "plID") {
parseLongLong(atom, file);
} else if ((atom->name == "stik") || (atom->name == "rtng") || (atom->name == "akID")) {
parseByte(atom, file);
} else if (atom->name == "gnre") {
parseGnre(atom, file);
} else if (atom->name == "covr") {
parseCovr(atom, file);
} else {
parseText(atom, file);
}
}
}
MP4::Tag::~Tag()
{
delete d;
}
MP4::AtomDataList MP4::Tag::parseData2(MP4::Atom *atom, TagLib::File *file, int expectedFlags, bool freeForm)
{
AtomDataList result;
ByteVector data = file->readBlock(atom->length - 8);
int i = 0;
unsigned int pos = 0;
while (pos < data.size()) {
const int length = static_cast<int>(data.toUInt(pos));
ByteVector name = data.mid(pos + 4, 4);
const int flags = static_cast<int>(data.toUInt(pos + 8));
if (freeForm && (i < 2)) {
if ((i == 0) && (name != "mean")) {
debug("MP4: Unexpected atom \"" + name + "\", expecting \"mean\"");
return result;
} else if ((i == 1) && (name != "name")) {
debug("MP4: Unexpected atom \"" + name + "\", expecting \"name\"");
return result;
}
result.append(AtomData(AtomDataType(flags), data.mid(pos + 12, length - 12)));
} else {
if (name != "data") {
debug("MP4: Unexpected atom \"" + name + "\", expecting \"data\"");
return result;
}
if ((expectedFlags == -1) || (flags == expectedFlags)) {
result.append(AtomData(AtomDataType(flags), data.mid(pos + 16, length - 16)));
}
}
pos += length;
i++;
}
return result;
}
ByteVectorList MP4::Tag::parseData(MP4::Atom *atom, TagLib::File *file, int expectedFlags, bool freeForm)
{
AtomDataList data = parseData2(atom, file, expectedFlags, freeForm);
ByteVectorList result;
for (uint i = 0; i < data.size(); i++) {
result.append(data[i].data);
}
return result;
}
void MP4::Tag::parseInt(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
addItem(atom->name, (int) data[0].toShort());
}
}
void MP4::Tag::parseUInt(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
addItem(atom->name, data[0].toUInt());
}
}
void MP4::Tag::parseLongLong(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
addItem(atom->name, data[0].toLongLong());
}
}
void MP4::Tag::parseByte(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
addItem(atom->name, (uchar) data[0].at(0));
}
}
void MP4::Tag::parseGnre(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
int idx = (int) data[0].toShort();
if (idx > 0) {
addItem("\251gen", StringList(ID3v1::genre(idx - 1)));
}
}
}
void MP4::Tag::parseIntPair(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
const int a = data[0].toShort(2U);
const int b = data[0].toShort(4U);
addItem(atom->name, MP4::Item(a, b));
}
}
void MP4::Tag::parseBool(MP4::Atom *atom, TagLib::File *file)
{
ByteVectorList data = parseData(atom, file);
if (data.size()) {
bool value = data[0].size() ? data[0][0] != '\0' : false;
addItem(atom->name, value);
}
}
void MP4::Tag::parseText(MP4::Atom *atom, TagLib::File *file, int expectedFlags)
{
ByteVectorList data = parseData(atom, file, expectedFlags);
if (data.size()) {
StringList value;
for (unsigned int i = 0; i < data.size(); i++) {
value.append(String(data[i], String::UTF8));
}
addItem(atom->name, value);
}
}
void MP4::Tag::parseFreeForm(MP4::Atom *atom, TagLib::File *file)
{
AtomDataList data = parseData2(atom, file, -1, true);
if (data.size() > 2) {
String name = "----:" + String(data[0].data, String::UTF8) + ':' + String(data[1].data, String::UTF8);
AtomDataType type = data[2].type;
for (uint i = 2; i < data.size(); i++) {
if (data[i].type != type) {
debug("MP4: We currently don't support values with multiple types");
break;
}
}
if (type == TypeUTF8) {
StringList value;
for (uint i = 2; i < data.size(); i++) {
value.append(String(data[i].data, String::UTF8));
}
Item item(value);
item.setAtomDataType(type);
addItem(name, item);
} else {
ByteVectorList value;
for (uint i = 2; i < data.size(); i++) {
value.append(data[i].data);
}
Item item(value);
item.setAtomDataType(type);
addItem(name, item);
}
}
}
void MP4::Tag::parseCovr(MP4::Atom *atom, TagLib::File *file)
{
MP4::CoverArtList value;
ByteVector data = file->readBlock(atom->length - 8);
unsigned int pos = 0;
while (pos < data.size()) {
const int length = static_cast<int>(data.toUInt(pos));
ByteVector name = data.mid(pos + 4, 4);
const int flags = static_cast<int>(data.toUInt(pos + 8));
if (name != "data") {
debug("MP4: Unexpected atom \"" + name + "\", expecting \"data\"");
break;
}
if ((flags == TypeJPEG) || (flags == TypePNG) || (flags == TypeBMP) || (flags == TypeGIF) || (flags == TypeImplicit)) {
value.append(MP4::CoverArt(MP4::CoverArt::Format(flags),
data.mid(pos + 16, length - 16)));
} else {
debug("MP4: Unknown covr format " + String::number(flags));
}
pos += length;
}
if (value.size() > 0) {
addItem(atom->name, value);
}
}
ByteVector MP4::Tag::padIlst(const ByteVector &data, int length)
{
if (length == -1) {
length = ((data.size() + 1023) & ~1023) - data.size();
}
return renderAtom("free", ByteVector(length, '\1'));
}
ByteVector MP4::Tag::renderAtom(const ByteVector &name, const ByteVector &data)
{
return ByteVector::fromUInt(data.size() + 8) + name + data;
}
ByteVector MP4::Tag::renderData(const ByteVector &name, int flags, const ByteVectorList &data)
{
ByteVector result;
for (unsigned int i = 0; i < data.size(); i++) {
result.append(renderAtom("data", ByteVector::fromUInt(flags) + ByteVector(4, '\0') + data[i]));
}
return renderAtom(name, result);
}
ByteVector MP4::Tag::renderBool(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector(1, item.toBool() ? '\1' : '\0'));
return renderData(name, TypeInteger, data);
}
ByteVector MP4::Tag::renderInt(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector::fromShort(item.toInt()));
return renderData(name, TypeInteger, data);
}
ByteVector MP4::Tag::renderUInt(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector::fromUInt(item.toUInt()));
return renderData(name, TypeInteger, data);
}
ByteVector MP4::Tag::renderLongLong(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector::fromLongLong(item.toLongLong()));
return renderData(name, TypeInteger, data);
}
ByteVector MP4::Tag::renderByte(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector(1, item.toByte()));
return renderData(name, TypeInteger, data);
}
ByteVector MP4::Tag::renderIntPair(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector(2, '\0') +
ByteVector::fromShort(item.toIntPair().first) +
ByteVector::fromShort(item.toIntPair().second) +
ByteVector(2, '\0'));
return renderData(name, TypeImplicit, data);
}
ByteVector MP4::Tag::renderIntPairNoTrailing(const ByteVector &name, MP4::Item &item)
{
ByteVectorList data;
data.append(ByteVector(2, '\0') +
ByteVector::fromShort(item.toIntPair().first) +
ByteVector::fromShort(item.toIntPair().second));
return renderData(name, TypeImplicit, data);
}
ByteVector MP4::Tag::renderText(const ByteVector &name, MP4::Item &item, int flags)
{
ByteVectorList data;
StringList value = item.toStringList();
for (unsigned int i = 0; i < value.size(); i++) {
data.append(value[i].data(String::UTF8));
}
return renderData(name, flags, data);
}
ByteVector MP4::Tag::renderCovr(const ByteVector &name, MP4::Item &item)
{
ByteVector data;
MP4::CoverArtList value = item.toCoverArtList();
for (unsigned int i = 0; i < value.size(); i++) {
data.append(renderAtom("data", ByteVector::fromUInt(value[i].format()) +
ByteVector(4, '\0') + value[i].data()));
}
return renderAtom(name, data);
}
ByteVector MP4::Tag::renderFreeForm(const String &name, MP4::Item &item)
{
StringList header = StringList::split(name, ":");
if (header.size() != 3) {
debug("MP4: Invalid free-form item name \"" + name + "\"");
return ByteVector::null;
}
ByteVector data;
data.append(renderAtom("mean", ByteVector::fromUInt(0) + header[1].data(String::UTF8)));
data.append(renderAtom("name", ByteVector::fromUInt(0) + header[2].data(String::UTF8)));
AtomDataType type = item.atomDataType();
if (type == TypeUndefined) {
if (!item.toStringList().isEmpty()) {
type = TypeUTF8;
} else {
type = TypeImplicit;
}
}
if (type == TypeUTF8) {
StringList value = item.toStringList();
for (unsigned int i = 0; i < value.size(); i++) {
data.append(renderAtom("data", ByteVector::fromUInt(type) + ByteVector(4, '\0') + value[i].data(String::UTF8)));
}
} else {
ByteVectorList value = item.toByteVectorList();
for (unsigned int i = 0; i < value.size(); i++) {
data.append(renderAtom("data", ByteVector::fromUInt(type) + ByteVector(4, '\0') + value[i]));
}
}
return renderAtom("----", data);
}
bool MP4::Tag::save()
{
ByteVector data;
for (MP4::ItemListMap::Iterator i = d->items.begin(); i != d->items.end(); i++) {
const String name = i->first;
if (name.startsWith("----")) {
data.append(renderFreeForm(name, i->second));
} else if (name == "trkn") {
data.append(renderIntPair(name.data(String::Latin1), i->second));
} else if (name == "disk") {
data.append(renderIntPairNoTrailing(name.data(String::Latin1), i->second));
} else if ((name == "cpil") || (name == "pgap") || (name == "pcst") || (name == "hdvd")) {
data.append(renderBool(name.data(String::Latin1), i->second));
} else if (name == "tmpo") {
data.append(renderInt(name.data(String::Latin1), i->second));
} else if ((name == "tvsn") || (name == "tves") || (name == "cnID") ||
(name == "sfID") || (name == "atID") || (name == "geID")) {
data.append(renderUInt(name.data(String::Latin1), i->second));
} else if (name == "plID") {
data.append(renderLongLong(name.data(String::Latin1), i->second));
} else if ((name == "stik") || (name == "rtng") || (name == "akID")) {
data.append(renderByte(name.data(String::Latin1), i->second));
} else if (name == "covr") {
data.append(renderCovr(name.data(String::Latin1), i->second));
} else if (name.size() == 4) {
data.append(renderText(name.data(String::Latin1), i->second));
} else {
debug("MP4: Unknown item name \"" + name + "\"");
}
}
data = renderAtom("ilst", data);
AtomList path = d->atoms->path("moov", "udta", "meta", "ilst");
if (path.size() == 4) {
saveExisting(data, path);
} else {
saveNew(data);
}
return true;
}
void MP4::Tag::updateParents(AtomList &path, long delta, int ignore)
{
for (unsigned int i = 0; i < path.size() - ignore; i++) {
d->file->seek(path[i]->offset);
long size = d->file->readBlock(4).toUInt();
// 64-bit
if (size == 1) {
d->file->seek(4, File::Current); // Skip name
long long longSize = d->file->readBlock(8).toLongLong();
// Seek the offset of the 64-bit size
d->file->seek(path[i]->offset + 8);
d->file->writeBlock(ByteVector::fromLongLong(longSize + delta));
}
// 32-bit
else {
d->file->seek(path[i]->offset);
d->file->writeBlock(ByteVector::fromUInt(size + delta));
}
}
}
void MP4::Tag::updateOffsets(long delta, long offset)
{
MP4::Atom *moov = d->atoms->find("moov");
if (moov) {
MP4::AtomList stco = moov->findall("stco", true);
for (unsigned int i = 0; i < stco.size(); i++) {
MP4::Atom *atom = stco[i];
if (atom->offset > offset) {
atom->offset += delta;
}
d->file->seek(atom->offset + 12);
ByteVector data = d->file->readBlock(atom->length - 12);
unsigned int count = data.toUInt();
d->file->seek(atom->offset + 16);
uint pos = 4;
while (count--) {
long o = static_cast<long>(data.toUInt(pos));
if (o > offset) {
o += delta;
}
d->file->writeBlock(ByteVector::fromUInt(o));
pos += 4;
}
}
MP4::AtomList co64 = moov->findall("co64", true);
for (unsigned int i = 0; i < co64.size(); i++) {
MP4::Atom *atom = co64[i];
if (atom->offset > offset) {
atom->offset += delta;
}
d->file->seek(atom->offset + 12);
ByteVector data = d->file->readBlock(atom->length - 12);
unsigned int count = data.toUInt();
d->file->seek(atom->offset + 16);
uint pos = 4;
while (count--) {
long long o = data.toLongLong(pos);
if (o > offset) {
o += delta;
}
d->file->writeBlock(ByteVector::fromLongLong(o));
pos += 8;
}
}
}
MP4::Atom *moof = d->atoms->find("moof");
if (moof) {
MP4::AtomList tfhd = moof->findall("tfhd", true);
for (unsigned int i = 0; i < tfhd.size(); i++) {
MP4::Atom *atom = tfhd[i];
if (atom->offset > offset) {
atom->offset += delta;
}
d->file->seek(atom->offset + 9);
ByteVector data = d->file->readBlock(atom->length - 9);
const unsigned int flags = data.toUInt(0, 3, true);
if (flags & 1) {
long long o = data.toLongLong(7U);
if (o > offset) {
o += delta;
}
d->file->seek(atom->offset + 16);
d->file->writeBlock(ByteVector::fromLongLong(o));
}
}
}
}
void MP4::Tag::saveNew(ByteVector &data)
{
data = renderAtom("meta", TagLib::ByteVector(4, '\0') +
renderAtom("hdlr", TagLib::ByteVector(8, '\0') + TagLib::ByteVector("mdirappl") + TagLib::ByteVector(9, '\0')) +
data + padIlst(data));
AtomList path = d->atoms->path("moov", "udta");
if (path.size() != 2) {
path = d->atoms->path("moov");
data = renderAtom("udta", data);
}
long offset = path[path.size() - 1]->offset + 8;
d->file->insert(data, offset, 0);
updateParents(path, data.size());
updateOffsets(data.size(), offset);
}
void MP4::Tag::saveExisting(ByteVector &data, AtomList &path)
{
MP4::Atom *ilst = path[path.size() - 1];
long offset = ilst->offset;
long length = ilst->length;
MP4::Atom *meta = path[path.size() - 2];
AtomList::Iterator index = meta->children.find(ilst);
// check if there is an atom before 'ilst', and possibly use it as padding
if (index != meta->children.begin()) {
AtomList::Iterator prevIndex = index;
prevIndex--;
MP4::Atom *prev = *prevIndex;
if (prev->name == "free") {
offset = prev->offset;
length += prev->length;
}
}
// check if there is an atom after 'ilst', and possibly use it as padding
AtomList::Iterator nextIndex = index;
nextIndex++;
if (nextIndex != meta->children.end()) {
MP4::Atom *next = *nextIndex;
if (next->name == "free") {
length += next->length;
}
}
long delta = data.size() - length;
if ((delta > 0) || ((delta < 0) && (delta > -8))) {
data.append(padIlst(data));
delta = data.size() - length;
} else if (delta < 0) {
data.append(padIlst(data, -delta - 8));
delta = 0;
}
d->file->insert(data, offset, length);
if (delta) {
updateParents(path, delta, 1);
updateOffsets(delta, offset);
}
}
String MP4::Tag::title() const
{
if (d->items.contains("\251nam")) {
return d->items["\251nam"].toStringList().toString(", ");
}
return String::null;
}
String MP4::Tag::artist() const
{
if (d->items.contains("\251ART")) {
return d->items["\251ART"].toStringList().toString(", ");
}
return String::null;
}
String MP4::Tag::album() const
{
if (d->items.contains("\251alb")) {
return d->items["\251alb"].toStringList().toString(", ");
}
return String::null;
}
String MP4::Tag::comment() const
{
if (d->items.contains("\251cmt")) {
return d->items["\251cmt"].toStringList().toString(", ");
}
return String::null;
}
String MP4::Tag::genre() const
{
if (d->items.contains("\251gen")) {
return d->items["\251gen"].toStringList().toString(", ");
}
return String::null;
}
unsigned int MP4::Tag::year() const
{
if (d->items.contains("\251day")) {
return d->items["\251day"].toStringList().toString().toInt();
}
return 0;
}
unsigned int MP4::Tag::track() const
{
if (d->items.contains("trkn")) {
return d->items["trkn"].toIntPair().first;
}
return 0;
}
void MP4::Tag::setTitle(const String &value)
{
d->items["\251nam"] = StringList(value);
}
void MP4::Tag::setArtist(const String &value)
{
d->items["\251ART"] = StringList(value);
}
void MP4::Tag::setAlbum(const String &value)
{
d->items["\251alb"] = StringList(value);
}
void MP4::Tag::setComment(const String &value)
{
d->items["\251cmt"] = StringList(value);
}
void MP4::Tag::setGenre(const String &value)
{
d->items["\251gen"] = StringList(value);
}
void MP4::Tag::setYear(uint value)
{
d->items["\251day"] = StringList(String::number(value));
}
void MP4::Tag::setTrack(uint value)
{
d->items["trkn"] = MP4::Item(value, 0);
}
MP4::ItemListMap &MP4::Tag::itemListMap()
{
return d->items;
}
static const char *keyTranslation[][2] = {
{ "\251nam", "TITLE" },
{ "\251ART", "ARTIST" },
{ "\251alb", "ALBUM" },
{ "\251cmt", "COMMENT" },
{ "\251gen", "GENRE" },
{ "\251day", "DATE" },
{ "\251wrt", "COMPOSER" },
{ "\251grp", "GROUPING" },
{ "trkn", "TRACKNUMBER" },
{ "disk", "DISCNUMBER" },
{ "cpil", "COMPILATION" },
{ "tmpo", "BPM" },
{ "cprt", "COPYRIGHT" },
{ "\251lyr", "LYRICS" },
{ "\251too", "ENCODEDBY" },
{ "soal", "ALBUMSORT" },
{ "soaa", "ALBUMARTISTSORT" },
{ "soar", "ARTISTSORT" },
{ "sonm", "TITLESORT" },
{ "soco", "COMPOSERSORT" },
{ "sosn", "SHOWSORT" },
{ "----:com.apple.iTunes:MusicBrainz Track Id", "MUSICBRAINZ_TRACKID" },
{ "----:com.apple.iTunes:MusicBrainz Artist Id", "MUSICBRAINZ_ARTISTID" },
{ "----:com.apple.iTunes:MusicBrainz Album Id", "MUSICBRAINZ_ALBUMID" },
{ "----:com.apple.iTunes:MusicBrainz Album Artist Id", "MUSICBRAINZ_ALBUMARTISTID" },
{ "----:com.apple.iTunes:MusicBrainz Release Group Id", "MUSICBRAINZ_RELEASEGROUPID" },
{ "----:com.apple.iTunes:MusicBrainz Work Id", "MUSICBRAINZ_WORKID" },
{ "----:com.apple.iTunes:ASIN", "ASIN" },
{ "----:com.apple.iTunes:LABEL", "LABEL" },
{ "----:com.apple.iTunes:LYRICIST", "LYRICIST" },
{ "----:com.apple.iTunes:CONDUCTOR", "CONDUCTOR" },
{ "----:com.apple.iTunes:REMIXER", "REMIXER" },
{ "----:com.apple.iTunes:ENGINEER", "ENGINEER" },
{ "----:com.apple.iTunes:PRODUCER", "PRODUCER" },
{ "----:com.apple.iTunes:DJMIXER", "DJMIXER" },
{ "----:com.apple.iTunes:MIXER", "MIXER" },
{ "----:com.apple.iTunes:SUBTITLE", "SUBTITLE" },
{ "----:com.apple.iTunes:DISCSUBTITLE", "DISCSUBTITLE" },
{ "----:com.apple.iTunes:MOOD", "MOOD" },
{ "----:com.apple.iTunes:ISRC", "ISRC" },
{ "----:com.apple.iTunes:CATALOGNUMBER", "CATALOGNUMBER" },
{ "----:com.apple.iTunes:BARCODE", "BARCODE" },
{ "----:com.apple.iTunes:SCRIPT", "SCRIPT" },
{ "----:com.apple.iTunes:LANGUAGE", "LANGUAGE" },
{ "----:com.apple.iTunes:LICENSE", "LICENSE" },
{ "----:com.apple.iTunes:MEDIA", "MEDIA" },
};
PropertyMap MP4::Tag::properties() const
{
static Map<String, String> keyMap;
if (keyMap.isEmpty()) {
int numKeys = sizeof(keyTranslation) / sizeof(keyTranslation[0]);
for (int i = 0; i < numKeys; i++) {
keyMap[keyTranslation[i][0]] = keyTranslation[i][1];
}
}
PropertyMap props;
MP4::ItemListMap::ConstIterator it = d->items.begin();
for ( ; it != d->items.end(); ++it) {
if (keyMap.contains(it->first)) {
String key = keyMap[it->first];
if ((key == "TRACKNUMBER") || (key == "DISCNUMBER")) {
MP4::Item::IntPair ip = it->second.toIntPair();
String value = String::number(ip.first);
if (ip.second) {
value += "/" + String::number(ip.second);
}
props[key] = value;
} else if (key == "BPM") {
props[key] = String::number(it->second.toInt());
} else if (key == "COMPILATION") {
props[key] = String::number(it->second.toBool());
} else {
props[key] = it->second.toStringList();
}
} else {
props.unsupportedData().append(it->first);
}
}
return props;
}
void MP4::Tag::removeUnsupportedProperties(const StringList &props)
{
StringList::ConstIterator it = props.begin();
for ( ; it != props.end(); ++it) {
d->items.erase(*it);
}
}
PropertyMap MP4::Tag::setProperties(const PropertyMap &props)
{
static Map<String, String> reverseKeyMap;
if (reverseKeyMap.isEmpty()) {
int numKeys = sizeof(keyTranslation) / sizeof(keyTranslation[0]);
for (int i = 0; i < numKeys; i++) {
reverseKeyMap[keyTranslation[i][1]] = keyTranslation[i][0];
}
}
PropertyMap origProps = properties();
PropertyMap::ConstIterator it = origProps.begin();
for ( ; it != origProps.end(); ++it) {
if (!props.contains(it->first) || props[it->first].isEmpty()) {
d->items.erase(reverseKeyMap[it->first]);
}
}
PropertyMap ignoredProps;
it = props.begin();
for ( ; it != props.end(); ++it) {
if (reverseKeyMap.contains(it->first)) {
String name = reverseKeyMap[it->first];
if ((it->first == "TRACKNUMBER") || (it->first == "DISCNUMBER")) {
int first = 0, second = 0;
StringList parts = StringList::split(it->second.front(), "/");
if (parts.size() > 0) {
first = parts[0].toInt();
if (parts.size() > 1) {
second = parts[1].toInt();
}
d->items[name] = MP4::Item(first, second);
}
} else if (it->first == "BPM") {
int value = it->second.front().toInt();
d->items[name] = MP4::Item(value);
} else if (it->first == "COMPILATION") {
bool value = (it->second.front().toInt() != 0);
d->items[name] = MP4::Item(value);
} else {
d->items[name] = it->second;
}
} else {
ignoredProps.insert(it->first, it->second);
}
}
return ignoredProps;
}
void MP4::Tag::addItem(const String &name, const Item &value)
{
if (!d->items.contains(name)) {
d->items.insert(name, value);
} else {
debug("MP4: Ignoring duplicate atom \"" + name + "\"");
}
}
| 34.479821 | 134 | 0.486897 | acristoffers |
5aa0f5a538f4ade6671944c5a38053e19c403cf2 | 12,382 | tpp | C++ | src/sdm/core/joint.tpp | SDMStudio/sdms | 43a86973081ffd86c091aed69b332f0087f59361 | [
"MIT"
] | null | null | null | src/sdm/core/joint.tpp | SDMStudio/sdms | 43a86973081ffd86c091aed69b332f0087f59361 | [
"MIT"
] | null | null | null | src/sdm/core/joint.tpp | SDMStudio/sdms | 43a86973081ffd86c091aed69b332f0087f59361 | [
"MIT"
] | null | null | null |
#define DEFINE_JOINT(CLASS) \
/* This macro allow to define a specific joint on std::shared_ptr<CLASS> that inherites from CLASS. */ \
template <> \
class Joint<std::shared_ptr<CLASS>> : public CLASS, public std::vector<std::shared_ptr<CLASS>>, public Function<number, std::shared_ptr<CLASS>> \
{ \
public: \
using value_type = std::shared_ptr<CLASS>; \
\
Joint() {} \
Joint(std::size_t size) : std::vector<std::shared_ptr<CLASS>>(size) {} \
Joint(std::size_t size, std::shared_ptr<CLASS> default_value) : std::vector<std::shared_ptr<CLASS>>(size, default_value) {} \
Joint(const std::vector<std::shared_ptr<CLASS>> &joint_item) : std::vector<std::shared_ptr<CLASS>>(joint_item) {} \
Joint(const std::vector<number> &, const std::vector<std::shared_ptr<CLASS>> &joint_item) : std::vector<std::shared_ptr<CLASS>>(joint_item) {} \
Joint(std::initializer_list<std::shared_ptr<CLASS>> list_values) : std::vector<std::shared_ptr<CLASS>>(list_values) {} \
\
const std::shared_ptr<CLASS> &get(const number &index) const \
{ \
return this->at(index); \
} \
\
number getNumAgents() const \
{ \
return this->size(); \
} \
\
template <typename TOutput> \
std::shared_ptr<Joint<std::shared_ptr<TOutput>>> toJoint() \
{ \
auto joint_output = std::make_shared<Joint<std::shared_ptr<TOutput>>>(); \
\
for (const auto &item : *this) \
{ \
joint_output->push_back(std::static_pointer_cast<TOutput>(item)); \
} \
\
return joint_output; \
} \
\
std::shared_ptr<CLASS> operator()(const number &i) \
{ \
return (*this)[i]; \
} \
\
std::string str() const \
{ \
std::ostringstream res; \
res << "[" << this->getNumAgents() << "]("; \
if (this->getNumAgents() > 0) \
{ \
number ag; \
for (ag = 0; ag < this->getNumAgents() - 1; ++ag) \
{ \
res << this->get(ag)->str() << ", "; \
} \
res << this->get(ag)->str(); \
} \
res << ")"; \
return res.str(); \
} \
friend std::ostream &operator<<(std::ostream &os, const Joint<std::shared_ptr<CLASS>> &joint_action) \
{ \
os << joint_action.str(); \
return os; \
} \
};
namespace sdm
{
// Specialisation for the Joint Action
DEFINE_JOINT(Item);
// Specialisation for the Joint Action
DEFINE_JOINT(Action);
// Specialisation for the Joint State
DEFINE_JOINT(State);
// Specialisation for the Joint Observation
DEFINE_JOINT(Observation);
template <typename T>
Joint<T>::Joint() {}
template <typename T>
Joint<T>::Joint(std::size_t size) : std::vector<T>(size) {}
template <typename T>
Joint<T>::Joint(std::size_t size, T default_value) : std::vector<T>(size, default_value) {}
template <typename T>
Joint<T>::Joint(const std::vector<T> &joint_item) : std::vector<T>(joint_item) {}
template <typename T>
Joint<T>::Joint(const std::vector<number> &, const std::vector<T> &joint_item) : std::vector<T>(joint_item) {}
template <typename T>
Joint<T>::Joint(std::initializer_list<T> list_values) : std::vector<T>(list_values) {}
template <typename T>
Joint<T>::~Joint() {}
template <typename T>
const T &Joint<T>::get(const number &index) const
{
return this->at(index);
}
template <typename T>
number Joint<T>::getNumAgents() const
{
return this->size();
}
template <typename T>
template <typename TOutput>
std::shared_ptr<Joint<std::shared_ptr<TOutput>>> Joint<T>::toJoint()
{
auto joint_output = std::make_shared<Joint<std::shared_ptr<TOutput>>>();
for (const auto &item : *this)
{
joint_output->push_back(std::static_pointer_cast<TOutput>(item));
}
return joint_output;
}
template <typename T>
T Joint<T>::operator()(const number &i)
{
return (*this)[i];
}
template <typename T>
std::string Joint<T>::str() const
{
std::ostringstream res;
res << "[" << this->getNumAgents() << "](";
if (this->getNumAgents() > 0)
{
number ag;
for (ag = 0; ag < this->getNumAgents() - 1; ++ag)
{
res << this->get(ag) << ", ";
}
res << this->get(ag);
}
res << ")";
return res.str();
}
} // namespace sdm
namespace std
{
template <typename T>
struct hash<sdm::Joint<T>>
{
typedef sdm::Joint<T> argument_type;
typedef std::size_t result_type;
result_type operator()(argument_type const &in) const
{
return std::hash<std::vector<T>>()(in);
}
};
} | 73.702381 | 194 | 0.220966 | SDMStudio |
5aa87fe1c04f1ac8be1528f7d60a790f841cc03d | 1,330 | cpp | C++ | xenon/src/xenon/core/asset.cpp | Neathan/Xenon | d376337dd086ac8ccb84cbaf97b6537ad6dda8a4 | [
"MIT"
] | 1 | 2021-09-21T23:37:22.000Z | 2021-09-21T23:37:22.000Z | xenon/src/xenon/core/asset.cpp | Neathan/Xenon | d376337dd086ac8ccb84cbaf97b6537ad6dda8a4 | [
"MIT"
] | null | null | null | xenon/src/xenon/core/asset.cpp | Neathan/Xenon | d376337dd086ac8ccb84cbaf97b6537ad6dda8a4 | [
"MIT"
] | null | null | null | #include "asset.h"
#include "xenon/core/log.h"
namespace xe {
void copyAssetMetaRuntimeData(const Asset* source, Asset* target) {
target->metadata.handle = source->metadata.handle;
target->metadata.type = source->metadata.type;
target->metadata.path = source->metadata.path;
target->runtimeData.loaded = source->runtimeData.loaded;
target->runtimeData.parent = source->runtimeData.parent;
target->runtimeData.filename = source->runtimeData.filename;
target->runtimeData.extension = source->runtimeData.extension;
}
AssetType getAssetTypeFromPath(const std::string& path) {
auto index = path.find_last_of('.');
if (index != std::string::npos) {
std::string extension = path.substr(index + 1);
// Images
if (extension == "png") return AssetType::Texture;
if (extension == "jpg") return AssetType::Texture;
if (extension == "jpeg") return AssetType::Texture;
if (extension == "tga") return AssetType::Texture;
if (extension == "bmp") return AssetType::Texture;
if (extension == "psd") return AssetType::Texture;
if (extension == "ktx") return AssetType::Texture;
// Models
if (extension == "glb") return AssetType::Model;
if (extension == "gltf") return AssetType::Model;
}
XE_LOG_TRACE_F("ASSET: No extension match for: {}", path);
return AssetType::None;
}
}
| 32.439024 | 68 | 0.696241 | Neathan |
5aab948085ff5abeee86e7106a25b873fbf0d801 | 5,641 | cc | C++ | src/outlinerdebug.cc | jariarkko/cave-outliner | 2077a24627881f45a27aec3eb4e5b4855f6b7fec | [
"BSD-3-Clause"
] | 4 | 2021-09-02T16:52:23.000Z | 2022-02-07T16:39:50.000Z | src/outlinerdebug.cc | jariarkko/cave-outliner | 2077a24627881f45a27aec3eb4e5b4855f6b7fec | [
"BSD-3-Clause"
] | 87 | 2021-09-12T06:09:57.000Z | 2022-02-15T00:05:43.000Z | src/outlinerdebug.cc | jariarkko/cave-outliner | 2077a24627881f45a27aec3eb4e5b4855f6b7fec | [
"BSD-3-Clause"
] | 1 | 2021-09-28T21:38:30.000Z | 2021-09-28T21:38:30.000Z | ///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//
// CCC AAA V V EEEEE OOO UU UU TTTTTT LL II NN NN EEEEE RRRRR
// CC CC AA AA V V EE OO OO UU UU TT LL II NNN NN EE RR RR
// CC AA AA V V EEE OO OO UU UU TT LL II NN N NN EEE RRRRR
// CC CC AAAAAA V V EE OO OO UU UU TT LL II NN NNN EE RR R
// CCc AA AA V EEEEE OOO UUUUU TT LLLLL II NN NN EEEEE RR R
//
// CAVE OUTLINER -- Cave 3D model processing software
//
// Copyright (C) 2021 by Jari Arkko -- See LICENSE.txt for license information.
//
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
// Includes ///////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
#include <stdarg.h>
#include <cassert>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include "outlinertypes.hh"
#include "outlinerconstants.hh"
#include "outlinerdebug.hh"
///////////////////////////////////////////////////////////////////////////////////////////////
// Local variables ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
static bool info = 0;
static bool debug = 0;
static bool deepdebug = 0;
static bool deepdeepdebug = 0;
///////////////////////////////////////////////////////////////////////////////////////////////
// Initialization /////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
void
debuginit(bool infoSet,
bool debugSet,
bool deepdebugSet,
bool deepdeepdebugSet) {
info = infoSet;
debug = debugSet;
deepdebug = deepdebugSet;
deepdeepdebug = deepdeepdebugSet;
}
///////////////////////////////////////////////////////////////////////////////////////////////
// Debug and output functions /////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
__attribute__((__format__ (__printf__, 1, 0)))
void
debugf(const char* format, ...) {
assert(format != 0);
if (debug) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_DEBUGPREFIX;
std::cerr << buf;
std::cerr << "\n";
std::cerr.flush();
}
}
__attribute__((__format__ (__printf__, 1, 0)))
void
deepdebugf(const char* format, ...) {
assert(format != 0);
if (deepdebug) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_DEBUGPREFIX;
std::cerr << buf;
std::cerr << "\n";
std::cerr.flush();
}
}
__attribute__((__format__ (__printf__, 1, 0)))
void
deepdeepdebugf(const char* format, ...) {
assert(format != 0);
if (deepdeepdebug) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_DEBUGPREFIX;
std::cerr << buf;
std::cerr << "\n";
std::cerr.flush();
}
}
__attribute__((__format__ (__printf__, 1, 0)))
void
warnf(const char* format, ...) {
assert(format != 0);
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_WARNPREFIX;
std::cerr << buf;
std::cerr << " -- exit\n";
std::cerr.flush();
}
__attribute__((__format__ (__printf__, 1, 0)))
void
errf(const char* format, ...) {
assert(format != 0);
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_ERRPREFIX;
std::cerr << buf;
std::cerr << " -- exit\n";
std::cerr.flush();
}
__attribute__((__format__ (__printf__, 1, 0)))
void
fatalf(const char* format, ...) {
assert(format != 0);
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cerr << OUTLINER_ERRPREFIX;
std::cerr << buf;
std::cerr << " -- exit\n";
std::cerr.flush();
exit(1);
}
__attribute__((__format__ (__printf__, 1, 0)))
void
infof(const char* format, ...) {
assert(format != 0);
if (info) {
va_list args;
char buf[500];
memset(buf,0,sizeof(buf));
va_start (args, format);
vsnprintf(buf,sizeof(buf)-1,format,args);
va_end (args);
std::cout << OUTLINER_INFOPREFIX;
std::cout << buf;
std::cout << "\n";
std::cout.flush();
}
}
| 27.120192 | 95 | 0.423329 | jariarkko |
5aad100adabbe634edb18b10d83f62667ad7bed0 | 478 | cpp | C++ | tests/memory_resource/memory_resource_mini.cpp | olegpublicprofile/stdfwd | 19671bcc8e53bd4c008f07656eaf25a22495e093 | [
"MIT"
] | 11 | 2021-03-15T07:06:21.000Z | 2021-09-27T13:54:25.000Z | tests/memory_resource/memory_resource_mini.cpp | olegpublicprofile/stdfwd | 19671bcc8e53bd4c008f07656eaf25a22495e093 | [
"MIT"
] | null | null | null | tests/memory_resource/memory_resource_mini.cpp | olegpublicprofile/stdfwd | 19671bcc8e53bd4c008f07656eaf25a22495e093 | [
"MIT"
] | 1 | 2021-06-24T10:46:46.000Z | 2021-06-24T10:46:46.000Z | #include "tests/memory_resource/memory_resource_mini.hpp"
#include "tests/memory_resource/memory_resource_fwd.hpp"
//------------------------------------------------------------------------------
namespace memory_resource_tests {
//------------------------------------------------------------------------------
void run_mini()
{
TestClass testObj;
int i = testObj.getInt();
(void)i;
}
//------------------------------------------------------------------------------
}
| 22.761905 | 80 | 0.374477 | olegpublicprofile |
5ab002f951bce3ed0377049fe0cc750d48f79d99 | 4,303 | ipp | C++ | src/lib/diagrams/bdd_manager_creator.ipp | MichalMrena/DecisionDiagrams | e2e9b949405bd2c1c93ba32c151b60a78620afec | [
"MIT"
] | 1 | 2022-03-17T12:55:30.000Z | 2022-03-17T12:55:30.000Z | src/lib/diagrams/bdd_manager_creator.ipp | MichalMrena/DecisionDiagrams | e2e9b949405bd2c1c93ba32c151b60a78620afec | [
"MIT"
] | null | null | null | src/lib/diagrams/bdd_manager_creator.ipp | MichalMrena/DecisionDiagrams | e2e9b949405bd2c1c93ba32c151b60a78620afec | [
"MIT"
] | null | null | null | #ifndef MIX_DD_bdd_manager_HPP
#include "../bdd_manager.hpp"
#endif
namespace teddy
{
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::variable_not
(index_t const i) -> bdd_t
{
return this->negate(this->variable(i));
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::operator()
(index_t const i, NOT) -> bdd_t
{
return this->variable_not(i);
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::variables
(std::vector<bool_var> const& vars) -> std::vector<bdd_t>
{
return utils::fmap(vars, [this](auto const var)
{
return var.complemented ? this->variable_not(var.index)
: this->variable(var.index);
});
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::product
(std::vector<bool_var> const& vars) -> bdd_t
{
return this->product(std::begin(vars), std::end(vars));
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::product
(bool_cube const& cube) -> bdd_t
{
auto const varCount = cube.size();
auto const falseLeaf = base::manager_.terminal_vertex(0);
auto const trueLeaf = base::manager_.terminal_vertex(1);
auto index = static_cast<index_t>(varCount - 1);
while (index != static_cast<index_t>(-1) && cube.get(index) > 1)
{
--index;
}
if (index == static_cast<index_t>(-1))
{
return this->constant(0);
}
auto prevVertex = 0 == cube.get(index)
? base::manager_.internal_vertex(index, {trueLeaf, falseLeaf})
: base::manager_.internal_vertex(index, {falseLeaf, trueLeaf});
while (index > 0)
{
--index;
auto const val = cube.get(index);
if (val > 1)
{
continue;
}
prevVertex = 0 == val
? base::manager_.internal_vertex(index, {prevVertex, falseLeaf})
: base::manager_.internal_vertex(index, {falseLeaf, prevVertex});
}
return bdd_t {prevVertex};
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::from_pla
(pla_file const& file, fold_e const mm) -> std::vector<bdd_t>
{
auto const& plaLines = file.get_lines();
auto const lineCount = file.line_count();
auto const functionCount = file.function_count();
// Create a diagram for each function.
auto functionDiagrams = utils::vector<bdd_t>(functionCount);
for (auto fi = 0u; fi < functionCount; ++fi)
{
// First create a diagram for each product.
auto productDiagrams = utils::vector<bdd_t>(lineCount);
for (auto li = 0u; li < lineCount; ++li)
{
// We are doing SOP so we are only interested in functions with value 1.
if (plaLines[li].fVals.get(fi) == 1)
{
productDiagrams.emplace_back(this->product(plaLines[li].cube));
}
}
// In this case we just have a constant function.
if (productDiagrams.empty())
{
productDiagrams.emplace_back(this->constant(0));
}
// Then merge products using OR.
functionDiagrams.emplace_back(this->or_merge(productDiagrams, mm));
}
return functionDiagrams;
}
template<class VertexData, class ArcData>
auto bdd_manager<VertexData, ArcData>::or_merge
(std::vector<bdd_t>& diagrams, fold_e mm) -> bdd_t
{
switch (mm)
{
case fold_e::tree:
return this->template tree_fold<OR>(std::begin(diagrams), std::end(diagrams));
case fold_e::left:
return this->template left_fold<OR>(std::begin(diagrams), std::end(diagrams));
default:
throw std::runtime_error("Non-exhaustive enum switch.");
}
}
} | 33.617188 | 94 | 0.558912 | MichalMrena |
5ab31ae91b7618b6ae521ea0638acdea9cb15ef3 | 34,408 | cpp | C++ | OpenHome/Net/Bindings/Cpp/ControlPoint/Proxies/CpAvOpenhomeOrgMediaServer1Std.cpp | kmuellerjones/ohNetGenerated | 2bb32625c9ab49e17ba84ec40cc4046ec09182f3 | [
"MIT"
] | 1 | 2017-01-06T15:34:03.000Z | 2017-01-06T15:34:03.000Z | OpenHome/Net/Bindings/Cpp/ControlPoint/Proxies/CpAvOpenhomeOrgMediaServer1Std.cpp | kmuellerjones/ohNetGenerated | 2bb32625c9ab49e17ba84ec40cc4046ec09182f3 | [
"MIT"
] | 5 | 2016-01-05T09:47:15.000Z | 2018-12-16T14:07:35.000Z | OpenHome/Net/Bindings/Cpp/ControlPoint/Proxies/CpAvOpenhomeOrgMediaServer1Std.cpp | kmuellerjones/ohNetGenerated | 2bb32625c9ab49e17ba84ec40cc4046ec09182f3 | [
"MIT"
] | 6 | 2015-04-08T18:50:36.000Z | 2021-04-14T13:41:15.000Z | #include "CpAvOpenhomeOrgMediaServer1.h"
#include <OpenHome/Net/Core/CpProxy.h>
#include <OpenHome/Net/Private/CpiService.h>
#include <OpenHome/Private/Thread.h>
#include <OpenHome/Net/Private/AsyncPrivate.h>
#include <OpenHome/Buffer.h>
#include <OpenHome/Net/Cpp/CpDevice.h>
#include <OpenHome/Net/Private/CpiDevice.h>
#include <string>
using namespace OpenHome;
using namespace OpenHome::Net;
class SyncManufacturerAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncManufacturerAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncManufacturerAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
std::string& iName;
std::string& iInfo;
std::string& iUrl;
std::string& iImageUri;
};
SyncManufacturerAvOpenhomeOrgMediaServer1Cpp::SyncManufacturerAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
: iService(aProxy)
, iName(aName)
, iInfo(aInfo)
, iUrl(aUrl)
, iImageUri(aImageUri)
{
}
void SyncManufacturerAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndManufacturer(aAsync, iName, iInfo, iUrl, iImageUri);
}
class SyncModelAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncModelAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncModelAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
std::string& iName;
std::string& iInfo;
std::string& iUrl;
std::string& iImageUri;
};
SyncModelAvOpenhomeOrgMediaServer1Cpp::SyncModelAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
: iService(aProxy)
, iName(aName)
, iInfo(aInfo)
, iUrl(aUrl)
, iImageUri(aImageUri)
{
}
void SyncModelAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndModel(aAsync, iName, iInfo, iUrl, iImageUri);
}
class SyncProductAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncProductAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncProductAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
std::string& iName;
std::string& iInfo;
std::string& iUrl;
std::string& iImageUri;
};
SyncProductAvOpenhomeOrgMediaServer1Cpp::SyncProductAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
: iService(aProxy)
, iName(aName)
, iInfo(aInfo)
, iUrl(aUrl)
, iImageUri(aImageUri)
{
}
void SyncProductAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndProduct(aAsync, iName, iInfo, iUrl, iImageUri);
}
class SyncAttributesAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncAttributesAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aValue);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncAttributesAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
std::string& iValue;
};
SyncAttributesAvOpenhomeOrgMediaServer1Cpp::SyncAttributesAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, std::string& aValue)
: iService(aProxy)
, iValue(aValue)
{
}
void SyncAttributesAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndAttributes(aAsync, iValue);
}
class SyncQueryPortAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncQueryPortAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, uint32_t& aValue);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncQueryPortAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
uint32_t& iValue;
};
SyncQueryPortAvOpenhomeOrgMediaServer1Cpp::SyncQueryPortAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, uint32_t& aValue)
: iService(aProxy)
, iValue(aValue)
{
}
void SyncQueryPortAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndQueryPort(aAsync, iValue);
}
class SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, uint32_t& aValue);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
uint32_t& iValue;
};
SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp::SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, uint32_t& aValue)
: iService(aProxy)
, iValue(aValue)
{
}
void SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndBrowsePort(aAsync, iValue);
}
class SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp : public SyncProxyAction
{
public:
SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, uint32_t& aValue);
virtual void CompleteRequest(IAsync& aAsync);
virtual ~SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp() {}
private:
CpProxyAvOpenhomeOrgMediaServer1Cpp& iService;
uint32_t& iValue;
};
SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp::SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp(CpProxyAvOpenhomeOrgMediaServer1Cpp& aProxy, uint32_t& aValue)
: iService(aProxy)
, iValue(aValue)
{
}
void SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp::CompleteRequest(IAsync& aAsync)
{
iService.EndUpdateCount(aAsync, iValue);
}
CpProxyAvOpenhomeOrgMediaServer1Cpp::CpProxyAvOpenhomeOrgMediaServer1Cpp(CpDeviceCpp& aDevice)
: iCpProxy("av-openhome-org", "MediaServer", 1, aDevice.Device())
{
OpenHome::Net::Parameter* param;
iActionManufacturer = new Action("Manufacturer");
param = new OpenHome::Net::ParameterString("Name");
iActionManufacturer->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("Info");
iActionManufacturer->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("Url");
iActionManufacturer->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("ImageUri");
iActionManufacturer->AddOutputParameter(param);
iActionModel = new Action("Model");
param = new OpenHome::Net::ParameterString("Name");
iActionModel->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("Info");
iActionModel->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("Url");
iActionModel->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("ImageUri");
iActionModel->AddOutputParameter(param);
iActionProduct = new Action("Product");
param = new OpenHome::Net::ParameterString("Name");
iActionProduct->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("Info");
iActionProduct->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("Url");
iActionProduct->AddOutputParameter(param);
param = new OpenHome::Net::ParameterString("ImageUri");
iActionProduct->AddOutputParameter(param);
iActionAttributes = new Action("Attributes");
param = new OpenHome::Net::ParameterString("Value");
iActionAttributes->AddOutputParameter(param);
iActionQueryPort = new Action("QueryPort");
param = new OpenHome::Net::ParameterUint("Value");
iActionQueryPort->AddOutputParameter(param);
iActionBrowsePort = new Action("BrowsePort");
param = new OpenHome::Net::ParameterUint("Value");
iActionBrowsePort->AddOutputParameter(param);
iActionUpdateCount = new Action("UpdateCount");
param = new OpenHome::Net::ParameterUint("Value");
iActionUpdateCount->AddOutputParameter(param);
Functor functor;
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerNamePropertyChanged);
iManufacturerName = new PropertyString("ManufacturerName", functor);
AddProperty(iManufacturerName);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerInfoPropertyChanged);
iManufacturerInfo = new PropertyString("ManufacturerInfo", functor);
AddProperty(iManufacturerInfo);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerUrlPropertyChanged);
iManufacturerUrl = new PropertyString("ManufacturerUrl", functor);
AddProperty(iManufacturerUrl);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerImageUriPropertyChanged);
iManufacturerImageUri = new PropertyString("ManufacturerImageUri", functor);
AddProperty(iManufacturerImageUri);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelNamePropertyChanged);
iModelName = new PropertyString("ModelName", functor);
AddProperty(iModelName);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelInfoPropertyChanged);
iModelInfo = new PropertyString("ModelInfo", functor);
AddProperty(iModelInfo);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelUrlPropertyChanged);
iModelUrl = new PropertyString("ModelUrl", functor);
AddProperty(iModelUrl);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelImageUriPropertyChanged);
iModelImageUri = new PropertyString("ModelImageUri", functor);
AddProperty(iModelImageUri);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductNamePropertyChanged);
iProductName = new PropertyString("ProductName", functor);
AddProperty(iProductName);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductInfoPropertyChanged);
iProductInfo = new PropertyString("ProductInfo", functor);
AddProperty(iProductInfo);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductUrlPropertyChanged);
iProductUrl = new PropertyString("ProductUrl", functor);
AddProperty(iProductUrl);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductImageUriPropertyChanged);
iProductImageUri = new PropertyString("ProductImageUri", functor);
AddProperty(iProductImageUri);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::AttributesPropertyChanged);
iAttributes = new PropertyString("Attributes", functor);
AddProperty(iAttributes);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::QueryPortPropertyChanged);
iQueryPort = new PropertyUint("QueryPort", functor);
AddProperty(iQueryPort);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::BrowsePortPropertyChanged);
iBrowsePort = new PropertyUint("BrowsePort", functor);
AddProperty(iBrowsePort);
functor = MakeFunctor(*this, &CpProxyAvOpenhomeOrgMediaServer1Cpp::UpdateCountPropertyChanged);
iUpdateCount = new PropertyUint("UpdateCount", functor);
AddProperty(iUpdateCount);
}
CpProxyAvOpenhomeOrgMediaServer1Cpp::~CpProxyAvOpenhomeOrgMediaServer1Cpp()
{
DestroyService();
delete iActionManufacturer;
delete iActionModel;
delete iActionProduct;
delete iActionAttributes;
delete iActionQueryPort;
delete iActionBrowsePort;
delete iActionUpdateCount;
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncManufacturer(std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
{
SyncManufacturerAvOpenhomeOrgMediaServer1Cpp sync(*this, aName, aInfo, aUrl, aImageUri);
BeginManufacturer(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginManufacturer(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionManufacturer, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionManufacturer->OutputParameters();
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndManufacturer(IAsync& aAsync, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("Manufacturer"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aName.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aInfo.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aUrl.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aImageUri.assign((const char*)val.Ptr(), val.Bytes());
}
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncModel(std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
{
SyncModelAvOpenhomeOrgMediaServer1Cpp sync(*this, aName, aInfo, aUrl, aImageUri);
BeginModel(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginModel(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionModel, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionModel->OutputParameters();
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndModel(IAsync& aAsync, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("Model"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aName.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aInfo.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aUrl.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aImageUri.assign((const char*)val.Ptr(), val.Bytes());
}
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncProduct(std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
{
SyncProductAvOpenhomeOrgMediaServer1Cpp sync(*this, aName, aInfo, aUrl, aImageUri);
BeginProduct(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginProduct(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionProduct, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionProduct->OutputParameters();
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndProduct(IAsync& aAsync, std::string& aName, std::string& aInfo, std::string& aUrl, std::string& aImageUri)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("Product"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aName.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aInfo.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aUrl.assign((const char*)val.Ptr(), val.Bytes());
}
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aImageUri.assign((const char*)val.Ptr(), val.Bytes());
}
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncAttributes(std::string& aValue)
{
SyncAttributesAvOpenhomeOrgMediaServer1Cpp sync(*this, aValue);
BeginAttributes(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginAttributes(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionAttributes, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionAttributes->OutputParameters();
invocation->AddOutput(new ArgumentString(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndAttributes(IAsync& aAsync, std::string& aValue)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("Attributes"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
{
const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value();
aValue.assign((const char*)val.Ptr(), val.Bytes());
}
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncQueryPort(uint32_t& aValue)
{
SyncQueryPortAvOpenhomeOrgMediaServer1Cpp sync(*this, aValue);
BeginQueryPort(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginQueryPort(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionQueryPort, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionQueryPort->OutputParameters();
invocation->AddOutput(new ArgumentUint(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndQueryPort(IAsync& aAsync, uint32_t& aValue)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("QueryPort"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
aValue = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncBrowsePort(uint32_t& aValue)
{
SyncBrowsePortAvOpenhomeOrgMediaServer1Cpp sync(*this, aValue);
BeginBrowsePort(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginBrowsePort(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionBrowsePort, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionBrowsePort->OutputParameters();
invocation->AddOutput(new ArgumentUint(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndBrowsePort(IAsync& aAsync, uint32_t& aValue)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("BrowsePort"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
aValue = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SyncUpdateCount(uint32_t& aValue)
{
SyncUpdateCountAvOpenhomeOrgMediaServer1Cpp sync(*this, aValue);
BeginUpdateCount(sync.Functor());
sync.Wait();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BeginUpdateCount(FunctorAsync& aFunctor)
{
Invocation* invocation = iCpProxy.GetService().Invocation(*iActionUpdateCount, aFunctor);
TUint outIndex = 0;
const Action::VectorParameters& outParams = iActionUpdateCount->OutputParameters();
invocation->AddOutput(new ArgumentUint(*outParams[outIndex++]));
iCpProxy.GetInvocable().InvokeAction(*invocation);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::EndUpdateCount(IAsync& aAsync, uint32_t& aValue)
{
ASSERT(((Async&)aAsync).Type() == Async::eInvocation);
Invocation& invocation = (Invocation&)aAsync;
ASSERT(invocation.Action().Name() == Brn("UpdateCount"));
Error::ELevel level;
TUint code;
const TChar* ignore;
if (invocation.Error(level, code, ignore)) {
THROW_PROXYERROR(level, code);
}
TUint index = 0;
aValue = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyManufacturerNameChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iManufacturerNameChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyManufacturerInfoChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iManufacturerInfoChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyManufacturerUrlChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iManufacturerUrlChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyManufacturerImageUriChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iManufacturerImageUriChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyModelNameChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iModelNameChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyModelInfoChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iModelInfoChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyModelUrlChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iModelUrlChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyModelImageUriChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iModelImageUriChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyProductNameChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iProductNameChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyProductInfoChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iProductInfoChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyProductUrlChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iProductUrlChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyProductImageUriChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iProductImageUriChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyAttributesChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iAttributesChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyQueryPortChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iQueryPortChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyBrowsePortChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iBrowsePortChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyUpdateCountChanged(Functor& aFunctor)
{
iCpProxy.GetLock().Wait();
iUpdateCountChanged = aFunctor;
iCpProxy.GetLock().Signal();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyManufacturerName(std::string& aManufacturerName) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iManufacturerName->Value();
aManufacturerName.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyManufacturerInfo(std::string& aManufacturerInfo) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iManufacturerInfo->Value();
aManufacturerInfo.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyManufacturerUrl(std::string& aManufacturerUrl) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iManufacturerUrl->Value();
aManufacturerUrl.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyManufacturerImageUri(std::string& aManufacturerImageUri) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iManufacturerImageUri->Value();
aManufacturerImageUri.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyModelName(std::string& aModelName) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iModelName->Value();
aModelName.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyModelInfo(std::string& aModelInfo) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iModelInfo->Value();
aModelInfo.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyModelUrl(std::string& aModelUrl) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iModelUrl->Value();
aModelUrl.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyModelImageUri(std::string& aModelImageUri) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iModelImageUri->Value();
aModelImageUri.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyProductName(std::string& aProductName) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iProductName->Value();
aProductName.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyProductInfo(std::string& aProductInfo) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iProductInfo->Value();
aProductInfo.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyProductUrl(std::string& aProductUrl) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iProductUrl->Value();
aProductUrl.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyProductImageUri(std::string& aProductImageUri) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iProductImageUri->Value();
aProductImageUri.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyAttributes(std::string& aAttributes) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
const Brx& val = iAttributes->Value();
aAttributes.assign((const char*)val.Ptr(), val.Bytes());
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyQueryPort(uint32_t& aQueryPort) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
aQueryPort = iQueryPort->Value();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyBrowsePort(uint32_t& aBrowsePort) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
aBrowsePort = iBrowsePort->Value();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::PropertyUpdateCount(uint32_t& aUpdateCount) const
{
AutoMutex a(iCpProxy.PropertyReadLock());
if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) {
THROW(ProxyNotSubscribed);
}
aUpdateCount = iUpdateCount->Value();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerNamePropertyChanged()
{
ReportEvent(iManufacturerNameChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerInfoPropertyChanged()
{
ReportEvent(iManufacturerInfoChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerUrlPropertyChanged()
{
ReportEvent(iManufacturerUrlChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ManufacturerImageUriPropertyChanged()
{
ReportEvent(iManufacturerImageUriChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelNamePropertyChanged()
{
ReportEvent(iModelNameChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelInfoPropertyChanged()
{
ReportEvent(iModelInfoChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelUrlPropertyChanged()
{
ReportEvent(iModelUrlChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ModelImageUriPropertyChanged()
{
ReportEvent(iModelImageUriChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductNamePropertyChanged()
{
ReportEvent(iProductNameChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductInfoPropertyChanged()
{
ReportEvent(iProductInfoChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductUrlPropertyChanged()
{
ReportEvent(iProductUrlChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ProductImageUriPropertyChanged()
{
ReportEvent(iProductImageUriChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::AttributesPropertyChanged()
{
ReportEvent(iAttributesChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::QueryPortPropertyChanged()
{
ReportEvent(iQueryPortChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::BrowsePortPropertyChanged()
{
ReportEvent(iBrowsePortChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::UpdateCountPropertyChanged()
{
ReportEvent(iUpdateCountChanged);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::Subscribe()
{
iCpProxy.Subscribe();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::Unsubscribe()
{
iCpProxy.Unsubscribe();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyChanged(Functor& aFunctor)
{
iCpProxy.SetPropertyChanged(aFunctor);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::SetPropertyInitialEvent(Functor& aFunctor)
{
iCpProxy.SetPropertyInitialEvent(aFunctor);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::AddProperty(Property* aProperty)
{
iCpProxy.AddProperty(aProperty);
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::DestroyService()
{
iCpProxy.DestroyService();
}
void CpProxyAvOpenhomeOrgMediaServer1Cpp::ReportEvent(Functor aFunctor)
{
iCpProxy.ReportEvent(aFunctor);
}
TUint CpProxyAvOpenhomeOrgMediaServer1Cpp::Version() const
{
return iCpProxy.Version();
}
| 35.182004 | 218 | 0.748372 | kmuellerjones |
5ab40cad403f3d645ee6c48b5684403204a488ff | 2,178 | cpp | C++ | ModernCpp-11-14-17/cppFacilities/inlineFunctions.cpp | eduardorasgado/Cpp-AdvancedTopics | b025845e97f794be857ec5893999a5b2a18c1939 | [
"MIT"
] | 1 | 2019-06-20T17:51:11.000Z | 2019-06-20T17:51:11.000Z | ModernCpp-11-14-17/cppFacilities/inlineFunctions.cpp | eduardorasgado/Cpp-AdvancedTopics | b025845e97f794be857ec5893999a5b2a18c1939 | [
"MIT"
] | null | null | null | ModernCpp-11-14-17/cppFacilities/inlineFunctions.cpp | eduardorasgado/Cpp-AdvancedTopics | b025845e97f794be857ec5893999a5b2a18c1939 | [
"MIT"
] | null | null | null | #include <iostream>
#include <map>
#include <memory>
// inline function through a macro
// if it is not handling correctly it will create bugs
//#define Square(A) (A*A)
// In c++ instead a macro we use inline functions
// inline keyword tells the compiler to substitute the caller of the function in
// where inline function is been using(e.g int result = Square(val) )
// and replace it with the body of the function(in compiler time)
inline int Square(int x)
{
return x * x;
}
// new name for type pair: type definition
typedef std::pair<int, std::string> par;
int main()
{
// creating a map using a smart pointer
auto myMap = std::make_shared<std::map<int, std::string>>();
// inserting elements to map
myMap->insert(par(0, "0x200"));
myMap->insert(par(1, "0x420"));
//showing the map
// creating an iterator for stl map object
std::map<int, std::string>::iterator i = myMap->begin();
for(i; i != myMap->end();++i) std::cout << "map[" << i->first <<"]: " << i->second << "\n";
// inline functions
int val = 5;
// with inline function, the arguments passed here are firstly evaluated and then
// passed to the function
int result = Square(val + 1);
std::cout << result << std::endl;
int result2 = Square((val * 2) +1); // 11 and 11*11 = 121
std::cout << result2 << std::endl;
/*
INLINE FUNCTIONS:
-Only a request to the compiler
-Certain functions may nto be inlined
large functions
functions having too many conditional statements
recursive functions
functions invoked through pointers
etc
-Diferent compilers have different rules
- Modern compilers may automatically inline even non-inline functions
-Excessive inlining may increase binary size
MACROS VS INLINE
macro is text substitution | the call is replaced with the body
error prone due to substitution | safe to use as it has func semantics
does not have an address | has an address
difficult to use with multiple lines of code | can have multiple line of codes
*/
return 0;
}
| 32.029412 | 95 | 0.646006 | eduardorasgado |