blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d8a2e06aefe4640da886d2f05c5b9adf318ab4d2 | 46d731787651279dc8824302f28c65ddc7ab037f | /ep_24_test_framework/src/IndexBuffer.cpp | 4909544bc00e3a7cabcb0dddf41491c3befa4cd4 | [
"MIT"
] | permissive | VgTajdd/opengl_tutorials | b0b2d80213eab7b841d10006aaa7312ab48d1a0d | c9e714aee1bee0cf165338bddae5c56201e405fe | refs/heads/master | 2022-02-13T04:16:54.846646 | 2022-01-22T15:49:15 | 2022-01-22T15:49:15 | 212,558,764 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | cpp | #include "IndexBuffer.h"
#include "Renderer.h"
#include "Debug.h"
IndexBuffer::IndexBuffer( const unsigned int* indices, unsigned int count )
:
m_Count( count )
{
ASSERT( sizeof( unsigned int ) == sizeof( GLuint ) );
GLCall( glGenBuffers( 1, &m_RendererID ) );
GLCall( glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, m_RendererID ) );
GLCall( glBufferData( GL_ELEMENT_ARRAY_BUFFER, count * sizeof( unsigned int ), indices, GL_STATIC_DRAW ) );
}
IndexBuffer::~IndexBuffer()
{
GLCall( glDeleteBuffers( 1, &m_RendererID ) );
}
void IndexBuffer::Bind() const
{
GLCall( glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, m_RendererID ) );
}
void IndexBuffer::Unbind() const
{
GLCall( glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, 0 ) );
}
| [
"aduranddiaz@gmail.com"
] | aduranddiaz@gmail.com |
f63403114e0c20f058b74fad47b6d897a2430bb3 | ed70171946678f9d8f9f018aeb1a50cb71558446 | /app/src/main/cpp/sample/TextRenderSample.cpp | 7f4f04c93be3425757554f20fee7a13d03561678 | [] | no_license | fdsajkl0724/OpenGlNDK | c9a364300f5f2d9e7615f3e4ee53640f4ac0b085 | 414ba5c5271ff3d3e44bf614b274f5be46c854cb | refs/heads/master | 2023-06-27T06:44:30.398596 | 2021-08-02T00:52:56 | 2021-08-02T00:52:56 | 391,776,566 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16,886 | cpp | //
// Created by Administrator on 2021-07-26.
//
#include <GLUtils.h>
#include <gtc/matrix_transform.inl>
#include "TextRenderSample.h"
static const wchar_t BYTE_FLOW[] = L"微信公众号字节流动,欢迎关注交流学习。";
static const int MAX_SHORT_VALUE = 65536;
TextRenderSample::TextRenderSample()
{
m_SamplerLoc = GL_NONE;
m_MVPMatLoc = GL_NONE;
m_TextureId = GL_NONE;
m_VaoId = GL_NONE;
m_VboId = GL_NONE;
m_AngleX = 0;
m_AngleY = 0;
m_ScaleX = 1.0f;
m_ScaleY = 1.0f;
}
TextRenderSample::~TextRenderSample()
{
NativeImageUtil::FreeNativeImage(&m_RenderImage);
}
void TextRenderSample::Init()
{
if(m_ProgramObj)
return;
LoadFacesByASCII();
LoadFacesByUnicode(BYTE_FLOW, sizeof(BYTE_FLOW)/sizeof(BYTE_FLOW[0]) - 1);
//create RGBA texture
glGenTextures(1, &m_TextureId);
glBindTexture(GL_TEXTURE_2D, m_TextureId);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glBindTexture(GL_TEXTURE_2D, GL_NONE);
char vShaderStr[] =
"#version 300 es\n"
"layout(location = 0) in vec4 a_position;// <vec2 pos, vec2 tex>\n"
"uniform mat4 u_MVPMatrix;\n"
"out vec2 v_texCoord;\n"
"void main()\n"
"{\n"
" gl_Position = u_MVPMatrix * vec4(a_position.xy, 0.0, 1.0);;\n"
" v_texCoord = a_position.zw;\n"
"}";
char fShaderStr[] =
"#version 300 es\n"
"precision mediump float;\n"
"in vec2 v_texCoord;\n"
"layout(location = 0) out vec4 outColor;\n"
"uniform sampler2D s_textTexture;\n"
"uniform vec3 u_textColor;\n"
"\n"
"void main()\n"
"{\n"
" vec4 color = vec4(1.0, 1.0, 1.0, texture(s_textTexture, v_texCoord).r);\n"
" outColor = vec4(u_textColor, 1.0) * color;\n"
"}";
m_ProgramObj = GLUtils::CreateProgram(vShaderStr, fShaderStr);
if (m_ProgramObj)
{
m_SamplerLoc = glGetUniformLocation(m_ProgramObj, "s_textTexture");
m_MVPMatLoc = glGetUniformLocation(m_ProgramObj, "u_MVPMatrix");
}
else
{
LOGCATE("TextRenderSample::Init create program fail");
}
// Generate VAO Id
glGenVertexArrays(1, &m_VaoId);
// Generate VBO Ids and load the VBOs with data
glGenBuffers(1, &m_VboId);
glBindVertexArray(m_VaoId);
glBindBuffer(GL_ARRAY_BUFFER, m_VboId);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat) * 6 * 4, nullptr, GL_DYNAMIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), 0);
glBindBuffer(GL_ARRAY_BUFFER, GL_NONE);
glBindVertexArray(GL_NONE);
//upload RGBA image data
glBindTexture(GL_TEXTURE_2D, m_TextureId);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, m_RenderImage.width, m_RenderImage.height, 0, GL_RGBA, GL_UNSIGNED_BYTE, m_RenderImage.ppPlane[0]);
glBindTexture(GL_TEXTURE_2D, GL_NONE);
}
void TextRenderSample::LoadImage(NativeImage *pImage)
{
LOGCATE("TextRenderSample::LoadImage pImage = %p", pImage->ppPlane[0]);
if (pImage)
{
m_RenderImage.width = pImage->width;
m_RenderImage.height = pImage->height;
m_RenderImage.format = pImage->format;
NativeImageUtil::CopyNativeImage(pImage, &m_RenderImage);
}
}
void TextRenderSample::Draw(int screenW, int screenH)
{
m_SurfaceWidth = screenW;
m_SurfaceHeight = screenH;
LOGCATE("TextRenderSample::Draw()");
if(m_ProgramObj == GL_NONE) return;
glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
glPixelStorei(GL_UNPACK_ALIGNMENT, 1); //禁用byte-alignment限制
glEnable(GL_BLEND);
//glEnable(GL_CULL_FACE);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glm::vec2 viewport(m_SurfaceWidth, m_SurfaceHeight);
UpdateMVPMatrix(m_MVPMatrix, m_AngleX, m_AngleY, viewport.x / viewport.y);
glUniformMatrix4fv(m_MVPMatLoc, 1, GL_FALSE, &m_MVPMatrix[0][0]);
// (x,y)为屏幕坐标系的位置,即原点位于屏幕中心,x(-1.0,1.0), y(-1.0,1.0)
RenderText("My WeChat ID is Byte-Flow.", -0.9f, 0.2f, 1.0f, glm::vec3(0.8, 0.1f, 0.1f), viewport);
RenderText("Welcome to add my WeChat.", -0.9f, 0.0f, 2.0f, glm::vec3(0.2, 0.4f, 0.7f), viewport);
RenderText(BYTE_FLOW, sizeof(BYTE_FLOW)/sizeof(BYTE_FLOW[0]) - 1, -0.9f, -0.2f, 1.0f, glm::vec3(0.7, 0.4f, 0.2f), viewport);
}
void TextRenderSample::UpdateTransformMatrix(float rotateX, float rotateY, float scaleX, float scaleY)
{
GLSampleBase::UpdateTransformMatrix(rotateX, rotateY, scaleX, scaleY);
m_AngleX = static_cast<int>(rotateX);
m_AngleY = static_cast<int>(rotateY);
m_ScaleX = scaleX;
m_ScaleY = scaleY;
}
void TextRenderSample::RenderText(std::string text, GLfloat x, GLfloat y, GLfloat scale,
glm::vec3 color, glm::vec2 viewport) {
// 激活合适的渲染状态
glUseProgram(m_ProgramObj);
glUniform3f(glGetUniformLocation(m_ProgramObj, "u_textColor"), color.x, color.y, color.z);
glBindVertexArray(m_VaoId);
GO_CHECK_GL_ERROR();
// 对文本中的所有字符迭代
std::string::const_iterator c;
x *= viewport.x;
y *= viewport.y;
for (c = text.begin(); c != text.end(); c++)
{
Character ch = m_Characters[*c];
GLfloat xpos = x + ch.bearing.x * scale;
GLfloat ypos = y - (ch.size.y - ch.bearing.y) * scale;
xpos /= viewport.x;
ypos /= viewport.y;
GLfloat w = ch.size.x * scale;
GLfloat h = ch.size.y * scale;
w /= viewport.x;
h /= viewport.y;
LOGCATE("TextRenderSample::RenderText [xpos,ypos,w,h]=[%f, %f, %f, %f], ch.advance >> 6 = %d", xpos, ypos, w, h, ch.advance >> 6);
// 当前字符的VBO
GLfloat vertices[6][4] = {
{ xpos, ypos + h, 0.0, 0.0 },
{ xpos, ypos, 0.0, 1.0 },
{ xpos + w, ypos, 1.0, 1.0 },
{ xpos, ypos + h, 0.0, 0.0 },
{ xpos + w, ypos, 1.0, 1.0 },
{ xpos + w, ypos + h, 1.0, 0.0 }
};
// 在方块上绘制字形纹理
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, ch.textureID);
glUniform1i(m_SamplerLoc, 0);
GO_CHECK_GL_ERROR();
// 更新当前字符的VBO
glBindBuffer(GL_ARRAY_BUFFER, m_VboId);
glBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(vertices), vertices);
GO_CHECK_GL_ERROR();
glBindBuffer(GL_ARRAY_BUFFER, 0);
// 绘制方块
glDrawArrays(GL_TRIANGLES, 0, 6);
GO_CHECK_GL_ERROR();
// 更新位置到下一个字形的原点,注意单位是1/64像素
x += (ch.advance >> 6) * scale; //(2^6 = 64)
}
glBindVertexArray(0);
glBindTexture(GL_TEXTURE_2D, 0);
}
void TextRenderSample::LoadFacesByASCII() {
// FreeType
FT_Library ft;
// All functions return a value different than 0 whenever an error occurred
if (FT_Init_FreeType(&ft))
LOGCATE("TextRenderSample::LoadFacesByASCII FREETYPE: Could not init FreeType Library");
// Load font as face
FT_Face face;
std::string path(DEFAULT_OGL_ASSETS_DIR);
if (FT_New_Face(ft, (path + "/fonts/Antonio-Regular.ttf").c_str(), 0, &face))
LOGCATE("TextRenderSample::LoadFacesByASCII FREETYPE: Failed to load font");
// Set size to load glyphs as
FT_Set_Pixel_Sizes(face, 0, 96);
// Disable byte-alignment restriction
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
// Load first 128 characters of ASCII set
for (unsigned char c = 0; c < 128; c++)
{
// Load character glyph
if (FT_Load_Char(face, c, FT_LOAD_RENDER))
{
LOGCATE("TextRenderSample::LoadFacesByASCII FREETYTPE: Failed to load Glyph");
continue;
}
// Generate texture
GLuint texture;
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
glTexImage2D(
GL_TEXTURE_2D,
0,
GL_LUMINANCE,
face->glyph->bitmap.width,
face->glyph->bitmap.rows,
0,
GL_LUMINANCE,
GL_UNSIGNED_BYTE,
face->glyph->bitmap.buffer
);
// NativeImage image;
// image.width = face->glyph->bitmap.width;
// image.height = face->glyph->bitmap.rows;
// image.format = 8;
// image.ppPlane[0] = face->glyph->bitmap.buffer;
// NativeImageUtil::DumpNativeImage(&image, "/sdcard/DCIM", "TextRenderSample");
LOGCATE("TextRenderSample::LoadFacesByASCII [w,h,buffer]=[%d, %d, %p], ch.advance >> 6 = %d", face->glyph->bitmap.width,face->glyph->bitmap.rows, face->glyph->bitmap.buffer,face->glyph->advance.x >> 6);
// Set texture options
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_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// Now store character for later use
Character character = {
texture,
glm::ivec2(face->glyph->bitmap.width, face->glyph->bitmap.rows),
glm::ivec2(face->glyph->bitmap_left, face->glyph->bitmap_top),
static_cast<GLuint>(face->glyph->advance.x)
};
m_Characters.insert(std::pair<GLint, Character>(c, character));
}
glBindTexture(GL_TEXTURE_2D, 0);
// Destroy FreeType once we're finished
FT_Done_Face(face);
FT_Done_FreeType(ft);
}
void TextRenderSample::LoadFacesByUnicode(const wchar_t* text, int size) {
// FreeType
FT_Library ft;
// All functions return a value different than 0 whenever an error occurred
if (FT_Init_FreeType(&ft))
LOGCATE("TextRenderSample::LoadFacesByUnicode FREETYPE: Could not init FreeType Library");
// Load font as face
FT_Face face;
std::string path(DEFAULT_OGL_ASSETS_DIR);
if (FT_New_Face(ft, (path + "/fonts/msyh.ttc").c_str(), 0, &face))
LOGCATE("TextRenderSample::LoadFacesByUnicode FREETYPE: Failed to load font");
// Set size to load glyphs as
FT_Set_Pixel_Sizes(face, 96, 96);
FT_Select_Charmap(face, ft_encoding_unicode);
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
for (int i = 0; i < size; ++i) {
//int index = FT_Get_Char_Index(face,unicodeArr[i]);
if (FT_Load_Glyph(face, FT_Get_Char_Index(face, text[i]), FT_LOAD_DEFAULT))
{
LOGCATE("TextRenderSample::LoadFacesByUnicode FREETYTPE: Failed to load Glyph");
continue;
}
FT_Glyph glyph;
FT_Get_Glyph(face->glyph, &glyph );
//Convert the glyph to a bitmap.
FT_Glyph_To_Bitmap(&glyph, ft_render_mode_normal, 0, 1 );
FT_BitmapGlyph bitmap_glyph = (FT_BitmapGlyph)glyph;
//This reference will make accessing the bitmap easier
FT_Bitmap& bitmap = bitmap_glyph->bitmap;
// Generate texture
GLuint texture;
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
glTexImage2D(
GL_TEXTURE_2D,
0,
GL_LUMINANCE,
bitmap.width,
bitmap.rows,
0,
GL_LUMINANCE,
GL_UNSIGNED_BYTE,
bitmap.buffer
);
LOGCATE("TextRenderSample::LoadFacesByUnicode text[i]=%d [w,h,buffer]=[%d, %d, %p], advance.x=%ld", text[i], bitmap.width, bitmap.rows, bitmap.buffer, glyph->advance.x / MAX_SHORT_VALUE);
// Set texture options
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_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
// Now store character for later use
Character character = {
texture,
glm::ivec2(face->glyph->bitmap.width, face->glyph->bitmap.rows),
glm::ivec2(face->glyph->bitmap_left, face->glyph->bitmap_top),
static_cast<GLuint>((glyph->advance.x / MAX_SHORT_VALUE) << 6)
};
m_Characters.insert(std::pair<GLint, Character>(text[i], character));
}
glBindTexture(GL_TEXTURE_2D, 0);
// Destroy FreeType once we're finished
FT_Done_Face(face);
FT_Done_FreeType(ft);
}
void TextRenderSample::Destroy()
{
if (m_ProgramObj)
{
glDeleteProgram(m_ProgramObj);
glDeleteBuffers(1, &m_VboId);
glDeleteVertexArrays(1, &m_VaoId);
glDeleteTextures(1, &m_TextureId);
std::map<GLint, Character>::const_iterator iter;
for (iter = m_Characters.begin(); iter != m_Characters.end(); iter++)
{
glDeleteTextures(1, &m_Characters[iter->first].textureID);
}
}
}
/**
* @param angleX 绕X轴旋转度数
* @param angleY 绕Y轴旋转度数
* @param ratio 宽高比
* */
void TextRenderSample::UpdateMVPMatrix(glm::mat4 &mvpMatrix, int angleX, int angleY, float ratio)
{
LOGCATE("TextRenderSample::UpdateMVPMatrix angleX = %d, angleY = %d, ratio = %f", angleX, angleY, ratio);
angleX = angleX % 360;
angleY = angleY % 360;
//转化为弧度角
float radiansX = static_cast<float>(MATH_PI / 180.0f * angleX);
float radiansY = static_cast<float>(MATH_PI / 180.0f * angleY);
// Projection matrix
glm::mat4 Projection = glm::ortho(-1.0f, 1.0f, -1.0f, 1.0f, 0.1f, 100.0f);
//glm::mat4 Projection = glm::frustum(-ratio, ratio, -1.0f, 1.0f, 4.0f, 100.0f);
//glm::mat4 Projection = glm::perspective(45.0f,ratio, 0.1f,100.f);
// View matrix
glm::mat4 View = glm::lookAt(
glm::vec3(0, 0, 4), // Camera is at (0,0,1), in World Space
glm::vec3(0, 0, 0), // and looks at the origin
glm::vec3(0, 1, 0) // Head is up (set to 0,-1,0 to look upside-down)
);
// Model matrix
glm::mat4 Model = glm::mat4(1.0f);
Model = glm::scale(Model, glm::vec3(m_ScaleX, m_ScaleY, 1.0f));
Model = glm::rotate(Model, radiansX, glm::vec3(1.0f, 0.0f, 0.0f));
Model = glm::rotate(Model, radiansY, glm::vec3(0.0f, 1.0f, 0.0f));
Model = glm::translate(Model, glm::vec3(0.0f, 0.0f, 0.0f));
mvpMatrix = Projection * View * Model;
}
void TextRenderSample::RenderText(const wchar_t *text, int textLen, GLfloat x, GLfloat y, GLfloat scale,
glm::vec3 color, glm::vec2 viewport) {
// 激活合适的渲染状态
glUseProgram(m_ProgramObj);
glUniform3f(glGetUniformLocation(m_ProgramObj, "u_textColor"), color.x, color.y, color.z);
glBindVertexArray(m_VaoId);
GO_CHECK_GL_ERROR();
x *= viewport.x;
y *= viewport.y;
for (int i = 0; i < textLen; ++i)
{
Character ch = m_Characters[text[i]];
GLfloat xpos = x + ch.bearing.x * scale;
GLfloat ypos = y - (ch.size.y - ch.bearing.y) * scale;
xpos /= viewport.x;
ypos /= viewport.y;
GLfloat w = ch.size.x * scale;
GLfloat h = ch.size.y * scale;
w /= viewport.x;
h /= viewport.y;
LOGCATE("TextRenderSample::RenderText [xpos,ypos,w,h]=[%f, %f, %f, %f]", xpos, ypos, w, h);
// 当前字符的VBO
GLfloat vertices[6][4] = {
{ xpos, ypos + h, 0.0, 0.0 },
{ xpos, ypos, 0.0, 1.0 },
{ xpos + w, ypos, 1.0, 1.0 },
{ xpos, ypos + h, 0.0, 0.0 },
{ xpos + w, ypos, 1.0, 1.0 },
{ xpos + w, ypos + h, 1.0, 0.0 }
};
// 在方块上绘制字形纹理
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, ch.textureID);
glUniform1i(m_SamplerLoc, 0);
GO_CHECK_GL_ERROR();
// 更新当前字符的VBO
glBindBuffer(GL_ARRAY_BUFFER, m_VboId);
glBufferSubData(GL_ARRAY_BUFFER, 0, sizeof(vertices), vertices);
GO_CHECK_GL_ERROR();
glBindBuffer(GL_ARRAY_BUFFER, 0);
// 绘制方块
glDrawArrays(GL_TRIANGLES, 0, 6);
GO_CHECK_GL_ERROR();
// 更新位置到下一个字形的原点,注意单位是1/64像素
x += (ch.advance >> 6) * scale; //(2^6 = 64)
}
glBindVertexArray(0);
glBindTexture(GL_TEXTURE_2D, 0);
}
| [
"wang_lxin@163.com"
] | wang_lxin@163.com |
8ecf7dbed046946e9f33c74d20fd2be2cb6547c7 | 66b74bae8bafcb471d657359ced6fb4fcea1f0a9 | /src/Firmware/src/platforms/posix/tests/muorb/muorb_test_main.cpp | effa9ff88b750573d07f0ea7fbc28bb72f575134 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | kant/CLDrone | 41f1c01b2fbc52ad5b34ad69f0942af114aec2f1 | fe18ccde70052390861b2c000100f8eaa122b99b | refs/heads/master | 2020-05-24T22:38:58.139961 | 2016-11-18T02:45:49 | 2016-11-18T02:45:49 | 187,500,820 | 0 | 0 | BSD-2-Clause | 2019-05-19T16:24:44 | 2019-05-19T16:24:44 | null | UTF-8 | C++ | false | false | 2,214 | cpp | /****************************************************************************
*
* Copyright (C) 2015 Mark Charlebois. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 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.
* 3. Neither the name PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* 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.
*
****************************************************************************/
/**
* @file hello_main.cpp
* Example for Linux
*
* @author Mark Charlebois <charlebm@gmail.com>
*/
#include <px4_middleware.h>
#include <px4_log.h>
#include <px4_app.h>
#include "muorb_test_example.h"
#include <stdio.h>
#include "uORB/uORBManager.hpp"
#include "uORBKraitFastRpcChannel.hpp"
int PX4_MAIN(int argc, char **argv)
{
px4::init(argc, argv, "muorb_test");
PX4_DEBUG("muorb_test");
MuorbTestExample hello;
hello.main();
PX4_DEBUG("goodbye");
return 0;
}
| [
"songrotek@qq.com"
] | songrotek@qq.com |
9adb79a95c51fb8c3e9dffb264dd1d27b98517d3 | e1031beddacbbbadb2dc33f5c16d776bee9ce071 | /PoCPCP/PCP/src/reductions/BREXtoACSP/Details/witnessMappings.hpp | 19ec086b001366438b270d2f00b7a6d6d4e19f87 | [
"MIT"
] | permissive | elibensasson/SCI-POC | ed7b68dcfcf58f6a5f3d61c7d60aad65cdca3c4e | 7e2286ca126d8cdf482ca4081e20d750f57c050e | refs/heads/master | 2021-01-20T08:29:41.309276 | 2017-05-03T13:46:54 | 2017-05-03T13:46:54 | 90,152,307 | 9 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,655 | hpp | #ifndef BREX_TO_ACSP_WITNESS_MAPPING_HPP__
#define BREX_TO_ACSP_WITNESS_MAPPING_HPP__
#include "commonMappings.hpp"
#include <functional>
namespace PCP_Project{
namespace BREXtoACSP{
class witnessMappings : public commonMappings{
public:
witnessMappings(const common& commonInfo);
Algebra::FieldElement mapNonPermutationElement(const size_t vecId, const size_t varIndex)const;
///
/// Let \f$ \eta \f$ be the rows modulus, of degree \f$ d \f$
/// This function maps the elementId \f$ \sum_{i=0}^{n} b_i 2^i \f$
/// to the field element \f$ b_0 \cdot \eta + x^d \cdot \sum_{i=1}^{n} b_i x^i \f$
///
/// For more details ask Michael Riabzev (this method reduces maximal number of neighbors)
///
spaceIndex_t mapIndexOfNonPermutationVariable_spaceIndex(const spaceIndex_t& row_spaceIndex, const size_t& varIndex)const;
spaceIndex_t getFirstRow_spaceIndex()const{return 1;}
spaceIndex_t getNextRow_spaceIndex(const spaceIndex_t& row_spaceIndex)const;
spaceIndex_t mapNetworkElement_spaceIndex(const size_t rowId, const size_t column, const size_t layerId)const;
spaceIndex_t mapNetworkRoutingBit_spaceIndex(const size_t rowId, const size_t column, const size_t layerId)const;
std::vector<Algebra::FieldElement> getImageSpaceOrderedBasis()const;
private:
const size_t firstRoutingBitsLayer_;
const NTL::GF2X rowsModulus_;
const spaceIndex_t overflow_mask_;
const size_t imageSpaceDim_;
static size_t calculateImageSpaceDim(const commonDeffinitions& commonDef);
};
} //namespace BREXtoACSP
} //namespace PCP_Project
#endif //BREX_TO_ACSP_WITNESS_MAPPING_HPP__
| [
"iddobentov@cornell.edu"
] | iddobentov@cornell.edu |
ca33d3822f51c288d57c526dda43a2430b8272ba | d02afde8f31fecd7341f9165a56a48063bb8c625 | /ISExporter.cpp | b5e21263246a037fff1c48f3053a450aee5c66cc | [] | no_license | mogonen/Shady-2.5D | 92b1714c1dc07e3c339e15ad660fc5c887706dae | 742699b98609837449c05f1ab2b436378de713d5 | refs/heads/master | 2021-01-10T20:18:30.402832 | 2014-11-19T19:11:37 | 2014-11-19T19:11:37 | 13,847,605 | 1 | 0 | null | 2014-11-20T20:35:00 | 2013-10-25T00:09:18 | C++ | UTF-8 | C++ | false | false | 9,460 | cpp | #include <sstream>
#include <qgl.h>
#include <QImage>
#include "fileio.h"
#include "MeshShape/pattern.h"
#include "MeshShape/meshshape.h"
#include "Renderer/imageshape.h"
#include "glwidget.h"
#include "canvas.h"
#define BUCKETS 4
#define SAT_BUCKETS 1
void ISExporter::init(){
Session::get()->glWidget()->renderPreviewTextures();//first
}
bool ISExporter::exportShape(Shape *, const char *fname){
}
RGB toRGB(QColor& col){
return RGB(col.redF(), col.greenF(), col.blueF());
}
void findDandB(RGBA *rgba, int &iD, int & iB)
{
iD = 0;
iB = BUCKETS-1;
for(int i=0; i<BUCKETS; i++)
{
if (i < BUCKETS*0.25 && rgba[i].w > rgba[iD].w)
iD = i;
if (i > BUCKETS*0.75 && rgba[i].w > rgba[iB].w)
iB = i;
}
}
void exportBy(const QImage& bg, const QImage& smap)
{
if (bg.size() != smap.size()) //assert size match
return;
Vec3 lp = Session::get()->canvas()->lightPos3D();
int W = bg.width(), H = bg.height();
RGBA
histogram[BUCKETS][SAT_BUCKETS][BUCKETS];
for(int i_h = 0; i_h < H; i_h++)
{
for(int i_w = 0; i_w < W; i_w++)
{
//QColor col = QColor(_img.pixel( x - (ww/2) + i, y - (hh/2) + j ));
QColor col(bg.pixel(i_w, i_h));
float
h = col.hueF(),
s = col.saturationF(),
v = col.valueF();
if (h < 0)
continue;
int
bi_h = CLAMP((h * BUCKETS), 0 , BUCKETS-1),
bi_s = CLAMP((s * SAT_BUCKETS), 0 , SAT_BUCKETS-1),
bi_v = CLAMP((v * BUCKETS), 0 , BUCKETS-1);
histogram[bi_h][bi_s][bi_v] = histogram[bi_h][bi_s][bi_v] + RGBA(col.redF(), col.greenF(), col.blueF(),1);
}
}
int size = W*H;
//QImage darkI(W, H, QImage::Format_ARGB32);
//QImage brightI(W, H, QImage::Format_ARGB32);
uchar* darkbits = new uchar[size*4];
uchar* brightbits = new uchar[size*4];
uchar* final2bits = new uchar[size*4];
for(int i_h = 0; i_h < H; i_h++)
{
for(int i_w = 0; i_w < W; i_w++)
{
//QColor col = QColor(_img.pixel( x - (ww/2) + i, y - (hh/2) + j ));
QRgb nrgb = smap.pixel(i_w, i_h);
QColor coln(nrgb);
if (qAlpha(nrgb) == 0) continue;
//Vec3 n(coln.redF(), coln.greenF(), coln.blueF());
Vec3 n(coln.redF()*2.0-1.0, coln.greenF()*2.0-1.0,0);
n.z = sqrt(n.x*n.x + n.y*n.y);
//if (n.norm()>1.0) continue;
double px = i_w *2.0 / (W-1) - 1.0;
double py = (H - i_h - 1)*2.0 / (H-1) - 1.0;
Vec3 lvn = (lp - Vec3(px, py, 0)).normalize();
float cosa = n * lvn;
float t = (cosa+1)/2.0;
t = CLAMP(t, 0.0, 1.0);
QColor col(bg.pixel(i_w, i_h));
RGB dark(0, 0, 0);
RGB bright(1,1,1);
RGB final(col.redF(), col.greenF(), col.blueF());
if (col.hueF()>=0)
{
int
bi_h = col.hueF()*BUCKETS,
bi_s = col.saturationF()*SAT_BUCKETS, iD, iB;
findDandB(histogram[bi_h][bi_s], iD, iB);
dark.set(histogram[bi_h][bi_s][iD]);
bright.set(histogram[bi_h][bi_s][iB]);
}
//bright = (final-dark*(1.0-t))*(1.0/t);
RGB final2 = bright*t + dark*(1-t);
int off = (i_w + i_h*W)*4;
for(int i=0; i<3; i++)
{
float k = final[i]/(final2[i]<0.0001?0.0001:final2[i]);
darkbits[off+2-i] = CLAMP(dark[i]*k, 0.0, 1.0)*255;
brightbits[off+2-i] =CLAMP(bright[i]*k, 0.0, 1.0)*255;
final2bits[off+2-i] = final2[i]*255;
}
darkbits[off+3] = 255;
brightbits[off+3] = 255;
final2bits[off+3] = 255;
}
}
QImage darkI(darkbits, W, H, QImage::Format_ARGB32);
QImage brightI(brightbits, W, H, QImage::Format_ARGB32);
QImage final2I(final2bits, W, H, QImage::Format_ARGB32);
darkI.save("c:/temp/D.png");
brightI.save("c:/temp/B.png");
smap.save("c:/temp/smap.png");
final2I.save("c:/temp/final2.png");
}
void ISExporter::exportScene(const char *fname)
{
Session::get()->glWidget()->renderPreviewTextures();
int w = Session::get()->glWidget()->getRShader()->m_BrightFBO->width(),
h = Session::get()->glWidget()->getRShader()->m_BrightFBO->height();
QImage c0 = Session::get()->glWidget()->getRShader()->m_DarkFBO->genQImage();
QImage c1 = Session::get()->glWidget()->getRShader()->m_BrightFBO->genQImage();
QImage c2 = Session::get()->glWidget()->getRShader()->m_ShadeFBO->toImage();
QImage c3 = Session::get()->glWidget()->getRShader()->m_BgFBO->genQImage();
QImage smap = Session::get()->glWidget()->getRShader()->m_ShapeMapFBO->genQImage();
exportBy(c3, smap);
return;
int size = w*h*4;
//float* c_k = new float[size];
const uchar* c0bits = c0.bits();
const uchar* c1bits = c1.bits();
const uchar* c2bits = c2.bits();
const uchar* c3bits = c3.bits();
uchar* c0bits_r = new uchar[size];
uchar* c1bits_r = new uchar[size];
//rectify
for(int i = 0; i < size; i++)
{
if (c2bits[i]==0)
continue;
float k = c3bits[i]*1.0 / c2bits[i];
c0bits_r[i] = CLAMP(k*c0bits[i],0,255);
c1bits_r[i] = CLAMP(k*c1bits[i],0,255);
}
QImage c_0r(c0bits_r, w, h, QImage::Format_ARGB32);
QImage c_1r(c1bits_r, w, h, QImage::Format_ARGB32);
c_0r.save("c:/temp/dark_r.png");
c_1r.save("c:/temp/bright_r.png");
c0.save("c:/temp/dark.png");
c1.save("c:/temp/bright.png");
c2.save("c:/temp/shaded.png");
smap.save("c:/temp/shapemap.png");
}
/*
void exportBy(const QImage& bg, const QImage& smap)
{
if (bg.size() != smap.size()) //assert size match
return;
Vec3 lp = Session::get()->canvas()->lightPos3D();
int W = bg.width(), H = bg.height();
RGB
darks[HUE_BUCKETS],
brights[HUE_BUCKETS];
float
values[HUE_BUCKETS][2];
for(int i=0; i<HUE_BUCKETS; i++){
values[i][0] = 1.0; //dark
values[i][1] = 0; //bright
}
for(int i_h = 0; i_h < H; i_h++)
{
for(int i_w = 0; i_w < W; i_w++)
{
//QColor col = QColor(_img.pixel( x - (ww/2) + i, y - (hh/2) + j ));
QColor col(bg.pixel(i_w, i_h));
float
h = col.hueF(),
s = col.saturationF(),
v = col.valueF();
if (h < 0 || s < 0.01)
continue;
int bi = h * 10;
bi = CLAMP(bi, 0, 9);
if (values[bi][0] > v/s)
{
darks[bi].set(col.redF(), col.greenF(), col.blueF());
values[bi][0] = v/s;
}
if (values[bi][1] < v*s)
{
brights[bi].set(col.redF(), col.greenF(), col.blueF());
values[bi][1] = v*s;
}
}
}
int size = W*H;
//QImage darkI(W, H, QImage::Format_ARGB32);
//QImage brightI(W, H, QImage::Format_ARGB32);
uchar* darkbits = new uchar[size*4];
uchar* brightbits = new uchar[size*4];
for(int i_h = 0; i_h < H; i_h++)
{
for(int i_w = 0; i_w < W; i_w++)
{
//QColor col = QColor(_img.pixel( x - (ww/2) + i, y - (hh/2) + j ));
QRgb nrgb = smap.pixel(i_w, i_h);
QColor coln(nrgb);
if (qAlpha(nrgb) == 0) continue;
//Vec3 n(coln.redF(), coln.greenF(), coln.blueF());
Vec3 n(coln.redF()*2.0-1.0, coln.greenF()*2.0-1.0,0);
n.z = sqrt(n.x*n.x + n.y*n.y);
//if (n.norm()>1.0) continue;
double px = i_w *2.0 / (W-1) - 1.0;
double py = (H - i_h - 1)*2.0 / (H-1) - 1.0;
Vec3 lvn = (lp - Vec3(px, py, 0)).normalize();
float cosa = n * lvn;
float t = (cosa+1)/2.0;
t = CLAMP(t, 0.0, 1.0);
QColor col(bg.pixel(i_w, i_h));
RGB dark(0, 0, 0);
RGB bright(1,1,1);
RGB final(col.redF(), col.greenF(), col.blueF());
if (col.hueF()>=0)
{
int bi = col.hueF()*10;
dark = darks[bi];//set(darks[bi].redF(), darks[bi].greenF(), darks[bi].blueF());
bright = brights[bi];//.set(brights[bi].redF(), brights[bi].greenF() ,brights[bi].blueF());
}
//bright = (final-dark*(1.0-t))*(1.0/t);
RGB final2 = bright*t + dark*(1-t);
int off = (i_w + i_h*W)*4;
for(int i=0; i<3; i++)
{
float k = final2[i]/final[i];
darkbits[off+2-i] = CLAMP(dark[i]*t + dark[i]*k*(1-t), 0.0, 1.0)*255;
brightbits[off+2-i] = CLAMP(bright[i]*(1-t) + bright[i]*k*t, 0.0, 1.0)*255;
}
darkbits[off+3] = 255;
brightbits[off+3] = 255;
}
}
QImage darkI(darkbits, W, H, QImage::Format_ARGB32);
QImage brightI(brightbits, W, H, QImage::Format_ARGB32);
darkI.save("c:/temp/D.png");
brightI.save("c:/temp/B.png");
smap.save("c:/temp/smap.png");
}
*/
| [
"ozgur.gonen@gmail.com"
] | ozgur.gonen@gmail.com |
043c14a9d62738348160c186713b1e51b1340821 | 70779f5f796cd2856093442af66b6f6d711f7c5a | /MyApplication_1/generated/images/src/MainMenu/menu_demo_screen_02.cpp | 371c094ee29516867e5043c8b998a921b9eeab12 | [] | no_license | steve22184/TouchGFX | 97f213af0cd82a299d100b5f19771763155c5db9 | 6d778b6cd4b351d90bdbf6b7f0e50c6ad6f43a22 | refs/heads/master | 2022-11-13T02:54:55.167309 | 2020-07-08T03:55:09 | 2020-07-08T03:55:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,599,815 | cpp | // 4.13.0 dither_algorithm=2 alpha_dither=yes layout_rotation=0 opaque_image_format=RGB565 non_opaque_image_format=ARGB8888 section=ExtFlashSection extra_section=ExtFlashSection generate_png=no 0x41b17cfc
// Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_PRAGMA("ExtFlashSection")
KEEP extern const unsigned char _menu_demo_screen_02[] LOCATION_ATTRIBUTE("ExtFlashSection") = // 480x272 RGB565 pixels.
{
0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x21, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x21, 0xa5, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21,
0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa5, 0x19,
0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19, 0x65, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19,
0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x65, 0x19, 0x85, 0x19, 0x65, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11,
0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0x85, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x11, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x65, 0x19,
0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19,
0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x69, 0x2a, 0xc9, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x32,
0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a,
0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22,
0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22,
0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x07, 0x22,
0x07, 0x22, 0x48, 0x22, 0x07, 0x22, 0xe6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe7, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0xc6, 0x19,
0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22,
0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22,
0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0x48, 0x22, 0x07, 0x22, 0xe6, 0x19,
0xa6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x11, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x11, 0x86, 0x19, 0xa6, 0x19, 0x27, 0x22,
0xc6, 0x19, 0x86, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x45, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x11, 0x85, 0x19,
0xa6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19,
0x45, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22,
0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x11, 0x85, 0x19,
0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xe7, 0x21, 0x89, 0x2a, 0x27, 0x22, 0xc7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x19, 0x27, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x27, 0x22,
0xc6, 0x19, 0x07, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x89, 0x22, 0xa9, 0x2a, 0x4b, 0x33,
0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0x0b, 0x33,
0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33,
0xca, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b,
0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a,
0x2b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32,
0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xc6, 0x19, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0x07, 0x22,
0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0xe6, 0x19, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22,
0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe6, 0x21, 0x28, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x47, 0x22, 0xc6, 0x19, 0x27, 0x22, 0x68, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22,
0xe7, 0x21, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22,
0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a,
0x27, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22,
0xc6, 0x21, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21,
0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19,
0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x21,
0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0x85, 0x19, 0xa6, 0x19,
0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19,
0xc6, 0x19, 0xc6, 0x21, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0x86, 0x19, 0xa6, 0x19,
0x48, 0x22, 0xe6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19,
0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21,
0x89, 0x22, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0xc6, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xeb, 0x32, 0x8c, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xac, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x6b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x4c, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b,
0x6c, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xce, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33,
0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x33, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x22,
0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22,
0xea, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a,
0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x69, 0x2a,
0x68, 0x22, 0x88, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x32, 0x88, 0x2a, 0x68, 0x22, 0x89, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0xea, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xc6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xe7, 0x21,
0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19,
0xe7, 0x21, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x65, 0x19,
0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0x45, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0x45, 0x11, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19,
0xa6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x65, 0x19,
0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19,
0x45, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19,
0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x07, 0x22, 0xc6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22,
0x69, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x47, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x88, 0x2a,
0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22,
0x28, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22,
0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22,
0x48, 0x22, 0x27, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x07, 0x22,
0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0x68, 0x2a, 0x07, 0x22, 0xc6, 0x21, 0xa5, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x47, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19,
0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x07, 0x22, 0xe6, 0x19, 0x85, 0x19, 0x45, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19,
0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19,
0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x11, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xe6, 0x19, 0x85, 0x19, 0x65, 0x11,
0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x22, 0x27, 0x22,
0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xca, 0x2a, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22,
0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x4c, 0x33, 0xcd, 0x3b, 0x4c, 0x33,
0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0xee, 0x43, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0xea, 0x32,
0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x33,
0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xca, 0x2a,
0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x88, 0x2a,
0x28, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x68, 0x22,
0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19,
0x27, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x68, 0x2a,
0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19,
0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19,
0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22,
0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x28, 0x22,
0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc7, 0x19, 0x85, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19,
0xc6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0xe7, 0x21,
0x28, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32,
0x69, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a,
0xea, 0x2a, 0x6c, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x6c, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xee, 0x3b,
0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x4b, 0x33,
0x6c, 0x3b, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xac, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x4b, 0x33,
0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x28, 0x22,
0x69, 0x22, 0x0a, 0x33, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22,
0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x28, 0x22, 0x48, 0x22, 0xea, 0x2a,
0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22,
0x68, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x69, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22,
0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0x06, 0x22, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21,
0xc6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0x85, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x65, 0x19,
0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19,
0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe7, 0x19, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x19,
0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x32,
0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xea, 0x32,
0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x8c, 0x33,
0x4c, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xeb, 0x32,
0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x68, 0x22,
0x88, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x28, 0x22, 0x68, 0x22, 0x68, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x07, 0x22,
0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xc6, 0x21,
0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a,
0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22,
0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19,
0xa5, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x47, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19,
0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x19, 0x86, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x27, 0x22,
0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x45, 0x11, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x11, 0x85, 0x19,
0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x85, 0x19,
0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xe6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x65, 0x19, 0xa5, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22,
0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x69, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33,
0x6c, 0x33, 0xed, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33,
0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x3c, 0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x8d, 0x33, 0x0e, 0x3c, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x2b, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0xad, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33,
0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe6, 0x19, 0x07, 0x22,
0x48, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x07, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x69, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x22, 0xea, 0x32,
0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x07, 0x22, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x88, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22,
0xc6, 0x21, 0x07, 0x22, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x2a, 0xe6, 0x21,
0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21,
0x28, 0x22, 0xc6, 0x19, 0xc6, 0x21, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x08, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0x28, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21,
0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc7, 0x21, 0x86, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0x68, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x69, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0xc6, 0x19, 0x07, 0x22,
0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32,
0xea, 0x32, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x6c, 0x33,
0xcd, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x8d, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b,
0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8d, 0x3b, 0x0e, 0x3c, 0x8c, 0x3b,
0x8c, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4b, 0x33,
0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xac, 0x3b, 0x0b, 0x33, 0x0b, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x32,
0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x22,
0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22,
0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x69, 0x22, 0x28, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a,
0x28, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xca, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x69, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe6, 0x19,
0xa6, 0x19, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x21,
0xe7, 0x21, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x86, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19,
0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x85, 0x19,
0x45, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x86, 0x19,
0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x65, 0x19,
0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19,
0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x86, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22,
0x69, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0xc9, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x4b, 0x33,
0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x88, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22,
0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22,
0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22,
0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x07, 0x22, 0x07, 0x22,
0x27, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22,
0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x69, 0x2a, 0x27, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x47, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x27, 0x22, 0xc6, 0x21, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19,
0xa5, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0x85, 0x19, 0x65, 0x11, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x28, 0x22, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x11,
0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x11, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0x07, 0x22, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x19, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x2a,
0x0b, 0x2b, 0xa9, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x8c, 0x3b,
0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x0e, 0x3c, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x2b,
0x2b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0xea, 0x2a,
0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a,
0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22,
0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21,
0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x69, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a,
0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x48, 0x2a, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19,
0xe6, 0x21, 0x48, 0x22, 0xe6, 0x19, 0xe7, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0xe6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19,
0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xa6, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc7, 0x19, 0x86, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19,
0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xe7, 0x19, 0xe7, 0x21, 0xc6, 0x19,
0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xe7, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22,
0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xea, 0x32, 0x0b, 0x33, 0xca, 0x2a,
0x0a, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x2b, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0x8d, 0x3b, 0x8c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33,
0xad, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8d, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x4b, 0x33,
0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x6c, 0x3b,
0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x68, 0x2a,
0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x48, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x2a,
0x69, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x69, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a,
0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x47, 0x22,
0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x69, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22,
0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xa5, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21,
0xc6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0x65, 0x19, 0x65, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19,
0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x45, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19,
0xa5, 0x19, 0x65, 0x19, 0x65, 0x19, 0xa5, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19,
0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0xe7, 0x19, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33,
0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x32, 0x0b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b,
0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33,
0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0xeb, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x88, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22,
0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21,
0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22,
0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xc6, 0x21,
0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19,
0xa5, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x2a, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19,
0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22,
0xe6, 0x19, 0x85, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0x86, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0x85, 0x19,
0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a,
0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x88, 0x2a, 0x0b, 0x2b, 0xa9, 0x2a, 0x68, 0x22,
0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xca, 0x2a, 0xea, 0x32, 0x8c, 0x33,
0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33,
0x8c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44,
0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x2b, 0x4b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33,
0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33,
0xaa, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22,
0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22,
0x88, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32,
0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x22, 0xea, 0x2a,
0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22,
0xe6, 0x21, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21,
0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0xc6, 0x19, 0xc6, 0x21,
0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19,
0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19,
0x86, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xc6, 0x21,
0xa6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19,
0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xe6, 0x19, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x69, 0x22, 0x07, 0x22,
0x07, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x69, 0x2a, 0x07, 0x22, 0xe7, 0x19, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0xee, 0x43, 0x8c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x8c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0x8c, 0x3b,
0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33,
0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x0b, 0x33,
0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0xeb, 0x32, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a,
0xea, 0x32, 0x69, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x22,
0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a,
0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x69, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21,
0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19,
0xe7, 0x21, 0xc6, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa5, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22,
0xc6, 0x19, 0xc7, 0x21, 0x07, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22,
0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4c, 0x33,
0xea, 0x32, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x2b, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4c, 0x33,
0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6b, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33,
0x6c, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33,
0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0xea, 0x32, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22,
0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22,
0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22,
0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22, 0x88, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x28, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22,
0x69, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x88, 0x2a, 0x27, 0x22,
0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0x68, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xc6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19,
0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0x86, 0x19, 0x65, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xe6, 0x21,
0x85, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x27, 0x22, 0xe6, 0x21, 0x86, 0x19, 0x65, 0x11, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x68, 0x2a, 0x07, 0x22, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x86, 0x19,
0xc6, 0x19, 0x07, 0x22, 0x69, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a,
0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b,
0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b,
0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x3b,
0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33,
0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22,
0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a,
0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22,
0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x68, 0x2a,
0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19,
0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19,
0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19,
0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xe6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x21, 0x68, 0x22,
0xe7, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x19, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x19,
0xe7, 0x21, 0x88, 0x2a, 0x07, 0x22, 0x07, 0x1a, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x28, 0x22,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a,
0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33,
0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b,
0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33,
0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b,
0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x6c, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x69, 0x2a, 0x69, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xeb, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x32,
0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22,
0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x69, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x69, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x88, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x21, 0xe6, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0xe6, 0x21,
0xc6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x21, 0xa5, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa5, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x45, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x86, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0xe6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22,
0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x28, 0x22,
0x48, 0x22, 0x88, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x2b, 0x33,
0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x2a, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x2b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe6, 0x21,
0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x69, 0x22,
0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x27, 0x22, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a,
0x47, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19,
0x07, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22, 0xe6, 0x19,
0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x28, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19,
0xe6, 0x21, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0x86, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa5, 0x19, 0x65, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0x85, 0x19, 0x65, 0x11, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0x86, 0x19, 0x65, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19,
0xc6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x07, 0x22, 0x69, 0x2a,
0x27, 0x22, 0xc7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22,
0x28, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x89, 0x2a,
0x27, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xea, 0x32, 0x8c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b,
0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0x8c, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33,
0x2b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a,
0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4b, 0x33,
0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x28, 0x22,
0x07, 0x1a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe6, 0x19, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x88, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a,
0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x07, 0x22,
0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22,
0xe6, 0x21, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe6, 0x21,
0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x19,
0x28, 0x22, 0xe6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19,
0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0x86, 0x19, 0xa6, 0x19,
0x27, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21,
0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x22, 0xe7, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0x07, 0x22,
0xc6, 0x19, 0xc6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xe7, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x19, 0x27, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22,
0x07, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0xca, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x0e, 0x3c, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x3c, 0x8d, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0x0e, 0x3c, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0xea, 0x32, 0x2b, 0x33, 0x8d, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x6c, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x69, 0x2a,
0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x22, 0x68, 0x22, 0x88, 0x2a, 0x28, 0x22, 0x69, 0x22, 0xea, 0x32, 0x89, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x69, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19,
0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe6, 0x19, 0x85, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x1a, 0xc6, 0x19, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22,
0xc6, 0x19, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0x0a, 0x33, 0xea, 0x2a, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b,
0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33,
0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a,
0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22,
0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22,
0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22,
0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22,
0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x47, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0x68, 0x2a, 0x07, 0x22, 0xc6, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x21, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0x85, 0x19,
0xc6, 0x19, 0xe7, 0x21, 0x28, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x11, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19,
0x28, 0x22, 0xe6, 0x21, 0x85, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x69, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19,
0xe6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x07, 0x22, 0x28, 0x22, 0xca, 0x2a, 0x68, 0x2a,
0x28, 0x22, 0xc6, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xc9, 0x2a,
0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a,
0xea, 0x2a, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0xad, 0x3b,
0x6c, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b,
0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33,
0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22,
0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x47, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x32, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x88, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x69, 0x2a, 0x27, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x68, 0x2a,
0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0xe7, 0x21, 0xe7, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19,
0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x21,
0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x85, 0x19,
0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x2a, 0xe6, 0x21, 0xe6, 0x19,
0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x22, 0xc7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x68, 0x2a,
0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x69, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0xe7, 0x19,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x2a, 0x48, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xeb, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33,
0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x8c, 0x33,
0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b,
0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x2b, 0x8d, 0x3b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x69, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32,
0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0xea, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0xa5, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x21, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19,
0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0xc6, 0x19, 0x85, 0x19,
0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x19, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x07, 0x22, 0xe6, 0x19, 0xe7, 0x21, 0x27, 0x22,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22,
0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0x2b, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x4b, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x22, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22,
0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x07, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22,
0x47, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x28, 0x22, 0x47, 0x22, 0x69, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x47, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa5, 0x19,
0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa5, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x07, 0x22, 0x69, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0x89, 0x2a,
0x27, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x47, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x07, 0x22,
0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0x4c, 0x33, 0xcd, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44,
0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33,
0xc9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x6b, 0x33,
0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xca, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22,
0xe7, 0x19, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22,
0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x22, 0xea, 0x32,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x88, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x68, 0x22, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22,
0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x48, 0x2a, 0xe7, 0x21, 0xe6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe6, 0x21,
0xe6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x47, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xc6, 0x19,
0xc6, 0x19, 0xe6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x27, 0x22, 0xe6, 0x19, 0xc6, 0x19, 0xc7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21,
0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19,
0x68, 0x2a, 0xe7, 0x21, 0xe6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xe7, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22,
0xc6, 0x19, 0xe6, 0x19, 0x69, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x1a, 0x07, 0x22, 0x27, 0x22, 0xc7, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22,
0x07, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x48, 0x22,
0xea, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xea, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x4c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b,
0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xce, 0x3b,
0x8d, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x0e, 0x44, 0x8c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xce, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32,
0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x69, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x69, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xc6, 0x19,
0x07, 0x22, 0xc6, 0x21, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xe6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0x85, 0x19, 0xc6, 0x19,
0xe7, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x19, 0x07, 0x22, 0xe6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x68, 0x22, 0x28, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x2b, 0xca, 0x2a, 0xea, 0x32,
0x0b, 0x33, 0x0b, 0x33, 0x6b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x33,
0x0b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33,
0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x2b, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33,
0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x88, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22,
0x28, 0x22, 0x07, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x47, 0x22,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x88, 0x22, 0x27, 0x22,
0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22,
0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x21, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa5, 0x19, 0x85, 0x19, 0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x86, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19,
0x69, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x89, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0xe6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x28, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x47, 0x22, 0x89, 0x2a, 0xca, 0x2a,
0x6c, 0x3b, 0x0b, 0x33, 0xc9, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0xca, 0x2a,
0x0a, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b,
0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33,
0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x0e, 0x3c, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x2b, 0x33,
0xcd, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0x8c, 0x33, 0xeb, 0x32, 0xa9, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xc9, 0x2a,
0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19,
0x27, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x0a, 0x2b, 0x89, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22,
0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x28, 0x22, 0x48, 0x2a, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x69, 0x2a, 0x27, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x69, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x2a,
0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x2a, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19,
0xe7, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x21,
0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22,
0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19,
0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xe6, 0x21,
0xe7, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x19, 0x68, 0x2a,
0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xc7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x28, 0x22, 0xe7, 0x21,
0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0xaa, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x6b, 0x33,
0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b,
0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xce, 0x3b,
0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x2b, 0x8c, 0x3b, 0x0b, 0x33, 0x0a, 0x33, 0xeb, 0x32, 0xa9, 0x2a,
0xea, 0x2a, 0x6c, 0x3b, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a,
0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x68, 0x22,
0x68, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xc6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19,
0xa5, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0x86, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0xe7, 0x21, 0x07, 0x22,
0x07, 0x1a, 0xa6, 0x19, 0xe7, 0x19, 0xe7, 0x21, 0xe7, 0x19, 0x28, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22,
0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a,
0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xea, 0x2a,
0xa9, 0x2a, 0x48, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x69, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a,
0x28, 0x22, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22,
0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x22, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x69, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x22, 0x07, 0x22, 0xe6, 0x21,
0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22,
0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x28, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19,
0xe6, 0x19, 0x68, 0x2a, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19,
0xa5, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x69, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x47, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xed, 0x3b,
0x6c, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0xee, 0x43, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b,
0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xac, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x88, 0x22, 0xca, 0x2a, 0xea, 0x32, 0x8c, 0x33,
0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x19, 0x27, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x88, 0x22, 0xea, 0x32,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22,
0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32,
0x27, 0x22, 0x47, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xe5, 0x08, 0x05, 0x09, 0x45, 0x11, 0xa7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x68, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22,
0xe6, 0x21, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe6, 0x21,
0xe7, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x28, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21,
0x48, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe6, 0x21,
0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xa6, 0x19, 0x28, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x21,
0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19,
0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21,
0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xc7, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21,
0x68, 0x22, 0xe7, 0x21, 0xe7, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22,
0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0x07, 0x1a, 0x07, 0x22, 0xc7, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22,
0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32,
0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b,
0x8c, 0x33, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b,
0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0xea, 0x2a,
0xea, 0x32, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x0a, 0x2b, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x0b, 0x33, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0x0b, 0x2b, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x25, 0x11, 0x45, 0x11,
0x86, 0x11, 0x86, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x21, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19,
0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa5, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x86, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0xe7, 0x21, 0xe6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe6, 0x21, 0x86, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x27, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0xe6, 0x19, 0xe7, 0x21, 0x28, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xea, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8d, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xce, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33,
0x8c, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8d, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b,
0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xaa, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x2a,
0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x07, 0x22,
0x48, 0x22, 0x47, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x28, 0x22, 0x89, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22,
0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x88, 0x2a, 0x27, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x26, 0x11, 0x45, 0x11, 0x45, 0x11, 0x66, 0x11, 0xc6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xc6, 0x19,
0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19,
0x85, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x48, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19,
0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0x68, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x21,
0x89, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19,
0xe7, 0x21, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a,
0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0xa9, 0x2a, 0xea, 0x32,
0x8d, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0x0b, 0x2b, 0x2b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32,
0x2b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b,
0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xce, 0x3b, 0x2f, 0x44, 0xce, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4c, 0x33,
0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b,
0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33,
0xed, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x22,
0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a,
0x69, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x22,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x69, 0x2a, 0x07, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0x05, 0x11, 0x46, 0x11, 0x66, 0x11, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x21,
0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x28, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19,
0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xc6, 0x21, 0xe6, 0x19, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x19, 0xe7, 0x21, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe6, 0x21,
0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x88, 0x22,
0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x88, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0x6c, 0x33,
0x0a, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xac, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x2b, 0x33,
0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x6b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x43,
0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a,
0x0a, 0x33, 0x8c, 0x3b, 0xeb, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x3b, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b,
0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x69, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x45, 0x11, 0x45, 0x11, 0x45, 0x11, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19,
0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x65, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x21,
0xa6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0xe7, 0x21, 0xe7, 0x21, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x0a, 0x2b, 0x0a, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33,
0x8c, 0x3b, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x6c, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a,
0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xeb, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x0b, 0x33,
0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22,
0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x69, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x88, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22,
0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19,
0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22,
0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x47, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19,
0x07, 0x22, 0x69, 0x2a, 0x27, 0x22, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe6, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x25, 0x11, 0x45, 0x11, 0x86, 0x19, 0xe7, 0x21, 0xe7, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0x48, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x22,
0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x69, 0x2a, 0x07, 0x22, 0xe6, 0x19,
0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x28, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xac, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0x4c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0xed, 0x3b,
0x6c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33,
0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xed, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0xee, 0x43, 0x8c, 0x3b, 0x4b, 0x33,
0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0x8d, 0x3b,
0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xaa, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x32,
0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x68, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe6, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe6, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x06, 0x11, 0x24, 0x11, 0x46, 0x11, 0x85, 0x19,
0x86, 0x19, 0xa6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x28, 0x22, 0xc6, 0x21,
0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xc6, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x19,
0x48, 0x22, 0xc6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x2a, 0xc6, 0x21, 0xc6, 0x19, 0x07, 0x22,
0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x2a, 0xe7, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xe7, 0x21,
0xe7, 0x21, 0xe7, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0xe7, 0x19, 0xe7, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21,
0x68, 0x22, 0x07, 0x22, 0xe7, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x19, 0x88, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x68, 0x22, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22,
0xc7, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x48, 0x22, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33,
0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xac, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x4c, 0x33, 0x4c, 0x33, 0xee, 0x43, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xac, 0x3b, 0x0a, 0x33,
0x0a, 0x2b, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a,
0x4b, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x69, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x69, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x69, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x69, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a,
0x89, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x88, 0x2a, 0xeb, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a,
0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x24, 0x11, 0x25, 0x11, 0x25, 0x11, 0x45, 0x11, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19,
0x65, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0x65, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa5, 0x19,
0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xa5, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19,
0xe7, 0x21, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc7, 0x19, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xe6, 0x19, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21,
0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a,
0x0a, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x47, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x89, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x88, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22,
0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x04, 0x11, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0x2b, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0xe9, 0x19, 0xe8, 0x21, 0x29, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19,
0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x68, 0x2a, 0x07, 0x22,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0x89, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0x86, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19,
0x07, 0x22, 0x48, 0x22, 0xca, 0x2a, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x48, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0b, 0x33,
0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x0a, 0x33,
0x4b, 0x33, 0x6c, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6b, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4b, 0x33,
0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xac, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xea, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xc9, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x28, 0x22, 0x07, 0x22,
0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x69, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22,
0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x69, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x69, 0x2a, 0x07, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xa3, 0x08, 0xa4, 0x08, 0x0b, 0x22, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x22, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x22, 0x0a, 0x1a, 0x0a, 0x22, 0x09, 0x22, 0xc8, 0x19, 0xe8, 0x21, 0x48, 0x22, 0xe6, 0x21, 0xc6, 0x19,
0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x48, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0x48, 0x2a,
0xe7, 0x21, 0xe6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x2a, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xa6, 0x19,
0xe6, 0x19, 0x48, 0x22, 0xe7, 0x21, 0xe7, 0x19, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x19, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21,
0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0xe7, 0x19, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x1a, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a,
0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x47, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x07, 0x22,
0x28, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a,
0xaa, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b,
0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x4c, 0x33,
0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xed, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44,
0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x2c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x32,
0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x2b, 0xea, 0x2a, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xc9, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0x89, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x69, 0x2a, 0x0b, 0x2b, 0x89, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x69, 0x2a, 0x69, 0x22,
0x89, 0x2a, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33,
0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x69, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x0a, 0x2b,
0x69, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0xe6, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x04, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe4, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0x0b, 0x1a, 0xea, 0x19, 0xeb, 0x19,
0xea, 0x19, 0x0a, 0x1a, 0xeb, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x2b, 0x22, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22,
0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x22, 0x09, 0x22, 0xe9, 0x21, 0xc7, 0x19, 0xc7, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa5, 0x19, 0xe6, 0x21, 0xc6, 0x19, 0x65, 0x19,
0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xa6, 0x19, 0x85, 0x19, 0xa5, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x85, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xc6, 0x21,
0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x21, 0xa6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19,
0xc6, 0x19, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xa6, 0x19,
0xc6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe7, 0x19, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22,
0x07, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22,
0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b,
0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xac, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0x8c, 0x33, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33,
0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x48, 0x22, 0x69, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22,
0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x47, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x28, 0x22, 0x47, 0x22, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22,
0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x07, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe6, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xc3, 0x08, 0xc4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19,
0xea, 0x19, 0xea, 0x19, 0x0b, 0x1a, 0xea, 0x19, 0x0b, 0x22, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x22, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2a, 0x1a, 0x0b, 0x22, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x22,
0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x2a, 0x4b, 0x22, 0x4c, 0x2a, 0x6c, 0x2a, 0x4b, 0x22, 0x4a, 0x2a, 0x4a, 0x2a, 0x29, 0x22, 0xe7, 0x19,
0x86, 0x19, 0xa6, 0x19, 0xc6, 0x21, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe6, 0x19, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x65, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0x68, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0x68, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x86, 0x19, 0xc6, 0x19,
0xe7, 0x19, 0x68, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x69, 0x2a, 0x07, 0x22, 0xe7, 0x19, 0x85, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x19,
0xa6, 0x19, 0xc6, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x19, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x28, 0x22, 0xca, 0x2a,
0x68, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x68, 0x22,
0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x69, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0xea, 0x2a,
0x89, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xce, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44,
0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b,
0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xac, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8d, 0x3b,
0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x33, 0x4b, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b,
0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x2b, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32,
0x27, 0x22, 0x27, 0x2a, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x47, 0x2a, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0xe5, 0x08, 0x04, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x04, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09,
0xe4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xc5, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x22, 0x0a, 0x1a, 0x2b, 0x22, 0x0b, 0x22, 0x2a, 0x22, 0x2c, 0x22,
0x2b, 0x22, 0x2c, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4c, 0x22, 0x2b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a,
0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x6c, 0x2a, 0x4a, 0x2a, 0x2a, 0x22, 0x6a, 0x2a, 0x08, 0x22, 0xc7, 0x19, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x68, 0x22, 0xe7, 0x21,
0xe6, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x68, 0x22, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21,
0x69, 0x2a, 0x07, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x1a, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x2a, 0x48, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x69, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0xa9, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x2b, 0xea, 0x32, 0x2b, 0x33,
0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x6b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b,
0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b,
0xcd, 0x3b, 0xed, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0f, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8d, 0x3b,
0x4c, 0x33, 0x8c, 0x33, 0xee, 0x43, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33,
0x0a, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x8c, 0x33, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x4c, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xaa, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x69, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x22,
0x69, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0x0a, 0x2b, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x21, 0xc6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe6, 0x19, 0x07, 0x22, 0xe6, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x21, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xc5, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xc4, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xa3, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0x0b, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0b, 0x22, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a,
0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2c, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x2a,
0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0xac, 0x32, 0x8d, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0x8c, 0x2a, 0x6b, 0x2a,
0x4a, 0x2a, 0x09, 0x22, 0x08, 0x22, 0xe7, 0x21, 0x85, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xa6, 0x19, 0xe6, 0x19, 0xc6, 0x19, 0x86, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xa6, 0x19, 0xe7, 0x21, 0xc6, 0x19,
0x85, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0xe6, 0x19, 0x85, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xc7, 0x19, 0xe6, 0x21,
0x07, 0x22, 0xe7, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22,
0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a,
0x0b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33,
0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a,
0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x47, 0x22, 0x88, 0x2a, 0x28, 0x22,
0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x47, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x11,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x00,
0xa3, 0x00, 0xe5, 0x08, 0x26, 0x11, 0x88, 0x19, 0xa8, 0x19, 0x88, 0x19, 0x87, 0x11, 0x88, 0x19, 0x88, 0x19, 0xa8, 0x21, 0x67, 0x19, 0x46, 0x11, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc3, 0x08, 0xa4, 0x00, 0x0b, 0x22, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0xea, 0x11, 0xea, 0x19, 0x0a, 0x1a, 0xeb, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0b, 0x1a, 0x0a, 0x22, 0x0b, 0x22, 0x0a, 0x1a, 0x0a, 0x22, 0x0b, 0x22, 0x0b, 0x1a, 0x2a, 0x22, 0x2b, 0x22,
0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2b, 0x1a, 0x4c, 0x22, 0x4b, 0x22, 0x4c, 0x2a, 0x4b, 0x22, 0x4c, 0x2a, 0x4c, 0x2a, 0x4c, 0x2a, 0x6c, 0x2a,
0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8d, 0x2a, 0x6c, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x8d, 0x2a, 0xac, 0x2a, 0x8d, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x32, 0xcd, 0x32,
0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xce, 0x32, 0xee, 0x32, 0xee, 0x3a, 0xcd, 0x32, 0xcd, 0x32, 0xab, 0x32, 0x4a, 0x2a, 0xe8, 0x21, 0xe7, 0x19, 0xe7, 0x21, 0x88, 0x2a, 0x07, 0x22,
0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x28, 0x22, 0xe6, 0x19, 0xa6, 0x19, 0xc6, 0x19, 0x07, 0x22,
0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xc9, 0x2a, 0x48, 0x22, 0x27, 0x22, 0xe7, 0x21,
0x07, 0x22, 0x48, 0x22, 0xea, 0x2a, 0x88, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x32, 0x8c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33,
0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x2b, 0xaa, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x43, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33,
0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0xad, 0x3b, 0x4b, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xee, 0x3b,
0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b,
0x0e, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a,
0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32,
0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x2b, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xc5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x09, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xc4, 0x10,
0x47, 0x19, 0x88, 0x19, 0xa8, 0x11, 0x68, 0x19, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x88, 0x19, 0xa9, 0x19, 0x47, 0x11, 0xc4, 0x08, 0xa3, 0x00,
0xa3, 0x08, 0xc4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0x0a, 0x1a, 0xea, 0x19, 0xca, 0x11, 0xea, 0x11, 0xca, 0x11,
0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x2b, 0x1a,
0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x4c, 0x22,
0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x8c, 0x32, 0xad, 0x32, 0x8d, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xad, 0x2a,
0xcd, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xcd, 0x2a, 0xce, 0x32, 0xee, 0x32, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x3a, 0xee, 0x3a, 0xee, 0x3a, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x0e, 0x3b,
0x2f, 0x3b, 0xee, 0x3a, 0xcc, 0x32, 0xec, 0x32, 0x6a, 0x2a, 0x48, 0x2a, 0x28, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x89, 0x2a, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a,
0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0xca, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0xea, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xac, 0x3b,
0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33,
0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xad, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0xed, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0x8c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0xad, 0x3b, 0x0a, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x8d, 0x3b, 0x0b, 0x2b, 0xea, 0x32, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0x6c, 0x33, 0xea, 0x2a, 0xca, 0x2a,
0xea, 0x32, 0xa9, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22,
0x69, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x69, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22,
0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xa5, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08,
0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x83, 0x08, 0x06, 0x11, 0xa8, 0x19,
0x88, 0x19, 0x88, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x19, 0xa8, 0x19, 0x06, 0x11,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0x2b, 0x1a, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0xea, 0x11, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xcb, 0x11, 0xea, 0x19, 0x0b, 0x1a, 0xeb, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0b, 0x22, 0x0b, 0x1a, 0xea, 0x19,
0x0a, 0x22, 0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4c, 0x2a, 0x4b, 0x22, 0x4b, 0x22, 0x6c, 0x2a,
0x4c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x8d, 0x22, 0x8c, 0x2a, 0x8c, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x32,
0xad, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xcd, 0x3a, 0xce, 0x32, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x32, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x33, 0xee, 0x32, 0x0e, 0x3b, 0x0e, 0x3b,
0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x2f, 0x3b, 0x2f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x50, 0x43, 0x4f, 0x43, 0x0d, 0x3b, 0xcc, 0x32, 0xab, 0x32, 0x49, 0x22, 0xc7, 0x19,
0xc6, 0x19, 0xe6, 0x19, 0xe6, 0x19, 0x07, 0x22, 0xe7, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22,
0x28, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a,
0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xaa, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x2b, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b,
0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x8c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33,
0x0a, 0x33, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x27, 0x22,
0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22,
0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19,
0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22,
0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe7, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0xc6, 0x19, 0xe7, 0x21,
0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08,
0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x06, 0x09, 0xa8, 0x19, 0x88, 0x11,
0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x19, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0xa8, 0x19,
0x67, 0x19, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x05, 0x09, 0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe4, 0x10, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0xea, 0x19,
0xca, 0x19, 0xca, 0x11, 0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xeb, 0x21, 0x0b, 0x1a,
0xea, 0x19, 0x0b, 0x1a, 0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x22, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x22,
0x6c, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x6d, 0x2a, 0x8c, 0x2a, 0x8d, 0x32, 0x8d, 0x2a, 0x8c, 0x2a, 0x8c, 0x32, 0xad, 0x32, 0xad, 0x2a, 0xad, 0x2a,
0xad, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xcd, 0x2a, 0xce, 0x2a, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xee, 0x3a, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x3a, 0x0f, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b,
0x0e, 0x3b, 0x0f, 0x3b, 0x2e, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x50, 0x43, 0x50, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x4b,
0x70, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x4f, 0x43, 0x0d, 0x3b, 0xab, 0x32, 0x8a, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xca, 0x2a,
0x69, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x22,
0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a,
0xca, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44,
0x8d, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44,
0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b,
0x4c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xca, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xaa, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x69, 0x2a,
0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x22, 0xea, 0x32,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x19, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22,
0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a,
0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x69, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xc5, 0x10, 0xa4, 0x08, 0xa3, 0x08, 0x05, 0x09, 0xa9, 0x19, 0x88, 0x19, 0x88, 0x11,
0x68, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x19, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x87, 0x19, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x67, 0x11, 0x87, 0x11, 0x67, 0x11,
0x88, 0x19, 0x88, 0x19, 0x83, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xc3, 0x08, 0xa4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xca, 0x11, 0xca, 0x19, 0xca, 0x11,
0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x21, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xeb, 0x19,
0x0b, 0x1a, 0x0a, 0x1a, 0xea, 0x19, 0x0b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x4b, 0x22,
0x4b, 0x2a, 0x4c, 0x2a, 0x4c, 0x2a, 0x6c, 0x2a, 0x4c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x22, 0x8c, 0x22, 0x8c, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0xad, 0x2a, 0xad, 0x32,
0xad, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xed, 0x32, 0xee, 0x32, 0xee, 0x32, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x33, 0xee, 0x3a,
0x0f, 0x3b, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x2f, 0x43, 0x2f, 0x3b, 0x50, 0x43, 0x4f, 0x43, 0x50, 0x43, 0x4f, 0x43, 0x70, 0x43, 0x4f, 0x43, 0x70, 0x43, 0x70, 0x43,
0x70, 0x43, 0x70, 0x43, 0x90, 0x43, 0x90, 0x4b, 0x91, 0x4b, 0x90, 0x4b, 0x91, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xd1, 0x53, 0xd1, 0x53, 0xb1, 0x4b, 0x90, 0x4b, 0x2d, 0x3b,
0xec, 0x32, 0xca, 0x32, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x4c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xac, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x43, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x3c, 0x8c, 0x3b,
0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b,
0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x3c, 0x8c, 0x3b, 0x6c, 0x33, 0x8d, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x8d, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a,
0x6c, 0x33, 0xea, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x69, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x22,
0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x69, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xeb, 0x32, 0x89, 0x22,
0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33, 0x69, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa5, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0xe6, 0x21,
0xc6, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xc3, 0x08, 0xa4, 0x00, 0xc4, 0x08, 0xa9, 0x21, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x87, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x67, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x19, 0x67, 0x11, 0x83, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x0b, 0x1a, 0xca, 0x19, 0xea, 0x19, 0xca, 0x11, 0xea, 0x19,
0xca, 0x11, 0xca, 0x19, 0xea, 0x11, 0xea, 0x11, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x11, 0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x11, 0x0b, 0x22, 0xeb, 0x19, 0x0a, 0x1a, 0x0a, 0x22,
0x0b, 0x1a, 0x0b, 0x22, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x2c, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x4c, 0x22,
0x4b, 0x22, 0x4b, 0x2a, 0x4c, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8d, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0xad, 0x2a,
0x8d, 0x32, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xcd, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xee, 0x3a, 0xee, 0x3a, 0xee, 0x3a, 0xef, 0x3a, 0xee, 0x3a, 0x0e, 0x3b,
0x0e, 0x3b, 0x0f, 0x3b, 0x0f, 0x3b, 0x0e, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x4f, 0x43, 0x50, 0x3b, 0x4f, 0x43, 0x50, 0x43, 0x4f, 0x43, 0x70, 0x43,
0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x91, 0x4b, 0x90, 0x4b, 0x91, 0x4b, 0x90, 0x4b, 0x91, 0x4b, 0xb1, 0x4b, 0xb1, 0x43, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xd1, 0x4b, 0xd1, 0x4b, 0xd1, 0x53,
0xd2, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xb0, 0x4b, 0x6f, 0x43, 0x2d, 0x3b, 0xaa, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a,
0x2b, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b,
0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33,
0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a,
0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x28, 0x22,
0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x28, 0x22, 0x47, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22,
0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x69, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22,
0xe6, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22,
0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11,
0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x83, 0x08, 0x82, 0x08, 0x87, 0x19, 0xa8, 0x19, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19,
0x68, 0x11, 0x88, 0x11, 0xa9, 0x19, 0x26, 0x11, 0xa3, 0x08, 0xa4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xe9, 0x11, 0xc9, 0x19, 0xe9, 0x11,
0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19, 0xea, 0x11, 0xea, 0x19, 0xca, 0x19, 0xca, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x19, 0x0b, 0x1a, 0xea, 0x19,
0x0a, 0x1a, 0xeb, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x0b, 0x22, 0x4b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22,
0x2c, 0x22, 0x6b, 0x1a, 0x4c, 0x22, 0x4c, 0x22, 0x4c, 0x22, 0x6c, 0x2a, 0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a,
0xad, 0x2a, 0xad, 0x2a, 0x8d, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xae, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xee, 0x32, 0xee, 0x32, 0xee, 0x32, 0xee, 0x3a,
0x0e, 0x3b, 0x0e, 0x3b, 0x0e, 0x3b, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x2f, 0x43, 0x2f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x3b, 0x4f, 0x43, 0x70, 0x43, 0x50, 0x3b,
0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x90, 0x43, 0x90, 0x43, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xd2, 0x53, 0xd1, 0x53,
0xd2, 0x4b, 0xd1, 0x53, 0xd2, 0x53, 0xf2, 0x53, 0xf1, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0x12, 0x54, 0x12, 0x5c, 0x12, 0x54, 0x12, 0x5c, 0x13, 0x5c, 0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c,
0x12, 0x54, 0xb0, 0x4b, 0x6e, 0x43, 0x4d, 0x3b, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0xca, 0x2a, 0xea, 0x32, 0x8d, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33,
0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33,
0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xc9, 0x2a,
0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0xea, 0x2a, 0x8c, 0x33, 0x0b, 0x33,
0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x69, 0x2a, 0x89, 0x2a,
0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x28, 0x22, 0x88, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09,
0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc9, 0x19, 0x89, 0x11, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11,
0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11,
0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0xc9, 0x19, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x0b, 0x1a, 0xc9, 0x11, 0xea, 0x19, 0xea, 0x11, 0xea, 0x21,
0xca, 0x11, 0xea, 0x19, 0xca, 0x19, 0xca, 0x11, 0xea, 0x19, 0xca, 0x19, 0xea, 0x11, 0xe9, 0x19, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x12, 0xea, 0x21,
0x0a, 0x12, 0xea, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x2b, 0x22, 0xeb, 0x19, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x0b, 0x1a, 0x2c, 0x22, 0x4b, 0x22, 0x2b, 0x22,
0x4c, 0x22, 0x2c, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x2a, 0x4c, 0x22, 0x6c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8d, 0x32, 0x8c, 0x2a,
0x8c, 0x32, 0xad, 0x32, 0x8d, 0x32, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xce, 0x2a, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xee, 0x32, 0xce, 0x32, 0xee, 0x32,
0xce, 0x3a, 0xee, 0x3a, 0x0e, 0x3b, 0x0f, 0x3b, 0x0f, 0x3b, 0x0e, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x50, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x70, 0x43,
0x4f, 0x43, 0x70, 0x4b, 0x70, 0x43, 0x70, 0x43, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x43, 0x90, 0x43, 0x90, 0x4b, 0x90, 0x4b, 0xb1, 0x43, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xd1, 0x4b, 0xd1, 0x4b,
0xd1, 0x53, 0xd1, 0x53, 0xd2, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf3, 0x5b, 0x12, 0x54, 0x13, 0x54, 0x12, 0x54, 0x13, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x5c,
0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x54, 0x64, 0x74, 0x64, 0x73, 0x5c, 0x32, 0x54, 0xd0, 0x4b, 0xaf, 0x43, 0x4c, 0x3b, 0x2b, 0x33, 0xad, 0x3b,
0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33,
0x8c, 0x3b, 0x0f, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xed, 0x3b, 0xee, 0x43, 0xad, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xcd, 0x3b,
0xed, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44,
0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0xac, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xea, 0x2a,
0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x4c, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x68, 0x22,
0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a,
0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x22, 0xea, 0x32, 0x89, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x19, 0xe7, 0x21,
0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10,
0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x11, 0x05, 0x09, 0xa3, 0x08, 0x84, 0x08, 0x46, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x19,
0xa9, 0x11, 0xa8, 0x11, 0x89, 0x19, 0xa9, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x89, 0x11, 0xca, 0x19, 0xc9, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x19,
0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0xa9, 0x11, 0x67, 0x19, 0x83, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xc3, 0x08, 0xc4, 0x08, 0x0b, 0x1a, 0xea, 0x19, 0xe9, 0x11, 0xca, 0x19, 0xca, 0x11,
0xea, 0x19, 0xea, 0x19, 0xca, 0x11, 0xea, 0x19, 0xc9, 0x11, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x11, 0xc9, 0x19, 0xea, 0x11, 0x0b, 0x1a, 0xea, 0x19, 0xea, 0x19,
0x0a, 0x1a, 0x0a, 0x1a, 0xeb, 0x21, 0xeb, 0x19, 0x0a, 0x22, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x22, 0x0b, 0x22, 0x2a, 0x22, 0x2c, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22,
0x2b, 0x22, 0x2b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4b, 0x2a, 0x6c, 0x22, 0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x22, 0x4c, 0x2a, 0x8c, 0x22, 0x4c, 0x2a, 0x6d, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a,
0x6c, 0x2a, 0x8d, 0x2a, 0x8d, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xad, 0x32, 0xed, 0x32, 0xce, 0x3a, 0xee, 0x32,
0xee, 0x32, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x0f, 0x43, 0x4f, 0x43, 0x2f, 0x3b, 0x4f, 0x3b, 0x2f, 0x43, 0x4f, 0x3b,
0x50, 0x43, 0x50, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x4b, 0x90, 0x43, 0x91, 0x4b, 0x90, 0x4b, 0x91, 0x4b, 0x91, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b,
0xd1, 0x53, 0xd1, 0x4b, 0xd1, 0x4b, 0xd2, 0x53, 0xd2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x5b, 0x12, 0x54, 0x12, 0x54, 0x12, 0x5c, 0x13, 0x5c, 0x13, 0x5c, 0x32, 0x5c,
0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64,
0x94, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0x73, 0x64, 0x32, 0x54, 0xcf, 0x4b, 0x8e, 0x43, 0x4c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b,
0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22,
0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x47, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22,
0x27, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22,
0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x47, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x47, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x11, 0x05, 0x09,
0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xa4, 0x08, 0xa3, 0x08, 0x88, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x11, 0x89, 0x11, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0xea, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11,
0x88, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x19, 0xea, 0x19, 0xa3, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x0a, 0x22, 0xca, 0x11, 0xea, 0x19, 0xca, 0x11, 0xca, 0x19,
0xea, 0x11, 0xea, 0x19, 0xca, 0x19, 0xca, 0x11, 0xea, 0x19, 0xea, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xea, 0x11, 0xca, 0x19, 0xea, 0x19, 0xea, 0x11, 0xea, 0x21, 0xc9, 0x11, 0xea, 0x19, 0x0a, 0x1a,
0xeb, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0xea, 0x19, 0x0b, 0x1a, 0xea, 0x21, 0x0b, 0x1a, 0x2a, 0x1a, 0x0b, 0x22, 0x0a, 0x1a, 0x2b, 0x22, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22,
0x2b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x4c, 0x22, 0x2b, 0x2a, 0x4c, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x6d, 0x2a,
0x8d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0xad, 0x2a, 0x8d, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x2a, 0xae, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xce, 0x32, 0xee, 0x32,
0xee, 0x32, 0xee, 0x3a, 0xee, 0x3a, 0xee, 0x3a, 0xee, 0x3a, 0xef, 0x3a, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x0f, 0x3b, 0x2f, 0x3b, 0x0f, 0x3b, 0x2f, 0x43, 0x2f, 0x3b, 0x4f, 0x43, 0x50, 0x43,
0x4f, 0x43, 0x4f, 0x43, 0x50, 0x43, 0x50, 0x43, 0x70, 0x43, 0x50, 0x43, 0x70, 0x4b, 0x90, 0x43, 0x70, 0x43, 0x90, 0x43, 0x90, 0x43, 0x90, 0x43, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b,
0xb1, 0x4b, 0xd1, 0x4b, 0xd1, 0x4b, 0xd1, 0x53, 0xd2, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0x12, 0x5c, 0x12, 0x54, 0x12, 0x54, 0x13, 0x54, 0x13, 0x54,
0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x54, 0x64, 0x53, 0x64, 0x54, 0x64, 0x54, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64,
0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0x73, 0x5c, 0x52, 0x54, 0x71, 0x54,
0xce, 0x43, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x33, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xce, 0x3b,
0x4c, 0x33, 0x0a, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xaa, 0x2a,
0xea, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a,
0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x88, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x28, 0x22, 0x88, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x69, 0x22, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32,
0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x2a, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x07, 0x22, 0x47, 0x22, 0xe7, 0x21, 0x07, 0x22,
0x88, 0x2a, 0x07, 0x22, 0x27, 0x22, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xc5, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xaa, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19,
0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0x47, 0x11, 0x83, 0x08, 0xc3, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xa4, 0x00, 0x0b, 0x1a, 0xca, 0x19, 0xe9, 0x11, 0xca, 0x21, 0xe9, 0x11,
0xca, 0x19, 0xe9, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xc9, 0x11, 0xea, 0x19, 0xca, 0x11, 0xca, 0x21, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19,
0xea, 0x19, 0xea, 0x19, 0xeb, 0x19, 0x0a, 0x12, 0xea, 0x21, 0xea, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x0b, 0x22,
0x2b, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x2b, 0x1a, 0x4c, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x2a, 0x4b, 0x22, 0x4c, 0x2a, 0x6b, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x22, 0x8c, 0x2a, 0x6c, 0x2a,
0x6c, 0x2a, 0x6d, 0x2a, 0x8c, 0x2a, 0x8c, 0x32, 0x8d, 0x2a, 0xad, 0x2a, 0x8d, 0x32, 0xad, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x2a, 0xae, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x3a, 0xcd, 0x32,
0xce, 0x32, 0xee, 0x32, 0xee, 0x32, 0xee, 0x3a, 0x0e, 0x3b, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x2f, 0x43,
0x4f, 0x3b, 0x4f, 0x43, 0x50, 0x43, 0x6f, 0x43, 0x50, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x90, 0x4b, 0x91, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x91, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b,
0xb1, 0x53, 0xd1, 0x53, 0xb1, 0x4b, 0xd1, 0x4b, 0xd1, 0x53, 0xd2, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf3, 0x5b, 0x12, 0x54, 0x12, 0x54, 0x13, 0x5c, 0x12, 0x5c,
0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64,
0x95, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0x95, 0x64, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd6, 0x6c,
0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xd5, 0x6c, 0x93, 0x5c, 0x31, 0x54, 0x0f, 0x4c, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xac, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xac, 0x3b, 0x8d, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x4c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a,
0x8c, 0x3b, 0xea, 0x32, 0xca, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x0b, 0x2b, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x89, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x69, 0x2a, 0x88, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x2b, 0x89, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a,
0x0b, 0x2b, 0x69, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a,
0xe6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x11, 0xe5, 0x10, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x10, 0x06, 0x09,
0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xea, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x19,
0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0xc9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11,
0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x19, 0xa3, 0x00, 0xa4, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09,
0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xea, 0x21, 0xea, 0x11, 0xea, 0x19, 0xca, 0x19, 0xc9, 0x19,
0xea, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x11, 0xea, 0x19, 0xca, 0x19, 0xca, 0x19, 0xea, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xea, 0x19, 0xca, 0x11, 0xca, 0x19, 0xea, 0x19,
0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x21, 0x0a, 0x12, 0x0a, 0x22, 0xeb, 0x19, 0x0b, 0x1a, 0x0b, 0x22, 0x0a, 0x1a, 0x0b, 0x22, 0x0a, 0x22, 0x2b, 0x1a, 0x2a, 0x22, 0x2b, 0x1a, 0x2b, 0x1a,
0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x2c, 0x22, 0x4b, 0x22, 0x6b, 0x22, 0x4c, 0x2a, 0x4b, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a,
0x6d, 0x2a, 0x8c, 0x22, 0x8c, 0x32, 0x8c, 0x2a, 0x6c, 0x2a, 0xad, 0x32, 0x8d, 0x2a, 0x8d, 0x32, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x32, 0xcd, 0x2a, 0xcd, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xae, 0x32,
0xee, 0x32, 0xce, 0x32, 0xce, 0x3a, 0x0e, 0x33, 0xee, 0x32, 0xee, 0x3a, 0x0e, 0x33, 0xef, 0x3a, 0x0e, 0x3b, 0x0e, 0x33, 0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x2f, 0x3b, 0x2f, 0x43,
0x50, 0x43, 0x4f, 0x3b, 0x4f, 0x43, 0x50, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x4b, 0x90, 0x43, 0x90, 0x4b, 0x71, 0x4b, 0x90, 0x43, 0x90, 0x4b, 0xb1, 0x4b, 0x91, 0x4b,
0xb1, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xd2, 0x4b, 0xb1, 0x4b, 0xd1, 0x4b, 0xd1, 0x4b, 0xd1, 0x53, 0xd2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0xf2, 0x53, 0x12, 0x5c, 0xf2, 0x53, 0x12, 0x54,
0x12, 0x54, 0x33, 0x54, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64,
0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c,
0xd5, 0x6c, 0xf6, 0x6c, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x17, 0x75, 0x36, 0x75, 0x17, 0x75, 0x37, 0x75, 0xf6, 0x74,
0xb4, 0x64, 0x72, 0x5c, 0x10, 0x4c, 0xce, 0x43, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b,
0x4c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6b, 0x33,
0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32,
0x0a, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xea, 0x32, 0xaa, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0xca, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x69, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22,
0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x28, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22,
0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x47, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22,
0xe7, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x47, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe6, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22,
0x06, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x05, 0x09, 0x06, 0x09, 0xe6, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0x05, 0x09, 0x0b, 0x22, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19,
0xc9, 0x11, 0xea, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x11,
0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xc4, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08,
0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x0a, 0x1a, 0xea, 0x19, 0xc9, 0x11, 0xea, 0x19, 0xea, 0x19,
0xc9, 0x11, 0xca, 0x19, 0xe9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xea, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xea, 0x19, 0xea, 0x11, 0xc9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xc9, 0x19, 0xea, 0x19,
0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0x0b, 0x22, 0x2a, 0x1a, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x0a, 0x22, 0x2b, 0x22,
0x2b, 0x1a, 0x0b, 0x22, 0x2b, 0x1a, 0x0b, 0x22, 0x2c, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x4c, 0x22, 0x6c, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x4b, 0x2a, 0x8c, 0x2a,
0x8b, 0x2a, 0x6c, 0x2a, 0x8c, 0x22, 0x8d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x8d, 0x32, 0x8d, 0x2a, 0x8d, 0x2a, 0xad, 0x32, 0xad, 0x2a, 0xad, 0x32, 0xcd, 0x32, 0xcd, 0x2a, 0xad, 0x32, 0xce, 0x32,
0xcd, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x32, 0x0f, 0x33, 0xee, 0x3a, 0x0e, 0x3b, 0x0f, 0x3b, 0x0f, 0x43, 0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b,
0x2f, 0x3b, 0x2f, 0x43, 0x4f, 0x43, 0x4f, 0x3b, 0x30, 0x43, 0x4f, 0x43, 0x50, 0x43, 0x70, 0x43, 0x70, 0x43, 0x70, 0x43, 0x90, 0x43, 0x90, 0x4b, 0x91, 0x4b, 0x91, 0x4b, 0x90, 0x4b, 0x90, 0x4b,
0xb1, 0x4b, 0x91, 0x4b, 0x90, 0x4b, 0x70, 0x4b, 0x91, 0x4b, 0xb1, 0x4b, 0xd1, 0x53, 0xd2, 0x53, 0xf2, 0x53, 0xf2, 0x4b, 0xf2, 0x53, 0xf2, 0x53, 0x12, 0x54, 0xf2, 0x53, 0xf2, 0x53, 0x12, 0x54,
0x13, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64,
0x74, 0x64, 0x74, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x95, 0x6c, 0x94, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c,
0xd5, 0x6c, 0xd5, 0x74, 0xd6, 0x74, 0xf6, 0x6c, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x36, 0x75, 0x37, 0x75, 0x37, 0x75,
0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0xf5, 0x6c, 0xf4, 0x64, 0x72, 0x54, 0x0f, 0x4c, 0x6c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b,
0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a,
0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33,
0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a,
0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x69, 0x2a, 0xea, 0x32, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x89, 0x2a,
0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x88, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19,
0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x2a, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08,
0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xc4, 0x08, 0xa4, 0x00, 0x05, 0x11, 0x0b, 0x22, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xa9, 0x11,
0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0xea, 0x11, 0xea, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0xea, 0x19, 0xc9, 0x19,
0xc9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xea, 0x19, 0xe4, 0x10, 0xa3, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x0b, 0x1a, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19,
0xca, 0x19, 0xea, 0x11, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x11, 0xca, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xea, 0x11, 0xc9, 0x19, 0xea, 0x11, 0xe9, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xea, 0x19,
0xca, 0x11, 0xea, 0x19, 0xea, 0x11, 0xea, 0x21, 0xea, 0x11, 0xea, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0xea, 0x21, 0xea, 0x19, 0x0b, 0x1a, 0xea, 0x21, 0x0b, 0x1a, 0x0a, 0x22, 0x0a, 0x1a, 0x0b, 0x22,
0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x22, 0x2b, 0x22, 0x2c, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x6b, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a,
0x6c, 0x2a, 0x4c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0xad, 0x2a, 0xac, 0x2a, 0x8d, 0x2a, 0xac, 0x32, 0xad, 0x2a, 0xad, 0x32, 0xcd, 0x32, 0xad, 0x2a, 0xcd, 0x32,
0xad, 0x32, 0xce, 0x32, 0xce, 0x3a, 0xee, 0x32, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x32, 0x0e, 0x3b, 0xee, 0x3a, 0x0e, 0x33, 0x0e, 0x3b, 0x0f, 0x3b, 0x0e, 0x3b, 0x0e, 0x3b, 0x2f, 0x3b, 0x2f, 0x3b,
0x2f, 0x43, 0x2f, 0x3b, 0x30, 0x3b, 0x2f, 0x43, 0x4f, 0x43, 0x50, 0x3b, 0x50, 0x43, 0x70, 0x43, 0x70, 0x43, 0x50, 0x43, 0x2f, 0x43, 0x2e, 0x43, 0xed, 0x42, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x3a,
0xed, 0x42, 0xec, 0x42, 0xed, 0x42, 0xed, 0x42, 0x0d, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0x2e, 0x4b, 0x2e, 0x4b, 0x4e, 0x4b, 0x70, 0x4b, 0x90, 0x53, 0xd1, 0x53, 0xf2, 0x53,
0xf2, 0x53, 0x12, 0x54, 0x12, 0x5c, 0x13, 0x54, 0x12, 0x5c, 0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x54, 0x64, 0x74, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0x95, 0x6c, 0xb4, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c,
0xd6, 0x6c, 0xd5, 0x6c, 0xf5, 0x6c, 0xd6, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x17, 0x7d, 0x16, 0x75,
0x37, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x75, 0x37, 0x75, 0x57, 0x7d, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x77, 0x7d,
0x78, 0x85, 0x78, 0x7d, 0x36, 0x75, 0xf4, 0x6c, 0xb3, 0x5c, 0xb2, 0x54, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x43, 0xad, 0x3b,
0xed, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x2b, 0xea, 0x2a,
0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x69, 0x22, 0x88, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x69, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a,
0x88, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0x89, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32,
0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xc6, 0x19, 0xe6, 0x21,
0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x11, 0x05, 0x09,
0xe6, 0x08, 0xe5, 0x10, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xc5, 0x10, 0xa3, 0x08, 0x05, 0x11, 0x0b, 0x1a, 0xea, 0x19, 0xe9, 0x11, 0xea, 0x19, 0xc9, 0x19, 0xc9, 0x11,
0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x88, 0x11, 0x05, 0x09, 0xe4, 0x08, 0x89, 0x11, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a,
0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0x0a, 0x22, 0x06, 0x09, 0xa3, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x0a, 0x1a, 0xea, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xea, 0x19,
0xca, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0xca, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19,
0xca, 0x19, 0xe9, 0x11, 0xea, 0x19, 0xca, 0x19, 0xe9, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x22, 0x0a, 0x1a, 0x0b, 0x1a, 0x2a, 0x22,
0x2b, 0x1a, 0x0a, 0x22, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2c, 0x22, 0x4c, 0x22, 0x4b, 0x2a, 0x4b, 0x22, 0x4c, 0x2a, 0x6b, 0x22,
0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6d, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x32, 0x6d, 0x2a, 0xac, 0x2a, 0xad, 0x32, 0x8d, 0x2a, 0x8d, 0x32, 0xad, 0x2a, 0xad, 0x2a, 0xad, 0x32, 0xad, 0x2a,
0xcd, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xed, 0x32, 0xee, 0x32, 0xee, 0x3a, 0xee, 0x32, 0x0e, 0x3b, 0xee, 0x3a, 0xef, 0x3a, 0x0e, 0x3b, 0x0e, 0x3b, 0x0f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43,
0x2f, 0x3b, 0x2f, 0x3b, 0x2f, 0x43, 0x4f, 0x3b, 0x4f, 0x43, 0x4f, 0x43, 0x0e, 0x3b, 0xed, 0x3a, 0xac, 0x3a, 0xab, 0x3a, 0xac, 0x3a, 0xad, 0x42, 0xcd, 0x3a, 0xcc, 0x3a, 0xcc, 0x42, 0xed, 0x42,
0xed, 0x3a, 0xed, 0x42, 0xed, 0x42, 0x0d, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x4b, 0x2e, 0x4b, 0x4f, 0x4b, 0x2e, 0x43, 0x4f, 0x4b, 0x4e, 0x4b, 0x4f, 0x4b,
0x8f, 0x4b, 0x90, 0x53, 0xd1, 0x53, 0x12, 0x54, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x34, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x74, 0x5c,
0x74, 0x5c, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0x94, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x64, 0xd5, 0x6c,
0xd6, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xf5, 0x74, 0xd6, 0x74, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x36, 0x75,
0x16, 0x75, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x75, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x58, 0x7d, 0x57, 0x7d, 0x78, 0x7d,
0x78, 0x7d, 0x78, 0x85, 0x78, 0x85, 0x78, 0x7d, 0x78, 0x85, 0x78, 0x85, 0x98, 0x85, 0x78, 0x85, 0x98, 0x85, 0x98, 0x85, 0x98, 0x85, 0x78, 0x7d, 0x36, 0x75, 0xd3, 0x64, 0x51, 0x54, 0x2f, 0x4c,
0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x6c, 0x3b, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22,
0x68, 0x22, 0x69, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x27, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22,
0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x22, 0x28, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x47, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x88, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x06, 0x11, 0x05, 0x09,
0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe4, 0x08, 0xa3, 0x00, 0xe5, 0x10, 0x2a, 0x22, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xa9, 0x11,
0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0xea, 0x19, 0x27, 0x09, 0x26, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0x26, 0x11, 0x46, 0x11, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a,
0xea, 0x19, 0xa9, 0x19, 0xca, 0x11, 0xca, 0x19, 0xca, 0x19, 0x0a, 0x1a, 0x05, 0x11, 0xa4, 0x08, 0xc4, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11,
0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0xea, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xc9, 0x11,
0xca, 0x19, 0xe9, 0x19, 0xca, 0x11, 0xea, 0x19, 0xc9, 0x11, 0xea, 0x19, 0xc9, 0x19, 0xe9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x11, 0xca, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19,
0x0a, 0x12, 0xea, 0x19, 0xca, 0x11, 0xe9, 0x21, 0xeb, 0x19, 0xc9, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0xea, 0x21, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x22, 0xeb, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a,
0x0b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x0b, 0x1a, 0x4a, 0x22, 0x0a, 0x22, 0x2b, 0x22, 0x2b, 0x1a, 0x4b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x4b, 0x2a, 0x6c, 0x22, 0x4b, 0x22,
0x4c, 0x2a, 0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x6c, 0x22, 0x8c, 0x2a, 0x8d, 0x2a, 0x8d, 0x2a, 0x8d, 0x32, 0x8c, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x2a, 0xad, 0x32,
0xad, 0x32, 0xcd, 0x2a, 0xcd, 0x32, 0xae, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xce, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x3b, 0xee, 0x3a, 0x0e, 0x33, 0x0f, 0x3b, 0x0e, 0x3b, 0x2f, 0x3b,
0x2e, 0x43, 0x4f, 0x3b, 0x2f, 0x3b, 0xcd, 0x3a, 0xac, 0x32, 0x6b, 0x3a, 0x8b, 0x3a, 0x8c, 0x3a, 0xab, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcc, 0x3a, 0xcc, 0x42, 0xcd, 0x3a, 0xcc, 0x3a,
0xcc, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x42, 0x0d, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x4b, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x4b, 0x2e, 0x43, 0x4e, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x4e, 0x4b,
0x4f, 0x53, 0x6f, 0x53, 0x6f, 0x4b, 0x6f, 0x4b, 0x90, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x64, 0x53, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x74, 0xf6, 0x74, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x17, 0x75,
0x36, 0x7d, 0x17, 0x7d, 0x37, 0x7d, 0x36, 0x7d, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x57, 0x75, 0x37, 0x7d, 0x58, 0x7d, 0x58, 0x7d, 0x58, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x78, 0x7d, 0x57, 0x7d,
0x77, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x77, 0x7d, 0x78, 0x85, 0x98, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x98, 0x85, 0x98, 0x85, 0x98, 0x85, 0x98, 0x85, 0x99, 0x85, 0x98, 0x85, 0x98, 0x85,
0x98, 0x85, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x19, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22,
0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22,
0xe7, 0x21, 0x47, 0x22, 0x88, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32,
0x27, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22,
0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x10, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11, 0xe6, 0x08,
0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x10, 0xa4, 0x08, 0xe4, 0x08, 0x0a, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xa9, 0x11,
0x0a, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x88, 0x11, 0x06, 0x11, 0x67, 0x11, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0x67, 0x11, 0x26, 0x09, 0xea, 0x19, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a,
0xea, 0x19, 0xa9, 0x11, 0xea, 0x19, 0xea, 0x19, 0xca, 0x11, 0x0b, 0x22, 0x05, 0x11, 0xa3, 0x00, 0xc5, 0x08, 0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe6, 0x10,
0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xeb, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xca, 0x19,
0xc9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xc9, 0x11,
0xca, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x11, 0xc9, 0x19, 0xeb, 0x19, 0xea, 0x19, 0xe9, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x21, 0xeb, 0x19, 0x0a, 0x1a, 0x2b, 0x22,
0xea, 0x19, 0x0a, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x0b, 0x22, 0x2c, 0x22, 0x0b, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4c, 0x22, 0x2b, 0x22, 0x4b, 0x2a, 0x4c, 0x22, 0x2b, 0x2a, 0x6c, 0x22,
0x4b, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x6b, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0x6c, 0x2a, 0xac, 0x2a, 0x8d, 0x32, 0x8d, 0x2a, 0xad, 0x2a, 0xac, 0x32, 0xad, 0x2a,
0xad, 0x32, 0xce, 0x32, 0xad, 0x2a, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xcd, 0x3a, 0xee, 0x32, 0xed, 0x32, 0xee, 0x3a, 0xee, 0x32, 0xee, 0x32, 0x0e, 0x3b, 0x0e, 0x33, 0x0e, 0x3b, 0x0f, 0x3b,
0xcd, 0x32, 0x8c, 0x32, 0x4a, 0x32, 0x6b, 0x32, 0x6b, 0x3a, 0x6b, 0x3a, 0x8c, 0x32, 0x8b, 0x3a, 0x8b, 0x3a, 0xac, 0x3a, 0xab, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0x8c, 0x32, 0x8b, 0x3a, 0xed, 0x42,
0x2e, 0x4b, 0x0d, 0x4b, 0x2e, 0x4b, 0x6e, 0x53, 0x8f, 0x5b, 0xb0, 0x63, 0xaf, 0x5b, 0x8f, 0x5b, 0x4f, 0x53, 0x0d, 0x43, 0xed, 0x42, 0xed, 0x42, 0xed, 0x42, 0x2e, 0x43, 0x2e, 0x4b, 0x4f, 0x4b,
0x4e, 0x4b, 0x4f, 0x4b, 0x6f, 0x53, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x8f, 0x53, 0x90, 0x53, 0xf1, 0x53, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x5c, 0x53, 0x5c,
0x53, 0x64, 0x54, 0x64, 0x54, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x95, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x95, 0x6c, 0xb4, 0x6c, 0x95, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c,
0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75,
0x17, 0x75, 0x36, 0x75, 0x16, 0x75, 0x37, 0x75, 0x36, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x75, 0x57, 0x75, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x75, 0x57, 0x7d, 0x57, 0x7d, 0x58, 0x7d, 0x77, 0x7d,
0x58, 0x7d, 0x77, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x98, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x98, 0x85, 0x98, 0x85, 0x98, 0x85, 0x99, 0x85, 0x98, 0x85,
0x98, 0x85, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xac, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xed, 0x3b, 0x4c, 0x33,
0x4b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2a, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33,
0x8c, 0x3b, 0x0b, 0x2b, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xc9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xc9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x69, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x69, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x69, 0x22, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0xe6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xc6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21,
0xa6, 0x19, 0xc6, 0x19, 0xe6, 0x21, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11,
0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0xa3, 0x08, 0xa4, 0x08, 0xc9, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0xeb, 0x19, 0xea, 0x19, 0xc9, 0x11,
0x2b, 0x1a, 0xea, 0x19, 0x26, 0x11, 0x47, 0x11, 0xc9, 0x11, 0x0a, 0x1a, 0xea, 0x11, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0xea, 0x19, 0xa8, 0x11, 0x05, 0x09, 0xea, 0x19, 0x0b, 0x1a, 0x0b, 0x1a,
0x0a, 0x1a, 0xa9, 0x11, 0xe9, 0x19, 0xea, 0x11, 0xea, 0x19, 0x2a, 0x1a, 0x05, 0x11, 0xa3, 0x08, 0xe4, 0x08, 0xe6, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08,
0x05, 0x11, 0xe5, 0x08, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0x0a, 0x1a, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11,
0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x21, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19,
0xca, 0x11, 0xe9, 0x19, 0xc9, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19, 0xca, 0x19, 0xca, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x11, 0xea, 0x21, 0xeb, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0xea, 0x19,
0x0a, 0x22, 0x0b, 0x1a, 0x0a, 0x22, 0x0b, 0x1a, 0x2a, 0x22, 0x2a, 0x22, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2c, 0x22, 0x2a, 0x22, 0x4c, 0x22, 0x4b, 0x22, 0x2b, 0x2a, 0x4c, 0x22, 0x4b, 0x22,
0x6c, 0x2a, 0x6c, 0x22, 0x6b, 0x2a, 0x4c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x8d, 0x32, 0x8c, 0x2a, 0xac, 0x2a, 0xad, 0x32, 0xad, 0x2a, 0x8d, 0x32,
0xcd, 0x32, 0xad, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0xcd, 0x32, 0xee, 0x3a, 0xed, 0x32, 0xce, 0x3a, 0x0e, 0x3b, 0xef, 0x3a, 0xee, 0x3a, 0xad, 0x3a, 0x4a, 0x2a,
0x4b, 0x32, 0x4a, 0x32, 0x6a, 0x3a, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8b, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0x6b, 0x32, 0xed, 0x42, 0xaf, 0x63, 0x31, 0x74, 0xd4, 0x8c, 0xd7, 0xad, 0xd7, 0xad,
0xd8, 0xad, 0x39, 0xb6, 0x79, 0xbe, 0x9a, 0xc6, 0x9a, 0xc6, 0x7a, 0xbe, 0x59, 0xbe, 0x59, 0xbe, 0x59, 0xbe, 0x59, 0xbe, 0x39, 0xbe, 0xf8, 0xb5, 0x96, 0x9d, 0xd4, 0x84, 0x31, 0x74, 0xb0, 0x5b,
0x4e, 0x4b, 0x2e, 0x4b, 0x4e, 0x4b, 0x6f, 0x4b, 0x6f, 0x53, 0x6f, 0x4b, 0x6f, 0x53, 0x8f, 0x4b, 0x8f, 0x53, 0x6f, 0x53, 0xd1, 0x53, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c,
0x54, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x54, 0x64, 0x74, 0x5c, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0x94, 0x64, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x6c,
0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x74, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75,
0x17, 0x75, 0x16, 0x75, 0x37, 0x75, 0x17, 0x75, 0x17, 0x75, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x75, 0x57, 0x75, 0x37, 0x7d, 0x57, 0x7d, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x58, 0x7d,
0x57, 0x7d, 0x57, 0x7d, 0x78, 0x7d, 0x77, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x78, 0x85, 0x78, 0x85, 0x98, 0x85, 0x98, 0x85, 0x78, 0x7d, 0x78, 0x7d, 0x99, 0x85, 0x98, 0x7d, 0x98, 0x85, 0x99, 0x85,
0x98, 0x7d, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33,
0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xeb, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x1a, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22,
0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x27, 0x22, 0x28, 0x22,
0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22,
0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe6, 0x10, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09,
0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x25, 0x09, 0xa4, 0x08, 0x82, 0x08, 0x67, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0xa9, 0x11,
0x88, 0x11, 0x26, 0x11, 0x88, 0x11, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0xeb, 0x19, 0x0a, 0x1a, 0xeb, 0x19, 0x0b, 0x1a, 0xea, 0x19, 0xc9, 0x19, 0x25, 0x09, 0xa9, 0x11, 0x0a, 0x1a,
0xea, 0x19, 0xa9, 0x11, 0xeb, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0x0a, 0x22, 0xe5, 0x10, 0xa3, 0x00, 0xc5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xeb, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19,
0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xca, 0x19, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xea, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xca, 0x11,
0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0x0a, 0x1a, 0xca, 0x19, 0xca, 0x19, 0xea, 0x21, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x21,
0x0a, 0x1a, 0x0a, 0x22, 0x0b, 0x1a, 0x0a, 0x22, 0x0b, 0x22, 0x0b, 0x22, 0x0b, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x2a, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4c, 0x1a, 0x4b, 0x2a, 0x4c, 0x22,
0x4b, 0x22, 0x4c, 0x2a, 0x4c, 0x22, 0x6b, 0x2a, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x6d, 0x2a, 0x8d, 0x2a, 0x8d, 0x2a, 0x8c, 0x2a, 0x8c, 0x32, 0xad, 0x2a,
0xac, 0x32, 0xad, 0x32, 0xad, 0x2a, 0xcd, 0x32, 0xad, 0x32, 0xcd, 0x2a, 0xcd, 0x32, 0xce, 0x32, 0xce, 0x32, 0xce, 0x3a, 0xee, 0x32, 0xed, 0x32, 0x8b, 0x32, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x32,
0x4a, 0x32, 0x4b, 0x32, 0x6b, 0x2a, 0x6b, 0x32, 0x6b, 0x32, 0x6a, 0x32, 0x6b, 0x3a, 0xf0, 0x6b, 0xb3, 0x84, 0xb7, 0xad, 0x59, 0xc6, 0x7a, 0xbe, 0x9a, 0xc6, 0xdb, 0xce, 0xfc, 0xd6, 0x1c, 0xd7,
0x3d, 0xd7, 0x5d, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x7d, 0xdf, 0x5d, 0xd7, 0x5d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x1c, 0xcf, 0xfc, 0xce, 0xdb, 0xce, 0xbb, 0xc6, 0x9a, 0xbe,
0x39, 0xb6, 0xb7, 0xa5, 0x93, 0x7c, 0xb0, 0x5b, 0x2e, 0x4b, 0x4f, 0x4b, 0x6f, 0x53, 0x70, 0x53, 0x6f, 0x53, 0x8f, 0x53, 0x90, 0x53, 0x6f, 0x53, 0xd1, 0x53, 0x32, 0x5c, 0x33, 0x5c, 0x54, 0x5c,
0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0x95, 0x64, 0xb5, 0x64, 0xb5, 0x6c,
0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x75,
0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x58, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d,
0x58, 0x7d, 0x58, 0x7d, 0x57, 0x7d, 0x78, 0x7d, 0x57, 0x7d, 0x78, 0x85, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x98, 0x7d, 0x78, 0x7d, 0x98, 0x7d, 0x98, 0x85, 0x98, 0x85,
0x99, 0x7d, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xac, 0x3b,
0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a,
0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33,
0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a,
0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x68, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x2a,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x47, 0x22, 0xe6, 0x21, 0x07, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22,
0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09,
0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x4c, 0x22, 0xeb, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x88, 0x19,
0x68, 0x11, 0xc9, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0xeb, 0x19, 0x0b, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0xea, 0x19, 0xca, 0x19, 0x47, 0x11, 0x67, 0x11,
0xea, 0x19, 0xca, 0x11, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xea, 0x19, 0xa3, 0x08, 0xa4, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x10, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09,
0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0x05, 0x09, 0xc5, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0x0a, 0x1a, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19,
0xca, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xe9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x21, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xea, 0x19,
0xca, 0x11, 0xe9, 0x21, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xea, 0x19, 0xea, 0x11, 0xea, 0x21, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0xea, 0x21, 0x0b, 0x1a, 0xeb, 0x21, 0x0a, 0x1a, 0x0b, 0x1a, 0x2a, 0x22, 0x0b, 0x22, 0x2b, 0x1a, 0x0b, 0x22, 0x2b, 0x22, 0x2a, 0x22, 0x2a, 0x22, 0x2b, 0x1a, 0x2b, 0x2a, 0x2c, 0x22, 0x2b, 0x22,
0x2b, 0x2a, 0x4b, 0x22, 0x4b, 0x2a, 0x4c, 0x22, 0x4b, 0x2a, 0x6b, 0x2a, 0x4c, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x6c, 0x2a, 0x8b, 0x2a, 0x6d, 0x2a, 0x8c, 0x2a, 0x8d, 0x2a, 0x8d, 0x32,
0xad, 0x2a, 0x8d, 0x2a, 0xad, 0x32, 0xcd, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xcd, 0x32, 0xce, 0x32, 0x6b, 0x32, 0x2a, 0x2a, 0x09, 0x2a, 0x2a, 0x32, 0x4a, 0x32, 0x2a, 0x2a,
0x4b, 0x2a, 0x4a, 0x32, 0x2a, 0x32, 0xab, 0x42, 0xf0, 0x6b, 0xf4, 0x94, 0x39, 0xbe, 0x7a, 0xc6, 0xda, 0xce, 0xfc, 0xd6, 0x3d, 0xdf, 0x5d, 0xdf, 0x9e, 0xe7, 0x9e, 0xe7, 0xbe, 0xe7, 0xbf, 0xe7,
0xbe, 0xef, 0xbf, 0xef, 0xbf, 0xef, 0xbf, 0xef, 0xbf, 0xef, 0xbf, 0xef, 0xdf, 0xef, 0xdf, 0xe7, 0xdf, 0xe7, 0xdf, 0xef, 0xbf, 0xe7, 0xbf, 0xe7, 0x9e, 0xe7, 0x9e, 0xe7, 0x7e, 0xdf, 0x5d, 0xd7,
0x1d, 0xd7, 0xfc, 0xce, 0xdb, 0xc6, 0x7a, 0xbe, 0x19, 0xb6, 0xf4, 0x84, 0xaf, 0x5b, 0x2e, 0x4b, 0x6f, 0x4b, 0x8f, 0x4b, 0x8f, 0x53, 0x90, 0x53, 0x90, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0x13, 0x5c,
0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x95, 0x64, 0x95, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0xb5, 0x64,
0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd6, 0x6c, 0xd5, 0x6c, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74,
0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x36, 0x75, 0x16, 0x75, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x57, 0x75, 0x57, 0x75, 0x57, 0x7d,
0x57, 0x7d, 0x16, 0x75, 0x37, 0x7d, 0x57, 0x7d, 0x77, 0x7d, 0x58, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x98, 0x7d, 0x78, 0x7d, 0x98, 0x85, 0x78, 0x85, 0x98, 0x85, 0x98, 0x7d,
0x98, 0x85, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xed, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x3c, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0a, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0xeb, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33,
0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33,
0x89, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x2b,
0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0xc6, 0x21, 0xc6, 0x21, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0xa6, 0x19, 0xe6, 0x21, 0xe7, 0x21,
0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0x05, 0x11, 0x06, 0x09, 0xe5, 0x08, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09,
0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0xa3, 0x08, 0x83, 0x08, 0xc9, 0x19, 0x4b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0xea, 0x19,
0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0xe9, 0x19, 0x67, 0x11,
0x88, 0x11, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x88, 0x19, 0x83, 0x08, 0xa3, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xe6, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09,
0x06, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x09, 0xc4, 0x08, 0xc4, 0x08, 0xea, 0x21, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xea, 0x19,
0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xea, 0x19, 0xc9, 0x19, 0xea, 0x19, 0xc9, 0x11, 0xea, 0x19, 0xca, 0x19, 0xe9, 0x11, 0xc9, 0x11, 0xca, 0x19,
0xc9, 0x19, 0xca, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x21,
0xea, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xeb, 0x21, 0x0b, 0x22, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x0b, 0x22, 0x0b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x22, 0x4b, 0x22,
0x2b, 0x22, 0x4c, 0x2a, 0x4b, 0x22, 0x4c, 0x22, 0x4c, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x6b, 0x22, 0x4c, 0x2a, 0x6b, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x8c, 0x2a, 0x8d, 0x32, 0x8c, 0x2a,
0xad, 0x2a, 0x8d, 0x32, 0xac, 0x2a, 0xad, 0x32, 0xad, 0x32, 0xad, 0x32, 0xae, 0x32, 0xee, 0x32, 0x4b, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x49, 0x2a, 0x2a, 0x32, 0x2a, 0x2a,
0x09, 0x2a, 0x8e, 0x5b, 0xd3, 0x94, 0x18, 0xbe, 0x7a, 0xc6, 0xdb, 0xce, 0x1c, 0xdf, 0x5d, 0xe7, 0x9e, 0xe7, 0xbe, 0xef, 0xbf, 0xef, 0xde, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef,
0xdf, 0xef, 0xdf, 0xef, 0xbe, 0xef, 0xbe, 0xe7, 0xbf, 0xe7, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xef,
0xbf, 0xe7, 0x9f, 0xe7, 0x7e, 0xdf, 0x5d, 0xdf, 0x1c, 0xcf, 0xdc, 0xc6, 0x9a, 0xbe, 0xb8, 0xa5, 0x72, 0x74, 0x70, 0x4b, 0x6f, 0x53, 0x8f, 0x53, 0x90, 0x53, 0x8f, 0x53, 0xb0, 0x53, 0x90, 0x53,
0xf1, 0x5b, 0x54, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0x94, 0x64,
0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd6, 0x6c, 0xd6, 0x6c, 0xd5, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74,
0x16, 0x6d, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x36, 0x75, 0x16, 0x75, 0x37, 0x7d, 0x17, 0x75, 0x37, 0x75, 0x37, 0x75, 0x37, 0x75, 0x37, 0x75, 0x57, 0x7d, 0x58, 0x7d, 0x57, 0x7d,
0x57, 0x7d, 0xf6, 0x74, 0x16, 0x7d, 0x16, 0x7d, 0x16, 0x7d, 0x16, 0x7d, 0x16, 0x7d, 0x15, 0x7d, 0x16, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x78, 0x7d, 0x98, 0x85, 0x98, 0x7d,
0x98, 0x7d, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33,
0x4c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x0b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x69, 0x2a, 0x88, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x47, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x89, 0x2a,
0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x28, 0x22,
0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xa6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21,
0x07, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09,
0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x4c, 0x22, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a,
0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a,
0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x4c, 0x22, 0xc4, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0xe5, 0x10,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xea, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x11,
0xca, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x11,
0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x11,
0xea, 0x21, 0xea, 0x19, 0xea, 0x19, 0xeb, 0x19, 0x0a, 0x22, 0x0a, 0x1a, 0x2a, 0x22, 0x0b, 0x1a, 0x2a, 0x22, 0x0b, 0x1a, 0x0b, 0x22, 0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x2a, 0x2b, 0x22, 0x2b, 0x22,
0x2c, 0x22, 0x2b, 0x22, 0x2c, 0x2a, 0x4b, 0x22, 0x4c, 0x22, 0x6c, 0x2a, 0x4b, 0x22, 0x4c, 0x2a, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x8c, 0x2a, 0x6d, 0x2a, 0x6c, 0x2a, 0x8c, 0x32,
0x8c, 0x2a, 0x8c, 0x2a, 0x8d, 0x32, 0x8d, 0x2a, 0xad, 0x32, 0xad, 0x32, 0x8c, 0x2a, 0x09, 0x2a, 0xe9, 0x29, 0x29, 0x2a, 0x0a, 0x2a, 0x0a, 0x2a, 0x09, 0x2a, 0x0a, 0x22, 0x4a, 0x32, 0x8f, 0x63,
0x96, 0xad, 0x39, 0xbe, 0xdb, 0xce, 0x1c, 0xdf, 0x5d, 0xe7, 0x9e, 0xef, 0xbe, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0x9e, 0xef, 0x5a, 0xe7, 0x38, 0xdf, 0x15, 0xdf,
0xd2, 0xd6, 0x8e, 0xd6, 0xb0, 0xce, 0xd1, 0xd6, 0xd0, 0xd6, 0xb0, 0xce, 0x8f, 0xce, 0x8e, 0xce, 0x4e, 0xce, 0x9c, 0xe7, 0x74, 0xde, 0x54, 0xde, 0xd7, 0xde, 0x3b, 0xe7, 0x7d, 0xe7, 0xbe, 0xe7,
0xdf, 0xe7, 0xdf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0x9f, 0xe7, 0x9e, 0xdf, 0x5d, 0xdf, 0x1d, 0xcf, 0xbb, 0xc6, 0x18, 0xae, 0xf5, 0x84, 0xd1, 0x5b, 0x6f, 0x53, 0x8f, 0x53, 0x8f, 0x53, 0xb0, 0x53,
0x90, 0x53, 0xd0, 0x53, 0x13, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x64, 0x54, 0x5c, 0x54, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64,
0x94, 0x6c, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xf6, 0x6c, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x6c,
0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x36, 0x75, 0x16, 0x7d, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x57, 0x7d,
0x37, 0x7d, 0xf6, 0x74, 0x16, 0x7d, 0x16, 0x75, 0x16, 0x7d, 0x36, 0x75, 0x36, 0x75, 0x36, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x78, 0x85, 0x78, 0x85, 0x98, 0x7d,
0x98, 0x85, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b,
0xad, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b,
0x6c, 0x33, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x0a, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0xea, 0x32,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32,
0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22,
0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09,
0x06, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x67, 0x11, 0x6c, 0x22, 0x2b, 0x22, 0x0b, 0x1a,
0x2b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a,
0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x4c, 0x22, 0xe9, 0x19, 0x83, 0x08, 0xa3, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09,
0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0xa4, 0x08, 0xea, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x11,
0xc9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x11,
0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xca, 0x11, 0xea, 0x19, 0xc9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x19,
0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x2a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x22, 0x0a, 0x22, 0x2b, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x0a, 0x1a, 0x4b, 0x22, 0x2b, 0x22,
0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2b, 0x2a, 0x4b, 0x22, 0x4c, 0x22, 0x4b, 0x2a, 0x4c, 0x22, 0x4b, 0x2a, 0x4c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x8c, 0x32, 0xac, 0x2a,
0x8d, 0x2a, 0x8d, 0x32, 0x8c, 0x2a, 0x8c, 0x32, 0xac, 0x32, 0x4b, 0x2a, 0xe8, 0x21, 0xe9, 0x29, 0x09, 0x22, 0xe9, 0x29, 0x09, 0x2a, 0xe9, 0x21, 0x4a, 0x32, 0xd0, 0x6b, 0xb6, 0xad, 0x59, 0xc6,
0xdb, 0xd6, 0x3c, 0xe7, 0x9e, 0xef, 0xbf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0xdf, 0xef, 0x9d, 0xef, 0x17, 0xdf, 0xf3, 0xde, 0x8f, 0xd6, 0x8c, 0xce, 0xad, 0xd6, 0xae, 0xde, 0xce, 0xde,
0xcd, 0xde, 0xce, 0xd6, 0xee, 0xde, 0xce, 0xde, 0xce, 0xde, 0xcf, 0xde, 0xef, 0xde, 0xf0, 0xde, 0xaf, 0xd6, 0x7c, 0xe7, 0x32, 0xd6, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xcf, 0xd5, 0xf0, 0xd5,
0x53, 0xde, 0xf9, 0xde, 0x7d, 0xe7, 0xbe, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xdf, 0xe7, 0x9e, 0xe7, 0x7e, 0xdf, 0x3d, 0xd7, 0xdc, 0xc6, 0x59, 0xb6, 0x56, 0x95, 0x90, 0x53, 0x6f, 0x4b, 0x90, 0x53,
0x90, 0x53, 0x90, 0x5b, 0xb0, 0x53, 0xd1, 0x53, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x73, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x6c,
0x94, 0x64, 0x95, 0x64, 0x95, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xf6, 0x6c, 0xf6, 0x6c, 0xd5, 0x6c, 0xf6, 0x74,
0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x17, 0x75, 0x17, 0x75, 0x37, 0x75, 0x17, 0x75, 0x37, 0x75, 0x37, 0x75, 0x36, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x75,
0x57, 0x7d, 0xf6, 0x74, 0x15, 0x75, 0x16, 0x7d, 0x16, 0x75, 0x16, 0x7d, 0x16, 0x7d, 0x37, 0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x36, 0x7d, 0x78, 0x7d, 0x98, 0x7d, 0x78, 0x7d,
0x78, 0x85, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xac, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b,
0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33,
0xad, 0x3b, 0x0a, 0x2b, 0x0a, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x32, 0xc9, 0x2a, 0xea, 0x2a,
0x89, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x69, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x69, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x69, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a,
0xe7, 0x21, 0x06, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22,
0xc6, 0x19, 0xe6, 0x21, 0xe7, 0x21, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11,
0x05, 0x09, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xea, 0x19, 0x4c, 0x22, 0x2b, 0x22,
0x2c, 0x1a, 0x2b, 0x22, 0x2c, 0x1a, 0x2c, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a,
0x2b, 0x1a, 0x2b, 0x22, 0x2c, 0x1a, 0x4c, 0x22, 0xe4, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09,
0xe6, 0x08, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xea, 0x19, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19,
0xca, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19,
0xc9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xea, 0x19, 0xca, 0x11, 0xea, 0x19, 0xea, 0x19,
0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x21, 0x0a, 0x1a, 0xea, 0x21, 0x0b, 0x1a, 0x0a, 0x22, 0x2a, 0x1a, 0x0b, 0x1a, 0x0b, 0x22, 0x2a, 0x22, 0x2b, 0x22, 0x0b, 0x22, 0x2b, 0x22,
0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x2b, 0x2a, 0x4b, 0x22, 0x6b, 0x22, 0x4c, 0x2a, 0x6b, 0x22, 0x4c, 0x2a, 0x8c, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a, 0x6c, 0x22, 0x6c, 0x2a,
0x8d, 0x2a, 0x8c, 0x2a, 0x8c, 0x32, 0x8c, 0x2a, 0xe9, 0x21, 0xc9, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0xe9, 0x21, 0x8e, 0x63, 0x76, 0xa5, 0x59, 0xc6, 0xfb, 0xd6, 0x5d, 0xe7,
0x9e, 0xef, 0xbf, 0xef, 0xdf, 0xef, 0xde, 0xef, 0xdf, 0xf7, 0x9c, 0xef, 0xf5, 0xde, 0xaf, 0xd6, 0x6b, 0xd6, 0xad, 0xde, 0xcd, 0xde, 0xcd, 0xde, 0xed, 0xe6, 0xcd, 0xe6, 0xed, 0xde, 0xed, 0xe6,
0xee, 0xde, 0xed, 0xe6, 0xee, 0xde, 0xee, 0xde, 0xee, 0xde, 0xee, 0xde, 0x0e, 0xdf, 0x0f, 0xdf, 0xcf, 0xd6, 0x7c, 0xdf, 0x33, 0xde, 0xee, 0xe5, 0xed, 0xe5, 0xcd, 0xe5, 0xcd, 0xe5, 0xce, 0xe5,
0xcd, 0xdd, 0xce, 0xdd, 0xaf, 0xdd, 0x11, 0xd6, 0x95, 0xde, 0x3c, 0xe7, 0xdf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xbe, 0xe7, 0x9e, 0xdf, 0x3d, 0xdf, 0xdc, 0xc6, 0x9a, 0xbe, 0x15, 0x8d, 0xb0, 0x53,
0x8f, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x5b, 0x32, 0x5c, 0x53, 0x5c, 0x54, 0x64, 0x53, 0x5c, 0x73, 0x64, 0x74, 0x64, 0x54, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c,
0x94, 0x64, 0x94, 0x64, 0xb4, 0x64, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xf5, 0x74, 0xf6, 0x6c, 0xf6, 0x6c,
0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x16, 0x75, 0x36, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x75, 0x37, 0x75, 0x57, 0x7d,
0x37, 0x75, 0xf5, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x37, 0x7d, 0x37, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x78, 0x85,
0x78, 0x7d, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x88, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22,
0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0xe6, 0x21, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11,
0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0xa4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0x2b, 0x1a, 0x4c, 0x22,
0x4b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x22, 0x2c, 0x22,
0x2b, 0x1a, 0x2b, 0x1a, 0x4c, 0x22, 0x66, 0x11, 0x84, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09,
0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xea, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x11,
0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x11,
0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xea, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19,
0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0xe9, 0x21, 0xeb, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x22, 0x0b, 0x22, 0x0a, 0x1a, 0x0a, 0x22, 0x2a, 0x22, 0x2b, 0x1a,
0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x4c, 0x2a, 0x6b, 0x22, 0x4c, 0x22, 0x6b, 0x22, 0x6c, 0x2a, 0x8c, 0x2a, 0x6c, 0x2a,
0x6c, 0x22, 0xad, 0x2a, 0x2b, 0x22, 0xc9, 0x21, 0xe8, 0x21, 0xe8, 0x29, 0xc9, 0x29, 0xe9, 0x21, 0xe9, 0x21, 0xac, 0x42, 0xd3, 0x94, 0x59, 0xc6, 0xfb, 0xd6, 0x5d, 0xe7, 0x9e, 0xef, 0xde, 0xf7,
0xde, 0xef, 0xdf, 0xf7, 0xbf, 0xef, 0x16, 0xe7, 0xb0, 0xd6, 0x8b, 0xd6, 0xac, 0xde, 0xcd, 0xe6, 0xec, 0xde, 0xcc, 0xe6, 0xed, 0xe6, 0xcd, 0xe6, 0xcd, 0xe6, 0xed, 0xde, 0xed, 0xde, 0xec, 0xe6,
0xed, 0xe6, 0xed, 0xde, 0xed, 0xe6, 0xed, 0xe6, 0xed, 0xde, 0xed, 0xe6, 0xee, 0xde, 0xef, 0xde, 0xce, 0xd6, 0x7c, 0xe7, 0x33, 0xd6, 0xcd, 0xe5, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xed, 0xcc, 0xe5,
0xcd, 0xe5, 0xcd, 0xe5, 0xcd, 0xdd, 0xce, 0xdd, 0xce, 0xdd, 0xae, 0xd5, 0xcf, 0xd5, 0xd8, 0xde, 0xdf, 0xe7, 0xdf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0x9e, 0xdf, 0x3d, 0xd7, 0xdb, 0xc6, 0x18, 0xae,
0x94, 0x7c, 0x6f, 0x4b, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xf1, 0x5b, 0x53, 0x64, 0x54, 0x5c, 0x54, 0x5c, 0x73, 0x5c, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64,
0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x95, 0x64, 0x95, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x74,
0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x37, 0x75, 0x17, 0x7d, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d,
0x37, 0x7d, 0xf5, 0x74, 0x16, 0x7d, 0x16, 0x75, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x77, 0x75, 0x78, 0x7d, 0x37, 0x7d, 0x37, 0x7d, 0x36, 0x7d, 0x78, 0x7d, 0x78, 0x85, 0x78, 0x7d,
0x78, 0x7d, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a,
0x2b, 0x33, 0x4b, 0x33, 0xed, 0x43, 0x6c, 0x33, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xaa, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33,
0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xc9, 0x2a,
0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x07, 0x22,
0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x22,
0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x2a, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x07, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22,
0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09,
0x05, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x25, 0x09, 0x06, 0x09, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x2b, 0x22,
0x4c, 0x22, 0x4c, 0x1a, 0x2b, 0x22, 0x4b, 0x1a, 0x2c, 0x22, 0x2c, 0x1a, 0x2b, 0x22, 0x4b, 0x1a, 0x4c, 0x22, 0x2c, 0x1a, 0x4c, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2c, 0x1a, 0x2b, 0x22, 0x2c, 0x12,
0x4c, 0x22, 0x6d, 0x22, 0x87, 0x11, 0x63, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08,
0x06, 0x11, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0xa4, 0x08, 0xea, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x19,
0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11,
0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xca, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xea, 0x19, 0xc9, 0x19,
0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0xea, 0x21, 0xea, 0x11, 0xea, 0x19, 0x0b, 0x22, 0xea, 0x19, 0x0a, 0x22, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x0b, 0x1a,
0x2a, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x2a, 0x2b, 0x22, 0x4c, 0x2a, 0x2b, 0x22, 0x4b, 0x22, 0x6c, 0x22, 0x4b, 0x2a, 0x4b, 0x2a, 0x6c, 0x2a, 0x6b, 0x2a, 0x6c, 0x2a, 0x6c, 0x2a,
0x6c, 0x2a, 0x09, 0x22, 0xc8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xe9, 0x21, 0xe8, 0x29, 0x10, 0x7c, 0x17, 0xbe, 0xba, 0xd6, 0x3c, 0xdf, 0x9e, 0xef, 0xde, 0xf7, 0xde, 0xf7, 0xff, 0xf7,
0x9c, 0xef, 0x14, 0xe7, 0x6b, 0xd6, 0xac, 0xd6, 0xcc, 0xde, 0xcc, 0xe6, 0xec, 0xe6, 0xec, 0xe6, 0xec, 0xe6, 0xcc, 0xde, 0xec, 0xde, 0xec, 0xe6, 0xec, 0xe6, 0xcc, 0xde, 0xec, 0xe6, 0xec, 0xde,
0xcc, 0xde, 0xec, 0xe6, 0xed, 0xde, 0xed, 0xde, 0xed, 0xde, 0xed, 0xe6, 0xed, 0xe6, 0xee, 0xde, 0xae, 0xde, 0x7c, 0xdf, 0x12, 0xde, 0xad, 0xe5, 0xcc, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5,
0xcc, 0xe5, 0xad, 0xe5, 0xcc, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xce, 0xe5, 0xce, 0xdd, 0xce, 0xdd, 0x8d, 0xd5, 0x95, 0xde, 0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0x7e, 0xdf, 0x3d, 0xd7,
0xbb, 0xc6, 0xd8, 0xa5, 0xb0, 0x53, 0xb0, 0x5b, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xd1, 0x53, 0x53, 0x64, 0x54, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64,
0x74, 0x64, 0x74, 0x64, 0x95, 0x64, 0x94, 0x64, 0xb4, 0x64, 0xb5, 0x6c, 0x94, 0x6c, 0xb4, 0x64, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c,
0xd5, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x37, 0x75, 0x17, 0x75, 0x16, 0x75, 0x37, 0x75, 0x36, 0x7d, 0x36, 0x75,
0x37, 0x7d, 0xf5, 0x74, 0xf6, 0x74, 0x16, 0x7d, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x36, 0x7d, 0x36, 0x75, 0x37, 0x7d, 0x36, 0x7d, 0x36, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x85,
0x98, 0x85, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x4b, 0x33,
0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x2b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0a, 0x2b, 0xea, 0x32, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33,
0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x69, 0x2a,
0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x2b, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33,
0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x88, 0x2a, 0x0a, 0x2b, 0x89, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33,
0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xc6, 0x21, 0xe7, 0x21,
0xe6, 0x21, 0x27, 0x22, 0xe7, 0x21, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x26, 0x11, 0x25, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11,
0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0x83, 0x08,
0xa8, 0x19, 0x4c, 0x22, 0x4c, 0x1a, 0x4c, 0x22, 0x4c, 0x1a, 0x4c, 0x22, 0x4c, 0x1a, 0x2c, 0x22, 0x2b, 0x1a, 0x4c, 0x22, 0x2b, 0x1a, 0x2c, 0x22, 0x4c, 0x1a, 0x2b, 0x1a, 0x4c, 0x22, 0x4c, 0x1a,
0x6c, 0x22, 0x66, 0x19, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x25, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09,
0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xea, 0x19, 0xaa, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x11,
0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19,
0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xe9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xe9, 0x19,
0xe9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x11, 0xea, 0x21, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0b, 0x22, 0x0b, 0x22, 0x0a, 0x22, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x22,
0x0b, 0x1a, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x2b, 0x2a, 0x4b, 0x22, 0x4c, 0x2a, 0x4c, 0x22, 0x4c, 0x22, 0x4c, 0x2a, 0x6c, 0x22, 0x4b, 0x2a,
0xc9, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xa8, 0x21, 0x8b, 0x42, 0x95, 0xad, 0x59, 0xc6, 0xfb, 0xde, 0x9e, 0xe7, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0x9d, 0xef, 0xd2, 0xde,
0x6c, 0xd6, 0xac, 0xde, 0xcc, 0xe6, 0xcb, 0xe6, 0xec, 0xe6, 0xcc, 0xe6, 0xcb, 0xe6, 0xcb, 0xde, 0xcc, 0xe6, 0xeb, 0xe6, 0xcc, 0xe6, 0xcc, 0xde, 0xeb, 0xde, 0xcc, 0xde, 0xec, 0xe6, 0xcb, 0xe6,
0xcc, 0xde, 0xcc, 0xde, 0xcc, 0xe6, 0xcc, 0xde, 0xcc, 0xde, 0xed, 0xde, 0xed, 0xde, 0xee, 0xe6, 0xae, 0xd6, 0x7c, 0xdf, 0x12, 0xd6, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xab, 0xe5, 0x8b, 0xe5,
0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcc, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xee, 0xdd, 0xce, 0xe5, 0xce, 0xdd, 0xcf, 0xd5, 0x75, 0xd6, 0x7d, 0xe7, 0xdf, 0xe7, 0xbf, 0xe7, 0xbf, 0xdf,
0x7e, 0xdf, 0xfc, 0xce, 0x7a, 0xbe, 0x93, 0x7c, 0x90, 0x53, 0xb0, 0x53, 0xd0, 0x53, 0xb0, 0x5b, 0xd1, 0x5b, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x54, 0x64, 0x74, 0x64, 0x73, 0x5c, 0x74, 0x64,
0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0x94, 0x6c, 0xb4, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c,
0xd5, 0x6c, 0xd5, 0x74, 0xf6, 0x74, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x16, 0x75, 0x16, 0x75, 0x37, 0x75, 0x37, 0x75,
0x37, 0x75, 0xf5, 0x74, 0xf5, 0x74, 0x16, 0x75, 0x16, 0x7d, 0x16, 0x7d, 0x37, 0x75, 0x17, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x16, 0x75, 0x16, 0x7d, 0x36, 0x7d, 0x78, 0x7d, 0x78, 0x7d, 0x78, 0x7d,
0x78, 0x7d, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0x6c, 0x33, 0x6b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b,
0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a,
0x68, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22,
0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21,
0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x47, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe7, 0x21,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x25, 0x09,
0x06, 0x11, 0x05, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0xc4, 0x08, 0x83, 0x00,
0x83, 0x08, 0x26, 0x11, 0x0a, 0x1a, 0x6c, 0x22, 0x6c, 0x22, 0x4c, 0x1a, 0x4c, 0x22, 0x4b, 0x1a, 0x4c, 0x22, 0x2c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x2c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x2a, 0x22,
0xe5, 0x08, 0x83, 0x08, 0xa3, 0x00, 0xc4, 0x08, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11,
0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xea, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xa9, 0x11,
0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11,
0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xe9, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x19,
0xca, 0x11, 0xca, 0x21, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x21, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x22, 0x0a, 0x22, 0x0b, 0x1a, 0x2b, 0x22, 0x0b, 0x22,
0x0a, 0x22, 0x2a, 0x1a, 0x0b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x4b, 0x22, 0x4c, 0x2a, 0x4b, 0x2a, 0x6b, 0x22, 0x4b, 0x22, 0xa8, 0x19,
0xa8, 0x21, 0xc8, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x19, 0xaf, 0x63, 0xd7, 0xb5, 0xda, 0xd6, 0x5d, 0xe7, 0xbe, 0xef, 0xdf, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0xd3, 0xde, 0x8c, 0xd6, 0xab, 0xde,
0xcb, 0xe6, 0xcc, 0xe6, 0xcb, 0xe6, 0xeb, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xde, 0xcb, 0xe6, 0xeb, 0xde, 0xcb, 0xe6, 0xcb, 0xe6, 0xcc, 0xe6, 0xec, 0xde, 0xcb, 0xe6, 0xcb, 0xde,
0xcc, 0xde, 0xcc, 0xe6, 0xcc, 0xde, 0xcc, 0xe6, 0xec, 0xde, 0xed, 0xde, 0xcd, 0xde, 0xee, 0xde, 0xae, 0xd6, 0x5c, 0xdf, 0x11, 0xde, 0xac, 0xe5, 0xac, 0xe5, 0x8b, 0xed, 0x8b, 0xe5, 0x8b, 0xe5,
0x8b, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xcd, 0xe5, 0xee, 0xe5, 0xee, 0xe5, 0xee, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0x95, 0xde, 0xdf, 0xe7, 0xdf, 0xe7,
0xbf, 0xe7, 0x9e, 0xdf, 0x5d, 0xd7, 0xbb, 0xbe, 0x96, 0x9d, 0x8f, 0x53, 0x90, 0x53, 0xb0, 0x53, 0xd0, 0x53, 0xb0, 0x5b, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x64, 0x95, 0x6c, 0xb5, 0x6c, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c,
0xd6, 0x6c, 0xd5, 0x74, 0xd5, 0x6c, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x17, 0x75, 0x37, 0x75, 0x17, 0x7d, 0x37, 0x7d,
0x16, 0x75, 0xf5, 0x74, 0xf6, 0x7c, 0xf6, 0x74, 0x57, 0x75, 0x57, 0x7d, 0x37, 0x7d, 0x37, 0x7d, 0x36, 0x75, 0x16, 0x7d, 0x17, 0x75, 0x36, 0x75, 0x36, 0x7d, 0x57, 0x7d, 0x77, 0x7d, 0x78, 0x7d,
0x77, 0x7d, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x2b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44,
0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4b, 0x33,
0xca, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22,
0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x2b,
0x89, 0x2a, 0x28, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x68, 0x22, 0xea, 0x2a, 0xa9, 0x2a, 0x28, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x22, 0xea, 0x32,
0x27, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x47, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x28, 0x22, 0x07, 0x22, 0x27, 0x22,
0x89, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09,
0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0xe5, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x06, 0x11, 0xa8, 0x19, 0x4b, 0x1a, 0x6c, 0x22, 0x8d, 0x22, 0x6d, 0x1a, 0x6c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x8d, 0x22, 0x0a, 0x1a, 0x26, 0x09, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09,
0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0xa4, 0x08, 0xe9, 0x21, 0xaa, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xca, 0x19,
0xa9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xaa, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xaa, 0x19, 0xa9, 0x19, 0xca, 0x11,
0xc9, 0x11, 0xa9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xaa, 0x11, 0xc9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xca, 0x19, 0xa9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19,
0xca, 0x19, 0xe9, 0x11, 0xca, 0x11, 0xea, 0x19, 0xe9, 0x21, 0xea, 0x11, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a,
0x0b, 0x22, 0x0b, 0x22, 0x2a, 0x22, 0x0a, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x2a, 0x2b, 0x22, 0x2b, 0x1a, 0x4c, 0x2a, 0x4b, 0x22, 0x4b, 0x22, 0x4b, 0x22, 0x2b, 0x2a, 0x87, 0x19, 0x88, 0x21,
0xa8, 0x19, 0xa8, 0x21, 0x88, 0x19, 0xe9, 0x29, 0x72, 0x8c, 0x59, 0xc6, 0x1b, 0xe7, 0x7e, 0xef, 0xde, 0xf7, 0xdf, 0xf7, 0xff, 0xf7, 0x37, 0xe7, 0x6c, 0xd6, 0x8b, 0xde, 0xcb, 0xde, 0xcb, 0xe6,
0xeb, 0xe6, 0xcb, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xeb, 0xde, 0xca, 0xde, 0xeb, 0xe6, 0xca, 0xe6, 0xeb, 0xe6, 0xcb, 0xe6, 0xab, 0xde, 0xcb, 0xe6, 0xcb, 0xde, 0xcb, 0xe6, 0xcb, 0xe6, 0xcc, 0xde,
0xcc, 0xde, 0xec, 0xe6, 0xec, 0xde, 0xec, 0xde, 0xcc, 0xe6, 0xed, 0xde, 0xed, 0xe6, 0xed, 0xe6, 0xae, 0xde, 0x5b, 0xe7, 0x11, 0xd6, 0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5,
0x8b, 0xe5, 0x8b, 0xe5, 0x8c, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xcd, 0xdd, 0xcd, 0xe5, 0xce, 0xe5, 0xee, 0xdd, 0xce, 0xdd, 0xaf, 0xd5, 0x3a, 0xdf,
0xbf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0x5e, 0xdf, 0xdc, 0xc6, 0x19, 0xb6, 0x11, 0x64, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x5b, 0x12, 0x5c, 0x54, 0x5c, 0x53, 0x5c, 0x54, 0x64, 0x74, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x75, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0xb4, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c,
0xd5, 0x6c, 0xd5, 0x6c, 0xf6, 0x6c, 0xd6, 0x74, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75,
0x17, 0x75, 0xf5, 0x74, 0xf5, 0x74, 0xf6, 0x74, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x75, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x16, 0x7d, 0x37, 0x7d, 0x16, 0x7d, 0x58, 0x7d, 0x77, 0x7d, 0x57, 0x7d,
0x78, 0x7d, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0x0e, 0x3c, 0x6c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0b, 0x2b, 0x2b, 0x33, 0xce, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33,
0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x2b, 0xea, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x32,
0xa9, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x69, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a,
0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x22,
0x0a, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x89, 0x22,
0xe7, 0x21, 0x06, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22,
0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x25, 0x11, 0x25, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09,
0x25, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x11, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x09,
0x26, 0x09, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xc3, 0x08, 0xe5, 0x10, 0x26, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x25, 0x11, 0x83, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09,
0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0xe6, 0x08, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0xea, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xaa, 0x19, 0xc9, 0x19,
0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19,
0xca, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xaa, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xa9, 0x19,
0xc9, 0x11, 0xc9, 0x19, 0xea, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xea, 0x21, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xe9, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x22, 0x0a, 0x22, 0x0b, 0x1a,
0x0a, 0x22, 0x0a, 0x22, 0x0b, 0x1a, 0x2a, 0x22, 0x0b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x22, 0x4b, 0x22, 0x2b, 0x2a, 0x2b, 0x22, 0x87, 0x19, 0x87, 0x21, 0x88, 0x19,
0x88, 0x21, 0x87, 0x19, 0x4a, 0x3a, 0x96, 0xb5, 0x78, 0xce, 0x3c, 0xe7, 0x9e, 0xef, 0xdf, 0xf7, 0xff, 0xf7, 0x9c, 0xef, 0xb0, 0xde, 0x6a, 0xd6, 0xcb, 0xe6, 0xcb, 0xe6, 0xeb, 0xe6, 0xca, 0xe6,
0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xca, 0xde, 0xcb, 0xe6, 0xca, 0xe6, 0xeb, 0xde, 0xcb, 0xde, 0xcb, 0xe6, 0xcb, 0xe6, 0xeb, 0xde,
0xcc, 0xe6, 0xec, 0xde, 0xcc, 0xe6, 0xcc, 0xe6, 0xec, 0xde, 0xed, 0xde, 0xed, 0xde, 0xed, 0xe6, 0xae, 0xd6, 0x5c, 0xdf, 0x11, 0xde, 0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5,
0x8b, 0xe5, 0x8b, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xdd, 0xcd, 0xe5, 0xcd, 0xe5, 0xce, 0xdd, 0xee, 0xdd, 0xce, 0xdd, 0xef, 0xdd,
0x32, 0xd6, 0x9f, 0xe7, 0xdf, 0xe7, 0xbf, 0xe7, 0x9e, 0xdf, 0x3c, 0xcf, 0x5a, 0xbe, 0x73, 0x74, 0x90, 0x53, 0xd0, 0x53, 0xd0, 0x53, 0xb0, 0x53, 0x12, 0x5c, 0x54, 0x64, 0x54, 0x5c, 0x53, 0x5c,
0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x74, 0x6c, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0x95, 0x6c, 0xb4, 0x6c, 0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x74, 0xf6, 0x74, 0xd5, 0x6c, 0xd5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x16, 0x7d,
0x16, 0x7d, 0xf5, 0x74, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x36, 0x75, 0x16, 0x7d, 0x16, 0x7d, 0x16, 0x75, 0x57, 0x7d, 0x58, 0x7d, 0x58, 0x7d,
0x77, 0x7d, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8d, 0x3b,
0x4b, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33,
0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xea, 0x2a,
0xa9, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xeb, 0x32, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x47, 0x22, 0x28, 0x22, 0x88, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22,
0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe6, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09,
0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11,
0x05, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0x84, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11,
0x04, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xea, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xc9, 0x11,
0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xaa, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xca, 0x11,
0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xaa, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x11,
0xc9, 0x19, 0xaa, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xca, 0x19, 0x0a, 0x22, 0xcb, 0x19, 0xea, 0x21, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x22,
0xea, 0x19, 0x0a, 0x1a, 0x0a, 0x22, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x2b, 0x22, 0x2b, 0x22, 0x2a, 0x22, 0x4b, 0x22, 0x2b, 0x22, 0x0a, 0x22, 0x67, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21,
0x87, 0x19, 0xab, 0x42, 0x96, 0xad, 0xba, 0xd6, 0x7d, 0xe7, 0xbe, 0xf7, 0xdf, 0xf7, 0xdf, 0xf7, 0x58, 0xef, 0x6c, 0xd6, 0x8b, 0xde, 0xca, 0xe6, 0xeb, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6,
0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xde, 0xaa, 0xe6, 0xca, 0xde, 0xca, 0xe6, 0xca, 0xde, 0xcb, 0xde, 0xca, 0xe6, 0xcb, 0xde, 0xca, 0xe6, 0xcb, 0xe6, 0xcc, 0xde, 0xeb, 0xde, 0xec, 0xe6,
0xcc, 0xe6, 0xec, 0xe6, 0xec, 0xde, 0xcc, 0xe6, 0xec, 0xde, 0xec, 0xe6, 0x0d, 0xdf, 0xee, 0xde, 0xae, 0xd6, 0x5c, 0xdf, 0x11, 0xd6, 0xad, 0xe5, 0xac, 0xe5, 0x8b, 0xe5, 0xab, 0xed, 0xab, 0xe5,
0x8b, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0x8c, 0xe5, 0x8b, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xad, 0xe5, 0xcd, 0xe5, 0xcd, 0xdd, 0xee, 0xe5, 0xce, 0xe5,
0xef, 0xdd, 0xae, 0xd5, 0x3b, 0xdf, 0xdf, 0xe7, 0xbf, 0xe7, 0x9e, 0xdf, 0x5d, 0xd7, 0xbb, 0xc6, 0xf4, 0x84, 0x90, 0x53, 0xb0, 0x5b, 0xd0, 0x53, 0xd0, 0x53, 0x12, 0x5c, 0x53, 0x64, 0x73, 0x64,
0x54, 0x5c, 0x54, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0x94, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xb6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xf6, 0x74, 0xd6, 0x74, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75,
0x16, 0x75, 0xd5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x37, 0x7d, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x57, 0x7d, 0x57, 0x7d, 0x77, 0x7d,
0x58, 0x7d, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b,
0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4c, 0x33, 0xea, 0x2a,
0x2b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33,
0xea, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0x0b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a,
0x6c, 0x3b, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22,
0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x68, 0x2a,
0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x22, 0x0b, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x47, 0x22, 0x88, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x47, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22,
0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11,
0x26, 0x09, 0x25, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09,
0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0xe6, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x00, 0xc4, 0x08, 0xe4, 0x08, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09,
0x06, 0x09, 0x06, 0x11, 0x25, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09,
0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xea, 0x21, 0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11,
0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xaa, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x11,
0xca, 0x11, 0xc9, 0x19, 0xaa, 0x19, 0xaa, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x11, 0xa9, 0x19, 0xa9, 0x19,
0xca, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xaa, 0x19, 0xe9, 0x19, 0xc9, 0x19, 0xc9, 0x21, 0xea, 0x11, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x21, 0xea, 0x21, 0xea, 0x19, 0xea, 0x19, 0xea, 0x21, 0x09, 0x1a,
0x0b, 0x22, 0x0a, 0x22, 0x0a, 0x22, 0x0a, 0x22, 0x0a, 0x22, 0x0a, 0x1a, 0x0b, 0x22, 0x2a, 0x22, 0x2b, 0x22, 0x0a, 0x22, 0x0b, 0x22, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19, 0x67, 0x19,
0x0c, 0x53, 0xf7, 0xbd, 0xfb, 0xde, 0x7d, 0xef, 0xde, 0xf7, 0xfe, 0xf7, 0xff, 0xf7, 0xb1, 0xde, 0x6a, 0xd6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xc9, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xc9, 0xe6,
0xc9, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xc9, 0xe6, 0xca, 0xe6, 0xca, 0xde, 0xca, 0xe6, 0xca, 0xde, 0xea, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xeb, 0xe6, 0xcc, 0xe6, 0xcb, 0xe6, 0xec, 0xe6,
0xcc, 0xde, 0xec, 0xe6, 0xed, 0xe6, 0xed, 0xde, 0xed, 0xe6, 0xed, 0xe6, 0xcd, 0xe6, 0xee, 0xe6, 0xce, 0xd6, 0x5b, 0xdf, 0x12, 0xd6, 0xad, 0xe5, 0xcc, 0xed, 0xab, 0xe5, 0x8b, 0xe5, 0x8c, 0xe5,
0xab, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0xab, 0xe5, 0xab, 0xe5, 0x8c, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0x8c, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xad, 0xe5, 0xad, 0xe5, 0xcd, 0xdd, 0xce, 0xdd,
0xce, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0x74, 0xd6, 0xdf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0x5e, 0xd7, 0xbb, 0xc6, 0x76, 0x95, 0x70, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x5b, 0x12, 0x5c, 0x53, 0x5c,
0x53, 0x5c, 0x73, 0x64, 0x54, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x95, 0x64, 0xb4, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x64,
0xb5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd6, 0x6c, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x17, 0x75, 0x16, 0x75,
0x17, 0x75, 0xd5, 0x74, 0xd5, 0x74, 0xf5, 0x74, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x7d, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x16, 0x75, 0x16, 0x75, 0x57, 0x7d, 0x57, 0x7d, 0x58, 0x7d,
0x58, 0x7d, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33,
0x6c, 0x33, 0xee, 0x43, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33,
0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x69, 0x22,
0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x2b,
0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x89, 0x22, 0x0a, 0x33, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33,
0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22,
0xe6, 0x21, 0x27, 0x22, 0x07, 0x22, 0x26, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x25, 0x09, 0x26, 0x11,
0x06, 0x09, 0x25, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09,
0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x05, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09,
0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x11, 0x26, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x05, 0x09,
0x05, 0x11, 0x06, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0xe4, 0x08, 0xa4, 0x08, 0xe9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xca, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xca, 0x11,
0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x11,
0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xe9, 0x19, 0xa9, 0x11, 0xca, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19,
0xe9, 0x19, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x22, 0xea, 0x21, 0x0a, 0x22, 0x0b, 0x22, 0x2b, 0x1a, 0x0a, 0x1a, 0x0b, 0x22, 0x67, 0x19, 0x67, 0x11, 0x87, 0x19, 0x87, 0x19, 0x67, 0x19, 0x6d, 0x63,
0xd7, 0xb5, 0xdb, 0xd6, 0x9d, 0xef, 0xde, 0xf7, 0xdf, 0xf7, 0x9d, 0xf7, 0x8c, 0xde, 0x8a, 0xde, 0xaa, 0xe6, 0xca, 0xe6, 0xca, 0xee, 0xca, 0xe6, 0xc9, 0xee, 0xc9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6,
0xc9, 0xe6, 0xaa, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcc, 0xe6, 0xec, 0xe6, 0xec, 0xde, 0xec, 0xde,
0xcc, 0xde, 0xcd, 0xde, 0xcc, 0xde, 0xcd, 0xde, 0xcd, 0xde, 0xce, 0xde, 0xce, 0xde, 0xee, 0xde, 0xae, 0xd6, 0x3c, 0xdf, 0xf1, 0xd5, 0xcd, 0xe5, 0xac, 0xe5, 0xcb, 0xe5, 0xac, 0xed, 0xab, 0xe5,
0xac, 0xe5, 0x8b, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xdd, 0xac, 0xdd, 0xcd, 0xe5,
0xce, 0xdd, 0xee, 0xe5, 0xee, 0xdd, 0xef, 0xdd, 0xf0, 0xd5, 0xbf, 0xe7, 0xdf, 0xe7, 0xbf, 0xdf, 0x7e, 0xdf, 0xdc, 0xce, 0x96, 0x9d, 0xb0, 0x53, 0xd1, 0x5b, 0xd0, 0x53, 0xd1, 0x5b, 0x32, 0x5c,
0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0xb4, 0x6c, 0xb4, 0x64, 0xb5, 0x6c,
0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xb5, 0x74, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74,
0x16, 0x75, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0x17, 0x75, 0x36, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d,
0x57, 0x7d, 0x6c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b,
0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b,
0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xeb, 0x32, 0x4b, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0xca, 0x2a, 0xea, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a,
0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x69, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x07, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x47, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x28, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x48, 0x22, 0xe7, 0x19,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x68, 0x22,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x25, 0x11,
0x06, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11,
0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x25, 0x11,
0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11,
0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xca, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19,
0xc9, 0x11, 0xa9, 0x19, 0xca, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x19,
0xc9, 0x19, 0xa9, 0x11, 0xca, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xc9, 0x11, 0xc9, 0x21, 0xc9, 0x11, 0xe9, 0x21, 0xea, 0x19, 0xea, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xe9, 0x19, 0xea, 0x21,
0xeb, 0x19, 0x0a, 0x1a, 0x0a, 0x22, 0xea, 0x19, 0x0a, 0x22, 0x0a, 0x1a, 0x0b, 0x22, 0xea, 0x19, 0xea, 0x19, 0x47, 0x19, 0x87, 0x11, 0x87, 0x19, 0x87, 0x19, 0x26, 0x11, 0x6e, 0x63, 0x18, 0xc6,
0x1b, 0xdf, 0x9e, 0xf7, 0xde, 0xff, 0xdf, 0xf7, 0x9c, 0xf7, 0x6c, 0xd6, 0x8a, 0xde, 0xca, 0xee, 0xca, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6, 0xa9, 0xe6, 0xa9, 0xe6, 0xca, 0xe6,
0xc9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xc9, 0xde, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xca, 0xe6, 0xec, 0xe6, 0xcc, 0xe6, 0xcc, 0xe6, 0xcc, 0xde, 0xcc, 0xde, 0xad, 0xde, 0xac, 0xde,
0xad, 0xde, 0x8c, 0xd6, 0x6c, 0xd6, 0x6c, 0xce, 0x8f, 0xd6, 0xb0, 0xd6, 0xb1, 0xd6, 0x90, 0xce, 0x6f, 0xce, 0x3b, 0xdf, 0xd1, 0xd5, 0x6b, 0xdd, 0x8b, 0xdd, 0x8b, 0xdd, 0x8c, 0xdd, 0xac, 0xe5,
0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xab, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xac, 0xe5,
0xcd, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xee, 0xe5, 0xef, 0xdd, 0xf0, 0xd5, 0x5c, 0xdf, 0xbf, 0xe7, 0xbf, 0xe7, 0x7e, 0xd7, 0xfc, 0xc6, 0xb8, 0xa5, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53,
0x33, 0x5c, 0x53, 0x5c, 0x54, 0x64, 0x54, 0x64, 0x74, 0x64, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x95, 0x6c, 0x95, 0x6c, 0x95, 0x64, 0x94, 0x6c, 0xb5, 0x6c,
0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75,
0xf6, 0x6c, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf6, 0x7c, 0xf5, 0x74, 0x16, 0x7d, 0x16, 0x75, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d,
0x57, 0x7d, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x33,
0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0x0e, 0x3c,
0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32,
0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xeb, 0x32, 0xa9, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x6b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4b, 0x33,
0xca, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22,
0x68, 0x22, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x33,
0x27, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x47, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x47, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x2a, 0xe7, 0x21, 0x27, 0x22,
0xa9, 0x2a, 0x27, 0x22, 0x27, 0x22, 0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09,
0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11,
0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11,
0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x09, 0x25, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x05, 0x09, 0x25, 0x11,
0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0xe4, 0x08, 0xc4, 0x08, 0xea, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x11,
0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xaa, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xaa, 0x19, 0xc9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11,
0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0xaa, 0x19, 0xe9, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19,
0xea, 0x19, 0xea, 0x19, 0xe9, 0x19, 0x0b, 0x22, 0x0a, 0x22, 0xea, 0x19, 0x2a, 0x22, 0x0a, 0x22, 0x67, 0x19, 0x66, 0x11, 0x47, 0x19, 0x66, 0x19, 0x26, 0x11, 0x2d, 0x5b, 0x38, 0xc6, 0x1b, 0xdf,
0x9d, 0xef, 0xdf, 0xf7, 0xdf, 0xff, 0x38, 0xef, 0x6a, 0xd6, 0x8a, 0xe6, 0xc9, 0xe6, 0xca, 0xe6, 0xc9, 0xee, 0xc9, 0xee, 0xc9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6,
0xa9, 0xe6, 0xca, 0xe6, 0xca, 0xde, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcc, 0xe6, 0xcb, 0xde, 0xcc, 0xde, 0xac, 0xde, 0x8d, 0xd6, 0x6b, 0xd6, 0x90, 0xd6, 0xf6, 0xd6,
0x19, 0xdf, 0x1a, 0xdf, 0x5e, 0xdf, 0x7f, 0xe7, 0x7f, 0xdf, 0x5e, 0xdf, 0x3d, 0xe7, 0x5d, 0xe7, 0x7e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x3d, 0xdf, 0xfa, 0xde, 0x98, 0xde, 0x33, 0xd6, 0x8d, 0xd5,
0x6b, 0xdd, 0x6c, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0x8c, 0xe5, 0xac, 0xe5,
0xac, 0xe5, 0xcd, 0xdd, 0xcd, 0xdd, 0xce, 0xe5, 0xee, 0xe5, 0xee, 0xdd, 0xae, 0xd5, 0x5c, 0xdf, 0xdf, 0xe7, 0xbf, 0xe7, 0x7e, 0xdf, 0xfc, 0xc6, 0x97, 0x9d, 0x90, 0x53, 0xb0, 0x53, 0xd0, 0x5b,
0xb0, 0x53, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x94, 0x64, 0xb4, 0x6c,
0xb5, 0x64, 0xb5, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd6, 0x74, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74,
0xf6, 0x74, 0xb4, 0x6c, 0xd4, 0x6c, 0xd5, 0x74, 0xd5, 0x6c, 0xd5, 0x74, 0xf6, 0x74, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf5, 0x74, 0x16, 0x75, 0x37, 0x7d, 0x57, 0x7d, 0x57, 0x7d,
0x57, 0x7d, 0xcd, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x8d, 0x3b, 0x0e, 0x3c, 0x6c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x6b, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x68, 0x2a, 0xaa, 0x2a, 0x4b, 0x33, 0xca, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0b, 0x33, 0x89, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x88, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a,
0x0b, 0x33, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x69, 0x2a, 0x0a, 0x33, 0x88, 0x22, 0x88, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x88, 0x2a, 0x0a, 0x2b, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x0a, 0x2b, 0x89, 0x2a,
0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x47, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22,
0xc6, 0x21, 0xe7, 0x21, 0xe7, 0x21, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x09,
0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09,
0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11,
0x06, 0x09, 0x25, 0x11, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11,
0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe4, 0x08, 0xa4, 0x08, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x19,
0xc9, 0x19, 0xa9, 0x11, 0xca, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xaa, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xca, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xe9, 0x19, 0xe9, 0x19, 0xca, 0x21,
0xea, 0x19, 0x0a, 0x22, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x22, 0x67, 0x19, 0x47, 0x11, 0x47, 0x19, 0x46, 0x11, 0x47, 0x19, 0x2d, 0x5b, 0xd7, 0xbd, 0xfb, 0xde, 0x9e, 0xf7,
0xbf, 0xf7, 0xff, 0xff, 0x37, 0xe7, 0x48, 0xde, 0xa9, 0xe6, 0xc9, 0xee, 0xa9, 0xe6, 0xc9, 0xe6, 0xc9, 0xee, 0xc8, 0xe6, 0xa8, 0xee, 0xc9, 0xe6, 0xa8, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xa9, 0xe6,
0xc9, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0xcb, 0xde, 0xcc, 0xe6, 0xab, 0xde, 0x8b, 0xd6, 0x8d, 0xce, 0xf6, 0xde, 0x1a, 0xdf, 0x5e, 0xdf, 0x7f, 0xe7, 0x5e, 0xdf,
0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xe7, 0x5e, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xe7, 0x5e, 0xdf, 0x5e, 0xd7, 0x5d, 0xdf, 0x7e, 0xdf, 0x5f, 0xdf, 0x7f, 0xdf,
0x5e, 0xdf, 0xd9, 0xde, 0x11, 0xd6, 0xad, 0xdd, 0x8d, 0xdd, 0xad, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0x8c, 0xe5,
0xad, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xcd, 0xdd, 0xce, 0xdd, 0xef, 0xdd, 0xef, 0xdd, 0xcf, 0xd5, 0xfa, 0xde, 0xdf, 0xe7, 0xbf, 0xe7, 0x9e, 0xdf, 0xfc, 0xc6, 0x77, 0x9d, 0xb0, 0x53, 0xb0, 0x5b,
0xd0, 0x5b, 0xd1, 0x53, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x54, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x64,
0x95, 0x64, 0xb5, 0x6c, 0xb4, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x74, 0xf5, 0x74, 0xd6, 0x6c, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74,
0xf6, 0x74, 0x94, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xd5, 0x74, 0xd5, 0x6c, 0xd5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0xf5, 0x74, 0x37, 0x7d, 0x37, 0x7d, 0x57, 0x7d,
0x57, 0x7d, 0x8d, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b,
0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x30, 0x64, 0x79, 0xc6, 0x9e, 0xef, 0xff, 0xff, 0x9e, 0xef, 0xf7, 0xad, 0xad, 0x4b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x7e, 0xef, 0xf3, 0x8c, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x27, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22,
0x69, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x47, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22,
0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0xc6, 0x19, 0x07, 0x22, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11,
0x05, 0x09, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09,
0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11,
0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x25, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09,
0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x25, 0x11, 0x05, 0x09, 0x06, 0x09, 0xe6, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xca, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11,
0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x11,
0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x19,
0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xca, 0x11, 0xc9, 0x19, 0xca, 0x19, 0xca, 0x11, 0xe9, 0x19, 0xca, 0x19,
0xc9, 0x19, 0xe9, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x21, 0xea, 0x21, 0x88, 0x19, 0x46, 0x11, 0x66, 0x11, 0x47, 0x11, 0x26, 0x11, 0xcb, 0x4a, 0xd6, 0xbd, 0xfb, 0xde, 0x9e, 0xf7, 0xdf, 0xff,
0xfe, 0xf7, 0x15, 0xe7, 0x6a, 0xde, 0xa9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xc8, 0xee, 0xc9, 0xe6, 0xa8, 0xe6, 0xc8, 0xe6, 0xa8, 0xe6, 0xa9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6,
0xc9, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xca, 0xe6, 0xcb, 0xe6, 0xcb, 0xe6, 0x8a, 0xde, 0x6b, 0xd6, 0xd5, 0xde, 0x3b, 0xdf, 0x7f, 0xe7, 0x3e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x3d, 0xe7,
0x5d, 0xdf, 0x5e, 0xdf, 0x3e, 0xdf, 0x5d, 0xdf, 0x3d, 0xe7, 0x5e, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xe7, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf,
0x5d, 0xd7, 0x5d, 0xdf, 0x5f, 0xdf, 0x3d, 0xdf, 0xd9, 0xd6, 0x33, 0xd6, 0xad, 0xdd, 0xad, 0xdd, 0xad, 0xe5, 0xcd, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5,
0xac, 0xdd, 0xad, 0xe5, 0xac, 0xdd, 0xcd, 0xe5, 0xcd, 0xe5, 0xcd, 0xe5, 0xee, 0xe5, 0xef, 0xdd, 0xae, 0xd5, 0xf9, 0xde, 0xbf, 0xe7, 0xbf, 0xe7, 0x7e, 0xdf, 0xdb, 0xc6, 0x15, 0x8d, 0x90, 0x4b,
0xb0, 0x53, 0xb0, 0x53, 0xd1, 0x5b, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x73, 0x64, 0x74, 0x5c, 0x74, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c,
0x94, 0x6c, 0xb4, 0x64, 0xb4, 0x64, 0xb4, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xf5, 0x6c, 0xd5, 0x6c, 0xf6, 0x6c, 0xf6, 0x74,
0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x75, 0xf5, 0x74, 0xf5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0xd5, 0x74, 0x37, 0x7d, 0x57, 0x75, 0x37, 0x75,
0x57, 0x7d, 0xcd, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b,
0xd1, 0x64, 0xdf, 0xf7, 0x9e, 0xef, 0xd6, 0xad, 0x95, 0x9d, 0x79, 0xc6, 0xff, 0xff, 0x54, 0x95, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a,
0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0xff, 0xff, 0xb6, 0xad, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33,
0xea, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xaa, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0x6c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0x28, 0x22,
0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x88, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x22,
0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x27, 0x22,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x26, 0x11, 0x05, 0x09, 0x26, 0x19, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09,
0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11,
0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09,
0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09,
0x25, 0x09, 0x26, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xea, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11,
0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xca, 0x19, 0xc9, 0x19, 0xc9, 0x19, 0xea, 0x11, 0xea, 0x19, 0xc9, 0x19,
0xc9, 0x11, 0xcb, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xc9, 0x19, 0x26, 0x11, 0x46, 0x11, 0x66, 0x19, 0x46, 0x11, 0x2a, 0x3a, 0xb6, 0xb5, 0xda, 0xd6, 0x9e, 0xef, 0xde, 0xff, 0xdf, 0xff,
0x36, 0xe7, 0x49, 0xde, 0xa9, 0xe6, 0xc9, 0xee, 0xc8, 0xe6, 0xa9, 0xee, 0xc8, 0xee, 0xa8, 0xe6, 0xa8, 0xe6, 0xc8, 0xe6, 0xa8, 0xee, 0xa8, 0xe6, 0xc8, 0xe6, 0xc8, 0xee, 0xc9, 0xe6, 0xa9, 0xe6,
0xca, 0xee, 0xca, 0xe6, 0xca, 0xe6, 0xab, 0xe6, 0x6a, 0xde, 0x8e, 0xd6, 0xf6, 0xd6, 0x5f, 0xe7, 0x5e, 0xdf, 0x5e, 0xdf, 0x3e, 0xdf, 0x5d, 0xe7, 0x5d, 0xdf, 0x5e, 0xdf, 0x3d, 0xdf, 0x5d, 0xdf,
0x3e, 0xdf, 0x3d, 0xdf, 0x5d, 0xe7, 0x3d, 0xe7, 0x5d, 0xdf, 0x5d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x3d, 0xdf, 0x5d, 0xdf, 0x5e, 0xd7,
0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xd7, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x75, 0xd6, 0x6c, 0xd5, 0xad, 0xdd, 0xcd, 0xe5, 0xcd, 0xe5, 0xcc, 0xe5, 0xad, 0xe5, 0xac, 0xdd, 0xac, 0xe5,
0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xdd, 0xad, 0xe5, 0xcd, 0xdd, 0xcd, 0xe5, 0xee, 0xdd, 0xee, 0xdd, 0xcf, 0xd5, 0xf9, 0xde, 0xdf, 0xe7, 0xbf, 0xe7, 0x7e, 0xdf, 0xbb, 0xc6, 0xb3, 0x7c,
0xb0, 0x53, 0xb0, 0x53, 0xd0, 0x53, 0xf1, 0x5b, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x64, 0x74, 0x64, 0x73, 0x5c, 0x54, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c,
0x95, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd5, 0x74, 0xf5, 0x74, 0xf5, 0x6c, 0xf6, 0x6c,
0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x17, 0x75, 0x36, 0x75, 0x17, 0x75, 0x36, 0x75, 0x36, 0x75, 0x37, 0x7d, 0x37, 0x7d, 0x37, 0x75, 0x37, 0x7d,
0x37, 0x7d, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44,
0x99, 0xc6, 0xdf, 0xff, 0x0e, 0x54, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x0f, 0x4c, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x4b, 0x33,
0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0xff, 0xff, 0xd6, 0xad, 0x0b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x8c, 0x3b, 0x0a, 0x2b, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b,
0xea, 0x32, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0a, 0x2b,
0x89, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x22, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22,
0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x0a, 0x33,
0x89, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0xe7, 0x21,
0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11,
0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11,
0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x09, 0x25, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0xe4, 0x08, 0xa4, 0x08, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xc9, 0x11,
0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0xea, 0x19, 0xca, 0x11,
0xc9, 0x19, 0xe9, 0x19, 0xea, 0x19, 0xea, 0x19, 0xc9, 0x19, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x11, 0x87, 0x21, 0x55, 0xad, 0xba, 0xde, 0x9d, 0xf7, 0xde, 0xf7, 0xdf, 0xff, 0x37, 0xef,
0x49, 0xd6, 0xa9, 0xe6, 0xc9, 0xee, 0xc8, 0xe6, 0xa8, 0xe6, 0xa8, 0xee, 0xa8, 0xe6, 0xa8, 0xe6, 0xc8, 0xee, 0xc8, 0xe6, 0xa8, 0xe6, 0xc8, 0xee, 0xc9, 0xe6, 0xa9, 0xe6, 0xc9, 0xe6, 0xca, 0xee,
0xca, 0xe6, 0xaa, 0xde, 0x8b, 0xde, 0x8e, 0xd6, 0xf7, 0xde, 0x5e, 0xe7, 0x3e, 0xe7, 0x5d, 0xdf, 0x5d, 0xe7, 0x5d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x5d, 0xe7, 0x5d, 0xdf, 0x3e, 0xdf, 0x5d, 0xdf,
0x5e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x5e, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0xfc, 0xd6, 0x3d, 0xdf, 0x3e, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf,
0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x7e, 0xdf, 0x7e, 0xd7, 0x34, 0xd6, 0xae, 0xdd, 0xcd, 0xdd, 0xad, 0xe5, 0xcc, 0xe5, 0xad, 0xe5, 0xac, 0xe5,
0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xad, 0xe5, 0xcd, 0xe5, 0xce, 0xdd, 0xee, 0xe5, 0xef, 0xdd, 0xae, 0xdd, 0x1a, 0xdf, 0xdf, 0xe7, 0xbf, 0xe7, 0x5e, 0xd7, 0x9a, 0xbe,
0x32, 0x6c, 0xb0, 0x53, 0xb0, 0x5b, 0xd0, 0x5b, 0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x6c, 0x74, 0x64,
0x94, 0x64, 0x95, 0x64, 0x94, 0x6c, 0x94, 0x64, 0xb4, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xf6, 0x6c,
0xf6, 0x6c, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x36, 0x75, 0x37, 0x75, 0x17, 0x75, 0x37, 0x75, 0x37, 0x75, 0x37, 0x7d, 0x36, 0x75,
0x57, 0x7d, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x8c, 0x3b, 0x4b, 0x33,
0x9e, 0xef, 0x79, 0xc6, 0x4c, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0xea, 0x32, 0xff, 0xff, 0xb6, 0xad, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0xea, 0x32, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x2b, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xaa, 0x2a, 0x69, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x69, 0x22, 0xa9, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x47, 0x22, 0x28, 0x22, 0x89, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x21, 0x07, 0x22,
0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09,
0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x27, 0x09,
0x25, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09,
0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0xc4, 0x08, 0xc4, 0x08, 0xca, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xe9, 0x19, 0xea, 0x19,
0xca, 0x19, 0xc9, 0x19, 0xca, 0x19, 0xea, 0x19, 0x46, 0x11, 0x46, 0x11, 0x46, 0x11, 0x26, 0x11, 0x66, 0x19, 0x93, 0x8c, 0x99, 0xd6, 0x7d, 0xef, 0xdf, 0xf7, 0xdf, 0xff, 0x79, 0xf7, 0x49, 0xd6,
0xa9, 0xe6, 0xa9, 0xe6, 0xc8, 0xee, 0xc8, 0xee, 0xa8, 0xe6, 0xc8, 0xe6, 0xa8, 0xe6, 0xa7, 0xee, 0xc7, 0xe6, 0xa8, 0xe6, 0xa9, 0xe6, 0xc8, 0xe6, 0xc9, 0xee, 0xc9, 0xe6, 0xca, 0xe6, 0xca, 0xe6,
0x8b, 0xe6, 0x4a, 0xd6, 0xd6, 0xde, 0x5c, 0xe7, 0x5e, 0xe7, 0x5d, 0xdf, 0x5d, 0xdf, 0x3d, 0xe7, 0x3d, 0xdf, 0x5d, 0xe7, 0x3d, 0xe7, 0x3e, 0xdf, 0x5d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x5d, 0xdf, 0x59, 0xbe, 0x5e, 0xdf, 0x5d, 0xdf, 0x3d, 0xdf, 0x59, 0xbe, 0x5d, 0xdf, 0x3d, 0xdf, 0xbb, 0xc6, 0xfc, 0xd6, 0x3d, 0xdf, 0x5e, 0xdf, 0x39, 0xb6, 0x5e, 0xdf, 0x5d, 0xdf,
0x5e, 0xdf, 0x3d, 0xd7, 0x5e, 0xd7, 0x5e, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xd7, 0x3c, 0xdf, 0x33, 0xd6, 0x8c, 0xdd, 0xcd, 0xdd, 0xcd, 0xe5, 0xcd, 0xe5,
0xad, 0xe5, 0xad, 0xe5, 0xac, 0xdd, 0xcc, 0xdd, 0xac, 0xe5, 0xad, 0xe5, 0xad, 0xe5, 0xad, 0xe5, 0xce, 0xdd, 0xee, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0x5c, 0xdf, 0xbf, 0xe7, 0xbf, 0xe7, 0x5d, 0xd7,
0x7a, 0xbe, 0xd1, 0x5b, 0xb0, 0x53, 0xb0, 0x5b, 0xd1, 0x53, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x74, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64,
0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0xb5, 0x64, 0x94, 0x64, 0x95, 0x64, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74,
0xd5, 0x74, 0xf6, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x17, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x17, 0x75, 0x36, 0x75, 0x17, 0x75, 0x37, 0x75, 0x37, 0x75,
0x37, 0x7d, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x33,
0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33,
0xff, 0xff, 0xd7, 0xad, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x96, 0x9d, 0x9e, 0xef, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x9e, 0xef, 0xd6, 0xa5,
0x8d, 0x3b, 0xad, 0x4b, 0x59, 0xc6, 0xdf, 0xff, 0xff, 0xff, 0x5d, 0xe7, 0x95, 0x9d, 0x2b, 0x33, 0xca, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x6c, 0x4b, 0xca, 0x2a, 0x6c, 0x4b,
0xba, 0xce, 0xdf, 0xff, 0xdf, 0xff, 0xba, 0xce, 0x0b, 0x43, 0xca, 0x2a, 0x0a, 0x33, 0x0e, 0x4c, 0x18, 0xb6, 0x3c, 0xe7, 0xff, 0xff, 0xbf, 0xff, 0x59, 0xc6, 0xb5, 0x9d, 0x3d, 0xe7, 0xff, 0xff,
0x7d, 0xef, 0x96, 0xa5, 0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33,
0xea, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22,
0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0b, 0x2b, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x48, 0x22, 0x89, 0x2a, 0x0a, 0x33,
0x48, 0x22, 0x48, 0x2a, 0x07, 0x22, 0x47, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xa9, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x11, 0x05, 0x11,
0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09,
0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x25, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x25, 0x09,
0x06, 0x11, 0x25, 0x11, 0x26, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0xca, 0x19, 0xa8, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xc9, 0x19,
0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0x89, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11,
0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xca, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xea, 0x19, 0xa9, 0x11, 0xc9, 0x19,
0xca, 0x19, 0xc9, 0x19, 0xea, 0x19, 0x67, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0xaf, 0x73, 0x38, 0xc6, 0x5c, 0xef, 0xbe, 0xf7, 0xdf, 0xff, 0xbc, 0xf7, 0x07, 0xce, 0xa9, 0xe6,
0xc8, 0xee, 0xa8, 0xee, 0xa8, 0xee, 0xc8, 0xe6, 0xc8, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xa8, 0xe6, 0xa8, 0xe6, 0xc9, 0xee, 0xc8, 0xee, 0xc9, 0xe6, 0xc9, 0xee, 0xaa, 0xe6, 0xaa, 0xe6, 0x69, 0xde,
0x8f, 0xde, 0x3c, 0xdf, 0x5e, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x5e, 0xdf, 0x3d, 0xe7, 0x5d, 0xdf, 0x5d, 0xdf, 0x5d, 0xdf, 0xdc, 0xd6, 0x5e, 0xdf, 0x3d, 0xdf, 0x7e, 0xe7, 0x5a, 0xc6,
0x3d, 0xdf, 0x3d, 0xdf, 0xbb, 0xce, 0x5d, 0xe7, 0x3d, 0xdf, 0x3d, 0xdf, 0x5e, 0xdf, 0x3e, 0xdf, 0x5e, 0xdf, 0xdb, 0xd6, 0xfd, 0xd6, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xd7, 0x5d, 0xdf, 0x3e, 0xdf,
0xbc, 0xce, 0xfc, 0xce, 0x3d, 0xdf, 0x5e, 0xdf, 0x3d, 0xd7, 0x5d, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xd7, 0x7f, 0xdf, 0xfb, 0xd6, 0xae, 0xd5, 0xad, 0xdd, 0xcd, 0xe5,
0xcc, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0xad, 0xdd, 0xac, 0xdd, 0xad, 0xe5, 0xcd, 0xe5, 0xce, 0xdd, 0xee, 0xe5, 0xee, 0xdd, 0xae, 0xd5, 0x7d, 0xdf, 0xbf, 0xe7, 0x9f, 0xe7,
0x3d, 0xd7, 0x19, 0xae, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xd1, 0x5b, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64,
0x94, 0x64, 0x74, 0x64, 0x95, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0xb5, 0x6c, 0x95, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x74, 0xd5, 0x6c,
0xd5, 0x6c, 0xd5, 0x74, 0xf5, 0x6c, 0xf5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x36, 0x75, 0x16, 0x75, 0x16, 0x7d, 0x36, 0x7d, 0x37, 0x7d,
0x37, 0x75, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b,
0xff, 0xff, 0xf7, 0xad, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x37, 0xae, 0xff, 0xff, 0x8c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0xff, 0xff, 0xf7, 0xad,
0x6c, 0x33, 0x1c, 0xdf, 0x9d, 0xef, 0x95, 0x9d, 0xd6, 0x9d, 0x79, 0xc6, 0x38, 0xb6, 0x6c, 0x33, 0x2b, 0x33, 0xff, 0xff, 0xdb, 0xce, 0x95, 0x9d, 0x33, 0x8d, 0x4c, 0x33, 0x0b, 0x33, 0x7e, 0xef,
0x9e, 0xef, 0x75, 0x9d, 0x75, 0x9d, 0x9e, 0xef, 0x7e, 0xef, 0x0b, 0x33, 0xad, 0x3b, 0xb6, 0xad, 0xff, 0xff, 0x18, 0xb6, 0x54, 0x9d, 0xb6, 0xad, 0xdf, 0xff, 0xff, 0xff, 0x9a, 0xce, 0x75, 0x9d,
0xf7, 0xb5, 0xff, 0xff, 0xf7, 0xad, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xaa, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x22,
0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x88, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x2b, 0x33, 0x89, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe6, 0x21, 0x27, 0x22, 0x07, 0x22,
0xc6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09,
0x06, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x25, 0x09, 0x26, 0x11,
0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x25, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09,
0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09,
0x25, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0xe4, 0x08, 0xc4, 0x08, 0xca, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0xa9, 0x19,
0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xc9, 0x11, 0xa8, 0x19, 0xc9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x19,
0xc9, 0x19, 0xca, 0x11, 0xa9, 0x19, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xcb, 0x52, 0xf7, 0xbd, 0x3c, 0xe7, 0xde, 0xf7, 0xdf, 0xff, 0xff, 0xff, 0x4a, 0xde, 0x89, 0xe6, 0xc8, 0xee,
0xc8, 0xee, 0xc7, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xa7, 0xee, 0xa8, 0xe6, 0xc8, 0xe6, 0xa7, 0xee, 0xa7, 0xe6, 0xa8, 0xee, 0xa8, 0xe6, 0xc9, 0xe6, 0xc9, 0xe6, 0xaa, 0xe6, 0x6b, 0xd6, 0xf5, 0xde,
0x5f, 0xe7, 0x5d, 0xdf, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x3d, 0xe7, 0x5d, 0xdf, 0x3d, 0xe7, 0x3e, 0xe7, 0x3d, 0xdf, 0x3d, 0xe7, 0xb6, 0xad, 0x5d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x5d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x59, 0xbe, 0x7e, 0xe7, 0x3e, 0xd7, 0x5e, 0xdf, 0x39, 0xb6, 0x5d, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0x5d, 0xd7, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x54, 0xd6, 0x8c, 0xd5,
0xcd, 0xe5, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcc, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xad, 0xdd, 0xcc, 0xe5, 0xce, 0xe5, 0xee, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0xdf, 0xe7, 0xbf, 0xe7,
0x9e, 0xdf, 0xfc, 0xce, 0x76, 0x95, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xf2, 0x5b, 0x33, 0x5c, 0x33, 0x64, 0x53, 0x64, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64,
0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0xb4, 0x6c, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c,
0xd5, 0x6c, 0xd6, 0x6c, 0xf5, 0x6c, 0xf6, 0x6c, 0xf5, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x7d, 0x16, 0x75, 0x17, 0x7d, 0x17, 0x75, 0x16, 0x75, 0x37, 0x75,
0x36, 0x7d, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b,
0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0xff, 0xff, 0xd7, 0xad, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x3b, 0xb6, 0xad, 0xff, 0xff, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xff, 0xff, 0xd6, 0xad,
0x2b, 0x33, 0xff, 0xff, 0x38, 0xb6, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0xff, 0xff, 0x96, 0xad, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x34, 0x8d, 0xff, 0xff,
0xae, 0x5b, 0xca, 0x2a, 0xca, 0x2a, 0xce, 0x5b, 0xff, 0xff, 0xf3, 0x8c, 0xa9, 0x2a, 0xb6, 0xad, 0xff, 0xff, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0xf7, 0xb5, 0xff, 0xff, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x58, 0xc6, 0xdf, 0xff, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x69, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22,
0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x28, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x27, 0x22,
0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x27, 0x22, 0x47, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xe7, 0x21, 0x47, 0x22, 0xc9, 0x32, 0x48, 0x2a, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x47, 0x22, 0xc9, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x48, 0x22, 0xa9, 0x2a, 0x48, 0x2a,
0x07, 0x22, 0xc6, 0x19, 0xe7, 0x21, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x09, 0x25, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09,
0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11,
0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xc9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19,
0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19,
0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x19, 0xa8, 0x19, 0xc9, 0x11, 0xa9, 0x19, 0xc8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xc9, 0x19,
0xa9, 0x19, 0xca, 0x19, 0x25, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x11, 0x87, 0x21, 0x95, 0xad, 0xda, 0xd6, 0x9e, 0xf7, 0xdf, 0xff, 0xdf, 0xff, 0x8d, 0xde, 0x88, 0xe6, 0xa9, 0xe6, 0xc8, 0xee,
0xa7, 0xe6, 0xc8, 0xe6, 0xa7, 0xee, 0xa8, 0xe6, 0xa7, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xc8, 0xe6, 0xc8, 0xee, 0xa9, 0xe6, 0xc9, 0xee, 0xa9, 0xe6, 0x8a, 0xde, 0x4b, 0xd6, 0x3b, 0xdf, 0x3e, 0xe7,
0x5d, 0xe7, 0x5d, 0xe7, 0x3d, 0xe7, 0x5d, 0xdf, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0xdb, 0xd6, 0xdc, 0xd6, 0x3d, 0xdf, 0x1d, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0xfc, 0xd6, 0x39, 0xbe, 0x3d, 0xdf, 0xfc, 0xd6, 0xfc, 0xd6, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf,
0x5e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0x1d, 0xd7, 0x3e, 0xdf, 0x5e, 0xdf, 0xdc, 0xce, 0x7e, 0xdf, 0x5e, 0xdf, 0x5e, 0xd7, 0x5d, 0xdf, 0x5d, 0xdf, 0x5e, 0xd7, 0x7f, 0xdf, 0xd9, 0xde,
0xad, 0xd5, 0xce, 0xdd, 0xcd, 0xe5, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xad, 0xe5, 0xad, 0xdd, 0xce, 0xe5, 0xef, 0xe5, 0xef, 0xdd, 0x12, 0xd6, 0xdf, 0xe7,
0xdf, 0xe7, 0x7e, 0xdf, 0xbb, 0xc6, 0x52, 0x6c, 0xb1, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x73, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0x95, 0x64, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c,
0xd5, 0x6c, 0xd6, 0x6c, 0xd6, 0x74, 0xd5, 0x74, 0xd6, 0x6c, 0xf6, 0x74, 0xf5, 0x6c, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x75, 0x17, 0x75, 0x16, 0x75, 0x16, 0x75, 0x37, 0x75, 0x16, 0x75,
0x17, 0x75, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xac, 0x3b,
0xff, 0xff, 0x17, 0xae, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xd7, 0xad, 0xff, 0xff, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0xff, 0xff, 0xb6, 0xad,
0x2b, 0x33, 0xfc, 0xde, 0xdf, 0xff, 0x38, 0xb6, 0x0f, 0x5c, 0xea, 0x32, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0xff, 0xff, 0xd6, 0xad, 0xca, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x17, 0xae, 0xff, 0xff,
0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xff, 0xff, 0xd6, 0xad, 0xca, 0x2a, 0x95, 0xa5, 0xff, 0xff, 0xea, 0x32, 0xad, 0x3b, 0x2b, 0x33, 0xb6, 0xa5, 0xff, 0xff, 0xa9, 0x2a, 0xea, 0x32,
0x8c, 0x3b, 0xb6, 0xa5, 0xff, 0xff, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22,
0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xe7, 0x19, 0x28, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22, 0x69, 0x2a,
0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0xc9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0xc9, 0x2a, 0x48, 0x22, 0x27, 0x22,
0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11,
0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x05, 0x11, 0x05, 0x09, 0xc4, 0x08, 0xc5, 0x08, 0xca, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xaa, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11,
0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19,
0xca, 0x11, 0x67, 0x11, 0x25, 0x09, 0x26, 0x11, 0x26, 0x11, 0xe5, 0x08, 0x92, 0x8c, 0x9a, 0xd6, 0x7d, 0xef, 0xde, 0xff, 0xff, 0xff, 0xd1, 0xe6, 0x69, 0xde, 0xa8, 0xe6, 0xc8, 0xee, 0xa7, 0xee,
0xa7, 0xee, 0xa7, 0xe6, 0xa7, 0xe6, 0xc7, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xc8, 0xe6, 0xa8, 0xe6, 0xc8, 0xee, 0xc9, 0xee, 0xaa, 0xe6, 0x69, 0xde, 0x90, 0xd6, 0x5e, 0xef, 0x5d, 0xe7, 0x3d, 0xe7,
0x3d, 0xe7, 0x3d, 0xdf, 0x3d, 0xe7, 0x3d, 0xdf, 0x5e, 0xe7, 0x5d, 0xdf, 0x3d, 0xdf, 0x5e, 0xe7, 0x7a, 0xc6, 0x3d, 0xdf, 0x5c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xe7, 0x1d, 0xdf,
0x3c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x5a, 0xbe, 0xd4, 0x94, 0x5d, 0xdf, 0x56, 0x9d, 0xd8, 0xad, 0xfd, 0xce, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7,
0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x5e, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0x3e, 0xdf, 0x39, 0xbe, 0x7e, 0xdf, 0x3d, 0xdf, 0x5e, 0xd7, 0x5d, 0xdf, 0x5e, 0xd7, 0x5e, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf,
0x3c, 0xd7, 0xae, 0xd5, 0xcd, 0xdd, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xdd, 0xad, 0xe5, 0xad, 0xe5, 0xad, 0xdd, 0xcd, 0xdd, 0xee, 0xdd, 0xef, 0xdd, 0x96, 0xd6,
0xbf, 0xe7, 0xbf, 0xe7, 0x5e, 0xd7, 0x7a, 0xb6, 0x90, 0x53, 0xb0, 0x5b, 0xb0, 0x53, 0xd1, 0x53, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c,
0x54, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x95, 0x64, 0x94, 0x6c, 0xb5, 0x6c, 0x94, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd6, 0x74, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x36, 0x7d,
0x17, 0x75, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44,
0xff, 0xff, 0xf7, 0xad, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xf7, 0xad, 0xff, 0xff, 0x8d, 0x3b, 0x2e, 0x3c, 0x8c, 0x3b, 0x8c, 0x33, 0xff, 0xff, 0xd7, 0xad,
0x6c, 0x33, 0x6f, 0x54, 0x38, 0xb6, 0xdf, 0xff, 0xff, 0xff, 0xfb, 0xd6, 0xad, 0x4b, 0xee, 0x3b, 0x4c, 0x33, 0xff, 0xff, 0xd6, 0xad, 0x2b, 0x33, 0x2b, 0x33, 0xee, 0x3b, 0xd6, 0xad, 0xff, 0xff,
0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0xff, 0xff, 0xd6, 0xad, 0x2b, 0x33, 0xb6, 0xa5, 0xff, 0xff, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0xb6, 0xad, 0xff, 0xff, 0xea, 0x2a, 0xad, 0x3b,
0xea, 0x2a, 0xb6, 0xad, 0xff, 0xff, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0x89, 0x2a,
0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x22, 0x2b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x28, 0x22,
0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x88, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x22, 0x0b, 0x33,
0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x28, 0x22,
0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22,
0xe6, 0x21, 0x27, 0x22, 0x27, 0x22, 0x26, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09,
0x06, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0xe4, 0x08, 0xc4, 0x08, 0xc9, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x19,
0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11,
0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xc9, 0x11,
0x88, 0x19, 0x26, 0x09, 0x26, 0x11, 0x25, 0x11, 0x06, 0x11, 0x0c, 0x5b, 0x17, 0xc6, 0x5c, 0xef, 0xde, 0xff, 0xff, 0xff, 0x58, 0xef, 0x47, 0xd6, 0xa8, 0xe6, 0xa8, 0xee, 0xa7, 0xee, 0xa7, 0xe6,
0xa7, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xa7, 0xe6, 0x87, 0xee, 0xc8, 0xe6, 0xa8, 0xee, 0xa8, 0xee, 0xc9, 0xe6, 0xa9, 0xe6, 0x69, 0xde, 0x92, 0xde, 0x5f, 0xe7, 0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf,
0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xe7, 0x5d, 0xe7, 0x39, 0xc6, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf,
0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x15, 0x95, 0x7e, 0xe7, 0xd7, 0xad, 0x1d, 0xdf, 0x18, 0xb6, 0x3d, 0xdf, 0x3d, 0xdf, 0x5d, 0xd7,
0x3d, 0xdf, 0x3e, 0xd7, 0x3e, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0xdb, 0xce, 0x3d, 0xdf, 0x3e, 0xdf, 0x1d, 0xd7, 0xdc, 0xce, 0x5e, 0xdf, 0x5e, 0xdf, 0x3d, 0xd7, 0x5e, 0xd7,
0x3e, 0xdf, 0x7f, 0xdf, 0xcf, 0xd5, 0xcd, 0xdd, 0xcd, 0xe5, 0xad, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xcd, 0xdd, 0xad, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xee, 0xe5, 0xcf, 0xd5,
0x5c, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0x1c, 0xd7, 0xb8, 0xa5, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x33, 0x64, 0x54, 0x64, 0x54, 0x64,
0x73, 0x64, 0x53, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xf6, 0x74, 0xd6, 0x6c, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74, 0x17, 0x75, 0x16, 0x75,
0x16, 0x7d, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33,
0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x8c, 0x3b, 0x2b, 0x33,
0xdf, 0xff, 0x38, 0xb6, 0x4b, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0xd6, 0xad, 0xff, 0xff, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xff, 0xff, 0xf7, 0xad,
0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x13, 0x8d, 0xdf, 0xff, 0x5d, 0xe7, 0xea, 0x2a, 0x0a, 0x33, 0xff, 0xff, 0xb6, 0xad, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xb6, 0xad, 0xff, 0xff,
0xea, 0x2a, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xff, 0xff, 0xb6, 0xa5, 0xca, 0x2a, 0xd6, 0xad, 0xff, 0xff, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0x96, 0xa5, 0xff, 0xff, 0xca, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0x96, 0xad, 0xff, 0xff, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0xc9, 0x2a,
0x69, 0x22, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x28, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x28, 0x22,
0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x47, 0x22, 0x68, 0x2a,
0x48, 0x2a, 0x27, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x32, 0x48, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x47, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21,
0x48, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11,
0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09,
0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0xe4, 0x10, 0xc5, 0x08, 0xca, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11,
0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa8, 0x11,
0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19,
0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x19,
0x46, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x87, 0x21, 0x55, 0xa5, 0xfb, 0xe6, 0xbe, 0xf7, 0xdf, 0xff, 0xde, 0xff, 0x27, 0xd6, 0x88, 0xe6, 0xa8, 0xee, 0xc7, 0xee, 0xa7, 0xee, 0xa7, 0xe6,
0xa7, 0xe6, 0xa7, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xa7, 0xe6, 0xc8, 0xee, 0xc7, 0xee, 0xa9, 0xee, 0xa9, 0xde, 0x69, 0xde, 0xd3, 0xde, 0x5e, 0xdf, 0x3d, 0xe7, 0x5d, 0xe7, 0x3d, 0xdf, 0x5d, 0xe7,
0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x3c, 0xdf, 0x3c, 0xdf, 0x7a, 0xc6, 0x3d, 0xe7, 0x1d, 0xdf, 0x3c, 0xe7, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf,
0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x14, 0x9d, 0x7e, 0xe7, 0xb7, 0xad, 0x1d, 0xd7, 0x18, 0xb6, 0x3e, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf,
0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0xdb, 0xce, 0x7e, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf,
0x5d, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0xf1, 0xd5, 0xad, 0xdd, 0xcd, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xcc, 0xe5, 0xad, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xef, 0xe5,
0xce, 0xd5, 0xbf, 0xe7, 0xbf, 0xe7, 0x9e, 0xdf, 0xdb, 0xc6, 0x72, 0x6c, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c,
0x53, 0x5c, 0x53, 0x64, 0x54, 0x5c, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0x94, 0x64, 0x95, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xf6, 0x74, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75, 0x16, 0x75,
0x16, 0x75, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x59, 0xc6, 0xdf, 0xff, 0xee, 0x53, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x4b, 0x4b, 0x33, 0x96, 0x9d, 0xff, 0xff, 0x50, 0x64, 0x4b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0xff, 0xff, 0x37, 0xae,
0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x58, 0xbe, 0xff, 0xff, 0x2b, 0x33, 0xea, 0x2a, 0xff, 0xff, 0xd6, 0xad, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xf3, 0x8c, 0xff, 0xff,
0x0f, 0x5c, 0xcd, 0x3b, 0x4b, 0x33, 0xee, 0x5b, 0xff, 0xff, 0xf3, 0x8c, 0x0b, 0x33, 0xf7, 0xad, 0xff, 0xff, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xb6, 0xad, 0xff, 0xff, 0x0b, 0x33, 0xca, 0x2a,
0x68, 0x22, 0x96, 0xad, 0xff, 0xff, 0x8c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33,
0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x28, 0x22, 0x68, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x22, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x0b, 0x2b, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x0b, 0x33,
0x48, 0x22, 0x48, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xc9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0xc9, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x25, 0x11, 0x26, 0x09, 0x26, 0x11, 0x25, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09,
0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0x88, 0x11, 0x88, 0x19,
0xa8, 0x11, 0x88, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x88, 0x19, 0x89, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0x89, 0x11, 0xa8, 0x19, 0xaa, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x89, 0x19, 0x89, 0x11, 0xa8, 0x11,
0xa9, 0x11, 0xa8, 0x19, 0x89, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0x88, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0x88, 0x19,
0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x92, 0x94, 0x98, 0xce, 0x7d, 0xef, 0xde, 0xff, 0xdf, 0xff, 0xae, 0xe6, 0x68, 0xe6, 0xa8, 0xe6, 0xc7, 0xee, 0xa7, 0xee, 0xa6, 0xe6, 0xa7, 0xee,
0x86, 0xee, 0xa6, 0xee, 0xc7, 0xee, 0xa6, 0xee, 0xa7, 0xe6, 0xa7, 0xe6, 0xc8, 0xee, 0xc9, 0xe6, 0x69, 0xde, 0xd4, 0xde, 0x5e, 0xe7, 0x3d, 0xe7, 0x5d, 0xe7, 0x3c, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf,
0x5d, 0xe7, 0x5a, 0xc6, 0x3d, 0xe7, 0x3d, 0xdf, 0x3d, 0xe7, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xe7, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x18, 0xbe, 0x72, 0x84, 0x96, 0xa5, 0xb7, 0xad, 0x55, 0xa5, 0xfc, 0xd6, 0x3d, 0xd7, 0x3d, 0xdf, 0x3e, 0xdf,
0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3e, 0xd7, 0x3d, 0xd7, 0x5e, 0xd7, 0x3d, 0xd7, 0x5e, 0xd7, 0x3e, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0xfc, 0xce, 0x5e, 0xdf,
0x5e, 0xdf, 0x3e, 0xdf, 0x5e, 0xdf, 0x7f, 0xd7, 0xf1, 0xd5, 0xcd, 0xdd, 0xcd, 0xe5, 0xad, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xad, 0xe5, 0xcd, 0xdd, 0xee, 0xdd,
0xef, 0xdd, 0x32, 0xd6, 0xdf, 0xe7, 0xbf, 0xe7, 0x5d, 0xd7, 0x39, 0xbe, 0x6f, 0x4b, 0xb0, 0x53, 0xb0, 0x5b, 0xd1, 0x5b, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c,
0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x6c, 0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0xb5, 0x6c, 0xb4, 0x6c,
0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x74, 0xd6, 0x74, 0xf5, 0x6c, 0xf5, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75, 0xf6, 0x74,
0x16, 0x75, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x5c, 0xdf, 0xff, 0x9e, 0xef, 0xf7, 0xad, 0x95, 0x9d, 0x79, 0xc6, 0xff, 0xff, 0x54, 0x95, 0x70, 0x54, 0xdf, 0xff, 0x5d, 0xe7, 0xb6, 0x9d, 0x95, 0x9d, 0x38, 0xb6, 0xff, 0xff, 0xf7, 0xad,
0x6c, 0x33, 0x1c, 0xdf, 0x79, 0xc6, 0x95, 0x9d, 0x18, 0xae, 0xdf, 0xff, 0xba, 0xce, 0x6c, 0x3b, 0x2b, 0x33, 0xfb, 0xde, 0x9e, 0xef, 0xd6, 0xad, 0xd6, 0xad, 0x6c, 0x33, 0x0b, 0x33, 0x9d, 0xef,
0x9e, 0xef, 0x75, 0x9d, 0x75, 0x9d, 0x7e, 0xef, 0x9e, 0xf7, 0x0b, 0x33, 0xcd, 0x3b, 0xd6, 0xad, 0xff, 0xff, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xf7, 0xad, 0xff, 0xff, 0xea, 0x32, 0x0b, 0x33,
0xa9, 0x2a, 0xb6, 0xad, 0xff, 0xff, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x69, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22,
0x2b, 0x33, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a,
0x07, 0x22, 0x07, 0x22, 0x47, 0x22, 0x07, 0x22, 0xc6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x27, 0x22, 0xe6, 0x21, 0xe6, 0x21, 0x07, 0x22, 0xe7, 0x21, 0x47, 0x22, 0x27, 0x22,
0xc6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x25, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0xe4, 0x08, 0xc4, 0x08, 0xc9, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x89, 0x11, 0xa9, 0x11,
0xa8, 0x11, 0x89, 0x19, 0xa8, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x89, 0x11, 0xa9, 0x19, 0x89, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0x88, 0x11,
0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa9, 0x11, 0x89, 0x11, 0x89, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x89, 0x11, 0x88, 0x11, 0xa9, 0x19, 0xa8, 0x11,
0x89, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0x89, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0x06, 0x09,
0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x4a, 0x42, 0xf6, 0xbd, 0x3c, 0xef, 0xde, 0xff, 0xff, 0xff, 0x36, 0xef, 0x47, 0xde, 0xa8, 0xee, 0xa7, 0xee, 0xa7, 0xee, 0xc7, 0xee, 0xa6, 0xe6, 0xa6, 0xee,
0xa7, 0xee, 0xa7, 0xe6, 0xa7, 0xe6, 0xa7, 0xee, 0xa8, 0xee, 0xa8, 0xee, 0xa9, 0xe6, 0x49, 0xde, 0xd4, 0xde, 0x5d, 0xef, 0x3d, 0xdf, 0x3d, 0xe7, 0x5d, 0xe7, 0x3d, 0xe7, 0x3c, 0xe7, 0x3d, 0xe7,
0x3d, 0xdf, 0x7a, 0xce, 0x5e, 0xe7, 0x3d, 0xe7, 0x1d, 0xe7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf,
0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x5d, 0xe7, 0x7e, 0xe7, 0x5f, 0xdf, 0x3e, 0xdf, 0x5d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf,
0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x5d, 0xdf, 0x3e, 0xd7, 0x5e, 0xd7, 0x39, 0xbe, 0x3d, 0xd7, 0x3d, 0xd7,
0x5e, 0xd7, 0x5d, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0xd0, 0xd5, 0xad, 0xdd, 0xcd, 0xe5, 0xad, 0xe5, 0xcc, 0xe5, 0xac, 0xe5, 0xad, 0xdd, 0xac, 0xdd, 0xac, 0xe5, 0xad, 0xdd, 0xcd, 0xe5,
0xce, 0xdd, 0xce, 0xd5, 0x1b, 0xdf, 0xbf, 0xe7, 0x9f, 0xe7, 0x1d, 0xcf, 0x36, 0x95, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0x13, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x64,
0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x53, 0x5c, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x6c, 0x74, 0x64, 0x95, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x95, 0x64, 0xb4, 0x6c,
0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xf5, 0x6c, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75,
0x16, 0x75, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x2f, 0x64, 0x79, 0xc6, 0x9e, 0xef, 0xff, 0xff, 0x9e, 0xef, 0xf7, 0xad, 0xce, 0x4b, 0x0b, 0x33, 0x0f, 0x5c, 0xfb, 0xde, 0xdf, 0xff, 0xff, 0xff, 0x9e, 0xef, 0x59, 0xc6, 0x8d, 0x4b,
0x2b, 0x33, 0x75, 0x9d, 0x5d, 0xe7, 0xff, 0xff, 0xdf, 0xff, 0x59, 0xc6, 0x8d, 0x4b, 0x0b, 0x33, 0x4b, 0x33, 0xad, 0x4b, 0xfb, 0xd6, 0xff, 0xff, 0x7e, 0xef, 0x6c, 0x4b, 0x2b, 0x33, 0x6c, 0x4b,
0x9a, 0xce, 0xdf, 0xff, 0xbf, 0xff, 0x9a, 0xce, 0x8d, 0x4b, 0xea, 0x2a, 0x89, 0x2a, 0x54, 0x9d, 0x7e, 0xef, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x34, 0x95, 0x7d, 0xef, 0xa9, 0x2a, 0xa9, 0x2a,
0xea, 0x2a, 0x55, 0x9d, 0x7e, 0xef, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x28, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x28, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x1a, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x07, 0x22, 0x27, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x27, 0x22, 0xc9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x2a, 0x68, 0x2a,
0x07, 0x22, 0xc6, 0x21, 0x07, 0x22, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0xe4, 0x10, 0xc5, 0x08, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x88, 0x19,
0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x89, 0x11, 0x88, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x89, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0x89, 0x11,
0xa9, 0x11, 0xa8, 0x19, 0x88, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x88, 0x11, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0x88, 0x11, 0x88, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x67, 0x11, 0x05, 0x11,
0x05, 0x09, 0x06, 0x09, 0xe5, 0x08, 0x34, 0xa5, 0xbb, 0xde, 0xbe, 0xf7, 0xff, 0xff, 0xbc, 0xf7, 0x49, 0xde, 0xa8, 0xe6, 0xa7, 0xee, 0xc7, 0xee, 0xc7, 0xee, 0xa6, 0xe6, 0xa7, 0xee, 0xa6, 0xe6,
0xa6, 0xe6, 0xa7, 0xee, 0xa6, 0xe6, 0xa7, 0xee, 0xa8, 0xee, 0xc9, 0xe6, 0x67, 0xde, 0xb3, 0xd6, 0x5e, 0xef, 0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xe7,
0x3d, 0xe7, 0x3d, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x1d, 0xd7,
0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xdf, 0x5d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x5e, 0xdf, 0x1c, 0xd7, 0x5d, 0xdf, 0x5e, 0xd7,
0x3d, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x7f, 0xdf, 0xcf, 0xd5, 0xcd, 0xdd, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xad, 0xe5, 0xac, 0xe5, 0xcd, 0xe5,
0xee, 0xe5, 0xee, 0xe5, 0x8e, 0xd5, 0xbf, 0xe7, 0xdf, 0xe7, 0x7e, 0xdf, 0x9a, 0xbe, 0xd0, 0x5b, 0xb0, 0x53, 0xb0, 0x53, 0xd0, 0x53, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c,
0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0xb5, 0x6c,
0xb5, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd6, 0x74, 0xd6, 0x74, 0xd5, 0x74, 0xf6, 0x74, 0xf6, 0x6c, 0xf6, 0x74, 0xf6, 0x74,
0xf6, 0x74, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0x2b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8d, 0x3b,
0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x3c, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0xed, 0x3b, 0x4c, 0x33,
0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a,
0x8d, 0x3b, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xeb, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xaa, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a,
0x69, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xe7, 0x21, 0x48, 0x22, 0x89, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x19,
0x48, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22,
0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x27, 0x22, 0xc9, 0x32, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xc9, 0x32, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x27, 0x22, 0xc9, 0x32, 0x48, 0x22, 0x27, 0x22,
0x68, 0x2a, 0x07, 0x22, 0x47, 0x22, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11,
0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x11,
0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xc9, 0x11, 0x88, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11,
0x88, 0x19, 0x88, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0x89, 0x11, 0x88, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0x89, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0x89, 0x19, 0xa8, 0x19,
0xa8, 0x11, 0x89, 0x11, 0xa9, 0x11, 0x88, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0x89, 0x11, 0xa9, 0x11, 0x89, 0x11, 0xa8, 0x19, 0x88, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11,
0x88, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x19, 0x89, 0x11, 0xa8, 0x11, 0x89, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x19, 0x88, 0x19, 0xa8, 0x11, 0x89, 0x11, 0xa8, 0x11, 0x06, 0x09, 0x05, 0x09,
0x06, 0x11, 0x05, 0x11, 0x0d, 0x5b, 0x58, 0xce, 0x5c, 0xf7, 0xde, 0xff, 0xff, 0xff, 0x8f, 0xde, 0x68, 0xe6, 0xa7, 0xee, 0xc7, 0xee, 0xa7, 0xee, 0xa6, 0xe6, 0xa6, 0xee, 0xa6, 0xe6, 0xa6, 0xee,
0xa7, 0xee, 0xa7, 0xee, 0xa7, 0xee, 0xa8, 0xee, 0xc8, 0xe6, 0x89, 0xe6, 0xb0, 0xd6, 0x5f, 0xef, 0x3d, 0xe7, 0x3d, 0xe7, 0x3c, 0xe7, 0x5d, 0xdf, 0x3d, 0xe7, 0x5e, 0xe7, 0x96, 0xad, 0x3c, 0xe7,
0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf,
0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x1d, 0xd7, 0x3d, 0xd7, 0x1d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xdf,
0x9b, 0xc6, 0x1d, 0xd7, 0x5d, 0xd7, 0x5d, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0x6c, 0xd5, 0xad, 0xe5, 0xcd, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xdd, 0xad, 0xe5,
0xcd, 0xdd, 0xed, 0xdd, 0xef, 0xdd, 0x53, 0xd6, 0xbf, 0xe7, 0xbf, 0xe7, 0x3d, 0xd7, 0xd7, 0xa5, 0x90, 0x4b, 0x90, 0x53, 0xb0, 0x53, 0x13, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c,
0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64,
0x95, 0x64, 0x95, 0x64, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xf5, 0x74, 0xd5, 0x6c, 0xf6, 0x74, 0xf6, 0x74, 0x16, 0x75,
0xf6, 0x74, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33,
0x8c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0xcd, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b,
0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0xc9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a,
0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x88, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x22,
0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x07, 0x22,
0x07, 0x22, 0x28, 0x22, 0x07, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x25, 0x11,
0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0xe4, 0x08, 0xc5, 0x08, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x88, 0x19, 0x88, 0x11,
0xa9, 0x11, 0xa9, 0x11, 0x88, 0x11, 0x88, 0x11, 0xa9, 0x19, 0x89, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0x89, 0x19, 0x89, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x88, 0x11,
0x89, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0x89, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x11, 0xa8, 0x19, 0xa8, 0x11, 0x88, 0x19, 0xa9, 0x11, 0x88, 0x11, 0x89, 0x11, 0xa8, 0x11, 0xa9, 0x11,
0xa9, 0x11, 0x89, 0x11, 0x88, 0x19, 0xa9, 0x19, 0xa8, 0x11, 0x89, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0x89, 0x11, 0x88, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0x47, 0x11, 0x05, 0x11, 0x06, 0x11,
0x06, 0x09, 0x67, 0x11, 0x54, 0xad, 0xfb, 0xe6, 0xbe, 0xf7, 0xdf, 0xff, 0x59, 0xf7, 0x47, 0xde, 0xa8, 0xee, 0xa8, 0xee, 0xa6, 0xee, 0xa6, 0xe6, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee,
0xa6, 0xee, 0xa7, 0xe6, 0xa7, 0xee, 0xa8, 0xe6, 0x89, 0xe6, 0x6c, 0xde, 0x5e, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3c, 0xe7, 0x1d, 0xdf, 0x7a, 0xce,
0x3d, 0xe7, 0x1d, 0xe7, 0x3c, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3e, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf,
0x3d, 0xdf, 0x3e, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3e, 0xd7, 0x5e, 0xdf, 0x3e, 0xd7,
0x5e, 0xdf, 0x5e, 0xd7, 0x3e, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xd7, 0x5e, 0xd7, 0x3d, 0xd7, 0x8d, 0xd5, 0xcd, 0xe5, 0xcc, 0xe5, 0xad, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xdd, 0xad, 0xe5,
0xcc, 0xe5, 0xce, 0xe5, 0xee, 0xdd, 0xce, 0xd5, 0x7d, 0xdf, 0xbf, 0xe7, 0x9f, 0xdf, 0xdb, 0xc6, 0x12, 0x64, 0x90, 0x53, 0xb0, 0x53, 0xd0, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x33, 0x5c,
0x33, 0x5c, 0x33, 0x64, 0x33, 0x5c, 0x33, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x54, 0x5c, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c,
0x94, 0x6c, 0x95, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xf5, 0x6c, 0xf5, 0x74, 0xf5, 0x74, 0xf6, 0x6c,
0xf6, 0x74, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33,
0x4c, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0xea, 0x32,
0xea, 0x32, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x68, 0x22,
0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x07, 0x22,
0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0xe7, 0x19, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0xe7, 0x21,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x68, 0x2a, 0x27, 0x22, 0xe6, 0x19, 0x07, 0x22, 0x48, 0x2a, 0xc9, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x32, 0x68, 0x2a, 0x07, 0x22, 0xe6, 0x21, 0x07, 0x22,
0x48, 0x22, 0xc9, 0x2a, 0x68, 0x2a, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09,
0x46, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11,
0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0xe4, 0x08, 0xc5, 0x08, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x89, 0x19,
0xa8, 0x11, 0x89, 0x19, 0xa9, 0x11, 0x89, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x89, 0x11, 0xa9, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x89, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0xa9, 0x11,
0x88, 0x11, 0x88, 0x19, 0xa8, 0x11, 0xa8, 0x19, 0x89, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x89, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa8, 0x09, 0xa9, 0x19, 0x89, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa8, 0x11,
0xa8, 0x19, 0x89, 0x19, 0xa9, 0x11, 0x88, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x89, 0x19, 0xa8, 0x11, 0x05, 0x09, 0x25, 0x09, 0x05, 0x09,
0xe5, 0x00, 0x6e, 0x6b, 0x58, 0xce, 0x9d, 0xef, 0xde, 0xff, 0xff, 0xff, 0x6b, 0xde, 0x88, 0xe6, 0xa7, 0xee, 0xc6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0xa5, 0xee, 0xa6, 0xee, 0xa7, 0xee,
0xa7, 0xe6, 0xa7, 0xee, 0xc8, 0xee, 0xa8, 0xe6, 0x49, 0xd6, 0x3d, 0xe7, 0x3d, 0xe7, 0x3c, 0xe7, 0x3c, 0xef, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x1d, 0xe7, 0x3d, 0xe7,
0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xe7, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3e, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7,
0x5d, 0xdf, 0x3d, 0xd7, 0x3e, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x5e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0xd9, 0xd6, 0xad, 0xdd, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd,
0xac, 0xe5, 0xad, 0xe5, 0xce, 0xe5, 0xee, 0xe5, 0xf0, 0xd5, 0xbf, 0xe7, 0xbf, 0xe7, 0x5d, 0xd7, 0x18, 0xb6, 0x90, 0x53, 0x90, 0x53, 0x90, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x12, 0x5c,
0x33, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x64, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x6c, 0x74, 0x64, 0x94, 0x64,
0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd6, 0x6c, 0xd6, 0x6c, 0xd5, 0x6c, 0xf5, 0x74, 0xd6, 0x6c,
0xf6, 0x74, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x3c, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33,
0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0xca, 0x2a,
0x89, 0x22, 0xca, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33,
0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22,
0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x4b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22,
0x07, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x89, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0x48, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xca, 0x32, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xea, 0x32, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22,
0xc9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11,
0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09,
0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0xe4, 0x08, 0xc4, 0x08, 0xa9, 0x19, 0xa9, 0x11, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11,
0x88, 0x19, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x11,
0x89, 0x19, 0x88, 0x11, 0x88, 0x19, 0x89, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x88, 0x11, 0xa8, 0x11, 0x89, 0x19, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0xa8, 0x19, 0x89, 0x11, 0xa8, 0x11, 0x88, 0x19,
0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa9, 0x19, 0x89, 0x11, 0x88, 0x11, 0x89, 0x19, 0x89, 0x11, 0x89, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x89, 0x19, 0x68, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11,
0x87, 0x21, 0x75, 0xad, 0xfb, 0xde, 0xde, 0xff, 0xdf, 0xff, 0x37, 0xef, 0x26, 0xde, 0xa7, 0xee, 0xa7, 0xee, 0xa6, 0xee, 0x87, 0xe6, 0x86, 0xe6, 0xa6, 0xee, 0xa6, 0xe6, 0xa6, 0xe6, 0xa7, 0xee,
0xa7, 0xee, 0xa7, 0xee, 0xa8, 0xe6, 0x48, 0xde, 0x1a, 0xe7, 0x3d, 0xe7, 0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xdf, 0x5d, 0xe7, 0xd7, 0xb5, 0x3d, 0xe7, 0x3c, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf,
0x1c, 0xe7, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xe7, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xe7, 0x3d, 0xdf, 0x1d, 0xe7, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7,
0x1d, 0xd7, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf,
0x3d, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3d, 0xdf, 0x5d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3e, 0xd7,
0x3d, 0xd7, 0x3e, 0xdf, 0x3e, 0xd7, 0xf8, 0xad, 0x5e, 0xdf, 0x5e, 0xdf, 0x5d, 0xdf, 0x5d, 0xd7, 0x5f, 0xdf, 0x54, 0xd6, 0xad, 0xdd, 0xcd, 0xe5, 0xad, 0xe5, 0xac, 0xe5, 0x8c, 0xe5, 0xac, 0xe5,
0xac, 0xe5, 0xad, 0xe5, 0xcd, 0xe5, 0xce, 0xdd, 0xcf, 0xdd, 0x3b, 0xe7, 0xbf, 0xe7, 0x9f, 0xe7, 0xdb, 0xc6, 0x32, 0x64, 0x90, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c,
0x32, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x6c,
0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x64, 0xb5, 0x6c, 0xb4, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x74, 0xd6, 0x74, 0xd5, 0x6c,
0xf6, 0x74, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x3b,
0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4b, 0x33,
0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0a, 0x33, 0x0a, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0x0b, 0x33, 0x8c, 0x3b, 0x0b, 0x2b, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xc6, 0x21, 0xe7, 0x21, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x07, 0x22,
0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11,
0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x09, 0x06, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x11, 0x05, 0x11, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0xe4, 0x08, 0xc3, 0x08, 0xa9, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa9, 0x19, 0xa8, 0x11,
0xa9, 0x11, 0x88, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0x89, 0x11, 0x88, 0x19, 0xa9, 0x11, 0x88, 0x19, 0xa9, 0x11, 0x89, 0x19, 0x89, 0x11, 0xa8, 0x11, 0x88, 0x19, 0xa9, 0x11, 0x88, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0x88, 0x19, 0xa8, 0x09, 0xa9, 0x19, 0x88, 0x11, 0x88, 0x11, 0xa8, 0x11, 0x89, 0x19, 0xa8, 0x11, 0x89, 0x19, 0xa8, 0x09, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0xa8, 0x19, 0xa8, 0x11,
0xa9, 0x11, 0x89, 0x19, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0x89, 0x11, 0x25, 0x09, 0x26, 0x11, 0x26, 0x11, 0xc4, 0x00,
0x6e, 0x63, 0x58, 0xce, 0x7d, 0xf7, 0xde, 0xff, 0xde, 0xff, 0x4a, 0xde, 0xa8, 0xe6, 0xa7, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0xa6, 0xee, 0xa5, 0xee, 0x85, 0xee, 0xa6, 0xe6, 0xa6, 0xee, 0xa6, 0xee,
0xc7, 0xee, 0xc8, 0xe6, 0x47, 0xde, 0xb3, 0xde, 0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x1d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x3d, 0xe7, 0x1d, 0xdf,
0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7,
0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xdf,
0x3d, 0xdf, 0x5d, 0xd7, 0x5d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x5d, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf, 0x7f, 0xd7, 0xaf, 0xd5, 0xcd, 0xdd, 0xcc, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd,
0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xcd, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0xdf, 0xe7, 0xbf, 0xe7, 0x5e, 0xd7, 0x18, 0xae, 0x8f, 0x53, 0x90, 0x53, 0x90, 0x53, 0x12, 0x5c, 0x12, 0x54, 0x12, 0x5c,
0x12, 0x5c, 0x13, 0x5c, 0x13, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x73, 0x64, 0x94, 0x6c,
0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0xb5, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x74, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74, 0xd5, 0x6c,
0xf5, 0x74, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6b, 0x33, 0x6c, 0x33, 0x4b, 0x33,
0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x2b, 0x2b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x0b, 0x33,
0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a,
0x0a, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a,
0x89, 0x2a, 0x68, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22,
0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x47, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22,
0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22,
0x07, 0x22, 0x48, 0x2a, 0xea, 0x32, 0x68, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x32, 0x68, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x32, 0x68, 0x2a,
0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11,
0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xa9, 0x19, 0x89, 0x11, 0x88, 0x11, 0x88, 0x11, 0x89, 0x19,
0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x89, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x88, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0x89, 0x19, 0x88, 0x11, 0x89, 0x11, 0xa8, 0x19, 0x88, 0x11,
0x89, 0x19, 0x88, 0x11, 0xa9, 0x19, 0x88, 0x09, 0x89, 0x19, 0xa8, 0x19, 0x89, 0x11, 0x88, 0x19, 0x89, 0x11, 0xa8, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x89, 0x11,
0xa8, 0x11, 0x88, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x89, 0x19, 0xa8, 0x11, 0x89, 0x19, 0x88, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x88, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11,
0xb6, 0xbd, 0xfb, 0xe6, 0xde, 0xf7, 0xff, 0xff, 0x16, 0xf7, 0x67, 0xe6, 0xa7, 0xe6, 0xa7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0x86, 0xee, 0xa6, 0xee, 0xa6, 0xe6, 0xa7, 0xee, 0xa7, 0xee,
0xa7, 0xee, 0xa8, 0xe6, 0x6c, 0xd6, 0x5f, 0xef, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3c, 0xe7, 0x3c, 0xe7, 0x3d, 0xe7, 0x1d, 0xe7, 0x3d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf,
0x1d, 0xdf, 0x3c, 0xe7, 0x1d, 0xdf, 0x1c, 0xe7, 0x3c, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xe7, 0x1c, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7,
0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x5e, 0xd7, 0x5d, 0xdf, 0x5e, 0xdf, 0x5d, 0xd7, 0x8d, 0xdd, 0xac, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xac, 0xe5,
0x8c, 0xdd, 0xac, 0xe5, 0xac, 0xdd, 0xad, 0xe5, 0xce, 0xdd, 0xce, 0xdd, 0x19, 0xdf, 0xbf, 0xe7, 0x9f, 0xe7, 0xdb, 0xc6, 0xf1, 0x5b, 0x90, 0x53, 0x90, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0x12, 0x5c,
0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x32, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64,
0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74,
0xd6, 0x6c, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b,
0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b,
0x2e, 0x44, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x3c, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x2b, 0x33,
0x8d, 0x3b, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x32, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0x88, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a,
0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22,
0x48, 0x22, 0xc9, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xc9, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xc9, 0x2a, 0x48, 0x2a, 0x48, 0x22,
0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11,
0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0xe4, 0x08, 0xc5, 0x08, 0xc9, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x11, 0x88, 0x19,
0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x89, 0x19, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x89, 0x11, 0xa9, 0x11,
0xa8, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa8, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x19, 0x89, 0x11, 0x46, 0x09, 0x05, 0x11, 0x25, 0x09, 0x06, 0x09, 0x0c, 0x5b,
0x58, 0xce, 0x5d, 0xf7, 0xdf, 0xff, 0xfe, 0xff, 0x48, 0xde, 0x88, 0xe6, 0xc7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0x85, 0xee, 0xa6, 0xe6, 0xa5, 0xee, 0x85, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa8, 0xee,
0xa7, 0xe6, 0x26, 0xd6, 0x3c, 0xe7, 0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0xdb, 0xd6, 0x9b, 0xd6, 0x3c, 0xdf, 0x3d, 0xe7, 0x1d, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7,
0x3c, 0xe7, 0x1d, 0xdf, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xdf, 0x1d, 0xd7,
0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x1d, 0xdf, 0x3e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf,
0x3d, 0xd7, 0x3d, 0xd7, 0xfd, 0xd6, 0x3d, 0xdf, 0x3d, 0xdf, 0xfc, 0xce, 0x5e, 0xdf, 0x5d, 0xd7, 0x5d, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x97, 0xd6, 0xad, 0xdd, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5,
0x8b, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xcd, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0xdf, 0xe7, 0xbf, 0xe7, 0x5d, 0xd7, 0xb7, 0xa5, 0x6f, 0x4b, 0x90, 0x53, 0x8f, 0x53, 0xf2, 0x53, 0x12, 0x54,
0x12, 0x54, 0x12, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x73, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x95, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xd5, 0x6c, 0xd5, 0x74,
0xd5, 0x74, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x4f, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0x0f, 0x3c, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4b, 0x33,
0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0xce, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b,
0x0b, 0x2b, 0x0b, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x2b, 0x8c, 0x3b, 0x0b, 0x2b, 0xea, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a,
0xc9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x4b, 0x33, 0xaa, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0x68, 0x22,
0x07, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22,
0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11,
0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11,
0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xa8, 0x11, 0x89, 0x19, 0xa8, 0x11, 0x88, 0x19, 0xa8, 0x11,
0x88, 0x19, 0xa8, 0x11, 0x89, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11,
0x88, 0x19, 0x89, 0x09, 0xa8, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x89, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x11,
0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x11, 0x89, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0xe6, 0x08, 0x13, 0xa5,
0xfb, 0xe6, 0xbe, 0xf7, 0xdf, 0xff, 0x36, 0xef, 0x68, 0xde, 0xa7, 0xee, 0xa7, 0xee, 0xa6, 0xee, 0xa5, 0xee, 0xa5, 0xee, 0x86, 0xe6, 0x86, 0xee, 0xa6, 0xe6, 0xa6, 0xee, 0xa7, 0xee, 0xa8, 0xe6,
0x68, 0xe6, 0xb3, 0xde, 0x3e, 0xe7, 0x3c, 0xef, 0x3c, 0xe7, 0x3c, 0xe7, 0x1d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x18, 0xbe, 0xfc, 0xde, 0x1c, 0xe7, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xe7, 0x3c, 0xe7,
0x1c, 0xdf, 0x1d, 0xe7, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7, 0x1c, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xe7, 0x3d, 0xdf, 0x3c, 0xdf, 0x3d, 0xe7, 0x1d, 0xdf,
0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x3c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf,
0x3d, 0xd7, 0x7b, 0xc6, 0x5d, 0xdf, 0x3d, 0xd7, 0x5e, 0xd7, 0x5e, 0xdf, 0x3e, 0xdf, 0x3e, 0xd7, 0x5e, 0xdf, 0x5d, 0xdf, 0x5d, 0xd7, 0x7f, 0xdf, 0xcf, 0xd5, 0xcd, 0xe5, 0xac, 0xe5, 0xac, 0xe5,
0xac, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xce, 0xdd, 0x1a, 0xdf, 0xbf, 0xe7, 0x9e, 0xdf, 0x9b, 0xc6, 0x90, 0x53, 0x90, 0x53, 0x90, 0x53, 0xd1, 0x53, 0xf2, 0x53,
0x12, 0x5c, 0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x33, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x64, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x53, 0x64, 0x54, 0x64, 0x73, 0x64,
0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x95, 0x6c, 0x94, 0x64, 0xb4, 0x64, 0xb4, 0x6c, 0xb4, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c, 0xd5, 0x6c, 0xd5, 0x6c,
0xd5, 0x6c, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x8c, 0x3b,
0x4c, 0x33, 0x0a, 0x2b, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0xea, 0x32,
0xea, 0x32, 0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x22,
0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x28, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x27, 0x22,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x68, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x48, 0x22, 0xca, 0x32, 0x68, 0x2a, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x48, 0x22, 0xca, 0x32, 0x68, 0x2a, 0x27, 0x22, 0xc6, 0x19, 0x27, 0x22,
0x48, 0x22, 0xca, 0x32, 0x68, 0x2a, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11,
0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09,
0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x25, 0x11, 0x26, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xa9, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x89, 0x11, 0x88, 0x11, 0x88, 0x11, 0xa9, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11,
0x89, 0x11, 0x88, 0x11, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x19, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x11,
0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x11, 0x88, 0x19, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x11, 0x47, 0x11, 0x26, 0x09, 0x25, 0x09, 0xe6, 0x10, 0x2a, 0x3a, 0x38, 0xc6,
0x5c, 0xef, 0xdf, 0xff, 0xff, 0xff, 0x6a, 0xde, 0xa7, 0xee, 0xa7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0x85, 0xee, 0x86, 0xe6, 0xc5, 0xee, 0xa5, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0x87, 0xe6,
0x48, 0xde, 0x3e, 0xe7, 0x5d, 0xe7, 0x3d, 0xef, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x3c, 0xe7, 0x5d, 0xe7, 0x3c, 0xe7, 0x1d, 0xdf, 0x1d, 0xe7, 0x1d, 0xdf, 0x1c, 0xe7, 0x1c, 0xdf,
0x1d, 0xe7, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xe7, 0x1c, 0xdf, 0x1d, 0xe7, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xe7, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf,
0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3d, 0xdf,
0xbb, 0xce, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x5d, 0xd7, 0x3d, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf, 0x3e, 0xdf, 0x3c, 0xd7, 0xad, 0xdd, 0xad, 0xe5, 0xac, 0xe5,
0xab, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xac, 0xe5, 0xcd, 0xe5, 0xee, 0xdd, 0xcf, 0xd5, 0xdf, 0xe7, 0xbf, 0xe7, 0x1c, 0xd7, 0x35, 0x8d, 0x6f, 0x4b, 0x8f, 0x53, 0x90, 0x53, 0xf2, 0x53,
0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x54, 0x12, 0x54, 0x12, 0x54, 0x12, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x73, 0x5c, 0x54, 0x64,
0x73, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64, 0x95, 0x6c, 0x94, 0x64, 0x94, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c,
0xd5, 0x6c, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b,
0xac, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x2f, 0x64, 0x99, 0xc6, 0x9e, 0xef, 0xff, 0xff, 0x9e, 0xef, 0xb6, 0xad, 0xad, 0x4b, 0x8c, 0x33, 0x2f, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x44,
0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x34, 0x8d, 0x9e, 0xef, 0x6c, 0x3b, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x32,
0x4c, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x75, 0x9d, 0x7d, 0xef,
0x68, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33,
0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x88, 0x2a,
0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x28, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x68, 0x2a,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0xc9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22,
0xa9, 0x2a, 0x2b, 0x33, 0xc9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a,
0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x69, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33,
0x68, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0xc9, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x2a,
0xca, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11,
0x47, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0xe4, 0x08, 0xc4, 0x08, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x09, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x89, 0x19, 0xa8, 0x11, 0x89, 0x11, 0x88, 0x11, 0x89, 0x11,
0x88, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x92, 0x94, 0xba, 0xd6,
0xbe, 0xff, 0xde, 0xff, 0x59, 0xf7, 0x46, 0xde, 0xa7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0x86, 0xee, 0x85, 0xee, 0xa5, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0xa7, 0xe6, 0x48, 0xde,
0xf9, 0xe6, 0x5d, 0xe7, 0x3d, 0xef, 0x3d, 0xe7, 0x3c, 0xe7, 0x3c, 0xe7, 0x1d, 0xe7, 0x3d, 0xe7, 0x1d, 0xe7, 0x1d, 0xe7, 0x1d, 0xdf, 0x3d, 0xe7, 0x1c, 0xdf, 0x3c, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf,
0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x3c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf,
0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xe7, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xd7, 0x1d, 0xd7, 0x1c, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf,
0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x1e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1e, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x1d, 0xd7,
0x7b, 0xc6, 0x3e, 0xdf, 0x3e, 0xd7, 0x3e, 0xdf, 0x3e, 0xdf, 0x3e, 0xd7, 0x3e, 0xdf, 0xfc, 0xce, 0x7b, 0xc6, 0x3e, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf, 0x12, 0xd6, 0xad, 0xe5, 0xac, 0xe5,
0xac, 0xe5, 0xac, 0xdd, 0xab, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xae, 0xdd, 0x5c, 0xe7, 0xdf, 0xe7, 0x7e, 0xdf, 0x7a, 0xbe, 0x4f, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0xf1, 0x53,
0xf1, 0x5b, 0xf2, 0x5b, 0x12, 0x54, 0x12, 0x54, 0x12, 0x5c, 0x13, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64,
0x54, 0x64, 0x53, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x6c, 0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0x95, 0x64, 0xb4, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c, 0xb5, 0x6c, 0xb4, 0x6c,
0xb5, 0x6c, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x2f, 0x64, 0xdf, 0xff, 0x9e, 0xef, 0xf7, 0xad, 0xb5, 0x9d, 0x99, 0xc6, 0xff, 0xff, 0x54, 0x95, 0x2f, 0x44, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b,
0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x17, 0xae, 0xff, 0xff, 0x4c, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33,
0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xeb, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xb6, 0xad, 0xff, 0xff,
0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x2b, 0x0a, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32,
0xca, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0x2b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a,
0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x68, 0x22, 0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x07, 0x22, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22,
0xe6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11,
0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0xc4, 0x08, 0xa9, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x11, 0x88, 0x19,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0xa8, 0x11,
0x89, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x11, 0x89, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x88, 0x11, 0x88, 0x11, 0x67, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0xa8, 0x21, 0x95, 0xb5, 0x3c, 0xe7,
0xde, 0xff, 0xff, 0xff, 0x8e, 0xe6, 0x88, 0xe6, 0xa7, 0xee, 0xa6, 0xee, 0xa6, 0xe6, 0x86, 0xee, 0xa5, 0xee, 0xa5, 0xee, 0x86, 0xe6, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0x88, 0xe6, 0x6b, 0xd6,
0x3d, 0xef, 0x3d, 0xe7, 0x3c, 0xe7, 0x3d, 0xe7, 0x1d, 0xe7, 0x3d, 0xe7, 0xf8, 0xbd, 0x1d, 0xdf, 0x1c, 0xe7, 0x1c, 0xdf, 0x3d, 0xe7, 0x1c, 0xdf, 0x1d, 0xdf, 0x3c, 0xe7, 0x1c, 0xdf, 0x1c, 0xe7,
0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x3d, 0xdf, 0x1c, 0xe7, 0x1d, 0xe7, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xe7, 0x3c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x5e, 0xdf, 0x36, 0xb5,
0x5d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x5d, 0xdf, 0xbb, 0xc6, 0x7f, 0xdf, 0x3d, 0xdf, 0x5d, 0xd7, 0x5d, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0xad, 0xd5, 0xac, 0xe5,
0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xad, 0xe5, 0xcd, 0xdd, 0xee, 0xdd, 0x11, 0xd6, 0xbf, 0xe7, 0xbf, 0xe7, 0xfc, 0xce, 0x52, 0x74, 0x8f, 0x53, 0x70, 0x4b, 0xb0, 0x53,
0xf2, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x54, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x64, 0x32, 0x64, 0x13, 0x64, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64,
0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x53, 0x64, 0x94, 0x64, 0x74, 0x64, 0x94, 0x64, 0x74, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0x94, 0x64, 0x95, 0x6c, 0xb4, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c,
0xb5, 0x6c, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x79, 0xc6, 0xdf, 0xff, 0x8d, 0x4b, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0xee, 0x4b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xb6, 0xad, 0xff, 0xff, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33,
0xc9, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x32, 0x2b, 0x33, 0xea, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xb6, 0xa5, 0xff, 0xff,
0x0b, 0x33, 0xc9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x2a,
0x27, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22,
0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x48, 0x22,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x28, 0x22,
0x27, 0x22, 0x48, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0xca, 0x32, 0x89, 0x2a,
0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09,
0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11,
0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0x89, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x89, 0x11, 0x88, 0x19, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0xc5, 0x00, 0x4d, 0x63, 0x58, 0xce, 0x7d, 0xf7,
0xdf, 0xff, 0xde, 0xff, 0x27, 0xd6, 0x87, 0xee, 0xc7, 0xee, 0xa6, 0xee, 0xa6, 0xe6, 0x85, 0xee, 0xa5, 0xee, 0xa5, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0xa7, 0xe6, 0x47, 0xde, 0x1b, 0xe7,
0x5d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x1c, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xe7, 0x1d, 0xdf, 0x3c, 0xe7, 0x1d, 0xe7, 0x1d, 0xdf, 0x3d, 0xdf,
0x1c, 0xdf, 0x1d, 0xe7, 0x3c, 0xdf, 0x1c, 0xe7, 0x1d, 0xdf, 0x1c, 0xe7, 0x3d, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf, 0x3c, 0xdf, 0x1d, 0xe7, 0x1d, 0xe7, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3e, 0xe7, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf,
0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x36, 0xbd, 0xdc, 0xce,
0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x5d, 0xd7, 0x3d, 0xd7, 0x5d, 0xdf, 0x3d, 0xd7, 0x5e, 0xd7, 0x3d, 0xdf, 0x5d, 0xdf, 0x3e, 0xd7, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xd7, 0x34, 0xd6, 0xad, 0xe5,
0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xcd, 0xe5, 0xad, 0xd5, 0xbf, 0xe7, 0xdf, 0xe7, 0x5d, 0xd7, 0xf8, 0xad, 0x4f, 0x4b, 0x8f, 0x53, 0x6f, 0x4b,
0xf1, 0x53, 0xd2, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x53, 0x11, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x32, 0x5c, 0x32, 0x64, 0x33, 0x64, 0x33, 0x5c, 0x53, 0x5c,
0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0xb4, 0x6c, 0xb5, 0x6c,
0xb5, 0x6c, 0xac, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b,
0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x9e, 0xef, 0x99, 0xc6, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0a, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0xd6, 0xad, 0xff, 0xff, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0x4b, 0x33, 0xce, 0x3b, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xb6, 0xa5, 0xff, 0xff,
0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x88, 0x2a, 0xca, 0x2a, 0x4b, 0x33, 0xea, 0x2a,
0x89, 0x2a, 0x27, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x89, 0x2a,
0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xc9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x4b, 0x33, 0xaa, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22,
0x48, 0x22, 0xca, 0x32, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xea, 0x32, 0x68, 0x2a, 0x48, 0x22,
0x68, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11,
0x47, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x11, 0x05, 0x09, 0xc4, 0x08, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x89, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0xe5, 0x00, 0x54, 0xad, 0xda, 0xde, 0xbd, 0xff,
0xff, 0xff, 0xf3, 0xee, 0x67, 0xde, 0xc8, 0xee, 0xc6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa5, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0x88, 0xe6, 0x6d, 0xde, 0x3e, 0xe7,
0x3c, 0xe7, 0x3c, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x3d, 0xe7, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xe7, 0x1d, 0xe7, 0x1d, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x1c, 0xdf, 0xfc, 0xe6, 0x1c, 0xdf,
0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xe7,
0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf,
0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x7a, 0xce, 0x36, 0xbd, 0x5d, 0xdf,
0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x5d, 0xdf, 0x3d, 0xdf, 0x5e, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0x7a, 0xbe, 0x3e, 0xdf, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf, 0x8c, 0xdd,
0xac, 0xe5, 0xac, 0xe5, 0xab, 0xe5, 0x8c, 0xe5, 0x8c, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xcd, 0xe5, 0xce, 0xdd, 0xd8, 0xde, 0xbf, 0xe7, 0x9e, 0xe7, 0xbb, 0xc6, 0xb0, 0x53, 0x70, 0x4b, 0x90, 0x4b,
0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xf1, 0x53, 0xf2, 0x53, 0xf2, 0x5b, 0xf2, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x13, 0x5c, 0x33, 0x5c, 0x32, 0x5c, 0x33, 0x64, 0x33, 0x64,
0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64, 0x54, 0x64, 0x53, 0x64, 0x74, 0x6c, 0x94, 0x64, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x95, 0x6c, 0xb4, 0x6c, 0xb5, 0x6c,
0x94, 0x6c, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44,
0xff, 0xff, 0xf7, 0xad, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x4b, 0xda, 0xce, 0xdf, 0xff, 0xdf, 0xff, 0xba, 0xce, 0xee, 0x4b, 0x4c, 0x33,
0x6c, 0x33, 0x70, 0x54, 0xba, 0xce, 0x9e, 0xef, 0xff, 0xff, 0xdf, 0xff, 0xda, 0xce, 0xb1, 0x64, 0x6c, 0x33, 0x4c, 0x33, 0xf7, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, 0xb6, 0x4b, 0x33,
0x4c, 0x33, 0xd6, 0xad, 0xdf, 0xff, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x33, 0xcd, 0x4b, 0x9a, 0xce, 0xdf, 0xff, 0xdf, 0xff, 0xba, 0xce, 0x8d, 0x4b, 0x4c, 0x33, 0xea, 0x2a, 0xb6, 0xad, 0xff, 0xff,
0x0b, 0x33, 0x0a, 0x2b, 0x8d, 0x4b, 0x59, 0xbe, 0xdf, 0xf7, 0xff, 0xff, 0x3d, 0xe7, 0x55, 0x9d, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0xea, 0x2a, 0x8c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x2b, 0x33,
0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a,
0xaa, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33,
0xaa, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x68, 0x22,
0x27, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x68, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x68, 0x22, 0x27, 0x22, 0xe6, 0x21, 0xe7, 0x21, 0x07, 0x22,
0x07, 0x22, 0x48, 0x22, 0x27, 0x22, 0x26, 0x11, 0x46, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11,
0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11,
0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xa4, 0x08, 0xa9, 0x19, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x19, 0x88, 0x11, 0x89, 0x19,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09, 0xe8, 0x39, 0x17, 0xc6, 0x5c, 0xef, 0xdf, 0xff,
0xde, 0xff, 0x49, 0xde, 0xa8, 0xee, 0xc8, 0xee, 0xa7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0xa7, 0xee, 0x45, 0xde, 0x19, 0xe7, 0x3d, 0xef,
0x3d, 0xef, 0x3d, 0xe7, 0x3c, 0xe7, 0x1d, 0xe7, 0xba, 0xd6, 0x3c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xe6, 0x1d, 0xe7, 0x1c, 0xe7, 0xfd, 0xde,
0x1c, 0xdf, 0x1d, 0xe7, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x1d, 0xdf, 0xfd, 0xe6, 0x1c, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf,
0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7,
0x3d, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x1e, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x3e, 0xd7, 0xaf, 0xab, 0x5e, 0xd7, 0x3d, 0xdf,
0x3e, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x5d, 0xdf, 0x5d, 0xd7, 0x5e, 0xdf, 0x5e, 0xdf, 0x54, 0xd6,
0xcd, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xad, 0xd5, 0xdf, 0xe7, 0xbf, 0xe7, 0x1c, 0xd7, 0xb4, 0x7c, 0x6f, 0x4b, 0x6f, 0x4b,
0xb0, 0x53, 0xd1, 0x53, 0xd2, 0x53, 0xf2, 0x53, 0xd1, 0x5b, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x53, 0x12, 0x54, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x5c,
0x33, 0x64, 0x33, 0x64, 0x53, 0x64, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x73, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x6c, 0x74, 0x6c, 0x74, 0x64, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c, 0x94, 0x64,
0x94, 0x6c, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0xff, 0xff, 0xd6, 0xad, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x9e, 0xef, 0x9e, 0xef, 0x55, 0x9d, 0x75, 0x9d, 0x9e, 0xef, 0x9e, 0xef, 0x8c, 0x3b,
0x4c, 0x33, 0xb6, 0xad, 0xff, 0xff, 0x18, 0xb6, 0x75, 0x9d, 0x95, 0x9d, 0x3d, 0xe7, 0xbf, 0xff, 0x6c, 0x4b, 0x2b, 0x33, 0xb6, 0xad, 0xff, 0xff, 0x75, 0x9d, 0x54, 0x9d, 0xce, 0x5b, 0x0b, 0x33,
0xb2, 0x7c, 0xff, 0xff, 0x17, 0xb6, 0x54, 0x9d, 0xf3, 0x8c, 0xea, 0x32, 0x9e, 0xef, 0x7e, 0xef, 0x54, 0x9d, 0x54, 0x9d, 0x7e, 0xef, 0x7e, 0xef, 0xea, 0x32, 0x2b, 0x33, 0xb6, 0xad, 0xff, 0xff,
0xc9, 0x2a, 0xca, 0x2a, 0xfb, 0xde, 0x7d, 0xef, 0x54, 0x9d, 0x34, 0x9d, 0x58, 0xbe, 0xf7, 0xb5, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0xa9, 0x2a, 0x48, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a,
0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x07, 0x22,
0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x28, 0x22, 0x68, 0x22, 0x48, 0x22, 0x89, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x27, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x69, 0x2a, 0x47, 0x22, 0x07, 0x22, 0x27, 0x22,
0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x27, 0x11,
0x46, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x04, 0x11, 0xc5, 0x08, 0xa8, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11,
0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x19, 0x68, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x19, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19,
0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11,
0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x4e, 0x63, 0x79, 0xd6, 0x9e, 0xf7, 0xdf, 0xff,
0x7a, 0xf7, 0x48, 0xde, 0xa8, 0xe6, 0xc8, 0xee, 0xa7, 0xee, 0xa7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xc7, 0xee, 0x87, 0xe6, 0x6b, 0xde, 0x5f, 0xef, 0x3c, 0xe7,
0x3c, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x3c, 0xe7, 0x7a, 0xce, 0xd7, 0xbd, 0x3d, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0xfd, 0xe6, 0x1c, 0xdf, 0x1c, 0xdf, 0xfd, 0xde, 0x1c, 0xdf,
0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x1d, 0xd7, 0x1c, 0xdf, 0x1d, 0xe7, 0xfd, 0xde, 0x1d, 0xdf, 0x1c, 0xdf, 0xfd, 0xde, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3c, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7,
0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x3c, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x3c, 0xdf, 0x1d, 0xd7, 0x1d, 0xdf, 0x5e, 0xdf, 0x8f, 0xab, 0x7b, 0xc6, 0x3d, 0xdf, 0x1d, 0xd7,
0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3e, 0xd7, 0x3e, 0xdf, 0x3e, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0x3d, 0xd7,
0x6b, 0xdd, 0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0xac, 0xdd, 0xcd, 0xe5, 0xce, 0xdd, 0xbf, 0xef, 0xbf, 0xe7, 0x7e, 0xdf, 0x39, 0xb6, 0x4f, 0x4b, 0x6f, 0x4b,
0x6f, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53, 0xf2, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x53, 0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c,
0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64, 0x73, 0x64, 0x54, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x6c, 0x94, 0x6c, 0x94, 0x64, 0x94, 0x64, 0x94, 0x6c,
0x94, 0x64, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0xff, 0xff, 0xd6, 0xad, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x54, 0x95, 0xff, 0xff, 0x50, 0x64, 0x4c, 0x33, 0x2b, 0x33, 0x0f, 0x64, 0xff, 0xff, 0x95, 0x95,
0x8c, 0x3b, 0xd7, 0xad, 0xff, 0xff, 0x2b, 0x33, 0x6c, 0x3b, 0x0e, 0x44, 0x50, 0x64, 0xff, 0xff, 0x54, 0x9d, 0x0b, 0x33, 0xd6, 0xad, 0xff, 0xff, 0x8c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33,
0xd6, 0xad, 0xff, 0xff, 0x6c, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0x13, 0x8d, 0xff, 0xff, 0x90, 0x64, 0x4c, 0x33, 0xea, 0x32, 0xad, 0x5b, 0xff, 0xff, 0x13, 0x8d, 0xcd, 0x3b, 0xd6, 0xad, 0xff, 0xff,
0x89, 0x2a, 0xca, 0x2a, 0xff, 0xff, 0x38, 0xbe, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b,
0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a,
0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a,
0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4b, 0x33,
0xca, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x22,
0x89, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a,
0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x68, 0x22, 0xaa, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33,
0x68, 0x2a, 0x88, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0xea, 0x32, 0x68, 0x2a, 0x68, 0x22, 0x88, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x2a,
0xea, 0x32, 0x68, 0x22, 0x68, 0x2a, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09,
0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x09, 0x46, 0x11, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11,
0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xa8, 0x11, 0x68, 0x19, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11,
0x88, 0x19, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11,
0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11,
0x88, 0x19, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0xe4, 0x08, 0x13, 0xa5, 0x1c, 0xe7, 0xbe, 0xff, 0xff, 0xff,
0x16, 0xef, 0x29, 0xd6, 0x69, 0xe6, 0x88, 0xe6, 0xa8, 0xee, 0xa7, 0xee, 0xc7, 0xee, 0xa6, 0xee, 0xa6, 0xee, 0xa7, 0xee, 0xc6, 0xee, 0xa8, 0xee, 0x68, 0xde, 0xd6, 0xde, 0x3d, 0xe7, 0x3d, 0xe7,
0x3d, 0xe7, 0x1c, 0xe7, 0x1d, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xe7, 0x1c, 0xe7, 0xfd, 0xe6, 0xfc, 0xe6, 0xfc, 0xe6, 0xfd, 0xe6, 0x1d, 0xdf, 0x1c, 0xdf, 0xfd, 0xde, 0x1c, 0xdf, 0x1c, 0xdf,
0x1d, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x3c, 0xdf, 0x1c, 0xdf,
0x1c, 0xdf, 0x1c, 0xdf, 0x1d, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x3c, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xdf, 0x1c, 0xdf,
0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x5d, 0xd7, 0x36, 0xbd, 0x72, 0xb4, 0x5d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x3d, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x3e, 0xd7, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x5d, 0xdf, 0x3d, 0xd7, 0x5e, 0xdf, 0x5d, 0xd7, 0x5e, 0xdf,
0x11, 0xd6, 0xad, 0xe5, 0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0x75, 0xde, 0xbf, 0xe7, 0xbe, 0xe7, 0xba, 0xc6, 0x90, 0x53, 0x6f, 0x4b,
0x90, 0x4b, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53, 0xf1, 0x53, 0xf2, 0x53, 0xf2, 0x5b, 0x12, 0x54, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x13, 0x5c, 0x12, 0x5c,
0x33, 0x5c, 0x52, 0x64, 0x33, 0x64, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x54, 0x5c, 0x53, 0x64, 0x74, 0x64, 0x53, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x6c, 0x94, 0x6c, 0x95, 0x6c,
0x94, 0x64, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xff, 0xff, 0xf7, 0xad, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x37, 0xae, 0xff, 0xff, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xff, 0xff, 0xf7, 0xad,
0x6c, 0x33, 0xf7, 0xad, 0xff, 0xff, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0xff, 0xff, 0xd6, 0xad, 0x6c, 0x33, 0x37, 0xae, 0xff, 0xff, 0x4c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x17, 0xae, 0xff, 0xff, 0x2b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0xd6, 0xad, 0xff, 0xff, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xff, 0xff, 0x17, 0xae, 0x2b, 0x33, 0xb6, 0xad, 0xff, 0xff,
0xca, 0x2a, 0x0b, 0x33, 0x1c, 0xdf, 0xdf, 0xff, 0x18, 0xb6, 0xef, 0x5b, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33,
0xca, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a,
0x6c, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x3b, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x4c, 0x33, 0xa9, 0x2a,
0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a,
0x27, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0xe6, 0x21, 0x07, 0x22, 0x27, 0x22, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22,
0xe7, 0x21, 0x07, 0x22, 0x07, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11,
0x26, 0x09, 0x47, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11,
0x46, 0x09, 0x46, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x89, 0x19, 0x87, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11,
0x67, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x19, 0x88, 0x11, 0x87, 0x11, 0x88, 0x11, 0x67, 0x11,
0x88, 0x11, 0x87, 0x19, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11, 0x88, 0x19, 0x87, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x67, 0x11, 0x88, 0x11, 0x88, 0x11,
0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x87, 0x21, 0x17, 0xc6, 0x5d, 0xef, 0xde, 0xff, 0xde, 0xff,
0xdf, 0xff, 0xbd, 0xff, 0xf5, 0xee, 0x6b, 0xde, 0x46, 0xde, 0x88, 0xde, 0xa7, 0xe6, 0xa7, 0xee, 0xa7, 0xee, 0xa7, 0xee, 0xc8, 0xee, 0xa8, 0xe6, 0x28, 0xd6, 0x3d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7,
0x1c, 0xe7, 0x3c, 0xe7, 0x1d, 0xdf, 0x1d, 0xe7, 0x1c, 0xe7, 0x1c, 0xe7, 0xfd, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xe6, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xe6, 0x1c, 0xe7,
0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xe6, 0x1c, 0xe7, 0x1c, 0xe7, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xe7, 0x1c, 0xdf, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0x1d, 0xdf, 0xfc, 0xde, 0x1d, 0xdf,
0xfd, 0xde, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0xfd, 0xd6, 0xfd, 0xde, 0x1c, 0xd7, 0x1d, 0xd7, 0xfc, 0xd6, 0x1d, 0xd7, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xdf, 0x1c, 0xdf,
0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x9b, 0xc6, 0x8b, 0xaa, 0x3d, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf,
0x1d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x3e, 0xdf, 0xbb, 0xc6, 0x9b, 0xc6, 0x5d, 0xdf, 0x5e, 0xdf, 0x5e, 0xdf,
0xfb, 0xd6, 0x8b, 0xdd, 0xac, 0xe5, 0xab, 0xe5, 0x8b, 0xe5, 0x8b, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xce, 0xe5, 0xef, 0xd5, 0xdf, 0xe7, 0xbf, 0xe7, 0x1c, 0xd7, 0x93, 0x7c, 0x4f, 0x4b,
0x6f, 0x4b, 0x90, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf1, 0x5b, 0xf1, 0x53, 0xf2, 0x53, 0x12, 0x5c, 0xf2, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c,
0x12, 0x5c, 0x32, 0x64, 0x33, 0x64, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64, 0x73, 0x64, 0x53, 0x64, 0x74, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x6c, 0x94, 0x6c,
0x94, 0x64, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33,
0xff, 0xff, 0xf7, 0xad, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xb6, 0xad, 0xff, 0xff, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0xff, 0xff, 0xd6, 0xad,
0x4b, 0x33, 0xd6, 0xad, 0xff, 0xff, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0xff, 0xff, 0xd7, 0xad, 0x2b, 0x33, 0xb6, 0xa5, 0xff, 0xff, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33,
0xb6, 0xad, 0xff, 0xff, 0x0b, 0x33, 0xea, 0x32, 0x4b, 0x33, 0xb6, 0xad, 0xff, 0xff, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xff, 0xff, 0x96, 0xa5, 0xca, 0x2a, 0xb6, 0xad, 0xff, 0xff,
0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x43, 0xf7, 0xb5, 0xdf, 0xff, 0xff, 0xff, 0xfb, 0xde, 0x4c, 0x43, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xc9, 0x2a, 0x89, 0x2a,
0x27, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a,
0x89, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x48, 0x22,
0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a,
0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x69, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a,
0x89, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22,
0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09,
0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11,
0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11,
0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xa9, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11,
0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x19, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x19, 0x68, 0x11,
0x88, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x19, 0x87, 0x11, 0x88, 0x19, 0x68, 0x11, 0x88, 0x11,
0x88, 0x19, 0x68, 0x11, 0x68, 0x19, 0x88, 0x11, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x05, 0x01, 0x4e, 0x63, 0x79, 0xd6, 0x9d, 0xf7, 0xdf, 0xff, 0x7a, 0xe7,
0x48, 0x7d, 0x92, 0xbe, 0x9d, 0xef, 0x9e, 0xf7, 0x39, 0xef, 0x4b, 0xde, 0x46, 0xde, 0x88, 0xe6, 0x88, 0xe6, 0xa8, 0xee, 0xc8, 0xee, 0x87, 0xe6, 0x92, 0xde, 0x5e, 0xe7, 0x3c, 0xe7, 0x3d, 0xe7,
0x1d, 0xe7, 0x3c, 0xe7, 0x7a, 0xce, 0x1c, 0xe7, 0x1c, 0xdf, 0xfd, 0xde, 0x1c, 0xdf, 0x1d, 0xe7, 0x1c, 0xe7, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xe6, 0x1c, 0xdf,
0xfc, 0xde, 0xfc, 0xe6, 0x1d, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0x1d, 0xdf, 0xfd, 0xde, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0xfd, 0xde, 0x1c, 0xdf, 0x1d, 0xdf,
0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0xfd, 0xd6, 0x1c, 0xdf, 0x3d, 0xdf, 0x3d, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xd7,
0x1d, 0xdf, 0x1c, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1c, 0xd7, 0x3e, 0xd7, 0x2a, 0xaa, 0x19, 0xc6, 0x1d, 0xdf, 0x3d, 0xd7, 0x1d, 0xdf, 0x1d, 0xd7,
0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x1d, 0xd7, 0x3e, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x1e, 0xdf, 0x3d, 0xdf, 0xfc, 0xd6, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xdf, 0x5d, 0xd7,
0x7f, 0xdf, 0x8d, 0xdd, 0xcc, 0xe5, 0xac, 0xe5, 0x8b, 0xe5, 0xab, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xce, 0xdd, 0xbf, 0xe7, 0xbf, 0xe7, 0x5d, 0xdf, 0xd8, 0xa5, 0x6f, 0x4b,
0x4f, 0x4b, 0x6f, 0x4b, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xf2, 0x53, 0xf1, 0x53, 0xf1, 0x5b, 0xf2, 0x53, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x54, 0x12, 0x5c,
0x12, 0x5c, 0x33, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x33, 0x64, 0x53, 0x64, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x5c, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64, 0x74, 0x64, 0x74, 0x64, 0x94, 0x64,
0x94, 0x64, 0xac, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0xdf, 0xff, 0x58, 0xb6, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xd7, 0xad, 0xff, 0xff, 0x4b, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0x8d, 0x3b, 0xff, 0xff, 0xb6, 0xad,
0x4b, 0x33, 0xd7, 0xad, 0xff, 0xff, 0x8c, 0x33, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xff, 0xff, 0x37, 0xae, 0x8c, 0x33, 0xd6, 0xad, 0xff, 0xff, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x44, 0x6c, 0x33,
0xb6, 0xad, 0xff, 0xff, 0x0b, 0x2b, 0x4b, 0x33, 0xee, 0x3b, 0xd7, 0xad, 0xff, 0xff, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0xff, 0xff, 0xb6, 0xad, 0xa9, 0x2a, 0xb6, 0xa5, 0xff, 0xff,
0xcd, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x13, 0x8d, 0xdf, 0xff, 0x3c, 0xe7, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xaa, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x89, 0x2a, 0xa9, 0x2a,
0x4c, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22,
0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x07, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0x07, 0x22, 0x69, 0x22, 0x89, 0x2a,
0x4b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x07, 0x22,
0x68, 0x2a, 0xea, 0x32, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x2a,
0x88, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11,
0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11,
0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x46, 0x19, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09,
0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0xc4, 0x08, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11,
0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x19, 0x88, 0x11, 0x68, 0x19, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x68, 0x19, 0x68, 0x11, 0x88, 0x11,
0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x67, 0x11, 0x88, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x51, 0x8c, 0xba, 0xde, 0xde, 0xf7, 0xde, 0xff, 0xb3, 0xbe,
0xeb, 0x8d, 0xca, 0x8d, 0xc9, 0x8d, 0x50, 0xae, 0xf9, 0xd6, 0x9f, 0xef, 0x3a, 0xef, 0x8e, 0xe6, 0x69, 0xde, 0x67, 0xe6, 0x89, 0xe6, 0x48, 0xde, 0x3b, 0xe7, 0x1c, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7,
0x1d, 0xdf, 0x1d, 0xe7, 0x9b, 0xd6, 0xdb, 0xd6, 0x1c, 0xe7, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xe6, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0xfd, 0xde,
0xfc, 0xde, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xe6, 0xfc, 0xde, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf,
0x1c, 0xe7, 0xfc, 0xde, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xd7, 0x1c, 0xdf, 0x1d, 0xdf, 0xfd, 0xd6, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf,
0x1d, 0xd7, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x1c, 0xd7, 0x3e, 0xdf, 0xaf, 0xab, 0xf0, 0xab, 0x5e, 0xdf, 0x3d, 0xd7, 0x1c, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7,
0x1d, 0xd7, 0x1d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x1e, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x3e, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf,
0x5d, 0xdf, 0x96, 0xd6, 0x8c, 0xe5, 0xac, 0xed, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0xee, 0xe5, 0xce, 0xdd, 0x75, 0xd6, 0xdf, 0xef, 0x9e, 0xe7, 0x59, 0xbe, 0x2e, 0x43,
0x6f, 0x4b, 0x6f, 0x4b, 0xb1, 0x4b, 0xb1, 0x4b, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf2, 0x5b, 0xf2, 0x53, 0xf1, 0x5b, 0xf2, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c,
0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x32, 0x5c, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x54, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64, 0x73, 0x64,
0x74, 0x6c, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44,
0x99, 0xc6, 0xdf, 0xff, 0x0e, 0x4c, 0x4c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xee, 0x4b, 0x8c, 0x3b, 0x55, 0x8d, 0xff, 0xff, 0x50, 0x64, 0x2e, 0x44, 0x8c, 0x33, 0x50, 0x64, 0xff, 0xff, 0x34, 0x8d,
0x6c, 0x33, 0x38, 0xae, 0xff, 0xff, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xff, 0xff, 0xd7, 0xad, 0x6c, 0x33, 0xd7, 0xad, 0xff, 0xff, 0x4c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4c, 0x33,
0xf7, 0xad, 0xff, 0xff, 0x4b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x33, 0x8d, 0xff, 0xff, 0xef, 0x5b, 0x4b, 0x33, 0xee, 0x3b, 0x0f, 0x5c, 0xff, 0xff, 0x34, 0x95, 0xea, 0x2a, 0xb6, 0xad, 0xff, 0xff,
0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x17, 0xb6, 0xff, 0xff, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xca, 0x2a, 0xaa, 0x2a,
0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x4c, 0x33,
0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xaa, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33,
0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a,
0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x27, 0x22, 0x27, 0x22,
0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09,
0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11,
0x46, 0x09, 0x47, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11,
0x46, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11,
0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x25, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x87, 0x11,
0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x19, 0x67, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x19, 0x87, 0x11,
0x67, 0x19, 0x88, 0x11, 0x67, 0x11, 0x88, 0x19, 0x67, 0x11, 0x67, 0x11, 0x68, 0x19, 0x88, 0x11, 0x68, 0x19, 0x87, 0x11, 0x67, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x19, 0x68, 0x11, 0x87, 0x11,
0x67, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x87, 0x19, 0x67, 0x11, 0x88, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x67, 0x19, 0x54, 0xad, 0x3c, 0xe7, 0xde, 0xff, 0xdf, 0xff, 0x0d, 0x9e,
0x2b, 0x96, 0x2a, 0x96, 0x0a, 0x8e, 0x0a, 0x96, 0xea, 0x8d, 0xcb, 0x95, 0x95, 0xbe, 0x7f, 0xf7, 0x3b, 0xef, 0xd4, 0xe6, 0x08, 0xd6, 0x2a, 0xde, 0x3d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x1c, 0xe7,
0x1c, 0xe7, 0x1c, 0xdf, 0x1c, 0xe7, 0x1c, 0xe7, 0xfc, 0xe6, 0x1c, 0xe7, 0xfc, 0xe6, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xe7, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xe7,
0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0x1d, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0xfd, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde,
0xfd, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0xfd, 0xde, 0x1c, 0xd7, 0xfc, 0xde, 0x1c, 0xdf, 0x1c, 0xd7, 0xfd, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf, 0x1c, 0xd7,
0x1d, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x55, 0xb5, 0xe9, 0xb1, 0xfc, 0xce, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf,
0x3d, 0xd7, 0x3d, 0xd7, 0x1d, 0xdf, 0x3d, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xd7, 0x3e, 0xd7, 0x3d, 0xdf, 0x5e, 0xdf, 0x3e, 0xdf,
0x5e, 0xd7, 0x5f, 0xdf, 0x8c, 0xdd, 0xac, 0xe5, 0xcc, 0xe5, 0xac, 0xe5, 0xac, 0xe5, 0xcd, 0xe5, 0x8c, 0xdd, 0xcf, 0xd5, 0x75, 0xde, 0xdf, 0xe7, 0xbf, 0xe7, 0xbf, 0xe7, 0xdc, 0xce, 0xb1, 0x5b,
0x4f, 0x4b, 0x6f, 0x4b, 0x90, 0x4b, 0xb1, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xf1, 0x53, 0xf2, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x54,
0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x32, 0x64, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x64, 0x33, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x54, 0x64, 0x73, 0x64, 0x73, 0x64, 0x74, 0x64,
0x74, 0x64, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x0f, 0x5c, 0xdf, 0xff, 0x9e, 0xef, 0xf7, 0xad, 0x95, 0x9d, 0x79, 0xc6, 0xff, 0xff, 0x34, 0x8d, 0x4b, 0x33, 0x9e, 0xef, 0x9e, 0xef, 0x75, 0x9d, 0x75, 0x9d, 0x7e, 0xef, 0x9d, 0xef, 0x6c, 0x3b,
0x4c, 0x33, 0xb6, 0xad, 0xff, 0xff, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xff, 0xff, 0xd6, 0xad, 0x2b, 0x33, 0xb2, 0x7c, 0xff, 0xff, 0x79, 0xc6, 0x96, 0xa5, 0x50, 0x6c, 0x0a, 0x33,
0xb6, 0xad, 0xff, 0xff, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x7e, 0xef, 0x9e, 0xef, 0x55, 0x9d, 0x34, 0x9d, 0x7e, 0xef, 0x9e, 0xef, 0xea, 0x2a, 0x0b, 0x33, 0xb6, 0xad, 0xff, 0xff,
0xca, 0x2a, 0xea, 0x2a, 0xfb, 0xde, 0x59, 0xc6, 0x54, 0x9d, 0x96, 0xa5, 0xbf, 0xff, 0x9a, 0xce, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x28, 0x22,
0x68, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0xaa, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x88, 0x2a, 0x28, 0x22,
0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x48, 0x22, 0x68, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0xe7, 0x21, 0x48, 0x22,
0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11,
0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x09, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09,
0x27, 0x11, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11,
0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x88, 0x11, 0x67, 0x19,
0x68, 0x11, 0x68, 0x19, 0x88, 0x11, 0x68, 0x11, 0x87, 0x11, 0x88, 0x19, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11,
0x67, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x68, 0x11,
0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x87, 0x11, 0x88, 0x11, 0x68, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x09, 0x32, 0xf7, 0xc5, 0x7d, 0xef, 0xdf, 0xff, 0xdf, 0xff, 0xa9, 0x85,
0x2a, 0x96, 0x2a, 0x8e, 0x2a, 0x8e, 0x0a, 0x8e, 0x09, 0x8e, 0x09, 0x8e, 0xc9, 0x85, 0xa9, 0x85, 0x52, 0xb6, 0x1b, 0xd7, 0x5e, 0xe7, 0xf9, 0xde, 0x3d, 0xe7, 0x1c, 0xe7, 0x3d, 0xe7, 0x3d, 0xe7,
0x1c, 0xdf, 0x1d, 0xdf, 0xfc, 0xe6, 0x1c, 0xdf, 0xfc, 0xde, 0x5d, 0xef, 0x1d, 0xdf, 0x1c, 0xe7, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde,
0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1d, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0x1c, 0xd7, 0xfd, 0xde,
0x1c, 0xdf, 0x1c, 0xd7, 0xfc, 0xde, 0x1c, 0xdf, 0x1d, 0xdf, 0xfd, 0xd6, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1c, 0xdf, 0xfd, 0xde, 0x1d, 0xd7, 0x1c, 0xdf, 0xfd, 0xde, 0x1d, 0xd7, 0x1c, 0xdf,
0x1d, 0xdf, 0x1c, 0xd7, 0x1c, 0xdf, 0x1d, 0xdf, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xdf, 0x9b, 0xc6, 0x67, 0xa9, 0x97, 0xb5, 0x3d, 0xdf, 0x1c, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xd7,
0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3e, 0xd7, 0x3d, 0xdf, 0x7a, 0xc6, 0x3d, 0xdf, 0x3d, 0xd7,
0x3d, 0xdf, 0x5f, 0xdf, 0xd0, 0xd5, 0xcd, 0xe5, 0xad, 0xe5, 0xad, 0xe5, 0xad, 0xdd, 0xcf, 0xd5, 0xd8, 0xde, 0x9f, 0xe7, 0xdb, 0xd6, 0x8e, 0xab, 0xdf, 0xef, 0xdf, 0xe7, 0x1c, 0xcf, 0xd4, 0x8c,
0x4f, 0x4b, 0x6f, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd2, 0x5b, 0xd1, 0x53, 0xf2, 0x53, 0xf2, 0x5b,
0xf2, 0x5b, 0x12, 0x54, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x64, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x54, 0x64, 0x53, 0x64, 0x73, 0x64,
0x74, 0x64, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x2f, 0x5c, 0x79, 0xc6, 0x9e, 0xf7, 0xff, 0xff, 0x9e, 0xef, 0xb6, 0xad, 0xce, 0x4b, 0x8c, 0x3b, 0x70, 0x54, 0xdb, 0xd6, 0xdf, 0xff, 0xdf, 0xff, 0xba, 0xce, 0xee, 0x4b, 0x0e, 0x44,
0x8c, 0x3b, 0x95, 0x9d, 0x9e, 0xef, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x7e, 0xef, 0x55, 0x9d, 0x0b, 0x33, 0x6b, 0x33, 0xd6, 0xa5, 0xdf, 0xff, 0xff, 0xff, 0xb6, 0xad, 0x0b, 0x33,
0x95, 0x9d, 0x9e, 0xef, 0x6c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0x0a, 0x33, 0xad, 0x4b, 0xdb, 0xd6, 0xdf, 0xff, 0xdf, 0xff, 0x9a, 0xce, 0x6c, 0x4b, 0x2b, 0x33, 0xcd, 0x3b, 0x95, 0x9d, 0x7e, 0xef,
0xa9, 0x2a, 0xea, 0x2a, 0x75, 0x9d, 0x5d, 0xe7, 0xff, 0xff, 0xdf, 0xf7, 0x38, 0xc6, 0x4c, 0x43, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xaa, 0x2a, 0xea, 0x32, 0xad, 0x3b,
0x0b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0xc9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x88, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a,
0x27, 0x22, 0x48, 0x2a, 0xaa, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x32, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33,
0xca, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22,
0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x69, 0x22, 0x89, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x68, 0x2a,
0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33,
0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x0a, 0x33, 0x88, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x0a, 0x33, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0x0a, 0x33, 0x89, 0x2a, 0x68, 0x2a, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11,
0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11,
0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x27, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11,
0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x10, 0xc4, 0x08, 0x88, 0x11, 0x68, 0x11, 0x87, 0x11, 0x67, 0x11, 0x68, 0x11,
0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x19, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x87, 0x11,
0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11,
0x88, 0x11, 0x67, 0x11, 0x68, 0x19, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0x6d, 0x63, 0x59, 0xd6, 0x9d, 0xf7, 0xde, 0xff, 0x5a, 0xdf, 0xa8, 0x85,
0x2a, 0x8e, 0x29, 0x8e, 0x09, 0x8e, 0x09, 0x8e, 0x29, 0x8e, 0x09, 0x8e, 0x2a, 0x8e, 0x0a, 0x96, 0xe9, 0x95, 0xca, 0x95, 0xee, 0x95, 0x5e, 0xef, 0x3d, 0xe7, 0x1c, 0xe7, 0x1c, 0xe7, 0x1d, 0xe7,
0xfc, 0xe6, 0x1c, 0xdf, 0x1d, 0xdf, 0xfc, 0xde, 0xdb, 0xd6, 0x10, 0x84, 0x5a, 0xce, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde,
0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xd6, 0x1d, 0xdf, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde,
0xfd, 0xd6, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xd7, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xd7, 0xfc, 0xde, 0x1c, 0xdf, 0xfd, 0xd6, 0xfc, 0xde, 0xfd, 0xde,
0x1d, 0xd7, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xd7, 0x1c, 0xd7, 0x1d, 0xdf, 0xfc, 0xce, 0x6a, 0xaa, 0x6f, 0xab, 0x3d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1c, 0xdf,
0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0x3d, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0x3d, 0xd7, 0x3e, 0xdf, 0x3d, 0xd7, 0x3d, 0xd7,
0x3d, 0xd7, 0x3d, 0xdf, 0x97, 0xd6, 0xad, 0xdd, 0xad, 0xdd, 0xef, 0xd5, 0x3c, 0xdf, 0xbf, 0xe7, 0x76, 0xc5, 0x10, 0xac, 0x8e, 0xab, 0x8e, 0xab, 0xdb, 0xde, 0xbf, 0xe7, 0x5e, 0xdf, 0xb7, 0xa5,
0x2e, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0xb0, 0x4b, 0xb1, 0x4b, 0xb1, 0x53, 0xb0, 0x4b, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xf2, 0x53, 0xf1, 0x53, 0xf1, 0x5b, 0xf2, 0x53,
0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x64, 0x32, 0x5c, 0x32, 0x64, 0x33, 0x5c, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64, 0x53, 0x64, 0x73, 0x64,
0x73, 0x64, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b,
0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xac, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8c, 0x33,
0x6c, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0x6b, 0x33,
0x0e, 0x3c, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0xea, 0x32, 0x0a, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33,
0x0a, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x8d, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xc9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x4c, 0x33, 0xa9, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0x48, 0x22, 0x27, 0x22, 0x88, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x22, 0x47, 0x22, 0x68, 0x2a, 0x48, 0x2a,
0x07, 0x22, 0x27, 0x22, 0x48, 0x22, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11,
0x27, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11,
0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09,
0x47, 0x11, 0x27, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x04, 0x09, 0xc4, 0x08, 0x68, 0x11, 0x87, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11,
0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x19, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11,
0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x19, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11,
0x87, 0x11, 0x68, 0x11, 0x68, 0x11, 0x87, 0x11, 0x88, 0x11, 0x68, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0xc5, 0x00, 0xd2, 0x9c, 0xba, 0xde, 0xbd, 0xff, 0xff, 0xff, 0x92, 0xb6, 0xe9, 0x8d,
0x29, 0x8e, 0x09, 0x8e, 0x09, 0x86, 0x08, 0x86, 0x09, 0x86, 0x29, 0x86, 0x09, 0x8e, 0x2a, 0x8e, 0x2a, 0x96, 0x0a, 0x96, 0xed, 0x9d, 0x3e, 0xe7, 0x1c, 0xe7, 0x1c, 0xe7, 0x1d, 0xdf, 0x1c, 0xdf,
0xdc, 0xde, 0x14, 0xad, 0x39, 0xce, 0xfc, 0xde, 0x59, 0xc6, 0x5a, 0xce, 0x1c, 0xe7, 0xfc, 0xde, 0xfc, 0xe6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde,
0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde,
0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xdf, 0xfd, 0xde, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xd6, 0x1d, 0xd7,
0x1c, 0xdf, 0x1d, 0xd7, 0xfd, 0xde, 0x1c, 0xd7, 0xfd, 0xde, 0x1c, 0xd7, 0xf1, 0xab, 0xa8, 0xa9, 0xbb, 0xc6, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xd7,
0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xd7, 0x3d, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0xdc, 0xce, 0xdb, 0xce, 0x1d, 0xd7, 0xfd, 0xce, 0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xd7, 0x3d, 0xd7,
0x3d, 0xdf, 0x5d, 0xd7, 0x5e, 0xdf, 0x34, 0xd6, 0x5d, 0xdf, 0x9b, 0xd6, 0x92, 0xb4, 0x4d, 0xab, 0x4d, 0xab, 0x6d, 0xb3, 0x8e, 0xb3, 0xae, 0xb3, 0x55, 0xc5, 0xdf, 0xef, 0x9e, 0xe7, 0x7a, 0xbe,
0x0d, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0xb1, 0x53, 0xb0, 0x4b, 0xb0, 0x53, 0xd1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xf2, 0x53, 0xd1, 0x53,
0xf1, 0x53, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x32, 0x5c, 0x33, 0x64, 0x53, 0x64, 0x33, 0x5c, 0x53, 0x5c, 0x53, 0x64, 0x53, 0x64,
0x53, 0x64, 0x4c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x0b, 0x33,
0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x0a, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0x2b, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0xc9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xaa, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x68, 0x2a,
0xaa, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22,
0x27, 0x22, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x27, 0x2a, 0x68, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x28, 0x22, 0x89, 0x2a, 0x0a, 0x33, 0xa9, 0x2a,
0x48, 0x22, 0x07, 0x22, 0x27, 0x22, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11,
0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x47, 0x11, 0x27, 0x09, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11,
0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x27, 0x11,
0x46, 0x09, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11,
0x46, 0x09, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x11, 0xc4, 0x08, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x87, 0x19, 0x68, 0x11,
0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x19, 0x67, 0x11, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11,
0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x19, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x19,
0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0xb5, 0xb5, 0xfb, 0xe6, 0xff, 0xff, 0xdf, 0xff, 0xec, 0x95, 0x0a, 0x8e,
0x29, 0x8e, 0x09, 0x86, 0x08, 0x86, 0x09, 0x86, 0xe8, 0x85, 0x08, 0x86, 0x29, 0x86, 0x09, 0x8e, 0x2a, 0x8e, 0x0b, 0x96, 0x52, 0xb6, 0x3d, 0xe7, 0x3d, 0xe7, 0x1c, 0xe7, 0x1c, 0xdf, 0x1c, 0xe7,
0xfc, 0xde, 0x3d, 0xe7, 0xfc, 0xde, 0xfc, 0xde, 0x9a, 0xce, 0x92, 0x94, 0x38, 0xc6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xe6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde,
0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xd6, 0xfd, 0xde, 0xfd, 0xde, 0x1c, 0xdf,
0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1d, 0xd7, 0xfc, 0xde, 0xfc, 0xd6, 0x1d, 0xdf, 0xfc, 0xd6, 0x1d, 0xdf, 0x1c, 0xdf, 0x1d, 0xdf, 0x1c, 0xdf,
0xfc, 0xd6, 0x1d, 0xdf, 0xfc, 0xd6, 0xfd, 0xde, 0x3d, 0xdf, 0x56, 0xb5, 0x25, 0xa9, 0xf4, 0xac, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xd7,
0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x39, 0xbe, 0x76, 0xa5, 0x19, 0xbe, 0xd7, 0xad, 0xfc, 0xce, 0x1d, 0xd7, 0x3e, 0xdf, 0x1d, 0xdf,
0x3d, 0xdf, 0x3e, 0xdf, 0x3d, 0xd7, 0x19, 0xce, 0xf0, 0xb3, 0x4c, 0xab, 0x6d, 0xb3, 0x4c, 0xb3, 0x2d, 0xab, 0x2d, 0xab, 0x4d, 0xb3, 0x8e, 0xab, 0x0f, 0xac, 0xff, 0xef, 0xbf, 0xe7, 0xba, 0xce,
0x90, 0x53, 0x4e, 0x4b, 0x4f, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0x91, 0x53, 0xb1, 0x53, 0xb0, 0x4b, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53,
0xd1, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf1, 0x5b, 0x12, 0x5c, 0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x33, 0x64, 0x33, 0x64, 0x32, 0x64, 0x33, 0x64, 0x53, 0x64, 0x53, 0x64,
0x53, 0x64, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0x0e, 0x3c, 0x8c, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33,
0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x68, 0x22, 0xaa, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x22,
0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x2b, 0xa9, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32,
0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x69, 0x2a, 0xa9, 0x2a,
0x6c, 0x33, 0xea, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22,
0x48, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0x28, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0x27, 0x22, 0x69, 0x22, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0x27, 0x22, 0x68, 0x22, 0xa9, 0x2a,
0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22,
0x89, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x88, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x88, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0x88, 0x2a,
0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x09,
0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11,
0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09,
0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11,
0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe4, 0x08, 0xc5, 0x08, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11,
0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x19, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11,
0x67, 0x19, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x87, 0x11, 0x67, 0x11, 0x88, 0x11, 0x68, 0x11,
0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0xc8, 0x29, 0xf7, 0xbd, 0x3c, 0xe7, 0xfe, 0xff, 0xbd, 0xf7, 0xeb, 0x95, 0x0a, 0x8e,
0x09, 0x8e, 0x08, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0x29, 0x8e, 0x2a, 0x8e, 0xc9, 0x85, 0xd9, 0xd6, 0x1c, 0xe7, 0x1c, 0xe7, 0x1d, 0xdf, 0x1c, 0xe7, 0x1c, 0xe7,
0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x9b, 0xce, 0x1c, 0xe7, 0xd4, 0x9c, 0xfc, 0xde, 0xfb, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xfc, 0xde,
0xdc, 0xde, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xd7, 0xfd, 0xde, 0x1c, 0xdf, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0x1c, 0xdf, 0xfd, 0xd6,
0xfc, 0xde, 0x1c, 0xdf, 0x1d, 0xd7, 0xfc, 0xde, 0xfd, 0xde, 0xfd, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0x1d, 0xdf, 0x1c, 0xd7, 0xfc, 0xde, 0x1d, 0xdf, 0xfc, 0xde, 0xfd, 0xd6, 0xfc, 0xde, 0x1c, 0xd7,
0xfd, 0xde, 0x1c, 0xd7, 0x1c, 0xdf, 0x1d, 0xdf, 0x39, 0xbe, 0x87, 0xa9, 0xed, 0xaa, 0x1d, 0xd7, 0x1c, 0xdf, 0x1d, 0xd7, 0x1d, 0xdf, 0x1c, 0xd7, 0x1d, 0xd7, 0xfd, 0xde, 0x1c, 0xd7, 0x1d, 0xd7,
0x1c, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x5e, 0xdf, 0x55, 0x9d, 0x55, 0xa5, 0x9f, 0xe7, 0x39, 0xbe, 0x3d, 0xdf, 0xd7, 0xad, 0x3d, 0xdf,
0x3d, 0xd7, 0x5d, 0xd7, 0x3e, 0xdf, 0xb2, 0xb4, 0x8d, 0xab, 0x4d, 0xb3, 0x2c, 0xab, 0x0c, 0xab, 0xec, 0xaa, 0x0c, 0xab, 0x0c, 0xab, 0x6d, 0xb3, 0x2c, 0xa3, 0xdf, 0xef, 0xbf, 0xef, 0xfc, 0xce,
0x72, 0x74, 0x4f, 0x43, 0x4f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb1, 0x4b, 0xb0, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd2, 0x5b,
0xf2, 0x5b, 0xf1, 0x53, 0xf1, 0x5b, 0xf2, 0x5b, 0xf2, 0x53, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x64, 0x13, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x53, 0x5c, 0x53, 0x5c, 0x53, 0x64,
0x53, 0x64, 0x2f, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xac, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xac, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33,
0x8c, 0x33, 0x2f, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6b, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b,
0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x2b, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a,
0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a,
0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33,
0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xaa, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33,
0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a,
0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0xe6, 0x21, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0x27, 0x22, 0x48, 0x22,
0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x11,
0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11,
0x47, 0x11, 0x27, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xc9, 0x19, 0x6c, 0x2a, 0xcc, 0x22, 0xad, 0x32, 0x8c, 0x32, 0x4b, 0x22, 0xe9, 0x19, 0x68, 0x11, 0x06, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11,
0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x27, 0x11, 0x46, 0x09, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x88, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11,
0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x87, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11,
0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x19, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11,
0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0xac, 0x4a, 0x37, 0xce, 0x7d, 0xf7, 0xdf, 0xff, 0x7b, 0xef, 0xe9, 0x8d, 0x09, 0x8e,
0x09, 0x86, 0x08, 0x86, 0xe8, 0x85, 0x08, 0x7e, 0x08, 0x7e, 0x08, 0x86, 0x08, 0x86, 0x09, 0x8e, 0x0a, 0x8e, 0xa7, 0x7d, 0x5e, 0xef, 0x1d, 0xe7, 0x1c, 0xe7, 0x1c, 0xdf, 0xfc, 0xe6, 0x1c, 0xdf,
0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xe6, 0xfc, 0xde, 0x59, 0xce, 0xb3, 0x94, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde,
0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde,
0xfc, 0xd6, 0xfd, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xd7, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xd6, 0xfc, 0xde, 0xfd, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xfd, 0xde,
0xfc, 0xde, 0xfc, 0xd6, 0xfd, 0xd6, 0xbb, 0xce, 0xac, 0xaa, 0x67, 0xa9, 0x39, 0xbe, 0x1c, 0xdf, 0xfd, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfd, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xdf, 0x1c, 0xd7,
0xfc, 0xd6, 0x1d, 0xdf, 0x1d, 0xd7, 0x1c, 0xd7, 0x1c, 0xdf, 0x1d, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x59, 0xc6, 0x7b, 0xbe, 0x35, 0x9d, 0x5e, 0xdf, 0x5a, 0xbe, 0x3d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7,
0x3d, 0xd7, 0x3d, 0xd7, 0x3e, 0xdf, 0x9a, 0xce, 0x6d, 0xb3, 0x4d, 0xab, 0xec, 0xb2, 0xcc, 0xaa, 0xcc, 0xaa, 0xcc, 0xaa, 0x0c, 0xab, 0x2d, 0xb3, 0x2d, 0xab, 0x3c, 0xdf, 0xdf, 0xef, 0x3d, 0xdf,
0x15, 0x95, 0x2e, 0x43, 0x4f, 0x4b, 0x4f, 0x43, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x4b, 0xb1, 0x53, 0xb0, 0x4b, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53,
0xd1, 0x53, 0xd1, 0x53, 0xf2, 0x53, 0xf1, 0x53, 0xf1, 0x5b, 0xf2, 0x53, 0x12, 0x5c, 0xf2, 0x5b, 0x12, 0x5c, 0x32, 0x5c, 0x12, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x33, 0x5c, 0x32, 0x64, 0x32, 0x5c,
0x53, 0x64, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33,
0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x2a, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x32,
0xca, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22,
0x68, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xaa, 0x2a,
0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x68, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x28, 0x22,
0x48, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xaa, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0xaa, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x2a, 0x69, 0x2a, 0x68, 0x2a, 0xa9, 0x2a,
0x89, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0x47, 0x22, 0x88, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x2a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x07, 0x22, 0x47, 0x22,
0x68, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x46, 0x09,
0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x27, 0x11, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11,
0x06, 0x09, 0x26, 0x09, 0x90, 0x43, 0x99, 0x6d, 0x5c, 0x86, 0x9d, 0x86, 0xde, 0x96, 0xfe, 0x96, 0xfe, 0x96, 0xde, 0x8e, 0x7c, 0x86, 0x78, 0x6d, 0x13, 0x44, 0x4b, 0x22, 0xa5, 0x00, 0x26, 0x11,
0x46, 0x11, 0x47, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11,
0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x19, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11,
0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x19, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x19,
0x88, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x69, 0x19, 0x67, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x4d, 0x63, 0x9a, 0xd6, 0x9d, 0xef, 0xdf, 0xff, 0x17, 0xd7, 0xca, 0x85, 0x29, 0x8e,
0x09, 0x86, 0x09, 0x86, 0xe8, 0x85, 0xe8, 0x85, 0xe8, 0x85, 0xe8, 0x85, 0x09, 0x8e, 0x29, 0x86, 0x0a, 0x8e, 0xed, 0x9d, 0x3e, 0xef, 0x1c, 0xdf, 0x1c, 0xe7, 0x1c, 0xe7, 0x1c, 0xdf, 0x39, 0xce,
0x18, 0xc6, 0x1c, 0xdf, 0xfc, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0x1c, 0xdf, 0xdb, 0xde, 0xfb, 0xde, 0xdb, 0xd6, 0xfc, 0xd6, 0xdb, 0xd6, 0xfb, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0xfc, 0xde, 0xdc, 0xde,
0xfb, 0xde, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xfb, 0xde, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xde,
0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xd6, 0xfb, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0xfd, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xd6, 0xfc, 0xde,
0x1c, 0xdf, 0xfd, 0xde, 0xfc, 0xd6, 0x11, 0xac, 0x05, 0xa9, 0x52, 0xac, 0x1d, 0xdf, 0x1d, 0xd7, 0xfc, 0xde, 0xfc, 0xd6, 0x1d, 0xd7, 0xfc, 0xde, 0xfc, 0xd6, 0x1d, 0xd7, 0xfc, 0xde, 0xfd, 0xd6,
0x1d, 0xd7, 0xfc, 0xd6, 0xfc, 0xde, 0x1d, 0xd7, 0x1d, 0xd7, 0xfd, 0xd6, 0x1d, 0xd7, 0x3d, 0xdf, 0x71, 0x8c, 0xb3, 0x8c, 0xdc, 0xce, 0xf4, 0x94, 0xfc, 0xd6, 0x1d, 0xd7, 0x1d, 0xdf, 0x1d, 0xdf,
0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xd7, 0x7f, 0xdf, 0x6d, 0xab, 0x0c, 0xb3, 0xeb, 0xaa, 0xab, 0xaa, 0xab, 0xaa, 0xcb, 0xaa, 0xcc, 0xaa, 0x0c, 0xab, 0x6d, 0xab, 0x9a, 0xd6, 0xbf, 0xe7, 0x7e, 0xdf,
0xf7, 0xad, 0x0e, 0x43, 0x4e, 0x4b, 0x4f, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x90, 0x53, 0x90, 0x53, 0x90, 0x4b, 0xb0, 0x4b, 0x90, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53,
0xd0, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd2, 0x53, 0xf1, 0x53, 0xf1, 0x5b, 0xf1, 0x53, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x64, 0x12, 0x5c, 0x33, 0x5c, 0x32, 0x64, 0x33, 0x5c,
0x33, 0x64, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x2e, 0x3c, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x2f, 0x44,
0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33,
0x4c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0xea, 0x32, 0xaa, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xce, 0x3b, 0x4b, 0x33, 0xea, 0x32,
0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0xad, 0x3b,
0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xa9, 0x2a, 0x28, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x88, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x4c, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33,
0xea, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x69, 0x2a,
0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x69, 0x2a, 0x47, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0x28, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0x6c, 0x33,
0x88, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x88, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x2b, 0x33, 0x89, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x88, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0x89, 0x2a, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11,
0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0xa8, 0x11,
0x12, 0x44, 0x3f, 0x8f, 0x3f, 0x9f, 0x3f, 0x9f, 0x1f, 0xa7, 0x3f, 0xa7, 0x3f, 0xa7, 0x3f, 0xaf, 0x3f, 0xaf, 0x1f, 0xa7, 0xff, 0xa6, 0x1e, 0x9f, 0xff, 0x96, 0xde, 0x96, 0x37, 0x5d, 0x88, 0x11,
0x26, 0x09, 0x27, 0x09, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09,
0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0xc4, 0x08, 0x87, 0x11, 0x67, 0x11, 0x68, 0x19, 0x67, 0x11, 0x68, 0x11,
0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x19, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11,
0x67, 0x19, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11,
0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x06, 0x09, 0x31, 0x84, 0xba, 0xde, 0xbe, 0xff, 0xff, 0xff, 0x72, 0xae, 0x09, 0x8e, 0x09, 0x8e,
0x09, 0x8e, 0x08, 0x86, 0xe8, 0x7d, 0x07, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x09, 0x86, 0x29, 0x8e, 0xea, 0x8d, 0x52, 0xae, 0x1d, 0xe7, 0x1c, 0xe7, 0x1c, 0xe7, 0x1d, 0xdf, 0xfc, 0xde, 0xfc, 0xde,
0xbb, 0xd6, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdb, 0xde,
0xfc, 0xde, 0xdb, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfb, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdc, 0xde,
0xfc, 0xde, 0xdc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xdc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6,
0xdc, 0xd6, 0x1c, 0xd7, 0x36, 0xb5, 0x05, 0xa9, 0x6a, 0xaa, 0xbc, 0xce, 0xfc, 0xd6, 0xfc, 0xd6, 0xfd, 0xde, 0xfc, 0xd6, 0x1c, 0xd7, 0x1d, 0xdf, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xdf, 0xfc, 0xd6,
0xfc, 0xd6, 0x1d, 0xdf, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0xfc, 0xde, 0xfc, 0xd6, 0xfd, 0xd6, 0x5e, 0xdf, 0x3e, 0xdf, 0x1c, 0xd7, 0x5e, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x3d, 0xd7, 0xfc, 0xce,
0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x5d, 0xdf, 0x4d, 0xab, 0x0c, 0xab, 0xcb, 0xaa, 0xab, 0xaa, 0xab, 0xaa, 0xab, 0xaa, 0xcb, 0xaa, 0x0c, 0xb3, 0x4d, 0xab, 0x35, 0xbd, 0xbf, 0xef, 0x9e, 0xdf,
0x7a, 0xc6, 0x0e, 0x43, 0x2f, 0x43, 0x2f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x4b, 0xb0, 0x53, 0xd1, 0x53,
0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xf2, 0x53, 0x12, 0x5c, 0xf1, 0x53, 0xf1, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x32, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x64, 0x33, 0x5c,
0x32, 0x5c, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8d, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x2f, 0x44, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0x8c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0f, 0x44, 0x8c, 0x3b,
0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x0e, 0x3c, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xee, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33,
0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8d, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0x8c, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xc9, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0xaa, 0x2a, 0x6c, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x69, 0x22, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a,
0xa9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xaa, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0x6c, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x68, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x6c, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x32,
0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x69, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xca, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x88, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x48, 0x2a, 0x88, 0x2a, 0x48, 0x2a, 0x07, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0x68, 0x2a,
0x27, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x26, 0x11, 0x47, 0x09, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09,
0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0xa4, 0x00, 0x4f, 0x33, 0x5d, 0x7e,
0x3f, 0x9f, 0x1f, 0xa7, 0x3f, 0xaf, 0x3f, 0xaf, 0x3f, 0xaf, 0x5f, 0xaf, 0x1f, 0xaf, 0x3f, 0xaf, 0x1f, 0xa7, 0x3f, 0xaf, 0x3e, 0xaf, 0x3f, 0xaf, 0x3e, 0xaf, 0x1f, 0xa7, 0x3f, 0x9f, 0x5f, 0x97,
0x90, 0x3b, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11,
0x27, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x10, 0xc3, 0x08, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x19,
0x67, 0x11, 0x68, 0x11, 0x67, 0x19, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11,
0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x19, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11,
0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x06, 0x09, 0xf3, 0x9c, 0xfb, 0xe6, 0xdd, 0xff, 0xff, 0xff, 0x0d, 0x9e, 0xe9, 0x8d, 0x29, 0x8e,
0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x08, 0x86, 0x09, 0x86, 0xea, 0x8d, 0xb7, 0xce, 0x1c, 0xe7, 0x1d, 0xdf, 0x1d, 0xdf, 0xfc, 0xe6, 0x1c, 0xdf, 0xfc, 0xde,
0xfc, 0xde, 0xfb, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xde, 0xdc, 0xde, 0xfb, 0xde, 0xdc, 0xd6, 0xfb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xfb, 0xde,
0xdc, 0xd6, 0xfb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6,
0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfb, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfb, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6,
0x1d, 0xdf, 0x39, 0xb6, 0x87, 0xa9, 0x46, 0xa9, 0xb7, 0xad, 0xfc, 0xde, 0xfd, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x1c, 0xd7, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0xfc, 0xd6, 0xfc, 0xd6,
0x1d, 0xd7, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0x1d, 0xd7, 0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x9b, 0xce,
0x3d, 0xd7, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x10, 0xb4, 0x0c, 0xb3, 0xcb, 0xaa, 0xab, 0xaa, 0x8b, 0xaa, 0xab, 0xa2, 0xab, 0xaa, 0xec, 0xaa, 0x2d, 0xb3, 0xae, 0xab, 0xdf, 0xef, 0x9e, 0xe7,
0xba, 0xc6, 0x4f, 0x4b, 0x4e, 0x43, 0x4e, 0x43, 0x70, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53,
0xb0, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xf1, 0x53, 0xd1, 0x53, 0xf1, 0x5b, 0xf2, 0x53, 0x12, 0x54, 0xf1, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x32, 0x5c, 0x32, 0x5c, 0x32, 0x5c,
0x33, 0x64, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0xac, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x6c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x2b, 0x2b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a,
0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x88, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22,
0x68, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0xc9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0xca, 0x2a, 0x89, 0x2a,
0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x2a,
0xca, 0x2a, 0x89, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x2a, 0x89, 0x2a, 0x2b, 0x33, 0xc9, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0xa9, 0x2a, 0x2a, 0x33, 0xc9, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x2b, 0x33, 0xc9, 0x2a,
0x68, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11,
0x27, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x47, 0x11, 0x47, 0x11, 0x27, 0x09, 0x05, 0x09, 0x33, 0x44, 0xbd, 0x8e, 0xfe, 0x9e,
0x1f, 0xa7, 0x3f, 0xaf, 0x1e, 0xa7, 0x1f, 0xaf, 0x1f, 0xa7, 0xfe, 0xa6, 0x3f, 0xa7, 0x5f, 0xa7, 0x5f, 0xaf, 0x3f, 0xa7, 0x1f, 0xa7, 0x3f, 0xaf, 0x1f, 0xaf, 0x1f, 0xa7, 0x1e, 0xa7, 0x1e, 0xa7,
0x1f, 0x97, 0x16, 0x5d, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0x87, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11,
0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11,
0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x48, 0x19, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x19,
0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x19, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x05, 0x01, 0xd6, 0xc5, 0x1c, 0xe7, 0xdf, 0xff, 0xff, 0xff, 0xa9, 0x85, 0x09, 0x8e, 0x29, 0x8e,
0x09, 0x86, 0xe8, 0x85, 0xe8, 0x7d, 0x08, 0x86, 0x08, 0x7e, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xc9, 0x8d, 0xda, 0xde, 0x1c, 0xe7, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xfb, 0xde,
0xdc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xfb, 0xde, 0xdc, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xde, 0xdc, 0xd6,
0xdc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdc, 0xd6,
0xdc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdc, 0xde, 0xfc, 0xd6, 0xdc, 0xd6, 0xdc, 0xde, 0xfc, 0xde, 0xdc, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xdc, 0xd6, 0x1c, 0xdf,
0xbb, 0xc6, 0x8b, 0xaa, 0x46, 0xa9, 0xaf, 0xab, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xdd, 0xde, 0xfc, 0xd6, 0x1c, 0xd7, 0xdd, 0xde, 0xfc, 0xd6, 0x1c, 0xd7,
0xfd, 0xd6, 0xfc, 0xd6, 0x1c, 0xd7, 0xfd, 0xd6, 0xfd, 0xd6, 0x1c, 0xd7, 0xfc, 0xd6, 0xfd, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x1c, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7,
0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0x76, 0xc5, 0x0c, 0xab, 0xcc, 0xaa, 0xab, 0xaa, 0x8a, 0xaa, 0x8b, 0xaa, 0xcb, 0xaa, 0xcc, 0xaa, 0x2c, 0xb3, 0xec, 0xa2, 0xbe, 0xef, 0xbf, 0xef,
0xfb, 0xce, 0xd0, 0x5b, 0x2e, 0x43, 0x2e, 0x43, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x53, 0xb1, 0x53, 0xb0, 0x53,
0xb0, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x5b, 0xf2, 0x5b, 0xf1, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c,
0x32, 0x5c, 0x8c, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0xac, 0x3b,
0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33,
0x4b, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b,
0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0xed, 0x3b, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4b, 0x33,
0xce, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x8d, 0x3b, 0x0b, 0x33,
0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a,
0x6c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x22, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22,
0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0x6c, 0x33, 0xea, 0x32,
0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0xca, 0x2a,
0x8c, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x6c, 0x33, 0x0a, 0x33, 0x89, 0x2a, 0x48, 0x22,
0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xc9, 0x32, 0x88, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x89, 0x2a,
0xca, 0x32, 0x69, 0x2a, 0xa9, 0x2a, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11,
0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11, 0x74, 0x54, 0x1f, 0x97, 0x1f, 0x9f, 0xfe, 0xae,
0x1e, 0xaf, 0x1f, 0xaf, 0x3f, 0xa7, 0x3f, 0x9f, 0x9d, 0x8e, 0x3a, 0x86, 0x37, 0x6d, 0xb5, 0x54, 0xd5, 0x5c, 0xb9, 0x75, 0x9e, 0x8e, 0xfe, 0x9e, 0x3f, 0xa7, 0x1e, 0xaf, 0x1f, 0xaf, 0x1f, 0xa7,
0x1e, 0xa7, 0x1f, 0x9f, 0xb9, 0x6d, 0xe5, 0x08, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09,
0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xc3, 0x08, 0x68, 0x11, 0x47, 0x11, 0x68, 0x11, 0x47, 0x11, 0x47, 0x11,
0x48, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x48, 0x11, 0x67, 0x11, 0x68, 0x11, 0x47, 0x11, 0x48, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11,
0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x48, 0x11, 0x67, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11,
0x67, 0x11, 0x48, 0x11, 0x47, 0x11, 0x67, 0x11, 0x48, 0x11, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x67, 0x19, 0x17, 0xc6, 0x5d, 0xef, 0xde, 0xff, 0xbe, 0xf7, 0x88, 0x85, 0x0a, 0x8e, 0x09, 0x86,
0x08, 0x86, 0x08, 0x86, 0xe8, 0x85, 0xe8, 0x7d, 0xe8, 0x85, 0x09, 0x86, 0x08, 0x8e, 0x09, 0x8e, 0xca, 0x8d, 0x1c, 0xdf, 0x1c, 0xdf, 0xfc, 0xde, 0x1c, 0xe7, 0x1c, 0xe7, 0xdb, 0xde, 0xbb, 0xd6,
0xdb, 0xde, 0xdc, 0xde, 0xfb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xdb, 0xde, 0xfb, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xfb, 0xde, 0xdb, 0xd6,
0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xfb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xde, 0xdb, 0xd6,
0xfb, 0xde, 0xfc, 0xde, 0xdb, 0xd6, 0xfc, 0xde, 0xdc, 0xde, 0xfc, 0xd6, 0xfc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xde, 0xbb, 0xce,
0xf1, 0xab, 0x46, 0xa9, 0xe8, 0xa9, 0x7a, 0xc6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6,
0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0xfd, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7,
0x1d, 0xdf, 0x1d, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0xdc, 0xd6, 0x0c, 0xab, 0xcb, 0xaa, 0xab, 0xaa, 0x8a, 0xaa, 0x8b, 0xaa, 0x8b, 0xaa, 0xcb, 0xaa, 0x2c, 0xb3, 0x2c, 0xa3, 0xbf, 0xef, 0xbf, 0xe7,
0xfc, 0xd6, 0x11, 0x6c, 0x2e, 0x43, 0x2e, 0x4b, 0x4f, 0x43, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x70, 0x53, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x4b,
0xb1, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53, 0xf1, 0x5b, 0xf1, 0x53, 0xf2, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c, 0x12, 0x5c,
0x12, 0x5c, 0x2f, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8d, 0x3b,
0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2f, 0x44,
0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33,
0x8d, 0x3b, 0x2e, 0x44, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x0e, 0x3c, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0xee, 0x3b,
0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a,
0x0a, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x2b, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0x0a, 0x33, 0x8d, 0x3b, 0x0b, 0x33, 0xea, 0x2a,
0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x6c, 0x33,
0x0a, 0x33, 0xea, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x89, 0x2a,
0xca, 0x2a, 0x6c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a,
0x0b, 0x33, 0x89, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b,
0xea, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0x68, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x27, 0x2a, 0x48, 0x2a, 0x69, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x68, 0x2a, 0x27, 0x22, 0x48, 0x2a, 0x68, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x68, 0x2a, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11,
0x46, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0xa4, 0x00, 0xf1, 0x43, 0x3f, 0x97, 0xde, 0x9e, 0x1e, 0xaf, 0x1f, 0xa7,
0xfe, 0xa6, 0x5f, 0xa7, 0x3a, 0x86, 0xd1, 0x43, 0xe9, 0x21, 0xe5, 0x00, 0xc5, 0x00, 0xc5, 0x08, 0xe5, 0x08, 0xa4, 0x00, 0x06, 0x09, 0xcc, 0x2a, 0xf7, 0x64, 0xdd, 0x9e, 0x3f, 0xa7, 0x1e, 0xaf,
0x1f, 0xaf, 0x1e, 0xa7, 0xfe, 0x96, 0x17, 0x65, 0x47, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xc5, 0x08, 0x87, 0x11, 0x48, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11,
0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11,
0x68, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x48, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x48, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11,
0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x46, 0x11, 0x27, 0x11, 0x07, 0x09, 0x08, 0x32, 0x38, 0xce, 0x5c, 0xef, 0xdf, 0xff, 0x7b, 0xef, 0xc8, 0x85, 0x0a, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x29, 0x8e, 0x09, 0x8e, 0xaa, 0x8d, 0x3d, 0xe7, 0x1d, 0xe7, 0xfc, 0xe6, 0x1c, 0xe7, 0xfc, 0xde, 0xbb, 0xd6, 0x18, 0xc6,
0x7a, 0xc6, 0xfc, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6,
0xdb, 0xd6, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6,
0xdc, 0xde, 0xdc, 0xde, 0xfc, 0xd6, 0xdc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xde, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xde, 0xfc, 0xde, 0x56, 0xa5,
0x25, 0xa9, 0x05, 0xa9, 0x16, 0xad, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6,
0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0xfd, 0xce, 0xfd, 0xd6, 0x1c, 0xd7, 0x1c, 0xdf, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6, 0xfc, 0xd6, 0x1d, 0xdf,
0x1c, 0xd7, 0x1d, 0xd7, 0x3d, 0xd7, 0x3d, 0xd7, 0x1c, 0xd7, 0xeb, 0xaa, 0xeb, 0xaa, 0x8a, 0xaa, 0x8b, 0xa2, 0x8a, 0xaa, 0xab, 0xaa, 0xac, 0xaa, 0x0c, 0xab, 0x4c, 0xab, 0x9e, 0xe7, 0xdf, 0xef,
0x1c, 0xd7, 0xb3, 0x84, 0x0e, 0x43, 0x0e, 0x43, 0x2f, 0x43, 0x4f, 0x43, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0xb0, 0x53,
0xb1, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xf2, 0x53, 0xf2, 0x5b, 0xf1, 0x53, 0xf1, 0x5b, 0xf2, 0x5b, 0x12, 0x5c, 0x12, 0x5c,
0x12, 0x5c, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33,
0x0b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a,
0xea, 0x2a, 0xea, 0x32, 0xeb, 0x32, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x2b, 0x33,
0xca, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xea, 0x32, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22,
0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a,
0x68, 0x22, 0xea, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22,
0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0xea, 0x32, 0x88, 0x2a, 0x27, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0x47, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x2b, 0x33, 0xc9, 0x2a, 0x89, 0x2a, 0x27, 0x22, 0x68, 0x2a,
0xa9, 0x2a, 0x4b, 0x33, 0xc9, 0x32, 0x46, 0x11, 0x27, 0x09, 0x26, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09,
0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x47, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x05, 0x09, 0xad, 0x2a, 0xbe, 0x86, 0xfe, 0x9e, 0x1f, 0xa7, 0x1e, 0xa7, 0x1f, 0xa7,
0x3f, 0x9f, 0xf1, 0x4b, 0x67, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x05, 0x11, 0x26, 0x09, 0x6b, 0x2a, 0x5b, 0x8e, 0x3f, 0xaf,
0x3f, 0xaf, 0xfe, 0xae, 0xfe, 0xa6, 0x1f, 0x97, 0xb1, 0x3b, 0xe6, 0x08, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0xc3, 0x08, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x47, 0x11, 0x68, 0x11, 0x47, 0x11, 0x48, 0x11, 0x67, 0x11, 0x68, 0x11, 0x47, 0x11,
0x67, 0x11, 0x48, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x48, 0x11, 0x67, 0x11, 0x48, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11,
0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0xab, 0x42, 0x78, 0xd6, 0x9d, 0xf7, 0xdf, 0xff, 0x39, 0xdf, 0xc9, 0x85, 0x09, 0x8e, 0x09, 0x8e,
0x08, 0x86, 0xe8, 0x85, 0x08, 0x86, 0xe7, 0x85, 0xe8, 0x7d, 0x09, 0x86, 0x29, 0x8e, 0xea, 0x8d, 0xee, 0x9d, 0x3d, 0xef, 0xfc, 0xde, 0x1c, 0xdf, 0xfc, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0xdc, 0xde,
0xdc, 0xde, 0xdb, 0xd6, 0xdc, 0xde, 0xdb, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6,
0xdc, 0xd6, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xde,
0xdb, 0xd6, 0xdb, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0xdc, 0xde, 0xfc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xde, 0xf8, 0xad, 0xa7, 0xa9,
0x46, 0xa9, 0x0e, 0xab, 0xbb, 0xce, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6,
0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0x1d, 0xd7, 0x9a, 0xc6,
0x59, 0xbe, 0x1d, 0xdf, 0x1d, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0xeb, 0xa2, 0xeb, 0xb2, 0xab, 0xaa, 0x8a, 0xaa, 0x8a, 0xaa, 0x8b, 0xaa, 0xab, 0xaa, 0xec, 0xaa, 0x2d, 0xab, 0x7d, 0xe7, 0xbf, 0xef,
0x5d, 0xdf, 0x55, 0x9d, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x4b, 0x4f, 0x43, 0x4f, 0x43, 0x50, 0x4b, 0x4f, 0x4b, 0x70, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x4b,
0x90, 0x4b, 0x90, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb0, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x5b, 0xd1, 0x53, 0xf1, 0x5b, 0xf2, 0x53, 0xf2, 0x5b, 0xf1, 0x5b, 0x12, 0x5c,
0x12, 0x5c, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2f, 0x44,
0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x4b, 0x33,
0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0x0a, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xce, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xcd, 0x3b,
0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xc9, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x22, 0xa9, 0x2a,
0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0xea, 0x32, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0x0a, 0x2b, 0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8c, 0x3b,
0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0x0a, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0x0a, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x69, 0x2a,
0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0x0a, 0x33, 0xca, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8c, 0x33,
0xa9, 0x2a, 0xea, 0x32, 0x88, 0x2a, 0xa9, 0x2a, 0x4b, 0x3b, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x32, 0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xa9, 0x2a, 0xa9, 0x32, 0xea, 0x32, 0x68, 0x2a, 0xa9, 0x2a,
0x2b, 0x33, 0xc9, 0x2a, 0xa9, 0x2a, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11,
0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x88, 0x11, 0xda, 0x65, 0xde, 0x9e, 0x1e, 0xa7, 0x1e, 0xaf, 0xfe, 0xa6, 0xde, 0x96,
0x0e, 0x33, 0xe6, 0x08, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x68, 0x11, 0x99, 0x7d,
0xfe, 0xa6, 0x1e, 0xa7, 0xfe, 0xa6, 0xfe, 0x9e, 0xbe, 0x86, 0x87, 0x19, 0x27, 0x09, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x88, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11,
0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11,
0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x48, 0x11, 0x67, 0x11,
0x48, 0x11, 0x67, 0x11, 0x67, 0x11, 0x48, 0x11, 0x67, 0x11, 0x46, 0x09, 0x46, 0x11, 0x06, 0x09, 0x2d, 0x63, 0x99, 0xd6, 0x9d, 0xef, 0xde, 0xff, 0xf6, 0xce, 0xea, 0x8d, 0x09, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x7d, 0x08, 0x86, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xe9, 0x85, 0x51, 0xb6, 0x1d, 0xe7, 0xfc, 0xe6, 0xfc, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xfc, 0xde, 0xdc, 0xde,
0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdb, 0xd6, 0xbb, 0xde, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbc, 0xde, 0xbb, 0xd6, 0xdb, 0xde, 0xbc, 0xde, 0xdb, 0xde, 0xdc, 0xde,
0xbb, 0xd6, 0xdb, 0xde, 0xbc, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbc, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xd6,
0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0x5a, 0xc6, 0xcc, 0xaa, 0x46, 0xa9,
0x67, 0xa9, 0x18, 0xb6, 0xfc, 0xde, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6,
0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfd, 0xce, 0xfc, 0xd6, 0xfc, 0xd6, 0x1c, 0xd7, 0xfc, 0xd6, 0x1d, 0xd7,
0x1c, 0xd7, 0x1d, 0xd7, 0x1c, 0xd7, 0x3d, 0xdf, 0x3d, 0xdf, 0xca, 0xa2, 0xec, 0xb2, 0xab, 0xaa, 0x6b, 0xaa, 0x6a, 0xa2, 0x8a, 0xaa, 0xab, 0xaa, 0xec, 0xaa, 0x2d, 0xab, 0x9a, 0xd6, 0xbf, 0xef,
0x7d, 0xdf, 0xd7, 0xad, 0xed, 0x3a, 0x2d, 0x43, 0x2e, 0x43, 0x4f, 0x43, 0x2f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x4b,
0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0x90, 0x53, 0xb1, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x53, 0xd1, 0x5b, 0xf1, 0x5b, 0xf2, 0x53, 0xf2, 0x5b, 0xf1, 0x5b,
0x12, 0x5c, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x6c, 0x3b, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x33,
0x8c, 0x3b, 0xac, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x8d, 0x3b, 0x2e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x3b,
0x0a, 0x33, 0x4b, 0x33, 0x0e, 0x3c, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xee, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33,
0x0b, 0x33, 0x4b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x2b, 0x0a, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x32,
0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33,
0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x33, 0xea, 0x2a,
0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a,
0x8c, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xea, 0x32, 0x0a, 0x33,
0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x2a, 0xeb, 0x32, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0xea, 0x32,
0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0x27, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x46, 0x11, 0x27, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x46, 0x09,
0x27, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x4f, 0x3b, 0x1f, 0x97, 0xde, 0x9e, 0xde, 0xa6, 0xde, 0xa6, 0xfe, 0x9e, 0x0f, 0x3b,
0x06, 0x09, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09, 0xe5, 0x08, 0x67, 0x09, 0x06, 0x09,
0xfa, 0x85, 0x3f, 0xa7, 0x1e, 0xa7, 0xfe, 0xa6, 0xde, 0x96, 0xd6, 0x54, 0xe5, 0x08, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11,
0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x48, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11,
0x67, 0x11, 0x47, 0x11, 0x48, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11,
0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x06, 0x09, 0xcf, 0x73, 0x99, 0xd6, 0x9d, 0xf7, 0xde, 0xff, 0xb4, 0xbe, 0xe9, 0x8d, 0x29, 0x8e, 0x09, 0x86,
0x09, 0x86, 0x08, 0x86, 0x07, 0x7e, 0xe8, 0x85, 0xe8, 0x85, 0x09, 0x86, 0x09, 0x8e, 0xc9, 0x8d, 0x75, 0xbe, 0x1d, 0xe7, 0x1c, 0xd7, 0xfc, 0xe6, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xfb, 0xde,
0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xdc, 0xde, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xdc, 0xde, 0xbb, 0xd6,
0xdb, 0xde, 0xbc, 0xde, 0xdb, 0xd6, 0xdc, 0xde, 0xbb, 0xd6, 0xdb, 0xd6, 0xdc, 0xde, 0xbb, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdb, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xde, 0xdb, 0xd6,
0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xdc, 0xd6, 0xbb, 0xce, 0x31, 0xa4, 0xe5, 0xa8, 0xe5, 0xb0,
0x92, 0xac, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xde, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6,
0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfb, 0xd6, 0xdc, 0xd6, 0xfc, 0xce, 0xfc, 0xd6, 0xdd, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6,
0x1c, 0xd7, 0x1d, 0xd7, 0x1c, 0xdf, 0x1d, 0xdf, 0x3d, 0xdf, 0x2c, 0xab, 0xeb, 0xaa, 0xab, 0xaa, 0x6a, 0xaa, 0x6a, 0xaa, 0x6a, 0xa2, 0xab, 0xaa, 0xcb, 0xb2, 0x2c, 0xab, 0xd6, 0xcd, 0xdf, 0xef,
0x7d, 0xe7, 0x39, 0xbe, 0x0d, 0x3b, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x4f, 0x4b, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x6f, 0x4b, 0x8f, 0x4b,
0x90, 0x53, 0x90, 0x4b, 0x91, 0x4b, 0x90, 0x4b, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd0, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xf1, 0x53, 0xf2, 0x5b,
0xf1, 0x5b, 0x6b, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b,
0x2b, 0x33, 0x4b, 0x33, 0x6b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x0b, 0x2b, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33,
0xeb, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33,
0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xea, 0x2a, 0xca, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x2a, 0x69, 0x22,
0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a,
0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x69, 0x2a,
0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xa9, 0x2a, 0x4b, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0xc9, 0x2a, 0x4b, 0x33, 0xca, 0x32,
0x89, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0x27, 0x11, 0x46, 0x09, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11,
0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x06, 0x11, 0x1b, 0x6e, 0xbe, 0x9e, 0xfe, 0xa6, 0xde, 0xa6, 0x1e, 0x9f, 0x95, 0x5c, 0xe5, 0x00,
0x46, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x05, 0x09, 0x91, 0x3b, 0x2f, 0x3b, 0x05, 0x09,
0x2b, 0x22, 0xbc, 0x96, 0xde, 0xa6, 0x1e, 0xa7, 0xbd, 0x9e, 0x5c, 0x7e, 0x0a, 0x22, 0x47, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x05, 0x09, 0xc4, 0x08, 0x68, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11,
0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11,
0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x67, 0x11, 0x68, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x09, 0x27, 0x11, 0x25, 0x09, 0x11, 0x84, 0xb9, 0xd6, 0xbe, 0xff, 0xfe, 0xff, 0x73, 0xbe, 0xea, 0x8d, 0x29, 0x8e, 0x08, 0x86,
0xe8, 0x85, 0xe8, 0x7d, 0xe8, 0x7d, 0x08, 0x86, 0xe8, 0x85, 0x09, 0x8e, 0x09, 0x8e, 0xe9, 0x85, 0xb8, 0xce, 0x1c, 0xdf, 0xfc, 0xe6, 0xfb, 0xde, 0xfc, 0xde, 0x1c, 0xe7, 0x35, 0xa5, 0xbb, 0xce,
0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xde, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xbc, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdb, 0xd6, 0xdb, 0xd6, 0xbc, 0xde, 0xbb, 0xd6, 0xbb, 0xde,
0xdb, 0xd6, 0xdb, 0xd6, 0xbb, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xbb, 0xd6, 0xdb, 0xde, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xbb, 0xde,
0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xdb, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xfc, 0xde, 0x55, 0xa5, 0xe5, 0xa8, 0x26, 0xa9, 0x8b, 0xa2,
0x5a, 0xc6, 0xdc, 0xde, 0xdb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6,
0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xce, 0xfc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfd, 0xce, 0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6,
0x3d, 0xdf, 0x1d, 0xd7, 0x1d, 0xd7, 0x1d, 0xd7, 0x3d, 0xd7, 0x10, 0xb4, 0xcb, 0xb2, 0x8a, 0xaa, 0x8a, 0xaa, 0x6a, 0xaa, 0x6a, 0xaa, 0x8a, 0xaa, 0xcb, 0xaa, 0x0c, 0xab, 0xf3, 0xbc, 0xdf, 0xef,
0x9e, 0xe7, 0x59, 0xbe, 0x0e, 0x43, 0x0d, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x4f, 0x4b, 0x2e, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b,
0x90, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xf1, 0x5b, 0xf1, 0x53,
0xf2, 0x5b, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x2f, 0x44, 0xad, 0x3b, 0x6b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x8d, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0x6c, 0x3b, 0x2f, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0x0f, 0x44, 0x8d, 0x3b,
0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4b, 0x33,
0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a,
0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0b, 0x2b, 0xcd, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x2b, 0x33,
0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a,
0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33,
0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xca, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x48, 0x22, 0x89, 0x2a, 0xea, 0x2a,
0x8d, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x32, 0x8c, 0x3b, 0x2b, 0x33, 0xaa, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xaa, 0x2a, 0x68, 0x22,
0xa9, 0x2a, 0x6c, 0x3b, 0xc9, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xc9, 0x32, 0x4b, 0x33, 0xca, 0x32, 0xc9, 0x2a, 0xea, 0x32, 0x89, 0x2a, 0xc9, 0x2a, 0x4c, 0x33, 0xca, 0x32, 0xa9, 0x2a,
0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x47, 0x11,
0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x06, 0x09, 0x8b, 0x22, 0x1f, 0x97, 0xdd, 0x9e, 0xde, 0x9e, 0xdd, 0x9e, 0x9c, 0x8e, 0x47, 0x09, 0x47, 0x11,
0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x09, 0x67, 0x09, 0xee, 0x32, 0x5b, 0x6e, 0x3c, 0x76, 0xc5, 0x00, 0x27, 0x11,
0x06, 0x11, 0x12, 0x4c, 0xde, 0x9e, 0xdd, 0x9e, 0xde, 0x9e, 0xfe, 0x96, 0xb1, 0x3b, 0x06, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x09,
0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11,
0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x51, 0x8c, 0xda, 0xde, 0xbe, 0xf7, 0xdf, 0xff, 0x71, 0xb6, 0xe9, 0x8d, 0x29, 0x8e, 0x09, 0x86,
0x08, 0x86, 0x08, 0x7e, 0xe7, 0x85, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x29, 0x8e, 0xc8, 0x85, 0xfa, 0xd6, 0x1c, 0xe7, 0xfc, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0x1c, 0xdf, 0xdc, 0xde,
0xdc, 0xde, 0xdb, 0xde, 0xdc, 0xd6, 0xbb, 0xde, 0xbb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6,
0xdb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xdc, 0xd6,
0xdb, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xfc, 0xd6, 0x9b, 0xce, 0x9a, 0xce, 0x5a, 0xbe, 0x9b, 0xc6, 0xd8, 0xa5, 0x87, 0xa1, 0x46, 0xb1, 0x04, 0xb1, 0x98, 0xad,
0xfc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6,
0xdb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xce, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6,
0x59, 0xbe, 0x9b, 0xc6, 0xfd, 0xd6, 0x1d, 0xd7, 0x1d, 0xdf, 0xb3, 0xbc, 0xeb, 0xaa, 0xab, 0xaa, 0x6a, 0xaa, 0x6a, 0xaa, 0x6a, 0xaa, 0x8a, 0xa2, 0xcb, 0xaa, 0x0c, 0xb3, 0x51, 0xb4, 0xbf, 0xef,
0x9e, 0xe7, 0x79, 0xc6, 0x0e, 0x43, 0x0e, 0x3b, 0x0e, 0x43, 0x0f, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b,
0x8f, 0x4b, 0x70, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xd0, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xf1, 0x5b,
0xf1, 0x53, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2f, 0x44, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0x8d, 0x3b, 0x2f, 0x44, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0x8c, 0x3b, 0x8c, 0x33,
0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0xee, 0x3b,
0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xee, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32,
0x2b, 0x33, 0xed, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x8d, 0x3b,
0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xc9, 0x2a,
0xea, 0x32, 0xad, 0x3b, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0xac, 0x3b, 0x0b, 0x33, 0xea, 0x2a,
0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x0a, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x8c, 0x3b,
0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0x8d, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0x8c, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xa9, 0x2a,
0xa9, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x88, 0x2a,
0x88, 0x2a, 0xc9, 0x2a, 0x89, 0x2a, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x09,
0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0xc4, 0x00, 0x54, 0x4c, 0xbe, 0x8e, 0xdd, 0x9e, 0xbd, 0xa6, 0x1e, 0x9f, 0xd2, 0x4b, 0x46, 0x11, 0x47, 0x09,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x06, 0x09, 0x26, 0x09, 0x2e, 0x33, 0x38, 0x65, 0x7d, 0x76, 0xbf, 0x86, 0x2e, 0x2b, 0x06, 0x09, 0x47, 0x11,
0x26, 0x11, 0x68, 0x11, 0x7c, 0x86, 0xde, 0xa6, 0xdd, 0x9e, 0xbe, 0x96, 0x9a, 0x6d, 0xe5, 0x08, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11,
0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11,
0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x11,
0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x71, 0x8c, 0xda, 0xde, 0xbe, 0xf7, 0xfe, 0xff, 0x4f, 0xae, 0x0a, 0x8e, 0x09, 0x8e, 0x08, 0x86,
0x09, 0x86, 0xe8, 0x85, 0x08, 0x86, 0x08, 0x7e, 0xe8, 0x85, 0x09, 0x86, 0x09, 0x8e, 0xc9, 0x85, 0xdb, 0xde, 0xfc, 0xde, 0xfb, 0xde, 0xdc, 0xde, 0xfc, 0xde, 0xdb, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6,
0xdc, 0xd6, 0xda, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xde, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xde, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0x9a, 0xce, 0x39, 0xc6, 0xf0, 0xab, 0x2a, 0xaa, 0x49, 0xaa, 0x6a, 0x9a, 0xc4, 0x98, 0xc4, 0xa8, 0x11, 0xa4, 0x9a, 0xd6,
0xdb, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6,
0xdc, 0xd6, 0xdb, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xce, 0xfc, 0xce, 0xfc, 0xd6, 0xfc, 0xce, 0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xce, 0xfc, 0xd6, 0xfc, 0xd6,
0xfc, 0xd6, 0x1c, 0xd7, 0x1c, 0xd7, 0x1d, 0xd7, 0x3d, 0xdf, 0x55, 0xc5, 0xcb, 0xaa, 0xaa, 0xaa, 0x6a, 0xaa, 0x4a, 0xaa, 0x6a, 0xa2, 0x6a, 0xaa, 0xab, 0xaa, 0x0c, 0xb3, 0xcf, 0xb3, 0xbe, 0xef,
0xbe, 0xe7, 0x79, 0xc6, 0x0d, 0x43, 0x0e, 0x3b, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x4f, 0x4b, 0x4e, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b,
0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x5b, 0xd1, 0x53, 0xd1, 0x53,
0xf1, 0x5b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x6b, 0x33, 0x2b, 0x33, 0xca, 0x2a,
0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33,
0xea, 0x32, 0xa9, 0x2a, 0xaa, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xc9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xeb, 0x32,
0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xaa, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xaa, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0b, 0x2b, 0xaa, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a,
0xea, 0x32, 0xa9, 0x2a, 0x48, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x6b, 0x3b, 0xea, 0x32, 0xa9, 0x2a, 0x48, 0x22, 0x88, 0x2a, 0xc9, 0x2a, 0x4b, 0x3b, 0xea, 0x32, 0x89, 0x2a, 0x68, 0x2a, 0x69, 0x2a,
0xca, 0x2a, 0x4b, 0x3b, 0xea, 0x32, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11,
0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x09, 0xc4, 0x08, 0x9a, 0x6d, 0x9c, 0x96, 0xbd, 0x9e, 0xbd, 0x9e, 0x7d, 0x8e, 0x4b, 0x22, 0x47, 0x11, 0x46, 0x11,
0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x06, 0x01, 0x8c, 0x2a, 0x78, 0x5d, 0x3c, 0x76, 0x3c, 0x76, 0x3c, 0x6e, 0x99, 0x6d, 0xa8, 0x19, 0x26, 0x11, 0x46, 0x11,
0x47, 0x11, 0xa4, 0x00, 0x37, 0x65, 0xde, 0xa6, 0xbd, 0x9e, 0xbd, 0x9e, 0xfe, 0x86, 0x06, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11,
0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0xa4, 0x08, 0x68, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x92, 0x94, 0xdb, 0xde, 0xdd, 0xf7, 0xdf, 0xff, 0x2f, 0xa6, 0x0a, 0x8e, 0x09, 0x8e, 0x08, 0x86,
0xe8, 0x85, 0x08, 0x86, 0x07, 0x86, 0xe8, 0x7d, 0x09, 0x86, 0x09, 0x86, 0x29, 0x8e, 0xc9, 0x8d, 0xfb, 0xd6, 0xfb, 0xde, 0xfc, 0xde, 0xfc, 0xde, 0xdc, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdb, 0xde,
0xdb, 0xd6, 0xbb, 0xd6, 0xdb, 0xde, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6,
0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6,
0xdc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0x9a, 0xce, 0x7a, 0xc6, 0xac, 0xaa, 0x87, 0xa9, 0x67, 0xa9, 0x67, 0xa9, 0x87, 0xb1, 0x46, 0x91, 0xe8, 0xa1, 0xf8, 0xb5, 0xdc, 0xd6,
0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbc, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xfb, 0xd6, 0xdc, 0xd6,
0xdb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xce, 0xdb, 0xd6, 0xdc, 0xd6, 0xdb, 0xce, 0xdc, 0xd6, 0xdb, 0xce, 0xdc, 0xce, 0xdb, 0xd6, 0xdc, 0xd6, 0xfc, 0xce, 0xfc, 0xd6, 0xfc, 0xce,
0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x1c, 0xd7, 0x1c, 0xd7, 0xb6, 0xc5, 0xeb, 0xb2, 0x8a, 0xaa, 0x69, 0xaa, 0x49, 0xa2, 0x4a, 0xaa, 0x8a, 0xaa, 0xaa, 0xaa, 0xeb, 0xb2, 0x6d, 0xab, 0xdf, 0xef,
0xbe, 0xe7, 0x9a, 0xc6, 0x0e, 0x43, 0xed, 0x42, 0x0d, 0x3b, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2f, 0x43, 0x2e, 0x43, 0x2f, 0x4b, 0x2f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x50, 0x4b,
0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x53, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0x91, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xd1, 0x53, 0xd1, 0x53, 0xd1, 0x5b,
0xd1, 0x53, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44,
0xad, 0x3b, 0x6b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x2f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33,
0x8c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33,
0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0x0e, 0x3c, 0x6c, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xee, 0x3b,
0x6c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xed, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a,
0x0a, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x2a, 0xaa, 0x2a, 0xea, 0x32, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xa9, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0xea, 0x32, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x48, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b,
0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xa9, 0x2a,
0xea, 0x2a, 0xad, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x2b, 0x33, 0xa9, 0x2a, 0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a,
0x68, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x68, 0x22, 0xc9, 0x2a, 0xea, 0x32, 0x8d, 0x3b,
0xea, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0x6b, 0x3b, 0xea, 0x32, 0xea, 0x2a, 0x0a, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0x6c, 0x3b, 0xea, 0x32, 0xea, 0x32, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32,
0x4b, 0x33, 0xea, 0x32, 0xea, 0x32, 0x47, 0x11, 0x06, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x19, 0x27, 0x09, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x11,
0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x88, 0x11, 0xfa, 0x75, 0xdd, 0x96, 0x9d, 0x9e, 0xbd, 0x96, 0x78, 0x6d, 0x88, 0x11, 0x47, 0x11, 0x47, 0x09,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x2a, 0x1a, 0x18, 0x5d, 0xde, 0x8e, 0x9d, 0x8e, 0x7c, 0x8e, 0x7c, 0x86, 0x1c, 0x6e, 0x4e, 0x33, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09,
0x47, 0x11, 0xe5, 0x08, 0x4f, 0x33, 0x1f, 0x9f, 0xbd, 0x9e, 0xbd, 0x96, 0xde, 0x8e, 0x0a, 0x1a, 0x06, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11,
0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x46, 0x11, 0x67, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x67, 0x11, 0x46, 0x11, 0x67, 0x11, 0x46, 0x11, 0x67, 0x11,
0x46, 0x11, 0x67, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0xb2, 0x94, 0xfa, 0xe6, 0xde, 0xf7, 0xff, 0xff, 0x0e, 0x9e, 0xea, 0x8d, 0x09, 0x8e, 0x09, 0x86,
0x08, 0x86, 0x08, 0x86, 0xe8, 0x85, 0xe8, 0x7d, 0x08, 0x86, 0x29, 0x86, 0x0a, 0x8e, 0xca, 0x8d, 0xda, 0xde, 0xfc, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xdb, 0xd6, 0xdc, 0xd6, 0x1c, 0xdf, 0xdc, 0xde,
0xdb, 0xde, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x9a, 0xce, 0x35, 0xad, 0x47, 0xa9, 0x46, 0xa9, 0x25, 0xa1, 0x06, 0xa9, 0x67, 0xa1, 0x87, 0xb1, 0x30, 0x8c, 0xbb, 0xd6, 0xbb, 0xd6,
0xdb, 0xd6, 0xbb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xdc, 0xd6, 0xbb, 0xd6, 0xdc, 0xce, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xce, 0xbb, 0xce, 0xdc, 0xd6,
0xbb, 0xce, 0xdc, 0xd6, 0xdb, 0xd6, 0xbb, 0xce, 0xdc, 0xce, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xd6, 0xdc, 0xce, 0xdb, 0xce, 0xdc, 0xd6, 0xdc, 0xce, 0xdc, 0xd6,
0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0x1d, 0xd7, 0xf8, 0xcd, 0xcb, 0xaa, 0x8a, 0xaa, 0x69, 0xaa, 0x4a, 0xaa, 0x49, 0xa2, 0x6a, 0xaa, 0xab, 0xaa, 0xeb, 0xaa, 0x4d, 0xab, 0xdf, 0xef,
0x9e, 0xe7, 0x9a, 0xce, 0x0e, 0x43, 0xed, 0x3a, 0xed, 0x42, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x4b, 0x2e, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b,
0x4f, 0x4b, 0x4f, 0x4b, 0x70, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53,
0xd1, 0x5b, 0xad, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x2f, 0x44, 0xac, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x4f, 0x44, 0xad, 0x3b,
0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33,
0x2f, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b,
0x2b, 0x33, 0x4b, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x0e, 0x3c, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33,
0xcd, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0x2b, 0x33,
0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x2b, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x0a, 0x33,
0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x2a,
0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33,
0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x8d, 0x3b, 0x0b, 0x33,
0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xa9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xc9, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xc9, 0x2a,
0x68, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09,
0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x0a, 0x1a, 0xfb, 0x7d, 0x9d, 0x8e, 0x9c, 0x9e, 0x7d, 0x96, 0xf6, 0x64, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0xcd, 0x32, 0x3c, 0x6e, 0x7d, 0x86, 0x7d, 0x96, 0xbd, 0x9e, 0x9d, 0x96, 0x5c, 0x86, 0xba, 0x65, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11,
0x47, 0x09, 0x26, 0x11, 0x2a, 0x22, 0x1f, 0x9f, 0x9d, 0x96, 0x9c, 0x9e, 0xbd, 0x8e, 0xcd, 0x2a, 0xe5, 0x08, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0xc4, 0x08, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11,
0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0xb2, 0x94, 0xfb, 0xde, 0xbd, 0xff, 0xff, 0xff, 0x0d, 0x9e, 0x0a, 0x8e, 0x29, 0x8e, 0x08, 0x86,
0x08, 0x86, 0x08, 0x7e, 0x08, 0x7e, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x8e, 0x29, 0x8e, 0xca, 0x8d, 0xfb, 0xde, 0xfb, 0xde, 0xfc, 0xde, 0xdb, 0xde, 0xdc, 0xde, 0x1c, 0xdf, 0xf4, 0xa4, 0x55, 0xad,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x7a, 0xce, 0xec, 0xa2, 0x66, 0x99, 0x25, 0x99, 0x05, 0x99, 0x25, 0x99, 0x26, 0x99, 0x66, 0xa1, 0x51, 0xa4, 0xbb, 0xce, 0xbb, 0xd6,
0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0xdb, 0xd6, 0xdc, 0xce, 0xdb, 0xce, 0xbb, 0xd6, 0xdb, 0xd6, 0xdc, 0xce, 0xbb, 0xd6, 0xdc, 0xd6, 0xdb, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0xdc, 0xce,
0xdc, 0xd6, 0xbb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdb, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xce, 0xdc, 0xd6, 0xdc, 0xd6, 0xfc, 0xce, 0xfc, 0xd6,
0x35, 0x9d, 0x19, 0xbe, 0xfc, 0xd6, 0xfd, 0xd6, 0x1d, 0xd7, 0x39, 0xce, 0xca, 0xaa, 0x8a, 0xaa, 0x4a, 0xaa, 0x49, 0xaa, 0x4a, 0xa2, 0x6a, 0xaa, 0x8a, 0xaa, 0xeb, 0xaa, 0x4d, 0xab, 0xdf, 0xef,
0xbe, 0xe7, 0xba, 0xce, 0x0e, 0x43, 0xee, 0x42, 0xed, 0x3a, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x43, 0x2f, 0x43, 0x4f, 0x4b,
0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x53, 0x70, 0x53, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb1, 0x53, 0xb1, 0x53, 0xd1, 0x53,
0xd1, 0x53, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b,
0x8d, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4c, 0x33,
0x0a, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32,
0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0xaa, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0xea, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0xea, 0x32, 0xca, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xaa, 0x2a, 0x0a, 0x33, 0xca, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x69, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0x0a, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a,
0xa9, 0x2a, 0xc9, 0x32, 0x6c, 0x3b, 0xea, 0x32, 0xc9, 0x2a, 0x88, 0x2a, 0xa9, 0x2a, 0xca, 0x32, 0x6c, 0x3b, 0x0a, 0x33, 0xc9, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0x4b, 0x3b, 0x0a, 0x33,
0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x09, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11,
0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x06, 0x11, 0x2b, 0x1a, 0xfa, 0x75, 0x7c, 0x96, 0x9c, 0x96, 0x7c, 0x96, 0xd6, 0x54, 0x05, 0x09, 0x47, 0x11, 0x47, 0x09,
0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x79, 0x5d, 0x1c, 0x76, 0x9d, 0x96, 0xbc, 0x9e, 0x9c, 0x9e, 0x9c, 0x96, 0xbe, 0x8e, 0x4f, 0x33, 0x06, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11,
0x47, 0x11, 0x26, 0x09, 0xa8, 0x11, 0x1f, 0x97, 0x9c, 0x96, 0x9d, 0x96, 0x9e, 0x8e, 0x0f, 0x2b, 0xe5, 0x10, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09,
0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11,
0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11,
0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11,
0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x67, 0x19, 0xd3, 0x9c, 0xfa, 0xe6, 0xbe, 0xf7, 0xff, 0xff, 0xee, 0x9d, 0x09, 0x8e, 0x09, 0x8e, 0x08, 0x86,
0xe9, 0x85, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x08, 0x86, 0x09, 0x8e, 0x2a, 0x8e, 0xca, 0x8d, 0xfc, 0xde, 0xfc, 0xde, 0xdb, 0xd6, 0xdb, 0xde, 0xdb, 0xd6, 0xbb, 0xde, 0xdb, 0xde, 0xdb, 0xd6,
0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xd6,
0x9a, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x39, 0xc6, 0x6a, 0x9a, 0x46, 0x91, 0x05, 0x91, 0x05, 0x89, 0x05, 0x91, 0x25, 0x91, 0x66, 0x91, 0x11, 0xa4, 0x9a, 0xce, 0xdb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xce, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xce, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6,
0xbb, 0xce, 0xdb, 0xd6, 0xbc, 0xce, 0xbb, 0xd6, 0xdb, 0xd6, 0xdb, 0xce, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xce, 0xbb, 0xd6, 0xbb, 0xce, 0xdb, 0xd6, 0xdb, 0xce, 0xdc, 0xd6, 0xdc, 0xce, 0xdc, 0xce,
0x1c, 0xd7, 0xfc, 0xd6, 0xfc, 0xd6, 0x1d, 0xd7, 0x1c, 0xd7, 0x59, 0xce, 0xcb, 0xaa, 0x8a, 0xaa, 0x49, 0xaa, 0x29, 0xaa, 0x49, 0xa2, 0x6a, 0xaa, 0x8a, 0xaa, 0xeb, 0xaa, 0x4d, 0xab, 0xbf, 0xef,
0xbe, 0xef, 0x9a, 0xc6, 0x0e, 0x43, 0xed, 0x3a, 0xed, 0x42, 0xee, 0x3a, 0xee, 0x3a, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x4b, 0x4e, 0x43, 0x4f, 0x43,
0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0xb1, 0x53, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53,
0xb0, 0x53, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b,
0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x8d, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0xac, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0xad, 0x3b,
0x4c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x0f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x3b, 0x0f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33,
0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x3c, 0x8c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xaa, 0x2a,
0x0a, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xee, 0x3b, 0x4b, 0x33,
0xea, 0x32, 0xa9, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x0b, 0x33,
0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0xca, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33,
0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33,
0xad, 0x3b, 0x4b, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a,
0xea, 0x32, 0x6c, 0x3b, 0x0a, 0x33, 0x0a, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x6c, 0x3b, 0x0a, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0x6c, 0x33, 0x0a, 0x33, 0xea, 0x32,
0x2b, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x46, 0x09,
0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x2a, 0x1a, 0xda, 0x75, 0x7c, 0x8e, 0x7c, 0x96, 0x7c, 0x96, 0xb5, 0x54, 0x06, 0x09, 0x46, 0x11, 0x47, 0x11,
0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x7d, 0x6e, 0x3b, 0x76, 0x7c, 0x96, 0x7c, 0x9e, 0x7c, 0x96, 0x7c, 0x8e, 0x99, 0x5d, 0x26, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x09,
0x27, 0x11, 0x46, 0x11, 0xc8, 0x11, 0xff, 0x96, 0x7c, 0x96, 0x9c, 0x96, 0x7d, 0x86, 0xcd, 0x2a, 0x06, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11,
0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x05, 0x09, 0xa4, 0x08, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11,
0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11,
0x46, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x09, 0x46, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09,
0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0xd2, 0x9c, 0xfb, 0xe6, 0xde, 0xf7, 0xdf, 0xff, 0x0d, 0x9e, 0x0a, 0x8e, 0x29, 0x86, 0x08, 0x86,
0xe8, 0x85, 0x08, 0x7e, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x29, 0x8e, 0xcb, 0x8d, 0xdb, 0xde, 0xdc, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xbb, 0xde, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xde,
0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6,
0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6,
0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xce, 0x5a, 0xc6, 0x0c, 0x93, 0x46, 0x89, 0x05, 0x89, 0x04, 0x89, 0x05, 0x81, 0x25, 0x89, 0x66, 0x91, 0x52, 0xa4, 0x9b, 0xce, 0xbb, 0xd6,
0xbc, 0xd6, 0xbb, 0xce, 0x9b, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0xbc, 0xce, 0xbb, 0xd6, 0x9b, 0xce, 0xbc, 0xd6, 0xbb, 0xce, 0x9b, 0xce, 0xbc, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbc, 0xce,
0xbb, 0xd6, 0xbb, 0xce, 0xbc, 0xce, 0xbc, 0xd6, 0xbb, 0xce, 0xbc, 0xce, 0xdc, 0xce, 0xbb, 0xce, 0xbc, 0xce, 0xdc, 0xce, 0xdb, 0xd6, 0xbb, 0xce, 0xdb, 0xce, 0xdc, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6,
0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6, 0x59, 0xce, 0xab, 0xb2, 0x8a, 0xaa, 0x4a, 0xaa, 0x29, 0xa2, 0x29, 0xaa, 0x4a, 0xa2, 0x8a, 0xaa, 0xcb, 0xb2, 0x4d, 0xab, 0xbf, 0xf7,
0xbe, 0xef, 0x9a, 0xce, 0xee, 0x42, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0x0d, 0x3b, 0x0e, 0x3b, 0x0e, 0x43, 0x0d, 0x43, 0x0e, 0x43, 0x2f, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43,
0x4e, 0x43, 0x4f, 0x4b, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x70, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x8f, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0x90, 0x4b, 0xb0, 0x53, 0xb0, 0x53, 0xb0, 0x53,
0xb1, 0x53, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2f, 0x44, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x2e, 0x44,
0x8c, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2b, 0x33,
0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x4b, 0x33,
0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b,
0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a,
0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b,
0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xac, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xea, 0x2a,
0xa9, 0x2a, 0x88, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xc9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xea, 0x32, 0xc9, 0x2a, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x47, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11,
0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x0a, 0x12, 0xba, 0x75, 0x7b, 0x8e, 0x7d, 0x96, 0x7c, 0x8e, 0x16, 0x5d, 0x46, 0x09, 0x46, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0xfb, 0x65, 0xfb, 0x6d, 0x1b, 0x86, 0x3b, 0x8e, 0x3b, 0x86, 0x3c, 0x76, 0x0e, 0x2b, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11,
0x47, 0x09, 0x06, 0x09, 0x2b, 0x22, 0xde, 0x96, 0x7c, 0x96, 0x7c, 0x96, 0x7d, 0x86, 0xad, 0x2a, 0x05, 0x09, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xc5, 0x08, 0x67, 0x19, 0x27, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11,
0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11,
0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11,
0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0xb2, 0x94, 0xfa, 0xe6, 0xbe, 0xf7, 0xff, 0xff, 0x0d, 0x9e, 0xea, 0x8d, 0x09, 0x8e, 0x08, 0x86,
0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x7e, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xea, 0x85, 0xdb, 0xd6, 0xdb, 0xde, 0xfc, 0xd6, 0xdb, 0xde, 0xdb, 0xde, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xbb, 0xd6, 0xba, 0xd6, 0x9b, 0xce, 0xbb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9a, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6,
0xbb, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6,
0x9b, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xba, 0xd6, 0x7a, 0xce, 0x14, 0xad, 0x66, 0x81, 0x25, 0x79, 0x05, 0x79, 0x25, 0x79, 0x26, 0x81, 0x24, 0x81, 0xd7, 0xb5, 0xbb, 0xce, 0xbb, 0xd6,
0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbc, 0xce, 0xbb, 0xce, 0xbb, 0xd6, 0xbc, 0xd6, 0xbc, 0xce, 0xbb, 0xce, 0xdb, 0xd6, 0xdc, 0xce, 0xbc, 0xce, 0xdc, 0xce, 0xbb, 0xce, 0xbc, 0xce, 0xdb, 0xce,
0xdc, 0xce, 0xfc, 0xd6, 0xfc, 0xd6, 0xfd, 0xd6, 0xfd, 0xd6, 0x39, 0xce, 0xab, 0xaa, 0x6a, 0xaa, 0x49, 0xaa, 0x29, 0xaa, 0x29, 0xaa, 0x49, 0xa2, 0x8a, 0xaa, 0xcb, 0xb2, 0x4c, 0xab, 0xdf, 0xe7,
0xbe, 0xe7, 0x9a, 0xce, 0xed, 0x42, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x42, 0xed, 0x42, 0xed, 0x3a, 0x0d, 0x43, 0x0e, 0x43, 0xee, 0x42, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x4b,
0x2e, 0x43, 0x4e, 0x4b, 0x4f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x4f, 0x4b, 0x70, 0x4b, 0x6f, 0x53, 0x6f, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53, 0x90, 0x53, 0x90, 0x53,
0xb0, 0x53, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33,
0x4c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x4c, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x32,
0x0b, 0x2b, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0xea, 0x32,
0xea, 0x2a, 0x4c, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x2b, 0x33,
0xca, 0x2a, 0x89, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x32, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33,
0x0a, 0x33, 0xc9, 0x2a, 0x68, 0x2a, 0xa9, 0x2a, 0x0b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0xc9, 0x2a, 0x88, 0x2a, 0xc9, 0x2a, 0xea, 0x32, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x88, 0x2a, 0xa9, 0x2a,
0xea, 0x32, 0x6c, 0x3b, 0x2b, 0x33, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09,
0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x09, 0x46, 0x11, 0x67, 0x11, 0x98, 0x65, 0x3c, 0x8e, 0x7c, 0x96, 0x5b, 0x8e, 0x79, 0x6d, 0xa9, 0x11, 0x47, 0x11, 0x46, 0x09,
0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0xb1, 0x3b, 0x1b, 0x66, 0xdb, 0x65, 0xfa, 0x6d, 0xda, 0x6d, 0xd6, 0x54, 0x67, 0x11, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11,
0x46, 0x11, 0x06, 0x09, 0x4f, 0x3b, 0x9d, 0x96, 0x7b, 0x96, 0x5c, 0x8e, 0x7c, 0x7e, 0xc8, 0x11, 0x06, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0xe5, 0x08, 0xc3, 0x08, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x27, 0x09,
0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11,
0x27, 0x11, 0x47, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11,
0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x67, 0x11, 0x47, 0x09, 0x47, 0x11, 0xb2, 0x94, 0xfb, 0xde, 0xbd, 0xf7, 0xff, 0xff, 0x0e, 0xa6, 0x09, 0x8e, 0x29, 0x8e, 0x08, 0x86,
0x09, 0x86, 0x08, 0x7e, 0x07, 0x7e, 0xe8, 0x8d, 0x08, 0x86, 0x09, 0x8e, 0x2a, 0x8e, 0xaa, 0x8d, 0xda, 0xde, 0xfb, 0xd6, 0xdb, 0xde, 0xdc, 0xd6, 0xbc, 0xd6, 0xdb, 0xd6, 0x19, 0xc6, 0x9b, 0xce,
0x9b, 0xd6, 0x9b, 0xce, 0xbb, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9a, 0xce, 0x9b, 0xce,
0x9a, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xd6, 0x9b, 0xce, 0x9b, 0xce,
0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x19, 0xbe, 0xcb, 0x8a, 0x25, 0x79, 0x65, 0x79, 0x46, 0x79, 0x24, 0x79, 0xaf, 0x93, 0x7a, 0xc6, 0x9a, 0xce, 0x9b, 0xce,
0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbc, 0xce,
0xbb, 0xce, 0xbb, 0xce, 0xbc, 0xce, 0xbb, 0xce, 0xbb, 0xd6, 0xbc, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0xbc, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xd6, 0xbb, 0xd6, 0xdb, 0xce, 0xdb, 0xce, 0xdb, 0xd6,
0x39, 0xbe, 0x7a, 0xc6, 0xdc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x18, 0xce, 0xaa, 0xaa, 0x69, 0xaa, 0x29, 0xa2, 0x29, 0xaa, 0x29, 0xaa, 0x49, 0xa2, 0x6a, 0xaa, 0xcb, 0xaa, 0x2c, 0xab, 0xdf, 0xef,
0xbe, 0xef, 0x9a, 0xc6, 0xed, 0x42, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xee, 0x3a, 0x0e, 0x43, 0x0e, 0x43, 0x0d, 0x3b, 0x0d, 0x43, 0x2e, 0x43, 0x2e, 0x43,
0x2f, 0x43, 0x2f, 0x4b, 0x2e, 0x43, 0x4e, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x43, 0x4f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x6f, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0x90, 0x4b, 0xb0, 0x53,
0xb0, 0x4b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x3b,
0xcd, 0x3b, 0x2f, 0x44, 0xed, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b,
0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44,
0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6b, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0x8d, 0x3b, 0x2b, 0x33,
0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0x0e, 0x3c,
0x6c, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0x0b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a,
0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xee, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32,
0xa9, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x0b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xcd, 0x3b,
0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xca, 0x2a,
0x0b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x89, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x0a, 0x33,
0x89, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0x2b, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xad, 0x3b,
0x0a, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x8c, 0x3b, 0x2a, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xca, 0x32, 0xea, 0x32,
0x8c, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x09, 0x27, 0x11,
0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0xc5, 0x00, 0xf6, 0x4c, 0x3b, 0x8e, 0x5c, 0x96, 0x7c, 0x8e, 0x3b, 0x86, 0x6c, 0x2a, 0x46, 0x11, 0x47, 0x11,
0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x70, 0x33, 0xf7, 0x54, 0x18, 0x55, 0xb4, 0x44, 0x68, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x27, 0x09, 0x47, 0x09,
0x46, 0x11, 0xc4, 0x00, 0x16, 0x5d, 0x5c, 0x8e, 0x5c, 0x96, 0x3b, 0x86, 0x3c, 0x76, 0x05, 0x09, 0x46, 0x09, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0xa4, 0x08, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09,
0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11,
0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09,
0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x09, 0x92, 0x94, 0xda, 0xde, 0xbd, 0xff, 0xdf, 0xff, 0x2f, 0xa6, 0xe9, 0x8d, 0x29, 0x8e, 0x08, 0x86,
0xe8, 0x85, 0xe8, 0x7d, 0xe8, 0x85, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x29, 0x8e, 0xaa, 0x8d, 0xfb, 0xd6, 0xfb, 0xde, 0xdc, 0xde, 0xdb, 0xde, 0xbb, 0xd6, 0xdb, 0xd6, 0x5a, 0xce, 0xbb, 0xd6,
0x9b, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xce, 0xba, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xce, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6,
0x9b, 0xd6, 0xba, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce, 0xba, 0xce, 0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0xbb, 0xd6,
0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce, 0x99, 0xc6, 0x38, 0xbe, 0x6e, 0x8b, 0xa7, 0x79, 0xe7, 0x81, 0x31, 0x94, 0x39, 0xbe, 0x7a, 0xce, 0x9b, 0xd6, 0xbb, 0xce,
0xbb, 0xce, 0x9b, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce,
0x9b, 0xce, 0xba, 0xce, 0xdb, 0xce, 0xbb, 0xd6, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xd6, 0xbb, 0xce, 0xdb, 0xce, 0xdb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbc, 0xce, 0xbc, 0xce, 0xbc, 0xce, 0xdc, 0xce,
0xfc, 0xd6, 0xdc, 0xd6, 0xfc, 0xce, 0xfb, 0xd6, 0xfc, 0xd6, 0x96, 0xc5, 0xab, 0xaa, 0x69, 0xaa, 0x29, 0xaa, 0x09, 0xa2, 0x29, 0xaa, 0x49, 0xa2, 0x6a, 0xaa, 0xcb, 0xb2, 0x2c, 0xab, 0xbf, 0xef,
0xbe, 0xe7, 0x7a, 0xc6, 0xed, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xce, 0x3a, 0xee, 0x42, 0xee, 0x3a, 0xee, 0x3a, 0x0e, 0x43, 0xee, 0x42, 0x0e, 0x43, 0x0e, 0x43,
0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x43, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x90, 0x4b, 0x90, 0x53, 0x90, 0x53,
0xb0, 0x53, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b,
0xac, 0x3b, 0xed, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b,
0x4f, 0x44, 0xac, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x4c, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x3b,
0x4b, 0x33, 0x8c, 0x33, 0x2b, 0x33, 0x6b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0x4b, 0x33, 0x0e, 0x3c, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4b, 0x33,
0xee, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xee, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0xea, 0x32, 0x2b, 0x33, 0xed, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xed, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33,
0xcd, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xea, 0x32, 0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x33,
0xc9, 0x2a, 0xa9, 0x2a, 0x0a, 0x33, 0xca, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x32, 0xca, 0x32, 0x0a, 0x33, 0xea, 0x32, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xc9, 0x2a, 0x0a, 0x33, 0xea, 0x32,
0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0x26, 0x11, 0x27, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11,
0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0xc5, 0x08, 0xd1, 0x3b, 0x3c, 0x7e, 0x3b, 0x8e, 0x3b, 0x8e, 0x9c, 0x8e, 0xf2, 0x4b, 0x26, 0x09, 0x47, 0x11,
0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x06, 0x09, 0xa8, 0x19, 0xc9, 0x19, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09, 0x47, 0x11,
0x26, 0x09, 0xc9, 0x19, 0xfa, 0x75, 0x5c, 0x96, 0x3b, 0x8e, 0x3a, 0x86, 0xd6, 0x4c, 0x06, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11,
0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0xa4, 0x08, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11,
0x47, 0x09, 0x27, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09,
0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x11,
0x47, 0x09, 0x46, 0x11, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x71, 0x8c, 0xda, 0xde, 0xbd, 0xf7, 0xdf, 0xff, 0x4f, 0xae, 0xea, 0x8d, 0x09, 0x8e, 0x09, 0x86,
0x08, 0x86, 0x08, 0x7e, 0x08, 0x7e, 0xe8, 0x85, 0xe8, 0x85, 0x09, 0x86, 0x29, 0x8e, 0xc9, 0x8d, 0xda, 0xd6, 0xdc, 0xde, 0xdb, 0xd6, 0xbc, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6,
0xbb, 0xce, 0x9a, 0xce, 0x9b, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce,
0x9a, 0xce, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9b, 0xd6,
0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xd6, 0x9b, 0xce, 0x7a, 0xce, 0x5a, 0xc6, 0xf8, 0xbd, 0x18, 0xbe, 0x59, 0xbe, 0x79, 0xc6, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xd6,
0x9b, 0xd6, 0x9b, 0xce, 0x9a, 0xce, 0xbb, 0xce, 0xba, 0xce, 0xbb, 0xd6, 0x9a, 0xce, 0xbb, 0xce, 0xbb, 0xd6, 0x9b, 0xd6, 0xbb, 0xce, 0xbb, 0xd6, 0x9b, 0xd6, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xd6,
0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbc, 0xce, 0xbb, 0xd6, 0xbc, 0xd6,
0xdc, 0xd6, 0xdc, 0xce, 0xfc, 0xd6, 0xfc, 0xd6, 0xfc, 0xd6, 0x34, 0xc5, 0xaa, 0xaa, 0x69, 0xaa, 0x28, 0xa2, 0x08, 0xaa, 0x08, 0xaa, 0x49, 0xaa, 0x89, 0xaa, 0xab, 0xaa, 0x6d, 0xab, 0xbe, 0xf7,
0x9e, 0xe7, 0x79, 0xc6, 0xcd, 0x3a, 0xed, 0x3a, 0xcd, 0x3a, 0xcc, 0x32, 0xcd, 0x3a, 0xcd, 0x42, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0x0d, 0x43, 0xed, 0x3a, 0x0e, 0x3b, 0xee, 0x42, 0x0e, 0x43,
0x2e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x4b, 0x4f, 0x4b, 0x4e, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x70, 0x4b,
0x70, 0x4b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b,
0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6b, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x2b, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33,
0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x2b, 0x4b, 0x33, 0x0b, 0x33,
0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x4b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a,
0x2b, 0x33, 0xea, 0x32, 0xaa, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0a, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0xea, 0x2a, 0x4b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32,
0x0b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x0a, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x32,
0xa9, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x2b, 0x33, 0x0a, 0x33, 0xc9, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0xa9, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0xca, 0x32, 0x0a, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x8c, 0x3b, 0x2b, 0x33,
0xea, 0x32, 0xa9, 0x2a, 0xea, 0x32, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11,
0x47, 0x09, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x0a, 0x12, 0x1c, 0x6e, 0x3b, 0x8e, 0x3b, 0x8e, 0x5b, 0x8e, 0x1b, 0x7e, 0x88, 0x11, 0x46, 0x09,
0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x09, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x46, 0x09,
0x27, 0x11, 0x12, 0x4c, 0x1b, 0x86, 0x5b, 0x8e, 0x3b, 0x86, 0x3c, 0x7e, 0x0e, 0x2b, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09,
0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xc3, 0x08, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09,
0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11,
0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09,
0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x51, 0x84, 0xb9, 0xde, 0xbe, 0xf7, 0xde, 0xff, 0x70, 0xae, 0xea, 0x8d, 0x29, 0x8e, 0x08, 0x86,
0xe9, 0x85, 0x08, 0x7e, 0xe8, 0x85, 0x08, 0x86, 0xe8, 0x85, 0x09, 0x8e, 0x2a, 0x8e, 0xc8, 0x85, 0xb9, 0xd6, 0xdb, 0xd6, 0xdb, 0xde, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xbb, 0xd6,
0xba, 0xd6, 0x9b, 0xd6, 0x9b, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce,
0x9a, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xd6, 0x9a, 0xce,
0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xc6, 0x9b, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce,
0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xd6, 0xbb, 0xce, 0xbb, 0xce,
0x9b, 0xd6, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xdb, 0xce, 0xbb, 0xce, 0xbb, 0xce,
0xdc, 0xce, 0xdb, 0xd6, 0xdc, 0xce, 0xfc, 0xd6, 0xfc, 0xd6, 0x92, 0xb4, 0x89, 0xaa, 0x4a, 0xaa, 0x29, 0xaa, 0x08, 0xa2, 0x09, 0xaa, 0x29, 0xa2, 0x69, 0xaa, 0xaa, 0xaa, 0xef, 0xb3, 0xbf, 0xef,
0x9d, 0xef, 0x59, 0xc6, 0xad, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xac, 0x32, 0xad, 0x3a, 0xec, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0x0d, 0x43, 0x0e, 0x3b, 0x0d, 0x3b,
0x2e, 0x43, 0x0d, 0x43, 0x0e, 0x43, 0x2e, 0x4b, 0x2e, 0x43, 0x2e, 0x43, 0x4e, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x43, 0x4f, 0x4b, 0x6f, 0x4b, 0x4f, 0x4b, 0x6f, 0x53, 0x6f, 0x4b, 0x90, 0x53,
0x90, 0x4b, 0xad, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33,
0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x2f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0x2f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x2b, 0x4b, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x6c, 0x3b, 0x4b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x3c, 0x6c, 0x3b, 0x2b, 0x33, 0xca, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x44, 0x6c, 0x3b,
0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x4c, 0x33, 0x0e, 0x3c, 0x6c, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0x0b, 0x33, 0x4b, 0x33,
0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x8c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a,
0x0a, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xaa, 0x2a, 0x0a, 0x33, 0x4b, 0x33, 0xce, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xa9, 0x2a, 0xea, 0x32, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x4b, 0x33,
0xcd, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a,
0x2b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x3b, 0x0a, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x2a, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x0b, 0x33,
0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11,
0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x11, 0xf6, 0x54, 0x1b, 0x7e, 0x3b, 0x8e, 0x5b, 0x8e, 0x5c, 0x8e, 0xb6, 0x54, 0x06, 0x09,
0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11,
0x4b, 0x22, 0x3b, 0x7e, 0x3b, 0x8e, 0x3b, 0x8e, 0x1b, 0x86, 0x58, 0x5d, 0xa8, 0x19, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x05, 0x09, 0xa4, 0x08, 0x47, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09,
0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x46, 0x09,
0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x19, 0x47, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11,
0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x67, 0x11, 0x27, 0x01, 0x0f, 0x84, 0x9a, 0xd6, 0xbd, 0xf7, 0xde, 0xf7, 0x72, 0xbe, 0xe9, 0x8d, 0x29, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x85, 0xe7, 0x85, 0x08, 0x7e, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xc9, 0x85, 0x97, 0xc6, 0xdb, 0xde, 0xdc, 0xde, 0xdb, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0x7a, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9a, 0xce, 0x7b, 0xd6, 0x7b, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x9a, 0xd6, 0x7b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x7b, 0xce,
0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xd6, 0x7b, 0xce, 0x7a, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce,
0x9a, 0xce, 0xba, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xce, 0x9a, 0xce, 0x9b, 0xce,
0xbb, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xd6, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0x5a, 0xc6,
0x39, 0xbe, 0xdc, 0xd6, 0xdb, 0xce, 0xdc, 0xd6, 0xfc, 0xd6, 0xef, 0xb3, 0x8a, 0xaa, 0x29, 0xaa, 0x28, 0xa2, 0x08, 0xaa, 0x09, 0xa2, 0x29, 0xaa, 0x6a, 0xaa, 0xcb, 0xaa, 0xb1, 0xbc, 0xbe, 0xef,
0x7d, 0xe7, 0x38, 0xbe, 0xcd, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xac, 0x3a, 0xcc, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x42, 0xed, 0x42, 0xed, 0x3a, 0x0d, 0x3b,
0xed, 0x42, 0x0e, 0x43, 0x0e, 0x3b, 0x0e, 0x43, 0x0e, 0x4b, 0x2e, 0x43, 0x2f, 0x43, 0x2f, 0x43, 0x2e, 0x4b, 0x4f, 0x4b, 0x4f, 0x43, 0x4f, 0x4b, 0x6f, 0x4b, 0x70, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b,
0x8f, 0x53, 0x6f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6f, 0x44,
0xce, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4f, 0x44,
0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8d, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33,
0x8c, 0x3b, 0x0e, 0x44, 0x8c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x2e, 0x44, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x6c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0x0e, 0x3c,
0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2b, 0x33,
0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x6b, 0x33, 0x6c, 0x3b, 0x0b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x6c, 0x3b, 0x6c, 0x33,
0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xce, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xce, 0x3b,
0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x0b, 0x33,
0xea, 0x32, 0xc9, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x32, 0x2a, 0x33, 0xea, 0x32, 0xc9, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0xea, 0x32,
0xea, 0x32, 0x2a, 0x33, 0x0a, 0x33, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11,
0x26, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x09, 0x8c, 0x2a, 0xfb, 0x6d, 0x1b, 0x86, 0x3b, 0x8e, 0x1a, 0x86, 0x1b, 0x86, 0x6f, 0x33,
0x06, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11,
0x98, 0x65, 0x1b, 0x86, 0x3b, 0x8e, 0x1b, 0x86, 0xda, 0x75, 0xb2, 0x3b, 0x06, 0x09, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0xa3, 0x08, 0x47, 0x09, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11,
0x46, 0x09, 0x46, 0x19, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x46, 0x11, 0x26, 0x11,
0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11,
0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x67, 0x11, 0x27, 0x09, 0xaf, 0x73, 0x99, 0xd6, 0x9e, 0xff, 0xde, 0xff, 0xb4, 0xbe, 0xe9, 0x8d, 0x29, 0x8e, 0x09, 0x86,
0x09, 0x86, 0x08, 0x7e, 0x08, 0x7e, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x29, 0x8e, 0xc8, 0x8d, 0x55, 0xbe, 0xdc, 0xde, 0xbb, 0xde, 0xdb, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6, 0x38, 0xc6, 0xf4, 0x9c,
0x18, 0xc6, 0xbb, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x9b, 0xce, 0x7b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce,
0x7a, 0xce, 0x9b, 0xce, 0x7b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x9a, 0xce,
0x7b, 0xce, 0x9a, 0xce, 0x7a, 0xd6, 0x7a, 0xce, 0x9b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9b, 0xce, 0x7a, 0xce, 0x9b, 0xce, 0x7b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x7a, 0xd6, 0x9b, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x9b, 0xd6, 0x9a, 0xce, 0x7b, 0xce,
0x9a, 0xce, 0xba, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xba, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xbb, 0xce,
0xdc, 0xd6, 0xdb, 0xce, 0xdc, 0xce, 0xfb, 0xce, 0xdc, 0xd6, 0x0b, 0xab, 0x89, 0xaa, 0x29, 0xaa, 0x08, 0xa2, 0x08, 0xaa, 0x08, 0xaa, 0x29, 0xa2, 0x69, 0xaa, 0xcb, 0xb2, 0x75, 0xcd, 0xbf, 0xf7,
0x7d, 0xe7, 0x18, 0xbe, 0xac, 0x32, 0xac, 0x3a, 0xad, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xad, 0x32, 0xcd, 0x3a, 0xcc, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x3a, 0xed, 0x3a,
0xee, 0x42, 0x0d, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x0e, 0x4b, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x43, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b,
0x6f, 0x4b, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b,
0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b,
0x6c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x33,
0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xca, 0x2a,
0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x0b, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0a, 0x2b, 0x4b, 0x33,
0x0b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0b, 0x33,
0x0b, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a,
0x0a, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xca, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x4b, 0x33,
0x4b, 0x33, 0x0a, 0x33, 0xc9, 0x32, 0xea, 0x32, 0x4b, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0xc9, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0xc9, 0x2a, 0xea, 0x32,
0x2b, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x26, 0x11, 0x47, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x09, 0x27, 0x11,
0x46, 0x11, 0x27, 0x09, 0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x67, 0x11, 0x53, 0x44, 0xda, 0x6d, 0x1b, 0x86, 0x1a, 0x8e, 0x3b, 0x86, 0x1b, 0x7e,
0x70, 0x33, 0x26, 0x09, 0x46, 0x09, 0x46, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x09, 0x27, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0xe9, 0x19, 0x36, 0x5d,
0x1b, 0x86, 0x5b, 0x8e, 0x1a, 0x8e, 0xfa, 0x7d, 0x58, 0x55, 0x26, 0x09, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0xa4, 0x08, 0x47, 0x19, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11,
0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x09,
0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11,
0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x2d, 0x5b, 0x78, 0xd6, 0x9d, 0xef, 0xde, 0xff, 0xd6, 0xce, 0xea, 0x8d, 0x09, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x85, 0xe7, 0x85, 0xe8, 0x7d, 0x08, 0x86, 0x08, 0x86, 0x09, 0x8e, 0x0a, 0x86, 0x31, 0xae, 0xdc, 0xde, 0xdb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6,
0x9b, 0xd6, 0x9a, 0xce, 0x9b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x7a, 0xd6, 0x9a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7b, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7b, 0xce, 0x9a, 0xce,
0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce,
0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce,
0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xc6, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce, 0xbc, 0xce,
0xbb, 0xce, 0xdc, 0xce, 0xbc, 0xd6, 0xdc, 0xd6, 0xfc, 0xd6, 0x48, 0xa2, 0x69, 0xb2, 0x29, 0xaa, 0x08, 0xa2, 0xe8, 0xa9, 0x08, 0xa2, 0x29, 0xaa, 0x69, 0xb2, 0xcb, 0xaa, 0x38, 0xd6, 0xbe, 0xf7,
0x5d, 0xdf, 0xb6, 0xad, 0xac, 0x32, 0xac, 0x32, 0xad, 0x3a, 0x8c, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcc, 0x3a, 0xcd, 0x42, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xee, 0x42,
0xed, 0x3a, 0xee, 0x3a, 0xee, 0x3a, 0x0e, 0x43, 0x0d, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x4b, 0x2e, 0x4b, 0x4e, 0x43, 0x4f, 0x43, 0x2f, 0x4b, 0x4f, 0x4b, 0x6f, 0x4b, 0x6f, 0x4b,
0x6f, 0x4b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0xad, 0x3b,
0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x70, 0x44,
0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8d, 0x33, 0x2f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44,
0xad, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0x4c, 0x33, 0x6c, 0x33, 0x2f, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x8c, 0x33, 0x2e, 0x44, 0x8d, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33,
0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4c, 0x33, 0x0e, 0x3c, 0x8c, 0x3b, 0x2b, 0x33,
0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4c, 0x33, 0xee, 0x3b,
0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4c, 0x33, 0xed, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33,
0x6c, 0x33, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x2b, 0x33,
0xca, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0xea, 0x2a, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x4b, 0x33, 0xcd, 0x3b,
0x2b, 0x33, 0x6b, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x6b, 0x3b, 0x0b, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x3b, 0x0a, 0x33, 0x2b, 0x33,
0xac, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0x46, 0x09,
0x27, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x47, 0x11, 0x47, 0x09, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0xc9, 0x11, 0xf6, 0x54, 0xba, 0x7d, 0x1a, 0x8e, 0x1b, 0x8e, 0x1a, 0x86,
0x5c, 0x86, 0x33, 0x44, 0xc9, 0x19, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0xae, 0x2a, 0x98, 0x6d, 0x1b, 0x86,
0x1b, 0x8e, 0x1b, 0x8e, 0xfa, 0x7d, 0xba, 0x65, 0x8c, 0x22, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0xe5, 0x10, 0xc3, 0x08, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11,
0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x19, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x11, 0x67, 0x11, 0x67, 0x09, 0x8b, 0x4a, 0x58, 0xce, 0x7c, 0xef, 0xde, 0xff, 0xf8, 0xde, 0xe9, 0x8d, 0x09, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x85, 0xe8, 0x85, 0x07, 0x7e, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xe9, 0x8d, 0xed, 0x95, 0xfc, 0xde, 0xbb, 0xd6, 0xbb, 0xde, 0xbb, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce,
0x9a, 0xce, 0x9a, 0xd6, 0x7b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xce,
0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xbb, 0xc6, 0xbb, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xbb, 0xce,
0xbb, 0xce, 0xbb, 0xd6, 0xdb, 0xd6, 0xdb, 0xce, 0xdb, 0xd6, 0x49, 0xa2, 0x69, 0xaa, 0x28, 0xaa, 0xe8, 0xa9, 0xe8, 0xa1, 0x08, 0xa2, 0x28, 0xaa, 0x6a, 0xaa, 0xaa, 0xaa, 0x3c, 0xe7, 0xbe, 0xf7,
0x3c, 0xdf, 0x14, 0x95, 0xac, 0x32, 0xac, 0x3a, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xad, 0x32, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xcd, 0x3a,
0xed, 0x42, 0xee, 0x42, 0x0e, 0x43, 0xed, 0x3a, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x4b, 0x2e, 0x4b, 0x4e, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b, 0x4f, 0x4b,
0x4f, 0x4b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x6f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xce, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0x2e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b,
0x2b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x43, 0x8c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xed, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33,
0xed, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0xce, 0x3b, 0x6c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0xcd, 0x3b, 0x4c, 0x33,
0x0a, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0xea, 0x32, 0xea, 0x32, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33,
0xea, 0x32, 0x0a, 0x33, 0x0b, 0x33, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x47, 0x11,
0x27, 0x11, 0x46, 0x09, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x46, 0x11, 0xe5, 0x08, 0x8c, 0x22, 0xba, 0x5d, 0xfa, 0x7d, 0xfa, 0x85, 0xfa, 0x85,
0x1a, 0x86, 0x1b, 0x86, 0x78, 0x6d, 0xf2, 0x43, 0x2b, 0x1a, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe6, 0x08, 0xc4, 0x08, 0x67, 0x11, 0x0e, 0x2b, 0xb6, 0x54, 0xb9, 0x75, 0xfb, 0x85, 0x1a, 0x8e,
0xfa, 0x85, 0xda, 0x7d, 0x99, 0x65, 0x70, 0x33, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0xc4, 0x08, 0x46, 0x19, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09,
0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09,
0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x19, 0x46, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x06, 0x09, 0x27, 0x11,
0x46, 0x11, 0x07, 0x11, 0x26, 0x09, 0x46, 0x19, 0x27, 0x09, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0xe8, 0x29, 0x37, 0xc6, 0x5c, 0xf7, 0xde, 0xff, 0x7a, 0xe7, 0xa9, 0x85, 0x0a, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x85, 0x08, 0x86, 0xe8, 0x85, 0x08, 0x7e, 0x08, 0x86, 0x29, 0x8e, 0x09, 0x8e, 0xab, 0x8d, 0xfc, 0xde, 0xbb, 0xde, 0xbb, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0xbb, 0xd6, 0x9b, 0xd6,
0x9b, 0xd6, 0x9a, 0xce, 0x7a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x7b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x7a, 0xc6, 0x9b, 0xce, 0x7a, 0xce, 0x7b, 0xce,
0x7a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xc6, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0xba, 0xce, 0x9b, 0xce, 0x5a, 0xc6,
0xbb, 0xce, 0xdb, 0xd6, 0xbb, 0xce, 0xdc, 0xce, 0xdb, 0xd6, 0x69, 0xa2, 0x29, 0xaa, 0x08, 0xaa, 0xe8, 0xa1, 0xe8, 0xa9, 0xe8, 0xa9, 0x29, 0xaa, 0x69, 0xaa, 0xaa, 0xaa, 0x9e, 0xe7, 0xbf, 0xef,
0x1c, 0xdf, 0x52, 0x7c, 0x8c, 0x32, 0xad, 0x32, 0x8c, 0x32, 0x8b, 0x3a, 0xac, 0x32, 0xac, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcd, 0x32, 0xad, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xed, 0x3a,
0xed, 0x3a, 0xcd, 0x42, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x0e, 0x43, 0x2e, 0x4b, 0x2e, 0x43, 0x2e, 0x4b, 0x4f, 0x4b, 0x4e, 0x43, 0x4f, 0x4b,
0x4f, 0x4b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b,
0xce, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4c, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33,
0x2b, 0x33, 0x0b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33,
0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33,
0x2b, 0x33, 0x4b, 0x3b, 0xac, 0x3b, 0x4b, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x3b, 0xac, 0x3b, 0x6b, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x4b, 0x3b,
0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09,
0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0xce, 0x22, 0x79, 0x5d, 0xb9, 0x75, 0xfa, 0x85,
0x1b, 0x8e, 0x1b, 0x86, 0xda, 0x85, 0xd9, 0x7d, 0xba, 0x75, 0xb9, 0x6d, 0x17, 0x55, 0x94, 0x4c, 0xb5, 0x54, 0x57, 0x5d, 0xda, 0x6d, 0xfa, 0x7d, 0xd9, 0x7d, 0xfa, 0x85, 0xfa, 0x85, 0xfa, 0x85,
0xda, 0x75, 0x99, 0x65, 0xd2, 0x33, 0xe5, 0x00, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x46, 0x11,
0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xc3, 0x08, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x19,
0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x67, 0x11, 0x67, 0x11, 0x47, 0x11, 0x87, 0x19, 0xf7, 0xc5, 0x3c, 0xef, 0xde, 0xff, 0x9e, 0xf7, 0x88, 0x85, 0x09, 0x8e, 0x09, 0x86,
0x08, 0x86, 0xe8, 0x85, 0x08, 0x7e, 0xe8, 0x85, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x8e, 0x09, 0x8e, 0xc9, 0x8d, 0xbb, 0xd6, 0xdb, 0xd6, 0xbb, 0xd6, 0xbb, 0xd6, 0x9b, 0xce, 0x9a, 0xd6, 0x9b, 0xd6,
0x18, 0xc6, 0x9b, 0xce, 0x9b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7b, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xc6, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x9a, 0xce, 0x7b, 0xc6,
0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xc6, 0x9b, 0xce, 0x7a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x7b, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x9b, 0xc6, 0x9b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0x5a, 0xc6,
0x9b, 0xce, 0xbb, 0xd6, 0xdb, 0xd6, 0xdb, 0xd6, 0x9a, 0xce, 0x8a, 0xaa, 0x29, 0xaa, 0xe8, 0xa9, 0xe7, 0xa1, 0xe8, 0xa9, 0x08, 0xa2, 0x29, 0xaa, 0x6a, 0xaa, 0x89, 0xa2, 0x9d, 0xef, 0xde, 0xef,
0xdb, 0xd6, 0x8f, 0x5b, 0xac, 0x32, 0xac, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0xac, 0x32, 0xac, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a,
0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xee, 0x42, 0xed, 0x3a, 0x0e, 0x3b, 0x0d, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x4f, 0x4b, 0x4f, 0x4b,
0x4f, 0x43, 0xcd, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xed, 0x3b, 0x6f, 0x44, 0xee, 0x43,
0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0x0e, 0x3c, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b,
0x6f, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xac, 0x3b, 0x6c, 0x33,
0x8d, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x6f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xed, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b,
0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8d, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x2b, 0x4b, 0x33, 0x8c, 0x3b, 0x0f, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x2b, 0x4b, 0x33, 0x6c, 0x33,
0x2e, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0xea, 0x2a, 0x4b, 0x33, 0x6c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0a, 0x33,
0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x0e, 0x44, 0x8d, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8d, 0x3b,
0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x0a, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xed, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0xed, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xce, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0x6c, 0x33, 0xed, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x0a, 0x33,
0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x3b, 0x4b, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x3b, 0xac, 0x3b, 0x4c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4b, 0x3b, 0x4b, 0x33,
0x4b, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x19, 0x26, 0x09, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11,
0x47, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x09, 0xe5, 0x08, 0x8b, 0x1a, 0xf7, 0x54, 0xba, 0x6d,
0xda, 0x7d, 0xfa, 0x85, 0xfa, 0x85, 0xfa, 0x85, 0xfa, 0x7d, 0xda, 0x85, 0xfa, 0x7d, 0xfb, 0x85, 0xfa, 0x7d, 0xda, 0x7d, 0x1a, 0x86, 0xfa, 0x85, 0xfa, 0x85, 0xfa, 0x85, 0xfa, 0x85, 0xb9, 0x75,
0x99, 0x5d, 0x2f, 0x2b, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x06, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x19, 0x46, 0x09, 0x67, 0x11, 0x47, 0x11, 0x47, 0x11, 0x27, 0x09, 0x96, 0xb5, 0x1b, 0xe7, 0xbe, 0xf7, 0xff, 0xff, 0x88, 0x85, 0x0a, 0x8e, 0x29, 0x8e,
0x09, 0x86, 0x08, 0x86, 0xe8, 0x85, 0x08, 0x7e, 0x08, 0x86, 0x09, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xc9, 0x85, 0x99, 0xce, 0xbb, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x9b, 0xd6, 0x18, 0xbe,
0x19, 0xbe, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xce, 0x7b, 0xc6, 0x7a, 0xc6,
0x7a, 0xc6, 0x7b, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce, 0xba, 0xce, 0xbb, 0xce,
0xbb, 0xce, 0xbb, 0xce, 0xdc, 0xd6, 0xdc, 0xce, 0x54, 0xc5, 0x69, 0xaa, 0x28, 0xaa, 0xe8, 0xa9, 0xc7, 0xa1, 0xc7, 0xa9, 0xe8, 0xa1, 0x28, 0xaa, 0x69, 0xb2, 0x49, 0xa2, 0xbe, 0xf7, 0xde, 0xef,
0xba, 0xce, 0x2e, 0x4b, 0x8c, 0x32, 0xac, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8b, 0x3a, 0x8c, 0x3a, 0x8c, 0x32, 0x8c, 0x3a, 0xac, 0x3a, 0xad, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a,
0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x42, 0xed, 0x42, 0xed, 0x42, 0x0d, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x43, 0x2e, 0x43, 0x2f, 0x43, 0x2e, 0x43, 0x4e, 0x43,
0x4e, 0x4b, 0x70, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xce, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xce, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xed, 0x3b,
0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xed, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x90, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x4c,
0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x90, 0x44, 0xee, 0x43, 0xed, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xed, 0x43, 0x0e, 0x3c, 0xad, 0x3b,
0xee, 0x3b, 0x90, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0x6f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x6f, 0x44,
0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x6c, 0x3b,
0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x8c, 0x33,
0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x4b, 0x33, 0xad, 0x3b, 0x2e, 0x44,
0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33,
0x8c, 0x33, 0x0e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b,
0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0xee, 0x3b,
0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0xed, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33,
0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6b, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2a, 0x33, 0x4b, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33,
0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x27, 0x11,
0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x47, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x05, 0x09, 0xea, 0x19, 0x53, 0x3c,
0x99, 0x5d, 0x99, 0x75, 0xda, 0x7d, 0xd9, 0x7d, 0xfa, 0x7d, 0xf9, 0x85, 0xda, 0x7d, 0xf9, 0x85, 0xfa, 0x85, 0xfa, 0x7d, 0xba, 0x7d, 0xfa, 0x7d, 0xda, 0x7d, 0xb9, 0x75, 0x79, 0x65, 0x38, 0x4d,
0x0a, 0x1a, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11,
0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc3, 0x08, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x67, 0x11, 0x47, 0x09, 0xd2, 0x9c, 0xfa, 0xde, 0xbe, 0xff, 0xff, 0xff, 0xed, 0x95, 0x09, 0x8e, 0x29, 0x8e,
0x09, 0x8e, 0x08, 0x86, 0xe8, 0x85, 0xe8, 0x7d, 0x08, 0x86, 0x08, 0x86, 0x09, 0x8e, 0x29, 0x8e, 0xea, 0x8d, 0x77, 0xc6, 0xbb, 0xd6, 0xbb, 0xd6, 0xba, 0xd6, 0x9b, 0xce, 0x9b, 0xd6, 0x7a, 0xd6,
0x7a, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x7a, 0xce,
0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7b, 0xc6, 0x7b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xc6,
0xbb, 0xce, 0xbb, 0xd6, 0xdb, 0xce, 0xdb, 0xd6, 0x4d, 0xab, 0x49, 0xaa, 0x08, 0xaa, 0xe7, 0xa9, 0xc7, 0xa1, 0xc7, 0xa9, 0xe8, 0xa9, 0x28, 0xaa, 0x89, 0xaa, 0xca, 0xa2, 0xbe, 0xef, 0x9e, 0xef,
0x99, 0xce, 0xcc, 0x3a, 0x8c, 0x32, 0x8c, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0xac, 0x3a, 0xac, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xcc, 0x3a,
0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x3a, 0x0d, 0x3b, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x4b,
0x2f, 0x4b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b,
0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b,
0x8c, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33,
0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x8c, 0x33,
0x4c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x4b, 0x33, 0x8c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x6b, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xac, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4b, 0x3b, 0xad, 0x3b, 0x6b, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0x2b, 0x33,
0x4b, 0x3b, 0xac, 0x3b, 0x4b, 0x3b, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x27, 0x11, 0x47, 0x11, 0x06, 0x11,
0x4b, 0x1a, 0xb5, 0x4c, 0x38, 0x5d, 0x79, 0x6d, 0x99, 0x6d, 0x99, 0x75, 0xb9, 0x7d, 0xda, 0x75, 0xb9, 0x7d, 0x99, 0x75, 0xb9, 0x75, 0x98, 0x6d, 0x37, 0x5d, 0xb6, 0x4c, 0x2e, 0x2b, 0x06, 0x11,
0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x09, 0x68, 0x11, 0x47, 0x11, 0x47, 0x11, 0xef, 0x7b, 0xba, 0xde, 0x9c, 0xf7, 0xdf, 0xff, 0x51, 0xb6, 0xea, 0x8d, 0x09, 0x8e,
0x08, 0x86, 0xe8, 0x85, 0xe8, 0x7d, 0x07, 0x86, 0xe8, 0x85, 0xe8, 0x85, 0x09, 0x86, 0x09, 0x8e, 0xe9, 0x8d, 0x32, 0xae, 0xdc, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce,
0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x79, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xce,
0x5a, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x79, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x79, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xc6,
0x79, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x79, 0xce, 0x59, 0xce, 0x5a, 0xce, 0x59, 0xce, 0x5a, 0xce, 0x79, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xce,
0x7a, 0xc6, 0x7a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x5b, 0xc6, 0x7a, 0xc6, 0x7b, 0xce, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6,
0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x5a, 0xce, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xc6, 0x9a, 0xce, 0x76, 0xad, 0xbb, 0xce,
0x9b, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0xdc, 0xd6, 0x8a, 0xa2, 0x29, 0xaa, 0x08, 0xaa, 0xc8, 0xa1, 0xc7, 0xa1, 0xc7, 0xa9, 0xe8, 0xa9, 0x49, 0xa2, 0x8a, 0xaa, 0x71, 0xc4, 0xbe, 0xf7, 0x7d, 0xe7,
0x38, 0xc6, 0x6b, 0x32, 0x6c, 0x32, 0x8c, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6c, 0x3a, 0xac, 0x3a, 0x8c, 0x32, 0xac, 0x32, 0xac, 0x32, 0xac, 0x3a, 0xac, 0x3a,
0xac, 0x3a, 0xad, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x42, 0xed, 0x42, 0x0e, 0x43, 0x0e, 0x43, 0x2e, 0x4b, 0x2e, 0x43, 0x2e, 0x4b, 0x2e, 0x4b,
0x2e, 0x43, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xac, 0x3b, 0xed, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xed, 0x3b, 0x90, 0x4c, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x70, 0x44, 0x0e, 0x44, 0xad, 0x3b,
0x8c, 0x33, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xed, 0x43, 0x70, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xed, 0x3b, 0x6f, 0x44,
0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xed, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xed, 0x43, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xee, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6b, 0x33, 0x8c, 0x3b, 0xce, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0x8c, 0x3b,
0x4c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33,
0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0xad, 0x3b, 0x0e, 0x3c, 0xac, 0x3b, 0x6c, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x8c, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33,
0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b,
0x4b, 0x3b, 0x6c, 0x3b, 0x4b, 0x3b, 0x4b, 0x3b, 0xcd, 0x3b, 0x6b, 0x3b, 0x6b, 0x3b, 0x6b, 0x3b, 0x2b, 0x33, 0x6b, 0x3b, 0xcd, 0x3b, 0x4b, 0x33, 0x6b, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x33,
0xcd, 0x3b, 0x4b, 0x3b, 0x4b, 0x33, 0x26, 0x11, 0x47, 0x09, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09,
0x47, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11,
0x26, 0x11, 0xe5, 0x00, 0x0a, 0x1a, 0x50, 0x2b, 0x13, 0x44, 0x95, 0x4c, 0xf7, 0x4c, 0xf7, 0x54, 0xf7, 0x4c, 0xb5, 0x4c, 0x33, 0x44, 0x50, 0x33, 0x6b, 0x1a, 0x68, 0x19, 0x06, 0x09, 0x47, 0x09,
0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x67, 0x11, 0x67, 0x11, 0x67, 0x11, 0x4d, 0x5b, 0x78, 0xce, 0x7d, 0xf7, 0xde, 0xff, 0x16, 0xd7, 0xc9, 0x85, 0x29, 0x8e,
0x09, 0x86, 0x08, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0x0a, 0x8e, 0xed, 0x9d, 0xdc, 0xde, 0xbb, 0xd6, 0xbb, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x7a, 0xd6,
0x7a, 0xce, 0x7a, 0xce, 0x59, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6,
0x7a, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xce, 0x59, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xce,
0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x5a, 0xce, 0x59, 0xce, 0x5a, 0xc6, 0x5a, 0xce,
0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xce, 0x7a, 0xc6, 0x5a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xc6,
0x7a, 0xc6, 0x9a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x9a, 0xc6, 0x7b, 0xc6, 0x7a, 0xc6, 0x9a, 0xc6, 0x7b, 0xc6, 0x7a, 0xc6, 0x9a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7b, 0xc6, 0x9b, 0xce, 0x7a, 0xce,
0xba, 0xce, 0xbb, 0xce, 0xbb, 0xce, 0x1c, 0xd7, 0x69, 0xaa, 0x28, 0xaa, 0xe7, 0xa9, 0xc7, 0xa1, 0xa7, 0xa1, 0xc7, 0xa1, 0xe8, 0xa9, 0x49, 0xaa, 0x8a, 0xaa, 0x18, 0xde, 0xbe, 0xf7, 0x5d, 0xe7,
0x96, 0xa5, 0x4c, 0x2a, 0x8c, 0x32, 0x8b, 0x32, 0x4b, 0x2a, 0x6b, 0x32, 0x6b, 0x2a, 0x6b, 0x32, 0x6c, 0x32, 0x8b, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0x8c, 0x3a, 0xac, 0x3a, 0xac, 0x32,
0xac, 0x3a, 0xad, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcc, 0x42, 0xcd, 0x42, 0xed, 0x3a, 0xcd, 0x3a, 0xcd, 0x42, 0xed, 0x3a, 0x0e, 0x3b, 0x0e, 0x43, 0x0d, 0x43, 0x0d, 0x43, 0x0e, 0x43, 0x0e, 0x43,
0x2e, 0x43, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x4c, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xed, 0x3b,
0x70, 0x44, 0xee, 0x43, 0xee, 0x43, 0x0e, 0x3c, 0xcd, 0x3b, 0xed, 0x3b, 0x6f, 0x4c, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xed, 0x3b, 0x0e, 0x3c,
0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xed, 0x3b, 0x90, 0x4c, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x70, 0x44, 0xee, 0x3b,
0xed, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b,
0x70, 0x44, 0xed, 0x3b, 0xed, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xcd, 0x3b, 0x70, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xce, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x50, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x4f, 0x44, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0xad, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xee, 0x3b, 0x6c, 0x3b,
0x4b, 0x33, 0x4b, 0x33, 0x6b, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6b, 0x3b, 0x4b, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11,
0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x47, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11,
0x47, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x67, 0x11, 0x88, 0x11, 0xc9, 0x11, 0x88, 0x11, 0x88, 0x11, 0x87, 0x11, 0x88, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x11,
0x47, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0xc4, 0x08, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09,
0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x19, 0x26, 0x11, 0x48, 0x11, 0x67, 0x11, 0x67, 0x11, 0x8b, 0x4a, 0x37, 0xc6, 0x5c, 0xef, 0xde, 0xff, 0x5a, 0xe7, 0xea, 0x8d, 0x09, 0x8e,
0x09, 0x86, 0x09, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x7e, 0x08, 0x86, 0x08, 0x86, 0x09, 0x8e, 0x09, 0x8e, 0x88, 0x7d, 0xdc, 0xde, 0x9a, 0xd6, 0x9a, 0xd6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce,
0x5a, 0xce, 0x76, 0xad, 0x19, 0xc6, 0x5a, 0xce, 0x7a, 0xc6, 0x5a, 0xce, 0x59, 0xce, 0x5a, 0xce, 0x59, 0xc6, 0x7a, 0xc6, 0x5a, 0xce, 0x79, 0xce, 0x5a, 0xce, 0x59, 0xce, 0x7a, 0xce, 0x5a, 0xce,
0x59, 0xce, 0x7a, 0xc6, 0x59, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x7a, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x5a, 0xc6, 0x59, 0xce, 0x7a, 0xce, 0x59, 0xce, 0x59, 0xce, 0x5a, 0xc6, 0x59, 0xce,
0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x59, 0xce, 0x5a, 0xc6, 0x59, 0xc6,
0x5a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x5a, 0xc6,
0x7a, 0xce, 0x5a, 0xc6, 0x59, 0xce, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xc6, 0x7b, 0xce, 0x7b, 0xce, 0x9a, 0xce, 0x9b, 0xce, 0x9b, 0xce,
0x9b, 0xce, 0xbb, 0xd6, 0xbb, 0xce, 0x39, 0xce, 0x68, 0xaa, 0x08, 0xaa, 0xe8, 0xa1, 0xa7, 0xa9, 0xc7, 0xa1, 0xc7, 0xa1, 0x08, 0xaa, 0x48, 0xaa, 0x49, 0xa2, 0xfb, 0xe6, 0xbe, 0xef, 0x3b, 0xdf,
0x92, 0x84, 0x6b, 0x2a, 0x8c, 0x32, 0x6b, 0x32, 0x4a, 0x32, 0x4b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8b, 0x32, 0x8c, 0x3a, 0x8c, 0x3a, 0x8c, 0x3a, 0x8c, 0x32, 0x8c, 0x3a,
0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x42, 0xee, 0x42, 0xed, 0x3a, 0xed, 0x42, 0xed, 0x42, 0xee, 0x42, 0x0e, 0x43, 0x0e, 0x43,
0x2e, 0x43, 0xcd, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xee, 0x43, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b,
0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b,
0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x4c, 0x33,
0x8c, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x6c, 0x3b, 0xcd, 0x43, 0x8c, 0x3b, 0x4b, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x3b, 0x6c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x4b, 0x3b, 0x0b, 0x33, 0x4b, 0x33, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11,
0x47, 0x11, 0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11,
0x47, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x09,
0x46, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xe3, 0x08, 0x07, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09,
0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11,
0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0xc8, 0x21, 0xd6, 0xbd, 0x3b, 0xe7, 0xbe, 0xff, 0x9c, 0xef, 0xcb, 0x95, 0x09, 0x8e,
0x09, 0x8e, 0x08, 0x86, 0x08, 0x86, 0x08, 0x7e, 0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0x09, 0x8e, 0xc9, 0x85, 0x77, 0xc6, 0xba, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x7a, 0xd6, 0x9a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x79, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x5a, 0xc6, 0x79, 0xc6, 0x7a, 0xce, 0x5a, 0xc6, 0x59, 0xce, 0x5a, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6,
0x5a, 0xce, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xce,
0x59, 0xce, 0x59, 0xce, 0x5a, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x5a, 0xc6, 0x59, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xce, 0x5a, 0xc6,
0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x7a, 0xc6, 0x5a, 0xc6, 0x7a, 0xce,
0x5a, 0xc6, 0x7a, 0xce, 0x5a, 0xc6, 0x7a, 0xc6, 0x5a, 0xce, 0x7a, 0xc6, 0xb7, 0xad, 0xd8, 0xbd, 0x39, 0xc6, 0x56, 0xa5, 0x7a, 0xce, 0x7a, 0xc6, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9b, 0xce,
0x9a, 0xce, 0xbb, 0xce, 0xbb, 0xd6, 0x10, 0xb4, 0x28, 0xaa, 0xe8, 0xa1, 0xc7, 0xa9, 0xa7, 0xa1, 0xa7, 0xa9, 0xc8, 0xa9, 0x08, 0xaa, 0x49, 0xaa, 0x08, 0x9a, 0xbd, 0xf7, 0xbe, 0xef, 0xda, 0xd6,
0xaf, 0x63, 0x6c, 0x2a, 0x6c, 0x32, 0x4b, 0x2a, 0x4b, 0x2a, 0x4b, 0x2a, 0x4b, 0x2a, 0x4a, 0x2a, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x3a, 0x6b, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0x8b, 0x32, 0x8b, 0x32,
0x8c, 0x32, 0xad, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x42, 0xed, 0x3a, 0xed, 0x42, 0x0e, 0x3b, 0x0e, 0x43, 0x0e, 0x43,
0x0d, 0x43, 0xee, 0x3b, 0x90, 0x4c, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0x90, 0x4c, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x90, 0x44, 0x0e, 0x44,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0x2e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x0e, 0x44,
0x90, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x0e, 0x3c, 0x90, 0x44, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0x2e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0x0e, 0x44,
0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x90, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xee, 0x3b,
0x6f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0x6c, 0x33,
0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xce, 0x3b, 0x4f, 0x44, 0xee, 0x3b,
0x8c, 0x3b, 0x4c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xcd, 0x3b,
0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4b, 0x33,
0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0xad, 0x3b,
0x6c, 0x3b, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0x8d, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x0e, 0x44, 0xad, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0x6b, 0x33, 0x2b, 0x33,
0x6c, 0x3b, 0xed, 0x43, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x4b, 0x3b, 0x8c, 0x3b, 0xcd, 0x43, 0x8c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x4b, 0x3b, 0x6c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b,
0x8c, 0x3b, 0x4b, 0x3b, 0x6c, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11,
0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x47, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x09,
0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x47, 0x09, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0xa4, 0x08, 0x46, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09,
0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11,
0x26, 0x11, 0x25, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x47, 0x09, 0x75, 0xb5, 0xda, 0xe6, 0xde, 0xff, 0xbe, 0xff, 0xec, 0x95, 0x0a, 0x8e,
0x29, 0x8e, 0x09, 0x86, 0xe8, 0x85, 0xe8, 0x85, 0x08, 0x7e, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x29, 0x86, 0xe9, 0x8d, 0x32, 0xae, 0x9a, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x7b, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xc6, 0x59, 0xc6, 0x79, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xc6,
0x59, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x3a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xc6,
0x5a, 0xc6, 0x5a, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x5a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x3a, 0xce, 0x59, 0xce, 0x3a, 0xc6, 0x5a, 0xc6,
0x39, 0xce, 0x5a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6,
0x7a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0xb7, 0xb5, 0x14, 0x9d, 0xd4, 0x94, 0xf8, 0xb5, 0xf8, 0xb5, 0x7a, 0xce, 0x9a, 0xce, 0xd7, 0xb5, 0x9b, 0xce, 0x9a, 0xce,
0x9b, 0xce, 0x9b, 0xce, 0xfc, 0xd6, 0xca, 0xaa, 0x28, 0xaa, 0xe7, 0xa9, 0xc7, 0xa9, 0xa6, 0xa1, 0xa7, 0xa1, 0xc7, 0xa1, 0x08, 0xaa, 0x49, 0xaa, 0xcb, 0xaa, 0xfe, 0xf7, 0xbd, 0xef, 0x99, 0xce,
0xac, 0x42, 0x6c, 0x2a, 0x6c, 0x2a, 0x2a, 0x2a, 0x4a, 0x32, 0x4a, 0x2a, 0x4a, 0x2a, 0x4b, 0x32, 0x4b, 0x32, 0x4b, 0x2a, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6c, 0x3a, 0x8c, 0x32,
0xab, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x32, 0x8c, 0x3a, 0xcc, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xec, 0x3a, 0xed, 0x3a, 0xcd, 0x3a, 0x0d, 0x43, 0xed, 0x42, 0x0d, 0x43,
0x0e, 0x43, 0x90, 0x4c, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x90, 0x4c, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x90, 0x4c, 0x0e, 0x44, 0x0e, 0x3c,
0x2f, 0x44, 0xed, 0x3b, 0xee, 0x3b, 0x90, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x90, 0x44,
0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x90, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b,
0x0e, 0x3c, 0x90, 0x4c, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x2e, 0x44, 0xcd, 0x3b, 0x0e, 0x3c, 0x90, 0x4c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x43, 0x90, 0x4c, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44,
0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0xad, 0x3b,
0xee, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x0e, 0x3c, 0xac, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xee, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0x6b, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x6b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x6b, 0x3b, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33,
0x4b, 0x33, 0x6c, 0x3b, 0x4b, 0x33, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x09,
0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11,
0x47, 0x11, 0x46, 0x11, 0x46, 0x09, 0x47, 0x11, 0x27, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11,
0x47, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0xa3, 0x08, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x09,
0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x05, 0x11, 0x26, 0x09,
0x06, 0x09, 0x25, 0x11, 0x05, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x25, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x68, 0x11, 0x67, 0x11, 0x06, 0x01, 0x92, 0x94, 0xb9, 0xd6, 0x9d, 0xf7, 0xdf, 0xff, 0x72, 0xb6, 0xe9, 0x8d,
0x09, 0x8e, 0x09, 0x86, 0x08, 0x86, 0xe8, 0x85, 0xe8, 0x85, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0x0a, 0x8e, 0xcc, 0x95, 0xbc, 0xde, 0x9a, 0xce, 0x9b, 0xce, 0x9a, 0xd6, 0x7a, 0xce,
0x7a, 0xce, 0x5a, 0xce, 0x59, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xce, 0x7a, 0xce, 0xf4, 0x9c, 0x92, 0x8c, 0x39, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6,
0x5a, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x3a, 0xc6, 0x5a, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xce, 0x3a, 0xc6,
0x59, 0xc6, 0x3a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x3a, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6,
0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xce, 0x59, 0xce, 0x39, 0xc6, 0x5a, 0xc6, 0x79, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xce,
0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0xf8, 0xbd, 0x35, 0xa5, 0x92, 0x94, 0x7a, 0xc6, 0x76, 0xad, 0x7a, 0xc6, 0x7a, 0xc6, 0x7a, 0xce, 0x9a, 0xce, 0x9b, 0xce,
0x9a, 0xce, 0xbb, 0xce, 0x3d, 0xd7, 0x28, 0xa2, 0x08, 0xaa, 0xc7, 0xa9, 0x87, 0xa1, 0x86, 0xa1, 0xa7, 0xa1, 0xc8, 0xa1, 0x08, 0xaa, 0x69, 0xaa, 0x91, 0xc4, 0xdf, 0xf7, 0x7d, 0xef, 0x18, 0xbe,
0x0a, 0x22, 0x6c, 0x2a, 0x6c, 0x32, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a, 0x4b, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a, 0x6b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8c, 0x3a,
0x8c, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xcc, 0x42, 0xcd, 0x42, 0xee, 0x42, 0xed, 0x42, 0xed, 0x42, 0xed, 0x42,
0xee, 0x42, 0xad, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xce, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x8d, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xed, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xce, 0x3b, 0x0e, 0x44,
0xed, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xee, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0x6c, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b,
0x8c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x4b, 0x3b, 0x8c, 0x3b, 0xed, 0x3b, 0x8c, 0x3b, 0x6b, 0x3b, 0x2b, 0x33, 0x6b, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x6b, 0x3b, 0x2b, 0x33, 0x4b, 0x3b,
0x8c, 0x3b, 0xed, 0x43, 0x8c, 0x3b, 0x26, 0x11, 0x46, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09,
0x27, 0x11, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x11,
0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11, 0x46, 0x11, 0x26, 0x11,
0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x47, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xe3, 0x08, 0x27, 0x11, 0x05, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11,
0x25, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x25, 0x11, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x06, 0x09,
0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x46, 0x11, 0x68, 0x11, 0x68, 0x11, 0x46, 0x09, 0x2d, 0x63, 0x39, 0xce, 0x7c, 0xf7, 0xde, 0xff, 0x39, 0xdf, 0xa8, 0x85,
0x29, 0x8e, 0x09, 0x8e, 0xe8, 0x85, 0x08, 0x7e, 0xe8, 0x85, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x2a, 0x8e, 0xa9, 0x85, 0xbb, 0xd6, 0xbb, 0xd6, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xce, 0x55, 0xad, 0x39, 0xc6, 0x79, 0xc6, 0x59, 0xc6, 0x7a, 0xce, 0x72, 0x94, 0xb7, 0xb5, 0x96, 0xb5, 0x7a, 0xce, 0x59, 0xc6, 0x3a, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6,
0x39, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x59, 0xce, 0x39, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6,
0x59, 0xc6, 0x5a, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x3a, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6,
0x3a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x5a, 0xc6,
0x59, 0xc6, 0x3a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x3a, 0xc6, 0x3a, 0xc6, 0x9a, 0xce, 0x92, 0x94, 0xb3, 0x94, 0x39, 0xbe, 0xb7, 0xb5, 0x5a, 0xce, 0x7b, 0xce, 0x5a, 0xc6, 0x5b, 0xce, 0x9b, 0xce,
0x9a, 0xce, 0xba, 0xce, 0x35, 0xc5, 0x28, 0xaa, 0xe7, 0xa1, 0xc7, 0xa9, 0x86, 0xa1, 0x86, 0xa9, 0xa6, 0xa9, 0xc7, 0xa9, 0x28, 0xb2, 0x48, 0xaa, 0x78, 0xd6, 0x9e, 0xf7, 0x3c, 0xe7, 0x34, 0x9d,
0x2b, 0x22, 0x6b, 0x2a, 0x6b, 0x32, 0x0a, 0x2a, 0x2b, 0x2a, 0x2a, 0x32, 0x2a, 0x32, 0x4a, 0x32, 0x4b, 0x32, 0x4b, 0x32, 0x4b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x2a,
0x8c, 0x32, 0x6b, 0x32, 0x8b, 0x3a, 0x8c, 0x3a, 0xac, 0x3a, 0x8c, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcc, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x42, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xee, 0x3a,
0xed, 0x3a, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0xce, 0x3b,
0x0e, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0xee, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x90, 0x44,
0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x0e, 0x3c, 0x90, 0x4c, 0x2f, 0x44, 0xed, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x70, 0x44, 0x0e, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x6f, 0x44,
0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b,
0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x0f, 0x44,
0xcd, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b,
0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44,
0x8c, 0x3b, 0xac, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xed, 0x43, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x0d, 0x44, 0x8c, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b,
0xed, 0x43, 0x8c, 0x3b, 0x8c, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x47, 0x09, 0x46, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x11,
0x26, 0x09, 0x47, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x09,
0x26, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x09, 0x46, 0x11, 0x46, 0x09, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11,
0x26, 0x09, 0x47, 0x19, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0xa3, 0x08, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x11,
0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09,
0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x25, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x27, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x09, 0x2a, 0xd6, 0xbd, 0x5c, 0xef, 0xbe, 0xff, 0xde, 0xff, 0xa9, 0x85,
0x0a, 0x8e, 0x09, 0x86, 0x08, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0x08, 0x86, 0xe8, 0x7d, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xe9, 0x8d, 0x33, 0xb6, 0x9a, 0xce, 0x7a, 0xd6, 0x9a, 0xd6, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xc6, 0x7b, 0xce, 0x59, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x39, 0xc6, 0x92, 0x94, 0xf8, 0xbd, 0x76, 0xad, 0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x3a, 0xc6,
0x59, 0xc6, 0x3a, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6,
0x5a, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x79, 0xc6, 0x5a, 0xc6, 0x19, 0xbe, 0x31, 0x84, 0x35, 0xa5, 0xd7, 0xb5, 0x72, 0x8c, 0x9a, 0xc6, 0x39, 0xbe, 0x7a, 0xce, 0x9a, 0xc6, 0x7a, 0xce, 0x9a, 0xce,
0x9b, 0xce, 0xdb, 0xce, 0x0b, 0xab, 0x28, 0xaa, 0xc7, 0xa1, 0xa6, 0xa1, 0x86, 0xa9, 0x86, 0xa1, 0xa7, 0xa1, 0xe7, 0xa9, 0x28, 0xaa, 0x08, 0xa2, 0xff, 0xef, 0xbe, 0xf7, 0x1b, 0xd7, 0x10, 0x7c,
0x4b, 0x2a, 0x6c, 0x2a, 0x2b, 0x2a, 0x09, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2b, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x2b, 0x2a, 0x4b, 0x2a, 0x6b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32,
0x6b, 0x32, 0x8c, 0x3a, 0x8c, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0xac, 0x32, 0xac, 0x32, 0xac, 0x32, 0xad, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xed, 0x3a, 0xed, 0x3a,
0xed, 0x3a, 0x2e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xed, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44,
0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0xee, 0x3b, 0x2e, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2f, 0x44, 0x90, 0x4c, 0x2f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xed, 0x3b, 0x0e, 0x3c,
0x90, 0x4c, 0x2e, 0x44, 0x0e, 0x3c, 0x0f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0f, 0x44, 0xce, 0x3b, 0x0e, 0x3c, 0x90, 0x4c, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44,
0xcd, 0x3b, 0x0e, 0x3c, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x3c, 0x90, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44,
0xce, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xed, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b,
0x4f, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x0e, 0x44, 0xad, 0x3b,
0x6c, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x6c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6b, 0x33, 0x6c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x26, 0x11, 0x47, 0x09, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11,
0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x09, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11,
0x47, 0x09, 0x26, 0x11, 0x47, 0x11, 0x27, 0x11, 0x46, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x46, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x47, 0x09, 0x46, 0x11,
0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0x27, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09,
0x25, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x25, 0x11, 0x26, 0x11, 0x05, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x11, 0x06, 0x09,
0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11,
0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0xa7, 0x19, 0x14, 0xad, 0x1a, 0xe7, 0x9d, 0xf7, 0xbe, 0xf7, 0x2e, 0x9e,
0x09, 0x8e, 0x09, 0x8e, 0x09, 0x86, 0x08, 0x86, 0xe8, 0x85, 0xe7, 0x85, 0x08, 0x7e, 0xe8, 0x85, 0x08, 0x86, 0x29, 0x8e, 0x09, 0x8e, 0xcc, 0x95, 0xba, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x59, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x7a, 0xce, 0x51, 0x8c, 0x14, 0xa5, 0x18, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x7a, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0xd8, 0xb5, 0xf8, 0xb5, 0x7a, 0xc6, 0x7b, 0xc6, 0x9a, 0xce,
0x9b, 0xce, 0xfc, 0xd6, 0x07, 0xa2, 0xe7, 0xa9, 0xa7, 0xa9, 0x86, 0xa1, 0x86, 0xa9, 0x87, 0xa1, 0xa6, 0xa1, 0xe7, 0xa9, 0x48, 0xaa, 0x0c, 0xb3, 0xff, 0xf7, 0xbe, 0xef, 0x99, 0xce, 0xac, 0x3a,
0x4b, 0x2a, 0x6b, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x32, 0x2a, 0x32, 0x4a, 0x2a, 0x4b, 0x2a, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32,
0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x6c, 0x3a, 0x8c, 0x3a, 0x8b, 0x32, 0xab, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xcd, 0x42, 0xcd, 0x42,
0xed, 0x42, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44,
0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xed, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0xee, 0x3b,
0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0xee, 0x43, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b,
0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0xed, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c,
0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x2f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x3c, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b,
0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0x8d, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33,
0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x33, 0x4c, 0x33, 0x6c, 0x33,
0x6c, 0x3b, 0xac, 0x3b, 0xed, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x0d, 0x3c, 0xac, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0xed, 0x43, 0xac, 0x3b,
0x6c, 0x3b, 0x4b, 0x33, 0x6c, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11,
0x47, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x47, 0x09,
0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x47, 0x09, 0x27, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09,
0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11,
0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09,
0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x26, 0x11, 0x25, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09,
0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11,
0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x47, 0x11, 0x68, 0x11, 0x67, 0x11, 0x48, 0x11, 0x50, 0x84, 0xba, 0xd6, 0xbd, 0xf7, 0xbd, 0xff, 0x93, 0xbe,
0xea, 0x8d, 0x29, 0x8e, 0x09, 0x86, 0x08, 0x86, 0x08, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0x08, 0x86, 0x08, 0x86, 0x29, 0x8e, 0x09, 0x8e, 0xc9, 0x8d, 0x79, 0xce, 0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce,
0x79, 0xce, 0x7a, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0xd8, 0xbd, 0x7a, 0xc6, 0xb7, 0xbd, 0x55, 0xa5, 0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6,
0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x59, 0xbe, 0x59, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce,
0x9a, 0xce, 0xf4, 0xbc, 0x28, 0xaa, 0xe7, 0xa9, 0xa7, 0xa1, 0x86, 0xa1, 0x66, 0xa9, 0x86, 0xa1, 0xc7, 0xa9, 0x07, 0xaa, 0x48, 0xaa, 0xf3, 0xcc, 0xbe, 0xf7, 0x7d, 0xef, 0xf7, 0xbd, 0x0a, 0x22,
0x6b, 0x2a, 0x4b, 0x2a, 0x0a, 0x22, 0x2a, 0x22, 0x0a, 0x2a, 0x0a, 0x2a, 0x09, 0x2a, 0x29, 0x2a, 0x2a, 0x2a, 0x2b, 0x2a, 0x4b, 0x32, 0x4b, 0x32, 0x4b, 0x2a, 0x4b, 0x2a, 0x4b, 0x32, 0x6b, 0x32,
0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x6b, 0x32, 0x8c, 0x32, 0x8c, 0x3a, 0x8c, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x32, 0xad, 0x3a, 0xcc, 0x3a, 0xcc, 0x3a, 0xcc, 0x42, 0xcd, 0x42,
0xcd, 0x3a, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0xb0, 0x4c, 0x4f, 0x44,
0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x2e, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b,
0x0e, 0x3c, 0x2e, 0x44, 0xb0, 0x4c, 0x2f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44,
0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44,
0x90, 0x4c, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44,
0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2e, 0x3c, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33,
0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b,
0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x33, 0x4b, 0x33,
0xac, 0x3b, 0x0d, 0x44, 0xac, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xed, 0x43, 0xac, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xed, 0x43, 0xac, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09,
0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x46, 0x11,
0x26, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x47, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x27, 0x11,
0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09,
0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x08, 0xe3, 0x08, 0x26, 0x09, 0x05, 0x11, 0x07, 0x11, 0x25, 0x09, 0x07, 0x09,
0x05, 0x11, 0x07, 0x11, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x27, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11,
0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09,
0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x46, 0x11, 0x67, 0x11, 0x88, 0x11, 0x48, 0x11, 0x0c, 0x5b, 0x58, 0xce, 0x7d, 0xf7, 0xbd, 0xff, 0x5a, 0xe7,
0xa8, 0x85, 0x0a, 0x8e, 0x09, 0x86, 0xe8, 0x85, 0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x08, 0x86, 0xe9, 0x85, 0x29, 0x8e, 0xea, 0x8d, 0x31, 0xa6, 0x9b, 0xd6, 0x9a, 0xce, 0x9a, 0xce,
0x5a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xce, 0x14, 0xa5, 0xd7, 0xbd, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe,
0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x19, 0xc6, 0x59, 0xbe, 0x3a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x79, 0xce, 0x59, 0xce, 0x7a, 0xce, 0x7a, 0xc6, 0x9a, 0xce,
0xdc, 0xce, 0x0b, 0xab, 0x07, 0xaa, 0xc7, 0xa9, 0x86, 0xa1, 0x66, 0xa1, 0x66, 0xa1, 0xa6, 0xa9, 0xa7, 0xa9, 0xe8, 0xa9, 0x28, 0xaa, 0x7d, 0xef, 0xbd, 0xf7, 0x5b, 0xe7, 0x34, 0x9d, 0x2b, 0x22,
0x4b, 0x2a, 0x4b, 0x2a, 0xea, 0x29, 0x09, 0x2a, 0x09, 0x22, 0x0a, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x29, 0x2a, 0x2a, 0x2a, 0x2a, 0x32, 0x4a, 0x32, 0x2a, 0x2a, 0x4a, 0x2a, 0x4b, 0x2a, 0x4b, 0x32,
0x6b, 0x32, 0x6a, 0x2a, 0x6b, 0x32, 0x6b, 0x32, 0x8c, 0x32, 0x8b, 0x3a, 0x8c, 0x3a, 0x8b, 0x32, 0x8b, 0x32, 0xac, 0x32, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xcd, 0x3a, 0xcc, 0x3a, 0xcc, 0x3a,
0xcc, 0x3a, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x2e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x4c,
0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x4c, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0xee, 0x43, 0xee, 0x3b,
0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x43, 0xed, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x4f, 0x44,
0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b,
0xce, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x2e, 0x44,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x2e, 0x44, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x8c, 0x3b, 0x6c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x6c, 0x3b, 0x6c, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x8c, 0x3b, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b,
0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11,
0x47, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x47, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11,
0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x47, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09,
0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0xe4, 0x10, 0xa4, 0x08, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x25, 0x09,
0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11,
0x25, 0x09, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09,
0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x25, 0x09, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0xa8, 0x19, 0xf6, 0xc5, 0x3b, 0xef, 0xbd, 0xf7, 0xff, 0xff,
0xa9, 0x8d, 0x09, 0x8e, 0x09, 0x8e, 0x09, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0x0a, 0x8e, 0xaa, 0x8d, 0x9b, 0xd6, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x59, 0xc6, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xbe,
0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x19, 0xc6, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xbe, 0x39, 0xc6,
0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x5a, 0xc6, 0x3a, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x79, 0xc6, 0x79, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0xfc, 0xd6, 0x07, 0xa2, 0x27, 0xaa, 0xa6, 0xa9, 0x86, 0xa1, 0x46, 0xa9, 0x86, 0xa1, 0x86, 0xa1, 0xc7, 0xa9, 0x08, 0xaa, 0xaa, 0xaa, 0xff, 0xf7, 0xbe, 0xf7, 0xda, 0xd6, 0x8e, 0x63, 0x2a, 0x2a,
0x2b, 0x2a, 0x0a, 0x2a, 0xe9, 0x21, 0x09, 0x22, 0x09, 0x2a, 0x09, 0x22, 0x09, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a,
0x4a, 0x2a, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0x8c, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xad, 0x3a, 0xcd, 0x3a, 0xcd, 0x3a,
0xcd, 0x3a, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0xee, 0x43, 0x2f, 0x44, 0x2e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c,
0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b,
0xee, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xce, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44,
0x0e, 0x44, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c,
0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44,
0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x6b, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xed, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0x4c, 0x3b, 0x6c, 0x3b,
0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x47, 0x09, 0x47, 0x11, 0x26, 0x09, 0x46, 0x11,
0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xa4, 0x08, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09,
0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09,
0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x25, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09,
0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x67, 0x11, 0x67, 0x11, 0x68, 0x11, 0x47, 0x09, 0xd2, 0x9c, 0xda, 0xde, 0x9d, 0xf7, 0xdf, 0xff,
0x72, 0xbe, 0xea, 0x8d, 0x29, 0x8e, 0x08, 0x8e, 0x09, 0x86, 0xe8, 0x85, 0x08, 0x7e, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0xe9, 0x8d, 0x56, 0xbe, 0x7a, 0xce, 0x7a, 0xce,
0x7a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x5a, 0xc6, 0x39, 0xce, 0x3a, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x19, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x19, 0xc6,
0x39, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xbe, 0x18, 0xc6, 0x39, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x38, 0xbe, 0x19, 0xbe, 0x38, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x38, 0xc6,
0x38, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x38, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x39, 0xbe, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x39, 0xbe, 0x19, 0xbe,
0x19, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x18, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x79, 0xce, 0x9a, 0xce,
0x3c, 0xd7, 0xe6, 0xa1, 0x07, 0xaa, 0xa6, 0xa1, 0x86, 0xa1, 0x65, 0xa1, 0x85, 0xa9, 0xa6, 0xa9, 0xe7, 0xa9, 0x28, 0xaa, 0x50, 0xc4, 0xbe, 0xf7, 0x9d, 0xef, 0x58, 0xc6, 0x4b, 0x2a, 0x2b, 0x2a,
0x2b, 0x2a, 0x09, 0x22, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0x0a, 0x22, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x09, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x32, 0x2a, 0x32, 0x4b, 0x32,
0x4b, 0x32, 0x4b, 0x32, 0x6a, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8c, 0x3a, 0x6c, 0x32, 0x8b, 0x32, 0x8b, 0x3a, 0x8c, 0x3a, 0xac, 0x3a, 0x8c, 0x3a, 0xac, 0x3a, 0xac, 0x3a, 0xac, 0x3a,
0xcc, 0x42, 0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44,
0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x44,
0xcd, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c,
0x4f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x3c, 0xed, 0x3b, 0x0e, 0x44,
0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x0e, 0x3c,
0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x44,
0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xce, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xcd, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0x8c, 0x33, 0xcd, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0x6c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8d, 0x3b,
0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x3c, 0xed, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0x2f, 0x3c, 0xcd, 0x3b, 0x8d, 0x3b, 0x6c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0x2f, 0x44,
0xcd, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x0e, 0x44, 0xcc, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0x0e, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xac, 0x3b,
0x0e, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x27, 0x11, 0x46, 0x11, 0x27, 0x11, 0x47, 0x09, 0x26, 0x11, 0x47, 0x09, 0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09,
0x46, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09,
0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0xe5, 0x10, 0xa3, 0x08, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11,
0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11,
0x25, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09,
0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x46, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x4d, 0x5b, 0x58, 0xce, 0x7c, 0xef, 0xbd, 0xf7,
0x5a, 0xe7, 0xea, 0x85, 0x0a, 0x8e, 0x09, 0x8e, 0x08, 0x86, 0x08, 0x86, 0xe8, 0x85, 0xe8, 0x85, 0x08, 0x86, 0xe8, 0x85, 0x09, 0x86, 0x29, 0x8e, 0xea, 0x8d, 0xee, 0x9d, 0xbb, 0xd6, 0x7a, 0xce,
0x7a, 0xce, 0x7a, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x19, 0xc6, 0x39, 0xc6,
0x19, 0xc6, 0x39, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x38, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x38, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x18, 0xbe,
0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe,
0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x18, 0xc6, 0x19, 0xbe, 0x19, 0xc6, 0x18, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x39, 0xc6,
0x19, 0xbe, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x19, 0xbe, 0x38, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xbe, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x79, 0xc6, 0x9a, 0xc6, 0x7a, 0xce,
0x1c, 0xd7, 0x28, 0xa2, 0x28, 0xaa, 0xc7, 0xa9, 0xa6, 0xa9, 0x66, 0xa9, 0x86, 0xa9, 0xa7, 0xa9, 0x07, 0xaa, 0x49, 0xa2, 0xbd, 0xef, 0xbe, 0xf7, 0x5c, 0xe7, 0x75, 0xb5, 0x2b, 0x22, 0x2b, 0x22,
0x4b, 0x2a, 0xc8, 0x21, 0xc9, 0x21, 0xe9, 0x29, 0xe9, 0x29, 0xe9, 0x21, 0x09, 0x22, 0x09, 0x2a, 0x09, 0x2a, 0x09, 0x22, 0x09, 0x2a, 0x0a, 0x2a, 0x2a, 0x32, 0x2a, 0x32, 0x2a, 0x32, 0x2a, 0x2a,
0x4a, 0x2a, 0x2a, 0x2a, 0x4b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x4b, 0x32, 0x6c, 0x32, 0x8b, 0x3a, 0x8b, 0x32, 0x8b, 0x32, 0x8c, 0x32, 0x8c, 0x32, 0xac, 0x32, 0xac, 0x3a, 0xac, 0x3a,
0xac, 0x3a, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x0f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44,
0x6f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x6f, 0x44, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x3c,
0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xce, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xed, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x2f, 0x44, 0xcd, 0x3b,
0x8c, 0x3b, 0xac, 0x3b, 0xac, 0x3b, 0xac, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11,
0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x09, 0x04, 0x09, 0xa4, 0x08, 0x26, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09,
0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x25, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09,
0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11,
0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x09, 0x2a, 0xf6, 0xbd, 0x3b, 0xe7, 0xbd, 0xff,
0xbe, 0xf7, 0xcb, 0x95, 0x09, 0x8e, 0x29, 0x86, 0x09, 0x86, 0xe8, 0x85, 0xe8, 0x7d, 0x08, 0x86, 0x08, 0x7e, 0x08, 0x86, 0x09, 0x86, 0x29, 0x8e, 0x0a, 0x96, 0xa9, 0x85, 0x9c, 0xde, 0x9a, 0xce,
0x7a, 0xce, 0x79, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xbe, 0x18, 0xbe, 0x19, 0xc6,
0x19, 0xc6, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x19, 0xbe,
0x19, 0xc6, 0x18, 0xc6, 0x18, 0xbe, 0x19, 0xc6, 0x38, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x19, 0xbe, 0x38, 0xbe,
0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe,
0x19, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x19, 0xc6, 0x39, 0xbe, 0x3a, 0xbe, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x9a, 0xce,
0xbb, 0xd6, 0x8e, 0xab, 0x28, 0xaa, 0xe7, 0xb1, 0xa6, 0xa9, 0xa6, 0xa1, 0xc7, 0xa1, 0xc7, 0xa9, 0x28, 0xaa, 0x28, 0xa2, 0xde, 0xf7, 0xbd, 0xf7, 0xda, 0xde, 0x8e, 0x63, 0x0b, 0x22, 0x2a, 0x2a,
0x0a, 0x2a, 0xc8, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0x09, 0x22, 0x0a, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a,
0x2a, 0x32, 0x4a, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x3a, 0x8b, 0x32, 0x8c, 0x32, 0x8b, 0x3a, 0xac, 0x3a, 0xac, 0x3a,
0xad, 0x3a, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44,
0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c,
0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x3c,
0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44,
0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0xee, 0x43, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6c, 0x33, 0x8c, 0x3b,
0x8c, 0x3b, 0xcd, 0x43, 0x0e, 0x44, 0xcd, 0x43, 0xac, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0xcd, 0x43, 0x2e, 0x44, 0xcd, 0x43, 0xac, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0x2e, 0x44, 0xcd, 0x3b,
0xac, 0x3b, 0x6c, 0x3b, 0xac, 0x3b, 0x26, 0x11, 0x46, 0x09, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11,
0x27, 0x09, 0x46, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x11,
0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x67, 0x19, 0x67, 0x11, 0x2e, 0x3b, 0x9f, 0xb7, 0x1e, 0xa7, 0x4a, 0x2a, 0x09, 0x2a, 0x06, 0x09, 0xe5, 0x08, 0x27, 0x09, 0x26, 0x11, 0x46, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0xe4, 0x10, 0xa5, 0x08, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11,
0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11,
0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09,
0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11, 0x07, 0x01, 0xf3, 0xa4, 0xb9, 0xde, 0x9d, 0xf7,
0xfe, 0xff, 0x93, 0xbe, 0xc9, 0x85, 0x29, 0x8e, 0x09, 0x86, 0x09, 0x86, 0x08, 0x86, 0xe8, 0x7d, 0xe8, 0x85, 0x08, 0x86, 0x09, 0x86, 0x09, 0x8e, 0x0a, 0x8e, 0xa8, 0x85, 0xbc, 0xde, 0x7a, 0xce,
0x7a, 0xce, 0x5a, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xc6,
0x18, 0xbe, 0x38, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe,
0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xc6, 0x19, 0xc6,
0x18, 0xbe, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x19, 0xbe, 0x18, 0xc6, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x19, 0xbe,
0x39, 0xbe, 0x19, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x39, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x79, 0xc6, 0x7a, 0xce, 0x9a, 0xce,
0xbb, 0xd6, 0xd7, 0xc5, 0x27, 0xaa, 0x28, 0xaa, 0x07, 0xaa, 0xc7, 0xa9, 0xc7, 0xa9, 0x27, 0xaa, 0x48, 0xaa, 0x95, 0xd5, 0xbe, 0xf7, 0x7d, 0xef, 0x58, 0xc6, 0x4a, 0x2a, 0x0a, 0x22, 0x2b, 0x22,
0xc9, 0x21, 0xc9, 0x21, 0xa9, 0x29, 0xc8, 0x21, 0xc9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0xe9, 0x21, 0x0a, 0x22, 0xea, 0x21, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a,
0x2a, 0x2a, 0x2a, 0x32, 0x4a, 0x2a, 0x4a, 0x2a, 0x4b, 0x32, 0x6a, 0x2a, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x8c, 0x3a, 0x6b, 0x3a, 0x8b, 0x32, 0x8c, 0x3a, 0x8c, 0x32,
0x8c, 0x32, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44,
0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2f, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x0e, 0x3c, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44,
0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2e, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0xee, 0x43, 0xcd, 0x3b,
0xee, 0x3b, 0x2e, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44,
0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x43,
0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b,
0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x2f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b,
0xcd, 0x43, 0x2e, 0x44, 0xcd, 0x43, 0xcd, 0x3b, 0xed, 0x43, 0xad, 0x3b, 0xcd, 0x43, 0x2e, 0x44, 0xcd, 0x43, 0xcd, 0x3b, 0xed, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x2e, 0x44, 0xcd, 0x43, 0xcd, 0x3b,
0xcd, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09,
0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x27, 0x09, 0x45, 0x11, 0x27, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11,
0x27, 0x09, 0x26, 0x11, 0xc5, 0x00, 0x8c, 0x32, 0xb8, 0x85, 0xcd, 0x32, 0x9c, 0x96, 0x5f, 0xaf, 0x5f, 0xb7, 0xb5, 0x64, 0x95, 0x6c, 0x3b, 0x8e, 0x8b, 0x32, 0x05, 0x11, 0x27, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09, 0xa3, 0x08, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09,
0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09,
0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11,
0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x47, 0x11, 0x67, 0x11, 0x87, 0x11, 0x47, 0x11, 0x0d, 0x5b, 0x37, 0xc6, 0x5c, 0xf7,
0xbe, 0xff, 0xbd, 0xf7, 0xa9, 0x8d, 0x0a, 0x8e, 0x29, 0x8e, 0x08, 0x86, 0xe8, 0x85, 0x08, 0x86, 0x08, 0x7e, 0xe8, 0x85, 0x09, 0x86, 0x49, 0x8e, 0x09, 0x96, 0xa9, 0x85, 0xbc, 0xde, 0x9a, 0xce,
0x7a, 0xce, 0x59, 0xc6, 0x59, 0xce, 0x5a, 0xce, 0x5a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x39, 0xbe, 0x19, 0xbe,
0x18, 0xbe, 0x19, 0xc6, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xbe, 0x18, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x19, 0xc6,
0x19, 0xc6, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe,
0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe,
0x19, 0xbe, 0x38, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x39, 0xbe, 0x58, 0xbe, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x79, 0xc6, 0x5a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x9a, 0xce,
0xba, 0xce, 0x1c, 0xd7, 0x8d, 0xb3, 0x28, 0xaa, 0x28, 0xaa, 0x08, 0xaa, 0x28, 0xaa, 0x68, 0xb2, 0xaa, 0xaa, 0xbd, 0xef, 0xbd, 0xef, 0x1b, 0xe7, 0x13, 0xa5, 0x0a, 0x22, 0x2a, 0x22, 0x2b, 0x22,
0x88, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xe8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc9, 0x21, 0xc9, 0x29, 0xe9, 0x29, 0x09, 0x2a, 0xe9, 0x29, 0xe9, 0x21, 0x09, 0x22, 0x09, 0x2a, 0x0a, 0x2a, 0x09, 0x2a,
0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x2a, 0x32, 0x4b, 0x32, 0x4a, 0x32, 0x4a, 0x2a, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x3a, 0x8b, 0x3a, 0x8b, 0x3a,
0x8b, 0x3a, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xd1, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0xb1, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0xee, 0x43, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0xee, 0x43, 0x6f, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0xce, 0x3b, 0xee, 0x43, 0x4f, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xee, 0x3b,
0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xee, 0x3b,
0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44,
0xee, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x4f, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0xac, 0x3b,
0xad, 0x3b, 0xcd, 0x43, 0xad, 0x3b, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11,
0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11,
0x27, 0x11, 0x05, 0x09, 0x8f, 0x4b, 0xbd, 0x9e, 0x9f, 0xbf, 0x90, 0x4b, 0xb9, 0x85, 0x7f, 0xaf, 0x3f, 0xaf, 0xd0, 0x53, 0x57, 0x7d, 0x5f, 0xaf, 0xbf, 0xbf, 0x53, 0x5c, 0xe5, 0x08, 0x26, 0x09,
0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11,
0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11,
0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09,
0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0xe8, 0x21, 0x55, 0xad, 0x1b, 0xe7,
0xbd, 0xff, 0xbd, 0xf7, 0x4f, 0xae, 0x0a, 0x8e, 0x0a, 0x8e, 0x09, 0x86, 0x08, 0x86, 0x09, 0x86, 0x09, 0x86, 0x09, 0x86, 0x29, 0x8e, 0x2a, 0x8e, 0x0a, 0x96, 0xcd, 0x95, 0xbb, 0xd6, 0x9a, 0xd6,
0x7a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x18, 0xc6, 0x19, 0xc6, 0x39, 0xbe, 0x18, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x39, 0xc6,
0x19, 0xbe, 0x18, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe,
0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0x19, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xc5, 0xf9, 0xbd, 0xf8, 0xc5, 0xf8, 0xc5, 0xf8, 0xbd,
0x19, 0xc6, 0xf9, 0xc5, 0x19, 0xbe, 0xf9, 0xc5, 0x18, 0xbe, 0xf9, 0xbd, 0x19, 0xbe, 0x18, 0xbe, 0xf9, 0xbd, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe,
0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x38, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x7a, 0xc6, 0x9a, 0xce, 0x9a, 0xce,
0xbb, 0xd6, 0xda, 0xd6, 0x5d, 0xdf, 0x0f, 0xb4, 0x48, 0xaa, 0x07, 0xa2, 0xe6, 0xa1, 0x30, 0xbc, 0x9d, 0xf7, 0xbd, 0xf7, 0x9e, 0xf7, 0xb9, 0xd6, 0x0d, 0x53, 0x0b, 0x22, 0x2a, 0x22, 0xe9, 0x21,
0xa8, 0x21, 0xa8, 0x19, 0xc8, 0x21, 0xc9, 0x21, 0xc8, 0x21, 0xc8, 0x29, 0xc9, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0x09, 0x2a, 0xe9, 0x29, 0x09, 0x2a, 0x2a, 0x22,
0x2a, 0x2a, 0x2a, 0x32, 0x2a, 0x32, 0x2a, 0x32, 0x2a, 0x2a, 0x4b, 0x2a, 0x4a, 0x32, 0x4a, 0x32, 0x6b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x3a, 0x6b, 0x32, 0x6b, 0x32, 0x8b, 0x32, 0x8c, 0x32,
0x8c, 0x3a, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x3c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0x0e, 0x3c, 0x0e, 0x3c, 0xee, 0x3b, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x2f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b,
0xee, 0x43, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xce, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xee, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b,
0xed, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xcd, 0x43, 0x4e, 0x44, 0xed, 0x43, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x43, 0xed, 0x43, 0x2e, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b,
0xcd, 0x43, 0x2e, 0x44, 0xed, 0x43, 0x26, 0x11, 0x47, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x47, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09,
0x26, 0x11, 0x6f, 0x43, 0xbf, 0xb7, 0x3f, 0xa7, 0x3a, 0x96, 0x4e, 0x43, 0x67, 0x11, 0xd5, 0x74, 0x33, 0x54, 0x06, 0x09, 0xad, 0x3a, 0xb8, 0x85, 0x9f, 0xaf, 0x5f, 0xaf, 0xd1, 0x53, 0xe5, 0x08,
0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0xe4, 0x10, 0xa4, 0x08, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09,
0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09,
0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x11,
0x05, 0x11, 0xe5, 0x08, 0xe6, 0x10, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x68, 0x19, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x30, 0x84, 0x99, 0xd6,
0x9d, 0xf7, 0xbd, 0xff, 0x19, 0xdf, 0xc8, 0x85, 0x0a, 0x8e, 0x29, 0x8e, 0x09, 0x8e, 0x09, 0x86, 0x09, 0x86, 0x08, 0x8e, 0x29, 0x8e, 0x2a, 0x96, 0xea, 0x8d, 0x54, 0xb6, 0x9a, 0xd6, 0x9a, 0xd6,
0x79, 0xce, 0x7a, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xce, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xc6,
0x19, 0xbe, 0x19, 0xc6, 0xf9, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xc5, 0xf8, 0xbd, 0xf9, 0xc5, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0xf8, 0xbd,
0x19, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0xf9, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd,
0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0x19, 0xbe, 0x18, 0xbe,
0x18, 0xc6, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0x38, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x3a, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x79, 0xce, 0x99, 0xce, 0x9a, 0xce, 0x9a, 0xd6,
0xba, 0xd6, 0xdb, 0xd6, 0xdb, 0xde, 0xfb, 0xe6, 0x5d, 0xe7, 0xb9, 0xe6, 0xbd, 0xef, 0xbe, 0xf7, 0x9d, 0xef, 0xbd, 0xf7, 0x5c, 0xef, 0xd6, 0xbd, 0xaa, 0x11, 0x0a, 0x22, 0x2a, 0x22, 0xa7, 0x19,
0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc9, 0x29, 0xe8, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0xe9, 0x21, 0x09, 0x2a, 0xe9, 0x31,
0x0a, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x32, 0x2a, 0x2a, 0x2a, 0x2a, 0x4b, 0x32, 0x4a, 0x32, 0x6b, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x32, 0x6b, 0x3a, 0x8c, 0x32,
0x6b, 0x32, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xd0, 0x4c,
0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2f, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b,
0x2e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b,
0xad, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xce, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0x0e, 0x44, 0x6f, 0x44,
0x0e, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x4f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x4f, 0x44,
0xed, 0x43, 0xed, 0x43, 0xcd, 0x3b, 0xed, 0x43, 0x4e, 0x44, 0xed, 0x43, 0xed, 0x43, 0xed, 0x43, 0xcd, 0x3b, 0xcd, 0x43, 0x4e, 0x44, 0xcd, 0x3b, 0xcd, 0x43, 0xed, 0x43, 0xad, 0x3b, 0xcd, 0x43,
0x2e, 0x44, 0xcd, 0x3b, 0xcd, 0x3b, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08,
0x0a, 0x22, 0x7f, 0xaf, 0x7f, 0xaf, 0x37, 0x75, 0x47, 0x11, 0xe5, 0x08, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x68, 0x19, 0xf6, 0x6c, 0x1e, 0xa7, 0xde, 0xa6, 0x8b, 0x32,
0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xa4, 0x08, 0x26, 0x11, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe6, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0x05, 0x11, 0xe6, 0x10, 0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09,
0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x11, 0xe6, 0x08, 0xe4, 0x08, 0x46, 0x11, 0x68, 0x11, 0x88, 0x11, 0x68, 0x11, 0x29, 0x32, 0xf6, 0xc5,
0x5b, 0xef, 0xbd, 0xf7, 0xdf, 0xff, 0xec, 0x95, 0x0a, 0x96, 0x2a, 0x96, 0x29, 0x8e, 0x29, 0x8e, 0x29, 0x8e, 0x29, 0x8e, 0x2a, 0x96, 0x0a, 0x8e, 0xaa, 0x8d, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6,
0x7a, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x5a, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x39, 0xbe, 0x19, 0xce, 0x38, 0xc6, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe,
0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0x18, 0xbe, 0x19, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe,
0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x19, 0xbe, 0xf9, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0x19, 0xbe, 0xf9, 0xbd, 0xf9, 0xbd, 0x18, 0xbe, 0xf9, 0xbd, 0xf9, 0xbd, 0x19, 0xbe,
0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe,
0xf8, 0xbd, 0x19, 0xbe, 0x19, 0xbe, 0x39, 0xc6, 0x19, 0xc6, 0x19, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xce, 0x5a, 0xc6, 0x5a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xce,
0xbb, 0xd6, 0xfb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x3c, 0xe7, 0x5d, 0xe7, 0x5d, 0xe7, 0x7d, 0xef, 0xbd, 0xf7, 0xbd, 0xf7, 0xda, 0xde, 0xef, 0x73, 0x0a, 0x22, 0x0a, 0x22, 0x0a, 0x22, 0x88, 0x19,
0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x19, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xe8, 0x21, 0xe9, 0x21, 0xc9, 0x29, 0xe8, 0x21, 0xe9, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0xe9, 0x21, 0x0a, 0x2a, 0xe9, 0x29,
0x09, 0x2a, 0x09, 0x22, 0x0a, 0x2a, 0x0a, 0x2a, 0x2a, 0x32, 0x2a, 0x32, 0x4a, 0x2a, 0x2a, 0x2a, 0x4a, 0x32, 0x4a, 0x32, 0x4b, 0x2a, 0x4b, 0x2a, 0x6b, 0x32, 0x6b, 0x3a, 0x6b, 0x32, 0x6b, 0x32,
0x8b, 0x3a, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x8f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xee, 0x3b,
0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x4f, 0x44, 0xee, 0x43, 0xed, 0x3b, 0x0e, 0x44,
0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x43, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x6f, 0x44, 0xee, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0xcd, 0x43, 0xac, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0xcd, 0x3b,
0xac, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x27, 0x11,
0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0xe5, 0x08,
0xb9, 0x85, 0x3f, 0xaf, 0xb8, 0x85, 0x68, 0x19, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0xc5, 0x00, 0xb8, 0x7d, 0x5f, 0xaf, 0x78, 0x7d,
0xe5, 0x08, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x05, 0x09, 0xa3, 0x08, 0x25, 0x11, 0xe6, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11,
0xe6, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe6, 0x10,
0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe6, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x48, 0x09, 0xb2, 0x9c,
0xda, 0xde, 0x9d, 0xf7, 0xbe, 0xf7, 0x5a, 0xe7, 0xca, 0x8d, 0xea, 0x95, 0x0a, 0x8e, 0x2a, 0x8e, 0x2a, 0x8e, 0x2a, 0x96, 0xea, 0x8d, 0xa9, 0x8d, 0x97, 0xc6, 0xbb, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6,
0x9a, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x3a, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xc6, 0xf9, 0xbd,
0x18, 0xbe, 0xf8, 0xc5, 0xf8, 0xbd, 0x18, 0xbe, 0xf9, 0xbd, 0xf8, 0xc5, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf9, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd,
0xf9, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe,
0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x19, 0xbe, 0xf8, 0xbd,
0x19, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xc6, 0x79, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0xba, 0xd6,
0xdb, 0xd6, 0xdb, 0xd6, 0xfb, 0xde, 0x1c, 0xdf, 0x3c, 0xe7, 0x5c, 0xef, 0x9d, 0xef, 0x7d, 0xef, 0xbd, 0xf7, 0x7d, 0xef, 0x17, 0xc6, 0xe9, 0x19, 0x0a, 0x22, 0x0a, 0x22, 0x88, 0x21, 0x88, 0x21,
0xa7, 0x19, 0xa8, 0x19, 0xa8, 0x21, 0xa8, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x19, 0xc9, 0x21, 0xc9, 0x29, 0xc9, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0xe9, 0x29,
0x09, 0x2a, 0x09, 0x22, 0x0a, 0x2a, 0x0a, 0x2a, 0x0a, 0x2a, 0x4a, 0x32, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x32, 0x4b, 0x32, 0x4a, 0x32, 0x4a, 0x32, 0x4a, 0x32, 0x4b, 0x32, 0x6b, 0x32, 0x6b, 0x32,
0x6b, 0x32, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x3c,
0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x0f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x2e, 0x3c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44,
0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x2f, 0x44, 0x2e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44,
0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xed, 0x3b, 0xee, 0x3b,
0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xce, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xed, 0x43, 0x4e, 0x44, 0xee, 0x43, 0xcd, 0x43, 0xac, 0x3b, 0xcd, 0x43, 0xed, 0x43, 0x4f, 0x4c, 0x0e, 0x44, 0xcd, 0x43, 0xac, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0x4e, 0x44, 0xee, 0x43,
0xcd, 0x43, 0xac, 0x3b, 0xcd, 0x43, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xad, 0x3a,
0xbe, 0xa6, 0x9c, 0x96, 0x4a, 0x2a, 0x06, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0x2a, 0x2a, 0x7f, 0xa7, 0x5f, 0xaf,
0x46, 0x09, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x11, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0xe4, 0x08, 0xa4, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10,
0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08,
0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09,
0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0x68, 0x11, 0x87, 0x11, 0x88, 0x11, 0x88, 0x11, 0xcb, 0x4a,
0x37, 0xce, 0x3c, 0xef, 0xbd, 0xff, 0xde, 0xff, 0x18, 0xdf, 0xec, 0x95, 0xa8, 0x85, 0xea, 0x8d, 0xea, 0x8d, 0xca, 0x8d, 0xaa, 0x8d, 0xd9, 0xd6, 0xdb, 0xde, 0xbb, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6,
0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x59, 0xce, 0x59, 0xce, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x39, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0xf8, 0xbd, 0x18, 0xc6,
0x18, 0xbe, 0xf9, 0xbd, 0xf8, 0xbd, 0x19, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd,
0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0x18, 0xbe, 0xf8, 0xbd,
0x19, 0xbe, 0xf8, 0xbd, 0x19, 0xc6, 0xf9, 0xbd, 0x39, 0xc6, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd,
0xf8, 0xbd, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xc6, 0x19, 0xbe, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x9b, 0xce, 0xba, 0xd6, 0xbb, 0xce,
0xfb, 0xd6, 0xfb, 0xde, 0x1b, 0xe7, 0x1c, 0xdf, 0x3c, 0xe7, 0x5c, 0xef, 0x7d, 0xef, 0xbd, 0xf7, 0xbd, 0xf7, 0xfb, 0xde, 0xd2, 0x94, 0xca, 0x19, 0x0a, 0x22, 0x2a, 0x22, 0x87, 0x19, 0x87, 0x21,
0x87, 0x21, 0x88, 0x21, 0x88, 0x21, 0x87, 0x19, 0xa8, 0x19, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xa8, 0x29, 0xc7, 0x21, 0xc8, 0x21, 0xe9, 0x29, 0xe8, 0x29, 0xe8, 0x29, 0xe9, 0x21, 0xe9, 0x21,
0xe9, 0x29, 0x09, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x2a, 0x2a, 0x0a, 0x2a, 0x2a, 0x32, 0x2a, 0x32, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x32, 0x4a, 0x32, 0x4b, 0x32, 0x4b, 0x32, 0x6a, 0x32, 0x6a, 0x3a,
0x6b, 0x32, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x43, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x43, 0x2e, 0x44,
0x90, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44,
0xee, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44,
0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0x6f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b,
0xed, 0x43, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0xcd, 0x43, 0xed, 0x43, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x43, 0x0d, 0x44, 0xed, 0x43, 0xee, 0x43, 0x4e, 0x44, 0xee, 0x43, 0xed, 0x43,
0x0e, 0x44, 0xcd, 0x3b, 0xed, 0x43, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x26, 0x11, 0x53, 0x54,
0x1e, 0xa7, 0x57, 0x75, 0xa3, 0x00, 0x27, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0xe5, 0x08, 0x1a, 0x8e, 0x5f, 0xaf,
0x2e, 0x3b, 0xc5, 0x08, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0xe5, 0x08, 0xa4, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x89, 0x11, 0x68, 0x11, 0x88, 0x11, 0x47, 0x09,
0x74, 0xb5, 0xda, 0xde, 0x9d, 0xf7, 0xbd, 0xff, 0x9d, 0xf7, 0x9d, 0xff, 0xf7, 0xce, 0x51, 0xb6, 0x51, 0xb6, 0x95, 0xc6, 0x1c, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xda, 0xd6, 0xbb, 0xd6, 0x9a, 0xd6,
0x9a, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe,
0xf9, 0xbd, 0x18, 0xbe, 0x19, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0x19, 0xbe, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x39, 0xc6, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe,
0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xbd, 0x76, 0xad, 0xd7, 0xb5, 0x56, 0xad, 0xf4, 0x9c, 0xf8, 0xbd, 0x14, 0xa5, 0x51, 0x8c, 0xd7, 0xad, 0x10, 0x84, 0xb7, 0xb5, 0x92, 0x94, 0xd3, 0x9c,
0x93, 0x8c, 0x18, 0xbe, 0x93, 0x8c, 0x56, 0xad, 0x71, 0x8c, 0x14, 0x9d, 0xb3, 0x94, 0x35, 0xa5, 0xd7, 0xb5, 0xf8, 0xbd, 0x19, 0xb6, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xc6, 0x19, 0xbe, 0x38, 0xc6, 0x38, 0xbe, 0x39, 0xc6, 0x79, 0xc6, 0x59, 0xc6, 0x7a, 0xc6, 0x9a, 0xce, 0x9a, 0xd6, 0xba, 0xd6, 0xbb, 0xd6,
0xdb, 0xd6, 0xfb, 0xde, 0x1b, 0xe7, 0x3c, 0xdf, 0x5c, 0xef, 0x7d, 0xef, 0x9d, 0xef, 0xbd, 0xf7, 0x9d, 0xf7, 0x37, 0xc6, 0x2a, 0x2a, 0x0a, 0x22, 0x0a, 0x1a, 0xa9, 0x19, 0x67, 0x19, 0x87, 0x19,
0x87, 0x19, 0x88, 0x19, 0x88, 0x19, 0xa8, 0x21, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x19, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xe9, 0x29, 0xe9, 0x29,
0xe9, 0x21, 0xe9, 0x29, 0x09, 0x22, 0x0a, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x2a, 0x32, 0x4a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x32, 0x4a, 0x32, 0x4b, 0x32, 0x4b, 0x32, 0x6b, 0x2a,
0x6b, 0x32, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xd0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x70, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b,
0x0e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b,
0xed, 0x43, 0xad, 0x3b, 0xcd, 0x43, 0xcd, 0x43, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x43,
0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x43, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09,
0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x46, 0x09, 0x27, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x47, 0x11, 0x77, 0x7d,
0x1f, 0xa7, 0xb0, 0x53, 0xc5, 0x00, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0xb5, 0x6c, 0x5f, 0xb7,
0x12, 0x4c, 0xc4, 0x08, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x11, 0xe4, 0x08, 0xa4, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08,
0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10,
0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x67, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11,
0x0c, 0x5b, 0x17, 0xc6, 0x5b, 0xef, 0xbd, 0xff, 0xbd, 0xf7, 0x9d, 0xf7, 0x7d, 0xf7, 0x5d, 0xef, 0x5c, 0xef, 0x3b, 0xe7, 0x1c, 0xe7, 0x1b, 0xdf, 0xdb, 0xde, 0xda, 0xde, 0xdb, 0xd6, 0xba, 0xd6,
0x9a, 0xd6, 0xba, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x19, 0xc6, 0x18, 0xc6, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd,
0x18, 0xbe, 0xf9, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0x10, 0x84, 0x19, 0xbe, 0x31, 0x84, 0x14, 0xa5,
0xd3, 0x9c, 0xb3, 0x94, 0x18, 0xbe, 0x15, 0xa5, 0x97, 0xb5, 0x51, 0x8c, 0x31, 0x8c, 0xb8, 0xb5, 0x35, 0xa5, 0x30, 0x84, 0x5a, 0xc6, 0x93, 0x9c, 0xf8, 0xb5, 0xd8, 0xb5, 0x71, 0x8c, 0x7a, 0xce,
0x52, 0x8c, 0x18, 0xc6, 0x92, 0x94, 0x35, 0xa5, 0xf8, 0xbd, 0x92, 0x94, 0xb3, 0x94, 0xb7, 0xb5, 0xd8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf9, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x38, 0xc6, 0x39, 0xbe, 0x3a, 0xc6, 0x39, 0xc6, 0x79, 0xc6, 0x59, 0xc6, 0x7a, 0xce, 0x7a, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xdb, 0xde,
0xfb, 0xde, 0xfb, 0xde, 0x3c, 0xe7, 0x3c, 0xef, 0x5d, 0xef, 0x7d, 0xef, 0x9d, 0xf7, 0xbd, 0xf7, 0x3b, 0xe7, 0x13, 0xa5, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x22, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19,
0x88, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x19, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc9, 0x21, 0xe8, 0x21, 0xe8, 0x21,
0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0xe9, 0x21, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x09, 0x2a, 0x29, 0x2a, 0x2a, 0x32, 0x2b, 0x32, 0x2a, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a, 0x4a, 0x2a, 0x4b, 0x32,
0x4a, 0x32, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4e, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x2e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x0e, 0x44,
0x2e, 0x3c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x3b,
0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0x2e, 0x44,
0x0e, 0x3c, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b,
0xed, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b,
0xce, 0x3b, 0xed, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0xce, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0x0e, 0x44,
0x0e, 0x44, 0xed, 0x43, 0xcd, 0x3b, 0xed, 0x43, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x43, 0xcd, 0x43, 0xed, 0x43, 0x0e, 0x44, 0x4f, 0x44, 0x0d, 0x44, 0xcd, 0x43, 0xcd, 0x3b, 0xcd, 0x3b,
0x0e, 0x44, 0x4f, 0x44, 0xee, 0x43, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x46, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x11, 0x26, 0x11, 0x47, 0x09, 0x26, 0x11, 0x88, 0x19, 0xb9, 0x85,
0xfe, 0xa6, 0x8b, 0x2a, 0xe5, 0x08, 0x26, 0x11, 0x26, 0x09, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x09, 0x26, 0x09, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x6e, 0x43, 0x99, 0x7d,
0x94, 0x64, 0xa4, 0x00, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0xe5, 0x08, 0xa4, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x10, 0x05, 0x01, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x26, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11,
0xa8, 0x19, 0x33, 0xa5, 0xda, 0xe6, 0x9d, 0xf7, 0xbd, 0xff, 0x9d, 0xf7, 0x9d, 0xf7, 0x7d, 0xef, 0x5c, 0xef, 0x3c, 0xe7, 0x3c, 0xe7, 0xfb, 0xe6, 0xfb, 0xde, 0xda, 0xde, 0xda, 0xde, 0xbb, 0xd6,
0xba, 0xd6, 0x9a, 0xce, 0x79, 0xd6, 0x7a, 0xce, 0x5a, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x39, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0xf9, 0xbd,
0xf8, 0xc5, 0x18, 0xbe, 0xf9, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x77, 0xad, 0x31, 0x8c, 0xd8, 0xbd, 0x31, 0x8c, 0xf4, 0x9c,
0xb7, 0xb5, 0x92, 0x94, 0xf8, 0xbd, 0x15, 0xa5, 0x34, 0xa5, 0xb2, 0x94, 0x51, 0x8c, 0x92, 0x94, 0xb7, 0xad, 0x71, 0x8c, 0x10, 0x84, 0x97, 0xad, 0xf0, 0x83, 0xb7, 0xb5, 0xf4, 0x9c, 0xb3, 0x94,
0x92, 0x94, 0xf9, 0xbd, 0x92, 0x94, 0x35, 0xa5, 0xd3, 0x9c, 0x35, 0xa5, 0x92, 0x94, 0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x79, 0xc6, 0x59, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0xba, 0xd6, 0xba, 0xd6, 0xfa, 0xde,
0xfb, 0xde, 0x1b, 0xe7, 0x3c, 0xe7, 0x5c, 0xef, 0x7c, 0xef, 0x9c, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x58, 0xce, 0x6b, 0x3a, 0xea, 0x21, 0xe9, 0x21, 0xc8, 0x21, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19,
0x87, 0x19, 0x86, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x19, 0x88, 0x19, 0xa8, 0x21, 0xa8, 0x19, 0xa7, 0x21, 0xc8, 0x29, 0xc9, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc9, 0x21,
0xe9, 0x29, 0xe8, 0x29, 0xe8, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0x09, 0x22, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x29, 0x2a, 0x2a, 0x2a, 0x2a, 0x32, 0x2a, 0x2a, 0x4a, 0x32, 0x4b, 0x32,
0x4a, 0x32, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x70, 0x44,
0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b,
0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xee, 0x43, 0x2e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x6f, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0xed, 0x43, 0x0e, 0x44,
0x6f, 0x4c, 0x0e, 0x44, 0xed, 0x43, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x47, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x67, 0x19, 0x32, 0x54,
0xb0, 0x4b, 0x67, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x46, 0x11, 0x26, 0x09, 0x47, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x11, 0x47, 0x11, 0xcd, 0x3a, 0xed, 0x3a,
0x67, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11,
0x25, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x01,
0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x68, 0x11, 0x88, 0x11, 0x88, 0x19,
0x68, 0x09, 0x0d, 0x53, 0x37, 0xce, 0x5c, 0xef, 0xbd, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x7c, 0xf7, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xe7, 0x1c, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xbb, 0xd6,
0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0xf8, 0xbd, 0x18, 0xbe,
0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xb5, 0xb2, 0x94, 0x55, 0xa5, 0x55, 0xa5, 0x51, 0x8c, 0xf4, 0x9c,
0xf4, 0x9c, 0xf4, 0x9c, 0xf8, 0xb5, 0x14, 0x9d, 0xd8, 0xb5, 0xd8, 0xbd, 0x31, 0x84, 0x76, 0xa5, 0x56, 0xa5, 0x30, 0x8c, 0x5b, 0xce, 0x97, 0xad, 0x5a, 0xc6, 0x92, 0x94, 0xd8, 0xb5, 0x92, 0x94,
0x72, 0x8c, 0x18, 0xbe, 0x51, 0x8c, 0x35, 0x9d, 0x19, 0xbe, 0x51, 0x8c, 0xb3, 0x94, 0xf4, 0x9c, 0x96, 0xb5, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xb5, 0x19, 0xbe,
0xf9, 0xbd, 0x19, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0x39, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x7a, 0xce, 0x9a, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xdb, 0xd6, 0xfb, 0xde,
0x1b, 0xdf, 0x1c, 0xe7, 0x5c, 0xe7, 0x7c, 0xef, 0x7d, 0xf7, 0x9d, 0xef, 0xbe, 0xf7, 0x1a, 0xe7, 0x13, 0x9d, 0xc9, 0x19, 0xe9, 0x19, 0xea, 0x19, 0x67, 0x19, 0x66, 0x11, 0x66, 0x19, 0x67, 0x19,
0x67, 0x19, 0x67, 0x21, 0x87, 0x19, 0x87, 0x19, 0x87, 0x19, 0x88, 0x19, 0xa7, 0x19, 0x87, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x29, 0xc9, 0x29, 0xc8, 0x29,
0xc8, 0x21, 0xe8, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x2a, 0x0a, 0x2a, 0x29, 0x2a, 0x2a, 0x32, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x4a, 0x32,
0x4a, 0x32, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c,
0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x0e, 0x3c, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44,
0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0xee, 0x3b, 0x2e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x70, 0x44, 0x2e, 0x44,
0xed, 0x43, 0xed, 0x3b, 0x0e, 0x44, 0x0d, 0x44, 0xcd, 0x3b, 0xed, 0x43, 0xed, 0x43, 0xed, 0x43, 0x0e, 0x44, 0xed, 0x43, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0xed, 0x43, 0x0e, 0x44, 0xed, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x43, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x2e, 0x43,
0xb9, 0x85, 0xd5, 0x6c, 0x26, 0x11, 0x27, 0x09, 0x46, 0x11, 0x27, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x19, 0x46, 0x09, 0xc5, 0x08, 0x4f, 0x43, 0x1e, 0x9f, 0xde, 0x9e,
0x32, 0x54, 0xa4, 0x00, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x07, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x25, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0xc4, 0x08, 0xa4, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x01, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10,
0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x26, 0x11, 0x88, 0x19, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0xf2, 0x9c, 0xda, 0xe6, 0x9c, 0xf7, 0xbd, 0xff, 0xbd, 0xf7, 0x9d, 0xf7, 0x7d, 0xf7, 0x5c, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0x1c, 0xe7, 0xfb, 0xde, 0xdb, 0xde, 0xda, 0xd6,
0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xbe, 0x19, 0xc6, 0x18, 0xc6, 0xf8, 0xc5, 0xf9, 0xbd,
0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xd8, 0xbd, 0xf8, 0xb5, 0x10, 0x84, 0x10, 0x84, 0x92, 0x94, 0x51, 0x8c, 0xf4, 0x9c,
0x19, 0xbe, 0x51, 0x8c, 0x19, 0xbe, 0x14, 0xa5, 0xf8, 0xb5, 0xd8, 0xb5, 0x31, 0x84, 0x18, 0xbe, 0xb2, 0x94, 0x72, 0x8c, 0xf0, 0x83, 0x14, 0xa5, 0xef, 0x83, 0xf8, 0xbd, 0x92, 0x94, 0x56, 0xa5,
0x96, 0xb5, 0xf4, 0x9c, 0x97, 0xb5, 0xb7, 0xb5, 0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0x18, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x79, 0xce, 0x9a, 0xce, 0x9a, 0xce, 0xba, 0xd6, 0xdb, 0xd6, 0xfb, 0xde, 0xfb, 0xde,
0x1c, 0xe7, 0x3c, 0xe7, 0x5c, 0xef, 0x7d, 0xef, 0x9d, 0xf7, 0xbd, 0xf7, 0x7c, 0xef, 0x58, 0xce, 0x6b, 0x3a, 0xe9, 0x19, 0xca, 0x19, 0xc9, 0x19, 0x46, 0x19, 0x47, 0x11, 0x67, 0x11, 0x67, 0x19,
0x67, 0x19, 0x66, 0x11, 0x87, 0x19, 0x68, 0x19, 0x87, 0x19, 0x88, 0x19, 0x87, 0x19, 0xa7, 0x19, 0x87, 0x21, 0xa8, 0x19, 0xa8, 0x21, 0xa7, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc8, 0x21,
0xc8, 0x21, 0xc9, 0x29, 0xc9, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0xe8, 0x29, 0xe9, 0x29, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x0a, 0x32, 0x2a, 0x2a, 0x2a, 0x32, 0x2a, 0x2a,
0x4a, 0x2a, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c,
0x2f, 0x44, 0x2e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c, 0xce, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b,
0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xce, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c,
0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b,
0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x3b,
0xed, 0x43, 0x0e, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0xed, 0x43, 0xed, 0x43, 0xed, 0x43, 0x0e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0d, 0x44, 0xcd, 0x43, 0xed, 0x3b, 0x0e, 0x44, 0x6f, 0x4c, 0x2e, 0x44,
0xed, 0x43, 0xcd, 0x3b, 0xee, 0x43, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09,
0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x88, 0x19, 0x9c, 0x96,
0x5c, 0x8e, 0x9c, 0x96, 0x0e, 0x43, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x84, 0x00, 0xf5, 0x6c, 0x5b, 0x8e, 0x5c, 0x8e,
0x16, 0x75, 0x84, 0x08, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09,
0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x00, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0x05, 0x11, 0xe4, 0x08, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x68, 0x11, 0x68, 0x19,
0x88, 0x11, 0x88, 0x11, 0xcc, 0x4a, 0x37, 0xc6, 0x3b, 0xef, 0x9d, 0xf7, 0xbd, 0xff, 0x9d, 0xf7, 0x7c, 0xf7, 0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xdb, 0xde,
0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x38, 0xc6, 0x38, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe,
0x19, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xd8, 0xbd, 0xf8, 0xbd, 0xd7, 0xb5, 0x76, 0xad, 0x19, 0xbe, 0x55, 0xa5, 0x76, 0xad, 0x97, 0xb5,
0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xb5, 0xd7, 0xb5, 0xd8, 0xbd, 0xf8, 0xc5, 0xd8, 0xb5, 0xf8, 0xbd, 0xf9, 0xb5, 0xf8, 0xbd, 0xd7, 0xbd, 0xd8, 0xb5, 0xd7, 0xb5, 0xd8, 0xb5, 0xd7, 0xbd,
0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd, 0x18, 0xb6, 0xf8, 0xbd, 0x19, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xd7, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x9a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0xbb, 0xd6, 0xdb, 0xd6, 0xfb, 0xde, 0xfb, 0xe6,
0x3c, 0xe7, 0x5c, 0xe7, 0x7c, 0xef, 0x9d, 0xf7, 0xbd, 0xf7, 0xbd, 0xf7, 0xda, 0xde, 0x91, 0x8c, 0xc9, 0x11, 0xc9, 0x21, 0xe9, 0x19, 0x46, 0x19, 0x46, 0x11, 0x47, 0x19, 0x67, 0x19, 0x66, 0x19,
0x66, 0x11, 0x67, 0x19, 0x47, 0x19, 0x67, 0x19, 0x67, 0x21, 0x87, 0x19, 0x87, 0x19, 0x88, 0x19, 0x87, 0x19, 0x87, 0x21, 0xa7, 0x21, 0x88, 0x21, 0x88, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21,
0xc8, 0x29, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x22, 0x09, 0x2a, 0x0a, 0x2a, 0x0a, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a,
0x2a, 0x2a, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x6f, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b,
0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x2f, 0x44, 0x70, 0x4c, 0x4f, 0x44,
0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0xee, 0x43, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x2e, 0x44,
0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xcd, 0x3b,
0x0e, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x0e, 0x44,
0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x87, 0x11, 0x5b, 0x8e,
0x7d, 0x96, 0x7c, 0x8e, 0x6b, 0x2a, 0x06, 0x11, 0x46, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0x6b, 0x2a, 0xfa, 0x85, 0xfa, 0x85,
0x4a, 0x2a, 0x05, 0x09, 0x27, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11,
0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x00, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x00, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x04, 0x11, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0xe6, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0x26, 0x11, 0xa8, 0x11,
0x88, 0x19, 0x88, 0x19, 0x47, 0x09, 0xb2, 0x9c, 0x99, 0xd6, 0x7c, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfb, 0xde,
0xda, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x7a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x18, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0xf9, 0xbd,
0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xb5, 0xf8, 0xbd, 0xd8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xbd, 0xf8, 0xb5, 0xd8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0xf7, 0xbd, 0xf8, 0xb5, 0xf9, 0xbd, 0xf9, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0x18, 0xb6, 0xd7, 0xbd, 0xd8, 0xb5, 0xb7, 0xb5, 0x96, 0xb5, 0x77, 0xa5, 0x55, 0xad, 0x35, 0xa5, 0x14, 0xa5, 0xd3, 0x9c,
0xd3, 0x9c, 0x93, 0x94, 0xb2, 0x94, 0x92, 0x94, 0xb2, 0x94, 0x93, 0x94, 0xd3, 0x9c, 0xd3, 0x9c, 0xf4, 0xa4, 0x35, 0xa5, 0x55, 0xa5, 0x76, 0xad, 0x96, 0xb5, 0xf8, 0xbd, 0x18, 0xbe, 0xf9, 0xbd,
0x18, 0xbe, 0x18, 0xc6, 0x19, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xce, 0x59, 0xce, 0x59, 0xce, 0x99, 0xce, 0x9a, 0xce, 0xba, 0xd6, 0xdb, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0x3b, 0xdf,
0x3c, 0xe7, 0x5c, 0xef, 0x7d, 0xf7, 0x7d, 0xef, 0xbd, 0xf7, 0x7c, 0xef, 0xf6, 0xc5, 0xe9, 0x21, 0xca, 0x21, 0xca, 0x19, 0xa8, 0x19, 0x46, 0x11, 0x46, 0x19, 0x26, 0x19, 0x46, 0x11, 0x66, 0x11,
0x46, 0x19, 0x67, 0x21, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x47, 0x19, 0x87, 0x19, 0x87, 0x19, 0x88, 0x21, 0x88, 0x19, 0x87, 0x19, 0xa7, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x21,
0xc8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x21, 0xc9, 0x21, 0xe8, 0x21, 0xe8, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0x09, 0x2a, 0x09, 0x2a, 0x09, 0x2a, 0x2a, 0x2a, 0x2a, 0x32, 0x29, 0x2a,
0x2a, 0x2a, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x90, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x90, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x70, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0xed, 0x3b, 0xed, 0x43, 0x0e, 0x44, 0xed, 0x43, 0x2e, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0xed, 0x43, 0x0e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0xed, 0x43, 0xed, 0x43, 0xee, 0x43,
0x0d, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xcd, 0x32,
0x36, 0x6d, 0x0d, 0x3b, 0x4b, 0x22, 0x47, 0x11, 0x27, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xb0, 0x4b, 0x12, 0x54, 0xcd, 0x3a, 0xe9, 0x21,
0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09,
0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xa4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x00,
0xe5, 0x10, 0xe5, 0x00, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09,
0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x67, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x2a, 0x32, 0xd5, 0xbd, 0xfb, 0xe6, 0xbd, 0xf7, 0xbd, 0xff, 0x9d, 0xf7, 0x7d, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde,
0xdb, 0xde, 0xdb, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0x99, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x79, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x38, 0xc6, 0x39, 0xbe, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x18, 0xc6,
0x19, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf9, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xd7, 0xbd, 0xb7, 0xad, 0x76, 0xad, 0x56, 0xad, 0x35, 0xa5, 0x14, 0xa5, 0xd4, 0x9c, 0xd3, 0x9c, 0xb3, 0x94, 0xb3, 0x94,
0x92, 0x94, 0xb2, 0x94, 0xb2, 0x94, 0xb3, 0x94, 0xd4, 0x9c, 0xf3, 0x9c, 0x14, 0xa5, 0x35, 0xa5, 0x56, 0xad, 0x76, 0xad, 0x97, 0xad, 0xb7, 0xb5, 0xd7, 0xb5, 0xf8, 0xb5, 0xd9, 0xb5, 0x19, 0xbe,
0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xb5, 0xf7, 0xb5, 0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf9, 0xbd,
0x19, 0xbe, 0x19, 0xbe, 0x38, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x99, 0xce, 0x9a, 0xd6, 0x9a, 0xd6, 0xda, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x3c, 0xe7,
0x3c, 0xef, 0x7c, 0xef, 0x9c, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0xb9, 0xd6, 0xaf, 0x6b, 0xa9, 0x19, 0xe9, 0x19, 0xc9, 0x19, 0x26, 0x11, 0x26, 0x11, 0x26, 0x19, 0x46, 0x11, 0x26, 0x11, 0x27, 0x19,
0x46, 0x19, 0x66, 0x11, 0x66, 0x19, 0x66, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19, 0x87, 0x21, 0x67, 0x21, 0x87, 0x19, 0xa7, 0x19, 0xa7, 0x19, 0x88, 0x19, 0x88, 0x21, 0x88, 0x19, 0xa8, 0x21,
0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xe8, 0x21, 0xe8, 0x21, 0xc8, 0x21, 0xe8, 0x21, 0xe9, 0x21, 0xc9, 0x21, 0xe9, 0x29, 0xe9, 0x21, 0x09, 0x2a, 0xe9, 0x29, 0x09, 0x2a, 0x0a, 0x2a, 0x09, 0x2a,
0x29, 0x2a, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x3c, 0x0e, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x2f, 0x44, 0x0e, 0x3c, 0xce, 0x3b,
0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x3c, 0xce, 0x3b, 0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44,
0x2e, 0x44, 0x0e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x4e, 0x44, 0x0e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44,
0x0e, 0x44, 0x8f, 0x4c, 0x2e, 0x44, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x27, 0x11, 0x26, 0x09, 0x06, 0x11,
0x06, 0x09, 0x73, 0x5c, 0xdd, 0x9e, 0xd5, 0x64, 0x87, 0x19, 0xe4, 0x08, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0xe5, 0x08, 0xa4, 0x00, 0xf2, 0x53, 0x3b, 0x8e, 0x3c, 0x8e, 0xd1, 0x4b, 0xe5, 0x00,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11,
0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0xe4, 0x08, 0xa3, 0x08, 0xe6, 0x08, 0xe4, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08,
0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0x05, 0x09,
0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x47, 0x09, 0xf0, 0x7b, 0x57, 0xce, 0x5b, 0xef, 0xbd, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x7d, 0xf7, 0x5c, 0xef, 0x5c, 0xef, 0x3b, 0xe7, 0x1c, 0xe7, 0x1b, 0xdf,
0xdb, 0xde, 0xda, 0xd6, 0xbb, 0xde, 0xba, 0xd6, 0x9a, 0xd6, 0x99, 0xce, 0x5a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x39, 0xc6, 0x39, 0xbe, 0x38, 0xc6, 0x18, 0xc6, 0x18, 0xbe,
0x19, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x76, 0xad, 0xb7, 0xad, 0xb7, 0xb5, 0xd8, 0xbd, 0xd8, 0xbd, 0xf8, 0xbd, 0x19, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xb5,
0xf8, 0xb5, 0xd8, 0xbd, 0xf8, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5, 0xd7, 0xbd, 0xd8, 0xbd, 0xf8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xd8, 0xb5, 0xd7, 0xb5, 0xd8, 0xb5,
0xd7, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xb5, 0xf8, 0xbd, 0xd8, 0xb5, 0xf8, 0xb5, 0xf8, 0xb5, 0xd8, 0xb5, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf9, 0xbd, 0x18, 0xc6,
0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x5a, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0xba, 0xd6, 0xdb, 0xd6, 0xfb, 0xde, 0xfb, 0xe6, 0x3c, 0xe7, 0x3c, 0xef,
0x7c, 0xef, 0x7d, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x1a, 0xe7, 0x53, 0xad, 0x88, 0x09, 0xc9, 0x19, 0xc9, 0x19, 0x88, 0x19, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19,
0x46, 0x11, 0x47, 0x19, 0x67, 0x11, 0x67, 0x19, 0x67, 0x11, 0x67, 0x19, 0x66, 0x21, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x68, 0x21, 0x87, 0x21, 0x87, 0x21, 0x87, 0x19, 0x88, 0x19, 0x88, 0x21,
0xa7, 0x21, 0xa8, 0x19, 0xa8, 0x21, 0xa8, 0x29, 0xc8, 0x21, 0xc8, 0x29, 0xc9, 0x21, 0xc9, 0x21, 0xc8, 0x21, 0xe8, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0xe9, 0x29, 0xea, 0x29, 0x09, 0x2a, 0x2a, 0x2a,
0x0a, 0x2a, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x2e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c,
0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44,
0x2e, 0x44, 0x4e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x8f, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x4e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x8f, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x4e, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x90, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09,
0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x27, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0xe5, 0x08, 0x11, 0x54, 0x7c, 0x8e, 0x3b, 0x8e, 0x78, 0x75, 0x12, 0x54, 0x6b, 0x2a, 0x87, 0x19, 0xe9, 0x19, 0x8f, 0x43, 0x98, 0x7d, 0x1b, 0x86, 0x3b, 0x86, 0x73, 0x5c, 0xa4, 0x08, 0x26, 0x09,
0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x25, 0x09, 0x05, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11,
0x05, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x25, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x09, 0xe4, 0x10, 0xa4, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x04, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xc5, 0x08,
0x47, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0xa9, 0x19, 0x13, 0xa5, 0xda, 0xde, 0x9c, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x7c, 0xf7, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xe7, 0xfb, 0xe6,
0xfb, 0xde, 0xfb, 0xde, 0xba, 0xde, 0xda, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x79, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x18, 0xc6,
0x18, 0xc6, 0x19, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xbd, 0xf8, 0xbd, 0xd7, 0xb5, 0xd8, 0xb5, 0xf8, 0xb5, 0xf8, 0xb5, 0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5,
0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5, 0xd7, 0xb5, 0xd8, 0xbd, 0xd8, 0xbd, 0xd3, 0x94, 0xb3, 0x94, 0x30, 0x84, 0xb7, 0xb5, 0xef, 0x7b, 0xb8, 0xb5, 0xd3, 0x9c, 0xb2, 0x9c, 0xd8, 0xbd, 0xd7, 0xb5,
0xd8, 0xb5, 0xd7, 0xbd, 0xd8, 0xbd, 0xd7, 0xb5, 0xd7, 0xb5, 0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xbd, 0xf7, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xc6, 0x18, 0xc6,
0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x9a, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xda, 0xd6, 0xda, 0xde, 0xfb, 0xe6, 0x1b, 0xe7, 0x3b, 0xe7, 0x5c, 0xef,
0x7c, 0xef, 0xbd, 0xf7, 0xbd, 0xf7, 0x7b, 0xef, 0x17, 0xc6, 0x4b, 0x32, 0xc9, 0x19, 0xc9, 0x19, 0xea, 0x21, 0x25, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x46, 0x19, 0x26, 0x11, 0x26, 0x19, 0x46, 0x11, 0x66, 0x19, 0x46, 0x19, 0x47, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x21, 0x87, 0x19, 0x87, 0x21, 0x87, 0x19, 0xa7, 0x19, 0xa7, 0x21, 0xa8, 0x21,
0x87, 0x21, 0xa7, 0x21, 0xc8, 0x29, 0xc8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xe9, 0x29, 0xe9, 0x29, 0xe8, 0x21, 0xe9, 0x29, 0xe8, 0x29, 0x09, 0x2a, 0x09, 0x2a, 0x09, 0x2a,
0x09, 0x2a, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0xd0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x70, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x4c, 0x2e, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0xee, 0x43, 0xee, 0x43, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44,
0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x26, 0x11, 0x25, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x25, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0x4e, 0x3b, 0xfa, 0x85, 0xda, 0x85, 0xfa, 0x85, 0x3b, 0x8e, 0x5c, 0x86, 0x5b, 0x8e, 0x3b, 0x8e, 0x3b, 0x8e, 0xda, 0x7d, 0x8f, 0x43, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11,
0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11,
0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0xe4, 0x08, 0xa4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe6, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x8b, 0x42, 0xd5, 0xc5, 0x3b, 0xe7, 0x9d, 0xf7, 0xdd, 0xff, 0x9d, 0xf7, 0x7d, 0xef, 0x7c, 0xef, 0x5c, 0xef, 0x5b, 0xe7, 0x1c, 0xe7,
0x1b, 0xe7, 0xfb, 0xde, 0xda, 0xde, 0xbb, 0xde, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x7a, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xbe, 0x19, 0xc6,
0x19, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf7, 0xb5, 0xf8, 0xbd, 0xd7, 0xbd, 0xd8, 0xbd, 0xd7, 0xb5, 0xd8, 0xbd,
0xd8, 0xbd, 0xd8, 0xb5, 0xd7, 0xb5, 0xd8, 0xb5, 0xd7, 0xb5, 0xd7, 0xb5, 0xf4, 0x9c, 0x10, 0x8c, 0xb8, 0xb5, 0xcf, 0x7b, 0xd7, 0xb5, 0x19, 0xbe, 0x73, 0x8c, 0x71, 0x8c, 0x18, 0xbe, 0xd8, 0xbd,
0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xbd, 0xf8, 0xbd, 0xd8, 0xbd, 0xd8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf7, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0x19, 0xbe,
0x38, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x99, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xdb, 0xde, 0xfb, 0xe6, 0x1b, 0xe7, 0x3b, 0xe7, 0x5b, 0xef, 0x7c, 0xef,
0x9d, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0xba, 0xde, 0x50, 0x84, 0xa9, 0x11, 0xa8, 0x19, 0xca, 0x19, 0x47, 0x11, 0x06, 0x11, 0x06, 0x11, 0x06, 0x11, 0x05, 0x11, 0x26, 0x11, 0x26, 0x19, 0x45, 0x11,
0x46, 0x11, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x47, 0x11, 0x67, 0x19, 0x47, 0x19, 0x67, 0x21, 0x66, 0x19, 0x66, 0x19, 0x87, 0x19, 0x87, 0x19, 0x88, 0x21, 0x87, 0x21, 0x87, 0x21,
0x88, 0x19, 0xa8, 0x21, 0x87, 0x19, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x29, 0xc8, 0x29, 0xc8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc9, 0x21, 0xc9, 0x29, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a, 0x09, 0x2a,
0x09, 0x2a, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44,
0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c,
0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0xed, 0x43, 0x0e, 0x44, 0x4e, 0x44, 0x8f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x8f, 0x4c, 0x4e, 0x44,
0x0e, 0x44, 0x0d, 0x44, 0x0e, 0x44, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09,
0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11,
0x26, 0x11, 0x26, 0x09, 0xc4, 0x00, 0xa8, 0x19, 0x32, 0x54, 0x16, 0x65, 0xd9, 0x7d, 0x3b, 0x8e, 0x3b, 0x8e, 0x78, 0x75, 0xd1, 0x4b, 0xa8, 0x19, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11,
0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09,
0x05, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x25, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xa3, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0x26, 0x11, 0x89, 0x11, 0x88, 0x11, 0x89, 0x11, 0x68, 0x11, 0xef, 0x7b, 0x58, 0xce, 0x5b, 0xef, 0xbd, 0xf7, 0x9d, 0xff, 0x9c, 0xf7, 0x7d, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xe7,
0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xdb, 0xde, 0xdb, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x5a, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x19, 0xc6,
0x39, 0xbe, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf7, 0xbd, 0xf8, 0xbd, 0xf7, 0xbd, 0xd7, 0xb5, 0xd8, 0xb5, 0xf8, 0xb5,
0xd7, 0xbd, 0xd7, 0xb5, 0xd8, 0xb5, 0xf7, 0xbd, 0xd8, 0xbd, 0x76, 0xad, 0x97, 0xad, 0x31, 0x84, 0xf0, 0x83, 0xd7, 0xb5, 0x10, 0x8c, 0xb6, 0xb5, 0x92, 0x94, 0xb3, 0x94, 0xd8, 0xb5, 0xd8, 0xbd,
0xd8, 0xb5, 0xd7, 0xb5, 0xf8, 0xb5, 0xd8, 0xb5, 0xd8, 0xb5, 0xf7, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0x19, 0xc6, 0x18, 0xbe, 0x38, 0xbe, 0x19, 0xc6,
0x39, 0xc6, 0x39, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x99, 0xce, 0xba, 0xd6, 0xba, 0xd6, 0xdb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x3b, 0xe7, 0x5c, 0xef, 0x7c, 0xef, 0x9d, 0xf7,
0xbd, 0xf7, 0xbd, 0xf7, 0x1b, 0xe7, 0x74, 0xad, 0x89, 0x11, 0xc9, 0x19, 0xc9, 0x19, 0x88, 0x19, 0x05, 0x11, 0x06, 0x11, 0x05, 0x11, 0x25, 0x19, 0x26, 0x19, 0x25, 0x19, 0x46, 0x11, 0x26, 0x11,
0x26, 0x19, 0x26, 0x19, 0x46, 0x11, 0x47, 0x11, 0x46, 0x19, 0x47, 0x19, 0x66, 0x19, 0x66, 0x11, 0x67, 0x19, 0x87, 0x19, 0x66, 0x21, 0x67, 0x19, 0x67, 0x19, 0x67, 0x21, 0x87, 0x21, 0x87, 0x19,
0x87, 0x19, 0xa7, 0x21, 0x88, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa7, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xe8, 0x21, 0xe9, 0x29, 0xe9, 0x21, 0xe8, 0x29, 0xe9, 0x21, 0xe9, 0x29, 0x09, 0x2a,
0x09, 0x2a, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x3c, 0xee, 0x3b, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0xb0, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x4e, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0x4e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11,
0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0xe6, 0x08, 0x87, 0x19, 0x88, 0x11, 0x67, 0x11, 0x26, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11,
0x25, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11,
0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0x68, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x33, 0xad, 0x98, 0xd6, 0x7c, 0xef, 0xbd, 0xff, 0x9d, 0xf7, 0x9d, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xef,
0x3c, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xda, 0xde, 0xba, 0xde, 0xba, 0xd6, 0x9a, 0xd6, 0x99, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x38, 0xc6, 0x39, 0xc6,
0x38, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x19, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xbd, 0xd8, 0xbd, 0xd8, 0xbd, 0xf8, 0xb5,
0xf7, 0xbd, 0xd8, 0xbd, 0xd8, 0xb5, 0xd8, 0xb5, 0xd8, 0xb5, 0x56, 0xad, 0x96, 0xad, 0x10, 0x84, 0x19, 0xbe, 0x56, 0xa5, 0x18, 0xbe, 0xf5, 0x9c, 0x93, 0x94, 0xb2, 0x94, 0xf8, 0xbd, 0xd8, 0xb5,
0xd8, 0xbd, 0xf8, 0xbd, 0xf7, 0xbd, 0xd7, 0xbd, 0xf7, 0xb5, 0xf8, 0xbd, 0xf7, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xc6, 0x18, 0xbe, 0x18, 0xc6, 0x38, 0xbe, 0x38, 0xc6,
0x39, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xdb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x3b, 0xe7, 0x3c, 0xef, 0x5c, 0xef, 0x7c, 0xef, 0x9d, 0xf7,
0x9c, 0xf7, 0x7c, 0xef, 0x37, 0xce, 0x4b, 0x32, 0xa9, 0x11, 0xaa, 0x19, 0xaa, 0x19, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x26, 0x11, 0x25, 0x11, 0x26, 0x11, 0x06, 0x11, 0x05, 0x11, 0x25, 0x11,
0x26, 0x11, 0x46, 0x19, 0x46, 0x11, 0x46, 0x19, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x46, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19, 0x88, 0x19,
0x88, 0x19, 0xa7, 0x19, 0x87, 0x21, 0x87, 0x21, 0xa8, 0x19, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc9, 0x29, 0xe9, 0x21, 0xe8, 0x29,
0x09, 0x2a, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x26, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09,
0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09,
0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11,
0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x11, 0xe4, 0x08, 0xa3, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0xc4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x10, 0xe4, 0x08, 0xc4, 0x10, 0xe5, 0x08,
0xe5, 0x10, 0xc5, 0x08, 0xe5, 0x08, 0xa8, 0x11, 0x88, 0x19, 0x88, 0x11, 0x68, 0x11, 0x8b, 0x3a, 0xb5, 0xbd, 0xf9, 0xde, 0x9c, 0xf7, 0xbd, 0xff, 0x9c, 0xf7, 0x9d, 0xf7, 0x7c, 0xef, 0x5c, 0xef,
0x3c, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xba, 0xde, 0xba, 0xd6, 0x9a, 0xd6, 0x99, 0xd6, 0x7a, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6,
0x39, 0xc6, 0x38, 0xbe, 0x19, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd,
0xd8, 0xb5, 0xd7, 0xbd, 0xf8, 0xbd, 0xd8, 0xbd, 0xf7, 0xbd, 0xd7, 0xb5, 0x35, 0xa5, 0x71, 0x94, 0xf8, 0xbd, 0x76, 0xad, 0x52, 0x8c, 0xf8, 0xbd, 0x96, 0xad, 0x92, 0x94, 0xf8, 0xbd, 0xd7, 0xb5,
0xf7, 0xb5, 0xf8, 0xbd, 0xd8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xc6, 0x19, 0xbe, 0x19, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xce,
0x59, 0xce, 0x79, 0xc6, 0x79, 0xce, 0x7a, 0xce, 0x9a, 0xce, 0xba, 0xd6, 0xba, 0xd6, 0xdb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x1b, 0xe7, 0x3c, 0xe7, 0x5c, 0xef, 0x7c, 0xf7, 0x9c, 0xf7, 0xbc, 0xf7,
0x7c, 0xef, 0x78, 0xd6, 0xaf, 0x73, 0x88, 0x11, 0xc9, 0x11, 0xca, 0x19, 0x46, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x26, 0x11,
0x25, 0x11, 0x45, 0x11, 0x46, 0x11, 0x25, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x11, 0x46, 0x11, 0x46, 0x11, 0x47, 0x19, 0x46, 0x19, 0x67, 0x19, 0x66, 0x19, 0x66, 0x19, 0x67, 0x19, 0x67, 0x19,
0x67, 0x19, 0x87, 0x21, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa7, 0x21, 0xc8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xe8, 0x21, 0xc8, 0x29, 0xc8, 0x21, 0xc8, 0x21, 0xe9, 0x21,
0xe9, 0x29, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4e, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4e, 0x4c, 0xb0, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x4c, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x25, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11,
0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x25, 0x11, 0x26, 0x11, 0x26, 0x09, 0x25, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x25, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11,
0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09,
0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0xe4, 0x08, 0xa4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x10, 0xc5, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xc4, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xc5, 0x10, 0xe4, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xc5, 0x08,
0xe4, 0x10, 0xc5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08,
0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0x27, 0x11, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x11, 0x68, 0x11, 0x2d, 0x5b, 0xf6, 0xc5, 0x3b, 0xe7, 0xbc, 0xf7, 0xbd, 0xff, 0x9c, 0xf7, 0x7d, 0xf7, 0x7c, 0xef,
0x5c, 0xef, 0x3b, 0xe7, 0x3c, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xda, 0xde, 0xdb, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x79, 0xce, 0x7a, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce,
0x59, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x18, 0xc6, 0x19, 0xc6, 0xf8, 0xc5, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xbd,
0xd8, 0xb5, 0xf8, 0xb5, 0xd7, 0xbd, 0xd8, 0xb5, 0xf8, 0xb5, 0xd7, 0xbd, 0xb2, 0x94, 0xd8, 0xbd, 0xd8, 0xbd, 0xf8, 0xb5, 0xd8, 0xb5, 0xd8, 0xbd, 0xb7, 0xb5, 0x96, 0xad, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0xf8, 0xb5, 0xf8, 0xb5, 0xf7, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xc6, 0x19, 0xbe, 0x18, 0xbe, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6,
0x59, 0xc6, 0x79, 0xce, 0x7a, 0xce, 0x99, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xdb, 0xd6, 0xfb, 0xde, 0x1b, 0xdf, 0x1b, 0xe7, 0x3b, 0xe7, 0x5c, 0xef, 0x7c, 0xef, 0x9d, 0xf7, 0xbd, 0xff, 0x9c, 0xf7,
0xd9, 0xde, 0xd1, 0x9c, 0x68, 0x09, 0xa9, 0x19, 0xa9, 0x19, 0xa8, 0x19, 0xe4, 0x10, 0xe4, 0x08, 0x05, 0x11, 0xe5, 0x10, 0xe4, 0x08, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x26, 0x11,
0x05, 0x11, 0x25, 0x11, 0x26, 0x19, 0x26, 0x11, 0x25, 0x19, 0x46, 0x11, 0x26, 0x19, 0x26, 0x11, 0x47, 0x19, 0x66, 0x11, 0x46, 0x11, 0x46, 0x19, 0x66, 0x19, 0x67, 0x19, 0x67, 0x21, 0x66, 0x19,
0x67, 0x19, 0x87, 0x19, 0x88, 0x21, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xe8, 0x29, 0xe9, 0x29,
0xe9, 0x21, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0xb1, 0x4c,
0x4f, 0x4c, 0x4f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x4f, 0x4c, 0x4e, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0x4e, 0x44, 0x90, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0x4f, 0x4c, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x4e, 0x44, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x25, 0x09, 0x26, 0x11,
0x05, 0x09, 0x26, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11,
0x26, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x25, 0x11, 0x06, 0x09,
0x25, 0x11, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x25, 0x09,
0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x10, 0xe4, 0x08,
0xc5, 0x10, 0xe5, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xe5, 0x10, 0xc5, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x10,
0xe5, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08,
0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0x68, 0x19, 0x88, 0x11, 0xa9, 0x11, 0x88, 0x11, 0x88, 0x11, 0x10, 0x84, 0x58, 0xce, 0x3b, 0xef, 0x9c, 0xf7, 0xbd, 0xff, 0x9d, 0xf7, 0x7c, 0xf7,
0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xe6, 0xfa, 0xde, 0xdb, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x99, 0xd6, 0x9a, 0xd6, 0x7a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce,
0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x18, 0xc6, 0x38, 0xc6, 0x38, 0xbe, 0x19, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0xf8, 0xbd, 0xf7, 0xbd, 0xf8, 0xb5, 0xf8, 0xb5, 0xf8, 0xbd, 0xd8, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd, 0xf7, 0xbd, 0xd8, 0xb5, 0xf7, 0xbd, 0xd8, 0xb5, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x19, 0xc6, 0x19, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xce,
0x79, 0xce, 0x99, 0xd6, 0x99, 0xce, 0xba, 0xd6, 0xba, 0xd6, 0xda, 0xde, 0xfb, 0xde, 0xfb, 0xe6, 0x3b, 0xe7, 0x3b, 0xe7, 0x5c, 0xef, 0x7c, 0xef, 0x9d, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0xfa, 0xe6,
0x74, 0xb5, 0xa9, 0x19, 0x88, 0x11, 0xa8, 0x19, 0xa8, 0x11, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11,
0x06, 0x11, 0x25, 0x11, 0x26, 0x11, 0x26, 0x11, 0x25, 0x11, 0x26, 0x19, 0x26, 0x19, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x66, 0x19, 0x46, 0x19, 0x67, 0x19, 0x66, 0x19, 0x67, 0x19,
0x67, 0x19, 0x67, 0x19, 0x87, 0x21, 0x87, 0x21, 0x87, 0x21, 0x87, 0x19, 0xa8, 0x21, 0xa7, 0x21, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xc8, 0x21, 0xc8, 0x29,
0xc8, 0x29, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xb1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x70, 0x44, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0xd0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x50, 0x44, 0xb1, 0x4c, 0x6f, 0x44,
0x2e, 0x44, 0x4e, 0x44, 0x4f, 0x4c, 0x4e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4e, 0x44, 0x2e, 0x44, 0x4f, 0x4c, 0x4e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x26, 0x09,
0x25, 0x09, 0x26, 0x11, 0x26, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09,
0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x25, 0x11, 0x26, 0x11,
0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0xc5, 0x08, 0xa3, 0x08, 0xe6, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08,
0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x10, 0xc5, 0x08, 0xe5, 0x08, 0x88, 0x11, 0x89, 0x19, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0xd2, 0x9c, 0x98, 0xd6, 0x5b, 0xef, 0xbd, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7,
0x7c, 0xf7, 0x5c, 0xef, 0x5b, 0xe7, 0x3c, 0xef, 0x3b, 0xe7, 0x1b, 0xdf, 0x1b, 0xdf, 0xfa, 0xde, 0xdb, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x7a, 0xd6, 0x7a, 0xce, 0x79, 0xce,
0x59, 0xce, 0x59, 0xc6, 0x59, 0xce, 0x58, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0x19, 0xc6, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0xf8, 0xbd,
0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd,
0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0x39, 0xbe, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce,
0x79, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x3b, 0xe7, 0x5c, 0xef, 0x7c, 0xef, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x1b, 0xe7, 0xb4, 0xb5,
0x0a, 0x2a, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x06, 0x11, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x11,
0x05, 0x11, 0x05, 0x11, 0x25, 0x19, 0x25, 0x11, 0x26, 0x11, 0x26, 0x19, 0x26, 0x11, 0x26, 0x19, 0x46, 0x11, 0x27, 0x19, 0x46, 0x11, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19, 0x67, 0x19, 0x66, 0x21,
0x66, 0x19, 0x67, 0x21, 0x67, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x21, 0x87, 0x19, 0xa8, 0x21, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x29, 0xc9, 0x21, 0xc8, 0x21,
0xc8, 0x21, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2e, 0x44, 0x4f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x2e, 0x44, 0x4f, 0x4c, 0x4f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c,
0x4e, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09,
0x06, 0x11, 0x25, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09,
0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09,
0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11,
0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe4, 0x08,
0xc5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xc5, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc3, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08,
0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0x05, 0x09, 0x89, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0xc9, 0x21, 0x33, 0xad, 0x98, 0xd6, 0x7c, 0xef, 0xbd, 0xf7, 0xbd, 0xf7,
0x9c, 0xf7, 0x7c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x3b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfa, 0xde, 0xda, 0xde, 0xba, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x79, 0xce,
0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x18, 0xbe, 0x18, 0xc6, 0x19, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe,
0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe,
0x18, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0x18, 0xbe, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x99, 0xce,
0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xde, 0xda, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x5b, 0xef, 0x5c, 0xef, 0x7c, 0xf7, 0x9c, 0xf7, 0xbd, 0xff, 0x5b, 0xef, 0x16, 0xc6, 0x8b, 0x42,
0x88, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x47, 0x11, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11,
0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x25, 0x11, 0x25, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x11, 0x26, 0x19, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19,
0x66, 0x19, 0x67, 0x19, 0x66, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x21, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0xa7, 0x21, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x21, 0xc8, 0x21,
0xc8, 0x21, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x4f, 0x44,
0xd1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c,
0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x4c,
0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x25, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09,
0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0x05, 0x11, 0x06, 0x11,
0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11,
0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09,
0x26, 0x11, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xc5, 0x10,
0xe4, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08,
0xe5, 0x08, 0xc5, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08,
0xc4, 0x10, 0xc5, 0x08, 0xc5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0xc4, 0x10,
0xc5, 0x08, 0xe5, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0x26, 0x11, 0xa8, 0x11, 0x88, 0x11, 0xa8, 0x19, 0x68, 0x09, 0x4a, 0x32, 0x54, 0xad, 0xb9, 0xde, 0x7c, 0xf7, 0x9d, 0xf7,
0xbd, 0xf7, 0x9d, 0xf7, 0x7d, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xdb, 0xde, 0xdb, 0xde, 0xda, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6,
0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x18, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xc6,
0xf8, 0xc5, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0xf8, 0xbd, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xbe, 0x18, 0xbe,
0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x58, 0xc6, 0x59, 0xce, 0x79, 0xc6, 0x79, 0xce, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xd6,
0xba, 0xd6, 0xda, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0xfa, 0xe6, 0x1b, 0xe7, 0x3b, 0xef, 0x5b, 0xef, 0x7c, 0xef, 0x7d, 0xf7, 0xbc, 0xf7, 0x9c, 0xf7, 0x5b, 0xef, 0x36, 0xc6, 0x2d, 0x5b, 0x88, 0x11,
0xa9, 0x19, 0x88, 0x11, 0x89, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11,
0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x11, 0x25, 0x11, 0x26, 0x11, 0x25, 0x11, 0x25, 0x19, 0x25, 0x11, 0x26, 0x19, 0x26, 0x11, 0x46, 0x19, 0x46, 0x11, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19,
0x67, 0x19, 0x66, 0x19, 0x67, 0x21, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x21, 0x87, 0x21, 0xa8, 0x19, 0xa7, 0x29, 0xa7, 0x21, 0xa8, 0x21, 0xc8, 0x21, 0xa8, 0x21,
0xc8, 0x29, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x44, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb1, 0x4c,
0x8f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x4e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0x4e, 0x44, 0x4e, 0x44, 0x4e, 0x44, 0x4f, 0x4c, 0x4e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4e, 0x44,
0x2e, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x26, 0x11, 0x05, 0x09, 0x25, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11,
0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0x25, 0x09,
0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x25, 0x09,
0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x05, 0x11,
0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xc4, 0x10, 0x83, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe4, 0x08,
0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08,
0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xc5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x47, 0x11, 0x89, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0x89, 0x11, 0x6b, 0x42, 0x74, 0xb5, 0xd9, 0xde, 0x9c, 0xf7,
0x9d, 0xff, 0xbd, 0xff, 0x9c, 0xf7, 0x7d, 0xf7, 0x7c, 0xef, 0x5c, 0xe7, 0x3b, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xda, 0xde, 0xda, 0xd6, 0xba, 0xde, 0xba, 0xd6, 0x9a, 0xce,
0x99, 0xd6, 0x9a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x79, 0xce, 0x59, 0xc6, 0x39, 0xce, 0x59, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x19, 0xc6,
0x38, 0xbe, 0x19, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xc6, 0x38, 0xbe, 0x39, 0xc6,
0x19, 0xc6, 0x18, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x58, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x7a, 0xd6, 0x99, 0xd6, 0xba, 0xd6, 0xba, 0xd6,
0xda, 0xd6, 0xda, 0xde, 0xfb, 0xde, 0x1b, 0xdf, 0x1b, 0xe7, 0x3c, 0xe7, 0x5c, 0xe7, 0x7c, 0xef, 0x9d, 0xf7, 0xbd, 0xf7, 0xbc, 0xff, 0x5b, 0xef, 0x58, 0xd6, 0xcf, 0x73, 0xa8, 0x11, 0xa8, 0x19,
0x88, 0x11, 0x88, 0x19, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x09,
0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x26, 0x11, 0x25, 0x11, 0x25, 0x11, 0x26, 0x19, 0x26, 0x19, 0x26, 0x11, 0x26, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19,
0x46, 0x11, 0x66, 0x19, 0x66, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0x88, 0x21, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x21, 0xc8, 0x21,
0xa8, 0x21, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x8f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x4f, 0x4c, 0x4e, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x26, 0x11, 0x06, 0x09, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11,
0x05, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11,
0x06, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11,
0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x09,
0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x09, 0xe4, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08,
0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc3, 0x08, 0xe5, 0x08, 0xc5, 0x10, 0xc4, 0x08,
0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xc5, 0x10, 0xc5, 0x10, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08,
0xc4, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0x05, 0x09, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08,
0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0x67, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0x88, 0x11, 0x68, 0x11, 0x8b, 0x3a, 0xd6, 0xbd, 0xd9, 0xde,
0x5c, 0xef, 0xbc, 0xf7, 0xbd, 0xff, 0x9c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0x1b, 0xdf, 0xda, 0xde, 0xda, 0xd6, 0xda, 0xd6, 0xba, 0xd6,
0x9a, 0xd6, 0x99, 0xd6, 0x9a, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x79, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x58, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xbe,
0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x18, 0xc6, 0x38, 0xc6, 0x18, 0xbe, 0x18, 0xc6, 0x18, 0xc6, 0x18, 0xbe, 0x39, 0xc6, 0x19, 0xc6, 0x38, 0xc6, 0x19, 0xbe, 0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6,
0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x99, 0xce, 0x99, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xde, 0xda, 0xde,
0xfa, 0xde, 0xfb, 0xde, 0x1b, 0xdf, 0x3b, 0xe7, 0x3b, 0xef, 0x5c, 0xef, 0x7c, 0xef, 0x9c, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x5b, 0xef, 0x58, 0xce, 0xef, 0x7b, 0x68, 0x11, 0x89, 0x11, 0x89, 0x11,
0xa8, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x25, 0x11, 0x26, 0x11, 0x25, 0x11, 0x25, 0x11, 0x25, 0x11, 0x26, 0x11, 0x26, 0x11, 0x46, 0x19, 0x46, 0x11, 0x46, 0x19,
0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x21, 0x67, 0x19, 0x67, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x21, 0x87, 0x19, 0x87, 0x19, 0x87, 0x21, 0xa7, 0x21, 0xa8, 0x21, 0xa8, 0x21,
0xa7, 0x21, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c,
0x70, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c,
0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x4c, 0x6f, 0x4c,
0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09,
0x06, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11,
0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x26, 0x09, 0x06, 0x09,
0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09,
0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0xc5, 0x08, 0xa3, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08,
0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x88, 0x11, 0x89, 0x19, 0xa8, 0x11, 0xa8, 0x11, 0x48, 0x09, 0xab, 0x4a, 0xd5, 0xbd,
0xb9, 0xde, 0x5c, 0xef, 0xbc, 0xff, 0xbd, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xef, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xda, 0xde,
0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x99, 0xce, 0x9a, 0xce, 0x7a, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x39, 0xc6,
0x38, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x39, 0xc6, 0x38, 0xc6, 0x59, 0xc6,
0x39, 0xc6, 0x58, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x9a, 0xce, 0x99, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xda, 0xd6, 0xdb, 0xde, 0xfb, 0xde,
0x1b, 0xdf, 0x1b, 0xe7, 0x3b, 0xe7, 0x3c, 0xe7, 0x5c, 0xef, 0x5c, 0xef, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xff, 0x5b, 0xef, 0x58, 0xce, 0x30, 0x84, 0x88, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19,
0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x10,
0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x19, 0x26, 0x11, 0x25, 0x11, 0x26, 0x19, 0x25, 0x11, 0x26, 0x19, 0x26, 0x11, 0x46, 0x11, 0x26, 0x11,
0x46, 0x19, 0x46, 0x19, 0x26, 0x11, 0x47, 0x19, 0x46, 0x19, 0x46, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x21, 0x67, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x21, 0x88, 0x21, 0xa7, 0x21,
0xc7, 0x21, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x8f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44,
0xd1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11,
0x25, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09,
0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11,
0x25, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x25, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x11,
0x05, 0x09, 0x06, 0x11, 0x25, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x10,
0xc5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0x89, 0x11, 0xa8, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0x88, 0x09, 0x8b, 0x42,
0x54, 0xad, 0x98, 0xd6, 0x5c, 0xef, 0xbc, 0xff, 0xbd, 0xf7, 0xbd, 0xf7, 0x7c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfa, 0xde, 0xfb, 0xde, 0xfb, 0xde,
0xda, 0xde, 0xda, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x79, 0xd6, 0x7a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xc6,
0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x58, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x39, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xc6, 0x58, 0xce, 0x59, 0xc6, 0x59, 0xce,
0x79, 0xc6, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x9a, 0xd6, 0xba, 0xce, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xda, 0xd6, 0xdb, 0xde, 0xdb, 0xde, 0xfa, 0xde, 0x1b, 0xe7,
0x1b, 0xe7, 0x3b, 0xe7, 0x5c, 0xef, 0x5c, 0xef, 0x7c, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x3b, 0xef, 0x37, 0xce, 0xce, 0x73, 0x88, 0x11, 0xa9, 0x11, 0x89, 0x19, 0xa9, 0x11, 0xe5, 0x10,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x10, 0xe6, 0x10, 0x05, 0x11, 0x05, 0x11, 0x06, 0x11, 0x26, 0x11, 0x25, 0x11, 0x25, 0x11, 0x26, 0x19, 0x26, 0x19, 0x46, 0x11,
0x46, 0x11, 0x26, 0x19, 0x45, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x66, 0x19, 0x47, 0x19, 0x67, 0x19, 0x67, 0x19, 0x67, 0x21, 0x67, 0x19, 0x87, 0x19, 0x87, 0x21, 0x87, 0x21, 0xa7, 0x21,
0x88, 0x21, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x8f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44,
0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c,
0x6f, 0x4c, 0x4e, 0x44, 0x4f, 0x44, 0x26, 0x11, 0x05, 0x11, 0x25, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11,
0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x09, 0x25, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x11,
0x26, 0x11, 0x06, 0x09, 0x06, 0x11, 0x46, 0x11, 0x06, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x11, 0x25, 0x11, 0x06, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09,
0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0xc5, 0x08, 0x83, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08,
0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x10, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08,
0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x10,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0x88, 0x11, 0x88, 0x19, 0x89, 0x11, 0xa9, 0x19, 0x69, 0x09,
0x6b, 0x3a, 0x73, 0xb5, 0x99, 0xd6, 0x5c, 0xef, 0x9c, 0xf7, 0x9c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x7c, 0xef, 0x7c, 0xef, 0x5b, 0xef, 0x5c, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde,
0xfb, 0xde, 0xdb, 0xde, 0xda, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x99, 0xd6, 0x99, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x7a, 0xce, 0x99, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce,
0x59, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xc6, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x59, 0xce, 0x79, 0xce, 0x59, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce,
0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x99, 0xce, 0x9a, 0xd6, 0x99, 0xd6, 0xb9, 0xd6, 0xba, 0xd6, 0xba, 0xde, 0xda, 0xd6, 0xdb, 0xde, 0xfa, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x1b, 0xe7,
0x3b, 0xef, 0x5c, 0xe7, 0x5c, 0xef, 0x7c, 0xf7, 0x9d, 0xf7, 0xbc, 0xf7, 0x7c, 0xf7, 0x1a, 0xe7, 0xf7, 0xbd, 0x8e, 0x63, 0x68, 0x09, 0xa9, 0x19, 0xa8, 0x11, 0xc9, 0x11, 0x05, 0x11, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xc5, 0x10, 0xc5, 0x08, 0xc4, 0x08,
0xe4, 0x10, 0x04, 0x09, 0xe4, 0x10, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x11, 0x05, 0x11, 0x26, 0x19, 0x26, 0x11,
0x06, 0x19, 0x26, 0x11, 0x26, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x46, 0x19, 0x66, 0x19, 0x66, 0x19, 0x66, 0x19, 0x67, 0x19, 0x67, 0x21, 0x87, 0x19, 0x87, 0x19, 0xa7, 0x21, 0x87, 0x21,
0xa7, 0x21, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x8f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x8f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xf1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xf1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x26, 0x11, 0x05, 0x09, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09,
0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x11, 0x06, 0x09, 0x26, 0x11, 0x26, 0x09, 0x06, 0x09, 0x06, 0x11,
0x06, 0x09, 0x26, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0x83, 0x00, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x05, 0x11, 0x06, 0x09, 0x06, 0x09, 0x05, 0x11, 0x25, 0x11, 0x26, 0x09, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11,
0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc5, 0x08, 0xc4, 0x10, 0xc5, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0x88, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x19,
0x88, 0x11, 0x0a, 0x2a, 0xf2, 0xa4, 0x77, 0xce, 0x3a, 0xef, 0x9c, 0xf7, 0x9c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7, 0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7,
0xfb, 0xde, 0xfa, 0xe6, 0xfb, 0xde, 0xda, 0xde, 0xda, 0xd6, 0xda, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xce, 0x99, 0xd6, 0x99, 0xd6, 0x79, 0xd6, 0x7a, 0xce, 0x9a, 0xce, 0x79, 0xce,
0x99, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x59, 0xce, 0x59, 0xce, 0x79, 0xc6, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xce, 0x7a, 0xce, 0x7a, 0xce,
0x99, 0xce, 0x99, 0xce, 0x9a, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0xb9, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xda, 0xde, 0xda, 0xde, 0xfb, 0xde, 0xfb, 0xe6, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x3c, 0xef,
0x5c, 0xef, 0x7c, 0xf7, 0x7c, 0xf7, 0x9d, 0xf7, 0x9d, 0xff, 0x7c, 0xf7, 0xfa, 0xe6, 0xd6, 0xc5, 0xec, 0x4a, 0x88, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x05, 0x11, 0xc4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x10, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xe5, 0x10,
0xe5, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc5, 0x10, 0xe4, 0x08, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x11, 0x04, 0x11, 0x05, 0x11, 0x26, 0x11, 0x25, 0x11, 0x05, 0x11, 0x05, 0x11, 0x46, 0x19,
0x25, 0x11, 0x26, 0x11, 0x46, 0x11, 0x46, 0x11, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x47, 0x19, 0x67, 0x19, 0x67, 0x19, 0x87, 0x21, 0x87, 0x19, 0x87, 0x19, 0x87, 0x19,
0x87, 0x21, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x44, 0xd0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c,
0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x8f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xf1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0x6f, 0x44, 0x8f, 0x4c, 0x4f, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x26, 0x11, 0x06, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11,
0x26, 0x09, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x26, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x09, 0x06, 0x11,
0x05, 0x11, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xe5, 0x10, 0x26, 0x11, 0x67, 0x11, 0xa8, 0x11, 0xc9, 0x19, 0xa8, 0x19, 0x26, 0x11, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0x83, 0x08,
0xc4, 0x08, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x09, 0x26, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x06, 0x11, 0x05, 0x11, 0x25, 0x09, 0x05, 0x09,
0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x69, 0x11, 0xa8, 0x19, 0xa8, 0x11,
0xa9, 0x19, 0x89, 0x09, 0xc9, 0x19, 0xb1, 0x9c, 0xf7, 0xc5, 0xfa, 0xde, 0x7c, 0xf7, 0xbd, 0xff, 0xbd, 0xff, 0x9d, 0xf7, 0x9d, 0xf7, 0x7c, 0xef, 0x7c, 0xef, 0x5c, 0xef, 0x3b, 0xe7, 0x3b, 0xe7,
0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xdf, 0xfa, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xda, 0xd6, 0xda, 0xde, 0xda, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x99, 0xce, 0x99, 0xce, 0x9a, 0xd6,
0x79, 0xce, 0x9a, 0xce, 0x7a, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x79, 0xce, 0x79, 0xce, 0x79, 0xd6, 0x79, 0xd6, 0x79, 0xce, 0x99, 0xce, 0x79, 0xce, 0x9a, 0xce, 0x99, 0xd6, 0x99, 0xce, 0x99, 0xd6,
0x9a, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xda, 0xde, 0xdb, 0xde, 0xfa, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x5c, 0xef, 0x7c, 0xef,
0x7c, 0xf7, 0x7c, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x5b, 0xef, 0xb9, 0xd6, 0x55, 0xad, 0x29, 0x2a, 0x89, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xc9, 0x19, 0x05, 0x09, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xe4, 0x08, 0xc5, 0x10,
0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x10, 0xc4, 0x08, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x25, 0x11, 0x26, 0x19, 0x25, 0x11,
0x26, 0x11, 0x45, 0x19, 0x25, 0x19, 0x26, 0x11, 0x26, 0x11, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x66, 0x19, 0x47, 0x19, 0x67, 0x21, 0x67, 0x19, 0x87, 0x21,
0x87, 0x21, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x8f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x8f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c,
0x8f, 0x4c, 0xd1, 0x4c, 0x8f, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x06, 0x09, 0x05, 0x09,
0x26, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x26, 0x09, 0xc4, 0x08,
0xa3, 0x08, 0x83, 0x00, 0xc4, 0x08, 0x46, 0x11, 0xeb, 0x19, 0x4b, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x6c, 0x22, 0x6d, 0x22, 0x8d, 0x2a, 0x2a, 0x22, 0x46, 0x11, 0xa4, 0x08,
0xa2, 0x08, 0xa4, 0x00, 0xc4, 0x08, 0x06, 0x11, 0x25, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11,
0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0xc4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc5, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x89, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0x89, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x8e, 0x63, 0xd6, 0xbd, 0xd9, 0xde, 0x5c, 0xf7, 0x9c, 0xf7, 0x9d, 0xff, 0x9c, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5b, 0xef,
0x3b, 0xe7, 0x3c, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xe6, 0xfb, 0xde, 0xfa, 0xde, 0xdb, 0xde, 0xda, 0xde, 0xda, 0xde, 0xba, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6,
0xba, 0xd6, 0x99, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xd6, 0x99, 0xd6, 0x9a, 0xd6, 0x9a, 0xd6, 0x9a, 0xce, 0x9a, 0xd6, 0x9a, 0xd6, 0x99, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6,
0xba, 0xd6, 0xba, 0xde, 0xda, 0xde, 0xda, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0xfa, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0x3c, 0xe7, 0x3b, 0xef, 0x5c, 0xef, 0x7c, 0xef, 0x7d, 0xef,
0x9d, 0xf7, 0xbc, 0xff, 0x9c, 0xf7, 0x1b, 0xe7, 0x58, 0xce, 0xb1, 0x94, 0xca, 0x29, 0xa8, 0x19, 0xa8, 0x19, 0x88, 0x11, 0xa9, 0x19, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0xc4, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11,
0x26, 0x11, 0x25, 0x19, 0x26, 0x11, 0x25, 0x19, 0x25, 0x11, 0x26, 0x19, 0x26, 0x19, 0x46, 0x19, 0x66, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x67, 0x19, 0x66, 0x19,
0x67, 0x21, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x4c,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xd0, 0x54, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x26, 0x11, 0x06, 0x09, 0x25, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x09,
0x05, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x26, 0x11, 0x25, 0x09, 0x06, 0x09, 0x26, 0x11, 0x06, 0x09, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0xc4, 0x08, 0x83, 0x08,
0x82, 0x08, 0x67, 0x11, 0x2b, 0x22, 0x4c, 0x22, 0x6c, 0x22, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x22, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x1a, 0x4c, 0x22, 0x4c, 0x1a, 0x6d, 0x22, 0x6c, 0x22, 0x4c, 0x22,
0x06, 0x11, 0xa2, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x25, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09,
0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x08, 0xc5, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08,
0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08,
0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x68, 0x11,
0xa9, 0x11, 0x89, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0x89, 0x11, 0xab, 0x42, 0x13, 0xad, 0x77, 0xce, 0x1b, 0xe7, 0x9c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7, 0x7c, 0xef, 0x5c, 0xef,
0x5c, 0xef, 0x5b, 0xef, 0x3c, 0xef, 0x3b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xe6, 0xfb, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xda, 0xde, 0xda, 0xde, 0xba, 0xde, 0xda, 0xde,
0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xd6, 0x9a, 0xd6, 0xba, 0xd6, 0xba, 0xde, 0xba, 0xd6, 0xba, 0xd6, 0xba, 0xde, 0xda, 0xde, 0xba, 0xd6, 0xda, 0xde,
0xda, 0xde, 0xda, 0xde, 0xdb, 0xde, 0xfa, 0xde, 0xfb, 0xde, 0xfa, 0xe6, 0x1b, 0xdf, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x5b, 0xef, 0x5b, 0xef, 0x5c, 0xef, 0x7c, 0xf7, 0x9d, 0xf7, 0xbc, 0xff,
0xbc, 0xff, 0x7c, 0xf7, 0xfa, 0xde, 0xf6, 0xc5, 0xce, 0x73, 0x68, 0x09, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xca, 0x19, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x84, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x10, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc3, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0x05, 0x11, 0x04, 0x11, 0x05, 0x11, 0x05, 0x11, 0x25, 0x11, 0x05, 0x11, 0x25, 0x11,
0x25, 0x11, 0x05, 0x11, 0x05, 0x11, 0x26, 0x19, 0x25, 0x19, 0x46, 0x11, 0x26, 0x11, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x66, 0x19, 0x47, 0x19, 0x67, 0x19, 0x86, 0x21,
0x87, 0x19, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xf1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x25, 0x09, 0x05, 0x11, 0x06, 0x11,
0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x06, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x25, 0x09, 0x06, 0x09, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xea, 0x19, 0x6c, 0x22, 0x4c, 0x1a, 0x4c, 0x22, 0x4c, 0x1a, 0x4c, 0x1a, 0x2c, 0x22, 0x4c, 0x1a, 0x2c, 0x1a, 0x4c, 0x1a, 0x4b, 0x22, 0x2c, 0x1a, 0x2b, 0x22, 0x4c, 0x1a, 0x4c, 0x1a, 0x2c, 0x22,
0x8c, 0x22, 0x89, 0x19, 0x83, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09,
0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x10,
0xc4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08,
0x47, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa8, 0x19, 0xea, 0x19, 0x91, 0x94, 0xd6, 0xc5, 0xb9, 0xd6, 0x5b, 0xef, 0x7c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7,
0x7c, 0xf7, 0x5c, 0xef, 0x5b, 0xef, 0x3c, 0xef, 0x3c, 0xe7, 0x3b, 0xef, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xe6, 0xfa, 0xe6, 0xfa, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0xdb, 0xde, 0xda, 0xde,
0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xda, 0xd6, 0xda, 0xde, 0xda, 0xde, 0xda, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0xfb, 0xde,
0xfa, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x3c, 0xef, 0x5b, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x7c, 0xf7, 0x9c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7,
0x3b, 0xef, 0x78, 0xce, 0x33, 0xad, 0xab, 0x42, 0x88, 0x09, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x68, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x10, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x11,
0x05, 0x11, 0x05, 0x19, 0x06, 0x11, 0x26, 0x11, 0x06, 0x11, 0xc8, 0x11, 0xc9, 0x11, 0x26, 0x19, 0x46, 0x19, 0x09, 0x1a, 0xa7, 0x19, 0xea, 0x19, 0x46, 0x19, 0x66, 0x19, 0x66, 0x19, 0x67, 0x19,
0x67, 0x21, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0x8f, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x4f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xaf, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09, 0x25, 0x11, 0x06, 0x11, 0x26, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09,
0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0x4c, 0x22,
0x4c, 0x22, 0x4c, 0x1a, 0x4c, 0x22, 0x2c, 0x1a, 0x4b, 0x1a, 0x4b, 0x1a, 0x4c, 0x22, 0x2b, 0x1a, 0x4c, 0x22, 0x2c, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x4c, 0x1a, 0x2b, 0x1a, 0x2c, 0x22, 0x2c, 0x1a,
0x4b, 0x22, 0x6d, 0x22, 0xa8, 0x19, 0x62, 0x00, 0xa4, 0x08, 0xe4, 0x08, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09,
0x06, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0x05, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0x88, 0x11, 0xa9, 0x19, 0x89, 0x11, 0x0c, 0x53, 0x74, 0xb5, 0x37, 0xce, 0xfa, 0xe6, 0x5b, 0xef, 0x9d, 0xff, 0x9d, 0xff, 0x9d, 0xf7,
0x9c, 0xf7, 0x9d, 0xf7, 0x7c, 0xef, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xe7, 0x5c, 0xef, 0x3c, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xde, 0x1b, 0xdf, 0xfb, 0xde,
0xfb, 0xde, 0xfb, 0xde, 0xfa, 0xde, 0xfa, 0xde, 0xdb, 0xde, 0xfb, 0xde, 0xfa, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0xfa, 0xde, 0xfb, 0xde, 0xfb, 0xde, 0xfb, 0xe6, 0xfb, 0xe6,
0xfb, 0xe6, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x3b, 0xef, 0x3c, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x7c, 0xef, 0x7c, 0xf7, 0x9c, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x5c, 0xf7, 0xda, 0xd6,
0xf6, 0xbd, 0x30, 0x84, 0x89, 0x11, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x67, 0x11, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0x46, 0x09, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xc9, 0x11, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11,
0x05, 0x11, 0x25, 0x11, 0x26, 0x11, 0x25, 0x11, 0x25, 0x19, 0x88, 0x19, 0xa8, 0x11, 0x25, 0x11, 0x26, 0x19, 0xe8, 0x11, 0x87, 0x19, 0x67, 0x19, 0x66, 0x19, 0x67, 0x19, 0x46, 0x19, 0x47, 0x19,
0x67, 0x19, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x44,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0xf0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xf0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xf0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x09,
0x05, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x25, 0x09, 0x05, 0x11, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x26, 0x11, 0xc4, 0x08, 0x83, 0x08, 0xa3, 0x08, 0x2c, 0x22, 0x6c, 0x22,
0x2c, 0x1a, 0x4b, 0x22, 0x2c, 0x1a, 0x4b, 0x1a, 0x2c, 0x22, 0x2c, 0x1a, 0x2b, 0x1a, 0x4c, 0x1a, 0x4b, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x22, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a,
0x2c, 0x1a, 0x4b, 0x1a, 0x6c, 0x22, 0x88, 0x11, 0xa3, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x11, 0xe5, 0x08,
0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x10, 0x06, 0x11, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0x89, 0x11, 0xa8, 0x19, 0x89, 0x09, 0xc9, 0x21, 0xcf, 0x73, 0xd6, 0xbd, 0x98, 0xd6, 0x1b, 0xe7, 0x7b, 0xef, 0x9c, 0xf7,
0x9c, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5b, 0xef, 0x5c, 0xef, 0x3b, 0xef, 0x3c, 0xe7, 0x3c, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7,
0x1b, 0xe7, 0x1b, 0xe7, 0xfb, 0xe6, 0xfb, 0xe6, 0x1b, 0xe7, 0xfb, 0xe6, 0xfb, 0xe6, 0xfb, 0xe6, 0xfb, 0xe6, 0xfb, 0xe6, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7,
0x3c, 0xe7, 0x5b, 0xe7, 0x3b, 0xef, 0x5b, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x7c, 0xf7, 0x9c, 0xf7, 0x9d, 0xf7, 0xbd, 0xff, 0x9c, 0xf7, 0x5c, 0xef, 0xd9, 0xe6, 0x36, 0xc6, 0xb1, 0x9c,
0x8b, 0x3a, 0x88, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x26, 0x11, 0x84, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xa4, 0x08, 0xc3, 0x10, 0xc5, 0x08,
0xc3, 0x08, 0xa9, 0x11, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x10, 0xc5, 0x08, 0xc4, 0x08, 0x04, 0x11, 0xe4, 0x10, 0xe4, 0x08, 0xa8, 0x11, 0xa8, 0x11, 0xe9, 0x11, 0x04, 0x11, 0x04, 0x11, 0x04, 0x11,
0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x46, 0x11, 0x26, 0x19, 0x45, 0x11, 0x46, 0x19, 0x26, 0x11, 0x47, 0x19, 0x88, 0x19, 0x66, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19,
0x46, 0x19, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c,
0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x4c, 0x4f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0x8f, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x11, 0x06, 0x09,
0x25, 0x11, 0x06, 0x09, 0x05, 0x11, 0x26, 0x09, 0x06, 0x11, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x26, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x0a, 0x22, 0x4b, 0x1a, 0x2c, 0x1a,
0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a,
0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x4c, 0x22, 0xe5, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x05, 0x09, 0x06, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09,
0xe5, 0x08, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x10, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08,
0xc3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0x47, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0x2a, 0x32, 0x91, 0x94, 0xf5, 0xbd, 0x99, 0xd6, 0x1a, 0xe7,
0x7c, 0xf7, 0x9c, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x5c, 0xf7, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x5b, 0xef, 0x3c, 0xef, 0x5b, 0xef, 0x3b, 0xef, 0x3b, 0xe7,
0x3b, 0xe7, 0x3c, 0xe7, 0x3b, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x1b, 0xe7, 0x3b, 0xe7, 0x3b, 0xe7, 0x3b, 0xe7, 0x3b, 0xe7, 0x3b, 0xe7, 0x3b, 0xe7, 0x3b, 0xef, 0x3c, 0xef, 0x5b, 0xef,
0x5b, 0xef, 0x5c, 0xef, 0x7c, 0xef, 0x5c, 0xef, 0x7c, 0xf7, 0x7c, 0xf7, 0x9c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x3b, 0xef, 0xda, 0xde, 0x37, 0xce, 0x74, 0xb5, 0xec, 0x52, 0xa9, 0x11,
0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0x88, 0x11, 0xc5, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0x67, 0x09, 0xa4, 0x08, 0xa4, 0x08, 0x26, 0x09, 0x05, 0x09, 0xa4, 0x08, 0x48, 0x09, 0x24, 0x09, 0xa4, 0x08, 0x88, 0x09, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xa9, 0x11, 0xc4, 0x08, 0x27, 0x11, 0x88, 0x09, 0x26, 0x11, 0x67, 0x09, 0x06, 0x11, 0x67, 0x09, 0xc9, 0x11, 0xa4, 0x08, 0xa9, 0x11, 0x05, 0x11, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x10,
0xe5, 0x10, 0xe5, 0x10, 0x04, 0x11, 0x05, 0x11, 0x26, 0x11, 0x46, 0x11, 0x47, 0x19, 0x26, 0x11, 0x25, 0x11, 0x05, 0x11, 0xc8, 0x19, 0xc8, 0x19, 0xc8, 0x19, 0x46, 0x19, 0x46, 0x19, 0x46, 0x19,
0x46, 0x19, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0xaf, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0xf0, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09,
0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x11, 0xa4, 0x08, 0xa3, 0x00, 0x88, 0x19, 0x4c, 0x22, 0x2c, 0x1a, 0x2b, 0x22,
0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x22, 0x2c, 0x1a, 0x2b, 0x1a, 0x2c, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x22, 0x2b, 0x1a, 0x2b, 0x1a,
0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x4c, 0x22, 0xea, 0x21, 0x82, 0x00, 0x83, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x10,
0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x05, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x19, 0xa9, 0x19, 0x89, 0x11, 0xa9, 0x19, 0x8b, 0x42, 0xd2, 0x9c, 0x96, 0xbd,
0x78, 0xce, 0x1a, 0xe7, 0x5b, 0xef, 0x9c, 0xff, 0x9c, 0xf7, 0xbc, 0xff, 0x9c, 0xf7, 0x9d, 0xf7, 0x7d, 0xf7, 0x9c, 0xf7, 0x7c, 0xef, 0x5c, 0xf7, 0x7c, 0xef, 0x5b, 0xef, 0x7c, 0xef, 0x5c, 0xef,
0x5c, 0xef, 0x5b, 0xef, 0x3c, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xef, 0x5c, 0xef, 0x3c, 0xef, 0x3b, 0xef, 0x5c, 0xe7, 0x3c, 0xef, 0x5b, 0xef, 0x5c, 0xef, 0x7c, 0xef, 0x5c, 0xef,
0x7c, 0xef, 0x7c, 0xf7, 0x7c, 0xf7, 0x9d, 0xf7, 0xbc, 0xf7, 0xbd, 0xf7, 0x9d, 0xf7, 0x7c, 0xf7, 0x3b, 0xef, 0xd9, 0xde, 0x37, 0xce, 0x54, 0xad, 0x6d, 0x63, 0x68, 0x09, 0xa9, 0x11, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0x47, 0x11, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x88, 0x09, 0xa9, 0x11, 0xa3, 0x08, 0xc9, 0x09, 0x46, 0x09, 0xc9, 0x11, 0xc3, 0x08, 0xa4, 0x08, 0x83, 0x08, 0x67, 0x09, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xc9, 0x11, 0xa3, 0x08, 0xc9, 0x11, 0xa4, 0x08, 0xa7, 0x09, 0xc5, 0x10, 0x88, 0x09, 0x46, 0x11, 0xc9, 0x09, 0xc4, 0x10, 0xc9, 0x09, 0xc4, 0x08, 0xc5, 0x10, 0xe5, 0x10, 0xe5, 0x10,
0xe5, 0x10, 0x05, 0x11, 0x06, 0x11, 0x05, 0x19, 0xe4, 0x10, 0xa8, 0x11, 0xc8, 0x11, 0xe5, 0x18, 0x06, 0x11, 0x46, 0x19, 0x26, 0x11, 0x2a, 0x12, 0x87, 0x19, 0x26, 0x19, 0x46, 0x19, 0x46, 0x19,
0x46, 0x19, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x4c, 0x6f, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c,
0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09,
0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x26, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x6d, 0x2a, 0x2b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a,
0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a,
0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x6b, 0x22, 0xe5, 0x10, 0xa3, 0x08, 0xc5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x06, 0x09,
0x05, 0x11, 0x05, 0x11, 0xe5, 0x08, 0xe6, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x10, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0x67, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x11, 0xa9, 0x11, 0x89, 0x11, 0x8a, 0x3a,
0x71, 0x94, 0xb5, 0xb5, 0x37, 0xc6, 0xb9, 0xde, 0x3b, 0xe7, 0x5c, 0xef, 0x9c, 0xf7, 0x9c, 0xf7, 0xbc, 0xff, 0x9d, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x7d, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7,
0x7c, 0xf7, 0x7c, 0xef, 0x7c, 0xef, 0x5c, 0xef, 0x5c, 0xef, 0x7b, 0xef, 0x7c, 0xef, 0x7c, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7, 0x7c, 0xef, 0x9c, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7,
0x9d, 0xf7, 0x9c, 0xf7, 0xbd, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7, 0x5b, 0xef, 0xfa, 0xe6, 0x98, 0xd6, 0xd6, 0xc5, 0xb1, 0x94, 0x0d, 0x53, 0xc9, 0x21, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11,
0xa9, 0x19, 0x88, 0x19, 0xe5, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0x89, 0x09, 0x47, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x26, 0x09, 0xca, 0x11, 0xa3, 0x08, 0xa3, 0x08, 0x83, 0x08, 0x87, 0x09, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xc3, 0x08, 0xa9, 0x11, 0xa4, 0x08, 0xc9, 0x11, 0xa3, 0x08, 0x88, 0x09, 0xea, 0x11, 0x82, 0x08, 0x88, 0x11, 0xc9, 0x09, 0xa4, 0x08, 0xc9, 0x11, 0x66, 0x11, 0x04, 0x09, 0xe4, 0x10, 0xe5, 0x10,
0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x11, 0x67, 0x11, 0x26, 0x11, 0x05, 0x11, 0x25, 0x19, 0x25, 0x11, 0x25, 0x19, 0x05, 0x11, 0x26, 0x11, 0x46, 0x19, 0x26, 0x19, 0x46, 0x19,
0x46, 0x19, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x11, 0x4d, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c,
0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09,
0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x26, 0x09, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11, 0x05, 0x09, 0xa3, 0x08, 0x63, 0x08, 0xe9, 0x19, 0x4c, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a,
0x0b, 0x22, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x2b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0xea, 0x19, 0xe9, 0x19,
0x6c, 0x22, 0xea, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x2b, 0x1a, 0xa9, 0x19, 0x83, 0x00, 0xc3, 0x08, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xc5, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x10, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xe5, 0x10, 0x88, 0x11, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11,
0x68, 0x09, 0x4a, 0x32, 0x8e, 0x63, 0x53, 0xb5, 0xf6, 0xbd, 0x58, 0xce, 0xb8, 0xde, 0x1b, 0xe7, 0x5b, 0xef, 0x9c, 0xf7, 0x9c, 0xff, 0x9c, 0xf7, 0xbd, 0xff, 0x9d, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7,
0x9c, 0xf7, 0x9c, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7, 0x7c, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x9d, 0xf7,
0x9d, 0xf7, 0x9b, 0xef, 0x3b, 0xef, 0xfa, 0xe6, 0x98, 0xd6, 0x16, 0xce, 0x95, 0xbd, 0x0f, 0x7c, 0x6b, 0x3a, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x11,
0x06, 0x11, 0x84, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0x88, 0x09, 0xa3, 0x08, 0xe9, 0x11, 0xa4, 0x08, 0x26, 0x09, 0xca, 0x11, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x89, 0x09, 0x83, 0x08, 0x46, 0x09, 0x83, 0x08,
0xa4, 0x08, 0x88, 0x09, 0xc5, 0x08, 0x88, 0x09, 0x47, 0x09, 0x05, 0x09, 0x88, 0x09, 0x88, 0x11, 0x47, 0x11, 0xc4, 0x08, 0x67, 0x11, 0x05, 0x11, 0x05, 0x09, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x10,
0xe4, 0x10, 0xe4, 0x10, 0x05, 0x11, 0xe4, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x06, 0x11, 0x26, 0x19, 0x25, 0x19, 0x25, 0x11, 0x25, 0x19, 0x46, 0x19, 0x46, 0x19,
0x46, 0x19, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44,
0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c,
0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09,
0x05, 0x11, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0xe5, 0x10, 0x83, 0x08, 0xe5, 0x10, 0x2b, 0x1a, 0x0b, 0x22, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a,
0x0a, 0x1a, 0xeb, 0x19, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xa9, 0x19, 0x51, 0x33,
0xd1, 0x33, 0x89, 0x19, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xea, 0x21, 0xc4, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe6, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x10,
0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x06, 0x09, 0x88, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa9, 0x11,
0xa8, 0x19, 0xa9, 0x11, 0x89, 0x11, 0x88, 0x11, 0xac, 0x42, 0xaf, 0x73, 0x53, 0xad, 0xf5, 0xc5, 0x37, 0xc6, 0x98, 0xd6, 0xd9, 0xde, 0x1a, 0xe7, 0x1b, 0xef, 0x7b, 0xf7, 0x5b, 0xef, 0x7c, 0xf7,
0x9c, 0xf7, 0x9c, 0xff, 0xbc, 0xf7, 0x9d, 0xf7, 0x9d, 0xf7, 0xbc, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x9c, 0xf7, 0x9c, 0xef, 0x7b, 0xf7, 0x7c, 0xf7, 0x5b, 0xef, 0x3b, 0xef, 0x1a, 0xe7,
0xb9, 0xde, 0x78, 0xd6, 0x17, 0xc6, 0xb5, 0xbd, 0x91, 0x94, 0xcc, 0x4a, 0x88, 0x11, 0x89, 0x09, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x19, 0x47, 0x09, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x89, 0x09, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x25, 0x09, 0xe4, 0x08, 0x87, 0x09, 0xa8, 0x11, 0xc4, 0x08, 0x04, 0x09, 0xca, 0x11, 0x26, 0x09, 0xc4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x10, 0xc4, 0x10, 0xe4, 0x08,
0x05, 0x11, 0xe4, 0x10, 0xe5, 0x10, 0xe4, 0x10, 0x04, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x19, 0x05, 0x11, 0x25, 0x11, 0x25, 0x11, 0x26, 0x19, 0x25, 0x11, 0x26, 0x11, 0x26, 0x19,
0x46, 0x19, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09,
0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0x26, 0x11, 0xa3, 0x08, 0x82, 0x00, 0x68, 0x11, 0x2b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xea, 0x19, 0xad, 0x22,
0x92, 0x33, 0x0a, 0x1a, 0xc9, 0x19, 0x0a, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0x0b, 0x1a, 0x0a, 0x1a, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0xa9, 0x19, 0x95, 0x3c, 0xdb, 0x55,
0x54, 0x3c, 0x88, 0x11, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0x0b, 0x22, 0xe4, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08,
0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xe4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x05, 0x11, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x19,
0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x11, 0x68, 0x09, 0x6b, 0x3a, 0x4d, 0x63, 0x71, 0x8c, 0x74, 0xb5, 0xd6, 0xbd, 0xf7, 0xbd, 0x37, 0xce, 0x98, 0xd6, 0xb9, 0xde,
0xda, 0xde, 0xda, 0xde, 0xfa, 0xe6, 0xfa, 0xe6, 0xfa, 0xe6, 0x1a, 0xe7, 0xfa, 0xe6, 0x1a, 0xdf, 0xfa, 0xe6, 0xd9, 0xde, 0xb9, 0xde, 0x98, 0xd6, 0x57, 0xce, 0x37, 0xce, 0xf6, 0xc5, 0xb5, 0xbd,
0x12, 0xad, 0xef, 0x73, 0x6b, 0x42, 0xa8, 0x19, 0x68, 0x01, 0x89, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x26, 0x11, 0xc5, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0x67, 0x09, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x10, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0xc5, 0x10,
0xc5, 0x08, 0xe4, 0x10, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x19, 0x05, 0x11, 0x05, 0x11, 0x25, 0x19, 0x26, 0x11, 0x25, 0x11, 0x25, 0x11,
0x26, 0x11, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c,
0x6f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x11,
0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x06, 0x11, 0x05, 0x09, 0x05, 0x09, 0xa4, 0x08, 0xc3, 0x08, 0xe9, 0x21, 0x0b, 0x1a, 0x0a, 0x1a, 0x0b, 0x1a, 0xea, 0x19, 0xee, 0x2a,
0x9a, 0x55, 0x38, 0x45, 0xae, 0x22, 0xea, 0x19, 0xca, 0x19, 0xea, 0x19, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0xea, 0x19, 0x0b, 0x1a, 0xf7, 0x44, 0x7e, 0x66, 0x7e, 0x66,
0x75, 0x44, 0x68, 0x11, 0xea, 0x11, 0xea, 0x19, 0xea, 0x19, 0x2b, 0x1a, 0x05, 0x11, 0xa4, 0x08, 0xc4, 0x08, 0x05, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x00, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09,
0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0x88, 0x11,
0xaa, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0x68, 0x09, 0x88, 0x11, 0x4a, 0x32, 0xcc, 0x4a, 0x6d, 0x63, 0x50, 0x84, 0xd2, 0x9c,
0xf2, 0x9c, 0x33, 0xa5, 0x94, 0xbd, 0xb5, 0xbd, 0xb5, 0xbd, 0xb5, 0xbd, 0x75, 0xb5, 0x54, 0xad, 0x13, 0xa5, 0xf2, 0x9c, 0xb1, 0x94, 0x51, 0x84, 0xae, 0x6b, 0xec, 0x52, 0x2a, 0x32, 0xa9, 0x11,
0x68, 0x09, 0x88, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0x26, 0x09, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x10, 0xc4, 0x08, 0xc4, 0x10, 0xc3, 0x10, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08,
0xe4, 0x08, 0xc4, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe4, 0x08, 0xe4, 0x10, 0xe4, 0x10, 0x05, 0x11, 0x04, 0x11, 0x04, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x26, 0x11, 0x25, 0x11,
0x25, 0x19, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09,
0xe5, 0x10, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x06, 0x09, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xeb, 0x19, 0x0a, 0x1a, 0xea, 0x19, 0x0a, 0x1a, 0xca, 0x11, 0x0f, 0x2b,
0x1c, 0x5e, 0x9f, 0x66, 0x1c, 0x5e, 0x34, 0x3c, 0x0a, 0x1a, 0xa9, 0x11, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xa9, 0x11, 0xcd, 0x2a, 0x79, 0x55, 0x7e, 0x5e, 0xdf, 0x66, 0x9f, 0x66,
0x94, 0x44, 0x68, 0x11, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0x2b, 0x22, 0x05, 0x11, 0xa4, 0x08, 0xe4, 0x08, 0xe6, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xe4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0x84, 0x08,
0xe5, 0x08, 0x26, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0x88, 0x09, 0x69, 0x09, 0x88, 0x11,
0xc9, 0x19, 0xc9, 0x19, 0x89, 0x11, 0xc9, 0x19, 0xe9, 0x21, 0x0a, 0x2a, 0x2a, 0x2a, 0xea, 0x21, 0xc9, 0x21, 0x89, 0x11, 0x68, 0x11, 0x68, 0x09, 0x89, 0x11, 0x89, 0x11, 0xa9, 0x11, 0xa8, 0x19,
0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xc9, 0x11, 0x88, 0x11, 0x05, 0x11, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xc4, 0x10, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0xe4, 0x10, 0xe4, 0x10, 0xe5, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0x05, 0x11, 0x04, 0x11, 0x05, 0x11, 0x05, 0x19, 0x25, 0x19, 0x05, 0x19, 0x25, 0x19,
0x26, 0x11, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0x05, 0x11, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x06, 0x09, 0x05, 0x11, 0x05, 0x09,
0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0x05, 0x09, 0x06, 0x09, 0xc5, 0x08, 0xa3, 0x08, 0x05, 0x11, 0x2b, 0x22, 0xea, 0x19, 0xea, 0x19, 0xea, 0x19, 0xca, 0x19, 0x2f, 0x2b,
0x1d, 0x5e, 0xdf, 0x66, 0x9f, 0x5e, 0x3d, 0x5e, 0x38, 0x4d, 0x0f, 0x2b, 0xe9, 0x11, 0xa9, 0x11, 0xea, 0x19, 0x89, 0x11, 0x30, 0x33, 0xba, 0x4d, 0x9f, 0x5e, 0xdf, 0x66, 0xbf, 0x66, 0x3d, 0x56,
0xd2, 0x33, 0x88, 0x11, 0xca, 0x11, 0xea, 0x19, 0xc9, 0x19, 0x0b, 0x1a, 0x05, 0x11, 0xa3, 0x00, 0xc5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x10,
0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0xe4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0x85, 0x08, 0xc3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0x05, 0x09, 0x46, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0xa8, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11,
0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0x68, 0x11, 0x06, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x10, 0xe4, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x10, 0xe4, 0x10, 0x05, 0x11, 0x05, 0x11, 0x05, 0x11, 0x04, 0x09, 0x25, 0x11, 0x06, 0x11,
0x25, 0x11, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c,
0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0x06, 0x09, 0x05, 0x11, 0xe6, 0x08, 0xe3, 0x10, 0xa4, 0x08, 0x05, 0x11, 0x2b, 0x1a, 0xea, 0x19, 0xea, 0x11, 0xea, 0x19, 0xc9, 0x11, 0xee, 0x2a,
0xfb, 0x55, 0xbf, 0x5e, 0xff, 0x66, 0xdf, 0x66, 0x9f, 0x5e, 0x1d, 0x5e, 0x34, 0x3c, 0x0a, 0x1a, 0x67, 0x11, 0x33, 0x3c, 0xfc, 0x55, 0x9f, 0x66, 0xbf, 0x66, 0x9f, 0x66, 0x3e, 0x5e, 0x75, 0x44,
0xea, 0x19, 0xa9, 0x19, 0xca, 0x19, 0xc9, 0x11, 0xca, 0x11, 0x0a, 0x1a, 0x05, 0x11, 0xa4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0x83, 0x08, 0xe5, 0x08, 0x26, 0x09, 0x68, 0x11, 0xc9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x11, 0xc8, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa8, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x11,
0x68, 0x11, 0x46, 0x11, 0xe5, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x00, 0xc3, 0x10, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xc4, 0x10, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0x05, 0x11, 0x05, 0x11, 0x66, 0x19, 0x08, 0x22, 0xaa, 0x2a, 0x6c, 0x33,
0xee, 0x3b, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x8f, 0x44, 0x90, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x06, 0x11,
0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11, 0xc4, 0x08, 0xa3, 0x00, 0x05, 0x11, 0x2b, 0x1a, 0xca, 0x19, 0xe9, 0x19, 0xe9, 0x19, 0xca, 0x19, 0x0a, 0x12,
0x13, 0x3c, 0xfc, 0x5d, 0x7f, 0x5e, 0xdf, 0x66, 0xbf, 0x66, 0xbf, 0x66, 0x3d, 0x5e, 0x9a, 0x4d, 0x9a, 0x55, 0x5d, 0x5e, 0xbf, 0x66, 0xdf, 0x66, 0xbf, 0x66, 0x1d, 0x5e, 0xd2, 0x3b, 0xa9, 0x11,
0xa9, 0x11, 0xc9, 0x11, 0xc9, 0x19, 0xc9, 0x11, 0xc9, 0x19, 0xea, 0x19, 0xe4, 0x10, 0xa3, 0x00, 0xe5, 0x10, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x06, 0x11,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0x46, 0x11, 0x68, 0x11, 0x89, 0x19, 0x88, 0x11,
0xa8, 0x11, 0xc9, 0x11, 0xca, 0x19, 0xa8, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x11, 0xc9, 0x11, 0xca, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x47, 0x11, 0x25, 0x09, 0xe5, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x10,
0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0x86, 0x19, 0x28, 0x22, 0xea, 0x2a, 0xad, 0x3b, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09,
0x05, 0x09, 0xe6, 0x10, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11, 0x05, 0x09, 0x06, 0x09, 0xc4, 0x08, 0xa3, 0x00, 0x05, 0x11, 0x0b, 0x22, 0xc9, 0x19, 0xca, 0x11, 0xca, 0x19, 0xc9, 0x11, 0xa8, 0x19,
0x89, 0x11, 0x0f, 0x33, 0x79, 0x55, 0x3d, 0x5e, 0xbf, 0x5e, 0xdf, 0x66, 0xbf, 0x66, 0xbf, 0x66, 0xbf, 0x66, 0xbf, 0x66, 0xdf, 0x66, 0x9f, 0x5e, 0xfc, 0x55, 0x2f, 0x2b, 0x67, 0x09, 0xc9, 0x19,
0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xc4, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa5, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0x84, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0x83, 0x08, 0xa3, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0x25, 0x11, 0xa7, 0x19, 0x69, 0x22, 0x0b, 0x2b, 0x8d, 0x3b, 0xee, 0x43, 0x2f, 0x44,
0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x8f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf2, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf2, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x06, 0x11, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08,
0x06, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xc5, 0x08, 0xa4, 0x08, 0x04, 0x11, 0xea, 0x19, 0xc9, 0x19, 0xc9, 0x11, 0xa9, 0x11, 0xca, 0x19, 0xa9, 0x19,
0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0x13, 0x3c, 0xfc, 0x55, 0x7e, 0x66, 0xbf, 0x66, 0xdf, 0x66, 0xdf, 0x66, 0xbf, 0x66, 0x5f, 0x5e, 0x58, 0x4d, 0x6b, 0x22, 0x67, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x19, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa3, 0x08, 0xa4, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x10, 0xc4, 0x08, 0x83, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08,
0xa3, 0x00, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08,
0x45, 0x11, 0xe8, 0x21, 0x89, 0x2a, 0x0b, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x3c, 0xee, 0x3b,
0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x3c, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe6, 0x08, 0x05, 0x11, 0xc5, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0xc9, 0x19, 0xc9, 0x19, 0xa9, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x19,
0xa9, 0x11, 0xa9, 0x19, 0x88, 0x11, 0x88, 0x11, 0xcd, 0x2a, 0x39, 0x4d, 0x3d, 0x5e, 0x9f, 0x66, 0xbf, 0x5e, 0x5e, 0x5e, 0xd6, 0x44, 0x0b, 0x1a, 0x67, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xc8, 0x11,
0xa9, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11, 0xc9, 0x19, 0x26, 0x11, 0xa2, 0x08, 0xa4, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe6, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0x05, 0x09,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0x82, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0x04, 0x09, 0x86, 0x19, 0x08, 0x22, 0xaa, 0x2a, 0x4b, 0x33, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x43, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x70, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x12, 0x4d, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xb0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xd0, 0x4c,
0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09,
0xe6, 0x10, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xa3, 0x08, 0xa3, 0x08, 0x89, 0x19, 0xc9, 0x19, 0xa9, 0x11, 0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11,
0xa9, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x11, 0x89, 0x11, 0x67, 0x19, 0x13, 0x3c, 0xba, 0x55, 0xdc, 0x5d, 0x13, 0x3c, 0xa9, 0x19, 0xa8, 0x11, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x19,
0xa8, 0x11, 0xa9, 0x19, 0xa8, 0x11, 0xa8, 0x11, 0xe9, 0x19, 0xa3, 0x08, 0xa4, 0x08, 0x04, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x00,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0x45, 0x09, 0xc7, 0x19, 0x49, 0x22,
0xea, 0x2a, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0xad, 0x3b, 0x8d, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b,
0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf2, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x4d, 0xb1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x54, 0x8f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0x05, 0x11, 0xe6, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09,
0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x06, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x11, 0xa3, 0x08, 0x83, 0x08, 0x46, 0x11, 0xc9, 0x19, 0xa9, 0x19, 0xa9, 0x11, 0xa8, 0x19, 0xa9, 0x11,
0xa8, 0x11, 0xa9, 0x11, 0xa8, 0x19, 0xa8, 0x19, 0xa8, 0x11, 0x88, 0x11, 0x88, 0x11, 0x8d, 0x22, 0xed, 0x2a, 0x68, 0x09, 0x88, 0x19, 0xa8, 0x11, 0x88, 0x19, 0x89, 0x11, 0x88, 0x11, 0xa8, 0x11,
0x89, 0x19, 0xa8, 0x11, 0x89, 0x19, 0xc9, 0x11, 0x47, 0x19, 0x83, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x10, 0xa4, 0x08, 0x83, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xe5, 0x10, 0x65, 0x19, 0xe7, 0x21, 0x69, 0x22, 0xea, 0x32, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b,
0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xee, 0x3b,
0xed, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c,
0xb0, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0x05, 0x09, 0x05, 0x09, 0xc5, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xc9, 0x19, 0xa8, 0x19, 0xa9, 0x19, 0x88, 0x11, 0x88, 0x11,
0xa9, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11, 0x89, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0xa8, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0xa9, 0x19, 0xc4, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0x84, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x00, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x25, 0x11, 0xa6, 0x19, 0x08, 0x22, 0x69, 0x2a, 0xea, 0x2a, 0x2b, 0x33,
0x4c, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33,
0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0xb1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf2, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf2, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x8f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0xd0, 0x4c, 0x11, 0x55, 0xb0, 0x4c, 0xd0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c,
0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x11,
0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x11, 0x05, 0x09, 0x83, 0x08, 0x82, 0x08, 0x47, 0x11, 0xc9, 0x19, 0x88, 0x11, 0xa8, 0x11, 0x88, 0x11,
0xa8, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0xc9, 0x19, 0x25, 0x11, 0xa3, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08,
0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xe3, 0x08, 0x46, 0x11, 0xc7, 0x19, 0x48, 0x22, 0xaa, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x2b, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xce, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0xb0, 0x44,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44,
0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0xe5, 0x08, 0xe6, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x06, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe6, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0xa8, 0x19, 0xc8, 0x19, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x19, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11,
0x88, 0x11, 0xa9, 0x19, 0x46, 0x19, 0x83, 0x00, 0xa3, 0x08, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xa4, 0x08, 0x83, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa2, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x05, 0x11, 0x85, 0x19, 0xe7, 0x19, 0x49, 0x22, 0xa9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x4b, 0x33,
0x4c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b,
0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44,
0x90, 0x44, 0xb0, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x54, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x54, 0xb0, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x11,
0xe5, 0x08, 0x05, 0x09, 0x06, 0x09, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xe6, 0x10, 0xa9, 0x19, 0xa8, 0x19, 0x88, 0x11,
0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x19, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x68, 0x11, 0x88, 0x11, 0x88, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11,
0x88, 0x19, 0x67, 0x19, 0x83, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xa4, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa4, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x00,
0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xe4, 0x08, 0x45, 0x11, 0xa7, 0x19,
0x08, 0x22, 0x68, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x2b, 0xea, 0x32, 0xea, 0x32, 0x0a, 0x2b,
0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x2b, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33,
0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x2f, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x8f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xb1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x4d,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x44, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb1, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xd0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54,
0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x06, 0x09,
0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe6, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0x82, 0x08, 0x05, 0x11, 0xa9, 0x19, 0x88, 0x19,
0x68, 0x11, 0x68, 0x11, 0x68, 0x19, 0x68, 0x11, 0x67, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x88, 0x11, 0x67, 0x11, 0x87, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x87, 0x19, 0xa9, 0x19,
0x46, 0x11, 0xa3, 0x08, 0xa3, 0x08, 0xc5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xc4, 0x08, 0xc3, 0x08, 0x83, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0x04, 0x11, 0x66, 0x11, 0xc7, 0x19, 0x28, 0x22, 0xa9, 0x2a, 0xaa, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xb0, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf2, 0x4c, 0xb1, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xd0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0xc4, 0x08, 0xa3, 0x08, 0x83, 0x00, 0xe4, 0x10, 0xa8, 0x19,
0xa8, 0x19, 0x88, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x68, 0x11, 0x68, 0x11, 0x67, 0x11, 0x87, 0x19, 0x88, 0x19, 0xa8, 0x19, 0x05, 0x11,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08,
0xc3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xe5, 0x08, 0x25, 0x11, 0x86, 0x19, 0xe7, 0x19, 0x28, 0x22, 0x89, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x2b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33,
0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xed, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0f, 0x44, 0x2f, 0x3c, 0x4f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x8f, 0x44, 0x90, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x8f, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x11,
0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x06, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0x47, 0x11, 0x88, 0x19, 0xa8, 0x19, 0x88, 0x11, 0x87, 0x19, 0x88, 0x19, 0x67, 0x11, 0x88, 0x19, 0x67, 0x11, 0x87, 0x11, 0x68, 0x11, 0x88, 0x19, 0xa9, 0x19, 0x67, 0x11, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xa4, 0x08, 0x83, 0x08, 0xc3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00,
0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xc4, 0x08, 0x04, 0x11, 0x45, 0x11, 0xa6, 0x19, 0x27, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0xa9, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0xca, 0x32, 0xca, 0x2a,
0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x8c, 0x33,
0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x3c,
0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf2, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x54, 0xd0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x54, 0xb0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09,
0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x11, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x00,
0xa3, 0x08, 0xc4, 0x08, 0x25, 0x11, 0x88, 0x19, 0x88, 0x19, 0x68, 0x19, 0x88, 0x19, 0xa8, 0x19, 0xa8, 0x19, 0xa8, 0x19, 0x67, 0x19, 0x26, 0x11, 0xa3, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xc3, 0x08, 0x83, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa2, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xe3, 0x10, 0x25, 0x11, 0x86, 0x19, 0xc7, 0x19, 0x08, 0x22, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x89, 0x2a,
0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x44, 0xd1, 0x4c,
0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x12, 0x4d, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xd1, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xc5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xc4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0x82, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xc4, 0x08, 0xc3, 0x08, 0xa3, 0x08, 0x83, 0x08, 0x83, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x04, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x08,
0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xc5, 0x08, 0xa4, 0x08, 0x83, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08,
0xa2, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xc3, 0x08, 0x04, 0x11, 0x46, 0x11,
0xa6, 0x19, 0xe7, 0x21, 0x28, 0x22, 0x69, 0x22, 0x69, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x68, 0x22, 0x68, 0x2a,
0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xaa, 0x2a, 0xa9, 0x2a,
0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x2b, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xce, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10,
0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xc4, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08,
0xa3, 0x00, 0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x00,
0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa3, 0x08,
0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xe4, 0x08, 0x25, 0x11, 0x66, 0x19, 0xa6, 0x19, 0x07, 0x22, 0x68, 0x22, 0x69, 0x22, 0x68, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a,
0x68, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x68, 0x2a, 0x69, 0x2a,
0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x22, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0xad, 0x3b,
0x8c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43,
0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x11, 0x4d, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x54, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xd0, 0x54, 0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xf0, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x08, 0x05, 0x09,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xc3, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa2, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08,
0xa3, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x08, 0xa4, 0x00, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xc4, 0x08, 0x04, 0x11, 0x46, 0x11, 0x86, 0x19, 0xe7, 0x19, 0x27, 0x22,
0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x89, 0x22, 0x68, 0x22,
0x69, 0x2a, 0x69, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33,
0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8d, 0x3b, 0x6c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x3c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x44, 0xb1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c,
0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x04, 0x09, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0x04, 0x09, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0x04, 0x09, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xc4, 0x08, 0x83, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x00, 0xa4, 0x08,
0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xe4, 0x08, 0x24, 0x11, 0x66, 0x19, 0xc6, 0x19, 0xe7, 0x21, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22,
0x68, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x49, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22,
0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x50, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x8f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x8f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0xd0, 0x54, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x11, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0x04, 0x09, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe4, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xc4, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08,
0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa4, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xa3, 0x08, 0xc3, 0x08, 0x05, 0x11, 0x45, 0x11, 0x86, 0x19, 0xc6, 0x19, 0x07, 0x22, 0x48, 0x22, 0x89, 0x2a, 0x68, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x69, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x69, 0x2a,
0x69, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x2b, 0xea, 0x2a,
0xea, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33,
0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b,
0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x12, 0x4d, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0xf1, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0xd0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0xd0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0x05, 0x09, 0xe5, 0x10,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10,
0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xc4, 0x08, 0xa3, 0x08, 0x83, 0x08, 0xa3, 0x08, 0xa3, 0x00, 0xa4, 0x08, 0xe4, 0x08, 0x25, 0x11,
0x65, 0x11, 0xa7, 0x19, 0x07, 0x1a, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22,
0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x69, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x89, 0x2a,
0x69, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x2b, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd0, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0xb1, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0xd0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c,
0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0x05, 0x09, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10,
0xe5, 0x08, 0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08,
0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe4, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0x25, 0x11, 0x66, 0x19, 0xa6, 0x19, 0xc7, 0x19, 0x07, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x22, 0x68, 0x22, 0x48, 0x22,
0x48, 0x2a, 0x68, 0x2a, 0x69, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x69, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a,
0xca, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xce, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c,
0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x54, 0x11, 0x55, 0xd0, 0x54, 0xb0, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xb0, 0x54, 0xb0, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe5, 0x08,
0xe4, 0x08, 0x05, 0x09, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0x05, 0x11, 0x46, 0x11, 0x87, 0x11, 0xc7, 0x19, 0x07, 0x1a,
0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x69, 0x2a, 0x68, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x69, 0x22, 0x68, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x69, 0x2a,
0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x2b,
0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b,
0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xce, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2f, 0x44, 0x0e, 0x3c, 0xee, 0x43,
0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x8f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0xb0, 0x4c, 0xb1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0x11, 0x55, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x10, 0x26, 0x11, 0x66, 0x19, 0xa6, 0x19, 0xe7, 0x19, 0x28, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x48, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a,
0x69, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x4c,
0xb1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb1, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c,
0x4f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0xe5, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08,
0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0x05, 0x09, 0x46, 0x11, 0x86, 0x19, 0xa7, 0x19, 0x07, 0x22, 0x28, 0x22, 0x68, 0x2a, 0x68, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x2a, 0x69, 0x2a, 0x68, 0x22,
0x68, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x88, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b,
0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x8f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x8f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x8f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x6f, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0xb0, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x54, 0xf1, 0x54, 0xd0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08,
0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0x25, 0x11,
0x66, 0x11, 0xa7, 0x19, 0xe7, 0x21, 0x08, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x22,
0x48, 0x22, 0x28, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x28, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x28, 0x2a, 0x48, 0x22,
0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22,
0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0x69, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0x0b, 0x33, 0x0a, 0x2b, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x2f, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0x90, 0x44,
0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x8f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c,
0x70, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c,
0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x54, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xd0, 0x54, 0x11, 0x55, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x10, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x10, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08,
0xe5, 0x08, 0xe4, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe4, 0x10, 0x25, 0x09, 0x46, 0x19, 0x86, 0x11, 0xc7, 0x21, 0xe7, 0x21, 0x28, 0x22, 0x69, 0x22, 0x68, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22,
0x68, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a,
0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x68, 0x2a,
0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x2b, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x2b, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33,
0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c,
0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c,
0x6f, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0xe5, 0x08, 0xe4, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0xe5, 0x08, 0x05, 0x09, 0x26, 0x11, 0x66, 0x19, 0xa7, 0x19, 0xc7, 0x19,
0x07, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a,
0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x69, 0x2a, 0x68, 0x22, 0x69, 0x22,
0x69, 0x2a, 0x68, 0x22, 0x69, 0x22, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x22, 0x69, 0x22, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xaa, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b,
0xee, 0x3b, 0xcd, 0x3b, 0xce, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2e, 0x3c, 0x2e, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x8f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0x8f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x8f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x8f, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x8f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x8f, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x8f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd0, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xa7, 0x19, 0x08, 0x22, 0x8a, 0x2a, 0xea, 0x2a, 0x4b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xc9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x68, 0x2a,
0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x48, 0x2a, 0x28, 0x22, 0x48, 0x2a, 0x48, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x2a, 0x28, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a,
0x68, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x28, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22,
0x48, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x2a,
0x0a, 0x2b, 0x2b, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8d, 0x3b, 0x8c, 0x33, 0x8c, 0x33,
0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x4c,
0x90, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0x90, 0x4c, 0xb1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x4c, 0x8f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xd0, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xaf, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xac, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0xea, 0x32, 0xea, 0x32, 0xca, 0x32, 0xa9, 0x2a, 0x88, 0x2a, 0x88, 0x2a,
0x68, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x48, 0x22,
0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x47, 0x22, 0x48, 0x2a,
0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a,
0x68, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x69, 0x2a, 0x69, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x2b, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33,
0x4c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x70, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x8f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x0a, 0x33, 0xea, 0x32, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x68, 0x22,
0x69, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x27, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22,
0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x28, 0x22, 0x48, 0x22, 0x28, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22,
0x28, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x68, 0x22, 0x69, 0x2a, 0x68, 0x22,
0x89, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x22, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x0b, 0x2b, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x2b, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4c, 0x33,
0x4b, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xce, 0x3b,
0xee, 0x43, 0xee, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x8f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x4c,
0x90, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x11, 0x55, 0xd0, 0x54, 0x90, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xd0, 0x54, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c,
0x6f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0x2e, 0x44, 0xed, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x0a, 0x33, 0xc9, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x69, 0x22,
0x89, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x47, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x27, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x47, 0x22,
0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0x0a, 0x2b, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a,
0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b,
0x8d, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x4f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x8f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0x90, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0xac, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0xea, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22,
0x48, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x2a,
0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x69, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a,
0xca, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0x0a, 0x2b, 0xea, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x2b, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x6c, 0x33, 0x6c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0xce, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c,
0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c,
0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0xee, 0x43, 0xed, 0x3b, 0x8c, 0x3b, 0x4c, 0x33, 0x2b, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x68, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x28, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a,
0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x22, 0x68, 0x2a, 0x48, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x22, 0x68, 0x2a, 0x69, 0x22,
0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0x0a, 0x33, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33,
0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0xac, 0x3b, 0x8d, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x3c,
0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44,
0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xd0, 0x54, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x8f, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x0b, 0x33, 0xea, 0x32, 0xea, 0x32, 0xa9, 0x2a, 0x89, 0x2a,
0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x27, 0x22, 0x48, 0x2a, 0x48, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x68, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x0a, 0x33,
0xea, 0x32, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x4c, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b,
0xad, 0x3b, 0x8d, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x3c, 0xee, 0x3b, 0xee, 0x3b,
0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x90, 0x44, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xd0, 0x4c, 0x90, 0x44,
0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x0e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0x4b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0xa9, 0x2a, 0xa9, 0x2a,
0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x68, 0x2a, 0x89, 0x2a, 0x68, 0x22,
0x69, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a,
0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0xea, 0x2a, 0x0b, 0x33, 0x0a, 0x33, 0xea, 0x32, 0x0b, 0x33, 0x0a, 0x2b, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x6c, 0x33, 0x6c, 0x3b, 0x6c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b,
0xcd, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0xee, 0x43, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x70, 0x4c,
0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x4c,
0x70, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x70, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x70, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c,
0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0xea, 0x32, 0xca, 0x2a, 0xa9, 0x2a, 0x89, 0x2a,
0x89, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x48, 0x22, 0x48, 0x2a, 0x48, 0x22, 0x68, 0x2a, 0x68, 0x22, 0x48, 0x22, 0x68, 0x22, 0x48, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x69, 0x2a, 0x68, 0x22, 0x68, 0x22,
0x69, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0x88, 0x22, 0x89, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xca, 0x2a,
0xc9, 0x2a, 0xca, 0x32, 0xea, 0x32, 0xea, 0x2a, 0x0a, 0x33, 0x0b, 0x33, 0xea, 0x2a, 0x0b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4c, 0x33, 0x4c, 0x33,
0x6c, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x8c, 0x33, 0x8c, 0x3b, 0x8d, 0x33, 0xad, 0x3b, 0x8d, 0x3b, 0x8c, 0x33, 0xad, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b,
0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0xed, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x8f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0xcd, 0x43, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x6b, 0x3b, 0x0b, 0x33, 0xca, 0x2a, 0xc9, 0x2a, 0xc9, 0x2a,
0xaa, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x68, 0x22, 0x69, 0x2a, 0x69, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x68, 0x2a, 0x68, 0x2a, 0x69, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xc9, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x2b, 0x33,
0x0a, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0xac, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xed, 0x3b,
0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x70, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c,
0xd0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xac, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x0a, 0x33, 0xea, 0x32, 0xea, 0x32,
0xa9, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xa9, 0x2a,
0xc9, 0x2a, 0xea, 0x32, 0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0xea, 0x32, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4c, 0x33, 0x4b, 0x33, 0x4b, 0x33,
0x4c, 0x33, 0x4c, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x8c, 0x33, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x43,
0xed, 0x3b, 0xed, 0x3b, 0xee, 0x3b, 0xce, 0x3b, 0xee, 0x43, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c,
0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x70, 0x44,
0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c,
0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c,
0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0xee, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x2b, 0x33, 0x2b, 0x33, 0xea, 0x32, 0xc9, 0x2a,
0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0x89, 0x2a, 0x89, 0x2a, 0xa9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xaa, 0x2a, 0xca, 0x2a, 0xca, 0x2a, 0xea, 0x32,
0xea, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x6b, 0x33, 0x6b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x6c, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x8c, 0x3b, 0x8d, 0x3b, 0x8d, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0xed, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x8f, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x8f, 0x4c,
0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x4f, 0x4c, 0x6f, 0x44, 0x8f, 0x4c, 0x2e, 0x44, 0xed, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0x2b, 0x33, 0x0a, 0x33,
0xca, 0x2a, 0xca, 0x2a, 0xea, 0x2a, 0xea, 0x32, 0xca, 0x2a, 0xc9, 0x2a, 0xa9, 0x2a, 0xca, 0x2a, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x32, 0xea, 0x2a, 0xea, 0x32, 0x0a, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x8c, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6b, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0xad, 0x3b,
0xcd, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x3c, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0x90, 0x44, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xf1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0xf1, 0x54, 0x8f, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0x6c, 0x33, 0x2b, 0x33, 0x4b, 0x33,
0xea, 0x32, 0xea, 0x32, 0x2b, 0x33, 0xea, 0x32, 0xea, 0x32, 0x0b, 0x33, 0xea, 0x32, 0xea, 0x32, 0x4b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x4b, 0x33,
0x4c, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b,
0x0e, 0x44, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c,
0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44,
0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x90, 0x4c,
0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x44, 0xb0, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c,
0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x8f, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x43, 0xee, 0x43, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x4b, 0x3b, 0x4b, 0x33,
0x4b, 0x33, 0x2b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x0a, 0x33, 0x0b, 0x33, 0x4b, 0x33, 0x2b, 0x33, 0x0b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x4c, 0x33, 0x4b, 0x33, 0x6c, 0x33,
0x8c, 0x3b, 0x8c, 0x3b, 0xad, 0x3b, 0x8d, 0x3b, 0x8c, 0x33, 0x8c, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xee, 0x43,
0xcd, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x8f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0xf1, 0x54, 0xb0, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x8f, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c,
0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xad, 0x3b, 0x8c, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0x6c, 0x3b, 0x4b, 0x33, 0x2b, 0x33, 0x4b, 0x33, 0x6c, 0x33, 0x8c, 0x3b, 0x8c, 0x3b, 0x6c, 0x33, 0x4b, 0x33, 0x6c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0x8c, 0x3b,
0xad, 0x3b, 0xcd, 0x3b, 0x0e, 0x44, 0xed, 0x3b, 0xcd, 0x3b, 0xcd, 0x3b, 0xed, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x8f, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0x8f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x8f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb1, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x8f, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x8f, 0x4c,
0xb0, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0xed, 0x43, 0xad, 0x3b, 0xcd, 0x3b, 0xed, 0x3b,
0xad, 0x3b, 0x8c, 0x3b, 0xac, 0x3b, 0x6c, 0x3b, 0x8c, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b, 0xcd, 0x3b, 0xee, 0x43, 0xcd, 0x3b,
0xee, 0x3b, 0x2e, 0x44, 0x0e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x8f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x70, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44,
0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44,
0x90, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xf1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c,
0xb0, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x6f, 0x44,
0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c,
0x6f, 0x44, 0x8f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4e, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0xed, 0x43, 0xed, 0x3b, 0x0e, 0x44, 0xcd, 0x3b, 0x8c, 0x3b,
0x8c, 0x3b, 0xad, 0x3b, 0xac, 0x3b, 0xcd, 0x3b, 0xad, 0x3b, 0x8c, 0x3b, 0x8d, 0x3b, 0xad, 0x3b, 0xad, 0x3b, 0xed, 0x43, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x3b, 0xee, 0x43, 0xee, 0x3b, 0x2e, 0x44,
0xee, 0x43, 0xcd, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c,
0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x90, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0xf0, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x4c,
0x90, 0x4c, 0xf0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x2f, 0x44, 0xee, 0x43, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xed, 0x43,
0xad, 0x3b, 0xcd, 0x3b, 0xee, 0x3b, 0x2e, 0x44, 0xee, 0x43, 0xcd, 0x3b, 0xad, 0x3b, 0xed, 0x43, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0xcd, 0x3b, 0x0e, 0x44, 0x4e, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2f, 0x44, 0x8f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c,
0x8f, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xf0, 0x54, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xf1, 0x54, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xd0, 0x54, 0x90, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xd1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0xee, 0x43, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44,
0xd0, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x70, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c,
0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c,
0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x4c, 0xb0, 0x4c,
0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44,
0x6f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xaf, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2e, 0x44, 0x0e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x8f, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0xf1, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0xd1, 0x54, 0xb0, 0x4c,
0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x4f, 0x44, 0x4f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c,
0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c,
0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x8f, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x4c,
0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0xb0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb1, 0x4c, 0x90, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xd0, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44,
0x8f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xf0, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xd1, 0x4c, 0x8f, 0x4c, 0x8f, 0x4c,
0x90, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0xd1, 0x54, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44,
0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44,
0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c,
0x90, 0x44, 0x70, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x70, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x90, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x90, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0xd1, 0x4c, 0x90, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x6f, 0x44, 0x8f, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x8f, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44,
0x2e, 0x44, 0x4e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c,
0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x8f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x4f, 0x4c, 0x8f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x4e, 0x44, 0x4f, 0x4c,
0x6f, 0x4c, 0xd0, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c,
0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x4c, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x70, 0x44, 0x90, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x44, 0xb1, 0x4c, 0x8f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c,
0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c,
0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x8f, 0x4c, 0xd0, 0x54, 0x8f, 0x4c, 0x6f, 0x4c, 0x90, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x8f, 0x4c,
0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x4f, 0x44,
0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x4c,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd0, 0x4c, 0x6f, 0x44,
0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xd0, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x90, 0x44, 0xd1, 0x4c, 0x6f, 0x44,
0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x70, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44,
0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xd0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x4c, 0x2e, 0x44, 0x4e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44,
0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x4f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x0f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x4e, 0x4c, 0x6f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x4c, 0x6f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x4e, 0x44, 0x6f, 0x4c, 0xd0, 0x54, 0x8f, 0x4c,
0x4f, 0x4c, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x4c,
0xd0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x2e, 0x44, 0xee, 0x43, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0xee, 0x3b,
0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44,
0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c,
0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44,
0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44,
0x2e, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44,
0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44,
0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44,
0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x70, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0xd0, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44,
0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xd0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44,
0x8f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x4c, 0xb0, 0x4c,
0x6f, 0x44, 0x6f, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x4c, 0x4f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x90, 0x4c,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x4f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x50, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x6f, 0x44, 0x70, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x70, 0x4c, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x6f, 0x44,
0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xd1, 0x4c,
0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x70, 0x4c, 0xd1, 0x4c, 0x6f, 0x44, 0x70, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x70, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x70, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44,
0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x6f, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c,
0x70, 0x44, 0x70, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x90, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x6f, 0x44, 0x70, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4e, 0x44, 0x4e, 0x44, 0x6f, 0x4c, 0x4e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44,
0x2e, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x2e, 0x44, 0x0e, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44,
0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b,
0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0xee, 0x43, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0xee, 0x43, 0x0e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x3c, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44,
0x2e, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c,
0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c,
0x2e, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44,
0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x2f, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x2f, 0x44, 0x2e, 0x44, 0x70, 0x44,
0x6f, 0x4c, 0x4e, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x4c, 0xb0, 0x54, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x2e, 0x44,
0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x4c, 0xb0, 0x4c, 0x6f, 0x4c, 0x2f, 0x44,
0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x4c, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x43, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x44,
0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0xee, 0x3b, 0x2e, 0x3c, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x0e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44,
0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0xee, 0x3b, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x44, 0x0e, 0x3c, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44,
0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x2f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x0e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2f, 0x44,
0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x4c,
0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2e, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x2f, 0x44,
0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0x90, 0x44, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x3c, 0x2f, 0x44, 0x4f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x4f, 0x44, 0x0e, 0x3c, 0x2f, 0x44,
0x6f, 0x44, 0xb0, 0x4c, 0x6f, 0x44, 0x2f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0x90, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2e, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x44, 0x4f, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x4f, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c,
0x70, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd1, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44,
0x6f, 0x44, 0xb1, 0x4c, 0x70, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb1, 0x4c, 0x90, 0x4c, 0x4f, 0x44,
0x0e, 0x44, 0x4f, 0x44, 0x6f, 0x44, 0xd0, 0x4c, 0x90, 0x44, 0x4f, 0x44, 0x0e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xb0, 0x4c, 0x70, 0x44, 0x4f, 0x44, 0x2e, 0x44, 0x2f, 0x44, 0x6f, 0x44, 0xd0, 0x4c
};
| [
"jwyeyo@naver.com"
] | jwyeyo@naver.com |
b29092fa343467d184e21c862051cecbcfdde3fa | 100b5761aced873e719fe3a228e9849fee4c43bf | /public/mpmc_queue.hpp | f910d9d7470db0ca09d31611ade339a00caf7565 | [
"Apache-2.0"
] | permissive | tonyhawkwen/smart | ff35e08cef3ba6480d3967cfbf76d775508eda59 | b760b21fa6bb3ab08623339ec5c8955ba9aa1dcb | refs/heads/master | 2021-01-21T04:47:57.523534 | 2016-07-15T05:54:20 | 2016-07-15T05:54:20 | 54,179,003 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,094 | hpp | #ifndef PUBLIC_MPMC_QUEUE_H
#define PUBLIC_MPMC_QUEUE_H
#include <atomic>
#include <cassert>
template <typename T>
class MPMCQueue {
public:
/**
* @brief default construtor
*/
MPMCQueue() : _size(DEFAULT_RING_BUFFER_SIZE),
_ring_buffer(static_cast<T*>(std::malloc(sizeof(T) * DEFAULT_RING_BUFFER_SIZE))),
_read_index(0),
_write_index(0),
_read_commit_index(0),
_write_commit_index(0) {
}
/**
* @brief construtor with specific size
*/
explicit MPMCQueue(std::size_t size) :
_size(size + 1),
_ring_buffer(static_cast<T*>(std::malloc(sizeof(T) * _size))),
_read_index(0),
_write_index(0),
_read_commit_index(0),
_write_commit_index(0) {
assert(_size > 1);
}
/**
* @brief copy constructor, which is deleted
*/
MPMCQueue(const MPMCQueue<T>& rhs) = delete;
/**
* @brief move constructor, which is not thread-safe
*/
MPMCQueue(MPMCQueue<T> && rhs) :
_size(rhs._size),
_ring_buffer(rhs._ring_buffer),
_read_index(rhs._read_index.load(std::memory_order_relaxed)),
_write_index(rhs._write_index.load(std::memory_order_relaxed)),
_read_commit_index(rhs._read_commit_index.load(std::memory_order_relaxed)),
_write_commit_index(rhs._write_commit_index.load(std::memory_order_relaxed)) {
rhs._size = 0;
rhs._ring_buffer = nullptr;
rhs._read_index.store(0, std::memory_order_relaxed);
rhs._write_index.store(0, std::memory_order_relaxed);
rhs._read_commit_index.store(0, std::memory_order_relaxed);
rhs._write_commit_index.store(0, std::memory_order_relaxed);
}
/**
* @brief assign operation, which is deleted
*/
MPMCQueue<T>& operator=(const MPMCQueue<T>& rhs) = delete;
/**
* @brief move assign operation, which is not thread-safe
*/
MPMCQueue<T>& operator=(MPMCQueue<T> && rhs) {
if (this == &rhs) {
return *this;
}
~MPMCQueue();
_size = rhs._size;
_ring_buffer = rhs._ring_buffer;
_read_index = rhs._read_index.load(std::memory_order_relaxed);
_write_index = rhs._write_index.load(std::memory_order_relaxed);
_read_commit_index = rhs._read_commit_index.load(std::memory_order_relaxed);
_write_commit_index = rhs._write_commit_index.load(std::memory_order_relaxed);
rhs._size = 0;
rhs._ring_buffer = nullptr;
rhs._read_index.store(0, std::memory_order_relaxed);
rhs._write_index.store(0, std::memory_order_relaxed);
rhs._read_commit_index.store(0, std::memory_order_relaxed);
rhs._write_commit_index.store(0, std::memory_order_relaxed);
return *this;
}
/**
* @brief destrutor, which is not thread safe
*/
~MPMCQueue() {
if (!std::is_trivially_destructible<T>::value) {
auto read = _read_index.load(std::memory_order_acquire);
auto end = _write_index.load(std::memory_order_acquire);
while (read != end) {
_ring_buffer[read].~T();
if (++read == _size) {
read = 0;
}
}
}
std::free(_ring_buffer);
}
/**
* @brief pop a data from queue, for multiple cosumer
* @param[out] data: data with type T, move from the poped data if pop success
@data's memory should be allocated before calling this method
* @return true: pop success
false: queue is empty
*/
bool pop(T* data) {
if (nullptr == data) {
return false;
}
auto cur_read = _read_index.load(std::memory_order_relaxed);
auto next_read = cur_read;
do {
if (cur_read ==
_write_commit_index.load(std::memory_order_acquire)) {
//queue is empty
return false;
}
next_read = cur_read + 1;
if (next_read == _size) {
next_read = 0;
}
} while (!_read_index.compare_exchange_weak(
cur_read, next_read, std::memory_order_relaxed));
*data = std::move(_ring_buffer[cur_read]);
_ring_buffer[cur_read].~T();
auto cur_commit = cur_read;
auto next_commit = cur_read;
do {
cur_commit = cur_read;
next_commit = cur_read + 1;
if (next_commit == _size) {
next_commit = 0;
}
} while (!_read_commit_index.compare_exchange_weak(
cur_commit, next_commit, std::memory_order_acq_rel));
return true;
}
/**
* @brief pop a data from queue, for single cosumer
* @param[out] data: data with type T, move from the poped data if pop success
@data's memory should be allocated before calling this method
* @return true: pop success
false: queue is empty
*/
bool sc_pop(T* data) {
if (nullptr == data) {
return false;
}
auto cur_read = _read_index.load(std::memory_order_relaxed);
if (cur_read ==
_write_commit_index.load(std::memory_order_acquire)) {
//queue is empty
return false;
}
auto next_read = cur_read + 1;
if (next_read == _size) {
next_read = 0;
}
_read_index.store(next_read, std::memory_order_relaxed);
*data = std::move(_ring_buffer[cur_read]);
_ring_buffer[cur_read].~T();
_read_commit_index.store(next_read, std::memory_order_release);
return true;
}
/**
* @brief push the data to queue, for multiple producer
* @param[in] args: arguments which are same with onesthat constructors of type T to be pushed
* @return true: push success
false: queue is full
*/
template<class ...Args>
bool push(Args && ... recordArgs) {
auto cur_write = _write_index.load(std::memory_order_relaxed);
auto next_write = cur_write;
// try to get next write index, compare current write index,
// if it is same with before then update m_WriteIndex to next index.
do {
next_write = cur_write + 1;
if (next_write == _size) {
next_write = 0;
}
if (next_write == _read_commit_index.load(std::memory_order_acquire)) {
// queue is full
return false;
}
} while (!_write_index.compare_exchange_weak(
cur_write, next_write, std::memory_order_relaxed));
// update current write index's data
new(&_ring_buffer[cur_write]) T(std::forward<Args>(recordArgs)...);
auto cur_commit = cur_write;
auto next_commit = cur_write;
do {
cur_commit = cur_write;
next_commit = cur_write + 1;
if (next_commit == _size) {
next_commit = 0;
}
} while (!_write_commit_index.compare_exchange_weak(
cur_commit, next_commit, std::memory_order_acq_rel));
return true;
}
/**
* @brief push the data to queue, for single producer
* @param[in] args: arguments which are same with onesthat constructors of type T to be pushed
* @return true: push success
false: queue is full
*/
template<class ...Args>
bool sp_push(Args && ... recordArgs) {
auto cur_write = _write_index.load(std::memory_order_relaxed);
auto next_write = cur_write + 1;
if (next_write == _size) {
next_write = 0;
}
if (next_write == _read_commit_index.load(std::memory_order_acquire)) {
// queue is full
return false;
}
_write_index.store(next_write, std::memory_order_relaxed);
// update current write index's data
new(&_ring_buffer[cur_write]) T(std::forward<Args>(recordArgs)...);
_write_commit_index.store(next_write, std::memory_order_release);
return true;
}
/**
* @brief check if queue is empty
* @return true: queue is empty
false: queue is not empty
*/
bool empty() const {
auto cur_read = _read_index.load(std::memory_order_relaxed);
if (cur_read == _write_commit_index.load(std::memory_order_acquire)) {
// queue is empty
return true;
}
return false;
}
/**
* @brief check if queue is full
* @return true: queue is full
false: queue is not full
*/
bool full() const {
auto next_write = _write_index.load(std::memory_order_relaxed) + 1;
if (next_write == _size) {
next_write = 0;
}
if (next_write == _read_commit_index.load(std::memory_order_acquire)) {
return true;
}
return false;
}
private:
static constexpr auto CACHELINE_BYTES = 64;
// default ring buffer size 1024, plus one split size
static constexpr auto DEFAULT_RING_BUFFER_SIZE = 1025;
static constexpr auto PADDING_SIZE =
CACHELINE_BYTES - sizeof(std::atomic<std::size_t>);
// total size of ring buffer
std::size_t _size;
// ring buffer
T* _ring_buffer;
// current available read index, which always changed
alignas(CACHELINE_BYTES) std::atomic<std::size_t> _read_index;
// current available write index, which always changed
alignas(CACHELINE_BYTES) std::atomic<std::size_t> _write_index;
// current committed read index, which always changed
alignas(CACHELINE_BYTES) std::atomic<std::size_t> _read_commit_index;
// current committed write index, which always changed
alignas(CACHELINE_BYTES) std::atomic<std::size_t> _write_commit_index;
// fill out the last cache line at the end of struct
char _padding[PADDING_SIZE];
};
#endif //PUBLIC_MPMC_QUEUE_H
| [
"tonyhawkwen@163.com"
] | tonyhawkwen@163.com |
fe6f7e333895b8b40be3d3810c856d62e22383cb | 335cfa67db61a7b4a050b6d9581df80f7a0a685a | /src/net.cpp | e60735317386ebffb4484b3d5d3dde5c1fdbc41f | [
"MIT"
] | permissive | nashanas/GeaouCoin | 038ffea3cfc1fb29528a5274bc0d492bf6e4d932 | 0d5404b63ff0040c82a2ecc02601f3c7be988519 | refs/heads/master | 2021-04-03T05:11:55.520928 | 2018-03-13T17:13:39 | 2018-03-13T17:13:39 | 123,842,227 | 0 | 0 | MIT | 2018-03-05T00:19:24 | 2018-03-05T00:19:24 | null | UTF-8 | C++ | false | false | 66,321 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "db.h"
#include "net.h"
#include "main.h"
#include "addrman.h"
#include "chainparams.h"
#include "core.h"
#include "ui_interface.h"
#include "darksend.h"
#include "wallet.h"
#ifdef WIN32
#include <string.h>
#else
#include <fcntl.h>
#endif
#ifdef USE_UPNP
#include <miniupnpc/miniupnpc.h>
#include <miniupnpc/miniwget.h>
#include <miniupnpc/upnpcommands.h>
#include <miniupnpc/upnperrors.h>
#endif
#include <boost/filesystem.hpp>
// Dump addresses to peers.dat every 15 minutes (900s)
#define DUMP_ADDRESSES_INTERVAL 900
#if !defined(HAVE_MSG_NOSIGNAL) && !defined(MSG_NOSIGNAL)
#define MSG_NOSIGNAL 0
#endif
using namespace std;
using namespace boost;
static const int MAX_OUTBOUND_CONNECTIONS = 12;
bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOutbound = NULL, const char *strDest = NULL, bool fOneShot = false);
//
// Global state variables
//
bool fDiscover = true;
uint64_t nLocalServices = NODE_NETWORK;
CCriticalSection cs_mapLocalHost;
map<CNetAddr, LocalServiceInfo> mapLocalHost;
static bool vfReachable[NET_MAX] = {};
static bool vfLimited[NET_MAX] = {};
static CNode* pnodeLocalHost = NULL;
static CNode* pnodeSync = NULL;
uint64_t nLocalHostNonce = 0;
static std::vector<SOCKET> vhListenSocket;
CAddrMan addrman;
std::string strSubVersion;
int nMaxConnections = GetArg("-maxconnections", 125);
vector<CNode*> vNodes;
CCriticalSection cs_vNodes;
map<CInv, CDataStream> mapRelay;
deque<pair<int64_t, CInv> > vRelayExpiration;
CCriticalSection cs_mapRelay;
limitedmap<CInv, int64_t> mapAlreadyAskedFor(MAX_INV_SZ);
static deque<string> vOneShots;
CCriticalSection cs_vOneShots;
set<CNetAddr> setservAddNodeAddresses;
CCriticalSection cs_setservAddNodeAddresses;
vector<std::string> vAddedNodes;
CCriticalSection cs_vAddedNodes;
NodeId nLastNodeId = 0;
CCriticalSection cs_nLastNodeId;
static CSemaphore *semOutbound = NULL;
// Signals for message handling
static CNodeSignals g_signals;
CNodeSignals& GetNodeSignals() { return g_signals; }
void AddOneShot(string strDest)
{
LOCK(cs_vOneShots);
vOneShots.push_back(strDest);
}
unsigned short GetListenPort()
{
return (unsigned short)(GetArg("-port", Params().GetDefaultPort()));
}
// find 'best' local address for a particular peer
bool GetLocal(CService& addr, const CNetAddr *paddrPeer)
{
if (fNoListen)
return false;
int nBestScore = -1;
int nBestReachability = -1;
{
LOCK(cs_mapLocalHost);
for (map<CNetAddr, LocalServiceInfo>::iterator it = mapLocalHost.begin(); it != mapLocalHost.end(); it++)
{
int nScore = (*it).second.nScore;
int nReachability = (*it).first.GetReachabilityFrom(paddrPeer);
if (nReachability > nBestReachability || (nReachability == nBestReachability && nScore > nBestScore))
{
addr = CService((*it).first, (*it).second.nPort);
nBestReachability = nReachability;
nBestScore = nScore;
}
}
}
return nBestScore >= 0;
}
// get best local address for a particular peer as a CAddress
CAddress GetLocalAddress(const CNetAddr *paddrPeer)
{
CAddress ret(CService("0.0.0.0",0),0);
CService addr;
if (GetLocal(addr, paddrPeer))
{
ret = CAddress(addr);
ret.nServices = nLocalServices;
ret.nTime = GetAdjustedTime();
}
return ret;
}
bool RecvLine(SOCKET hSocket, string& strLine)
{
strLine = "";
while (true)
{
char c;
int nBytes = recv(hSocket, &c, 1, 0);
if (nBytes > 0)
{
if (c == '\n')
continue;
if (c == '\r')
return true;
strLine += c;
if (strLine.size() >= 9000)
return true;
}
else if (nBytes <= 0)
{
boost::this_thread::interruption_point();
if (nBytes < 0)
{
int nErr = WSAGetLastError();
if (nErr == WSAEMSGSIZE)
continue;
if (nErr == WSAEWOULDBLOCK || nErr == WSAEINTR || nErr == WSAEINPROGRESS)
{
MilliSleep(10);
continue;
}
}
if (!strLine.empty())
return true;
if (nBytes == 0)
{
// socket closed
LogPrint("net", "socket closed\n");
return false;
}
else
{
// socket error
int nErr = WSAGetLastError();
LogPrint("net", "recv failed: %s\n", nErr);
return false;
}
}
}
}
int GetnScore(const CService& addr)
{
LOCK(cs_mapLocalHost);
if (mapLocalHost.count(addr) == LOCAL_NONE)
return 0;
return mapLocalHost[addr].nScore;
}
// Is our peer's addrLocal potentially useful as an external IP source?
bool IsPeerAddrLocalGood(CNode *pnode)
{
return fDiscover && pnode->addr.IsRoutable() && pnode->addrLocal.IsRoutable() &&
!IsLimited(pnode->addrLocal.GetNetwork());
}
// used when scores of local addresses may have changed
// pushes better local address to peers
void static AdvertizeLocal()
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
{
if (pnode->fSuccessfullyConnected)
{
CAddress addrLocal = GetLocalAddress(&pnode->addr);
if (addrLocal.IsRoutable() && (CService)addrLocal != (CService)pnode->addrLocal)
{
pnode->PushAddress(addrLocal);
pnode->addrLocal = addrLocal;
}
}
}
}
void SetReachable(enum Network net, bool fFlag)
{
LOCK(cs_mapLocalHost);
vfReachable[net] = fFlag;
if (net == NET_IPV6 && fFlag)
vfReachable[NET_IPV4] = true;
}
// learn a new local address
bool AddLocal(const CService& addr, int nScore)
{
if (!addr.IsRoutable())
return false;
if (!fDiscover && nScore < LOCAL_MANUAL)
return false;
if (IsLimited(addr))
return false;
LogPrintf("AddLocal(%s,%i)\n", addr.ToString(), nScore);
{
LOCK(cs_mapLocalHost);
bool fAlready = mapLocalHost.count(addr) > 0;
LocalServiceInfo &info = mapLocalHost[addr];
if (!fAlready || nScore >= info.nScore) {
info.nScore = nScore + (fAlready ? 1 : 0);
info.nPort = addr.GetPort();
}
SetReachable(addr.GetNetwork());
}
AdvertizeLocal();
return true;
}
bool AddLocal(const CNetAddr &addr, int nScore)
{
return AddLocal(CService(addr, GetListenPort()), nScore);
}
/** Make a particular network entirely off-limits (no automatic connects to it) */
void SetLimited(enum Network net, bool fLimited)
{
if (net == NET_UNROUTABLE)
return;
LOCK(cs_mapLocalHost);
vfLimited[net] = fLimited;
}
bool IsLimited(enum Network net)
{
LOCK(cs_mapLocalHost);
return vfLimited[net];
}
bool IsLimited(const CNetAddr &addr)
{
return IsLimited(addr.GetNetwork());
}
/** vote for a local address */
bool SeenLocal(const CService& addr)
{
{
LOCK(cs_mapLocalHost);
if (mapLocalHost.count(addr) == 0)
return false;
mapLocalHost[addr].nScore++;
}
AdvertizeLocal();
return true;
}
/** check whether a given address is potentially local */
bool IsLocal(const CService& addr)
{
LOCK(cs_mapLocalHost);
return mapLocalHost.count(addr) > 0;
}
/** check whether a given address is in a network we can probably connect to */
bool IsReachable(const CNetAddr& addr)
{
LOCK(cs_mapLocalHost);
enum Network net = addr.GetNetwork();
return vfReachable[net] && !vfLimited[net];
}
void AddressCurrentlyConnected(const CService& addr)
{
addrman.Connected(addr);
}
uint64_t CNode::nTotalBytesRecv = 0;
uint64_t CNode::nTotalBytesSent = 0;
CCriticalSection CNode::cs_totalBytesRecv;
CCriticalSection CNode::cs_totalBytesSent;
CNode* FindNode(const CNetAddr& ip)
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
if ((CNetAddr)pnode->addr == ip)
return (pnode);
return NULL;
}
CNode* FindNode(const CSubNet& subNet)
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
if (subNet.Match((CNetAddr)pnode->addr))
return (pnode);
return NULL;
}
CNode* FindNode(std::string addrName)
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
if (pnode->addrName == addrName)
return (pnode);
return NULL;
}
CNode* FindNode(const CService& addr)
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
if ((CService)pnode->addr == addr)
return (pnode);
return NULL;
}
bool CheckNode(CAddress addrConnect)
{
// Look for an existing connection. If found then just add it to masternode list.
CNode* pnode = FindNode((CService)addrConnect);
if (pnode)
return true;
// Connect
SOCKET hSocket;
bool proxyConnectionFailed = false;
if (ConnectSocket(addrConnect, hSocket))
{
LogPrint("net", "connected masternode %s\n", addrConnect.ToString());
closesocket(hSocket);
/* // Set to non-blocking
#ifdef WIN32
u_long nOne = 1;
if (ioctlsocket(hSocket, FIONBIO, &nOne) == SOCKET_ERROR)
LogPrintf("ConnectSocket() : ioctlsocket non-blocking setting failed, error %d\n", WSAGetLastError());
#else
if (fcntl(hSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR)
LogPrintf("ConnectSocket() : fcntl non-blocking setting failed, error %d\n", errno);
#endif
CNode* pnode = new CNode(hSocket, addrConnect, "", false);
// Close connection
pnode->CloseSocketDisconnect();
*/
return true;
}
LogPrint("net", "connecting to masternode %s failed\n", addrConnect.ToString());
return false;
}
CNode* ConnectNode(CAddress addrConnect, const char *pszDest, bool darkSendMaster)
{
if (pszDest == NULL) {
if (IsLocal(addrConnect))
return NULL;
// Look for an existing connection
CNode* pnode = FindNode((CService)addrConnect);
if (pnode)
{
if(darkSendMaster)
pnode->fDarkSendMaster = true;
pnode->AddRef();
return pnode;
}
}
/// debug print
LogPrint("net", "trying connection %s lastseen=%.1fhrs\n",
pszDest ? pszDest : addrConnect.ToString(),
pszDest ? 0 : (double)(GetAdjustedTime() - addrConnect.nTime)/3600.0);
// Connect
SOCKET hSocket;
if (pszDest ? ConnectSocketByName(addrConnect, hSocket, pszDest, Params().GetDefaultPort()) : ConnectSocket(addrConnect, hSocket))
{
addrman.Attempt(addrConnect);
LogPrint("net", "connected %s\n", pszDest ? pszDest : addrConnect.ToString());
// Set to non-blocking
#ifdef WIN32
u_long nOne = 1;
if (ioctlsocket(hSocket, FIONBIO, &nOne) == SOCKET_ERROR)
LogPrintf("ConnectSocket() : ioctlsocket non-blocking setting failed, error %d\n", WSAGetLastError());
#else
if (fcntl(hSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR)
LogPrintf("ConnectSocket() : fcntl non-blocking setting failed, error %d\n", errno);
#endif
// Add node
CNode* pnode = new CNode(hSocket, addrConnect, pszDest ? pszDest : "", false);
pnode->AddRef();
{
LOCK(cs_vNodes);
vNodes.push_back(pnode);
}
pnode->nTimeConnected = GetTime();
return pnode;
}
else
{
return NULL;
}
}
void CNode::CloseSocketDisconnect()
{
fDisconnect = true;
if (hSocket != INVALID_SOCKET)
{
LogPrint("net", "disconnecting node %s\n", addrName);
closesocket(hSocket);
hSocket = INVALID_SOCKET;
}
// in case this fails, we'll empty the recv buffer when the CNode is deleted
TRY_LOCK(cs_vRecvMsg, lockRecv);
if (lockRecv)
vRecvMsg.clear();
// if this was the sync node, we'll need a new one
if (this == pnodeSync)
pnodeSync = NULL;
}
void CNode::PushVersion()
{
/// when NTP implemented, change to just nTime = GetAdjustedTime()
int64_t nTime = (fInbound ? GetAdjustedTime() : GetTime());
CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0",0)));
CAddress addrMe = GetLocalAddress(&addr);
GetRandBytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
LogPrint("net", "send version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString(), addrYou.ToString(), addr.ToString());
PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
nLocalHostNonce, strSubVersion, nBestHeight);
}
banmap_t CNode::setBanned;
CCriticalSection CNode::cs_setBanned;
bool CNode::setBannedIsDirty;
void CNode::ClearBanned()
{
LOCK(cs_setBanned);
setBanned.clear();
setBannedIsDirty = true;
}
bool CNode::IsBanned(CNetAddr ip)
{
bool fResult = false;
{
LOCK(cs_setBanned);
for (banmap_t::iterator it = setBanned.begin(); it != setBanned.end(); it++)
{
CSubNet subNet = (*it).first;
CBanEntry banEntry = (*it).second;
if(subNet.Match(ip) && GetTime() < banEntry.nBanUntil)
fResult = true;
}
}
return fResult;
}
bool CNode::IsBanned(CSubNet subnet)
{
bool fResult = false;
{
LOCK(cs_setBanned);
banmap_t::iterator i = setBanned.find(subnet);
if (i != setBanned.end())
{
CBanEntry banEntry = (*i).second;
if (GetTime() < banEntry.nBanUntil)
fResult = true;
}
}
return fResult;
}
void CNode::Ban(const CNetAddr& addr, const BanReason &banReason, int64_t bantimeoffset, bool sinceUnixEpoch) {
CSubNet subNet(addr.ToString()+(addr.IsIPv4() ? "/32" : "/128"));
Ban(subNet, banReason, bantimeoffset, sinceUnixEpoch);
}
void CNode::Ban(const CSubNet& subNet, const BanReason &banReason, int64_t bantimeoffset, bool sinceUnixEpoch) {
CBanEntry banEntry(GetTime());
banEntry.banReason = banReason;
if (bantimeoffset <= 0)
{
bantimeoffset = GetArg("-bantime", 60*60*24); // Default 24-hour ban
sinceUnixEpoch = false;
}
banEntry.nBanUntil = (sinceUnixEpoch ? 0 : GetTime() )+bantimeoffset;
LOCK(cs_setBanned);
if (setBanned[subNet].nBanUntil < banEntry.nBanUntil)
setBanned[subNet] = banEntry;
setBannedIsDirty = true;
}
bool CNode::Unban(const CNetAddr &addr) {
CSubNet subNet(addr.ToString()+(addr.IsIPv4() ? "/32" : "/128"));
return Unban(subNet);
}
bool CNode::Unban(const CSubNet &subNet) {
LOCK(cs_setBanned);
if (setBanned.erase(subNet))
{
setBannedIsDirty = true;
return true;
}
return false;
}
void CNode::GetBanned(banmap_t &banMap)
{
LOCK(cs_setBanned);
banMap = setBanned; //create a thread safe copy
}
void CNode::SetBanned(const banmap_t &banMap)
{
LOCK(cs_setBanned);
setBanned = banMap;
setBannedIsDirty = true;
}
void CNode::SweepBanned()
{
int64_t now = GetTime();
LOCK(cs_setBanned);
banmap_t::iterator it = setBanned.begin();
while(it != setBanned.end())
{
CBanEntry banEntry = (*it).second;
if(now > banEntry.nBanUntil)
{
setBanned.erase(it++);
setBannedIsDirty = true;
}
else
++it;
}
}
bool CNode::BannedSetIsDirty()
{
LOCK(cs_setBanned);
return setBannedIsDirty;
}
void CNode::SetBannedSetDirty(bool dirty)
{
LOCK(cs_setBanned); //reuse setBanned lock for the isDirty flag
setBannedIsDirty = dirty;
}
#undef X
#define X(name) stats.name = name
void CNode::copyStats(CNodeStats &stats)
{
stats.nodeid = this->GetId();
X(nServices);
X(nLastSend);
X(nLastRecv);
X(nTimeConnected);
X(nTimeOffset);
X(addrName);
X(nVersion);
X(cleanSubVer);
X(strSubVer);
X(fInbound);
X(nStartingHeight);
X(nSendBytes);
X(nRecvBytes);
stats.fSyncNode = (this == pnodeSync);
// It is common for nodes with good ping times to suddenly become lagged,
// due to a new block arriving or other large transfer.
// Merely reporting pingtime might fool the caller into thinking the node was still responsive,
// since pingtime does not update until the ping is complete, which might take a while.
// So, if a ping is taking an unusually long time in flight,
// the caller can immediately detect that this is happening.
int64_t nPingUsecWait = 0;
if ((0 != nPingNonceSent) && (0 != nPingUsecStart)) {
nPingUsecWait = GetTimeMicros() - nPingUsecStart;
}
// Raw ping time is in microseconds, but show it to user as whole seconds (Bitcoin users should be well used to small numbers with many decimal places by now :)
stats.dPingTime = (((double)nPingUsecTime) / 1e6);
stats.dPingWait = (((double)nPingUsecWait) / 1e6);
// Leave string empty if addrLocal invalid (not filled in yet)
stats.addrLocal = addrLocal.IsValid() ? addrLocal.ToString() : "";
}
#undef X
// requires LOCK(cs_vRecvMsg)
bool CNode::ReceiveMsgBytes(const char *pch, unsigned int nBytes)
{
while (nBytes > 0) {
// get current incomplete message, or create a new one
if (vRecvMsg.empty() ||
vRecvMsg.back().complete())
vRecvMsg.push_back(CNetMessage(SER_NETWORK, nRecvVersion));
CNetMessage& msg = vRecvMsg.back();
// absorb network data
int handled;
if (!msg.in_data)
handled = msg.readHeader(pch, nBytes);
else
handled = msg.readData(pch, nBytes);
if (handled < 0)
return false;
pch += handled;
nBytes -= handled;
}
return true;
}
int CNetMessage::readHeader(const char *pch, unsigned int nBytes)
{
// copy data to temporary parsing buffer
unsigned int nRemaining = 24 - nHdrPos;
unsigned int nCopy = std::min(nRemaining, nBytes);
memcpy(&hdrbuf[nHdrPos], pch, nCopy);
nHdrPos += nCopy;
// if header incomplete, exit
if (nHdrPos < 24)
return nCopy;
// deserialize to CMessageHeader
try {
hdrbuf >> hdr;
}
catch (std::exception &e) {
return -1;
}
// reject messages larger than MAX_SIZE
if (hdr.nMessageSize > MAX_SIZE)
return -1;
// switch state to reading message data
in_data = true;
return nCopy;
}
int CNetMessage::readData(const char *pch, unsigned int nBytes)
{
unsigned int nRemaining = hdr.nMessageSize - nDataPos;
unsigned int nCopy = std::min(nRemaining, nBytes);
if (vRecv.size() < nDataPos + nCopy) {
// Allocate up to 256 KiB ahead, but never more than the total message size.
vRecv.resize(std::min(hdr.nMessageSize, nDataPos + nCopy + 256 * 1024));
}
memcpy(&vRecv[nDataPos], pch, nCopy);
nDataPos += nCopy;
return nCopy;
}
// requires LOCK(cs_vSend)
void SocketSendData(CNode *pnode)
{
std::deque<CSerializeData>::iterator it = pnode->vSendMsg.begin();
while (it != pnode->vSendMsg.end()) {
const CSerializeData &data = *it;
assert(data.size() > pnode->nSendOffset);
int nBytes = send(pnode->hSocket, &data[pnode->nSendOffset], data.size() - pnode->nSendOffset, MSG_NOSIGNAL | MSG_DONTWAIT);
if (nBytes > 0) {
pnode->nLastSend = GetTime();
pnode->nSendBytes += nBytes;
pnode->nSendOffset += nBytes;
pnode->RecordBytesSent(nBytes);
if (pnode->nSendOffset == data.size()) {
pnode->nSendOffset = 0;
pnode->nSendSize -= data.size();
it++;
} else {
// could not send full message; stop sending more
break;
}
} else {
if (nBytes < 0) {
// error
int nErr = WSAGetLastError();
if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS)
{
LogPrintf("socket send error %d\n", nErr);
pnode->CloseSocketDisconnect();
}
}
// couldn't send anything at all
break;
}
}
if (it == pnode->vSendMsg.end()) {
assert(pnode->nSendOffset == 0);
assert(pnode->nSendSize == 0);
}
pnode->vSendMsg.erase(pnode->vSendMsg.begin(), it);
}
static list<CNode*> vNodesDisconnected;
void ThreadSocketHandler()
{
unsigned int nPrevNodeCount = 0;
while (true)
{
//
// Disconnect nodes
//
{
LOCK(cs_vNodes);
// Disconnect unused nodes
vector<CNode*> vNodesCopy = vNodes;
BOOST_FOREACH(CNode* pnode, vNodesCopy)
{
if (pnode->fDisconnect ||
(pnode->GetRefCount() <= 0 && pnode->vRecvMsg.empty() && pnode->nSendSize == 0 && pnode->ssSend.empty()))
{
// remove from vNodes
vNodes.erase(remove(vNodes.begin(), vNodes.end(), pnode), vNodes.end());
// release outbound grant (if any)
pnode->grantOutbound.Release();
// close socket and cleanup
pnode->CloseSocketDisconnect();
// hold in disconnected pool until all refs are released
if (pnode->fNetworkNode || pnode->fInbound)
pnode->Release();
vNodesDisconnected.push_back(pnode);
}
}
}
{
// Delete disconnected nodes
list<CNode*> vNodesDisconnectedCopy = vNodesDisconnected;
BOOST_FOREACH(CNode* pnode, vNodesDisconnectedCopy)
{
// wait until threads are done using it
if (pnode->GetRefCount() <= 0)
{
bool fDelete = false;
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend)
{
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv)
{
TRY_LOCK(pnode->cs_inventory, lockInv);
if (lockInv)
fDelete = true;
}
}
}
if (fDelete)
{
vNodesDisconnected.remove(pnode);
delete pnode;
}
}
}
}
if(vNodes.size() != nPrevNodeCount) {
nPrevNodeCount = vNodes.size();
uiInterface.NotifyNumConnectionsChanged(nPrevNodeCount);
}
//
// Find which sockets have data to receive
//
struct timeval timeout;
timeout.tv_sec = 0;
timeout.tv_usec = 50000; // frequency to poll pnode->vSend
fd_set fdsetRecv;
fd_set fdsetSend;
fd_set fdsetError;
FD_ZERO(&fdsetRecv);
FD_ZERO(&fdsetSend);
FD_ZERO(&fdsetError);
SOCKET hSocketMax = 0;
bool have_fds = false;
BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket) {
FD_SET(hListenSocket, &fdsetRecv);
hSocketMax = max(hSocketMax, hListenSocket);
have_fds = true;
}
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
{
if (pnode->hSocket == INVALID_SOCKET)
continue;
FD_SET(pnode->hSocket, &fdsetError);
hSocketMax = max(hSocketMax, pnode->hSocket);
have_fds = true;
// Implement the following logic:
// * If there is data to send, select() for sending data. As this only
// happens when optimistic write failed, we choose to first drain the
// write buffer in this case before receiving more. This avoids
// needlessly queueing received data, if the remote peer is not themselves
// receiving data. This means properly utilizing TCP flow control signalling.
// * Otherwise, if there is no (complete) message in the receive buffer,
// or there is space left in the buffer, select() for receiving data.
// * (if neither of the above applies, there is certainly one message
// in the receiver buffer ready to be processed).
// Together, that means that at least one of the following is always possible,
// so we don't deadlock:
// * We send some data.
// * We wait for data to be received (and disconnect after timeout).
// * We process a message in the buffer (message handler thread).
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend && !pnode->vSendMsg.empty()) {
FD_SET(pnode->hSocket, &fdsetSend);
continue;
}
}
{
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv && (
pnode->vRecvMsg.empty() || !pnode->vRecvMsg.front().complete() ||
pnode->GetTotalRecvSize() <= ReceiveFloodSize()))
FD_SET(pnode->hSocket, &fdsetRecv);
}
}
}
int nSelect = select(have_fds ? hSocketMax + 1 : 0,
&fdsetRecv, &fdsetSend, &fdsetError, &timeout);
boost::this_thread::interruption_point();
if (nSelect == SOCKET_ERROR)
{
if (have_fds)
{
int nErr = WSAGetLastError();
LogPrintf("socket select error %d\n", nErr);
for (unsigned int i = 0; i <= hSocketMax; i++)
FD_SET(i, &fdsetRecv);
}
FD_ZERO(&fdsetSend);
FD_ZERO(&fdsetError);
MilliSleep(timeout.tv_usec/1000);
}
//
// Accept new connections
//
BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket)
if (hListenSocket != INVALID_SOCKET && FD_ISSET(hListenSocket, &fdsetRecv))
{
struct sockaddr_storage sockaddr;
socklen_t len = sizeof(sockaddr);
SOCKET hSocket = accept(hListenSocket, (struct sockaddr*)&sockaddr, &len);
CAddress addr;
int nInbound = 0;
if (hSocket != INVALID_SOCKET)
if (!addr.SetSockAddr((const struct sockaddr*)&sockaddr))
LogPrintf("Warning: Unknown socket family\n");
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
if (pnode->fInbound)
nInbound++;
}
if (hSocket == INVALID_SOCKET)
{
int nErr = WSAGetLastError();
if (nErr != WSAEWOULDBLOCK)
LogPrintf("socket error accept failed: %d\n", nErr);
}
else if (nInbound >= nMaxConnections - MAX_OUTBOUND_CONNECTIONS)
{
closesocket(hSocket);
}
else if (CNode::IsBanned(addr))
{
LogPrintf("connection from %s dropped (banned)\n", addr.ToString());
closesocket(hSocket);
}
else
{
// According to the internet TCP_NODELAY is not carried into accepted sockets
// on all platforms. Set it again here just to be sure.
int set = 1;
#ifdef WIN32
setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&set, sizeof(int));
#else
setsockopt(hSocket, IPPROTO_TCP, TCP_NODELAY, (void*)&set, sizeof(int));
#endif
LogPrint("net", "accepted connection %s\n", addr.ToString());
CNode* pnode = new CNode(hSocket, addr, "", true);
pnode->AddRef();
{
LOCK(cs_vNodes);
vNodes.push_back(pnode);
}
}
}
//
// Service each socket
//
vector<CNode*> vNodesCopy;
{
LOCK(cs_vNodes);
vNodesCopy = vNodes;
BOOST_FOREACH(CNode* pnode, vNodesCopy)
pnode->AddRef();
}
BOOST_FOREACH(CNode* pnode, vNodesCopy)
{
boost::this_thread::interruption_point();
//
// Receive
//
if (pnode->hSocket == INVALID_SOCKET)
continue;
if (FD_ISSET(pnode->hSocket, &fdsetRecv) || FD_ISSET(pnode->hSocket, &fdsetError))
{
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv)
{
if (pnode->GetTotalRecvSize() > ReceiveFloodSize()) {
if (!pnode->fDisconnect)
LogPrintf("socket recv flood control disconnect (%u bytes)\n", pnode->GetTotalRecvSize());
pnode->CloseSocketDisconnect();
}
else {
// typical socket buffer is 8K-64K
char pchBuf[0x10000];
int nBytes = recv(pnode->hSocket, pchBuf, sizeof(pchBuf), MSG_DONTWAIT);
if (nBytes > 0)
{
if (!pnode->ReceiveMsgBytes(pchBuf, nBytes))
pnode->CloseSocketDisconnect();
pnode->nLastRecv = GetTime();
pnode->nRecvBytes += nBytes;
pnode->RecordBytesRecv(nBytes);
}
else if (nBytes == 0)
{
// socket closed gracefully
if (!pnode->fDisconnect)
LogPrint("net", "socket closed\n");
pnode->CloseSocketDisconnect();
}
else if (nBytes < 0)
{
// error
int nErr = WSAGetLastError();
if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS)
{
if (!pnode->fDisconnect)
LogPrintf("socket recv error %d\n", nErr);
pnode->CloseSocketDisconnect();
}
}
}
}
}
//
// Send
//
if (pnode->hSocket == INVALID_SOCKET)
continue;
if (FD_ISSET(pnode->hSocket, &fdsetSend))
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend)
SocketSendData(pnode);
}
//
// Inactivity checking
//
if (pnode->vSendMsg.empty())
pnode->nLastSendEmpty = GetTime();
if (GetTime() - pnode->nTimeConnected > 60)
{
if (pnode->nLastRecv == 0 || pnode->nLastSend == 0)
{
LogPrint("net", "socket no message in first 60 seconds, %d %d\n", pnode->nLastRecv != 0, pnode->nLastSend != 0);
pnode->fDisconnect = true;
}
else if (GetTime() - pnode->nLastSend > 90*60 && GetTime() - pnode->nLastSendEmpty > 90*60)
{
LogPrintf("socket not sending\n");
pnode->fDisconnect = true;
}
else if (GetTime() - pnode->nLastRecv > 90*60)
{
LogPrintf("socket inactivity timeout\n");
pnode->fDisconnect = true;
}
}
}
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodesCopy)
pnode->Release();
}
}
}
#ifdef USE_UPNP
void ThreadMapPort()
{
std::string port = strprintf("%u", GetListenPort());
const char * multicastif = 0;
const char * minissdpdpath = 0;
struct UPNPDev * devlist = 0;
char lanaddr[64];
#ifndef UPNPDISCOVER_SUCCESS
/* miniupnpc 1.5 */
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0);
#elif MINIUPNPC_API_VERSION < 14
/* miniupnpc 1.6 */
int error = 0;
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error);
#else
/* miniupnpc 1.9.20150730 */
int error = 0;
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, 2, &error);
#endif
struct UPNPUrls urls;
struct IGDdatas data;
int r;
r = UPNP_GetValidIGD(devlist, &urls, &data, lanaddr, sizeof(lanaddr));
if (r == 1)
{
if (fDiscover) {
char externalIPAddress[40];
r = UPNP_GetExternalIPAddress(urls.controlURL, data.first.servicetype, externalIPAddress);
if(r != UPNPCOMMAND_SUCCESS)
LogPrintf("UPnP: GetExternalIPAddress() returned %d\n", r);
else
{
if(externalIPAddress[0])
{
LogPrintf("UPnP: ExternalIPAddress = %s\n", externalIPAddress);
AddLocal(CNetAddr(externalIPAddress), LOCAL_UPNP);
}
else
LogPrintf("UPnP: GetExternalIPAddress failed.\n");
}
}
string strDesc = "GeaouCoin " + FormatFullVersion();
try {
while (!ShutdownRequested()) {
boost::this_thread::interruption_point();
#ifndef UPNPDISCOVER_SUCCESS
/* miniupnpc 1.5 */
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
port.c_str(), port.c_str(), lanaddr, strDesc.c_str(), "TCP", 0);
#else
/* miniupnpc 1.6 */
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
port.c_str(), port.c_str(), lanaddr, strDesc.c_str(), "TCP", 0, "0");
#endif
if(r!=UPNPCOMMAND_SUCCESS)
LogPrintf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n",
port, port, lanaddr, r, strupnperror(r));
else
LogPrintf("UPnP Port Mapping successful.\n");;
MilliSleep(20*60*1000); // Refresh every 20 minutes
}
}
catch (boost::thread_interrupted)
{
r = UPNP_DeletePortMapping(urls.controlURL, data.first.servicetype, port.c_str(), "TCP", 0);
LogPrintf("UPNP_DeletePortMapping() returned : %d\n", r);
freeUPNPDevlist(devlist); devlist = 0;
FreeUPNPUrls(&urls);
throw;
}
} else {
LogPrintf("No valid UPnP IGDs found\n");
freeUPNPDevlist(devlist); devlist = 0;
if (r != 0)
FreeUPNPUrls(&urls);
}
}
void MapPort(bool fUseUPnP)
{
static boost::thread* upnp_thread = NULL;
if (fUseUPnP)
{
if (upnp_thread) {
upnp_thread->interrupt();
upnp_thread->join();
delete upnp_thread;
}
upnp_thread = new boost::thread(boost::bind(&TraceThread<void (*)()>, "upnp", &ThreadMapPort));
}
else if (upnp_thread) {
upnp_thread->interrupt();
upnp_thread->join();
delete upnp_thread;
upnp_thread = NULL;
}
}
#else
void MapPort(bool)
{
// Intentionally left blank.
}
#endif
void ThreadDNSAddressSeed()
{
// goal: only query DNS seeds if address need is acute
if ((addrman.size() > 0) &&
(!GetBoolArg("-forcednsseed", true))) {
MilliSleep(11 * 1000);
LOCK(cs_vNodes);
if (vNodes.size() >= 2) {
LogPrintf("P2P peers available. Skipped DNS seeding.\n");
return;
}
}
const vector<CDNSSeedData> &vSeeds = Params().DNSSeeds();
int found = 0;
LogPrintf("Loading addresses from DNS seeds (could take a while)\n");
BOOST_FOREACH(const CDNSSeedData &seed, vSeeds) {
if (HaveNameProxy()) {
AddOneShot(seed.host);
} else {
vector<CNetAddr> vIPs;
vector<CAddress> vAdd;
if (LookupHost(seed.host.c_str(), vIPs))
{
BOOST_FOREACH(CNetAddr& ip, vIPs)
{
int nOneDay = 24*3600;
CAddress addr = CAddress(CService(ip, Params().GetDefaultPort()));
addr.nTime = GetTime() - 3*nOneDay - GetRand(4*nOneDay); // use a random age between 3 and 7 days old
vAdd.push_back(addr);
found++;
}
}
addrman.Add(vAdd, CNetAddr(seed.name, true));
}
}
LogPrintf("%d addresses found from DNS seeds\n", found);
}
void DumpAddresses()
{
int64_t nStart = GetTimeMillis();
CAddrDB adb;
adb.Write(addrman);
LogPrint("net", "Flushed %d addresses to peers.dat %dms\n",
addrman.size(), GetTimeMillis() - nStart);
}
void DumpData()
{
DumpAddresses();
if (CNode::BannedSetIsDirty())
{
DumpBanlist();
CNode::SetBannedSetDirty(false);
}
}
void static ProcessOneShot()
{
string strDest;
{
LOCK(cs_vOneShots);
if (vOneShots.empty())
return;
strDest = vOneShots.front();
vOneShots.pop_front();
}
CAddress addr;
CSemaphoreGrant grant(*semOutbound, true);
if (grant) {
if (!OpenNetworkConnection(addr, &grant, strDest.c_str(), true))
AddOneShot(strDest);
}
}
void ThreadOpenConnections()
{
// Connect to specific addresses
if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0)
{
for (int64_t nLoop = 0;; nLoop++)
{
ProcessOneShot();
BOOST_FOREACH(string strAddr, mapMultiArgs["-connect"])
{
CAddress addr;
OpenNetworkConnection(addr, NULL, strAddr.c_str());
for (int i = 0; i < 10 && i < nLoop; i++)
{
MilliSleep(500);
}
}
MilliSleep(500);
}
}
// Initiate network connections
int64_t nStart = GetTime();
while (true)
{
ProcessOneShot();
MilliSleep(500);
CSemaphoreGrant grant(*semOutbound);
boost::this_thread::interruption_point();
// Add seed nodes if DNS seeds are all down (an infrastructure attack?).
if (addrman.size() == 0 && (GetTime() - nStart > 60)) {
static bool done = false;
if (!done) {
LogPrintf("Adding fixed seed nodes as DNS doesn't seem to be available.\n");
addrman.Add(Params().FixedSeeds(), CNetAddr("127.0.0.1"));
done = true;
}
}
//
// Choose an address to connect to based on most recently seen
//
CAddress addrConnect;
// Only connect out to one peer per network group (/16 for IPv4).
// Do this here so we don't have to critsect vNodes inside mapAddresses critsect.
int nOutbound = 0;
set<vector<unsigned char> > setConnected;
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes) {
if (!pnode->fInbound) {
setConnected.insert(pnode->addr.GetGroup());
nOutbound++;
}
}
}
int64_t nANow = GetAdjustedTime();
int nTries = 0;
while (true)
{
// use an nUnkBias between 10 (no outgoing connections) and 90 (8 outgoing connections)
CAddress addr = addrman.Select();
// if we selected an invalid address, restart
if (!addr.IsValid() || setConnected.count(addr.GetGroup()) || IsLocal(addr))
break;
// If we didn't find an appropriate destination after trying 100 addresses fetched from addrman,
// stop this loop, and let the outer loop run again (which sleeps, adds seed nodes, recalculates
// already-connected network ranges, ...) before trying new addrman addresses.
nTries++;
if (nTries > 100)
break;
if (IsLimited(addr))
continue;
// only consider very recently tried nodes after 30 failed attempts
if (nANow - addr.nLastTry < 600 && nTries < 30)
continue;
// do not allow non-default ports, unless after 50 invalid addresses selected already
/*if (addr.GetPort() != Params().GetDefaultPort() && nTries < 50)
continue;*/
addrConnect = addr;
break;
}
if (addrConnect.IsValid())
OpenNetworkConnection(addrConnect, &grant);
}
}
void ThreadOpenAddedConnections()
{
{
LOCK(cs_vAddedNodes);
vAddedNodes = mapMultiArgs["-addnode"];
}
if (HaveNameProxy()) {
while(true) {
list<string> lAddresses(0);
{
LOCK(cs_vAddedNodes);
BOOST_FOREACH(string& strAddNode, vAddedNodes)
lAddresses.push_back(strAddNode);
}
BOOST_FOREACH(string& strAddNode, lAddresses) {
CAddress addr;
CSemaphoreGrant grant(*semOutbound);
OpenNetworkConnection(addr, &grant, strAddNode.c_str());
MilliSleep(500);
}
MilliSleep(120000); // Retry every 2 minutes
}
}
for (unsigned int i = 0; true; i++)
{
list<string> lAddresses(0);
{
LOCK(cs_vAddedNodes);
BOOST_FOREACH(string& strAddNode, vAddedNodes)
lAddresses.push_back(strAddNode);
}
list<vector<CService> > lservAddressesToAdd(0);
BOOST_FOREACH(string& strAddNode, lAddresses)
{
vector<CService> vservNode(0);
if(Lookup(strAddNode.c_str(), vservNode, Params().GetDefaultPort(), fNameLookup, 0))
{
lservAddressesToAdd.push_back(vservNode);
{
LOCK(cs_setservAddNodeAddresses);
BOOST_FOREACH(CService& serv, vservNode)
setservAddNodeAddresses.insert(serv);
}
}
}
// Attempt to connect to each IP for each addnode entry until at least one is successful per addnode entry
// (keeping in mind that addnode entries can have many IPs if fNameLookup)
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
for (list<vector<CService> >::iterator it = lservAddressesToAdd.begin(); it != lservAddressesToAdd.end(); it++)
BOOST_FOREACH(CService& addrNode, *(it))
if (pnode->addr == addrNode)
{
it = lservAddressesToAdd.erase(it);
it--;
break;
}
}
BOOST_FOREACH(vector<CService>& vserv, lservAddressesToAdd)
{
CSemaphoreGrant grant(*semOutbound);
OpenNetworkConnection(CAddress(vserv[i % vserv.size()]), &grant);
MilliSleep(500);
}
MilliSleep(120000); // Retry every 2 minutes
}
}
// if successful, this moves the passed grant to the constructed node
bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOutbound, const char *strDest, bool fOneShot)
{
//
// Initiate outbound network connection
//
boost::this_thread::interruption_point();
if (!strDest)
if (IsLocal(addrConnect) ||
FindNode((CNetAddr)addrConnect) || CNode::IsBanned(addrConnect) ||
FindNode(addrConnect.ToStringIPPort().c_str()))
return false;
if (strDest && FindNode(strDest))
return false;
CNode* pnode = ConnectNode(addrConnect, strDest);
boost::this_thread::interruption_point();
if (!pnode)
return false;
if (grantOutbound)
grantOutbound->MoveTo(pnode->grantOutbound);
pnode->fNetworkNode = true;
if (fOneShot)
pnode->fOneShot = true;
return true;
}
// for now, use a very simple selection metric: the node from which we received
// most recently
static int64_t NodeSyncScore(const CNode *pnode) {
return pnode->nLastRecv;
}
void static StartSync(const vector<CNode*> &vNodes) {
CNode *pnodeNewSync = NULL;
int64_t nBestScore = 0;
// fImporting and fReindex are accessed out of cs_main here, but only
// as an optimization - they are checked again in SendMessages.
if (fImporting || fReindex)
return;
// Iterate over all nodes
BOOST_FOREACH(CNode* pnode, vNodes) {
// check preconditions for allowing a sync
if (!pnode->fClient && !pnode->fOneShot &&
!pnode->fDisconnect && pnode->fSuccessfullyConnected &&
(pnode->nStartingHeight > (nBestHeight - 144)) &&
(pnode->nVersion < NOBLKS_VERSION_START || pnode->nVersion >= NOBLKS_VERSION_END)) {
// if ok, compare node's score with the best so far
int64_t nScore = NodeSyncScore(pnode);
if (pnodeNewSync == NULL || nScore > nBestScore) {
pnodeNewSync = pnode;
nBestScore = nScore;
}
}
}
// if a new sync candidate was found, start sync!
if (pnodeNewSync) {
pnodeNewSync->fStartSync = true;
pnodeSync = pnodeNewSync;
}
}
void ThreadMessageHandler()
{
SetThreadPriority(THREAD_PRIORITY_BELOW_NORMAL);
while (true)
{
bool fHaveSyncNode = false;
vector<CNode*> vNodesCopy;
{
LOCK(cs_vNodes);
vNodesCopy = vNodes;
BOOST_FOREACH(CNode* pnode, vNodesCopy) {
pnode->AddRef();
if (pnode == pnodeSync)
fHaveSyncNode = true;
}
}
if (!fHaveSyncNode)
StartSync(vNodesCopy);
// Poll the connected nodes for messages
CNode* pnodeTrickle = NULL;
if (!vNodesCopy.empty())
pnodeTrickle = vNodesCopy[GetRand(vNodesCopy.size())];
bool fSleep = true;
BOOST_FOREACH(CNode* pnode, vNodesCopy)
{
if (pnode->fDisconnect)
continue;
// Receive messages
{
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv)
{
if (!g_signals.ProcessMessages(pnode))
pnode->CloseSocketDisconnect();
if (pnode->nSendSize < SendBufferSize())
{
if (!pnode->vRecvGetData.empty() || (!pnode->vRecvMsg.empty() && pnode->vRecvMsg[0].complete()))
{
fSleep = false;
}
}
}
}
boost::this_thread::interruption_point();
// Send messages
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend)
g_signals.SendMessages(pnode, pnode == pnodeTrickle);
}
boost::this_thread::interruption_point();
}
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodesCopy)
pnode->Release();
}
if (fSleep)
MilliSleep(100);
}
}
bool BindListenPort(const CService &addrBind, string& strError)
{
strError = "";
int nOne = 1;
#ifdef WIN32
// Initialize Windows Sockets
WSADATA wsadata;
int ret = WSAStartup(MAKEWORD(2,2), &wsadata);
if (ret != NO_ERROR)
{
strError = strprintf("Error: TCP/IP socket library failed to start (WSAStartup returned error %d)", ret);
LogPrintf("%s\n", strError);
return false;
}
#endif
// Create socket for listening for incoming connections
struct sockaddr_storage sockaddr;
socklen_t len = sizeof(sockaddr);
if (!addrBind.GetSockAddr((struct sockaddr*)&sockaddr, &len))
{
strError = strprintf("Error: bind address family for %s not supported", addrBind.ToString());
LogPrintf("%s\n", strError);
return false;
}
SOCKET hListenSocket = socket(((struct sockaddr*)&sockaddr)->sa_family, SOCK_STREAM, IPPROTO_TCP);
if (hListenSocket == INVALID_SOCKET)
{
strError = strprintf("Error: Couldn't open socket for incoming connections (socket returned error %d)", WSAGetLastError());
LogPrintf("%s\n", strError);
return false;
}
#ifndef WIN32
#ifdef SO_NOSIGPIPE
// Different way of disabling SIGPIPE on BSD
setsockopt(hListenSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&nOne, sizeof(int));
#endif
// Allow binding if the port is still in TIME_WAIT state after
// the program was closed and restarted. Not an issue on windows.
setsockopt(hListenSocket, SOL_SOCKET, SO_REUSEADDR, (void*)&nOne, sizeof(int));
// Disable Nagle's algorithm
setsockopt(hListenSocket, IPPROTO_TCP, TCP_NODELAY, (void*)&nOne, sizeof(int));
#else
setsockopt(hListenSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&nOne, sizeof(int));
setsockopt(hListenSocket, IPPROTO_TCP, TCP_NODELAY, (const char*)&nOne, sizeof(int));
#endif
#ifdef WIN32
// Set to non-blocking, incoming connections will also inherit this
if (ioctlsocket(hListenSocket, FIONBIO, (u_long*)&nOne) == SOCKET_ERROR)
#else
if (fcntl(hListenSocket, F_SETFL, O_NONBLOCK) == SOCKET_ERROR)
#endif
{
strError = strprintf("Error: Couldn't set properties on socket for incoming connections (error %d)", WSAGetLastError());
LogPrintf("%s\n", strError);
return false;
}
// some systems don't have IPV6_V6ONLY but are always v6only; others do have the option
// and enable it by default or not. Try to enable it, if possible.
if (addrBind.IsIPv6()) {
#ifdef IPV6_V6ONLY
#ifdef WIN32
setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_V6ONLY, (const char*)&nOne, sizeof(int));
#else
setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_V6ONLY, (void*)&nOne, sizeof(int));
#endif
#endif
#ifdef WIN32
int nProtLevel = 10 /* PROTECTION_LEVEL_UNRESTRICTED */;
int nParameterId = 23 /* IPV6_PROTECTION_LEVEl */;
// this call is allowed to fail
setsockopt(hListenSocket, IPPROTO_IPV6, nParameterId, (const char*)&nProtLevel, sizeof(int));
#endif
}
if (::bind(hListenSocket, (struct sockaddr*)&sockaddr, len) == SOCKET_ERROR)
{
int nErr = WSAGetLastError();
if (nErr == WSAEADDRINUSE)
strError = strprintf(_("Unable to bind to %s on this computer. GeaouCoin is probably already running."), addrBind.ToString());
else
strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString(), nErr, strerror(nErr));
LogPrintf("%s\n", strError);
return false;
}
LogPrintf("Bound to %s\n", addrBind.ToString());
// Listen for incoming connections
if (listen(hListenSocket, SOMAXCONN) == SOCKET_ERROR)
{
strError = strprintf("Error: Listening for incoming connections failed (listen returned error %d)", WSAGetLastError());
LogPrintf("%s\n", strError);
return false;
}
vhListenSocket.push_back(hListenSocket);
if (addrBind.IsRoutable() && fDiscover)
AddLocal(addrBind, LOCAL_BIND);
return true;
}
void static Discover(boost::thread_group& threadGroup)
{
if (!fDiscover)
return;
#ifdef WIN32
// Get local host IP
char pszHostName[1000] = "";
if (gethostname(pszHostName, sizeof(pszHostName)) != SOCKET_ERROR)
{
vector<CNetAddr> vaddr;
if (LookupHost(pszHostName, vaddr))
{
BOOST_FOREACH (const CNetAddr &addr, vaddr)
{
AddLocal(addr, LOCAL_IF);
}
}
}
#else
// Get local host ip
struct ifaddrs* myaddrs;
if (getifaddrs(&myaddrs) == 0)
{
for (struct ifaddrs* ifa = myaddrs; ifa != NULL; ifa = ifa->ifa_next)
{
if (ifa->ifa_addr == NULL) continue;
if ((ifa->ifa_flags & IFF_UP) == 0) continue;
if (strcmp(ifa->ifa_name, "lo") == 0) continue;
if (strcmp(ifa->ifa_name, "lo0") == 0) continue;
if (ifa->ifa_addr->sa_family == AF_INET)
{
struct sockaddr_in* s4 = (struct sockaddr_in*)(ifa->ifa_addr);
CNetAddr addr(s4->sin_addr);
if (AddLocal(addr, LOCAL_IF))
LogPrintf("IPv4 %s: %s\n", ifa->ifa_name, addr.ToString());
}
else if (ifa->ifa_addr->sa_family == AF_INET6)
{
struct sockaddr_in6* s6 = (struct sockaddr_in6*)(ifa->ifa_addr);
CNetAddr addr(s6->sin6_addr);
if (AddLocal(addr, LOCAL_IF))
LogPrintf("IPv6 %s: %s\n", ifa->ifa_name, addr.ToString());
}
}
freeifaddrs(myaddrs);
}
#endif
}
void StartNode(boost::thread_group& threadGroup)
{
//try to read stored banlist
CBanDB bandb;
banmap_t banmap;
if (!bandb.Read(banmap))
LogPrintf("Invalid or missing banlist.dat; recreating\n");
CNode::SetBanned(banmap); //thread save setter
CNode::SetBannedSetDirty(false); //no need to write down just read or nonexistent data
CNode::SweepBanned(); //sweap out unused entries
if (semOutbound == NULL) {
// initialize semaphore
int nMaxOutbound = min(MAX_OUTBOUND_CONNECTIONS, nMaxConnections);
semOutbound = new CSemaphore(nMaxOutbound);
}
if (pnodeLocalHost == NULL)
pnodeLocalHost = new CNode(INVALID_SOCKET, CAddress(CService("127.0.0.1", 0), nLocalServices));
Discover(threadGroup);
//
// Start threads
//
if (!GetBoolArg("-dnsseed", true))
LogPrintf("DNS seeding disabled\n");
else
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "dnsseed", &ThreadDNSAddressSeed));
#ifdef USE_UPNP
// Map ports with UPnP
MapPort(GetBoolArg("-upnp", USE_UPNP));
#endif
// Send and receive from sockets, accept connections
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "net", &ThreadSocketHandler));
// Initiate outbound connections from -addnode
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "addcon", &ThreadOpenAddedConnections));
// Initiate outbound connections
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "opencon", &ThreadOpenConnections));
// Process messages
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "msghand", &ThreadMessageHandler));
// Dump network addresses
threadGroup.create_thread(boost::bind(&LoopForever<void (*)()>, "dumpaddr", &DumpData, DUMP_ADDRESSES_INTERVAL * 1000));
}
bool StopNode()
{
LogPrintf("StopNode()\n");
MapPort(false);
mempool.AddTransactionsUpdated(1);
if (semOutbound)
for (int i=0; i<MAX_OUTBOUND_CONNECTIONS; i++)
semOutbound->post();
DumpData();
MilliSleep(50);
DumpAddresses();
return true;
}
class CNetCleanup
{
public:
CNetCleanup()
{
}
~CNetCleanup()
{
// Close sockets
BOOST_FOREACH(CNode* pnode, vNodes)
if (pnode->hSocket != INVALID_SOCKET)
closesocket(pnode->hSocket);
BOOST_FOREACH(SOCKET hListenSocket, vhListenSocket)
if (hListenSocket != INVALID_SOCKET)
if (closesocket(hListenSocket) == SOCKET_ERROR)
LogPrintf("closesocket(hListenSocket) failed with error %d\n", WSAGetLastError());
// clean up some globals (to help leak detection)
BOOST_FOREACH(CNode *pnode, vNodes)
delete pnode;
BOOST_FOREACH(CNode *pnode, vNodesDisconnected)
delete pnode;
vNodes.clear();
vNodesDisconnected.clear();
delete semOutbound;
semOutbound = NULL;
delete pnodeLocalHost;
pnodeLocalHost = NULL;
#ifdef WIN32
// Shutdown Windows Sockets
WSACleanup();
#endif
}
}
instance_of_cnetcleanup;
void RelayTransaction(const CTransaction& tx, const uint256& hash)
{
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss.reserve(10000);
ss << tx;
RelayTransaction(tx, hash, ss);
}
void RelayTransaction(const CTransaction& tx, const uint256& hash, const CDataStream& ss)
{
CInv inv(MSG_TX, hash);
{
LOCK(cs_mapRelay);
// Expire old relay messages
while (!vRelayExpiration.empty() && vRelayExpiration.front().first < GetTime())
{
mapRelay.erase(vRelayExpiration.front().second);
vRelayExpiration.pop_front();
}
// Save original serialized message so newer versions are preserved
mapRelay.insert(std::make_pair(inv, ss));
vRelayExpiration.push_back(std::make_pair(GetTime() + 15 * 60, inv));
}
RelayInventory(inv);
}
void RelayTransactionLockReq(const CTransaction& tx, bool relayToAll)
{
CInv inv(MSG_TXLOCK_REQUEST, tx.GetHash());
//broadcast the new lock
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
{
if(!relayToAll && !pnode->fRelayTxes)
continue;
pnode->PushMessage("txlreq", tx);
}
}
void CNode::RecordBytesRecv(uint64_t bytes)
{
LOCK(cs_totalBytesRecv);
nTotalBytesRecv += bytes;
}
void CNode::RecordBytesSent(uint64_t bytes)
{
LOCK(cs_totalBytesSent);
nTotalBytesSent += bytes;
}
uint64_t CNode::GetTotalBytesRecv()
{
LOCK(cs_totalBytesRecv);
return nTotalBytesRecv;
}
uint64_t CNode::GetTotalBytesSent()
{
LOCK(cs_totalBytesSent);
return nTotalBytesSent;
}
//
// CAddrDB
//
CAddrDB::CAddrDB()
{
pathAddr = GetDataDir() / "peers.dat";
}
bool CAddrDB::Write(const CAddrMan& addr)
{
// Generate random temporary filename
unsigned short randv = 0;
GetRandBytes((unsigned char *)&randv, sizeof(randv));
std::string tmpfn = strprintf("peers.dat.%04x", randv);
// serialize addresses, checksum data up to that point, then append csum
CDataStream ssPeers(SER_DISK, CLIENT_VERSION);
ssPeers << FLATDATA(Params().MessageStart());
ssPeers << addr;
uint256 hash = Hash(ssPeers.begin(), ssPeers.end());
ssPeers << hash;
// open temp output file, and associate with CAutoFile
boost::filesystem::path pathTmp = GetDataDir() / tmpfn;
FILE *file = fopen(pathTmp.string().c_str(), "wb");
CAutoFile fileout = CAutoFile(file, SER_DISK, CLIENT_VERSION);
if (fileout.IsNull())
return error("CAddrman::Write() : open failed");
// Write and commit header, data
try {
fileout << ssPeers;
}
catch (std::exception &e) {
return error("CAddrman::Write() : I/O error");
}
FileCommit(fileout.Get());
fileout.fclose();
// replace existing peers.dat, if any, with new peers.dat.XXXX
if (!RenameOver(pathTmp, pathAddr))
return error("CAddrman::Write() : Rename-into-place failed");
return true;
}
bool CAddrDB::Read(CAddrMan& addr)
{
// open input file, and associate with CAutoFile
FILE *file = fopen(pathAddr.string().c_str(), "rb");
CAutoFile filein = CAutoFile(file, SER_DISK, CLIENT_VERSION);
if (filein.IsNull())
return error("CAddrman::Read() : open failed");
// use file size to size memory buffer
int64_t fileSize = boost::filesystem::file_size(pathAddr);
int64_t dataSize = fileSize - sizeof(uint256);
// Don't try to resize to a negative number if file is small
if (fileSize >= sizeof(uint256))
dataSize = fileSize - sizeof(uint256);
if ( dataSize < 0 )
dataSize = 0;
vector<unsigned char> vchData;
vchData.resize(dataSize);
uint256 hashIn;
// read data and checksum from file
try {
filein.read((char *)&vchData[0], dataSize);
filein >> hashIn;
}
catch (std::exception &e) {
return error("CAddrman::Read() 2 : I/O error or stream data corrupted");
}
filein.fclose();
CDataStream ssPeers(vchData, SER_DISK, CLIENT_VERSION);
// verify stored checksum matches input data
uint256 hashTmp = Hash(ssPeers.begin(), ssPeers.end());
if (hashIn != hashTmp)
return error("CAddrman::Read() : checksum mismatch; data corrupted");
unsigned char pchMsgTmp[4];
try {
// de-serialize file header (network specific magic number) and ..
ssPeers >> FLATDATA(pchMsgTmp);
// ... verify the network matches ours
if (memcmp(pchMsgTmp, Params().MessageStart(), sizeof(pchMsgTmp)))
return error("CAddrman::Read() : invalid network magic number");
// de-serialize address data into one CAddrMan object
ssPeers >> addr;
}
catch (std::exception &e) {
return error("CAddrman::Read() : I/O error or stream data corrupted");
}
return true;
}
//
// CBanDB
//
CBanDB::CBanDB()
{
pathBanlist = GetDataDir() / "banlist.dat";
}
bool CBanDB::Write(const banmap_t& banSet)
{
// Generate random temporary filename
unsigned short randv = 0;
GetRandBytes((unsigned char*)&randv, sizeof(randv));
std::string tmpfn = strprintf("banlist.dat.%04x", randv);
// serialize banlist, checksum data up to that point, then append csum
CDataStream ssBanlist(SER_DISK, CLIENT_VERSION);
ssBanlist << FLATDATA(Params().MessageStart());
ssBanlist << banSet;
uint256 hash = Hash(ssBanlist.begin(), ssBanlist.end());
ssBanlist << hash;
// open temp output file, and associate with CAutoFile
boost::filesystem::path pathTmp = GetDataDir() / tmpfn;
FILE *file = fopen(pathTmp.string().c_str(), "wb");
CAutoFile fileout(file, SER_DISK, CLIENT_VERSION);
if (fileout.IsNull())
return error("%s: Failed to open file %s", __func__, pathTmp.string());
// Write and commit header, data
try {
fileout << ssBanlist;
}
catch (const std::exception& e) {
return error("%s: Serialize or I/O error - %s", __func__, e.what());
}
FileCommit(fileout.Get());
fileout.fclose();
// replace existing banlist.dat, if any, with new banlist.dat.XXXX
if (!RenameOver(pathTmp, pathBanlist))
return error("%s: Rename-into-place failed", __func__);
return true;
}
bool CBanDB::Read(banmap_t& banSet)
{
// open input file, and associate with CAutoFile
FILE *file = fopen(pathBanlist.string().c_str(), "rb");
CAutoFile filein(file, SER_DISK, CLIENT_VERSION);
if (filein.IsNull())
return error("%s: Failed to open file %s", __func__, pathBanlist.string());
// use file size to size memory buffer
uint64_t fileSize = boost::filesystem::file_size(pathBanlist);
uint64_t dataSize = 0;
// Don't try to resize to a negative number if file is small
if (fileSize >= sizeof(uint256))
dataSize = fileSize - sizeof(uint256);
vector<unsigned char> vchData;
vchData.resize(dataSize);
uint256 hashIn;
// read data and checksum from file
try {
filein.read((char *)&vchData[0], dataSize);
filein >> hashIn;
}
catch (const std::exception& e) {
return error("%s: Deserialize or I/O error - %s", __func__, e.what());
}
filein.fclose();
CDataStream ssBanlist(vchData, SER_DISK, CLIENT_VERSION);
// verify stored checksum matches input data
uint256 hashTmp = Hash(ssBanlist.begin(), ssBanlist.end());
if (hashIn != hashTmp)
return error("%s: Checksum mismatch, data corrupted", __func__);
unsigned char pchMsgTmp[4];
try {
// de-serialize file header (network specific magic number) and ..
ssBanlist >> FLATDATA(pchMsgTmp);
// ... verify the network matches ours
if (memcmp(pchMsgTmp, Params().MessageStart(), sizeof(pchMsgTmp)))
return error("%s: Invalid network magic number", __func__);
// de-serialize address data into one CAddrMan object
ssBanlist >> banSet;
}
catch (const std::exception& e) {
return error("%s: Deserialize or I/O error - %s", __func__, e.what());
}
return true;
}
void DumpBanlist()
{
int64_t nStart = GetTimeMillis();
CNode::SweepBanned(); //clean unused entires (if bantime has expired)
CBanDB bandb;
banmap_t banmap;
CNode::GetBanned(banmap);
bandb.Write(banmap);
LogPrint("net", "Flushed %d banned node ips/subnets to banlist.dat %dms\n",
banmap.size(), GetTimeMillis() - nStart);
}
| [
"34006423+GeaouCoin@users.noreply.github.com"
] | 34006423+GeaouCoin@users.noreply.github.com |
b1a6d106b8945e5b0bd7a322668eeda6e211cc69 | e9378563a40809296501ddbdab02a7e1260634a7 | /TP/TP Type/fonctions.cpp | 51d932b4bc3552aa318744daee8cfa94d4162624 | [] | no_license | sylvainmetayer/TPAlgoS3 | 07d944347eca2b59f342b5916dae798e91c850af | 651a56b6f38f2a05bfd6204bc4015d6c429ab677 | refs/heads/master | 2021-01-13T02:06:24.554449 | 2015-10-21T08:42:45 | 2015-10-21T08:42:45 | 42,541,206 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 311 | cpp | #include "fonctions.h"
int controleSaisieEntiere(char *message, int borneMini, int borneMaxi)
{
int resultat;
cout << message << endl;
cin >> resultat;
while (resultat <= borneMini || resultat >= borneMaxi)
{
cout << "Merci de recommencer votre saisie" << endl;
cin >> resultat;
}
return resultat;
} | [
"sylvain.metayer@etu.unilim.fr"
] | sylvain.metayer@etu.unilim.fr |
4f5fcb5fe862fa0488c9858771ed4f006a3c96a9 | 4258c706fcd852f119eb2f945727dbc6dc0f66af | /plugins/CoverArt/CoverArtCache.h | 91f5cdcc4b0d17a6ea45df23e7692d81231f2344 | [] | no_license | noqnakhier/deadbeef-qt | c02a31fa4b3fd64e12b501c155b6ab4175cd995d | a553caba26b6f5565a934407e43358efe571033c | refs/heads/master | 2020-06-16T19:02:29.493497 | 2016-11-29T11:17:59 | 2016-11-29T11:17:59 | 75,074,180 | 1 | 0 | null | 2016-11-29T11:18:14 | 2016-11-29T11:18:13 | null | UTF-8 | C++ | false | false | 769 | h | #ifndef COVERARTCACHE_H
#define COVERARTCACHE_H
#include <QImage>
#include <QHash>
#define CACHE_SIZE 30
#define CACHE CoverArtCache::Instance()
class CoverArtCache : public QObject {
Q_OBJECT
public:
static CoverArtCache *Instance(QObject *parent = 0);
static void Destroy();
void getCoverArt(const char *fname, const char *artist, const char *album);
void getDefaultCoverArt();
void removeCoverArt(const char *artist, const char *album);
void clear();
private:
CoverArtCache(QObject *parent = 0);
static CoverArtCache *instance;
QHash<QString, QImage> cache;
QString currentName;
public Q_SLOTS:
void putCover(const QImage &);
Q_SIGNALS:
void coverIsReady(const QImage &);
};
#endif // COVERARTCACHE_H
| [
"redpunk231@gmail.com"
] | redpunk231@gmail.com |
a5654ebc342f1e2d39886606c078095bb68914bc | d079c1930fcc80bb189cf3cdebcb7f1682240b87 | /codeforces/div_d/1108d.cc | c929f342d6a33c1caf4991d2b01a89704af706bc | [] | no_license | tanishqkumar/cp-sols | eb8cfc0d90e6fa5d77bd78d6655864e240f22958 | 17b3e0415d63280d63d5ebc86d5c101cdec65e35 | refs/heads/master | 2023-06-17T13:44:08.833069 | 2021-07-18T21:38:27 | 2021-07-18T21:38:27 | 351,158,413 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,756 | cc | #include <iostream>
#include <math.h>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <queue>
#include <string>
using namespace std;
#define p(j) cout << j << endl
#define vi vector<int>
#define ll long long
#define loop(i, b, n) for (int i = b; i < n; ++i)
#define pb push_back
#define desc greater<int>()
template <typename T>
vector<T> gl(int input_len);
template <typename T>
void pv(vector<T> vec);
int main(){
// RBG: 012
int n; cin >> n;
string s; cin >> s;
int cnt = 0; string out;
vi nums;
loop(i, 0, n){
switch (s[i]){
case 'R': {nums.pb(0); break; }
case 'G': {nums.pb(1); break; }
case 'B': {nums.pb(2); break; }
}
}
loop(i, 1, n){
if (nums[i] == nums[i-1]){
++cnt;
if (i == n-1 || nums[i-1] == nums[i+1])
nums[i] = (nums[i]+1)%3;
else {
int sum = nums[i-1]+nums[i+1];
switch(sum){
case 1: {nums[i]=2; break; }
case 2: {nums[i]=1; break; }
case 3: {nums[i]=0; break; }
} }
}
}
loop(i, 0, nums.size()){
switch(nums[i]){
case 0: {out.pb('R'); break;}
case 1: {out.pb('G'); break;}
case 2: {out.pb('B'); break;}
}
}
p(cnt); p(out);
return 0;
}
// helpers
template <typename T>
vector<T> gl(int n)
{
vector<T> nums;
for (int i = 0; i < n; i++)
{
T el;
cin >> el;
nums.pb(el);
}
return nums;
}
template <typename T>
void pv(vector<T> vec)
{
for (int i = 0; i < vec.size(); ++i)
cout << vec[i] << " ";
cout << endl;
} | [
"thetanishq@gmail.com"
] | thetanishq@gmail.com |
d4b4643f68a45f34da41ad2893ba2c2b2de159cc | 7dc4dbd022f97cae2fbf332e1b0c22a7fa44416f | /src/utiltime.h | 5d88ec00ec8d40cfa882087986033a09940fb373 | [
"MIT"
] | permissive | anders94/mitcoin | 215c125728f27b473f55e03e7e46850d6517553e | f759d0a62cd109954488277b83d146f5d0d11562 | refs/heads/master | 2016-08-12T05:09:09.425424 | 2015-10-17T12:45:58 | 2015-10-17T12:45:58 | 44,423,621 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The mitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef mitcoin_UTILTIME_H
#define mitcoin_UTILTIME_H
#include <stdint.h>
#include <string>
int64_t GetTime();
int64_t GetTimeMillis();
int64_t GetTimeMicros();
void SetMockTime(int64_t nMockTimeIn);
void MilliSleep(int64_t n);
std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime);
#endif // mitcoin_UTILTIME_H
| [
"anders-git@evantide.com"
] | anders-git@evantide.com |
a2e2d91c4553fb3dc423b9ca54319766df227f52 | ac8e27210d8ae1c79e7d0d9db1bcf4e31c737718 | /include/llvm/CodeGen/TargetLowering.h | ca7548cd8d6f5654d61fcf2dcfe86f5305b51e56 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | steleman/flang9 | d583d619bfb67d27a995274e30c8c1a642696ec1 | 4ad7c213b30422e1e0fcb3ac826640d576977d04 | refs/heads/master | 2020-11-27T09:50:18.644313 | 2020-03-07T14:37:32 | 2020-03-07T14:37:32 | 229,387,867 | 0 | 0 | Apache-2.0 | 2019-12-21T06:35:35 | 2019-12-21T06:35:34 | null | UTF-8 | C++ | false | false | 178,212 | h | //===- llvm/CodeGen/TargetLowering.h - Target Lowering Info -----*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file describes how to lower LLVM code to machine code. This has two
/// main components:
///
/// 1. Which ValueTypes are natively supported by the target.
/// 2. Which operations are supported for supported ValueTypes.
/// 3. Cost thresholds for alternative implementations of certain operations.
///
/// In addition it has a few other components, like information about FP
/// immediates.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_TARGETLOWERING_H
#define LLVM_CODEGEN_TARGETLOWERING_H
#include "llvm/ADT/APInt.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Analysis/LegacyDivergenceAnalysis.h"
#include "llvm/CodeGen/DAGCombine.h"
#include "llvm/CodeGen/ISDOpcodes.h"
#include "llvm/CodeGen/RuntimeLibcalls.h"
#include "llvm/CodeGen/SelectionDAG.h"
#include "llvm/CodeGen/SelectionDAGNodes.h"
#include "llvm/CodeGen/TargetCallingConv.h"
#include "llvm/CodeGen/ValueTypes.h"
#include "llvm/IR/Attributes.h"
#include "llvm/IR/CallSite.h"
#include "llvm/IR/CallingConv.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/InlineAsm.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Type.h"
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/Support/AtomicOrdering.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/MachineValueType.h"
#include "llvm/Target/TargetMachine.h"
#include <algorithm>
#include <cassert>
#include <climits>
#include <cstdint>
#include <iterator>
#include <map>
#include <string>
#include <utility>
#include <vector>
namespace llvm {
class BranchProbability;
class CCState;
class CCValAssign;
class Constant;
class FastISel;
class FunctionLoweringInfo;
class GlobalValue;
class IntrinsicInst;
struct KnownBits;
class LLVMContext;
class MachineBasicBlock;
class MachineFunction;
class MachineInstr;
class MachineJumpTableInfo;
class MachineLoop;
class MachineRegisterInfo;
class MCContext;
class MCExpr;
class Module;
class TargetRegisterClass;
class TargetLibraryInfo;
class TargetRegisterInfo;
class Value;
namespace Sched {
enum Preference {
None, // No preference
Source, // Follow source order.
RegPressure, // Scheduling for lowest register pressure.
Hybrid, // Scheduling for both latency and register pressure.
ILP, // Scheduling for ILP in low register pressure mode.
VLIW // Scheduling for VLIW targets.
};
} // end namespace Sched
/// This base class for TargetLowering contains the SelectionDAG-independent
/// parts that can be used from the rest of CodeGen.
class TargetLoweringBase {
public:
/// This enum indicates whether operations are valid for a target, and if not,
/// what action should be used to make them valid.
enum LegalizeAction : uint8_t {
Legal, // The target natively supports this operation.
Promote, // This operation should be executed in a larger type.
Expand, // Try to expand this to other ops, otherwise use a libcall.
LibCall, // Don't try to expand this to other ops, always use a libcall.
Custom // Use the LowerOperation hook to implement custom lowering.
};
/// This enum indicates whether a types are legal for a target, and if not,
/// what action should be used to make them valid.
enum LegalizeTypeAction : uint8_t {
TypeLegal, // The target natively supports this type.
TypePromoteInteger, // Replace this integer with a larger one.
TypeExpandInteger, // Split this integer into two of half the size.
TypeSoftenFloat, // Convert this float to a same size integer type,
// if an operation is not supported in target HW.
TypeExpandFloat, // Split this float into two of half the size.
TypeScalarizeVector, // Replace this one-element vector with its element.
TypeSplitVector, // Split this vector into two of half the size.
TypeWidenVector, // This vector should be widened into a larger vector.
TypePromoteFloat // Replace this float with a larger one.
};
/// LegalizeKind holds the legalization kind that needs to happen to EVT
/// in order to type-legalize it.
using LegalizeKind = std::pair<LegalizeTypeAction, EVT>;
/// Enum that describes how the target represents true/false values.
enum BooleanContent {
UndefinedBooleanContent, // Only bit 0 counts, the rest can hold garbage.
ZeroOrOneBooleanContent, // All bits zero except for bit 0.
ZeroOrNegativeOneBooleanContent // All bits equal to bit 0.
};
/// Enum that describes what type of support for selects the target has.
enum SelectSupportKind {
ScalarValSelect, // The target supports scalar selects (ex: cmov).
ScalarCondVectorVal, // The target supports selects with a scalar condition
// and vector values (ex: cmov).
VectorMaskSelect // The target supports vector selects with a vector
// mask (ex: x86 blends).
};
/// Enum that specifies what an atomic load/AtomicRMWInst is expanded
/// to, if at all. Exists because different targets have different levels of
/// support for these atomic instructions, and also have different options
/// w.r.t. what they should expand to.
enum class AtomicExpansionKind {
None, // Don't expand the instruction.
LLSC, // Expand the instruction into loadlinked/storeconditional; used
// by ARM/AArch64.
LLOnly, // Expand the (load) instruction into just a load-linked, which has
// greater atomic guarantees than a normal load.
CmpXChg, // Expand the instruction into cmpxchg; used by at least X86.
MaskedIntrinsic, // Use a target-specific intrinsic for the LL/SC loop.
};
/// Enum that specifies when a multiplication should be expanded.
enum class MulExpansionKind {
Always, // Always expand the instruction.
OnlyLegalOrCustom, // Only expand when the resulting instructions are legal
// or custom.
};
class ArgListEntry {
public:
Value *Val = nullptr;
SDValue Node = SDValue();
Type *Ty = nullptr;
bool IsSExt : 1;
bool IsZExt : 1;
bool IsInReg : 1;
bool IsSRet : 1;
bool IsNest : 1;
bool IsByVal : 1;
bool IsInAlloca : 1;
bool IsReturned : 1;
bool IsSwiftSelf : 1;
bool IsSwiftError : 1;
uint16_t Alignment = 0;
Type *ByValType = nullptr;
ArgListEntry()
: IsSExt(false), IsZExt(false), IsInReg(false), IsSRet(false),
IsNest(false), IsByVal(false), IsInAlloca(false), IsReturned(false),
IsSwiftSelf(false), IsSwiftError(false) {}
void setAttributes(const CallBase *Call, unsigned ArgIdx);
void setAttributes(ImmutableCallSite *CS, unsigned ArgIdx) {
return setAttributes(cast<CallBase>(CS->getInstruction()), ArgIdx);
}
};
using ArgListTy = std::vector<ArgListEntry>;
virtual void markLibCallAttributes(MachineFunction *MF, unsigned CC,
ArgListTy &Args) const {};
static ISD::NodeType getExtendForContent(BooleanContent Content) {
switch (Content) {
case UndefinedBooleanContent:
// Extend by adding rubbish bits.
return ISD::ANY_EXTEND;
case ZeroOrOneBooleanContent:
// Extend by adding zero bits.
return ISD::ZERO_EXTEND;
case ZeroOrNegativeOneBooleanContent:
// Extend by copying the sign bit.
return ISD::SIGN_EXTEND;
}
llvm_unreachable("Invalid content kind");
}
/// NOTE: The TargetMachine owns TLOF.
explicit TargetLoweringBase(const TargetMachine &TM);
TargetLoweringBase(const TargetLoweringBase &) = delete;
TargetLoweringBase &operator=(const TargetLoweringBase &) = delete;
virtual ~TargetLoweringBase() = default;
protected:
/// Initialize all of the actions to default values.
void initActions();
public:
const TargetMachine &getTargetMachine() const { return TM; }
virtual bool useSoftFloat() const { return false; }
/// Return the pointer type for the given address space, defaults to
/// the pointer type from the data layout.
/// FIXME: The default needs to be removed once all the code is updated.
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS = 0) const {
return MVT::getIntegerVT(DL.getPointerSizeInBits(AS));
}
/// Return the in-memory pointer type for the given address space, defaults to
/// the pointer type from the data layout. FIXME: The default needs to be
/// removed once all the code is updated.
MVT getPointerMemTy(const DataLayout &DL, uint32_t AS = 0) const {
return MVT::getIntegerVT(DL.getPointerSizeInBits(AS));
}
/// Return the type for frame index, which is determined by
/// the alloca address space specified through the data layout.
MVT getFrameIndexTy(const DataLayout &DL) const {
return getPointerTy(DL, DL.getAllocaAddrSpace());
}
/// Return the type for operands of fence.
/// TODO: Let fence operands be of i32 type and remove this.
virtual MVT getFenceOperandTy(const DataLayout &DL) const {
return getPointerTy(DL);
}
/// EVT is not used in-tree, but is used by out-of-tree target.
/// A documentation for this function would be nice...
virtual MVT getScalarShiftAmountTy(const DataLayout &, EVT) const;
EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL,
bool LegalTypes = true) const;
/// Returns the type to be used for the index operand of:
/// ISD::INSERT_VECTOR_ELT, ISD::EXTRACT_VECTOR_ELT,
/// ISD::INSERT_SUBVECTOR, and ISD::EXTRACT_SUBVECTOR
virtual MVT getVectorIdxTy(const DataLayout &DL) const {
return getPointerTy(DL);
}
virtual bool isSelectSupported(SelectSupportKind /*kind*/) const {
return true;
}
/// Return true if it is profitable to convert a select of FP constants into
/// a constant pool load whose address depends on the select condition. The
/// parameter may be used to differentiate a select with FP compare from
/// integer compare.
virtual bool reduceSelectOfFPConstantLoads(bool IsFPSetCC) const {
return true;
}
/// Return true if multiple condition registers are available.
bool hasMultipleConditionRegisters() const {
return HasMultipleConditionRegisters;
}
/// Return true if the target has BitExtract instructions.
bool hasExtractBitsInsn() const { return HasExtractBitsInsn; }
/// Return the preferred vector type legalization action.
virtual TargetLoweringBase::LegalizeTypeAction
getPreferredVectorAction(MVT VT) const {
// The default action for one element vectors is to scalarize
if (VT.getVectorNumElements() == 1)
return TypeScalarizeVector;
// The default action for an odd-width vector is to widen.
if (!VT.isPow2VectorType())
return TypeWidenVector;
// The default action for other vectors is to promote
return TypePromoteInteger;
}
// There are two general methods for expanding a BUILD_VECTOR node:
// 1. Use SCALAR_TO_VECTOR on the defined scalar values and then shuffle
// them together.
// 2. Build the vector on the stack and then load it.
// If this function returns true, then method (1) will be used, subject to
// the constraint that all of the necessary shuffles are legal (as determined
// by isShuffleMaskLegal). If this function returns false, then method (2) is
// always used. The vector type, and the number of defined values, are
// provided.
virtual bool
shouldExpandBuildVectorWithShuffles(EVT /* VT */,
unsigned DefinedValues) const {
return DefinedValues < 3;
}
/// Return true if integer divide is usually cheaper than a sequence of
/// several shifts, adds, and multiplies for this target.
/// The definition of "cheaper" may depend on whether we're optimizing
/// for speed or for size.
virtual bool isIntDivCheap(EVT VT, AttributeList Attr) const { return false; }
/// Return true if the target can handle a standalone remainder operation.
virtual bool hasStandaloneRem(EVT VT) const {
return true;
}
/// Return true if SQRT(X) shouldn't be replaced with X*RSQRT(X).
virtual bool isFsqrtCheap(SDValue X, SelectionDAG &DAG) const {
// Default behavior is to replace SQRT(X) with X*RSQRT(X).
return false;
}
/// Reciprocal estimate status values used by the functions below.
enum ReciprocalEstimate : int {
Unspecified = -1,
Disabled = 0,
Enabled = 1
};
/// Return a ReciprocalEstimate enum value for a square root of the given type
/// based on the function's attributes. If the operation is not overridden by
/// the function's attributes, "Unspecified" is returned and target defaults
/// are expected to be used for instruction selection.
int getRecipEstimateSqrtEnabled(EVT VT, MachineFunction &MF) const;
/// Return a ReciprocalEstimate enum value for a division of the given type
/// based on the function's attributes. If the operation is not overridden by
/// the function's attributes, "Unspecified" is returned and target defaults
/// are expected to be used for instruction selection.
int getRecipEstimateDivEnabled(EVT VT, MachineFunction &MF) const;
/// Return the refinement step count for a square root of the given type based
/// on the function's attributes. If the operation is not overridden by
/// the function's attributes, "Unspecified" is returned and target defaults
/// are expected to be used for instruction selection.
int getSqrtRefinementSteps(EVT VT, MachineFunction &MF) const;
/// Return the refinement step count for a division of the given type based
/// on the function's attributes. If the operation is not overridden by
/// the function's attributes, "Unspecified" is returned and target defaults
/// are expected to be used for instruction selection.
int getDivRefinementSteps(EVT VT, MachineFunction &MF) const;
/// Returns true if target has indicated at least one type should be bypassed.
bool isSlowDivBypassed() const { return !BypassSlowDivWidths.empty(); }
/// Returns map of slow types for division or remainder with corresponding
/// fast types
const DenseMap<unsigned int, unsigned int> &getBypassSlowDivWidths() const {
return BypassSlowDivWidths;
}
/// Return true if Flow Control is an expensive operation that should be
/// avoided.
bool isJumpExpensive() const { return JumpIsExpensive; }
/// Return true if selects are only cheaper than branches if the branch is
/// unlikely to be predicted right.
bool isPredictableSelectExpensive() const {
return PredictableSelectIsExpensive;
}
/// If a branch or a select condition is skewed in one direction by more than
/// this factor, it is very likely to be predicted correctly.
virtual BranchProbability getPredictableBranchThreshold() const;
/// Return true if the following transform is beneficial:
/// fold (conv (load x)) -> (load (conv*)x)
/// On architectures that don't natively support some vector loads
/// efficiently, casting the load to a smaller vector of larger types and
/// loading is more efficient, however, this can be undone by optimizations in
/// dag combiner.
virtual bool isLoadBitCastBeneficial(EVT LoadVT, EVT BitcastVT,
const SelectionDAG &DAG,
const MachineMemOperand &MMO) const {
// Don't do if we could do an indexed load on the original type, but not on
// the new one.
if (!LoadVT.isSimple() || !BitcastVT.isSimple())
return true;
MVT LoadMVT = LoadVT.getSimpleVT();
// Don't bother doing this if it's just going to be promoted again later, as
// doing so might interfere with other combines.
if (getOperationAction(ISD::LOAD, LoadMVT) == Promote &&
getTypeToPromoteTo(ISD::LOAD, LoadMVT) == BitcastVT.getSimpleVT())
return false;
bool Fast = false;
return allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), BitcastVT,
MMO, &Fast) && Fast;
}
/// Return true if the following transform is beneficial:
/// (store (y (conv x)), y*)) -> (store x, (x*))
virtual bool isStoreBitCastBeneficial(EVT StoreVT, EVT BitcastVT,
const SelectionDAG &DAG,
const MachineMemOperand &MMO) const {
// Default to the same logic as loads.
return isLoadBitCastBeneficial(StoreVT, BitcastVT, DAG, MMO);
}
/// Return true if it is expected to be cheaper to do a store of a non-zero
/// vector constant with the given size and type for the address space than to
/// store the individual scalar element constants.
virtual bool storeOfVectorConstantIsCheap(EVT MemVT,
unsigned NumElem,
unsigned AddrSpace) const {
return false;
}
/// Allow store merging for the specified type after legalization in addition
/// to before legalization. This may transform stores that do not exist
/// earlier (for example, stores created from intrinsics).
virtual bool mergeStoresAfterLegalization(EVT MemVT) const {
return true;
}
/// Returns if it's reasonable to merge stores to MemVT size.
virtual bool canMergeStoresTo(unsigned AS, EVT MemVT,
const SelectionDAG &DAG) const {
return true;
}
/// Return true if it is cheap to speculate a call to intrinsic cttz.
virtual bool isCheapToSpeculateCttz() const {
return false;
}
/// Return true if it is cheap to speculate a call to intrinsic ctlz.
virtual bool isCheapToSpeculateCtlz() const {
return false;
}
/// Return true if ctlz instruction is fast.
virtual bool isCtlzFast() const {
return false;
}
/// Return true if it is safe to transform an integer-domain bitwise operation
/// into the equivalent floating-point operation. This should be set to true
/// if the target has IEEE-754-compliant fabs/fneg operations for the input
/// type.
virtual bool hasBitPreservingFPLogic(EVT VT) const {
return false;
}
/// Return true if it is cheaper to split the store of a merged int val
/// from a pair of smaller values into multiple stores.
virtual bool isMultiStoresCheaperThanBitsMerge(EVT LTy, EVT HTy) const {
return false;
}
/// Return if the target supports combining a
/// chain like:
/// \code
/// %andResult = and %val1, #mask
/// %icmpResult = icmp %andResult, 0
/// \endcode
/// into a single machine instruction of a form like:
/// \code
/// cc = test %register, #mask
/// \endcode
virtual bool isMaskAndCmp0FoldingBeneficial(const Instruction &AndI) const {
return false;
}
/// Use bitwise logic to make pairs of compares more efficient. For example:
/// and (seteq A, B), (seteq C, D) --> seteq (or (xor A, B), (xor C, D)), 0
/// This should be true when it takes more than one instruction to lower
/// setcc (cmp+set on x86 scalar), when bitwise ops are faster than logic on
/// condition bits (crand on PowerPC), and/or when reducing cmp+br is a win.
virtual bool convertSetCCLogicToBitwiseLogic(EVT VT) const {
return false;
}
/// Return the preferred operand type if the target has a quick way to compare
/// integer values of the given size. Assume that any legal integer type can
/// be compared efficiently. Targets may override this to allow illegal wide
/// types to return a vector type if there is support to compare that type.
virtual MVT hasFastEqualityCompare(unsigned NumBits) const {
MVT VT = MVT::getIntegerVT(NumBits);
return isTypeLegal(VT) ? VT : MVT::INVALID_SIMPLE_VALUE_TYPE;
}
/// Return true if the target should transform:
/// (X & Y) == Y ---> (~X & Y) == 0
/// (X & Y) != Y ---> (~X & Y) != 0
///
/// This may be profitable if the target has a bitwise and-not operation that
/// sets comparison flags. A target may want to limit the transformation based
/// on the type of Y or if Y is a constant.
///
/// Note that the transform will not occur if Y is known to be a power-of-2
/// because a mask and compare of a single bit can be handled by inverting the
/// predicate, for example:
/// (X & 8) == 8 ---> (X & 8) != 0
virtual bool hasAndNotCompare(SDValue Y) const {
return false;
}
/// Return true if the target has a bitwise and-not operation:
/// X = ~A & B
/// This can be used to simplify select or other instructions.
virtual bool hasAndNot(SDValue X) const {
// If the target has the more complex version of this operation, assume that
// it has this operation too.
return hasAndNotCompare(X);
}
/// There are two ways to clear extreme bits (either low or high):
/// Mask: x & (-1 << y) (the instcombine canonical form)
/// Shifts: x >> y << y
/// Return true if the variant with 2 variable shifts is preferred.
/// Return false if there is no preference.
virtual bool shouldFoldMaskToVariableShiftPair(SDValue X) const {
// By default, let's assume that no one prefers shifts.
return false;
}
/// Return true if it is profitable to fold a pair of shifts into a mask.
/// This is usually true on most targets. But some targets, like Thumb1,
/// have immediate shift instructions, but no immediate "and" instruction;
/// this makes the fold unprofitable.
virtual bool shouldFoldConstantShiftPairToMask(const SDNode *N,
CombineLevel Level) const {
return true;
}
/// Should we tranform the IR-optimal check for whether given truncation
/// down into KeptBits would be truncating or not:
/// (add %x, (1 << (KeptBits-1))) srccond (1 << KeptBits)
/// Into it's more traditional form:
/// ((%x << C) a>> C) dstcond %x
/// Return true if we should transform.
/// Return false if there is no preference.
virtual bool shouldTransformSignedTruncationCheck(EVT XVT,
unsigned KeptBits) const {
// By default, let's assume that no one prefers shifts.
return false;
}
/// These two forms are equivalent:
/// sub %y, (xor %x, -1)
/// add (add %x, 1), %y
/// The variant with two add's is IR-canonical.
/// Some targets may prefer one to the other.
virtual bool preferIncOfAddToSubOfNot(EVT VT) const {
// By default, let's assume that everyone prefers the form with two add's.
return true;
}
/// Return true if the target wants to use the optimization that
/// turns ext(promotableInst1(...(promotableInstN(load)))) into
/// promotedInst1(...(promotedInstN(ext(load)))).
bool enableExtLdPromotion() const { return EnableExtLdPromotion; }
/// Return true if the target can combine store(extractelement VectorTy,
/// Idx).
/// \p Cost[out] gives the cost of that transformation when this is true.
virtual bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
unsigned &Cost) const {
return false;
}
/// Return true if inserting a scalar into a variable element of an undef
/// vector is more efficiently handled by splatting the scalar instead.
virtual bool shouldSplatInsEltVarIndex(EVT) const {
return false;
}
/// Return true if target always beneficiates from combining into FMA for a
/// given value type. This must typically return false on targets where FMA
/// takes more cycles to execute than FADD.
virtual bool enableAggressiveFMAFusion(EVT VT) const {
return false;
}
/// Return the ValueType of the result of SETCC operations.
virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
EVT VT) const;
/// Return the ValueType for comparison libcalls. Comparions libcalls include
/// floating point comparion calls, and Ordered/Unordered check calls on
/// floating point numbers.
virtual
MVT::SimpleValueType getCmpLibcallReturnType() const;
/// For targets without i1 registers, this gives the nature of the high-bits
/// of boolean values held in types wider than i1.
///
/// "Boolean values" are special true/false values produced by nodes like
/// SETCC and consumed (as the condition) by nodes like SELECT and BRCOND.
/// Not to be confused with general values promoted from i1. Some cpus
/// distinguish between vectors of boolean and scalars; the isVec parameter
/// selects between the two kinds. For example on X86 a scalar boolean should
/// be zero extended from i1, while the elements of a vector of booleans
/// should be sign extended from i1.
///
/// Some cpus also treat floating point types the same way as they treat
/// vectors instead of the way they treat scalars.
BooleanContent getBooleanContents(bool isVec, bool isFloat) const {
if (isVec)
return BooleanVectorContents;
return isFloat ? BooleanFloatContents : BooleanContents;
}
BooleanContent getBooleanContents(EVT Type) const {
return getBooleanContents(Type.isVector(), Type.isFloatingPoint());
}
/// Return target scheduling preference.
Sched::Preference getSchedulingPreference() const {
return SchedPreferenceInfo;
}
/// Some scheduler, e.g. hybrid, can switch to different scheduling heuristics
/// for different nodes. This function returns the preference (or none) for
/// the given node.
virtual Sched::Preference getSchedulingPreference(SDNode *) const {
return Sched::None;
}
/// Return the register class that should be used for the specified value
/// type.
virtual const TargetRegisterClass *getRegClassFor(MVT VT, bool isDivergent = false) const {
(void)isDivergent;
const TargetRegisterClass *RC = RegClassForVT[VT.SimpleTy];
assert(RC && "This value type is not natively supported!");
return RC;
}
/// Allows target to decide about the register class of the
/// specific value that is live outside the defining block.
/// Returns true if the value needs uniform register class.
virtual bool requiresUniformRegister(MachineFunction &MF,
const Value *) const {
return false;
}
/// Return the 'representative' register class for the specified value
/// type.
///
/// The 'representative' register class is the largest legal super-reg
/// register class for the register class of the value type. For example, on
/// i386 the rep register class for i8, i16, and i32 are GR32; while the rep
/// register class is GR64 on x86_64.
virtual const TargetRegisterClass *getRepRegClassFor(MVT VT) const {
const TargetRegisterClass *RC = RepRegClassForVT[VT.SimpleTy];
return RC;
}
/// Return the cost of the 'representative' register class for the specified
/// value type.
virtual uint8_t getRepRegClassCostFor(MVT VT) const {
return RepRegClassCostForVT[VT.SimpleTy];
}
/// Return true if SHIFT instructions should be expanded to SHIFT_PARTS
/// instructions, and false if a library call is preferred (e.g for code-size
/// reasons).
virtual bool shouldExpandShift(SelectionDAG &DAG, SDNode *N) const {
return true;
}
/// Return true if the target has native support for the specified value type.
/// This means that it has a register that directly holds it without
/// promotions or expansions.
bool isTypeLegal(EVT VT) const {
assert(!VT.isSimple() ||
(unsigned)VT.getSimpleVT().SimpleTy < array_lengthof(RegClassForVT));
return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != nullptr;
}
class ValueTypeActionImpl {
/// ValueTypeActions - For each value type, keep a LegalizeTypeAction enum
/// that indicates how instruction selection should deal with the type.
LegalizeTypeAction ValueTypeActions[MVT::LAST_VALUETYPE];
public:
ValueTypeActionImpl() {
std::fill(std::begin(ValueTypeActions), std::end(ValueTypeActions),
TypeLegal);
}
LegalizeTypeAction getTypeAction(MVT VT) const {
return ValueTypeActions[VT.SimpleTy];
}
void setTypeAction(MVT VT, LegalizeTypeAction Action) {
ValueTypeActions[VT.SimpleTy] = Action;
}
};
const ValueTypeActionImpl &getValueTypeActions() const {
return ValueTypeActions;
}
/// Return how we should legalize values of this type, either it is already
/// legal (return 'Legal') or we need to promote it to a larger type (return
/// 'Promote'), or we need to expand it into multiple registers of smaller
/// integer type (return 'Expand'). 'Custom' is not an option.
LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const {
return getTypeConversion(Context, VT).first;
}
LegalizeTypeAction getTypeAction(MVT VT) const {
return ValueTypeActions.getTypeAction(VT);
}
/// For types supported by the target, this is an identity function. For
/// types that must be promoted to larger types, this returns the larger type
/// to promote to. For integer types that are larger than the largest integer
/// register, this contains one step in the expansion to get to the smaller
/// register. For illegal floating point types, this returns the integer type
/// to transform to.
EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const {
return getTypeConversion(Context, VT).second;
}
/// For types supported by the target, this is an identity function. For
/// types that must be expanded (i.e. integer types that are larger than the
/// largest integer register or illegal floating point types), this returns
/// the largest legal type it will be expanded to.
EVT getTypeToExpandTo(LLVMContext &Context, EVT VT) const {
assert(!VT.isVector());
while (true) {
switch (getTypeAction(Context, VT)) {
case TypeLegal:
return VT;
case TypeExpandInteger:
VT = getTypeToTransformTo(Context, VT);
break;
default:
llvm_unreachable("Type is not legal nor is it to be expanded!");
}
}
}
/// Vector types are broken down into some number of legal first class types.
/// For example, EVT::v8f32 maps to 2 EVT::v4f32 with Altivec or SSE1, or 8
/// promoted EVT::f64 values with the X86 FP stack. Similarly, EVT::v2i64
/// turns into 4 EVT::i32 values with both PPC and X86.
///
/// This method returns the number of registers needed, and the VT for each
/// register. It also returns the VT and quantity of the intermediate values
/// before they are promoted/expanded.
unsigned getVectorTypeBreakdown(LLVMContext &Context, EVT VT,
EVT &IntermediateVT,
unsigned &NumIntermediates,
MVT &RegisterVT) const;
/// Certain targets such as MIPS require that some types such as vectors are
/// always broken down into scalars in some contexts. This occurs even if the
/// vector type is legal.
virtual unsigned getVectorTypeBreakdownForCallingConv(
LLVMContext &Context, CallingConv::ID CC, EVT VT, EVT &IntermediateVT,
unsigned &NumIntermediates, MVT &RegisterVT) const {
return getVectorTypeBreakdown(Context, VT, IntermediateVT, NumIntermediates,
RegisterVT);
}
struct IntrinsicInfo {
unsigned opc = 0; // target opcode
EVT memVT; // memory VT
// value representing memory location
PointerUnion<const Value *, const PseudoSourceValue *> ptrVal;
int offset = 0; // offset off of ptrVal
unsigned size = 0; // the size of the memory location
// (taken from memVT if zero)
unsigned align = 1; // alignment
MachineMemOperand::Flags flags = MachineMemOperand::MONone;
IntrinsicInfo() = default;
};
/// Given an intrinsic, checks if on the target the intrinsic will need to map
/// to a MemIntrinsicNode (touches memory). If this is the case, it returns
/// true and store the intrinsic information into the IntrinsicInfo that was
/// passed to the function.
virtual bool getTgtMemIntrinsic(IntrinsicInfo &, const CallInst &,
MachineFunction &,
unsigned /*Intrinsic*/) const {
return false;
}
/// Returns true if the target can instruction select the specified FP
/// immediate natively. If false, the legalizer will materialize the FP
/// immediate as a load from a constant pool.
virtual bool isFPImmLegal(const APFloat & /*Imm*/, EVT /*VT*/,
bool ForCodeSize = false) const {
return false;
}
/// Targets can use this to indicate that they only support *some*
/// VECTOR_SHUFFLE operations, those with specific masks. By default, if a
/// target supports the VECTOR_SHUFFLE node, all mask values are assumed to be
/// legal.
virtual bool isShuffleMaskLegal(ArrayRef<int> /*Mask*/, EVT /*VT*/) const {
return true;
}
/// Returns true if the operation can trap for the value type.
///
/// VT must be a legal type. By default, we optimistically assume most
/// operations don't trap except for integer divide and remainder.
virtual bool canOpTrap(unsigned Op, EVT VT) const;
/// Similar to isShuffleMaskLegal. Targets can use this to indicate if there
/// is a suitable VECTOR_SHUFFLE that can be used to replace a VAND with a
/// constant pool entry.
virtual bool isVectorClearMaskLegal(ArrayRef<int> /*Mask*/,
EVT /*VT*/) const {
return false;
}
/// Return how this operation should be treated: either it is legal, needs to
/// be promoted to a larger size, needs to be expanded to some other code
/// sequence, or the target has a custom expander for it.
LegalizeAction getOperationAction(unsigned Op, EVT VT) const {
if (VT.isExtended()) return Expand;
// If a target-specific SDNode requires legalization, require the target
// to provide custom legalization for it.
if (Op >= array_lengthof(OpActions[0])) return Custom;
return OpActions[(unsigned)VT.getSimpleVT().SimpleTy][Op];
}
/// Custom method defined by each target to indicate if an operation which
/// may require a scale is supported natively by the target.
/// If not, the operation is illegal.
virtual bool isSupportedFixedPointOperation(unsigned Op, EVT VT,
unsigned Scale) const {
return false;
}
/// Some fixed point operations may be natively supported by the target but
/// only for specific scales. This method allows for checking
/// if the width is supported by the target for a given operation that may
/// depend on scale.
LegalizeAction getFixedPointOperationAction(unsigned Op, EVT VT,
unsigned Scale) const {
auto Action = getOperationAction(Op, VT);
if (Action != Legal)
return Action;
// This operation is supported in this type but may only work on specific
// scales.
bool Supported;
switch (Op) {
default:
llvm_unreachable("Unexpected fixed point operation.");
case ISD::SMULFIX:
case ISD::SMULFIXSAT:
case ISD::UMULFIX:
Supported = isSupportedFixedPointOperation(Op, VT, Scale);
break;
}
return Supported ? Action : Expand;
}
LegalizeAction getStrictFPOperationAction(unsigned Op, EVT VT) const {
unsigned EqOpc;
switch (Op) {
default: llvm_unreachable("Unexpected FP pseudo-opcode");
case ISD::STRICT_FADD: EqOpc = ISD::FADD; break;
case ISD::STRICT_FSUB: EqOpc = ISD::FSUB; break;
case ISD::STRICT_FMUL: EqOpc = ISD::FMUL; break;
case ISD::STRICT_FDIV: EqOpc = ISD::FDIV; break;
case ISD::STRICT_FREM: EqOpc = ISD::FREM; break;
case ISD::STRICT_FSQRT: EqOpc = ISD::FSQRT; break;
case ISD::STRICT_FPOW: EqOpc = ISD::FPOW; break;
case ISD::STRICT_FPOWI: EqOpc = ISD::FPOWI; break;
case ISD::STRICT_FMA: EqOpc = ISD::FMA; break;
case ISD::STRICT_FSIN: EqOpc = ISD::FSIN; break;
case ISD::STRICT_FCOS: EqOpc = ISD::FCOS; break;
case ISD::STRICT_FEXP: EqOpc = ISD::FEXP; break;
case ISD::STRICT_FEXP2: EqOpc = ISD::FEXP2; break;
case ISD::STRICT_FLOG: EqOpc = ISD::FLOG; break;
case ISD::STRICT_FLOG10: EqOpc = ISD::FLOG10; break;
case ISD::STRICT_FLOG2: EqOpc = ISD::FLOG2; break;
case ISD::STRICT_FRINT: EqOpc = ISD::FRINT; break;
case ISD::STRICT_FNEARBYINT: EqOpc = ISD::FNEARBYINT; break;
case ISD::STRICT_FMAXNUM: EqOpc = ISD::FMAXNUM; break;
case ISD::STRICT_FMINNUM: EqOpc = ISD::FMINNUM; break;
case ISD::STRICT_FCEIL: EqOpc = ISD::FCEIL; break;
case ISD::STRICT_FFLOOR: EqOpc = ISD::FFLOOR; break;
case ISD::STRICT_FROUND: EqOpc = ISD::FROUND; break;
case ISD::STRICT_FTRUNC: EqOpc = ISD::FTRUNC; break;
case ISD::STRICT_FP_ROUND: EqOpc = ISD::FP_ROUND; break;
case ISD::STRICT_FP_EXTEND: EqOpc = ISD::FP_EXTEND; break;
}
auto Action = getOperationAction(EqOpc, VT);
// We don't currently handle Custom or Promote for strict FP pseudo-ops.
// For now, we just expand for those cases.
if (Action != Legal)
Action = Expand;
return Action;
}
/// Return true if the specified operation is legal on this target or can be
/// made legal with custom lowering. This is used to help guide high-level
/// lowering decisions.
bool isOperationLegalOrCustom(unsigned Op, EVT VT) const {
return (VT == MVT::Other || isTypeLegal(VT)) &&
(getOperationAction(Op, VT) == Legal ||
getOperationAction(Op, VT) == Custom);
}
/// Return true if the specified operation is legal on this target or can be
/// made legal using promotion. This is used to help guide high-level lowering
/// decisions.
bool isOperationLegalOrPromote(unsigned Op, EVT VT) const {
return (VT == MVT::Other || isTypeLegal(VT)) &&
(getOperationAction(Op, VT) == Legal ||
getOperationAction(Op, VT) == Promote);
}
/// Return true if the specified operation is legal on this target or can be
/// made legal with custom lowering or using promotion. This is used to help
/// guide high-level lowering decisions.
bool isOperationLegalOrCustomOrPromote(unsigned Op, EVT VT) const {
return (VT == MVT::Other || isTypeLegal(VT)) &&
(getOperationAction(Op, VT) == Legal ||
getOperationAction(Op, VT) == Custom ||
getOperationAction(Op, VT) == Promote);
}
/// Return true if the operation uses custom lowering, regardless of whether
/// the type is legal or not.
bool isOperationCustom(unsigned Op, EVT VT) const {
return getOperationAction(Op, VT) == Custom;
}
/// Return true if lowering to a jump table is allowed.
virtual bool areJTsAllowed(const Function *Fn) const {
if (Fn->getFnAttribute("no-jump-tables").getValueAsString() == "true")
return false;
return isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
isOperationLegalOrCustom(ISD::BRIND, MVT::Other);
}
/// Check whether the range [Low,High] fits in a machine word.
bool rangeFitsInWord(const APInt &Low, const APInt &High,
const DataLayout &DL) const {
// FIXME: Using the pointer type doesn't seem ideal.
uint64_t BW = DL.getIndexSizeInBits(0u);
uint64_t Range = (High - Low).getLimitedValue(UINT64_MAX - 1) + 1;
return Range <= BW;
}
/// Return true if lowering to a jump table is suitable for a set of case
/// clusters which may contain \p NumCases cases, \p Range range of values.
virtual bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases,
uint64_t Range) const {
// FIXME: This function check the maximum table size and density, but the
// minimum size is not checked. It would be nice if the minimum size is
// also combined within this function. Currently, the minimum size check is
// performed in findJumpTable() in SelectionDAGBuiler and
// getEstimatedNumberOfCaseClusters() in BasicTTIImpl.
const bool OptForSize = SI->getParent()->getParent()->hasOptSize();
const unsigned MinDensity = getMinimumJumpTableDensity(OptForSize);
const unsigned MaxJumpTableSize = getMaximumJumpTableSize();
// Check whether the number of cases is small enough and
// the range is dense enough for a jump table.
if ((OptForSize || Range <= MaxJumpTableSize) &&
(NumCases * 100 >= Range * MinDensity)) {
return true;
}
return false;
}
/// Return true if lowering to a bit test is suitable for a set of case
/// clusters which contains \p NumDests unique destinations, \p Low and
/// \p High as its lowest and highest case values, and expects \p NumCmps
/// case value comparisons. Check if the number of destinations, comparison
/// metric, and range are all suitable.
bool isSuitableForBitTests(unsigned NumDests, unsigned NumCmps,
const APInt &Low, const APInt &High,
const DataLayout &DL) const {
// FIXME: I don't think NumCmps is the correct metric: a single case and a
// range of cases both require only one branch to lower. Just looking at the
// number of clusters and destinations should be enough to decide whether to
// build bit tests.
// To lower a range with bit tests, the range must fit the bitwidth of a
// machine word.
if (!rangeFitsInWord(Low, High, DL))
return false;
// Decide whether it's profitable to lower this range with bit tests. Each
// destination requires a bit test and branch, and there is an overall range
// check branch. For a small number of clusters, separate comparisons might
// be cheaper, and for many destinations, splitting the range might be
// better.
return (NumDests == 1 && NumCmps >= 3) || (NumDests == 2 && NumCmps >= 5) ||
(NumDests == 3 && NumCmps >= 6);
}
/// Return true if the specified operation is illegal on this target or
/// unlikely to be made legal with custom lowering. This is used to help guide
/// high-level lowering decisions.
bool isOperationExpand(unsigned Op, EVT VT) const {
return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
}
/// Return true if the specified operation is legal on this target.
bool isOperationLegal(unsigned Op, EVT VT) const {
return (VT == MVT::Other || isTypeLegal(VT)) &&
getOperationAction(Op, VT) == Legal;
}
/// Return how this load with extension should be treated: either it is legal,
/// needs to be promoted to a larger size, needs to be expanded to some other
/// code sequence, or the target has a custom expander for it.
LegalizeAction getLoadExtAction(unsigned ExtType, EVT ValVT,
EVT MemVT) const {
if (ValVT.isExtended() || MemVT.isExtended()) return Expand;
unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
assert(ExtType < ISD::LAST_LOADEXT_TYPE && ValI < MVT::LAST_VALUETYPE &&
MemI < MVT::LAST_VALUETYPE && "Table isn't big enough!");
unsigned Shift = 4 * ExtType;
return (LegalizeAction)((LoadExtActions[ValI][MemI] >> Shift) & 0xf);
}
/// Return true if the specified load with extension is legal on this target.
bool isLoadExtLegal(unsigned ExtType, EVT ValVT, EVT MemVT) const {
return getLoadExtAction(ExtType, ValVT, MemVT) == Legal;
}
/// Return true if the specified load with extension is legal or custom
/// on this target.
bool isLoadExtLegalOrCustom(unsigned ExtType, EVT ValVT, EVT MemVT) const {
return getLoadExtAction(ExtType, ValVT, MemVT) == Legal ||
getLoadExtAction(ExtType, ValVT, MemVT) == Custom;
}
/// Return how this store with truncation should be treated: either it is
/// legal, needs to be promoted to a larger size, needs to be expanded to some
/// other code sequence, or the target has a custom expander for it.
LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT) const {
if (ValVT.isExtended() || MemVT.isExtended()) return Expand;
unsigned ValI = (unsigned) ValVT.getSimpleVT().SimpleTy;
unsigned MemI = (unsigned) MemVT.getSimpleVT().SimpleTy;
assert(ValI < MVT::LAST_VALUETYPE && MemI < MVT::LAST_VALUETYPE &&
"Table isn't big enough!");
return TruncStoreActions[ValI][MemI];
}
/// Return true if the specified store with truncation is legal on this
/// target.
bool isTruncStoreLegal(EVT ValVT, EVT MemVT) const {
return isTypeLegal(ValVT) && getTruncStoreAction(ValVT, MemVT) == Legal;
}
/// Return true if the specified store with truncation has solution on this
/// target.
bool isTruncStoreLegalOrCustom(EVT ValVT, EVT MemVT) const {
return isTypeLegal(ValVT) &&
(getTruncStoreAction(ValVT, MemVT) == Legal ||
getTruncStoreAction(ValVT, MemVT) == Custom);
}
/// Return how the indexed load should be treated: either it is legal, needs
/// to be promoted to a larger size, needs to be expanded to some other code
/// sequence, or the target has a custom expander for it.
LegalizeAction
getIndexedLoadAction(unsigned IdxMode, MVT VT) const {
assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() &&
"Table isn't big enough!");
unsigned Ty = (unsigned)VT.SimpleTy;
return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf0) >> 4);
}
/// Return true if the specified indexed load is legal on this target.
bool isIndexedLoadLegal(unsigned IdxMode, EVT VT) const {
return VT.isSimple() &&
(getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Legal ||
getIndexedLoadAction(IdxMode, VT.getSimpleVT()) == Custom);
}
/// Return how the indexed store should be treated: either it is legal, needs
/// to be promoted to a larger size, needs to be expanded to some other code
/// sequence, or the target has a custom expander for it.
LegalizeAction
getIndexedStoreAction(unsigned IdxMode, MVT VT) const {
assert(IdxMode < ISD::LAST_INDEXED_MODE && VT.isValid() &&
"Table isn't big enough!");
unsigned Ty = (unsigned)VT.SimpleTy;
return (LegalizeAction)(IndexedModeActions[Ty][IdxMode] & 0x0f);
}
/// Return true if the specified indexed load is legal on this target.
bool isIndexedStoreLegal(unsigned IdxMode, EVT VT) const {
return VT.isSimple() &&
(getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Legal ||
getIndexedStoreAction(IdxMode, VT.getSimpleVT()) == Custom);
}
/// Return how the condition code should be treated: either it is legal, needs
/// to be expanded to some other code sequence, or the target has a custom
/// expander for it.
LegalizeAction
getCondCodeAction(ISD::CondCode CC, MVT VT) const {
assert((unsigned)CC < array_lengthof(CondCodeActions) &&
((unsigned)VT.SimpleTy >> 3) < array_lengthof(CondCodeActions[0]) &&
"Table isn't big enough!");
// See setCondCodeAction for how this is encoded.
uint32_t Shift = 4 * (VT.SimpleTy & 0x7);
uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3];
LegalizeAction Action = (LegalizeAction) ((Value >> Shift) & 0xF);
assert(Action != Promote && "Can't promote condition code!");
return Action;
}
/// Return true if the specified condition code is legal on this target.
bool isCondCodeLegal(ISD::CondCode CC, MVT VT) const {
return getCondCodeAction(CC, VT) == Legal;
}
/// Return true if the specified condition code is legal or custom on this
/// target.
bool isCondCodeLegalOrCustom(ISD::CondCode CC, MVT VT) const {
return getCondCodeAction(CC, VT) == Legal ||
getCondCodeAction(CC, VT) == Custom;
}
/// If the action for this operation is to promote, this method returns the
/// ValueType to promote to.
MVT getTypeToPromoteTo(unsigned Op, MVT VT) const {
assert(getOperationAction(Op, VT) == Promote &&
"This operation isn't promoted!");
// See if this has an explicit type specified.
std::map<std::pair<unsigned, MVT::SimpleValueType>,
MVT::SimpleValueType>::const_iterator PTTI =
PromoteToType.find(std::make_pair(Op, VT.SimpleTy));
if (PTTI != PromoteToType.end()) return PTTI->second;
assert((VT.isInteger() || VT.isFloatingPoint()) &&
"Cannot autopromote this type, add it with AddPromotedToType.");
MVT NVT = VT;
do {
NVT = (MVT::SimpleValueType)(NVT.SimpleTy+1);
assert(NVT.isInteger() == VT.isInteger() && NVT != MVT::isVoid &&
"Didn't find type to promote to!");
} while (!isTypeLegal(NVT) ||
getOperationAction(Op, NVT) == Promote);
return NVT;
}
/// Return the EVT corresponding to this LLVM type. This is fixed by the LLVM
/// operations except for the pointer size. If AllowUnknown is true, this
/// will return MVT::Other for types with no EVT counterpart (e.g. structs),
/// otherwise it will assert.
EVT getValueType(const DataLayout &DL, Type *Ty,
bool AllowUnknown = false) const {
// Lower scalar pointers to native pointer types.
if (auto *PTy = dyn_cast<PointerType>(Ty))
return getPointerTy(DL, PTy->getAddressSpace());
if (auto *VTy = dyn_cast<VectorType>(Ty)) {
Type *EltTy = VTy->getElementType();
// Lower vectors of pointers to native pointer types.
if (auto *PTy = dyn_cast<PointerType>(EltTy)) {
EVT PointerTy(getPointerTy(DL, PTy->getAddressSpace()));
EltTy = PointerTy.getTypeForEVT(Ty->getContext());
}
return EVT::getVectorVT(Ty->getContext(), EVT::getEVT(EltTy, false),
VTy->getNumElements());
}
return EVT::getEVT(Ty, AllowUnknown);
}
EVT getMemValueType(const DataLayout &DL, Type *Ty,
bool AllowUnknown = false) const {
// Lower scalar pointers to native pointer types.
if (PointerType *PTy = dyn_cast<PointerType>(Ty))
return getPointerMemTy(DL, PTy->getAddressSpace());
else if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Type *Elm = VTy->getElementType();
if (PointerType *PT = dyn_cast<PointerType>(Elm)) {
EVT PointerTy(getPointerMemTy(DL, PT->getAddressSpace()));
Elm = PointerTy.getTypeForEVT(Ty->getContext());
}
return EVT::getVectorVT(Ty->getContext(), EVT::getEVT(Elm, false),
VTy->getNumElements());
}
return getValueType(DL, Ty, AllowUnknown);
}
/// Return the MVT corresponding to this LLVM type. See getValueType.
MVT getSimpleValueType(const DataLayout &DL, Type *Ty,
bool AllowUnknown = false) const {
return getValueType(DL, Ty, AllowUnknown).getSimpleVT();
}
/// Return the desired alignment for ByVal or InAlloca aggregate function
/// arguments in the caller parameter area. This is the actual alignment, not
/// its logarithm.
virtual unsigned getByValTypeAlignment(Type *Ty, const DataLayout &DL) const;
/// Return the type of registers that this ValueType will eventually require.
MVT getRegisterType(MVT VT) const {
assert((unsigned)VT.SimpleTy < array_lengthof(RegisterTypeForVT));
return RegisterTypeForVT[VT.SimpleTy];
}
/// Return the type of registers that this ValueType will eventually require.
MVT getRegisterType(LLVMContext &Context, EVT VT) const {
if (VT.isSimple()) {
assert((unsigned)VT.getSimpleVT().SimpleTy <
array_lengthof(RegisterTypeForVT));
return RegisterTypeForVT[VT.getSimpleVT().SimpleTy];
}
if (VT.isVector()) {
EVT VT1;
MVT RegisterVT;
unsigned NumIntermediates;
(void)getVectorTypeBreakdown(Context, VT, VT1,
NumIntermediates, RegisterVT);
return RegisterVT;
}
if (VT.isInteger()) {
return getRegisterType(Context, getTypeToTransformTo(Context, VT));
}
llvm_unreachable("Unsupported extended type!");
}
/// Return the number of registers that this ValueType will eventually
/// require.
///
/// This is one for any types promoted to live in larger registers, but may be
/// more than one for types (like i64) that are split into pieces. For types
/// like i140, which are first promoted then expanded, it is the number of
/// registers needed to hold all the bits of the original type. For an i140
/// on a 32 bit machine this means 5 registers.
unsigned getNumRegisters(LLVMContext &Context, EVT VT) const {
if (VT.isSimple()) {
assert((unsigned)VT.getSimpleVT().SimpleTy <
array_lengthof(NumRegistersForVT));
return NumRegistersForVT[VT.getSimpleVT().SimpleTy];
}
if (VT.isVector()) {
EVT VT1;
MVT VT2;
unsigned NumIntermediates;
return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2);
}
if (VT.isInteger()) {
unsigned BitWidth = VT.getSizeInBits();
unsigned RegWidth = getRegisterType(Context, VT).getSizeInBits();
return (BitWidth + RegWidth - 1) / RegWidth;
}
llvm_unreachable("Unsupported extended type!");
}
/// Certain combinations of ABIs, Targets and features require that types
/// are legal for some operations and not for other operations.
/// For MIPS all vector types must be passed through the integer register set.
virtual MVT getRegisterTypeForCallingConv(LLVMContext &Context,
CallingConv::ID CC, EVT VT) const {
return getRegisterType(Context, VT);
}
/// Certain targets require unusual breakdowns of certain types. For MIPS,
/// this occurs when a vector type is used, as vector are passed through the
/// integer register set.
virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context,
CallingConv::ID CC,
EVT VT) const {
return getNumRegisters(Context, VT);
}
/// Certain targets have context senstive alignment requirements, where one
/// type has the alignment requirement of another type.
virtual unsigned getABIAlignmentForCallingConv(Type *ArgTy,
DataLayout DL) const {
return DL.getABITypeAlignment(ArgTy);
}
/// If true, then instruction selection should seek to shrink the FP constant
/// of the specified type to a smaller type in order to save space and / or
/// reduce runtime.
virtual bool ShouldShrinkFPConstant(EVT) const { return true; }
/// Return true if it is profitable to reduce a load to a smaller type.
/// Example: (i16 (trunc (i32 (load x))) -> i16 load x
virtual bool shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtTy,
EVT NewVT) const {
// By default, assume that it is cheaper to extract a subvector from a wide
// vector load rather than creating multiple narrow vector loads.
if (NewVT.isVector() && !Load->hasOneUse())
return false;
return true;
}
/// When splitting a value of the specified type into parts, does the Lo
/// or Hi part come first? This usually follows the endianness, except
/// for ppcf128, where the Hi part always comes first.
bool hasBigEndianPartOrdering(EVT VT, const DataLayout &DL) const {
return DL.isBigEndian() || VT == MVT::ppcf128;
}
/// If true, the target has custom DAG combine transformations that it can
/// perform for the specified node.
bool hasTargetDAGCombine(ISD::NodeType NT) const {
assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
return TargetDAGCombineArray[NT >> 3] & (1 << (NT&7));
}
unsigned getGatherAllAliasesMaxDepth() const {
return GatherAllAliasesMaxDepth;
}
/// Returns the size of the platform's va_list object.
virtual unsigned getVaListSizeInBits(const DataLayout &DL) const {
return getPointerTy(DL).getSizeInBits();
}
/// Get maximum # of store operations permitted for llvm.memset
///
/// This function returns the maximum number of store operations permitted
/// to replace a call to llvm.memset. The value is set by the target at the
/// performance threshold for such a replacement. If OptSize is true,
/// return the limit for functions that have OptSize attribute.
unsigned getMaxStoresPerMemset(bool OptSize) const {
return OptSize ? MaxStoresPerMemsetOptSize : MaxStoresPerMemset;
}
/// Get maximum # of store operations permitted for llvm.memcpy
///
/// This function returns the maximum number of store operations permitted
/// to replace a call to llvm.memcpy. The value is set by the target at the
/// performance threshold for such a replacement. If OptSize is true,
/// return the limit for functions that have OptSize attribute.
unsigned getMaxStoresPerMemcpy(bool OptSize) const {
return OptSize ? MaxStoresPerMemcpyOptSize : MaxStoresPerMemcpy;
}
/// \brief Get maximum # of store operations to be glued together
///
/// This function returns the maximum number of store operations permitted
/// to glue together during lowering of llvm.memcpy. The value is set by
// the target at the performance threshold for such a replacement.
virtual unsigned getMaxGluedStoresPerMemcpy() const {
return MaxGluedStoresPerMemcpy;
}
/// Get maximum # of load operations permitted for memcmp
///
/// This function returns the maximum number of load operations permitted
/// to replace a call to memcmp. The value is set by the target at the
/// performance threshold for such a replacement. If OptSize is true,
/// return the limit for functions that have OptSize attribute.
unsigned getMaxExpandSizeMemcmp(bool OptSize) const {
return OptSize ? MaxLoadsPerMemcmpOptSize : MaxLoadsPerMemcmp;
}
/// Get maximum # of store operations permitted for llvm.memmove
///
/// This function returns the maximum number of store operations permitted
/// to replace a call to llvm.memmove. The value is set by the target at the
/// performance threshold for such a replacement. If OptSize is true,
/// return the limit for functions that have OptSize attribute.
unsigned getMaxStoresPerMemmove(bool OptSize) const {
return OptSize ? MaxStoresPerMemmoveOptSize : MaxStoresPerMemmove;
}
/// Determine if the target supports unaligned memory accesses.
///
/// This function returns true if the target allows unaligned memory accesses
/// of the specified type in the given address space. If true, it also returns
/// whether the unaligned memory access is "fast" in the last argument by
/// reference. This is used, for example, in situations where an array
/// copy/move/set is converted to a sequence of store operations. Its use
/// helps to ensure that such replacements don't generate code that causes an
/// alignment error (trap) on the target machine.
virtual bool allowsMisalignedMemoryAccesses(
EVT, unsigned AddrSpace = 0, unsigned Align = 1,
MachineMemOperand::Flags Flags = MachineMemOperand::MONone,
bool * /*Fast*/ = nullptr) const {
return false;
}
/// Return true if the target supports a memory access of this type for the
/// given address space and alignment. If the access is allowed, the optional
/// final parameter returns if the access is also fast (as defined by the
/// target).
bool
allowsMemoryAccess(LLVMContext &Context, const DataLayout &DL, EVT VT,
unsigned AddrSpace = 0, unsigned Alignment = 1,
MachineMemOperand::Flags Flags = MachineMemOperand::MONone,
bool *Fast = nullptr) const;
/// Return true if the target supports a memory access of this type for the
/// given MachineMemOperand. If the access is allowed, the optional
/// final parameter returns if the access is also fast (as defined by the
/// target).
bool allowsMemoryAccess(LLVMContext &Context, const DataLayout &DL, EVT VT,
const MachineMemOperand &MMO,
bool *Fast = nullptr) const;
/// Returns the target specific optimal type for load and store operations as
/// a result of memset, memcpy, and memmove lowering.
///
/// If DstAlign is zero that means it's safe to destination alignment can
/// satisfy any constraint. Similarly if SrcAlign is zero it means there isn't
/// a need to check it against alignment requirement, probably because the
/// source does not need to be loaded. If 'IsMemset' is true, that means it's
/// expanding a memset. If 'ZeroMemset' is true, that means it's a memset of
/// zero. 'MemcpyStrSrc' indicates whether the memcpy source is constant so it
/// does not need to be loaded. It returns EVT::Other if the type should be
/// determined using generic target-independent logic.
virtual EVT
getOptimalMemOpType(uint64_t /*Size*/, unsigned /*DstAlign*/,
unsigned /*SrcAlign*/, bool /*IsMemset*/,
bool /*ZeroMemset*/, bool /*MemcpyStrSrc*/,
const AttributeList & /*FuncAttributes*/) const {
return MVT::Other;
}
/// Returns true if it's safe to use load / store of the specified type to
/// expand memcpy / memset inline.
///
/// This is mostly true for all types except for some special cases. For
/// example, on X86 targets without SSE2 f64 load / store are done with fldl /
/// fstpl which also does type conversion. Note the specified type doesn't
/// have to be legal as the hook is used before type legalization.
virtual bool isSafeMemOpType(MVT /*VT*/) const { return true; }
/// Determine if we should use _setjmp or setjmp to implement llvm.setjmp.
bool usesUnderscoreSetJmp() const {
return UseUnderscoreSetJmp;
}
/// Determine if we should use _longjmp or longjmp to implement llvm.longjmp.
bool usesUnderscoreLongJmp() const {
return UseUnderscoreLongJmp;
}
/// Return lower limit for number of blocks in a jump table.
virtual unsigned getMinimumJumpTableEntries() const;
/// Return lower limit of the density in a jump table.
unsigned getMinimumJumpTableDensity(bool OptForSize) const;
/// Return upper limit for number of entries in a jump table.
/// Zero if no limit.
unsigned getMaximumJumpTableSize() const;
virtual bool isJumpTableRelative() const {
return TM.isPositionIndependent();
}
/// If a physical register, this specifies the register that
/// llvm.savestack/llvm.restorestack should save and restore.
unsigned getStackPointerRegisterToSaveRestore() const {
return StackPointerRegisterToSaveRestore;
}
/// If a physical register, this returns the register that receives the
/// exception address on entry to an EH pad.
virtual unsigned
getExceptionPointerRegister(const Constant *PersonalityFn) const {
// 0 is guaranteed to be the NoRegister value on all targets
return 0;
}
/// If a physical register, this returns the register that receives the
/// exception typeid on entry to a landing pad.
virtual unsigned
getExceptionSelectorRegister(const Constant *PersonalityFn) const {
// 0 is guaranteed to be the NoRegister value on all targets
return 0;
}
virtual bool needsFixedCatchObjects() const {
report_fatal_error("Funclet EH is not implemented for this target");
}
/// Returns the target's jmp_buf size in bytes (if never set, the default is
/// 200)
unsigned getJumpBufSize() const {
return JumpBufSize;
}
/// Returns the target's jmp_buf alignment in bytes (if never set, the default
/// is 0)
unsigned getJumpBufAlignment() const {
return JumpBufAlignment;
}
/// Return the minimum stack alignment of an argument.
unsigned getMinStackArgumentAlignment() const {
return MinStackArgumentAlignment;
}
/// Return the minimum function alignment.
unsigned getMinFunctionAlignment() const {
return MinFunctionAlignment;
}
/// Return the preferred function alignment.
unsigned getPrefFunctionAlignment() const {
return PrefFunctionAlignment;
}
/// Return the preferred loop alignment.
virtual unsigned getPrefLoopAlignment(MachineLoop *ML = nullptr) const {
return PrefLoopAlignment;
}
/// Should loops be aligned even when the function is marked OptSize (but not
/// MinSize).
virtual bool alignLoopsWithOptSize() const {
return false;
}
/// If the target has a standard location for the stack protector guard,
/// returns the address of that location. Otherwise, returns nullptr.
/// DEPRECATED: please override useLoadStackGuardNode and customize
/// LOAD_STACK_GUARD, or customize \@llvm.stackguard().
virtual Value *getIRStackGuard(IRBuilder<> &IRB) const;
/// Inserts necessary declarations for SSP (stack protection) purpose.
/// Should be used only when getIRStackGuard returns nullptr.
virtual void insertSSPDeclarations(Module &M) const;
/// Return the variable that's previously inserted by insertSSPDeclarations,
/// if any, otherwise return nullptr. Should be used only when
/// getIRStackGuard returns nullptr.
virtual Value *getSDagStackGuard(const Module &M) const;
/// If this function returns true, stack protection checks should XOR the
/// frame pointer (or whichever pointer is used to address locals) into the
/// stack guard value before checking it. getIRStackGuard must return nullptr
/// if this returns true.
virtual bool useStackGuardXorFP() const { return false; }
/// If the target has a standard stack protection check function that
/// performs validation and error handling, returns the function. Otherwise,
/// returns nullptr. Must be previously inserted by insertSSPDeclarations.
/// Should be used only when getIRStackGuard returns nullptr.
virtual Function *getSSPStackGuardCheck(const Module &M) const;
protected:
Value *getDefaultSafeStackPointerLocation(IRBuilder<> &IRB,
bool UseTLS) const;
public:
/// Returns the target-specific address of the unsafe stack pointer.
virtual Value *getSafeStackPointerLocation(IRBuilder<> &IRB) const;
/// Returns the name of the symbol used to emit stack probes or the empty
/// string if not applicable.
virtual StringRef getStackProbeSymbolName(MachineFunction &MF) const {
return "";
}
/// Returns true if a cast between SrcAS and DestAS is a noop.
virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
return false;
}
/// Returns true if a cast from SrcAS to DestAS is "cheap", such that e.g. we
/// are happy to sink it into basic blocks. A cast may be free, but not
/// necessarily a no-op. e.g. a free truncate from a 64-bit to 32-bit pointer.
virtual bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
return isNoopAddrSpaceCast(SrcAS, DestAS);
}
/// Return true if the pointer arguments to CI should be aligned by aligning
/// the object whose address is being passed. If so then MinSize is set to the
/// minimum size the object must be to be aligned and PrefAlign is set to the
/// preferred alignment.
virtual bool shouldAlignPointerArgs(CallInst * /*CI*/, unsigned & /*MinSize*/,
unsigned & /*PrefAlign*/) const {
return false;
}
//===--------------------------------------------------------------------===//
/// \name Helpers for TargetTransformInfo implementations
/// @{
/// Get the ISD node that corresponds to the Instruction class opcode.
int InstructionOpcodeToISD(unsigned Opcode) const;
/// Estimate the cost of type-legalization and the legalized type.
std::pair<int, MVT> getTypeLegalizationCost(const DataLayout &DL,
Type *Ty) const;
/// @}
//===--------------------------------------------------------------------===//
/// \name Helpers for atomic expansion.
/// @{
/// Returns the maximum atomic operation size (in bits) supported by
/// the backend. Atomic operations greater than this size (as well
/// as ones that are not naturally aligned), will be expanded by
/// AtomicExpandPass into an __atomic_* library call.
unsigned getMaxAtomicSizeInBitsSupported() const {
return MaxAtomicSizeInBitsSupported;
}
/// Returns the size of the smallest cmpxchg or ll/sc instruction
/// the backend supports. Any smaller operations are widened in
/// AtomicExpandPass.
///
/// Note that *unlike* operations above the maximum size, atomic ops
/// are still natively supported below the minimum; they just
/// require a more complex expansion.
unsigned getMinCmpXchgSizeInBits() const { return MinCmpXchgSizeInBits; }
/// Whether the target supports unaligned atomic operations.
bool supportsUnalignedAtomics() const { return SupportsUnalignedAtomics; }
/// Whether AtomicExpandPass should automatically insert fences and reduce
/// ordering for this atomic. This should be true for most architectures with
/// weak memory ordering. Defaults to false.
virtual bool shouldInsertFencesForAtomic(const Instruction *I) const {
return false;
}
/// Perform a load-linked operation on Addr, returning a "Value *" with the
/// corresponding pointee type. This may entail some non-trivial operations to
/// truncate or reconstruct types that will be illegal in the backend. See
/// ARMISelLowering for an example implementation.
virtual Value *emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
AtomicOrdering Ord) const {
llvm_unreachable("Load linked unimplemented on this target");
}
/// Perform a store-conditional operation to Addr. Return the status of the
/// store. This should be 0 if the store succeeded, non-zero otherwise.
virtual Value *emitStoreConditional(IRBuilder<> &Builder, Value *Val,
Value *Addr, AtomicOrdering Ord) const {
llvm_unreachable("Store conditional unimplemented on this target");
}
/// Perform a masked atomicrmw using a target-specific intrinsic. This
/// represents the core LL/SC loop which will be lowered at a late stage by
/// the backend.
virtual Value *emitMaskedAtomicRMWIntrinsic(IRBuilder<> &Builder,
AtomicRMWInst *AI,
Value *AlignedAddr, Value *Incr,
Value *Mask, Value *ShiftAmt,
AtomicOrdering Ord) const {
llvm_unreachable("Masked atomicrmw expansion unimplemented on this target");
}
/// Perform a masked cmpxchg using a target-specific intrinsic. This
/// represents the core LL/SC loop which will be lowered at a late stage by
/// the backend.
virtual Value *emitMaskedAtomicCmpXchgIntrinsic(
IRBuilder<> &Builder, AtomicCmpXchgInst *CI, Value *AlignedAddr,
Value *CmpVal, Value *NewVal, Value *Mask, AtomicOrdering Ord) const {
llvm_unreachable("Masked cmpxchg expansion unimplemented on this target");
}
/// Inserts in the IR a target-specific intrinsic specifying a fence.
/// It is called by AtomicExpandPass before expanding an
/// AtomicRMW/AtomicCmpXchg/AtomicStore/AtomicLoad
/// if shouldInsertFencesForAtomic returns true.
///
/// Inst is the original atomic instruction, prior to other expansions that
/// may be performed.
///
/// This function should either return a nullptr, or a pointer to an IR-level
/// Instruction*. Even complex fence sequences can be represented by a
/// single Instruction* through an intrinsic to be lowered later.
/// Backends should override this method to produce target-specific intrinsic
/// for their fences.
/// FIXME: Please note that the default implementation here in terms of
/// IR-level fences exists for historical/compatibility reasons and is
/// *unsound* ! Fences cannot, in general, be used to restore sequential
/// consistency. For example, consider the following example:
/// atomic<int> x = y = 0;
/// int r1, r2, r3, r4;
/// Thread 0:
/// x.store(1);
/// Thread 1:
/// y.store(1);
/// Thread 2:
/// r1 = x.load();
/// r2 = y.load();
/// Thread 3:
/// r3 = y.load();
/// r4 = x.load();
/// r1 = r3 = 1 and r2 = r4 = 0 is impossible as long as the accesses are all
/// seq_cst. But if they are lowered to monotonic accesses, no amount of
/// IR-level fences can prevent it.
/// @{
virtual Instruction *emitLeadingFence(IRBuilder<> &Builder, Instruction *Inst,
AtomicOrdering Ord) const {
if (isReleaseOrStronger(Ord) && Inst->hasAtomicStore())
return Builder.CreateFence(Ord);
else
return nullptr;
}
virtual Instruction *emitTrailingFence(IRBuilder<> &Builder,
Instruction *Inst,
AtomicOrdering Ord) const {
if (isAcquireOrStronger(Ord))
return Builder.CreateFence(Ord);
else
return nullptr;
}
/// @}
// Emits code that executes when the comparison result in the ll/sc
// expansion of a cmpxchg instruction is such that the store-conditional will
// not execute. This makes it possible to balance out the load-linked with
// a dedicated instruction, if desired.
// E.g., on ARM, if ldrex isn't followed by strex, the exclusive monitor would
// be unnecessarily held, except if clrex, inserted by this hook, is executed.
virtual void emitAtomicCmpXchgNoStoreLLBalance(IRBuilder<> &Builder) const {}
/// Returns true if the given (atomic) store should be expanded by the
/// IR-level AtomicExpand pass into an "atomic xchg" which ignores its input.
virtual bool shouldExpandAtomicStoreInIR(StoreInst *SI) const {
return false;
}
/// Returns true if arguments should be sign-extended in lib calls.
virtual bool shouldSignExtendTypeInLibCall(EVT Type, bool IsSigned) const {
return IsSigned;
}
/// Returns how the given (atomic) load should be expanded by the
/// IR-level AtomicExpand pass.
virtual AtomicExpansionKind shouldExpandAtomicLoadInIR(LoadInst *LI) const {
return AtomicExpansionKind::None;
}
/// Returns how the given atomic cmpxchg should be expanded by the IR-level
/// AtomicExpand pass.
virtual AtomicExpansionKind
shouldExpandAtomicCmpXchgInIR(AtomicCmpXchgInst *AI) const {
return AtomicExpansionKind::None;
}
/// Returns how the IR-level AtomicExpand pass should expand the given
/// AtomicRMW, if at all. Default is to never expand.
virtual AtomicExpansionKind shouldExpandAtomicRMWInIR(AtomicRMWInst *RMW) const {
return RMW->isFloatingPointOperation() ?
AtomicExpansionKind::CmpXChg : AtomicExpansionKind::None;
}
/// On some platforms, an AtomicRMW that never actually modifies the value
/// (such as fetch_add of 0) can be turned into a fence followed by an
/// atomic load. This may sound useless, but it makes it possible for the
/// processor to keep the cacheline shared, dramatically improving
/// performance. And such idempotent RMWs are useful for implementing some
/// kinds of locks, see for example (justification + benchmarks):
/// http://www.hpl.hp.com/techreports/2012/HPL-2012-68.pdf
/// This method tries doing that transformation, returning the atomic load if
/// it succeeds, and nullptr otherwise.
/// If shouldExpandAtomicLoadInIR returns true on that load, it will undergo
/// another round of expansion.
virtual LoadInst *
lowerIdempotentRMWIntoFencedLoad(AtomicRMWInst *RMWI) const {
return nullptr;
}
/// Returns how the platform's atomic operations are extended (ZERO_EXTEND,
/// SIGN_EXTEND, or ANY_EXTEND).
virtual ISD::NodeType getExtendForAtomicOps() const {
return ISD::ZERO_EXTEND;
}
/// @}
/// Returns true if we should normalize
/// select(N0&N1, X, Y) => select(N0, select(N1, X, Y), Y) and
/// select(N0|N1, X, Y) => select(N0, select(N1, X, Y, Y)) if it is likely
/// that it saves us from materializing N0 and N1 in an integer register.
/// Targets that are able to perform and/or on flags should return false here.
virtual bool shouldNormalizeToSelectSequence(LLVMContext &Context,
EVT VT) const {
// If a target has multiple condition registers, then it likely has logical
// operations on those registers.
if (hasMultipleConditionRegisters())
return false;
// Only do the transform if the value won't be split into multiple
// registers.
LegalizeTypeAction Action = getTypeAction(Context, VT);
return Action != TypeExpandInteger && Action != TypeExpandFloat &&
Action != TypeSplitVector;
}
virtual bool isProfitableToCombineMinNumMaxNum(EVT VT) const { return true; }
/// Return true if a select of constants (select Cond, C1, C2) should be
/// transformed into simple math ops with the condition value. For example:
/// select Cond, C1, C1-1 --> add (zext Cond), C1-1
virtual bool convertSelectOfConstantsToMath(EVT VT) const {
return false;
}
/// Return true if it is profitable to transform an integer
/// multiplication-by-constant into simpler operations like shifts and adds.
/// This may be true if the target does not directly support the
/// multiplication operation for the specified type or the sequence of simpler
/// ops is faster than the multiply.
virtual bool decomposeMulByConstant(EVT VT, SDValue C) const {
return false;
}
/// Return true if it is more correct/profitable to use strict FP_TO_INT
/// conversion operations - canonicalizing the FP source value instead of
/// converting all cases and then selecting based on value.
/// This may be true if the target throws exceptions for out of bounds
/// conversions or has fast FP CMOV.
virtual bool shouldUseStrictFP_TO_INT(EVT FpVT, EVT IntVT,
bool IsSigned) const {
return false;
}
//===--------------------------------------------------------------------===//
// TargetLowering Configuration Methods - These methods should be invoked by
// the derived class constructor to configure this object for the target.
//
protected:
/// Specify how the target extends the result of integer and floating point
/// boolean values from i1 to a wider type. See getBooleanContents.
void setBooleanContents(BooleanContent Ty) {
BooleanContents = Ty;
BooleanFloatContents = Ty;
}
/// Specify how the target extends the result of integer and floating point
/// boolean values from i1 to a wider type. See getBooleanContents.
void setBooleanContents(BooleanContent IntTy, BooleanContent FloatTy) {
BooleanContents = IntTy;
BooleanFloatContents = FloatTy;
}
/// Specify how the target extends the result of a vector boolean value from a
/// vector of i1 to a wider type. See getBooleanContents.
void setBooleanVectorContents(BooleanContent Ty) {
BooleanVectorContents = Ty;
}
/// Specify the target scheduling preference.
void setSchedulingPreference(Sched::Preference Pref) {
SchedPreferenceInfo = Pref;
}
/// Indicate whether this target prefers to use _setjmp to implement
/// llvm.setjmp or the version without _. Defaults to false.
void setUseUnderscoreSetJmp(bool Val) {
UseUnderscoreSetJmp = Val;
}
/// Indicate whether this target prefers to use _longjmp to implement
/// llvm.longjmp or the version without _. Defaults to false.
void setUseUnderscoreLongJmp(bool Val) {
UseUnderscoreLongJmp = Val;
}
/// Indicate the minimum number of blocks to generate jump tables.
void setMinimumJumpTableEntries(unsigned Val);
/// Indicate the maximum number of entries in jump tables.
/// Set to zero to generate unlimited jump tables.
void setMaximumJumpTableSize(unsigned);
/// If set to a physical register, this specifies the register that
/// llvm.savestack/llvm.restorestack should save and restore.
void setStackPointerRegisterToSaveRestore(unsigned R) {
StackPointerRegisterToSaveRestore = R;
}
/// Tells the code generator that the target has multiple (allocatable)
/// condition registers that can be used to store the results of comparisons
/// for use by selects and conditional branches. With multiple condition
/// registers, the code generator will not aggressively sink comparisons into
/// the blocks of their users.
void setHasMultipleConditionRegisters(bool hasManyRegs = true) {
HasMultipleConditionRegisters = hasManyRegs;
}
/// Tells the code generator that the target has BitExtract instructions.
/// The code generator will aggressively sink "shift"s into the blocks of
/// their users if the users will generate "and" instructions which can be
/// combined with "shift" to BitExtract instructions.
void setHasExtractBitsInsn(bool hasExtractInsn = true) {
HasExtractBitsInsn = hasExtractInsn;
}
/// Tells the code generator not to expand logic operations on comparison
/// predicates into separate sequences that increase the amount of flow
/// control.
void setJumpIsExpensive(bool isExpensive = true);
/// Tells the code generator which bitwidths to bypass.
void addBypassSlowDiv(unsigned int SlowBitWidth, unsigned int FastBitWidth) {
BypassSlowDivWidths[SlowBitWidth] = FastBitWidth;
}
/// Add the specified register class as an available regclass for the
/// specified value type. This indicates the selector can handle values of
/// that class natively.
void addRegisterClass(MVT VT, const TargetRegisterClass *RC) {
assert((unsigned)VT.SimpleTy < array_lengthof(RegClassForVT));
RegClassForVT[VT.SimpleTy] = RC;
}
/// Return the largest legal super-reg register class of the register class
/// for the specified type and its associated "cost".
virtual std::pair<const TargetRegisterClass *, uint8_t>
findRepresentativeClass(const TargetRegisterInfo *TRI, MVT VT) const;
/// Once all of the register classes are added, this allows us to compute
/// derived properties we expose.
void computeRegisterProperties(const TargetRegisterInfo *TRI);
/// Indicate that the specified operation does not work with the specified
/// type and indicate what to do about it. Note that VT may refer to either
/// the type of a result or that of an operand of Op.
void setOperationAction(unsigned Op, MVT VT,
LegalizeAction Action) {
assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!");
OpActions[(unsigned)VT.SimpleTy][Op] = Action;
}
/// Indicate that the specified load with extension does not work with the
/// specified type and indicate what to do about it.
void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT,
LegalizeAction Action) {
assert(ExtType < ISD::LAST_LOADEXT_TYPE && ValVT.isValid() &&
MemVT.isValid() && "Table isn't big enough!");
assert((unsigned)Action < 0x10 && "too many bits for bitfield array");
unsigned Shift = 4 * ExtType;
LoadExtActions[ValVT.SimpleTy][MemVT.SimpleTy] &= ~((uint16_t)0xF << Shift);
LoadExtActions[ValVT.SimpleTy][MemVT.SimpleTy] |= (uint16_t)Action << Shift;
}
/// Indicate that the specified truncating store does not work with the
/// specified type and indicate what to do about it.
void setTruncStoreAction(MVT ValVT, MVT MemVT,
LegalizeAction Action) {
assert(ValVT.isValid() && MemVT.isValid() && "Table isn't big enough!");
TruncStoreActions[(unsigned)ValVT.SimpleTy][MemVT.SimpleTy] = Action;
}
/// Indicate that the specified indexed load does or does not work with the
/// specified type and indicate what to do abort it.
///
/// NOTE: All indexed mode loads are initialized to Expand in
/// TargetLowering.cpp
void setIndexedLoadAction(unsigned IdxMode, MVT VT,
LegalizeAction Action) {
assert(VT.isValid() && IdxMode < ISD::LAST_INDEXED_MODE &&
(unsigned)Action < 0xf && "Table isn't big enough!");
// Load action are kept in the upper half.
IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0xf0;
IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action) <<4;
}
/// Indicate that the specified indexed store does or does not work with the
/// specified type and indicate what to do about it.
///
/// NOTE: All indexed mode stores are initialized to Expand in
/// TargetLowering.cpp
void setIndexedStoreAction(unsigned IdxMode, MVT VT,
LegalizeAction Action) {
assert(VT.isValid() && IdxMode < ISD::LAST_INDEXED_MODE &&
(unsigned)Action < 0xf && "Table isn't big enough!");
// Store action are kept in the lower half.
IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] &= ~0x0f;
IndexedModeActions[(unsigned)VT.SimpleTy][IdxMode] |= ((uint8_t)Action);
}
/// Indicate that the specified condition code is or isn't supported on the
/// target and indicate what to do about it.
void setCondCodeAction(ISD::CondCode CC, MVT VT,
LegalizeAction Action) {
assert(VT.isValid() && (unsigned)CC < array_lengthof(CondCodeActions) &&
"Table isn't big enough!");
assert((unsigned)Action < 0x10 && "too many bits for bitfield array");
/// The lower 3 bits of the SimpleTy index into Nth 4bit set from the 32-bit
/// value and the upper 29 bits index into the second dimension of the array
/// to select what 32-bit value to use.
uint32_t Shift = 4 * (VT.SimpleTy & 0x7);
CondCodeActions[CC][VT.SimpleTy >> 3] &= ~((uint32_t)0xF << Shift);
CondCodeActions[CC][VT.SimpleTy >> 3] |= (uint32_t)Action << Shift;
}
/// If Opc/OrigVT is specified as being promoted, the promotion code defaults
/// to trying a larger integer/fp until it can find one that works. If that
/// default is insufficient, this method can be used by the target to override
/// the default.
void AddPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT) {
PromoteToType[std::make_pair(Opc, OrigVT.SimpleTy)] = DestVT.SimpleTy;
}
/// Convenience method to set an operation to Promote and specify the type
/// in a single call.
void setOperationPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT) {
setOperationAction(Opc, OrigVT, Promote);
AddPromotedToType(Opc, OrigVT, DestVT);
}
/// Targets should invoke this method for each target independent node that
/// they want to provide a custom DAG combiner for by implementing the
/// PerformDAGCombine virtual method.
void setTargetDAGCombine(ISD::NodeType NT) {
assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
TargetDAGCombineArray[NT >> 3] |= 1 << (NT&7);
}
/// Set the target's required jmp_buf buffer size (in bytes); default is 200
void setJumpBufSize(unsigned Size) {
JumpBufSize = Size;
}
/// Set the target's required jmp_buf buffer alignment (in bytes); default is
/// 0
void setJumpBufAlignment(unsigned Align) {
JumpBufAlignment = Align;
}
/// Set the target's minimum function alignment (in log2(bytes))
void setMinFunctionAlignment(unsigned Align) {
MinFunctionAlignment = Align;
}
/// Set the target's preferred function alignment. This should be set if
/// there is a performance benefit to higher-than-minimum alignment (in
/// log2(bytes))
void setPrefFunctionAlignment(unsigned Align) {
PrefFunctionAlignment = Align;
}
/// Set the target's preferred loop alignment. Default alignment is zero, it
/// means the target does not care about loop alignment. The alignment is
/// specified in log2(bytes). The target may also override
/// getPrefLoopAlignment to provide per-loop values.
void setPrefLoopAlignment(unsigned Align) {
PrefLoopAlignment = Align;
}
/// Set the minimum stack alignment of an argument (in log2(bytes)).
void setMinStackArgumentAlignment(unsigned Align) {
MinStackArgumentAlignment = Align;
}
/// Set the maximum atomic operation size supported by the
/// backend. Atomic operations greater than this size (as well as
/// ones that are not naturally aligned), will be expanded by
/// AtomicExpandPass into an __atomic_* library call.
void setMaxAtomicSizeInBitsSupported(unsigned SizeInBits) {
MaxAtomicSizeInBitsSupported = SizeInBits;
}
/// Sets the minimum cmpxchg or ll/sc size supported by the backend.
void setMinCmpXchgSizeInBits(unsigned SizeInBits) {
MinCmpXchgSizeInBits = SizeInBits;
}
/// Sets whether unaligned atomic operations are supported.
void setSupportsUnalignedAtomics(bool UnalignedSupported) {
SupportsUnalignedAtomics = UnalignedSupported;
}
public:
//===--------------------------------------------------------------------===//
// Addressing mode description hooks (used by LSR etc).
//
/// CodeGenPrepare sinks address calculations into the same BB as Load/Store
/// instructions reading the address. This allows as much computation as
/// possible to be done in the address mode for that operand. This hook lets
/// targets also pass back when this should be done on intrinsics which
/// load/store.
virtual bool getAddrModeArguments(IntrinsicInst * /*I*/,
SmallVectorImpl<Value*> &/*Ops*/,
Type *&/*AccessTy*/) const {
return false;
}
/// This represents an addressing mode of:
/// BaseGV + BaseOffs + BaseReg + Scale*ScaleReg
/// If BaseGV is null, there is no BaseGV.
/// If BaseOffs is zero, there is no base offset.
/// If HasBaseReg is false, there is no base register.
/// If Scale is zero, there is no ScaleReg. Scale of 1 indicates a reg with
/// no scale.
struct AddrMode {
GlobalValue *BaseGV = nullptr;
int64_t BaseOffs = 0;
bool HasBaseReg = false;
int64_t Scale = 0;
AddrMode() = default;
};
/// Return true if the addressing mode represented by AM is legal for this
/// target, for a load/store of the specified type.
///
/// The type may be VoidTy, in which case only return true if the addressing
/// mode is legal for a load/store of any legal type. TODO: Handle
/// pre/postinc as well.
///
/// If the address space cannot be determined, it will be -1.
///
/// TODO: Remove default argument
virtual bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM,
Type *Ty, unsigned AddrSpace,
Instruction *I = nullptr) const;
/// Return the cost of the scaling factor used in the addressing mode
/// represented by AM for this target, for a load/store of the specified type.
///
/// If the AM is supported, the return value must be >= 0.
/// If the AM is not supported, it returns a negative value.
/// TODO: Handle pre/postinc as well.
/// TODO: Remove default argument
virtual int getScalingFactorCost(const DataLayout &DL, const AddrMode &AM,
Type *Ty, unsigned AS = 0) const {
// Default: assume that any scaling factor used in a legal AM is free.
if (isLegalAddressingMode(DL, AM, Ty, AS))
return 0;
return -1;
}
/// Return true if the specified immediate is legal icmp immediate, that is
/// the target has icmp instructions which can compare a register against the
/// immediate without having to materialize the immediate into a register.
virtual bool isLegalICmpImmediate(int64_t) const {
return true;
}
/// Return true if the specified immediate is legal add immediate, that is the
/// target has add instructions which can add a register with the immediate
/// without having to materialize the immediate into a register.
virtual bool isLegalAddImmediate(int64_t) const {
return true;
}
/// Return true if the specified immediate is legal for the value input of a
/// store instruction.
virtual bool isLegalStoreImmediate(int64_t Value) const {
// Default implementation assumes that at least 0 works since it is likely
// that a zero register exists or a zero immediate is allowed.
return Value == 0;
}
/// Return true if it's significantly cheaper to shift a vector by a uniform
/// scalar than by an amount which will vary across each lane. On x86, for
/// example, there is a "psllw" instruction for the former case, but no simple
/// instruction for a general "a << b" operation on vectors.
virtual bool isVectorShiftByScalarCheap(Type *Ty) const {
return false;
}
/// Returns true if the opcode is a commutative binary operation.
virtual bool isCommutativeBinOp(unsigned Opcode) const {
// FIXME: This should get its info from the td file.
switch (Opcode) {
case ISD::ADD:
case ISD::SMIN:
case ISD::SMAX:
case ISD::UMIN:
case ISD::UMAX:
case ISD::MUL:
case ISD::MULHU:
case ISD::MULHS:
case ISD::SMUL_LOHI:
case ISD::UMUL_LOHI:
case ISD::FADD:
case ISD::FMUL:
case ISD::AND:
case ISD::OR:
case ISD::XOR:
case ISD::SADDO:
case ISD::UADDO:
case ISD::ADDC:
case ISD::ADDE:
case ISD::SADDSAT:
case ISD::UADDSAT:
case ISD::FMINNUM:
case ISD::FMAXNUM:
case ISD::FMINNUM_IEEE:
case ISD::FMAXNUM_IEEE:
case ISD::FMINIMUM:
case ISD::FMAXIMUM:
return true;
default: return false;
}
}
/// Return true if the node is a math/logic binary operator.
virtual bool isBinOp(unsigned Opcode) const {
// A commutative binop must be a binop.
if (isCommutativeBinOp(Opcode))
return true;
// These are non-commutative binops.
switch (Opcode) {
case ISD::SUB:
case ISD::SHL:
case ISD::SRL:
case ISD::SRA:
case ISD::SDIV:
case ISD::UDIV:
case ISD::SREM:
case ISD::UREM:
case ISD::FSUB:
case ISD::FDIV:
case ISD::FREM:
return true;
default:
return false;
}
}
/// Return true if it's free to truncate a value of type FromTy to type
/// ToTy. e.g. On x86 it's free to truncate a i32 value in register EAX to i16
/// by referencing its sub-register AX.
/// Targets must return false when FromTy <= ToTy.
virtual bool isTruncateFree(Type *FromTy, Type *ToTy) const {
return false;
}
/// Return true if a truncation from FromTy to ToTy is permitted when deciding
/// whether a call is in tail position. Typically this means that both results
/// would be assigned to the same register or stack slot, but it could mean
/// the target performs adequate checks of its own before proceeding with the
/// tail call. Targets must return false when FromTy <= ToTy.
virtual bool allowTruncateForTailCall(Type *FromTy, Type *ToTy) const {
return false;
}
virtual bool isTruncateFree(EVT FromVT, EVT ToVT) const {
return false;
}
virtual bool isProfitableToHoist(Instruction *I) const { return true; }
/// Return true if the extension represented by \p I is free.
/// Unlikely the is[Z|FP]ExtFree family which is based on types,
/// this method can use the context provided by \p I to decide
/// whether or not \p I is free.
/// This method extends the behavior of the is[Z|FP]ExtFree family.
/// In other words, if is[Z|FP]Free returns true, then this method
/// returns true as well. The converse is not true.
/// The target can perform the adequate checks by overriding isExtFreeImpl.
/// \pre \p I must be a sign, zero, or fp extension.
bool isExtFree(const Instruction *I) const {
switch (I->getOpcode()) {
case Instruction::FPExt:
if (isFPExtFree(EVT::getEVT(I->getType()),
EVT::getEVT(I->getOperand(0)->getType())))
return true;
break;
case Instruction::ZExt:
if (isZExtFree(I->getOperand(0)->getType(), I->getType()))
return true;
break;
case Instruction::SExt:
break;
default:
llvm_unreachable("Instruction is not an extension");
}
return isExtFreeImpl(I);
}
/// Return true if \p Load and \p Ext can form an ExtLoad.
/// For example, in AArch64
/// %L = load i8, i8* %ptr
/// %E = zext i8 %L to i32
/// can be lowered into one load instruction
/// ldrb w0, [x0]
bool isExtLoad(const LoadInst *Load, const Instruction *Ext,
const DataLayout &DL) const {
EVT VT = getValueType(DL, Ext->getType());
EVT LoadVT = getValueType(DL, Load->getType());
// If the load has other users and the truncate is not free, the ext
// probably isn't free.
if (!Load->hasOneUse() && (isTypeLegal(LoadVT) || !isTypeLegal(VT)) &&
!isTruncateFree(Ext->getType(), Load->getType()))
return false;
// Check whether the target supports casts folded into loads.
unsigned LType;
if (isa<ZExtInst>(Ext))
LType = ISD::ZEXTLOAD;
else {
assert(isa<SExtInst>(Ext) && "Unexpected ext type!");
LType = ISD::SEXTLOAD;
}
return isLoadExtLegal(LType, VT, LoadVT);
}
/// Return true if any actual instruction that defines a value of type FromTy
/// implicitly zero-extends the value to ToTy in the result register.
///
/// The function should return true when it is likely that the truncate can
/// be freely folded with an instruction defining a value of FromTy. If
/// the defining instruction is unknown (because you're looking at a
/// function argument, PHI, etc.) then the target may require an
/// explicit truncate, which is not necessarily free, but this function
/// does not deal with those cases.
/// Targets must return false when FromTy >= ToTy.
virtual bool isZExtFree(Type *FromTy, Type *ToTy) const {
return false;
}
virtual bool isZExtFree(EVT FromTy, EVT ToTy) const {
return false;
}
/// Return true if sign-extension from FromTy to ToTy is cheaper than
/// zero-extension.
virtual bool isSExtCheaperThanZExt(EVT FromTy, EVT ToTy) const {
return false;
}
/// Return true if sinking I's operands to the same basic block as I is
/// profitable, e.g. because the operands can be folded into a target
/// instruction during instruction selection. After calling the function
/// \p Ops contains the Uses to sink ordered by dominance (dominating users
/// come first).
virtual bool shouldSinkOperands(Instruction *I,
SmallVectorImpl<Use *> &Ops) const {
return false;
}
/// Return true if the target supplies and combines to a paired load
/// two loaded values of type LoadedType next to each other in memory.
/// RequiredAlignment gives the minimal alignment constraints that must be met
/// to be able to select this paired load.
///
/// This information is *not* used to generate actual paired loads, but it is
/// used to generate a sequence of loads that is easier to combine into a
/// paired load.
/// For instance, something like this:
/// a = load i64* addr
/// b = trunc i64 a to i32
/// c = lshr i64 a, 32
/// d = trunc i64 c to i32
/// will be optimized into:
/// b = load i32* addr1
/// d = load i32* addr2
/// Where addr1 = addr2 +/- sizeof(i32).
///
/// In other words, unless the target performs a post-isel load combining,
/// this information should not be provided because it will generate more
/// loads.
virtual bool hasPairedLoad(EVT /*LoadedType*/,
unsigned & /*RequiredAlignment*/) const {
return false;
}
/// Return true if the target has a vector blend instruction.
virtual bool hasVectorBlend() const { return false; }
/// Get the maximum supported factor for interleaved memory accesses.
/// Default to be the minimum interleave factor: 2.
virtual unsigned getMaxSupportedInterleaveFactor() const { return 2; }
/// Lower an interleaved load to target specific intrinsics. Return
/// true on success.
///
/// \p LI is the vector load instruction.
/// \p Shuffles is the shufflevector list to DE-interleave the loaded vector.
/// \p Indices is the corresponding indices for each shufflevector.
/// \p Factor is the interleave factor.
virtual bool lowerInterleavedLoad(LoadInst *LI,
ArrayRef<ShuffleVectorInst *> Shuffles,
ArrayRef<unsigned> Indices,
unsigned Factor) const {
return false;
}
/// Lower an interleaved store to target specific intrinsics. Return
/// true on success.
///
/// \p SI is the vector store instruction.
/// \p SVI is the shufflevector to RE-interleave the stored vector.
/// \p Factor is the interleave factor.
virtual bool lowerInterleavedStore(StoreInst *SI, ShuffleVectorInst *SVI,
unsigned Factor) const {
return false;
}
/// Return true if zero-extending the specific node Val to type VT2 is free
/// (either because it's implicitly zero-extended such as ARM ldrb / ldrh or
/// because it's folded such as X86 zero-extending loads).
virtual bool isZExtFree(SDValue Val, EVT VT2) const {
return isZExtFree(Val.getValueType(), VT2);
}
/// Return true if an fpext operation is free (for instance, because
/// single-precision floating-point numbers are implicitly extended to
/// double-precision).
virtual bool isFPExtFree(EVT DestVT, EVT SrcVT) const {
assert(SrcVT.isFloatingPoint() && DestVT.isFloatingPoint() &&
"invalid fpext types");
return false;
}
/// Return true if an fpext operation input to an \p Opcode operation is free
/// (for instance, because half-precision floating-point numbers are
/// implicitly extended to float-precision) for an FMA instruction.
virtual bool isFPExtFoldable(unsigned Opcode, EVT DestVT, EVT SrcVT) const {
assert(DestVT.isFloatingPoint() && SrcVT.isFloatingPoint() &&
"invalid fpext types");
return isFPExtFree(DestVT, SrcVT);
}
/// Return true if folding a vector load into ExtVal (a sign, zero, or any
/// extend node) is profitable.
virtual bool isVectorLoadExtDesirable(SDValue ExtVal) const { return false; }
/// Return true if an fneg operation is free to the point where it is never
/// worthwhile to replace it with a bitwise operation.
virtual bool isFNegFree(EVT VT) const {
assert(VT.isFloatingPoint());
return false;
}
/// Return true if an fabs operation is free to the point where it is never
/// worthwhile to replace it with a bitwise operation.
virtual bool isFAbsFree(EVT VT) const {
assert(VT.isFloatingPoint());
return false;
}
/// Return true if an FMA operation is faster than a pair of fmul and fadd
/// instructions. fmuladd intrinsics will be expanded to FMAs when this method
/// returns true, otherwise fmuladd is expanded to fmul + fadd.
///
/// NOTE: This may be called before legalization on types for which FMAs are
/// not legal, but should return true if those types will eventually legalize
/// to types that support FMAs. After legalization, it will only be called on
/// types that support FMAs (via Legal or Custom actions)
virtual bool isFMAFasterThanFMulAndFAdd(EVT) const {
return false;
}
/// Return true if it's profitable to narrow operations of type VT1 to
/// VT2. e.g. on x86, it's profitable to narrow from i32 to i8 but not from
/// i32 to i16.
virtual bool isNarrowingProfitable(EVT /*VT1*/, EVT /*VT2*/) const {
return false;
}
/// Return true if it is beneficial to convert a load of a constant to
/// just the constant itself.
/// On some targets it might be more efficient to use a combination of
/// arithmetic instructions to materialize the constant instead of loading it
/// from a constant pool.
virtual bool shouldConvertConstantLoadToIntImm(const APInt &Imm,
Type *Ty) const {
return false;
}
/// Return true if EXTRACT_SUBVECTOR is cheap for extracting this result type
/// from this source type with this index. This is needed because
/// EXTRACT_SUBVECTOR usually has custom lowering that depends on the index of
/// the first element, and only the target knows which lowering is cheap.
virtual bool isExtractSubvectorCheap(EVT ResVT, EVT SrcVT,
unsigned Index) const {
return false;
}
/// Try to convert an extract element of a vector binary operation into an
/// extract element followed by a scalar operation.
virtual bool shouldScalarizeBinop(SDValue VecOp) const {
return false;
}
/// Return true if extraction of a scalar element from the given vector type
/// at the given index is cheap. For example, if scalar operations occur on
/// the same register file as vector operations, then an extract element may
/// be a sub-register rename rather than an actual instruction.
virtual bool isExtractVecEltCheap(EVT VT, unsigned Index) const {
return false;
}
/// Try to convert math with an overflow comparison into the corresponding DAG
/// node operation. Targets may want to override this independently of whether
/// the operation is legal/custom for the given type because it may obscure
/// matching of other patterns.
virtual bool shouldFormOverflowOp(unsigned Opcode, EVT VT) const {
// TODO: The default logic is inherited from code in CodeGenPrepare.
// The opcode should not make a difference by default?
if (Opcode != ISD::UADDO)
return false;
// Allow the transform as long as we have an integer type that is not
// obviously illegal and unsupported.
if (VT.isVector())
return false;
return VT.isSimple() || !isOperationExpand(Opcode, VT);
}
// Return true if it is profitable to use a scalar input to a BUILD_VECTOR
// even if the vector itself has multiple uses.
virtual bool aggressivelyPreferBuildVectorSources(EVT VecVT) const {
return false;
}
// Return true if CodeGenPrepare should consider splitting large offset of a
// GEP to make the GEP fit into the addressing mode and can be sunk into the
// same blocks of its users.
virtual bool shouldConsiderGEPOffsetSplit() const { return false; }
//===--------------------------------------------------------------------===//
// Runtime Library hooks
//
/// Rename the default libcall routine name for the specified libcall.
void setLibcallName(RTLIB::Libcall Call, const char *Name) {
LibcallRoutineNames[Call] = Name;
}
/// Get the libcall routine name for the specified libcall.
const char *getLibcallName(RTLIB::Libcall Call) const {
return LibcallRoutineNames[Call];
}
/// Override the default CondCode to be used to test the result of the
/// comparison libcall against zero.
void setCmpLibcallCC(RTLIB::Libcall Call, ISD::CondCode CC) {
CmpLibcallCCs[Call] = CC;
}
/// Get the CondCode that's to be used to test the result of the comparison
/// libcall against zero.
ISD::CondCode getCmpLibcallCC(RTLIB::Libcall Call) const {
return CmpLibcallCCs[Call];
}
/// Set the CallingConv that should be used for the specified libcall.
void setLibcallCallingConv(RTLIB::Libcall Call, CallingConv::ID CC) {
LibcallCallingConvs[Call] = CC;
}
/// Get the CallingConv that should be used for the specified libcall.
CallingConv::ID getLibcallCallingConv(RTLIB::Libcall Call) const {
return LibcallCallingConvs[Call];
}
/// Execute target specific actions to finalize target lowering.
/// This is used to set extra flags in MachineFrameInformation and freezing
/// the set of reserved registers.
/// The default implementation just freezes the set of reserved registers.
virtual void finalizeLowering(MachineFunction &MF) const;
private:
const TargetMachine &TM;
/// Tells the code generator that the target has multiple (allocatable)
/// condition registers that can be used to store the results of comparisons
/// for use by selects and conditional branches. With multiple condition
/// registers, the code generator will not aggressively sink comparisons into
/// the blocks of their users.
bool HasMultipleConditionRegisters;
/// Tells the code generator that the target has BitExtract instructions.
/// The code generator will aggressively sink "shift"s into the blocks of
/// their users if the users will generate "and" instructions which can be
/// combined with "shift" to BitExtract instructions.
bool HasExtractBitsInsn;
/// Tells the code generator to bypass slow divide or remainder
/// instructions. For example, BypassSlowDivWidths[32,8] tells the code
/// generator to bypass 32-bit integer div/rem with an 8-bit unsigned integer
/// div/rem when the operands are positive and less than 256.
DenseMap <unsigned int, unsigned int> BypassSlowDivWidths;
/// Tells the code generator that it shouldn't generate extra flow control
/// instructions and should attempt to combine flow control instructions via
/// predication.
bool JumpIsExpensive;
/// This target prefers to use _setjmp to implement llvm.setjmp.
///
/// Defaults to false.
bool UseUnderscoreSetJmp;
/// This target prefers to use _longjmp to implement llvm.longjmp.
///
/// Defaults to false.
bool UseUnderscoreLongJmp;
/// Information about the contents of the high-bits in boolean values held in
/// a type wider than i1. See getBooleanContents.
BooleanContent BooleanContents;
/// Information about the contents of the high-bits in boolean values held in
/// a type wider than i1. See getBooleanContents.
BooleanContent BooleanFloatContents;
/// Information about the contents of the high-bits in boolean vector values
/// when the element type is wider than i1. See getBooleanContents.
BooleanContent BooleanVectorContents;
/// The target scheduling preference: shortest possible total cycles or lowest
/// register usage.
Sched::Preference SchedPreferenceInfo;
/// The size, in bytes, of the target's jmp_buf buffers
unsigned JumpBufSize;
/// The alignment, in bytes, of the target's jmp_buf buffers
unsigned JumpBufAlignment;
/// The minimum alignment that any argument on the stack needs to have.
unsigned MinStackArgumentAlignment;
/// The minimum function alignment (used when optimizing for size, and to
/// prevent explicitly provided alignment from leading to incorrect code).
unsigned MinFunctionAlignment;
/// The preferred function alignment (used when alignment unspecified and
/// optimizing for speed).
unsigned PrefFunctionAlignment;
/// The preferred loop alignment.
unsigned PrefLoopAlignment;
/// Size in bits of the maximum atomics size the backend supports.
/// Accesses larger than this will be expanded by AtomicExpandPass.
unsigned MaxAtomicSizeInBitsSupported;
/// Size in bits of the minimum cmpxchg or ll/sc operation the
/// backend supports.
unsigned MinCmpXchgSizeInBits;
/// This indicates if the target supports unaligned atomic operations.
bool SupportsUnalignedAtomics;
/// If set to a physical register, this specifies the register that
/// llvm.savestack/llvm.restorestack should save and restore.
unsigned StackPointerRegisterToSaveRestore;
/// This indicates the default register class to use for each ValueType the
/// target supports natively.
const TargetRegisterClass *RegClassForVT[MVT::LAST_VALUETYPE];
unsigned char NumRegistersForVT[MVT::LAST_VALUETYPE];
MVT RegisterTypeForVT[MVT::LAST_VALUETYPE];
/// This indicates the "representative" register class to use for each
/// ValueType the target supports natively. This information is used by the
/// scheduler to track register pressure. By default, the representative
/// register class is the largest legal super-reg register class of the
/// register class of the specified type. e.g. On x86, i8, i16, and i32's
/// representative class would be GR32.
const TargetRegisterClass *RepRegClassForVT[MVT::LAST_VALUETYPE];
/// This indicates the "cost" of the "representative" register class for each
/// ValueType. The cost is used by the scheduler to approximate register
/// pressure.
uint8_t RepRegClassCostForVT[MVT::LAST_VALUETYPE];
/// For any value types we are promoting or expanding, this contains the value
/// type that we are changing to. For Expanded types, this contains one step
/// of the expand (e.g. i64 -> i32), even if there are multiple steps required
/// (e.g. i64 -> i16). For types natively supported by the system, this holds
/// the same type (e.g. i32 -> i32).
MVT TransformToType[MVT::LAST_VALUETYPE];
/// For each operation and each value type, keep a LegalizeAction that
/// indicates how instruction selection should deal with the operation. Most
/// operations are Legal (aka, supported natively by the target), but
/// operations that are not should be described. Note that operations on
/// non-legal value types are not described here.
LegalizeAction OpActions[MVT::LAST_VALUETYPE][ISD::BUILTIN_OP_END];
/// For each load extension type and each value type, keep a LegalizeAction
/// that indicates how instruction selection should deal with a load of a
/// specific value type and extension type. Uses 4-bits to store the action
/// for each of the 4 load ext types.
uint16_t LoadExtActions[MVT::LAST_VALUETYPE][MVT::LAST_VALUETYPE];
/// For each value type pair keep a LegalizeAction that indicates whether a
/// truncating store of a specific value type and truncating type is legal.
LegalizeAction TruncStoreActions[MVT::LAST_VALUETYPE][MVT::LAST_VALUETYPE];
/// For each indexed mode and each value type, keep a pair of LegalizeAction
/// that indicates how instruction selection should deal with the load /
/// store.
///
/// The first dimension is the value_type for the reference. The second
/// dimension represents the various modes for load store.
uint8_t IndexedModeActions[MVT::LAST_VALUETYPE][ISD::LAST_INDEXED_MODE];
/// For each condition code (ISD::CondCode) keep a LegalizeAction that
/// indicates how instruction selection should deal with the condition code.
///
/// Because each CC action takes up 4 bits, we need to have the array size be
/// large enough to fit all of the value types. This can be done by rounding
/// up the MVT::LAST_VALUETYPE value to the next multiple of 8.
uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 7) / 8];
protected:
ValueTypeActionImpl ValueTypeActions;
private:
LegalizeKind getTypeConversion(LLVMContext &Context, EVT VT) const;
/// Targets can specify ISD nodes that they would like PerformDAGCombine
/// callbacks for by calling setTargetDAGCombine(), which sets a bit in this
/// array.
unsigned char
TargetDAGCombineArray[(ISD::BUILTIN_OP_END+CHAR_BIT-1)/CHAR_BIT];
/// For operations that must be promoted to a specific type, this holds the
/// destination type. This map should be sparse, so don't hold it as an
/// array.
///
/// Targets add entries to this map with AddPromotedToType(..), clients access
/// this with getTypeToPromoteTo(..).
std::map<std::pair<unsigned, MVT::SimpleValueType>, MVT::SimpleValueType>
PromoteToType;
/// Stores the name each libcall.
const char *LibcallRoutineNames[RTLIB::UNKNOWN_LIBCALL + 1];
/// The ISD::CondCode that should be used to test the result of each of the
/// comparison libcall against zero.
ISD::CondCode CmpLibcallCCs[RTLIB::UNKNOWN_LIBCALL];
/// Stores the CallingConv that should be used for each libcall.
CallingConv::ID LibcallCallingConvs[RTLIB::UNKNOWN_LIBCALL];
/// Set default libcall names and calling conventions.
void InitLibcalls(const Triple &TT);
protected:
/// Return true if the extension represented by \p I is free.
/// \pre \p I is a sign, zero, or fp extension and
/// is[Z|FP]ExtFree of the related types is not true.
virtual bool isExtFreeImpl(const Instruction *I) const { return false; }
/// Depth that GatherAllAliases should should continue looking for chain
/// dependencies when trying to find a more preferable chain. As an
/// approximation, this should be more than the number of consecutive stores
/// expected to be merged.
unsigned GatherAllAliasesMaxDepth;
/// Specify maximum number of store instructions per memset call.
///
/// When lowering \@llvm.memset this field specifies the maximum number of
/// store operations that may be substituted for the call to memset. Targets
/// must set this value based on the cost threshold for that target. Targets
/// should assume that the memset will be done using as many of the largest
/// store operations first, followed by smaller ones, if necessary, per
/// alignment restrictions. For example, storing 9 bytes on a 32-bit machine
/// with 16-bit alignment would result in four 2-byte stores and one 1-byte
/// store. This only applies to setting a constant array of a constant size.
unsigned MaxStoresPerMemset;
/// Maximum number of stores operations that may be substituted for the call
/// to memset, used for functions with OptSize attribute.
unsigned MaxStoresPerMemsetOptSize;
/// Specify maximum bytes of store instructions per memcpy call.
///
/// When lowering \@llvm.memcpy this field specifies the maximum number of
/// store operations that may be substituted for a call to memcpy. Targets
/// must set this value based on the cost threshold for that target. Targets
/// should assume that the memcpy will be done using as many of the largest
/// store operations first, followed by smaller ones, if necessary, per
/// alignment restrictions. For example, storing 7 bytes on a 32-bit machine
/// with 32-bit alignment would result in one 4-byte store, a one 2-byte store
/// and one 1-byte store. This only applies to copying a constant array of
/// constant size.
unsigned MaxStoresPerMemcpy;
/// \brief Specify max number of store instructions to glue in inlined memcpy.
///
/// When memcpy is inlined based on MaxStoresPerMemcpy, specify maximum number
/// of store instructions to keep together. This helps in pairing and
// vectorization later on.
unsigned MaxGluedStoresPerMemcpy = 0;
/// Maximum number of store operations that may be substituted for a call to
/// memcpy, used for functions with OptSize attribute.
unsigned MaxStoresPerMemcpyOptSize;
unsigned MaxLoadsPerMemcmp;
unsigned MaxLoadsPerMemcmpOptSize;
/// Specify maximum bytes of store instructions per memmove call.
///
/// When lowering \@llvm.memmove this field specifies the maximum number of
/// store instructions that may be substituted for a call to memmove. Targets
/// must set this value based on the cost threshold for that target. Targets
/// should assume that the memmove will be done using as many of the largest
/// store operations first, followed by smaller ones, if necessary, per
/// alignment restrictions. For example, moving 9 bytes on a 32-bit machine
/// with 8-bit alignment would result in nine 1-byte stores. This only
/// applies to copying a constant array of constant size.
unsigned MaxStoresPerMemmove;
/// Maximum number of store instructions that may be substituted for a call to
/// memmove, used for functions with OptSize attribute.
unsigned MaxStoresPerMemmoveOptSize;
/// Tells the code generator that select is more expensive than a branch if
/// the branch is usually predicted right.
bool PredictableSelectIsExpensive;
/// \see enableExtLdPromotion.
bool EnableExtLdPromotion;
/// Return true if the value types that can be represented by the specified
/// register class are all legal.
bool isLegalRC(const TargetRegisterInfo &TRI,
const TargetRegisterClass &RC) const;
/// Replace/modify any TargetFrameIndex operands with a targte-dependent
/// sequence of memory operands that is recognized by PrologEpilogInserter.
MachineBasicBlock *emitPatchPoint(MachineInstr &MI,
MachineBasicBlock *MBB) const;
/// Replace/modify the XRay custom event operands with target-dependent
/// details.
MachineBasicBlock *emitXRayCustomEvent(MachineInstr &MI,
MachineBasicBlock *MBB) const;
/// Replace/modify the XRay typed event operands with target-dependent
/// details.
MachineBasicBlock *emitXRayTypedEvent(MachineInstr &MI,
MachineBasicBlock *MBB) const;
};
/// This class defines information used to lower LLVM code to legal SelectionDAG
/// operators that the target instruction selector can accept natively.
///
/// This class also defines callbacks that targets must implement to lower
/// target-specific constructs to SelectionDAG operators.
class TargetLowering : public TargetLoweringBase {
public:
struct DAGCombinerInfo;
TargetLowering(const TargetLowering &) = delete;
TargetLowering &operator=(const TargetLowering &) = delete;
/// NOTE: The TargetMachine owns TLOF.
explicit TargetLowering(const TargetMachine &TM);
bool isPositionIndependent() const;
virtual bool isSDNodeSourceOfDivergence(const SDNode *N,
FunctionLoweringInfo *FLI,
LegacyDivergenceAnalysis *DA) const {
return false;
}
virtual bool isSDNodeAlwaysUniform(const SDNode * N) const {
return false;
}
/// Returns true by value, base pointer and offset pointer and addressing mode
/// by reference if the node's address can be legally represented as
/// pre-indexed load / store address.
virtual bool getPreIndexedAddressParts(SDNode * /*N*/, SDValue &/*Base*/,
SDValue &/*Offset*/,
ISD::MemIndexedMode &/*AM*/,
SelectionDAG &/*DAG*/) const {
return false;
}
/// Returns true by value, base pointer and offset pointer and addressing mode
/// by reference if this node can be combined with a load / store to form a
/// post-indexed load / store.
virtual bool getPostIndexedAddressParts(SDNode * /*N*/, SDNode * /*Op*/,
SDValue &/*Base*/,
SDValue &/*Offset*/,
ISD::MemIndexedMode &/*AM*/,
SelectionDAG &/*DAG*/) const {
return false;
}
/// Return the entry encoding for a jump table in the current function. The
/// returned value is a member of the MachineJumpTableInfo::JTEntryKind enum.
virtual unsigned getJumpTableEncoding() const;
virtual const MCExpr *
LowerCustomJumpTableEntry(const MachineJumpTableInfo * /*MJTI*/,
const MachineBasicBlock * /*MBB*/, unsigned /*uid*/,
MCContext &/*Ctx*/) const {
llvm_unreachable("Need to implement this hook if target has custom JTIs");
}
/// Returns relocation base for the given PIC jumptable.
virtual SDValue getPICJumpTableRelocBase(SDValue Table,
SelectionDAG &DAG) const;
/// This returns the relocation base for the given PIC jumptable, the same as
/// getPICJumpTableRelocBase, but as an MCExpr.
virtual const MCExpr *
getPICJumpTableRelocBaseExpr(const MachineFunction *MF,
unsigned JTI, MCContext &Ctx) const;
/// Return true if folding a constant offset with the given GlobalAddress is
/// legal. It is frequently not legal in PIC relocation models.
virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const;
bool isInTailCallPosition(SelectionDAG &DAG, SDNode *Node,
SDValue &Chain) const;
void softenSetCCOperands(SelectionDAG &DAG, EVT VT, SDValue &NewLHS,
SDValue &NewRHS, ISD::CondCode &CCCode,
const SDLoc &DL) const;
/// Returns a pair of (return value, chain).
/// It is an error to pass RTLIB::UNKNOWN_LIBCALL as \p LC.
std::pair<SDValue, SDValue> makeLibCall(
SelectionDAG &DAG, RTLIB::Libcall LC, EVT RetVT, ArrayRef<SDValue> Ops,
bool isSigned, const SDLoc &dl, bool doesNotReturn = false,
bool isReturnValueUsed = true, bool isPostTypeLegalization = false) const;
/// Check whether parameters to a call that are passed in callee saved
/// registers are the same as from the calling function. This needs to be
/// checked for tail call eligibility.
bool parametersInCSRMatch(const MachineRegisterInfo &MRI,
const uint32_t *CallerPreservedMask,
const SmallVectorImpl<CCValAssign> &ArgLocs,
const SmallVectorImpl<SDValue> &OutVals) const;
//===--------------------------------------------------------------------===//
// TargetLowering Optimization Methods
//
/// A convenience struct that encapsulates a DAG, and two SDValues for
/// returning information from TargetLowering to its clients that want to
/// combine.
struct TargetLoweringOpt {
SelectionDAG &DAG;
bool LegalTys;
bool LegalOps;
SDValue Old;
SDValue New;
explicit TargetLoweringOpt(SelectionDAG &InDAG,
bool LT, bool LO) :
DAG(InDAG), LegalTys(LT), LegalOps(LO) {}
bool LegalTypes() const { return LegalTys; }
bool LegalOperations() const { return LegalOps; }
bool CombineTo(SDValue O, SDValue N) {
Old = O;
New = N;
return true;
}
};
/// Determines the optimal series of memory ops to replace the memset / memcpy.
/// Return true if the number of memory ops is below the threshold (Limit).
/// It returns the types of the sequence of memory ops to perform
/// memset / memcpy by reference.
bool findOptimalMemOpLowering(std::vector<EVT> &MemOps,
unsigned Limit, uint64_t Size,
unsigned DstAlign, unsigned SrcAlign,
bool IsMemset,
bool ZeroMemset,
bool MemcpyStrSrc,
bool AllowOverlap,
unsigned DstAS, unsigned SrcAS,
const AttributeList &FuncAttributes) const;
/// Check to see if the specified operand of the specified instruction is a
/// constant integer. If so, check to see if there are any bits set in the
/// constant that are not demanded. If so, shrink the constant and return
/// true.
bool ShrinkDemandedConstant(SDValue Op, const APInt &Demanded,
TargetLoweringOpt &TLO) const;
// Target hook to do target-specific const optimization, which is called by
// ShrinkDemandedConstant. This function should return true if the target
// doesn't want ShrinkDemandedConstant to further optimize the constant.
virtual bool targetShrinkDemandedConstant(SDValue Op, const APInt &Demanded,
TargetLoweringOpt &TLO) const {
return false;
}
/// Convert x+y to (VT)((SmallVT)x+(SmallVT)y) if the casts are free. This
/// uses isZExtFree and ZERO_EXTEND for the widening cast, but it could be
/// generalized for targets with other types of implicit widening casts.
bool ShrinkDemandedOp(SDValue Op, unsigned BitWidth, const APInt &Demanded,
TargetLoweringOpt &TLO) const;
/// Look at Op. At this point, we know that only the DemandedBits bits of the
/// result of Op are ever used downstream. If we can use this information to
/// simplify Op, create a new simplified DAG node and return true, returning
/// the original and new nodes in Old and New. Otherwise, analyze the
/// expression and return a mask of KnownOne and KnownZero bits for the
/// expression (used to simplify the caller). The KnownZero/One bits may only
/// be accurate for those bits in the Demanded masks.
/// \p AssumeSingleUse When this parameter is true, this function will
/// attempt to simplify \p Op even if there are multiple uses.
/// Callers are responsible for correctly updating the DAG based on the
/// results of this function, because simply replacing replacing TLO.Old
/// with TLO.New will be incorrect when this parameter is true and TLO.Old
/// has multiple uses.
bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits,
const APInt &DemandedElts, KnownBits &Known,
TargetLoweringOpt &TLO, unsigned Depth = 0,
bool AssumeSingleUse = false) const;
/// Helper wrapper around SimplifyDemandedBits, demanding all elements.
/// Adds Op back to the worklist upon success.
bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits,
KnownBits &Known, TargetLoweringOpt &TLO,
unsigned Depth = 0,
bool AssumeSingleUse = false) const;
/// Helper wrapper around SimplifyDemandedBits.
/// Adds Op back to the worklist upon success.
bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedMask,
DAGCombinerInfo &DCI) const;
/// Look at Vector Op. At this point, we know that only the DemandedElts
/// elements of the result of Op are ever used downstream. If we can use
/// this information to simplify Op, create a new simplified DAG node and
/// return true, storing the original and new nodes in TLO.
/// Otherwise, analyze the expression and return a mask of KnownUndef and
/// KnownZero elements for the expression (used to simplify the caller).
/// The KnownUndef/Zero elements may only be accurate for those bits
/// in the DemandedMask.
/// \p AssumeSingleUse When this parameter is true, this function will
/// attempt to simplify \p Op even if there are multiple uses.
/// Callers are responsible for correctly updating the DAG based on the
/// results of this function, because simply replacing replacing TLO.Old
/// with TLO.New will be incorrect when this parameter is true and TLO.Old
/// has multiple uses.
bool SimplifyDemandedVectorElts(SDValue Op, const APInt &DemandedEltMask,
APInt &KnownUndef, APInt &KnownZero,
TargetLoweringOpt &TLO, unsigned Depth = 0,
bool AssumeSingleUse = false) const;
/// Helper wrapper around SimplifyDemandedVectorElts.
/// Adds Op back to the worklist upon success.
bool SimplifyDemandedVectorElts(SDValue Op, const APInt &DemandedElts,
APInt &KnownUndef, APInt &KnownZero,
DAGCombinerInfo &DCI) const;
/// Determine which of the bits specified in Mask are known to be either zero
/// or one and return them in the KnownZero/KnownOne bitsets. The DemandedElts
/// argument allows us to only collect the known bits that are shared by the
/// requested vector elements.
virtual void computeKnownBitsForTargetNode(const SDValue Op,
KnownBits &Known,
const APInt &DemandedElts,
const SelectionDAG &DAG,
unsigned Depth = 0) const;
/// Determine which of the bits of FrameIndex \p FIOp are known to be 0.
/// Default implementation computes low bits based on alignment
/// information. This should preserve known bits passed into it.
virtual void computeKnownBitsForFrameIndex(const SDValue FIOp,
KnownBits &Known,
const APInt &DemandedElts,
const SelectionDAG &DAG,
unsigned Depth = 0) const;
/// This method can be implemented by targets that want to expose additional
/// information about sign bits to the DAG Combiner. The DemandedElts
/// argument allows us to only collect the minimum sign bits that are shared
/// by the requested vector elements.
virtual unsigned ComputeNumSignBitsForTargetNode(SDValue Op,
const APInt &DemandedElts,
const SelectionDAG &DAG,
unsigned Depth = 0) const;
/// Attempt to simplify any target nodes based on the demanded vector
/// elements, returning true on success. Otherwise, analyze the expression and
/// return a mask of KnownUndef and KnownZero elements for the expression
/// (used to simplify the caller). The KnownUndef/Zero elements may only be
/// accurate for those bits in the DemandedMask.
virtual bool SimplifyDemandedVectorEltsForTargetNode(
SDValue Op, const APInt &DemandedElts, APInt &KnownUndef,
APInt &KnownZero, TargetLoweringOpt &TLO, unsigned Depth = 0) const;
/// Attempt to simplify any target nodes based on the demanded bits/elts,
/// returning true on success. Otherwise, analyze the
/// expression and return a mask of KnownOne and KnownZero bits for the
/// expression (used to simplify the caller). The KnownZero/One bits may only
/// be accurate for those bits in the Demanded masks.
virtual bool SimplifyDemandedBitsForTargetNode(SDValue Op,
const APInt &DemandedBits,
const APInt &DemandedElts,
KnownBits &Known,
TargetLoweringOpt &TLO,
unsigned Depth = 0) const;
/// This method returns the constant pool value that will be loaded by LD.
/// NOTE: You must check for implicit extensions of the constant by LD.
virtual const Constant *getTargetConstantFromLoad(LoadSDNode *LD) const;
/// If \p SNaN is false, \returns true if \p Op is known to never be any
/// NaN. If \p sNaN is true, returns if \p Op is known to never be a signaling
/// NaN.
virtual bool isKnownNeverNaNForTargetNode(SDValue Op,
const SelectionDAG &DAG,
bool SNaN = false,
unsigned Depth = 0) const;
struct DAGCombinerInfo {
void *DC; // The DAG Combiner object.
CombineLevel Level;
bool CalledByLegalizer;
public:
SelectionDAG &DAG;
DAGCombinerInfo(SelectionDAG &dag, CombineLevel level, bool cl, void *dc)
: DC(dc), Level(level), CalledByLegalizer(cl), DAG(dag) {}
bool isBeforeLegalize() const { return Level == BeforeLegalizeTypes; }
bool isBeforeLegalizeOps() const { return Level < AfterLegalizeVectorOps; }
bool isAfterLegalizeDAG() const {
return Level == AfterLegalizeDAG;
}
CombineLevel getDAGCombineLevel() { return Level; }
bool isCalledByLegalizer() const { return CalledByLegalizer; }
void AddToWorklist(SDNode *N);
SDValue CombineTo(SDNode *N, ArrayRef<SDValue> To, bool AddTo = true);
SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true);
SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo = true);
void CommitTargetLoweringOpt(const TargetLoweringOpt &TLO);
};
/// Return if the N is a constant or constant vector equal to the true value
/// from getBooleanContents().
bool isConstTrueVal(const SDNode *N) const;
/// Return if the N is a constant or constant vector equal to the false value
/// from getBooleanContents().
bool isConstFalseVal(const SDNode *N) const;
/// Return if \p N is a True value when extended to \p VT.
bool isExtendedTrueVal(const ConstantSDNode *N, EVT VT, bool SExt) const;
/// Try to simplify a setcc built with the specified operands and cc. If it is
/// unable to simplify it, return a null SDValue.
SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
bool foldBooleans, DAGCombinerInfo &DCI,
const SDLoc &dl) const;
// For targets which wrap address, unwrap for analysis.
virtual SDValue unwrapAddress(SDValue N) const { return N; }
/// Returns true (and the GlobalValue and the offset) if the node is a
/// GlobalAddress + offset.
virtual bool
isGAPlusOffset(SDNode *N, const GlobalValue* &GA, int64_t &Offset) const;
/// This method will be invoked for all target nodes and for any
/// target-independent nodes that the target has registered with invoke it
/// for.
///
/// The semantics are as follows:
/// Return Value:
/// SDValue.Val == 0 - No change was made
/// SDValue.Val == N - N was replaced, is dead, and is already handled.
/// otherwise - N should be replaced by the returned Operand.
///
/// In addition, methods provided by DAGCombinerInfo may be used to perform
/// more complex transformations.
///
virtual SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const;
/// Return true if it is profitable to move this shift by a constant amount
/// though its operand, adjusting any immediate operands as necessary to
/// preserve semantics. This transformation may not be desirable if it
/// disrupts a particularly auspicious target-specific tree (e.g. bitfield
/// extraction in AArch64). By default, it returns true.
///
/// @param N the shift node
/// @param Level the current DAGCombine legalization level.
virtual bool isDesirableToCommuteWithShift(const SDNode *N,
CombineLevel Level) const {
return true;
}
// Return true if it is profitable to combine a BUILD_VECTOR with a stride-pattern
// to a shuffle and a truncate.
// Example of such a combine:
// v4i32 build_vector((extract_elt V, 1),
// (extract_elt V, 3),
// (extract_elt V, 5),
// (extract_elt V, 7))
// -->
// v4i32 truncate (bitcast (shuffle<1,u,3,u,5,u,7,u> V, u) to v4i64)
virtual bool isDesirableToCombineBuildVectorToShuffleTruncate(
ArrayRef<int> ShuffleMask, EVT SrcVT, EVT TruncVT) const {
return false;
}
/// Return true if the target has native support for the specified value type
/// and it is 'desirable' to use the type for the given node type. e.g. On x86
/// i16 is legal, but undesirable since i16 instruction encodings are longer
/// and some i16 instructions are slow.
virtual bool isTypeDesirableForOp(unsigned /*Opc*/, EVT VT) const {
// By default, assume all legal types are desirable.
return isTypeLegal(VT);
}
/// Return true if it is profitable for dag combiner to transform a floating
/// point op of specified opcode to a equivalent op of an integer
/// type. e.g. f32 load -> i32 load can be profitable on ARM.
virtual bool isDesirableToTransformToIntegerOp(unsigned /*Opc*/,
EVT /*VT*/) const {
return false;
}
/// This method query the target whether it is beneficial for dag combiner to
/// promote the specified node. If true, it should return the desired
/// promotion type by reference.
virtual bool IsDesirableToPromoteOp(SDValue /*Op*/, EVT &/*PVT*/) const {
return false;
}
/// Return true if the target supports swifterror attribute. It optimizes
/// loads and stores to reading and writing a specific register.
virtual bool supportSwiftError() const {
return false;
}
/// Return true if the target supports that a subset of CSRs for the given
/// machine function is handled explicitly via copies.
virtual bool supportSplitCSR(MachineFunction *MF) const {
return false;
}
/// Perform necessary initialization to handle a subset of CSRs explicitly
/// via copies. This function is called at the beginning of instruction
/// selection.
virtual void initializeSplitCSR(MachineBasicBlock *Entry) const {
llvm_unreachable("Not Implemented");
}
/// Insert explicit copies in entry and exit blocks. We copy a subset of
/// CSRs to virtual registers in the entry block, and copy them back to
/// physical registers in the exit blocks. This function is called at the end
/// of instruction selection.
virtual void insertCopiesSplitCSR(
MachineBasicBlock *Entry,
const SmallVectorImpl<MachineBasicBlock *> &Exits) const {
llvm_unreachable("Not Implemented");
}
//===--------------------------------------------------------------------===//
// Lowering methods - These methods must be implemented by targets so that
// the SelectionDAGBuilder code knows how to lower these.
//
/// This hook must be implemented to lower the incoming (formal) arguments,
/// described by the Ins array, into the specified DAG. The implementation
/// should fill in the InVals array with legal-type argument values, and
/// return the resulting token chain value.
virtual SDValue LowerFormalArguments(
SDValue /*Chain*/, CallingConv::ID /*CallConv*/, bool /*isVarArg*/,
const SmallVectorImpl<ISD::InputArg> & /*Ins*/, const SDLoc & /*dl*/,
SelectionDAG & /*DAG*/, SmallVectorImpl<SDValue> & /*InVals*/) const {
llvm_unreachable("Not Implemented");
}
/// This structure contains all information that is necessary for lowering
/// calls. It is passed to TLI::LowerCallTo when the SelectionDAG builder
/// needs to lower a call, and targets will see this struct in their LowerCall
/// implementation.
struct CallLoweringInfo {
SDValue Chain;
Type *RetTy = nullptr;
bool RetSExt : 1;
bool RetZExt : 1;
bool IsVarArg : 1;
bool IsInReg : 1;
bool DoesNotReturn : 1;
bool IsReturnValueUsed : 1;
bool IsConvergent : 1;
bool IsPatchPoint : 1;
// IsTailCall should be modified by implementations of
// TargetLowering::LowerCall that perform tail call conversions.
bool IsTailCall = false;
// Is Call lowering done post SelectionDAG type legalization.
bool IsPostTypeLegalization = false;
unsigned NumFixedArgs = -1;
CallingConv::ID CallConv = CallingConv::C;
SDValue Callee;
ArgListTy Args;
SelectionDAG &DAG;
SDLoc DL;
ImmutableCallSite CS;
SmallVector<ISD::OutputArg, 32> Outs;
SmallVector<SDValue, 32> OutVals;
SmallVector<ISD::InputArg, 32> Ins;
SmallVector<SDValue, 4> InVals;
CallLoweringInfo(SelectionDAG &DAG)
: RetSExt(false), RetZExt(false), IsVarArg(false), IsInReg(false),
DoesNotReturn(false), IsReturnValueUsed(true), IsConvergent(false),
IsPatchPoint(false), DAG(DAG) {}
CallLoweringInfo &setDebugLoc(const SDLoc &dl) {
DL = dl;
return *this;
}
CallLoweringInfo &setChain(SDValue InChain) {
Chain = InChain;
return *this;
}
// setCallee with target/module-specific attributes
CallLoweringInfo &setLibCallee(CallingConv::ID CC, Type *ResultType,
SDValue Target, ArgListTy &&ArgsList) {
RetTy = ResultType;
Callee = Target;
CallConv = CC;
NumFixedArgs = ArgsList.size();
Args = std::move(ArgsList);
DAG.getTargetLoweringInfo().markLibCallAttributes(
&(DAG.getMachineFunction()), CC, Args);
return *this;
}
CallLoweringInfo &setCallee(CallingConv::ID CC, Type *ResultType,
SDValue Target, ArgListTy &&ArgsList) {
RetTy = ResultType;
Callee = Target;
CallConv = CC;
NumFixedArgs = ArgsList.size();
Args = std::move(ArgsList);
return *this;
}
CallLoweringInfo &setCallee(Type *ResultType, FunctionType *FTy,
SDValue Target, ArgListTy &&ArgsList,
ImmutableCallSite Call) {
RetTy = ResultType;
IsInReg = Call.hasRetAttr(Attribute::InReg);
DoesNotReturn =
Call.doesNotReturn() ||
(!Call.isInvoke() &&
isa<UnreachableInst>(Call.getInstruction()->getNextNode()));
IsVarArg = FTy->isVarArg();
IsReturnValueUsed = !Call.getInstruction()->use_empty();
RetSExt = Call.hasRetAttr(Attribute::SExt);
RetZExt = Call.hasRetAttr(Attribute::ZExt);
Callee = Target;
CallConv = Call.getCallingConv();
NumFixedArgs = FTy->getNumParams();
Args = std::move(ArgsList);
CS = Call;
return *this;
}
CallLoweringInfo &setInRegister(bool Value = true) {
IsInReg = Value;
return *this;
}
CallLoweringInfo &setNoReturn(bool Value = true) {
DoesNotReturn = Value;
return *this;
}
CallLoweringInfo &setVarArg(bool Value = true) {
IsVarArg = Value;
return *this;
}
CallLoweringInfo &setTailCall(bool Value = true) {
IsTailCall = Value;
return *this;
}
CallLoweringInfo &setDiscardResult(bool Value = true) {
IsReturnValueUsed = !Value;
return *this;
}
CallLoweringInfo &setConvergent(bool Value = true) {
IsConvergent = Value;
return *this;
}
CallLoweringInfo &setSExtResult(bool Value = true) {
RetSExt = Value;
return *this;
}
CallLoweringInfo &setZExtResult(bool Value = true) {
RetZExt = Value;
return *this;
}
CallLoweringInfo &setIsPatchPoint(bool Value = true) {
IsPatchPoint = Value;
return *this;
}
CallLoweringInfo &setIsPostTypeLegalization(bool Value=true) {
IsPostTypeLegalization = Value;
return *this;
}
ArgListTy &getArgs() {
return Args;
}
};
/// This function lowers an abstract call to a function into an actual call.
/// This returns a pair of operands. The first element is the return value
/// for the function (if RetTy is not VoidTy). The second element is the
/// outgoing token chain. It calls LowerCall to do the actual lowering.
std::pair<SDValue, SDValue> LowerCallTo(CallLoweringInfo &CLI) const;
/// This hook must be implemented to lower calls into the specified
/// DAG. The outgoing arguments to the call are described by the Outs array,
/// and the values to be returned by the call are described by the Ins
/// array. The implementation should fill in the InVals array with legal-type
/// return values from the call, and return the resulting token chain value.
virtual SDValue
LowerCall(CallLoweringInfo &/*CLI*/,
SmallVectorImpl<SDValue> &/*InVals*/) const {
llvm_unreachable("Not Implemented");
}
/// Target-specific cleanup for formal ByVal parameters.
virtual void HandleByVal(CCState *, unsigned &, unsigned) const {}
/// This hook should be implemented to check whether the return values
/// described by the Outs array can fit into the return registers. If false
/// is returned, an sret-demotion is performed.
virtual bool CanLowerReturn(CallingConv::ID /*CallConv*/,
MachineFunction &/*MF*/, bool /*isVarArg*/,
const SmallVectorImpl<ISD::OutputArg> &/*Outs*/,
LLVMContext &/*Context*/) const
{
// Return true by default to get preexisting behavior.
return true;
}
/// This hook must be implemented to lower outgoing return values, described
/// by the Outs array, into the specified DAG. The implementation should
/// return the resulting token chain value.
virtual SDValue LowerReturn(SDValue /*Chain*/, CallingConv::ID /*CallConv*/,
bool /*isVarArg*/,
const SmallVectorImpl<ISD::OutputArg> & /*Outs*/,
const SmallVectorImpl<SDValue> & /*OutVals*/,
const SDLoc & /*dl*/,
SelectionDAG & /*DAG*/) const {
llvm_unreachable("Not Implemented");
}
/// Return true if result of the specified node is used by a return node
/// only. It also compute and return the input chain for the tail call.
///
/// This is used to determine whether it is possible to codegen a libcall as
/// tail call at legalization time.
virtual bool isUsedByReturnOnly(SDNode *, SDValue &/*Chain*/) const {
return false;
}
/// Return true if the target may be able emit the call instruction as a tail
/// call. This is used by optimization passes to determine if it's profitable
/// to duplicate return instructions to enable tailcall optimization.
virtual bool mayBeEmittedAsTailCall(const CallInst *) const {
return false;
}
/// Return the builtin name for the __builtin___clear_cache intrinsic
/// Default is to invoke the clear cache library call
virtual const char * getClearCacheBuiltinName() const {
return "__clear_cache";
}
/// Return the register ID of the name passed in. Used by named register
/// global variables extension. There is no target-independent behaviour
/// so the default action is to bail.
virtual unsigned getRegisterByName(const char* RegName, EVT VT,
SelectionDAG &DAG) const {
report_fatal_error("Named registers not implemented for this target");
}
/// Return the type that should be used to zero or sign extend a
/// zeroext/signext integer return value. FIXME: Some C calling conventions
/// require the return type to be promoted, but this is not true all the time,
/// e.g. i1/i8/i16 on x86/x86_64. It is also not necessary for non-C calling
/// conventions. The frontend should handle this and include all of the
/// necessary information.
virtual EVT getTypeForExtReturn(LLVMContext &Context, EVT VT,
ISD::NodeType /*ExtendKind*/) const {
EVT MinVT = getRegisterType(Context, MVT::i32);
return VT.bitsLT(MinVT) ? MinVT : VT;
}
/// For some targets, an LLVM struct type must be broken down into multiple
/// simple types, but the calling convention specifies that the entire struct
/// must be passed in a block of consecutive registers.
virtual bool
functionArgumentNeedsConsecutiveRegisters(Type *Ty, CallingConv::ID CallConv,
bool isVarArg) const {
return false;
}
/// For most targets, an LLVM type must be broken down into multiple
/// smaller types. Usually the halves are ordered according to the endianness
/// but for some platform that would break. So this method will default to
/// matching the endianness but can be overridden.
virtual bool
shouldSplitFunctionArgumentsAsLittleEndian(const DataLayout &DL) const {
return DL.isLittleEndian();
}
/// Returns a 0 terminated array of registers that can be safely used as
/// scratch registers.
virtual const MCPhysReg *getScratchRegisters(CallingConv::ID CC) const {
return nullptr;
}
/// This callback is used to prepare for a volatile or atomic load.
/// It takes a chain node as input and returns the chain for the load itself.
///
/// Having a callback like this is necessary for targets like SystemZ,
/// which allows a CPU to reuse the result of a previous load indefinitely,
/// even if a cache-coherent store is performed by another CPU. The default
/// implementation does nothing.
virtual SDValue prepareVolatileOrAtomicLoad(SDValue Chain, const SDLoc &DL,
SelectionDAG &DAG) const {
return Chain;
}
/// This callback is used to inspect load/store instructions and add
/// target-specific MachineMemOperand flags to them. The default
/// implementation does nothing.
virtual MachineMemOperand::Flags getMMOFlags(const Instruction &I) const {
return MachineMemOperand::MONone;
}
/// This callback is invoked by the type legalizer to legalize nodes with an
/// illegal operand type but legal result types. It replaces the
/// LowerOperation callback in the type Legalizer. The reason we can not do
/// away with LowerOperation entirely is that LegalizeDAG isn't yet ready to
/// use this callback.
///
/// TODO: Consider merging with ReplaceNodeResults.
///
/// The target places new result values for the node in Results (their number
/// and types must exactly match those of the original return values of
/// the node), or leaves Results empty, which indicates that the node is not
/// to be custom lowered after all.
/// The default implementation calls LowerOperation.
virtual void LowerOperationWrapper(SDNode *N,
SmallVectorImpl<SDValue> &Results,
SelectionDAG &DAG) const;
/// This callback is invoked for operations that are unsupported by the
/// target, which are registered to use 'custom' lowering, and whose defined
/// values are all legal. If the target has no operations that require custom
/// lowering, it need not implement this. The default implementation of this
/// aborts.
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const;
/// This callback is invoked when a node result type is illegal for the
/// target, and the operation was registered to use 'custom' lowering for that
/// result type. The target places new result values for the node in Results
/// (their number and types must exactly match those of the original return
/// values of the node), or leaves Results empty, which indicates that the
/// node is not to be custom lowered after all.
///
/// If the target has no operations that require custom lowering, it need not
/// implement this. The default implementation aborts.
virtual void ReplaceNodeResults(SDNode * /*N*/,
SmallVectorImpl<SDValue> &/*Results*/,
SelectionDAG &/*DAG*/) const {
llvm_unreachable("ReplaceNodeResults not implemented for this target!");
}
/// This method returns the name of a target specific DAG node.
virtual const char *getTargetNodeName(unsigned Opcode) const;
/// This method returns a target specific FastISel object, or null if the
/// target does not support "fast" ISel.
virtual FastISel *createFastISel(FunctionLoweringInfo &,
const TargetLibraryInfo *) const {
return nullptr;
}
bool verifyReturnAddressArgumentIsConstant(SDValue Op,
SelectionDAG &DAG) const;
//===--------------------------------------------------------------------===//
// Inline Asm Support hooks
//
/// This hook allows the target to expand an inline asm call to be explicit
/// llvm code if it wants to. This is useful for turning simple inline asms
/// into LLVM intrinsics, which gives the compiler more information about the
/// behavior of the code.
virtual bool ExpandInlineAsm(CallInst *) const {
return false;
}
enum ConstraintType {
C_Register, // Constraint represents specific register(s).
C_RegisterClass, // Constraint represents any of register(s) in class.
C_Memory, // Memory constraint.
C_Immediate, // Requires an immediate.
C_Other, // Something else.
C_Unknown // Unsupported constraint.
};
enum ConstraintWeight {
// Generic weights.
CW_Invalid = -1, // No match.
CW_Okay = 0, // Acceptable.
CW_Good = 1, // Good weight.
CW_Better = 2, // Better weight.
CW_Best = 3, // Best weight.
// Well-known weights.
CW_SpecificReg = CW_Okay, // Specific register operands.
CW_Register = CW_Good, // Register operands.
CW_Memory = CW_Better, // Memory operands.
CW_Constant = CW_Best, // Constant operand.
CW_Default = CW_Okay // Default or don't know type.
};
/// This contains information for each constraint that we are lowering.
struct AsmOperandInfo : public InlineAsm::ConstraintInfo {
/// This contains the actual string for the code, like "m". TargetLowering
/// picks the 'best' code from ConstraintInfo::Codes that most closely
/// matches the operand.
std::string ConstraintCode;
/// Information about the constraint code, e.g. Register, RegisterClass,
/// Memory, Other, Unknown.
TargetLowering::ConstraintType ConstraintType = TargetLowering::C_Unknown;
/// If this is the result output operand or a clobber, this is null,
/// otherwise it is the incoming operand to the CallInst. This gets
/// modified as the asm is processed.
Value *CallOperandVal = nullptr;
/// The ValueType for the operand value.
MVT ConstraintVT = MVT::Other;
/// Copy constructor for copying from a ConstraintInfo.
AsmOperandInfo(InlineAsm::ConstraintInfo Info)
: InlineAsm::ConstraintInfo(std::move(Info)) {}
/// Return true of this is an input operand that is a matching constraint
/// like "4".
bool isMatchingInputConstraint() const;
/// If this is an input matching constraint, this method returns the output
/// operand it matches.
unsigned getMatchedOperand() const;
};
using AsmOperandInfoVector = std::vector<AsmOperandInfo>;
/// Split up the constraint string from the inline assembly value into the
/// specific constraints and their prefixes, and also tie in the associated
/// operand values. If this returns an empty vector, and if the constraint
/// string itself isn't empty, there was an error parsing.
virtual AsmOperandInfoVector ParseConstraints(const DataLayout &DL,
const TargetRegisterInfo *TRI,
ImmutableCallSite CS) const;
/// Examine constraint type and operand type and determine a weight value.
/// The operand object must already have been set up with the operand type.
virtual ConstraintWeight getMultipleConstraintMatchWeight(
AsmOperandInfo &info, int maIndex) const;
/// Examine constraint string and operand type and determine a weight value.
/// The operand object must already have been set up with the operand type.
virtual ConstraintWeight getSingleConstraintMatchWeight(
AsmOperandInfo &info, const char *constraint) const;
/// Determines the constraint code and constraint type to use for the specific
/// AsmOperandInfo, setting OpInfo.ConstraintCode and OpInfo.ConstraintType.
/// If the actual operand being passed in is available, it can be passed in as
/// Op, otherwise an empty SDValue can be passed.
virtual void ComputeConstraintToUse(AsmOperandInfo &OpInfo,
SDValue Op,
SelectionDAG *DAG = nullptr) const;
/// Given a constraint, return the type of constraint it is for this target.
virtual ConstraintType getConstraintType(StringRef Constraint) const;
/// Given a physical register constraint (e.g. {edx}), return the register
/// number and the register class for the register.
///
/// Given a register class constraint, like 'r', if this corresponds directly
/// to an LLVM register class, return a register of 0 and the register class
/// pointer.
///
/// This should only be used for C_Register constraints. On error, this
/// returns a register number of 0 and a null register class pointer.
virtual std::pair<unsigned, const TargetRegisterClass *>
getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
StringRef Constraint, MVT VT) const;
virtual unsigned getInlineAsmMemConstraint(StringRef ConstraintCode) const {
if (ConstraintCode == "i")
return InlineAsm::Constraint_i;
else if (ConstraintCode == "m")
return InlineAsm::Constraint_m;
return InlineAsm::Constraint_Unknown;
}
/// Try to replace an X constraint, which matches anything, with another that
/// has more specific requirements based on the type of the corresponding
/// operand. This returns null if there is no replacement to make.
virtual const char *LowerXConstraint(EVT ConstraintVT) const;
/// Lower the specified operand into the Ops vector. If it is invalid, don't
/// add anything to Ops.
virtual void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
std::vector<SDValue> &Ops,
SelectionDAG &DAG) const;
// Lower custom output constraints. If invalid, return SDValue().
virtual SDValue LowerAsmOutputForConstraint(SDValue &Chain, SDValue &Flag,
SDLoc DL,
const AsmOperandInfo &OpInfo,
SelectionDAG &DAG) const;
//===--------------------------------------------------------------------===//
// Div utility functions
//
SDValue BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
SmallVectorImpl<SDNode *> &Created) const;
SDValue BuildUDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
SmallVectorImpl<SDNode *> &Created) const;
/// Targets may override this function to provide custom SDIV lowering for
/// power-of-2 denominators. If the target returns an empty SDValue, LLVM
/// assumes SDIV is expensive and replaces it with a series of other integer
/// operations.
virtual SDValue BuildSDIVPow2(SDNode *N, const APInt &Divisor,
SelectionDAG &DAG,
SmallVectorImpl<SDNode *> &Created) const;
/// Indicate whether this target prefers to combine FDIVs with the same
/// divisor. If the transform should never be done, return zero. If the
/// transform should be done, return the minimum number of divisor uses
/// that must exist.
virtual unsigned combineRepeatedFPDivisors() const {
return 0;
}
/// Hooks for building estimates in place of slower divisions and square
/// roots.
/// Return either a square root or its reciprocal estimate value for the input
/// operand.
/// \p Enabled is a ReciprocalEstimate enum with value either 'Unspecified' or
/// 'Enabled' as set by a potential default override attribute.
/// If \p RefinementSteps is 'Unspecified', the number of Newton-Raphson
/// refinement iterations required to generate a sufficient (though not
/// necessarily IEEE-754 compliant) estimate is returned in that parameter.
/// The boolean UseOneConstNR output is used to select a Newton-Raphson
/// algorithm implementation that uses either one or two constants.
/// The boolean Reciprocal is used to select whether the estimate is for the
/// square root of the input operand or the reciprocal of its square root.
/// A target may choose to implement its own refinement within this function.
/// If that's true, then return '0' as the number of RefinementSteps to avoid
/// any further refinement of the estimate.
/// An empty SDValue return means no estimate sequence can be created.
virtual SDValue getSqrtEstimate(SDValue Operand, SelectionDAG &DAG,
int Enabled, int &RefinementSteps,
bool &UseOneConstNR, bool Reciprocal) const {
return SDValue();
}
/// Return a reciprocal estimate value for the input operand.
/// \p Enabled is a ReciprocalEstimate enum with value either 'Unspecified' or
/// 'Enabled' as set by a potential default override attribute.
/// If \p RefinementSteps is 'Unspecified', the number of Newton-Raphson
/// refinement iterations required to generate a sufficient (though not
/// necessarily IEEE-754 compliant) estimate is returned in that parameter.
/// A target may choose to implement its own refinement within this function.
/// If that's true, then return '0' as the number of RefinementSteps to avoid
/// any further refinement of the estimate.
/// An empty SDValue return means no estimate sequence can be created.
virtual SDValue getRecipEstimate(SDValue Operand, SelectionDAG &DAG,
int Enabled, int &RefinementSteps) const {
return SDValue();
}
//===--------------------------------------------------------------------===//
// Legalization utility functions
//
/// Expand a MUL or [US]MUL_LOHI of n-bit values into two or four nodes,
/// respectively, each computing an n/2-bit part of the result.
/// \param Result A vector that will be filled with the parts of the result
/// in little-endian order.
/// \param LL Low bits of the LHS of the MUL. You can use this parameter
/// if you want to control how low bits are extracted from the LHS.
/// \param LH High bits of the LHS of the MUL. See LL for meaning.
/// \param RL Low bits of the RHS of the MUL. See LL for meaning
/// \param RH High bits of the RHS of the MUL. See LL for meaning.
/// \returns true if the node has been expanded, false if it has not
bool expandMUL_LOHI(unsigned Opcode, EVT VT, SDLoc dl, SDValue LHS,
SDValue RHS, SmallVectorImpl<SDValue> &Result, EVT HiLoVT,
SelectionDAG &DAG, MulExpansionKind Kind,
SDValue LL = SDValue(), SDValue LH = SDValue(),
SDValue RL = SDValue(), SDValue RH = SDValue()) const;
/// Expand a MUL into two nodes. One that computes the high bits of
/// the result and one that computes the low bits.
/// \param HiLoVT The value type to use for the Lo and Hi nodes.
/// \param LL Low bits of the LHS of the MUL. You can use this parameter
/// if you want to control how low bits are extracted from the LHS.
/// \param LH High bits of the LHS of the MUL. See LL for meaning.
/// \param RL Low bits of the RHS of the MUL. See LL for meaning
/// \param RH High bits of the RHS of the MUL. See LL for meaning.
/// \returns true if the node has been expanded. false if it has not
bool expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT,
SelectionDAG &DAG, MulExpansionKind Kind,
SDValue LL = SDValue(), SDValue LH = SDValue(),
SDValue RL = SDValue(), SDValue RH = SDValue()) const;
/// Expand funnel shift.
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandFunnelShift(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand rotations.
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandROT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand float(f32) to SINT(i64) conversion
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandFP_TO_SINT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand float to UINT conversion
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandFP_TO_UINT(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand UINT(i64) to double(f64) conversion
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandUINT_TO_FP(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand fminnum/fmaxnum into fminnum_ieee/fmaxnum_ieee with quieted inputs.
SDValue expandFMINNUM_FMAXNUM(SDNode *N, SelectionDAG &DAG) const;
/// Expand CTPOP nodes. Expands vector/scalar CTPOP nodes,
/// vector nodes can only succeed if all operations are legal/custom.
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandCTPOP(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand CTLZ/CTLZ_ZERO_UNDEF nodes. Expands vector/scalar CTLZ nodes,
/// vector nodes can only succeed if all operations are legal/custom.
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandCTLZ(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand CTTZ/CTTZ_ZERO_UNDEF nodes. Expands vector/scalar CTTZ nodes,
/// vector nodes can only succeed if all operations are legal/custom.
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandCTTZ(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Expand ABS nodes. Expands vector/scalar ABS nodes,
/// vector nodes can only succeed if all operations are legal/custom.
/// (ABS x) -> (XOR (ADD x, (SRA x, type_size)), (SRA x, type_size))
/// \param N Node to expand
/// \param Result output after conversion
/// \returns True, if the expansion was successful, false otherwise
bool expandABS(SDNode *N, SDValue &Result, SelectionDAG &DAG) const;
/// Turn load of vector type into a load of the individual elements.
/// \param LD load to expand
/// \returns MERGE_VALUEs of the scalar loads with their chains.
SDValue scalarizeVectorLoad(LoadSDNode *LD, SelectionDAG &DAG) const;
// Turn a store of a vector type into stores of the individual elements.
/// \param ST Store with a vector value type
/// \returns MERGE_VALUs of the individual store chains.
SDValue scalarizeVectorStore(StoreSDNode *ST, SelectionDAG &DAG) const;
/// Expands an unaligned load to 2 half-size loads for an integer, and
/// possibly more for vectors.
std::pair<SDValue, SDValue> expandUnalignedLoad(LoadSDNode *LD,
SelectionDAG &DAG) const;
/// Expands an unaligned store to 2 half-size stores for integer values, and
/// possibly more for vectors.
SDValue expandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG) const;
/// Increments memory address \p Addr according to the type of the value
/// \p DataVT that should be stored. If the data is stored in compressed
/// form, the memory address should be incremented according to the number of
/// the stored elements. This number is equal to the number of '1's bits
/// in the \p Mask.
/// \p DataVT is a vector type. \p Mask is a vector value.
/// \p DataVT and \p Mask have the same number of vector elements.
SDValue IncrementMemoryAddress(SDValue Addr, SDValue Mask, const SDLoc &DL,
EVT DataVT, SelectionDAG &DAG,
bool IsCompressedMemory) const;
/// Get a pointer to vector element \p Idx located in memory for a vector of
/// type \p VecVT starting at a base address of \p VecPtr. If \p Idx is out of
/// bounds the returned pointer is unspecified, but will be within the vector
/// bounds.
SDValue getVectorElementPointer(SelectionDAG &DAG, SDValue VecPtr, EVT VecVT,
SDValue Index) const;
/// Method for building the DAG expansion of ISD::[US][ADD|SUB]SAT. This
/// method accepts integers as its arguments.
SDValue expandAddSubSat(SDNode *Node, SelectionDAG &DAG) const;
/// Method for building the DAG expansion of ISD::SMULFIX. This method accepts
/// integers as its arguments.
SDValue expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const;
/// Method for building the DAG expansion of ISD::U(ADD|SUB)O. Expansion
/// always suceeds and populates the Result and Overflow arguments.
void expandUADDSUBO(SDNode *Node, SDValue &Result, SDValue &Overflow,
SelectionDAG &DAG) const;
/// Method for building the DAG expansion of ISD::S(ADD|SUB)O. Expansion
/// always suceeds and populates the Result and Overflow arguments.
void expandSADDSUBO(SDNode *Node, SDValue &Result, SDValue &Overflow,
SelectionDAG &DAG) const;
/// Method for building the DAG expansion of ISD::[US]MULO. Returns whether
/// expansion was successful and populates the Result and Overflow arguments.
bool expandMULO(SDNode *Node, SDValue &Result, SDValue &Overflow,
SelectionDAG &DAG) const;
/// Expand a VECREDUCE_* into an explicit calculation. If Count is specified,
/// only the first Count elements of the vector are used.
SDValue expandVecReduce(SDNode *Node, SelectionDAG &DAG) const;
//===--------------------------------------------------------------------===//
// Instruction Emitting Hooks
//
/// This method should be implemented by targets that mark instructions with
/// the 'usesCustomInserter' flag. These instructions are special in various
/// ways, which require special support to insert. The specified MachineInstr
/// is created but not inserted into any basic blocks, and this method is
/// called to expand it into a sequence of instructions, potentially also
/// creating new basic blocks and control flow.
/// As long as the returned basic block is different (i.e., we created a new
/// one), the custom inserter is free to modify the rest of \p MBB.
virtual MachineBasicBlock *
EmitInstrWithCustomInserter(MachineInstr &MI, MachineBasicBlock *MBB) const;
/// This method should be implemented by targets that mark instructions with
/// the 'hasPostISelHook' flag. These instructions must be adjusted after
/// instruction selection by target hooks. e.g. To fill in optional defs for
/// ARM 's' setting instructions.
virtual void AdjustInstrPostInstrSelection(MachineInstr &MI,
SDNode *Node) const;
/// If this function returns true, SelectionDAGBuilder emits a
/// LOAD_STACK_GUARD node when it is lowering Intrinsic::stackprotector.
virtual bool useLoadStackGuardNode() const {
return false;
}
virtual SDValue emitStackGuardXorFP(SelectionDAG &DAG, SDValue Val,
const SDLoc &DL) const {
llvm_unreachable("not implemented for this target");
}
/// Lower TLS global address SDNode for target independent emulated TLS model.
virtual SDValue LowerToTLSEmulatedModel(const GlobalAddressSDNode *GA,
SelectionDAG &DAG) const;
/// Expands target specific indirect branch for the case of JumpTable
/// expanasion.
virtual SDValue expandIndirectJTBranch(const SDLoc& dl, SDValue Value, SDValue Addr,
SelectionDAG &DAG) const {
return DAG.getNode(ISD::BRIND, dl, MVT::Other, Value, Addr);
}
// seteq(x, 0) -> truncate(srl(ctlz(zext(x)), log2(#bits)))
// If we're comparing for equality to zero and isCtlzFast is true, expose the
// fact that this can be implemented as a ctlz/srl pair, so that the dag
// combiner can fold the new nodes.
SDValue lowerCmpEqZeroToCtlzSrl(SDValue Op, SelectionDAG &DAG) const;
private:
SDValue foldSetCCWithAnd(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
const SDLoc &DL, DAGCombinerInfo &DCI) const;
SDValue foldSetCCWithBinOp(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
const SDLoc &DL, DAGCombinerInfo &DCI) const;
SDValue optimizeSetCCOfSignedTruncationCheck(EVT SCCVT, SDValue N0,
SDValue N1, ISD::CondCode Cond,
DAGCombinerInfo &DCI,
const SDLoc &DL) const;
SDValue prepareUREMEqFold(EVT SETCCVT, SDValue REMNode,
SDValue CompTargetNode, ISD::CondCode Cond,
DAGCombinerInfo &DCI, const SDLoc &DL,
SmallVectorImpl<SDNode *> &Created) const;
SDValue buildUREMEqFold(EVT SETCCVT, SDValue REMNode, SDValue CompTargetNode,
ISD::CondCode Cond, DAGCombinerInfo &DCI,
const SDLoc &DL) const;
};
/// Given an LLVM IR type and return type attributes, compute the return value
/// EVTs and flags, and optionally also the offsets, if the return value is
/// being lowered to memory.
void GetReturnInfo(CallingConv::ID CC, Type *ReturnType, AttributeList attr,
SmallVectorImpl<ISD::OutputArg> &Outs,
const TargetLowering &TLI, const DataLayout &DL);
} // end namespace llvm
#endif // LLVM_CODEGEN_TARGETLOWERING_H
| [
"stefan.teleman@cavium.com"
] | stefan.teleman@cavium.com |
f80a129fb96cb7bb5a4df95dfe648a45c330e51f | 7e2d650821f09b78ffe6dbec4049c2c89e69e89e | /rfid_cat_door.ino | b2027a670ce0b14461d2054b51105d08dfa23501 | [
"BSD-2-Clause"
] | permissive | jrheling/RFID_cat_door | 7a26e8d5c58c960a3e7dc5a5bc8f3827b82faebb | 4a5d92bfa892ebaed2d39dd10398d7384a5de182 | refs/heads/master | 2020-07-31T01:08:41.928653 | 2016-11-13T12:52:35 | 2016-11-13T12:52:35 | 73,612,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,350 | ino | // (c) 2016 Joshua Heling <jrh@netfluvia.org>
// BSD licensed
#include <SoftwareSerial.h>
#include <Servo.h>
#include <ThreeColorLED.h>
// ugh
//#define LOG_DEBUG
#define LOG_WARN
int val;
const int ledPin = 13;
const int RF_RECEIVE_pin=2;
const int RF_TRANSMIT_pin=4;
const int button_pin=3;
const int SPKR_pin = 7;
const int servo_pin = 8;
const int redLED = 11;
const int greenLED = 12;
Servo servo;
SoftwareSerial mySerial(RF_RECEIVE_pin, RF_TRANSMIT_pin);
ThreeColorLED tcl(greenLED, redLED);
int incomingByte = 0;
int led_state=0;
bool doorOpen = true;
unsigned long openTime = 0;
const unsigned long openDuration = 10 * 1000; //10s
const unsigned long debounce_interval = 50; // ms
volatile boolean b_pressed = false; // set in ISR, based on action that triggered interrupt
volatile boolean b_changed = false;
volatile unsigned long b_down_at = 0;
volatile unsigned long b_up_at = 0;
volatile unsigned long b_int_time = 0;
volatile unsigned long last_b_int_time = 0;
boolean button_down = false; // represents logical state of the button (i.e. in the state machine)
unsigned long last_beep = 0; // used for beeping once / sec. while button is down
#define MODE_REGULAR 1
#define MODE_OPEN 2
#define MODE_LOCK 3
#define MODE_ENROLL 4
#define MODE_TRAINING 5
#define MODE_SHOWAUTH 6
#define MODE_CLEAR 10
boolean waiting_for_confirmation = false;
unsigned long confirmation_wait_start_ts = 0;
const unsigned long confirmation_timeout = 10 * 1000; // 10s
unsigned short int proposed_mode = MODE_REGULAR;
unsigned short int current_mode = MODE_REGULAR;
void setup() {
Serial.begin(9600);
mySerial.begin(9600);
Serial.println("RFID test!");
pinMode(ledPin, OUTPUT);
pinMode(SPKR_pin, OUTPUT);
tcl.setColor(TCL_CLR_GREEN);
servo.attach(servo_pin);
servo.write(0);
servo.detach();
closeDoor();
attachInterrupt(digitalPinToInterrupt(button_pin),buttonChangeISR,CHANGE);
// Set up interrupt to call tcl.update()
//
// Timer0 is already used for millis() - we'll just interrupt somewhere
// in the middle and call the "Compare A" function below
// (from https://learn.adafruit.com/multi-tasking-the-arduino-part-2/timers)
OCR0A = 0xAF;
TIMSK0 |= _BV(OCIE0A);
}
void openDoor() {
if (doorOpen == false) {
tcl.saveState(); // FIXME - confirm we need this -- is there a time when we come here with an arbitrary blink going on that needs to be persisted across the door open?
tcl.set(TCL_CLR_GREEN, TCL_CLR_NONE, TCL_BLINK_SLOW);
Serial.println("opening door");
servo.attach(servo_pin);
servo.write(100);
delay(250);
servo.detach(); // not sure if this is needed each time (probably not)
doorOpen = true;
}
// even if the door was already open, reset the timer
openTime = millis();
}
void closeDoor() {
if (doorOpen == true) {
Serial.println("closing door");
servo.attach(servo_pin);
servo.write(0);
delay(250);
servo.detach();
tcl.restoreState();
tcl.setColor(TCL_CLR_YELLOW);
doorOpen = false;
}
}
// Interrupt is called once a millisecond
SIGNAL(TIMER0_COMPA_vect) {
tcl.update();
}
void buttonChangeISR() {
b_int_time = millis();
if (b_int_time - last_b_int_time > debounce_interval) {
#ifdef LOG_DEBUG
Serial.println("!! INT !!");
#endif
if (digitalRead(button_pin) == LOW) {
b_pressed = false;
} else {
b_pressed = true;
}
b_changed = true;
last_b_int_time = b_int_time;
}
}
// called from loop() to update button state when a change was
// detected. Relies on the globals set by the ISR, and also does
// a second layer of debounce-like logic to handle cases where we
// see a second change event of the same type (e.g. a button down
// following another button down with no up between them).
//
// returns: 0 if button was depressed
// N if button was released, where N is the duration of button press in ms
unsigned long manageButtonState() {
unsigned long press_duration = 0;
#ifdef LOG_DEBUG
Serial.println("??? Handling a change:");
Serial.print(".. b_pressed = ");
Serial.println(b_pressed);
Serial.print(".. button_down = ");
Serial.println(button_down);
Serial.print(".. current value = ");
Serial.println(digitalRead(button_pin));
#endif
if (button_down) { // it's down now, so we expect to see it go up
bool button_was_released = false;
if (b_pressed && (digitalRead(button_pin) == HIGH)) { // unexpected, based on current state
#ifdef LOG_WARN
Serial.println("***** unexpected redundant down");
Serial.print("***** - value now is: ");
Serial.println(digitalRead(button_pin));
Serial.println("***** <pausing briefly and re-reading> ");
delay(30);
#endif
if (digitalRead(button_pin) == LOW) { // back to normal
#ifdef LOG_WARN
Serial.println("after pause found button up, as expected");
#endif
button_was_released = true;
}
} else { // button was released (went up)
button_was_released = true;
}
if (button_was_released) {
b_up_at = last_b_int_time;
button_down = false;
#ifdef LOG_DEBUG
Serial.print("[/] up at: ");
Serial.println(b_up_at);
Serial.print(" (had been down at "); // debugging - sometimes the computed diff. is wrong
Serial.print(b_down_at);
Serial.println(")");
#endif
press_duration = b_up_at - b_down_at;
#ifdef LOG_DEBUG
Serial.print(" press_duration = ");
Serial.print(press_duration);
Serial.println(" ms");
#endif
Serial.print(" - - button was down for ");
Serial.print((float)(press_duration/1000.0));
Serial.println(" seconds");
}
} else { // it's up now, so we expect to see it go down
bool button_was_depressed = false;
if (b_pressed == false) {
#ifdef LOG_WARN
Serial.println("*****unexpected redundant up");
Serial.print("***** - value now is: ");
Serial.println(digitalRead(button_pin));
Serial.println("***** <pausing briefly and re-reading> ");
delay(30);
#endif
if (digitalRead(button_pin) == HIGH) { // back to normal
#ifdef LOG_WARN
Serial.println("after pause found button down, as expected");
#endif
button_was_depressed = true;
}
} else {
button_was_depressed = true;
}
if (button_was_depressed) {
b_down_at = last_b_int_time;
button_down = true;
last_beep = millis();
#ifdef DEBUG
Serial.print("[\\] down at: ");
Serial.println(b_down_at);
#endif
}
}
b_changed = false;
return(press_duration);
} // end manageButtonState()
// make a buzzer (error) sound
void bzzt() {
tone(7, 62, 500); // B1 for 0.5s
}
// happy bleep
void confirmation_sound() {
tone(7, 392, 300); // G4
delay(200);
tone(7, 494,300); // B4
delay(200);
tone(7, 523, 300); // C5
}
// takes: mode to change to (see README for description of modes)
// returns nothing
void change_mode(int newmode) {
switch (newmode) {
case MODE_REGULAR:
Serial.print("Changing to mode 1");
tcl.set(TCL_CLR_YELLOW, TCL_CLR_NONE, TCL_BLINK_NONE);
current_mode = newmode;
break;
case MODE_OPEN:
openDoor();
Serial.print("Changing to mode 2");
tcl.set(TCL_CLR_GREEN, TCL_CLR_NONE, TCL_BLINK_NONE);
current_mode = newmode;
break;
case MODE_LOCK:
closeDoor();
Serial.print("Changing to mode 3");
tcl.set(TCL_CLR_RED, TCL_CLR_NONE, TCL_BLINK_NONE);
current_mode = newmode;
break;
case MODE_ENROLL:
Serial.print("Changing to mode 4");
tcl.set(TCL_CLR_GREEN, TCL_CLR_RED, TCL_BLINK_NORM);
current_mode = newmode; // FIXME - probably don't want to actually do this, since this is just a one-shot command not a real mode
break;
case MODE_TRAINING:
Serial.print("Changing to mode 5");
tcl.set(TCL_CLR_YELLOW, TCL_CLR_NONE, TCL_BLINK_NORM);
current_mode = newmode;
break;
case MODE_SHOWAUTH:
// show currently-authorized fobs
Serial.print("Changing to mode 6");
current_mode = newmode; // FIXME - probably don't want to actually do this, since this is just a one-shot command not a real mode
break;
case MODE_CLEAR:
// clear authorized keys list
Serial.print("Changing to mode 10");
current_mode = newmode; // FIXME - probably don't want to actually do this, since this is just a one-shot command not a real mode
break;
default:
#ifdef WARN
Serial.print("Ignoring request to change to invalid mode ");
Serial.println(newmode);
break;
#endif
break;
}
}
void loop()
{
unsigned long now = millis();
if (b_changed) { // handle button change (state updated by ISR)
unsigned long press_time = manageButtonState();
if (press_time > 0) {
if (waiting_for_confirmation) { // mode change pending confirmation
// the press we just got confirmed the pending change
confirmation_sound();
waiting_for_confirmation = false;
change_mode(proposed_mode);
} else { // new mode change request
int s = press_time / 1000;
if (((s >= 1) && (s <= 5)) or s == 10) { // was a valid mode requested?
proposed_mode = s;
waiting_for_confirmation = true;
confirmation_wait_start_ts = millis();
// beep out the count of the requested mode and flash quickly to
// indicate we need confirmation
tcl.saveState();
tcl.set(TCL_CLR_RED, TCL_CLR_NONE, TCL_BLINK_FAST);
for (int i = 1; i <= proposed_mode; i++) {
delay(525);
tone(7, 262, 400); // C4
}
} else {
bzzt();
}
}
}
} else { // no button pressed
if (waiting_for_confirmation) {
if (now > (confirmation_wait_start_ts + confirmation_timeout)) {
// timeout the proposed state change
bzzt();
tcl.restoreState();
waiting_for_confirmation = false;
}
}
}
// beep once per second if the button is down
// - using value of 'now' from above - close enough
if (button_down) {
if (now - 1000 > last_beep) {
tone(7, 65, 30); // 10ms of C2
last_beep = now;
}
}
if (current_mode == MODE_REGULAR) {
// check to see if it's time to close the door
if (doorOpen) {
if ((now > openDuration) && (now - openDuration >= openTime)) {
closeDoor();
}
}
if(RFID()==1)
{
digitalWrite(ledPin, HIGH);
digitalWrite(SPKR_pin, HIGH);
openDoor();
}
else
{
digitalWrite(ledPin, LOW);
digitalWrite(SPKR_pin, LOW);
}
}
}
// function copied from ... (?)
int RFID()
{
byte i = 0;
byte val = 0;
byte code[6];
byte checksum = 0;
byte bytesread = 0;
byte tempbyte = 0;
int result = 0;
if(mySerial.available()) {
result=1;
//Serial.println(mySerial.read());
if((val = mySerial.read()) == 0x02) {// check for header
bytesread = 0;
Serial.println("I read it");
while (bytesread < 12) {// read 10 digit code + 2 digit checksum
if(mySerial.available()) {
val = mySerial.read();
//Serial.println(val,HEX);
if((val == 0x0D)||(val == 0x0A)||(val == 0x03)||(val == 0x02)) { // if header or stop bytes
break; // stop reading
}
// Do Ascii/Hex conversion:
if ((val >= '0') && (val <= '9')) {
val = val - '0';
} else if ((val >= 'A') && (val <= 'F')) {
val = 10 + val - 'A';
}
// Every two hex-digits, add byte to code:
if (bytesread & 1 == 1) {
// make some space for this hex-digit by
// shifting the previous hex-digit with 4 bits to the left:
code[bytesread >> 1] = (val | (tempbyte << 4));
if (bytesread >> 1 != 5) {// If we're at the checksum byte,
checksum ^= code[bytesread >> 1]; // Calculate the checksum... (XOR)
};
} else {
tempbyte = val; // Store the first hex digit first...
};
bytesread++; // ready to read next digit
}
}
// Output to Serial:
if (bytesread == 12) { // if 12 digit read is complete
Serial.print("5-byte code: ");
for (i=0; i<5; i++) {
if (code[i] < 16) mySerial.print("0");
Serial.print(code[i], HEX);
Serial.print(" ");
}
Serial.println();
Serial.print("Checksum: ");
Serial.print(code[5], HEX);
Serial.println(code[5] == checksum ? " -- passed." : " -- error.");
if(code[5] == checksum)
result=1;
Serial.println();
}
bytesread = 0;
}
}
return result;
}
| [
"jrh@netfluvia.org"
] | jrh@netfluvia.org |
5a130920c8c45a583552ef303ab356ba913b72a1 | a4d8ed49936cfe453e5fc120a82582f47ccb267e | /kks227/3-divide-and-conquer/1780.cpp | 5760ff2f634467ed6b2556a33542741543c578b1 | [] | no_license | ijleesw/cp | c79224c4613196aab0d4b9178d7a280a1fb2c67d | 9610d674af969e27568f6d205082bb941604a7bc | refs/heads/master | 2023-06-18T23:41:20.963623 | 2021-07-19T08:17:01 | 2021-07-19T08:17:01 | 260,107,497 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,213 | cpp | #include "bits/stdc++.h"
using namespace std;
using IntVec = vector<int>;
using IntVecVec = vector<vector<int>>;
bool allSame(const IntVecVec& mm, int xl, int xr, int yl, int yr) {
int a = mm[xl][yl];
for (int i = xl; i < xr; ++i) {
for (int j = yl; j < yr; ++j) {
if (a != mm[i][j]) return false;
}
}
return true;
}
void daq(const IntVecVec& mm, int xl, int xr, int yl, int yr, int& zero, int& minus, int& plus) {
if (allSame(mm, xl, xr, yl, yr)) {
if (mm[xl][yl] == 0) ++zero;
if (mm[xl][yl] == 1) ++plus;
if (mm[xl][yl] == -1) ++minus;
}
else {
int xd = (xr - xl) / 3;
int yd = (yr - yl) / 3;
for (int i = 0; i < 3; ++i) {
for (int j = 0; j < 3; ++j) {
daq(mm, xl+xd*i, xl+xd*(i+1), yl+yd*j, yl+yd*(j+1), zero, minus, plus);
}
}
}
}
int main() {
int n; cin >> n;
IntVecVec mm(n, IntVec(n));
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n; ++j) cin >> mm[i][j];
}
int zero = 0, minus = 0, plus = 0;
daq(mm, 0, n, 0, n, zero, minus, plus);
cout << minus << endl << zero << endl << plus << endl;
return 0;
} | [
"ijleesw@gmail.com"
] | ijleesw@gmail.com |
699c258497fcc5ec16dd384cec1df06dc992b8a1 | 95ff53e54997c6841bd201769c04eb3f014e733f | /Source/Astrogate/AsteroidBelt.cpp | ceab034bec70e7d421aaae1c7b0a68467e5fc841 | [] | no_license | Skillcheese/Astrogate | a3541ced0cd5b6af33529ae8fc4e0b7ba929e5c9 | b29154460396fa64dbb0c053482589006d4c0ecc | refs/heads/master | 2021-08-29T22:02:15.766998 | 2017-12-15T04:29:52 | 2017-12-15T04:29:52 | 112,664,260 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 895 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "AsteroidBelt.h"
#include "ConstructorHelpers.h"
#include "KismetProceduralMeshLibrary.h"
#include "ProceduralMeshComponent.h"
AAsteroidBelt::AAsteroidBelt()
{
PrimaryActorTick.bCanEverTick = false;
Proc = CreateDefaultSubobject<UProceduralMeshComponent>(TEXT("GeneratedMesh"));
RootComponent = Proc;
Proc->bUseAsyncCooking = true;
}
void AAsteroidBelt::BeginPlay()
{
Super::BeginPlay();
UKismetProceduralMeshLibrary::GetSectionFromStaticMesh(AsteroidMesh, 0, 0, Vertices, Triangles, Normals, UVs, Tangents);
Proc->CreateMeshSection(0, Vertices, Triangles, Normals, UVs, TArray<FColor>(), Tangents, true);
}
//UKismetProceduralMeshLibrary::CopyProceduralMeshFromStaticMeshComponent(AsteroidMesh, 0, AsteroidProc, false);
void AAsteroidBelt::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
| [
"34143022+Skillcheese@users.noreply.github.com"
] | 34143022+Skillcheese@users.noreply.github.com |
4818b6ef73430a5967c273b49e1a0262316c6d3b | 25765941341ff304a3c7faf0ddee437f3bea8310 | /src/MotifGUI.h | a405b1ffd24f9715024dc63d7c802e34570ce277 | [
"BSD-3-Clause"
] | permissive | fermi-lat/gui | 797cdf0dfb9a0905e2bebbe618dc8a4701c0ffc0 | d2387b2d9f2bbde3a9310ff8f2cca038a339ebf6 | refs/heads/master | 2021-05-05T16:14:43.636293 | 2019-08-27T17:29:51 | 2019-08-27T17:29:51 | 103,186,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,437 | h | // $Header: /cvsroot/d0cvs/gui/motif/MotifGUI.h,v 1.5 2000/05/05 00:33:37 burnett Exp $
// Author: G. Barrand, T. Burnett
// Motif GUI definition.
#ifndef MotifGUI_H
#define MotifGUI_H
#include "gui/GUI.h"
#include "gui/SceneControl.h"
using namespace gui;
//class SceneControl;
class MotifGUI : public GUI {
// Derived GUI supporting the Motif interface
public:
MotifGUI(const char* app="Motif", const char* title=0);
void addToMenu(const char* title, Command* command);
virtual GUI::Menu* beginPullDownMenu(const char* title, Menu* m=0);
void restorePullDownMenu(GUI::Menu* m);
GUI::Toggle* addToggleToMenu(const char* title, bool state, Command* set, Command* unset);
void endPullDownMenu();
virtual void menuSeparator();
// hand mmenus
gui::SceneControl* graphicsWindow(float size, int inital_view );
std::ostream* textWindow(const char* name);
// create, return handle to associated window
void setTitle(const char* newtitle);
void processMessages();
// call to process waiting messages
void run(int pause_interval);
// start the window system
void quit();
char * askForFileName(const char* a, const char* b, const char* c);
char* askUser(const char* promptString, const char* defaultString);
void inform(const char* msg);
const char * nameOf()const{return "MotifGUi";}
private:
SceneControl* m_scene;
class Toggle;
};
#endif
| [
""
] | |
0ff0d1e1a7f3530ba384d39cf726e8dba5fa024d | 271dd31f9312818160ac4e2417fcff7e90ef33a5 | /leetcode/*0095.cpp | fe1313c23c12d311cb7ebdbcc504034ef6344cc9 | [] | no_license | xlnwel/Leetcode | 7a6310417fe2d6a47dec4750339938a0f03716bb | 5c9d52bd97d836c3966d9e1026ccfe47838a6fc3 | refs/heads/main | 2023-04-05T07:37:10.883326 | 2021-04-12T13:58:40 | 2021-04-12T13:58:40 | 343,053,511 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 891 | cpp | #include <vector>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(nullptr), right(nullptr) {}
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
class Solution {
public:
vector<TreeNode*> generateTrees(int n) {
return helper(1, n);
}
private:
vector<TreeNode*> helper(int i, int j) {
if (i > j)
return {nullptr};
if (i == j) {
return {new TreeNode(i)};
}
vector<TreeNode*> v;
for (auto k = i; k <= j; ++k) {
for (auto m: helper(i, k-1)) {
for (auto n: helper(k+1, j)) {
v.push_back(new TreeNode(k, m, n));
}
}
}
return v;
}
}; | [
"122134545@qq.com"
] | 122134545@qq.com |
5c1c72483b2a58d8b008bfb2799306609532afd3 | c3bc715b253bbf856ca5227a53f797aecc0e5f86 | /src/Slave/Slave/Commander.cpp | f485776e220af6651d0a4a62cd881a436e999958 | [
"MIT"
] | permissive | averkhaturau/Tarificator | ec7832f287d96109bbb670ecdac632a7ab7509d2 | 90a976d16ecab8c6a1cd75f4cb6a860dc4c76ce5 | refs/heads/master | 2020-06-08T12:55:18.387329 | 2019-06-22T13:06:07 | 2019-06-22T13:06:07 | 193,231,681 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,073 | cpp | #include "stdafx.h"
#include "Commander.h"
#include "Exceptions.h"
CCommander::CCommander(std::string sPrefix, const DWORD* pdwMessagesTable, DWORD dwTableLength)
{
m_pMessagesTable = 0;
m_psPrefix = 0;
try
{
m_psPrefix = new std::string;
*m_psPrefix = sPrefix;
m_pMessagesTable = new CVector;
m_pMessagesTable->resize(dwTableLength);
for (CVector::iterator iter = m_pMessagesTable->begin();
iter < m_pMessagesTable->end(); ++iter, ++pdwMessagesTable)
{
*iter = *pdwMessagesTable;
}
}
catch(...)
{
DoDeleteEverything();
throw CAnyLogableException("An unknown error occured in CCommander::CCommander", bDoNotWriteDuplicates);
}
}
// End of CCommander()
CCommander::~CCommander()
{
DoDeleteEverything();
}
// End of ~CCommander()
void CCommander::DoDeleteEverything()
{
if (m_psPrefix)
{
delete m_psPrefix;
m_psPrefix = 0;
}
if (m_pMessagesTable)
{
delete m_pMessagesTable;
m_pMessagesTable = 0;
}
}
// End of DoDeleteEverything()
| [
"AlVerkhaturau@luxoft.com"
] | AlVerkhaturau@luxoft.com |
ac619f10cefb4060a6e78a6284a2d4f8c466c0dd | 4705c38856f841f0732af210976d8e9f8085dc39 | /AoE_IMGUI/Renderer.h | 7998614bd6a85fa0f969483af6cccfdf5e167c3d | [] | no_license | forceprotection/Age-of-Empires-II-2013 | 3f56cfe2dac6336e8f90c66586b9399682eaf5b6 | 80b4b825697e2019a76a815f8b20645697dd24d4 | refs/heads/master | 2020-11-28T03:09:12.623876 | 2019-10-21T19:57:08 | 2019-10-21T19:57:08 | 229,689,722 | 1 | 0 | null | 2019-12-23T06:20:56 | 2019-12-23T06:20:55 | null | UTF-8 | C++ | false | false | 1,370 | h | #pragma once
#include <string>
#include "../ImGui/imgui.h"
class Unit;
class Renderer
{
private:
static Renderer* _instance;
ImFont* m_pFont;
Renderer();
~Renderer();
public:
static Renderer* Get();
void BeginScene();
void EndScene();
void RenderText(const std::string& text, const ImVec2& position, float size, uint32_t color, bool center = false);
void RenderLine(const ImVec2& from, const ImVec2& to, uint32_t color, float thickness = 1.0f);
void RenderPolygon(const ImVec2* points, int pointCount, uint32_t color, float thickness = 1.0f);
void RenderCircle(const ImVec2& position, float radius, uint32_t color, float thickness = 1.0f, uint32_t segments = 16);
void RenderCircleFilled(const ImVec2& position, float radius, uint32_t color, uint32_t segments = 16);
void RenderRect(const ImVec2& from, const ImVec2& to, uint32_t color, float rounding = 0.0f, uint32_t roundingCornersFlags = ImDrawCornerFlags_All, float thickness = 1.0f);
void RenderRect(const ImVec2& one, const ImVec2& two, const ImVec2& three, const ImVec2& four, uint32_t color, float thickness = 1.0f);
void RenderRectFilled(const ImVec2& from, const ImVec2& to, uint32_t color, float rounding = 0.0f, uint32_t roundingCornersFlags = ImDrawCornerFlags_All);
void DrawUnitCollisionRectangle(ImVec2 screenPositionCenter, ImVec2 collision, uint32_t color);
}; | [
"f-absen@hotmail.de"
] | f-absen@hotmail.de |
5f3701101796db4fceab31fdbdec69196f518bdc | 735920e24ac91b36912ff2610406d1f43f8f240a | /sumi/sumi/dynamic_tree_vote.cc | e4b328174c26be9d8c8bc28ed6f241c06177cfa9 | [
"BSD-3-Clause"
] | permissive | deanchester/sst-macro | d418186fc1fdf5d376d23f451f988839ca987e98 | b590e7a5c604e38c840569de0e2b80bfc85539a0 | refs/heads/master | 2021-04-28T05:43:11.279646 | 2018-02-11T14:48:12 | 2018-02-11T14:48:12 | 122,183,455 | 0 | 0 | BSD-3-Clause | 2018-02-20T10:23:49 | 2018-02-20T10:23:49 | null | UTF-8 | C++ | false | false | 21,766 | cc | /**
Copyright 2009-2017 National Technology and Engineering Solutions of Sandia,
LLC (NTESS). Under the terms of Contract DE-NA-0003525, the U.S. Government
retains certain rights in this software.
Sandia National Laboratories is a multimission laboratory managed and operated
by National Technology and Engineering Solutions of Sandia, LLC., a wholly
owned subsidiary of Honeywell International, Inc., for the U.S. Department of
Energy's National Nuclear Security Administration under contract DE-NA0003525.
Copyright (c) 2009-2017, NTESS
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* 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.
* Neither the name of Sandia Corporation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
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.
Questions? Contact sst-macro-help@sandia.gov
*/
#include <sumi/dynamic_tree_vote.h>
#include <sumi/transport.h>
#include <sumi/communicator.h>
#include <sprockit/stl_string.h>
/*
#undef debug_printf
#define debug_printf(flags, ...) \
if (tag_ == 221) std::cout << sprockit::spkt_printf(__VA_ARGS__) << std::endl
*/
using namespace sprockit::dbg;
namespace sumi {
#define enumcase(x) case x: return #x
const char*
dynamic_tree_vote_message::tostr(type_t ty)
{
switch(ty)
{
enumcase(down_vote);
enumcase(up_vote);
enumcase(request);
}
spkt_throw_printf(sprockit::value_error,
"dynamic_tree_vote_message: unknown type %d", ty);
}
const char*
dynamic_tree_vote_actor::tostr(stage_t stage)
{
switch(stage)
{
enumcase(recv_vote);
enumcase(up_vote);
enumcase(down_vote);
}
spkt_throw_printf(sprockit::value_error,
"dynamic_tree_vote_actor: unknown stage %d", stage);
}
void*
dynamic_tree_vote_message::recv_buffer() const
{
sprockit::abort("dynamic_tree_vote_message: does not have recv buffer");
return nullptr;
}
void
dynamic_tree_vote_message::serialize_order(sumi::serializer &ser)
{
ser & vote_;
ser & type_;
collective_work_message::serialize_order(ser);
}
void
dynamic_tree_vote_actor::position(int rank, int &level, int &branch)
{
level = 0;
int level_upper_bound = 1;
int stride = 1;
while (rank >= level_upper_bound){
++level;
stride *= 2;
level_upper_bound += stride;
}
int level_lower_bound = level_upper_bound - stride;
branch = rank - level_lower_bound;
}
void
dynamic_tree_vote_actor::level_stats(int level, int& start, int& size)
{
int lower_bound = 0;
int stride = 1;
for (int i=0; i < level; ++i){
lower_bound += stride;
stride *= 2;
}
start = lower_bound;
size = stride;
}
int
dynamic_tree_vote_actor::level_lower_bound(int level)
{
int bound, ignore;
level_stats(level, bound, ignore);
return bound;
}
int
dynamic_tree_vote_actor::down_partner(int level, int branch)
{
int down_branch = branch*2;
int down_level_start = level_lower_bound(level + 1);
return down_level_start + down_branch;
}
int
dynamic_tree_vote_actor::up_partner(int level, int branch)
{
int up_branch = branch / 2;
int up_level_start = level_lower_bound(level - 1);
return up_level_start + up_branch;
}
int
dynamic_tree_vote_actor::up_partner(int rank)
{
int level, branch;
position(rank, level, branch);
return up_partner(level, branch);
}
dynamic_tree_vote_actor::dynamic_tree_vote_actor(int vote,
vote_fxn fxn, int tag, transport* my_api,
const collective::config& cfg) :
collective_actor(my_api, tag, cfg), //true for always fault-aware
vote_(vote),
fxn_(fxn),
tag_(tag),
stage_(recv_vote)
{
int ignore;
position(dense_me_, my_level_, my_branch_);
//figure out the bottom level from nproc
position(dense_nproc_-1,bottom_level_,ignore);
level_stats(my_level_, my_level_start_, my_level_size_);
if (my_level_ != bottom_level_){
int partner = down_partner(my_level_, my_branch_);
if (partner < dense_nproc_){
down_partners_.insert(partner);
}
++partner;
if (partner < dense_nproc_){
down_partners_.insert(partner);
}
}
if (my_level_ == 0){
up_partner_ = -1;
}
else {
up_partner_ = up_partner(my_level_, my_branch_);
}
debug_printf(sumi_collective | sumi_vote,
"Rank %s from nproc=%d(%d) is at level=%d start=%d bottom=%d in branch=%d up=%d down=%s on tag=%d ",
rank_str().c_str(), dense_nproc_, my_api_->nproc(),
my_level_, my_level_start_, bottom_level_ + 1,
my_branch_, up_partner_, down_partners_.to_string().c_str(), tag_);
}
void
dynamic_tree_vote_actor::send_messages(dynamic_tree_vote_message::type_t ty, const thread_safe_set<int>& partners)
{
partner_iterator it, end = partners.start_iteration();
for (it = partners.begin(); it != end; ++it){
send_message(ty, *it);
}
partners.end_iteration();
}
bool
dynamic_tree_vote_actor::up_vote_ready()
{
//do a set diff - we may actually get MORE votes than we need
//due to weird failure scenarios
if (down_partners_.size() > up_votes_recved_.size()){
return false; //might as well do an easy check
}
//this produces down_partners_ - up_votes_recved_
//in other words, if up_votes_receved contains all the down partners
//the result set will be empty
std::set<int> pending;
set_difference(down_partners_, up_votes_recved_, pending);
return pending.empty();
}
void
dynamic_tree_vote_actor::send_up_votes()
{
if (my_level_ == 0){
//nothing to do - go straight to sending down
send_down_votes();
}
else if (stage_ == recv_vote) {
stage_ = up_vote;
//it could happen that we are triggered to send up votes
//because we acquired new down partners
//when in reailty we have already sent the up vote
debug_printf(sumi_collective | sumi_vote,
"Rank %s sending up vote %d to partner=%d on tag=%d ",
rank_str().c_str(), vote_, up_partner_, tag_);
send_message(dynamic_tree_vote_message::up_vote, up_partner_);
}
}
void
dynamic_tree_vote_actor::start()
{
stage_ = recv_vote;
//this set can get modified - make a temporary
#ifdef FEATURE_TAG_SUMI_RESILIENCE
std::set<int> down_partners_at_start = down_partners_.get_copy();
partner_iterator it, end = down_partners_at_start.end();
for (it=down_partners_at_start.begin(); it != end; ++it){
int rank = *it;
bool failed = ping_neighbor(rank);
if (failed){ //uh oh!
handle_dense_partner_failure(rank);
}
}
if (up_partner_ >= 0){
bool failed = ping_neighbor(up_partner_);
if (failed){
handle_dense_partner_failure(up_partner_);
}
}
#endif
//we might be at the bottom of tree or because of failures
//we can just go ahead and sent up votes
if (up_vote_ready()){
send_up_votes();
}
}
void
dynamic_tree_vote_actor::send_message(dynamic_tree_vote_message::type_t ty, int virtual_dst)
{
auto msg = new dynamic_tree_vote_message(vote_, ty, tag_, dense_me_, virtual_dst);
#ifdef FEATURE_TAG_SUMI_RESILIENCE
if (stage_ == up_vote){ //If I am up-voting, go ahead and vote for as many failures as I know
msg->append_failed(failed_ranks_);
}
else {
// I can only send the failures that everyone has agreed upon
msg->append_failed(agreed_upon_failures_);
}
debug_printf(sumi_collective | sumi_vote,
"Rank %s sending vote %d of type %s to %s on tag=%d for failed=%s, msg_failed=%s",
rank_str().c_str(),
vote_, dynamic_tree_vote_message::tostr(ty),
rank_str(virtual_dst).c_str(),
tag_, failed_ranks_.to_string().c_str(),
stl_string(msg->failed_procs()).c_str());
#endif
int global_phys_dst = global_rank(virtual_dst);
my_api_->send_payload(global_phys_dst, msg, message::no_ack, cfg_.cq_id);
}
void
dynamic_tree_vote_actor::recv_result(dynamic_tree_vote_message* msg)
{
#ifdef FEATURE_TAG_SUMI_RESILIENCE
debug_printf(sumi_collective | sumi_vote,
"Rank %d receving result vote=%d, failed=%s on tag=%d",
my_api_->rank(), vote_,
stl_string(msg->failed_procs()).c_str(), tag_);
const std::set<int> extra_failed = msg->failed_procs();
agreed_upon_failures_ = msg->failed_procs();
failed_ranks_.insert_all(extra_failed);
#endif
vote_ = msg->vote();
}
void
dynamic_tree_vote_actor::merge_result(dynamic_tree_vote_message* msg)
{
#ifdef FEATURE_TAG_SUMI_RESILIENCE
const std::set<int> extra_failed = msg->failed_procs();
if (stage_ == recv_vote){
debug_printf(sumi_collective | sumi_vote,
"Rank %d merging result vote=%d failed=%s on tag=%d into final result vote=%d failed=%s",
my_api_->rank(), msg->vote(),
stl_string(msg->failed_procs()).c_str(), tag_,
vote_, failed_ranks_.to_string().c_str());
agreed_upon_failures_.insert_all(msg->failed_procs());
}
failed_ranks_.insert_all(extra_failed);
#endif
if (stage_ == recv_vote) (fxn_)(vote_, msg->vote());
}
void
dynamic_tree_vote_actor::put_done_notification()
{
auto msg = new collective_done_message(tag_, collective::dynamic_tree_vote, cfg_.dom, cfg_.cq_id);
msg->set_vote(vote_);
msg->set_comm_rank(cfg_.dom->my_comm_rank());
#ifdef FEATURE_TAG_SUMI_RESILIENCE
//convert the virtual ranks to physical ranks
thread_safe_set<int>::const_iterator it, end = agreed_upon_failures_.start_iteration();
for (it = agreed_upon_failures_.begin(); it != end; ++it){
msg->append_failed(global_rank(*it));
}
agreed_upon_failures_.end_iteration();
debug_printf(sumi_collective | sumi_vote,
"Rank %d has completed with vote=%d failed=%s tag=%d ",
my_api_->rank(), msg->vote(),
msg->failed_procs().to_string().c_str(), tag_);
#endif
my_api_->notify_collective_done(msg);
}
void
dynamic_tree_vote_actor::finish()
{
if (complete_){
spkt_throw_printf(sprockit::illformed_error,
"dynamic_vote_actor::finish: tag=%d already complete on rank %d",
tag_, my_api_->rank());
}
complete_ = true;
#ifdef FEATURE_TAG_SUMI_RESILIENCE
if (up_partner_ >= 0)
cancel_ping(up_partner_);
down_partners_.start_iteration();
partner_iterator it, end = down_partners_.find(up_partner_);
for (it=down_partners_.begin(); it != end; ++it){
cancel_ping(*it);
}
down_partners_.end_iteration();
//okay - this is a bit weird, but we have to "erase" our knowledge
//of failures we haven't agreed to
failed_ranks_ = agreed_upon_failures_;
collective_actor::validate_pings_cleared();
#endif
put_done_notification();
}
void
dynamic_tree_vote_actor::recv_down_vote(dynamic_tree_vote_message* msg)
{
#ifdef FEATURE_TAG_SUMI_RESILIENCE
debug_printf(sumi_collective | sumi_vote,
"Rank %s got down vote %d on stage %s from rank=%d tag=%d for failed=%s",
rank_str().c_str(), msg->vote(), tostr(stage_),
msg->dense_sender(), tag_,
stl_string(msg->failed_procs()).c_str());
#endif
if (stage_ == down_vote){
if (vote_ != msg->vote()){
spkt_abort_printf("dynamic_vote_actor::inconsistent_down_vote: %d %d",
msg->vote(), vote_);
}
return; //already got this
}
recv_result(msg);
//where I got this from is totally irrelevant - I'm good to go
send_down_votes();
}
void
dynamic_tree_vote_actor::send_down_votes()
{
debug_printf(sumi_collective | sumi_vote,
"Rank %s sending down vote %d to down=%s on tag=%d ",
rank_str().c_str(), vote_,
down_partners_.to_string().c_str(), tag_);
stage_ = down_vote;
send_messages(dynamic_tree_vote_message::down_vote, down_partners_);
// I'm sort of done here...
finish();
}
void
dynamic_tree_vote_actor::recv_expected_up_vote(dynamic_tree_vote_message* msg)
{
debug_printf(sumi_collective | sumi_vote,
"Rank %s got expected up vote %d on stage %s from rank=%d on tag=%d - need %s, have %s",
rank_str().c_str(), msg->vote(), tostr(stage_), msg->dense_sender(), tag_,
down_partners_.to_string().c_str(), up_votes_recved_.to_string().c_str());
if (up_vote_ready()){
send_up_votes();
}
}
void
dynamic_tree_vote_actor::recv_unexpected_up_vote(dynamic_tree_vote_message* msg)
{
#ifdef FEATURE_TAG_SUMI_RESILIENCE
if (complete()){
// somebody failed after I sent out my messages - so somebody new
// is requesting a message from me
debug_printf(sumi_collective | sumi_vote,
"Rank %s responding after completion to %d on tag=%d ",
rank_str().c_str(), msg->dense_sender(), tag_);
send_message(dynamic_tree_vote_message::down_vote, msg->dense_sender());
}
else {
//now treat this essentially as a failure notification
int child = msg->dense_sender();
int failed_parent = up_partner(child);
int failures[bottom_level_];
int num_failures = 0;
while (failed_parent != dense_me_){
if (is_my_child(failed_parent)){
//I am pinging this - cancel the ping
cancel_ping(failed_parent);
}
debug_printf(sumi_collective | sumi_vote,
"Rank %s inferring down failure %d via up vote from %d on tag=%d ",
rank_str().c_str(), failed_parent, msg->dense_sender(), tag_);
failures[num_failures++] = failed_parent;
//move on up the tree
child = failed_parent;
failed_parent = up_partner(child);
}
//now that we have a list of failed parents, fail them
for (int i=(num_failures-1); i >= 0; --i){
handle_dense_partner_failure(failures[i]);
}
}
#else
sprockit::abort("handing unexpected up vote, but resilience features are disabled");
#endif
}
void
dynamic_tree_vote_actor::recv_up_vote(dynamic_tree_vote_message* msg)
{
debug_printf(sumi_collective | sumi_vote,
"Rank %s got up vote %d on stage %s from rank=%d on tag=%d ",
rank_str().c_str(), msg->vote(), tostr(stage_), msg->dense_sender(), tag_);
merge_result(msg);
int src = msg->dense_sender();
//if (is_failed(src)){
//just ignore this - dangling message that got delivered
//while its parent node failed in transit
// return; //just ignore
//}
up_votes_recved_.insert(src);
if (down_partners_.count(src) == 0){
//I got a message I wasn't expecting - somebody underneath me died!
recv_unexpected_up_vote(msg);
} else {
recv_expected_up_vote(msg);
}
}
void
dynamic_tree_vote_actor::recv(dynamic_tree_vote_message* msg)
{
if (is_failed(msg->dense_sender())){
debug_printf(sumi_collective | sumi_vote | sumi_collective_sendrecv,
"Rank %s skipping message from %d:%d on tag=%d because that rank is already dead",
rank_str().c_str(), msg->dense_sender(), msg->sender(), tag_);
//ignore this - sometimes messages from dead nodes get caught in transit
return;
}
switch (msg->type())
{
case dynamic_tree_vote_message::up_vote:
recv_up_vote(msg);
break;
case dynamic_tree_vote_message::down_vote:
recv_down_vote(msg);
break;
#ifdef FEATURE_TAG_SUMI_RESILIENCE
case dynamic_tree_vote_message::request:
recv_adoption_request(msg);
break;
#endif
default:
sprockit::abort("invalid message type in dynamic tree vote");
break;
}
}
dynamic_tree_vote_collective::dynamic_tree_vote_collective(
int vote, vote_fxn fxn, int tag,
transport* my_api, const config& cfg) :
collective(collective::dynamic_tree_vote, my_api, tag, cfg),
vote_(vote),
fxn_(fxn)
{
actors_[dense_me_] = new dynamic_tree_vote_actor(vote, fxn, tag, my_api, cfg);
refcounts_[cfg_.dom->my_comm_rank()] = actors_.size();
}
void
dynamic_tree_vote_collective::recv(int target, collective_work_message* msg)
{
actor_map::iterator it = actors_.find(target);
if (it == actors_.end()){
spkt_throw_printf(sprockit::value_error,
"vote_collective::recv: invalid virtual destination %d on rank %d for tag=%d ",
target, my_api_->rank(), tag_);
}
dynamic_tree_vote_actor* schauspieler = it->second;
schauspieler->recv(dynamic_cast<dynamic_tree_vote_message*>(msg));
}
void
dynamic_tree_vote_collective::start()
{
actor_map::iterator it, end = actors_.end();
for (it=actors_.begin(); it != end; ++it){
dynamic_tree_vote_actor* actor = it->second;
actor->start();
}
}
#ifdef FEATURE_TAG_SUMI_RESILIENCE
void
dynamic_tree_vote_actor::recv_adoption_request(dynamic_tree_vote_message* msg)
{
//we got this if our up partner failed - this guy is requesting an up vote
//treat this essentially as a failure notification
//search up our tree until we find this guy
int failed_guy = msg->dense_sender();
while (failed_guy != up_partner_){
debug_printf(sumi_collective | sumi_vote | sumi_collective_sendrecv,
"Rank %s inferring up failure %d on stage %s via request from %d on tag=%d ",
rank_str().c_str(), up_partner_, tostr(stage_), msg->dense_sender(), tag_);
cancel_ping(up_partner_);
handle_dense_partner_failure(up_partner_);
}
}
void
dynamic_tree_vote_actor::contact_new_down_partner(int rank)
{
if (stage_ == recv_vote){
if (!received_up_vote(rank)){
send_message(dynamic_tree_vote_message::request, rank);
}
}
else if (stage_ == down_vote){
//send new down votes on down
send_message(dynamic_tree_vote_message::down_vote, rank);
}
}
void
dynamic_tree_vote_actor::add_new_down_partner(int rank)
{
debug_printf(sumi_collective | sumi_vote,
"Rank %s adding new down partner %d on tag=%d ",
rank_str().c_str(), rank, tag_);
down_partners_.insert(rank);
bool failed = ping_neighbor(rank);
if (failed){
//well, that's a downer
handle_dense_partner_failure(rank);
}
else {
contact_new_down_partner(rank);
}
}
void
dynamic_tree_vote_actor::up_partner_failed()
{
int up_level, up_branch;
position(up_partner_, up_level, up_branch);
if (up_level == 0){
sprockit::abort("dynamic_vote_actor::catastrophic_error: coordinator failed");
}
//I take over sending to the up partner
int old_partner = up_partner_;
up_partner_ = up_partner(up_level, up_branch);
debug_printf(sumi_collective | sumi_vote,
"Rank %s got up failure from rank %d on stage %s on tag=%d: partners are now down=%s up=%d",
rank_str().c_str(), old_partner, tostr(stage_), tag_,
down_partners_.to_string().c_str(), up_partner_);
bool failed = ping_neighbor(up_partner_);
if (failed){
handle_dense_partner_failure(up_partner_);
}
else if (stage_ == up_vote){
//yay, partner is still alive
send_message(dynamic_tree_vote_message::up_vote, up_partner_);
}
}
void
dynamic_tree_vote_actor::down_partner_failed(int rank)
{
down_partners_.erase(rank);
int down_level, down_branch;
position(rank, down_level, down_branch);
debug_printf(sumi_collective | sumi_vote,
"Rank %s got down failure from rank=%d level=%d branch=%d on tag=%d : partners are now down=%s up=%d, votes_recved=%s",
rank_str().c_str(),
rank, down_level, down_branch,
tag_,
down_partners_.to_string().c_str(),
up_partner_,
up_votes_recved_.to_string().c_str());
int new_partner = down_partner(down_level, down_branch);
if (new_partner < dense_nproc_){
add_new_down_partner(new_partner);
}
++new_partner;
if (new_partner < dense_nproc_){
add_new_down_partner(new_partner);
}
//it could happen that partner failing means we have everything we need
if (stage_ == recv_vote && up_vote_ready()){
send_up_votes();
}
}
void
dynamic_tree_vote_actor::rebalance_around_dense_partner_failure(int rank)
{
failures_handled_.insert(rank);
failed_ranks_.insert(rank);
if (stage_ == recv_vote){
agreed_upon_failures_.insert(rank); //I'm only allowed to add new info in the recv stage
}
if (complete_){
spkt_throw_printf(sprockit::illformed_error,
"vote_actor: on rank %d, partner %d failed but collective is complete on tag %d",
my_api_->rank(), rank, tag_);
}
if (rank == up_partner_){
up_partner_failed();
}
else {
down_partner_failed(rank);
}
}
void
dynamic_tree_vote_actor::dense_partner_ping_failed(int dense_rank)
{
cancel_ping(dense_rank);
handle_dense_partner_failure(dense_rank);
}
void
dynamic_tree_vote_actor::handle_dense_partner_failure(int rank)
{
if (failures_handled_.count(rank)){
debug_printf(sumi_collective | sumi_vote,
"Rank %s already handled failure of rank %d on tag=%d ",
rank_str().c_str(), rank, tag_);
}
else {
debug_printf(sumi_collective | sumi_vote,
"Rank %s handling new failure of rank %d on tag=%d ",
rank_str().c_str(), rank, tag_);
rebalance_around_dense_partner_failure(rank);
}
}
void
dynamic_tree_vote_actor::stop_check_neighbor(int phys_rank)
{
my_api_->cancel_ping(phys_rank, timeout_);
}
bool
dynamic_tree_vote_actor::check_neighbor(int phys_rank)
{
return my_api_->ping(phys_rank, timeout_);
}
#endif
}
| [
"jjwilke@sandia.gov"
] | jjwilke@sandia.gov |
03388a92f2439cfeab6b3bb236b996a741a599ac | 6eb5bc6376972306b21cf652a559ba0e5fba7e0d | /Jojo/include/SceneManager.hpp | 7470d210c7936540cef4db2520ae7713098671ca | [] | no_license | joha2nes/OpenGLDemo | 4725c41b4909489d790d3a3b2e6cb849dd19bbe5 | 353c16759fa8096c8971aca23ecae6de9d5de1b4 | refs/heads/master | 2021-01-11T20:33:00.423552 | 2017-05-11T20:04:31 | 2017-05-11T20:04:31 | 79,140,772 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | hpp | #pragma once
#include <string>
#include <vector>
#include <map>
#include "glm\glm.hpp"
struct Input;
class Shader;
class Scene;
class SceneObject;
class ResourceManager;
struct Text;
class SceneManager
{
public:
SceneManager();
~SceneManager();
void input(Input);
void update(float dt);
void draw();
void changeScene(Scene*);
void quit();
bool isQuitRequested() const;
private:
bool insideFrustum(const glm::mat4& world, const SceneObject*) const;
void drawSceneObjects(const glm::mat4& world, const std::vector<SceneObject*>& objects) const;
void drawText(const Text&, glm::vec2) const;
void updateSceneObjects(float dt, const std::vector<SceneObject*>& objects);
void inputSceneObjects(Input, const std::vector<SceneObject*>& objects);
float sceneObjectRadius(const SceneObject*) const;
private:
Scene* m_activeScene;
ResourceManager* m_resourceManager;
Shader* m_meshShader;
Shader* m_spriteShader;
Shader* m_textShader;
Shader* m_skyboxShader;
std::vector<Text> m_info;
bool m_quitRequested;
}; | [
"Johannes.Westberg.0339@student.uu.se"
] | Johannes.Westberg.0339@student.uu.se |
5ccf65f4e6ad3bcd6b68496b1a9ae5a9a5d46886 | e68a7831eb3baf86e2d3cc267849b5e936d095a2 | /src/amount.cpp | 7c58b3c822fda7a4833ee995ca8516ce97e111c2 | [
"MIT"
] | permissive | uservapp/userx | 06461d6651fbfb3db5f82fd93b18e509619ce676 | f5615d4442bd707fb38e1b54287e920a29610156 | refs/heads/master | 2020-04-27T22:44:08.766905 | 2019-03-10T06:49:56 | 2019-03-10T06:49:56 | 174,747,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 806 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2017 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "tinyformat.h"
CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nSize)
{
if (nSize > 0)
nSatoshisPerK = nFeePaid * 1000 / nSize;
else
nSatoshisPerK = 0;
}
CAmount CFeeRate::GetFee(size_t nSize) const
{
CAmount nFee = nSatoshisPerK * nSize / 1000;
if (nFee == 0 && nSatoshisPerK > 0)
nFee = nSatoshisPerK;
return nFee;
}
std::string CFeeRate::ToString() const
{
return strprintf("%d.%08d USERX/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN);
}
| [
"thecarr.carlos@gmail.com"
] | thecarr.carlos@gmail.com |
9453612775ebca4bafe6099d2f0646ec8bee0b78 | 9f2b07eb0e9467e17448de413162a14f8207e5d0 | /tests/libtests/faults/TestAdjustTopology_hex.cc | e7cd407d02d7dfb21cf7ecb1c68a563a19827f0e | [
"MIT"
] | permissive | fjiaqi/pylith | 2aa3f7fdbd18f1205a5023f8c6c4182ff533c195 | 67bfe2e75e0a20bb55c93eb98bef7a9b3694523a | refs/heads/main | 2023-09-04T19:24:51.783273 | 2021-10-19T17:01:41 | 2021-10-19T17:01:41 | 373,739,198 | 0 | 0 | MIT | 2021-06-04T06:12:08 | 2021-06-04T06:12:07 | null | UTF-8 | C++ | false | false | 29,144 | cc | // -*- C++ -*-
//
// ----------------------------------------------------------------------
//
// Brad T. Aagaard, U.S. Geological Survey
// Charles A. Williams, GNS Science
// Matthew G. Knepley, University at Buffalo
//
// This code was developed as part of the Computational Infrastructure
// for Geodynamics (http://geodynamics.org).
//
// Copyright (c) 2010-2021 University of California, Davis
//
// See LICENSE.md for license information.
//
// ----------------------------------------------------------------------
//
#include <portinfo>
#include "TestAdjustTopology.hh" // Implementation of class methods
// ------------------------------------------------------------------------------------------------
namespace pylith {
namespace faults {
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexA : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexA, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_a.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 16;
static const size_t numCells = 3;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 8+8+2 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexA
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexA);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexB : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexB, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_b.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 16;
static const size_t numCells = 3;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 8+8+2 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexB
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexB);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexC : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexC, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_c.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 16;
static const size_t numCells = 3;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 8+8+2 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexC
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexC);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexD : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexD, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_d.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 16;
static const size_t numCells = 3;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 8+8+2 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexD
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexD);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexE : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexE, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_e.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 16;
static const size_t numCells = 3;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 8+8+2 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexE
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexE);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexF : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexF, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_e.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 16;
static const size_t numCells = 3;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 8+8+2 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexF
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexF);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexG : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexG, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_g.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 24;
static const size_t numCells = 6;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6, 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 0, 0, 100, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 12+14+4 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexG
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexG);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexH : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexH, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_h.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 24;
static const size_t numCells = 6;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6, 6, 6, 6 };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 0, 0, 100, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 8+8+2, 12+14+4 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexH
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexH);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexI : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexI, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_i.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { NULL };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 36;
static const size_t numCells = 9;
_data->numCells = numCells;
static const int numCorners[numCells] = { 6, 6, 6, 6, 6, 6, 6, 6, 6, };
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = { 0, 0, 0, 0, 0, 0, 2, 100, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 2;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 10+13+4, 12+14+4 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexI
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexI);
// ----------------------------------------------------------------------------------------
class TestAdjustTopology_HexJ : public TestAdjustTopology {
CPPUNIT_TEST_SUB_SUITE(TestAdjustTopology_HexJ, TestAdjustTopology);
CPPUNIT_TEST_SUITE_END();
void setUp(void) {
TestAdjustTopology::setUp();
_data->filename = "data/hex_j.mesh";
_data->numFaults = 1;
static const char* const faultSurfaceLabels[1] = { "fault" };
_data->faultSurfaceLabels = const_cast<const char**>(faultSurfaceLabels);
static const char* const faultEdgeLabels[1] = { "fault_edge" };
_data->faultEdgeLabels = const_cast<const char**>(faultEdgeLabels);
static const int interfaceIds[1] = { 100 };
_data->interfaceIds = const_cast<const int*>(interfaceIds);
_data->cellDim = 3;
_data->spaceDim = 3;
_data->numVertices = 61;
static const size_t numCells = 22;
_data->numCells = numCells;
static const int numCorners[numCells] = {
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 6,
};
_data->numCorners = const_cast<int*>(numCorners);
static const int materialIds[numCells] = {
10, 10, 11, 11, 10, 10, 11, 11, 11, 11,
10, 10, 10, 10, 11, 11, 11, 11, 10, 10,
100, 100 };
_data->materialIds = const_cast<int*>(materialIds);
static const size_t numGroups = 3;
_data->numGroups = numGroups;
static const int groupSizes[numGroups] = { 21+31+10, 5+4, 6+7+2 + 1+2+3 }; // vertices + edges + faces
_data->groupSizes = const_cast<int*>(groupSizes);
static const char* groupNames[numGroups] = { "output", "fault_edge", "fault" };
_data->groupNames = const_cast<char**>(groupNames);
static const char* groupTypes[numGroups] = { "vertex", "vertex", "vertex" };
_data->groupTypes = const_cast<char**>(groupTypes);
} // setUp
}; // TestAdjustTopology_HexJ
CPPUNIT_TEST_SUITE_REGISTRATION(TestAdjustTopology_HexJ);
} // faults
} // pylith
#if 0
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8.hh" // USES CohesiveDataHex8
// Test adjustTopology() with 3-D hexahedral element.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8(void) { // testAdjustTopologyHex8
PYLITH_METHOD_BEGIN;
CohesiveDataHex8 data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8b.hh" // USES CohesiveDataHex8b
// Test adjustTopology() with 3-D hexahedral element.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8b(void) { // testAdjustTopologyHex8b
PYLITH_METHOD_BEGIN;
CohesiveDataHex8b data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8b
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8c.hh" // USES CohesiveDataHex8c
// Test adjustTopology() with 3-D hexahedral element.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8c(void) { // testAdjustTopologyHex8c
PYLITH_METHOD_BEGIN;
CohesiveDataHex8c data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8c
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8d.hh" // USES CohesiveDataHex8d
// Test adjustTopology() with 3-D hexahedral element.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8d(void) { // testAdjustTopologyHex8d
PYLITH_METHOD_BEGIN;
CohesiveDataHex8d data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8d
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8e.hh" // USES CohesiveDataHex8e
// Test adjustTopology() with 3-D hexahedral element.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8e(void) { // testAdjustTopologyHex8e
PYLITH_METHOD_BEGIN;
CohesiveDataHex8e data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8e
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8f.hh" // USES CohesiveDataHex8f
// Test adjustTopology() with 3-D hexahedral element.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8f(void) { // testAdjustTopologyHex8f
PYLITH_METHOD_BEGIN;
CohesiveDataHex8f data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8f
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8g.hh" // USES CohesiveDataHex8g
// Test adjustTopology() with 3-D hexahedral element (2 cells easy).
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8g(void) { // testAdjustTopologyHex8g
PYLITH_METHOD_BEGIN;
CohesiveDataHex8g data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8g
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8h.hh" // USES CohesiveDataHex8h
// Test adjustTopology() with 3-D hexahedral element (2 cells difficult).
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8h(void) { // testAdjustTopologyHex8h
PYLITH_METHOD_BEGIN;
CohesiveDataHex8h data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8h
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8i.hh" // USES CohesiveDataHex8i
// Test adjustTopology() with 3-D hexahedral element (vertex/edge on fault).
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8i(void) { // testAdjustTopologyHex8i
PYLITH_METHOD_BEGIN;
CohesiveDataHex8i data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8i
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8j.hh" // USES CohesiveDataHex8j
// Test adjustTopology() with 3-D hexahedral element (embedded fault).
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8j(void) { // testAdjustTopologyHex8j
PYLITH_METHOD_BEGIN;
CohesiveDataHex8j data;
FaultCohesiveTract fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8j
// ----------------------------------------------------------------------
#include "data/CohesiveDataTri3Lagrange.hh" // USES CohesiveDataTri3Lagrange
// Test adjustTopology() with 2-D triangular element for Lagrange
// multipliers.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyTri3Lagrange(void) { // testAdjustTopologyTri3Lagrange
PYLITH_METHOD_BEGIN;
CohesiveDataTri3Lagrange data;
FaultCohesiveKin fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyTri3Lagrange
// ----------------------------------------------------------------------
#include "data/CohesiveDataQuad4Lagrange.hh" // USES CohesiveDataQuad4Lagrange
// Test adjustTopology() with 2-D quadrilateral element for Lagrange
// multipliers.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyQuad4Lagrange(void) { // testAdjustTopologyQuad4Lagrange
PYLITH_METHOD_BEGIN;
CohesiveDataQuad4Lagrange data;
FaultCohesiveKin fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyQuad4Lagrange
// ----------------------------------------------------------------------
#include "data/CohesiveDataTet4Lagrange.hh" // USES CohesiveDataTet4Lagrange
// Test adjustTopology() with 3-D tetrahedral element for Lagrange
// multipliers.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyTet4Lagrange(void) { // testAdjustTopologyTet4Lagrange
PYLITH_METHOD_BEGIN;
CohesiveDataTet4Lagrange data;
FaultCohesiveKin fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyTet4Lagrange
// ----------------------------------------------------------------------
#include "data/CohesiveDataHex8Lagrange.hh" // USES CohesiveDataHex8Lagrange
// Test adjustTopology() with 3-D hexahedral element for Lagrange
// multipliers.
void
pylith::faults::TestFaultCohesive::testAdjustTopologyHex8Lagrange(void) { // testAdjustTopologyHex8Lagrange
PYLITH_METHOD_BEGIN;
CohesiveDataHex8Lagrange data;
FaultCohesiveKin fault;
_testAdjustTopology(&fault, data);
PYLITH_METHOD_END;
} // testAdjustTopologyHex8Lagrange
#endif
// End of file
| [
"baagaard@usgs.gov"
] | baagaard@usgs.gov |
e4764361a01eaaf5ecb6c285fafc3ffa1e13dc5a | 9d497b51303f46268866a303a93b24a0e764cdbf | /src/x0d/modules/director/HaproxyApi.h | e74998de33b0fea297f2142628041d8e6b72f7f5 | [
"MIT"
] | permissive | klevler/x0 | 8abf236905f0ee046cdb509b7f196fecd69d3691 | 62896da39d4808853a8702c9ae7186e5a5ac2a27 | refs/heads/master | 2021-01-24T09:01:48.455199 | 2016-09-19T22:13:52 | 2016-09-19T22:13:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 992 | h | // This file is part of the "x0" project, http://github.com/christianparpart/x0>
// (c) 2009-2016 Christian Parpart <trapni@gmail.com>
//
// Licensed under the MIT License (the "License"); you may not use this
// file except in compliance with the License. You may obtain a copy of
// the License at: http://opensource.org/licenses/MIT
#pragma once
#include "Backend.h"
#include "Director.h"
#include "HealthMonitor.h"
#include <base/Buffer.h>
#include <base/Duration.h>
#include <base/CustomDataMgr.h>
#include <xzero/HttpRequest.h>
class HaproxyApi : public base::CustomData {
private:
typedef std::unordered_map<std::string, std::unique_ptr<Director>>
DirectorMap;
DirectorMap* directors_;
public:
explicit HaproxyApi(DirectorMap* directors);
~HaproxyApi();
void monitor(xzero::HttpRequest* r);
void stats(xzero::HttpRequest* r, const std::string& prefix);
private:
void csv(xzero::HttpRequest* r);
void buildFrontendCSV(Buffer& buf, Director* director);
};
| [
"trapni@gmail.com"
] | trapni@gmail.com |
a0ad737d4e53b98384e15b37988b27c243be58d1 | e0341cdaaa8e64eda8f323b61aa3a1ff71374c79 | /BlackJack/ConsoleText.h | 326e9097e37a1c86f4ec5f915ee954c3e4cb636d | [] | no_license | xardas110/BlackJack | f76681ec2e9edc2e3e609bc90b4294c7750dc8ee | f4739e2e6c172eae749a7f6b9d77eca03f1fb34f | refs/heads/master | 2023-06-22T16:18:54.773614 | 2023-06-13T01:22:40 | 2023-06-13T01:22:40 | 302,242,675 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | h | #pragma once
#include "Vec.h"
#include <string>
struct CMDText
{
private:
iVec2D offset;
std::wstring text;
public:
CMDText();
CMDText(iVec2D off, std::wstring tex);
void SetText(std::wstring text);
void SetOffset(iVec2D offset);
void Print();
void Clear();
}; | [
"xardas110@yahoo.no"
] | xardas110@yahoo.no |
9fdd092a53d2450079163c250239d8e69585b8e5 | 9c9a24ffbde703b4b23ab8b3afcc2d8b2e260aba | /androidClasses/PowerQuest.cpp | b604dce973308d658f1fb84f2b5d09ccbbdd616a | [] | no_license | itita/2-z-q-x- | 14afc190f8279746e857c96fa7084cac683077c8 | baefb0b36381cbd035db75b4cd9640e5ab95026b | refs/heads/master | 2021-01-01T18:37:53.307872 | 2013-10-09T05:00:53 | 2013-10-09T05:00:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,696 | cpp | //
// PowerQuest.cpp
// ww4
//
// Created by xiao tang on 13-6-8.
//
//
#include "PowerQuest.h"
#include "MyMessageManage.h"
#include "MyGameInfo.h"
#include "MyUtil.h"
#include "DefineSet.h"
#include "Mathlib.h"
#include "GXAntiCrack.h"
#include "MyHttpConnection.h"
PowerQuest* PowerQuest::create() {
PowerQuest* task = new PowerQuest();
task->autorelease();
// task->power = _power;
task->questTag = powerQuestTag;
// task->setIconName(CCString::create("questEveryDay.png"));
return task;
}
bool PowerQuest::excuteMsg(MyBaseMessage* msg) {
return MyBaseQuest::excuteMsg(msg);
}
int PowerQuest::getCompleteStatus() {
for (int i=0; i<costResourceTagList->count(); i++) {
int costTag = ((GXintValue*)costResourceTagList->objectAtIndex(i))->getValue();
int costCount = ((GXintValue*)costResourceCountList->objectAtIndex(i))->getValue();
if (MyGameInfo::getInstance()->getResource(costTag) < costCount ) {
return false;
}
}
if (deadLine > 0) {
struct cc_timeval now;
CCTime::gettimeofdayCocos2d(&now, NULL);
if (now.tv_sec > deadLine/1000 ) {
return false;
}
}
return true;
}
void PowerQuest::getPrize() {
for (int i=0; i<costResourceTagList->count(); i++) {
int costTag = ((GXintValue*)costResourceTagList->objectAtIndex(i))->getValue();
int costCount = ((GXintValue*)costResourceCountList->objectAtIndex(i))->getValue();
MyGameInfo::getInstance()->changeResource(costTag,-1*costCount);
}
MyGameInfo::getInstance()->setPower(MyGameInfo::getInstance()->getPower()+prizePower->getValue());
}
CCLayer* PowerQuest::getDescLayer() {
CCLayer* layer = CCLayer::create();
CCLabelTTF* descTitle = CCLabelTTF::create("任务简报:","Arial",25);
descTitle->setAnchorPoint(ccp(0,0.5));
descTitle->setPosition(ccp(25,360));
descTitle->setColor(ccc3(255,120,0));
CCLabelTTF* desc = CCLabelTTF::create(GXUtil::insertNewline(getDescStr()->getCString(),15).c_str(),"Arial",23,CCSizeZero, kCCTextAlignmentLeft, kCCVerticalTextAlignmentTop);
desc->setAnchorPoint(ccp(0,1));
desc->setPosition(ccp(25,340));
desc->setColor(ccc3(230, 207, 185));
CCLabelTTF* destTitle = CCLabelTTF::create("任务目标:","Arial",25);
destTitle->setAnchorPoint(ccp(0,1));
destTitle->setPosition(ccp(25,337-desc->getContentSize().height));
destTitle->setColor(ccc3(255,120,0));
char str[100] = {0};
int i=0;
for (i=0; i<costResourceTagList->count(); i++) {
int costTag = ((GXintValue*)costResourceTagList->objectAtIndex(i))->getValue();
int costCount = ((GXintValue*)costResourceCountList->objectAtIndex(i))->getValue();
CCSprite* tixing;
if (MyGameInfo::getInstance()->getResource(costTag) >= costCount ) {
sprintf(str," [已完成] 需消耗%d",costCount);
tixing = CCSprite::createWithSpriteFrameName("questAppear.png");
tixing->setScale(0.45);
tixing->setPosition(ccp(55,293-desc->getContentSize().height-i*32));
tixing->runAction(CCRepeatForever::create(static_cast<CCSequence*>(CCSequence::create(CCScaleTo::create(1, 0.5), CCScaleTo::create(1,0.45),NULL) )));
} else {
sprintf(str," [未完成] 需消耗%d",costCount);
tixing = CCSprite::createWithSpriteFrameName("questQuestion.png");
tixing->setScale(0.45);
tixing->setPosition(ccp(55,293-desc->getContentSize().height-i*32));
}
CCLabelTTF* dest = CCLabelTTF::create(str,"Arial",23);
dest->setAnchorPoint(ccp(0,1));
dest->setPosition(ccp(25,305-desc->getContentSize().height-i*32));
dest->setColor(ccc3(230, 207, 185));
CCSprite* icon = MyUtil::getInstance()->getResourceIcon(costTag);
icon->setScale(Mathlib::min(32/icon->getContentSize().width,32/icon->getContentSize().height));
icon->setPosition(ccp(35+dest->getContentSize().width,293-desc->getContentSize().height-i*32));
layer->addChild(dest);
layer->addChild(icon);
layer->addChild(tixing);
}
if(deadLine > 0) {
struct cc_timeval now;
CCTime::gettimeofdayCocos2d(&now, NULL);
CCSprite* tixing1;
if (now.tv_sec <= deadLine/1000 ) {
sprintf(str," 需在『%s』之前完成",getdeadLineLabel()->getCString());
tixing1 = CCSprite::createWithSpriteFrameName("questAppear.png");
tixing1->setScale(0.45);
tixing1->setPosition(ccp(55,293-desc->getContentSize().height-i*32));
tixing1->runAction(CCRepeatForever::create(static_cast<CCSequence*>(CCSequence::create(CCScaleTo::create(1, 0.5), CCScaleTo::create(1,0.45),NULL) )));
} else {
sprintf(str," 已经超过『%s』,无法完成",getdeadLineLabel()->getCString());
tixing1 = CCSprite::createWithSpriteFrameName("questQuestion.png");
tixing1->setScale(0.45);
tixing1->setPosition(ccp(55,293-desc->getContentSize().height-i*32));
}
CCLabelTTF* dest1 = CCLabelTTF::create(str,"Arial",23);
dest1->setAnchorPoint(ccp(0,1));
dest1->setPosition(ccp(25,305-desc->getContentSize().height-i*32));
dest1->setColor(ccc3(230, 207, 185));
layer->addChild(dest1);
layer->addChild(tixing1);
}
layer->addChild(descTitle);
layer->addChild(desc);
layer->addChild(destTitle);
return layer;
}
CCLayer* PowerQuest::getPrizeInfo() {
CCLayer* prizeLayer = CCLayer::create();
// CCSprite* icon1 = MyUtil::getInstance()->getResourceIcon(prizeTag);
// icon1->setScale(Mathlib::min(40/icon1->getContentSize().width,40/icon1->getContentSize().height));
CCSprite* icon1 = CCSprite::createWithSpriteFrameName("powerIcon.png");
icon1->setScale(Mathlib::min(40/icon1->getContentSize().width,40/icon1->getContentSize().height));
icon1->setPosition(ccp(430,307));
CCSprite* sprite1 = CCSprite::createWithSpriteFrameName("questLight.png");
sprite1->setScale(1.15);
sprite1->setOpacity(200);
sprite1->setPosition(ccp(430,307));
char str[30] = {0};
sprintf(str,"%d",(int)prizePower->getValue());
CCLabelAtlas* count1 = CCLabelAtlas::create(str, "number7.png", 24, 36, '/');
count1->setPosition(ccp(603.5,307));
count1->setScale(0.6);
count1->setColor(ccc3(230, 207, 185));
count1->setAnchorPoint(ccp(1,0.5));
CCSprite* dividingLine1 = CCSprite::createWithSpriteFrameName("uiDialogCommonLine.png");
dividingLine1->setScaleX(190/dividingLine1->getContentSize().width);
dividingLine1->setPosition(ccp(508.5,295));
dividingLine1->setScaleY(2/dividingLine1->getContentSize().height);
CCSprite* dividingLine2 = CCSprite::createWithSpriteFrameName("uiDialogCommonLine.png");
dividingLine2->setScaleX(80/dividingLine2->getContentSize().width);
dividingLine2->setScaleY(2/dividingLine2->getContentSize().height);
dividingLine2->setAnchorPoint(ccp(1,0.5));
dividingLine2->setPosition(ccp(603,290));
prizeLayer->addChild(dividingLine1);
prizeLayer->addChild(dividingLine2);
prizeLayer->addChild(sprite1);
prizeLayer->addChild(icon1);
prizeLayer->addChild(count1);
return prizeLayer;
}
CCLabelTTF* PowerQuest::getTitle() {
return CCLabelTTF::create(getTitleStr()->getCString(),"Arial",30);
} | [
"tangshangle@foxmail.com"
] | tangshangle@foxmail.com |
fde03a9ec1366d2adf6fec629199aa78638f7f79 | 1b8e1ddcb86f0a5cd018bc6b3400c8c6fb1c1984 | /server/server/Pet/.svn/text-base/PetService.h.svn-base | 3e7a6bec2d5750605a95157353e3195b17c5e8c6 | [] | no_license | yzfrs/ddianle_d1 | 5e9a3ab0ad646ca707368850c01f8117a09f5bfd | abffb574419cc2a8a361702e012cdd14f1102a6d | refs/heads/master | 2021-01-01T03:32:51.973703 | 2016-05-12T09:27:00 | 2016-05-12T09:27:00 | 58,615,329 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,159 | /*
* PetService.h
* Description:
* Copyright (C) 2015 ddianle Inc. All rights reserved.
* Author: XieJiangBei
* Create time: 2015-6-11 16:22:20
*/
#ifndef __PETSERVICE_H__
#define __PETSERVICE_H__
#include "GameMsg_Pet.h"
#include "../Macros/Macros.h"
#include "../Pattern/Service.h"
#include "PetConfig/PetSkillConfig.h"
class Pet;
class PetComponent;
class PetSkill;
/**
* PetService:
*
*/
class PetService : public Service
{
protected:
PetService();
public:
CLASS_INSTANCE_FUNC(PetService);
virtual ~PetService();
public:
virtual bool Init();
void DoCreatePet(PetComponent *pPetComponent, unsigned short nPetTypeID,
unsigned char nPotentialID, bool bAnnounce);
void DoUnlockGrid(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoChangeName(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoChangeCarried(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoUnloadCarried(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoImprove(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoEvolution(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoFeeding(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void DoExchange(PetComponent *pPetComponent, GameMsg_Base &rMsg);
void EncodePetMsgInfo(const Pet &rPet, PetMsgInfo &rInfo);
void EncodePetExchangeMsgInfo(const Pet &rPet, PetExchangeMsgInfo &rInfo);
void EncodePetBrief(const Pet &rPet, PlayerPet &briefPet);
void EncodePetSkill(const Pet &rPet, PlayerPetSkill &playerSkill);
void EncodePetSkillList(const Pet &rPet, std::list<PetMsgSkill> &listDanceSkill,
std::list<PetMsgSkill> &listFightSkill);
SkillType EncodePetSkill(const Pet &rPet, const PetSkill &skill, PetMsgSkill &skillMsg);
void GetImproveQualityCondition(unsigned short nPetTypeID, unsigned char nQualityType,
unsigned char &rCostType, unsigned int &rCostAmount, CItem &rCostItem);
void GetEvolutionCondition(unsigned short nPetTypeID, unsigned char nNextEvolutionTimes,
unsigned char &rCostType, unsigned int &rCostAmount, CItem &rCostItem, CItem &rExtraItem, int &rBaseRate);
int GetPetRecoveryTime(const Pet &rPet) const;
protected:
void SendUnlockGridRes(PetComponent *pPetComponent, ePetUnlockGridRes eErrorCode, unsigned short nGridCount = 0);
void SendChangeNameRes(PetComponent *pPetComponent, ePetChangeNameRes eErrorCode, unsigned int nPetID,
const std::string &rNewName = "");
void SendChangeCarriedRes(PetComponent *pPetComponent, ePetChangeCarriedRes eErrorCode, Pet *pPet = NULL);
void SendExchangeRes(PetComponent *pPetComponent, ePetExchangeRes eErrorCode);
void FeedExp(PetComponent *pPetComponent, Pet *pPet, unsigned int nItemType, int nItemCount,
GameMsg_S2C_PetFeedingRes &rResMsg);
void FeedEndurance(PetComponent *pPetComponent, Pet *pPet, unsigned int nItemType, int nItemCount,
GameMsg_S2C_PetFeedingRes &rResMsg);
protected:
void OnCreatePetCallback(QueryBase &rQuery);
};
#endif // __PETSERVICE_H__
| [
"root@localhost.localdomain"
] | root@localhost.localdomain | |
605fe130ecde3488b89dbf44196a847228ce97c1 | 8fe6eb478ad3121c22664929633c83f1c0cb943b | /HW5/labirynth.cpp | ddfc89222f5dfaa223b784ece6aa3d1d95bea9f3 | [] | no_license | brookecantwell/data-structures | 63792291a1a39959d0e4d5f93ccb74e181fa2caa | 3387a924619425c052a8643f80d1be53f6236f0c | refs/heads/master | 2021-01-12T15:14:58.844244 | 2017-03-31T19:39:40 | 2017-03-31T19:39:40 | 71,732,027 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,016 | cpp | /*
* Brooke Cantwell
*
* CISC2200 Data Structures
*
* Homework #5
*
* Driver
*
*
*/
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <iomanip>
#include "maze.h"
using namespace std;
//global variables
const int SIZE = 10;
const char SENTINEL = 0;
//function prototypes
bool read_maze(int&, int&, Maze&);
void print_vector(vector<vector<char>>);
main( )
{
//local variables
Maze this_maze;
vector <vector<char>> v;
int x, y;
bool file_open = false;
int success = 0;
//open and read from file, if there is an error
//opening the file, prompt the user to input
//the file name again
while(!file_open)
file_open = read_maze(x, y, this_maze);
while (success < 1)
success = this_maze.solve(x, y);
//output
cout << endl << "Labirynth:" << endl;
cout << this_maze << endl;
}
//get data file name, open and read from data file, and get
//starting coordinates, return false if file does not open
bool read_maze(int&x, int&y, Maze&this_maze)
{
string file_name;
char c;
bool file_open;
cout << "Enter file name: ";
cin >> file_name;
ifstream data_file(file_name);
//if file doesn't open display error message
//and set file_open to false
if (!data_file.is_open( ))
{
cout << "Error opening file." << endl;
file_open = false;
}
//if the file is open, read in data, get
//user input for entry point, and make sure
//user input values do not exceed the size
else
{
file_open = true;
data_file >> this_maze;
data_file.close( );
cout << this_maze << endl;
do
{
cout << "Enter entry point coordinates in the form x,y: ";
cin >> x >> c >> y;
} while (x > SIZE || y > SIZE);
//set entrance to a different character to prevent the
//program from falsely thinking it's reached the exit
this_maze.set_character('o', x, y);
}
return(file_open);
}
| [
"bcantwell1@fordham.edu"
] | bcantwell1@fordham.edu |
c51f740ecb20b1ba7fa03005cb24bc7f7fa9dd2c | acd2f220b1edf873908cc99613b25bf3336db93b | /ESP32_Automat/JSON.ino | d9fc164ea2958f247217a785cbff86e9a4f52fc2 | [
"MIT"
] | permissive | lionelmichaud/SwimminpoolAutomate32 | 33a3fa3866755d85ec93fa0656c6daf74d357737 | 9874584789f34599368bad2930e6f58a344e057c | refs/heads/master | 2021-06-02T19:29:29.398179 | 2020-04-19T13:44:14 | 2020-04-19T13:44:14 | 152,998,231 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,357 | ino | //---------------------------------------------
// LIST DIRECTORY ON A FILE SYSTEM
//---------------------------------------------
void listDir(fs::FS &fs, const char * dirname, uint8_t levels) {
Serial.printf("Listing directory: %s\r\n", dirname);
File root = fs.open(dirname);
if (!root) {
Serial.println("- failed to open directory");
return;
}
if (!root.isDirectory()) {
Serial.println(" - not a directory");
return;
}
File file = root.openNextFile();
while (file) {
if (file.isDirectory()) {
Serial.print(" DIR : ");
Serial.println(file.name());
if (levels) {
listDir(fs, file.name(), levels - 1);
}
} else {
Serial.print(" FILE: ");
Serial.print(file.name());
Serial.print("\tSIZE: ");
Serial.println(file.size());
}
file = root.openNextFile();
}
}
//---------------------------------------------
// READ A JSON CONFIG FILE ON SPIFFS
//---------------------------------------------
boolean ReadConfig(const char *filename, Configuration_T& Config) {
// List SPIFFS directory
listDir(SPIFFS, "/", 0);
// Open file for reading
File configFile = SPIFFS.open(filename, "r");
if (!configFile) {
printlnA("Failed to open config file !");
DisplayAlert("Failed to open config file");
return false;
}
// Allocate the memory pool on the stack.
// Don't forget to change the capacity to match your JSON document.
// Use arduinojson.org/assistant to compute the capacity.
StaticJsonBuffer<JSONBufferConfigCapacity> jsonBuffer;
// Parse the root object
JsonObject& root = jsonBuffer.parseObject(configFile);
JsonObject& root_ = root;
// vérifier le bon décodage
if (!root.success())
{
printlnA("Failed to read JSON config file, using default configuration");
DisplayAlert("Failed to read config file");
return false;
}
root_.prettyPrintTo(Serial);
// get RVB LED parameters
Config.RedLEDtemp = root["temperature LED rouge"] | 20;
Config.GreenLEDtemp = root["temperature LED verte"] | 27;
// get OLED parameters
Config.flipOLED = root["flip OLED display"].as<bool>();
// get timers values
Config.intervalTemp = 1000 * (root["temperature sampling period (s)"] | 5);
Config.timeoutOpenClose = 1000 * (root["cover open/close duration (s)"] | 145);
Config.intervalWiFi = 1000 * (root["wi-fi transmission period (s)"] | 60);
// get Domoticz parameters
Config.domoticz.host = root["domoticz IP"] | "192.168.1.23";
Config.domoticz.port = root["domoticz port"] | 8084;
Config.domoticz.idxs.idx_waterTemp = root["idx temperature eau"] | 48;
Config.domoticz.idxs.idx_airTemp = root["idx temperature air"] | 49;
Config.domoticz.idxs.idx_automate = root["idx automate mode"] | 50;
Config.domoticz.idxs.idx_posVolet = root["idx position volet"] | 51;
// get Wi-Fi access point parameters
Config.automat_pwd = root["access point password"] | "Levsmsa2";
// Serial.println(); Serial.print("flipOLED : "); Serial.println(Config.flipOLED);
// Serial.println("Temporisations : "); Serial.println(Config.intervalTemp); Serial.println(Config.timeoutOpenClose); Serial.println(Config.intervalWiFi);
// Serial.println("IDX : "); Serial.println(Config.domoticz.idxs.idx_waterTemp); Serial.println(Config.domoticz.idxs.idx_airTemp); Serial.println(Config.domoticz.idxs.idx_automate);
// Serial.println("AP password : "); Serial.println(Config.automat_pwd);
printlnA("Networks configurations: ");
// Extract the wi-fi networks array
JsonArray & NetArray = root_["networks"];
Config.nbWiFiNetworks = NetArray.size();
Config.WiFiNetworks = new WiFiNetwok_T[Config.nbWiFiNetworks];
int i = 0;
// Walk the JsonArray efficiently
for (JsonObject& elem : NetArray) {
JsonObject& network = elem;
// const char* ssid = elem["ssid"]; // "Mon BWi-Fi"
// const char* password = elem["password"]; // "louannetvanessasontmessourisadorees"
Config.WiFiNetworks[i].ssid = elem["ssid"].as<String>();
Config.WiFiNetworks[i].password = elem["password"].as<String>();
printA(" - SSID: "); printA(Config.WiFiNetworks[i].ssid);
printA(" PASSWORD: "); printlnA(Config.WiFiNetworks[i].password);
i++;
}
// Close the file (File's destructor doesn't close the file)
configFile.close();
return true;
}
| [
"lio.michaud@gmail.com"
] | lio.michaud@gmail.com |
e12acd66decf6b449f3bceccbb0e789e05dc5e5c | e390fd81ac010d530a9938b3d57df64c6e0c2427 | /include/kerneltest/v1.0/hooks/filesystem_workspace.hpp | 38ba9cba3f9360b727ab5b53730bbe0a2dce81cf | [
"BSL-1.0",
"Apache-2.0"
] | permissive | ned14/kerneltest | 65c0c2ab8a05148b851292749e6075289a63eee1 | 3474daef736b9e019fc4267f7a2628ce952bbfa9 | refs/heads/master | 2023-08-16T12:53:08.523500 | 2023-07-20T09:00:27 | 2023-07-20T09:00:27 | 59,424,206 | 5 | 3 | NOASSERTION | 2022-08-18T14:05:17 | 2016-05-22T17:08:48 | C++ | UTF-8 | C++ | false | false | 29,641 | hpp | /* Filesystem workspace test kernel hooks
(C) 2016-2017 Niall Douglas <http://www.nedproductions.biz/> (6 commits)
File Created: May 2016
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 in the accompanying file
Licence.txt or 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.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file Licence.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
#include "../config.hpp"
#ifndef KERNELTEST_HOOKS_FILESYSTEM_WORKSPACE_HPP
#define KERNELTEST_HOOKS_FILESYSTEM_WORKSPACE_HPP
#include "quickcpplib/algorithm/string.hpp"
#include "quickcpplib/utils/thread.hpp"
#include <fstream>
#include <mutex>
#include <unordered_map>
KERNELTEST_V1_NAMESPACE_BEGIN
namespace hooks
{
namespace filesystem_setup_impl
{
//! Record the current working directory and store it
static inline const filesystem::path &starting_path()
{
static filesystem::path p = filesystem::current_path();
return p;
}
static inline filesystem::path _has_product(filesystem::path dir, const std::string &product)
{
if(filesystem::exists(dir / product))
return dir / product;
if(filesystem::exists(dir / ("boost." + product)))
return dir / ("boost." + product);
return filesystem::path();
}
struct library_directory_storage
{
std::unique_lock<std::mutex> lock;
filesystem::path &path;
library_directory_storage(std::unique_lock<std::mutex> &&_lock, filesystem::path &_path)
: lock(std::move(_lock))
, path(_path)
{
}
};
/*! You can override the library directory chosen by calling library_directory(product)
and then call this function, setting library_directory_storage.path to the new directory.
Note that library_directory_storage holds a mutex to the directory storage and will
therefore deadlock all other users until it is destroyed.
*/
inline library_directory_storage override_library_directory()
{
static std::mutex lock;
static filesystem::path ret;
return library_directory_storage(std::unique_lock<std::mutex>(lock), ret);
}
/*! Figure out an absolute path to the base of the product's directory
and cache it for later fast returns. Changing the product from the
cached value will recalculate the path.
The environment variable KERNELTEST_product_HOME is first checked,
only if it doesn't exist the working directory is checked for a directory
called product and every directory up the hierarchy until the root of the
drive.
\tparam is_throwing If true, throw exceptions for any errors encountered,
else print a useful message to KERNELTEST_CERR() and terminate the
process.
*/
template <bool is_throwing = false> inline filesystem::path library_directory(const char *__product = current_test_kernel.product) // noexcept(!is_throwing)
{
try
{
static std::string product;
auto ret = override_library_directory();
if(__product == product)
return ret.path;
filesystem::path library_dir = starting_path();
// Is there an environment variable KERNELTEST_product_HOME?
std::string _product(__product);
std::string envkey("KERNELTEST_" + QUICKCPPLIB_NAMESPACE::algorithm::string::toupper(_product) + "_HOME");
#ifdef _MSC_VER
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#else
#pragma warning(push)
#pragma warning(disable : 4996) // Stupid deprecation warning
#endif
#endif
#ifdef _UNICODE
std::wstring _envkey;
for(auto &i : envkey)
_envkey.push_back(i);
auto env = _wgetenv(_envkey.c_str());
#else
auto env = getenv(envkey.c_str());
#endif
#ifdef _MSC_VER
#ifdef __clang__
#pragma clang diagnostic pop
#else
#pragma warning(pop)
#endif
#endif
if(env)
{
ret.path.assign(env);
product = _product;
return ret.path;
}
// If no environment variable, start searching from the current working directory
// Layout is <boost.afio>/test/tests/<test_name>/<workspace_templates>
// We must also account for an out-of-tree build
filesystem::path temp;
for(;;)
{
temp = _has_product(library_dir, _product);
if(!temp.empty() && filesystem::exists(temp / "test" / "tests"))
{
ret.path = temp;
product = _product;
return ret.path;
}
if(library_dir.native().size() > 3)
library_dir = filesystem::canonical(library_dir / "..");
else
break;
}
if(is_throwing)
throw std::runtime_error("Couldn't figure out where the product lives");
else
{
KERNELTEST_CERR("FATAL: Couldn't figure out where the product " << _product << " lives. You need a " << _product << " directory somewhere in or above the directory you run the tests from." << std::endl);
std::terminate();
}
}
catch(...)
{
if(!is_throwing)
{
KERNELTEST_CERR("library_directory() unexpectedly failed" << std::endl);
std::terminate();
}
else
throw;
}
}
/*! Figure out an absolute path to the correct test workspace template. Uses
library_directory() for the base of the product and assumes any test workspace
templates live in product/test/tests.
\tparam is_throwing If true, throw exceptions for any errors encountered,
else print a useful message to KERNELTEST_CERR() and terminate the
process.
*/
template <bool is_throwing = false> inline filesystem::path workspace_template_path(const filesystem::path &workspace) // noexcept(!is_throwing)
{
try
{
filesystem::path library_dir = library_directory();
if(filesystem::exists(library_dir / "test" / "tests" / workspace))
{
return library_dir / "test" / "tests" / workspace;
}
// The final directory is allowed to not exist
auto workspace2 = workspace.parent_path();
if(filesystem::exists(library_dir / "test" / "tests" / workspace2))
{
return library_dir / "test" / "tests" / workspace;
}
if(is_throwing)
throw std::runtime_error("Couldn't figure out where the test workspace templates live");
else
{
KERNELTEST_CERR("FATAL: Couldn't figure out where the test workspace templates live for test " << workspace << ". Product source directory is thought to be " << library_dir << std::endl);
std::terminate();
}
}
catch(...)
{
if(!is_throwing)
{
KERNELTEST_CERR("workspace_template_path() unexpectedly failed" << std::endl);
std::terminate();
}
else
throw;
}
}
template <bool is_throwing, class Parent, class RetType> struct impl
{
filesystem::path _current;
void _remove_workspace() // noexcept(!is_throwing)
{
std::error_code ec;
auto begin = std::chrono::steady_clock::now();
do
{
ec.clear();
bool exists = filesystem::exists(_current, ec);
if(!exists && (!ec || ec == std::errc::no_such_file_or_directory))
return;
filesystem::remove_all(_current, ec);
} while(std::chrono::duration_cast<std::chrono::seconds>(std::chrono::steady_clock::now() - begin).count() < 5);
if(is_throwing)
throw std::runtime_error("Couldn't delete workspace after five seconds of trying");
KERNELTEST_CERR("FATAL: Couldn't delete " << _current << " due to " << ec.message() << " after five seconds of trying." << std::endl);
std::terminate();
}
impl(Parent *, RetType &, size_t, filesystem::path &&workspace) // noexcept(!is_throwing)
{
auto template_path = workspace_template_path<is_throwing>(workspace);
// Make the workspace we choose unique to this thread
_current = starting_path() / ("kerneltest_workspace_" + std::to_string(QUICKCPPLIB_NAMESPACE::utils::thread::this_thread_id()));
// Clear out any stale workspace with the same name at this path just in case
_remove_workspace();
std::error_code ec;
auto fatalexit = [&] {
if(is_throwing)
throw std::system_error(ec);
KERNELTEST_CERR("FATAL: Couldn't copy " << template_path << " to " << _current << " due to " << ec.message() << " after five seconds of trying." << std::endl);
std::terminate();
};
// Is the input workspace no workspace? In which case create an empty directory
bool exists = filesystem::exists(template_path, ec);
if(ec && ec != std::errc::no_such_file_or_directory)
fatalexit();
if(!exists)
{
filesystem::create_directory(_current, ec);
if(ec)
fatalexit();
}
else
{
auto begin = std::chrono::steady_clock::now();
do
{
// VS2017 still doesn't understand symlinks :(, so copy in the starting filesystem environment by hand
struct _
{
static void copy_level(const filesystem::path &srcdir, const filesystem::path &destdir, std::error_code &ec)
{
for(filesystem::directory_iterator it(srcdir); it != filesystem::directory_iterator(); ++it)
{
#ifdef _WIN32
typedef struct _REPARSE_DATA_BUFFER // NOLINT
{
ULONG ReparseTag;
USHORT ReparseDataLength;
USHORT Reserved;
union {
struct
{
USHORT SubstituteNameOffset;
USHORT SubstituteNameLength;
USHORT PrintNameOffset;
USHORT PrintNameLength;
ULONG Flags;
WCHAR PathBuffer[1];
} SymbolicLinkReparseBuffer;
struct
{
USHORT SubstituteNameOffset;
USHORT SubstituteNameLength;
USHORT PrintNameOffset;
USHORT PrintNameLength;
WCHAR PathBuffer[1];
} MountPointReparseBuffer;
struct
{
UCHAR DataBuffer[1];
} GenericReparseBuffer;
};
} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
bool is_symlink = false;
HANDLE h = CreateFileW(it->path().c_str(), SYNCHRONIZE | FILE_READ_ATTRIBUTES | STANDARD_RIGHTS_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_OPEN_REPARSE_POINT, NULL);
if(h == INVALID_HANDLE_VALUE)
{
ec = std::error_code(GetLastError(), std::system_category());
return;
}
TCHAR buffer[32769];
auto *rpd = (REPARSE_DATA_BUFFER *) buffer;
DWORD read = 0, written = 0;
if(DeviceIoControl(h, FSCTL_GET_REPARSE_POINT, NULL, 0, rpd, (DWORD) sizeof(buffer), &read, NULL))
{
is_symlink = true;
CloseHandle(h);
auto destpath = destdir / it->path().filename();
h = CreateFileW(destpath.c_str(), SYNCHRONIZE | FILE_READ_ATTRIBUTES | STANDARD_RIGHTS_READ | FILE_WRITE_ATTRIBUTES | STANDARD_RIGHTS_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_ALWAYS, 0, NULL);
if(h == INVALID_HANDLE_VALUE)
{
ec = std::error_code(GetLastError(), std::system_category());
return;
}
if(!DeviceIoControl(h, FSCTL_SET_REPARSE_POINT, rpd, read, NULL, 0, &written, NULL))
{
ec = std::error_code(GetLastError(), std::system_category());
CloseHandle(h);
return;
}
}
CloseHandle(h);
if(is_symlink)
continue;
#else
if(filesystem::is_symlink(it->status()))
{
filesystem::copy_symlink(it->path(), destdir / it->path().filename(), ec);
if(ec)
return;
}
#endif
else if(filesystem::is_directory(it->status()))
{
filesystem::create_directory(destdir / it->path().filename(), ec);
ec.clear();
copy_level(it->path(), destdir / it->path().filename(), ec);
if(ec)
return;
}
else if(filesystem::is_regular_file(it->status()))
{
filesystem::copy_file(it->path(), destdir / it->path().filename(), ec);
if(ec)
return;
}
}
}
};
filesystem::create_directory(_current, ec);
ec.clear();
_::copy_level(template_path, _current, ec);
if(!ec)
break;
} while(std::chrono::duration_cast<std::chrono::seconds>(std::chrono::steady_clock::now() - begin).count() < 5);
if(ec)
fatalexit();
}
// Set the working directory to the newly configured workspace
filesystem::current_path(_current);
current_test_kernel.working_directory = _current.c_str();
}
constexpr impl(impl &&) noexcept = default;
impl(const impl &) = delete;
~impl() noexcept(!is_throwing)
{
if(!_current.empty())
{
current_test_kernel.working_directory = nullptr;
filesystem::current_path(starting_path());
_remove_workspace();
}
}
};
template <bool is_throwing> struct inst
{
const char *workspacebase;
template <class Parent, class RetType> auto operator()(Parent *parent, RetType &testret, size_t idx, const char *workspace) const { return impl<is_throwing, Parent, RetType>(parent, testret, idx, filesystem::path(workspacebase) / workspace); }
std::string print(const char *workspace) const { return std::string("precondition ") + workspace; }
};
}
//! The parameters for the filesystem_setup hook
using filesystem_setup_parameters = parameters<const char *>;
/*! Kernel test hook setting up a workspace directory for the test to run inside and deleting it after.
The working directory on first instantiation is assumed to be the correct place to put test workspaces
each of which will be named after the unique thread id of the calling thread.
The source of the workspace templates comes from `workspace_template_path()` which in turn derives from
`library_directory()`.
\tparam is_throwing If true, throw exceptions for any errors encountered,
else print a useful message to KERNELTEST_CERR() and terminate the
process.
\return A type which when called configures the workspace and changes the working directory to that
workspace, and on destruction deletes the workspace and changes the working directory back to `starting_path()`.
`current_test_kernel.working_directory` is also set to the working directory.
\param workspacebase A path fragment inside `test/tests` of the base of the workspaces to choose from.
*/
template <bool is_throwing = false> constexpr inline auto filesystem_setup(const char *workspacebase = current_test_kernel.test) { return filesystem_setup_impl::inst<is_throwing>{workspacebase}; }
namespace filesystem_comparison_impl
{
//! Walk a directory hierarchy, depth first. f(directory_entry) can return something to early exit.
template <class U> inline auto depth_first_walk(filesystem::path path, U &&f) -> decltype(f(std::declval<filesystem::directory_entry>()))
{
if(filesystem::exists(path))
{
for(filesystem::directory_iterator it(path); it != filesystem::directory_iterator(); ++it)
{
if(!filesystem::is_symlink(it->path()) /* work around bug in libstdc++ */ && filesystem::is_directory(it->status()))
{
auto ret(depth_first_walk(it->path(), std::forward<U>(f)));
if(ret)
return ret;
}
}
for(filesystem::directory_iterator it(path); it != filesystem::directory_iterator(); ++it)
{
if(!filesystem::is_directory(it->status()))
{
auto ret(f(*it));
if(ret)
return ret;
}
}
}
// Return default constructed edition of the type returned by the callable
return decltype(f(std::declval<filesystem::directory_entry>()))();
}
/*! Compare two directories for equivalence, returning empty result if identical, else
path of first differing item.
*/
template <bool compare_contents, bool compare_timestamps> optional<result<filesystem::path>> compare_directories(filesystem::path before, filesystem::path after) noexcept
{
try
{
// Make list of everything in after
std::unordered_map<filesystem::path, filesystem::directory_entry, path_hasher> after_items;
depth_first_walk(after, [&](filesystem::directory_entry dirent) -> int {
after_items[dirent.path()] = std::move(dirent);
return 0;
});
// We need to remove each item as we check, if anything remains we fail
optional<result<filesystem::path>> ret = depth_first_walk(before, [&](filesystem::directory_entry dirent) -> optional<result<filesystem::path>> {
try
{
filesystem::path leafpath(dirent.path().native().substr(before.native().size() + 1));
filesystem::path afterpath(after / leafpath);
#ifdef _WIN32
if((GetFileAttributesW(dirent.path().c_str()) & FILE_ATTRIBUTE_REPARSE_POINT) != 0)
{
typedef struct _REPARSE_DATA_BUFFER // NOLINT
{
ULONG ReparseTag;
USHORT ReparseDataLength;
USHORT Reserved;
union {
struct
{
USHORT SubstituteNameOffset;
USHORT SubstituteNameLength;
USHORT PrintNameOffset;
USHORT PrintNameLength;
ULONG Flags;
WCHAR PathBuffer[1];
} SymbolicLinkReparseBuffer;
struct
{
USHORT SubstituteNameOffset;
USHORT SubstituteNameLength;
USHORT PrintNameOffset;
USHORT PrintNameLength;
WCHAR PathBuffer[1];
} MountPointReparseBuffer;
struct
{
UCHAR DataBuffer[1];
} GenericReparseBuffer;
};
} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
TCHAR buffer1[32769], buffer2[32769];
memset(buffer1, 0, sizeof(buffer1));
memset(buffer2, 0, sizeof(buffer2));
auto *rpd1 = (REPARSE_DATA_BUFFER *) buffer1;
auto *rpd2 = (REPARSE_DATA_BUFFER *) buffer2;
DWORD read1 = 0, read2 = 0;
HANDLE h = CreateFileW(dirent.path().c_str(), SYNCHRONIZE | FILE_READ_ATTRIBUTES | STANDARD_RIGHTS_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_OPEN_REPARSE_POINT, NULL);
if(h != INVALID_HANDLE_VALUE)
{
if(DeviceIoControl(h, FSCTL_GET_REPARSE_POINT, NULL, 0, rpd1, (DWORD) sizeof(buffer1), &read1, NULL))
{
CloseHandle(h);
}
else
{
CloseHandle(h);
goto differs;
}
}
h = CreateFileW(afterpath.c_str(), SYNCHRONIZE | FILE_READ_ATTRIBUTES | STANDARD_RIGHTS_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_OPEN_REPARSE_POINT, NULL);
if(h != INVALID_HANDLE_VALUE)
{
if(DeviceIoControl(h, FSCTL_GET_REPARSE_POINT, NULL, 0, rpd2, (DWORD) sizeof(buffer2), &read2, NULL))
{
CloseHandle(h);
}
else
{
CloseHandle(h);
goto differs;
}
}
if(rpd1->ReparseTag != rpd2->ReparseTag)
goto differs;
switch(rpd1->ReparseTag)
{
case IO_REPARSE_TAG_SYMLINK:
if(rpd1->SymbolicLinkReparseBuffer.SubstituteNameLength != rpd2->SymbolicLinkReparseBuffer.SubstituteNameLength)
goto differs;
if(memcmp(rpd1->SymbolicLinkReparseBuffer.PathBuffer + rpd1->SymbolicLinkReparseBuffer.SubstituteNameOffset / sizeof(wchar_t), rpd2->SymbolicLinkReparseBuffer.PathBuffer + rpd2->SymbolicLinkReparseBuffer.SubstituteNameOffset / sizeof(wchar_t), rpd1->SymbolicLinkReparseBuffer.SubstituteNameLength) != 0)
goto differs;
break;
case IO_REPARSE_TAG_MOUNT_POINT:
if(rpd1->MountPointReparseBuffer.SubstituteNameLength != rpd2->MountPointReparseBuffer.SubstituteNameLength)
goto differs;
if(memcmp(rpd1->MountPointReparseBuffer.PathBuffer + rpd1->MountPointReparseBuffer.SubstituteNameOffset / sizeof(wchar_t), rpd2->MountPointReparseBuffer.PathBuffer + rpd2->MountPointReparseBuffer.SubstituteNameOffset / sizeof(wchar_t), rpd1->MountPointReparseBuffer.SubstituteNameLength) != 0)
goto differs;
break;
}
}
#else
if(filesystem::is_symlink(dirent.symlink_status()))
{
if(filesystem::is_symlink(dirent.symlink_status()) != filesystem::is_symlink(filesystem::symlink_status(afterpath)))
goto differs;
if(filesystem::read_symlink(dirent.path()) != filesystem::read_symlink(afterpath))
goto differs;
}
#endif
{
auto beforestatus = dirent.status(), afterstatus = after_items[afterpath].status();
if(filesystem::is_directory(beforestatus) != filesystem::is_directory(afterstatus))
goto differs;
if(filesystem::is_regular_file(beforestatus) != filesystem::is_regular_file(afterstatus))
goto differs;
if(filesystem::file_size(dirent.path()) != filesystem::file_size(afterpath))
goto differs;
if(compare_timestamps)
{
if(beforestatus.permissions() != afterstatus.permissions())
goto differs;
if(filesystem::last_write_time(dirent.path()) != filesystem::last_write_time(afterpath))
goto differs;
}
}
if(compare_contents)
{
std::ifstream beforeh(dirent.path()), afterh(afterpath);
char beforeb[16384] = "", afterb[16384] = "";
do
{
beforeh.read(beforeb, sizeof(beforeb));
afterh.read(afterb, sizeof(afterb));
if(memcmp(beforeb, afterb, sizeof(afterb)))
goto differs;
} while(beforeh.good() && afterh.good());
}
// This item is identical
after_items.erase(afterpath);
return {};
differs:
return {success(leafpath)};
}
catch(...)
{
return {error_from_exception()};
}
});
// If anything different, return that
if(ret)
{
if(ret.value())
{
KERNELTEST_CERR("WARNING: KernelTest workspace comparison saw item differ " << ret.value().value() << std::endl);
}
else
{
KERNELTEST_CERR("WARNING: KernelTest workspace comparison saw error " << ret.value().error() << std::endl);
}
// exit(1);
return ret;
}
// If anything in after not in current, return that
if(!after_items.empty())
{
KERNELTEST_CERR("WARNING: KernelTest workspace comparison saw not present item " << after_items.begin()->first << std::endl);
// exit(1);
return {success(after_items.begin()->first)};
}
// Otherwise both current and after are identical
return {};
}
catch(...)
{
return {error_from_exception()};
}
}
template <class Parent, class RetType> struct structure_impl
{
Parent *parent;
RetType &testret;
size_t idx;
filesystem::path model_workspace;
structure_impl(Parent *_parent, RetType &_testret, size_t _idx, const char *workspacebase, const char *workspace)
: parent(_parent)
, testret(_testret)
, idx(_idx)
, model_workspace(filesystem_setup_impl::workspace_template_path(filesystem::path(workspacebase) / workspace))
{
}
structure_impl(structure_impl &&) noexcept = default;
structure_impl(const structure_impl &) = delete;
~structure_impl()
{
if(!model_workspace.empty())
{
if(!current_test_kernel.working_directory)
{
KERNELTEST_CERR("FATAL: There appears to be no hooks::filesystem_setup earlier in the hook sequence, therefore I have no workspace to compare to." << std::endl);
std::terminate();
}
// Only do comparison if test passed
if(testret)
{
// If this is empty, workspaces are identical
optional<result<filesystem::path>> workspaces_not_identical = compare_directories<false, false>(current_test_kernel.working_directory, model_workspace);
if(workspaces_not_identical)
{
// Propagate any error
if(workspaces_not_identical->has_error())
{
testret = RetType(typename RetType::value_type::error_type(make_error_code(kerneltest_errc::filesystem_comparison_internal_failure))); //, workspaces_not_identical->error().message().c_str(), workspaces_not_identical->error().value()
}
// Set error with extended message of the path which differs
else if(workspaces_not_identical->has_value())
testret = RetType(typename RetType::value_type::error_type(make_error_code(kerneltest_errc::filesystem_comparison_failed))); // , workspaces_not_identical->value().string().c_str()
}
}
}
}
};
struct structure_inst
{
const char *workspacebase;
template <class Parent, class RetType> auto operator()(Parent *parent, RetType &testret, size_t idx, const char *workspace) const { return structure_impl<Parent, RetType>(parent, testret, idx, workspacebase, workspace); }
std::string print(const char *workspace) const { return std::string("postcondition ") + workspace; }
};
}
//! The parameters for the filesystem_comparison_structure hook
using filesystem_comparison_structure_parameters = parameters<const char *>;
/*! Kernel test hook comparing the structure of the test kernel workspace after the test to a workspace template.
This is the fastest method of filesystem comparison. The following differences are ignored:
* Timestamps
* Security and ACLs
* File contents (but size is not ignored)
\return A type which when called records the outcome for the test, and on destruction if the outcome
is not errored compares the test's workspace with a model workspace template. If they do not
match, the outcome is set to an appropriate errored state.
\param workspacebase A path fragment inside `test/tests` of the base of the workspaces to choose from.
*/
constexpr inline auto filesystem_comparison_structure(const char *workspacebase = current_test_kernel.test) { return filesystem_comparison_impl::structure_inst{workspacebase}; }
}
//! Alias hooks to precondition
namespace precondition = hooks;
//! Alias hooks to postcondition
namespace postcondition = hooks;
KERNELTEST_V1_NAMESPACE_END
#endif
| [
"spamtrap@nedprod.com"
] | spamtrap@nedprod.com |
7daae90100d26539ba1cc543aa0ccda88dab3324 | 5bfff16bd43bcf16d03f42db378024333b546051 | /40_CombinationSumII.cpp | 239e2ed2ca7e04f047ffdacb1fc7302286b6d5f0 | [] | no_license | wangxiaobao1114/LeetCode | 85363e665e9d4dd0425427174ef639e3c3f82bbd | af2a164f4ff3dc714e3852752548ad803111954c | refs/heads/master | 2020-06-30T20:48:36.882539 | 2016-09-01T13:43:58 | 2016-09-01T13:43:58 | 66,353,772 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,111 | cpp | class Solution {
private:
vector<vector<int>>result;
map<vector<int>,int> hash;
void dfs(int start, int end, const vector<int>& candidates, int target, vector<int>& internal) {
if (start > end) {
return;
}
if (candidates[start] == target) {
internal.push_back(candidates[start]);
result.push_back(internal);
internal.pop_back();
return;
}
if (candidates[start] > target) {
return;
}
dfs(start + 1, end, candidates, target, internal);
internal.push_back(candidates[start]);
if (hash[internal] != 1) {
hash[internal] = 1;
dfs(start + 1, end, candidates, target - candidates[start], internal);
}
internal.pop_back();
}
public:
vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {
sort(candidates.begin(), candidates.end());
int end = candidates.size() - 1;
vector<int> internal;
dfs(0, end, candidates, target, internal);
return result;
}
}; | [
"942939879@qq.com"
] | 942939879@qq.com |
387328af046048a5a0bcbbc670129ccaae18ec08 | 24d18ea4d09e0a3e43ac687a1d43399fcf90e20c | /Source code/mainwindow.cpp | f96c8aa14da0ed32739af3b125ecbe880d937545 | [] | no_license | Maher-Magdy/Function-Plotter | b0c77b92a170919b43c5ac589ec4f8be57061f8e | 202c4a162c9bb8d6412e16d9c34c53ebc1d11daf | refs/heads/main | 2023-08-04T20:39:03.805481 | 2021-09-25T11:48:24 | 2021-09-25T11:48:24 | 409,564,575 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,045 | cpp | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QRegularExpression>
#include <QRegularExpressionValidator>
#include <QMessageBox>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <QThread>
#include <QtCore>
#include <QDebug>
#include <QFile>
#include <QString>
#include <QFileDialog>
#include <QTextStream>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
//load
//hide the plot widge
ui->widget->setVisible(false);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_actionExit_triggered()
{
try
{
QFile evaluator ("evaluator.txt");
evaluator.remove();
QFile evaluator_out ("evaluator_out.txt");
evaluator_out.remove();
} catch (int error)
{
}
QApplication::quit();
}
//file functions
void write(QString filePath,QString text)
{
QFile file(filePath);
//if can't open the file
if(!file.open(QFile::WriteOnly|QFile::Text))
{return;}
//writing process
QTextStream out(&file);
out<<text;
file.flush();
file.close();
}
QString read(QString filePath)
{
QFile file(filePath);
//if can't open the file
if(!file.open(QFile::ReadOnly|QFile::Text))
{return "error ! can't open evaluator_out file";}
//writing process
QTextStream in(&file);
QString text =in.readAll();
file.close();
return text;
}
void MainWindow::my_plot_function(double min , double max, int no_of_points, QString function)
{
// generate some data:
QVector<double> x(no_of_points), y(no_of_points);
QString points_after_sub_in_func="";
QString function_after_sub=function;
//this code calculates every point
for (int i=0; i<no_of_points; ++i)
{
x[i] = min +i*(max-min)/no_of_points+0.000001; // to avoid division by zero error
//replace every x with point x[i]
function_after_sub.replace(QString("x"),("("+QString::number(x[i])+")"));
function_after_sub.replace(QString("X"),("("+QString::number(x[i])+")"));
points_after_sub_in_func+=function_after_sub+"\n";
//reset function_after_sub
function_after_sub=function;
}
//write for evaluator
write("evaluator.txt",points_after_sub_in_func);
//call evaluator
QProcess process;
process.start("evaluator.exe");
//wait for the evaluator outout
//Sleep(500);
while(true)
{
Sleep(25);
try
{
QString ready = read("evaluator.txt");
if (ready=="done"){break;}
} catch (int error)
{
;
}
}
//read the evaluator outout
QFile file("evaluator_out.txt");
//if can't open the file
if(!file.open(QFile::ReadOnly|QFile::Text)) { QMessageBox::critical(this,"error !"," can't open evaluator_out file");}
QTextStream in(&file);
for (int i=0; i<no_of_points; ++i)
{
y[i] =in.readLine().toDouble();//get the result from the evaluator
}
file.close();
// create graph and assign data to it:
ui->widget->addGraph();
ui->widget->graph(0)->setData(x, y);
// give the axes some labels:
ui->widget->xAxis->setLabel("x");
ui->widget->yAxis->setLabel("F(x)");
//change graph background color
ui->widget->setBackground(QBrush(QColor("#1c1c1f")));
//change graph color
QPen pen;
pen.setWidth(2);
pen.setColor(QColor(255,255,255));
ui->widget->graph(0)->setPen(pen);
//change axis color
ui->widget->xAxis->setLabelColor(QColor("#ffffff"));
ui->widget->yAxis->setLabelColor(QColor("#ffffff"));
ui->widget->xAxis->setTickLabelColor(QColor("#ffffff"));
ui->widget->yAxis->setTickLabelColor(QColor("#ffffff"));
// set axes ranges
//ui->widget->graph(0)->rescaleAxes();
ui->widget->xAxis->setRange(min*1.2, max*1.2);
ui->widget->yAxis->setRange(min*1.5*1.2, max*1.5*1.2); // the range ratio should be the same as the widget aspect ratio
// Allow user to drag axis ranges with mouse, zoom with mouse wheel and select graphs by clicking
ui->widget->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables);
ui->widget->replot();
}
QString MainWindow::process_entered_function()
{
//check the enetered text
QString allowed_char="0123456789 xX+-*/^.()";
bool unallowed_char_flag=0;
QString function= ui->lineEdit->text();
//using regular expression
QRegularExpression re;
//using strings
//loop on every char in the enetered string
for(int i=0 ; i< ui->lineEdit->text().length();i++)
{
//loop on every allowed character
for(int j=0 ; j<allowed_char.length();j++)
{
if((ui->lineEdit->text()[i]==allowed_char[j]))
{
unallowed_char_flag=0;
break;
}
else
{
unallowed_char_flag=1;
}
}
//if all allowed characters didn't match display error message
if(unallowed_char_flag)
{
QMessageBox::critical(this,"Error ! "," only x ,parentheses , numbers and +-*/^ operators are allowed in F(x)");
return "error";
}
}
//replace ^ with ** for evaluator
function.replace("^","**");
return function;
}
void MainWindow::on_pushButton_clicked()
{
//process the eneterd function text
QString function=process_entered_function();
if(function=="error") {return;}
//make sure max> min
if(ui->doubleSpinBox->value()>ui->doubleSpinBox_2->value())
{
QMessageBox::warning(this,"Warning !"," setting range :max value must be greater than min value ");
}
//show the plot widget
ui->widget->setVisible(true);
//draw the math function
my_plot_function(ui->doubleSpinBox->value(),ui->doubleSpinBox_2->value(),10000,function);
}
void MainWindow::on_actionSave_triggered()
{
ui->widget->grab().save("graph.png");
}
| [
"61353846+Maher-Magdy@users.noreply.github.com"
] | 61353846+Maher-Magdy@users.noreply.github.com |
1a017239d16d4dac9535ee33cb8d276f766b1479 | 36c31b485a5906ab514c964491b8f001a70a67f5 | /Codeforces/CF 1200 - 1299/CF1256/CF1256D.cpp | 60e4f721fb41227f7186573631d8402bf7444e7c | [] | no_license | SMiles02/CompetitiveProgramming | 77926918d5512824900384639955b31b0d0a5841 | 035040538c7e2102a88a2e3587e1ca984a2d9568 | refs/heads/master | 2023-08-18T22:14:09.997704 | 2023-08-13T20:30:42 | 2023-08-13T20:30:42 | 277,504,801 | 25 | 5 | null | 2022-11-01T01:34:30 | 2020-07-06T09:54:44 | C++ | UTF-8 | C++ | false | false | 1,464 | cpp | #include <bits/stdc++.h>
#define ll long long
#define sz(x) (int)(x).size()
using namespace std;
//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
//uniform_int_distribution<int>(1000,10000)(rng)
ll binpow(ll a, ll b)
{
if (b == 0)
return 1;
ll res = binpow(a, b / 2);
res*=res;
if (b % 2)
return res * a;
return res;
}
ll gcd(ll a,ll b)
{
if (b==0) return a;
return gcd(b,a%b);
}
string to_upper(string a)
{
for (int i=0;i<(int)a.size();++i) if (a[i]>='a' && a[i]<='z') a[i]-='a'-'A';
return a;
}
string to_lower(string a)
{
for (int i=0;i<(int)a.size();++i) if (a[i]>='A' && a[i]<='Z') a[i]+='a'-'A';
return a;
}
void solve()
{
int n,k,doneZ=0,one=0;
string s;
cin>>n>>k;
cin>>s;
for (int i=0;i<n;++i)
{
if (s[i]=='1')
{
++one;
continue;
}
if (one<=k)
{
k-=one;
++doneZ;
continue;
}
for (int j=0;j<doneZ;++j)
cout<<0;
for (int j=0;j<(one-k);++j)
cout<<1;
cout<<0;
for (int j=0;j<k;++j)
cout<<1;
for (int j=i+1;j<n;++j)
cout<<s[j];
cout<<"\n";
return;
}
sort(s.begin(), s.end());
cout<<s<<"\n";
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
int n;
cin>>n;
while (n--)
solve();
return 0;
} | [
"mahajan.suneet2002@gmail.com"
] | mahajan.suneet2002@gmail.com |
141a5a114bbe59f9966fe5ba0a281b0a24dfc67d | f32aa4f0e9afc58e0e3b3484b75baaa354fb1bfc | /llvm/lib/Target/Xtensa/XtensaInstrInfo.h | b746504cd5539f7d4d3896e5220f4f2d01f65cf4 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | huzhenyuan/llvm-project | 7daa366454d712408d500459016251eace26d879 | 4105376483660e06961dd554cb5bcd8452522f3c | refs/heads/master | 2023-03-28T07:56:04.986750 | 2021-03-30T01:54:14 | 2021-03-30T01:54:14 | 352,837,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,996 | h | //===-- XtensaInstrInfo.h - Xtensa Instruction Information ------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file contains the Xtensa implementation of the TargetInstrInfo class.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIB_TARGET_XTENSA_XTENSAINSTRINFO_H
#define LLVM_LIB_TARGET_XTENSA_XTENSAINSTRINFO_H
#include "Xtensa.h"
#include "XtensaRegisterInfo.h"
#include "llvm/CodeGen/TargetInstrInfo.h"
#include "llvm/CodeGen/TargetRegisterInfo.h"
#define GET_INSTRINFO_HEADER
#include "XtensaGenInstrInfo.inc"
namespace llvm {
class XtensaTargetMachine;
class XtensaSubtarget;
class XtensaInstrInfo : public XtensaGenInstrInfo {
const XtensaRegisterInfo RI;
XtensaSubtarget &STI;
public:
XtensaInstrInfo(XtensaSubtarget &STI);
void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
MachineBasicBlock::iterator I) const;
unsigned getInstSizeInBytes(const MachineInstr &MI) const override;
// Return the XtensaRegisterInfo, which this class owns.
const XtensaRegisterInfo &getRegisterInfo() const { return RI; }
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg,
bool KillSrc) const override;
void storeRegToStackSlot(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MBBI, Register SrcReg,
bool isKill, int FrameIndex,
const TargetRegisterClass *RC,
const TargetRegisterInfo *TRI) const override;
void loadRegFromStackSlot(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MBBI, Register DestReg,
int FrameIdx, const TargetRegisterClass *RC,
const TargetRegisterInfo *TRI) const override;
// Get the load and store opcodes for a given register class and offset.
void getLoadStoreOpcodes(const TargetRegisterClass *RC, unsigned &LoadOpcode,
unsigned &StoreOpcode, int64_t offset) const;
// Emit code before MBBI in MI to move immediate value Value into
// physical register Reg.
void loadImmediate(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI,
unsigned *Reg, int64_t Value) const;
bool
reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
MachineBasicBlock *getBranchDestBlock(const MachineInstr &MI) const override;
bool isBranchOffsetInRange(unsigned BranchOpc,
int64_t BrOffset) const override;
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
MachineBasicBlock *&FBB,
SmallVectorImpl<MachineOperand> &Cond,
bool AllowModify) const override;
unsigned removeBranch(MachineBasicBlock &MBB,
int *BytesRemoved = nullptr) const override;
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
const DebugLoc &DL,
int *BytesAdded = nullptr) const override;
unsigned insertIndirectBranch(MachineBasicBlock &MBB,
MachineBasicBlock &NewDestBB,
const DebugLoc &DL, int64_t BrOffset = 0,
RegScavenger *RS = nullptr) const override;
unsigned InsertBranchAtInst(MachineBasicBlock &MBB,
MachineBasicBlock::iterator I,
MachineBasicBlock *TBB,
ArrayRef<MachineOperand> Cond, const DebugLoc &DL,
int *BytesAdded) const;
unsigned InsertConstBranchAtInst(MachineBasicBlock &MBB, MachineInstr *I,
int64_t offset,
ArrayRef<MachineOperand> Cond, DebugLoc DL,
int *BytesAdded) const;
// Return true if MI is a conditional or unconditional branch.
// When returning true, set Cond to the mask of condition-code
// values on which the instruction will branch, and set Target
// to the operand that contains the branch target. This target
// can be a register or a basic block.
bool isBranch(const MachineBasicBlock::iterator &MI,
SmallVectorImpl<MachineOperand> &Cond,
const MachineOperand *&Target) const;
};
} // end namespace llvm
#endif /* LLVM_LIB_TARGET_XTENSA_XTENSAINSTRINFO_H */
| [
"you@example.com"
] | you@example.com |
75816acd1dbb988285a726d70e0c9386583ef41b | 88ae8695987ada722184307301e221e1ba3cc2fa | /net/http/http_stream_factory_job_controller_unittest.cc | 33efdcd63d3735d1efb22897765cb2b788552962 | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 235,864 | cc | // Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/http/http_stream_factory_job_controller.h"
#include <list>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/containers/contains.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/run_loop.h"
#include "base/strings/stringprintf.h"
#include "base/test/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/test/test_mock_time_task_runner.h"
#include "base/threading/platform_thread.h"
#include "base/values.h"
#include "net/base/completion_once_callback.h"
#include "net/base/features.h"
#include "net/base/host_port_pair.h"
#include "net/base/proxy_server.h"
#include "net/base/schemeful_site.h"
#include "net/base/test_proxy_delegate.h"
#include "net/dns/mock_host_resolver.h"
#include "net/dns/public/secure_dns_policy.h"
#include "net/http/alternative_service.h"
#include "net/http/http_basic_stream.h"
#include "net/http/http_network_session_peer.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_server_properties.h"
#include "net/http/http_server_properties_manager.h"
#include "net/http/http_stream_factory.h"
#include "net/http/http_stream_factory_job.h"
#include "net/http/http_stream_factory_test_util.h"
#include "net/log/net_log.h"
#include "net/log/net_log_with_source.h"
#include "net/log/test_net_log.h"
#include "net/log/test_net_log_util.h"
#include "net/proxy_resolution/configured_proxy_resolution_service.h"
#include "net/proxy_resolution/mock_proxy_resolver.h"
#include "net/proxy_resolution/proxy_config_service_fixed.h"
#include "net/proxy_resolution/proxy_info.h"
#include "net/quic/crypto/proof_verifier_chromium.h"
#include "net/quic/mock_crypto_client_stream_factory.h"
#include "net/quic/mock_quic_context.h"
#include "net/quic/mock_quic_data.h"
#include "net/quic/quic_http_stream.h"
#include "net/quic/quic_stream_factory.h"
#include "net/quic/quic_stream_factory_peer.h"
#include "net/quic/quic_test_packet_maker.h"
#include "net/socket/socket_test_util.h"
#include "net/spdy/spdy_session_key.h"
#include "net/spdy/spdy_test_util_common.h"
#include "net/test/cert_test_util.h"
#include "net/test/test_data_directory.h"
#include "net/test/test_with_task_environment.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_utils.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#include "url/scheme_host_port.h"
using ::testing::_;
using ::testing::Contains;
using ::testing::ElementsAre;
using ::testing::Invoke;
using ::testing::IsEmpty;
using ::testing::Key;
using ::testing::SizeIs;
namespace net::test {
namespace {
const char kServerHostname[] = "www.example.com";
// The default delay for main job defined in QuicStreamFactory::
// GetTimeDelayForWaitingJob().
const int kDefaultDelayMilliSecsForWaitingJob = 300;
class FailingProxyResolverFactory : public ProxyResolverFactory {
public:
FailingProxyResolverFactory() : ProxyResolverFactory(false) {}
// ProxyResolverFactory override.
int CreateProxyResolver(const scoped_refptr<PacFileData>& script_data,
std::unique_ptr<ProxyResolver>* result,
CompletionOnceCallback callback,
std::unique_ptr<Request>* request) override {
return ERR_PAC_SCRIPT_FAILED;
}
};
// A mock HttpServerProperties::PrefDelegate that never finishes loading, so
// HttpServerProperties::IsInitialized() always returns false.
class MockPrefDelegate : public HttpServerProperties::PrefDelegate {
public:
MockPrefDelegate() = default;
MockPrefDelegate(const MockPrefDelegate&) = delete;
MockPrefDelegate& operator=(const MockPrefDelegate&) = delete;
~MockPrefDelegate() override = default;
// HttpServerProperties::PrefDelegate implementation:
const base::Value::Dict& GetServerProperties() const override {
return empty_dict_;
}
void SetServerProperties(base::Value::Dict dict,
base::OnceClosure callback) override {}
void WaitForPrefLoad(base::OnceClosure pref_loaded_callback) override {}
base::Value::Dict empty_dict_;
};
} // anonymous namespace
class HttpStreamFactoryJobPeer {
public:
// Returns |num_streams_| of |job|. It should be 0 for non-preconnect Jobs.
static int GetNumStreams(const HttpStreamFactory::Job* job) {
return job->num_streams_;
}
// Return SpdySessionKey of |job|.
static const SpdySessionKey GetSpdySessionKey(
const HttpStreamFactory::Job* job) {
return job->spdy_session_key_;
}
static void SetShouldReconsiderProxy(HttpStreamFactory::Job* job) {
job->should_reconsider_proxy_ = true;
}
static void SetStream(HttpStreamFactory::Job* job,
std::unique_ptr<HttpStream> http_stream) {
job->stream_ = std::move(http_stream);
}
static void SetQuicConnectionFailedOnDefaultNetwork(
HttpStreamFactory::Job* job) {
job->quic_request_.OnConnectionFailedOnDefaultNetwork();
}
};
class JobControllerPeer {
public:
static bool main_job_is_blocked(
HttpStreamFactory::JobController* job_controller) {
return job_controller->main_job_is_blocked_;
}
static bool main_job_is_resumed(
HttpStreamFactory::JobController* job_controller) {
return job_controller->main_job_is_resumed_;
}
static AlternativeServiceInfo GetAlternativeServiceInfoFor(
HttpStreamFactory::JobController* job_controller,
const HttpRequestInfo& request_info,
HttpStreamRequest::Delegate* delegate,
HttpStreamRequest::StreamType stream_type) {
return job_controller->GetAlternativeServiceInfoFor(request_info, delegate,
stream_type);
}
static quic::ParsedQuicVersion SelectQuicVersion(
HttpStreamFactory::JobController* job_controller,
const quic::ParsedQuicVersionVector& advertised_versions) {
return job_controller->SelectQuicVersion(advertised_versions);
}
static void SetAltJobFailedOnDefaultNetwork(
HttpStreamFactory::JobController* job_controller) {
DCHECK(job_controller->alternative_job() != nullptr);
HttpStreamFactoryJobPeer::SetQuicConnectionFailedOnDefaultNetwork(
job_controller->alternative_job_.get());
}
static void SetDnsAlpnH3JobFailedOnDefaultNetwork(
HttpStreamFactory::JobController* job_controller) {
DCHECK(job_controller->dns_alpn_h3_job() != nullptr);
HttpStreamFactoryJobPeer::SetQuicConnectionFailedOnDefaultNetwork(
job_controller->dns_alpn_h3_job_.get());
}
};
class HttpStreamFactoryJobControllerTestBase : public TestWithTaskEnvironment {
public:
explicit HttpStreamFactoryJobControllerTestBase(
bool dns_https_alpn_enabled,
std::vector<base::test::FeatureRef> enabled_features = {})
: TestWithTaskEnvironment(
base::test::TaskEnvironment::TimeSource::MOCK_TIME),
dns_https_alpn_enabled_(dns_https_alpn_enabled) {
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
FLAGS_quic_enable_http3_grease_randomness = false;
CreateSessionDeps();
}
// Creates / re-creates `session_deps_`, and clears test fixture fields
// referencing it.
void CreateSessionDeps() {
factory_ = nullptr;
job_controller_ = nullptr;
session_.reset();
session_deps_ = SpdySessionDependencies(
ConfiguredProxyResolutionService::CreateDirect());
session_deps_.enable_quic = true;
session_deps_.host_resolver->set_synchronous_mode(true);
}
void SetPreconnect() {
ASSERT_FALSE(test_proxy_delegate_);
is_preconnect_ = true;
}
void DisableIPBasedPooling() {
ASSERT_FALSE(test_proxy_delegate_);
enable_ip_based_pooling_ = false;
}
void SetNotDelayMainJobWithAvailableSpdySession() {
ASSERT_FALSE(test_proxy_delegate_);
delay_main_job_with_available_spdy_session_ = false;
}
void DisableAlternativeServices() {
ASSERT_FALSE(test_proxy_delegate_);
enable_alternative_services_ = false;
}
void SkipCreatingJobController() {
ASSERT_FALSE(job_controller_);
create_job_controller_ = false;
}
void Initialize(const HttpRequestInfo& request_info) {
ASSERT_FALSE(test_proxy_delegate_);
test_proxy_delegate_ = std::make_unique<TestProxyDelegate>();
if (quic_data_)
quic_data_->AddSocketDataToFactory(session_deps_.socket_factory.get());
if (quic_data2_)
quic_data2_->AddSocketDataToFactory(session_deps_.socket_factory.get());
if (tcp_data_)
session_deps_.socket_factory->AddSocketDataProvider(tcp_data_.get());
if (tcp_data2_)
session_deps_.socket_factory->AddSocketDataProvider(tcp_data2_.get());
session_deps_.proxy_resolution_service->SetProxyDelegate(
test_proxy_delegate_.get());
session_deps_.net_log = NetLog::Get();
HttpNetworkSessionParams params =
SpdySessionDependencies::CreateSessionParams(&session_deps_);
HttpNetworkSessionContext session_context =
SpdySessionDependencies::CreateSessionContext(&session_deps_);
session_context.quic_crypto_client_stream_factory =
&crypto_client_stream_factory_;
session_context.quic_context = &quic_context_;
session_ = std::make_unique<HttpNetworkSession>(params, session_context);
factory_ = static_cast<HttpStreamFactory*>(session_->http_stream_factory());
if (create_job_controller_) {
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &request_delegate_, session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(),
SSLConfig());
job_controller_ = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
}
}
TestProxyDelegate* test_proxy_delegate() const {
return test_proxy_delegate_.get();
}
HttpStreamFactoryJobControllerTestBase(
const HttpStreamFactoryJobControllerTestBase&) = delete;
HttpStreamFactoryJobControllerTestBase& operator=(
const HttpStreamFactoryJobControllerTestBase&) = delete;
~HttpStreamFactoryJobControllerTestBase() override {
if (should_check_data_consumed_) {
if (quic_data_) {
EXPECT_TRUE(quic_data_->AllReadDataConsumed());
EXPECT_TRUE(quic_data_->AllWriteDataConsumed());
}
if (quic_data2_) {
EXPECT_TRUE(quic_data2_->AllReadDataConsumed());
EXPECT_TRUE(quic_data2_->AllWriteDataConsumed());
}
if (tcp_data_) {
EXPECT_TRUE(tcp_data_->AllReadDataConsumed());
EXPECT_TRUE(tcp_data_->AllWriteDataConsumed());
}
if (tcp_data2_) {
EXPECT_TRUE(tcp_data2_->AllReadDataConsumed());
EXPECT_TRUE(tcp_data2_->AllWriteDataConsumed());
}
}
}
void SetAlternativeService(const HttpRequestInfo& request_info,
AlternativeService alternative_service) {
url::SchemeHostPort server(request_info.url);
base::Time expiration = base::Time::Now() + base::Days(1);
if (alternative_service.protocol == kProtoQUIC) {
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
quic_context_.params()->supported_versions);
} else {
session_->http_server_properties()->SetHttp2AlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration);
}
}
void VerifyBrokenAlternateProtocolMapping(const HttpRequestInfo& request_info,
bool should_mark_broken) {
const url::SchemeHostPort server(request_info.url);
const AlternativeServiceInfoVector alternative_service_info_vector =
session_->http_server_properties()->GetAlternativeServiceInfos(
server, NetworkAnonymizationKey());
EXPECT_EQ(1u, alternative_service_info_vector.size());
EXPECT_EQ(should_mark_broken,
session_->http_server_properties()->IsAlternativeServiceBroken(
alternative_service_info_vector[0].alternative_service(),
NetworkAnonymizationKey()));
}
void TestAltJobSucceedsAfterMainJobFailed(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestMainJobSucceedsAfterAltJobFailed(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestMainJobSucceedsAfterIgnoredError(int net_error,
bool async_quic_session,
bool expect_broken = false,
std::string alternate_host = "");
void TestAltJobSucceedsAfterMainJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestOnStreamFailedForBothJobs(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestAltJobFailsAfterMainJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestMainJobSucceedsAfterAltJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestMainJobFailsAfterAltJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session);
void TestAltSvcVersionSelection(
const std::string& alt_svc_header,
const quic::ParsedQuicVersion& expected_version,
const quic::ParsedQuicVersionVector& supported_versions);
void TestResumeMainJobWhenAltJobStalls(bool async_quic_session);
void TestAltJobSucceedsMainJobDestroyed(bool async_quic_session);
void TestOrphanedJobCompletesControllerDestroyed(bool async_quic_session);
void TestDoNotDelayMainJobIfQuicWasRecentlyBroken(bool async_quic_session);
void TestDelayMainJobAfterRecentlyBrokenQuicWasConfirmed(
bool async_quic_session);
bool dns_https_alpn_enabled() const { return dns_https_alpn_enabled_; }
quic::ParsedQuicVersion version_ = DefaultSupportedQuicVersions().front();
RecordingNetLogObserver net_log_observer_;
NetLogWithSource net_log_with_source_{
NetLogWithSource::Make(NetLogSourceType::NONE)};
TestJobFactory job_factory_;
MockHttpStreamRequestDelegate request_delegate_;
MockQuicContext quic_context_;
SpdySessionDependencies session_deps_;
std::unique_ptr<HttpNetworkSession> session_;
raw_ptr<HttpStreamFactory> factory_ = nullptr;
raw_ptr<HttpStreamFactory::JobController> job_controller_ = nullptr;
std::unique_ptr<HttpStreamRequest> request_;
std::unique_ptr<SequencedSocketData> tcp_data_;
std::unique_ptr<SequencedSocketData> tcp_data2_;
std::unique_ptr<MockQuicData> quic_data_;
std::unique_ptr<MockQuicData> quic_data2_;
MockCryptoClientStreamFactory crypto_client_stream_factory_;
QuicTestPacketMaker client_maker_{version_,
quic::QuicUtils::CreateRandomConnectionId(
quic_context_.random_generator()),
quic_context_.clock(),
kServerHostname,
quic::Perspective::IS_CLIENT,
false};
protected:
bool is_preconnect_ = false;
bool enable_ip_based_pooling_ = true;
bool enable_alternative_services_ = true;
bool delay_main_job_with_available_spdy_session_ = true;
bool should_check_data_consumed_ = true;
private:
bool dns_https_alpn_enabled_;
std::unique_ptr<TestProxyDelegate> test_proxy_delegate_;
bool create_job_controller_ = true;
base::test::ScopedFeatureList feature_list_;
};
class HttpStreamFactoryJobControllerTest
: public HttpStreamFactoryJobControllerTestBase,
public ::testing::WithParamInterface<bool> {
protected:
HttpStreamFactoryJobControllerTest()
: HttpStreamFactoryJobControllerTestBase(GetParam()) {}
};
INSTANTIATE_TEST_SUITE_P(All,
HttpStreamFactoryJobControllerTest,
testing::Bool());
TEST_P(HttpStreamFactoryJobControllerTest, ProxyResolutionFailsSync) {
ProxyConfig proxy_config;
proxy_config.set_pac_url(GURL("http://fooproxyurl"));
proxy_config.set_pac_mandatory(true);
session_deps_.proxy_resolution_service =
std::make_unique<ConfiguredProxyResolutionService>(
std::make_unique<ProxyConfigServiceFixed>(ProxyConfigWithAnnotation(
proxy_config, TRAFFIC_ANNOTATION_FOR_TESTS)),
std::make_unique<FailingProxyResolverFactory>(), nullptr,
/*quick_check_enabled=*/true);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.google.com");
Initialize(request_info);
EXPECT_CALL(
request_delegate_,
OnStreamFailed(ERR_MANDATORY_PROXY_CONFIGURATION_FAILED, _, _, _, _))
.Times(1);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_FALSE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
// Make sure calling GetLoadState() when before job creation does not crash.
// Regression test for crbug.com/723920.
EXPECT_EQ(LOAD_STATE_IDLE, job_controller_->GetLoadState());
base::RunLoop().RunUntilIdle();
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_P(HttpStreamFactoryJobControllerTest, ProxyResolutionFailsAsync) {
ProxyConfig proxy_config;
proxy_config.set_pac_url(GURL("http://fooproxyurl"));
proxy_config.set_pac_mandatory(true);
auto proxy_resolver_factory =
std::make_unique<MockAsyncProxyResolverFactory>(false);
auto* proxy_resolver_factory_ptr = proxy_resolver_factory.get();
MockAsyncProxyResolver resolver;
session_deps_.proxy_resolution_service =
std::make_unique<ConfiguredProxyResolutionService>(
std::make_unique<ProxyConfigServiceFixed>(ProxyConfigWithAnnotation(
proxy_config, TRAFFIC_ANNOTATION_FOR_TESTS)),
std::move(proxy_resolver_factory), nullptr,
/*quick_check_enabled=*/true);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.google.com");
Initialize(request_info);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_FALSE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_EQ(LOAD_STATE_RESOLVING_PROXY_FOR_URL,
job_controller_->GetLoadState());
EXPECT_CALL(
request_delegate_,
OnStreamFailed(ERR_MANDATORY_PROXY_CONFIGURATION_FAILED, _, _, _, _))
.Times(1);
proxy_resolver_factory_ptr->pending_requests()[0]->CompleteNowWithForwarder(
ERR_FAILED, &resolver);
base::RunLoop().RunUntilIdle();
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_P(HttpStreamFactoryJobControllerTest, NoSupportedProxies) {
session_deps_.proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"QUIC myproxy.org:443", TRAFFIC_ANNOTATION_FOR_TESTS);
session_deps_.enable_quic = false;
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.google.com");
Initialize(request_info);
EXPECT_CALL(request_delegate_,
OnStreamFailed(ERR_NO_SUPPORTED_PROXIES, _, _, _, _))
.Times(1);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_FALSE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
base::RunLoop().RunUntilIdle();
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
class JobControllerReconsiderProxyAfterErrorTest
: public HttpStreamFactoryJobControllerTestBase {
public:
JobControllerReconsiderProxyAfterErrorTest()
: HttpStreamFactoryJobControllerTestBase(false) {}
void Initialize(
std::unique_ptr<ProxyResolutionService> proxy_resolution_service) {
session_deps_.proxy_resolution_service =
std::move(proxy_resolution_service);
session_ = std::make_unique<HttpNetworkSession>(
SpdySessionDependencies::CreateSessionParams(&session_deps_),
SpdySessionDependencies::CreateSessionContext(&session_deps_));
factory_ = session_->http_stream_factory();
}
std::unique_ptr<HttpStreamRequest> CreateJobController(
const HttpRequestInfo& request_info) {
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &request_delegate_, session_.get(), &default_job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
return job_controller_ptr->Start(
&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
}
private:
// Use real Jobs so that Job::Resume() is not mocked out. When main job is
// resumed it will use mock socket data.
HttpStreamFactory::JobFactory default_job_factory_;
};
// Test proxy fallback logic in the case connecting through an HTTP proxy.
//
// TODO(eroman): The testing should be expanded to test cases where proxy
// fallback is NOT supposed to occur, and also vary across all of
// the proxy types.
TEST_F(JobControllerReconsiderProxyAfterErrorTest,
ReconsiderProxyAfterErrorHttpProxy) {
enum class ErrorPhase {
kHostResolution,
kTcpConnect,
kTunnelRead,
};
const struct {
ErrorPhase phase;
net::Error error;
} kRetriableErrors[] = {
// These largely correspond to the list of errors in
// CanFalloverToNextProxy() which can occur with an HTTP proxy.
//
// We omit `ERR_CONNECTION_CLOSED` because it is largely unreachable. The
// HTTP/1.1 parser maps it to `ERR_EMPTY_RESPONSE` or
// `ERR_RESPONSE_HEADERS_TRUNCATED` in most cases.
//
// TODO(davidben): Is omitting `ERR_EMPTY_RESPONSE` a bug in proxy error
// handling?
{ErrorPhase::kHostResolution, ERR_NAME_NOT_RESOLVED},
{ErrorPhase::kTcpConnect, ERR_ADDRESS_UNREACHABLE},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_TIMED_OUT},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_RESET},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_ABORTED},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_REFUSED},
{ErrorPhase::kTunnelRead, ERR_TIMED_OUT},
{ErrorPhase::kTunnelRead, ERR_SSL_PROTOCOL_ERROR},
};
for (GURL dest_url :
{GURL("http://www.example.com"), GURL("https://www.example.com")}) {
SCOPED_TRACE(dest_url);
for (const auto& mock_error : kRetriableErrors) {
SCOPED_TRACE(ErrorToString(mock_error.error));
CreateSessionDeps();
std::unique_ptr<ConfiguredProxyResolutionService>
proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"PROXY badproxy:99; PROXY badfallbackproxy:98; DIRECT",
TRAFFIC_ANNOTATION_FOR_TESTS);
auto test_proxy_delegate = std::make_unique<TestProxyDelegate>();
// Before starting the test, verify that there are no proxies marked as
// bad.
ASSERT_TRUE(proxy_resolution_service->proxy_retry_info().empty());
constexpr char kTunnelRequest[] =
"CONNECT www.example.com:443 HTTP/1.1\r\n"
"Host: www.example.com:443\r\n"
"Proxy-Connection: keep-alive\r\n\r\n";
const MockWrite kTunnelWrites[] = {{ASYNC, kTunnelRequest}};
std::vector<MockRead> reads;
// Generate identical errors for both the main proxy and the fallback
// proxy. No alternative job is created for either, so only need one data
// provider for each, when the request makes it to the socket layer.
std::unique_ptr<StaticSocketDataProvider> socket_data_proxy_main_job;
std::unique_ptr<StaticSocketDataProvider> socket_data_proxy_main_job2;
switch (mock_error.phase) {
case ErrorPhase::kHostResolution:
// Only ERR_NAME_NOT_RESOLVED can be returned by the mock host
// resolver.
DCHECK_EQ(ERR_NAME_NOT_RESOLVED, mock_error.error);
session_deps_.host_resolver->rules()->AddSimulatedFailure("badproxy");
session_deps_.host_resolver->rules()->AddSimulatedFailure(
"badfallbackproxy");
break;
case ErrorPhase::kTcpConnect:
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>();
socket_data_proxy_main_job->set_connect_data(
MockConnect(ASYNC, mock_error.error));
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>();
socket_data_proxy_main_job2->set_connect_data(
MockConnect(ASYNC, mock_error.error));
break;
case ErrorPhase::kTunnelRead:
// Tunnels aren't established for HTTP destinations.
if (dest_url.SchemeIs(url::kHttpScheme))
continue;
reads.emplace_back(MockRead(ASYNC, mock_error.error));
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>(reads, kTunnelWrites);
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>(reads, kTunnelWrites);
break;
}
if (socket_data_proxy_main_job) {
session_deps_.socket_factory->AddSocketDataProvider(
socket_data_proxy_main_job.get());
session_deps_.socket_factory->AddSocketDataProvider(
socket_data_proxy_main_job2.get());
}
// After both proxies fail, the request should fall back to using DIRECT,
// and succeed.
SSLSocketDataProvider ssl_data_first_request(ASYNC, OK);
StaticSocketDataProvider socket_data_direct_first_request;
socket_data_direct_first_request.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(
&socket_data_direct_first_request);
// Only used in the HTTPS destination case, but harmless in the HTTP case.
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_data_first_request);
// Second request should use DIRECT, skipping the bad proxies, and
// succeed.
SSLSocketDataProvider ssl_data_second_request(ASYNC, OK);
StaticSocketDataProvider socket_data_direct_second_request;
socket_data_direct_second_request.set_connect_data(
MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(
&socket_data_direct_second_request);
// Only used in the HTTPS destination case, but harmless in the HTTP case.
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_data_second_request);
// Now request a stream. It should succeed using the DIRECT fallback proxy
// option.
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = dest_url;
proxy_resolution_service->SetProxyDelegate(test_proxy_delegate.get());
Initialize(std::move(proxy_resolution_service));
// Start two requests. The first request should consume data from
// |socket_data_proxy_main_job| and |socket_data_direct_first_request|.
// The second request should consume data from
// |socket_data_direct_second_request|.
for (size_t i = 0; i < 2; ++i) {
ProxyInfo used_proxy_info;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(::testing::SaveArg<1>(&used_proxy_info));
std::unique_ptr<HttpStreamRequest> request =
CreateJobController(request_info);
RunUntilIdle();
// Verify that request was fetched without proxy.
EXPECT_TRUE(used_proxy_info.is_direct());
// The proxies that failed should now be known to the proxy service as
// bad.
const ProxyRetryInfoMap& retry_info =
session_->proxy_resolution_service()->proxy_retry_info();
ASSERT_THAT(retry_info, SizeIs(2));
EXPECT_THAT(retry_info, Contains(Key("badproxy:99")));
EXPECT_THAT(retry_info, Contains(Key("badfallbackproxy:98")));
// The idle socket should have been added back to the socket pool. Close
// it, so the next loop iteration creates a new socket instead of
// reusing the idle one.
auto* socket_pool = session_->GetSocketPool(
HttpNetworkSession::NORMAL_SOCKET_POOL, ProxyServer::Direct());
EXPECT_EQ(1, socket_pool->IdleSocketCount());
socket_pool->CloseIdleSockets("Close socket reason");
}
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
}
}
// Test proxy fallback logic in the case connecting through an HTTPS proxy.
TEST_F(JobControllerReconsiderProxyAfterErrorTest,
ReconsiderProxyAfterErrorHttpsProxy) {
enum class ErrorPhase {
kHostResolution,
kTcpConnect,
kProxySslHandshake,
kTunnelRead,
};
const struct {
ErrorPhase phase;
net::Error error;
// Each test case simulates a connection attempt through a proxy that fails
// twice, followed by two connection attempts that succeed. For most cases,
// this is done by having a connection attempt to the first proxy fail,
// triggering fallback to a second proxy, which also fails, and then
// fallback to the final (DIRECT) proxy option. However, SslConnectJobs have
// their own try logic in certain cases. This value is true for those cases,
// in which case there are two connection attempts to the first proxy, and
// then the requests fall back to the second (DIRECT) proxy.
bool triggers_ssl_connect_job_retry_logic = false;
} kRetriableErrors[] = {
// These largely correspond to the list of errors in
// CanFalloverToNextProxy() which can occur with an HTTPS proxy.
//
// We omit `ERR_CONNECTION_CLOSED` because it is largely unreachable. The
// HTTP/1.1 parser maps it to `ERR_EMPTY_RESPONSE` or
// `ERR_RESPONSE_HEADERS_TRUNCATED` in most cases.
//
// TODO(davidben): Is omitting `ERR_EMPTY_RESPONSE` a bug in proxy error
// handling?
{ErrorPhase::kHostResolution, ERR_NAME_NOT_RESOLVED},
{ErrorPhase::kTcpConnect, ERR_ADDRESS_UNREACHABLE},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_TIMED_OUT},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_RESET},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_ABORTED},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_REFUSED},
{ErrorPhase::kProxySslHandshake, ERR_CERT_COMMON_NAME_INVALID},
{ErrorPhase::kProxySslHandshake, ERR_SSL_PROTOCOL_ERROR,
/*triggers_ssl_connect_job_retry_logic=*/true},
{ErrorPhase::kTunnelRead, ERR_TIMED_OUT},
{ErrorPhase::kTunnelRead, ERR_SSL_PROTOCOL_ERROR},
};
for (GURL dest_url :
{GURL("http://www.example.com"), GURL("https://www.example.com")}) {
SCOPED_TRACE(dest_url);
for (const auto& mock_error : kRetriableErrors) {
SCOPED_TRACE(ErrorToString(mock_error.error));
CreateSessionDeps();
std::unique_ptr<ConfiguredProxyResolutionService>
proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"HTTPS badproxy:99; HTTPS badfallbackproxy:98; DIRECT",
TRAFFIC_ANNOTATION_FOR_TESTS);
if (mock_error.triggers_ssl_connect_job_retry_logic) {
proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"HTTPS badproxy:99; DIRECT", TRAFFIC_ANNOTATION_FOR_TESTS);
}
auto test_proxy_delegate = std::make_unique<TestProxyDelegate>();
// Before starting the test, verify that there are no proxies marked as
// bad.
ASSERT_TRUE(proxy_resolution_service->proxy_retry_info().empty());
constexpr char kTunnelRequest[] =
"CONNECT www.example.com:443 HTTP/1.1\r\n"
"Host: www.example.com:443\r\n"
"Proxy-Connection: keep-alive\r\n\r\n";
const MockWrite kTunnelWrites[] = {{ASYNC, kTunnelRequest}};
std::vector<MockRead> reads;
// Generate identical errors for both the main proxy and the fallback
// proxy. No alternative job is created for either, so only need one data
// provider for each, when the request makes it to the socket layer.
std::unique_ptr<StaticSocketDataProvider> socket_data_proxy_main_job;
std::unique_ptr<SSLSocketDataProvider> ssl_data_proxy_main_job;
std::unique_ptr<StaticSocketDataProvider> socket_data_proxy_main_job2;
std::unique_ptr<SSLSocketDataProvider> ssl_data_proxy_main_job2;
switch (mock_error.phase) {
case ErrorPhase::kHostResolution:
// Only ERR_NAME_NOT_RESOLVED can be returned by the mock host
// resolver.
DCHECK_EQ(ERR_NAME_NOT_RESOLVED, mock_error.error);
session_deps_.host_resolver->rules()->AddSimulatedFailure("badproxy");
session_deps_.host_resolver->rules()->AddSimulatedFailure(
"badfallbackproxy");
break;
case ErrorPhase::kTcpConnect:
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>();
socket_data_proxy_main_job->set_connect_data(
MockConnect(ASYNC, mock_error.error));
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>();
socket_data_proxy_main_job2->set_connect_data(
MockConnect(ASYNC, mock_error.error));
break;
case ErrorPhase::kProxySslHandshake:
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>();
ssl_data_proxy_main_job =
std::make_unique<SSLSocketDataProvider>(ASYNC, mock_error.error);
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>();
ssl_data_proxy_main_job2 =
std::make_unique<SSLSocketDataProvider>(ASYNC, mock_error.error);
break;
case ErrorPhase::kTunnelRead:
// Tunnels aren't established for HTTP destinations.
if (dest_url.SchemeIs(url::kHttpScheme))
continue;
reads.emplace_back(MockRead(ASYNC, mock_error.error));
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>(reads, kTunnelWrites);
ssl_data_proxy_main_job =
std::make_unique<SSLSocketDataProvider>(ASYNC, OK);
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>(reads, kTunnelWrites);
ssl_data_proxy_main_job2 =
std::make_unique<SSLSocketDataProvider>(ASYNC, OK);
break;
}
if (socket_data_proxy_main_job) {
session_deps_.socket_factory->AddSocketDataProvider(
socket_data_proxy_main_job.get());
session_deps_.socket_factory->AddSocketDataProvider(
socket_data_proxy_main_job2.get());
}
if (ssl_data_proxy_main_job) {
session_deps_.socket_factory->AddSSLSocketDataProvider(
ssl_data_proxy_main_job.get());
session_deps_.socket_factory->AddSSLSocketDataProvider(
ssl_data_proxy_main_job2.get());
}
// After both proxies fail, the request should fall back to using DIRECT,
// and succeed.
SSLSocketDataProvider ssl_data_first_request(ASYNC, OK);
StaticSocketDataProvider socket_data_direct_first_request;
socket_data_direct_first_request.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(
&socket_data_direct_first_request);
// Only used in the HTTPS destination case, but harmless in the HTTP case.
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_data_first_request);
// Second request should use DIRECT, skipping the bad proxies, and
// succeed.
SSLSocketDataProvider ssl_data_second_request(ASYNC, OK);
StaticSocketDataProvider socket_data_direct_second_request;
socket_data_direct_second_request.set_connect_data(
MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(
&socket_data_direct_second_request);
// Only used in the HTTPS destination case, but harmless in the HTTP case.
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_data_second_request);
// Now request a stream. It should succeed using the DIRECT fallback proxy
// option.
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = dest_url;
proxy_resolution_service->SetProxyDelegate(test_proxy_delegate.get());
Initialize(std::move(proxy_resolution_service));
// Start two requests. The first request should consume data from
// |socket_data_proxy_main_job| and |socket_data_direct_first_request|.
// The second request should consume data from
// |socket_data_direct_second_request|.
for (size_t i = 0; i < 2; ++i) {
ProxyInfo used_proxy_info;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(::testing::SaveArg<1>(&used_proxy_info));
std::unique_ptr<HttpStreamRequest> request =
CreateJobController(request_info);
RunUntilIdle();
// Verify that request was fetched without proxy.
EXPECT_TRUE(used_proxy_info.is_direct());
// The proxies that failed should now be known to the proxy service as
// bad.
const ProxyRetryInfoMap& retry_info =
session_->proxy_resolution_service()->proxy_retry_info();
if (!mock_error.triggers_ssl_connect_job_retry_logic) {
ASSERT_THAT(retry_info, SizeIs(2));
EXPECT_THAT(retry_info, Contains(Key("https://badproxy:99")));
EXPECT_THAT(retry_info, Contains(Key("https://badfallbackproxy:98")));
} else {
ASSERT_THAT(retry_info, SizeIs(1));
EXPECT_THAT(retry_info, Contains(Key("https://badproxy:99")));
}
// The idle socket should have been added back to the socket pool. Close
// it, so the next loop iteration creates a new socket instead of
// reusing the idle one.
auto* socket_pool = session_->GetSocketPool(
HttpNetworkSession::NORMAL_SOCKET_POOL, ProxyServer::Direct());
EXPECT_EQ(1, socket_pool->IdleSocketCount());
socket_pool->CloseIdleSockets("Close socket reason");
}
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
}
}
// Test proxy fallback logic in the case connecting through socks5 proxy.
TEST_F(JobControllerReconsiderProxyAfterErrorTest,
ReconsiderProxyAfterErrorSocks5Proxy) {
enum class ErrorPhase {
kHostResolution,
kTcpConnect,
kTunnelRead,
};
const struct {
ErrorPhase phase;
net::Error error;
} kRetriableErrors[] = {
// These largely correspond to the list of errors in
// CanFalloverToNextProxy() which can occur with an HTTPS proxy.
//
// Unlike HTTP/HTTPS proxies, SOCKS proxies are retried in response to
// `ERR_CONNECTION_CLOSED`.
{ErrorPhase::kHostResolution, ERR_NAME_NOT_RESOLVED},
{ErrorPhase::kTcpConnect, ERR_ADDRESS_UNREACHABLE},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_TIMED_OUT},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_RESET},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_ABORTED},
{ErrorPhase::kTcpConnect, ERR_CONNECTION_REFUSED},
{ErrorPhase::kTunnelRead, ERR_TIMED_OUT},
{ErrorPhase::kTunnelRead, ERR_CONNECTION_CLOSED},
};
// "host" on port 80 matches the kSOCK5GreetRequest.
const GURL kDestUrl = GURL("http://host:80/");
for (const auto& mock_error : kRetriableErrors) {
SCOPED_TRACE(ErrorToString(mock_error.error));
CreateSessionDeps();
std::unique_ptr<ConfiguredProxyResolutionService> proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"SOCKS5 badproxy:99; SOCKS5 badfallbackproxy:98; DIRECT",
TRAFFIC_ANNOTATION_FOR_TESTS);
auto test_proxy_delegate = std::make_unique<TestProxyDelegate>();
// Before starting the test, verify that there are no proxies marked as bad.
ASSERT_TRUE(proxy_resolution_service->proxy_retry_info().empty());
const MockWrite kTunnelWrites[] = {
{ASYNC, kSOCKS5GreetRequest, kSOCKS5GreetRequestLength}};
std::vector<MockRead> reads;
// Generate identical errors for both the main proxy and the fallback proxy.
// No alternative job is created for either, so only need one data provider
// for each, when the request makes it to the socket layer.
std::unique_ptr<StaticSocketDataProvider> socket_data_proxy_main_job;
std::unique_ptr<StaticSocketDataProvider> socket_data_proxy_main_job2;
switch (mock_error.phase) {
case ErrorPhase::kHostResolution:
// Only ERR_NAME_NOT_RESOLVED can be returned by the mock host resolver.
DCHECK_EQ(ERR_NAME_NOT_RESOLVED, mock_error.error);
session_deps_.host_resolver->rules()->AddSimulatedFailure("badproxy");
session_deps_.host_resolver->rules()->AddSimulatedFailure(
"badfallbackproxy");
break;
case ErrorPhase::kTcpConnect:
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>();
socket_data_proxy_main_job->set_connect_data(
MockConnect(ASYNC, mock_error.error));
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>();
socket_data_proxy_main_job2->set_connect_data(
MockConnect(ASYNC, mock_error.error));
break;
case ErrorPhase::kTunnelRead:
reads.emplace_back(MockRead(ASYNC, mock_error.error));
socket_data_proxy_main_job =
std::make_unique<StaticSocketDataProvider>(reads, kTunnelWrites);
socket_data_proxy_main_job2 =
std::make_unique<StaticSocketDataProvider>(reads, kTunnelWrites);
break;
}
if (socket_data_proxy_main_job) {
session_deps_.socket_factory->AddSocketDataProvider(
socket_data_proxy_main_job.get());
session_deps_.socket_factory->AddSocketDataProvider(
socket_data_proxy_main_job2.get());
}
// After both proxies fail, the request should fall back to using DIRECT,
// and succeed.
StaticSocketDataProvider socket_data_direct_first_request;
socket_data_direct_first_request.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(
&socket_data_direct_first_request);
// Second request should use DIRECT, skipping the bad proxies, and succeed.
StaticSocketDataProvider socket_data_direct_second_request;
socket_data_direct_second_request.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(
&socket_data_direct_second_request);
// Now request a stream. It should succeed using the DIRECT fallback proxy
// option.
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = kDestUrl;
proxy_resolution_service->SetProxyDelegate(test_proxy_delegate.get());
Initialize(std::move(proxy_resolution_service));
// Start two requests. The first request should consume data from
// |socket_data_proxy_main_job| and |socket_data_direct_first_request|. The
// second request should consume data from
// |socket_data_direct_second_request|.
for (size_t i = 0; i < 2; ++i) {
ProxyInfo used_proxy_info;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(::testing::SaveArg<1>(&used_proxy_info));
std::unique_ptr<HttpStreamRequest> request =
CreateJobController(request_info);
RunUntilIdle();
// Verify that request was fetched without proxy.
EXPECT_TRUE(used_proxy_info.is_direct());
// The proxies that failed should now be known to the proxy service as
// bad.
const ProxyRetryInfoMap& retry_info =
session_->proxy_resolution_service()->proxy_retry_info();
ASSERT_THAT(retry_info, SizeIs(2));
EXPECT_THAT(retry_info, Contains(Key("socks5://badproxy:99")));
EXPECT_THAT(retry_info, Contains(Key("socks5://badfallbackproxy:98")));
// The idle socket should have been added back to the socket pool. Close
// it, so the next loop iteration creates a new socket instead of reusing
// the idle one.
auto* socket_pool = session_->GetSocketPool(
HttpNetworkSession::NORMAL_SOCKET_POOL, ProxyServer::Direct());
EXPECT_EQ(1, socket_pool->IdleSocketCount());
socket_pool->CloseIdleSockets("Close socket reason");
}
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
}
// Tests that ERR_MSG_TOO_BIG is retryable for QUIC proxy.
TEST_F(JobControllerReconsiderProxyAfterErrorTest, ReconsiderErrMsgTooBig) {
std::unique_ptr<ConfiguredProxyResolutionService> proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"QUIC badproxy:99; DIRECT", TRAFFIC_ANNOTATION_FOR_TESTS);
// Before starting the test, verify that there are no proxies marked as bad.
ASSERT_TRUE(proxy_resolution_service->proxy_retry_info().empty());
// Mock data for the QUIC proxy socket.
StaticSocketDataProvider quic_proxy_socket;
quic_proxy_socket.set_connect_data(MockConnect(ASYNC, ERR_MSG_TOO_BIG));
session_deps_.socket_factory->AddSocketDataProvider(&quic_proxy_socket);
// Mock data for DIRECT.
StaticSocketDataProvider socket_data_direct;
socket_data_direct.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(&socket_data_direct);
// Now request a stream. It should fall back to DIRECT on ERR_MSG_TOO_BIG.
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.example.com");
Initialize(std::move(proxy_resolution_service));
ProxyInfo used_proxy_info;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(::testing::SaveArg<1>(&used_proxy_info));
std::unique_ptr<HttpStreamRequest> request =
CreateJobController(request_info);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(used_proxy_info.is_direct());
const ProxyRetryInfoMap& retry_info =
session_->proxy_resolution_service()->proxy_retry_info();
EXPECT_THAT(retry_info, SizeIs(1));
EXPECT_THAT(retry_info, Contains(Key("quic://badproxy:99")));
request.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Same as test above except that this is testing the retry behavior for
// non-QUIC proxy on ERR_MSG_TOO_BIG.
TEST_F(JobControllerReconsiderProxyAfterErrorTest,
DoNotReconsiderErrMsgTooBig) {
std::unique_ptr<ConfiguredProxyResolutionService> proxy_resolution_service =
ConfiguredProxyResolutionService::CreateFixedFromPacResultForTest(
"HTTPS badproxy:99; DIRECT", TRAFFIC_ANNOTATION_FOR_TESTS);
// Before starting the test, verify that there are no proxies marked as bad.
ASSERT_TRUE(proxy_resolution_service->proxy_retry_info().empty());
// Mock data for the HTTPS proxy socket.
static constexpr char kHttpConnect[] =
"CONNECT www.example.com:443 HTTP/1.1\r\n"
"Host: www.example.com:443\r\n"
"Proxy-Connection: keep-alive\r\n\r\n";
const MockWrite kWrites[] = {{ASYNC, kHttpConnect}};
const MockRead kReads[] = {{ASYNC, ERR_MSG_TOO_BIG}};
SSLSocketDataProvider ssl_data(ASYNC, OK);
StaticSocketDataProvider https_proxy_socket(kReads, kWrites);
https_proxy_socket.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(&https_proxy_socket);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
// Now request a stream. It should not fallback to DIRECT on ERR_MSG_TOO_BIG.
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(std::move(proxy_resolution_service));
ProxyInfo used_proxy_info;
EXPECT_CALL(request_delegate_, OnStreamFailed(ERR_MSG_TOO_BIG, _, _, _, _))
.Times(1);
std::unique_ptr<HttpStreamRequest> request =
CreateJobController(request_info);
base::RunLoop().RunUntilIdle();
const ProxyRetryInfoMap& retry_info =
session_->proxy_resolution_service()->proxy_retry_info();
EXPECT_THAT(retry_info, SizeIs(0));
request.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_P(HttpStreamFactoryJobControllerTest, OnStreamFailedWithNoAlternativeJob) {
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, ERR_FAILED));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.google.com");
Initialize(request_info);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
// There's no other alternative job. Thus when stream failed, it should
// notify Request of the stream failure.
EXPECT_CALL(request_delegate_, OnStreamFailed(ERR_FAILED, _, _, _, _))
.Times(1);
base::RunLoop().RunUntilIdle();
}
TEST_P(HttpStreamFactoryJobControllerTest, OnStreamReadyWithNoAlternativeJob) {
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.google.com");
Initialize(request_info);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
// There's no other alternative job. Thus when a stream is ready, it should
// notify Request.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
}
// Test we cancel Jobs correctly when the Request is explicitly canceled
// before any Job is bound to Request.
TEST_P(HttpStreamFactoryJobControllerTest, CancelJobsBeforeBinding) {
// Use COLD_START to make the alt job pending.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_CONNECTION_CLOSED);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// Reset the Request will cancel all the Jobs since there's no Job determined
// to serve Request yet and JobController will notify the factory to delete
// itself upon completion.
request_.reset();
// QuicStreamFactory::Job::Request will not complete since the Jobs are
// canceled, so there is no need to check if all read data was consumed.
should_check_data_consumed_ = false;
VerifyBrokenAlternateProtocolMapping(request_info, false);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Test that the controller does not create alternative job when the advertised
// versions in AlternativeServiceInfo do not contain any version that is
// supported.
TEST_P(HttpStreamFactoryJobControllerTest,
DoNotCreateAltJobIfQuicVersionsUnsupported) {
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
base::Time expiration = base::Time::Now() + base::Days(1);
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
{quic::ParsedQuicVersion::Unsupported()});
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
request_.reset();
VerifyBrokenAlternateProtocolMapping(request_info, false);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
void HttpStreamFactoryJobControllerTestBase::
TestDoNotDelayMainJobIfQuicWasRecentlyBroken(bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, ERR_IO_PENDING));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
base::Time expiration = base::Time::Now() + base::Days(1);
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
quic_context_.params()->supported_versions);
// Enable QUIC but mark the alternative service as recently broken.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
session_->http_server_properties()->MarkAlternativeServiceRecentlyBroken(
alternative_service, NetworkAnonymizationKey());
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// The main job shouldn't have any delay since QUIC was recently broken. Main
// job should still be blocked as alt job has not succeeded or failed at least
// once yet.
EXPECT_EQ(job_controller_->get_main_job_wait_time_for_tests(),
base::TimeDelta());
if (async_quic_session) {
EXPECT_TRUE(JobControllerPeer::main_job_is_blocked(job_controller_));
} else {
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
}
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
base::RunLoop().RunUntilIdle();
// Check that alternative job is bound while main job is destroyed.
EXPECT_FALSE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
request_.reset();
VerifyBrokenAlternateProtocolMapping(request_info, false);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_P(HttpStreamFactoryJobControllerTest,
DoNotDelayMainJobIfQuicWasRecentlyBroken) {
TestDoNotDelayMainJobIfQuicWasRecentlyBroken(false);
}
TEST_P(HttpStreamFactoryJobControllerTest,
DoNotDelayMainJobIfQuicWasRecentlyBrokenAsyncQuicSession) {
TestDoNotDelayMainJobIfQuicWasRecentlyBroken(true);
}
void HttpStreamFactoryJobControllerTestBase::
TestDelayMainJobAfterRecentlyBrokenQuicWasConfirmed(
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, ERR_IO_PENDING));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
base::Time expiration = base::Time::Now() + base::Days(1);
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
quic_context_.params()->supported_versions);
// Enable QUIC but mark the alternative service as recently broken.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
session_->http_server_properties()->MarkAlternativeServiceRecentlyBroken(
alternative_service, NetworkAnonymizationKey());
// Confirm the alt service.
session_->http_server_properties()->ConfirmAlternativeService(
alternative_service, NetworkAnonymizationKey());
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// The main job should wait and it should still be blocked because the new
// QUIC session hasn't been created yet. The wait time should be greater than
// 0.
EXPECT_TRUE(job_controller_->ShouldWait(
const_cast<net::HttpStreamFactory::Job*>(job_controller_->main_job())));
if (async_quic_session) {
EXPECT_TRUE(JobControllerPeer::main_job_is_blocked(job_controller_));
} else {
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
}
EXPECT_GE(job_controller_->get_main_job_wait_time_for_tests(),
base::TimeDelta());
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
base::RunLoop().RunUntilIdle();
// Check that alternative job is bound while main job is destroyed.
EXPECT_FALSE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
request_.reset();
VerifyBrokenAlternateProtocolMapping(request_info, false);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_P(HttpStreamFactoryJobControllerTest,
DelayMainJobAfterRecentlyBrokenQuicWasConfirmed) {
TestDelayMainJobAfterRecentlyBrokenQuicWasConfirmed(false);
}
TEST_P(HttpStreamFactoryJobControllerTest,
DelayMainJobAfterRecentlyBrokenQuicWasConfirmedAsyncQuicSession) {
TestDelayMainJobAfterRecentlyBrokenQuicWasConfirmed(true);
}
void HttpStreamFactoryJobControllerTestBase::TestOnStreamFailedForBothJobs(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddConnect(ASYNC, ERR_FAILED);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, ERR_FAILED));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retired on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
// The failure of second Job should be reported to Request as there's no more
// pending Job to serve the Request.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(1);
base::RunLoop().RunUntilIdle();
VerifyBrokenAlternateProtocolMapping(request_info, false);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// This test verifies that the alternative service is not marked broken if both
// jobs fail, and the alternative job is not retried on the alternate network.
TEST_P(HttpStreamFactoryJobControllerTest,
OnStreamFailedForBothJobsWithoutQuicRetry) {
TestOnStreamFailedForBothJobs(false, false);
}
// This test verifies that the alternative service is not marked broken if both
// jobs fail, and the alternative job is retried on the alternate network.
TEST_P(HttpStreamFactoryJobControllerTest,
OnStreamFailedForBothJobsWithQuicRetriedOnAlternateNetwork) {
TestOnStreamFailedForBothJobs(true, false);
}
// This test verifies that the alternative service is not marked broken if both
// jobs fail, and the alternative job is not retried on the alternate network.
// This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
OnStreamFailedForBothJobsWithoutQuicRetryAsyncQuicSession) {
TestOnStreamFailedForBothJobs(false, true);
}
// This test verifies that the alternative service is not marked broken if both
// jobs fail, and the alternative job is retried on the alternate network. This
// test uses asynchronous QUIC session creation.
TEST_P(
HttpStreamFactoryJobControllerTest,
OnStreamFailedForBothJobsWithQuicRetriedOnAlternateNetworkAsyncQuicSession) {
TestOnStreamFailedForBothJobs(true, true);
}
void HttpStreamFactoryJobControllerTestBase::
TestAltJobFailsAfterMainJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(ASYNC, ERR_FAILED);
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(SYNCHRONOUS, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retired on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
// Main job succeeds, starts serving Request and it should report status
// to Request. The alternative job will mark the main job complete and gets
// orphaned.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
// JobController shouldn't report the status of second job as request
// is already successfully served.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
base::RunLoop().RunUntilIdle();
// Reset the request as it's been successfully served.
request_.reset();
base::RunLoop().RunUntilIdle();
VerifyBrokenAlternateProtocolMapping(request_info, true);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
// Verify the brokenness is not cleared when the default network changes.
session_->http_server_properties()->OnDefaultNetworkChanged();
VerifyBrokenAlternateProtocolMapping(request_info, true);
}
// This test verifies that the alternative service is marked broken when the
// alternative job fails on default after the main job succeeded. The
// brokenness should not be cleared when the default network changes.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobFailsOnDefaultNetworkAfterMainJobSucceeded) {
TestAltJobFailsAfterMainJobSucceeded(false, false);
}
// This test verifies that the alternative service is marked broken when the
// alternative job fails on both networks after the main job succeeded. The
// brokenness should not be cleared when the default network changes.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobFailsOnBothNetworksAfterMainJobSucceeded) {
TestAltJobFailsAfterMainJobSucceeded(true, false);
}
// This test verifies that the alternative service is marked broken when the
// alternative job fails on default after the main job succeeded. The
// brokenness should not be cleared when the default network changes. This test
// uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobFailsOnDefaultNetworkAfterMainJobSucceededAsyncQuicSession) {
TestAltJobFailsAfterMainJobSucceeded(false, true);
}
// This test verifies that the alternative service is marked broken when the
// alternative job fails on both networks after the main job succeeded. The
// brokenness should not be cleared when the default network changes. This test
// uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobFailsOnBothNetworksAfterMainJobSucceededAsyncQuicSession) {
TestAltJobFailsAfterMainJobSucceeded(true, true);
}
void HttpStreamFactoryJobControllerTestBase::TestAltJobSucceedsMainJobDestroyed(
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
// Use cold start and complete alt job manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, ERR_IO_PENDING));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (async_quic_session) {
EXPECT_TRUE(JobControllerPeer::main_job_is_blocked(job_controller_));
} else {
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
}
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
request_.reset();
VerifyBrokenAlternateProtocolMapping(request_info, false);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Tests that when alt job succeeds, main job is destroyed.
TEST_P(HttpStreamFactoryJobControllerTest, AltJobSucceedsMainJobDestroyed) {
TestAltJobSucceedsMainJobDestroyed(false);
}
// Tests that when alt job succeeds, main job is destroyed.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsMainJobDestroyedAsyncQuicSession) {
TestAltJobSucceedsMainJobDestroyed(true);
}
// Tests that if alt job succeeds and main job is blocked, main job should be
// cancelled immediately. |request_| completion will clean up the JobController.
// Regression test for crbug.com/678768.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsMainJobBlockedControllerDestroyed) {
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddWrite(SYNCHRONOUS, client_maker_.MakeInitialSettingsPacket(1));
quic_data_->AddRead(ASYNC, ERR_CONNECTION_CLOSED);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
EXPECT_TRUE(JobControllerPeer::main_job_is_blocked(job_controller_));
// |alternative_job| succeeds and should report status to |request_delegate_|.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// Invoke OnRequestComplete() which should delete |job_controller_| from
// |factory_|.
request_.reset();
// base::RunLoop().RunUntilIdle();
VerifyBrokenAlternateProtocolMapping(request_info, false);
// This fails without the fix for crbug.com/678768.
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_P(HttpStreamFactoryJobControllerTest,
SpdySessionKeyHasOriginHostPortPair) {
session_deps_.enable_http2_alternative_service = true;
const char origin_host[] = "www.example.org";
const uint16_t origin_port = 443;
const char alternative_host[] = "mail.example.org";
const uint16_t alternative_port = 123;
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url =
GURL(base::StringPrintf("https://%s:%u", origin_host, origin_port));
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoHTTP2, alternative_host,
alternative_port);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
HostPortPair main_host_port_pair =
HttpStreamFactoryJobPeer::GetSpdySessionKey(job_controller_->main_job())
.host_port_pair();
EXPECT_EQ(origin_host, main_host_port_pair.host());
EXPECT_EQ(origin_port, main_host_port_pair.port());
HostPortPair alternative_host_port_pair =
HttpStreamFactoryJobPeer::GetSpdySessionKey(
job_controller_->alternative_job())
.host_port_pair();
EXPECT_EQ(origin_host, alternative_host_port_pair.host());
EXPECT_EQ(origin_port, alternative_host_port_pair.port());
}
void HttpStreamFactoryJobControllerTestBase::
TestOrphanedJobCompletesControllerDestroyed(bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
// Use cold start and complete alt job manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
// Complete main job now.
base::RunLoop().RunUntilIdle();
// Invoke OnRequestComplete() which should not delete |job_controller_| from
// |factory_| because alt job is yet to finish.
request_.reset();
ASSERT_FALSE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
EXPECT_FALSE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
// This should not call request_delegate_::OnStreamReady.
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
// Make sure that controller does not leak.
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Tests that if an orphaned job completes after |request_| is gone,
// JobController will be cleaned up.
TEST_P(HttpStreamFactoryJobControllerTest,
OrphanedJobCompletesControllerDestroyed) {
TestOrphanedJobCompletesControllerDestroyed(false);
}
// Tests that if an orphaned job completes after |request_| is gone,
// JobController will be cleaned up.
TEST_P(HttpStreamFactoryJobControllerTest,
OrphanedJobCompletesControllerDestroyedAsyncQuicSession) {
TestOrphanedJobCompletesControllerDestroyed(true);
}
void HttpStreamFactoryJobControllerTestBase::
TestAltJobSucceedsAfterMainJobFailed(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
// Use cold start and complete alt job manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
// One failed TCP connect.
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, ERR_FAILED));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// |main_job| fails but should not report status to Request.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retried on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
if (async_quic_session) {
base::RunLoop run_loop;
EXPECT_CALL(*job_factory_.main_job(), Resume())
.Times(1)
.WillOnce([&run_loop, this]() {
run_loop.Quit();
job_factory_.main_job()->DoResume();
});
run_loop.Run();
}
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
base::RunLoop().RunUntilIdle();
// |alternative_job| succeeds and should report status to Request.
VerifyBrokenAlternateProtocolMapping(request_info, false);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// This test verifies that the alternative service is not mark broken if the
// alternative job succeeds on the default network after the main job failed.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnDefaultNetworkAfterMainJobFailed) {
TestAltJobSucceedsAfterMainJobFailed(false, false);
}
// This test verifies that the alternative service is not mark broken if the
// alternative job succeeds on the alternate network after the main job failed.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnAlternateNetworkAfterMainJobFailed) {
TestAltJobSucceedsAfterMainJobFailed(true, false);
}
// This test verifies that the alternative service is not mark broken if the
// alternative job succeeds on the default network after the main job failed.
// This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnDefaultNetworkAfterMainJobFailedAsyncQuicSession) {
TestAltJobSucceedsAfterMainJobFailed(false, true);
}
// This test verifies that the alternative service is not mark broken if the
// alternative job succeeds on the alternate network after the main job failed.
// This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnAlternateNetworkAfterMainJobFailedAsyncQuicSession) {
TestAltJobSucceedsAfterMainJobFailed(true, true);
}
void HttpStreamFactoryJobControllerTestBase::
TestAltJobSucceedsAfterMainJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
// Use cold start and complete alt job manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// |main_job| fails but should not report status to Request.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
// Run the message loop to make |main_job| succeed and status will be
// reported to Request.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
VerifyBrokenAlternateProtocolMapping(request_info, false);
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retired on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
request_.reset();
// If alt job was retried on the alternate network, the alternative service
// should be marked broken until the default network changes.
VerifyBrokenAlternateProtocolMapping(request_info,
alt_job_retried_on_non_default_network);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
if (alt_job_retried_on_non_default_network) {
// Verify the brokenness is cleared when the default network changes.
session_->http_server_properties()->OnDefaultNetworkChanged();
VerifyBrokenAlternateProtocolMapping(request_info, false);
}
}
// This test verifies that the alternative service is not marked broken if the
// alternative job succeeds on the default network after the main job succeeded.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnDefaultNetworkAfterMainJobSucceeded) {
TestAltJobSucceedsAfterMainJobSucceeded(false, false);
}
// This test verifies that the alternative service is marked broken until the
// default network changes if the alternative job succeeds on the non-default
// network, which failed on the default network previously, after the main job
// succeeded. The brokenness should be cleared when the default network
// changes.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnAlternateNetworkAfterMainJobSucceeded) {
TestAltJobSucceedsAfterMainJobSucceeded(true, false);
}
// This test verifies that the alternative service is not marked broken if the
// alternative job succeeds on the default network after the main job succeeded.
// This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnDefaultNetworkAfterMainJobSucceededAsyncQuicSession) {
TestAltJobSucceedsAfterMainJobSucceeded(false, true);
}
// This test verifies that the alternative service is marked broken until the
// default network changes if the alternative job succeeds on the non-default
// network, which failed on the default network previously, after the main job
// succeeded. The brokenness should be cleared when the default network
// changes. This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
AltJobSucceedsOnAlternateNetworkAfterMainJobSucceededAsyncQuicSession) {
TestAltJobSucceedsAfterMainJobSucceeded(true, true);
}
void HttpStreamFactoryJobControllerTestBase::
TestMainJobSucceedsAfterAltJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
// Use cold start and complete alt job manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retired on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
if (async_quic_session) {
base::RunLoop run_loop;
EXPECT_CALL(*job_factory_.main_job(), Resume())
.Times(1)
.WillOnce([&run_loop, this]() {
run_loop.Quit();
job_factory_.main_job()->DoResume();
});
run_loop.Run();
}
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
// Run message loop to make the main job succeed.
base::RunLoop().RunUntilIdle();
request_.reset();
// If alt job was retried on the alternate network, the alternative service
// should be marked broken until the default network changes.
VerifyBrokenAlternateProtocolMapping(request_info,
alt_job_retried_on_non_default_network);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
if (alt_job_retried_on_non_default_network) {
// Verify the brokenness is cleared when the default network changes.
session_->http_server_properties()->OnDefaultNetworkChanged();
VerifyBrokenAlternateProtocolMapping(request_info, false);
}
}
// This test verifies that the alternative service is not marked broken if the
// main job succeeds after the alternative job succeeded on the default network.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobSucceededOnDefaultNetwork) {
TestMainJobSucceedsAfterAltJobSucceeded(false, false);
}
// This test verifies that the alternative service is marked broken until the
// default network changes if the main job succeeds after the alternative job
// succeeded on the non-default network, i.e., failed on the default network
// previously. The brokenness should be cleared when the default network
// changes.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobSucceededOnAlternateNetwork) {
TestMainJobSucceedsAfterAltJobSucceeded(true, false);
}
// This test verifies that the alternative service is not marked broken if the
// main job succeeds after the alternative job succeeded on the default network.
// This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobSucceededOnDefaultNetworkAsyncQuicSession) {
TestMainJobSucceedsAfterAltJobSucceeded(false, true);
}
// This test verifies that the alternative service is marked broken until the
// default network changes if the main job succeeds after the alternative job
// succeeded on the non-default network, i.e., failed on the default network
// previously. The brokenness should be cleared when the default network
// changes. This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobSucceededOnAlternateNetworkAsyncQuicSession) {
TestMainJobSucceedsAfterAltJobSucceeded(true, true);
}
void HttpStreamFactoryJobControllerTestBase::
TestMainJobFailsAfterAltJobSucceeded(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
// Use cold start and complete alt job manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, ERR_FAILED));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retired on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
// Make |alternative_job| succeed.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
if (async_quic_session) {
base::RunLoop run_loop;
EXPECT_CALL(*job_factory_.main_job(), Resume())
.Times(1)
.WillOnce([&run_loop, this]() {
run_loop.Quit();
job_factory_.main_job()->DoResume();
});
run_loop.Run();
}
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
// Run message loop to make the main job fail.
base::RunLoop().RunUntilIdle();
VerifyBrokenAlternateProtocolMapping(request_info, false);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// This test verifies that the alternative service is not marked broken if the
// main job fails after the alternative job succeeded on the default network.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobFailsAfterAltJobSucceededOnDefaultNetwork) {
TestMainJobFailsAfterAltJobSucceeded(false, false);
}
// This test verifies that the alternative service is not marked broken if the
// main job fails after the alternative job succeeded on the non-default
// network, i.e., failed on the default network previously.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobFailsAfterAltJobSucceededOnAlternateNetwork) {
TestMainJobFailsAfterAltJobSucceeded(true, false);
}
// This test verifies that the alternative service is not marked broken if the
// main job fails after the alternative job succeeded on the default network.
// This test uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobFailsAfterAltJobSucceededOnDefaultNetworkAsyncQuicSession) {
TestMainJobFailsAfterAltJobSucceeded(false, true);
}
// This test verifies that the alternative service is not marked broken if the
// main job fails after the alternative job succeeded on the non-default
// network, i.e., failed on the default network previously. This test uses
// asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobFailsAfterAltJobSucceededOnAlternateNetworkAsyncQuicSession) {
TestMainJobFailsAfterAltJobSucceeded(true, true);
}
void HttpStreamFactoryJobControllerTestBase::
TestMainJobSucceedsAfterAltJobFailed(
bool alt_job_retried_on_non_default_network,
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddConnect(SYNCHRONOUS, ERR_FAILED);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
base::HistogramTester histogram_tester;
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// |alternative_job| fails but should not report status to Request.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
// |main_job| succeeds and should report status to Request.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
if (alt_job_retried_on_non_default_network) {
// Set the alt job as if it failed on the default network and is retired on
// the alternate network.
JobControllerPeer::SetAltJobFailedOnDefaultNetwork(job_controller_);
}
base::RunLoop().RunUntilIdle();
request_.reset();
// Verify that the alternate protocol is marked as broken.
VerifyBrokenAlternateProtocolMapping(request_info, true);
histogram_tester.ExpectUniqueSample("Net.AlternateServiceFailed", -ERR_FAILED,
1);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
// Verify the brokenness is not cleared when the default network changes.
session_->http_server_properties()->OnDefaultNetworkChanged();
VerifyBrokenAlternateProtocolMapping(request_info, true);
}
// This test verifies that the alternative service will be marked broken when
// the alternative job fails on the default network and main job succeeds later.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobFailedOnDefaultNetwork) {
TestMainJobSucceedsAfterAltJobFailed(false, false);
}
// This test verifies that the alternative service will be marked broken when
// the alternative job fails on both default and alternate networks and main job
// succeeds later.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobFailedOnBothNetworks) {
TestMainJobSucceedsAfterAltJobFailed(true, false);
}
// This test verifies that the alternative service will be marked broken when
// the alternative job fails on the default network and main job succeeds later.
// This test uses asynchronous Quic session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobFailedOnDefaultNetworkAsyncQuicSession) {
TestMainJobSucceedsAfterAltJobFailed(false, true);
}
// This test verifies that the alternative service will be marked broken when
// the alternative job fails on both default and alternate networks and main job
// succeeds later. This test uses asynchronous Quic session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterAltJobFailedOnBothNetworksAsyncQuicSession) {
TestMainJobSucceedsAfterAltJobFailed(true, true);
}
void HttpStreamFactoryJobControllerTestBase::
TestMainJobSucceedsAfterIgnoredError(int net_error,
bool async_quic_session,
bool expect_broken,
std::string alternate_host) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddConnect(SYNCHRONOUS, net_error);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
base::HistogramTester histogram_tester;
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
if (alternate_host.empty()) {
alternate_host = server.host();
}
AlternativeService alternative_service(kProtoQUIC, alternate_host, 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// |alternative_job| fails but should not report status to Request.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
// |main_job| succeeds and should report status to Request.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
request_.reset();
// Verify that the alternate protocol is not marked as broken.
VerifyBrokenAlternateProtocolMapping(request_info, expect_broken);
if (expect_broken) {
histogram_tester.ExpectUniqueSample("Net.AlternateServiceFailed",
-net_error, 1);
}
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Verifies that if the alternative job fails due to a connection change event,
// then the alternative service is not marked as broken.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterConnectionChanged) {
TestMainJobSucceedsAfterIgnoredError(ERR_NETWORK_CHANGED, false);
}
// Verifies that if the alternative job fails due to a disconnected network,
// then the alternative service is not marked as broken.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterInternetDisconnected) {
TestMainJobSucceedsAfterIgnoredError(ERR_INTERNET_DISCONNECTED, false);
}
// Verifies that if the alternative job fails due to a connection change event,
// then the alternative service is not marked as broken. This test uses
// asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterConnectionChangedAsyncQuicSession) {
TestMainJobSucceedsAfterIgnoredError(ERR_NETWORK_CHANGED, true);
}
// Verifies that if the alternative job fails due to a disconnected network,
// then the alternative service is not marked as broken. This test uses
// asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterInternetDisconnectedAsyncQuicSession) {
TestMainJobSucceedsAfterIgnoredError(ERR_INTERNET_DISCONNECTED, true);
}
// Verifies that if the alternative job fails due to a DNS failure,
// then the alternative service is not marked as broken.
TEST_P(HttpStreamFactoryJobControllerTest, MainJobSucceedsAfterDnsFailure) {
TestMainJobSucceedsAfterIgnoredError(ERR_NAME_NOT_RESOLVED, false);
}
// Verifies that if the alternative job fails due to a DNS failure,
// then the alternative service is not marked as broken. This test uses
// asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterDnsFailureAsyncQuicSession) {
TestMainJobSucceedsAfterIgnoredError(ERR_NAME_NOT_RESOLVED, true);
}
// Verifies that if the alternative job fails due to a DNS failure on a
// different name, then the alternative service is marked as broken.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterDnsFailureWithAlternateName) {
TestMainJobSucceedsAfterIgnoredError(ERR_NAME_NOT_RESOLVED, false, true,
"alternate.google.com");
}
// Verifies that if the alternative job fails due to a DNS failure on a
// different name, then the alternative service is marked as broken. This test
// uses asynchronous QUIC session creation.
TEST_P(HttpStreamFactoryJobControllerTest,
MainJobSucceedsAfterDnsFailureWithAlternateNameAsyncQuicSession) {
TestMainJobSucceedsAfterIgnoredError(ERR_NAME_NOT_RESOLVED, true, true,
"alternate.google.com");
}
// Regression test for crbug/621069.
// Get load state after main job fails and before alternative job succeeds.
TEST_P(HttpStreamFactoryJobControllerTest, GetLoadStateAfterMainJobFailed) {
// Use COLD_START to complete alt job manually.
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, ERR_FAILED));
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// |main_job| fails but should not report status to Request.
// The alternative job will mark the main job complete.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
base::RunLoop().RunUntilIdle();
// Controller should use alternative job to get load state.
job_controller_->GetLoadState();
// |alternative_job| succeeds and should report status to Request.
auto http_stream = std::make_unique<HttpBasicStream>(
std::make_unique<ClientSocketHandle>(), false);
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, http_stream.get()));
HttpStreamFactoryJobPeer::SetStream(job_factory_.alternative_job(),
std::move(http_stream));
job_controller_->OnStreamReady(job_factory_.alternative_job(), SSLConfig());
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
void HttpStreamFactoryJobControllerTestBase::TestResumeMainJobWhenAltJobStalls(
bool async_quic_session) {
if (async_quic_session) {
feature_list_.Reset();
std::vector<base::test::FeatureRef> enabled_features = {
features::kAsyncQuicSession};
if (dns_https_alpn_enabled_) {
enabled_features.push_back(features::kUseDnsHttpsSvcbAlpn);
}
feature_list_.InitWithFeatures(enabled_features, {});
}
// Use COLD_START to stall alt job.
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
if (async_quic_session) {
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1).WillOnce([this]() {
job_factory_.main_job()->DoResume();
});
}
// Alt job is stalled and main job should complete successfully.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
}
TEST_P(HttpStreamFactoryJobControllerTest, ResumeMainJobWhenAltJobStalls) {
TestResumeMainJobWhenAltJobStalls(false);
}
TEST_P(HttpStreamFactoryJobControllerTest,
ResumeMainJobWhenAltJobStallsAsyncQuicSession) {
TestResumeMainJobWhenAltJobStalls(true);
}
TEST_P(HttpStreamFactoryJobControllerTest, InvalidPortForQuic) {
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
// Using a restricted port 101 for QUIC should fail and the alternative job
// should post OnStreamFailedCall on the controller to resume the main job.
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 101);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_factory_.main_job()->is_waiting());
// Wait until OnStreamFailedCallback is executed on the alternative job.
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1);
base::RunLoop().RunUntilIdle();
}
// Verifies that the main job is not resumed until after the alt job completes
// host resolution.
TEST_P(HttpStreamFactoryJobControllerTest, HostResolutionHang) {
auto hanging_resolver = std::make_unique<MockHostResolver>();
hanging_resolver->set_ondemand_mode(true);
hanging_resolver->rules()->AddRule("www.google.com", "1.2.3.4");
session_deps_.host_resolver = std::move(hanging_resolver);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
// handshake will fail asynchronously after mock data is unpaused.
MockQuicData quic_data(version_);
quic_data.AddRead(ASYNC, ERR_IO_PENDING); // Pause
quic_data.AddRead(ASYNC, ERR_FAILED);
quic_data.AddWrite(ASYNC, ERR_FAILED);
quic_data.AddSocketDataToFactory(session_deps_.socket_factory.get());
// Enable delayed TCP and set time delay for waiting job.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
ServerNetworkStats stats1;
stats1.srtt = base::Microseconds(10);
session_->http_server_properties()->SetServerNetworkStats(
url::SchemeHostPort(GURL("https://www.google.com")),
NetworkAnonymizationKey(), stats1);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// This prevents handshake from immediately succeeding.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
EXPECT_TRUE(JobControllerPeer::main_job_is_blocked(job_controller_));
// Since the alt job has not finished host resolution, there should be no
// delayed task posted to resume the main job.
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
FastForwardBy(base::Microseconds(50));
EXPECT_TRUE(JobControllerPeer::main_job_is_blocked(job_controller_));
// Allow alt job host resolution to complete.
session_deps_.host_resolver->ResolveAllPending();
// Task to resume main job in 15 microseconds should be posted.
EXPECT_NE(0u, GetPendingMainThreadTaskCount());
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
FastForwardBy(base::Microseconds(14));
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1);
FastForwardBy(base::Microseconds(1));
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// Unpause mock quic data.
// Will cause |alternative_job| to fail, but its failure should not be
// reported to Request.
EXPECT_CALL(request_delegate_, OnStreamFailed(_, _, _, _, _)).Times(0);
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
EXPECT_TRUE(JobControllerPeer::main_job_is_resumed(job_controller_));
// OnStreamFailed will post a task to resume the main job immediately but
// won't call Resume() on the main job since it's been resumed already.
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
quic_data.Resume();
FastForwardUntilNoTasksRemain();
// Alt job should be cleaned up
EXPECT_FALSE(job_controller_->alternative_job());
}
// Regression test for crbug.com/789560.
TEST_P(HttpStreamFactoryJobControllerTest, ResumeMainJobLaterCanceled) {
std::unique_ptr<ConfiguredProxyResolutionService> proxy_resolution_service =
ConfiguredProxyResolutionService::CreateDirect();
ConfiguredProxyResolutionService* proxy_resolution_service_raw =
proxy_resolution_service.get();
session_deps_.proxy_resolution_service = std::move(proxy_resolution_service);
// Using hanging resolver will cause the alternative job to hang indefinitely.
session_deps_.alternate_host_resolver =
std::make_unique<HangingHostResolver>();
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
// Enable delayed TCP and set time delay for waiting job.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
ServerNetworkStats stats1;
stats1.srtt = base::Microseconds(10);
session_->http_server_properties()->SetServerNetworkStats(
url::SchemeHostPort(GURL("https://www.google.com")),
NetworkAnonymizationKey(), stats1);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
base::RunLoop run_loop;
// The main job should be resumed without delay when alt job fails.
EXPECT_CALL(*job_factory_.main_job(), Resume())
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
job_controller_->OnStreamFailed(job_factory_.alternative_job(),
ERR_QUIC_PROTOCOL_ERROR, SSLConfig());
FastForwardBy(base::Microseconds(0));
run_loop.Run();
EXPECT_FALSE(job_controller_->alternative_job());
// Calling ForceReloadProxyConfig will cause the proxy configuration to
// change. It will still be the direct connection but the configuration
// version will be bumped. That is enough for the job controller to restart
// the jobs.
proxy_resolution_service_raw->ForceReloadProxyConfig();
HttpStreamFactoryJobPeer::SetShouldReconsiderProxy(job_factory_.main_job());
// Now the alt service is marked as broken (e.g. through a different request),
// so only non-alt job is restarted.
session_->http_server_properties()->MarkAlternativeServiceBroken(
alternative_service, NetworkAnonymizationKey());
job_controller_->OnStreamFailed(job_factory_.main_job(), ERR_FAILED,
SSLConfig());
// Jobs are restarted.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
// There shouldn't be any ResumeMainJobLater() delayed tasks.
// This EXPECT_CALL will fail before crbug.com/789560 fix.
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
FastForwardBy(base::Microseconds(15));
EXPECT_TRUE(job_controller_->main_job());
request_.reset();
}
// Test that main job is blocked for kMaxDelayTimeForMainJob(3s) if
// http_server_properties cached an inappropriate large srtt for the server,
// which would potentially delay the main job for a extremely long time in
// delayed tcp case.
TEST_P(HttpStreamFactoryJobControllerTest, DelayedTCPWithLargeSrtt) {
// The max delay time should be in sync with .cc file.
base::TimeDelta kMaxDelayTimeForMainJob = base::Seconds(3);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
// handshake will fail asynchronously after mock data is unpaused.
MockQuicData quic_data(version_);
quic_data.AddRead(ASYNC, ERR_IO_PENDING); // Pause
quic_data.AddRead(ASYNC, ERR_FAILED);
quic_data.AddWrite(ASYNC, ERR_FAILED);
quic_data.AddSocketDataToFactory(session_deps_.socket_factory.get());
// Enable delayed TCP and set time delay for waiting job.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
ServerNetworkStats stats1;
stats1.srtt = base::Seconds(100);
session_->http_server_properties()->SetServerNetworkStats(
url::SchemeHostPort(GURL("https://www.google.com")),
NetworkAnonymizationKey(), stats1);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// This prevents handshake from immediately succeeding.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
base::RunLoop().RunUntilIdle();
// Main job is not blocked but hasn't resumed yet; it should resume in 3s.
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
EXPECT_FALSE(JobControllerPeer::main_job_is_resumed(job_controller_));
// Task to resume main job in 3 seconds should be posted.
EXPECT_NE(0u, GetPendingMainThreadTaskCount());
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
FastForwardBy(kMaxDelayTimeForMainJob - base::Microseconds(1));
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1);
FastForwardBy(base::Microseconds(1));
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
EXPECT_TRUE(JobControllerPeer::main_job_is_resumed(job_controller_));
// Unpause mock quic data and run all remaining tasks. Alt-job should fail
// and be cleaned up.
quic_data.Resume();
FastForwardUntilNoTasksRemain();
EXPECT_FALSE(job_controller_->alternative_job());
}
// TODO(https://crbug.com/1007502): Disabled because the pending task count does
// not match expectations.
TEST_P(HttpStreamFactoryJobControllerTest,
DISABLED_ResumeMainJobImmediatelyOnStreamFailed) {
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
// handshake will fail asynchronously after mock data is unpaused.
MockQuicData quic_data(version_);
quic_data.AddRead(ASYNC, ERR_IO_PENDING); // Pause
quic_data.AddRead(ASYNC, ERR_FAILED);
quic_data.AddWrite(ASYNC, ERR_FAILED);
quic_data.AddSocketDataToFactory(session_deps_.socket_factory.get());
// Enable delayed TCP and set time delay for waiting job.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
ServerNetworkStats stats1;
stats1.srtt = base::Microseconds(10);
session_->http_server_properties()->SetServerNetworkStats(
url::SchemeHostPort(GURL("https://www.google.com")),
NetworkAnonymizationKey(), stats1);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// This prevents handshake from immediately succeeding.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// Main job is not blocked but hasn't resumed yet; it's scheduled to resume
// in 15us.
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
EXPECT_FALSE(JobControllerPeer::main_job_is_resumed(job_controller_));
// Task to resume main job in 15us should be posted.
EXPECT_NE(0u, GetPendingMainThreadTaskCount());
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
FastForwardBy(base::Microseconds(1));
// Now unpause the mock quic data to fail the alt job. This should immediately
// resume the main job.
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(1);
quic_data.Resume();
FastForwardBy(base::TimeDelta());
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_TRUE(JobControllerPeer::main_job_is_resumed(job_controller_));
// Verify there is another task to resume main job with delay but should
// not call Resume() on the main job as main job has been resumed.
EXPECT_NE(0u, GetPendingMainThreadTaskCount());
EXPECT_CALL(*job_factory_.main_job(), Resume()).Times(0);
FastForwardBy(base::Microseconds(15));
FastForwardUntilNoTasksRemain();
}
TEST_P(HttpStreamFactoryJobControllerTest, PreconnectToHostWithValidAltSvc) {
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddWrite(SYNCHRONOUS, client_maker_.MakeInitialSettingsPacket(1));
quic_data_->AddRead(ASYNC, ERR_CONNECTION_CLOSED);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
SetPreconnect();
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
job_controller_->Preconnect(1);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT,
job_controller_->main_job()->job_type());
EXPECT_FALSE(job_controller_->alternative_job());
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// When preconnect to a H2 supported server, only 1 connection is opened.
TEST_P(HttpStreamFactoryJobControllerTest,
PreconnectMultipleStreamsToH2Server) {
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
SetPreconnect();
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.example.com");
Initialize(request_info);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
job_controller_->Preconnect(/*num_streams=*/5);
// Only one job is started.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT,
job_controller_->main_job()->job_type());
// There is only 1 connect even though multiple streams were requested.
EXPECT_EQ(
1, HttpStreamFactoryJobPeer::GetNumStreams(job_controller_->main_job()));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Check that the logic to only preconnect a single socket to servers with H2
// support respects NetworkIsolationKeys.
TEST_P(HttpStreamFactoryJobControllerTest,
PreconnectMultipleStreamsToH2ServerWithNetworkIsolationKey) {
base::test::ScopedFeatureList feature_list;
// It's not strictly necessary to enable
// |kPartitionConnectionsByNetworkIsolationKey|, but the second phase of the
// test would only make 4 connections, reusing the first connection, without
// it.
feature_list.InitWithFeatures(
{// enabled_features
features::kPartitionHttpServerPropertiesByNetworkIsolationKey,
features::kPartitionConnectionsByNetworkIsolationKey},
// disabled_features
{});
// Need to re-create HttpServerProperties after enabling the field trial,
// since it caches the field trial value on construction.
session_deps_.http_server_properties =
std::make_unique<HttpServerProperties>();
const SchemefulSite kSite1(GURL("https://foo.test/"));
const NetworkIsolationKey kNetworkIsolationKey1(kSite1, kSite1);
const auto kNetworkAnonymizationKey1 =
NetworkAnonymizationKey::CreateSameSite(kSite1);
const SchemefulSite kSite2(GURL("https://bar.test/"));
const NetworkIsolationKey kNetworkIsolationKey2(kSite2, kSite2);
const auto kNetworkAnonymizationKey2 =
NetworkAnonymizationKey::CreateSameSite(kSite2);
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
SetPreconnect();
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("http://www.example.com");
request_info.network_isolation_key = kNetworkIsolationKey1;
request_info.network_anonymization_key = kNetworkAnonymizationKey1;
Initialize(request_info);
// Sets server support HTTP/2, using kNetworkIsolationKey.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, kNetworkAnonymizationKey1, true);
job_controller_->Preconnect(/*num_streams=*/5);
// Only one job is started.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT,
job_controller_->main_job()->job_type());
// There is only 1 connect even though multiple streams were requested.
EXPECT_EQ(
1, HttpStreamFactoryJobPeer::GetNumStreams(job_controller_->main_job()));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
// Now try using two different NetworkIsolationKeys, one empty, one not, and
// make sure that 5 sockets are preconnected with each one.
std::vector<std::unique_ptr<SequencedSocketData>> socket_data;
for (auto other_network_isolation_key :
{NetworkIsolationKey(), kNetworkIsolationKey2}) {
for (int i = 0; i < 5; ++i) {
socket_data.emplace_back(std::make_unique<SequencedSocketData>(
MockConnect(ASYNC, OK), base::span<const MockRead>(),
base::span<const MockWrite>()));
session_deps_.socket_factory->AddSocketDataProvider(
socket_data.back().get());
}
request_info.network_isolation_key = other_network_isolation_key;
request_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
other_network_isolation_key);
MockHttpStreamRequestDelegate request_delegate;
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &request_delegate, session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
job_controller_ptr->Preconnect(/*num_streams=*/5);
// Five jobs should be started.
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT,
job_controller_ptr->main_job()->job_type());
EXPECT_EQ(5, HttpStreamFactoryJobPeer::GetNumStreams(
job_controller_ptr->main_job()));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
}
TEST_P(HttpStreamFactoryJobControllerTest,
DoNotDelayMainJobIfHasAvailableSpdySession) {
SetNotDelayMainJobWithAvailableSpdySession();
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
// Put a SpdySession in the pool.
HostPortPair host_port_pair("www.google.com", 443);
SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
PRIVACY_MODE_DISABLED,
SpdySessionKey::IsProxySession::kFalse, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow);
std::ignore = CreateFakeSpdySession(session_->spdy_session_pool(), key);
// Handshake will fail asynchronously after mock data is unpaused.
MockQuicData quic_data(version_);
quic_data.AddRead(ASYNC, ERR_IO_PENDING); // Pause
quic_data.AddRead(ASYNC, ERR_FAILED);
quic_data.AddWrite(ASYNC, ERR_FAILED);
quic_data.AddSocketDataToFactory(session_deps_.socket_factory.get());
// Enable delayed TCP and set time delay for waiting job.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
ServerNetworkStats stats1;
stats1.srtt = base::Milliseconds(100);
session_->http_server_properties()->SetServerNetworkStats(
url::SchemeHostPort(GURL("https://www.google.com")),
NetworkAnonymizationKey(), stats1);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// This prevents handshake from immediately succeeding.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
EXPECT_TRUE(job_controller_->alternative_job());
// The main job shouldn't have any delay since request can be sent on
// available SPDY session. Main job should still be blocked as alt job has not
// succeeded or failed at least once yet.
EXPECT_EQ(job_controller_->get_main_job_wait_time_for_tests(),
base::TimeDelta());
EXPECT_FALSE(JobControllerPeer::main_job_is_blocked(job_controller_));
}
// Check the case that while a preconnect is waiting in the H2 request queue,
// and a SPDY session appears, the job completes successfully.
TEST_P(HttpStreamFactoryJobControllerTest, SpdySessionInterruptsPreconnect) {
// Make sure there is only one socket connect.
MockWrite writes[] = {MockWrite(SYNCHRONOUS, ERR_IO_PENDING, 0)};
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING, 1)};
tcp_data_ = std::make_unique<SequencedSocketData>(reads, writes);
// connect needs to be async, so the H2 session isn't created immediately.
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
ssl_data.next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(request_info);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
// Start a non-preconnect request.
std::unique_ptr<HttpStreamRequest> stream_request = job_controller_->Start(
&request_delegate_, nullptr /* websocket_handshake_create_helper */,
NetLogWithSource(), HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
// Create and start a preconnect request, which should start watching the
// SpdySessionPool.
MockHttpStreamRequestDelegate preconnect_request_delegate;
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &preconnect_request_delegate, session_.get(), &job_factory_,
request_info, true /* is_preconnect */, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_, std::move(job_controller));
job_controller_ptr->Preconnect(1);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
// The non-preconnect request should create an H2 session, which the
// preconnect then sees, and the preconnect request should complete and be
// torn down without ever requesting a socket. If it did request a socket, the
// test would fail since the mock socket factory would see an unexpected
// socket request.
base::RunLoop().RunUntilIdle();
stream_request.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
// Sanity check - make sure the SpdySession was created.
base::WeakPtr<SpdySession> spdy_session =
session_->spdy_session_pool()->FindAvailableSession(
SpdySessionKey(
HostPortPair::FromURL(request_info.url), ProxyServer::Direct(),
request_info.privacy_mode, SpdySessionKey::IsProxySession::kFalse,
request_info.socket_tag, request_info.network_anonymization_key,
request_info.secure_dns_policy),
false /* enable_ip_based_pooling */, false /* is_websocket */,
NetLogWithSource());
EXPECT_TRUE(spdy_session);
}
// This test verifies that a preconnect job doesn't block subsequent requests
// which can use an existing IP based pooled SpdySession.
// This test uses "wildcard.pem" to support IpBasedPooling for *.example.org,
// and starts 3 requests:
// [1] Normal non-preconnect request to www.example.org.
// [2] Preconnect request to other.example.org. The connection is paused until
// OnConnectComplete() is called in the end of the test.
// [3] Normal non-preconnect request to other.example.org. This request must
// succeed even while the preconnect request [2] is paused.
TEST_P(HttpStreamFactoryJobControllerTest,
PreconnectJobDoesntBlockIpBasedPooling) {
// Make sure that both "www.example.org" and "other.example.org" are pointing
// to the same IP address.
session_deps_.host_resolver->rules()->AddRule(
"www.example.org", IPAddress::IPv4Localhost().ToString());
session_deps_.host_resolver->rules()->AddRule(
"other.example.org", IPAddress::IPv4Localhost().ToString());
// Make |host_resolver| asynchronous to simulate the issue of
// crbug.com/1320608.
session_deps_.host_resolver->set_synchronous_mode(false);
// This is used for the non-preconnect requests [1] and [3].
MockWrite writes[] = {MockWrite(SYNCHRONOUS, ERR_IO_PENDING, 0)};
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING, 1)};
SequencedSocketData first_socket(reads, writes);
first_socket.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(&first_socket);
// This is used for the non-preconnect requests.
SSLSocketDataProvider ssl_data1(ASYNC, OK);
ssl_data1.next_proto = kProtoHTTP2;
// "wildcard.pem" supports "*.example.org".
ssl_data1.ssl_info.cert =
ImportCertFromFile(GetTestCertsDirectory(), "wildcard.pem");
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data1);
// This is used for the preconnect request.
SequencedSocketData second_socket;
// The connection is paused. And it will be completed with
// ERR_CONNECTION_FAILED.
second_socket.set_connect_data(MockConnect(ASYNC, ERR_IO_PENDING));
session_deps_.socket_factory->AddSocketDataProvider(&second_socket);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.org");
Initialize(request_info);
// Start a non-preconnect request [1].
{
std::unique_ptr<HttpStreamRequest> stream_request = job_controller_->Start(
&request_delegate_,
/*websocket_handshake_stream_create_helper=*/nullptr,
NetLogWithSource(), HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
if (dns_https_alpn_enabled()) {
EXPECT_CALL(*job_factory_.main_job(), Resume())
.Times(1)
.WillOnce([this]() { job_factory_.main_job()->DoResume(); });
}
base::RunLoop run_loop;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.WillOnce([&run_loop]() { run_loop.Quit(); });
run_loop.Run();
}
// Sanity check - make sure the SpdySession was created.
{
base::WeakPtr<SpdySession> spdy_session =
session_->spdy_session_pool()->FindAvailableSession(
SpdySessionKey(HostPortPair::FromURL(request_info.url),
ProxyServer::Direct(), request_info.privacy_mode,
SpdySessionKey::IsProxySession::kFalse,
request_info.socket_tag,
request_info.network_anonymization_key,
request_info.secure_dns_policy),
/*enable_ip_based_pooling=*/false, /*is_websocket=*/false,
NetLogWithSource());
EXPECT_TRUE(spdy_session);
}
HttpRequestInfo other_request_info;
other_request_info.method = "GET";
other_request_info.url = GURL("https://other.example.org");
// Create and start a preconnect request [2].
MockHttpStreamRequestDelegate preconnect_request_delegate;
auto preconnect_job_controller =
std::make_unique<HttpStreamFactory::JobController>(
factory_, &preconnect_request_delegate, session_.get(), &job_factory_,
other_request_info, /*is_preconnect=*/true,
/*is_websocket=*/false, /*enable_ip_based_pooling=*/true,
enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(),
SSLConfig());
auto* preconnect_job_controller_ptr = preconnect_job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(preconnect_job_controller));
preconnect_job_controller_ptr->Preconnect(1);
base::RunLoop().RunUntilIdle();
// The SpdySession is available for IP based pooling when the host resolution
// has finished.
{
const SpdySessionKey spdy_session_key = SpdySessionKey(
HostPortPair::FromURL(other_request_info.url), ProxyServer::Direct(),
other_request_info.privacy_mode, SpdySessionKey::IsProxySession::kFalse,
other_request_info.socket_tag,
other_request_info.network_anonymization_key,
other_request_info.secure_dns_policy);
EXPECT_FALSE(session_->spdy_session_pool()->FindAvailableSession(
spdy_session_key, /*enable_ip_based_pooling=*/false,
/*is_websocket=*/false, NetLogWithSource()));
EXPECT_TRUE(session_->spdy_session_pool()->FindAvailableSession(
spdy_session_key, /*enable_ip_based_pooling=*/true,
/*is_websocket=*/false, NetLogWithSource()));
}
// Create and start a second non-preconnect request [3].
{
MockHttpStreamRequestDelegate request_delegate;
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &request_delegate, session_.get(), &job_factory_,
other_request_info, /*is_preconnect=*/false,
/*is_websocket=*/false, /*enable_ip_based_pooling=*/true,
enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
std::unique_ptr<HttpStreamRequest> second_stream_request =
job_controller_ptr->Start(
&request_delegate,
/*websocket_handshake_stream_create_helper=*/nullptr,
NetLogWithSource(), HttpStreamRequest::HTTP_STREAM,
DEFAULT_PRIORITY);
base::RunLoop run_loop;
EXPECT_CALL(request_delegate, OnStreamReadyImpl(_, _, _))
.WillOnce([&run_loop]() { run_loop.Quit(); });
run_loop.Run();
second_stream_request.reset();
}
second_socket.socket()->OnConnectComplete(
MockConnect(SYNCHRONOUS, ERR_CONNECTION_FAILED));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
EXPECT_TRUE(first_socket.AllReadDataConsumed());
EXPECT_TRUE(first_socket.AllWriteDataConsumed());
}
class JobControllerLimitMultipleH2Requests
: public HttpStreamFactoryJobControllerTestBase {
protected:
JobControllerLimitMultipleH2Requests()
: HttpStreamFactoryJobControllerTestBase(false) {}
const int kNumRequests = 5;
void SetUp() override { SkipCreatingJobController(); }
};
TEST_F(JobControllerLimitMultipleH2Requests, MultipleRequests) {
// Make sure there is only one socket connect.
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
tcp_data_ =
std::make_unique<SequencedSocketData>(reads, base::span<MockWrite>());
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
ssl_data.next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(request_info);
SpdySessionPoolPeer pool_peer(session_->spdy_session_pool());
pool_peer.SetEnableSendingInitialData(false);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
std::vector<std::unique_ptr<MockHttpStreamRequestDelegate>> request_delegates;
std::vector<std::unique_ptr<HttpStreamRequest>> requests;
for (int i = 0; i < kNumRequests; ++i) {
request_delegates.emplace_back(
std::make_unique<MockHttpStreamRequestDelegate>());
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegates[i].get(), session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
auto request = job_controller_ptr->Start(
request_delegates[i].get(), nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
requests.push_back(std::move(request));
}
for (int i = 0; i < kNumRequests; ++i) {
EXPECT_CALL(*request_delegates[i].get(), OnStreamReadyImpl(_, _, _));
}
base::RunLoop().RunUntilIdle();
requests.clear();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
auto entries = net_log_observer_.GetEntries();
size_t log_position = 0;
for (int i = 0; i < kNumRequests - 1; ++i) {
log_position = ExpectLogContainsSomewhereAfter(
entries, log_position, NetLogEventType::HTTP_STREAM_JOB_THROTTLED,
NetLogEventPhase::NONE);
}
}
// Check that throttling simultaneous requests to a single H2 server respects
// NetworkIsolationKeys.
TEST_F(JobControllerLimitMultipleH2Requests,
MultipleRequestsNetworkIsolationKey) {
base::test::ScopedFeatureList feature_list;
feature_list.InitWithFeatures(
{// enabled_features
features::kPartitionHttpServerPropertiesByNetworkIsolationKey,
features::kPartitionConnectionsByNetworkIsolationKey},
// disabled_features
{});
// Need to re-create HttpServerProperties after enabling the field trial,
// since it caches the field trial value on construction.
session_deps_.http_server_properties =
std::make_unique<HttpServerProperties>();
const SchemefulSite kSite1(GURL("https://foo.test/"));
const NetworkIsolationKey kNetworkIsolationKey1(kSite1, kSite1);
const auto kNetworkAnonymizationKey1 =
NetworkAnonymizationKey::CreateSameSite(kSite1);
const SchemefulSite kSite2(GURL("https://bar.test/"));
const NetworkIsolationKey kNetworkIsolationKey2(kSite2, kSite2);
const auto kNetworkAnonymizationKey2 =
NetworkAnonymizationKey::CreateSameSite(kSite2);
tcp_data_ = std::make_unique<SequencedSocketData>(
MockConnect(SYNCHRONOUS, ERR_IO_PENDING), base::span<MockRead>(),
base::span<MockWrite>());
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(request_info);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, kNetworkAnonymizationKey1, true);
std::vector<std::unique_ptr<MockHttpStreamRequestDelegate>> request_delegates;
std::vector<std::unique_ptr<HttpStreamRequest>> requests;
std::vector<std::unique_ptr<SequencedSocketData>> socket_data;
for (int i = 0; i < kNumRequests; ++i) {
// Shouldn't matter whether requests are interleaved by NetworkIsolationKey
// or not.
for (const auto& network_isolation_key :
{NetworkIsolationKey(), kNetworkIsolationKey1,
kNetworkIsolationKey2}) {
request_info.network_isolation_key = network_isolation_key;
request_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
network_isolation_key);
// For kNetworkIsolationKey1, all requests but the first will be
// throttled.
if (i == 0 || network_isolation_key != kNetworkIsolationKey1) {
socket_data.emplace_back(std::make_unique<SequencedSocketData>(
MockConnect(ASYNC, OK), base::span<const MockRead>(),
base::span<const MockWrite>()));
session_deps_.socket_factory->AddSocketDataProvider(
socket_data.back().get());
}
request_delegates.emplace_back(
std::make_unique<MockHttpStreamRequestDelegate>());
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegates[i].get(), session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(),
SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
auto request = job_controller_ptr->Start(
request_delegates[i].get(), nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
requests.push_back(std::move(request));
}
}
TransportClientSocketPool* socket_pool =
reinterpret_cast<TransportClientSocketPool*>(session_->GetSocketPool(
HttpNetworkSession::NORMAL_SOCKET_POOL, ProxyServer::Direct()));
ClientSocketPool::GroupId group_id0(
url::SchemeHostPort(request_info.url), request_info.privacy_mode,
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow);
ClientSocketPool::GroupId group_id1(
url::SchemeHostPort(request_info.url), request_info.privacy_mode,
kNetworkAnonymizationKey1, SecureDnsPolicy::kAllow);
ClientSocketPool::GroupId group_id2(
url::SchemeHostPort(request_info.url), request_info.privacy_mode,
kNetworkAnonymizationKey2, SecureDnsPolicy::kAllow);
EXPECT_EQ(static_cast<uint32_t>(kNumRequests),
socket_pool->NumConnectJobsInGroupForTesting(group_id0));
EXPECT_EQ(1u, socket_pool->NumConnectJobsInGroupForTesting(group_id1));
EXPECT_EQ(static_cast<uint32_t>(kNumRequests),
socket_pool->NumConnectJobsInGroupForTesting(group_id2));
}
TEST_F(JobControllerLimitMultipleH2Requests, MultipleRequestsFirstRequestHang) {
// First socket connect hang.
SequencedSocketData hangdata;
hangdata.set_connect_data(MockConnect(SYNCHRONOUS, ERR_IO_PENDING));
session_deps_.socket_factory->AddSocketDataProvider(&hangdata);
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
std::list<SequencedSocketData> socket_data;
std::list<SSLSocketDataProvider> ssl_socket_data;
// kNumRequests - 1 will resume themselves after a delay. There will be
// kNumRequests - 1 sockets opened.
for (int i = 0; i < kNumRequests - 1; i++) {
// Only the first one needs a MockRead because subsequent sockets are
// not used to establish a SpdySession.
if (i == 0) {
socket_data.emplace_back(reads, base::span<MockWrite>());
} else {
socket_data.emplace_back();
}
socket_data.back().set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(&socket_data.back());
ssl_socket_data.emplace_back(ASYNC, OK);
ssl_socket_data.back().next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_socket_data.back());
}
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(request_info);
SpdySessionPoolPeer pool_peer(session_->spdy_session_pool());
pool_peer.SetEnableSendingInitialData(false);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
std::vector<std::unique_ptr<MockHttpStreamRequestDelegate>> request_delegates;
std::vector<std::unique_ptr<HttpStreamRequest>> requests;
for (int i = 0; i < kNumRequests; ++i) {
request_delegates.push_back(
std::make_unique<MockHttpStreamRequestDelegate>());
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegates[i].get(), session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
auto request = job_controller_ptr->Start(
request_delegates[i].get(), nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
requests.push_back(std::move(request));
}
for (int i = 0; i < kNumRequests; ++i) {
EXPECT_CALL(*request_delegates[i].get(), OnStreamReadyImpl(_, _, _));
}
EXPECT_GT(GetPendingMainThreadTaskCount(), 0u);
FastForwardBy(base::Milliseconds(HttpStreamFactory::Job::kHTTP2ThrottleMs));
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
requests.clear();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
EXPECT_TRUE(hangdata.AllReadDataConsumed());
for (const auto& data : socket_data) {
EXPECT_TRUE(data.AllReadDataConsumed());
EXPECT_TRUE(data.AllWriteDataConsumed());
}
}
TEST_F(JobControllerLimitMultipleH2Requests,
MultipleRequestsFirstRequestCanceled) {
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
SequencedSocketData first_socket(reads, base::span<MockWrite>());
first_socket.set_connect_data(MockConnect(ASYNC, OK));
SSLSocketDataProvider first_ssl_data(ASYNC, OK);
first_ssl_data.next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSocketDataProvider(&first_socket);
session_deps_.socket_factory->AddSSLSocketDataProvider(&first_ssl_data);
std::list<SequencedSocketData> socket_data;
std::list<SSLSocketDataProvider> ssl_socket_data;
// kNumRequests - 1 will be resumed when the first request is canceled.
for (int i = 0; i < kNumRequests - 1; i++) {
socket_data.emplace_back();
socket_data.back().set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(&socket_data.back());
ssl_socket_data.emplace_back(ASYNC, OK);
ssl_socket_data.back().next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_socket_data.back());
}
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(request_info);
SpdySessionPoolPeer pool_peer(session_->spdy_session_pool());
pool_peer.SetEnableSendingInitialData(false);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
std::vector<std::unique_ptr<MockHttpStreamRequestDelegate>> request_delegates;
std::vector<std::unique_ptr<HttpStreamRequest>> requests;
for (int i = 0; i < kNumRequests; ++i) {
request_delegates.emplace_back(
std::make_unique<MockHttpStreamRequestDelegate>());
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegates[i].get(), session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
auto request = job_controller_ptr->Start(
request_delegates[i].get(), nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
requests.push_back(std::move(request));
}
// Cancel the first one.
requests[0].reset();
for (int i = 1; i < kNumRequests; ++i) {
EXPECT_CALL(*request_delegates[i].get(), OnStreamReadyImpl(_, _, _));
}
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
requests.clear();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
EXPECT_TRUE(first_socket.AllReadDataConsumed());
for (const auto& data : socket_data) {
EXPECT_TRUE(data.AllReadDataConsumed());
EXPECT_TRUE(data.AllWriteDataConsumed());
}
}
TEST_F(JobControllerLimitMultipleH2Requests, MultiplePreconnects) {
// Make sure there is only one socket connect.
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
ssl_data.next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
SetPreconnect();
Initialize(request_info);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
std::vector<std::unique_ptr<MockHttpStreamRequestDelegate>> request_delegates;
for (int i = 0; i < kNumRequests; ++i) {
request_delegates.emplace_back(
std::make_unique<MockHttpStreamRequestDelegate>());
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegates[i].get(), session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
job_controller_ptr->Preconnect(1);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
}
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(JobControllerLimitMultipleH2Requests, H1NegotiatedForFirstRequest) {
// First socket is an HTTP/1.1 socket.
SequencedSocketData first_socket;
first_socket.set_connect_data(MockConnect(ASYNC, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSocketDataProvider(&first_socket);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
// Second socket is an HTTP/2 socket.
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
SequencedSocketData second_socket(reads, base::span<MockWrite>());
second_socket.set_connect_data(MockConnect(ASYNC, OK));
session_deps_.socket_factory->AddSocketDataProvider(&second_socket);
SSLSocketDataProvider second_ssl_data(ASYNC, OK);
second_ssl_data.next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(&second_ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.com");
Initialize(request_info);
SpdySessionPoolPeer pool_peer(session_->spdy_session_pool());
pool_peer.SetEnableSendingInitialData(false);
// Sets server support HTTP/2.
url::SchemeHostPort server(request_info.url);
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
std::vector<std::unique_ptr<MockHttpStreamRequestDelegate>> request_delegates;
std::vector<std::unique_ptr<HttpStreamRequest>> requests;
for (int i = 0; i < 2; ++i) {
request_delegates.emplace_back(
std::make_unique<MockHttpStreamRequestDelegate>());
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegates[i].get(), session_.get(), &job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
auto request = job_controller_ptr->Start(
request_delegates[i].get(), nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_FALSE(job_controller_ptr->alternative_job());
requests.push_back(std::move(request));
}
for (int i = 0; i < 2; ++i) {
EXPECT_CALL(*request_delegates[i].get(), OnStreamReadyImpl(_, _, _));
}
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
requests.clear();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
EXPECT_TRUE(first_socket.AllReadDataConsumed());
EXPECT_FALSE(second_socket.AllReadDataConsumed());
}
// Tests that HTTP/2 throttling logic only applies to non-QUIC jobs.
TEST_F(JobControllerLimitMultipleH2Requests, QuicJobNotThrottled) {
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
MockRead reads[] = {MockRead(SYNCHRONOUS, ERR_IO_PENDING)};
tcp_data_ =
std::make_unique<SequencedSocketData>(reads, base::span<MockWrite>());
tcp_data_->set_connect_data(MockConnect(ASYNC, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
ssl_data.next_proto = kProtoHTTP2;
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
SpdySessionPoolPeer pool_peer(session_->spdy_session_pool());
pool_peer.SetEnableSendingInitialData(false);
url::SchemeHostPort server(request_info.url);
// Sets server supports QUIC.
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// Sets server support HTTP/2.
session_->http_server_properties()->SetSupportsSpdy(
server, NetworkAnonymizationKey(), true);
// Use default job factory so that Resume() is not mocked out.
HttpStreamFactory::JobFactory default_job_factory;
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &request_delegate_, session_.get(), &default_job_factory,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
auto* job_controller_ptr = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_, std::move(job_controller));
request_ = job_controller_ptr->Start(
&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_ptr->main_job());
EXPECT_TRUE(job_controller_ptr->alternative_job());
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
auto entries = net_log_observer_.GetEntries();
for (const auto& entry : entries) {
ASSERT_NE(NetLogEventType::HTTP_STREAM_JOB_THROTTLED, entry.type);
}
}
class HttpStreamFactoryJobControllerMisdirectedRequestRetry
: public HttpStreamFactoryJobControllerTestBase,
public ::testing::WithParamInterface<::testing::tuple<bool, bool>> {
public:
HttpStreamFactoryJobControllerMisdirectedRequestRetry()
: HttpStreamFactoryJobControllerTestBase(false) {}
};
INSTANTIATE_TEST_SUITE_P(
All,
HttpStreamFactoryJobControllerMisdirectedRequestRetry,
::testing::Combine(::testing::Bool(), ::testing::Bool()));
TEST_P(HttpStreamFactoryJobControllerMisdirectedRequestRetry,
DisableIPBasedPoolingAndAlternativeServices) {
const bool enable_ip_based_pooling = ::testing::get<0>(GetParam());
const bool enable_alternative_services = ::testing::get<1>(GetParam());
if (enable_alternative_services) {
quic_data_ = std::make_unique<MockQuicData>(version_);
quic_data_->AddConnect(SYNCHRONOUS, OK);
quic_data_->AddWrite(SYNCHRONOUS,
client_maker_.MakeInitialSettingsPacket(1));
quic_data_->AddRead(ASYNC, ERR_CONNECTION_CLOSED);
}
tcp_data_ = std::make_unique<SequencedSocketData>();
tcp_data_->set_connect_data(MockConnect(SYNCHRONOUS, OK));
SSLSocketDataProvider ssl_data(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(&ssl_data);
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
if (!enable_ip_based_pooling)
DisableIPBasedPooling();
if (!enable_alternative_services)
DisableAlternativeServices();
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
request_ =
job_controller_->Start(&request_delegate_, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
EXPECT_TRUE(job_controller_->main_job());
if (enable_alternative_services) {
EXPECT_TRUE(job_controller_->alternative_job());
} else {
EXPECT_FALSE(job_controller_->alternative_job());
}
// |main_job| succeeds and should report status to Request.
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _));
base::RunLoop().RunUntilIdle();
}
class HttpStreamFactoryJobControllerPreconnectTest
: public HttpStreamFactoryJobControllerTestBase,
public ::testing::WithParamInterface<bool> {
protected:
HttpStreamFactoryJobControllerPreconnectTest()
: HttpStreamFactoryJobControllerTestBase(false) {}
void SetUp() override {
if (!GetParam()) {
scoped_feature_list_.InitFromCommandLine(std::string(),
"LimitEarlyPreconnects");
}
}
void Initialize() {
session_deps_.http_server_properties =
std::make_unique<HttpServerProperties>(
std::make_unique<MockPrefDelegate>(), nullptr /* net_log */);
session_ = SpdySessionDependencies::SpdyCreateSession(&session_deps_);
factory_ = session_->http_stream_factory();
request_info_.method = "GET";
request_info_.url = GURL("https://www.example.com");
auto job_controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, &request_delegate_, session_.get(), &job_factory_,
request_info_, /* is_preconnect = */ true,
/* is_websocket = */ false,
/* enable_ip_based_pooling = */ true,
/* enable_alternative_services = */ true,
/* delay_main_job_with_available_spdy_session = */ true, SSLConfig(),
SSLConfig());
job_controller_ = job_controller.get();
HttpStreamFactoryPeer::AddJobController(factory_,
std::move(job_controller));
}
protected:
void Preconnect(int num_streams) {
job_controller_->Preconnect(num_streams);
// Only one job is started.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
HttpRequestInfo request_info_;
};
INSTANTIATE_TEST_SUITE_P(
All,
HttpStreamFactoryJobControllerPreconnectTest,
::testing::Bool());
TEST_P(HttpStreamFactoryJobControllerPreconnectTest, LimitEarlyPreconnects) {
std::list<SequencedSocketData> providers;
std::list<SSLSocketDataProvider> ssl_providers;
const int kNumPreconects = 5;
MockRead reads[] = {MockRead(ASYNC, OK)};
// If experiment is not enabled, there are 5 socket connects.
const size_t actual_num_connects = GetParam() ? 1 : kNumPreconects;
for (size_t i = 0; i < actual_num_connects; ++i) {
providers.emplace_back(reads, base::span<MockWrite>());
session_deps_.socket_factory->AddSocketDataProvider(&providers.back());
ssl_providers.emplace_back(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(
&ssl_providers.back());
}
Initialize();
Preconnect(kNumPreconects);
// If experiment is enabled, only 1 stream is requested.
EXPECT_EQ((int)actual_num_connects, HttpStreamFactoryJobPeer::GetNumStreams(
job_controller_->main_job()));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
// Test that GetAlternativeServiceInfoFor will include a list of advertised
// versions, which contains a version that is supported. Returns an empty list
// if advertised versions are missing in HttpServerProperties.
TEST_P(HttpStreamFactoryJobControllerTest, GetAlternativeServiceInfoFor) {
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
base::Time expiration = base::Time::Now() + base::Days(1);
// Set alternative service with no advertised version.
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
quic::ParsedQuicVersionVector());
AlternativeServiceInfo alt_svc_info =
JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
// Verify that JobController get an empty list of supported QUIC versions.
EXPECT_TRUE(alt_svc_info.advertised_versions().empty());
// Set alternative service for the same server with the same list of versions
// that is supported.
quic::ParsedQuicVersionVector supported_versions =
quic_context_.params()->supported_versions;
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
supported_versions);
alt_svc_info = JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
std::sort(
supported_versions.begin(), supported_versions.end(),
[](const quic::ParsedQuicVersion& a, const quic::ParsedQuicVersion& b) {
return a.transport_version < b.transport_version;
});
quic::ParsedQuicVersionVector advertised_versions =
alt_svc_info.advertised_versions();
std::sort(
advertised_versions.begin(), advertised_versions.end(),
[](const quic::ParsedQuicVersion& a, const quic::ParsedQuicVersion& b) {
return a.transport_version < b.transport_version;
});
EXPECT_EQ(supported_versions, advertised_versions);
quic::ParsedQuicVersion unsupported_version_1 =
quic::ParsedQuicVersion::Unsupported();
quic::ParsedQuicVersion unsupported_version_2 =
quic::ParsedQuicVersion::Unsupported();
for (const quic::ParsedQuicVersion& version : quic::AllSupportedVersions()) {
if (base::Contains(supported_versions, version))
continue;
if (unsupported_version_1 == quic::ParsedQuicVersion::Unsupported()) {
unsupported_version_1 = version;
continue;
}
unsupported_version_2 = version;
break;
}
// Set alternative service for the same server with two QUIC versions:
// - one unsupported version: |unsupported_version_1|,
// - one supported version:
// quic_context_.params()->supported_versions[0].
quic::ParsedQuicVersionVector mixed_quic_versions = {
unsupported_version_1, quic_context_.params()->supported_versions[0]};
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
mixed_quic_versions);
alt_svc_info = JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
EXPECT_EQ(2u, alt_svc_info.advertised_versions().size());
// Verify that JobController returns the list of versions specified in set.
EXPECT_EQ(mixed_quic_versions, alt_svc_info.advertised_versions());
// Set alternative service for the same server with two unsupported QUIC
// versions: |unsupported_version_1|, |unsupported_version_2|.
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(), alternative_service, expiration,
{unsupported_version_1, unsupported_version_2});
alt_svc_info = JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
// Verify that JobController returns no valid alternative service.
EXPECT_EQ(kProtoUnknown, alt_svc_info.alternative_service().protocol);
EXPECT_EQ(0u, alt_svc_info.advertised_versions().size());
}
void HttpStreamFactoryJobControllerTestBase::TestAltSvcVersionSelection(
const std::string& alt_svc_header,
const quic::ParsedQuicVersion& expected_version,
const quic::ParsedQuicVersionVector& supported_versions) {
quic_context_.params()->supported_versions = supported_versions;
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://example.com");
NetworkIsolationKey network_isolation_key(
SchemefulSite(GURL("https://example.com")),
SchemefulSite(GURL("https://example.com")));
auto network_anonymization_key = NetworkAnonymizationKey::CreateSameSite(
SchemefulSite(GURL("https://example.com")));
request_info.network_isolation_key = network_isolation_key;
request_info.network_anonymization_key = network_anonymization_key;
Initialize(request_info);
url::SchemeHostPort origin(request_info.url);
auto headers = base::MakeRefCounted<HttpResponseHeaders>("");
headers->AddHeader("alt-svc", alt_svc_header);
session_->http_stream_factory()->ProcessAlternativeServices(
session_.get(), network_anonymization_key, headers.get(), origin);
AlternativeServiceInfo alt_svc_info =
JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
quic::ParsedQuicVersionVector advertised_versions =
alt_svc_info.advertised_versions();
quic::ParsedQuicVersion selected_version =
JobControllerPeer::SelectQuicVersion(job_controller_,
advertised_versions);
EXPECT_EQ(expected_version, selected_version)
<< alt_svc_info.ToString() << " "
<< quic::ParsedQuicVersionVectorToString(advertised_versions);
}
TEST_P(HttpStreamFactoryJobControllerTest,
AltSvcVersionSelectionFindsFirstMatch) {
TestAltSvcVersionSelection(
"h3-Q050=\":443\"; ma=2592000,"
"h3-Q049=\":443\"; ma=2592000,"
"h3-Q048=\":443\"; ma=2592000,"
"h3-Q046=\":443\"; ma=2592000,",
quic::ParsedQuicVersion::Q050(), quic::AllSupportedVersions());
}
TEST_P(HttpStreamFactoryJobControllerTest,
AltSvcVersionSelectionFindsFirstMatchInverse) {
TestAltSvcVersionSelection(
"h3-Q046=\":443\"; ma=2592000,"
"h3-Q048=\":443\"; ma=2592000,"
"h3-Q049=\":443\"; ma=2592000,",
quic::ParsedQuicVersion::Q046(), quic::AllSupportedVersions());
}
TEST_P(HttpStreamFactoryJobControllerTest,
AltSvcVersionSelectionWithInverseOrderingNewFormat) {
// Server prefers Q046 but client prefers Q050.
TestAltSvcVersionSelection(
"h3-Q046=\":443\"; ma=2592000,"
"h3-Q050=\":443\"; ma=2592000",
quic::ParsedQuicVersion::Q046(),
quic::ParsedQuicVersionVector{quic::ParsedQuicVersion::Q050(),
quic::ParsedQuicVersion::Q046()});
}
// Tests that if HttpNetworkSession has a non-empty QUIC host allowlist,
// then GetAlternativeServiceFor() will not return any QUIC alternative service
// that's not on the allowlist.
TEST_P(HttpStreamFactoryJobControllerTest, QuicHostAllowlist) {
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.google.com");
Initialize(request_info);
// Set HttpNetworkSession's QUIC host allowlist to only have www.example.com
HttpNetworkSessionPeer session_peer(session_.get());
session_peer.params()->quic_host_allowlist.insert("www.example.com");
quic_context_.params()->allow_remote_alt_svc = true;
// Set alternative service for www.google.com to be www.example.com over QUIC.
url::SchemeHostPort server(request_info.url);
base::Time expiration = base::Time::Now() + base::Days(1);
quic::ParsedQuicVersionVector supported_versions =
quic_context_.params()->supported_versions;
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(),
AlternativeService(kProtoQUIC, "www.example.com", 443), expiration,
supported_versions);
AlternativeServiceInfo alt_svc_info =
JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
std::sort(
supported_versions.begin(), supported_versions.end(),
[](const quic::ParsedQuicVersion& a, const quic::ParsedQuicVersion& b) {
return a.transport_version < b.transport_version;
});
quic::ParsedQuicVersionVector advertised_versions =
alt_svc_info.advertised_versions();
std::sort(
advertised_versions.begin(), advertised_versions.end(),
[](const quic::ParsedQuicVersion& a, const quic::ParsedQuicVersion& b) {
return a.transport_version < b.transport_version;
});
EXPECT_EQ(kProtoQUIC, alt_svc_info.alternative_service().protocol);
EXPECT_EQ(supported_versions, advertised_versions);
session_->http_server_properties()->SetQuicAlternativeService(
server, NetworkAnonymizationKey(),
AlternativeService(kProtoQUIC, "www.example.org", 443), expiration,
supported_versions);
alt_svc_info = JobControllerPeer::GetAlternativeServiceInfoFor(
job_controller_, request_info, &request_delegate_,
HttpStreamRequest::HTTP_STREAM);
EXPECT_EQ(kProtoUnknown, alt_svc_info.alternative_service().protocol);
EXPECT_EQ(0u, alt_svc_info.advertised_versions().size());
}
// Tests specific to UseDnsHttpsAlpn feature.
class HttpStreamFactoryJobControllerDnsHttpsAlpnTest
: public HttpStreamFactoryJobControllerTestBase {
protected:
explicit HttpStreamFactoryJobControllerDnsHttpsAlpnTest(
std::vector<base::test::FeatureRef> enabled_features = {})
: HttpStreamFactoryJobControllerTestBase(true,
std::move(enabled_features)) {}
void SetUp() override { SkipCreatingJobController(); }
void EnableOndemandHostResolver() {
session_deps_.host_resolver->set_synchronous_mode(false);
session_deps_.host_resolver->set_ondemand_mode(true);
}
HttpRequestInfo CreateTestHttpRequestInfo() {
HttpRequestInfo request_info;
request_info.method = "GET";
request_info.url = GURL("https://www.example.org");
return request_info;
}
void RegisterMockHttpsRecord() {
HostResolverEndpointResult endpoint_result1;
endpoint_result1.ip_endpoints = {IPEndPoint(IPAddress::IPv4Localhost(), 0)};
endpoint_result1.metadata.supported_protocol_alpns = {
quic::AlpnForVersion(version_)};
HostResolverEndpointResult endpoint_result2;
endpoint_result2.ip_endpoints = {IPEndPoint(IPAddress::IPv4Localhost(), 0)};
std::vector<HostResolverEndpointResult> endpoints;
endpoints.push_back(endpoint_result1);
endpoints.push_back(endpoint_result2);
session_deps_.host_resolver->rules()->AddRule(
"www.example.org",
MockHostResolverBase::RuleResolver::RuleResult(
std::move(endpoints),
/*aliases=*/std::set<std::string>{"www.example.org"}));
}
void CreateJobController(const HttpRequestInfo& request_info) {
CreateJobControllerImpl(&job_controller_, &request_delegate_, request_info);
}
std::unique_ptr<HttpStreamRequest> CreateJobControllerAndStart(
const HttpRequestInfo& request_info) {
return CreateJobControllerAndStartImpl(&job_controller_, &request_delegate_,
request_info);
}
std::unique_ptr<HttpStreamRequest> CreateSecondJobControllerAndStart(
const HttpRequestInfo& request_info) {
return CreateJobControllerAndStartImpl(&job_controller2_,
&request_delegate2_, request_info);
}
void PrepareForMainJob() { PrepareForMainJobImpl(&tcp_data_, &ssl_data_); }
void PrepareForSecondMainJob() {
PrepareForMainJobImpl(&tcp_data2_, &ssl_data2_);
}
void PrepareForFirstQuicJob() { PrepareForQuicJobImpl(&quic_data_); }
void PrepareForSecondQuicJob() { PrepareForQuicJobImpl(&quic_data2_); }
void PrepareForFirstQuicJobFailure() {
PrepareForQuicJobFailureImpl(&quic_data_);
}
void PrepareForSecondQuicJobFailure() {
PrepareForQuicJobFailureImpl(&quic_data2_);
}
void MakeMainJobSucceed(bool expect_stream_ready) {
MakeMainJobSucceedImpl(request_delegate_, tcp_data_.get(),
expect_stream_ready);
}
void MakeSecondMainJobSucceed(bool expect_stream_ready) {
MakeMainJobSucceedImpl(request_delegate2_, tcp_data2_.get(),
expect_stream_ready);
}
void MakeQuicJobSucceed(size_t index, bool expect_stream_ready) {
base::RunLoop().RunUntilIdle();
ASSERT_GT(crypto_client_stream_factory_.streams().size(), index);
MockCryptoClientStream* stream =
crypto_client_stream_factory_.streams()[index].get();
ASSERT_TRUE(stream);
if (expect_stream_ready) {
base::RunLoop run_loop;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
stream->NotifySessionOneRttKeyAvailable();
run_loop.Run();
} else {
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _)).Times(0);
stream->NotifySessionOneRttKeyAvailable();
base::RunLoop().RunUntilIdle();
}
}
void CheckJobsStatus(bool main_job_exists,
bool alternative_job_exists,
bool dns_alpn_h3_job_exists,
const std::string& scoped_trace_message = "") {
CheckJobsStatusImpl(job_controller_.get(), main_job_exists,
alternative_job_exists, dns_alpn_h3_job_exists,
scoped_trace_message);
}
void CheckSecondJobsStatus(bool main_job_exists,
bool alternative_job_exists,
bool dns_alpn_h3_job_exists,
const std::string& scoped_trace_message = "") {
CheckJobsStatusImpl(job_controller2_.get(), main_job_exists,
alternative_job_exists, dns_alpn_h3_job_exists,
scoped_trace_message);
}
std::unique_ptr<QuicHttpStream> ConnectQuicHttpStream(
bool alt_destination,
bool require_dns_https_alpn) {
NetErrorDetails net_error_details;
QuicStreamRequest quic_request(session_->quic_stream_factory());
url::SchemeHostPort scheme_host_port(
url::kHttpsScheme,
alt_destination ? "alt.example.org" : "www.example.org", 443);
absl::optional<int> quic_request_result;
CHECK_EQ(ERR_IO_PENDING,
quic_request.Request(
scheme_host_port,
require_dns_https_alpn ? quic::ParsedQuicVersion::Unsupported()
: version_,
PRIVACY_MODE_DISABLED, DEFAULT_PRIORITY, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow,
/*use_dns_aliases=*/true, require_dns_https_alpn,
/*cert_verify_flags=*/0, GURL("https://www.example.org/"),
net_log_with_source_, &net_error_details,
base::BindLambdaForTesting([&](int result) {}),
base::BindLambdaForTesting([&quic_request_result](int result) {
quic_request_result = result;
})));
base::RunLoop().RunUntilIdle();
CHECK_EQ(1u, crypto_client_stream_factory_.streams().size());
CHECK(crypto_client_stream_factory_.streams()[0]);
crypto_client_stream_factory_.streams()[0]
->NotifySessionOneRttKeyAvailable();
base::RunLoop().RunUntilIdle();
CHECK(quic_request_result);
CHECK_EQ(OK, *quic_request_result);
std::unique_ptr<QuicChromiumClientSession::Handle> session =
quic_request.ReleaseSessionHandle();
std::set<std::string> dns_aliases =
session->GetDnsAliasesForSessionKey(quic_request.session_key());
auto stream = std::make_unique<QuicHttpStream>(std::move(session),
std::move(dns_aliases));
return stream;
}
bool IsAlternativeServiceBroken(GURL& url) {
return session_->http_server_properties()->IsAlternativeServiceBroken(
AlternativeService(kProtoQUIC, HostPortPair::FromURL(url)),
NetworkAnonymizationKey());
}
raw_ptr<HttpStreamFactory::JobController> job_controller2_ = nullptr;
MockHttpStreamRequestDelegate request_delegate2_;
private:
QuicTestPacketMaker CreateQuicTestPacketMakerForClient() {
return QuicTestPacketMaker(version_,
quic::QuicUtils::CreateRandomConnectionId(
quic_context_.random_generator()),
quic_context_.clock(), "www.example.org",
quic::Perspective::IS_CLIENT, false);
}
void CreateJobControllerImpl(
raw_ptr<HttpStreamFactory::JobController>* job_controller,
MockHttpStreamRequestDelegate* request_delegate,
const HttpRequestInfo& request_info) {
auto controller = std::make_unique<HttpStreamFactory::JobController>(
factory_, request_delegate, session_.get(), &default_job_factory_,
request_info, is_preconnect_, false /* is_websocket */,
enable_ip_based_pooling_, enable_alternative_services_,
delay_main_job_with_available_spdy_session_, SSLConfig(), SSLConfig());
*job_controller = controller.get();
HttpStreamFactoryPeer::AddJobController(factory_, std::move(controller));
}
std::unique_ptr<HttpStreamRequest> CreateJobControllerAndStartImpl(
raw_ptr<HttpStreamFactory::JobController>* job_controller,
MockHttpStreamRequestDelegate* request_delegate,
const HttpRequestInfo& request_info) {
CreateJobControllerImpl(job_controller, request_delegate, request_info);
return (*job_controller)
->Start(request_delegate, nullptr, net_log_with_source_,
HttpStreamRequest::HTTP_STREAM, DEFAULT_PRIORITY);
}
void PrepareForMainJobImpl(std::unique_ptr<SequencedSocketData>* tcp_data,
std::unique_ptr<SSLSocketDataProvider>* ssl_data) {
*tcp_data = std::make_unique<SequencedSocketData>();
(*tcp_data)->set_connect_data(
MockConnect(ASYNC, ERR_IO_PENDING)); /* pause */
(*ssl_data) = std::make_unique<SSLSocketDataProvider>(ASYNC, OK);
session_deps_.socket_factory->AddSSLSocketDataProvider(ssl_data->get());
}
void PrepareForQuicJobImpl(std::unique_ptr<MockQuicData>* quic_data) {
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
*quic_data = std::make_unique<MockQuicData>(version_);
(*quic_data)->AddRead(SYNCHRONOUS, ERR_IO_PENDING);
(*quic_data)
->AddWrite(
SYNCHRONOUS,
CreateQuicTestPacketMakerForClient().MakeInitialSettingsPacket(1));
}
void PrepareForQuicJobFailureImpl(std::unique_ptr<MockQuicData>* quic_data) {
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
*quic_data = std::make_unique<MockQuicData>(version_);
(*quic_data)->AddRead(ASYNC, ERR_IO_PENDING); // Pause
(*quic_data)->AddRead(ASYNC, ERR_FAILED);
}
void MakeMainJobSucceedImpl(MockHttpStreamRequestDelegate& request_delegate,
SequencedSocketData* tcp_data,
bool expect_stream_ready) {
if (expect_stream_ready) {
base::RunLoop run_loop;
EXPECT_CALL(request_delegate, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
tcp_data->socket()->OnConnectComplete(MockConnect());
run_loop.Run();
} else {
EXPECT_CALL(request_delegate, OnStreamReadyImpl(_, _, _)).Times(0);
tcp_data->socket()->OnConnectComplete(MockConnect());
base::RunLoop().RunUntilIdle();
}
}
static void CheckJobsStatusImpl(
HttpStreamFactory::JobController* job_controller,
bool main_job_exists,
bool alternative_job_exists,
bool dns_alpn_h3_job_exists,
const std::string& scoped_trace_message) {
SCOPED_TRACE(scoped_trace_message);
EXPECT_EQ(main_job_exists, !!job_controller->main_job());
EXPECT_EQ(alternative_job_exists, !!job_controller->alternative_job());
EXPECT_EQ(dns_alpn_h3_job_exists, !!job_controller->dns_alpn_h3_job());
}
// Use real Jobs so that Job::Resume() is not mocked out. When main job is
// resumed it will use mock socket data.
HttpStreamFactory::JobFactory default_job_factory_;
// Used for man job connection.
std::unique_ptr<SSLSocketDataProvider> ssl_data_;
std::unique_ptr<SSLSocketDataProvider> ssl_data2_;
};
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
NoHttpsRecordSyncHostResolve) {
PrepareForMainJob();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// The main job should be synchronously resumed, as host is resolved
// synchronously.
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
base::RunLoop().RunUntilIdle();
// |dns_alpn_h3_job| must fail when there is no valid supported alpn. And
// must be deleted.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false,
"DNS ALPN job must be deleted.");
base::HistogramTester histogram_tester;
MakeMainJobSucceed(/*expect_stream_ready=*/true);
// Net.AlternateProtocolUsage records
// ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON, when only main job exists.
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON,
1);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
NoHttpsRecordAsyncHostResolveResumeMainWithoutDelay) {
EnableOndemandHostResolver();
PrepareForMainJob();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// The main job should be resumed quickly after resolving the host.
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
// Resolve the host resolve request from |dns_alpn_h3_job|.
session_deps_.host_resolver->ResolveAllPending();
base::RunLoop().RunUntilIdle();
// |dns_alpn_h3_job| must fail when there is no valid supported alpn. And
// must be deleted.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false,
"DNS ALPN job must be deleted.");
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
// The host resolve request from the main job must be resolved using the
// cached result.
EXPECT_TRUE(tcp_data_->socket());
base::HistogramTester histogram_tester;
MakeMainJobSucceed(/*expect_stream_ready=*/true);
// Net.AlternateProtocolUsage records
// ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON, when only main job exists.
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON,
1);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
NoHttpsRecordAsyncHostResolveResumeMainWithoutDelayQuicWorkedNetwork) {
EnableOndemandHostResolver();
PrepareForMainJob();
Initialize(HttpRequestInfo());
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// Main job must be waiting.
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
// Resolve the host resolve request from |dns_alpn_h3_job|.
session_deps_.host_resolver->ResolveAllPending();
base::RunLoop().RunUntilIdle();
// |dns_alpn_h3_job| must fail when there is no valid supported alpn. And
// must be deleted.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false,
"DNS ALPN job must be deleted.");
// The main job should be resumed quickly after resolving the host.
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
// The host resolve request from the main job must be resolved using the
// cached result.
EXPECT_TRUE(tcp_data_->socket());
base::HistogramTester histogram_tester;
MakeMainJobSucceed(/*expect_stream_ready=*/true);
// Net.AlternateProtocolUsage records
// ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON, when only main job exists.
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON,
1);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
MainJobNoDelayOnQuicNotWorkedNetworkSyncHostResolve) {
PrepareForMainJob();
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// `dns_alpn_h3_job` should not be waiting for dns host
// resolution as that was resolved synchronously.
EXPECT_FALSE(job_controller_->dns_alpn_h3_job()
->expect_on_quic_host_resolution_for_tests());
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_RACE, 1);
// The success of |dns_alpn_h3_job| deletes |main_job|.
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Main job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
MainJobNoDelayOnQuicNotWorkedNetworkAsyncHostResolve) {
EnableOndemandHostResolver();
PrepareForMainJob();
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// |main_job| is blocked until host resolves.
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
// Resolve the host resolve request from |dns_alpn_h3_job|.
session_deps_.host_resolver->ResolveAllPending();
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
base::RunLoop().RunUntilIdle();
// |main_job| should have been resumed quickly because
// |is_quic_known_to_work_on_current_network| is false for this test.
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
// |dns_alpn_h3_job| must not fail when there is a valid supported alpn.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Both main job and DNS ALPN job must be alive");
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_RACE, 1);
// The success of |dns_alpn_h3_job| deletes |main_job|.
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Main job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
MainJobDelayOnQuicWorkedNetwork) {
PrepareForMainJob();
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
base::RunLoop().RunUntilIdle();
// |dns_alpn_h3_job| must not fail when there is a valid supported alpn.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Both main job and DNS ALPN job must be alive");
// The main job should be waiting until kDefaultDelayMilliSecsForWaitingJob
// amount of time has passed.
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(kDefaultDelayMilliSecsForWaitingJob - 1));
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(1));
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_RACE, 1);
// The success of |dns_alpn_h3_job| deletes |main_job|.
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Main job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
MainJobSucceedsDnsAlpnH3JobSucceeds) {
PrepareForMainJob();
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
base::RunLoop().RunUntilIdle();
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// |main_job| is not blocked, because the hostname is resolved synchronously
// and |is_quic_known_to_work_on_current_network| is false for this test.
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
base::HistogramTester histogram_tester;
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_MAIN_JOB_WON_RACE,
1);
// The success of |main_job| doesn't delete |dns_alpn_h3_job|.
EXPECT_TRUE(job_controller_->dns_alpn_h3_job());
// Make |dns_alpn_h3_job| complete.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
ActiveSessionAvailableForMainJob) {
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
// Set |is_quic_known_to_work_on_current_network| flag so that
// the delaying logic of main job would work when the main job is blocked.
// Note: In this test, we don't need this because the main job is not blocked.
// But we set here because we want to check that the main job is not blocked.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
// Put a SpdySession in the pool.
SpdySessionKey key(HostPortPair::FromURL(request_info.url),
ProxyServer::Direct(), PRIVACY_MODE_DISABLED,
SpdySessionKey::IsProxySession::kFalse, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow);
std::ignore = CreateFakeSpdySession(session_->spdy_session_pool(), key);
request_ = CreateJobControllerAndStart(request_info);
// |dns_alpn_h3_job| must be created even when an active session is
// available for |main_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
// Main job must not be waiting because an active session is available.
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
base::HistogramTester histogram_tester;
// Run the message loop to make |main_job| succeed and status will be
// reported to Request.
{
base::RunLoop run_loop;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
run_loop.Run();
}
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_MAIN_JOB_WON_RACE,
1);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"DNS ALPN job must be alive");
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false,
"DNS ALPN job must be deleted");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest, MainJobHasActiveSocket) {
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
PrepareForMainJob();
PrepareForSecondMainJob();
PrepareForFirstQuicJobFailure();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
// Set |is_quic_known_to_work_on_current_network| flag so that
// the delaying logic of main job would work when the main job is blocked.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
request_ = CreateJobControllerAndStart(request_info);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(kDefaultDelayMilliSecsForWaitingJob - 1));
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(1));
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
auto request2 = CreateSecondJobControllerAndStart(request_info);
CheckSecondJobsStatus(
/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created for the second request.");
// When an active socket is available for the main job, the main job should
// not be blocked.
EXPECT_FALSE(job_controller2_->main_job()->is_waiting());
quic_data_->Resume();
base::RunLoop().RunUntilIdle();
MakeMainJobSucceed(/*expect_stream_ready=*/true);
MakeSecondMainJobSucceed(/*expect_stream_ready=*/true);
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
MainJobHasActiveSocketAltSvcRegistered) {
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
PrepareForMainJob();
PrepareForSecondMainJob();
PrepareForFirstQuicJobFailure();
PrepareForSecondQuicJobFailure();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
// Set |is_quic_known_to_work_on_current_network| flag so that
// the delaying logic of main job would work when the main job is blocked.
QuicStreamFactory* quic_stream_factory = session_->quic_stream_factory();
quic_stream_factory->set_is_quic_known_to_work_on_current_network(true);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, "alt.example.org", 443);
SetAlternativeService(request_info, alternative_service);
request_ = CreateJobControllerAndStart(request_info);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true,
"All types of jobs are created");
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(kDefaultDelayMilliSecsForWaitingJob - 1));
EXPECT_TRUE(job_controller_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(1));
EXPECT_FALSE(job_controller_->main_job()->is_waiting());
auto request2 = CreateSecondJobControllerAndStart(request_info);
CheckSecondJobsStatus(
/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true,
"All types of jobs must be created for the second request.");
// The main job should be waiting until kDefaultDelayMilliSecsForWaitingJob
// amount of time has passed, when an alternative service was registered,
// even when an active socket is available for the main job.
// This is intended to switch to QUIC from TCP for the first connection
// when the server supports Alt-Svc but doesn't support HTTP DNS records with
// alpn.
// Note: When QuicParams.delay_main_job_with_available_spdy_session is false,
// main job is not blocked.
EXPECT_TRUE(job_controller2_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(kDefaultDelayMilliSecsForWaitingJob - 1));
EXPECT_TRUE(job_controller2_->main_job()->is_waiting());
FastForwardBy(base::Milliseconds(1));
EXPECT_FALSE(job_controller2_->main_job()->is_waiting());
quic_data_->Resume();
quic_data2_->Resume();
base::RunLoop().RunUntilIdle();
MakeMainJobSucceed(/*expect_stream_ready=*/true);
MakeSecondMainJobSucceed(/*expect_stream_ready=*/true);
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
ActiveSessionAvailableForAltSvcJob) {
PrepareForMainJob();
RegisterMockHttpsRecord();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
PrepareForFirstQuicJob();
Initialize(HttpRequestInfo());
std::unique_ptr<QuicHttpStream> stream =
ConnectQuicHttpStream(/*alt_destination=*/true,
/*require_dns_https_alpn=*/false);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, "alt.example.org", 443);
SetAlternativeService(request_info, alternative_service);
request_ = CreateJobControllerAndStart(request_info);
// |dns_alpn_h3_job| must not be created when an active session is
// available for |alternative_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/false,
"Main job and alternative job must be created.");
base::HistogramTester histogram_tester;
// Run the message loop to make |alternative_job| succeed and status will be
// reported to Request.
{
base::RunLoop run_loop;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
run_loop.Run();
}
histogram_tester.ExpectUniqueSample("Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_NO_RACE, 1);
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/false,
"Main job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
ActiveSessionAvailableForDnsAlpnH3Job) {
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
std::unique_ptr<QuicHttpStream> stream =
ConnectQuicHttpStream(/*alt_destination=*/false,
/*require_dns_https_alpn=*/true);
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and alternative job must not be available.");
base::HistogramTester histogram_tester;
// Run the message loop to make |dns_alpn_h3_job| succeed and status will be
// reported to Request.
{
base::RunLoop run_loop;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
run_loop.Run();
}
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_WITHOUT_RACE, 1);
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"DNS alpn H3 job must exist.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
ActiveSessionAvailableForMainJobAndDnsAlpnH3Job) {
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
PrepareForFirstQuicJob();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
// Put a SpdySession in the pool.
SpdySessionKey key(HostPortPair::FromURL(request_info.url),
ProxyServer::Direct(), PRIVACY_MODE_DISABLED,
SpdySessionKey::IsProxySession::kFalse, SocketTag(),
NetworkAnonymizationKey(), SecureDnsPolicy::kAllow);
std::ignore = CreateFakeSpdySession(session_->spdy_session_pool(), key);
std::unique_ptr<QuicHttpStream> stream =
ConnectQuicHttpStream(/*alt_destination=*/false,
/*require_dns_https_alpn=*/true);
request_ = CreateJobControllerAndStart(CreateTestHttpRequestInfo());
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job must not be available.");
base::HistogramTester histogram_tester;
// Run the message loop to make |dns_alpn_h3_job| succeed and status will be
// reported to Request.
{
base::RunLoop run_loop;
EXPECT_CALL(request_delegate_, OnStreamReadyImpl(_, _, _))
.Times(1)
.WillOnce(Invoke([&run_loop]() { run_loop.Quit(); }));
run_loop.Run();
}
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_WITHOUT_RACE, 1);
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"DNS alpn H3 job must exist.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
DoNotStartDnsAlpnH3JobWhenSameHostDefaultPortAltJobCreated) {
PrepareForMainJob();
PrepareForFirstQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, "www.example.org", 443);
SetAlternativeService(request_info, alternative_service);
request_ = CreateJobControllerAndStart(request_info);
// |dns_alpn_h3_job| must be deleted when a same origin alt service
// was registered.
CheckJobsStatus(
true, true, false,
"All types of jobs are created, but DNS alpn job must be deleted");
base::RunLoop().RunUntilIdle();
base::HistogramTester histogram_tester;
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_MAIN_JOB_WON_RACE,
1);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/false,
"Alternate job must not be deleted");
// Make |alternative_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
AllJobsCreatedMainJobSucceedAltJobSucceedDnsJobSucceed) {
PrepareForMainJob();
PrepareForFirstQuicJob();
PrepareForSecondQuicJob();
// Use cold start and complete `alternative_job` and `dns_alpn_h3_job`
// manually.
crypto_client_stream_factory_.set_handshake_mode(
MockCryptoClientStream::COLD_START);
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, "alt.example.org", 443);
SetAlternativeService(request_info, alternative_service);
request_ = CreateJobControllerAndStart(request_info);
// |dns_alpn_h3_job| must be created when a different origin alt service
// was registered.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true,
"All types of jobs are created");
base::HistogramTester histogram_tester;
base::RunLoop().RunUntilIdle();
MakeMainJobSucceed(/*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_MAIN_JOB_WON_RACE,
1);
// The success of |main_job| doesn't delete |alternative_job| and
// |dns_alpn_h3_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true, "Jobs must not be deleted.");
// Make |alternative_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Alternate job must be deleted.");
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(1, /*expect_stream_ready=*/false);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false,
"DNS alpn job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
AllJobsCreatedAltJobSucceedDnsJobSucceedMainJobSucceed) {
PrepareForMainJob();
PrepareForFirstQuicJob();
PrepareForSecondQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, "alt.example.org", 443);
SetAlternativeService(request_info, alternative_service);
request_ = CreateJobControllerAndStart(request_info);
// |dns_alpn_h3_job| must be created when a different origin alt service
// was registered.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true,
"All types of jobs are created");
base::HistogramTester histogram_tester;
// Make |alternative_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample("Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_WON_RACE, 1);
// The success of |alternative_job| doesn't delete |main_job| and
// |dns_alpn_h3_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true, "Jobs must not be deleted.");
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(1, /*expect_stream_ready=*/false);
// The success of |dns_alpn_h3_job| doesn't delete |main_job| and
// |alternative_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/false,
"DNS alpn job must be deleted.");
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/false);
// |main_job| should be cleared.
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/false,
"Alternate job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
AllJobsCreatedDnsJobSucceedAltJobSucceedMainJobSucceed) {
PrepareForMainJob();
PrepareForFirstQuicJob();
PrepareForSecondQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, "alt.example.org", 443);
SetAlternativeService(request_info, alternative_service);
request_ = CreateJobControllerAndStart(request_info);
// |dns_alpn_h3_job| must be created when a different origin alt service
// was registered.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true,
"All types of jobs are created");
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(1, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_RACE, 1);
// The success of |dns_alpn_h3_job| doesn't delete |main_job| and
// |alternative_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/true,
/*dns_alpn_h3_job_exists=*/true, "Jobs must not be deleted.");
// Make |alternative_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
// The success of |alternative_job| doesn't delete |main_job| and
// |dns_alpn_h3_job|.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Alternate job must be deleted.");
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/false);
// |main_job| should be cleared.
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Main job must be deleted.");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
DnsJobFailOnDefaultNetworkDnsJobFailMainJobSucceed) {
PrepareForMainJob();
PrepareForFirstQuicJobFailure();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(request_info);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
JobControllerPeer::SetDnsAlpnH3JobFailedOnDefaultNetwork(job_controller_);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Jobs must not be deleted.");
base::RunLoop().RunUntilIdle();
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| fail.
quic_data_->Resume();
base::RunLoop().RunUntilIdle();
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false, "DNS alpn job be deleted.");
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/true);
// Net.AlternateProtocolUsage records
// ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON, when only main job exists.
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_UNSPECIFIED_REASON,
1);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/false,
"DNS alpn job must be deleted.");
request_.reset();
EXPECT_TRUE(IsAlternativeServiceBroken(request_info.url));
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
histogram_tester.ExpectUniqueSample("Net.AlternateServiceForDnsAlpnH3Failed",
-ERR_QUIC_PROTOCOL_ERROR, 1);
// Verify the brokenness is not cleared when the default network changes.
session_->http_server_properties()->OnDefaultNetworkChanged();
EXPECT_TRUE(IsAlternativeServiceBroken(request_info.url));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
DnsJobFailOnDefaultNetworkMainJobSucceedDnsJobSucceed) {
PrepareForMainJob();
PrepareForFirstQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
base::HistogramTester histogram_tester;
request_ = CreateJobControllerAndStart(request_info);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
JobControllerPeer::SetDnsAlpnH3JobFailedOnDefaultNetwork(job_controller_);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Jobs must not be deleted.");
base::RunLoop().RunUntilIdle();
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage", ALTERNATE_PROTOCOL_USAGE_MAIN_JOB_WON_RACE,
1);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"DNS alpn job must not be deleted.");
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
request_.reset();
histogram_tester.ExpectTotalCount("Net.AlternateServiceForDnsAlpnH3Failed",
0);
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
EXPECT_TRUE(IsAlternativeServiceBroken(request_info.url));
// Verify the brokenness is cleared when the default network changes.
session_->http_server_properties()->OnDefaultNetworkChanged();
EXPECT_FALSE(IsAlternativeServiceBroken(request_info.url));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
DnsJobSucceedMainJobCanceled) {
PrepareForMainJob();
PrepareForFirstQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(request_info);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_RACE, 1);
// Main job is canceled.
CheckJobsStatus(/*main_job_exists=*/false, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Main job must be deleted");
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
DnsJobFailOnDefaultNetworkDnsJobSucceedMainJobSucceed) {
PrepareForMainJob();
PrepareForFirstQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
request_ = CreateJobControllerAndStart(request_info);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job and DNS ALPN job must be created.");
JobControllerPeer::SetDnsAlpnH3JobFailedOnDefaultNetwork(job_controller_);
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true, "Jobs must not be deleted.");
base::HistogramTester histogram_tester;
// Make |dns_alpn_h3_job| succeed.
MakeQuicJobSucceed(0, /*expect_stream_ready=*/true);
histogram_tester.ExpectUniqueSample(
"Net.AlternateProtocolUsage",
ALTERNATE_PROTOCOL_USAGE_DNS_ALPN_H3_JOB_WON_RACE, 1);
// Main job is not canceled, because |dns_alpn_h3_job| has failed on the
// default network.
CheckJobsStatus(/*main_job_exists=*/true, /*alternative_job_exists=*/false,
/*dns_alpn_h3_job_exists=*/true,
"Main job must not be deleted.");
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/false);
request_.reset();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest, PreconnectDnsAlpnH3) {
SetPreconnect();
PrepareForFirstQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(HttpRequestInfo());
CreateJobController(request_info);
job_controller_->Preconnect(/*num_streams=*/5);
// Only one job is started.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT_DNS_ALPN_H3,
job_controller_->main_job()->job_type());
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest,
PreconnectAltSvcAvailableActiveSessionAvailable) {
SetPreconnect();
PrepareForFirstQuicJob();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
RegisterMockHttpsRecord();
Initialize(request_info);
// Register Alt-Svc info.
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, server.host(), 443);
SetAlternativeService(request_info, alternative_service);
// Create an active session of require_dns_https_alpn = true.
std::unique_ptr<QuicHttpStream> stream =
ConnectQuicHttpStream(/*alt_destination=*/false,
/*require_dns_https_alpn=*/true);
CreateJobController(request_info);
// Preconnect must succeed using the existing session.
job_controller_->Preconnect(/*num_streams=*/1);
ASSERT_TRUE(job_controller_->main_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT_DNS_ALPN_H3,
job_controller_->main_job()->job_type());
MakeQuicJobSucceed(0, /*expect_stream_ready=*/false);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnTest, PreconnectNoDnsAlpnH3) {
EnableOndemandHostResolver();
PrepareForMainJob();
SetPreconnect();
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
Initialize(HttpRequestInfo());
CreateJobController(request_info);
job_controller_->Preconnect(/*num_streams=*/1);
// Only one job is started.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT_DNS_ALPN_H3,
job_controller_->main_job()->job_type());
// Resolve the host resolve request from |dns_alpn_h3_job|.
session_deps_.host_resolver->ResolveAllPending();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(HttpStreamFactory::PRECONNECT,
job_controller_->main_job()->job_type());
base::RunLoop().RunUntilIdle();
// Make |main_job| succeed.
MakeMainJobSucceed(/*expect_stream_ready=*/false);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
class HttpStreamFactoryJobControllerDnsHttpsAlpnEchTest
: public HttpStreamFactoryJobControllerDnsHttpsAlpnTest {
public:
HttpStreamFactoryJobControllerDnsHttpsAlpnEchTest()
: HttpStreamFactoryJobControllerDnsHttpsAlpnTest(
{features::kEncryptedClientHello,
features::kEncryptedClientHelloQuic}) {}
};
// Test that, when an Alt-Svc-based preconnect fails with
// `ERR_DNS_NO_MATCHING_SUPPORTED_ALPN`, the job controller handles it
// correctly. This is a regression test for https://crbug.com/1420202.
//
// In a general HTTPS-RR implementation, this may happen simply because there
// was no A/AAAA route. However, we do not implement HTTPS-RR in full yet (see
// https://crbug.com/1417033), so instead this is only possible in a corner case
// with ECH.
TEST_F(HttpStreamFactoryJobControllerDnsHttpsAlpnEchTest,
PreconnectAlternateNoDnsAlpn) {
const char kAlternateHost[] = "alt.example.com";
EnableOndemandHostResolver();
PrepareForMainJob();
SetPreconnect();
// Register a mock HTTPS record where the HTTPS-RR route is only good for h2,
// which is incompatible with Alt-Svc. The A/AAAA route would be compatible,
// but the server supports ECH, so we enable SVCB-reliant mode and reject it.
// As a result, the alternate job will fail.
HostResolverEndpointResult endpoint_result1;
endpoint_result1.ip_endpoints = {IPEndPoint(IPAddress::IPv4Localhost(), 0)};
endpoint_result1.metadata.ech_config_list = {1, 2, 3, 4};
endpoint_result1.metadata.supported_protocol_alpns = {"h2"};
HostResolverEndpointResult endpoint_result2;
endpoint_result2.ip_endpoints = {IPEndPoint(IPAddress::IPv4Localhost(), 0)};
session_deps_.host_resolver->rules()->AddRule(
kAlternateHost,
MockHostResolverBase::RuleResolver::RuleResult(
{endpoint_result1, endpoint_result2}, {kAlternateHost}));
HttpRequestInfo request_info = CreateTestHttpRequestInfo();
Initialize(request_info);
CreateJobController(request_info);
url::SchemeHostPort server(request_info.url);
AlternativeService alternative_service(kProtoQUIC, kAlternateHost, 443);
SetAlternativeService(request_info, alternative_service);
job_controller_->Preconnect(/*num_streams=*/1);
// Only one job is started.
EXPECT_TRUE(job_controller_->main_job());
EXPECT_FALSE(job_controller_->alternative_job());
EXPECT_EQ(HttpStreamFactory::PRECONNECT,
job_controller_->main_job()->job_type());
// Resolve the DNS request.
session_deps_.host_resolver->ResolveAllPending();
base::RunLoop().RunUntilIdle();
// The jobs should have failed. We currently do not try the non-Alt-Svc route
// in preconnects if Alt-Svc failed.
EXPECT_TRUE(HttpStreamFactoryPeer::IsJobControllerDeleted(factory_));
}
} // namespace net::test
| [
"jengelh@inai.de"
] | jengelh@inai.de |
a70f8b8aa3551b2b6752ca43b831ac022061b909 | 56f58ef41d9c245da5fe871d8bc23d74b0a42290 | /informatics/Поиск и сортировка/Линейный поиск в массиве/K - Контроперация.cpp | cdbeb9319ef9efaa050f84b0e5cf53db8d0eb77f | [] | no_license | zotvent/competitive-programming | 353dd906e87bc20090c6cbb75b1f68f8653ca489 | 32e9efc6b45e28b5c8d47d875de58305087ae5f1 | refs/heads/master | 2023-05-26T05:36:14.802939 | 2023-05-25T22:21:33 | 2023-05-25T22:21:33 | 93,071,555 | 29 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,441 | cpp | #include <stdio.h>
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <queue>
#include <deque>
#include <stack>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <cmath>
#include <cstring>
using namespace std;
#define F first
#define S second
#define pb push_back
#define pf push_front
#define ppb pop_back
#define ppf pop_front
#define mp make_pair
#define speed ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
typedef long long ll;
typedef pair<int, int> pii;
const int inf = 1e9;
const int N = 1e2+5;
const int mod = 1743;
const int MAX = 1e6;
const int shift = 4;
class Solution {
int n, i, a[N], imin = 1, imax = 1;
void print() {
}
void input() {
speed
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
cin >> n;
for (i = 1; i <= n; i++)
cin >> a[i];
}
void output() {
for (i = 1; i <= n; i++)
if (a[i] == a[imax]) cout << a[imin] << ' ';
else cout << a[i] << ' ';
}
void solution() {
for (i = 1; i <= n; i++) {
if (a[i] > a[imax]) imax = i;
if (a[i] < a[imin]) imin = i;
}
}
public:
void solve() {
input();
solution();
output();
}
};
int main() {
Solution s = Solution();
s.solve();
return 0;
}
| [
"mark.vkm@gmail.com"
] | mark.vkm@gmail.com |
8cf9724b5bc5f91e0cd2393e0d87f785969290e0 | f08df45744bb1494a8c8aada0ad5261569a9dfef | /graphics/GVector3.hpp | 614dc3ce0c2b6773bc216429f812d12f141aecb0 | [] | no_license | RickyYL/Graphics | 155b629ca84eb54a6dded435617130d75d13afb5 | 58465dcd8689743c5796201e1192d51d857a7a69 | refs/heads/master | 2016-08-12T14:01:44.720261 | 2016-02-15T10:39:51 | 2016-02-15T10:39:51 | 51,748,730 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 897 | hpp | //
// GVector3.hpp
// graphics
//
// Created by Yuanqi on 2/13/16.
// Copyright © 2016 Yuanqi. All rights reserved.
//
#ifndef GVector3_hpp
#define GVector3_hpp
#include <iostream>
#include <cmath>
#define MIN(x,y) (x)>(y)?(y):(x)
#define MAX(x,y) (x)>(y)?(x):(y)
class Vector3 {
public:
float x, y, z;
Vector3();
Vector3(float posX, float posY, float posZ)
: x(posX), y(posY), z(posZ) {}
Vector3 operator+(Vector3 v);
Vector3 operator-(Vector3 v);
Vector3 operator*(float n);
Vector3 operator/(float n);
float dotProd(Vector3 v);
Vector3 crossProd(Vector3 v);
float max();
float min();
float norm();
Vector3 normalize();
float distance(Vector3 v);
Vector3 zero() {return Vector3(0,0,0);}
std::ostream &operator<<(std::ostream &os);
};
Vector3 abs(Vector3 v);
#endif /* GVector3_hpp */
| [
"rickylee0914@gmail.com"
] | rickylee0914@gmail.com |
fdd720004c95a7d4273d450f66870690562ad47a | 87d8af054e17e0c346b6f59636402883fbf0158d | /Cpp/SDK/RareAudio_classes.h | 30308b692c519a42061f9ccbf2709812c18b6c65 | [] | no_license | AthenaVision/SoT-SDK-2 | 53676d349bca171b5e48dc812fd7bb97b9a4f1d8 | 4a803206d707a081b86c89a4b866a1761119613d | refs/heads/main | 2023-03-20T10:48:21.491008 | 2021-03-10T21:55:10 | 2021-03-10T21:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,135 | h | #pragma once
// Name: sot, Version: 4.2
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// Class RareAudio.WwiseEmitterComponent
// 0x0030 (FullSize[0x02B8] - InheritedSize[0x0288])
class UWwiseEmitterComponent : public USceneComponent
{
public:
unsigned char UnknownData_4ZW1[0x8]; // 0x0288(0x0008) Fix Super Size
struct FWwiseEmitter Emitter; // 0x0290(0x0020) (BlueprintVisible, BlueprintReadOnly)
class UWwiseObjectPoolWrapper* WwiseObjectPoolWrapper; // 0x02B0(0x0008) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.WwiseEmitterComponent");
return ptr;
}
};
// Class RareAudio.AnimNotifyWwiseEmitterComponent
// 0x0000 (FullSize[0x02B8] - InheritedSize[0x02B8])
class UAnimNotifyWwiseEmitterComponent : public UWwiseEmitterComponent
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AnimNotifyWwiseEmitterComponent");
return ptr;
}
};
// Class RareAudio.WwiseObjectPoolWrapper
// 0x0058 (FullSize[0x0080] - InheritedSize[0x0028])
class UWwiseObjectPoolWrapper : public UObject
{
public:
struct FName PoolName; // 0x0028(0x0008) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
int MaxResources; // 0x0030(0x0004) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
int MaxProxies; // 0x0034(0x0004) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool DisableOcclusion; // 0x0038(0x0001) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor)
bool DisableReverb; // 0x0039(0x0001) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor)
unsigned char UnknownData_O63U[0x6]; // 0x003A(0x0006) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
struct FWwiseNativeEmitterPoolDensityParams PoolDensityParams; // 0x0040(0x0028) (Edit, BlueprintVisible, BlueprintReadOnly)
unsigned char UnknownData_CEUJ[0x18]; // 0x0068(0x0018) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.WwiseObjectPoolWrapper");
return ptr;
}
};
// Class RareAudio.WwiseObjectPoolWrapperMock
// 0x0018 (FullSize[0x0098] - InheritedSize[0x0080])
class UWwiseObjectPoolWrapperMock : public UWwiseObjectPoolWrapper
{
public:
unsigned char UnknownData_BSAB[0x18]; // 0x0080(0x0018) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.WwiseObjectPoolWrapperMock");
return ptr;
}
};
// Class RareAudio.AnimNotify_WwiseSound
// 0x0018 (FullSize[0x0048] - InheritedSize[0x0030])
class UAnimNotify_WwiseSound : public UAnimNotify
{
public:
class UWwiseEvent* WwiseEvent; // 0x0030(0x0008) (Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool OwnedByWorld; // 0x0038(0x0001) (Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor)
unsigned char UnknownData_UN8J[0x7]; // 0x0039(0x0007) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
class UWwiseObjectPoolWrapper* OwnedByWorldWisePoolToUse; // 0x0040(0x0008) (Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AnimNotify_WwiseSound");
return ptr;
}
};
// Class RareAudio.AnimNotify_WwiseSoundMeshSwitch
// 0x0018 (FullSize[0x0060] - InheritedSize[0x0048])
class UAnimNotify_WwiseSoundMeshSwitch : public UAnimNotify_WwiseSound
{
public:
struct FName SkeletalMeshSwitchGroup; // 0x0048(0x0008) (Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
TArray<struct FAnimNotify_SoundSwitch> MeshOverrides; // 0x0050(0x0010) (Edit, BlueprintReadOnly, ZeroConstructor)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AnimNotify_WwiseSoundMeshSwitch");
return ptr;
}
};
// Class RareAudio.AnimNotifyState_WwiseSound
// 0x0060 (FullSize[0x0088] - InheritedSize[0x0028])
class UAnimNotifyState_WwiseSound : public UAnimNotifyState
{
public:
class UWwiseEvent* WwiseEvent; // 0x0028(0x0008) (Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
class UWwiseEvent* WwiseEventEnd; // 0x0030(0x0008) (Edit, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
unsigned char UnknownData_7T6W[0x50]; // 0x0038(0x0050) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AnimNotifyState_WwiseSound");
return ptr;
}
};
// Class RareAudio.AudioEventToComponentMap
// 0x0008 (FullSize[0x0430] - InheritedSize[0x0428])
class AAudioEventToComponentMap : public AActor
{
public:
class UAudioEventToComponentMapComponent* AudioEventToComponentMapComponent; // 0x0428(0x0008) (ExportObject, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioEventToComponentMap");
return ptr;
}
void ClearMappings();
void AddMappingWithSingleEmitterComponent(class UWwiseEvent* PlayEvent, class UWwiseEvent* StopEvent, class UWwiseEmitterComponent** WwiseEmitterComponent, class UWwiseObjectPoolWrapper* WwiseEmitterPool);
void AddMapping(class UWwiseEvent* PlayEvent, class UWwiseEvent* StopEvent, TArray<class UWwiseEmitterComponent*>* WwiseEmitterComponents, class UWwiseObjectPoolWrapper* WwiseEmitterPool);
};
// Class RareAudio.AudioEventToComponentMapComponent
// 0x0010 (FullSize[0x00D8] - InheritedSize[0x00C8])
class UAudioEventToComponentMapComponent : public UActorComponent
{
public:
TArray<struct FEventToComponentMapping> LocalComponentMappings; // 0x00C8(0x0010) (ZeroConstructor, ContainsInstancedReference)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioEventToComponentMapComponent");
return ptr;
}
void ClearMappings();
void AddMappingWithSingleEmitterComponent(class UWwiseEvent* PlayEvent, class UWwiseEvent* StopEvent, class UWwiseEmitterComponent** WwiseEmitterComponent, class UWwiseObjectPoolWrapper* WwiseEmitterPool);
void AddMapping(class UWwiseEvent* PlayEvent, class UWwiseEvent* StopEvent, TArray<class UWwiseEmitterComponent*>* WwiseEmitterComponents, class UWwiseObjectPoolWrapper* WwiseEmitterPool);
};
// Class RareAudio.WwiseEmitterBlueprintLibrary
// 0x0000 (FullSize[0x0028] - InheritedSize[0x0028])
class UWwiseEmitterBlueprintLibrary : public UBlueprintFunctionLibrary
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.WwiseEmitterBlueprintLibrary");
return ptr;
}
void STATIC_WwiseStopGlobalEvent(class UWwiseEvent* Event, float FadeTime);
void STATIC_WwiseSetState(const struct FName& StateGroup, const struct FName& StateValue);
void STATIC_WwiseSetGlobalRTPC(const struct FName& RTPCName, float RTPCValue);
void STATIC_WwisePostOneShotOnOwner(class UObject* Owner, class UWwiseObjectPoolWrapper* EmitterPool, const struct FWwiseEmitterCreationParams& CreationParams, const struct FVector& Offset, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship);
int STATIC_WwisePostGlobalEvent(class UWwiseEvent* Event);
int STATIC_WwisePostEventAtLocation(struct FWwiseEmitter* Emitter, class UWwiseEvent* Event, const struct FVector& Location, const struct FVector& Front, class UWwiseObjectPoolWrapper* EmitterPool, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship);
bool STATIC_WwiseIsGlobalEvent(class UWwiseEvent* Event);
bool STATIC_WwiseGetListenerInfo(struct FWwiseListenerInfo* InfoOut, int Viewport);
bool STATIC_WwiseGetListenerEmitter(struct FWwiseEmitter* Emitter, class UObject* WorldContextObject, int ListenerIndex, const struct FName& Name, const struct FVector& Offset, bool bFollowOrientaion, class UWwiseObjectPoolWrapper* EmitterPool);
bool STATIC_WwiseGetGlobalRTPC(const struct FName& RTPCName, float* RTPCValue);
bool STATIC_WwiseEmitterWaitToComplete(const struct FWwiseEmitter& Emitter, int PlayId, class UObject* WorldContextObject, const struct FLatentActionInfo& LatentInfo);
bool STATIC_WwiseEmitterStop(const struct FWwiseEmitter& Emitter, int PlayId, float FadeTime);
bool STATIC_WwiseEmitterSetSwitch(const struct FWwiseEmitter& Emitter, const struct FName& SwitchGroup, const struct FName& Value);
bool STATIC_WwiseEmitterSetRTPCOnAll(TArray<struct FWwiseEmitter> Emitters, const struct FName& Name, float Value);
bool STATIC_WwiseEmitterSetRTPC(const struct FWwiseEmitter& Emitter, const struct FName& Name, float Value);
bool STATIC_WwiseEmitterSetParams(const struct FWwiseEmitter& Emitter, const struct FWwiseEmitterParams& Params);
bool STATIC_WwiseEmitterSetLocation(const struct FWwiseEmitter& Emitter, const struct FVector& Location);
TArray<int> STATIC_WwiseEmitterPostEventOnAll(TArray<struct FWwiseEmitter> Emitters, class UWwiseEvent* WwiseEvent, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship, const struct FName& SourcePath, const struct FName& SourceObj);
int STATIC_WwiseEmitterPostEvent(const struct FWwiseEmitter& Emitter, class UWwiseEvent* WwiseEvent, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship, const struct FName& SourcePath, const struct FName& SourceObj);
bool STATIC_WwiseEmitterIsValid(const struct FWwiseEmitter& Emitter);
bool STATIC_WwiseEmitterIsPlaying(const struct FWwiseEmitter& Emitter, class UWwiseEvent* Event);
bool STATIC_WwiseEmitterGetRTPC(const struct FWwiseEmitter& Emitter, const struct FName& Name, float* Value);
void STATIC_WwiseEmitterDestroy(struct FWwiseEmitter* Emitter);
bool STATIC_WwiseEmitterComponentSetRTPCOnAll(TArray<class UWwiseEmitterComponent*> EmitterComponents, const struct FName& Name, float Value);
bool STATIC_WwiseEmitterComponentSetRTPC(class UWwiseEmitterComponent* EmitterComponent, const struct FName& Name, float Value);
TArray<int> STATIC_WwiseEmitterComponentPostEventOnAll(TArray<class UWwiseEmitterComponent*> EmitterComponents, class UWwiseEvent* WwiseEvent, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship, const struct FName& SourcePath, const struct FName& SourceObj);
int STATIC_WwiseEmitterComponentPostEvent(class UWwiseEmitterComponent* EmitterComponent, class UWwiseEvent* WwiseEvent, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship, const struct FName& SourcePath, const struct FName& SourceObj);
bool STATIC_WwiseCreateEmitter(struct FWwiseEmitter* Emitter, const struct FName& Name, class UObject* Owner, class UWwiseObjectPoolWrapper* EmitterPool, const struct FVector& Offset);
int STATIC_WwiseCreateDetachedEmitter(struct FWwiseEmitter* Emitter, const struct FName& Name, class UWwiseObjectPoolWrapper* EmitterPool, const struct FVector& Location, const struct FWwiseEmitterCreationParams& CreationParams, TEnumAsByte<RareAudio_EEmitterRelationship> Relationship, const struct FVector& Forward);
bool STATIC_SeekOnEvent(const struct FWwiseEmitter& WwiseEmitter, class UWwiseEvent* in_eventID, int in_iPosition, bool in_bSeekToNearestMarker, int in_PlayingID);
bool STATIC_GetPlaybackPosition(const struct FWwiseEmitter& WwiseEmitter, int in_PlayingID, int* PlaybackPositionInMs);
};
// Class RareAudio.WwiseEmitterComponentBlueprintLibrary
// 0x0000 (FullSize[0x0028] - InheritedSize[0x0028])
class UWwiseEmitterComponentBlueprintLibrary : public UBlueprintFunctionLibrary
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.WwiseEmitterComponentBlueprintLibrary");
return ptr;
}
bool STATIC_GetNamedEmitter(struct FWwiseEmitter* OutEmitter, const struct FName& InNameOfEmitterToRetrieve, class AActor* InActorToFindEmitterOn);
bool STATIC_GetClosestNEmitters(TArray<struct FWwiseEmitter>* OutEmitters, const struct FVector& InFromPosition, int InNumEmittersToFind, class AActor* InActorToFindClosestEmitterOn);
bool STATIC_GetClosestEmitter(struct FWwiseEmitter* OutEmitter, const struct FVector& InFromPosition, class AActor* InActorToFindClosestEmitterOn);
};
// Class RareAudio.AudioIslandStaticMeshAssociatorBase
// 0x0000 (FullSize[0x0428] - InheritedSize[0x0428])
class AAudioIslandStaticMeshAssociatorBase : public AActor
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioIslandStaticMeshAssociatorBase");
return ptr;
}
};
// Class RareAudio.AudioPortalComponent
// 0x0028 (FullSize[0x02B0] - InheritedSize[0x0288])
class UAudioPortalComponent : public USceneComponent
{
public:
class UAudioSpaceDataAsset* AudioInsideSpace; // 0x0288(0x0008) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
class UAudioSpaceDataAsset* AudioOutsideSpace; // 0x0290(0x0008) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
float PortalTriggerDistance; // 0x0298(0x0004) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
float InsideRtpcUpdateDistance; // 0x029C(0x0004) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
float OutsideRtpcUpdateDistance; // 0x02A0(0x0004) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool TrackAttachmentToActor; // 0x02A4(0x0001) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor)
unsigned char UnknownData_SP1E[0xB]; // 0x02A5(0x000B) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioPortalComponent");
return ptr;
}
void SetParentShip(class AActor* ParentShip);
};
// Class RareAudio.AudioPortalInterface
// 0x0000 (FullSize[0x0028] - InheritedSize[0x0028])
class UAudioPortalInterface : public UInterface
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioPortalInterface");
return ptr;
}
void UnregisterPortal(class UAudioPortalComponent* AudioPortal);
void RegisterPortal(class UAudioPortalComponent* AudioPortal, class AActor* OwningActor);
TArray<TWeakObjectPtr<class UAudioPortalComponent>> GetAllRegisteredPortalsInSpecificSpace(class UAudioSpaceDataAsset* AudioSpace, class AActor* OwningActor);
TArray<TWeakObjectPtr<class UAudioPortalComponent>> GetAllRegisteredPortals();
};
// Class RareAudio.AudioPortalService
// 0x00B0 (FullSize[0x00D8] - InheritedSize[0x0028])
class UAudioPortalService : public UObject
{
public:
unsigned char UnknownData_89EK[0xB0]; // 0x0028(0x00B0) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioPortalService");
return ptr;
}
};
// Class RareAudio.AudioSpaceComponent
// 0x0008 (FullSize[0x0590] - InheritedSize[0x0588])
class UAudioSpaceComponent : public UStaticMeshComponent
{
public:
class UAudioSpaceDataAsset* AudioSpace; // 0x0588(0x0008) (Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioSpaceComponent");
return ptr;
}
void OnOverlapEnd(class AActor* OtherActor, class UPrimitiveComponent* OtherComp, int OtherBodyIndex);
void OnOverlapBegin(class AActor* OtherActor, class UPrimitiveComponent* OtherComp, int OtherBodyIndex, bool FromSweep, const struct FHitResult& SweepResult);
};
// Class RareAudio.AudioSpaceDataAsset
// 0x0018 (FullSize[0x0040] - InheritedSize[0x0028])
class UAudioSpaceDataAsset : public UDataAsset
{
public:
struct FName RtpcToUpdate; // 0x0028(0x0008) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
class UWwiseEvent* AmbienceToStart; // 0x0030(0x0008) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
class UWwiseEvent* AmbienceToStop; // 0x0038(0x0008) (Edit, BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioSpaceDataAsset");
return ptr;
}
struct FName GetRtpcName();
};
// Class RareAudio.AudioSpaceTrackerComponent
// 0x0010 (FullSize[0x00D8] - InheritedSize[0x00C8])
class UAudioSpaceTrackerComponent : public UActorComponent
{
public:
TArray<class UAudioSpaceComponent*> CurrentSpaces; // 0x00C8(0x0010) (ExportObject, ZeroConstructor, Transient, ContainsInstancedReference)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.AudioSpaceTrackerComponent");
return ptr;
}
class UAudioSpaceDataAsset* GetCurrentSpace();
};
// Class RareAudio.RareAudioHardwareDeviceService
// 0x0010 (FullSize[0x0228] - InheritedSize[0x0218])
class URareAudioHardwareDeviceService : public UAudioHardwareDeviceService
{
public:
unsigned char UnknownData_3PFR[0x10]; // 0x0218(0x0010) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.RareAudioHardwareDeviceService");
return ptr;
}
};
// Class RareAudio.StaticMeshAudioDataAsset
// 0x0010 (FullSize[0x0038] - InheritedSize[0x0028])
class UStaticMeshAudioDataAsset : public UDataAsset
{
public:
TArray<struct FStaticMeshAudioAssociation> MeshToAudioAssociations; // 0x0028(0x0010) (Edit, ZeroConstructor)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.StaticMeshAudioDataAsset");
return ptr;
}
};
// Class RareAudio.StaticMeshAudioEmittersComponent
// 0x0018 (FullSize[0x02A0] - InheritedSize[0x0288])
class UStaticMeshAudioEmittersComponent : public USceneComponent
{
public:
TArray<struct FStaticMeshComponentAudioAssociation> InstanceAssociations; // 0x0288(0x0010) (ZeroConstructor)
unsigned char UnknownData_WMQ0[0x8]; // 0x0298(0x0008) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.StaticMeshAudioEmittersComponent");
return ptr;
}
void PopulateInstanceAssociations();
};
// Class RareAudio.TritonAcousticMap
// 0x0038 (FullSize[0x0060] - InheritedSize[0x0028])
class UTritonAcousticMap : public UObject
{
public:
struct FString TritonMapFilename; // 0x0028(0x0010) (Edit, ZeroConstructor, HasGetValueTypeHash)
unsigned char UnknownData_052E[0x28]; // 0x0038(0x0028) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.TritonAcousticMap");
return ptr;
}
};
// Class RareAudio.TritonComponent
// 0x0018 (FullSize[0x02A0] - InheritedSize[0x0288])
class UTritonComponent : public USceneComponent
{
public:
class UTritonAcousticMap* TritonMapAsset; // 0x0288(0x0008) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
float TritonEffectRadius; // 0x0290(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
unsigned char UnknownData_KH2S[0xC]; // 0x0294(0x000C) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.TritonComponent");
return ptr;
}
};
// Class RareAudio.TritonService
// 0x0108 (FullSize[0x0130] - InheritedSize[0x0028])
class UTritonService : public UObject
{
public:
unsigned char UnknownData_KU5I[0x10]; // 0x0028(0x0010) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
TArray<class UTritonComponent*> RegisteredTritonComponents; // 0x0038(0x0010) (ExportObject, ZeroConstructor, Transient, ContainsInstancedReference)
unsigned char UnknownData_8SU0[0xA8]; // 0x0048(0x00A8) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
class UTritonComponent* CachedListenerInfo; // 0x00F0(0x0008) (ExportObject, ZeroConstructor, Transient, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
unsigned char UnknownData_JC3J[0x38]; // 0x00F8(0x0038) MISSED OFFSET (PADDING)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("Class RareAudio.TritonService");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"59620169+NtLoadDriverEx@users.noreply.github.com"
] | 59620169+NtLoadDriverEx@users.noreply.github.com |
abf9288a48efe9b1812f2e0e3c1024e3a8382dfc | 4055aa38bbb521649dff988676958fb41628560f | /sys/GuiWindow.cpp | 9112c70c5919853a602b6c21442c0b3f5616c0bd | [] | no_license | dellison/APILPraat | 48c9dc5a751fc9dcd65fadb070e84a6fc1bb84f7 | c4a2f818cddf3f215a826d1b48523268633e185f | refs/heads/master | 2020-06-04T06:18:54.717360 | 2013-05-05T23:09:08 | 2013-05-05T23:09:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,237 | cpp | /* GuiWindow.cpp
*
* Copyright (C) 1993-2012 Paul Boersma
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* pb 2004/01/07 this file separated from Gui.c
* pb 2004/02/12 don't trust window modification feedback on MacOS 9
* pb 2004/04/06 GuiWindow_drain separated from XmUpdateDisplay
* pb 2006/10/28 erased MacOS 9 stuff
* pb 2007/06/19 wchar_t
* pb 2007/12/30 extraction
* pb 2010/07/29 removed GuiWindow_show
* pb 2011/04/06 C++
* pb 2012/08/30 Cocoa
*/
#include "GuiP.h"
#include "UnicodeData.h"
#include "machine.h"
#include <locale.h>
Thing_implement (GuiWindow, GuiShell, 0);
#undef iam
#define iam(x) x me = (x) void_me
#if gtk
static gboolean _GuiWindow_destroyCallback (GuiObject widget, GdkEvent *event, gpointer void_me) {
(void) widget;
iam (GuiWindow);
forget (me);
return TRUE;
}
static gboolean _GuiWindow_goAwayCallback (GuiObject widget, GdkEvent *event, gpointer void_me) {
(void) widget;
iam (GuiWindow);
if (my d_goAwayCallback != NULL) {
my d_goAwayCallback (my d_goAwayBoss);
}
return TRUE;
}
static gboolean _GuiWindow_resizeCallback (GuiObject widget, GtkAllocation *allocation, gpointer void_me) {
(void) widget;
iam (GuiWindow);
trace ("fixed received size allocation: (%ld, %ld), %ld x %ld.", (long) allocation -> x, (long) allocation -> y, (long) allocation -> width, (long) allocation -> height);
if (allocation -> width != my d_width || allocation -> height != my d_height) {
trace ("user changed the size of the window?");
/*
* Apparently, GTK sends the size allocation message both to the shell and to its fixed-container child.
* we could capture the message either from the shell or from the fixed; we choose to do it from the fixed.
*/
Melder_assert (GTK_IS_FIXED (widget));
/*
* We move and resize all the children of the fixed.
*/
GList *children = GTK_FIXED (widget) -> children;
for (GList *l = g_list_first (children); l != NULL; l = g_list_next (l)) {
GtkFixedChild *listElement = (GtkFixedChild *) l -> data;
GtkWidget *childWidget = listElement -> widget;
Melder_assert (childWidget);
Thing_cast (GuiThing, child, _GuiObject_getUserData (childWidget));
if (child) {
GuiControl control = NULL;
if (Thing_member (child, classGuiControl)) {
control = static_cast <GuiControl> (child);
} else if (Thing_member (child, classGuiMenu)) {
Thing_cast (GuiMenu, menu, child);
control = menu -> d_cascadeButton;
}
if (control) {
/*
* Move and resize.
*/
trace ("moving child of class %ls", Thing_className (control));
int left = control -> d_left, right = control -> d_right, top = control -> d_top, bottom = control -> d_bottom;
if (left < 0) left += allocation -> width; // this replicates structGuiControl :: v_positionInForm ()
if (right <= 0) right += allocation -> width;
if (top < 0) top += allocation -> height;
if (bottom <= 0) bottom += allocation -> height;
trace ("moving child to (%d,%d)", left, top);
gtk_fixed_move (GTK_FIXED (widget), GTK_WIDGET (childWidget), left, top);
gtk_widget_set_size_request (GTK_WIDGET (childWidget), right - left, bottom - top);
trace ("moved child of class %ls", Thing_className (control));
}
}
}
my d_width = allocation -> width;
my d_height = allocation -> height;
gtk_widget_set_size_request (GTK_WIDGET (widget), allocation -> width, allocation -> height);
}
trace ("end");
return FALSE;
}
#elif cocoa
@interface GuiCocoaWindow : NSWindow
@end
@implementation GuiCocoaWindow {
GuiWindow d_userData;
}
- (void) dealloc { // override
GuiWindow me = d_userData;
forget (me);
Melder_casual ("deleting a window");
[super dealloc];
}
- (GuiWindow) userData {
return d_userData;
}
- (void) setUserData: (GuiWindow) userData {
d_userData = userData;
}
@end
#elif motif
static void _GuiMotifWindow_destroyCallback (GuiObject widget, XtPointer void_me, XtPointer call) {
(void) widget; (void) call;
iam (GuiWindow);
if (my d_xmMenuBar) {
}
//Melder_casual ("destroying window widget");
forget (me);
}
static void _GuiMotifWindow_goAwayCallback (GuiObject widget, XtPointer void_me, XtPointer call) {
(void) widget; (void) call;
iam (GuiWindow);
if (my d_goAwayCallback != NULL) {
my d_goAwayCallback (my d_goAwayBoss);
}
}
#endif
GuiWindow GuiWindow_create (int x, int y, int width, int height,
const wchar_t *title, void (*goAwayCallback) (void *goAwayBoss), void *goAwayBoss, unsigned long flags)
{
GuiWindow me = Thing_new (GuiWindow);
my d_parent = NULL;
my d_goAwayCallback = goAwayCallback;
my d_goAwayBoss = goAwayBoss;
#if gtk
GuiGtk_initialize ();
my d_gtkWindow = (GtkWindow *) gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (G_OBJECT (my d_gtkWindow), "delete-event", goAwayCallback ? G_CALLBACK (_GuiWindow_goAwayCallback) : G_CALLBACK (gtk_widget_hide), me);
g_signal_connect (G_OBJECT (my d_gtkWindow), "destroy-event", G_CALLBACK (_GuiWindow_destroyCallback), me);
gtk_window_set_default_size (GTK_WINDOW (my d_gtkWindow), width, height);
gtk_window_set_policy (GTK_WINDOW (my d_gtkWindow), TRUE, TRUE, FALSE);
my f_setTitle (title);
my d_widget = gtk_fixed_new ();
_GuiObject_setUserData (my d_widget, me);
gtk_widget_set_size_request (GTK_WIDGET (my d_widget), width, height);
gtk_container_add (GTK_CONTAINER (my d_gtkWindow), GTK_WIDGET (my d_widget));
g_signal_connect (G_OBJECT (my d_widget), "size-allocate", G_CALLBACK (_GuiWindow_resizeCallback), me);
#elif cocoa
NSRect rect = { { x, y }, { width, height } };
my d_nsWindow = [[GuiCocoaWindow alloc]
initWithContentRect: rect
styleMask: NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask
backing: NSBackingStoreBuffered
defer: false];
my f_setTitle (title);
[my d_nsWindow makeKeyAndOrderFront: nil];
my d_widget = (GuiObject) [my d_nsWindow contentView];
[(GuiCocoaWindow *) my d_nsWindow setUserData: me];
#elif motif
my d_xmShell = XmCreateShell (NULL, flags & GuiWindow_FULLSCREEN ? "Praatwulgfullscreen" : "Praatwulg", NULL, 0);
XtVaSetValues (my d_xmShell, XmNdeleteResponse, goAwayCallback ? XmDO_NOTHING : XmUNMAP, NULL);
XtVaSetValues (my d_xmShell, XmNx, x, XmNy, y, XmNwidth, (Dimension) width, XmNheight, (Dimension) height, NULL);
if (goAwayCallback) {
XmAddWMProtocolCallback (my d_xmShell, 'delw', _GuiMotifWindow_goAwayCallback, (char *) me);
}
my f_setTitle (title);
my d_widget = XmCreateForm (my d_xmShell, "dialog", NULL, 0);
_GuiObject_setUserData (my d_widget, me);
XtAddCallback (my d_widget, XmNdestroyCallback, _GuiMotifWindow_destroyCallback, me);
XtVaSetValues (my d_widget, XmNdialogStyle, XmDIALOG_MODELESS, XmNautoUnmanage, False, NULL);
#endif
my d_width = width;
my d_height = height;
my d_shell = me;
return me;
}
GuiObject theGuiTopMenuBar;
unsigned long theGuiTopLowAccelerators [8];
void structGuiWindow :: f_addMenuBar () {
#if gtk
d_gtkMenuBar = (GtkMenuBar *) gtk_menu_bar_new ();
_GuiObject_setUserData (d_gtkMenuBar, this);
this -> v_positionInForm (d_gtkMenuBar, 0, 0, 0, Machine_getMenuBarHeight (), this); // BUG?
// we need an accelerator group for each window we're creating accelerated menus on
GuiObject topwin = gtk_widget_get_toplevel (GTK_WIDGET (d_widget));
Melder_assert (topwin == d_gtkWindow);
GtkAccelGroup *ag = gtk_accel_group_new ();
gtk_window_add_accel_group (GTK_WINDOW (topwin), ag);
// unfortunately, menu-bars don't fiddle with accel-groups, so we need a way
// to pass it to the sub-menus created upon this bar for their items to have
// access to the accel-group
g_object_set_data (G_OBJECT (d_gtkMenuBar), "accel-group", ag);
gtk_widget_show (GTK_WIDGET (d_gtkMenuBar));
#elif cocoa
#elif motif
if (win || theGuiTopMenuBar) {
d_xmMenuBar = XmCreateMenuBar (d_widget, "menuBar", NULL, 0);
XtVaSetValues (d_xmMenuBar, XmNleftAttachment, XmATTACH_FORM, XmNrightAttachment, XmATTACH_FORM, NULL);
XtManageChild (d_xmMenuBar);
} else {
theGuiTopMenuBar = XmCreateMenuBar (NULL, "menuBar", NULL, 0);
//XtManageChild (topBar);
}
#endif
}
bool structGuiWindow :: f_setDirty (bool dirty) {
#if gtk
(void) dirty;
return false;
#elif cocoa
(void) dirty;
return false;
#elif win
(void) dirty;
return false;
#elif mac
SetWindowModified (d_xmShell -> nat.window.ptr, dirty);
return true;
#endif
}
/* End of file GuiWindow.cpp */
| [
"davidehellison@gmail.com"
] | davidehellison@gmail.com |
697395fd1508ac13870b00ed7f4e1290bab7b1f1 | 20cf145699fffd7200e85b4ddce79d2e24f5158d | /src/Timer3.cpp | 20ac9b199c4563fa0c6debefc703ad9a9cc725e5 | [] | no_license | pavlenko/avr-timer | b2b28584f8786f43c91c537a1c03d3af15531d3d | c6ffd4be9bde9e1b06522c400df0f93f3feb034d | refs/heads/master | 2020-04-07T16:50:01.003005 | 2018-11-21T12:34:02 | 2018-11-21T12:34:02 | 158,544,884 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,321 | cpp | #include "Timer3.h"
#include <avr/interrupt.h>
#include <avr/io.h>
#if (TIMER_16BIT_COUNT > 1)
Timer3Class::Timer3Class(): Timer16BitClass() {
#if defined (TIMSK)
_TIMSKn = {
.value = &ETIMSK,
.TOIEn = TOIE3,
.OCIEnA = OCIE3A,
.OCIEnB = OCIE3B,
.OCIEnC = OCIE3C,
.ICIEn = TICIE3,
};
#else
_TIMSKn = {
.value = &TIMSK3,
.TOIEn = TOIE3,
.OCIEnA = OCIE3A,
.OCIEnB = OCIE3B,
.OCIEnC = OCIE3C,
.ICIEn = ICIE3,
};
#endif
_TCCRnA = &TCCR3A;
_TCCRnB = &TCCR3B;
TCNTn = &TCNT3;
OCRnA = &OCR3A;
OCRnB = &OCR3B;
#if defined (OCR3C)
OCRnC = &OCR3C;
_channelCount = 3;
#else
OCRnC = NULL;
_channelCount = 2;
#endif
}
Timer3Class Timer3;
ISR(TIMER3_COMPA_vect)
{
if (Timer3._onCompareMatchA) {
Timer3._onCompareMatchA();
}
}
ISR(TIMER3_COMPB_vect)
{
if (Timer3._onCompareMatchB) {
Timer3._onCompareMatchB();
}
}
ISR(TIMER3_COMPC_vect)
{
if (Timer3._onCompareMatchC) {
Timer3._onCompareMatchC();
}
}
ISR(TIMER3_OVF_vect)
{
if (Timer3._onOverflow) {
Timer3._onOverflow();
}
}
ISR(TIMER3_CAPT_vect)
{
if (Timer3._onCaptureInput) {
Timer3._onCaptureInput();
}
}
#endif //TIMER_16BIT_COUNT | [
"pavlenko.obs@gmail.com"
] | pavlenko.obs@gmail.com |
a712b4208adc6f75064325dc748fa3748f3f3740 | 9b2a8c2b160d0ee29d02d895b2c873933302689e | /Lab/Montyhall/main.cpp | 6d83fe72300e630a7439d10cbaf8328b0737b8bf | [] | no_license | kjohnson145/Johnson_Kennedy_CSC5_43952 | ba1865b20683553327f065cb941c3576db783c62 | 595409f960d8dfbbfe88648a6a87d49ee2d75645 | refs/heads/master | 2020-06-01T04:37:49.418169 | 2015-04-01T17:52:13 | 2015-04-01T17:52:13 | 31,328,382 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,143 | cpp | /*
* File: main.cpp
* Author: Johnson, Kennedy
*
* Created on April 1, 2015, 8:00 AM
* Purpose: Play the Monty Hall Game
* */
//System Libraries
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
//User Libraries
//Global Constants
//Function Prototypes
//Execution Begins here!
int main(int argc, char** argv) {
//Set the random number seed
srand(static_cast<unsigned int> (time(0)));
//Declare Variables
unsigned int nGames,win=0,loss=0;
unsigned int door,doorOpn,prize,othDoor;
char stay;
//Prompt user for inputs
cout<<"This is the Monty Hall Game, Let's make a deal"<<endl;
cout<<"How many games would you like to play (1-4*10^9)?"<<endl;
cin>>nGames;
cout<<"Are you going to stay if given the opportunity type S for Stay"<<endl;
cout<<"Or type C for change"<<endl;
cout<<"Type anything else to choose the other door"<<endl;
cin>>stay;
//Loop for all the games
for (int game=1;game<=nGames;game++){
//Randomly choose your door
door=rand()%3+1;
//Randomly choose the prize door
prize=rand()%3+1;
//Randomly choose the door to open
do{
doorOpn=rand ()%3+1;
}while (door==doorOpn||prize==doorOpn);//Can't be the same
//What is the other door
do{
othDoor=rand ()%3+1;
}while (othDoor==doorOpn||othDoor==door);//Can't be the same
//cout<<"D="<<door<<" OthD="<<othDoor<<" OpnD="<<doorOpn<<" prize="<<prize<<endl;
//Swap the doors if given the opportunity
if (stay!='S'&&stay!='s'){
door=othDoor;
}
//Now statistically count how many wins and losses
if (door==prize)win++;
else loss++;
}
//Output the Results
cout<<"Out of"<<nGames<<"played!"<<endl;
if (stay=='S'||stay=='s')cout <<"I am not changing my door and"<<endl;
else cout<< "I am changing my door"<<endl;
cout<<"I win ->"<<win<<" times -> "<<100.0f*win/nGames<<"%"<<endl;
cout<<"vs losing "<<loss<<"times!"<<100.0f*loss/nGames<<"%"<<endl;
//Exit stage right
return 0;
}
| [
"slipwho2@hotmail.com"
] | slipwho2@hotmail.com |
e18454930bc7388d96d44db451bec4d6a06852ea | 4d623ea7a585e58e4094c41dc212f60ba0aec5ea | /Tumanji_Animals.cpp | 1c2ab8c10d6b0c7c95ac08e73d75eed9583ffca6 | [] | no_license | akshit-04/CPP-Codes | 624aadeeec35bf608ef4e83f1020b7b54d992203 | ede0766d65df0328f7544cadb3f8ff0431147386 | refs/heads/main | 2023-08-30T13:28:14.748412 | 2021-11-19T12:04:43 | 2021-11-19T12:04:43 | 429,779,083 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 748 | cpp | #include<bits/stdc++.h>
using namespace std;
#define ll long long
#define For(i,n) for(int i=0;i<n;i++)
#define VI vector<int>
#define VL vector<ll>
#define fast ios_base::sync_with_stdio(0); cin.tie(0)
const int MOD = 1000000007;
const int mx=1e4+1;
char arr[1111][1111];
//int a[101],r[10001],ans[10001];
int main()
{
fast;
int t=1;
// cin>>t;
while(t--)
{
ll n;
cin>>n;
int a[mx];
For(i,mx)
a[i]=0;
For(i,n)
{
int k;
cin>>k;
a[k]++;
}
int ans,m=INT_MIN;
for(int i=mx-1;i>=0;i--)
{
if(a[i]>=m)
ans=i;
}
cout<<ans;
}
return 0;
}
| [
"ishu.akshitgarg@gmail.com"
] | ishu.akshitgarg@gmail.com |
4be0cb02268110bcf706bec618b762164fda7e28 | b7e97047616d9343be5b9bbe03fc0d79ba5a6143 | /src/protocols/loop_modeling/utilities/PrepareForFullatomCreator.hh | ec2eda0d573f4224dde37da1743891759d37606b | [] | no_license | achitturi/ROSETTA-main-source | 2772623a78e33e7883a453f051d53ea6cc53ffa5 | fe11c7e7cb68644f404f4c0629b64da4bb73b8f9 | refs/heads/master | 2021-05-09T15:04:34.006421 | 2018-01-26T17:10:33 | 2018-01-26T17:10:33 | 119,081,547 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,192 | hh | // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// (c) Copyright Rosetta Commons Member Institutions.
// (c) This file is part of the Rosetta software suite and is made available under license.
// (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
// (c) For more information, see http://www.rosettacommons.org. Questions about this can be
// (c) addressed to University of Washington CoMotion, email: license@uw.edu.
#ifndef INCLUDED_protocols_loop_modeling_PrepareForFullatomCreator_HH
#define INCLUDED_protocols_loop_modeling_PrepareForFullatomCreator_HH
#include <protocols/moves/MoverCreator.hh>
namespace protocols {
namespace loop_modeling {
namespace utilities {
class PrepareForFullatomCreator : public protocols::moves::MoverCreator {
public:
// XRW TEMP virtual protocols::moves::MoverOP create_mover() const;
// XRW TEMP virtual std::string keyname() const;
protocols::moves::MoverOP create_mover() const override;
std::string keyname() const override;
void provide_xml_schema( utility::tag::XMLSchemaDefinition & xsd ) const override;
};
}
}
}
#endif
| [
"achitturi17059@gmail.com"
] | achitturi17059@gmail.com |
dedebce338aca54292418a61db76eac088f03ba7 | 0b15c7a046d703e153b6e6054cb57a0664a2d4df | /RobWork/src/rwlibs/mathematica/List.cpp | 9ec230ab2cd46bb120f6424da470d2d44667d1c6 | [
"Apache-2.0"
] | permissive | skyellen/robwork-mirror | bf5d97ce19775c2928432854a93fb87ab2f7cd26 | 5a74a49d9ef98eff7c75f48fe48c2e655480e9b3 | refs/heads/master | 2020-04-16T06:10:11.359979 | 2018-09-06T09:26:01 | 2018-09-06T09:26:01 | 165,335,340 | 4 | 0 | null | 2019-01-12T02:01:40 | 2019-01-12T02:01:40 | null | UTF-8 | C++ | false | false | 3,118 | cpp | /********************************************************************************
* Copyright 2015 The Robotics Group, The Maersk Mc-Kinney Moller Institute,
* Faculty of Engineering, University of Southern Denmark
*
* 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 "List.hpp"
#include <boost/foreach.hpp>
using namespace rw::common;
using namespace rwlibs::mathematica;
List::List():
FunctionBase("List")
{
}
List::List(const std::vector<Expression::Ptr>& args):
FunctionBase("List")
{
BOOST_FOREACH(const Expression::Ptr arg, args) {
const rw::common::Ptr<const FunctionBase> fct = arg.cast<const FunctionBase>();
if (!fct.isNull()) {
if (fct->getName() == "List")
_data.push_back(List::fromExpression(*fct));
else
_data.push_back(arg);
} else {
_data.push_back(arg);
}
}
}
List::List(const std::list<rw::common::Ptr<const Expression> >& args):
FunctionBase("List")
{
BOOST_FOREACH(const rw::common::Ptr<const Expression> arg, args) {
const rw::common::Ptr<const FunctionBase> fct = arg.cast<const FunctionBase>();
if (!fct.isNull()) {
if (fct->getName() == "List")
_data.push_back(List::fromExpression(*fct));
else
_data.push_back(arg->clone());
} else {
_data.push_back(arg->clone());
}
}
}
List::~List() {
}
std::list<rw::common::Ptr<const Mathematica::Expression> > List::getArguments() const {
std::list<rw::common::Ptr<const Mathematica::Expression> > res;
BOOST_FOREACH(const Expression::Ptr e, _data) {
res.push_back(e);
}
return res;
}
Mathematica::Expression::Ptr List::operator[](std::size_t i) {
return _data[i];
}
rw::common::Ptr<const Mathematica::Expression> List::operator[](std::size_t i) const {
return _data[i];
}
List& List::add(Expression::Ptr expression) {
_data.push_back(expression);
return *this;
}
List& List::add(const Mathematica::AutoExpression& expression) {
_data.push_back(expression.expression());
return *this;
}
void List::set(std::size_t i, Expression::Ptr expression) {
_data[i] = expression;
}
Mathematica::Expression::Ptr List::clone() const {
return ownedPtr(new List(_data));
}
List::Ptr List::fromExpression(const Expression& exp) {
try {
const FunctionBase& function = dynamic_cast<const FunctionBase&>(exp);
if (function.getName() != "List")
RW_THROW("Expression does not appear to be a List.");
return ownedPtr(new List(function.getArguments()));
} catch(const std::bad_cast&) {
RW_THROW("Expression does not appear to be a function (hence it can not be a List).");
}
}
| [
"tnt@mmmi.sdu.dk"
] | tnt@mmmi.sdu.dk |
a8b102d7601f815931d7ab68ef66b3f1edb47825 | 66862c422fda8b0de8c4a6f9d24eced028805283 | /cmake-3.17.5/Source/cmGeneratorExpressionLexer.cxx | a7f090ac7e03d0b881f4a7413994b5860b723e7f | [
"BSD-3-Clause",
"MIT"
] | permissive | zhh2005757/slambook2_in_Docker | 57ed4af958b730e6f767cd202717e28144107cdb | f0e71327d196cdad3b3c10d96eacdf95240d528b | refs/heads/main | 2023-09-01T03:26:37.542232 | 2021-10-27T11:45:47 | 2021-10-27T11:45:47 | 416,666,234 | 17 | 6 | MIT | 2021-10-13T09:51:00 | 2021-10-13T09:12:15 | null | UTF-8 | C++ | false | false | 1,871 | cxx | /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGeneratorExpressionLexer.h"
cmGeneratorExpressionLexer::cmGeneratorExpressionLexer() = default;
static void InsertText(const char* upto, const char* c,
std::vector<cmGeneratorExpressionToken>& result)
{
if (upto != c) {
result.emplace_back(cmGeneratorExpressionToken::Text, upto, c - upto);
}
}
std::vector<cmGeneratorExpressionToken> cmGeneratorExpressionLexer::Tokenize(
const std::string& input)
{
std::vector<cmGeneratorExpressionToken> result;
if (input.find('$') == std::string::npos) {
result.emplace_back(cmGeneratorExpressionToken::Text, input.c_str(),
input.size());
return result;
}
const char* c = input.c_str();
const char* upto = c;
for (; *c; ++c) {
switch (*c) {
case '$':
if (c[1] == '<') {
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::BeginExpression, c,
2);
upto = c + 2;
++c;
SawBeginExpression = true;
}
break;
case '>':
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::EndExpression, c, 1);
upto = c + 1;
SawGeneratorExpression = SawBeginExpression;
break;
case ':':
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::ColonSeparator, c, 1);
upto = c + 1;
break;
case ',':
InsertText(upto, c, result);
result.emplace_back(cmGeneratorExpressionToken::CommaSeparator, c, 1);
upto = c + 1;
break;
default:
break;
}
}
InsertText(upto, c, result);
return result;
}
| [
"594353397@qq.com"
] | 594353397@qq.com |
3c72a19688066f63516c18c6252a1d2d728af02e | 1bd56891d75b9e386453bf54a41caa9f08fe80b7 | /crossed_matching/396696_WA.cpp | adf77dfacf9859ab9bcdd9961c0b02e3f55489d9 | [] | no_license | ItzKaserine/Dovelet | 9f7dda5435bcb5704fdedfbfce0a7100659ba240 | ba24d6dfe8d69d00d0e22e5e644f5609016c4695 | refs/heads/master | 2023-05-26T13:08:41.772253 | 2017-10-09T07:04:13 | 2017-10-09T07:04:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | cpp | #include<iostream>
#include<algorithm>
using namespace std;
int a[10000];
int b[10000];
int n,m;
struct A {
int a,b,c,d;
bool operator<(const A &dd) const {
return min(a,c) < min(dd.a,dd.c);
}
};
int dp[200][200];
A input[100000];
int ind=1;
int main() {
cin>>n>>m;
int i,j,k,l;
for(i=1;i<=n;i++) cin>>a[i];
for(i=1;i<=m;i++) cin>>b[i];
int ans=0;
for(i=1;i<=n;i++) { //a
for(j=1;j<=m;j++) {//b
dp[i][j] = max(dp[i][j],dp[i-1][j-1]);
for(k=1;k<j;k++) {
for(l=1;l<i;l++) {
int g = (a[l] == b[j] && a[i] == b[k] && a[l] != a[i]);
if(dp[l-1][k-1]+g*2 > dp[i][j]) dp[i][j] = dp[l-1][k-1]+g*2;
}
}
if(dp[i][j] > ans) ans = dp[i][j];
}
}
cout<<ans;
} | [
"conankun@gatech.edu"
] | conankun@gatech.edu |
67414beeee0d61625a610a7796df312884518feb | 38b15ffd75dc2b44c644c72e7012bbd240533775 | /tests/net_interface_test.cpp | ace30fab1083a63ededd994108c134dd5986a5be | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | brettdh/libcmm | 8ef3bb1302badb28622fc0b18a4b6de33d3a4c0c | 66745da7ff64261713dda7de7e6d3d3eae4a98d9 | refs/heads/master | 2021-01-19T20:15:55.702155 | 2015-09-16T18:01:09 | 2015-09-16T18:01:09 | 25,616,631 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,364 | cpp | #include <cppunit/Test.h>
#include <cppunit/TestAssert.h>
#include "net_interface_test.h"
#include "net_interface.h"
#include "libcmm_net_restriction.h"
#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
CPPUNIT_TEST_SUITE_REGISTRATION(NetInterfaceTest);
void
NetInterfaceTest::testNetworkFitsRestriction()
{
struct net_interface wifi, threeg, server;
memset(&wifi, 0, sizeof(wifi));
memset(&threeg, 0, sizeof(threeg));
memset(&server, 0, sizeof(server));
wifi.type = NET_TYPE_WIFI;
threeg.type = NET_TYPE_THREEG;
inet_aton("1.2.3.4", &wifi.ip_addr);
inet_aton("5.6.7.8", &threeg.ip_addr);
inet_aton("9.9.9.9", &server.ip_addr);
CPPUNIT_ASSERT(network_fits_restriction(CMM_LABEL_WIFI_ONLY, wifi, server));
CPPUNIT_ASSERT(network_fits_restriction(CMM_LABEL_WIFI_ONLY, server, wifi));
CPPUNIT_ASSERT(!network_fits_restriction(CMM_LABEL_WIFI_ONLY, threeg, server));
CPPUNIT_ASSERT(!network_fits_restriction(CMM_LABEL_WIFI_ONLY, server, threeg));
CPPUNIT_ASSERT(network_fits_restriction(CMM_LABEL_THREEG_ONLY, threeg, server));
CPPUNIT_ASSERT(network_fits_restriction(CMM_LABEL_THREEG_ONLY, server, threeg));
CPPUNIT_ASSERT(!network_fits_restriction(CMM_LABEL_THREEG_ONLY, wifi, server));
CPPUNIT_ASSERT(!network_fits_restriction(CMM_LABEL_THREEG_ONLY, server, wifi));
}
| [
"brettdh@eecs.umich.edu"
] | brettdh@eecs.umich.edu |
3801f6aa0b22cafeb2ad8ec6219ddd11c422a478 | d2b1bc502d944b575ba61d23a316b43c2a10df53 | /resu/WebCache/WebCacheClient.cpp | 97a757141605e70bfc84b55a1b4452407948dde3 | [] | no_license | BackupTheBerlios/resurrection | d13e3c6794ed063747fe2a768084cee5dad78627 | 3028fe7600b738b748870605ec374a81688d6f6f | refs/heads/master | 2016-09-06T05:13:04.021102 | 2005-11-05T13:40:13 | 2005-11-05T13:40:13 | 40,039,510 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 48,842 | cpp | //this file is part of eMule
//Copyright (C)2004 Merkur ( merkur-@users.sourceforge.net / http://www.emule-project.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., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "stdafx.h"
#include <wininet.h>
#include "emule.h"
#include "UrlClient.h"
#include "PartFile.h"
#include "SafeFile.h"
#include "Statistics.h"
#include "Packets.h"
#include "ListenSocket.h"
#include "Preferences.h"
#include "OtherFunctions.h"
#include "SharedFileList.h"
#include "WebCacheSocket.h"
#include "UploadBandwidthThrottler.h"
#include "UploadQueue.h"
// yonatan http start //////////////////////////////////////////////////////////////////////////
#include "ClientList.h"
#include "WebCache.h"
#include "WebCacheProxyClient.h"
#include "WebCachedBlockList.h"
#include "ClientUDPSocket.h"
#include "WebCacheOHCBManager.h"
// yonatan http end ////////////////////////////////////////////////////////////////////////////
// Superlexx - Proxy AutoDetect - start ////////////////////////////////////////////////////////
//#include "ws2tcpip.h"
// Superlexx - Proxy AutoDetect - end //////////////////////////////////////////////////////////
//KTS+
#include "version.h"
#include "Log.h"
#include "DownloadQueue.h"
//KTS-
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#endif
#define HTTP_STATUS_INV_RANGE 416
UINT GetWebCacheSocketUploadTimeout()
{
if (thePrefs.GetWebCacheExtraTimeout())
return DOWNLOADTIMEOUT + SEC2MS(100 + WC_SOCKETEXTRATIMEOUT); // must be lower than Upload timeout?
else
return DOWNLOADTIMEOUT + SEC2MS(100 + 30);
}
UINT GetWebCacheSocketDownloadTimeout()
{
if (thePrefs.GetWebCacheExtraTimeout())
return DOWNLOADTIMEOUT + SEC2MS(100 + WC_SOCKETEXTRATIMEOUT); // must be lower than Upload timeout?
else
return DOWNLOADTIMEOUT + SEC2MS(100); // must be lower than Upload timeout?
}
///////////////////////////////////////////////////////////////////////////////
// CWebCacheSocket
IMPLEMENT_DYNCREATE(CWebCacheSocket, CHttpClientReqSocket)
CWebCacheSocket::CWebCacheSocket(CUpDownClient* pClient)
{
ASSERT( client == NULL );
client = NULL;
m_client = pClient;
// WebCache ////////////////////////////////////////////////////////////////////////////////////
m_bReceivedHttpClose = false; // 'Connection: close' detector
}
CWebCacheSocket::~CWebCacheSocket()
{
DetachFromClient();
}
void CWebCacheSocket::DetachFromClient()
{
if (GetClient())
{
// faile safe, should never be needed
if (GetClient()->m_pWCDownSocket == this){
ASSERT(0);
GetClient()->m_pWCDownSocket = NULL;
//GetClient()->SetWebCacheDownState( WCDS_NONE ); //FiX?
}
if (GetClient()->m_pWCUpSocket == this){
ASSERT(0);
GetClient()->m_pWCUpSocket = NULL;
//GetClient()->SetWebCacheUpState( WCUS_NONE ); //FiX?
}
}
}
void CWebCacheSocket::Safe_Delete()
{
DetachFromClient();
CClientReqSocket::Safe_Delete();
m_client = NULL;
ASSERT( GetClient() == NULL );
ASSERT( client == NULL );
}
void CWebCacheSocket::OnSend(int nErrorCode)
{
// Debug("%08x %hs\n", this, __FUNCTION__);
// PC-TODO: We have to keep the ed2k connection of a client as long active as we are using
// the associated WebCache connection -> Update the timeout of the ed2k socket.
if (nErrorCode == 0 && GetClient() && GetClient()->socket)
GetClient()->socket->ResetTimeOutTimer();
CHttpClientReqSocket::OnSend(nErrorCode);
}
void CWebCacheSocket::OnReceive(int nErrorCode)
{
// Debug("%08x %hs\n", this, __FUNCTION__);
// PC-TODO: We have to keep the ed2k connection of a client as long active as we are using
// the associated WebCache connection -> Update the timeout of the ed2k socket.
if (nErrorCode == 0 && GetClient() && GetClient()->socket)
GetClient()->socket->ResetTimeOutTimer();
CHttpClientReqSocket::OnReceive(nErrorCode);
}
void CWebCacheSocket::OnError(int nErrorCode)
{
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
CHttpClientReqSocket::OnError(nErrorCode);
}
bool CWebCacheSocket::ProcessHttpResponse()
{
ASSERT(0);
return false;
}
bool CWebCacheSocket::ProcessHttpResponseBody(const BYTE* pucData, UINT size)
{
ASSERT(0);
return false;
}
bool CWebCacheSocket::ProcessHttpRequest()
{
ASSERT(0);
return false;
}
// yonatan http start //////////////////////////////////////////////////////////////////////////
void CWebCacheSocket::ResetTimeOutTimer()
{
timeout_timer = ::GetTickCount();
if( GetClient() ) {
if( GetClient()->socket ) {
ASSERT( !GetClient()->socket->IsKindOf( RUNTIME_CLASS( CWebCacheSocket ) ) );
GetClient()->socket->ResetTimeOutTimer();
}
}
}
// yonatan http end ////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// CWebCacheDownSocket
IMPLEMENT_DYNCREATE(CWebCacheDownSocket, CWebCacheSocket)
CWebCacheDownSocket::CWebCacheDownSocket(CUpDownClient* pClient)
: CWebCacheSocket(pClient)
{
ProxyConnectionCount++; // yonatan http
m_bProxyConnCountFlag = false; //jp correct downsocket count
blocksloaded = 0; //count blocksloaded for each proxy
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("new CWebCacheDownSocket: ProxyConnectionCount=%u"), ProxyConnectionCount );
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
}
CWebCacheDownSocket::~CWebCacheDownSocket()
{
if (m_bProxyConnCountFlag == false)
{
m_bProxyConnCountFlag = true;
ProxyConnectionCount--; // yonatan http
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("deleted CWebCacheDownSocket: ProxyConnectionCount=%u"), ProxyConnectionCount );
}
ASSERT( ProxyConnectionCount != -1 ); // yonatan http
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
DetachFromClient();
}
// decreases ProxyConnectionCount and calls CWebCacheSocket::Safe_Delete()
void CWebCacheDownSocket::Safe_Delete()
{
if (m_bProxyConnCountFlag == false)
{
m_bProxyConnCountFlag = true;
ProxyConnectionCount--;
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("deleted CWebCacheDownSocket: ProxyConnectionCount=%u"), ProxyConnectionCount );
}
ASSERT( ProxyConnectionCount != -1 );
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
CWebCacheSocket::Safe_Delete();
}
void CWebCacheDownSocket::OnConnect(int nErrorCode)
{
ASSERT( GetClient() );
if (0 != nErrorCode)
{
if( GetClient() ) // just in case
if (GetClient()->IsProxy())
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(false, _T("Connection to proxy failed. Trying next block"));
if (SINGLEProxyClient->ProxyClientIsBusy())
SINGLEProxyClient->DeleteBlock();
WebCachedBlockList.TryToDL();
}
}
CHttpClientReqSocket::OnConnect(nErrorCode);
}
void CWebCacheDownSocket::DetachFromClient()
{
if (GetClient())
{
if (GetClient()->m_pWCDownSocket == this)
GetClient()->m_pWCDownSocket = NULL;
}
}
void CWebCacheDownSocket::OnClose(int nErrorCode)
{
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
DisableDownloadLimit(); // receive pending data
CUpDownClient* pCurClient = GetClient();
if (pCurClient && pCurClient->m_pWCDownSocket != this)
pCurClient = NULL;
CWebCacheSocket::OnClose(nErrorCode);
if (pCurClient)
{
ASSERT( pCurClient->m_pWCDownSocket == NULL );
// this callback is only invoked if that closed socket was(!) currently attached to the client
pCurClient->OnWebCacheDownSocketClosed(nErrorCode);
}
}
bool CWebCacheDownSocket::ProcessHttpResponse()
{
if (GetClient() == NULL)
throw CString(__FUNCTION__ " - No client attached to HTTP socket");
if (!GetClient()->ProcessWebCacheDownHttpResponse(m_astrHttpHeaders))
return false;
return true;
}
bool CWebCacheDownSocket::ProcessHttpResponseBody(const BYTE* pucData, UINT uSize)
{
if (GetClient() == NULL)
throw CString(__FUNCTION__ " - No client attached to HTTP socket");
GetClient()->ProcessWebCacheDownHttpResponseBody(pucData, uSize);
return true;
}
bool CWebCacheDownSocket::ProcessHttpRequest()
{
throw CString(_T("Unexpected HTTP request received"));
return false;
}
///////////////////////////////////////////////////////////////////////////////
// CWebCacheUpSocket
IMPLEMENT_DYNCREATE(CWebCacheUpSocket, CWebCacheSocket)
CWebCacheUpSocket::CWebCacheUpSocket(CUpDownClient* pClient)
: CWebCacheSocket(pClient)
{
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
}
CWebCacheUpSocket::~CWebCacheUpSocket()
{
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
theApp.uploadBandwidthThrottler->RemoveFromAllQueues(this); // Superlexx - from 0.44a PC code
DetachFromClient();
}
void CWebCacheUpSocket::DetachFromClient()
{
if (GetClient())
{
if (GetClient()->m_pWCUpSocket == this) {
GetClient()->m_pWCUpSocket = NULL;
theApp.uploadBandwidthThrottler->RemoveFromStandardList(this);
//GetClient()->SetWebCacheUpState( WCUS_NONE ); //FiX?
}
}
}
void CWebCacheUpSocket::OnSend(int nErrorCode)
{
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
CWebCacheSocket::OnSend(nErrorCode);
}
void CWebCacheUpSocket::OnClose(int nErrorCode)
{
Debug(_T("%08x %hs\n"), this, __FUNCTION__);
CWebCacheSocket::OnClose(nErrorCode);
if (GetClient())
{
if (GetClient()->m_pWCUpSocket == this)
{
DetachFromClient();
// this callback is only invoked if that closed socket was(!) currently attached to the client
//GetClient()->OnWebCacheUpSocketClosed(nErrorCode);
}
}
}
bool CWebCacheUpSocket::ProcessHttpResponse()
{
if (GetClient() == NULL)
throw CString(__FUNCTION__ " - No client attached to HTTP socket");
if (!GetClient()->ProcessWebCacheUpHttpResponse(m_astrHttpHeaders))
return false;
return true;
}
bool CWebCacheUpSocket::ProcessHttpResponseBody(const BYTE* pucData, UINT uSize)
{
throw CString(_T("Unexpected HTTP body in response received"));
return false;
}
bool CWebCacheUpSocket::ProcessHttpRequest()
{
if (GetClient() == NULL)
throw CString(__FUNCTION__ " - No client attached to HTTP socket");
// DFA
// yonatan http - extract client from header
uint32 id;
for (int i = 0; i < m_astrHttpHeaders.GetCount(); i++)
{
const CStringA& rstrHdr = m_astrHttpHeaders.GetAt(i);
if (_strnicmp(rstrHdr, "Pragma: IDs=", 12) == 0)
{
try
{
int posStart = 0;
rstrHdr.Tokenize("=", posStart);
int posEnd = posStart;
rstrHdr.Tokenize("|", posEnd);
id = atoi(rstrHdr.Mid(posStart, posEnd-posStart));
}
catch(...)
{
DebugHttpHeaders(m_astrHttpHeaders);
TRACE(_T("*** Unexpected HTTP %hs\n"), rstrHdr);
return false;
}
}
}
CUpDownClient* m_client_new = theApp.uploadqueue->FindClientByWebCacheUploadId( id );
if( !m_client_new ) {
DebugHttpHeaders(m_astrHttpHeaders);
TRACE(_T("*** Http GET from unknown client, webcache-id: %u"), id );
return false;
}
if( !m_client_new->SupportsWebCache() ) {
DebugHttpHeaders(m_astrHttpHeaders);
TRACE(_T("*** Http GET from non-webcache client: %s"), client->DbgGetClientInfo() );
return false;
}
// DFA
/* if( GetClient()->m_pWCUpSocket ) {
ASSERT(GetClient()->m_pWCUpSocket != this);
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(false, _T("*** Http GET on standard listensocket from client with established http socket: %s"), client->DbgGetClientInfo() );
GetClient()->m_pWCUpSocket->Safe_Delete();
GetClient()->m_pWCUpSocket = 0;
}*/
if (m_client != m_client_new) // HTTP request of another client arrived here
{
TRACE(_T("*** DFA: switching socket from ") + CString(m_client->GetUserName()) + _T(" to ") + CString(m_client_new->GetUserName()) + _T("\n"));
// Xchange the sockets
//CWebCacheUpSocket* tmp = m_client->m_pWCUpSocket;
m_client->m_pWCUpSocket = m_client_new->m_pWCUpSocket;
if (m_client->m_pWCUpSocket)
m_client->m_pWCUpSocket->SetClient(m_client);
//m_client_new->m_pWCUpSocket = this;
}
m_client = m_client_new; // set the (maybe new) owner in the class variable
GetClient()->m_pWCUpSocket = this;
UINT uHttpRes = GetClient()->ProcessWebCacheUpHttpRequest(m_astrHttpHeaders);
if (uHttpRes != HTTP_STATUS_OK){
CStringA strResponse;
strResponse.AppendFormat("HTTP/1.1 %u\r\n", uHttpRes);
strResponse.AppendFormat("Content-Length: 0\r\n");
strResponse.AppendFormat("\r\n");
if (thePrefs.GetDebugClientTCPLevel() > 0)
Debug(_T("Sending WebCache HTTP response:\n%hs"), strResponse);
CRawPacket* pHttpPacket = new CRawPacket(strResponse);
theStats.AddUpDataOverheadFileRequest(pHttpPacket->size);
SendPacket(pHttpPacket);
SetHttpState(HttpStateUnknown);
// PC-TODO: Problem, the packet which was queued for sending will not be sent, if we immediatly
// close that socket. Currently I just let it timeout.
//return false;
SetTimeOut(SEC2MS(30));
return true;
}
GetClient()->SetHttpSendState(0);
SetHttpState(HttpStateRecvExpected);
GetClient()->SetUploadState(US_UPLOADING);
return true;
}
// attaches socket to client and calls ProcessHttpPacket
bool CWebCacheUpSocket::ProcessFirstHttpGet( const char* header, UINT uSize )
{
// yonatan http - extract client from header
LPBYTE pBody = NULL;
int iSizeBody = 0;
ClearHttpHeaders();
ProcessHttpHeaderPacket(header, uSize, pBody, iSizeBody);
uint32 id;
for (int i = 0; i < m_astrHttpHeaders.GetCount(); i++)
{
const CStringA& rstrHdr = m_astrHttpHeaders.GetAt(i);
//JP proxy configuration test START
if (_strnicmp(rstrHdr, "GET /encryptedData/WebCachePing.htm HTTP/1.1", 30) == 0)
{
if (thePrefs.expectingWebCachePing)
{
thePrefs.expectingWebCachePing = false;
AfxMessageBox(_T("Proxy configuration Test Successfull"));
AddLogLine(false, _T("Proxy configuration Test Successfull"));
}
else
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(false, _T("WebCachePing received, but no test in progress"));
return true; //everything that needs to be done with this packet has been done
}
//JP proxy configuration test END
if (_strnicmp(rstrHdr, "Pragma: IDs=", 12) == 0)
{
//if (sscanf((LPCSTR)rstrHdr+22, _T("%u"), &id) != 1){
try
{
int posStart = 0;
rstrHdr.Tokenize("=", posStart);
int posEnd = posStart;
rstrHdr.Tokenize("|", posEnd);
id = atoi(rstrHdr.Mid(posStart, posEnd-posStart));
}
catch(...)
{
DebugHttpHeaders(m_astrHttpHeaders);
TRACE(_T("*** Unexpected HTTP %hs\n"), rstrHdr);
return false;
}
}
}
m_client = theApp.uploadqueue->FindClientByWebCacheUploadId( id );
if( !GetClient() ) {
DebugHttpHeaders(m_astrHttpHeaders);
TRACE(_T("*** Http GET from unknown client, webcache-id: %u"), id );
return false;
}
if( !GetClient()->SupportsWebCache() ) {
DebugHttpHeaders(m_astrHttpHeaders);
TRACE(_T("*** Http GET from non-webcache client: %s"), m_client->DbgGetClientInfo() );
return false;
}
if( GetClient()->m_pWCUpSocket ) {
ASSERT(GetClient()->m_pWCUpSocket != this);
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(false, _T("*** Http GET on standard listensocket from client with established http socket: %s"), m_client->DbgGetClientInfo() );
GetClient()->m_pWCUpSocket->Safe_Delete();
GetClient()->m_pWCUpSocket = 0;
}
GetClient()->m_pWCUpSocket = this;
SetTimeOut(GetWebCacheSocketUploadTimeout()); //MORPH - Added by SiRoB, WebCache Fix
ClearHttpHeaders();
SetHttpState( HttpStateRecvExpected );
//theApp.uploadBandwidthThrottler->AddToStandardList(0, this); // Superlexx - from 0.44a PC code guess
return( ProcessHttpPacket( (BYTE*)header, uSize ) );
}
///////////////////////////////////////////////////////////////////////////////
// WebCache client
bool CUpDownClient::ProcessWebCacheDownHttpResponse(const CStringAArray& astrHeaders)
{
// error might arrive after client-socket has timed out - ASSERT( GetDownloadState() == DS_DOWNLOADING );
// ASSERT( m_eWebCacheDownState == WCDS_WAIT_CACHE_REPLY || m_eWebCacheDownState == WCDS_WAIT_CLIENT_REPLY );
if( m_eWebCacheDownState != WCDS_WAIT_CACHE_REPLY && m_eWebCacheDownState != WCDS_WAIT_CLIENT_REPLY )
throw CString(_T("Failed to process HTTP response - Invalid client webcache download state"));
if (reqfile == NULL)
throw CString(_T("Failed to process HTTP response - No 'reqfile' attached"));
if (GetDownloadState() != DS_DOWNLOADING && !IsProxy())
throw CString(_T("Failed to process HTTP response - Invalid client download state"));
if (astrHeaders.GetCount() == 0)
throw CString(_T("Unexpected HTTP response - No headers available"));
///JP check for connection: close header START///
for (int i = 1; i < astrHeaders.GetCount(); i++)
{
const CStringA& rstrHdr = astrHeaders.GetAt(i);
if ( rstrHdr.Left( 11 ).CompareNoCase( "Connection:" ) == 0 )
{
int pos = 11;
while( pos > 0 && pos < rstrHdr.GetLength() )
{
CStringA token = rstrHdr.Tokenize( ",", pos );
token.Trim();
if( token.CompareNoCase( "close" ) == 0 )
{
ASSERT( m_pWCDownSocket ); // yonatan tmp
AddDebugLogLine( false, _T("Received a \"Connection: close\" header on a WCDownSocket") ); // yonatan tmp
if( m_pWCDownSocket ) // just in case
m_pWCDownSocket->m_bReceivedHttpClose = true;
break;
}
}
}
if ( rstrHdr.Left( 17 ).CompareNoCase( "Proxy-Connection:" ) == 0 )
{
int pos = 17;
while( pos > 0 && pos < rstrHdr.GetLength() )
{
CStringA token = rstrHdr.Tokenize( ",", pos );
token.Trim();
if( token.CompareNoCase( "close" ) == 0 )
{
ASSERT( m_pWCDownSocket ); // yonatan tmp
AddDebugLogLine( false, _T("Received a \"Proxy-Connection: close\" header on a WCDownSocket") ); // yonatan tmp
if( m_pWCDownSocket ) // just in case
m_pWCDownSocket->m_bReceivedHttpClose = true;
break;
}
}
}
}
//JP check for Connection: close header END///
const CStringA& rstrHdr = astrHeaders.GetAt(0);
UINT uHttpMajVer, uHttpMinVer, uHttpStatusCode;
if (sscanf(rstrHdr, "HTTP/%u.%u %u", &uHttpMajVer, &uHttpMinVer, &uHttpStatusCode) != 3){
CString strError;
strError.Format(_T("Unexpected HTTP response: \"%hs\""), rstrHdr);
throw strError;
}
if (uHttpMajVer != 1 || (uHttpMinVer != 0 && uHttpMinVer != 1)){
CString strError;
strError.Format(_T("Unexpected HTTP version: \"%hs\""), rstrHdr);
throw strError;
}
bool bExpectData = uHttpStatusCode == HTTP_STATUS_OK; // || uHttpStatusCode == HTTP_STATUS_PARTIAL_CONTENT;
if (!bExpectData){
CString strError;
strError.Format(_T("Unexpected HTTP status code \"%u\""), uHttpStatusCode);
throw strError;
}
UINT uContentLength = 0;
for (int i = 1; i < astrHeaders.GetCount(); i++)
{
const CStringA& rstrHdr = astrHeaders.GetAt(i);
if (bExpectData && rstrHdr.Left( 15 ).CompareNoCase( "Content-Length:" ) == 0)
{
uContentLength = atoi((LPCSTR)rstrHdr + 15);
if (uContentLength > m_uReqEnd - m_uReqStart + 1){
CString strError;
strError.Format(_T("Unexpected HTTP header field \"%hs\""), rstrHdr);
throw strError;
}
}
else if ( rstrHdr.Left( 7 ).CompareNoCase( "Server:" ) == 0 )
{
if (IsProxy())
m_strClientSoftware = rstrHdr.Mid(7).Trim();
}
}
if (uContentLength != m_uReqEnd - m_uReqStart + 1){
if (thePrefs.GetDebugClientTCPLevel() <= 0)
DebugHttpHeaders(astrHeaders);
CString strError;
strError.Format(_T("Unexpected HTTP response - Content-Length mismatch"));
throw strError;
}
// SetDownloadState(DS_DOWNLOADING);
//PC-TODO: Where does this flag need to be cleared again?
// When client is allowed to send more block requests?
// Also, we have to support both type of downloads within in the same connection.
// WC-TODO: Find out when, if and where this is changed. Should this line be here?
if (IsProxy())
SetWebCacheDownState(WCDS_DOWNLOADINGFROM);
else
SetWebCacheDownState(WCDS_DOWNLOADINGVIA);
return true;
}
bool CUpDownClient::ProcessWebCacheDownHttpResponseBody(const BYTE* pucData, UINT uSize)
{
ProcessHttpBlockPacket(pucData, uSize);
return true;
}
UINT CUpDownClient::ProcessWebCacheUpHttpRequest(const CStringAArray& astrHeaders)
{
// yonatan ASSERT( m_eWebCacheUpState == WCUS_WAIT_CACHE_REPLY );
if (astrHeaders.GetCount() == 0)
return HTTP_STATUS_BAD_REQUEST;
const CStringA& rstrHdr = astrHeaders.GetAt(0);
char szUrl[1024];
UINT uHttpMajVer, uHttpMinVer;
if (sscanf(rstrHdr, "GET %1023s HTTP/%u.%u", szUrl, &uHttpMajVer, &uHttpMinVer) != 3){
DebugHttpHeaders(astrHeaders);
return HTTP_STATUS_BAD_REQUEST;
}
if (uHttpMajVer != 1 || (uHttpMinVer != 0 && uHttpMinVer != 1)){
DebugHttpHeaders(astrHeaders);
return HTTP_STATUS_BAD_REQUEST;
}
char b64_marc4_szFileHash[23]; // hm, why not 24? zero byte at the end
DWORD dwRangeStart = 0;
DWORD dwRangeEnd = 0;
// webcache url
if (sscanf(szUrl, "/encryptedData/%u-%u/%22s", &dwRangeStart, &dwRangeEnd, b64_marc4_szFileHash ) != 3){ // Superlexx - encryption : shorter file hash due to base64 coding, new URL format
DebugHttpHeaders(astrHeaders);
return HTTP_STATUS_BAD_REQUEST;
}
////// Superlexx - encryption - start ////////////////////////////////////////////////////////////////
int numberOfHeaders = astrHeaders.GetSize();
bool slaveKeyFound = false;
CStringA buffer;
for (int i=0; i<numberOfHeaders; i++)
{
buffer = astrHeaders.GetAt(i);
if (buffer.Left(8) == "Pragma: ") // pragma found
{
int slaveKeyPragmaPos = 0;
buffer.Tokenize("|", slaveKeyPragmaPos); // find the slaveKey-pragma
CStringA b64_localSlaveKey = buffer.Mid(slaveKeyPragmaPos, WC_B64_KEYLENGTH);
if (!WC_b64_Decode(b64_localSlaveKey, Crypt.localSlaveKey, WC_KEYLENGTH)) // base64 -> byte*
{
DebugHttpHeaders(astrHeaders);
TRACE(_T("*** Bad slaveKey received in %s\n"), buffer);
return HTTP_STATUS_BAD_REQUEST;
}
slaveKeyFound = true;
}
// else if ( buffer == "Connection: close" )
else if ( buffer.Left( 11 ).CompareNoCase( "Connection:" ) == 0 )
{
int pos = 11;
while( pos > 0 && pos < buffer.GetLength() ) {
CStringA token = buffer.Tokenize( ",", pos );
token.Trim();
if( token.CompareNoCase( "close" ) == 0 ) {
ASSERT( m_pWCUpSocket ); // yonatan tmp
AddDebugLogLine( false, _T("Received a \"Connection: close\" header on a WCUpSocket") ); // yonatan tmp
if( m_pWCUpSocket ) // just in case
m_pWCUpSocket->m_bReceivedHttpClose = true; // WC-TODO: Safe_Delete socket after block xfer
break;
}
}
}
else if ( buffer.Left( 17 ).CompareNoCase( "Proxy-Connection:" ) == 0 )
{
int pos = 17;
while( pos > 0 && pos < buffer.GetLength() ) {
CStringA token = buffer.Tokenize( ",", pos );
token.Trim();
if( token.CompareNoCase( "close" ) == 0 ) {
ASSERT( m_pWCUpSocket ); // yonatan tmp
AddDebugLogLine( false, _T("Received a \"Proxy-Connection: close\" header on a WCUpSocket") ); // yonatan tmp
if( m_pWCUpSocket ) // just in case
m_pWCUpSocket->m_bReceivedHttpClose = true; // WC-TODO: Safe_Delete socket after block xfer
break;
}
}
}
}
if (!slaveKeyFound)
{
DebugHttpHeaders(astrHeaders);
TRACE(_T("*** No slaveKey received in %s\n"), szUrl);
return HTTP_STATUS_BAD_REQUEST;
}
byte marc4_szFileHash[16];
if (!WC_b64_Decode(b64_marc4_szFileHash, marc4_szFileHash, 16))
{
DebugHttpHeaders(astrHeaders);
TRACE(_T("*** fileHash decoding failed in %s\n"), szUrl);
return HTTP_STATUS_BAD_REQUEST;
}
Crypt.RefreshLocalKey();
Crypt.encryptor.SetKey(Crypt.localKey, WC_KEYLENGTH);
Crypt.encryptor.ProcessString(marc4_szFileHash, 16); // use encryptor as decryptor ;)
uchar aucUploadFileID[16];
md4cpy(aucUploadFileID, marc4_szFileHash);
////// Superlexx - encryption - end //////////////////////////////////////////////////////////////////
/*uchar aucUploadFileID[16];
if (!strmd4(szFileHash, aucUploadFileID)){
DebugHttpHeaders(astrHeaders);
return HTTP_STATUS_BAD_REQUEST;
}*/
if (md4cmp(aucUploadFileID, requpfileid) != 0) // client sending an HTTP request for wrong file
{
DebugHttpHeaders(astrHeaders);
return HTTP_STATUS_FORBIDDEN;
}
CKnownFile* pUploadFile = theApp.sharedfiles->GetFileByID(aucUploadFileID);
if (pUploadFile == NULL){
DebugHttpHeaders(astrHeaders);
return HTTP_STATUS_NOT_FOUND;
}
//MORPH START - Changed by SiRoB, WebCache Fix
/*
if (dwRangeEnd <= dwRangeStart){ // && dwRangeEnd-dwRangeStart <= MAX_WEBCACHE_BLOCK_SIZE ???
*/
if (dwRangeEnd > pUploadFile->GetFileSize() - 1)
dwRangeEnd = pUploadFile->GetFileSize() - 1;
if (dwRangeEnd < dwRangeStart){
//MORPH END - Changed by SiRoB, WebCache Fix
DebugHttpHeaders(astrHeaders);
TRACE(_T("*** Bad range in URL %s\n"), szUrl);
return HTTP_STATUS_INV_RANGE;
}
//PC-TODO: Where does this flag need to be cleared again?
// When client is removed from uploading list?
// When client is allowed to send more block requests?
// everything is setup for uploading with WebCache.
SetWebCacheUpState(WCUS_UPLOADING);
Requested_Block_Struct* reqblock = new Requested_Block_Struct;
reqblock->StartOffset = dwRangeStart;
reqblock->EndOffset = dwRangeEnd + 1;
md4cpy(reqblock->FileID, aucUploadFileID);
reqblock->transferred = 0;
AddReqBlock(reqblock);
return HTTP_STATUS_OK;
}
bool CUpDownClient::ProcessWebCacheUpHttpResponse(const CStringAArray& astrHeaders)
{
// yonatan ASSERT( m_eWebCacheUpState == WCUS_WAIT_CACHE_REPLY );
if (astrHeaders.GetCount() == 0)
throw CString(_T("Unexpected HTTP response - No headers available"));
const CStringA& rstrHdr = astrHeaders.GetAt(0);
UINT uHttpMajVer, uHttpMinVer, uHttpStatusCode;
if (sscanf(rstrHdr, "HTTP/%u.%u %u", &uHttpMajVer, &uHttpMinVer, &uHttpStatusCode) != 3){
CString strError;
strError.Format(_T("Unexpected HTTP response: \"%hs\""), rstrHdr);
throw strError;
}
if (uHttpMajVer != 1 || (uHttpMinVer != 0 && uHttpMinVer != 1)){
CString strError;
strError.Format(_T("Unexpected HTTP version: \"%hs\""), rstrHdr);
throw strError;
}
CString strError;
strError.Format(_T("Unexpected HTTP status code \"%u\""), uHttpStatusCode);
throw strError;
return false;
}
bool CUpDownClient::SendWebCacheBlockRequests()
{
//JP test if proxy is working
if (thePrefs.ses_PROXYREQUESTS>100 && thePrefs.ses_successfullPROXYREQUESTS == 0) //disable webcache for this session if more than 100 blocks were tried withouth success
{
thePrefs.WebCacheDisabledThisSession = true;
AfxMessageBox(_T("Your Proxy server is not responding to your requests. Please check your webcachesettings."));
return false;
}
Crypt.useNewKey = true; // moved here from SendBlockRequests()
ASSERT( !m_PendingBlocks_list.IsEmpty() );
USES_CONVERSION;
ASSERT( GetDownloadState() == DS_DOWNLOADING );
m_dwLastBlockReceived = ::GetTickCount();
if (reqfile == NULL)
throw CString(_T("Failed to send block requests - No 'reqfile' attached"));
//JP START delete the socket if a Connection: close was received or blocklimit reached
if( m_pWCDownSocket)
if (m_pWCDownSocket->m_bReceivedHttpClose
||(thePrefs.GetWebCacheBlockLimit() != 0 && m_pWCDownSocket->blocksloaded >= thePrefs.GetWebCacheBlockLimit()))
{
m_pWCDownSocket->Safe_Delete();
}
//JP END
if( m_pWCDownSocket == NULL ) {
m_pWCDownSocket = new CWebCacheDownSocket(this);
m_pWCDownSocket->SetTimeOut(GetWebCacheSocketDownloadTimeout());
if (!m_pWCDownSocket->Create()){
m_pWCDownSocket->Safe_Delete();
m_pWCDownSocket = 0;
return false;
}
}
if( !m_pWCDownSocket->IsConnected() ) {
SOCKADDR_IN sockAddr = {0};
sockAddr.sin_family = AF_INET;
sockAddr.sin_port = htons( thePrefs.WebCacheIsTransparent() ? 80 : thePrefs.webcachePort ); // Superlexx - TPS
sockAddr.sin_addr.S_un.S_addr = thePrefs.WebCacheIsTransparent() ? GetIP() : ResolveWebCacheName(); // Superlexx - TPS
if (sockAddr.sin_addr.S_un.S_addr == 0) //webcache name could not be resolved
return false;
m_pWCDownSocket->WaitForOnConnect(); // Superlexx - from 0.44a PC code
m_pWCDownSocket->Connect((SOCKADDR*)&sockAddr, sizeof sockAddr);
}
POSITION pos = m_PendingBlocks_list.GetHeadPosition();
Pending_Block_Struct* pending = m_PendingBlocks_list.GetNext(pos);
ASSERT( pending->block->StartOffset <= pending->block->EndOffset );
pending->fZStreamError = 0;
pending->fRecovered = 0;
m_uReqStart = pending->block->StartOffset;
m_uReqEnd = pending->block->EndOffset;
m_nUrlStartPos = m_uReqStart;
// Superlexx - encryption - start ////////////////////////////////////////////////////////////
CStringA b64_remoteSlaveKey;
GenerateKey(Crypt.remoteSlaveKey);
WC_b64_Encode(Crypt.remoteSlaveKey, WC_KEYLENGTH, b64_remoteSlaveKey);
Crypt.RefreshRemoteKey();
Crypt.decryptor.SetKey(Crypt.remoteKey, WC_KEYLENGTH);
const uchar* fileHash = reqfile->GetFileHash();
byte marc4_fileHash[16];
md4cpy(marc4_fileHash, fileHash);
Crypt.decryptor.ProcessString(marc4_fileHash, 16); // here we use decryptor as encryptor ;)
CStringA b64_marc4_filehash;
WC_b64_Encode(marc4_fileHash, 16, b64_marc4_filehash);
// Superlexx - encryption - end //////////////////////////////////////////////////////////////
CStringA strWCRequest;
if (thePrefs.WebCacheIsTransparent()) // Superlexx - TPS
strWCRequest.AppendFormat("GET /encryptedData/%u-%u/%s.htm HTTP/1.1\r\n",
m_uReqStart, // StartOffset
m_uReqEnd, // EndOffset
b64_marc4_filehash ); // Superlexx - encryption - encrypted filehash
else
strWCRequest.AppendFormat("GET http://%s:%u/encryptedData/%u-%u/%s.htm HTTP/1.1\r\n",
ipstrA( GetIP() ), // clients' IP
GetUserPort(), // clients' port
m_uReqStart, // StartOffset
m_uReqEnd, // EndOffset
b64_marc4_filehash ); // Superlexx - encryption - encrypted filehash
strWCRequest.AppendFormat("Host: %s:%u\r\n", ipstrA( GetIP() ), GetUserPort() ); // clients' IP and port
strWCRequest.AppendFormat("Cache-Control: max-age=0\r\n" ); // do NOT DL this from the proxy! (timeout issue)
if (thePrefs.GetWebCacheBlockLimit() != 0 && thePrefs.GetWebCacheBlockLimit() - m_pWCDownSocket->blocksloaded <= 1)
strWCRequest.AppendFormat("Connection: close\r\nProxy-Connection: close\r\n" );
else
// yonatan - removed 'Connection: keep-alive' - RFC 2068 strWCRequest.AppendFormat("Connection: keep-alive\r\nProxy-Connection: keep-alive\r\n" );
strWCRequest.AppendFormat("Proxy-Connection: keep-alive\r\n" );
strWCRequest.AppendFormat("Pragma: IDs=%u|", m_uWebCacheDownloadId);
strWCRequest.AppendFormat("%s\r\n", b64_remoteSlaveKey); // Superlexx - encryption : the remote slave key
strWCRequest.AppendFormat("User-Agent: eMule/%s %s\r\n", T2CA(theApp.m_strCurVersionLong), T2CA(MOD_VERSION));
strWCRequest.AppendFormat("\r\n");
if (thePrefs.GetDebugClientTCPLevel() > 0){
DebugSend("WebCache-GET", this, reqfile->GetFileHash());
Debug(_T(" %hs\n"), strWCRequest);
}
TRACE("HTTP GET sent:\r\n" + strWCRequest);
CRawPacket* pHttpPacket = new CRawPacket(strWCRequest);
theStats.AddUpDataOverheadFileRequest(pHttpPacket->size);
m_pWCDownSocket->SendPacket(pHttpPacket);
m_pWCDownSocket->SetHttpState(HttpStateRecvExpected);
SetWebCacheDownState(WCDS_WAIT_CLIENT_REPLY);
thePrefs.ses_PROXYREQUESTS++;
return true;
}
bool CUpDownClient::IsUploadingToWebCache() const
{
// this function should not check any socket ptrs, as the according sockets may already be closed/deleted
return m_eWebCacheUpState == WCUS_UPLOADING;
}
bool CUpDownClient::IsDownloadingFromWebCache() const
{
// this function should not check any socket ptrs, as the according sockets may already be closed/deleted
return m_eWebCacheDownState != WCDS_NONE;
}
void CUpDownClient::OnWebCacheDownSocketClosed(int nErrorCode)
{
if (nErrorCode)
return;
// restart WC download if cache just closed the connection without obvious reason
if (GetDownloadState() == DS_DOWNLOADING)
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(DLP_HIGH, false, _T("WebCache: Socket closed unexpedtedly, trying to reestablish connection"));
TRACE(_T("+++ Restarting WebCache download - socket closed\n"));
ASSERT( m_pWCDownSocket == NULL );
SetWebCacheDownState(WCDS_NONE);
if (IsProxy()) //JP fix neverending loop if the current block is not a PureGap any more
{
if (SINGLEProxyClient->ProxyClientIsBusy())
SINGLEProxyClient->DeleteBlock();
WebCachedBlockList.TryToDL();
}
else
SendWebCacheBlockRequests();
}
return;
}
void CUpDownClient::OnWebCacheDownSocketTimeout()
{
// restart WC download if cache just stalls
if (GetDownloadState() == DS_DOWNLOADING)
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(DLP_HIGH, false, _T("WebCache Error: Socket TimeOut, trying to reestablish connection"));
TRACE(_T("+++ Restarting WebCache download - socket timeout\n"));
if (m_pWCDownSocket)
{
m_pWCDownSocket->Safe_Delete();
ASSERT( m_pWCDownSocket == NULL );
}
SetWebCacheDownState(WCDS_NONE);
if (IsProxy()) //JP fix neverending loop if the current block is not a PureGap any more
{
if (SINGLEProxyClient->ProxyClientIsBusy())
SINGLEProxyClient->DeleteBlock();
WebCachedBlockList.TryToDL();
}
else
SendWebCacheBlockRequests();
}
return;
}
void CUpDownClient::SetWebCacheDownState(EWebCacheDownState eState)
{
if (m_eWebCacheDownState != eState)
{
m_eWebCacheDownState = eState;
UpdateDisplayedInfo();
if( eState == WCDS_WAIT_CLIENT_REPLY ) {
ASSERT( m_pWCDownSocket );
m_pWCDownSocket->DisableDownloadLimit();
}
}
}
void CUpDownClient::SetWebCacheUpState(EWebCacheUpState eState)
{
if (m_eWebCacheUpState != eState)
{
m_eWebCacheUpState = eState;
theApp.uploadqueue->ReSortUploadSlots(true); // Superlexx - from 0.44a PC code
UpdateDisplayedInfo();
}
}
void CUpDownClient::PublishWebCachedBlock( const Requested_Block_Struct* block )
{
POSITION OHCBpos = WC_OHCBManager.AddWCBlock( thePrefs.WebCacheIsTransparent() ? 0 : ResolveWebCacheName(),
GetIP(),
GetUserPort(),
reqfile->GetFileHash(),
block->StartOffset,
block->EndOffset,
Crypt.remoteKey);
POSITION pos = reqfile->srclist.GetHeadPosition();
const uchar* filehash;
uint16 part = block->StartOffset / PARTSIZE;
uint32 nrOfSentOHCBs = 0;
filehash = reqfile->GetFileHash();
while( pos )
{
CUpDownClient* cur_client = reqfile->srclist.GetNext( pos );
if( !cur_client->IsProxy()
&& cur_client != this // 'this' is the client we have downloaded the block from
&& cur_client->m_bIsAcceptingOurOhcbs
&& !cur_client->IsPartAvailable( part ) // using standard function for pre-1.9a clients
&& !cur_client->SupportsMultiOHCBs() // pre-1.9a client
&& cur_client->IsBehindOurWebCache() ) // inefficient
{
CSafeMemFile data;
// <Proxy IP 4><IP 4><PORT 2><filehash 16><offset 4><key 16>
if (thePrefs.WebCacheIsTransparent())
data.WriteUInt32( 0 ); // Superlexx - TPS
else
data.WriteUInt32( ResolveWebCacheName() ); // Proxy IP
data.WriteUInt32( GetIP() ); // Source client IP
data.WriteUInt16( GetUserPort() ); // Source client port
data.WriteHash16( block->FileID/*reqfile->GetFileHash()*/ ); // filehash
data.WriteUInt32( block->StartOffset ); // start offset
data.WriteUInt32( block->EndOffset ); // end offset
// Superlexx - encryption : remoteKey
data.Write( Crypt.remoteKey, WC_KEYLENGTH );
// Superlexx end
if( cur_client->SupportsWebCacheUDP()
&& !cur_client->HasLowID()
&& GetUDPPort() != 0 // thx to SiRoB
&& !(cur_client->socket && socket->IsConnected()))
{ // send UDP
data.WriteUInt32( cur_client->m_uWebCacheDownloadId );
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("WCBlock sent to client - UDP"));
Packet* packet = new Packet(&data);
if (cur_client->SupportsWebCacheProtocol())
packet->prot = OP_WEBCACHEPROT; //if the client supports webcacheprot use that (keep backwards compatiblity)
else
packet->prot = OP_EMULEPROT; //UDP-Packets use eMule-protocol WC-TODO: remove this eventually
packet->opcode = OP_HTTP_CACHED_BLOCK;
if (thePrefs.GetDebugClientUDPLevel() > 0)
DebugSend("OP__Http_Cached_Block (UDP)", cur_client );
theApp.clientudp->SendPacket(packet, cur_client->GetIP(), cur_client->GetUDPPort());
WC_OHCBManager.AddRecipient(OHCBpos, cur_client);
nrOfSentOHCBs++;
}
else
{ // send TCP
Packet* packet = new Packet(&data);
if (cur_client->SupportsWebCacheProtocol())
packet->prot = OP_WEBCACHEPROT;
else
packet->prot = OP_EDONKEYPROT; //TCP-Packets use edonkey-protocol WC-TODO: remove this eventually
packet->opcode = OP_HTTP_CACHED_BLOCK;
theStats.AddUpDataOverheadOther(packet->size);
if (thePrefs.GetDebugClientTCPLevel() > 0)
DebugSend("OP__Http_Cached_Block (TCP)", cur_client );
if( cur_client->socket && socket->IsConnected() )
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("WCBlock sent to client - TCP") );
cur_client->socket->SendPacket( packet );
nrOfSentOHCBs++;
}
else
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("WCBlock added to list - TCP") );
cur_client->m_WaitingPackets_list.AddTail(packet);
}
WC_OHCBManager.AddRecipient(OHCBpos, cur_client);
}
}
}
if (nrOfSentOHCBs < WC_NR_OF_XPRESS_OHCBS)
{
uint32 now = GetTickCount();
CUpDownClientPtrList* XpressOHCBRecipients = theApp.clientlist->XpressOHCBRecipients(WC_NR_OF_XPRESS_OHCBS - nrOfSentOHCBs, block);
uint32 nrOfOHCBsInThePacket = 0;
while (XpressOHCBRecipients->GetCount() > 0)
{
CUpDownClient* cur_client = XpressOHCBRecipients->GetHead();
Packet* packet = WC_OHCBManager.GetWCBlocksForClient(cur_client, nrOfOHCBsInThePacket, OHCBpos);
theStats.AddUpDataOverheadOther(packet->size);
if( cur_client->SupportsWebCacheUDP()
&& !cur_client->HasLowID()
&& GetUDPPort() != 0
&& !(cur_client->socket && socket->IsConnected())
&& nrOfOHCBsInThePacket <= WC_MAX_OHCBS_IN_UDP_PACKET
&& theApp.downloadqueue->GetFailedUDPFileReasks() * 100.0 / (theApp.downloadqueue->GetUDPFileReasks() + 1) < 0,2 // less than 20% of UDP reasks failed globally
&& cur_client->m_nTotalUDPPackets > 4 && (float)(cur_client->m_nFailedUDPPackets/cur_client->m_nTotalUDPPackets) < 0,2) // less than 20% of UDP reasks failed for this client
{ // send UDP
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("Multi-WCBlock (%d OHCBs, UDP) sent to client %s"), nrOfOHCBsInThePacket, cur_client->DbgGetClientInfo());
if (thePrefs.GetDebugClientUDPLevel() > 0)
DebugSend("OP__Multi_Http_Cached_Block (UDP)", cur_client );
lastMultiOHCBPacketSent = now;
theApp.clientudp->SendPacket(packet, cur_client->GetIP(), cur_client->GetUDPPort());
}
else
{
if (thePrefs.GetDebugClientTCPLevel() > 0)
DebugSend("OP__Multi_Http_Cached_Block (TCP)", cur_client );
if( cur_client->socket && socket->IsConnected() )
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("Multi-WCBlock (%d OHCBs, TCP) sent to client %s"), nrOfOHCBsInThePacket, cur_client->DbgGetClientInfo());
lastMultiOHCBPacketSent = now;
cur_client->socket->SendPacket( packet );
}
else
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("Multi-WCBlock (%d OHCBs, TCP SafeSendPacket) sent to client %s"), nrOfOHCBsInThePacket, cur_client->DbgGetClientInfo());
lastMultiOHCBPacketSent = now;
cur_client->SafeSendPacket(packet);
}
}
XpressOHCBRecipients->RemoveHead();
}
delete XpressOHCBRecipients;
}
}
bool CUpDownClient::IsWebCacheUpSocketConnected() const
{
return( m_pWCUpSocket ? m_pWCUpSocket->IsConnected() : false );
}
bool CUpDownClient::IsWebCacheDownSocketConnected() const
{
return( m_pWCDownSocket ? m_pWCDownSocket->IsConnected() : false );
}
uint16 CUpDownClient::GetNumberOfClientsBehindOurWebCacheAskingForSameFile()
{
POSITION pos = reqfile->srclist.GetHeadPosition();
uint16 toReturn = 0;
while( pos ) {
CUpDownClient* cur_client = reqfile->srclist.GetNext( pos );
if( !cur_client->IsProxy()
&& cur_client != this // 'this' is the client we want to download data from
&& cur_client->IsBehindOurWebCache())
toReturn++;
}
return toReturn;
}
//uint16 CUpDownClient::GetNumberOfClientsBehindOurWebCacheHavingSameFileAndNeedingThisBlock(Pending_Block_Struct* pending, uint32 maxClients) // Superlexx - COtN
//{
// uint16 toReturn = 0;
// uint16 part = pending->block->StartOffset / PARTSIZE;
//// POSITION pos = reqfile->srclist.GetHeadPosition();
// POSITION pos =
// while( pos )
// {
// CUpDownClient* cur_client = reqfile->srclist.GetNext( pos );
// if( cur_client->m_bIsAcceptingOurOhcbs
// && !cur_client->IsProxy()
// && cur_client != this // 'this' is the client we want to download data from
// && cur_client->IsBehindOurWebCache()
// && !cur_client->IsPartAvailable(part))
// toReturn++;
// }
// return toReturn;
//}
//JP trusted OHCB-senders START
// yonatan - moved code from IsTrustedOhcbSender to AddWebCachedBlockToStats,
// might delete the client who sent the OHCB (if IsGood==false SafeSendPacket is called)
void CUpDownClient::AddWebCachedBlockToStats( bool IsGood )
{
WebCachedBlockRequests++;
if (IsGood)
SuccessfulWebCachedBlockDownloads++;
// check if we still trust the senders' ohcbs
if (WebCachedBlockRequests<100 //we need to try 100 blocks before the statistic is meaningfull
|| (SuccessfulWebCachedBlockDownloads*100/WebCachedBlockRequests >= thePrefs.webcacheTrustLevel)) //if we have tried those blocks we need to be more successfull than the trustlevel
return;
// client has sent too many bad ohcbs
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(false, _T("We don't trust OHCBs from client %s"), DbgGetClientInfo());
m_bIsTrustedOHCBSender = false;
SendStopOHCBSending(); // Support for this is checked in SendStopOHCBSending
}
/*void CUpDownClient::AddWebCachedBlockToStats( bool IsGood )
{
WebCachedBlockRequests++;
if (IsGood)
SuccessfulWebCachedBlockDownloads++;
// check if we still trust the senders' ohcbs
if (WebCachedBlockRequests<10) //if less than 10 requests made
return;
if (WebCachedBlockRequests>=10 //if between 10 and
&& WebCachedBlockRequests<50 //50 requests made and
&& SuccessfulWebCachedBlockDownloads*100/WebCachedBlockRequests>=10)// more than 10% successfull
return;
if (WebCachedBlockRequests>=50 //if between 50 and
&& WebCachedBlockRequests<100 //100 requests made and
&& SuccessfulWebCachedBlockDownloads*100/WebCachedBlockRequests>=20)// more than 20% successfull
return;
if (WebCachedBlockRequests>=100 //if more than 100 requests made and
&& SuccessfulWebCachedBlockDownloads*100/WebCachedBlockRequests>=30)// more than 30% successfull
return;
// client has sent too many bad ohcbs
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine(false, _T("We don't trust OHCBs from client %s"), DbgGetClientInfo());
m_bIsTrustedOHCBSender = false;
SendStopOHCBSending(); // Support for this is checked in SendStopOHCBSending
}*/
//JP trusted OHCB-senders END
void CUpDownClient::SendStopOHCBSending() //make a new TCP-connection here because it's important
{
if( SupportsOhcbSuppression() )
{
Packet* packet = new Packet(OP_DONT_SEND_OHCBS,0,OP_WEBCACHEPROT);
if( SafeSendPacket( packet ) )
{ // if client was not deleted
theStats.AddUpDataOverheadOther(packet->size);
AddDebugLogLine( false, _T("OP_DONT_SEND_OHCBS sent")); // yonatan tmp
DebugSend("OP__Dont_Send_Ohcbs", this );
m_bIsAllowedToSendOHCBs = false;
}
}
}
//JP TEST THIS!!! (WE ARE NOT USING IT YET)
void CUpDownClient::SendResumeOHCBSendingTCP() //only add the packet to the queue because it's not so important ??
{
if( SupportsOhcbSuppression() && m_bIsTrustedOHCBSender)
{
Packet* packet = new Packet(OP_RESUME_SEND_OHCBS,0,OP_WEBCACHEPROT);
theStats.AddUpDataOverheadOther(packet->size);
if (thePrefs.GetDebugClientTCPLevel() > 0)
DebugSend("OP_RESUME_SEND_OHCBS (TCP)", this );
if( socket && socket->IsConnected() ) {
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("OP_RESUME_SEND_OHCBS sent to client - TCP") );
socket->SendPacket( packet );
} else {
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("OP_RESUME_SEND_OHCBS added to list - TCP") );
m_WaitingPackets_list.AddTail(packet);
}
m_bIsAllowedToSendOHCBs = true;
}
}
//JP Add THIS!!! (WE ARE NOT USING IT YET)
void CUpDownClient::SendResumeOHCBSendingUDP()
{
if( SupportsOhcbSuppression() && m_bIsTrustedOHCBSender && SupportsWebCacheUDP() && !HasLowID())
{
//JP WC-TODO: add sending the UDP packet here
m_bIsAllowedToSendOHCBs = true;
}
}
// Superlexx - MFR
// note that the requesting a file in the usual way doesn't mean requesting OHCBs for it anymore
// the chunk states might be useful for chunk selection, not implemented and not planned ATM
Packet* CUpDownClient::CreateMFRPacket()
{
CSafeMemFile* data = new CSafeMemFile();
if (!AttachMultiOHCBsRequest(*data)){
delete data; //memleak -Fix- [WiZaRd]
return NULL; // we don't want anything from this client
}
Packet* toSend = new Packet(data, OP_WEBCACHEPROT, OP_MULTI_FILE_REQ);
delete data;
uint32 unpackedSize = toSend->size;
toSend->PackPacket();
if (toSend->size > unpackedSize)
toSend->UnPackPacket(unpackedSize);
return toSend;
}
uint8 CUpDownClient::AttachMultiOHCBsRequest(CSafeMemFile &data)
{
if (!SupportsWebCache()
|| !IsBehindOurWebCache()
|| !SupportsMultiOHCBs())
return 0;
ASSERT(reqfile);
uint8 fileCount = 1;
data.WriteUInt8(0); // number of requested files will be written here later
// byte fileHash[] = new byte[16];
// fileHash = reqfile->GetFileHash();
data.WriteHash16(reqfile->GetFileHash());
reqfile->WritePartStatus(&data);
for (POSITION pos = m_OtherRequests_list.GetHeadPosition(); pos && (fileCount != -2); m_OtherRequests_list.GetNext(pos))
{
data.WriteHash16(m_OtherRequests_list.GetAt(pos)->GetFileHash());
m_OtherRequests_list.GetAt(pos)->WritePartStatus(&data);
fileCount++;
}
for (POSITION pos = m_OtherNoNeeded_list.GetHeadPosition(); pos && (fileCount != -1); m_OtherNoNeeded_list.GetNext(pos))
{
data.WriteHash16(m_OtherNoNeeded_list.GetAt(pos)->GetFileHash());
m_OtherNoNeeded_list.GetAt(pos)->WritePartStatus(&data);
fileCount++;
}
data.SeekToBegin();
data.WriteUInt8(fileCount);
return fileCount;
}
void CUpDownClient::SendOHCBsNow()
{
uint32 nrOfOHCBsInThePacket = 0;
uint32 now = GetTickCount();
Packet* packet = WC_OHCBManager.GetWCBlocksForClient(this, nrOfOHCBsInThePacket, NULL);
if (!packet) // nothing to send
return;
theStats.AddUpDataOverheadOther(packet->size);
if( !HasLowID()
&& GetUDPPort() != 0
&& !(socket && socket->IsConnected())
// && nrOfOHCBsInThePacket <= WC_MAX_OHCBS_IN_UDP_PACKET
&& a(nrOfOHCBsInThePacket)
// && (theApp.downloadqueue->GetFailedUDPFileReasks() * 100.0 / (theApp.downloadqueue->GetUDPFileReasks() + 1) < 0,2 ) // less than 20% of UDP reasks failed globally
&& b(theApp.downloadqueue->GetFailedUDPFileReasks(), theApp.downloadqueue->GetUDPFileReasks()) // less than 20% of UDP reasks failed globally
// && (m_nTotalUDPPackets > 4 && (m_nFailedUDPPackets * 100) / m_nTotalUDPPackets < 20)) // less than 20% of UDP reasks failed for this client
&& c(m_nTotalUDPPackets, m_nFailedUDPPackets)) // less than 20% of UDP reasks failed for this client
{ // send UDP
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("multi-OHCB-packet sent to client - UDP"));
if (thePrefs.GetDebugClientUDPLevel() > 0)
DebugSend("OP__Multi_Http_Cached_Block (UDP)", this );
lastMultiOHCBPacketSent = now;
theApp.clientudp->SendPacket(packet, GetIP(), GetUDPPort());
}
else if (!HasLowID() // don't try to send data to disconnected lowIDs
|| (socket && socket->IsConnected()))
{ // send TCP
if (thePrefs.GetDebugClientTCPLevel() > 0)
DebugSend("OP__Multi_Http_Cached_Block (TCP)", this);
if( socket && socket->IsConnected() )
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("Multi-WCBlock sent to client - TCP") );
lastMultiOHCBPacketSent = now;
socket->SendPacket( packet );
}
else
{
if (thePrefs.GetLogWebCacheEvents())
AddDebugLogLine( false, _T("Multi-WCBlock sent to client - TCP SafeSendPacket") );
lastMultiOHCBPacketSent = now;
SafeSendPacket(packet); // it's ugly, I know...
}
}
} | [
"nosfelama"
] | nosfelama |
eca341b04bb11868c8b1be4abf19dddf4f640a30 | 47432cbf06819de609135e9196f8f4d676c178a2 | /Exercise 1/src/GLApp.h | 6d2450a7d2bafb5d1390c8d9dd5c076ebce6b443 | [] | no_license | andrinr/uzh-cg | 535a94526b13ae658c49faeaa7e85610fef5e2be | 56d84fd5b785b0eb15598641111c74899f32816f | refs/heads/main | 2023-05-09T06:47:20.579433 | 2021-05-30T08:08:16 | 2021-05-30T08:08:16 | 349,106,906 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,054 | h | #ifndef GLAPP_HPP_INCLUDED
#define GLAPP_HPP_INCLUDED
#include "GLIncludes.h"
#include <glm/vec2.hpp>
#include <string>
namespace cgCourse
{
class GLApp
{
public:
GLApp(glm::uvec2 _windowSize, std::string _title, std::string _exepath, bool resizeable = true);
virtual ~GLApp();
bool run();
// Default implementation of event handlers
virtual void keyPressHandler(int key, int action, int mods);
virtual void mouseClickHandler(int button, int action);
virtual void mouseMoveHandler(glm::dvec2 position);
std::string getPathToExecutable() const;
protected:
void stop();
// Virtual methods for initialization, rendering and termination
virtual bool init() = 0;
virtual bool render() = 0;
virtual bool end() = 0;
// Utility methods
glm::uvec2 getFramebufferSize() const;
std::string loadFile(const std::string & filename) const;
bool checkGlError(const char* message) const;
GLFWwindow* window_;
std::string const title;
std::string const pathToExecutable;
};
}
#endif // GLAPP_HPP_INCLUDED
| [
"andrinrehmann@gmail.com"
] | andrinrehmann@gmail.com |
e2cb02f999b610177a21b58417e19bcbcd8f3113 | 309bb33f11e4370cc4d0b509ba1e8c7fed92da0d | /Referencias/cpp/classes_objetos/VideoGame.h | 342e64a5c26d43051dcfc3747f2b758e0432028d | [] | no_license | EricLau1/POO | 1bb2460e668ee01222a90a59410e1e05e5beb7a1 | 0dc9d9248e60c1f02205c2ef9f32fff36b971aaa | refs/heads/master | 2021-06-20T00:07:06.931368 | 2017-06-25T17:47:30 | 2017-06-25T17:47:30 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 279 | h | #include <iostream>
using namespace std;
// Uma classe é tipo de dado que contem Atributos/Variaveis e Métodos/Funções
class VideoGame {
public:
//Atributos
string nome;
int lancamento;
//Método
void jogar(){
cout << nome << " iniciando..." << endl;
}
};
| [
"fabricadealgoritmos@gmail.com"
] | fabricadealgoritmos@gmail.com |
a4519d3778a8b53747ff8dd38b32fda61122fc0b | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2751486_1/C++/Tedtion/a.cpp | ddb9edf2568539217ec58e4a70566d6bac2d8f32 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 756 | cpp | #include <cstdio>
#include <cstring>
#include <set>
#include <algorithm>
using namespace std;
#define NN 1000099
bool isvow(char c)
{
char vow[] = "aeiou";
for (int i=0; vow[i]; i++)
{
if (vow[i] == c) return true;
}
return false;
}
int main()
{
int t,n;
char s[NN];
freopen("A-large.in", "r", stdin);
freopen("a-large.out", "w", stdout);
scanf("%d",&t);
for (int cas=1; cas<=t; cas++)
{
scanf("%s%d",s,&n);
long long ans = 0, L;
int last=-1, con=0;
L = strlen(s);
for (int i=0; s[i]; i++)
{
if (isvow(s[i])) con=0;
else con++;
if (con==n) {
ans += (i-n+1-last)*(L-i);
last = i-n+1;
con--;
}
}
printf("Case #%d: %lld\n", cas, ans);
}
return 0;
}
| [
"eewestman@gmail.com"
] | eewestman@gmail.com |
46c9caaea9de7b5e4931b344ce06c0570b1a4ac6 | 598e811f2d3d5a6b37fcf95f30cf41f60887973c | /Module8/PrototypeAndInLineFunctionAssignment/PrototypeAndInLineFunctionAssignment.cpp | aa28f247ae8f83aa1a7a28f55d0dc9a11ce821d1 | [] | no_license | hofmannicusrex/CIS-161 | 7feb5a766d1a31edb7bd551fad9ac3ba446f8b07 | dc79708917011b733fa3322c6010227f803d66d1 | refs/heads/master | 2022-11-19T10:38:08.757692 | 2020-07-21T22:46:10 | 2020-07-21T22:46:10 | 268,656,507 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 519 | cpp | /* PrototypeAndInLineAssignment.cpp || Nick Hofmann 6/24/2020
nickhofmann1989@hotmail.com | nohofmann@dmacc.edu
This program will .
*/
// Setup for NameSpace assignment
#include <iostream>
using namespace std;
int main()
{
int x = 99; // Variable
int y = 100;
int *xPtr = &x; // Pointer Variable
printf("The value of xPtr: %p", xPtr);
cout << endl;
printf("The value of x: %d", x);
cout << endl;
printf("The value of &x: %p", &x);
cout << endl;
printf("The value of &y: %p", &y);
cout << endl;
} | [
"nickhofmann1989@hotmail.com"
] | nickhofmann1989@hotmail.com |
51ede6b624ff12d7ed4aae25e1f1524d6cee6cee | 1c884356855de0ba26aae60b39ae1229afa2660f | /streams/vox_data.cpp | dbe4a649da8e816b4aceb927a4a927a4a82f4170 | [
"MIT"
] | permissive | track3rsp/godot_voxel | 53ed50028d3b9789d52bd922fc356f7337938b7b | c10c273fe5d4722edc15d6dd29242f3bf707680b | refs/heads/master | 2022-07-27T12:02:21.279381 | 2022-06-29T00:30:14 | 2022-06-29T00:30:14 | 131,823,328 | 0 | 0 | null | 2018-05-02T08:45:50 | 2018-05-02T08:45:49 | null | UTF-8 | C++ | false | false | 20,806 | cpp | #include "vox_data.h"
#include "../util/godot/funcs.h"
#include "../util/log.h"
#include "../util/profiling.h"
#include "../util/string_funcs.h"
#include <core/io/file_access.h>
#include <core/variant/variant.h>
#include <unordered_set>
namespace zylann::voxel::magica {
const uint32_t PALETTE_SIZE = 256;
// clang-format off
uint32_t g_default_palette[PALETTE_SIZE] = {
0x00000000, 0xffffffff, 0xffccffff, 0xff99ffff, 0xff66ffff, 0xff33ffff, 0xff00ffff, 0xffffccff,
0xffccccff, 0xff99ccff, 0xff66ccff, 0xff33ccff, 0xff00ccff, 0xffff99ff, 0xffcc99ff, 0xff9999ff,
0xff6699ff, 0xff3399ff, 0xff0099ff, 0xffff66ff, 0xffcc66ff, 0xff9966ff, 0xff6666ff, 0xff3366ff,
0xff0066ff, 0xffff33ff, 0xffcc33ff, 0xff9933ff, 0xff6633ff, 0xff3333ff, 0xff0033ff, 0xffff00ff,
0xffcc00ff, 0xff9900ff, 0xff6600ff, 0xff3300ff, 0xff0000ff, 0xffffffcc, 0xffccffcc, 0xff99ffcc,
0xff66ffcc, 0xff33ffcc, 0xff00ffcc, 0xffffcccc, 0xffcccccc, 0xff99cccc, 0xff66cccc, 0xff33cccc,
0xff00cccc, 0xffff99cc, 0xffcc99cc, 0xff9999cc, 0xff6699cc, 0xff3399cc, 0xff0099cc, 0xffff66cc,
0xffcc66cc, 0xff9966cc, 0xff6666cc, 0xff3366cc, 0xff0066cc, 0xffff33cc, 0xffcc33cc, 0xff9933cc,
0xff6633cc, 0xff3333cc, 0xff0033cc, 0xffff00cc, 0xffcc00cc, 0xff9900cc, 0xff6600cc, 0xff3300cc,
0xff0000cc, 0xffffff99, 0xffccff99, 0xff99ff99, 0xff66ff99, 0xff33ff99, 0xff00ff99, 0xffffcc99,
0xffcccc99, 0xff99cc99, 0xff66cc99, 0xff33cc99, 0xff00cc99, 0xffff9999, 0xffcc9999, 0xff999999,
0xff669999, 0xff339999, 0xff009999, 0xffff6699, 0xffcc6699, 0xff996699, 0xff666699, 0xff336699,
0xff006699, 0xffff3399, 0xffcc3399, 0xff993399, 0xff663399, 0xff333399, 0xff003399, 0xffff0099,
0xffcc0099, 0xff990099, 0xff660099, 0xff330099, 0xff000099, 0xffffff66, 0xffccff66, 0xff99ff66,
0xff66ff66, 0xff33ff66, 0xff00ff66, 0xffffcc66, 0xffcccc66, 0xff99cc66, 0xff66cc66, 0xff33cc66,
0xff00cc66, 0xffff9966, 0xffcc9966, 0xff999966, 0xff669966, 0xff339966, 0xff009966, 0xffff6666,
0xffcc6666, 0xff996666, 0xff666666, 0xff336666, 0xff006666, 0xffff3366, 0xffcc3366, 0xff993366,
0xff663366, 0xff333366, 0xff003366, 0xffff0066, 0xffcc0066, 0xff990066, 0xff660066, 0xff330066,
0xff000066, 0xffffff33, 0xffccff33, 0xff99ff33, 0xff66ff33, 0xff33ff33, 0xff00ff33, 0xffffcc33,
0xffcccc33, 0xff99cc33, 0xff66cc33, 0xff33cc33, 0xff00cc33, 0xffff9933, 0xffcc9933, 0xff999933,
0xff669933, 0xff339933, 0xff009933, 0xffff6633, 0xffcc6633, 0xff996633, 0xff666633, 0xff336633,
0xff006633, 0xffff3333, 0xffcc3333, 0xff993333, 0xff663333, 0xff333333, 0xff003333, 0xffff0033,
0xffcc0033, 0xff990033, 0xff660033, 0xff330033, 0xff000033, 0xffffff00, 0xffccff00, 0xff99ff00,
0xff66ff00, 0xff33ff00, 0xff00ff00, 0xffffcc00, 0xffcccc00, 0xff99cc00, 0xff66cc00, 0xff33cc00,
0xff00cc00, 0xffff9900, 0xffcc9900, 0xff999900, 0xff669900, 0xff339900, 0xff009900, 0xffff6600,
0xffcc6600, 0xff996600, 0xff666600, 0xff336600, 0xff006600, 0xffff3300, 0xffcc3300, 0xff993300,
0xff663300, 0xff333300, 0xff003300, 0xffff0000, 0xffcc0000, 0xff990000, 0xff660000, 0xff330000,
0xff0000ee, 0xff0000dd, 0xff0000bb, 0xff0000aa, 0xff000088, 0xff000077, 0xff000055, 0xff000044,
0xff000022, 0xff000011, 0xff00ee00, 0xff00dd00, 0xff00bb00, 0xff00aa00, 0xff008800, 0xff007700,
0xff005500, 0xff004400, 0xff002200, 0xff001100, 0xffee0000, 0xffdd0000, 0xffbb0000, 0xffaa0000,
0xff880000, 0xff770000, 0xff550000, 0xff440000, 0xff220000, 0xff110000, 0xffeeeeee, 0xffdddddd,
0xffbbbbbb, 0xffaaaaaa, 0xff888888, 0xff777777, 0xff555555, 0xff444444, 0xff222222, 0xff111111
};
// clang-format on
static Error parse_string(FileAccess &f, String &s) {
const int size = f.get_32();
// Sanity checks
ERR_FAIL_COND_V(size < 0, ERR_INVALID_DATA);
ERR_FAIL_COND_V(size > 4096, ERR_INVALID_DATA);
static thread_local std::vector<char> bytes;
bytes.resize(size);
ERR_FAIL_COND_V(f.get_buffer((uint8_t *)bytes.data(), bytes.size()) != bytes.size(), ERR_PARSE_ERROR);
s.clear();
ERR_FAIL_COND_V(s.parse_utf8(bytes.data(), bytes.size()), ERR_PARSE_ERROR);
return OK;
}
static Error parse_dictionary(FileAccess &f, std::unordered_map<String, String> &dict) {
const int item_count = f.get_32();
// Sanity checks
ERR_FAIL_COND_V(item_count < 0, ERR_INVALID_DATA);
ERR_FAIL_COND_V(item_count > 256, ERR_INVALID_DATA);
dict.clear();
for (int i = 0; i < item_count; ++i) {
String key;
Error key_err = parse_string(f, key);
ERR_FAIL_COND_V(key_err != OK, key_err);
String value;
Error value_err = parse_string(f, value);
ERR_FAIL_COND_V(value_err != OK, value_err);
dict[key] = value;
}
return OK;
}
// MagicaVoxel uses a Z-up coordinate system similar to 3DS Max.
// Here we read the data such that it follows OpenGL coordinate system.
//
// Z Y
// | Y | X
// |/ |/
// o----X o----Z
//
// MagicaVoxel OpenGL
//
inline Vector3i magica_to_opengl(const Vector3i &src) {
Vector3i dst;
dst.x = src.y;
dst.y = src.z;
dst.z = src.x;
return dst;
}
void transpose(Vector3i sx, Vector3i sy, Vector3i sz, Vector3i &dx, Vector3i &dy, Vector3i &dz) {
dx.x = sx.x;
dx.y = sy.x;
dx.z = sz.x;
dy.x = sx.y;
dy.y = sy.y;
dy.z = sz.y;
dz.x = sx.z;
dz.y = sy.z;
dz.z = sz.z;
}
static Basis parse_basis(uint8_t data) {
// bits 0 and 1 are the index of the non-zero entry in the first row
const int xi = (data >> 0) & 0x03;
// bits 2 and 3 are the index of the non-zero entry in the second row
const int yi = (data >> 2) & 0x03;
// The index of the non-zero entry in the last row can be deduced as the last not "occupied" index
bool occupied[3] = { false };
occupied[xi] = true;
occupied[yi] = true;
const int zi = occupied[0] == false ? 0 : occupied[1] == false ? 1 : 2;
const int x_sign = ((data >> 4) & 0x01) == 0 ? 1 : -1;
const int y_sign = ((data >> 5) & 0x01) == 0 ? 1 : -1;
const int z_sign = ((data >> 6) & 0x01) == 0 ? 1 : -1;
Vector3i x, y, z;
x[xi] = x_sign;
y[yi] = y_sign;
z[zi] = z_sign;
// The following is a bit messy, had a hard time figuring out the correct combination of conversions
// to bring MagicaVoxel rotations to Godot rotations.
// TODO Maybe this can be simplified?
Vector3i magica_x, magica_y, magica_z;
transpose(x, y, z, magica_x, magica_y, magica_z);
// ZN_PRINT_VERBOSE(String("---\nX: {0}\nY: {1}\nZ: {2}")
// .format(varray(magica_x.to_vec3(), magica_y.to_vec3(), magica_z.to_vec3())));
magica_x = magica_to_opengl(magica_x);
magica_y = magica_to_opengl(magica_y);
magica_z = magica_to_opengl(magica_z);
z = magica_x;
x = magica_y;
y = magica_z;
Basis b;
b.set(x.x, y.x, z.x, x.y, y.y, z.y, x.z, y.z, z.z);
return b;
}
Error parse_node_common_header(Node &node, FileAccess &f, const std::unordered_map<int, UniquePtr<Node>> &scene_graph) {
//
const int node_id = f.get_32();
ERR_FAIL_COND_V_MSG(scene_graph.find(node_id) != scene_graph.end(), ERR_INVALID_DATA,
String("Node with ID {0} already exists").format(varray(node_id)));
node.id = node_id;
const Error attributes_err = parse_dictionary(f, node.attributes);
ERR_FAIL_COND_V(attributes_err != OK, attributes_err);
return OK;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void Data::clear() {
_models.clear();
_scene_graph.clear();
_layers.clear();
_materials.clear();
_root_node_id = -1;
}
Error Data::load_from_file(String fpath) {
const Error err = _load_from_file(fpath);
if (err != OK) {
clear();
}
return err;
}
Error Data::_load_from_file(String fpath) {
ZN_PROFILE_SCOPE();
// https://github.com/ephtracy/voxel-model/blob/master/MagicaVoxel-file-format-vox.txt
// https://github.com/ephtracy/voxel-model/blob/master/MagicaVoxel-file-format-vox-extension.txt
ZN_PRINT_VERBOSE(format("Loading {}", fpath));
Error open_err;
Ref<FileAccess> f_ref = FileAccess::open(fpath, FileAccess::READ, &open_err);
if (f_ref == nullptr) {
return open_err;
}
FileAccess &f = **f_ref;
char magic[5] = { 0 };
ERR_FAIL_COND_V(f.get_buffer((uint8_t *)magic, 4) != 4, ERR_PARSE_ERROR);
ERR_FAIL_COND_V(strcmp(magic, "VOX ") != 0, ERR_PARSE_ERROR);
const uint32_t version = f.get_32();
ERR_FAIL_COND_V(version != 150, ERR_PARSE_ERROR);
const size_t file_length = f.get_length();
Vector3i last_size;
clear();
while (f.get_position() < file_length) {
char chunk_id[5] = { 0 };
ERR_FAIL_COND_V(f.get_buffer((uint8_t *)chunk_id, 4) != 4, ERR_PARSE_ERROR);
const uint32_t chunk_size = f.get_32();
f.get_32(); // child_chunks_size
ZN_PRINT_VERBOSE(format("Reading chunk {} at {}, size={}", chunk_id, f.get_position(), chunk_size));
if (strcmp(chunk_id, "SIZE") == 0) {
Vector3i size;
size.x = f.get_32();
size.y = f.get_32();
size.z = f.get_32();
ERR_FAIL_COND_V(size.x > 256, ERR_PARSE_ERROR);
ERR_FAIL_COND_V(size.y > 256, ERR_PARSE_ERROR);
ERR_FAIL_COND_V(size.z > 256, ERR_PARSE_ERROR);
last_size = magica_to_opengl(size);
} else if (strcmp(chunk_id, "XYZI") == 0) {
UniquePtr<Model> model = make_unique_instance<Model>();
model->color_indexes.resize(last_size.x * last_size.y * last_size.z, 0);
model->size = last_size;
const uint32_t num_voxels = f.get_32();
for (uint32_t i = 0; i < num_voxels; ++i) {
Vector3i pos;
pos.x = f.get_8();
pos.y = f.get_8();
pos.z = f.get_8();
const uint32_t c = f.get_8();
pos = magica_to_opengl(pos);
ERR_FAIL_COND_V(pos.x >= model->size.x || pos.x < 0, ERR_PARSE_ERROR);
ERR_FAIL_COND_V(pos.y >= model->size.y || pos.y < 0, ERR_PARSE_ERROR);
ERR_FAIL_COND_V(pos.z >= model->size.z || pos.z < 0, ERR_PARSE_ERROR);
model->color_indexes[Vector3iUtil::get_zxy_index(pos, model->size)] = c;
}
_models.push_back(std::move(model));
} else if (strcmp(chunk_id, "RGBA") == 0) {
_palette[0] = Color8{ 0, 0, 0, 0 };
for (uint32_t i = 1; i < _palette.size(); ++i) {
Color8 c;
c.r = f.get_8();
c.g = f.get_8();
c.b = f.get_8();
c.a = f.get_8();
_palette[i] = c;
}
f.get_32();
} else if (strcmp(chunk_id, "nTRN") == 0) {
UniquePtr<TransformNode> node_ptr = make_unique_instance<TransformNode>();
TransformNode &node = *node_ptr;
Error header_err = parse_node_common_header(node, f, _scene_graph);
ERR_FAIL_COND_V(header_err != OK, header_err);
auto name_it = node.attributes.find("_name");
if (name_it != node.attributes.end()) {
node.name = name_it->second;
}
auto hidden_it = node.attributes.find("_hidden");
if (hidden_it != node.attributes.end()) {
node.hidden = (hidden_it->second == "1");
} else {
node.hidden = false;
}
node.child_node_id = f.get_32();
const int reserved_id = f.get_32();
ERR_FAIL_COND_V(reserved_id != -1, ERR_INVALID_DATA);
node.layer_id = f.get_32();
const int frame_count = f.get_32();
ERR_FAIL_COND_V(frame_count != 1, ERR_INVALID_DATA);
//for (int frame_index = 0; frame_index < frame_count; ++frame_index) {
std::unordered_map<String, String> frame;
const Error frame_err = parse_dictionary(f, frame);
ERR_FAIL_COND_V(frame_err != OK, frame_err);
auto t_it = frame.find("_t");
if (t_it != frame.end()) {
// It is 3 integers formatted as text
Vector<float> coords = t_it->second.split_floats(" ");
ERR_FAIL_COND_V(coords.size() < 3, ERR_PARSE_ERROR);
//ZN_PRINT_VERBOSE(String("Pos: {0}, {1}, {2}").format(varray(coords[0], coords[1], coords[2])));
node.position = magica_to_opengl(Vector3i(coords[0], coords[1], coords[2]));
}
auto r_it = frame.find("_r");
if (r_it != frame.end()) {
Rotation rot;
// TODO Is it really an integer formatted as text?
rot.data = r_it->second.to_int();
rot.basis = parse_basis(rot.data);
node.rotation = rot;
}
//}
_scene_graph[node.id] = std::move(node_ptr);
} else if (strcmp(chunk_id, "nGRP") == 0) {
UniquePtr<GroupNode> node_ptr = make_unique_instance<GroupNode>();
GroupNode &node = *node_ptr;
Error header_err = parse_node_common_header(node, f, _scene_graph);
ERR_FAIL_COND_V(header_err != OK, header_err);
const unsigned int child_count = f.get_32();
// Sanity check
ERR_FAIL_COND_V(child_count > 65536, ERR_INVALID_DATA);
node.child_node_ids.resize(child_count);
for (unsigned int i = 0; i < child_count; ++i) {
node.child_node_ids[i] = f.get_32();
}
_scene_graph[node.id] = std::move(node_ptr);
} else if (strcmp(chunk_id, "nSHP") == 0) {
UniquePtr<ShapeNode> node_ptr = make_unique_instance<ShapeNode>();
ShapeNode &node = *node_ptr;
Error header_err = parse_node_common_header(node, f, _scene_graph);
ERR_FAIL_COND_V(header_err != OK, header_err);
const unsigned int model_count = f.get_32();
ERR_FAIL_COND_V(model_count != 1, ERR_INVALID_DATA);
//for (unsigned int i = 0; i < model_count; ++i) {
node.model_id = f.get_32();
ERR_FAIL_COND_V(node.model_id > 65536, ERR_INVALID_DATA);
ERR_FAIL_COND_V(node.model_id < 0, ERR_INVALID_DATA);
Error model_attributes_err = parse_dictionary(f, node.model_attributes);
ERR_FAIL_COND_V(model_attributes_err != OK, model_attributes_err);
//}
_scene_graph[node.id] = std::move(node_ptr);
} else if (strcmp(chunk_id, "LAYR") == 0) {
UniquePtr<Layer> layer_ptr = make_unique_instance<Layer>();
Layer &layer = *layer_ptr;
const int layer_id = f.get_32();
for (unsigned int i = 0; i < _layers.size(); ++i) {
const Layer *existing_layer = _layers[i].get();
CRASH_COND(existing_layer == nullptr);
ERR_FAIL_COND_V_MSG(existing_layer->id == layer_id, ERR_INVALID_DATA,
String("Layer with ID {0} already exists").format(varray(layer_id)));
}
layer.id = layer_id;
Error attributes_err = parse_dictionary(f, layer.attributes);
ERR_FAIL_COND_V(attributes_err != OK, attributes_err);
auto name_it = layer.attributes.find("_name");
if (name_it != layer.attributes.end()) {
layer.name = name_it->second;
}
auto hidden_it = layer.attributes.find("_hidden");
if (hidden_it != layer.attributes.end()) {
layer.hidden = (hidden_it->second == "1");
} else {
layer.hidden = false;
}
const int reserved_id = f.get_32();
ERR_FAIL_COND_V(reserved_id != -1, ERR_INVALID_DATA);
_layers.push_back(std::move(layer_ptr));
} else if (strcmp(chunk_id, "MATL") == 0) {
UniquePtr<Material> material_ptr = make_unique_instance<Material>();
Material &material = *material_ptr;
const int material_id = f.get_32();
ERR_FAIL_COND_V(material_id < 0 || material_id > static_cast<int>(_palette.size()), ERR_INVALID_DATA);
ERR_FAIL_COND_V_MSG(_materials.find(material_id) != _materials.end(), ERR_INVALID_DATA,
String("Material ID {0} already exists").format(varray(material_id)));
material.id = material_id;
std::unordered_map<String, String> attributes;
Error attributes_err = parse_dictionary(f, attributes);
ERR_FAIL_COND_V(attributes_err != OK, attributes_err);
auto type_it = attributes.find("_type");
if (type_it != attributes.end()) {
String type_name = type_it->second;
if (type_name == "_diffuse") {
material.type = Material::TYPE_DIFFUSE;
} else if (type_name == "_metal") {
material.type = Material::TYPE_METAL;
} else if (type_name == "_glass") {
material.type = Material::TYPE_GLASS;
} else if (type_name == "_emit") {
material.type = Material::TYPE_EMIT;
}
}
auto weight_it = attributes.find("_weight");
if (weight_it != attributes.end()) {
material.weight = weight_it->second.to_float();
}
auto rough_it = attributes.find("_rough");
if (rough_it != attributes.end()) {
material.roughness = rough_it->second.to_float();
}
auto spec_it = attributes.find("_spec");
if (spec_it != attributes.end()) {
material.specular = spec_it->second.to_float();
}
auto ior_it = attributes.find("_ior");
if (ior_it != attributes.end()) {
material.ior = ior_it->second.to_float();
}
auto att_it = attributes.find("_att");
if (att_it != attributes.end()) {
material.att = att_it->second.to_float();
}
auto flux_it = attributes.find("_flux");
if (flux_it != attributes.end()) {
material.flux = flux_it->second.to_float();
}
// auto plastic_it = attributes.find("_plastic");
// if (plastic_it != attributes.end()) {
// // ???
// }
_materials.insert(std::make_pair(material_id, std::move(material_ptr)));
} else {
ZN_PRINT_VERBOSE(format("Skipping chunk {}", chunk_id));
// Ignore chunk
f.seek(f.get_position() + chunk_size);
}
}
// There is no indication on the official spec to detect the root node of the scene graph.
// It might just be the first one we find in the file, but the specification does not explicitely enforce that.
// So we have to do it the long way, marking which nodes are referenced by others.
std::unordered_set<int> referenced_nodes;
// Validate scene graph
for (auto it = _scene_graph.begin(); it != _scene_graph.end(); ++it) {
const Node *node = it->second.get();
CRASH_COND(node == nullptr);
// TODO We should check for cycles too...
switch (node->type) {
case Node::TYPE_TRANSFORM: {
const TransformNode *transform_node = reinterpret_cast<const TransformNode *>(node);
const int child_id = transform_node->child_node_id;
ERR_FAIL_COND_V_MSG(_scene_graph.find(child_id) == _scene_graph.end(), ERR_INVALID_DATA,
String("Child node {0} does not exist").format(varray(child_id)));
referenced_nodes.insert(child_id);
const int layer_id = transform_node->layer_id;
// Apparently it is possible to find nodes that are not attached to any layer
if (layer_id != -1) {
bool layer_exists = false;
for (size_t i = 0; i < _layers.size(); ++i) {
const Layer *layer = _layers[i].get();
CRASH_COND(layer == nullptr);
if (layer->id == layer_id) {
layer_exists = true;
break;
}
}
ERR_FAIL_COND_V_MSG(!layer_exists, ERR_INVALID_DATA,
String("Layer {0} does not exist").format(varray(layer_id)));
}
} break;
case Node::TYPE_GROUP: {
const GroupNode *group_node = reinterpret_cast<const GroupNode *>(node);
for (size_t i = 0; i < group_node->child_node_ids.size(); ++i) {
const int child_id = group_node->child_node_ids[i];
ERR_FAIL_COND_V_MSG(_scene_graph.find(child_id) == _scene_graph.end(), ERR_INVALID_DATA,
String("Child node {0} does not exist").format(varray(child_id)));
referenced_nodes.insert(child_id);
}
} break;
case Node::TYPE_SHAPE: {
const ShapeNode *shape_node = reinterpret_cast<const ShapeNode *>(node);
const int model_id = shape_node->model_id;
ERR_FAIL_COND_V_MSG(model_id < 0 || model_id >= static_cast<int>(_models.size()), ERR_INVALID_DATA,
String("Model {0} does not exist").format(varray(model_id)));
} break;
}
}
for (auto it = _scene_graph.begin(); it != _scene_graph.end(); ++it) {
const int node_id = it->first;
if (referenced_nodes.find(node_id) != referenced_nodes.end()) {
continue;
}
ERR_FAIL_COND_V_MSG(_root_node_id != -1, ERR_INVALID_DATA, "More than one root node was found");
_root_node_id = node_id;
}
// Some vox files don't have scene graph chunks
if (_scene_graph.size() > 0) {
// But if they do, they must have a root.
// If this fails, that means there is a cycle (the opposite is not true)
ERR_FAIL_COND_V_MSG(_root_node_id == -1, ERR_INVALID_DATA, "Root node not found");
}
ZN_PRINT_VERBOSE(format("Done loading {}", fpath));
return OK;
}
unsigned int Data::get_model_count() const {
return _models.size();
}
const Model &Data::get_model(unsigned int index) const {
CRASH_COND(index >= _models.size());
const Model *model = _models[index].get();
CRASH_COND(model == nullptr);
return *model;
}
const Node *Data::get_node(int id) const {
auto it = _scene_graph.find(id);
CRASH_COND(it == _scene_graph.end());
const Node *node = it->second.get();
CRASH_COND(node == nullptr);
return node;
}
int Data::get_root_node_id() const {
return _root_node_id;
}
unsigned int Data::get_layer_count() const {
return _layers.size();
}
const Layer &Data::get_layer_by_index(unsigned int index) const {
CRASH_COND(index >= _layers.size());
const Layer *layer = _layers[index].get();
CRASH_COND(layer == nullptr);
return *layer;
}
const int Data::get_material_id_for_palette_index(unsigned int palette_index) const {
auto it = _materials.find(palette_index);
if (it == _materials.end()) {
return -1;
}
return it->first;
}
const Material &Data::get_material_by_id(int id) const {
auto it = _materials.find(id);
CRASH_COND(it == _materials.end());
const Material *material = it->second.get();
CRASH_COND(material == nullptr);
return *material;
}
} // namespace zylann::voxel::magica
| [
"marc.gilleron@gmail.com"
] | marc.gilleron@gmail.com |
cf2baf72191ab2c82f7aa22e3353eed4b5662604 | 9e00a95a7b20d846c64f8093b6f9ca4715729d4a | /BattleTank/Source/BattleTank/TankAIController.h | 937ab6bc12d05ab43ede25a9928bd04cc4a2392f | [] | no_license | E36lewis/battleTank | 9273ea43e24fa3db7de8c556b039af903ffc4e9f | c519d31c175f4283715375f276f2574eb91fcb57 | refs/heads/master | 2020-03-28T11:22:37.066274 | 2019-02-19T21:39:30 | 2019-02-19T21:39:30 | 148,206,612 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 470 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "AIController.h"
#include "TankAIController.generated.h"
class ATank;
/**
*
*/
UCLASS()
class BATTLETANK_API ATankAIController : public AAIController
{
GENERATED_BODY()
private:
virtual void BeginPlay() override;
virtual void Tick(float DeltaTime) override;
ATank* GetControlledTank() const;
ATank* GetPlayerTank() const;
};
| [
"e36lewis@gmail.com"
] | e36lewis@gmail.com |
f8204515c2214f4ce7b0c71be6c34e6ddeded019 | 8f5da97844572f37813513a431ed3082404765f0 | /raysting/RTestV2p5/TryData3/SjChart/Graph.cpp | 9b18679d5ce0b6e82f0677e6f2c090d5a6ce0e90 | [] | no_license | DharmaPatil/kpgweigher | 2fa48a98e982392b31df32280ed0f13d753f1029 | ddbc0302a266b6310417a7f58533750418beea19 | refs/heads/master | 2016-09-06T09:08:10.995202 | 2015-01-17T02:13:30 | 2015-01-17T02:13:30 | 33,178,214 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 6,952 | cpp | // Graph.cpp : implementation file
//
#include "stdafx.h"
#include "math.h"
#include "Graph.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#define AXIS_COLOR RGB(255,255,255)
#define BK_COLOR RGB(0,0,0)
#define LINE_COLOR RGB(255,127,255)
#define STAR_COLOR RGB(127,255,255)
#define MARK_COLOR RGB(255,255,127)
#define CURSOR_COLOR RGB(127,127,255)
#define X_SHIFT 40
#define Y_SHIFT 40
static int VAL2POS(double vup,int pup,double vrange,int prange,double val){
int dd = int((double)pup-(vup-val)*(double)prange/vrange);
return dd;
}
static double POS2VAL(double vup,int pup,double vrange,int prange,int val){
double dd = (vup-(pup-val)*vrange/(double)prange);
return dd;
}
/////////////////////////////////////////////////////////////////////////////
// CGraph
CGraph::CGraph()
{
data.RemoveAll();
upper = 1.0+(6e-6);
lower = 1.0-(6e-6);
dbase = 1;
dcursor = 4e-6;
criteria = 4e-6;
for(int i=1;i < 25;i++){
data.Add(1+0.00000001*rand());
}
}
CGraph::~CGraph()
{
}
BEGIN_MESSAGE_MAP(CGraph, CStatic)
//{{AFX_MSG_MAP(CGraph)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGraph message handlers
void CGraph::DrawGraph(CDC *pDC,CRect graphRect)
{
CRect rc;
CBrush brush;
brush.CreateSolidBrush(BK_COLOR); //black background
pDC->SetBkMode(TRANSPARENT);
pDC->FillRect(&graphRect,&brush);
maxHeight=graphRect.Height();
maxWidth=graphRect.Width();
xOrgPoint=graphRect.left+xshift; //mark 10 pixel to show value
yOrgPoint=graphRect.top+yshift; //mark 10 pixel to show title
//mark title in the center
CFont titleFont;
titleFont.CreateFont(12, 0, 0, 0, 700, FALSE, FALSE, 0,
ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
DEFAULT_QUALITY, DEFAULT_PITCH | FF_ROMAN,_T("Arial"));
CFont* pOldFont = (CFont*) pDC->SelectObject(&titleFont);
pDC->SetTextColor(AXIS_COLOR);
xshift = X_SHIFT;
yshift = Y_SHIFT;
if(maxHeight < (2*yshift))
yshift = 5 ;
ytickRange=maxHeight-(2*yshift); // 5 pixel as space & 10 pixel as label
ytickSpace=ytickRange/8; // pixel per step (9 level in all)
if(ytickSpace <= 0)
ytickSpace = 1;
if(maxWidth < (2*xshift))
xshift = 5 ;
xtickRange=maxWidth-(2*xshift)-20; // 5 pixel as space & 10 pixel as label
if(data.GetSize() > 0){
xtickSpace = xtickRange/10.0; //pixel per step
DrawAxis(pDC);
DrawSeries(pDC);
}
pDC->SelectObject(pOldFont);
}
void CGraph::DrawAxis(CDC* pDC)
{
CBrush br(AXIS_COLOR);
CString tickLabel;
CRgn arrowy,arrowx;
CPoint pt[3];
pDC->SetTextColor(AXIS_COLOR);
//draw y axis and the triangle
pt[0].x = xOrgPoint;pt[0].y = yOrgPoint-3;
pt[1].x = xOrgPoint+2;pt[1].y = yOrgPoint;
pt[2].x = xOrgPoint-2;pt[2].y = yOrgPoint;
arrowy.CreatePolygonRgn(pt,3,ALTERNATE);
pDC->FillRgn(&arrowy,&br);
pDC->MoveTo(xOrgPoint, yOrgPoint);
pDC->LineTo(xOrgPoint, yOrgPoint + ytickRange);
pt[0].x = xOrgPoint+xtickRange+3;pt[0].y = yOrgPoint+ytickRange;
pt[1].x = xOrgPoint+xtickRange;pt[1].y = yOrgPoint+ytickRange+2;
pt[2].x = xOrgPoint+xtickRange;pt[2].y = yOrgPoint+ytickRange-2;
arrowx.CreatePolygonRgn(pt,3,ALTERNATE);
pDC->FillRgn(&arrowx,&br);
//draw x axis
pDC->MoveTo(xOrgPoint, yOrgPoint+ytickRange);
pDC->LineTo(xOrgPoint + xtickRange, yOrgPoint+ytickRange);
//draw labels
CPen axispen(PS_DOT,1,AXIS_COLOR);
CPen *oldpen;
oldpen = pDC->SelectObject(&axispen);
//draw y axis ticks
for(int y = yOrgPoint; y < yOrgPoint+ytickRange; y+= ytickSpace) //four ticks
{
tickLabel.Format(_T("%.1fppm"),(POS2VAL(upper,yOrgPoint,upper-lower,-ytickRange,y)-dbase)*1000000.0/dbase);
//draw tick label
pDC->TextOut(xOrgPoint-xshift+2,y-4, tickLabel);
pDC->MoveTo(xOrgPoint,y);
pDC->LineTo(xOrgPoint+xtickRange,y);
}
//draw X axis ticks
int cnt = 0;
int step = (data.GetSize()/10);
if(step == 0) step = 1;
for(int x = 0; x < data.GetSize(); x += step )
{
int xpos;
if(data.GetSize() > 10)
{
tickLabel.Format(_T("%d"),x+1);
xpos = VAL2POS(1,xOrgPoint,data.GetSize()-1,xtickRange,x+1);
}else{
xpos = xOrgPoint + x*xtickSpace;
tickLabel.Format(_T("%d"),x);
}
//draw tick label
pDC->TextOut(xpos-4,yOrgPoint+ytickRange+2, tickLabel);
pDC->MoveTo(xpos,yOrgPoint);
pDC->LineTo(xpos,yOrgPoint+ytickRange);
}
//draw mark line
if((dbase > lower) && (dbase < upper)){
CPen markpen(PS_SOLID,1,MARK_COLOR);
pDC->SelectObject(&markpen);
tickLabel.Format(_T("%3.3e"),dbase);
y = VAL2POS(upper,yOrgPoint,upper-lower,-ytickRange,dbase);
pDC->TextOut(xOrgPoint+xtickRange+2,y-4, tickLabel);
pDC->MoveTo(xOrgPoint,y);
pDC->LineTo(xOrgPoint+xtickRange,y);
}
//draw cursor line
if((dcursor > lower) && (dcursor < upper)){
CPen cursorpen(PS_SOLID,1,CURSOR_COLOR);
pDC->SelectObject(&cursorpen);
tickLabel.Format(_T("%.1fppm(%3.3e)"),((dcursor-dbase)*1000000.0/dbase),dcursor);
y = VAL2POS(upper,yOrgPoint,upper-lower,-ytickRange,dcursor);
pDC->TextOut(xOrgPoint+xtickRange-xshift,y-4, tickLabel);
pDC->MoveTo(xOrgPoint,y);
pDC->LineTo(xOrgPoint+xtickRange,y);
}
pDC->SelectObject(oldpen);
}
void CGraph::DrawSeries(CDC* pDC)
{
CBrush starbrush (STAR_COLOR);
CBrush markbrush (MARK_COLOR);
CBrush* pOldBrush;
pOldBrush = pDC->SelectObject(&starbrush);
CPen linePen(PS_SOLID, 1, LINE_COLOR);
CPen* pOldPen;
pOldPen=pDC->SelectObject(&linePen);
double lastx = xOrgPoint;
int lasty;
for(int x=0; x < data.GetSize(); x++)
{
if(x != 0)
pDC->MoveTo(int(lastx + 1), lasty - 1);
//update y position
if(data[x] > upper)
lasty = yOrgPoint;
else if(data[x] < lower)
lasty = yOrgPoint+ytickRange;
else
lasty = VAL2POS(upper,yOrgPoint,upper-lower,-ytickRange,data[x]);;
//update x position
if(data.GetSize() <= 10)
lastx += xtickSpace;
else
lastx = VAL2POS(1,xOrgPoint,data.GetSize()-1,xtickRange,x+1);
if(x != 0)
pDC->LineTo(int(lastx-1),lasty-1);
//now draw ellipse...
if((data[x] < (dbase+criteria)) && (data[x] > (dbase-criteria)))
pDC->SelectObject(&starbrush);
else
pDC->SelectObject(&markbrush);
pDC->Ellipse(int(lastx - 3), lasty-3,
int(lastx+ 3), lasty + 3);
}
pDC->SelectObject(pOldBrush);
pDC->SelectObject(pOldPen);
}
void CGraph::MouseUp(short button, short shift, long x, long y)
{
if(button == LEFT_BUTTON){
dcursor = POS2VAL(upper,yOrgPoint,upper-lower,-ytickRange,y);
}
if(button == RIGHT_BUTTON){
dbase = POS2VAL(upper,yOrgPoint,upper-lower,-ytickRange,y);
upper = dbase + 5*criteria;
lower = dbase - 5*criteria;
}
}
| [
"fdlxh@hotmail.com@83333240-a642-11dd-a8c6-677c70d10fe4"
] | fdlxh@hotmail.com@83333240-a642-11dd-a8c6-677c70d10fe4 |
f0dde2bd246052c4ddc9096792b7d185c94d51d5 | 6745a8407046470addd03bc1c400bda5e384984b | /MyProject/Source/MyProject/DamageableInterface.h | bd1e7efd817c2d0208e1ce59ffb9c9b4317e2098 | [] | no_license | ManChunFu/MyProject | 6434613772dca6cb99dadb4451b8d9ab74a75d7d | db9a3f0b7bdfb2ed7af8303e79918a807f8e74a6 | refs/heads/master | 2020-12-06T02:50:43.900454 | 2020-01-07T12:31:10 | 2020-01-07T12:31:10 | 232,319,748 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 719 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "DamageableInterface.generated.h"
// This class does not need to be modified.
UINTERFACE(MinimalAPI)
class UDamageableInterface : public UInterface
{
GENERATED_BODY()
};
/**
*
*/
class MYPROJECT_API IDamageableInterface
{
GENERATED_BODY()
// Add interface functions to this class. This is the class that will be inherited to implement this interface.
public:
UFUNCTION(BlueprintCallable, BlueprintNativeEvent, Category = "Health")
float ApplyDamage(float InDamage);
virtual float ApplyDamage_Implementation(float InDamage)
{
return 0.0f;
}
};
| [
"man.chunfu@futuregames.nu"
] | man.chunfu@futuregames.nu |
e174e02cb3dfc5b000b4a9d2412551f0a29f3d27 | 9b6eced5d80668bd4328a8f3d1f75c97f04f5e08 | /bthci/bthci2/hcicmdq/src/HciCmdQTimer.cpp | b0978630d47718c27ebe89fcd2d64fe686d8d136 | [] | no_license | SymbianSource/oss.FCL.sf.os.bt | 3ca94a01740ac84a6a35718ad3063884ea885738 | ba9e7d24a7fa29d6dd93808867c28bffa2206bae | refs/heads/master | 2021-01-18T23:42:06.315016 | 2010-10-14T10:30:12 | 2010-10-14T10:30:12 | 72,765,157 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,715 | cpp | // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//
/**
@file
@internalComponent
*/
#include "HciCmdQTimer.h"
#include "HciCmdQUtil.h"
#include <bluetooth/hcicmdqcontroller.h>
#include <bluetooth/logger.h>
#ifdef __FLOG_ACTIVE
_LIT8(KLogComponent, LOG_COMPONENT_HCICMDQ);
#endif
/**
Starts the completion timer.
*/
void CHCICmdQTimer::Restart(TUint aMilliseconds,
TUint aCommandQItemId,
MHCITimerClient& aClient)
{
LOG_FUNC
iClient = &aClient;
iCommandQItemId = aCommandQItemId;
Cancel();
After(aMilliseconds * 1000);
}
void CHCICmdQTimer::ConstructL()
{
LOG_FUNC
CTimer::ConstructL();
CActiveScheduler::Add(this);
}
CHCICmdQTimer::CHCICmdQTimer()
: CTimer(EPriorityStandard), iCommandQItemId(KInvalidCommandQueueItemId)
{
LOG_FUNC
}
/*
This timer ensures that the stack can recover from hardware failing to
respond to a command in a timely manner, specified by the QDP, by
calling back into the stack when the timeout expires. The timer is
started when the command is issued. A command must not take longer
than the starvation timeout to complete.
*/
/*static*/ CHCICmdQCompletionTimer* CHCICmdQCompletionTimer::NewL()
{
LOG_STATIC_FUNC
CHCICmdQCompletionTimer* self = new (ELeave) CHCICmdQCompletionTimer();
CleanupStack::PushL(self);
self->ConstructL();
CleanupStack::Pop(self);
return self;
}
CHCICmdQCompletionTimer::CHCICmdQCompletionTimer()
: CHCICmdQTimer()
{
}
void CHCICmdQCompletionTimer::RunL()
{
LOG_FUNC
__ASSERT_ALWAYS(iClient != NULL, PANIC(KHCICmdQPanic, ENullTimerClient));
iClient->CompletionTimeoutFired(iCommandQItemId);
}
/*
This timer is started whenever the head of the pending commands queue
changes. It is used to restart the stack in the event that the
pending queue is not processed frequently enough.
*/
/*static*/ CHCICmdQStarvationTimer* CHCICmdQStarvationTimer::NewL()
{
LOG_STATIC_FUNC
CHCICmdQStarvationTimer* self = new (ELeave) CHCICmdQStarvationTimer();
CleanupStack::PushL(self);
self->ConstructL();
CleanupStack::Pop(self);
return self;
}
CHCICmdQStarvationTimer::CHCICmdQStarvationTimer()
: CHCICmdQTimer()
{
}
void CHCICmdQStarvationTimer::RunL()
{
LOG_FUNC
__ASSERT_ALWAYS(iClient != NULL, PANIC(KHCICmdQPanic, ENullTimerClient));
iClient->StarvationTimeoutFired(iCommandQItemId);
}
| [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
c1937e042b92965dedd66e0e88d3cdc6e081b2bb | 16451b68e5a9da816e05a52465d8b0d118d7d40c | /data/tplcache/24e5aac19200dabfffdf8a993ffd620d.inc | 53d24a605c2fd306f4eccb95ffd3be8fee2f6787 | [] | no_license | winter2012/tian_ya_tu_ku | 6e22517187ae47242d3fde16995f085a68c04280 | 82d2f8b73f6ed15686f59efa9a5ebb8117c18ae5 | refs/heads/master | 2020-06-20T17:42:14.565617 | 2019-07-16T12:02:09 | 2019-07-16T12:02:09 | 197,184,466 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 1,646 | inc | {dede:field name='keywords'}摄影{/dede:field}
{dede:field name='description'}唯美摄影:白色童话{/dede:field}
{dede:field name='title'}唯美摄影:白色童话{/dede:field}
{dede:field name='writer'}{/dede:field}
{dede:field name='source'}{/dede:field}
{dede:field name='pubdate'}{/dede:field}
{dede:field name='body'}{/dede:field}
{dede:field name='imgurl'}{/dede:field}
{dede:field name='imgurls'}
{dede:pagestyle maxwidth='800' ddmaxwidth='150' row='3' col='3' value='2'/}
{dede:comments}图集类型会采集时生成此配置是正常的,不过如果后面没有跟着img标记则表示规则无效{/dede:comments}
{dede:img ddimg='' text='图 1'}/uploads/allimg/c121130/135424051CKP-15911.jpg{/dede:img}
{dede:img ddimg='' text='图 2'}/uploads/allimg/c121130/135424051I6460-29A5.jpg{/dede:img}
{dede:img ddimg='' text='图 3'}/uploads/allimg/c121130/135424051N2930-34261.jpg{/dede:img}
{dede:img ddimg='' text='图 4'}/uploads/allimg/c121130/135424051R4210-46205.jpg{/dede:img}
{dede:img ddimg='' text='图 5'}/uploads/allimg/c121130/135424051VOF-5Y60.jpg{/dede:img}
{dede:img ddimg='' text='图 6'}/uploads/allimg/c121130/135424051911910-C560.jpg{/dede:img}
{dede:img ddimg='' text='图 7'}/uploads/allimg/c121130/135424051955460-O930.jpg{/dede:img}
{dede:img ddimg='' text='图 8'}/uploads/allimg/c121130/135424051cP-W013.jpg{/dede:img}
{dede:img ddimg='' text='图 9'}/uploads/allimg/c121130/13542405202aP-96129.jpg{/dede:img}
{dede:img ddimg='' text='图 10'}/uploads/allimg/c121130/1354240520MG0-10CI.jpg{/dede:img}{/dede:field}
{dede:field name='litpic'}/uploads/allimg/c121130/135424051CKP-15911_lit.jpg{/dede:field}
| [
"winter2012102@gmail.com"
] | winter2012102@gmail.com |
270011105aafd33c95cdc47288df53c8a5faf701 | 99772a1f377b1641aac7c0a4d76d65a6ee7ab9a2 | /Box.cpp | 96c49f5b9631404ddc20c491c3d5f44c9c90ffaa | [] | no_license | anonymous372/Mario | b88fdbd164aad8f3321ed3f1386232e1f6ee8bbb | 782a2eb5fa74dcff116ef85236976791154c1f82 | refs/heads/master | 2023-07-21T06:02:02.128711 | 2021-09-01T04:58:57 | 2021-09-01T04:58:57 | 401,936,338 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | cpp | #include"Box.h"
//#include<SFML/Graphics.hpp>
Box::Box(sf::Texture* texture, sf::Vector2f size, sf::Vector2f pos) {
box.setSize(size);
box.setOrigin(size / 2.0f);
box.setPosition(pos);
box.setTexture(texture);
} | [
"sourabhshukla3.14@gmail.com"
] | sourabhshukla3.14@gmail.com |
073bd0e36db281f9b7b9f05fc738cf469e13600e | 9171faca1d73c9f997529cad1909b80c198e60ab | /01-abstract/shape.h | 6ce9f7ba31e929203bce75ecf455c34a5a314e2d | [] | no_license | ckoparir/C-Tutors | d2238f0ab47ac47b0bd635f5494f424ce8dd4301 | 3c5c4a4468856a4aae534a59398eacf877ac0f48 | refs/heads/master | 2020-03-28T13:56:59.022271 | 2018-09-25T00:15:51 | 2018-09-25T00:15:51 | 148,444,620 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | h | #ifndef __SHAPE_H__
#define __SHAPE_H__
class Shape{
public:
virtual void getInfo()=0;
};
#endif
| [
"ckoparir@gmail.com"
] | ckoparir@gmail.com |
c3ac062c6944ed1139ac8ffc3c42d76841b89924 | b2a86fb0b3b4925271d3962f9068cf402f924482 | /main.cpp | 6b932c3e050f03212cabd44c358bd20791405854 | [] | no_license | mahho/sockets | e74363a843d5d4f4446bd41f198a79faa6fd01ea | 55456eaf34d29aab8c795c3ea56d1b14e8de8c68 | refs/heads/master | 2020-05-19T10:14:08.845710 | 2013-10-16T10:36:36 | 2013-10-16T10:36:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 505 | cpp | #include <iostream>
#include <errno.h>
#include "server.h"
CServer myServer;
void handle(int sock) {
while (1) {
std::string received = myServer.receive(sock);
std::cout << "Received: " << received;
std::cout << "Sending confirmation" << std::endl;
myServer.send(sock, "confirm\n\r");
}
}
int main() {
signal(SIGCHLD,SIG_IGN);
myServer.init();
while (1) {
if (myServer.getSocketState()) {
handle(myServer.getSocket());
} else {
myServer.closeSocket();
}
}
return 0;
}
| [
"mahho@mahho.net"
] | mahho@mahho.net |
a5ea9fe579f2116077c6ef654cbdfffbc3064a11 | c86b4e6b1a28605ebc9e6b10eb55a020b3175909 | /Reference/include/ophTriMesh.h | b9322e0a8fa93dd6b63373756279f544fed3a2e5 | [] | no_license | shs-leo/OpenholoRefApp | 6175f8a7c2a894e3d68f88a6b106a051bf89d4d7 | 4118b6ffd7680d2832acd29cce66e4f0a56cfe00 | refs/heads/master | 2023-05-11T16:55:36.945384 | 2018-08-03T02:34:18 | 2018-08-03T02:34:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,684 | h | #ifndef __ophTriMesh_h
#define __ophTriMesh_h
#include "ophGen.h"
using namespace oph;
struct geometric {
Real glRot[9];
Real glShift[3];
Real loRot[4];
};
class GEN_DLL ophTri : public ophGen
{
public:
/**
* @brief Constructor
*/
explicit ophTri(void) {
}
protected:
/**
* @brief Destructor
*/
virtual ~ophTri(void) {}
private:
const char* meshDataFileName;
private:
uint num_mesh = 0;
Real* triMeshData;
Complex<Real>* angularSpectrum;
private:
Real objSize;
Real objShift[3];
Real carrierWave[3] = { 0,0,1 };
int SHADING_TYPE;
vec3 illumination;
public:
void setObjSize(Real in) { objSize = in; }
void setObjShift(Real in[]) { objShift[_X] = in[_X]; objShift[_Y] = in[_Y]; objShift[_Z] = in[_Z]; }
void setObjShift(vector<Real> in) { objShift[_X] = in[_X]; objShift[_Y] = in[_Y]; objShift[_Z] = in[_Z]; }
/** CarrierWave = {0, 0, 1} (default) */
void setCarrierWave(Real in1, Real in2, Real in3) { carrierWave[_X] = in1; carrierWave[_Y] = in2; carrierWave[_Z] = in3; }
/** No-Illumination Effect : Illumination = {0, 0, 0} */
void setIllumination(vec3 in) { illumination = in; }
void setIllumination(Real inx, Real iny, Real inz) { illumination = { inx, iny, inz }; }
/** Shading Type : SHADING_FLAT, SHADING_CONTINUOUS */
void setShadingType(int in) { SHADING_TYPE = in; }
Real getNumMesh() { return num_mesh; }
Real* getMeshData() { return triMeshData; }
Complex<Real>* getAngularSpectrum() { return angularSpectrum; }
Real* getScaledMeshData() { return scaledMeshData; }
public:
int readMeshConfig(const char* mesh_config);
/**
*@brief mesh data load
* file extension : .txt
* data structure : each row = [x1 y1 z1 x2 y2 z2 x3 y3 z3]
*/
void loadMeshData(const char* fileName);
void loadMeshData();
void objScaleShift();
void objScaleShift(Real objSize_, vector<Real> objShift_);
void objScaleShift(Real objSize_, Real objShift_[]);
enum SHADING_FLAG { SHADING_FLAT, SHADING_CONTINUOUS };
void generateAS(uint SHADING_FLAG);
void generateMeshHologram(uint SHADING_FLAG);
void generateMeshHologram();
private:
void initializeAS();
void objNormCenter();
uint checkValidity(Real* mesh, vec3 no);
uint findGeometricalRelations(Real* mesh, vec3 no);
void calGlobalFrequency();
uint calFrequencyTerm();
uint refAS_Flat(vec3 no);
uint refAS_Continuous();
uint findNormalForContinuous();
void refToGlobal();
private:
Real* normalizedMeshData;
Real* scaledMeshData;
private:
Real refTri[9] = { 0,0,0,1,1,0,1,0,0 };
Real* fx;
Real* fy;
Real* fz;
private:
geometric geom;
Real* mesh_local;
Real* flx;
Real* fly;
Real* flz;
Real* freqTermX;
Real* freqTermY;
Complex<Real>* refAS;
};
#endif | [
"holoinha@gmail.com"
] | holoinha@gmail.com |
7a64cf8ee4438fa381e17abaaf64f585f40d6a58 | 93d1ebc60765212ac8599418095188dcb67302f8 | /Enclave/MiniDnn/layer/identity_block.h | 269aecc2b8b1ea42aeee665c4d1980dde3d5304d | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | hemingteng/TrustFL | 47e3e3d919617f93a4e994b48d345320605f603a | 9e05a7e160bbf4fa1e7a426767f69158ea89b22d | refs/heads/master | 2022-11-12T21:43:50.187229 | 2020-07-09T14:56:19 | 2020-07-09T14:56:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,642 | h | //
// Created by Fengting Li on 2019-07-30.
//
#ifndef MYPROJECT_IDENTITY_BLOCK_H
#define MYPROJECT_IDENTITY_BLOCK_H
#include <vector>
#include "../layer.h"
#include "conv.h"
#include "relu.h"
class IdentityBlock : public Layer {
private:
const int dim_in;
int dim_out;
int channel_in;
int height_in;
int width_in;
int channel_out1;
int channel_out2;
int channel_out;
int height_kernel;
int width_kernel;
std::vector<Layer *> layers; // layer pointers
// std::vector<Layer *> shortcut; // layer pointers
void init();
public:
IdentityBlock(int channel_in, int height_in, int width_in, int channel_out1, int channel_out2,
int height_kernel, int width_kernel) :
dim_in(channel_in * height_in * width_in), dim_out(channel_in * height_in * width_in),
channel_in(channel_in), height_in(height_in), width_in(width_in), channel_out1(channel_out1),
channel_out2(channel_out2), channel_out(channel_in), height_kernel(height_kernel),
width_kernel(width_kernel) { init(); }
void forward(const Matrix &bottom);
void backward(const Matrix &bottom, const Matrix &grad_top);
void update(Optimizer &opt);
int output_dim() { return dim_out; }
const Matrix &output() { return layers[layers.size() - 1]->output(); }
// const Matrix &back_gradient() {
// Matrix temp1 = (layers[layers.size() - 1]->back_gradient()).eval();
// Matrix temp2 = (layers[0]->back_gradient()).eval();
// Matrix temp = temp1 + temp2;
// return temp;
// }
};
#endif //MYPROJECT_IDENTITY_BLOCK_H
| [
"zeyuzhang07@outlook.com"
] | zeyuzhang07@outlook.com |
f5b17d25f3c46850a4ec40cb105c09eb0117fb76 | b278bbd82b20b5eeff813586d1a1846db1d7e1c6 | /header_files/frame.hpp | a8a44d9118ca0edcaf7094db4eb7697a3e81d692 | [] | no_license | bryansb/CAVO | e4580fb33ec87aefa2d5f196f7d854d3f3885e6d | a99281b7e49b09e336da8ad4a2c77abbfdb06695 | refs/heads/master | 2023-06-12T12:01:18.943996 | 2021-07-05T04:37:40 | 2021-07-05T04:37:40 | 372,125,888 | 0 | 0 | null | 2021-06-09T03:37:19 | 2021-05-30T04:50:57 | C++ | UTF-8 | C++ | false | false | 413 | hpp | #include "base.hpp"
class Frame : public VideoCapture {
private:
cv::Mat frame;
std::mutex frame_mutex;
public:
bool busy = false;
Frame(string path);
Frame(int cam);
bool nextFrame(bool = false, int = 1);
void flipFrame(cv::Mat frame, int orientation = 1);
cv::Mat getFrame();
void setFrame(cv::Mat frame);
}; | [
"eddzhizhpon@gmail.com"
] | eddzhizhpon@gmail.com |
a8a00d27ff39556f4b6cb53661a0150175a1fdfb | e1e9b4f1c2802ecc4c060a9d416260279e279737 | /src/ds/ui/mesh_source/mesh_source.h | 377a22588c9e1c27389cb83cf87feb2854410b77 | [] | no_license | px307/ds_cinder | 486f58a43a538c5d50c8709a8a8cb292ad808093 | 88fbfa767b7634cbb440cd10519763243a87c13b | refs/heads/master | 2021-08-22T09:00:17.257688 | 2017-10-20T00:15:40 | 2017-10-20T00:15:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,197 | h | #pragma once
#ifndef DS_UI_MESHSOURCE_MESHSOURCE_H_
#define DS_UI_MESHSOURCE_MESHSOURCE_H_
#include <memory>
#include <cinder/gl/Vbo.h>
namespace ds {
class DataBuffer;
namespace ui {
class SpriteEngine;
/**
* \class ds::ui::MeshSource
* \brief The public API for creating mesh geometry.
*/
class MeshSource {
public:
MeshSource();
virtual ~MeshSource();
bool operator==(const MeshSource&) const;
bool empty() const;
const ci::gl::VboMesh* getMesh();
protected:
// Internal maintenance
void setEngine(SpriteEngine*);
friend class MeshOwner;
class Data {
public:
Data();
virtual ~Data();
virtual bool isEqual(const Data&) const = 0;
virtual const ci::gl::VboMesh* getMesh() = 0;
// If a subclass needs the engine, then handle this.
virtual void setEngine(SpriteEngine*);
// Network replication
#if 0
virtual char getBlobType() const = 0;
virtual void writeTo(DataBuffer&) const = 0;
virtual bool readFrom(DataBuffer&) = 0;
#endif
};
MeshSource(const std::shared_ptr<Data>&);
std::shared_ptr<Data> mData;
};
} // namespace ui
} // namespace ds
#endif
| [
"eric.hackborn@downstream.com"
] | eric.hackborn@downstream.com |
4596604d8126f9dc007caa4fa203d85435305015 | 2da4f1e4551812dff0b049a0c91a48487905a45c | /stackMin.h | 73fae8ffb382b86deab4df99e6762fb3454d9522 | [] | no_license | arvindus/fbci | bdc2ad112b9efd15b99fa81039f6d99698f51005 | 506b52a02ba8caa73c4fab6740b398bfde4099e9 | refs/heads/master | 2021-06-10T20:48:33.683331 | 2015-02-14T01:19:52 | 2015-02-14T01:19:52 | 28,238,332 | 0 | 0 | null | 2015-01-15T01:35:07 | 2014-12-19T17:07:13 | C++ | UTF-8 | C++ | false | false | 929 | h | //
// stack.h
//
//
// Created by arvind sudarsanam on 12/21/14.
//
//
#ifndef ____stack__
#define ____stack__
#include <vector>
#include <iostream>
#define MINVAL 1000000
template <typename T>
class stack
{
private:
std::vector<T> nodes;
public:
void enqueue(T node) { nodes.push_back(node); }
T dequeue()
{
if (nodes.empty())
return NULL;
T node = nodes.back();
nodes.pop_back();
return node;
}
bool isEmpty() { return nodes.empty(); }
int num_nodes() { return nodes.size(); }
void print()
{
for (int i = 0; i < num_nodes(); ++i)
{
std::cout << *(nodes[i]) << " ";
}
std::cout << "\n";
}
stack<T> *cloneStack()
{
stack<T> *st1 = new stack<T>();
st1->nodes.resize(num_nodes());
copy(nodes.begin(),nodes.end(),st1->nodes.begin());
return st1;
}
};
#endif /* defined(____stack__) */
| [
"theonemorpheus@gmail.com"
] | theonemorpheus@gmail.com |
e5a102a7b5221b81b5894e3d67dbd481702a9108 | 4cc7c4353c06aa4d45aa1cb44501613fbc853e96 | /makeblock/003_melody/003_melody.ino | cd62a07f54bff2a5b402f446eb878147e6e199c0 | [
"MIT"
] | permissive | mirontoli/tolle-rasp | be865bbfcfb65b68c9a7f3e3decb4c1face9fe34 | 855f2d11f8eb4a0900b67263601e318a9e367683 | refs/heads/master | 2023-08-08T22:29:28.072211 | 2023-08-04T13:58:28 | 2023-08-04T13:58:28 | 42,224,253 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,117 | ino | // Anatoly Mironov @mirontoli 2019-01-06
// Play the melody Kukamipe kukasi, Chuvash folk song
#include <Arduino.h>
#include <Wire.h>
#include <MeAuriga.h>
MeBuzzer buzzer;
const int pace = 500;
const int tone_A3 = 220;
const int tone_B3 = 247;
const int tone_C4 = 262;
const int tone_D4 = 294;
const int tone_E4 = 330;
void setup() {
buzzer.setpin(45);
delay(5000); //delay otherwise it will play the first phrase twice
play();
}
void loop() {
delay(5000);
}
void play() {
playRepeatedTones(tone_A3, pace, 3);
playRepeatedTones(tone_C4, pace, 1);
playRepeatedTones(tone_A3, pace, 2);
playRepeatedTones(tone_A3, pace*2, 1);
for (int i = 0; i < 2; i++) {
playRepeatedTones(tone_E4, pace, 2);
playRepeatedTones(tone_C4, pace, 1);
playRepeatedTones(tone_E4, pace, 1);
playRepeatedTones(tone_D4, pace*2, 2);
}
playRepeatedTones(tone_C4, pace, 2);
playRepeatedTones(tone_B3, pace, 2);
playRepeatedTones(tone_A3, pace*2, 2);
}
void playRepeatedTones(int tone, int pace, int times) {
for(int i = 0; i < times; i++) {
buzzer.tone(tone,pace);
delay(20);
}
}
| [
"mirontoli@gmail.com"
] | mirontoli@gmail.com |
db156d341f3950bd89db04db7bc64500e6398d47 | bc0e6b77ee649ef611ade21bc1b24fc321653e4d | /PFCalEE/userlib/src/HGCSSSamplingSection.cc | df19077b7637a01d970badb40bd9ae3d1a43dc5d | [] | no_license | pfs/PFCal | 08dcfb7db908a688c1a0f390965752537022df5f | 2922434ce888d40acdc832d13313c1e6a8835278 | refs/heads/master | 2023-03-13T17:39:57.706091 | 2023-03-01T12:47:14 | 2023-03-01T12:47:14 | 11,907,151 | 0 | 17 | null | 2021-03-15T16:42:25 | 2013-08-05T19:44:57 | C++ | UTF-8 | C++ | false | false | 77 | cc | #include "HGCSSSamplingSection.hh"
ClassImp(HGCSSSamplingSection);
//dummy
| [
"a.magnan@imperial.ac.uk"
] | a.magnan@imperial.ac.uk |
1b54c7f4219d1dc15277943649911706992df049 | 0deed349518649a62688be5bc4b89ac574c29926 | /mainwindow.cc | 3fa5ecc110dbc94004b18d002277533e6eb4c767 | [] | no_license | birdatdotty/untitled32 | f9cee30db4cfd903e6fe587d87c8d0a76679a34e | 9b6a5de3759192f633d1d4a934501feb8951c304 | refs/heads/master | 2020-05-25T00:57:59.103408 | 2019-05-20T00:47:46 | 2019-05-20T00:47:46 | 187,544,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,915 | cc | #include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QTimer>
static
QJsonObject ObjectFromString(const QString& in)
{
QJsonObject obj;
QJsonDocument doc = QJsonDocument::fromJson(in.toUtf8());
if(!doc.isNull())
{
if(doc.isObject())
{
obj = doc.object();
}
}
return obj;
}
MainWindow::MainWindow(QWidget *parent) :
QWidget(parent)
{
button = new QPushButton("Button");
lFile = new QLabel("Файл:");
lUrl = new QLabel("Url:");
eFile = new QLineEdit("/tmp/123.csv");
eUrl = new QLineEdit("https://chain.api.btc.com/v3/block/3");
connect(button, &QPushButton::released,
this, &MainWindow::btnClick);
connect(eFile, &QLineEdit::textChanged,
[=](const QString&newFile){filePath = newFile;} );
connect(eUrl, &QLineEdit::textChanged,
[=](const QString&newUrl){url = newUrl;} );
filePath = eFile->text();
url = eUrl->text();
mainLayout.addWidget(lFile,1,0);
mainLayout.addWidget(eFile,1,1);
mainLayout.addWidget(lUrl,2,0);
mainLayout.addWidget(eUrl,2,1);
mainLayout.addWidget(button,3,0,1,2);
setLayout(&mainLayout);
resize(800,300);
}
MainWindow::~MainWindow()
{
delete button;
delete lFile;
delete lUrl;
}
void MainWindow::btnClick()
{
QTimer *timer = new QTimer(this);
connect(timer, &QTimer::timeout,
this, &MainWindow::getUrl);
timer->start(3000);
}
void MainWindow::getUrl()
{
qInfo() << "getUrl";
QNetworkAccessManager *manager = new QNetworkAccessManager(this);
connect(manager, &QNetworkAccessManager::finished,
this, &MainWindow::replyFinished);
manager->get(QNetworkRequest(QUrl(url)));
}
void MainWindow::replyFinished(QNetworkReply *reply)
{
QString header;
QString newLine;
QJsonObject obj = ObjectFromString(reply->readAll());
QJsonObject data = obj["data"].toObject();
foreach (auto key, data.keys())
{
if (!data[key].isObject() )
{
header += key + "\t";
QJsonValue obj = data[key];
QJsonValue::Type t = obj.type();
switch (t) {
case QJsonValue::Bool:
newLine += QString::number(obj.toBool()) + "\t";
break;
case QJsonValue::Double:
newLine +=QString::number(obj.toDouble()) + "\t";
break;
case QJsonValue::String:
newLine += obj.toString() + "\t";
break;
}
}
}
QFile file(filePath);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append))
return;
bool emptyFile = false;
if (file.pos() == 0)
emptyFile = true;
QTextStream out(&file);
if (emptyFile)
out << header << "\n";
out << newLine << "\n";
file.close();
}
| [
"bird@dotty.su"
] | bird@dotty.su |
45754cd70c29be0aaed6014aa8fc8e9f9e022082 | 7bb19ed054d6557a0dafe64a5b99ca5f7aae7f96 | /src/215.数组中的第k个最大元素.cpp | 7f43272f66de533858badcb5774ba6ffdddfb0e5 | [] | no_license | hoshinotsuki/leetcodeSolution | da329b8977fc67c14dbb7303801ef289469c3eb3 | f29c64c6f322980cfde62693c119e84f668bfd51 | refs/heads/master | 2020-04-24T09:09:14.575801 | 2019-04-10T13:33:19 | 2019-04-10T13:33:19 | 171,854,023 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 953 | cpp | /*
* @lc app=leetcode.cn id=215 lang=cpp
*
* [215] 数组中的第K个最大元素
*
* https://leetcode-cn.com/problems/kth-largest-element-in-an-array/description/
*
* algorithms
* Medium (56.23%)
* Total Accepted: 16.6K
* Total Submissions: 29.4K
* Testcase Example: '[3,2,1,5,6,4]\n2'
*
* 在未排序的数组中找到第 k 个最大的元素。请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。
*
* 示例 1:
*
* 输入: [3,2,1,5,6,4] 和 k = 2
* 输出: 5
*
*
* 示例 2:
*
* 输入: [3,2,3,1,2,4,5,5,6] 和 k = 4
* 输出: 4
*
* 说明:
*
* 你可以假设 k 总是有效的,且 1 ≤ k ≤ 数组的长度。
*
*/
//sort(),reverse().O(nlogn)
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
sort(nums.begin(),nums.end());
reverse(nums.begin(),nums.end());
return nums[k-1];
}
};
| [
"2683442914@qq.com"
] | 2683442914@qq.com |
d84fff2b9fd2efd078e6b2565b0a57c36106935c | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/d/d-gimplify.cc | a98089b7ccac604fcaae6cea7ff7e7a1f0da354e | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C++ | false | false | 7,541 | cc | /* D-specific tree lowering bits; see also gimple.cc.
Copyright (C) 2020-2022 Free Software Foundation, Inc.
GCC 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, or (at your option)
any later version.
GCC 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 GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "dmd/globals.h"
#include "tree.h"
#include "gimple-expr.h"
#include "gimplify.h"
#include "d-tree.h"
/* Return TRUE if an operand OP of a given TYPE being copied has no data.
The middle-end does a similar check with zero sized types. */
static bool
empty_modify_p (tree type, tree op)
{
tree_code code = TREE_CODE (op);
switch (code)
{
case COMPOUND_EXPR:
return empty_modify_p (type, TREE_OPERAND (op, 1));
case CONSTRUCTOR:
/* Non-empty construcors are valid. */
if (CONSTRUCTOR_NELTS (op) != 0 || TREE_CLOBBER_P (op))
return false;
break;
case CALL_EXPR:
/* Leave nrvo alone because it isn't a copy. */
if (CALL_EXPR_RETURN_SLOT_OPT (op))
return false;
break;
default:
/* If the operand doesn't have a simple form. */
if (!is_gimple_lvalue (op) && !INDIRECT_REF_P (op))
return false;
break;
}
return empty_aggregate_p (type);
}
/* Return TRUE if EXPR is a COMPONENT_REF to a bit-field declaration. */
static bool
bit_field_ref (const_tree expr)
{
if (TREE_CODE (expr) == COMPONENT_REF
&& DECL_BIT_FIELD (TREE_OPERAND (expr, 1)))
return true;
return false;
}
/* Gimplify assignment from an INIT_EXPR or MODIFY_EXPR. */
static gimplify_status
d_gimplify_modify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
{
tree op0 = TREE_OPERAND (*expr_p, 0);
tree op1 = TREE_OPERAND (*expr_p, 1);
if (error_operand_p (op0) || error_operand_p (op1))
return GS_UNHANDLED;
/* Remove any copies of empty aggregates. */
if (empty_modify_p (TREE_TYPE (op0), op1))
{
gimplify_expr (&TREE_OPERAND (*expr_p, 0), pre_p, post_p,
is_gimple_lvalue, fb_lvalue);
if (TREE_SIDE_EFFECTS (op1))
gimplify_and_add (op1, pre_p);
*expr_p = TREE_OPERAND (*expr_p, 0);
return GS_OK;
}
/* If the back end isn't clever enough to know that the lhs and rhs
types are the same, add an explicit conversion. */
if ((AGGREGATE_TYPE_P (TREE_TYPE (op0)) || AGGREGATE_TYPE_P (TREE_TYPE (op1)))
&& !useless_type_conversion_p (TREE_TYPE (op1), TREE_TYPE (op0)))
{
TREE_OPERAND (*expr_p, 1) = build1 (VIEW_CONVERT_EXPR,
TREE_TYPE (op0), op1);
return GS_OK;
}
/* Same as above, but for bit-field assignments. */
if (bit_field_ref (op0) && TREE_TYPE (op0) != TREE_TYPE (op1))
{
TREE_OPERAND (*expr_p, 1) = convert (TREE_TYPE (op0), op1);
return GS_OK;
}
return GS_UNHANDLED;
}
/* Gimplify an ADDR_EXPR node. */
static gimplify_status
d_gimplify_addr_expr (tree *expr_p)
{
tree op0 = TREE_OPERAND (*expr_p, 0);
/* Constructors are not lvalues, so make them one. */
if (TREE_CODE (op0) == CONSTRUCTOR)
{
TREE_OPERAND (*expr_p, 0) = force_target_expr (op0);
return GS_OK;
}
return GS_UNHANDLED;
}
/* Gimplify a CALL_EXPR node. */
static gimplify_status
d_gimplify_call_expr (tree *expr_p, gimple_seq *pre_p)
{
/* Strictly evaluate all arguments from left to right. */
int nargs = call_expr_nargs (*expr_p);
location_t loc = EXPR_LOC_OR_LOC (*expr_p, input_location);
/* No need to enforce evaluation order if only one argument. */
if (nargs < 2)
return GS_UNHANDLED;
/* Or if all arguments are already free of side-effects. */
bool has_side_effects = false;
for (int i = 0; i < nargs; i++)
{
if (TREE_SIDE_EFFECTS (CALL_EXPR_ARG (*expr_p, i)))
{
has_side_effects = true;
break;
}
}
if (!has_side_effects)
return GS_UNHANDLED;
/* Leave the last argument for gimplify_call_expr. */
for (int i = 0; i < nargs - 1; i++)
{
tree new_arg = CALL_EXPR_ARG (*expr_p, i);
/* If argument has a side-effect, gimplify_arg will handle it. */
if (gimplify_arg (&new_arg, pre_p, loc) == GS_ERROR)
return GS_ERROR;
/* Even if an argument itself doesn't have any side-effects, it
might be altered by another argument in the list. */
if (new_arg == CALL_EXPR_ARG (*expr_p, i)
&& !really_constant_p (new_arg))
new_arg = get_formal_tmp_var (new_arg, pre_p);
CALL_EXPR_ARG (*expr_p, i) = new_arg;
}
return GS_OK;
}
/* Gimplify an UNSIGNED_RSHIFT_EXPR node. */
static gimplify_status
d_gimplify_unsigned_rshift_expr (tree *expr_p)
{
/* Convert op0 to an unsigned type. */
tree op0 = TREE_OPERAND (*expr_p, 0);
tree op1 = TREE_OPERAND (*expr_p, 1);
tree type = d_unsigned_type (TREE_TYPE (op0));
*expr_p = convert (TREE_TYPE (*expr_p),
build2 (RSHIFT_EXPR, type, convert (type, op0), op1));
return GS_OK;
}
/* Gimplify an unary expression node. */
static gimplify_status
d_gimplify_unary_expr (tree *expr_p)
{
tree op0 = TREE_OPERAND (*expr_p, 0);
if (error_operand_p (op0))
return GS_UNHANDLED;
/* Front end doesn't know that bit-field types are really different
from basic types, add an explicit conversion in unary expressions. */
if (bit_field_ref (op0) && TREE_TYPE (op0) != TREE_TYPE (*expr_p))
{
TREE_OPERAND (*expr_p, 0) = convert (TREE_TYPE (*expr_p), op0);
return GS_OK;
}
return GS_UNHANDLED;
}
/* Gimplify a binary expression node. */
static gimplify_status
d_gimplify_binary_expr (tree *expr_p)
{
tree op0 = TREE_OPERAND (*expr_p, 0);
tree op1 = TREE_OPERAND (*expr_p, 1);
if (error_operand_p (op0) || error_operand_p (op1))
return GS_UNHANDLED;
/* Front end doesn't know that bit-field types are really different
from basic types, add an explicit conversion in binary expressions. */
if (bit_field_ref (op0) || bit_field_ref (op1))
{
if (TREE_TYPE (op0) != TREE_TYPE (*expr_p))
TREE_OPERAND (*expr_p, 0) = convert (TREE_TYPE (*expr_p), op0);
if (TREE_TYPE (op1) != TREE_TYPE (*expr_p))
TREE_OPERAND (*expr_p, 1) = convert (TREE_TYPE (*expr_p), op1);
return GS_OK;
}
return GS_UNHANDLED;
}
/* Implements the lang_hooks.gimplify_expr routine for language D.
Do gimplification of D specific expression trees in EXPR_P. */
int
d_gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
{
switch (TREE_CODE (*expr_p))
{
case INIT_EXPR:
case MODIFY_EXPR:
return d_gimplify_modify_expr (expr_p, pre_p, post_p);
case ADDR_EXPR:
return d_gimplify_addr_expr (expr_p);
case CALL_EXPR:
return d_gimplify_call_expr (expr_p, pre_p);
case UNSIGNED_RSHIFT_EXPR:
return d_gimplify_unsigned_rshift_expr (expr_p);
case FLOAT_MOD_EXPR:
gcc_unreachable ();
default:
if (UNARY_CLASS_P (*expr_p) && !CONVERT_EXPR_P (*expr_p))
return d_gimplify_unary_expr (expr_p);
if (BINARY_CLASS_P (*expr_p))
return d_gimplify_binary_expr (expr_p);
break;
}
return GS_UNHANDLED;
}
| [
"rink@rink.nu"
] | rink@rink.nu |
687a2b5ee8f67022a9de6ea3e0146ef1362c8a44 | 9f4e3544bfb479ff8099543bd54b0a9d2839e907 | /models/utils/modelUtil.hpp | 1b8a7ca76b872337879d0bfdede3d91ffb2df3c3 | [
"BSL-1.0"
] | permissive | marzie-abdolhamdi/Angiogenesis3D1D | 6537a19829d05cb756642d203a576f173c8b7bf7 | 77527d3facd127e225ccb9e53874ddbba2096744 | refs/heads/main | 2023-06-08T13:05:50.263452 | 2021-06-21T15:30:28 | 2021-06-21T15:30:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,724 | hpp | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2019 Prashant K. Jha
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
////////////////////////////////////////////////////////////////////////////////
#ifndef UTIL_MODELUTIL_H
#define UTIL_MODELUTIL_H
#include "umodel/model.hpp"
#include "usystem/abstraction.hpp"
namespace util {
/*!
* @brief Create mesh
*/
inline void create_mesh(InpDeck &input, ReplicatedMesh &mesh) {
double xmax = input.d_domain_params[1], ymax = input.d_domain_params[3],
zmax = input.d_domain_params[5];
unsigned int nelx, nely, nelz;
double hx, hy, hz;
if (input.d_dim == 2) {
if (input.d_use_mesh_size_for_disc) {
hx = input.d_mesh_size;
hy = input.d_mesh_size;
nelx = xmax / hx;
nely = ymax / hy;
} else {
nelx = input.d_num_elems;
nely = input.d_num_elems;
hx = xmax / nelx;
hy = ymax / nely;
input.d_mesh_size = hx;
}
input.d_elem_face_size = hx;
input.d_elem_size = hx * hx;
input.d_face_by_h = 1.;
// check if length of element in x and y direction are same
if (std::abs(hx - hy) > 0.001 * hx) {
libmesh_error_msg("Size of element needs to be same in both direction, "
"ie. element needs to be square\n"
"If domain is rectangle than specify number of "
"elements in x and y different so that element is "
"square\n");
}
// either read or create mesh
if (input.d_restart)
mesh.read(input.d_mesh_restart_file);
else
MeshTools::Generation::build_square(mesh, nelx, nely, 0., xmax, 0., ymax,
QUAD4);
} else if (input.d_dim == 3) {
if (input.d_use_mesh_size_for_disc) {
hx = input.d_mesh_size;
hy = input.d_mesh_size;
hz = input.d_mesh_size;
nelx = xmax / hx;
nely = ymax / hy;
nelz = zmax / hz;
} else {
nelx = input.d_num_elems;
nely = input.d_num_elems;
nelz = input.d_num_elems;
hx = xmax / nelx;
hy = ymax / nely;
hz = zmax / nelz;
input.d_mesh_size = hx;
}
input.d_elem_face_size = hx * hx;
input.d_elem_size = hx * hx * hx;
input.d_face_by_h = hx;
// check if length of element in x and y direction are same
if (std::abs(hx - hy) > 0.001 * hx or std::abs(hx - hz) > 0.001 * hx) {
libmesh_error_msg("Size of element needs to be same in all three "
"direction, ie. element needs to be square\n"
"If domain is cuboid than specify number of "
"elements in x, y and z different so that element is "
"cube\n");
}
// either read or create mesh
if (input.d_restart)
mesh.read(input.d_mesh_restart_file);
else
MeshTools::Generation::build_cube(mesh, nelx, nely, nelz, 0., xmax, 0.,
ymax, 0., zmax, HEX8);
}
}
inline double compute_diff_qoi(const std::string &type, BaseAssembly &a,
BaseAssembly &b, unsigned int local_var_id_a = 0,
unsigned int local_var_id_b = 0) {
Real qoi = 0.;
if (type == "inf")
qoi = DBL_MAX;
Real cur_sol_a = 0.;
Real cur_sol_b = 0.;
Real cur_sol_a_l = 0.;
Real cur_sol_b_l = 0.;
for (const auto &elem : a.d_mesh.active_local_element_ptr_range()) {
a.init_dof(elem);
b.init_dof(elem);
for (unsigned int qp = 0; qp < a.d_qrule.n_points(); qp++) {
cur_sol_a = 0.;
cur_sol_b = 0.;
for (unsigned int l = 0; l < a.d_phi.size(); l++) {
if (a.d_num_vars == 1)
cur_sol_a_l = a.get_current_sol(l);
else
cur_sol_a_l = a.get_current_sol_var(l, local_var_id_a);
if (b.d_num_vars == 1)
cur_sol_b_l = b.get_current_sol(l);
else
cur_sol_b_l = b.get_current_sol_var(l, local_var_id_b);
if (type == "mass" and cur_sol_a_l < 0.)
cur_sol_a_l = 0.;
if (type == "mass" and cur_sol_b_l < 0.)
cur_sol_b_l = 0.;
cur_sol_a = a.d_phi[l][qp] * cur_sol_a_l;
cur_sol_b = a.d_phi[l][qp] * cur_sol_b_l;
}
if (type == "mass")
qoi += a.d_JxW[qp] * (cur_sol_a - cur_sol_b);
else if (type == "l1")
qoi += a.d_JxW[qp] * std::abs(cur_sol_a - cur_sol_b);
else if (type == "l2")
qoi += a.d_JxW[qp] * std::pow(cur_sol_a - cur_sol_b, 2);
else if (type == "linf") {
if (qoi > std::abs(cur_sol_a - cur_sol_b))
qoi = std::abs(cur_sol_a - cur_sol_b);
} else {
libmesh_error_msg("Error: Invalid type = " + type + " for qoi calculation");
}
} // loop over quadrature points
} // loop over elements
// communicate qoi from other processors
Real total_qoi = 0.;
if (type == "linf")
MPI_Allreduce(&qoi, &total_qoi, 1, MPI_DOUBLE, MPI_MAX,
MPI_COMM_WORLD);
else
MPI_Allreduce(&qoi, &total_qoi, 1, MPI_DOUBLE, MPI_SUM,
MPI_COMM_WORLD);
if (type == "l2")
total_qoi = std::sqrt(total_qoi);
return total_qoi;
}
inline double compute_prolific_qoi(const std::string &type, BaseAssembly &a,
BaseAssembly &b, BaseAssembly &c,
unsigned int local_var_id_a = 0,
unsigned int local_var_id_b = 0,
unsigned int local_var_id_c = 0) {
// a - tumor, b - hypoxic, c - necrotic
Real qoi = 0.;
if (type == "inf")
qoi = DBL_MAX;
Real cur_sol_a = 0.;
Real cur_sol_b = 0.;
Real cur_sol_c = 0.;
Real cur_sol_a_l = 0.;
Real cur_sol_b_l = 0.;
Real cur_sol_c_l = 0.;
for (const auto &elem : a.d_mesh.active_local_element_ptr_range()) {
a.init_dof(elem);
b.init_dof(elem);
c.init_dof(elem);
for (unsigned int qp = 0; qp < a.d_qrule.n_points(); qp++) {
cur_sol_a = 0.;
cur_sol_b = 0.;
cur_sol_c = 0.;
for (unsigned int l = 0; l < a.d_phi.size(); l++) {
if (a.d_num_vars == 1)
cur_sol_a_l = a.get_current_sol(l);
else
cur_sol_a_l = a.get_current_sol_var(l, local_var_id_a);
if (b.d_num_vars == 1)
cur_sol_b_l = b.get_current_sol(l);
else
cur_sol_b_l = b.get_current_sol_var(l, local_var_id_b);
if (c.d_num_vars == 1)
cur_sol_c_l = c.get_current_sol(l);
else
cur_sol_c_l = c.get_current_sol_var(l, local_var_id_c);
if (type == "mass" and cur_sol_a_l < 0.)
cur_sol_a_l = 0.;
if (type == "mass" and cur_sol_b_l < 0.)
cur_sol_b_l = 0.;
if (type == "mass" and cur_sol_c_l < 0.)
cur_sol_c_l = 0.;
cur_sol_a = a.d_phi[l][qp] * cur_sol_a_l;
cur_sol_b = a.d_phi[l][qp] * cur_sol_b_l;
cur_sol_c = a.d_phi[l][qp] * cur_sol_c_l;
}
if (type == "mass")
qoi += a.d_JxW[qp] * (cur_sol_a - cur_sol_b - cur_sol_c);
else if (type == "l1")
qoi += a.d_JxW[qp] * std::abs(cur_sol_a - cur_sol_b - cur_sol_c);
else if (type == "l2")
qoi += a.d_JxW[qp] * std::pow(cur_sol_a - cur_sol_b - cur_sol_c, 2);
else if (type == "linf") {
if (qoi > std::abs(cur_sol_a - cur_sol_b - cur_sol_c))
qoi = std::abs(cur_sol_a - cur_sol_b - cur_sol_c);
} else {
libmesh_error_msg("Error: Invalid type = " + type + " for qoi calculation");
}
} // loop over quadrature points
} // loop over elements
// communicate qoi from other processors
Real total_qoi = 0.;
if (type == "linf")
MPI_Allreduce(&qoi, &total_qoi, 1, MPI_DOUBLE, MPI_MAX,
MPI_COMM_WORLD);
else
MPI_Allreduce(&qoi, &total_qoi, 1, MPI_DOUBLE, MPI_SUM,
MPI_COMM_WORLD);
if (type == "l2")
total_qoi = std::sqrt(total_qoi);
return total_qoi;
}
inline double compute_tumor_qoi(const std::string &type, BaseAssembly &a,
BaseAssembly &b, BaseAssembly &c,
unsigned int local_var_id_a = 0,
unsigned int local_var_id_b = 0,
unsigned int local_var_id_c = 0) {
// a - prolific, b - hypoxic, c - necrotic
Real qoi = 0.;
if (type == "inf")
qoi = DBL_MAX;
Real cur_sol_a = 0.;
Real cur_sol_b = 0.;
Real cur_sol_c = 0.;
Real cur_sol_a_l = 0.;
Real cur_sol_b_l = 0.;
Real cur_sol_c_l = 0.;
for (const auto &elem : a.d_mesh.active_local_element_ptr_range()) {
a.init_dof(elem);
b.init_dof(elem);
c.init_dof(elem);
for (unsigned int qp = 0; qp < a.d_qrule.n_points(); qp++) {
cur_sol_a = 0.;
cur_sol_b = 0.;
cur_sol_c = 0.;
for (unsigned int l = 0; l < a.d_phi.size(); l++) {
if (a.d_num_vars == 1)
cur_sol_a_l = a.get_current_sol(l);
else
cur_sol_a_l = a.get_current_sol_var(l, local_var_id_a);
if (b.d_num_vars == 1)
cur_sol_b_l = b.get_current_sol(l);
else
cur_sol_b_l = b.get_current_sol_var(l, local_var_id_b);
if (c.d_num_vars == 1)
cur_sol_c_l = c.get_current_sol(l);
else
cur_sol_c_l = c.get_current_sol_var(l, local_var_id_c);
if (type == "mass" and cur_sol_a_l < 0.)
cur_sol_a_l = 0.;
if (type == "mass" and cur_sol_b_l < 0.)
cur_sol_b_l = 0.;
if (type == "mass" and cur_sol_c_l < 0.)
cur_sol_c_l = 0.;
cur_sol_a = a.d_phi[l][qp] * cur_sol_a_l;
cur_sol_b = a.d_phi[l][qp] * cur_sol_b_l;
cur_sol_c = a.d_phi[l][qp] * cur_sol_c_l;
}
if (type == "mass")
qoi += a.d_JxW[qp] * (cur_sol_a + cur_sol_b + cur_sol_c);
else if (type == "l1")
qoi += a.d_JxW[qp] * std::abs(cur_sol_a + cur_sol_b + cur_sol_c);
else if (type == "l2")
qoi += a.d_JxW[qp] * std::pow(cur_sol_a + cur_sol_b + cur_sol_c, 2);
else if (type == "linf") {
if (qoi > std::abs(cur_sol_a + cur_sol_b + cur_sol_c))
qoi = std::abs(cur_sol_a + cur_sol_b + cur_sol_c);
} else {
libmesh_error_msg("Error: Invalid type = " + type + " for qoi calculation");
}
} // loop over quadrature points
} // loop over elements
// communicate qoi from other processors
Real total_qoi = 0.;
if (type == "linf")
MPI_Allreduce(&qoi, &total_qoi, 1, MPI_DOUBLE, MPI_MAX,
MPI_COMM_WORLD);
else
MPI_Allreduce(&qoi, &total_qoi, 1, MPI_DOUBLE, MPI_SUM,
MPI_COMM_WORLD);
if (type == "l2")
total_qoi = std::sqrt(total_qoi);
return total_qoi;
}
inline void scale_pres(const ReplicatedMesh &mesh, util::BaseAssembly &pres,
const double &scale, std::vector<Number> &p_save,
std::vector<unsigned int> &p_dofs) {
// Looping through elements
for (const auto &elem : mesh.active_local_element_ptr_range()) {
pres.init_dof(elem);
double pt = pres.get_current_sol(0);
p_save.push_back(pt);
p_dofs.push_back(pres.get_global_dof_id(0));
pt = pt / scale;
pres.d_sys.solution->set(pres.get_global_dof_id(0), pt);
}
pres.d_sys.solution->close();
pres.d_sys.update();
}
inline void store_pres(const ReplicatedMesh &mesh, util::BaseAssembly &pres,
const double &scale, const std::vector<Number> &p_save,
const std::vector<unsigned int> &p_dofs) {
for (unsigned int i = 0; i < p_dofs.size(); i++) {
pres.d_sys.solution->set(p_dofs[i], p_save[i]);
}
pres.d_sys.solution->close();
pres.d_sys.update();
}
inline void set_elem_sol(util::BaseAssembly &sys,
const std::vector<double> &sol, double scale = 1.) {
// Looping through elements
for (const auto &elem : sys.d_mesh.active_local_element_ptr_range()) {
sys.init_dof(elem);
sys.d_sys.solution->set(sys.get_global_dof_id(0), scale * sol[elem->id()]);
}
sys.d_sys.solution->close();
sys.d_sys.update();
}
inline void get_elem_sol(util::BaseAssembly &sys, std::vector<double> &sol,
double scale = 1.) {
if (sol.size() < sys.d_mesh.n_elem())
sol = std::vector<double>(sys.d_mesh.n_elem(), 0.);
// Looping through elements
for (const auto &elem : sys.d_mesh.active_local_element_ptr_range()) {
sys.init_dof(elem);
sol[elem->id()] = scale * sys.get_current_sol(0);
}
}
inline void localize_solution_with_elem_id_numbering_const_elem(
util::BaseAssembly &sys, std::vector<double> &collect_sol,
std::vector<double> &localize_sol, std::vector<unsigned int> var_ids = {0},
bool resize_vec = true) {
// gather solution in all processors
// sys.d_sys.current_local_solution->localize(collect_sol);
sys.d_sys.solution->localize(collect_sol);
// check if we need to resize the vector
auto num_vars = var_ids.size();
if (localize_sol.size() != sys.d_mesh.n_elem() * num_vars) {
if (resize_vec)
localize_sol.resize(sys.d_mesh.n_elem() * num_vars);
else
libmesh_error_msg(
"localize_sol size should match collect_sol size for system " +
sys.d_sys_name);
}
// check if system has only 1 variable
bool has_multiple_vars = sys.d_num_vars > 1;
if (!has_multiple_vars and (var_ids.size() > 1 or var_ids[0] != 0))
libmesh_error_msg("Invalid var ids to collect and localize solution");
for (const auto &elem : sys.d_mesh.active_element_ptr_range()) {
sys.init_dof(elem);
int counter = 0;
for (auto var : var_ids) {
// compute value at center
auto val = 0.;
if (has_multiple_vars)
val += collect_sol[sys.get_var_global_dof_id(0, var)];
else
val += collect_sol[sys.get_global_dof_id(0)];
localize_sol[elem->id() * num_vars + counter] = val;
counter++;
}
}
}
inline void localize_solution_with_elem_id_numbering_const_elem(
util::BaseAssembly &sys,
std::unique_ptr<NumericVector<Number>> &collect_sol,
std::vector<double> &localize_sol, std::vector<unsigned int> var_ids = {0},
bool resize_vec = true) {
// gather solution in all processors
// sys.d_sys.current_local_solution->localize(collect_sol);
sys.d_sys.solution->localize(*collect_sol);
// check if we need to resize the vector
auto num_vars = var_ids.size();
if (localize_sol.size() != sys.d_mesh.n_elem() * num_vars) {
if (resize_vec)
localize_sol.resize(sys.d_mesh.n_elem() * num_vars);
else
libmesh_error_msg(
"localize_sol size should match collect_sol size for system " +
sys.d_sys_name);
}
// check if system has only 1 variable
bool has_multiple_vars = sys.d_num_vars > 1;
if (!has_multiple_vars and (var_ids.size() > 1 or var_ids[0] != 0))
libmesh_error_msg("Invalid var ids to collect and localize solution");
for (const auto &elem : sys.d_mesh.active_element_ptr_range()) {
sys.init_dof(elem);
int counter = 0;
for (auto var : var_ids) {
// compute value at center
auto val = 0.;
if (has_multiple_vars)
val += (*collect_sol)(sys.get_var_global_dof_id(0, var));
else
val += (*collect_sol)(sys.get_global_dof_id(0));
localize_sol[elem->id() * num_vars + counter] = val;
counter++;
}
}
}
inline void localize_solution_with_elem_id_numbering_non_const_elem(
util::BaseAssembly &sys, std::vector<double> &collect_sol,
std::vector<double> &localize_sol, std::vector<unsigned int> var_ids = {0},
bool resize_vec = true) {
// gather solution in all processors
// sys.d_sys.current_local_solution->localize(collect_sol);
sys.d_sys.solution->localize(collect_sol);
// check if we need to resize the vector
auto num_vars = var_ids.size();
if (localize_sol.size() != sys.d_mesh.n_elem() * num_vars) {
if (resize_vec)
localize_sol.resize(sys.d_mesh.n_elem() * num_vars);
else
libmesh_error_msg(
"localize_sol size should match collect_sol size for system " +
sys.d_sys_name);
}
// check if system has only 1 variable
bool has_multiple_vars = sys.d_num_vars > 1;
if (!has_multiple_vars and (var_ids.size() > 1 or var_ids[0] != 0))
libmesh_error_msg("Invalid var ids to collect and localize solution");
for (const auto &elem : sys.d_mesh.active_element_ptr_range()) {
sys.init_dof(elem);
int counter = 0;
for (auto var : var_ids) {
// compute value at center
auto val = 0.;
for (unsigned int l = 0; l < sys.d_phi.size(); l++) {
if (has_multiple_vars)
val += collect_sol[sys.get_var_global_dof_id(l, var)];
else
val += collect_sol[sys.get_global_dof_id(l)];
}
val = val / (double(sys.d_phi.size()));
localize_sol[elem->id() * num_vars + counter] = val;
counter++;
}
}
}
inline void localize_solution_with_elem_id_numbering_non_const_elem(
util::BaseAssembly &sys,
std::unique_ptr<NumericVector<Number>> &collect_sol,
std::vector<double> &localize_sol, std::vector<unsigned int> var_ids = {0},
bool resize_vec = true) {
// gather solution in all processors
// sys.d_sys.current_local_solution->localize(collect_sol);
sys.d_sys.solution->localize(*collect_sol);
// check if we need to resize the vector
auto num_vars = var_ids.size();
if (localize_sol.size() != sys.d_mesh.n_elem() * num_vars) {
if (resize_vec)
localize_sol.resize(sys.d_mesh.n_elem() * num_vars);
else
libmesh_error_msg(
"localize_sol size should match collect_sol size for system " +
sys.d_sys_name);
}
// check if system has only 1 variable
bool has_multiple_vars = sys.d_num_vars > 1;
if (!has_multiple_vars and (var_ids.size() > 1 or var_ids[0] != 0))
libmesh_error_msg("Invalid var ids to collect and localize solution");
for (const auto &elem : sys.d_mesh.active_element_ptr_range()) {
sys.init_dof(elem);
int counter = 0;
for (auto var : var_ids) {
// compute value at center
auto val = 0.;
for (unsigned int l = 0; l < sys.d_phi.size(); l++) {
if (has_multiple_vars)
val += (*collect_sol)(sys.get_var_global_dof_id(l, var));
else
val += (*collect_sol)(sys.get_global_dof_id(l));
}
val = val / (double(sys.d_phi.size()));
localize_sol[elem->id() * num_vars + counter] = val;
counter++;
}
}
}
} // namespace util
#endif // UTIL_MODELUTIL_H
| [
"wagneran@ma.tum.de"
] | wagneran@ma.tum.de |
4fd687a451568c5102e304273aa4d90180f86a7d | 2d361696ad060b82065ee116685aa4bb93d0b701 | /src/gui/utils/download_job.cpp | 5707895742e5688ebfb54608d98a886082295309 | [
"LicenseRef-scancode-public-domain"
] | permissive | AaronNGray/GenomeWorkbench | 5151714257ce73bdfb57aec47ea3c02f941602e0 | 7156b83ec589e0de8f7b0a85699d2a657f3e1c47 | refs/heads/master | 2022-11-16T12:45:40.377330 | 2020-07-10T00:54:19 | 2020-07-10T00:54:19 | 278,501,064 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,730 | cpp | /* $Id: download_job.cpp 39418 2017-09-21 20:24:21Z katargir $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
* Authors: Anatoliy Kuznetsov
*
*/
#include <ncbi_pch.hpp>
#include <math.h>
#include <corelib/ncbifile.hpp>
#include <corelib/ncbi_system.hpp>
#include <connect/ncbi_conn_stream.hpp>
#include <util/compress/stream_util.hpp>
#include <util/compress/tar.hpp>
#include <gui/utils/download_job.hpp>
BEGIN_NCBI_SCOPE
extern "C" {
static EIO_Status s_FtpCallback(CONN conn, TCONN_Callback type, void* data)
{
if (type != eCONN_OnClose/* && !s_Signaled*/) {
// Reinstate the callback right away
SCONN_Callback cb = { s_FtpCallback, data };
CONN_SetCallback(conn, (ECONN_Callback)type, &cb, 0);
}
const CDownloadJob::CDownloadCallbackData* dlcbdata
= reinterpret_cast<const CDownloadJob::CDownloadCallbackData*>(data);
size_t pos = CONN_GetPosition(conn, eIO_Read);
//size_t size = dlcbdata->GetSize();
dlcbdata->SetPos(pos);
#if 0
//double time = dlcbdata->GetElapsed();
if (!size) {
/*
cerr << "Downloaded " << pos << "/unknown"
" in " << fixed << setprecision(2) << time
<< left << setw(16) << 's' << '\r' << flush;
*/
} else {
/*
double percent = (pos * 100.0) / size;
if (percent > 100.00)
percent = 100.00;
*/
/*
cerr << "Downloaded " << pos << '/' << size
<< " (" << fixed << setprecision(2) << percent << "%)"
" in " << fixed << setprecision(2) << time;
if (time) {
double kbps = pos / time / 1024.0;
cerr << "s (" << fixed << setprecision(2) << kbps
<< left << setw(16) << "KB/s)" << '\r' << flush;
} else {
cerr << left << setw(16) << 's' << '\r' << flush;
}
*/
}
#endif
if (type == eCONN_OnClose) {
if (dlcbdata->CB().func)
dlcbdata->CB().func(conn, type, dlcbdata->CB().data);
cerr << endl;
} else if (dlcbdata->GetCancel()) {
return eIO_Interrupt;
}
return eIO_Success;
}
}
class CTarCheckpointed : public CTar
{
public:
CTarCheckpointed(istream& is, CDownloadJob::CDownloadCallbackData* dlcbdata)
: CTar(is), m_DlCbData(dlcbdata) { }
protected:
virtual bool Checkpoint(const CTarEntryInfo& current, bool /**/)
{
m_DlCbData->AddTotalSize(current.GetSize());
//cerr.flush();
//cout << current << endl;
return true;
}
private:
CDownloadJob::CDownloadCallbackData* m_DlCbData;
};
static size_t s_GetFtpFilesize(iostream& ios, const char* filename)
{
size_t retval;
ios << "SIZE " << filename << endl;
if (!(ios >> retval)) {
retval = 0;
}
ios.clear();
return retval;
}
static void s_InitiateFtpFileDownload(iostream& ios, const char* filename)
{
ios << "RETR " << filename << endl;
}
///////////////////////////////////////////////////////////////////////////////
/// CNetBlastLoadingJob
CDownloadJob::CDownloadJob(const string& desc,
const string& base_dir,
const string& download_url,
bool extract_archive)
: m_TaskName(desc),
m_BaseDir(base_dir),
m_URL(download_url),
m_ExtractArchives(extract_archive),
m_DlcbData(0)
{
}
CDownloadJob::CDownloadJob(const string& desc,
const string& base_dir,
const string& download_url,
const vector<string>& files_to_load,
bool extract_archive)
: m_TaskName(desc),
m_BaseDir(base_dir),
m_URL(download_url),
m_FilesToLoad(files_to_load),
m_ExtractArchives(extract_archive),
m_DlcbData(0)
{
}
CDownloadJob::~CDownloadJob()
{
delete m_DlcbData;
}
string CDownloadJob::GetDescr() const
{
return m_TaskName;
}
void CDownloadJob::RequestCancel()
{
CFastMutexGuard lock(m_Mutex);
if (m_DlcbData) {
m_DlcbData->Cancel();
}
}
bool CDownloadJob::IsCanceled() const
{
CFastMutexGuard lock(m_Mutex);
if (m_DlcbData) {
return m_DlcbData->GetCancel() != 0;
}
return false;
}
string CDownloadJob::x_FormatSize(size_t bytes)
{
if (0 == bytes)
return "0 Bytes";
static const string sizes[] = { "Bytes", "KB", "MB", "GB", "TB", "PB" };
unsigned i = (unsigned)floor(log10((double)bytes) / 3);
string result = NStr::DoubleToString(bytes / pow(1000,i),2);
result += ' ';
result += sizes[i];
return result;
}
CConstIRef<IAppJobProgress> CDownloadJob::GetProgress()
{
CFastMutexGuard lock(m_Mutex);
float progress = 0.0;
if (!m_DlcbData) {
return CConstIRef<IAppJobProgress>(new CAppJobProgress(progress, "unknown"));
}
size_t size = m_DlcbData->GetSize();
size_t pos = m_DlcbData->GetPos();
if (size) {
progress = float(pos * 100.0) / (float)size;
if (progress > 100.00)
progress = 100.00;
}
string status;
status = m_TaskName + " (" + x_FormatSize(pos) + "/" + x_FormatSize(size) + ")";
return CConstIRef<IAppJobProgress>(new CAppJobProgress(progress, status));
}
CRef<CObject> CDownloadJob::GetResult()
{
return m_Result;
}
CConstIRef<IAppJobError> CDownloadJob::GetError()
{
return CConstIRef<IAppJobError>(m_Error.GetPointer());
}
IAppJob::EJobState CDownloadJob::Run()
{
// check the base directory
//
try {
CDirEntry de(m_BaseDir);
if (!de.Exists()) {
CDirEntry::CreateAbsolutePath(m_BaseDir);
}
} catch (CException& ex) {
ERR_POST(ex.ReportAll());
m_Error = new CAppJobError("Target path create error: '" + m_BaseDir + "'");
return IAppJob::eFailed;
}
if (m_FilesToLoad.empty()) {
if (m_ExtractArchives)
return x_DownloadAndExtract(m_URL);
else {
size_t pos = m_URL.rfind('/');
if ((string::npos == pos) || (pos == (m_URL.length() - 1))) {
m_Error = new CAppJobError("Invalid URL specified: '" + m_URL + "'");
return IAppJob::eFailed;
}
string file_name = m_URL.substr(pos + 1);
return x_Download(m_URL, file_name);
}
}
else {
ITERATE(vector<string>, it, m_FilesToLoad) {
string fname = m_URL;
if ('/' != m_URL[m_URL.length()-1])
fname.append("/");
fname.append(*it);
IAppJob::EJobState js;
if (m_ExtractArchives)
js = x_DownloadAndExtract(fname);
else
js = x_Download(fname,*it);
if (js != IAppJob::eCompleted)
return js;
}
}
return IAppJob::eCompleted;
}
IAppJob::EJobState CDownloadJob::x_Download(const string& file_url, const string& file_name)
{
SConnNetInfo* net_info = ConnNetInfo_Create(0);
const char* url = file_url.c_str();
if (!ConnNetInfo_ParseURL(net_info, url)) {
string err = "Cannot parse URL \"";
err.append(m_URL);
err.append("\"");
ERR_POST(Fatal << err);
m_Error = new CAppJobError(err);
return IAppJob::eFailed;
}
if (net_info->scheme != eURL_Ftp) {
string err = "URL scheme must be FTP";
err.append(m_URL);
err.append("\"");
ERR_POST(Fatal << err);
m_Error = new CAppJobError(err);
return IAppJob::eFailed;
}
if (!*net_info->user) {
strcpy(net_info->user, "ftp");
}
CConn_FtpStream ftp(net_info->host,
net_info->user,
net_info->pass);
size_t size = s_GetFtpFilesize(ftp, net_info->path);
if (size) {
ERR_POST(Info << "Downloading " << net_info->path
<< " from " << net_info->host << ", "
<< size << " byte" << &"s"[size == 1]);
}
else {
ERR_POST(Info << "Downloading " << net_info->path
<< " from " << net_info->host);
}
s_InitiateFtpFileDownload(ftp, net_info->path);
ConnNetInfo_Destroy(net_info);
// Reset I/O positions
CONN_GetPosition(ftp.GetCONN(), eIO_Open);
// Set both read and close callbacks
CDownloadCallbackData* dblcdata;
if (m_DlcbData)
dblcdata = m_DlcbData;
else
dblcdata = new CDownloadCallbackData(size);
{{
CFastMutexGuard lock(m_Mutex);
SCONN_Callback cb = { s_FtpCallback, dblcdata };
CONN_SetCallback(ftp.GetCONN(), eCONN_OnRead, &cb, 0);
CONN_SetCallback(ftp.GetCONN(), eCONN_OnClose, &cb, dblcdata->CB());
// Build on-the-fly ungzip stream on top of ftp
m_DlcbData = dblcdata;
}}
bool download_ok = false;
// make temp directory for download
//
static unsigned s_cnt = 0;
++s_cnt;
string filePath(m_BaseDir);
if (CDirEntry::GetPathSeparator() != m_BaseDir[m_BaseDir.length() - 1])
filePath += CDirEntry::GetPathSeparator();
filePath += file_name;
const size_t buff_size = 1;// 65536;
char* buffer = new char[buff_size];
try {
CNcbiFstream os(filePath.c_str(), IOS_BASE::out | IOS_BASE::binary | IOS_BASE::trunc);
while (!ftp.eof() && !m_DlcbData->GetCancel()) {
ftp.read(buffer, buff_size);
if (ftp.gcount())
os.write(buffer, ftp.gcount());
}
os.close();
ftp.Close();
download_ok = true;
}
catch (CException& ex) {
if (!m_DlcbData->GetCancel()) {
m_Error = new CAppJobError(ex.ReportAll());
}
}
catch (std::exception& e) {
if (!m_DlcbData->GetCancel()) {
m_Error = new CAppJobError(e.what());
}
}
delete[] buffer;
if (!download_ok || m_DlcbData->GetCancel()) {
CDirEntry de(filePath);
de.Remove();
if (m_DlcbData->GetCancel()) {
return IAppJob::eCanceled;
}
return IAppJob::eFailed;
}
ERR_POST(Info << "Download OK");
return IAppJob::eCompleted;
}
IAppJob::EJobState CDownloadJob::x_DownloadAndExtract(const string& file_url)
{
SConnNetInfo* net_info = ConnNetInfo_Create(0);
const char* url = file_url.c_str();
if (!ConnNetInfo_ParseURL(net_info, url)) {
string err = "Cannot parse URL \"";
err.append(m_URL);
err.append("\"");
ERR_POST(Fatal << err);
m_Error = new CAppJobError(err);
return IAppJob::eFailed;
}
if (net_info->scheme != eURL_Ftp) {
string err = "URL scheme must be FTP";
err.append(m_URL);
err.append("\"");
ERR_POST(Fatal << err);
m_Error = new CAppJobError(err);
return IAppJob::eFailed;
}
if (!*net_info->user) {
strcpy(net_info->user, "ftp");
}
CConn_FtpStream ftp(net_info->host,
net_info->user,
net_info->pass);
size_t size = s_GetFtpFilesize(ftp, net_info->path);
if (size) {
ERR_POST(Info << "Downloading " << net_info->path
<< " from " << net_info->host << ", "
<< size << " byte" << &"s"[size == 1]);
} else {
ERR_POST(Info << "Downloading " << net_info->path
<< " from " << net_info->host);
}
s_InitiateFtpFileDownload(ftp, net_info->path);
ConnNetInfo_Destroy(net_info);
// Reset I/O positions
CONN_GetPosition(ftp.GetCONN(), eIO_Open);
// Set both read and close callbacks
CDownloadCallbackData* dblcdata;
if (m_DlcbData)
dblcdata = m_DlcbData;
else
dblcdata = new CDownloadCallbackData(size);
{{
CFastMutexGuard lock(m_Mutex);
SCONN_Callback cb = { s_FtpCallback, dblcdata };
CONN_SetCallback(ftp.GetCONN(), eCONN_OnRead, &cb, 0);
CONN_SetCallback(ftp.GetCONN(), eCONN_OnClose, &cb, dblcdata->CB());
// Build on-the-fly ungzip stream on top of ftp
m_DlcbData = dblcdata;
}}
CDecompressIStream is(ftp, CCompressStream::eGZipFile);
bool download_ok = false;
// make temp directory for download
//
static unsigned s_cnt = 0;
++s_cnt;
string base_temp_dir = m_BaseDir;
string temp_dir = string("tmp") + NStr::IntToString(s_cnt);
base_temp_dir = CDirEntry::ConcatPath(base_temp_dir, temp_dir);
try {
CDirEntry::CreateAbsolutePath(base_temp_dir);
// Build streaming [un]tar on top of uncompressed data
CTarCheckpointed tar(is, m_DlcbData);
tar.SetBaseDir(base_temp_dir);
tar.SetFlags(CTar::fOverwrite);
tar.Extract();
tar.Close();
ftp.Close();
download_ok = true;
} catch (CException& ex) {
if (!m_DlcbData->GetCancel()) {
m_Error = new CAppJobError(ex.ReportAll());
}
} catch (std::exception& e) {
if (!m_DlcbData->GetCancel()) {
m_Error = new CAppJobError(e.what());
}
}
if (!download_ok || m_DlcbData->GetCancel()) {
CDirEntry de(base_temp_dir);
de.Remove();
if (m_DlcbData->GetCancel()) {
// return IAppJob::eCompleted;
return IAppJob::eCanceled;
}
return IAppJob::eFailed;
}
// download ok, need to move temp directory content one level up
try {
{{
CDir dir(base_temp_dir);
CDir::TEntries contents = dir.GetEntries("*", CDir::fIgnoreRecursive);
ITERATE(CDir::TEntries, i, contents) {
string entry = (*i)->GetPath();
string new_name = CDirEntry::MakePath(m_BaseDir, (*i)->GetName());
CDirEntry(entry).Rename(new_name, CDirEntry::fRF_Overwrite);
}
}}
CDirEntry de(base_temp_dir);
de.Remove();
} catch (CException& ex) {
if (!m_DlcbData->GetCancel()) {
m_Error = new CAppJobError(ex.ReportAll());
return IAppJob::eFailed;
}
return IAppJob::eCanceled;
} catch (std::exception& e) {
if (!m_DlcbData->GetCancel()) {
m_Error = new CAppJobError(e.what());
return IAppJob::eFailed;
}
return IAppJob::eCanceled;
}
ERR_POST(Info << "Download OK");
return IAppJob::eCompleted;
}
END_NCBI_SCOPE
| [
"aaronngray@gmail.com"
] | aaronngray@gmail.com |
327b2bb4a1da880e6778158a98f250e43d5e2993 | 8ba5b2d9b381f3cb780c7a728d2003ee921c74eb | /samsung/cycle.cpp | 00ae4aaf71810e6589b85c54e3d2d654eb5a2075 | [] | no_license | dh00mk3tu/coding_questions | 501a59a2f2b8874b74c3dd51b7fa68b7496e0488 | be7377b421dfb939267b08d5f260f17e780dee9a | refs/heads/master | 2023-03-28T11:26:13.257231 | 2021-03-31T19:50:43 | 2021-03-31T19:50:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,334 | cpp | // { Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
bool dfs(int src, vector<bool> &vis, vector<bool> &revis, vector<int> adj[])
{
if (!vis[src])
{
vis[src] = true;
revis[src] = true;
for (int i : adj[src])
{
if (!vis[i] && dfs(i, vis, revis, adj))
return true;
else if (revis[i] == true)
return true;
}
}
revis[src] = false;
return false;
}
bool isCyclic(int V, vector<int> adj[])
{
// code here
vector<bool> vis(V, false);
vector<bool> revis(V, false);
for (int i = 0; i < V; i++)
{
if (dfs(i, vis, revis, adj))
{
return true;
}
}
return false;
}
};
// { Driver Code Starts.
int main()
{
int t;
cin >> t;
while (t--)
{
int V, E;
cin >> V >> E;
vector<int> adj[V];
for (int i = 0; i < E; i++)
{
int u, v;
cin >> u >> v;
adj[u].push_back(v);
}
Solution obj;
cout << obj.isCyclic(V, adj) << "\n";
}
return 0;
}
// } Driver Code Ends | [
"aniketsingh70923@gmail.com"
] | aniketsingh70923@gmail.com |
7c077a3c0ec6cdd592a2fb66acba7ba3d9107b2b | 577c274130b351fb51ff0cf34333b8286d8aeca6 | /src/Engine/graphics/buffers/GLVertexArray.h | 5caf7a95e576d87737acc836a84845ddddd48ea5 | [] | no_license | mariusz-ba/Engine | d01ac340add5007238baeabf18f9269c5dd64ee6 | 01b08a09bf6ecc0292270622524827ba6e5621f1 | refs/heads/master | 2021-01-18T23:33:57.621649 | 2017-04-09T17:44:52 | 2017-04-09T17:44:52 | 87,116,304 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 337 | h | #pragma once
#include "GLBuffer.h"
#include <vector>
namespace engine { namespace graphics {
class GLVertexArray {
public:
GLVertexArray();
~GLVertexArray();
void bind();
void unbind();
void addBuffer(GLBuffer* buffer, unsigned int index);
private:
GLuint m_VertexArrayID;
std::vector<GLBuffer*> m_Buffers;
};
} } | [
"mariusz.baran23@gmail.com"
] | mariusz.baran23@gmail.com |
4a410a0d803c164f8765b85cdef336c3cec9b889 | f81b774e5306ac01d2c6c1289d9e01b5264aae70 | /base/android/linker/modern_linker_jni.cc | 1ed6a3fd7f93157afa568660c9420c28596288c9 | [
"BSD-3-Clause"
] | permissive | waaberi/chromium | a4015160d8460233b33fe1304e8fd9960a3650a9 | 6549065bd785179608f7b8828da403f3ca5f7aab | refs/heads/master | 2022-12-13T03:09:16.887475 | 2020-09-05T20:29:36 | 2020-09-05T20:29:36 | 293,153,821 | 1 | 1 | BSD-3-Clause | 2020-09-05T21:02:50 | 2020-09-05T21:02:49 | null | UTF-8 | C++ | false | false | 18,840 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Uses android_dlopen_ext() to share relocations.
// This source code *cannot* depend on anything from base/ or the C++
// STL, to keep the final library small, and avoid ugly dependency issues.
#include "base/android/linker/modern_linker_jni.h"
#include <dlfcn.h>
#include <errno.h>
#include <fcntl.h>
#include <jni.h>
#include <limits.h>
#include <link.h>
#include <stddef.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <limits>
#include <memory>
#include <android/dlext.h>
#include "base/android/linker/linker_jni.h"
// From //base/posix/eintr_wrapper.h, but we don't want to depend on //base.
#define HANDLE_EINTR(x) \
({ \
decltype(x) eintr_wrapper_result; \
do { \
eintr_wrapper_result = (x); \
} while (eintr_wrapper_result == -1 && errno == EINTR); \
eintr_wrapper_result; \
})
// Not defined on all platforms. As this linker is only supported on ARM32/64,
// x86/x86_64 and MIPS, page size is always 4k.
#if !defined(PAGE_SIZE)
#define PAGE_SIZE (1 << 12)
#define PAGE_MASK (~(PAGE_SIZE - 1))
#endif
#define PAGE_START(x) ((x)&PAGE_MASK)
#define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE - 1))
extern "C" {
// <android/dlext.h> does not declare android_dlopen_ext() if __ANDROID_API__
// is smaller than 21, so declare it here as a weak function. This will allow
// detecting its availability at runtime. For API level 21 or higher, the
// attribute is ignored due to the previous declaration.
void* android_dlopen_ext(const char*, int, const android_dlextinfo*)
__attribute__((weak_import));
// This function is exported by the dynamic linker but never declared in any
// official header for some architecture/version combinations.
int dl_iterate_phdr(int (*cb)(dl_phdr_info* info, size_t size, void* data),
void* data) __attribute__((weak_import));
} // extern "C"
namespace chromium_android_linker {
namespace {
// Record of the Java VM passed to JNI_OnLoad().
static JavaVM* s_java_vm = nullptr;
// Helper class for anonymous memory mapping.
class ScopedAnonymousMmap {
public:
static ScopedAnonymousMmap ReserveAtAddress(void* address, size_t size);
~ScopedAnonymousMmap() {
if (addr_ && owned_)
munmap(addr_, size_);
}
ScopedAnonymousMmap(ScopedAnonymousMmap&& o) {
addr_ = o.addr_;
size_ = o.size_;
owned_ = o.owned_;
o.Release();
}
void* address() const { return addr_; }
size_t size() const { return size_; }
void Release() { owned_ = false; }
private:
ScopedAnonymousMmap() = default;
ScopedAnonymousMmap(void* addr, size_t size) : addr_(addr), size_(size) {}
private:
bool owned_ = true;
void* addr_ = nullptr;
size_t size_ = 0;
// Move only.
ScopedAnonymousMmap(const ScopedAnonymousMmap&) = delete;
ScopedAnonymousMmap& operator=(const ScopedAnonymousMmap&) = delete;
};
// Reserves an address space range, starting at |address|.
// If successful, returns a valid mapping, otherwise returns an empty one.
ScopedAnonymousMmap ScopedAnonymousMmap::ReserveAtAddress(void* address,
size_t size) {
void* actual_address =
mmap(address, size, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (actual_address == MAP_FAILED) {
LOG_INFO("mmap failed: %s", strerror(errno));
return {};
}
if (actual_address && actual_address != address) {
LOG_ERROR("Failed to obtain fixed address for load");
munmap(actual_address, size);
return {};
}
return {actual_address, size};
}
// Starting with API level 26, the following functions from
// libandroid.so should be used to create shared memory regions.
//
// This ensures compatibility with post-Q versions of Android that may not rely
// on ashmem for shared memory.
//
// This is heavily inspired from //third_party/ashmem/ashmem-dev.c, which we
// cannot reference directly to avoid increasing binary size. Also, we don't
// need to support API level <26.
//
// *Not* threadsafe.
struct SharedMemoryFunctions {
SharedMemoryFunctions() {
library_handle = dlopen("libandroid.so", RTLD_NOW);
create = reinterpret_cast<CreateFunction>(
dlsym(library_handle, "ASharedMemory_create"));
set_protection = reinterpret_cast<SetProtectionFunction>(
dlsym(library_handle, "ASharedMemory_setProt"));
if (!create || !set_protection)
LOG_ERROR("Cannot get the shared memory functions from libandroid");
}
~SharedMemoryFunctions() {
if (library_handle)
dlclose(library_handle);
}
typedef int (*CreateFunction)(const char*, size_t);
typedef int (*SetProtectionFunction)(int fd, int prot);
CreateFunction create;
SetProtectionFunction set_protection;
void* library_handle;
};
// Metadata about a library loaded at a given |address|.
struct LoadedLibraryMetadata {
explicit LoadedLibraryMetadata(void* address)
: load_address(address),
load_size(0),
min_vaddr(0),
relro_start(0),
relro_size(0) {}
const void* load_address;
size_t load_size;
size_t min_vaddr;
size_t relro_start;
size_t relro_size;
};
// android_dlopen_ext() wrapper.
// Returns false if no android_dlopen_ext() is available, otherwise true with
// the return value from android_dlopen_ext() in |status|.
bool AndroidDlopenExt(const char* filename,
int flag,
const android_dlextinfo& extinfo,
void** status) {
if (!android_dlopen_ext) {
LOG_ERROR("android_dlopen_ext is not found");
return false;
}
LOG_INFO(
"android_dlopen_ext:"
" flags=0x%llx, reserved_addr=%p, reserved_size=%d",
static_cast<long long>(extinfo.flags), extinfo.reserved_addr,
static_cast<int>(extinfo.reserved_size));
*status = android_dlopen_ext(filename, flag, &extinfo);
return true;
}
// Callback for dl_iterate_phdr(). Read phdrs to identify whether or not
// this library's load address matches the |load_address| passed in
// |data|. If yes, fills the metadata we care about in |data|.
//
// A non-zero return value terminates iteration.
int FindLoadedLibraryMetadata(dl_phdr_info* info,
size_t size UNUSED,
void* data) {
auto* metadata = reinterpret_cast<LoadedLibraryMetadata*>(data);
// Use max and min vaddr to compute the library's load size.
auto min_vaddr = std::numeric_limits<ElfW(Addr)>::max();
ElfW(Addr) max_vaddr = 0;
ElfW(Addr) min_relro_vaddr = ~0;
ElfW(Addr) max_relro_vaddr = 0;
bool is_matching = false;
for (int i = 0; i < info->dlpi_phnum; ++i) {
const ElfW(Phdr)* phdr = &info->dlpi_phdr[i];
switch (phdr->p_type) {
case PT_LOAD: {
// See if this segment's load address matches what we passed to
// android_dlopen_ext as extinfo.reserved_addr.
//
// Here and below, the virtual address in memory is computed by
// address == info->dlpi_addr + program_header->p_vaddr
// that is, the p_vaddr fields is relative to the object base address.
// See dl_iterate_phdr(3) for details.
void* load_addr =
reinterpret_cast<void*>(info->dlpi_addr + phdr->p_vaddr);
// Matching is based on the load address, since we have no idea
// where the relro segment is.
if (load_addr == metadata->load_address)
is_matching = true;
if (phdr->p_vaddr < min_vaddr)
min_vaddr = phdr->p_vaddr;
if (phdr->p_vaddr + phdr->p_memsz > max_vaddr)
max_vaddr = phdr->p_vaddr + phdr->p_memsz;
} break;
case PT_GNU_RELRO:
min_relro_vaddr = PAGE_START(phdr->p_vaddr);
max_relro_vaddr = phdr->p_vaddr + phdr->p_memsz;
break;
default:
break;
}
}
// If this library matches what we seek, return its load size.
if (is_matching) {
int page_size = sysconf(_SC_PAGESIZE);
if (page_size != PAGE_SIZE)
abort();
metadata->load_size = PAGE_END(max_vaddr) - PAGE_START(min_vaddr);
metadata->min_vaddr = min_vaddr;
metadata->relro_size =
PAGE_END(max_relro_vaddr) - PAGE_START(min_relro_vaddr);
metadata->relro_start = info->dlpi_addr + PAGE_START(min_relro_vaddr);
return true;
}
return false;
}
// Creates an android_dlextinfo struct so that a library is loaded inside the
// space referenced by |mapping|.
std::unique_ptr<android_dlextinfo> MakeAndroidDlextinfo(
const ScopedAnonymousMmap& mapping) {
auto info = std::make_unique<android_dlextinfo>();
memset(info.get(), 0, sizeof(*info));
info->flags = ANDROID_DLEXT_RESERVED_ADDRESS;
info->reserved_addr = mapping.address();
info->reserved_size = mapping.size();
return info;
}
// Copies the current relocations into a shared-memory file, and uses this file
// as the relocations.
//
// Returns true for success, and populate |fd| with the relocations's fd in this
// case.
bool CopyAndRemapRelocations(const LoadedLibraryMetadata& metadata, int* fd) {
LOG_INFO("Entering");
void* relro_addr = reinterpret_cast<void*>(metadata.relro_start);
SharedMemoryFunctions fns;
if (!fns.create)
return false;
int shared_mem_fd = fns.create("cr_relro", metadata.relro_size);
if (shared_mem_fd == -1) {
LOG_ERROR("Cannot create the shared memory file");
return false;
}
int rw_flags = PROT_READ | PROT_WRITE;
fns.set_protection(shared_mem_fd, rw_flags);
void* relro_copy_addr = mmap(nullptr, metadata.relro_size, rw_flags,
MAP_SHARED, shared_mem_fd, 0);
if (relro_copy_addr == MAP_FAILED) {
LOG_ERROR("Cannot mmap() space for the copy");
close(shared_mem_fd);
return false;
}
memcpy(relro_copy_addr, relro_addr, metadata.relro_size);
int retval = mprotect(relro_copy_addr, metadata.relro_size, PROT_READ);
if (retval) {
LOG_ERROR("Cannot call mprotect()");
close(shared_mem_fd);
munmap(relro_copy_addr, metadata.relro_size);
return false;
}
void* new_addr =
mremap(relro_copy_addr, metadata.relro_size, metadata.relro_size,
MREMAP_MAYMOVE | MREMAP_FIXED, relro_addr);
if (new_addr != relro_addr) {
LOG_ERROR("mremap() error");
close(shared_mem_fd);
munmap(relro_copy_addr, metadata.relro_size);
return false;
}
*fd = shared_mem_fd;
return true;
}
// Gathers metadata about the library loaded at |addr|.
//
// Returns true for success.
bool GetLoadedLibraryMetadata(LoadedLibraryMetadata* metadata) {
LOG_INFO("Called for %p", metadata->load_address);
if (!dl_iterate_phdr) {
LOG_ERROR("No dl_iterate_phdr() found");
return false;
}
int status = dl_iterate_phdr(&FindLoadedLibraryMetadata, metadata);
if (!status) {
LOG_ERROR("Failed to find library at address %p", metadata->load_address);
return false;
}
LOG_INFO("Relro start address = %p, size = %d",
reinterpret_cast<void*>(metadata->relro_start),
static_cast<int>(metadata->relro_size));
return true;
}
// Resizes the address space reservation to the actual required size.
// Failure here is only a warning, as at worst this wastes virtual address
// space, not actual memory.
void ResizeMapping(const ScopedAnonymousMmap& mapping,
const LoadedLibraryMetadata& metadata) {
// Trim the reservation mapping to match the library's actual size. Failure
// to resize is not a fatal error. At worst we lose a portion of virtual
// address space that we might otherwise have recovered. Note that trimming
// the mapping here requires that we have already released the scoped
// mapping.
const uintptr_t uintptr_addr = reinterpret_cast<uintptr_t>(mapping.address());
if (mapping.size() > metadata.load_size) {
// Unmap the part of the reserved address space that is beyond the end of
// the loaded library data.
void* unmap = reinterpret_cast<void*>(uintptr_addr + metadata.load_size);
const size_t length = mapping.size() - metadata.load_size;
if (munmap(unmap, length) == -1) {
LOG_ERROR("WARNING: unmap of %d bytes at %p failed: %s",
static_cast<int>(length), unmap, strerror(errno));
}
} else {
LOG_ERROR("WARNING: library reservation was too small");
}
}
// Calls JNI_OnLoad() in the library referenced by |handle|.
// Returns true for success.
bool CallJniOnLoad(void* handle) {
LOG_INFO("Entering");
// Locate and if found then call the loaded library's JNI_OnLoad() function.
using JNI_OnLoadFunctionPtr = int (*)(void* vm, void* reserved);
auto jni_onload =
reinterpret_cast<JNI_OnLoadFunctionPtr>(dlsym(handle, "JNI_OnLoad"));
if (jni_onload != nullptr) {
// Check that JNI_OnLoad returns a usable JNI version.
int jni_version = (*jni_onload)(s_java_vm, nullptr);
if (jni_version < JNI_VERSION_1_4) {
LOG_ERROR("JNI version is invalid: %d", jni_version);
return false;
}
}
return true;
}
// Load the library at |path| at address |wanted_address| if possible, and
// creates a file with relro at |relocations_path|.
//
// In case of success, returns a readonly file descriptor to the relocations,
// otherwise returns -1.
int LoadCreateSharedRelocations(const String& path, void* wanted_address) {
LOG_INFO("Entering");
ScopedAnonymousMmap mapping = ScopedAnonymousMmap::ReserveAtAddress(
wanted_address, kAddressSpaceReservationSize);
if (!mapping.address())
return -1;
std::unique_ptr<android_dlextinfo> dlextinfo = MakeAndroidDlextinfo(mapping);
void* handle = nullptr;
if (!AndroidDlopenExt(path.c_str(), RTLD_NOW, *dlextinfo, &handle)) {
LOG_ERROR("android_dlopen_ext() error");
return -1;
}
if (handle == nullptr) {
LOG_ERROR("android_dlopen_ext: %s", dlerror());
return -1;
}
mapping.Release();
LoadedLibraryMetadata metadata{mapping.address()};
bool ok = GetLoadedLibraryMetadata(&metadata);
int relro_fd = -1;
if (ok) {
ResizeMapping(mapping, metadata);
CopyAndRemapRelocations(metadata, &relro_fd);
}
if (!CallJniOnLoad(handle))
return false;
return relro_fd;
}
// Load the library at |path| at address |wanted_address| if possible, and
// uses the relocations in |relocations_fd| if possible.
bool LoadUseSharedRelocations(const String& path,
void* wanted_address,
int relocations_fd) {
LOG_INFO("Entering");
ScopedAnonymousMmap mapping = ScopedAnonymousMmap::ReserveAtAddress(
wanted_address, kAddressSpaceReservationSize);
if (!mapping.address())
return false;
std::unique_ptr<android_dlextinfo> dlextinfo = MakeAndroidDlextinfo(mapping);
void* handle = nullptr;
if (!AndroidDlopenExt(path.c_str(), RTLD_NOW, *dlextinfo, &handle)) {
LOG_ERROR("No android_dlopen_ext function found");
return false;
}
if (handle == nullptr) {
LOG_ERROR("android_dlopen_ext: %s", dlerror());
return false;
}
mapping.Release();
LoadedLibraryMetadata metadata{mapping.address()};
bool ok = GetLoadedLibraryMetadata(&metadata);
if (!ok) {
LOG_ERROR("Cannot get library's metadata");
return false;
}
ResizeMapping(mapping, metadata);
void* shared_relro_mapping_address = mmap(
nullptr, metadata.relro_size, PROT_READ, MAP_SHARED, relocations_fd, 0);
if (shared_relro_mapping_address == MAP_FAILED) {
LOG_ERROR("Cannot map the relocations");
return false;
}
void* current_relro_address = reinterpret_cast<void*>(metadata.relro_start);
int retval = memcmp(shared_relro_mapping_address, current_relro_address,
metadata.relro_size);
if (!retval) {
void* new_addr = mremap(shared_relro_mapping_address, metadata.relro_size,
metadata.relro_size, MREMAP_MAYMOVE | MREMAP_FIXED,
current_relro_address);
if (new_addr != current_relro_address) {
LOG_ERROR("Cannot call mremap()");
munmap(shared_relro_mapping_address, metadata.relro_size);
return false;
}
} else {
munmap(shared_relro_mapping_address, metadata.relro_size);
LOG_ERROR("Relocations are not identical, giving up.");
}
if (!CallJniOnLoad(handle))
return false;
return true;
}
bool LoadNoSharedRelocations(const String& path) {
void* handle = dlopen(path.c_str(), RTLD_NOW);
if (!handle) {
LOG_ERROR("dlopen: %s", dlerror());
return false;
}
if (!CallJniOnLoad(handle))
return false;
return true;
}
} // namespace
JNI_GENERATOR_EXPORT jboolean
Java_org_chromium_base_library_1loader_ModernLinker_nativeLoadLibraryCreateRelros(
JNIEnv* env,
jclass clazz,
jstring jdlopen_ext_path,
jlong load_address,
jobject lib_info_obj) {
LOG_INFO("Entering");
String library_path(env, jdlopen_ext_path);
if (!IsValidAddress(load_address)) {
LOG_ERROR("Invalid address 0x%llx", static_cast<long long>(load_address));
return false;
}
void* address = reinterpret_cast<void*>(load_address);
int fd = LoadCreateSharedRelocations(library_path, address);
if (fd == -1)
return false;
// Note the shared RELRO fd in the supplied libinfo object. In this
// implementation the RELRO start is set to the library's load address,
// and the RELRO size is unused.
const size_t cast_addr = reinterpret_cast<size_t>(address);
s_lib_info_fields.SetRelroInfo(env, lib_info_obj, cast_addr, 0, fd);
return true;
}
JNI_GENERATOR_EXPORT jboolean
Java_org_chromium_base_library_1loader_ModernLinker_nativeLoadLibraryUseRelros(
JNIEnv* env,
jclass clazz,
jstring jdlopen_ext_path,
jlong load_address,
jint relro_fd) {
LOG_INFO("Entering");
String library_path(env, jdlopen_ext_path);
if (!IsValidAddress(load_address)) {
LOG_ERROR("Invalid address 0x%llx", static_cast<long long>(load_address));
return false;
}
void* address = reinterpret_cast<void*>(load_address);
return LoadUseSharedRelocations(library_path, address, relro_fd);
}
JNI_GENERATOR_EXPORT jboolean
Java_org_chromium_base_library_1loader_ModernLinker_nativeLoadLibraryNoRelros(
JNIEnv* env,
jclass clazz,
jstring jdlopen_ext_path) {
String library_path(env, jdlopen_ext_path);
return LoadNoSharedRelocations(library_path);
}
bool ModernLinkerJNIInit(JavaVM* vm, JNIEnv* env) {
s_java_vm = vm;
return true;
}
} // namespace chromium_android_linker
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
e98f86fdae71d84c216a2d75b8cd206a62fb6bee | 4985aad8ecfceca8027709cf488bc2c601443385 | /build/Android/Debug/app/src/main/include/Fuse.Controls.FreezeDrawable.h | 8e159db5d947eeac704d28078c847db12ee8012d | [] | no_license | pacol85/Test1 | a9fd874711af67cb6b9559d9a4a0e10037944d89 | c7bb59a1b961bfb40fe320ee44ca67e068f0a827 | refs/heads/master | 2021-01-25T11:39:32.441939 | 2017-06-12T21:48:37 | 2017-06-12T21:48:37 | 93,937,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,039 | h | // This file was generated based on '../../AppData/Local/Fusetools/Packages/Fuse.Controls.Panels/1.0.2/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Float4x4.h>
#include <Uno.Object.h>
#include <Uno.Runtime.Implement-476e2792.h>
namespace g{namespace Fuse{namespace Controls{struct FreezeDrawable;}}}
namespace g{namespace Fuse{namespace Controls{struct Panel;}}}
namespace g{namespace Fuse{struct DrawContext;}}
namespace g{namespace Fuse{struct VisualBounds;}}
namespace g{namespace Uno{namespace Graphics{struct Framebuffer;}}}
namespace g{namespace Uno{namespace Graphics{struct VertexBuffer;}}}
namespace g{namespace Uno{struct Float2;}}
namespace g{
namespace Fuse{
namespace Controls{
// internal sealed class FreezeDrawable :2141
// {
uType* FreezeDrawable_typeof();
void FreezeDrawable__ctor__fn(FreezeDrawable* __this);
void FreezeDrawable__Draw_fn(FreezeDrawable* __this, ::g::Fuse::DrawContext* dc, ::g::Fuse::Controls::Panel* panel, float* Opacity, ::g::Uno::Float2* scale, ::g::Fuse::VisualBounds* renderBounds, ::g::Uno::Graphics::Framebuffer* buffer);
void FreezeDrawable__init_DrawCalls_fn(FreezeDrawable* __this);
void FreezeDrawable__New1_fn(FreezeDrawable** __retval);
struct FreezeDrawable : uObject
{
::g::Uno::Runtime::Implementation::ShaderBackends::OpenGL::GLDrawCall _draw_646c65c3;
::g::Uno::Float4x4 Draw_LocalTransform_646c65c3_4_9_2;
::g::Uno::Float4x4 Draw_LocalTransform_646c65c3_4_9_3;
uStrong< ::g::Uno::Graphics::VertexBuffer*> Draw_VertexData_646c65c3_7_2_1;
static uSStrong<FreezeDrawable*> Singleton_;
static uSStrong<FreezeDrawable*>& Singleton() { return FreezeDrawable_typeof()->Init(), Singleton_; }
void ctor_();
void Draw(::g::Fuse::DrawContext* dc, ::g::Fuse::Controls::Panel* panel, float Opacity, ::g::Uno::Float2 scale, ::g::Fuse::VisualBounds* renderBounds, ::g::Uno::Graphics::Framebuffer* buffer);
void init_DrawCalls();
static FreezeDrawable* New1();
};
// }
}}} // ::g::Fuse::Controls
| [
"newreality64@gmail.com"
] | newreality64@gmail.com |
09089aadeca55f13808b96e1b1a547cc84a06f2b | 8b4de051ad8c265d36433f795fb98b388495e9d4 | /Stratum/StVirtualMachine/SpaceObjectFunctions.cpp | 3ee574f39de6cc8ef8732172346b192a29a37e45 | [] | no_license | RamizJ/Stratum | 138494d1915873b606ebf1f50bdb34715f64f12b | e392ba9455efe8d1624d2a14a9a89038113433c1 | refs/heads/master | 2022-12-10T05:21:13.967757 | 2020-08-21T20:57:37 | 2020-08-21T20:57:37 | 289,362,616 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,726 | cpp | #include "SpaceObjectFunctions.h"
#include "VmCodes.h"
#include "VmGlobal.h"
#include "VmLog.h"
#include "FileSystemFunctions.h"
#include <Object.h>
#include <SpaceWidget.h>
using namespace StData;
using namespace StSpace;
namespace StVirtualMachine {
void setupSpaceObjectFunctions()
{
operations[V_CREATEOBJECTFROMFILE] = createObjectFromFile2d;
operations[DELETEOBJECT2D] = deleteObject2d;
operations[GETOBJECTTYPE] = getObjectType;
operations[GETOBJECTNAME2D] = getObjectName2d;
operations[SETOBJECTNAME2D] = setObjectName2d;
operations[GETOBJECTBYNAME] = getObject2dByName;
operations[GETOBJECTORG2DX] = getObjectOrg2dX;
operations[GETOBJECTORG2DY] = getObjectOrg2dY;
operations[SETOBJECTORG2D] = setObjectOrg2d;
operations[SETOBJECTSIZE2D] = setObjectSize2d;
operations[GETOBJECTSIZE2DX] = getObjectWidth2d;
operations[GETOBJECTSIZE2DY] = getObjectHeight2d;
operations[VM_GETACTUALWIDTH] = getActualWidth2d;
operations[VM_GETACTUALHEIGHT] = getActualHeight2d;
operations[VM_GETACTUALSIZE] = getActualSize2d;
operations[GETOBJECTANGLE2D] = getObjectAngle2d;
operations[ROTATEOBJECT2D] = rotateObject2d;
operations[VM_GETOBJECTALPHA2D] = getObjectAlpha2d;
operations[VM_SETOBJECTALPHA2D] = setObjectAlpha2d;
operations[SETSHOWOBJECT2D] = setShowObject2d;
operations[SHOWOBJECT2D] = showObject2d;
operations[HIDEOBJECT2D] = hideObject2d;
operations[GETOBJECTFROMPOINT2D] = getObjectFromPoint2d;
operations[GETOBJECTFROMPOINT2DEX] = getObjectFromPoint2dEx;
operations[V_ISINTERSECT2D] = isObjectsIntersect2d;
operations[GETLASTPRIMARY] = getLastPrimary;
operations[VM_LOCKOBJECT2D] = lockObject2d;
operations[GETOBJECTATTRIBUTE2D] = getObjectAttribute2d;
operations[SETOBJECTATTRIBUTE2D] = setObjectAttribute2d;
operations[VM_GETNEXTOBJECT] = getNextObject2d;
operations[VM_GETCURRENTOBJ2D] = getCurrentObject2d;
operations[VM_SETCURRENTOBJ2D] = setCurrentObject2d;
operations[GETTOPOBJECT2D] = getTopObject2d;
operations[GETBOTTOMOBJECT2D] = getBottomObject2d;
operations[GETUPPEROBJECT2D] = getUpperObject2d;
operations[GETLOWEROBJECT2D] = getLowerObject2d;
operations[GETOBJECTFROMZORDER2D] = getObjectFromZOrder2d;
operations[GETZORDER2D] = getZOrder2d;
operations[SETZORDER2D] = setZOrder2d;
operations[OBJECTTOBOTTOM2D] = objectToBottom2d;
operations[OBJECTTOTOP2D] = objectToTop2d;
operations[SWAPOBJECT2D] = swapObjects2d;
}
void createObjectFromFile2d()
{
qint32 flags = valueStack->popDouble();
float x = valueStack->popDouble();
float y = valueStack->popDouble();
QString path = valueStack->popString();
int spaceHandle = valueStack->popInt32();
QString absoluteFilePath = absolutePathByObject(executedObject, path);
valueStack->pushInt32(0.0);
//throw std::runtime_error("createObjectFromFile2d - function not implemented");
}
void deleteObject2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->deleteObject(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getObjectType()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectType(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getObjectName2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushString(w->getObjectName2d(objectHandle));
else
valueStack->pushString("");
}
void setObjectName2d()
{
QString objectName = valueStack->popString();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setObjectName2d(objectHandle, objectName));
else
valueStack->pushDouble(0.0);
}
void getObject2dByName()
{
QString objectName = valueStack->popString();
int groupHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushInt32(w->getObject2dByName(groupHandle, objectName));
else
valueStack->pushInt32(0);
}
void getObjectOrg2dX()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectOrgX(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getObjectOrg2dY()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectOrgY(objectHandle));
else
valueStack->pushDouble(0.0);
}
void setObjectOrg2d()
{
double y = valueStack->popDouble();
double x = valueStack->popDouble();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setObjectOrg2d(objectHandle, x, y));
else
valueStack->pushDouble(0.0);
}
void getObjectWidth2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectWidth(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getObjectHeight2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectHeight(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getActualWidth2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getActualWidth(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getActualHeight2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getActualHeight(objectHandle));
else
valueStack->pushDouble(0.0);
}
void getActualSize2d()
{
VarData* heightVar = valueStack->popVarData();
VarData* widthVar = valueStack->popVarData();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
double width, height;
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
{
valueStack->pushDouble(w->getActualSize(objectHandle, &width, &height));
widthVar->d = width;
heightVar->d = height;
}
else
valueStack->pushDouble(0.0);
}
void setObjectSize2d()
{
double height = valueStack->popDouble();
double width = valueStack->popDouble();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setObjectSize(objectHandle, width, height));
else
valueStack->pushDouble(0.0);
}
void getObjectAngle2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectAngle2d(objectHandle));
else
valueStack->pushDouble(0.0);
}
void rotateObject2d()
{
double angle = valueStack->popDouble();
double y = valueStack->popDouble();
double x = valueStack->popDouble();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->rotateObject2d(objectHandle, x, y, angle));
else
valueStack->pushDouble(0.0);
}
void getObjectAlpha2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectAlpha2d(objectHandle));
else
valueStack->pushDouble(0.0);
}
void setObjectAlpha2d()
{
double alpha = valueStack->popDouble();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setObjectAlpha2d(objectHandle, alpha));
else
valueStack->pushDouble(0.0);
}
void setShowObject2d()
{
bool isVisible = valueStack->popDouble();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setShowObject2d(objectHandle, isVisible));
else
valueStack->pushDouble(0.0);
}
void showObject2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
w->showObject2d(objectHandle);
}
void hideObject2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
w->hideObject2d(objectHandle);
}
void getObjectFromPoint2d()
{
double y = valueStack->popDouble();
double x = valueStack->popDouble();
int spaceHandle = valueStack->popInt32();
lastPrimaryHandle = 0;
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
{
lastPrimaryHandle = w->getObjectFromPoint2d(x, y);
valueStack->pushInt32(lastPrimaryHandle);
}
else
valueStack->pushInt32(0.0);
}
void getObjectFromPoint2dEx()
{
int layer = valueStack->popDouble();
double y = valueStack->popDouble();
double x = valueStack->popDouble();
int spaceHandle = valueStack->popInt32();
lastPrimaryHandle = 0;
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
{
lastPrimaryHandle = w->getObjectFromPoint2dEx(x, y, layer);
valueStack->pushInt32(lastPrimaryHandle);
}
else
valueStack->pushInt32(0.0);
}
void isObjectsIntersect2d()
{
int flag = valueStack->popDouble();
int object2Handle = valueStack->popInt32();
int object1Handle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->isObjectsIntersect2d(object1Handle, object2Handle, flag));
else
valueStack->pushDouble(0.0);
}
void getLastPrimary()
{
valueStack->pushInt32(lastPrimaryHandle);
}
void lockObject2d()
{
/*int flag = */valueStack->popDouble();
/*int objHandle = */valueStack->popInt32();
/*int spaceHandle = */valueStack->popInt32();
VmLog::instance().error("'lockObject2d' - function not implemented");
valueStack->pushDouble(0.0);
}
void setObjectAttribute2d()
{
double atrMode = valueStack->popDouble();
int attrValue = valueStack->popDouble();
int objHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setObjectAttribute(objHandle, atrMode, attrValue));
else
valueStack->pushDouble(0.0);
}
void getObjectAttribute2d()
{
int objHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getObjectAttribute2d(objHandle));
else
valueStack->pushDouble(0.0);
}
void getNextObject2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
{
int nextObjectHandle = w->getNextObject(objectHandle);
// qDebug() << "nextObjectHandle" << nextObjectHandle;
valueStack->pushInt32(nextObjectHandle);
}
else
valueStack->pushInt32(0);
}
void getCurrentObject2d()
{
throw std::logic_error("getCurrentObject2d function not implemented");
}
void setCurrentObject2d()
{
throw std::logic_error("setCurrentObject2d function not implemented");
}
void getBottomObject2d()
{
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushInt32(w->getBottomObject());
else
valueStack->pushInt32(0);
}
void getTopObject2d()
{
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushInt32(w->getTopObject());
else
valueStack->pushInt32(0);
}
void getUpperObject2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushInt32(w->getUpperObject(objectHandle));
else
valueStack->pushInt32(0);
}
void getLowerObject2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushInt32(w->getLowerObject(objectHandle));
else
valueStack->pushInt32(0);
}
void getObjectFromZOrder2d()
{
int zOrder = valueStack->popDouble();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushInt32(w->getObjectFromZOrder(zOrder));
else
valueStack->pushInt32(0);
}
void getZOrder2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->getZOrder(objectHandle));
else
valueStack->pushDouble(0.0);
}
void objectToBottom2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->objectToBottom(objectHandle));
else
valueStack->pushDouble(0.0);
}
void objectToTop2d()
{
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->objectToTop(objectHandle));
else
valueStack->pushDouble(0.0);
}
void setZOrder2d()
{
int zOrder = valueStack->popDouble();
int objectHandle = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->setObjectZOrder(objectHandle, zOrder));
else
valueStack->pushDouble(0.0);
}
void swapObjects2d()
{
int objectHandle2 = valueStack->popInt32();
int objectHandle1 = valueStack->popInt32();
int spaceHandle = valueStack->popInt32();
if(SpaceWidget* w = windowManager->getWidget(spaceHandle))
valueStack->pushDouble(w->swapObjectsZOrder(objectHandle1, objectHandle2));
else
valueStack->pushDouble(0.0);
}
}
| [
"ramiz.jaffarove@gmail.com"
] | ramiz.jaffarove@gmail.com |
d22df17ee2bccbf0bb90ea8622c7f2cbb79843be | 398ed6e8536021fbd6854e252ed869e5d88e8351 | /src/Shape.h | d6c51fcdb65bfff89f1033ae0715390abeb83a97 | [] | no_license | dancojocaru2000/PS-GraphicsProject-FreeGlut | 6b9cc57c539437b4600d42e637338c934d817a84 | bd4f41db9aca966e94b747a9f21cf3c5e968babe | refs/heads/master | 2022-09-21T15:35:47.305978 | 2020-06-07T18:22:30 | 2020-06-07T18:22:30 | 267,420,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 244 | h | #ifndef GRAPHICSPROJECT_SHAPE_H
#define GRAPHICSPROJECT_SHAPE_H
#include "EngineGlut.h"
class Shape {
protected:
EngineGlut _engine;
public:
virtual void draw() = 0;
virtual void print() = 0;
};
#endif //GRAPHICSPROJECT_SHAPE_H
| [
"dancojocaru2010@hotmail.com"
] | dancojocaru2010@hotmail.com |
977908077f487155e73eda535d51ee996e0b3e3e | 4434644992afc0ced6a255d1701464fb82e19f91 | /w_autogyro/lcd.cpp | 73a8ca36a2aa3e404e1b19a7c1734d0f5b570e7d | [] | no_license | albaniac/Sergey_gyro_mega128_mpu6050_lcd | 307d1cd205d71e5d7a8f95f91e4e67e52ced19e4 | 5284bc287306d2ec693ab4744d7b43ca79a824bb | refs/heads/master | 2020-04-10T11:26:34.632573 | 2017-12-29T13:47:40 | 2017-12-29T13:47:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,047 | cpp | #include <avr/io.h>
#include <avr/delay.h>
#include "lcd.h"
#include "common_makros.h"
#define RS 0
#define EN 1
#define RW 2
#define CMDPORT PORTB
#define DATAPORT PORTC
void LCDLigth(char light)
{
if (light = LCD_LIGHT_ON)
{
UPBIT(PORTA, 7); // on light
}
else
{
DOWNBIT(PORTA, 7); // off light
}
}
void LCDPuls()
{
UPBIT(CMDPORT, EN);
_delay_ms(10);
DOWNBIT(CMDPORT, EN);
}
void LCDWriteCommand(char cmd)
{
DOWNBIT(CMDPORT, RS);
DOWNBIT(CMDPORT, RW);
DOWNBIT(CMDPORT, EN);
_delay_ms(1);
DATAPORT = cmd;
_delay_ms(1);
UPBIT(CMDPORT, EN);
_delay_ms(1);
DOWNBIT(CMDPORT, EN);
}
void LCDWriteData(char dat)
{
UPBIT(CMDPORT, RS);
DOWNBIT(CMDPORT, RW);
DOWNBIT(CMDPORT, EN);
_delay_ms(1);
DATAPORT = dat;
_delay_ms(1);
UPBIT(CMDPORT, EN);
_delay_ms(1);
DOWNBIT(CMDPORT, EN);
}
void LCDInit()
{
DOWNBIT(CMDPORT, EN);
_delay_ms(1000);
DDRA |= (1 << 7); // podsvetka
DDRA |= (1 << 6); // parallel data
PORTA |= (1 << 6); // set parallel
DDRB |= 0b00000111;
DDRC = 0xff; // data port for lcd
LCDWriteCommand(0x34); //Extended instruction
_delay_ms(10);
LCDWriteCommand(0x30); //Basic instruction
_delay_ms(10);
LCDWriteCommand(0x0C); //Display on, cursor off
_delay_ms(10);
LCDWriteCommand(0x01); //Clear LCD
_delay_ms(10);
}
void LCDClearLCD(){
LCDWriteCommand(0x01); //Clear LCD
_delay_ms(10);
}
void LCDSetPosition(char line, char col)
{
char pos;
if (line == 0)
line = 0x80;
else if (line == 1)
line =0x90;
else if (line == 2)
line = 0x88;
else if (line == 3)
line = 0x98;
pos = line + col ;
LCDWriteCommand(pos); //Set DDRAM Address
}
void LCDWriteString(char line, char col, char *s)
{
LCDSetPosition(line, col);
while(*s != '*')
{
LCDWriteData(*s);
s++;
}
}
| [
"blobby@radico.ru"
] | blobby@radico.ru |
58f4313a3677498d4b3d4d8549355da6fbf3d2fc | 8590b7928fdcff351a6e347c4b04a085f29b7895 | /common/geodesy/GUI/geolocation_frmx.cpp | 4b6f1b47af91e7be3b0790dd65d8c7d2d39513a9 | [] | no_license | liao007/VIC-CropSyst-Package | 07fd0f29634cf28b96a299dc07156e4f98a63878 | 63a626250ccbf9020717b7e69b6c70e40a264bc2 | refs/heads/master | 2023-05-23T07:15:29.023973 | 2021-05-29T02:17:32 | 2021-05-29T02:17:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,751 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "geolocation_frm.h"
#ifndef GEOLOCATION_H
# include <common/geolocation/geolocation.h>
#endif
#ifndef GEOLOCATION_UTM_H
# include <common/geolocation/UTM.h>
#endif
#include <CropSyst/GUI/help/location.h>
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "AutoFloat32Edit"
#pragma link "AutoFloat32EditBar"
#pragma link "AutoInt16Edit"
#pragma link "AutoStringEdit"
#pragma link "AdvEdit"
#pragma resource "*.dfm"
Tgeolocation_form *geolocation_form;
//---------------------------------------------------------------------------
__fastcall Tgeolocation_form::Tgeolocation_form(TComponent* Owner)
: TForm(Owner)
, geolocation_parameters(0)
{}
//---------------------------------------------------------------------------
void Tgeolocation_form::bind_to
(Geolocation *geolocation_params
,CORN::Ustring *description // may be 0
)
{
geolocation_parameters =geolocation_params;
if (description)
{ description_edit->bind_to(description,HELP_P_loc_description);
}
else
{ description_label->Visible = false;
description_edit->Visible = false; // CropSyst stores the description elsewhere
geolocation_pagecontrol->Align = alClient;
};
//temp_disabled latitude_edit_bar->bind_to(&geolocation_parameters->v_latitude_dec_deg,HELP_P_loc_latitude);
//temp_disabled longitude_edit_bar->bind_to(&geolocation_parameters->v_longitude_dec_deg,HELP_P_loc_latitude);
//temp_disabled elevation_edit_bar->bind_to(&geolocation_parameters->v_elevation,0);
//temp_disabled screening_height_edit_bar->bind_to(&geolocation_parameters->v_screening_height,HELP_P_loc_windmeasure);
lat_deg_edit->bind_to(&lat_deg,HELP_P_loc_latitude);
long_deg_edit->bind_to(&long_deg,HELP_P_loc_latitude);
lat_min_edit->bind_to(&lat_min,HELP_P_loc_latitude);
long_min_edit->bind_to(&long_min,HELP_P_loc_latitude);
lat_sec_edit->bind_to(&lat_sec,4,HELP_P_loc_latitude);
long_sec_edit->bind_to(&long_sec,4,HELP_P_loc_latitude);
utm_northing_edit ->bind_to(&utm_northing,5,HELP_P_loc_latitude /*NYI HELP_P_loc_UTM*/);
utm_easting_edit ->bind_to(&utm_easting, 5,HELP_P_loc_latitude /*NYI HELP_P_loc_UTM*/);
utm_zone_edit ->bind_to(&utm_zone ,HELP_P_loc_latitude /*NYI HELP_P_loc_UTM*/);
// update_latitude_dec_min_sec(0);
// update_longitude_dec_min_sec(0);
latitude_decdeg_onexit(0);
longitude_decdeg_onexit(0);
update_UTM();
country_name_edit ->bind_to(&(geolocation_parameters->country_name),0);
state_code_edit ->bind_to(&(geolocation_parameters->state_name),0);
county_code_edit ->bind_to(&(geolocation_parameters->county_name),0);
char buffer[20];
station_ID_code_edit ->Text = ltoa(geolocation_parameters->station_number,buffer,10);
station_ID_code_edit ->bind_to(&(geolocation_parameters->station_ID_code),0);
station_name_edit ->bind_to(&(geolocation_parameters->station_name),0);
show_hide_controls();
};
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::latitude_degminsec_onexit(TObject */*Sender unused*/)
{ geolocation_parameters->latitude_dec_deg_32 = deg_minute_second_to_dec_deg
(lat_deg,lat_min,lat_sec,lat_dir_combobox ->Text == "North");
//temp_disabled latitude_edit_bar->Update();
update_UTM();
}
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::longitude_degmin_sec_onexit(TObject */*Sender unused*/)
{ geolocation_parameters->longitude_dec_deg_32 = deg_minute_second_to_dec_deg
(long_deg,long_min,long_sec,long_dir_combobox->Text == "East");
//temp_disabled longitude_edit_bar->Update();
update_UTM();
}
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::utm_onexit(TObject *Sender)
{
UTM_Geocoordiante utm_geo;
utm_geo.set_UTM(utm_easting, utm_northing, utm_zone);
float64 latitude_dec_deg_64= 0;
float64 longitude_dec_deg_64= 0;
if (utm_geo.get_degrees(latitude_dec_deg_64,longitude_dec_deg_64))
{ geolocation_parameters->latitude_dec_deg_32 = latitude_dec_deg_64;
geolocation_parameters->longitude_dec_deg_32 = longitude_dec_deg_64;
};
//temp_disabled latitude_edit_bar->Update();
bool north;
dec_deg_to_deg_minute_second
(geolocation_parameters->latitude_dec_deg_32
,lat_deg
,lat_min
,lat_sec
,north);
lat_deg_edit->Update();
lat_min_edit->Update();
lat_sec_edit->Update();
lat_dir_combobox->Text = north ? "North" : "South";
//temp_disabled longitude_edit_bar->Update();
bool east;
dec_deg_to_deg_minute_second
(geolocation_parameters->longitude_dec_deg_32
,long_deg
,long_min
,long_sec
,east);
long_deg_edit->Update();
long_min_edit->Update();
long_sec_edit->Update();
long_dir_combobox->Text = east ? "East" : "West";
};
//---------------------------------------------------------------------------
void Tgeolocation_form::dec_deg_to_deg_minute_second(float32 dec_deg, int16 °,int16 &min, float32 &sec,bool &east_or_north) const
{
/*
D.d --> DM.m (45.3772 --> 45o22.6333):
- Multiply .d by 60 to get M.m (.3772*60=22.6333)
DM.m --> DMS (45o22.6333 --> 45o22'38"):
- Multiply .m by 60 to get S(.6333*60=38)
*/
east_or_north = (dec_deg > 0);
dec_deg = fabs(dec_deg);
deg = (int16)dec_deg;
float32 d = dec_deg - deg;
float32 dec_min = d * 60.0;
min = abs((int16)dec_min);
float32 m = dec_min - min;
sec = m * 60.0;
};
float32 Tgeolocation_form::deg_minute_second_to_dec_deg(int16 deg,int16 min, int16 sec,bool east_or_north) const
{
/*
DMS --> DM.m (45o22'38" --> 45o22.6333):
- Divide S by 60 to get .m (38/60=.6333)
- Add .m to M to get M.m (22+.6333=22.6333)
DM.m --> D.d (45o 22.6333 --> 45.3772):
- Divide M.m by 60 to get .d (22.6333/60=.3772)
- Add .d to D to get D.d (45+.3772=45.3772)
*/
float32 min_decimal = (float)sec/60.0;
min_decimal += min;
float32 deg_decimal = deg + (min_decimal/60);
if (!east_or_north) deg_decimal = -deg_decimal; // west and south are negative
return deg_decimal;
};
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::latitude_decdeg_onexit(TObject */*Sender unused*/)
{
bool north;
dec_deg_to_deg_minute_second
(geolocation_parameters->latitude_dec_deg_32
,lat_deg
,lat_min
,lat_sec
,north);
lat_dir_combobox->Text = north ? "North" : "South";
lat_deg_edit->Update();
lat_min_edit->Update();
lat_sec_edit->Update();
update_UTM();
}
//---------------------------------------------------------------------------
void Tgeolocation_form::update_UTM()
{
UTM_Geocoordiante utm_geo;
utm_geo.set_degrees(geolocation_parameters->latitude_dec_deg_32,geolocation_parameters->longitude_dec_deg_32);
utm_northing = utm_geo.get_northing();
utm_easting = utm_geo.get_easting();
utm_zone = utm_geo.get_zone();
utm_northing_edit->Update();
utm_easting_edit->Update();
utm_zone_edit->Update();
};
void __fastcall Tgeolocation_form::longitude_decdeg_onexit(TObject */*Sender unused*/)
{
bool east;
dec_deg_to_deg_minute_second
(geolocation_parameters->longitude_dec_deg_32
,long_deg
,long_min
,long_sec
,east);
long_dir_combobox->Text = east ? "East" : "West";
long_deg_edit->Update();
long_min_edit->Update();
long_sec_edit->Update();
update_UTM();
}
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::country_ISO3166_code_combobox_onchange(TObject *Sender)
{
if (geolocation_parameters)
{ geolocation_parameters->country_code = atoi(country_ISO3166_code_combobox->Text.c_str());
show_hide_controls();
};
}
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::US_state_FIPS_combobox_onchange(TObject *Sender)
{
if (geolocation_parameters)
{ geolocation_parameters->state_code = atoi(US_state_FIPS_combobox->Text.c_str());
show_hide_controls();
};
}
//---------------------------------------------------------------------------
void Tgeolocation_form::show_hide_controls()
{ // For United states
if (geolocation_parameters)
{
bool united_states = ((geolocation_parameters->country_code == 840) || (geolocation_parameters->country_code == 581));
US_state_FIPS_combobox->Visible = united_states;
bool show_country_name = (!geolocation_parameters->country_code ||
(!geolocation_parameters->country_code
&& (geolocation_parameters->county_name.length() !=0)));
country_name_edit->Visible = show_country_name;
state_code_edit->Visible = !united_states || (geolocation_parameters->state_code == 0);
county_code_combobox->Visible = false; // Not yet implememented
};
};
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::station_number_edit_onchange(TObject *Sender)
{ if (geolocation_parameters)
{ char ID_code[20];
strcpy(ID_code,station_number_edit->Text.c_str());
geolocation_parameters->station_number = atol(ID_code);
};
}
//---------------------------------------------------------------------------
void __fastcall Tgeolocation_form::Update()
{
description_edit->Update();
//temp_disabled latitude_edit_bar->Update();
//temp_disabled longitude_edit_bar->Update();
//temp_disabled elevation_edit_bar->Update();
//temp_disabled screening_height_edit_bar->Update();
lat_deg_edit->Update();
long_deg_edit->Update();
lat_min_edit->Update();
long_min_edit->Update();
lat_sec_edit->Update();
long_sec_edit->Update();
// update_latitude_dec_min_sec(0);
// update_longitude_dec_min_sec(0);
latitude_decdeg_onexit(0);
longitude_decdeg_onexit(0);
country_name_edit ->Update();
state_code_edit ->Update();
county_code_edit ->Update();
char buffer[20];
station_ID_code_edit ->Text = ltoa(geolocation_parameters->station_number,buffer,10);
station_ID_code_edit ->Update();
station_name_edit ->Update();
update_UTM();
};
| [
"mingliang.liu@wsu.edu"
] | mingliang.liu@wsu.edu |
03af615830143c257fad92deaea4af6ea8a0b7cc | 2158281e425d3bce949e4e333de6338005ee1150 | /cpp-leetcode/leetcode204-count-prims.cpp | d4f479976c8213920d3d0afc8cb9c140cc2b7bc5 | [] | no_license | maowang60/AlgoSolutions | 8d3109eabb8fadc624b8042c958c819f30aeee39 | 1662a52d40ec1c13f8cd45c5c8aeda6b81bc720a | refs/heads/master | 2023-06-10T14:52:03.654975 | 2021-07-10T06:08:13 | 2021-07-10T06:08:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,127 | cpp | #include<algorithm>
#include<vector>
#include<cmath>
#include <numeric>
using namespace std;
class Solution {
public:
int countPrimes(int n) {
vector<int> isPrime(n, 1);
if(n < 2)
{
return 0;
}
else {
isPrime[0] = isPrime[1] = 0;
for (int i = 2; i < int(sqrt(n)) + 1; i++)
{
if (isPrime[i])
{
//isPrime[i*i:n:i] = [0]*((n-1-i*i)//i + 1)
for (int k = i*i; k < n; k += i)
{
isPrime[k] = 1;
}
}
}
return accumulate(isPrime.begin(), isPrime.end(), 0);;
}
}
};
// if n < 2:
// return 0
// else:
// isPrime = [1]*n # isPrime = not deleted
// isPrime[:2] = [0]*2
// for i in range(2, int(math.sqrt(n)) + 1):
// if isPrime[i]:
// isPrime[i*i:n:i] = [0]*((n-1-i*i)//i + 1)
// return sum(isPrime) | [
"1530676929@qq.com"
] | 1530676929@qq.com |
ef75586f92af6b26d1e6889df266739c471144b3 | 4cc8d90ab98fb3c4d019dd35ef03a2cc27b62814 | /syn/core/ebnf__imp.h | ffe40143f385dcbabe9749fe114c8c56236db6a8 | [
"Apache-2.0"
] | permissive | libo3019/syncpp | e0b5256360963ce60a18a221f73a2d5f13289b1e | df34b95b308d7f2e6479087d629017efa7ab9f1f | refs/heads/master | 2021-09-23T14:21:54.572368 | 2015-06-22T21:38:53 | 2015-06-22T21:38:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,005 | h | /*
* Copyright 2014 Anton Karmanov
*
* 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.
*/
//Implementation of EBNF grammar-related template functions.
#ifndef SYN_CORE_EBNF_IMP_H_INCLUDED
#define SYN_CORE_EBNF_IMP_H_INCLUDED
#include "ebnf__def.h"
#include "ebnf_visitor__def.h"
//
//Declaration
//
template<class T>
T synbin::ebnf::Declaration::visit(DeclarationVisitor<T>* visitor) {
struct AdaptingVisitor : public DeclarationVisitor<void> {
DeclarationVisitor<T>* m_effective_visitor;
T m_value;
void visit_Declaration(ebnf::Declaration* declaration) override {
m_value = m_effective_visitor->visit_Declaration(declaration);
}
void visit_TypeDeclaration(ebnf::TypeDeclaration* declaration) override {
m_value = m_effective_visitor->visit_TypeDeclaration(declaration);
}
void visit_CustomTerminalTypeDeclaration(ebnf::CustomTerminalTypeDeclaration* declaration) override {
m_value = m_effective_visitor->visit_CustomTerminalTypeDeclaration(declaration);
}
void visit_SymbolDeclaration(ebnf::SymbolDeclaration* sym) override {
m_value = m_effective_visitor->visit_SymbolDeclaration(sym);
}
void visit_TerminalDeclaration(ebnf::TerminalDeclaration* tr) override {
m_value = m_effective_visitor->visit_TerminalDeclaration(tr);
}
void visit_NonterminalDeclaration(ebnf::NonterminalDeclaration* nt) override {
m_value = m_effective_visitor->visit_NonterminalDeclaration(nt);
}
};
AdaptingVisitor adapting_visitor;
adapting_visitor.m_effective_visitor = visitor;
visit0(&adapting_visitor);
return adapting_visitor.m_value;
}
//
//SymbolDeclaration
//
template<class T>
T synbin::ebnf::SymbolDeclaration::visit(SymbolDeclarationVisitor<T>* visitor) {
struct AdaptingVisitor : public SymbolDeclarationVisitor<void> {
SymbolDeclarationVisitor<T>* m_effective_visitor;
T m_value;
void visit_SymbolDeclaration(ebnf::SymbolDeclaration* sym) override {
m_value = m_effective_visitor->visit_SymbolDeclaration(sym);
}
void visit_TerminalDeclaration(ebnf::TerminalDeclaration* tr) override {
m_value = m_effective_visitor->visit_TerminalDeclaration(tr);
}
void visit_NonterminalDeclaration(ebnf::NonterminalDeclaration* nt) override {
m_value = m_effective_visitor->visit_NonterminalDeclaration(nt);
}
};
AdaptingVisitor adapting_visitor;
adapting_visitor.m_effective_visitor = visitor;
visit0(&adapting_visitor);
return adapting_visitor.m_value;
}
//
//SyntaxExpression
//
template<class T>
T synbin::ebnf::SyntaxExpression::visit(SyntaxExpressionVisitor<T>* visitor) {
struct AdaptingVisitor : public SyntaxExpressionVisitor<void> {
SyntaxExpressionVisitor<T>* m_effective_visitor;
T m_value;
void visit_SyntaxExpression(ebnf::SyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_SyntaxExpression(expr);
}
void visit_EmptySyntaxExpression(ebnf::EmptySyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_EmptySyntaxExpression(expr);
}
void visit_CompoundSyntaxExpression(ebnf::CompoundSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_CompoundSyntaxExpression(expr);
}
void visit_SyntaxOrExpression(ebnf::SyntaxOrExpression* expr) override {
m_value = m_effective_visitor->visit_SyntaxOrExpression(expr);
}
void visit_SyntaxAndExpression(ebnf::SyntaxAndExpression* expr) override {
m_value = m_effective_visitor->visit_SyntaxAndExpression(expr);
}
void visit_SyntaxElement(ebnf::SyntaxElement* expr) override {
m_value = m_effective_visitor->visit_SyntaxElement(expr);
}
void visit_NameSyntaxElement(ebnf::NameSyntaxElement* expr) override {
m_value = m_effective_visitor->visit_NameSyntaxElement(expr);
}
void visit_ThisSyntaxElement(ebnf::ThisSyntaxElement* expr) override {
m_value = m_effective_visitor->visit_ThisSyntaxElement(expr);
}
void visit_NameSyntaxExpression(ebnf::NameSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_NameSyntaxExpression(expr);
}
void visit_StringSyntaxExpression(ebnf::StringSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_StringSyntaxExpression(expr);
}
void visit_CastSyntaxExpression(ebnf::CastSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_CastSyntaxExpression(expr);
}
void visit_ZeroOneSyntaxExpression(ebnf::ZeroOneSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_ZeroOneSyntaxExpression(expr);
}
void visit_LoopSyntaxExpression(ebnf::LoopSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_LoopSyntaxExpression(expr);
}
void visit_ZeroManySyntaxExpression(ebnf::ZeroManySyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_ZeroManySyntaxExpression(expr);
}
void visit_OneManySyntaxExpression(ebnf::OneManySyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_OneManySyntaxExpression(expr);
}
void visit_ConstSyntaxExpression(ebnf::ConstSyntaxExpression* expr) override {
m_value = m_effective_visitor->visit_ConstSyntaxExpression(expr);
}
};
AdaptingVisitor adapting_visitor;
adapting_visitor.m_effective_visitor = visitor;
visit0(&adapting_visitor);
return adapting_visitor.m_value;
}
//
//ConstExpression
//
template<class T>
T synbin::ebnf::ConstExpression::visit(ConstExpressionVisitor<T>* visitor) const {
struct AdaptingVisitor : public ConstExpressionVisitor<void> {
ConstExpressionVisitor<T>* m_effective_visitor;
T m_value;
void visit_ConstExpression(const ebnf::ConstExpression* expr) override {
m_value = m_effective_visitor->visit_ConstExpression(expr);
}
void visit_IntegerConstExpression(const ebnf::IntegerConstExpression* expr) override {
m_value = m_effective_visitor->visit_IntegerConstExpression(expr);
}
void visit_StringConstExpression(const ebnf::StringConstExpression* expr) override {
m_value = m_effective_visitor->visit_StringConstExpression(expr);
}
void visit_BooleanConstExpression(const ebnf::BooleanConstExpression* expr) override {
m_value = m_effective_visitor->visit_BooleanConstExpression(expr);
}
void visit_NativeConstExpression(const ebnf::NativeConstExpression* expr) override {
m_value = m_effective_visitor->visit_NativeConstExpression(expr);
}
};
AdaptingVisitor adapting_visitor;
adapting_visitor.m_effective_visitor = visitor;
visit0(&adapting_visitor);
return adapting_visitor.m_value;
}
#endif//SYN_CORE_EBNF_IMP_H_INCLUDED
| [
"antkar.dev@gmail.com"
] | antkar.dev@gmail.com |
7adf597e0612ba7b5458676525e65acdd55fe77e | d8efaf8e35f7d203d50cb4f87bc7313187d9f6e1 | /build/Android/Preview/MyFirstFuseProject/app/src/main/include/Uno.Collections.SelectEnumerable-2.h | 392dfd6e8a535b69bc7df0e1effebc995588621a | [] | no_license | eddzmaciel/fproject_fp | fe33dc03b82047e88fad9e82959ee92d6da49025 | 2760ddb66c749651f163c3c1a3bc7b6820fbebae | refs/heads/master | 2020-12-04T12:38:37.955298 | 2016-09-02T02:23:31 | 2016-09-02T02:23:31 | 67,182,558 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,188 | h | // This file was generated based on C:\ProgramData\Uno\Packages\Uno.Collections\0.33.0\Extensions\$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Collections.IEnumerable-1.h>
#include <Uno.Object.h>
namespace g{namespace Uno{namespace Collections{struct SelectEnumerable;}}}
namespace g{
namespace Uno{
namespace Collections{
// internal sealed class SelectEnumerable<T, TRet> :459
// {
struct SelectEnumerable_type : uType
{
::g::Uno::Collections::IEnumerable interface0;
};
SelectEnumerable_type* SelectEnumerable_typeof();
void SelectEnumerable__ctor__fn(SelectEnumerable* __this, uObject* source, uDelegate* select);
void SelectEnumerable__GetEnumerator_fn(SelectEnumerable* __this, uObject** __retval);
void SelectEnumerable__New1_fn(uType* __type, uObject* source, uDelegate* select, SelectEnumerable** __retval);
struct SelectEnumerable : uObject
{
uStrong<uDelegate*> _select;
uStrong<uObject*> _source;
void ctor_(uObject* source, uDelegate* select);
uObject* GetEnumerator();
static SelectEnumerable* New1(uType* __type, uObject* source, uDelegate* select);
};
// }
}}} // ::g::Uno::Collections
| [
"Edson Maciel"
] | Edson Maciel |
dcb7708c6fb0462389e8a598e928f9b9aaed1c2b | c1ff870879152fba2b54eddfb7591ec322eb3061 | /plugins/render/ogreRender/3rdParty/ogre/RenderSystems/GL/include/OgreGLRenderToVertexBuffer.h | 368530a6ca4ea95248135df290b6a1a000e9a61c | [
"LicenseRef-scancode-free-unknown",
"MIT"
] | permissive | MTASZTAKI/ApertusVR | 1a9809fb7af81c3cd7fb732ed481ebe4ce66fefa | 424ec5515ae08780542f33cc4841a8f9a96337b3 | refs/heads/0.9 | 2022-12-11T20:03:42.926813 | 2019-10-11T09:29:45 | 2019-10-11T09:29:45 | 73,708,854 | 188 | 55 | MIT | 2022-12-11T08:53:21 | 2016-11-14T13:48:00 | C++ | UTF-8 | C++ | false | false | 2,848 | h | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2016 Torus Knot Software Ltd
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.
-----------------------------------------------------------------------------
*/
#ifndef __GLRenderToVertexBuffer_H__
#define __GLRenderToVertexBuffer_H__
#include "OgreRenderToVertexBuffer.h"
#include "OgreGLPrerequisites.h"
namespace Ogre {
/**
An object which renders geometry to a vertex.
@remarks
This is especially useful together with geometry shaders, as you can
render procedural geometry which will get saved to a vertex buffer for
reuse later, without regenerating it again. You can also create shaders
that run on previous results of those shaders, creating stateful
shaders.
*/
class _OgreGLExport GLRenderToVertexBuffer : public RenderToVertexBuffer
{
public:
/** C'tor */
GLRenderToVertexBuffer();
/** D'tor */
virtual ~GLRenderToVertexBuffer();
/**
Get the render operation for this buffer
*/
virtual void getRenderOperation(RenderOperation& op);
/**
Update the contents of this vertex buffer by rendering
*/
virtual void update(SceneManager* sceneMgr);
protected:
void reallocateBuffer(size_t index);
void bindVerticesOutput(Pass* pass);
GLint getGLSemanticType(VertexElementSemantic semantic);
String getSemanticVaryingName(VertexElementSemantic semantic, unsigned short index);
HardwareVertexBufferSharedPtr mVertexBuffers[2];
size_t mFrontBufferIndex;
GLuint mPrimitivesDrawnQuery;
};
}
#endif
| [
"peter.kovacs@sztaki.mta.hu"
] | peter.kovacs@sztaki.mta.hu |
b54b3b2de9f1ad77307b1444c307151849c325cd | 269a76eb2ed932374b60cc83b3403208449cb44a | /DS_Queue/stdafx.cpp | 192e2a3c544cfdc4b726da50d8c2142ac2cae4f7 | [] | no_license | adad122/AlgorithmDesign | f515ea2dfa06ba14ea9805894786ca603fb3d567 | 1b5396f348ec46aa7f54d4a8187e120dc62f7fcc | refs/heads/master | 2020-05-22T12:31:40.241330 | 2019-06-03T09:18:28 | 2019-06-03T09:18:28 | 186,341,607 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 259 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// DS_Queue.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中引用任何所需的附加头文件,
//而不是在此文件中引用
| [
"603970489@qq.com"
] | 603970489@qq.com |
8ce170fc28053f086f4a1067d8adb8c7cb6befac | 6fd4564eea09aa91c1c9f60fdddece7e3d2e1cd5 | /previous Practiced/auto_for.cpp | 295b8534134000c837dd14cbdb0006d1dc012370 | [] | no_license | itechsubhan/data-structures | 61783cc8440307dd9c89f17cfc32f8bf6ba32eb6 | e64b2fd483099077f8468a9983d7431689e81371 | refs/heads/master | 2023-09-03T02:45:19.372706 | 2021-11-19T11:59:44 | 2021-11-19T11:59:44 | 429,775,143 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 407 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int a[] = {1,5,16,18,20,0,3};
// range based loo[p]
for (int &x : a)
{
x++;
cout<<x<<" ";
}
cout<< endl;
// we can use various types of data but with auto it actually determines the data type
for(auto x: a)
{
cout<<x<<" ";
}
}
*max_element(arr, arr+n);
*min_element(arr , arr + n); | [
"subhanitech63@gmail.com"
] | subhanitech63@gmail.com |
bc3bef2b7339313518b4eb27f985875936268d7e | 8488bc5395d8fc01a1d21ecd732ac30da7dd0ba6 | /ToonTanks/Source/ToonTanks/Pawn/PawnTank.h | ea0f5c861f50ee98bd55f7c38e5ce78fad03a9df | [] | no_license | mmuro10/ToonTanks | d1a39e85483ebd7179823e9c4b56cb07f4d5abd6 | d783a8d194c8bb394115e77ac473fc01ce1d1f4a | refs/heads/main | 2023-01-30T20:31:26.873651 | 2020-12-13T23:48:11 | 2020-12-13T23:48:11 | 319,543,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,522 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "PawnBase.h"
#include "PawnTank.generated.h"
class USpringArmComponent;
class UCameraComponent;
/**
*
*/
UCLASS()
class TOONTANKS_API APawnTank : public APawnBase
{
GENERATED_BODY()
private:
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Components", meta = (AllowPrivateAccess = "True"))
USpringArmComponent* SpringArm;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Components", meta = (AllowPrivateAccess = "True"))
UCameraComponent* Camera;
FVector MoveDirection;
FQuat RotationDirection;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Movement", meta = (AllowPrivateAccess = "True"));
float MoveSpeed = 500.0f;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Movement", meta = (AllowPrivateAccess = "True"));
float RotateSpeed = 250.0f;
APlayerController* PlayerControllerRef;
bool bIsPlayerAlive = true;
void CalculateMoveInput(float Value);
void CalculateRotateInput(float Value);
void Move();
void Rotate();
public:
APawnTank();
// Called every frame
virtual void Tick(float DeltaTime) override;
// Called to bind functionality to input
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
virtual void HandleDestruction() override;
bool bGetIsPlayerAlive();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
};
| [
"mmuro010@gmail.com"
] | mmuro010@gmail.com |
f4a4477a0fbd264f9d68c337d1f9a5106fc8dca7 | 20c562e743d58793cc80d95cdbf898acd8b4f41b | /Heap/Heap.h | 0b31c5a3a94a8943020fbc2792268c7dbea60ee1 | [] | no_license | iqbalyarkhan/code-examples | 32d6362ec484e6bc1aef0bd0191cd5d7f24294fe | 13a2092d4339a3fdcf205cb8344474e9177f4b03 | refs/heads/master | 2020-12-21T09:50:26.080112 | 2020-04-25T23:45:19 | 2020-04-25T23:45:19 | 236,391,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,463 | h | //
// Heap.h
// Test_UVA
//
// Created by Iqbal Khan on 2/10/20.
// Copyright © 2020 Iqbal Khan. All rights reserved.
//
#ifndef Heap_h
#define Heap_h
#include <iostream>
#include <stdio.h>
#include <string>
#include <vector>
using namespace std;
template <typename T>
class Heap{
private:
vector<T> heapArr;
void trickleUp(T item);
void trickleDown(T item);
public:
void Insert(T item);
T GetMax();
void Print();
Heap();
};
template <typename T>
void Heap<T>::Print(){
for (auto it : heapArr)
cout << it << " ";
cout << endl;
}
template <typename T>
void Heap<T>::trickleDown(T item){
//Trickle down will always begin from root,
//so we'll always assume that the index is 0
//for the item to be trickled down.
int currIndex = 0;
int arraySize = int(heapArr.size()) - 1;
while (true){
T leftChildIndex = (currIndex * 2) + 1;
T rightChildIndex = (currIndex * 2) + 2;
if (leftChildIndex <= arraySize && rightChildIndex <= arraySize){
//We have both, a left and a right child
if (heapArr[leftChildIndex] > heapArr[currIndex] && heapArr[leftChildIndex] > heapArr[rightChildIndex]){
//Left child is greater than curr AND is also greater than right child
//Swap curr with left child
T temp = heapArr[leftChildIndex];
heapArr[leftChildIndex] = heapArr[currIndex];
heapArr[currIndex] = temp;
currIndex = leftChildIndex;
} else if (heapArr[rightChildIndex] > heapArr[currIndex] && heapArr[rightChildIndex] > heapArr[leftChildIndex]){
//Right child is greater than curr AND is also greater than left child
//Swap curr with right child
T temp = heapArr[rightChildIndex];
heapArr[rightChildIndex] = heapArr[currIndex];
heapArr[currIndex] = temp;
currIndex = rightChildIndex;
}
} else if (leftChildIndex <= arraySize && heapArr[leftChildIndex] > heapArr[currIndex]){
//Only left child exists and this left child
//is greater than the element we're swapping
T temp = heapArr[leftChildIndex];
heapArr[leftChildIndex] = heapArr[currIndex];
heapArr[currIndex] = temp;
currIndex = leftChildIndex;
} else if (rightChildIndex <= arraySize && heapArr[rightChildIndex] > heapArr[currIndex]){
//Only right child exists and this right child
//is greater than the element we're swapping
T temp = heapArr[rightChildIndex];
heapArr[rightChildIndex] = heapArr[currIndex];
heapArr[currIndex] = temp;
currIndex = rightChildIndex;
} else {
//We've found the correct spot,
//we can exit
return;
}
}
}
template <typename T>
T Heap<T>::GetMax(){
T max = heapArr[0];
int replacement = int(heapArr.size() - 1);
heapArr[0] = heapArr[replacement];
heapArr.erase(heapArr.end() - 1);
if (int(heapArr.size()) != 1)
trickleDown(heapArr[0]);
return max;
}
template <typename T>
void Heap<T>::trickleUp(T item){
//Trickle up will always start at
//the last index and will work its
//way up the array
int curr = int(heapArr.size() - 1);
while (curr != 0){
//Get parent index
int parent = ((curr - 1) / 2);
if (heapArr[parent] < heapArr[curr]){
//Parent was less than newly added node
//Move up the newly added node and re-check
T temp = heapArr[parent];
heapArr[parent] = heapArr[curr];
heapArr[curr] = temp;
curr = parent;
} else {
//Parent was not > child,
//we're done
break;
}
}
cout << "Heap after inserting " << item << endl;
for (auto item : heapArr){
cout << item << " ";
}
cout << endl;
}
template <typename T>
void Heap<T>::Insert(T item){
if (int(heapArr.size()) == 0){
//Empty array, just push
//new item
heapArr.push_back(item);
} else{
//Array not empty, push to end
//and call helper function
heapArr.push_back(item);
trickleUp(item);
}
}
template <typename T>
Heap<T>::Heap(){
}
#endif /* Heap_h */
| [
"iqbal.khan@utdallas.edu"
] | iqbal.khan@utdallas.edu |
dfb6eaff5d47c70d08cf011fa9bbc8710575ffe6 | 71e1c30c4a120078e4a80d3617a34e0f1cf00a41 | /Scratch/LowLevelGraphics/VulkanSample/AeVulkanLib/ae/gfx_low/CommandBufferState.hpp | 237a93f65a96ab0746dc23cfdfc4b2f9201ef42f | [] | no_license | hoboaki/engineplan | 26d7c1296670cc4c6bc875b175c1aff4857c9e8d | 79e5a2e75540aebb00eaae3da6cdc04067207d19 | refs/heads/main/master | 2023-08-16T20:29:18.927297 | 2023-08-14T01:01:37 | 2023-08-14T01:01:37 | 100,376,204 | 2 | 0 | null | 2023-08-14T01:01:38 | 2017-08-15T12:43:00 | C++ | UTF-8 | C++ | false | false | 420 | hpp | // 文字コード:UTF-8
#pragma once
//------------------------------------------------------------------------------
namespace ae::gfx_low {
/// CommandBuffer の状態を表す列挙値。
enum class CommandBufferState
{
/// 初期状態。
Initial,
/// 記録中の状態。
Recording,
/// 記録が完了している状態。
Recorded,
TERM,
};
} // namespace ae::gfx_low
// EOF
| [
"hoboaki@10106.net"
] | hoboaki@10106.net |
e8f1bf1e706124e22e910fa77fb2bda2d7f12922 | e70e5a71e67a5b87bd5c2e508e7ec400f4ae7bd0 | /cpp/leap/leap.cpp | 948cf76f6f47a8e5aaf0b35e4726ce8baccb56c2 | [
"MIT",
"CC-BY-SA-3.0"
] | permissive | jca/exercism | 72b152d42fc54a840b7486ed641a1fe276ecd0f0 | ae420f38529644fe60d2b3d764766499e7ece8b6 | refs/heads/main | 2023-01-13T02:20:54.570962 | 2020-12-03T09:29:17 | 2020-12-03T09:29:17 | 247,668,241 | 0 | 0 | MIT | 2023-01-06T14:51:50 | 2020-03-16T10:03:16 | C++ | UTF-8 | C++ | false | false | 167 | cpp | #include "leap.h"
namespace leap {
bool is_leap_year(int year) {
return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
}
} // namespace leap
| [
"jc@webelop.net"
] | jc@webelop.net |
7cbea65c985b31b5c739f18c2dbbab4d59226119 | e162cc9abe1749fecb9bad6a2228f29018863328 | /src/Gamma.cc | 2a255f7250e9139bc9a527f1e54a4ccca17a20dc | [] | no_license | alourei/VANDLEsim | 1bcb3206dfad7de2e9f20e79ea0d6b586dc3f981 | 280649e67bae151366a5d259b649e081d4b79907 | refs/heads/master | 2021-08-30T16:35:39.401887 | 2017-09-11T14:02:54 | 2017-09-11T14:02:54 | 114,669,186 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,814 | cc | /*
* File: Gamma.cpp
* Author: aleksandra
*
* Created on 5 maj 2012, 16:43
*/
#include "Gamma.hh"
#include "Decay.hh"
#include "Exception.hh"
#include "globals.hh"
#include "G4AtomicShells.hh"
#include "Randomize.hh"
#include "G4ParticleTable.hh"
#include "G4SystemOfUnits.hh"
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <iostream>
Gamma::Gamma(int atomicNumber, double energy, double gammaIntensity,
double cumulatedElectronConversionCoefficient, Level* finalLevel):
atomicNumber_(atomicNumber), energy_(energy), gammaIntensity_(gammaIntensity),
cumulatedElectronConversionCoefficient_(cumulatedElectronConversionCoefficient), finalLevel_(finalLevel)
{
atomicTransitionManager_ = G4AtomicTransitionManager::Instance();
InitializeShellNumbers();
}
Gamma::~Gamma()
{
}
/*
numbers are taken from geant documentation
K - shell nr = 0
L - shell nr = 1
M - shell nr = 4
N - shell nr = 9
*/
void Gamma::InitializeShellNumbers()
{
shellNumbers_[0] = 0;
shellNumbers_[1] = 1;
shellNumbers_[2] = 4;
shellNumbers_[3] = 9;
}
std::vector<Event> Gamma::FindGammaEvents()
{
std::vector<Event> gammaDecay;
if(IsGammaDecay())
{
AddGammaEvent(gammaDecay, energy_);
return gammaDecay;
}
else //IC
{
FindICEvent(gammaDecay);
}
return gammaDecay;
}
void Gamma::FindICEvent(std::vector<Event> &gammaDecay)
{
int primaryShellIndex = FindPrimaryShellIndex();
int primaryVacancies = shellNumbers_[primaryShellIndex];
if(!IsRadiativeTransitionReachableShell(primaryVacancies))
if(!IsAugerReachableShell(primaryVacancies))
return FindICEvent(gammaDecay);
if(IsRadiativeTransitionReachableShell(primaryVacancies))
{
if(IsAugerReachableShell(primaryVacancies))
{
double totalRadTransitProb = atomicTransitionManager_->
TotalRadiativeTransitionProbability(atomicNumber_, primaryVacancies);
if(G4UniformRand()<totalRadTransitProb)
AddXRaysEvent(gammaDecay, primaryVacancies);
else
AddAugerEvent(gammaDecay, primaryVacancies);
}
else
{
AddXRaysEvent(gammaDecay, primaryVacancies);
}
}
else //if(IsAugerReachableShell(primaryVacancies))
{
AddAugerEvent(gammaDecay, primaryVacancies);
cout << "!(IsRadiativeTransitionReachableShell(primaryVacancies))" << endl;
}
double primaryBindingEnergy =
G4AtomicShells::GetBindingEnergy(atomicNumber_, primaryVacancies) / keV;
AddElectronEvent(gammaDecay, energy_-primaryBindingEnergy);
}
int Gamma::FindPrimaryShellIndex()
{
double randomNumber = G4UniformRand()* shellElectonConvCoeff_[3];
if(randomNumber<=shellElectonConvCoeff_[0])//K - shell nr = 0
return 0;
for(int i=1; i<nuberOfShellIndexes_; i++)
{
if(randomNumber > shellElectonConvCoeff_[i-1] && randomNumber <= shellElectonConvCoeff_[i])
return i;
}
}
bool Gamma::IsRadiativeTransitionReachableShell(int shellIndex)
{
int numverOfRadiativeTransReachableShells =
atomicTransitionManager_->NumberOfReachableShells(atomicNumber_);
if(shellIndex > numverOfRadiativeTransReachableShells)
return false;
else
return true;
}
bool Gamma::IsAugerReachableShell(int shellIndex)
{
int numverOfAugerReachableShells =
atomicTransitionManager_->NumberOfReachableAugerShells(atomicNumber_);
if(shellIndex > numverOfAugerReachableShells)
return false;
else
return true;
}
void Gamma::AddGammaEvent(std::vector<Event> &decay, double energy)
{
decay.push_back(Event(energy, 0., G4ParticleTable::GetParticleTable()->FindParticle("gamma")));
}
void Gamma::AddElectronEvent(std::vector<Event> &decay, double energy)
{
decay.push_back(Event(energy, 0., G4ParticleTable::GetParticleTable()->FindParticle("e-")));
}
void Gamma::AddXRaysEvent(std::vector<Event> &decay, int primaryVacancies)
{
const G4FluoTransition* fluoTrans = atomicTransitionManager_->
ReachableShell(atomicNumber_, primaryVacancies);
const G4DataVector transEnergies = fluoTrans -> TransitionEnergies();
const G4DataVector transProb = fluoTrans -> TransitionProbabilities();
int xRayIndex = FindRandomIndex(transProb);
AddGammaEvent(decay, transEnergies.at(xRayIndex)/keV);
}
void Gamma::AddAugerEvent(std::vector<Event> &decay, int primaryVacancies)
{
const G4AugerTransition * augerTrans = atomicTransitionManager_->
ReachableAugerShell(atomicNumber_, primaryVacancies);
//shell from where electron can fill the vacancy
const vector<G4int> augerPossibilities = *(augerTrans->TransitionOriginatingShellIds());
G4DataVector totAugerTransFromShell;
for(unsigned int i=0; i<augerPossibilities.size(); i++)
{
const G4DataVector augerTransProb =
*(augerTrans -> AugerTransitionProbabilities(augerPossibilities.at(i)));
double sumProbAugerTrans(0.);
for(unsigned int j=0; j<augerTransProb.size(); j++)
sumProbAugerTrans += augerTransProb.at(j);
totAugerTransFromShell.push_back(sumProbAugerTrans);
}
int index = FindRandomIndex(totAugerTransFromShell);
//electron from augerPossibilities.at(index) will fill the vacancy
int electronShellId = augerPossibilities.at(index);
const G4DataVector augerTransProb = *(augerTrans -> AugerTransitionProbabilities(electronShellId));
const G4DataVector augerTransEnergy = *(augerTrans -> AugerTransitionEnergies(electronShellId));
int augerIndex = FindRandomIndex(augerTransProb);
AddElectronEvent(decay, augerTransEnergy.at(augerIndex)/keV);
}
void Gamma::SetShellElectronConvCoef(std::string type, double value)
{
CatSpaces(type);
if(type == "KC" || type == "KC+" )
for(int i=0; i<nuberOfShellIndexes_; i++)
shellElectonConvCoeff_[i] +=value;
else if (type == "LC" || type == "LC+" )
for(int i=1; i<nuberOfShellIndexes_; i++)
shellElectonConvCoeff_[i] +=value;
else if (type == "MC" || type == "MC+" )
for(int i=2; i<nuberOfShellIndexes_; i++)
shellElectonConvCoeff_[i] +=value;
else
shellElectonConvCoeff_[3] +=value;
}
void Gamma::CatSpaces(std::string &word)
{
size_t spaceIndex;
while (true)
{
spaceIndex = word.find(" ");
if (spaceIndex != std::string::npos)
{
word.erase(int(spaceIndex), 1);
}
else
break;
}
}
bool Gamma::IsGammaDecay()
{
double randomNumber = (double)rand()/(double)RAND_MAX * gammaIntensity_
*(1+cumulatedElectronConversionCoefficient_);
if(randomNumber > gammaIntensity_*cumulatedElectronConversionCoefficient_ )
return true;
return false;
}
int Gamma::FindRandomIndex( const G4DataVector transProb)
{
double sumProb (0.);
G4DataVector transProbSum;
for (unsigned int i=0; i<transProb.size(); i++)
{
sumProb += transProb.at(i);
transProbSum.push_back(sumProb);
}
double randomNumber = G4UniformRand()*sumProb;
int index(-1);
for (unsigned int i=0; i<transProb.size(); i++)
{
if(randomNumber < transProbSum.at(i))
{
index = i;
break;
}
}
return index;
}
| [
"aleksandra.kuzniak@gmail.com"
] | aleksandra.kuzniak@gmail.com |
659973ec3b8d152f455ac7005f36ba31a7369ee1 | 84897b6a25f876b21246c2c7e1404c9c411be987 | /src/include/compress/ppmd/RCPPMDCoderInfo.h | a69de792f4c1f8ac58005d2489d5154a1f2ad4dc | [] | no_license | drivestudy/HaoZip | 07718a53e38bc5893477575ddf3fccfb3b18c5fd | 9e0564b4a11870224543357004653b798fd625e0 | refs/heads/master | 2021-07-24T06:33:24.651453 | 2017-11-05T01:19:18 | 2017-11-05T01:19:18 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,836 | h | /********************************************************************************
* 版权所有(C)2008,2009,2010,好压软件工作室,保留所有权利。 *
********************************************************************************
* 作者 : HaoZip *
* 版本 : 1.7 *
* 联系方式: haozip@gmail.com *
* 官方网站: www.haozip.com *
********************************************************************************/
#ifndef __RCPPMDCoderInfo_h_
#define __RCPPMDCoderInfo_h_ 1
#include "common/RCCodecInfoBase.h"
BEGIN_NAMESPACE_RCZIP
/** PPMD 编解码器
*/
class RCPPMDCoderInfo:
public RCCodecInfoBase
{
public:
/** 默认构造函数
*/
RCPPMDCoderInfo() ;
/** 默认析构函数
*/
~RCPPMDCoderInfo() ;
public:
/** 获取创建解码器的函数
@return 返回解码器创建函数
*/
virtual PFNCreateCodec GetCreateDecoderFunc(void) const ;
/** 获取解码器的接口ID, 为IID_ICompressCoder or IID_ICompressCoder2 or IID_ICompressFilter
@return 返回解码器ID
*/
virtual RC_IID GetDecoderIID(void) const ;
/** 获取创建编码器的函数
@return 返回编码器创建函数
*/
virtual PFNCreateCodec GetCreateEncoderFunc(void) const ;
/** 获取编码器的接口ID
@return 返回编码器ID
*/
virtual RC_IID GetEncoderIID(void) const ;
/** 获取编码ID
@return 返回编码ID
*/
virtual RCMethodID GetMethodID(void) const ;
/** 获取编码名称
@return 返回编码名称
*/
virtual RCString GetMethodName(void) const ;
/** 获取InStream的个数
@return 返回输入流个数
*/
virtual uint32_t GetNumInStreams(void) const ;
/** 获取输出流的个数
@return 返回输入流的个数
*/
virtual uint32_t GetNumOutStreams(void) const ;
/** 是否定义编码器
@return 如果定义编码器返回true,否则返回false
*/
virtual bool IsEncoderAssigned(void) const ;
/** 是否定义解码器
@return 如果定义解码器返回true,否则返回false
*/
virtual bool IsDecoderAssigned(void) const ;
/** 是否为简单编码器
@return 如果只含有一个输入流和一个输出流返回true,否则返回false
*/
virtual bool IsSimpleCodec(void) const ;
/** 获取Filter属性
@return 如果是过滤编码器返回true,否则返回false
*/
virtual bool IsFilter(void) const ;
};
END_NAMESPACE_RCZIP
#endif //__RCPPMDCoderInfo_h_
| [
"zhou_jiafeng@aliyun.com"
] | zhou_jiafeng@aliyun.com |
168cedb067dd03b0ae308deaf7b42c530c1eca80 | 9961b8392644676c72dfe90cf50f16baee8592b0 | /CP3/1.3.3/11547_Automatic_Answer.cpp | 7eefc55446cf2bbdbb8037feea9e7060a9238fd6 | [
"MIT"
] | permissive | phongvcao/CP_Series_Solutions | f34f226b9ed56d1f3d9793243912dc488f723b31 | 90734b0ffb21a43932a179d6d698281a6aefd9cb | refs/heads/master | 2020-11-24T23:57:30.047309 | 2020-01-27T03:07:04 | 2020-01-27T03:07:04 | 228,397,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,397 | cpp | //
// Created by Phong Cao.
//
// uncomment to disable assert()
// #define NDEBUG
#include <cassert>
#include <iostream>
#include <cstdio>
#include <iomanip>
#include <ios>
#include <sstream>
#include <fstream>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <functional>
#include <array>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <list>
#include <forward_list>
#include <deque>
#include <queue>
#include <stack>
#include <iterator>
#include <utility>
#include <algorithm>
#include <memory>
#include <cctype>
#include <stdexcept>
#include <limits>
#include <numeric>
//----< iostream >----------//
using std::cout;
using std::cin;
using std::endl;
using std::ostream;
using std::istream;
//----< cstdio >------------//
using std::printf;
using std::fprintf;
using std::sprintf;
using std::snprintf;
//----< iomanip >-----------//
using std::setprecision;
using std::setw;
//----< ios >---------------//
using std::hex;
using std::dec;
using std::oct;
using std::fixed;
//----< sstream >-----------//
using std::stringstream;
using std::ostringstream;
using std::istringstream;
//----< fstream >-----------//
using std::ofstream;
using std::ifstream;
//----< string >------------//
using std::getline;
using std::string;
using std::to_string;
using std::stoi;
using std::stol;
//----< cmath >-------------//
using std::sqrt;
using std::pow;
using std::log; // log( <arg> )
using std::exp; // e ^ <arg>
using std::abs;
using std::floor; // Round down to nearest integer double
using std::ceil; // Round up to nearest integer double
using std::trunc; // Truncate the fractional part to get the integer part
using std::round; // Round to nearest integer double
//----< cstdlib >-----------//
using std::rand;
using std::srand;
//----< ctime >-------------//
using std::time;
//----< functional >--------//
using std::hash;
using std::greater; // lhs > rhs. Used for MinPQ
using std::less; // lhs < rhs. Used for MaxPQ. Default for priority_queue<>
using std::less_equal;
using std::greater_equal;
//----< array >-------------//
using std::array; // Fixed & Unordered Array
//----< vector >------------//
using std::vector; // Resizable & Unordered Array
//----< map >---------------//
using std::map; // Ordered Map (Red-Black Tree)
//----< unordered_map >-----//
using std::unordered_map; // HashMap (SeparateChainingHashST)
//----< set >---------------//
using std::set; // Ordered Set (Red-Black Tree)
//----< unordered_set >-----//
using std::unordered_set; // HashSet (SeparateChainingHashST)
//----< list >--------------//
using std::list; // Doubly-Linked List with size() ( O( 1 ) )
//----< forward_list >------//
using std::forward_list; // Singly-Linked List without size() function ( so O( N ) if we need to get size() )
//----< deque >-------------//
using std::deque; // Vector of fixed-size Vectors: 1 fixed-size vector for each end of the deque
//----< queue >-------------//
using std::queue; // Non-Iterable & Use std::deque as underlying data structure
using std::priority_queue; // MaxPQ (MaxHeap) & Non-Iterable.
// // => Pass std::greater<> as template params to create MinPQ (MinHeap)
//----< stack >-------------//
using std::stack; // Non-Iterable & Use std::deque as underlying data structure
//----< iterator >----------//
using std::next; // Return an advanced iter without changing original iter
using std::prev; // Return an decremented iter without changing original iter
using std::distance; // Calculate distance between 2 iterators
//----< utility >-----------//
using std::pair;
using std::make_pair;
using std::move; // Move resources between objects - typically used with std::unique_ptr<T>
//----< algorithm >---------//
using std::fill;
using std::max;
using std::min;
using std::find;
using std::reverse;
using std::sort;
using std::remove;
//----< memory >------------//
// using std::make_unique;
using std::unique_ptr;
using std::make_shared;
using std::shared_ptr;
using std::weak_ptr;
//----< cctype >------------//
using std::isalnum;
using std::isalpha;
using std::islower;
using std::isupper;
using std::isdigit;
using std::isspace; // Check whether char is whitespace character (space, newline, tab, etc. )
using std::isblank; // Check whether char is blank character ( space or tab )
using std::tolower;
using std::toupper;
//----< stdexcept >---------//
using std::runtime_error;
using std::invalid_argument;
using std::out_of_range;
//----< limits >------------//
using std::numeric_limits;
//----< numeric >-----------//
using std::iota;
// using std::gcd;
// using std::lcm;
//--------------------------//
int main( int argc, char ** argv ) {
string line = "";
int t = 0;
if ( getline( cin, line ) ) {
stringstream ss( line );
ss >> t;
}
for ( int i = 0; i < t; i++ ) {
if ( getline( cin, line ) ) {
stringstream ss( line );
int n = 0;
ss >> n;
cout << abs( ( ( ( ( n * 567 / 9 + 7492 ) * 235 / 47 - 498 ) / 10 ) % 10 ) ) << endl;
}
}
return 0;
}
| [
"phongvcao@phongvcao.com"
] | phongvcao@phongvcao.com |
2dfd0d64a95e9f172e207bf9005da72589cb6cd4 | d84b00ef1177af72932662cbbb1d1ab95c7e288c | /src/zpic/zpictracker.h | 9fd0bfd5d33b4967182bb6d4f4499034f4a87d55 | [
"MIT"
] | permissive | N1ppa69/Picture-ex-core | 86a0f7b48a960aee4a4eb26fa4c41c0c100c62e4 | c2beb62086f6459dc8a8cdaddb5dd677eae027e1 | refs/heads/master | 2020-12-06T09:58:42.780975 | 2019-12-25T11:20:55 | 2019-12-26T11:55:06 | 232,430,287 | 1 | 0 | MIT | 2020-01-07T22:35:33 | 2020-01-07T22:35:32 | null | UTF-8 | C++ | false | false | 2,580 | h | // Copyright (c) 2018 The pictureex developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef pictureex_zpicTRACKER_H
#define pictureex_zpicTRACKER_H
#include "zerocoin.h"
#include "witness.h"
#include "sync.h"
#include <list>
class CDeterministicMint;
class CzpicWallet;
class CzpicTracker
{
private:
bool fInitialized;
std::string strWalletFile;
std::map<uint256, CMintMeta> mapSerialHashes;
std::map<uint256, uint256> mapPendingSpends; //serialhash, txid of spend
std::map<uint256, std::unique_ptr<CoinWitnessData> > mapStakeCache; //serialhash, witness value, height
bool UpdateStatusInternal(const std::set<uint256>& setMempool, CMintMeta& mint);
public:
CzpicTracker(std::string strWalletFile);
~CzpicTracker();
void Add(const CDeterministicMint& dMint, bool isNew = false, bool isArchived = false, CzpicWallet* zpicWallet = NULL);
void Add(const CZerocoinMint& mint, bool isNew = false, bool isArchived = false);
bool Archive(CMintMeta& meta);
bool HasPubcoin(const CBigNum& bnValue) const;
bool HasPubcoinHash(const uint256& hashPubcoin) const;
bool HasSerial(const CBigNum& bnSerial) const;
bool HasSerialHash(const uint256& hashSerial) const;
bool HasMintTx(const uint256& txid);
bool IsEmpty() const { return mapSerialHashes.empty(); }
void Init();
CMintMeta Get(const uint256& hashSerial);
CMintMeta GetMetaFromPubcoin(const uint256& hashPubcoin);
bool GetMetaFromStakeHash(const uint256& hashStake, CMintMeta& meta) const;
CAmount GetBalance(bool fConfirmedOnly, bool fUnconfirmedOnly) const;
std::vector<uint256> GetSerialHashes();
mutable CCriticalSection cs_spendcache;
CoinWitnessData* GetSpendCache(const uint256& hashStake) EXCLUSIVE_LOCKS_REQUIRED(cs_spendcache);
bool ClearSpendCache() EXCLUSIVE_LOCKS_REQUIRED(cs_spendcache);
std::vector<CMintMeta> GetMints(bool fConfirmedOnly) const;
CAmount GetUnconfirmedBalance() const;
std::set<CMintMeta> ListMints(bool fUnusedOnly, bool fMatureOnly, bool fUpdateStatus, bool fWrongSeed = false);
void RemovePending(const uint256& txid);
void SetPubcoinUsed(const uint256& hashPubcoin, const uint256& txid);
void SetPubcoinNotUsed(const uint256& hashPubcoin);
bool UnArchive(const uint256& hashPubcoin, bool isDeterministic);
bool UpdateZerocoinMint(const CZerocoinMint& mint);
bool UpdateState(const CMintMeta& meta);
void Clear();
};
#endif //pictureex_zpicTRACKER_H
| [
"ultrapoolcom@gmail.com"
] | ultrapoolcom@gmail.com |
ad2ec33f8d6db348261e9bf2ff7534dbca9fbe33 | 7d19b4a9b58f921801dc7edad39ff45f0cd362bb | /cpsc2720/a2/savingsAccount.h | 0438d39b5ca6cdb59314a653666622ed00771c9d | [] | no_license | 00mjk/uleth | 739ed1ce853e12c2406228d9f304dc7ab10c2c6d | 9b9f4566c9790291126ee3f3d1322741a59b5df7 | refs/heads/main | 2023-01-16T02:17:54.467169 | 2020-11-24T22:51:55 | 2020-11-24T22:51:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,544 | h | //**********************************************************************
/// \file
/// \brief Interface file for the SavingsAccount class
///
/// \author Jacob Pledger (using Rex's Solution)
/// \date Nov 6 2009
//**********************************************************************
#ifndef SAVINGS_ACCOUNT_H
#define SAVINGS_ACCOUNT_H
#include <iostream>
using std::istream;
using std::ostream;
#include "account.h"
/// A simple abstract base class to represent a SavingsAccount
class SavingsAccount : public virtual Account
{
public:
/// default constructor
//
/// Create a savings account with the specified interest rate
///
/// \param rate imports the monthly interest rate as a percentage
SavingsAccount(double rate = 0.0) : Account(), interestRate(rate) {}
/// Reads all information for a savings account, from a stream
virtual istream& read(istream& is)throw(input_format_error);
/// Writes all information for a savings account, to a stream
virtual ostream& write(ostream& os) const;
/// Performs updates to the account at the end of the month
virtual void updateMonthEnd();
protected:
/// Reads the information,specific to savings account, from a stream
virtual istream& readExtra(istream& is);
/// Writes the information, specific to a savings account, to a stream
virtual ostream& writeExtra(ostream& os) const;
double interestRate; ///< The monthly interest rate as a percentage
};
#endif
| [
"jacobpledger@Jacobs-MacBook-Pro.local"
] | jacobpledger@Jacobs-MacBook-Pro.local |
88cf3919803d6ac06a0e234458fb8ed1eafe66d4 | 107e11253b23f7e8e88dd8868afd5a35613d6263 | /Wet4/tests/test159.cpp | 733c54a4eb283c14674b120f7458a94c7e3f2369 | [] | no_license | shellyfra/Operating_Systems | b14279debcd83aa593d69238660a387f21fc12f2 | 09f24b718ba5e461408661e91e466e2d3a307ac5 | refs/heads/main | 2023-05-31T10:57:34.816211 | 2021-06-30T07:18:21 | 2021-06-30T07:18:21 | 358,578,903 | 0 | 0 | null | 2021-04-17T15:42:58 | 2021-04-16T11:36:48 | Makefile | UTF-8 | C++ | false | false | 20,382 | cpp | #include "aux_macro.h"
#include "../malloc_4.cpp"
#include <iostream>
void printStats()
{
std::cout << "_num_free_blocks: " << _num_free_blocks() << std::endl;
std::cout << "_num_free_bytes: " << _num_free_bytes() << std::endl;
std::cout << "_num_allocated_blocks: " << _num_allocated_blocks() << std::endl;
std::cout << "_num_allocated_bytes: " << _num_allocated_bytes() << std::endl;
std::cout << "_num_meta_data_bytes: " << _num_meta_data_bytes() << std::endl;
std::cout << "_size_meta_data: " << _size_meta_data() << std::endl;
}
int main()
{
PRINT_POINTER(smalloc(170););
printStats();
void* p0 = last_address;
DEBUG_PRINT(sfree(p0););
printStats();
PRINT_POINTER(smalloc(155););
printStats();
void* p1 = last_address;
DEBUG_PRINT(sfree(p1););
printStats();
PRINT_POINTER(scalloc(4,120););
printStats();
void* p2 = last_address;
DEBUG_PRINT(sfree(p2););
printStats();
PRINT_POINTER(smalloc(159););
printStats();
void* p3 = last_address;
PRINT_POINTER(smalloc(188););
printStats();
void* p4 = last_address;
PRINT_POINTER(scalloc(104,236););
printStats();
void* p5 = last_address;
PRINT_POINTER(srealloc(p3,230););
printStats();
void* p6 = last_address;
PRINT_POINTER(srealloc(p4,194););
printStats();
void* p7 = last_address;
PRINT_POINTER(scalloc(187,248););
printStats();
void* p8 = last_address;
PRINT_POINTER(smalloc(45););
printStats();
void* p9 = last_address;
PRINT_POINTER(srealloc(p9,230););
printStats();
void* p10 = last_address;
PRINT_POINTER(scalloc(57,238););
printStats();
void* p11 = last_address;
PRINT_POINTER(srealloc(p8,124););
printStats();
void* p12 = last_address;
DEBUG_PRINT(sfree(p6););
printStats();
DEBUG_PRINT(sfree(p12););
printStats();
PRINT_POINTER(srealloc(p5,89););
printStats();
void* p13 = last_address;
PRINT_POINTER(srealloc(p11,151););
printStats();
void* p14 = last_address;
PRINT_POINTER(smalloc(11););
printStats();
void* p15 = last_address;
DEBUG_PRINT(sfree(p13););
printStats();
PRINT_POINTER(scalloc(53,190););
printStats();
void* p16 = last_address;
PRINT_POINTER(scalloc(14,170););
printStats();
void* p17 = last_address;
PRINT_POINTER(scalloc(35,27););
printStats();
void* p18 = last_address;
PRINT_POINTER(scalloc(208,197););
printStats();
void* p19 = last_address;
PRINT_POINTER(smalloc(2););
printStats();
void* p20 = last_address;
PRINT_POINTER(srealloc(p15,67););
printStats();
void* p21 = last_address;
PRINT_POINTER(smalloc(184););
printStats();
void* p22 = last_address;
DEBUG_PRINT(sfree(p10););
printStats();
PRINT_POINTER(scalloc(31,23););
printStats();
void* p23 = last_address;
PRINT_POINTER(smalloc(223););
printStats();
void* p24 = last_address;
PRINT_POINTER(scalloc(151,50););
printStats();
void* p25 = last_address;
PRINT_POINTER(scalloc(26,33););
printStats();
void* p26 = last_address;
DEBUG_PRINT(sfree(p17););
printStats();
PRINT_POINTER(scalloc(64,117););
printStats();
void* p27 = last_address;
PRINT_POINTER(srealloc(p22,220););
printStats();
void* p28 = last_address;
PRINT_POINTER(smalloc(152););
printStats();
void* p29 = last_address;
PRINT_POINTER(smalloc(111););
printStats();
void* p30 = last_address;
DEBUG_PRINT(sfree(p28););
printStats();
DEBUG_PRINT(sfree(p19););
printStats();
PRINT_POINTER(smalloc(35););
printStats();
void* p31 = last_address;
PRINT_POINTER(scalloc(228,77););
printStats();
void* p32 = last_address;
DEBUG_PRINT(sfree(p21););
printStats();
PRINT_POINTER(smalloc(22););
printStats();
void* p33 = last_address;
PRINT_POINTER(srealloc(p20,40););
printStats();
void* p34 = last_address;
PRINT_POINTER(scalloc(179,234););
printStats();
void* p35 = last_address;
PRINT_POINTER(srealloc(p24,175););
printStats();
void* p36 = last_address;
DEBUG_PRINT(sfree(p35););
printStats();
PRINT_POINTER(srealloc(p23,234););
printStats();
void* p37 = last_address;
PRINT_POINTER(srealloc(p29,214););
printStats();
void* p38 = last_address;
PRINT_POINTER(srealloc(p31,51););
printStats();
void* p39 = last_address;
PRINT_POINTER(srealloc(p14,52););
printStats();
void* p40 = last_address;
DEBUG_PRINT(sfree(p16););
printStats();
PRINT_POINTER(scalloc(15,12););
printStats();
void* p41 = last_address;
PRINT_POINTER(smalloc(206););
printStats();
void* p42 = last_address;
PRINT_POINTER(smalloc(221););
printStats();
void* p43 = last_address;
PRINT_POINTER(scalloc(42,200););
printStats();
void* p44 = last_address;
PRINT_POINTER(scalloc(109,155););
printStats();
void* p45 = last_address;
PRINT_POINTER(scalloc(167,113););
printStats();
void* p46 = last_address;
PRINT_POINTER(smalloc(72););
printStats();
void* p47 = last_address;
DEBUG_PRINT(sfree(p7););
printStats();
DEBUG_PRINT(sfree(p43););
printStats();
PRINT_POINTER(smalloc(180););
printStats();
void* p48 = last_address;
PRINT_POINTER(scalloc(113,27););
printStats();
void* p49 = last_address;
DEBUG_PRINT(sfree(p47););
printStats();
PRINT_POINTER(scalloc(140,18););
printStats();
void* p50 = last_address;
PRINT_POINTER(smalloc(47););
printStats();
void* p51 = last_address;
PRINT_POINTER(smalloc(219););
printStats();
void* p52 = last_address;
PRINT_POINTER(srealloc(p27,219););
printStats();
void* p53 = last_address;
DEBUG_PRINT(sfree(p18););
printStats();
PRINT_POINTER(smalloc(37););
printStats();
void* p54 = last_address;
PRINT_POINTER(smalloc(62););
printStats();
void* p55 = last_address;
PRINT_POINTER(smalloc(59););
printStats();
void* p56 = last_address;
PRINT_POINTER(scalloc(229,188););
printStats();
void* p57 = last_address;
PRINT_POINTER(srealloc(p53,68););
printStats();
void* p58 = last_address;
DEBUG_PRINT(sfree(p36););
printStats();
PRINT_POINTER(srealloc(p55,82););
printStats();
void* p59 = last_address;
DEBUG_PRINT(sfree(p40););
printStats();
DEBUG_PRINT(sfree(p30););
printStats();
PRINT_POINTER(srealloc(p52,60););
printStats();
void* p60 = last_address;
PRINT_POINTER(scalloc(53,108););
printStats();
void* p61 = last_address;
PRINT_POINTER(smalloc(197););
printStats();
void* p62 = last_address;
DEBUG_PRINT(sfree(p61););
printStats();
PRINT_POINTER(scalloc(32,6););
printStats();
void* p63 = last_address;
PRINT_POINTER(srealloc(p51,16););
printStats();
void* p64 = last_address;
PRINT_POINTER(scalloc(90,53););
printStats();
void* p65 = last_address;
DEBUG_PRINT(sfree(p62););
printStats();
PRINT_POINTER(smalloc(204););
printStats();
void* p66 = last_address;
PRINT_POINTER(srealloc(p59,82););
printStats();
void* p67 = last_address;
DEBUG_PRINT(sfree(p49););
printStats();
PRINT_POINTER(smalloc(84););
printStats();
void* p68 = last_address;
PRINT_POINTER(scalloc(126,213););
printStats();
void* p69 = last_address;
DEBUG_PRINT(sfree(p54););
printStats();
PRINT_POINTER(scalloc(223,238););
printStats();
void* p70 = last_address;
DEBUG_PRINT(sfree(p65););
printStats();
PRINT_POINTER(smalloc(31););
printStats();
void* p71 = last_address;
DEBUG_PRINT(sfree(p58););
printStats();
PRINT_POINTER(scalloc(35,216););
printStats();
void* p72 = last_address;
PRINT_POINTER(srealloc(p26,198););
printStats();
void* p73 = last_address;
DEBUG_PRINT(sfree(p46););
printStats();
PRINT_POINTER(smalloc(32););
printStats();
void* p74 = last_address;
PRINT_POINTER(smalloc(108););
printStats();
void* p75 = last_address;
DEBUG_PRINT(sfree(p57););
printStats();
PRINT_POINTER(scalloc(220,123););
printStats();
void* p76 = last_address;
PRINT_POINTER(srealloc(p70,111););
printStats();
void* p77 = last_address;
PRINT_POINTER(srealloc(p75,69););
printStats();
void* p78 = last_address;
PRINT_POINTER(smalloc(28););
printStats();
void* p79 = last_address;
PRINT_POINTER(scalloc(42,130););
printStats();
void* p80 = last_address;
PRINT_POINTER(srealloc(p50,190););
printStats();
void* p81 = last_address;
PRINT_POINTER(srealloc(p37,39););
printStats();
void* p82 = last_address;
PRINT_POINTER(scalloc(164,115););
printStats();
void* p83 = last_address;
PRINT_POINTER(scalloc(126,55););
printStats();
void* p84 = last_address;
PRINT_POINTER(scalloc(244,87););
printStats();
void* p85 = last_address;
PRINT_POINTER(srealloc(p74,36););
printStats();
void* p86 = last_address;
PRINT_POINTER(scalloc(98,113););
printStats();
void* p87 = last_address;
DEBUG_PRINT(sfree(p48););
printStats();
PRINT_POINTER(scalloc(88,131););
printStats();
void* p88 = last_address;
PRINT_POINTER(smalloc(125););
printStats();
void* p89 = last_address;
DEBUG_PRINT(sfree(p81););
printStats();
PRINT_POINTER(scalloc(195,155););
printStats();
void* p90 = last_address;
PRINT_POINTER(scalloc(223,186););
printStats();
void* p91 = last_address;
PRINT_POINTER(scalloc(124,72););
printStats();
void* p92 = last_address;
DEBUG_PRINT(sfree(p41););
printStats();
DEBUG_PRINT(sfree(p68););
printStats();
PRINT_POINTER(smalloc(43););
printStats();
void* p93 = last_address;
PRINT_POINTER(srealloc(p92,139););
printStats();
void* p94 = last_address;
PRINT_POINTER(srealloc(p77,104););
printStats();
void* p95 = last_address;
DEBUG_PRINT(sfree(p88););
printStats();
DEBUG_PRINT(sfree(p33););
printStats();
PRINT_POINTER(srealloc(p38,94););
printStats();
void* p96 = last_address;
PRINT_POINTER(scalloc(154,8););
printStats();
void* p97 = last_address;
DEBUG_PRINT(sfree(p89););
printStats();
PRINT_POINTER(srealloc(p95,181););
printStats();
void* p98 = last_address;
PRINT_POINTER(srealloc(p42,21););
printStats();
void* p99 = last_address;
PRINT_POINTER(srealloc(p67,46););
printStats();
void* p100 = last_address;
DEBUG_PRINT(sfree(p85););
printStats();
PRINT_POINTER(smalloc(154););
printStats();
void* p101 = last_address;
PRINT_POINTER(srealloc(p56,51););
printStats();
void* p102 = last_address;
DEBUG_PRINT(sfree(p82););
printStats();
PRINT_POINTER(srealloc(p101,76););
printStats();
void* p103 = last_address;
PRINT_POINTER(scalloc(118,243););
printStats();
void* p104 = last_address;
DEBUG_PRINT(sfree(p66););
printStats();
PRINT_POINTER(scalloc(160,247););
printStats();
void* p105 = last_address;
PRINT_POINTER(smalloc(168););
printStats();
void* p106 = last_address;
PRINT_POINTER(srealloc(p72,11););
printStats();
void* p107 = last_address;
PRINT_POINTER(srealloc(p60,112););
printStats();
void* p108 = last_address;
DEBUG_PRINT(sfree(p102););
printStats();
PRINT_POINTER(scalloc(237,51););
printStats();
void* p109 = last_address;
PRINT_POINTER(smalloc(29););
printStats();
void* p110 = last_address;
PRINT_POINTER(smalloc(137););
printStats();
void* p111 = last_address;
PRINT_POINTER(scalloc(2,227););
printStats();
void* p112 = last_address;
PRINT_POINTER(smalloc(145););
printStats();
void* p113 = last_address;
PRINT_POINTER(smalloc(117););
printStats();
void* p114 = last_address;
DEBUG_PRINT(sfree(p90););
printStats();
PRINT_POINTER(scalloc(115,187););
printStats();
void* p115 = last_address;
DEBUG_PRINT(sfree(p110););
printStats();
PRINT_POINTER(srealloc(p114,90););
printStats();
void* p116 = last_address;
PRINT_POINTER(smalloc(45););
printStats();
void* p117 = last_address;
DEBUG_PRINT(sfree(p113););
printStats();
PRINT_POINTER(srealloc(p108,2););
printStats();
void* p118 = last_address;
DEBUG_PRINT(sfree(p111););
printStats();
PRINT_POINTER(srealloc(p39,248););
printStats();
void* p119 = last_address;
PRINT_POINTER(smalloc(28););
printStats();
void* p120 = last_address;
PRINT_POINTER(scalloc(207,74););
printStats();
void* p121 = last_address;
DEBUG_PRINT(sfree(p80););
printStats();
PRINT_POINTER(srealloc(p112,132););
printStats();
void* p122 = last_address;
PRINT_POINTER(srealloc(p76,109););
printStats();
void* p123 = last_address;
PRINT_POINTER(srealloc(p86,179););
printStats();
void* p124 = last_address;
PRINT_POINTER(srealloc(p69,240););
printStats();
void* p125 = last_address;
PRINT_POINTER(srealloc(p125,210););
printStats();
void* p126 = last_address;
PRINT_POINTER(smalloc(233););
printStats();
void* p127 = last_address;
PRINT_POINTER(smalloc(161););
printStats();
void* p128 = last_address;
DEBUG_PRINT(sfree(p71););
printStats();
DEBUG_PRINT(sfree(p96););
printStats();
PRINT_POINTER(srealloc(p87,94););
printStats();
void* p129 = last_address;
DEBUG_PRINT(sfree(p94););
printStats();
PRINT_POINTER(smalloc(26););
printStats();
void* p130 = last_address;
DEBUG_PRINT(sfree(p100););
printStats();
PRINT_POINTER(smalloc(103););
printStats();
void* p131 = last_address;
PRINT_POINTER(smalloc(136););
printStats();
void* p132 = last_address;
PRINT_POINTER(srealloc(p109,159););
printStats();
void* p133 = last_address;
PRINT_POINTER(scalloc(2,114););
printStats();
void* p134 = last_address;
PRINT_POINTER(scalloc(13,160););
printStats();
void* p135 = last_address;
DEBUG_PRINT(sfree(p98););
printStats();
PRINT_POINTER(smalloc(64););
printStats();
void* p136 = last_address;
DEBUG_PRINT(sfree(p104););
printStats();
PRINT_POINTER(srealloc(p121,237););
printStats();
void* p137 = last_address;
PRINT_POINTER(smalloc(206););
printStats();
void* p138 = last_address;
PRINT_POINTER(scalloc(198,71););
printStats();
void* p139 = last_address;
DEBUG_PRINT(sfree(p118););
printStats();
PRINT_POINTER(smalloc(32););
printStats();
void* p140 = last_address;
PRINT_POINTER(srealloc(p131,187););
printStats();
void* p141 = last_address;
DEBUG_PRINT(sfree(p93););
printStats();
DEBUG_PRINT(sfree(p91););
printStats();
PRINT_POINTER(srealloc(p105,146););
printStats();
void* p142 = last_address;
PRINT_POINTER(smalloc(217););
printStats();
void* p143 = last_address;
PRINT_POINTER(srealloc(p126,90););
printStats();
void* p144 = last_address;
PRINT_POINTER(smalloc(139););
printStats();
void* p145 = last_address;
PRINT_POINTER(smalloc(221););
printStats();
void* p146 = last_address;
PRINT_POINTER(smalloc(70););
printStats();
void* p147 = last_address;
PRINT_POINTER(srealloc(p103,200););
printStats();
void* p148 = last_address;
PRINT_POINTER(smalloc(66););
printStats();
void* p149 = last_address;
PRINT_POINTER(scalloc(36,186););
printStats();
void* p150 = last_address;
PRINT_POINTER(scalloc(184,230););
printStats();
void* p151 = last_address;
DEBUG_PRINT(sfree(p107););
printStats();
PRINT_POINTER(srealloc(p99,223););
printStats();
void* p152 = last_address;
DEBUG_PRINT(sfree(p34););
printStats();
PRINT_POINTER(scalloc(240,84););
printStats();
void* p153 = last_address;
PRINT_POINTER(smalloc(4););
printStats();
void* p154 = last_address;
PRINT_POINTER(scalloc(20,106););
printStats();
void* p155 = last_address;
PRINT_POINTER(smalloc(9););
printStats();
void* p156 = last_address;
PRINT_POINTER(srealloc(p143,221););
printStats();
void* p157 = last_address;
PRINT_POINTER(srealloc(p44,211););
printStats();
void* p158 = last_address;
DEBUG_PRINT(sfree(p129););
printStats();
DEBUG_PRINT(sfree(p151););
printStats();
PRINT_POINTER(smalloc(86););
printStats();
void* p159 = last_address;
PRINT_POINTER(smalloc(217););
printStats();
void* p160 = last_address;
PRINT_POINTER(smalloc(211););
printStats();
void* p161 = last_address;
PRINT_POINTER(scalloc(9,98););
printStats();
void* p162 = last_address;
DEBUG_PRINT(sfree(p64););
printStats();
PRINT_POINTER(smalloc(179););
printStats();
void* p163 = last_address;
DEBUG_PRINT(sfree(p142););
printStats();
PRINT_POINTER(smalloc(236););
printStats();
void* p164 = last_address;
PRINT_POINTER(srealloc(p120,84););
printStats();
void* p165 = last_address;
PRINT_POINTER(smalloc(210););
printStats();
void* p166 = last_address;
PRINT_POINTER(smalloc(27););
printStats();
void* p167 = last_address;
PRINT_POINTER(smalloc(138););
printStats();
void* p168 = last_address;
DEBUG_PRINT(sfree(p119););
printStats();
DEBUG_PRINT(sfree(p138););
printStats();
DEBUG_PRINT(sfree(p159););
printStats();
DEBUG_PRINT(sfree(p25););
printStats();
PRINT_POINTER(smalloc(228););
printStats();
void* p169 = last_address;
DEBUG_PRINT(sfree(p137););
printStats();
DEBUG_PRINT(sfree(p97););
printStats();
PRINT_POINTER(smalloc(10););
printStats();
void* p170 = last_address;
PRINT_POINTER(smalloc(70););
printStats();
void* p171 = last_address;
DEBUG_PRINT(sfree(p144););
printStats();
PRINT_POINTER(smalloc(230););
printStats();
void* p172 = last_address;
PRINT_POINTER(smalloc(223););
printStats();
void* p173 = last_address;
DEBUG_PRINT(sfree(p127););
printStats();
PRINT_POINTER(smalloc(152););
printStats();
void* p174 = last_address;
DEBUG_PRINT(sfree(p116););
printStats();
PRINT_POINTER(smalloc(10););
printStats();
void* p175 = last_address;
DEBUG_PRINT(sfree(p149););
printStats();
DEBUG_PRINT(sfree(p175););
printStats();
PRINT_POINTER(scalloc(227,44););
printStats();
void* p176 = last_address;
PRINT_POINTER(scalloc(62,177););
printStats();
void* p177 = last_address;
DEBUG_PRINT(sfree(p162););
printStats();
PRINT_POINTER(scalloc(119,168););
printStats();
void* p178 = last_address;
PRINT_POINTER(smalloc(33););
printStats();
void* p179 = last_address;
DEBUG_PRINT(sfree(p168););
printStats();
DEBUG_PRINT(sfree(p106););
printStats();
PRINT_POINTER(srealloc(p152,233););
printStats();
void* p180 = last_address;
PRINT_POINTER(smalloc(219););
printStats();
void* p181 = last_address;
PRINT_POINTER(srealloc(p146,166););
printStats();
void* p182 = last_address;
PRINT_POINTER(scalloc(43,198););
printStats();
void* p183 = last_address;
DEBUG_PRINT(sfree(p170););
printStats();
PRINT_POINTER(srealloc(p141,44););
printStats();
void* p184 = last_address;
PRINT_POINTER(smalloc(194););
printStats();
void* p185 = last_address;
PRINT_POINTER(smalloc(25););
printStats();
void* p186 = last_address;
PRINT_POINTER(srealloc(p128,74););
printStats();
void* p187 = last_address;
DEBUG_PRINT(sfree(p134););
printStats();
PRINT_POINTER(srealloc(p148,153););
printStats();
void* p188 = last_address;
PRINT_POINTER(smalloc(119););
printStats();
void* p189 = last_address;
DEBUG_PRINT(sfree(p147););
printStats();
PRINT_POINTER(smalloc(221););
printStats();
void* p190 = last_address;
PRINT_POINTER(scalloc(246,14););
printStats();
void* p191 = last_address;
PRINT_POINTER(srealloc(p150,80););
printStats();
void* p192 = last_address;
PRINT_POINTER(srealloc(p167,228););
printStats();
void* p193 = last_address;
PRINT_POINTER(srealloc(p117,239););
printStats();
void* p194 = last_address;
PRINT_POINTER(srealloc(p186,60););
printStats();
void* p195 = last_address;
DEBUG_PRINT(sfree(p191););
printStats();
PRINT_POINTER(smalloc(172););
printStats();
void* p196 = last_address;
DEBUG_PRINT(sfree(p160););
printStats();
PRINT_POINTER(scalloc(61,243););
printStats();
void* p197 = last_address;
DEBUG_PRINT(sfree(p140););
printStats();
PRINT_POINTER(smalloc(212););
printStats();
void* p198 = last_address;
PRINT_POINTER(srealloc(p190,76););
printStats();
void* p199 = last_address;
PRINT_POINTER(scalloc(128,219););
printStats();
void* p200 = last_address;
PRINT_POINTER(scalloc(110,30););
printStats();
void* p201 = last_address;
PRINT_POINTER(scalloc(97,199););
printStats();
void* p202 = last_address;
PRINT_POINTER(scalloc(23,84););
printStats();
void* p203 = last_address;
DEBUG_PRINT(sfree(p189););
printStats();
PRINT_POINTER(scalloc(238,144););
printStats();
void* p204 = last_address;
PRINT_POINTER(scalloc(18,137););
printStats();
void* p205 = last_address;
PRINT_POINTER(srealloc(p184,109););
printStats();
void* p206 = last_address;
PRINT_POINTER(scalloc(249,185););
printStats();
void* p207 = last_address;
PRINT_POINTER(smalloc(201););
printStats();
void* p208 = last_address;
PRINT_POINTER(smalloc(38););
printStats();
void* p209 = last_address;
DEBUG_PRINT(sfree(p207););
printStats();
PRINT_POINTER(smalloc(57););
printStats();
void* p210 = last_address;
DEBUG_PRINT(sfree(p165););
printStats();
PRINT_POINTER(srealloc(p171,200););
printStats();
void* p211 = last_address;
DEBUG_PRINT(sfree(p169););
printStats();
DEBUG_PRINT(sfree(p204););
printStats();
PRINT_POINTER(scalloc(92,236););
printStats();
void* p212 = last_address;
PRINT_POINTER(scalloc(44,149););
printStats();
void* p213 = last_address;
PRINT_POINTER(scalloc(147,119););
printStats();
void* p214 = last_address;
PRINT_POINTER(srealloc(p153,156););
printStats();
void* p215 = last_address;
PRINT_POINTER(srealloc(p78,114););
printStats();
void* p216 = last_address;
PRINT_POINTER(scalloc(175,9););
printStats();
void* p217 = last_address;
PRINT_POINTER(srealloc(p157,160););
printStats();
void* p218 = last_address;
PRINT_POINTER(srealloc(p122,71););
printStats();
void* p219 = last_address;
PRINT_POINTER(srealloc(p45,225););
printStats();
void* p220 = last_address;
PRINT_POINTER(smalloc(23););
printStats();
void* p221 = last_address;
}
| [
"shai444@gmail.com"
] | shai444@gmail.com |
a53f9e1f9e64ee8d99c207a6f789717c56354e19 | a8e4e39b4ee6910870e7e53b0e65f69aa1ba9fa0 | /PinManager/src/AbstractOutputPin.h | 554ceaee420932c5793eec8afa0873563ae9fa21 | [] | no_license | artem0793/copy3 | 0e43ba6e0237ef42fba026c8fa699c141d7ba809 | 19fdf7b13a512cf90307b58778681bffdd816239 | refs/heads/master | 2020-05-05T05:03:56.014855 | 2019-04-14T19:36:42 | 2019-04-14T19:36:42 | 179,736,916 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 366 | h | #ifndef ABSTRACT_OUTPUT_PIN_H
#define ABSTRACT_OUTPUT_PIN_H
#include <BaseObject.h>
class AbstractOutputPin: public BaseObject {
protected:
unsigned int id;
unsigned int value;
public:
AbstractOutputPin(unsigned int id);
~AbstractOutputPin();
virtual void setValue(unsigned int new_value);
unsigned int getValue();
};
#endif
| [
"avilkov@adyax.com"
] | avilkov@adyax.com |
9efda39ceeffd13236282eb64a119b114e0fdf3b | 16c25858ef1e5f29f653580d4aacda69a50c3244 | /hikr/build/iOS/Preview/include/Uno.Net.Http.HttpMessageHandler.h | 0783aee9ce053dfbdf447261728dad662ec85a4f | [] | no_license | PoliGomes/tutorialfuse | 69c32ff34ba9236bc3e84e99e00eb116d6f16422 | 0b7fadfe857fed568a5c2899d176acf45249d2b8 | refs/heads/master | 2021-08-16T02:50:08.993542 | 2017-11-18T22:04:56 | 2017-11-18T22:04:56 | 111,242,469 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,053 | h | // This file was generated based on /usr/local/share/uno/Packages/Uno.Net.Http/1.2.2/$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.IDisposable.h>
#include <Uno.Object.h>
namespace g{namespace Uno{namespace Collections{struct List;}}}
namespace g{namespace Uno{namespace Net{namespace Http{struct HttpMessageHandler;}}}}
namespace g{namespace Uno{namespace Net{namespace Http{struct HttpMessageHandlerRequest;}}}}
namespace g{
namespace Uno{
namespace Net{
namespace Http{
// public sealed class HttpMessageHandler :93
// {
struct HttpMessageHandler_type : uType
{
::g::Uno::IDisposable interface0;
};
HttpMessageHandler_type* HttpMessageHandler_typeof();
void HttpMessageHandler__ctor__fn(HttpMessageHandler* __this);
void HttpMessageHandler__AbortPendingRequests_fn(HttpMessageHandler* __this);
void HttpMessageHandler__CompleteRequest_fn(HttpMessageHandler* __this, ::g::Uno::Net::Http::HttpMessageHandlerRequest* request);
void HttpMessageHandler__CreateRequest_fn(HttpMessageHandler* __this, uString* method, uString* url, ::g::Uno::Net::Http::HttpMessageHandlerRequest** __retval);
void HttpMessageHandler__CreateRequest1_fn(HttpMessageHandler* __this, uString* method, uString* url, uObject* dispatcher, ::g::Uno::Net::Http::HttpMessageHandlerRequest** __retval);
void HttpMessageHandler__Dispose_fn(HttpMessageHandler* __this);
void HttpMessageHandler__New1_fn(HttpMessageHandler** __retval);
struct HttpMessageHandler : uObject
{
uStrong<uObject*> _defaultDispatcher;
uStrong< ::g::Uno::Collections::List*> _pendingRequests;
void ctor_();
void AbortPendingRequests();
void CompleteRequest(::g::Uno::Net::Http::HttpMessageHandlerRequest* request);
::g::Uno::Net::Http::HttpMessageHandlerRequest* CreateRequest(uString* method, uString* url);
::g::Uno::Net::Http::HttpMessageHandlerRequest* CreateRequest1(uString* method, uString* url, uObject* dispatcher);
void Dispose();
static HttpMessageHandler* New1();
};
// }
}}}} // ::g::Uno::Net::Http
| [
"poliana.ph@gmail.com"
] | poliana.ph@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.