blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a5788f91d3568a7dd7d24cbf3889a5f8d8538c21 | 6c121e0c3fec192b58572567f06f6bdca8c5132a | /GameEngine/gameobjects/PhysXRepXHelpers.cpp | 8b4573103628bb5bd054c650861da3c343995ee6 | [] | no_license | gamedevforks/src | 35555c4a32ce15692cd6cd1343aef16dd3307576 | 6e7470992ea47990c60ebceeb665a4d8c037c6d2 | refs/heads/master | 2020-05-21T16:09:56.595652 | 2014-09-20T22:54:59 | 2014-09-20T22:54:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,959 | cpp | //=========================================================================
// Module: PhysXRepXHelpers.hpp
// Copyright (C) 2011.
//=========================================================================
#pragma once
#include "r3dPCH.h"
#include "r3d.h"
//////////////////////////////////////////////////////////////////////////
#include "PhysX\RepX\include\RepX.h"
#include "PhysX\RepX\include\RepXUtility.h"
#include "PhysX\PhysXAPI\extensions\PxStringTableExt.h"
#include "PhysX\PxFoundation\internal\PxIOStream\public\PxFileBuf.h"
#include "PhysXRepXHelpers.h"
//////////////////////////////////////////////////////////////////////////
class MyPhysXFileBuf_ReadOnly : public PxFileBuf
{
private:
r3dFile* f;
public:
MyPhysXFileBuf_ReadOnly(const char* fname) : PxFileBuf(PxFileBuf::ENDIAN_NONE) {
f = r3d_open(fname, "rb");
r3d_assert(f);
}
virtual ~MyPhysXFileBuf_ReadOnly(void) {
fclose(f);
}
virtual OpenMode getOpenMode(void) const { return OPEN_READ_ONLY; }
virtual SeekType isSeekable(void) const { return SEEKABLE_READ; }
virtual PxU32 getFileLength(void) const { return f->size; }
virtual PxU32 seekRead(PxU32 loc) { return fseek(f, loc, SEEK_SET); }
virtual PxU32 seekWrite(PxU32 loc) { r3dError("no write"); return 0; }
virtual PxU32 read(void *mem,PxU32 len) { return fread(mem, 1, len, f); }
virtual PxU32 peek(void *mem,PxU32 len) { r3dError("no peek"); return 0; }
virtual PxU32 write(const void *mem,PxU32 len) { r3dError("no write"); return 0; }
virtual PxU32 tellRead(void) const { return ftell(f); }
virtual PxU32 tellWrite(void) const { r3dError("no tell write"); return 0; }
virtual void flush(void) { r3dError("no flush"); }
};
//////////////////////////////////////////////////////////////////////////
physx::repx::RepXCollection* loadCollection(const char* inPath, PxAllocatorCallback& inCallback)
{
physx::repx::RepXExtension* theExtensions[64];
PxU32 numExtensions = buildExtensionList( theExtensions, 64, inCallback );
MyPhysXFileBuf_ReadOnly fileBuf(inPath);
physx::repx::RepXCollection* retval = physx::repx::RepXCollection::create( &fileBuf, theExtensions, numExtensions, inCallback );
if ( retval )
retval = &physx::repx::RepXUpgrader::upgradeCollection( *retval );
return retval;
}
//////////////////////////////////////////////////////////////////////////
UserStream::UserStream(const char* filename, bool load) :
fpr(NULL),
fpw(NULL)
{
if(load)
fpr = r3d_open(filename, "rb");
else
fpw = fopen_for_write(filename, "wb");
}
UserStream::~UserStream()
{
if(fpr) fclose(fpr);
if(fpw) fclose(fpw);
}
// Loading API
PxU8 UserStream::readByte() const
{
PxU8 b;
size_t r = fread(&b, sizeof(PxU8), 1, fpr);
PX_ASSERT(r);
return b;
}
PxU16 UserStream::readWord() const
{
PxU16 b;
size_t r = fread(&b, sizeof(PxU16), 1, fpr);
PX_ASSERT(r);
return b;
}
PxU32 UserStream::readDword() const
{
PxU32 b;
size_t r = fread(&b, sizeof(PxU32), 1, fpr);
PX_ASSERT(r);
return b;
}
float UserStream::readFloat() const
{
float b;
size_t r = fread(&b, sizeof(float), 1, fpr);
PX_ASSERT(r);
return b;
}
double UserStream::readDouble() const
{
double b;
size_t r = fread(&b, sizeof(double), 1, fpr);
PX_ASSERT(r);
return b;
}
void UserStream::readBuffer(void* buffer, PxU32 size) const
{
size_t w = fread(buffer, size, 1, fpr);
PX_ASSERT(w);
}
// Saving API
PxStream& UserStream::storeByte(PxU8 b)
{
size_t w = fwrite(&b, sizeof(PxU8), 1, fpw);
PX_ASSERT(w);
return *this;
}
PxStream& UserStream::storeWord(PxU16 w)
{
size_t ww = fwrite(&w, sizeof(PxU16), 1, fpw);
PX_ASSERT(ww);
return *this;
}
PxStream& UserStream::storeDword(PxU32 d)
{
size_t w = fwrite(&d, sizeof(PxU32), 1, fpw);
PX_ASSERT(w);
return *this;
}
PxStream& UserStream::storeFloat(PxReal f)
{
size_t w = fwrite(&f, sizeof(PxReal), 1, fpw);
PX_ASSERT(w);
return *this;
}
PxStream& UserStream::storeDouble(PxF64 f)
{
size_t w = fwrite(&f, sizeof(PxF64), 1, fpw);
PX_ASSERT(w);
return *this;
}
PxStream& UserStream::storeBuffer(const void* buffer, PxU32 size)
{
size_t w = fwrite(buffer, size, 1, fpw);
PX_ASSERT(w);
return *this;
}
//////////////////////////////////////////////////////////////////////////
MemoryWriteBuffer::MemoryWriteBuffer() : currentSize(0), maxSize(0), data(NULL)
{
}
MemoryWriteBuffer::~MemoryWriteBuffer()
{
delete [] data;
}
void MemoryWriteBuffer::clear()
{
currentSize = 0;
}
void MemoryWriteBuffer::readBuffer(void*, PxU32) const
{
PX_ASSERT(0);
}
PxStream& MemoryWriteBuffer::storeByte(PxU8 b)
{
storeBuffer(&b, sizeof(PxU8));
return *this;
}
PxStream& MemoryWriteBuffer::storeWord(PxU16 w)
{
storeBuffer(&w, sizeof(PxU16));
return *this;
}
PxStream& MemoryWriteBuffer::storeDword(PxU32 d)
{
storeBuffer(&d, sizeof(PxU32));
return *this;
}
PxStream& MemoryWriteBuffer::storeFloat(PxReal f)
{
storeBuffer(&f, sizeof(PxReal));
return *this;
}
PxStream& MemoryWriteBuffer::storeDouble(PxF64 f)
{
storeBuffer(&f, sizeof(PxF64));
return *this;
}
PxStream& MemoryWriteBuffer::storeBuffer(const void* buffer, PxU32 size)
{
PxU32 expectedSize = currentSize + size;
if(expectedSize > maxSize)
{
maxSize = expectedSize + 4096;
PxU8* newData = new PxU8[maxSize];
PX_ASSERT(newData!=NULL);
if(data)
{
memcpy(newData, data, currentSize);
delete[] data;
}
data = newData;
}
memcpy(data+currentSize, buffer, size);
currentSize += size;
return *this;
}
PxU8 MemoryWriteBuffer::readByte() const { PX_ASSERT(0); return 0; }
PxU16 MemoryWriteBuffer::readWord() const { PX_ASSERT(0); return 0; }
PxU32 MemoryWriteBuffer::readDword() const { PX_ASSERT(0); return 0; }
float MemoryWriteBuffer::readFloat() const { PX_ASSERT(0); return 0.0f; }
double MemoryWriteBuffer::readDouble() const { PX_ASSERT(0); return 0.0; }
//////////////////////////////////////////////////////////////////////////
MemoryReadBuffer::MemoryReadBuffer(const PxU8* data) : buffer(data)
{
}
MemoryReadBuffer::~MemoryReadBuffer()
{
// We don't own the data => no delete
}
PxU8 MemoryReadBuffer::readByte() const
{
PxU8 b;
memcpy(&b, buffer, sizeof(PxU8));
buffer += sizeof(PxU8);
return b;
}
PxU16 MemoryReadBuffer::readWord() const
{
PxU16 w;
memcpy(&w, buffer, sizeof(PxU16));
buffer += sizeof(PxU16);
return w;
}
PxU32 MemoryReadBuffer::readDword() const
{
PxU32 d;
memcpy(&d, buffer, sizeof(PxU32));
buffer += sizeof(PxU32);
return d;
}
float MemoryReadBuffer::readFloat() const
{
float f;
memcpy(&f, buffer, sizeof(float));
buffer += sizeof(float);
return f;
}
double MemoryReadBuffer::readDouble() const
{
double f;
memcpy(&f, buffer, sizeof(double));
buffer += sizeof(double);
return f;
}
void MemoryReadBuffer::readBuffer(void* dest, PxU32 size) const
{
memcpy(dest, buffer, size);
buffer += size;
}
PxStream& MemoryReadBuffer::storeBuffer(const void*, PxU32)
{
PX_ASSERT(0);
return *this;
}
PxStream& MemoryReadBuffer::storeByte(PxU8) { PX_ASSERT(0); return *this; }
PxStream& MemoryReadBuffer::storeWord(PxU16) { PX_ASSERT(0); return *this; }
PxStream& MemoryReadBuffer::storeDword(PxU32) { PX_ASSERT(0); return *this; }
PxStream& MemoryReadBuffer::storeFloat(PxReal) { PX_ASSERT(0); return *this; }
PxStream& MemoryReadBuffer::storeDouble(PxF64) { PX_ASSERT(0); return *this; }
//////////////////////////////////////////////////////////////////////////
FileSerialStream::FileSerialStream(const char *fileName)
: writtenBytes(0)
, f(fopen_for_write(fileName, "wb"))
{
}
//////////////////////////////////////////////////////////////////////////
void FileSerialStream::storeBuffer(const void* buffer, PxU32 size)
{
if (f)
{
fwrite(buffer, size, 1, f);
writtenBytes += size;
}
}
//////////////////////////////////////////////////////////////////////////
PxU32 FileSerialStream::getTotalStoredSize()
{
return writtenBytes;
}
//////////////////////////////////////////////////////////////////////////
FileSerialStream::~FileSerialStream()
{
if (f)
fclose(f);
} | [
"muvucasbars@outlook.com"
] | muvucasbars@outlook.com |
4589b7ddf285badb392a01562e059ec33c8b8115 | e3796fea20da8c7e7f74066bae04a398dc0781d7 | /Homework11-18/Homework11-18/8-1.cpp | 7c4f30890b3e32d5cc4a4eed089e2504182234eb | [] | no_license | stories2/KangnamClass | 9a66ebd059e1def5a63dc9f3e6f27e33c95aff18 | 81c174789c9d6651dba8952e5b056781b4b8b768 | refs/heads/master | 2021-03-22T04:31:32.209771 | 2017-12-13T09:09:55 | 2017-12-13T09:09:55 | 105,345,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 88 | cpp | #include "Circle8-1.h"
int main() {
NamedCircle waffle(3, "waffle");
waffle.show();
} | [
"stories2@naver.com"
] | stories2@naver.com |
c4e798931e925d157939001152f41aa7fdfdbf8a | 44bb2087750b437e3b860b29e3d08bf288927447 | /libs/renderer/include/yttrium/renderer/program.h | 33ba01b20617c47f13268393e8bb1d2b6b60670d | [
"Apache-2.0"
] | permissive | blagodarin/yttrium | 5ab70efc46ed7788a1361e9b0886b02ec6482974 | 534289c3082355e5537a03c0b5855b60f0c344ad | refs/heads/master | 2021-12-24T22:36:00.277036 | 2021-11-27T10:23:26 | 2021-11-27T10:23:26 | 33,067,175 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | h | // This file is part of the Yttrium toolkit.
// Copyright (C) Sergei Blagodarin.
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include <string>
namespace Yt
{
class Matrix4;
/// Rendering pipeline program.
class RenderProgram
{
public:
virtual ~RenderProgram() = default;
///
virtual void set_uniform(const std::string& name, const Matrix4&) = 0;
};
}
| [
"s.blagodarin@gmail.com"
] | s.blagodarin@gmail.com |
db278e311fac52955f7484d0c873a7d509a0f039 | 8b3a3340f7161e7db30d0eb391143c024e7ae3e3 | /gamess-cpu/diesel/lib/QM/MRCIMatrix/MatrixAction/.svn/text-base/ActionMultiplication.h.svn-base | 34ff54f26e07c1ccfd34b5eff124a3bfb7b4eb5f | [] | no_license | greatlse/TURTLE | 63780473d57ab78a8eab18ce1b8fc263de47baef | 32361b27bfdfd08ec8689f93d0bb2834b9d9bdca | refs/heads/master | 2023-03-17T03:56:46.327443 | 2020-06-15T08:11:21 | 2020-06-15T08:11:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,214 | //***********************************************************************
//
// Name: ActionMultiplication.h
//
// Description:
//
// Author: Michael Hanrath
//
// Version: 0.0
//
// Date: 07.10.1998
//
//
//
//
//
//***********************************************************************
#ifndef __ActionMultiplication_h
#define __ActionMultiplication_h
#include "../../../../config.h"
#include "../../RepresentationMatrices/CIVectors.h"
#include "../../MRTree/MatrixAction.h"
#include "../../RepresentationMatrices/HMatElements.h"
#include "../../Configuration/DiffConf.h"
#include "../../Configuration/Configuration.h"
template <class MatrixType, class VectorType>
class ActionMultiplication :
public MatrixAction<HMatElements<MatrixType, VectorType> > {
public:
ActionMultiplication(CIVectors<VectorType> &CIx, CIVectors<VectorType> &CIy) :
CIx(CIx), CIy(CIy) {}
void doit(
const HMatElements<MatrixType, VectorType> & repMats,
INT safStartA, INT safStartB,
const DiffConf<MOType> & diffConf, const TableCase<MOType> & tablecase)
{
repMats.Mult(CIy, CIx,
safStartA, safStartB,
diffConf, tablecase);
}
CIVectors<VectorType> &CIx;
CIVectors<VectorType> &CIy;
};
#endif
| [
"y.reijne@gmail.com"
] | y.reijne@gmail.com | |
3fdbdb17896dc0a1bef86c957603fe5d96ac0eb5 | 7cf78b2ac091e54686973146a9e22b16cff76096 | /max_between_left_and_right/max_between_left_and_right.cpp | 33c74258fe453b352ce20e43e5d24f698f3628e1 | [] | no_license | ETalienwx/OJ_practice | 42245001254bcae0fcf3c40dabf23e94c64e1501 | 9abc3999f0640dc5df8425ed4b46022cdb59fa9b | refs/heads/master | 2020-05-01T14:15:40.217097 | 2019-12-29T19:39:09 | 2019-12-29T19:39:09 | 177,514,569 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 822 | cpp | class MaxGap {
public:
int findMaxGap(vector<int> A, int n) {
vector<int> mxL(n, 0);//记录i位左侧最大值
vector<int> mxR(n, 0);//记录i位右侧最大值
int ma = INT_MIN;
for (int i = 0; i<n; i++){//左侧
if (i == 0)
mxL[i] = A[i];
else
mxL[i] = max(A[i], mxL[i - 1]);
// 第 i 位左侧的最大值就是 i - 1 位最大值和 i 的值的较大值
}
for(int i = n - 1; i >= 0; i--){//右侧
if (i == n - 1)
mxR[i] = A[i];
else
mxR[i] = max(A[i], mxR[i + 1]);
}
// 例如输入数据为[2, 7, 3, 1, 1]
// mxL 中的值为: [2,7,7,7,7]
// mxR 中的值为: [7,7,3,1,1]
int res = INT_MIN;
// 接下来的循环就依次求差找最大值即可.
for (int i = 0; i<n - 1; i++){//求差
res = max(res, abs(mxL[i] - mxR[i + 1]));
}
return res;
}
}; | [
"wangxuan0809@126.com"
] | wangxuan0809@126.com |
9fd3f16147eaeb45973c6fbd64f53acc10f315ff | 43422be7be94040e569a9f19bdd3a3b17211148b | /atcoder/contest198/c.cpp | 4fe78b230aed046a356435d38b39d4e4addc42e6 | [] | no_license | priyakumari02/CPP-Practice | 6df9a34058bb6608283b0fbcc7893f4aa924e5a0 | 93a7df04e4955523dfc4139a2114fa8b694d9fe1 | refs/heads/main | 2023-06-18T01:45:45.607302 | 2021-07-09T18:31:18 | 2021-07-09T18:31:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 326 | cpp | #include<iostream>
#include<math.h>
using namespace std;
int main()
{
double r,x,y;
cin>>r>>x>>y;
double a = x*x + y*y;
a = sqrt(a);
if(a==r){
cout<<1;
return 0;
}else if(a<=2*r){
cout<<2;
return 0;
}
double k=(double)r;
cout<<ceil(a/k);
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
2568f664311a1a0465fa3272d3ff251dfd6924d9 | 47724e04cf5ecf86fac5fa78bcd08fe657092e37 | /python/Lanterns.cpp | 73792918df45e694cd92fbf1413fcba3d3519cd0 | [] | no_license | ananthanandanan/academics | b780e52a78a4595bbe7e782663920880c70e6ff6 | 7cda0742e41709f2ec5a81e569badf9378eb742f | refs/heads/master | 2022-10-14T21:17:07.445493 | 2022-10-01T09:06:19 | 2022-10-01T09:06:19 | 239,760,394 | 2 | 1 | null | 2020-10-28T11:09:28 | 2020-02-11T12:48:28 | Jupyter Notebook | UTF-8 | C++ | false | false | 705 | cpp | #include<bits/stdc++.h>
#include <iostream>
using namespace std;
int main(){
/* n: the coordinate of lanterns
l: length of the street.
*/
int n, l;
cin>>n>>l;
int arr[n];
for(int i=0;i<n;i++){
cin>>arr[i];
}
//Sort the street lanterns according to their positions
sort(arr, arr+n);
// Get the most suitable arbitary distance from both start and end positions of the lanterns
int d = 2* max(arr[0], l-arr[n-1]);
// Search through the inbetween distance to see if there exist a distance that is greater than current distance
for(int i=1;i<n;i++){
d = max(d,(arr[i] - arr[i-1]));
}
cout<< d/2;
return 0;
} | [
"ananthanandanan@gmail.com"
] | ananthanandanan@gmail.com |
66e0b5f74bb69e0681e10076dad169b12f9a056f | fbe77e9e2a53a4600a1d9b00b5f2c29ee3e8c59a | /contracts/libc++/upstream/test/std/numerics/numarray/template.valarray/valarray.cassign/xor_valarray.pass.cpp | 452b581e0b2eb5655015a636847d9e452ab40598 | [
"NCSA",
"MIT",
"Apache-2.0",
"BSD-3-Clause"
] | permissive | AcuteAngleCloud/Acute-Angle-Chain | 8d4a1ad714f6de1493954326e109b6af112561b9 | 5ea50bee042212ccff797ece5018c64f3f50ceff | refs/heads/master | 2021-04-26T21:52:25.560457 | 2020-03-21T07:29:06 | 2020-03-21T07:29:06 | 124,164,376 | 10 | 5 | MIT | 2020-07-16T07:14:45 | 2018-03-07T02:03:53 | C++ | UTF-8 | C++ | false | false | 1,025 | cpp | //===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <valarray>
// template<class T> class valarray;
// valarray& operator^=(const valarray& v);
#include <valarray>
#include <cassert>
#include <cstddef>
int main()
{
{
typedef int T;
T a1[] = {1, 2, 3, 4, 5};
T a2[] = {6, 7, 8, 9, 10};
T a3[] = {7, 5, 11, 13, 15};
const unsigned N = sizeof(a1)/sizeof(a1[0]);
std::valarray<T> v1(a1, N);
std::valarray<T> v2(a2, N);
std::valarray<T> v3(a3, N);
v1 ^= v2;
assert(v1.size() == v2.size());
assert(v1.size() == v3.size());
for (std::size_t i = 0; i < v1.size(); ++i)
assert(v1[i] == v3[i]);
}
}
| [
"caokun@acuteangle.cn"
] | caokun@acuteangle.cn |
1d9ed345d0b2767f98254cab48fee951700e1612 | 1483bb263a8162e30a6567e6e01b633326f6e738 | /lib/perlin.cpp | 121dc48e617482dc22569d7e36b8754b61a90914 | [] | no_license | benphelps/Crawler | eff0f819b01c188fbb1f62daa84955cdcedf0525 | b90a1b9392e4c5e6fa3a7ccead345f9a92735f72 | refs/heads/master | 2016-08-11T21:31:16.982929 | 2016-02-17T00:57:45 | 2016-02-17T00:57:45 | 51,883,143 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,976 | cpp | /* Copyright (c) 2013 Benjamin Phelps
*
* Author: http://stackoverflow.com/users/314005/gamernb
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "perlin.h"
PerlinNoise::PerlinNoise()
{
persistence = 0;
frequency = 0;
amplitude = 0;
octaves = 0;
randomseed = 0;
}
PerlinNoise::PerlinNoise(double _persistence, double _frequency, double _amplitude, int _octaves, int _randomseed)
{
persistence = _persistence;
frequency = _frequency;
amplitude = _amplitude;
octaves = _octaves;
randomseed = 2 + _randomseed * _randomseed;
}
void PerlinNoise::Set(double _persistence, double _frequency, double _amplitude, int _octaves, int _randomseed)
{
persistence = _persistence;
frequency = _frequency;
amplitude = _amplitude;
octaves = _octaves;
randomseed = 2 + _randomseed * _randomseed;
}
double PerlinNoise::GetHeight(double x, double y) const
{
return amplitude * Total(x, y);
}
double PerlinNoise::Total(double i, double j) const
{
//properties of one octave (changing each loop)
double t = 0.0f;
double _amplitude = 1;
double freq = frequency;
for(int k = 0; k < octaves; k++)
{
t += GetValue(j * freq + randomseed, i * freq + randomseed) * _amplitude;
_amplitude *= persistence;
freq *= 2;
}
return t;
}
double PerlinNoise::GetValue(double x, double y) const
{
int Xint = (int)x;
int Yint = (int)y;
double Xfrac = x - Xint;
double Yfrac = y - Yint;
//noise values
double n01 = Noise(Xint-1, Yint-1);
double n02 = Noise(Xint+1, Yint-1);
double n03 = Noise(Xint-1, Yint+1);
double n04 = Noise(Xint+1, Yint+1);
double n05 = Noise(Xint-1, Yint);
double n06 = Noise(Xint+1, Yint);
double n07 = Noise(Xint, Yint-1);
double n08 = Noise(Xint, Yint+1);
double n09 = Noise(Xint, Yint);
double n12 = Noise(Xint+2, Yint-1);
double n14 = Noise(Xint+2, Yint+1);
double n16 = Noise(Xint+2, Yint);
double n23 = Noise(Xint-1, Yint+2);
double n24 = Noise(Xint+1, Yint+2);
double n28 = Noise(Xint, Yint+2);
double n34 = Noise(Xint+2, Yint+2);
//find the noise values of the four corners
double x0y0 = 0.0625*(n01+n02+n03+n04) + 0.125*(n05+n06+n07+n08) + 0.25*(n09);
double x1y0 = 0.0625*(n07+n12+n08+n14) + 0.125*(n09+n16+n02+n04) + 0.25*(n06);
double x0y1 = 0.0625*(n05+n06+n23+n24) + 0.125*(n03+n04+n09+n28) + 0.25*(n08);
double x1y1 = 0.0625*(n09+n16+n28+n34) + 0.125*(n08+n14+n06+n24) + 0.25*(n04);
//interpolate between those values according to the x and y fractions
double v1 = Interpolate(x0y0, x1y0, Xfrac); //interpolate in x direction (y)
double v2 = Interpolate(x0y1, x1y1, Xfrac); //interpolate in x direction (y+1)
double fin = Interpolate(v1, v2, Yfrac); //interpolate in y direction
return fin;
}
double PerlinNoise::Interpolate(double x, double y, double a) const
{
double negA = 1.0 - a;
double negASqr = negA * negA;
double fac1 = 3.0 * (negASqr) - 2.0 * (negASqr * negA);
double aSqr = a * a;
double fac2 = 3.0 * aSqr - 2.0 * (aSqr * a);
return x * fac1 + y * fac2; //add the weighted factors
}
double PerlinNoise::Noise(int x, int y) const
{
int n = x + y * 57;
n = (n << 13) ^ n;
int t = (n * (n * n * 15731 + 789221) + 1376312589) & 0x7fffffff;
return 1.0 - double(t) * 0.931322574615478515625e-9;/// 1073741824.0);
} | [
"ben@phelps.io"
] | ben@phelps.io |
5daae49efe64a6b0dde9542b3eddc65872cd8382 | a8458c5dadaa38bb15e54561d2c73146fac99ae2 | /UnityExport/Classes/Native/UnresolvedVirtualCallStubs.cpp | 6894397c1ba9090e9bd9a8a22b1a5d01303c8b3a | [] | no_license | chiahsien/UnityInSwiftUI | bc1de7b6766718319bd801f4a7d2f4b19dac1112 | e21d87fb7bd192cc5eb82bd597dde0a1fae49046 | refs/heads/main | 2023-07-01T22:04:17.908673 | 2021-08-03T15:20:50 | 2021-08-03T15:20:50 | 392,355,853 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 165,361 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <limits>
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// UnityEngine.RenderTexture
struct RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C;
// System.String
struct String_t;
// System.Type
struct Type_t;
// UnityEngine.Events.UnityAction
struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Nullable`1<System.Int32>
struct Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// UnityEngine.CullingGroupEvent
struct CullingGroupEvent_t58E1718FD0A5FC5037538BD223DCF1385014185C
{
public:
// System.Int32 UnityEngine.CullingGroupEvent::m_Index
int32_t ___m_Index_0;
// System.Byte UnityEngine.CullingGroupEvent::m_PrevState
uint8_t ___m_PrevState_1;
// System.Byte UnityEngine.CullingGroupEvent::m_ThisState
uint8_t ___m_ThisState_2;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(CullingGroupEvent_t58E1718FD0A5FC5037538BD223DCF1385014185C, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_PrevState_1() { return static_cast<int32_t>(offsetof(CullingGroupEvent_t58E1718FD0A5FC5037538BD223DCF1385014185C, ___m_PrevState_1)); }
inline uint8_t get_m_PrevState_1() const { return ___m_PrevState_1; }
inline uint8_t* get_address_of_m_PrevState_1() { return &___m_PrevState_1; }
inline void set_m_PrevState_1(uint8_t value)
{
___m_PrevState_1 = value;
}
inline static int32_t get_offset_of_m_ThisState_2() { return static_cast<int32_t>(offsetof(CullingGroupEvent_t58E1718FD0A5FC5037538BD223DCF1385014185C, ___m_ThisState_2)); }
inline uint8_t get_m_ThisState_2() const { return ___m_ThisState_2; }
inline uint8_t* get_address_of_m_ThisState_2() { return &___m_ThisState_2; }
inline void set_m_ThisState_2(uint8_t value)
{
___m_ThisState_2 = value;
}
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.DateTime
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// UnityEngine.Matrix4x4
struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.SocialPlatforms.Range
struct Range_t70C133E51417BC822E878050C90A577A69B671DC
{
public:
// System.Int32 UnityEngine.SocialPlatforms.Range::from
int32_t ___from_0;
// System.Int32 UnityEngine.SocialPlatforms.Range::count
int32_t ___count_1;
public:
inline static int32_t get_offset_of_from_0() { return static_cast<int32_t>(offsetof(Range_t70C133E51417BC822E878050C90A577A69B671DC, ___from_0)); }
inline int32_t get_from_0() const { return ___from_0; }
inline int32_t* get_address_of_from_0() { return &___from_0; }
inline void set_from_0(int32_t value)
{
___from_0 = value;
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Range_t70C133E51417BC822E878050C90A577A69B671DC, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
};
// System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// UnityEngine.SceneManagement.Scene
struct Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE
{
public:
// System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
int32_t ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE, ___m_Handle_0)); }
inline int32_t get_m_Handle_0() const { return ___m_Handle_0; }
inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(int32_t value)
{
___m_Handle_0 = value;
}
};
// UnityEngine.Rendering.ShaderTagId
struct ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795
{
public:
// System.Int32 UnityEngine.Rendering.ShaderTagId::m_Id
int32_t ___m_Id_1;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795, ___m_Id_1)); }
inline int32_t get_m_Id_1() const { return ___m_Id_1; }
inline int32_t* get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(int32_t value)
{
___m_Id_1 = value;
}
};
struct ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795_StaticFields
{
public:
// UnityEngine.Rendering.ShaderTagId UnityEngine.Rendering.ShaderTagId::none
ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 ___none_0;
public:
inline static int32_t get_offset_of_none_0() { return static_cast<int32_t>(offsetof(ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795_StaticFields, ___none_0)); }
inline ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 get_none_0() const { return ___none_0; }
inline ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 * get_address_of_none_0() { return &___none_0; }
inline void set_none_0(ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 value)
{
___none_0 = value;
}
};
// UnityEngine.Vector3
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_0;
// System.Single UnityEngine.Vector3::y
float ___y_1;
// System.Single UnityEngine.Vector3::z
float ___z_2;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
};
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_3;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_4;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_12;
public:
inline static int32_t get_offset_of_zeroVector_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_3)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_3() const { return ___zeroVector_3; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_3() { return &___zeroVector_3; }
inline void set_zeroVector_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___zeroVector_3 = value;
}
inline static int32_t get_offset_of_oneVector_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_4() const { return ___oneVector_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_4() { return &___oneVector_4; }
inline void set_oneVector_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___oneVector_4 = value;
}
inline static int32_t get_offset_of_upVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_5() const { return ___upVector_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_5() { return &___upVector_5; }
inline void set_upVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___upVector_5 = value;
}
inline static int32_t get_offset_of_downVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_6() const { return ___downVector_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_6() { return &___downVector_6; }
inline void set_downVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___downVector_6 = value;
}
inline static int32_t get_offset_of_leftVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_7() const { return ___leftVector_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_7() { return &___leftVector_7; }
inline void set_leftVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___leftVector_7 = value;
}
inline static int32_t get_offset_of_rightVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_8() const { return ___rightVector_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_8() { return &___rightVector_8; }
inline void set_rightVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___rightVector_8 = value;
}
inline static int32_t get_offset_of_forwardVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_9() const { return ___forwardVector_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_9() { return &___forwardVector_9; }
inline void set_forwardVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___forwardVector_9 = value;
}
inline static int32_t get_offset_of_backVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_10() const { return ___backVector_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_10() { return &___backVector_10; }
inline void set_backVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___backVector_10 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_11)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_11() const { return ___positiveInfinityVector_11; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_11() { return &___positiveInfinityVector_11; }
inline void set_positiveInfinityVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___positiveInfinityVector_11 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_12)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_12() const { return ___negativeInfinityVector_12; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_12() { return &___negativeInfinityVector_12; }
inline void set_negativeInfinityVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___negativeInfinityVector_12 = value;
}
};
// System.Threading.Tasks.VoidTaskResult
struct VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004
{
public:
union
{
struct
{
};
uint8_t VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004__padding[1];
};
public:
};
// UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___callback_1)); }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_callback_1() const { return ___callback_1; }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_WaitHandle_2)); }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___key_0)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_key_0() const { return ___key_0; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Unity.Collections.Allocator
struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ConsoleKey
struct ConsoleKey_t4708A928547D666CF632F6F46340F476155566D4
{
public:
// System.Int32 System.ConsoleKey::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleKey_t4708A928547D666CF632F6F46340F476155566D4, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.ConsoleModifiers
struct ConsoleModifiers_t8465A8BC80F4BDB8816D80AA7CBE483DC7D01EBE
{
public:
// System.Int32 System.ConsoleModifiers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleModifiers_t8465A8BC80F4BDB8816D80AA7CBE483DC7D01EBE, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_pinvoke
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_com
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Unity.Jobs.JobHandle
struct JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847
{
public:
// System.IntPtr Unity.Jobs.JobHandle::jobGroup
intptr_t ___jobGroup_0;
// System.Int32 Unity.Jobs.JobHandle::version
int32_t ___version_1;
public:
inline static int32_t get_offset_of_jobGroup_0() { return static_cast<int32_t>(offsetof(JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847, ___jobGroup_0)); }
inline intptr_t get_jobGroup_0() const { return ___jobGroup_0; }
inline intptr_t* get_address_of_jobGroup_0() { return &___jobGroup_0; }
inline void set_jobGroup_0(intptr_t value)
{
___jobGroup_0 = value;
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
};
// UnityEngine.Rendering.LODParameters
struct LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD
{
public:
// System.Int32 UnityEngine.Rendering.LODParameters::m_IsOrthographic
int32_t ___m_IsOrthographic_0;
// UnityEngine.Vector3 UnityEngine.Rendering.LODParameters::m_CameraPosition
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_CameraPosition_1;
// System.Single UnityEngine.Rendering.LODParameters::m_FieldOfView
float ___m_FieldOfView_2;
// System.Single UnityEngine.Rendering.LODParameters::m_OrthoSize
float ___m_OrthoSize_3;
// System.Int32 UnityEngine.Rendering.LODParameters::m_CameraPixelHeight
int32_t ___m_CameraPixelHeight_4;
public:
inline static int32_t get_offset_of_m_IsOrthographic_0() { return static_cast<int32_t>(offsetof(LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD, ___m_IsOrthographic_0)); }
inline int32_t get_m_IsOrthographic_0() const { return ___m_IsOrthographic_0; }
inline int32_t* get_address_of_m_IsOrthographic_0() { return &___m_IsOrthographic_0; }
inline void set_m_IsOrthographic_0(int32_t value)
{
___m_IsOrthographic_0 = value;
}
inline static int32_t get_offset_of_m_CameraPosition_1() { return static_cast<int32_t>(offsetof(LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD, ___m_CameraPosition_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_CameraPosition_1() const { return ___m_CameraPosition_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_CameraPosition_1() { return &___m_CameraPosition_1; }
inline void set_m_CameraPosition_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_CameraPosition_1 = value;
}
inline static int32_t get_offset_of_m_FieldOfView_2() { return static_cast<int32_t>(offsetof(LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD, ___m_FieldOfView_2)); }
inline float get_m_FieldOfView_2() const { return ___m_FieldOfView_2; }
inline float* get_address_of_m_FieldOfView_2() { return &___m_FieldOfView_2; }
inline void set_m_FieldOfView_2(float value)
{
___m_FieldOfView_2 = value;
}
inline static int32_t get_offset_of_m_OrthoSize_3() { return static_cast<int32_t>(offsetof(LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD, ___m_OrthoSize_3)); }
inline float get_m_OrthoSize_3() const { return ___m_OrthoSize_3; }
inline float* get_address_of_m_OrthoSize_3() { return &___m_OrthoSize_3; }
inline void set_m_OrthoSize_3(float value)
{
___m_OrthoSize_3 = value;
}
inline static int32_t get_offset_of_m_CameraPixelHeight_4() { return static_cast<int32_t>(offsetof(LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD, ___m_CameraPixelHeight_4)); }
inline int32_t get_m_CameraPixelHeight_4() const { return ___m_CameraPixelHeight_4; }
inline int32_t* get_address_of_m_CameraPixelHeight_4() { return &___m_CameraPixelHeight_4; }
inline void set_m_CameraPixelHeight_4(int32_t value)
{
___m_CameraPixelHeight_4 = value;
}
};
// UnityEngine.Playables.PlayableGraph
struct PlayableGraph_t2D5083CFACB413FA1BB13FF054BE09A5A55A205A
{
public:
// System.IntPtr UnityEngine.Playables.PlayableGraph::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableGraph::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableGraph_t2D5083CFACB413FA1BB13FF054BE09A5A55A205A, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableGraph_t2D5083CFACB413FA1BB13FF054BE09A5A55A205A, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
// UnityEngine.Playables.PlayableHandle
struct PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A
{
public:
// System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
struct PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A_StaticFields
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null
PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A ___m_Null_2;
public:
inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A_StaticFields, ___m_Null_2)); }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A get_m_Null_2() const { return ___m_Null_2; }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A * get_address_of_m_Null_2() { return &___m_Null_2; }
inline void set_m_Null_2(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A value)
{
___m_Null_2 = value;
}
};
// UnityEngine.Playables.PlayableOutputHandle
struct PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1
{
public:
// System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
struct PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1_StaticFields
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutputHandle::m_Null
PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 ___m_Null_2;
public:
inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1_StaticFields, ___m_Null_2)); }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 get_m_Null_2() const { return ___m_Null_2; }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 * get_address_of_m_Null_2() { return &___m_Null_2; }
inline void set_m_Null_2(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 value)
{
___m_Null_2 = value;
}
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.RuntimeMethodHandle
struct RuntimeMethodHandle_t8974037C4FE5F6C3AE7D3731057CDB2891A21C9A
{
public:
// System.IntPtr System.RuntimeMethodHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeMethodHandle_t8974037C4FE5F6C3AE7D3731057CDB2891A21C9A, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.Rendering.ScriptableRenderContext
struct ScriptableRenderContext_tEDDDFFA7401E6860E1D82DFD779B7A101939F52D
{
public:
// System.IntPtr UnityEngine.Rendering.ScriptableRenderContext::m_Ptr
intptr_t ___m_Ptr_1;
public:
inline static int32_t get_offset_of_m_Ptr_1() { return static_cast<int32_t>(offsetof(ScriptableRenderContext_tEDDDFFA7401E6860E1D82DFD779B7A101939F52D, ___m_Ptr_1)); }
inline intptr_t get_m_Ptr_1() const { return ___m_Ptr_1; }
inline intptr_t* get_address_of_m_Ptr_1() { return &___m_Ptr_1; }
inline void set_m_Ptr_1(intptr_t value)
{
___m_Ptr_1 = value;
}
};
struct ScriptableRenderContext_tEDDDFFA7401E6860E1D82DFD779B7A101939F52D_StaticFields
{
public:
// UnityEngine.Rendering.ShaderTagId UnityEngine.Rendering.ScriptableRenderContext::kRenderTypeTag
ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 ___kRenderTypeTag_0;
public:
inline static int32_t get_offset_of_kRenderTypeTag_0() { return static_cast<int32_t>(offsetof(ScriptableRenderContext_tEDDDFFA7401E6860E1D82DFD779B7A101939F52D_StaticFields, ___kRenderTypeTag_0)); }
inline ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 get_kRenderTypeTag_0() const { return ___kRenderTypeTag_0; }
inline ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 * get_address_of_kRenderTypeTag_0() { return &___kRenderTypeTag_0; }
inline void set_kRenderTypeTag_0(ShaderTagId_t51914C89B8119195DACD234D1A624AAB7A07F795 value)
{
___kRenderTypeTag_0 = value;
}
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.TextureFormat
struct TextureFormat_tBED5388A0445FE978F97B41D247275B036407932
{
public:
// System.Int32 UnityEngine.TextureFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureFormat_tBED5388A0445FE978F97B41D247275B036407932, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// UnityEngine.Camera/RenderRequestMode
struct RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313
{
public:
// System.Int32 UnityEngine.Camera/RenderRequestMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Camera/RenderRequestOutputSpace
struct RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5
{
public:
// System.Int32 UnityEngine.Camera/RenderRequestOutputSpace::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>
struct NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Byte>
struct NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Int32>
struct NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Plane>
struct NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// System.ConsoleKeyInfo
struct ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88
{
public:
// System.Char System.ConsoleKeyInfo::_keyChar
Il2CppChar ____keyChar_0;
// System.ConsoleKey System.ConsoleKeyInfo::_key
int32_t ____key_1;
// System.ConsoleModifiers System.ConsoleKeyInfo::_mods
int32_t ____mods_2;
public:
inline static int32_t get_offset_of__keyChar_0() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88, ____keyChar_0)); }
inline Il2CppChar get__keyChar_0() const { return ____keyChar_0; }
inline Il2CppChar* get_address_of__keyChar_0() { return &____keyChar_0; }
inline void set__keyChar_0(Il2CppChar value)
{
____keyChar_0 = value;
}
inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88, ____key_1)); }
inline int32_t get__key_1() const { return ____key_1; }
inline int32_t* get_address_of__key_1() { return &____key_1; }
inline void set__key_1(int32_t value)
{
____key_1 = value;
}
inline static int32_t get_offset_of__mods_2() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88, ____mods_2)); }
inline int32_t get__mods_2() const { return ____mods_2; }
inline int32_t* get_address_of__mods_2() { return &____mods_2; }
inline void set__mods_2(int32_t value)
{
____mods_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88_marshaled_pinvoke
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// Native definition for COM marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88_marshaled_com
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// UnityEngine.Playables.Playable
struct Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::m_Handle
PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2, ___m_Handle_0)); }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t50DCD240B0400DDAD0822C13E5DBC7AD64DC027A value)
{
___m_Handle_0 = value;
}
};
struct Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2_StaticFields
{
public:
// UnityEngine.Playables.Playable UnityEngine.Playables.Playable::m_NullPlayable
Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2 ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2_StaticFields, ___m_NullPlayable_1)); }
inline Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2 value)
{
___m_NullPlayable_1 = value;
}
};
// UnityEngine.Playables.PlayableOutput
struct PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutput::m_Handle
PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82, ___m_Handle_0)); }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t8C84BCDB2AECFEDBCF0E7CC7CDBADD517D148CD1 value)
{
___m_Handle_0 = value;
}
};
struct PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82_StaticFields
{
public:
// UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableOutput::m_NullPlayableOutput
PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82 ___m_NullPlayableOutput_1;
public:
inline static int32_t get_offset_of_m_NullPlayableOutput_1() { return static_cast<int32_t>(offsetof(PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82_StaticFields, ___m_NullPlayableOutput_1)); }
inline PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82 get_m_NullPlayableOutput_1() const { return ___m_NullPlayableOutput_1; }
inline PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82 * get_address_of_m_NullPlayableOutput_1() { return &___m_NullPlayableOutput_1; }
inline void set_m_NullPlayableOutput_1(PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82 value)
{
___m_NullPlayableOutput_1 = value;
}
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.TypedReference
struct TypedReference_tE1755FC30D207D9552DE27539E907EE92C8C073A
{
public:
// System.RuntimeTypeHandle System.TypedReference::type
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___type_0;
// System.IntPtr System.TypedReference::Value
intptr_t ___Value_1;
// System.IntPtr System.TypedReference::Type
intptr_t ___Type_2;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(TypedReference_tE1755FC30D207D9552DE27539E907EE92C8C073A, ___type_0)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get_type_0() const { return ___type_0; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of_type_0() { return &___type_0; }
inline void set_type_0(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
___type_0 = value;
}
inline static int32_t get_offset_of_Value_1() { return static_cast<int32_t>(offsetof(TypedReference_tE1755FC30D207D9552DE27539E907EE92C8C073A, ___Value_1)); }
inline intptr_t get_Value_1() const { return ___Value_1; }
inline intptr_t* get_address_of_Value_1() { return &___Value_1; }
inline void set_Value_1(intptr_t value)
{
___Value_1 = value;
}
inline static int32_t get_offset_of_Type_2() { return static_cast<int32_t>(offsetof(TypedReference_tE1755FC30D207D9552DE27539E907EE92C8C073A, ___Type_2)); }
inline intptr_t get_Type_2() const { return ___Type_2; }
inline intptr_t* get_address_of_Type_2() { return &___Type_2; }
inline void set_Type_2(intptr_t value)
{
___Type_2 = value;
}
};
// UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94
{
public:
// UnityEngine.Camera/RenderRequestMode UnityEngine.Camera/RenderRequest::m_CameraRenderMode
int32_t ___m_CameraRenderMode_0;
// UnityEngine.RenderTexture UnityEngine.Camera/RenderRequest::m_ResultRT
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
// UnityEngine.Camera/RenderRequestOutputSpace UnityEngine.Camera/RenderRequest::m_OutputSpace
int32_t ___m_OutputSpace_2;
public:
inline static int32_t get_offset_of_m_CameraRenderMode_0() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_CameraRenderMode_0)); }
inline int32_t get_m_CameraRenderMode_0() const { return ___m_CameraRenderMode_0; }
inline int32_t* get_address_of_m_CameraRenderMode_0() { return &___m_CameraRenderMode_0; }
inline void set_m_CameraRenderMode_0(int32_t value)
{
___m_CameraRenderMode_0 = value;
}
inline static int32_t get_offset_of_m_ResultRT_1() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_ResultRT_1)); }
inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * get_m_ResultRT_1() const { return ___m_ResultRT_1; }
inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 ** get_address_of_m_ResultRT_1() { return &___m_ResultRT_1; }
inline void set_m_ResultRT_1(RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * value)
{
___m_ResultRT_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ResultRT_1), (void*)value);
}
inline static int32_t get_offset_of_m_OutputSpace_2() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_OutputSpace_2)); }
inline int32_t get_m_OutputSpace_2() const { return ___m_OutputSpace_2; }
inline int32_t* get_address_of_m_OutputSpace_2() { return &___m_OutputSpace_2; }
inline void set_m_OutputSpace_2(int32_t value)
{
___m_OutputSpace_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_pinvoke
{
int32_t ___m_CameraRenderMode_0;
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
int32_t ___m_OutputSpace_2;
};
// Native definition for COM marshalling of UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_com
{
int32_t ___m_CameraRenderMode_0;
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
int32_t ___m_OutputSpace_2;
};
// UnityEngine.Rendering.BatchCullingContext
struct BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66
{
public:
// Unity.Collections.NativeArray`1<UnityEngine.Plane> UnityEngine.Rendering.BatchCullingContext::cullingPlanes
NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E ___cullingPlanes_0;
// Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility> UnityEngine.Rendering.BatchCullingContext::batchVisibility
NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA ___batchVisibility_1;
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndices
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___visibleIndices_2;
// Unity.Collections.NativeArray`1<System.Int32> UnityEngine.Rendering.BatchCullingContext::visibleIndicesY
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___visibleIndicesY_3;
// UnityEngine.Rendering.LODParameters UnityEngine.Rendering.BatchCullingContext::lodParameters
LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD ___lodParameters_4;
// UnityEngine.Matrix4x4 UnityEngine.Rendering.BatchCullingContext::cullingMatrix
Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___cullingMatrix_5;
// System.Single UnityEngine.Rendering.BatchCullingContext::nearPlane
float ___nearPlane_6;
public:
inline static int32_t get_offset_of_cullingPlanes_0() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___cullingPlanes_0)); }
inline NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E get_cullingPlanes_0() const { return ___cullingPlanes_0; }
inline NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E * get_address_of_cullingPlanes_0() { return &___cullingPlanes_0; }
inline void set_cullingPlanes_0(NativeArray_1_t527C586787ACD1AD75E3C78BFB024FFA9925662E value)
{
___cullingPlanes_0 = value;
}
inline static int32_t get_offset_of_batchVisibility_1() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___batchVisibility_1)); }
inline NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA get_batchVisibility_1() const { return ___batchVisibility_1; }
inline NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * get_address_of_batchVisibility_1() { return &___batchVisibility_1; }
inline void set_batchVisibility_1(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA value)
{
___batchVisibility_1 = value;
}
inline static int32_t get_offset_of_visibleIndices_2() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___visibleIndices_2)); }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 get_visibleIndices_2() const { return ___visibleIndices_2; }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * get_address_of_visibleIndices_2() { return &___visibleIndices_2; }
inline void set_visibleIndices_2(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 value)
{
___visibleIndices_2 = value;
}
inline static int32_t get_offset_of_visibleIndicesY_3() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___visibleIndicesY_3)); }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 get_visibleIndicesY_3() const { return ___visibleIndicesY_3; }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * get_address_of_visibleIndicesY_3() { return &___visibleIndicesY_3; }
inline void set_visibleIndicesY_3(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 value)
{
___visibleIndicesY_3 = value;
}
inline static int32_t get_offset_of_lodParameters_4() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___lodParameters_4)); }
inline LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD get_lodParameters_4() const { return ___lodParameters_4; }
inline LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD * get_address_of_lodParameters_4() { return &___lodParameters_4; }
inline void set_lodParameters_4(LODParameters_tA41D06C4BDB03138144BE9DCC4BC6B37963DC5CD value)
{
___lodParameters_4 = value;
}
inline static int32_t get_offset_of_cullingMatrix_5() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___cullingMatrix_5)); }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_cullingMatrix_5() const { return ___cullingMatrix_5; }
inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_cullingMatrix_5() { return &___cullingMatrix_5; }
inline void set_cullingMatrix_5(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value)
{
___cullingMatrix_5 = value;
}
inline static int32_t get_offset_of_nearPlane_6() { return static_cast<int32_t>(offsetof(BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66, ___nearPlane_6)); }
inline float get_nearPlane_6() const { return ___nearPlane_6; }
inline float* get_address_of_nearPlane_6() { return &___nearPlane_6; }
inline void set_nearPlane_6(float value)
{
___nearPlane_6 = value;
}
};
// UnityEngine.Profiling.Experimental.DebugScreenCapture
struct DebugScreenCapture_t82C35632EAE92C143A87097DC34C70EFADB750B1
{
public:
// Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Profiling.Experimental.DebugScreenCapture::<rawImageDataReference>k__BackingField
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___U3CrawImageDataReferenceU3Ek__BackingField_0;
// UnityEngine.TextureFormat UnityEngine.Profiling.Experimental.DebugScreenCapture::<imageFormat>k__BackingField
int32_t ___U3CimageFormatU3Ek__BackingField_1;
// System.Int32 UnityEngine.Profiling.Experimental.DebugScreenCapture::<width>k__BackingField
int32_t ___U3CwidthU3Ek__BackingField_2;
// System.Int32 UnityEngine.Profiling.Experimental.DebugScreenCapture::<height>k__BackingField
int32_t ___U3CheightU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CrawImageDataReferenceU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(DebugScreenCapture_t82C35632EAE92C143A87097DC34C70EFADB750B1, ___U3CrawImageDataReferenceU3Ek__BackingField_0)); }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_U3CrawImageDataReferenceU3Ek__BackingField_0() const { return ___U3CrawImageDataReferenceU3Ek__BackingField_0; }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_U3CrawImageDataReferenceU3Ek__BackingField_0() { return &___U3CrawImageDataReferenceU3Ek__BackingField_0; }
inline void set_U3CrawImageDataReferenceU3Ek__BackingField_0(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
{
___U3CrawImageDataReferenceU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CimageFormatU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(DebugScreenCapture_t82C35632EAE92C143A87097DC34C70EFADB750B1, ___U3CimageFormatU3Ek__BackingField_1)); }
inline int32_t get_U3CimageFormatU3Ek__BackingField_1() const { return ___U3CimageFormatU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CimageFormatU3Ek__BackingField_1() { return &___U3CimageFormatU3Ek__BackingField_1; }
inline void set_U3CimageFormatU3Ek__BackingField_1(int32_t value)
{
___U3CimageFormatU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CwidthU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(DebugScreenCapture_t82C35632EAE92C143A87097DC34C70EFADB750B1, ___U3CwidthU3Ek__BackingField_2)); }
inline int32_t get_U3CwidthU3Ek__BackingField_2() const { return ___U3CwidthU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CwidthU3Ek__BackingField_2() { return &___U3CwidthU3Ek__BackingField_2; }
inline void set_U3CwidthU3Ek__BackingField_2(int32_t value)
{
___U3CwidthU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CheightU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(DebugScreenCapture_t82C35632EAE92C143A87097DC34C70EFADB750B1, ___U3CheightU3Ek__BackingField_3)); }
inline int32_t get_U3CheightU3Ek__BackingField_3() const { return ___U3CheightU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CheightU3Ek__BackingField_3() { return &___U3CheightU3Ek__BackingField_3; }
inline void set_U3CheightU3Ek__BackingField_3(int32_t value)
{
___U3CheightU3Ek__BackingField_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
static KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 UnresolvedVirtualCall_0 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 UnresolvedVirtualCall_1 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 UnresolvedVirtualCall_2 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint8_t UnresolvedVirtualCall_3 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint8_t UnresolvedVirtualCall_4 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 UnresolvedVirtualCall_5 (RuntimeObject * __this, int8_t ___SByte1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA UnresolvedVirtualCall_6 (RuntimeObject * __this, int32_t ___Int321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 UnresolvedVirtualCall_7 (RuntimeObject * __this, int32_t ___Int321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 UnresolvedVirtualCall_8 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 UnresolvedVirtualCall_9 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, int32_t ___Int323, int32_t ___Int324, int32_t ___Int325, int32_t ___Int326, int32_t ___Int327, int32_t ___Int328, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 UnresolvedVirtualCall_10 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 UnresolvedVirtualCall_11 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 UnresolvedVirtualCall_12 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 UnresolvedVirtualCall_13 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static double UnresolvedVirtualCall_14 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static double UnresolvedVirtualCall_15 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static Guid_t UnresolvedVirtualCall_16 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int16_t UnresolvedVirtualCall_17 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int16_t UnresolvedVirtualCall_18 (RuntimeObject * __this, int16_t ___Int161, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int16_t UnresolvedVirtualCall_19 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_20 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_21 (RuntimeObject * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_21, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_22 (RuntimeObject * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_21, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_22, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_23 (RuntimeObject * __this, uint8_t ___Byte1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_24 (RuntimeObject * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___CustomAttributeNamedArgument1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_25 (RuntimeObject * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___CustomAttributeTypedArgument1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_26 (RuntimeObject * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___DateTime1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_27 (RuntimeObject * __this, int32_t ___Int321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_28 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_29 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_30 (RuntimeObject * __this, int64_t ___Int641, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_31 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_32 (RuntimeObject * __this, RuntimeObject * ___Object1, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_22, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_33 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_34 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_35 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_36 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, RuntimeObject * ___Object4, int32_t ___Int325, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_37 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, RuntimeObject * ___Object4, int32_t ___Int325, int32_t ___Int326, int32_t ___Int327, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_38 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, RuntimeObject * ___Object4, int32_t ___Int325, int8_t ___SByte6, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_39 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, int8_t ___SByte4, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_40 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_41 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_42 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, int32_t ___Int324, RuntimeObject * ___Object5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_43 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, int32_t ___Int324, int8_t ___SByte5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_44 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int8_t ___SByte3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_45 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_46 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_47 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_48 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int32_t ___Int323, int32_t ___Int324, int32_t ___Int325, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_49 (RuntimeObject * __this, RuntimeObject * ___Object1, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock2, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_50 (RuntimeObject * __this, RuntimeObject * ___Object1, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest2, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_51 (RuntimeObject * __this, RuntimeObject * ___Object1, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest2, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_52 (RuntimeObject * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___ResourceLocator1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_53 (RuntimeObject * __this, uint64_t ___UInt641, uint64_t ___UInt642, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_54 (RuntimeObject * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_55 (RuntimeObject * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock1, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_56 (RuntimeObject * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_57 (RuntimeObject * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest1, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_58 (RuntimeObject * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int32_t UnresolvedVirtualCall_59 (RuntimeObject * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest1, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int64_t UnresolvedVirtualCall_60 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int64_t UnresolvedVirtualCall_61 (RuntimeObject * __this, int64_t ___Int641, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int64_t UnresolvedVirtualCall_62 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int64_t UnresolvedVirtualCall_63 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static intptr_t UnresolvedVirtualCall_64 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static JobHandle_t8AEB8D31C25D7774C71D62B0C662525E6E36D847 UnresolvedVirtualCall_65 (RuntimeObject * __this, RuntimeObject * ___Object1, BatchCullingContext_t26E634F354C4F3915108C34A32FD32118FFE1F66 ___BatchCullingContext2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_66 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_67 (RuntimeObject * __this, int32_t ___Int321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_68 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, int32_t ___Int323, RuntimeObject * ___Object4, RuntimeObject * ___Object5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_69 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_70 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_71 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, RuntimeObject * ___Object5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_72 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, RuntimeObject * ___Object5, RuntimeObject * ___Object6, RuntimeObject * ___Object7, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_73 (RuntimeObject * __this, int64_t ___Int641, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_74 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_75 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_76 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_77 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, RuntimeObject * ___Object4, RuntimeObject * ___Object5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_78 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, int32_t ___Int324, RuntimeObject * ___Object5, RuntimeObject * ___Object6, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_79 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, RuntimeObject * ___Object4, RuntimeObject * ___Object5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_80 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, RuntimeObject * ___Object4, RuntimeObject * ___Object5, RuntimeObject * ___Object6, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_81 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, RuntimeObject * ___Object4, RuntimeObject * ___Object5, RuntimeObject * ___Object6, RuntimeObject * ___Object7, RuntimeObject * ___Object8, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_82 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_83 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_84 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_85 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_86 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, int32_t ___Int325, int32_t ___Int326, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_87 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int8_t ___SByte3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_88 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___StreamingContext3, RuntimeObject * ___Object4, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_89 (RuntimeObject * __this, RuntimeObject * ___Object1, int8_t ___SByte2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_90 (RuntimeObject * __this, RuntimeObject * ___Object1, int8_t ___SByte2, int8_t ___SByte3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_91 (RuntimeObject * __this, RuntimeObject * ___Object1, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___StreamingContext2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_92 (RuntimeObject * __this, int8_t ___SByte1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeObject * UnresolvedVirtualCall_93 (RuntimeObject * __this, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___StreamingContext1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static Playable_tC24692CDD1DD8F1D5C646035A76D2830A70214E2 UnresolvedVirtualCall_94 (RuntimeObject * __this, PlayableGraph_t2D5083CFACB413FA1BB13FF054BE09A5A55A205A ___PlayableGraph1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static PlayableOutput_tE735DC774F014DB1711310988F2F914C66520F82 UnresolvedVirtualCall_95 (RuntimeObject * __this, PlayableGraph_t2D5083CFACB413FA1BB13FF054BE09A5A55A205A ___PlayableGraph1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static Range_t70C133E51417BC822E878050C90A577A69B671DC UnresolvedVirtualCall_96 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 UnresolvedVirtualCall_97 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeMethodHandle_t8974037C4FE5F6C3AE7D3731057CDB2891A21C9A UnresolvedVirtualCall_98 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 UnresolvedVirtualCall_99 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_100 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_101 (RuntimeObject * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_21, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_102 (RuntimeObject * __this, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_21, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___KeyValuePair_22, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_103 (RuntimeObject * __this, uint8_t ___Byte1, uint8_t ___Byte2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_104 (RuntimeObject * __this, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA ___CustomAttributeNamedArgument1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_105 (RuntimeObject * __this, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___CustomAttributeTypedArgument1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_106 (RuntimeObject * __this, Guid_t ___Guid1, RuntimeObject * ___Object2, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_107 (RuntimeObject * __this, int16_t ___Int161, int16_t ___Int162, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_108 (RuntimeObject * __this, int16_t ___Int161, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_109 (RuntimeObject * __this, int16_t ___Int161, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_110 (RuntimeObject * __this, int32_t ___Int321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_111 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_112 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_113 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, int32_t ___Int323, int32_t ___Int324, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_114 (RuntimeObject * __this, int32_t ___Int321, int32_t ___Int322, int32_t ___Int323, int32_t ___Int324, int32_t ___Int325, int32_t ___Int326, int32_t ___Int327, int32_t ___Int328, RuntimeObject * ___Object9, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_115 (RuntimeObject * __this, int32_t ___Int321, int8_t ___SByte2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_116 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_117 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_118 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_119 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_120 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_121 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_122 (RuntimeObject * __this, RuntimeObject * ___Object1, int8_t ___SByte2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_123 (RuntimeObject * __this, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___ResourceLocator1, ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___ResourceLocator2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_124 (RuntimeObject * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_125 (RuntimeObject * __this, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock1, OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 ___OrderBlock2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_126 (RuntimeObject * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_127 (RuntimeObject * __this, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest1, RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 ___RenderRequest2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_128 (RuntimeObject * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static int8_t UnresolvedVirtualCall_129 (RuntimeObject * __this, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest1, WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 ___WorkRequest2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static float UnresolvedVirtualCall_130 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static float UnresolvedVirtualCall_131 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 UnresolvedVirtualCall_132 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 UnresolvedVirtualCall_133 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 UnresolvedVirtualCall_134 (RuntimeObject * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___TimeSpan1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint16_t UnresolvedVirtualCall_135 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint16_t UnresolvedVirtualCall_136 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint32_t UnresolvedVirtualCall_137 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint32_t UnresolvedVirtualCall_138 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint64_t UnresolvedVirtualCall_139 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static uint64_t UnresolvedVirtualCall_140 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_141 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_142 (RuntimeObject * __this, uint8_t ___Byte1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_143 (RuntimeObject * __this, CullingGroupEvent_t58E1718FD0A5FC5037538BD223DCF1385014185C ___CullingGroupEvent1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_144 (RuntimeObject * __this, double ___Double1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_145 (RuntimeObject * __this, Guid_t ___Guid1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_146 (RuntimeObject * __this, Guid_t ___Guid1, RuntimeObject * ___Object2, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_147 (RuntimeObject * __this, int16_t ___Int161, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_148 (RuntimeObject * __this, int32_t ___Int321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_149 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_150 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_151 (RuntimeObject * __this, int32_t ___Int321, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_152 (RuntimeObject * __this, int64_t ___Int641, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_153 (RuntimeObject * __this, int64_t ___Int641, RuntimeObject * ___Object2, int64_t ___Int643, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_154 (RuntimeObject * __this, intptr_t ___IntPtr1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_155 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_156 (RuntimeObject * __this, RuntimeObject * ___Object1, NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 ___NativeArray_12, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_157 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_158 (RuntimeObject * __this, RuntimeObject * ___Object1, int32_t ___Int322, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_159 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_160 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int32_t ___Int323, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_161 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int32_t ___Int323, RuntimeObject * ___Object4, RuntimeObject * ___Object5, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_162 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_163 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, RuntimeObject * ___Object4, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_164 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, int8_t ___SByte3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_165 (RuntimeObject * __this, RuntimeObject * ___Object1, RuntimeObject * ___Object2, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___StreamingContext3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_166 (RuntimeObject * __this, RuntimeObject * ___Object1, int8_t ___SByte2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_167 (RuntimeObject * __this, RuntimeObject * ___Object1, int8_t ___SByte2, DebugScreenCapture_t82C35632EAE92C143A87097DC34C70EFADB750B1 ___DebugScreenCapture3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_168 (RuntimeObject * __this, RuntimeObject * ___Object1, int8_t ___SByte2, int8_t ___SByte3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_169 (RuntimeObject * __this, RuntimeObject * ___Object1, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___StreamingContext2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_170 (RuntimeObject * __this, RuntimeObject * ___Object1, uint32_t ___UInt322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_171 (RuntimeObject * __this, int8_t ___SByte1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_172 (RuntimeObject * __this, int8_t ___SByte1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_173 (RuntimeObject * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___Scene1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_174 (RuntimeObject * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___Scene1, int32_t ___Int322, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_175 (RuntimeObject * __this, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___Scene1, Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___Scene2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_176 (RuntimeObject * __this, ScriptableRenderContext_tEDDDFFA7401E6860E1D82DFD779B7A101939F52D ___ScriptableRenderContext1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_177 (RuntimeObject * __this, ScriptableRenderContext_tEDDDFFA7401E6860E1D82DFD779B7A101939F52D ___ScriptableRenderContext1, RuntimeObject * ___Object2, RuntimeObject * ___Object3, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_178 (RuntimeObject * __this, float ___Single1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_179 (RuntimeObject * __this, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___StreamingContext1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_180 (RuntimeObject * __this, TypedReference_tE1755FC30D207D9552DE27539E907EE92C8C073A ___TypedReference1, RuntimeObject * ___Object2, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_181 (RuntimeObject * __this, uint16_t ___UInt161, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_182 (RuntimeObject * __this, uint32_t ___UInt321, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static void UnresolvedVirtualCall_183 (RuntimeObject * __this, uint64_t ___UInt641, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 UnresolvedVirtualCall_184 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static VoidTaskResult_t28D1A323545DE024749196472558F49F1AAF0004 UnresolvedVirtualCall_185 (RuntimeObject * __this, RuntimeObject * ___Object1, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 UnresolvedVirtualCall_186 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 UnresolvedVirtualCall_187 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
static WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 UnresolvedVirtualCall_188 (RuntimeObject * __this, const RuntimeMethod* method)
{
il2cpp_codegen_raise_execution_engine_exception(method);
il2cpp_codegen_no_return();
}
IL2CPP_EXTERN_C const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[];
const Il2CppMethodPointer g_UnresolvedVirtualMethodPointers[189] =
{
(const Il2CppMethodPointer) UnresolvedVirtualCall_0,
(const Il2CppMethodPointer) UnresolvedVirtualCall_1,
(const Il2CppMethodPointer) UnresolvedVirtualCall_2,
(const Il2CppMethodPointer) UnresolvedVirtualCall_3,
(const Il2CppMethodPointer) UnresolvedVirtualCall_4,
(const Il2CppMethodPointer) UnresolvedVirtualCall_5,
(const Il2CppMethodPointer) UnresolvedVirtualCall_6,
(const Il2CppMethodPointer) UnresolvedVirtualCall_7,
(const Il2CppMethodPointer) UnresolvedVirtualCall_8,
(const Il2CppMethodPointer) UnresolvedVirtualCall_9,
(const Il2CppMethodPointer) UnresolvedVirtualCall_10,
(const Il2CppMethodPointer) UnresolvedVirtualCall_11,
(const Il2CppMethodPointer) UnresolvedVirtualCall_12,
(const Il2CppMethodPointer) UnresolvedVirtualCall_13,
(const Il2CppMethodPointer) UnresolvedVirtualCall_14,
(const Il2CppMethodPointer) UnresolvedVirtualCall_15,
(const Il2CppMethodPointer) UnresolvedVirtualCall_16,
(const Il2CppMethodPointer) UnresolvedVirtualCall_17,
(const Il2CppMethodPointer) UnresolvedVirtualCall_18,
(const Il2CppMethodPointer) UnresolvedVirtualCall_19,
(const Il2CppMethodPointer) UnresolvedVirtualCall_20,
(const Il2CppMethodPointer) UnresolvedVirtualCall_21,
(const Il2CppMethodPointer) UnresolvedVirtualCall_22,
(const Il2CppMethodPointer) UnresolvedVirtualCall_23,
(const Il2CppMethodPointer) UnresolvedVirtualCall_24,
(const Il2CppMethodPointer) UnresolvedVirtualCall_25,
(const Il2CppMethodPointer) UnresolvedVirtualCall_26,
(const Il2CppMethodPointer) UnresolvedVirtualCall_27,
(const Il2CppMethodPointer) UnresolvedVirtualCall_28,
(const Il2CppMethodPointer) UnresolvedVirtualCall_29,
(const Il2CppMethodPointer) UnresolvedVirtualCall_30,
(const Il2CppMethodPointer) UnresolvedVirtualCall_31,
(const Il2CppMethodPointer) UnresolvedVirtualCall_32,
(const Il2CppMethodPointer) UnresolvedVirtualCall_33,
(const Il2CppMethodPointer) UnresolvedVirtualCall_34,
(const Il2CppMethodPointer) UnresolvedVirtualCall_35,
(const Il2CppMethodPointer) UnresolvedVirtualCall_36,
(const Il2CppMethodPointer) UnresolvedVirtualCall_37,
(const Il2CppMethodPointer) UnresolvedVirtualCall_38,
(const Il2CppMethodPointer) UnresolvedVirtualCall_39,
(const Il2CppMethodPointer) UnresolvedVirtualCall_40,
(const Il2CppMethodPointer) UnresolvedVirtualCall_41,
(const Il2CppMethodPointer) UnresolvedVirtualCall_42,
(const Il2CppMethodPointer) UnresolvedVirtualCall_43,
(const Il2CppMethodPointer) UnresolvedVirtualCall_44,
(const Il2CppMethodPointer) UnresolvedVirtualCall_45,
(const Il2CppMethodPointer) UnresolvedVirtualCall_46,
(const Il2CppMethodPointer) UnresolvedVirtualCall_47,
(const Il2CppMethodPointer) UnresolvedVirtualCall_48,
(const Il2CppMethodPointer) UnresolvedVirtualCall_49,
(const Il2CppMethodPointer) UnresolvedVirtualCall_50,
(const Il2CppMethodPointer) UnresolvedVirtualCall_51,
(const Il2CppMethodPointer) UnresolvedVirtualCall_52,
(const Il2CppMethodPointer) UnresolvedVirtualCall_53,
(const Il2CppMethodPointer) UnresolvedVirtualCall_54,
(const Il2CppMethodPointer) UnresolvedVirtualCall_55,
(const Il2CppMethodPointer) UnresolvedVirtualCall_56,
(const Il2CppMethodPointer) UnresolvedVirtualCall_57,
(const Il2CppMethodPointer) UnresolvedVirtualCall_58,
(const Il2CppMethodPointer) UnresolvedVirtualCall_59,
(const Il2CppMethodPointer) UnresolvedVirtualCall_60,
(const Il2CppMethodPointer) UnresolvedVirtualCall_61,
(const Il2CppMethodPointer) UnresolvedVirtualCall_62,
(const Il2CppMethodPointer) UnresolvedVirtualCall_63,
(const Il2CppMethodPointer) UnresolvedVirtualCall_64,
(const Il2CppMethodPointer) UnresolvedVirtualCall_65,
(const Il2CppMethodPointer) UnresolvedVirtualCall_66,
(const Il2CppMethodPointer) UnresolvedVirtualCall_67,
(const Il2CppMethodPointer) UnresolvedVirtualCall_68,
(const Il2CppMethodPointer) UnresolvedVirtualCall_69,
(const Il2CppMethodPointer) UnresolvedVirtualCall_70,
(const Il2CppMethodPointer) UnresolvedVirtualCall_71,
(const Il2CppMethodPointer) UnresolvedVirtualCall_72,
(const Il2CppMethodPointer) UnresolvedVirtualCall_73,
(const Il2CppMethodPointer) UnresolvedVirtualCall_74,
(const Il2CppMethodPointer) UnresolvedVirtualCall_75,
(const Il2CppMethodPointer) UnresolvedVirtualCall_76,
(const Il2CppMethodPointer) UnresolvedVirtualCall_77,
(const Il2CppMethodPointer) UnresolvedVirtualCall_78,
(const Il2CppMethodPointer) UnresolvedVirtualCall_79,
(const Il2CppMethodPointer) UnresolvedVirtualCall_80,
(const Il2CppMethodPointer) UnresolvedVirtualCall_81,
(const Il2CppMethodPointer) UnresolvedVirtualCall_82,
(const Il2CppMethodPointer) UnresolvedVirtualCall_83,
(const Il2CppMethodPointer) UnresolvedVirtualCall_84,
(const Il2CppMethodPointer) UnresolvedVirtualCall_85,
(const Il2CppMethodPointer) UnresolvedVirtualCall_86,
(const Il2CppMethodPointer) UnresolvedVirtualCall_87,
(const Il2CppMethodPointer) UnresolvedVirtualCall_88,
(const Il2CppMethodPointer) UnresolvedVirtualCall_89,
(const Il2CppMethodPointer) UnresolvedVirtualCall_90,
(const Il2CppMethodPointer) UnresolvedVirtualCall_91,
(const Il2CppMethodPointer) UnresolvedVirtualCall_92,
(const Il2CppMethodPointer) UnresolvedVirtualCall_93,
(const Il2CppMethodPointer) UnresolvedVirtualCall_94,
(const Il2CppMethodPointer) UnresolvedVirtualCall_95,
(const Il2CppMethodPointer) UnresolvedVirtualCall_96,
(const Il2CppMethodPointer) UnresolvedVirtualCall_97,
(const Il2CppMethodPointer) UnresolvedVirtualCall_98,
(const Il2CppMethodPointer) UnresolvedVirtualCall_99,
(const Il2CppMethodPointer) UnresolvedVirtualCall_100,
(const Il2CppMethodPointer) UnresolvedVirtualCall_101,
(const Il2CppMethodPointer) UnresolvedVirtualCall_102,
(const Il2CppMethodPointer) UnresolvedVirtualCall_103,
(const Il2CppMethodPointer) UnresolvedVirtualCall_104,
(const Il2CppMethodPointer) UnresolvedVirtualCall_105,
(const Il2CppMethodPointer) UnresolvedVirtualCall_106,
(const Il2CppMethodPointer) UnresolvedVirtualCall_107,
(const Il2CppMethodPointer) UnresolvedVirtualCall_108,
(const Il2CppMethodPointer) UnresolvedVirtualCall_109,
(const Il2CppMethodPointer) UnresolvedVirtualCall_110,
(const Il2CppMethodPointer) UnresolvedVirtualCall_111,
(const Il2CppMethodPointer) UnresolvedVirtualCall_112,
(const Il2CppMethodPointer) UnresolvedVirtualCall_113,
(const Il2CppMethodPointer) UnresolvedVirtualCall_114,
(const Il2CppMethodPointer) UnresolvedVirtualCall_115,
(const Il2CppMethodPointer) UnresolvedVirtualCall_116,
(const Il2CppMethodPointer) UnresolvedVirtualCall_117,
(const Il2CppMethodPointer) UnresolvedVirtualCall_118,
(const Il2CppMethodPointer) UnresolvedVirtualCall_119,
(const Il2CppMethodPointer) UnresolvedVirtualCall_120,
(const Il2CppMethodPointer) UnresolvedVirtualCall_121,
(const Il2CppMethodPointer) UnresolvedVirtualCall_122,
(const Il2CppMethodPointer) UnresolvedVirtualCall_123,
(const Il2CppMethodPointer) UnresolvedVirtualCall_124,
(const Il2CppMethodPointer) UnresolvedVirtualCall_125,
(const Il2CppMethodPointer) UnresolvedVirtualCall_126,
(const Il2CppMethodPointer) UnresolvedVirtualCall_127,
(const Il2CppMethodPointer) UnresolvedVirtualCall_128,
(const Il2CppMethodPointer) UnresolvedVirtualCall_129,
(const Il2CppMethodPointer) UnresolvedVirtualCall_130,
(const Il2CppMethodPointer) UnresolvedVirtualCall_131,
(const Il2CppMethodPointer) UnresolvedVirtualCall_132,
(const Il2CppMethodPointer) UnresolvedVirtualCall_133,
(const Il2CppMethodPointer) UnresolvedVirtualCall_134,
(const Il2CppMethodPointer) UnresolvedVirtualCall_135,
(const Il2CppMethodPointer) UnresolvedVirtualCall_136,
(const Il2CppMethodPointer) UnresolvedVirtualCall_137,
(const Il2CppMethodPointer) UnresolvedVirtualCall_138,
(const Il2CppMethodPointer) UnresolvedVirtualCall_139,
(const Il2CppMethodPointer) UnresolvedVirtualCall_140,
(const Il2CppMethodPointer) UnresolvedVirtualCall_141,
(const Il2CppMethodPointer) UnresolvedVirtualCall_142,
(const Il2CppMethodPointer) UnresolvedVirtualCall_143,
(const Il2CppMethodPointer) UnresolvedVirtualCall_144,
(const Il2CppMethodPointer) UnresolvedVirtualCall_145,
(const Il2CppMethodPointer) UnresolvedVirtualCall_146,
(const Il2CppMethodPointer) UnresolvedVirtualCall_147,
(const Il2CppMethodPointer) UnresolvedVirtualCall_148,
(const Il2CppMethodPointer) UnresolvedVirtualCall_149,
(const Il2CppMethodPointer) UnresolvedVirtualCall_150,
(const Il2CppMethodPointer) UnresolvedVirtualCall_151,
(const Il2CppMethodPointer) UnresolvedVirtualCall_152,
(const Il2CppMethodPointer) UnresolvedVirtualCall_153,
(const Il2CppMethodPointer) UnresolvedVirtualCall_154,
(const Il2CppMethodPointer) UnresolvedVirtualCall_155,
(const Il2CppMethodPointer) UnresolvedVirtualCall_156,
(const Il2CppMethodPointer) UnresolvedVirtualCall_157,
(const Il2CppMethodPointer) UnresolvedVirtualCall_158,
(const Il2CppMethodPointer) UnresolvedVirtualCall_159,
(const Il2CppMethodPointer) UnresolvedVirtualCall_160,
(const Il2CppMethodPointer) UnresolvedVirtualCall_161,
(const Il2CppMethodPointer) UnresolvedVirtualCall_162,
(const Il2CppMethodPointer) UnresolvedVirtualCall_163,
(const Il2CppMethodPointer) UnresolvedVirtualCall_164,
(const Il2CppMethodPointer) UnresolvedVirtualCall_165,
(const Il2CppMethodPointer) UnresolvedVirtualCall_166,
(const Il2CppMethodPointer) UnresolvedVirtualCall_167,
(const Il2CppMethodPointer) UnresolvedVirtualCall_168,
(const Il2CppMethodPointer) UnresolvedVirtualCall_169,
(const Il2CppMethodPointer) UnresolvedVirtualCall_170,
(const Il2CppMethodPointer) UnresolvedVirtualCall_171,
(const Il2CppMethodPointer) UnresolvedVirtualCall_172,
(const Il2CppMethodPointer) UnresolvedVirtualCall_173,
(const Il2CppMethodPointer) UnresolvedVirtualCall_174,
(const Il2CppMethodPointer) UnresolvedVirtualCall_175,
(const Il2CppMethodPointer) UnresolvedVirtualCall_176,
(const Il2CppMethodPointer) UnresolvedVirtualCall_177,
(const Il2CppMethodPointer) UnresolvedVirtualCall_178,
(const Il2CppMethodPointer) UnresolvedVirtualCall_179,
(const Il2CppMethodPointer) UnresolvedVirtualCall_180,
(const Il2CppMethodPointer) UnresolvedVirtualCall_181,
(const Il2CppMethodPointer) UnresolvedVirtualCall_182,
(const Il2CppMethodPointer) UnresolvedVirtualCall_183,
(const Il2CppMethodPointer) UnresolvedVirtualCall_184,
(const Il2CppMethodPointer) UnresolvedVirtualCall_185,
(const Il2CppMethodPointer) UnresolvedVirtualCall_186,
(const Il2CppMethodPointer) UnresolvedVirtualCall_187,
(const Il2CppMethodPointer) UnresolvedVirtualCall_188,
};
| [
"chiahsien@gmail.com"
] | chiahsien@gmail.com |
7ac4325cd911c5bdd82fb5f9edce7e3052ed79df | 5e819b4d8db56615d464b468675888830bebd670 | /runtime-src/proj.ios.rsdk/RSDK&Plugin/RSDKFramework/RSDKFramework.framework/Headers/ProtocolPush.h | d6a336155b0934a80426d0d216366b8f0ba9e995 | [] | no_license | GameFramework/frameworks | 192473f512601d47e55d143f007628a5ec5a5c0e | 14a1e5eb70e5176cbbcdeb807963ce96fa48f75c | refs/heads/master | 2021-07-05T09:37:52.312587 | 2017-09-27T09:44:57 | 2017-09-27T09:46:43 | 104,860,728 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,976 | h | /** @file PluginFactory.h
*/
#ifndef __CCX_PROTOCOL_PUSH_H__
#define __CCX_PROTOCOL_PUSH_H__
#include "PluginProtocol.h"
#include <map>
#include <list>
#include <string>
using namespace std;
namespace rsdk { namespace framework {
/** @brief Plugin_type enum, with inline docs */
typedef enum
{
kPushReceiveMessage = 0,/**value is callback of Receiving Message . */
} PushActionResultCode;
class ProtocolPush;
/**
*@class PushActionListener
*@brief the interface of Push callback
*/
class PushActionListener
{
public:
/**
*@brief the interface of Push callback
*@param the adatper of plugin
*@param the id of callback
*@param the information of callback
*/
virtual void onActionResult(ProtocolPush* pPlugin, PushActionResultCode code, const char* msg) = 0;
};
/**
* @class ProtocolPush
*/
class ProtocolPush : public PluginProtocol
{
public:
/**
*@brief start/register Push services
*@return void
*/
void startPush();
/**
*@brief close Push services
*@return void
*/
void closePush();
/**
*@brief set alias
*@param tags
*@return void
*/
void setAlias(string alias);
/**
*@brief del alias
*@param tags
*@return void
*/
void delAlias(string alias);
/**
*@brief set tag
*@param tags
*@return void
*/
void setTags(list<string> tags);
/**
*@brief delete tag
*@param tags
*@return void
*/
void delTags(list<string> tags);
/**
@brief set the result listener
@param pListener The callback object for push result
*/
void setListener(PushActionListener* listener);
/**
@brief get pListener The callback object for Push result
@return the listener
*/
PushActionListener* getListener();
std::string getPluginId();
};
}} // namespace rsdk { namespace framework {
#endif /* __CCX_PROTOCOL_PUSH_H__ */
| [
"469350450@qq.com"
] | 469350450@qq.com |
76fee77a72044cb2b9c21b674295990a70788566 | c1b697d18214deacaa8ec564950802e48d8a3a8e | /arduino/src/gps.cpp | 555bf43c35845807cbcef6136af432ed95e10c1b | [
"MIT"
] | permissive | swipswaps/Mohawk | 4d625be2f2c9b099b196e9879f9cce0f5e404fe0 | 330f8d4a394d2f919b0c31e87c67fca6fbc324c2 | refs/heads/master | 2023-01-04T00:44:58.101256 | 2020-07-18T07:17:10 | 2020-09-21T03:35:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,312 | cpp | #include <Arduino.h>
#include "mohawk.h"
#include "ublox.h"
GeoPointV *last_location;
long last_fix_millis = -1;
static char buffer[256];
static int buffer_index = 0;
void gps_init() {
ublox_init();
}
void gps_loop() {
while (Serial2.available()) {
// Read line
while (Serial2.available() && buffer_index < 256) {
const char ch = Serial2.read();
buffer[buffer_index] = ch;
if (buffer[0] != '$' && buffer[0] != 0xb5) {
// Serial.printf("Invalid gps prefix %x %c\n", buffer[0], buffer[0]);
Serial.printf("Unexpected: %c %x\n", buffer[0], buffer[0]);
buffer_index = 0;
break;
}
// Check for termination
if (buffer[0] == '$' && ch == '\n') {
buffer[buffer_index - 1] = '\0'; // "\r\n"
// Serial.printf("NMEA: %s\n", buffer);
parse_nmea(buffer);
buffer_index = 0;
break;
} else if (buffer[0] == 0xb5 && buffer_index == sizeof(NAV_PVT) + 3) { // sizeof(NAV_PVT) == 96
// Serial.printf("UBX: %x %x %x %x\n", buffer[0], buffer[1], buffer[2], buffer[3]);
parse_ublox(buffer);
buffer_index = 0;
break;
}
buffer_index++;
if (buffer_index >= 256) {
Serial.printf("Missing terminator\n");
buffer_index = 0;
}
}
}
}
| [
"platypii@gmail.com"
] | platypii@gmail.com |
d480cf54526585e9181caadf63b5dff6b27d4a3a | 270da718003fea9e9b73cc44b85c0a2c693b578a | /FlappyBird/src/Game.cpp | 7f0256659ec01c1b8f15440d66c28218839dcbc3 | [] | no_license | andregri/FlappyBird | b6c43394d59191030ce0d57076e86532b9cde505 | cb1f69942cac65c7617c1697d8f0ce8b5776fd46 | refs/heads/master | 2022-12-28T00:32:19.768401 | 2020-09-22T19:30:04 | 2020-09-22T19:30:04 | 302,754,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,001 | cpp | #include "Game.h"
#include <iostream>
#include <stdlib.h>
#include "Shader.h"
#include "Error.h"
#include "imgui/imgui.h"
Game::Game(const GLFWwindow* window, const bool keys[])
: m_Window(window), m_Keys(keys), m_Level(), m_Bird(keys), m_ScrollX(0), m_Index(0), m_Random(0),
m_PlayerHasControl(true)
{
//GLCall(glEnable(GL_DEPTH_TEST));
GLCall(glEnable(GL_BLEND));
GLCall(glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA));
for (int i = 0; i < 10; i += 2)
{
float r = (float)rand() / (float)RAND_MAX;
float x = m_Index * 3.0f;
float y = r * 4.0f;
m_Pipes[i].SetPosition(m_OFFSET + x, y);
m_Pipes[i + 1].SetPosition(m_OFFSET + x, y - 11.5f);
m_Index += 2;
}
}
Game::~Game()
{
}
void Game::OnUpdate()
{
if (m_PlayerHasControl)
{
--m_ScrollX;
m_Level.Update(m_ScrollX);
}
m_Bird.Update(m_PlayerHasControl);
for (int i = 0; i < 10; i++)
m_Pipes[i].Update(m_ScrollX);
if ((-m_ScrollX) > 300 && (-m_ScrollX) % 120 == 0)
{
float r = (float)rand() / (float)RAND_MAX;
float x = m_Index * 3.0f;
float y = r * 4.0f;
m_Pipes[m_Index % 10].SetPosition(m_OFFSET + x, y);
m_Pipes[(m_Index + 1) % 10].SetPosition(m_OFFSET + x, y - 11.5f);
m_Index += 2;
}
if (m_PlayerHasControl && Collision())
{
m_PlayerHasControl = false;
m_Bird.Fall();
}
}
void Game::OnRender()
{
m_Level.Render();
m_Bird.Render();
for (int i = 0; i < 10; ++i)
{
m_Pipes[i].Render(i % 2 == 0);
}
}
void Game::OnImGuiRender()
{
}
bool Game::Collision()
{
float bx = -m_ScrollX * 0.05f;
float bx0 = bx - m_Bird.size / 2.0f;
float bx1 = bx + m_Bird.size / 2.0f;
float by = m_Bird.GetPosition().y;
float by0 = by - m_Bird.size / 2.0f;
float by1 = by + m_Bird.size / 2.0f;
for (int i = 0; i < 10; ++i)
{
float px0 = m_Pipes[i].GetPosition().x;
float px1 = px0 + m_Pipes[i].width;
float py0 = m_Pipes[i].GetPosition().y;
float py1 = py0 + m_Pipes[i].height;
if (bx1 > px0 && bx0 < px1)
if (by1 > py0 && by0 < py1)
return true;
}
return false;
}
| [
"andrea.grillo96@live.com"
] | andrea.grillo96@live.com |
b874744a6e294f5074c38d6d3a38d39e58693fe6 | 13cdba7eabef5c8185f20de5e1e2a108c1825876 | /ALGOSPOT/BOGGLE/boggle.cpp | b366e15a6c8a068e39eb8a8eb268ed68902f6fb9 | [] | no_license | Hsue66/Algo | 7b43ec88a0fb90c01aa0bca74863daee4689f416 | 4c02a71edaf4ac994520f4ab017cb5f27edaffc2 | refs/heads/master | 2021-07-05T23:23:26.174809 | 2021-05-18T14:08:00 | 2021-05-18T14:08:00 | 43,046,465 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,727 | cpp | #include <stdio.h>
#include <string.h>
#include <iostream>
#include <map>
#include <vector>
using namespace std;
vector<vector<char> > Board(5,vector<char>(5,0));
vector<vector<pair<int,int> > > Pos(26,vector<pair<int,int> >());
int flag;
char Sentence[10];
int check[8][2] = {{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}};
void boggle(int nowX, int nowY, int idx){
for(int i=0; flag== 0 && i<8; i++){
int moveX = nowX +check[i][0];
int moveY = nowY +check[i][1];
//cout<<moveX<<","<<moveY<<endl;
if(0<=moveX && moveX<5 && 0<=moveY && moveY<5 && Sentence[idx] == Board[moveX][moveY]){
if(idx == strlen(Sentence)-1)
flag = 1;
else
boggle(moveX,moveY,idx+1);
}
}
}
int main(){
int testcase;
scanf("%d",&testcase);
for(; testcase>0; testcase--){
scanf("%*c");
Pos.clear();
for(int i=0; i<5; i++)
{
for(int j=0; j<5; j++){
scanf("%c",&Board[i][j]);
//Board[i][j] = Arr[k++];
Pos[Board[i][j]-'A'].push_back(make_pair(i,j));
}
scanf("%*c");
}
/*
for(int i=0; i<26; i++)
{
for(int j=0; j<Pos[i].size(); j++)
cout<<Pos[i][j].first<<","<<Pos[i][j].second<<" ";
cout<<endl;
}
for(int i=0; i<5; i++)
{
for(int j=0; j<5; j++){
cout<<Board[i][j]<<" ";
}
cout<<endl;
}
*/
int test;
scanf("%d",&test);
for(; test>0; test--){
scanf("%s",Sentence);
flag = 0;
for(int i=0; flag==0 && i<Pos[Sentence[0]-'A'].size(); i++){
//cout<<"Start "<<Pos[Sentence[0]-'A'][i].first <<Pos[Sentence[0]-'A'][i].second<<endl;
boggle(Pos[Sentence[0]-'A'][i].first,Pos[Sentence[0]-'A'][i].second,1);
}
if(flag == 1)
printf("%s %s\n",Sentence,"YES");
else
printf("%s %s\n",Sentence,"NO");
}
}
}
| [
"dufmaakedl@gmail.com"
] | dufmaakedl@gmail.com |
b959771f2f5562dfa474df9aa587cad3fadad966 | 6dfb27b6b6c5addd0bdb28c56e32174a7b9e079c | /207-Course Schedule /main.cpp | 6d2f112489fcbc2bf0b19a53a58ff541f17071c8 | [] | no_license | wondervictor/LeetCode-Solutions | cb4313a6c2e9290627fb362b72bf2ad6106f8e58 | 3f20837739595481e6a5e5b0ba869a406ec0607e | refs/heads/master | 2021-01-13T13:44:06.178067 | 2020-04-23T12:47:22 | 2020-04-23T12:47:22 | 76,328,898 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,653 | cpp | #include <iostream>
#include <vector>
#include <map>
#include <queue>
using namespace std;
class Solution {
public:
bool canFinish(int numCourses, vector<pair<int, int>>& prerequisites) {
map<int, vector<int> > edges;
vector<int> inNodeNums(numCourses, 0);
for(auto i: prerequisites) {
if (edges[i.first].size()==0) {
vector<int> s = {i.second};
edges[i.first] = s;
} else {
edges[i.first].push_back(i.second);
}
if (!inNodeNums[i.second]) {
inNodeNums[i.second] = 1;
} else {
inNodeNums[i.second] += 1;
}
if (!inNodeNums[i.first]) {
inNodeNums[i.first] = 0;
}
}
queue<int> nodes;
int leftNodeNum = numCourses;
for (int i = 0; i < numCourses; i ++) {
if (inNodeNums[i] == 0) {
nodes.push(i);
}
}
while (nodes.size()) {
int i = nodes.front();
nodes.pop();
vector<int> subEdges = edges[i];
for(auto m: subEdges) {
inNodeNums[m] -= 1;
if (inNodeNums[m] == 0) {
nodes.push(m);
}
}
vector<int>().swap(edges[i]);
numCourses --;
}
return numCourses == 0;
}
};
int main() {
vector<pair<int, int> > m = {pair<int,int>(0,1), pair<int,int>(1,2), pair<int,int>(2,3), pair<int,int>(3,4), pair<int,int>(4,3)};
Solution sol;
cout<<sol.canFinish(5, m);
return 0;
} | [
"victorchanchina@gmail.com"
] | victorchanchina@gmail.com |
209555de1b7f2405ffa8afef28306a1959cf4757 | 87648d983bb037e2b2e76bb85831bdea151a5065 | /src/Corso.cpp | 802ea7c32b5212e06ac89f4a15c7d4d2049280df | [] | no_license | dii-programmazione-avanzata/esame-16062020-SebastianoTaddei | 2ef7fd7175c8cde00bb13788f15013ac24069854 | 89dab1cd248914feb5c54e7619f50196777356e0 | refs/heads/master | 2022-10-20T01:18:34.266809 | 2020-06-16T11:28:42 | 2020-06-16T11:28:42 | 272,636,578 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,094 | cpp | //
// Created by Sebastiano Taddei on 16/06/2020.
//
#include <iostream>
#include "../include/Corso.h"
Corso::Corso(const string &nome, const int &anno, Docente &docente) {
this->nome = nome;
this->anno = anno;
this->docente = &docente;
docente.setCorsi(this->nome);
studenti = nullptr;
lezioni = nullptr;
aule = nullptr;
stuIndex = 0;
lezIndex = 0;
aulIndex = 0;
}
void Corso::addStudente(Studente &studente) {
++stuIndex;
if (studenti != nullptr) {
auto **tmp = new Studente *[stuIndex];
for (int i = 0; i < stuIndex-1; ++i) {
tmp[i] = studenti[i];
}
delete [] studenti;
studenti = tmp;
} else {
studenti = new Studente *[stuIndex];
}
this->studenti[stuIndex-1] = &studente;
}
void Corso::addLezione(Lezione &lezione) {
++lezIndex;
if (lezioni != nullptr) {
auto **tmp = new Lezione *[lezIndex];
for (int i = 0; i < lezIndex-1; ++i) {
tmp[i] = lezioni[i];
}
delete [] lezioni;
lezioni = tmp;
} else {
lezioni = new Lezione *[lezIndex];
}
this->lezioni[lezIndex-1] = &lezione;
lezione.setCorso(nome);
++aulIndex;
if (aule != nullptr) {
bool check = true;
for (int j = 0; j < aulIndex-1; ++j) {
if (aule[j] == lezione.getAula().ID) {
check = false;
}
}
if (!check)
--aulIndex;
if (check) {
auto *tmp = new string [aulIndex];
for (int i = 0; i < aulIndex-1; ++i) {
tmp[i] = aule[i];
}
delete [] aule;
aule = tmp;
this->aule[aulIndex-1] = lezione.getAula().ID;
lezione.getAula().setCorsi(nome);
}
} else {
aule = new string [aulIndex];
this->aule[aulIndex-1] = lezione.getAula().ID;
lezione.getAula().setCorsi(nome);
}
}
void Corso::printDocente() {
std::cout << "Corso di " << nome << " tenuto dal docente " << docente->getNome() << " ";
std::cout << docente->getCognome() << endl;
}
void Corso::printAule() {
std::cout << "Il corso di " << nome << " è tenuto nelle aule:" << endl;
for (int i = 0; i < aulIndex; ++i) {
std::cout << " - " << aule[i] << endl;
}
}
void Corso::printCorso() {
cout << "Corso di " << nome << endl;
cout << "Docente: " << docente->getNome() << " " << docente->getCognome() << endl;
cout << "Anno: " << anno << endl;
cout << "Studenti:" << endl;
for (int i = 0; i < 2; ++i) {
cout << " - " << studenti[i]->getNome() << " " << studenti[i]->getCognome() << endl;
}
cout << "Lezioni:" << endl;
for (int i = 0; i < 2; ++i) {
cout << " - " << lezioni[i]->getData().giorno << "/" << lezioni[i]->getData().mese << "/";
cout << lezioni[i]->getData().anno << ", " << lezioni[i]->getOraInizio() << ":00-";
cout << lezioni[i]->getDurata()+lezioni[i]->getOraInizio() << ":00, aula " << lezioni[i]->getAula().ID << endl;
}
}
| [
"sebastianotaddei@gmail.com"
] | sebastianotaddei@gmail.com |
3a8e9335ad9949e05cfe8972e6ca91d5d9c7e9e0 | 53280d1dca859853105e122e3932f04f661061e3 | /2/src/myGL.cpp | 4454d4a9801a244901abb1e5e473ecc9dcbb9dc1 | [] | no_license | yongduek/myGraphics | a661e5a4bd0d88d493568b248b6ed833a40ec200 | 2c8f50969c3e4f383d2c6a58bdf9bde1a50562ac | refs/heads/master | 2021-01-10T19:26:43.644934 | 2015-03-20T03:06:49 | 2015-03-20T03:06:49 | 31,352,198 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,472 | cpp | #include "myGL.h"
#include <stdlib.h>
#include <math.h>
#include <algorithm>
//typedef unsigned char uchar;
//
//struct mPointi {
// int x, y;
// mPointi(int xx=0, int yy=0) : x(xx), y(yy) {}
//};
//struct mColor {
// uchar r, g, b;
// mColor (uchar rr=0, uchar gg=0, uchar bb=0) : r(rr), g(gg), b(bb) { }
//};
////struct PointColor : public Pointi, public mColor {};
//struct PointColor {
// mPointi p;
// mColor c;
// PointColor(mPointi pp=mPointi(0,0), mColor cc=mColor(0,0,0)) { p=pp; c=cc; }
//};
//
//struct mWindow {
// float l, r, b, t;
// void set(float ll, float rr, float bb, float tt) {l=ll, r=rr, b=bb, t=tt;}
//};
//struct myCanvas {
//uchar *pixels; // RGB
//const int width=800, height=600;
//const int bpp = 3;
//
//mWindow viewport;
//bool flagViewport = false;
//
//mWindow worldWindow;
//bool flagWorldWindow = false;
//
//const mColor mR(255,0,0), mG(0,255,0), mB(0,0,255);
mColor myCanvas::randomColor() {
return mColor(random()%256, random()%256, random()%256);
}
float lip (int x, int r1, int r2, int x1, int x2)
{
float t = fabs( (x-x1)/(float)(x2-x1) );
float r = (1. - t)*r1 + t*r2;
return r;
}
mColor lip (int x, mColor c1, mColor c2, int x1, int x2)
{
float t = fabs( (x-x1)/(float)(x2-x1) );
mColor c;
c.r = lip(x,c1.r, c2.r, x1, x2);
c.g = lip(x,c1.g, c2.g, x1, x2);
c.b = lip(x,c1.b, c2.b, x1, x2);
return c;
}
void myCanvas::drawPixel(int x0, int y0, uchar r, uchar g, uchar b)
{
if (x0<0 || x0>=width || y0<0 || y0>=height) return;
int index = bpp*(width*y0 + x0);
pixels [index + 0] = r;
pixels [index + 1] = g;
pixels [index + 2] = b;
}
void myCanvas::drawPixel(int x0, int y0, mColor c)
{
drawPixel(x0, y0, c.r, c.g, c.b);
}
void myCanvas::drawLineX (int x1, int y1, int x2, int y2, mColor c1, mColor c2)
{
int dx = x1<x2 ? 1 : -1;
float m = (y2-y1)/(float)(x2-x1);
float b = -m*x1 + y1;
mColor c;
for (int x=x1; x!=x2; x+=dx) {
int y = (int)roundf(m*x+b);
c = lip (x, c1, c2, x1, x2);
drawPixel(x, y, c);
}
drawPixel(x2, y2, c2);
}
void myCanvas::drawLineY (int x1, int y1, int x2, int y2, mColor c1, mColor c2)
{
int dy = y1<y2 ? +1 : -1;
float m = (x2-x1)/(float)(y2-y1);
float b = -m*y1 + x1;
mColor c;
for (int y=y1; y!=y2; y+=dy) {
int x = (int)roundf(m*y+b);
c = lip (y, c1, c2, y1, y2);
drawPixel(x, y, c);
}
drawPixel(x2, y2, c2);
}
void myCanvas::drawLine (int x1, int y1, int x2, int y2, mColor c1, mColor c2)
{
int dx = x2 - x1;
int dy = y2 - y1;
if (fabs(dy) < fabs(dx))
drawLineX(x1, y1, x2, y2, c1, c2);
else
drawLineY(x1, y1, x2, y2, c1, c2);
}
void myCanvas::drawLine (mPointi p1, mPointi p2, mColor c1, mColor c2)
{
// cerr << "drawLine(" << p1.x << " " << p1.y << " : " << p2.x << " " << p2.y << ") " << endl;
int dx = p2.x - p1.x;
int dy = p2.y - p1.y;
if (fabs(dy) < fabs(dx))
drawLineX(p1.x, p1.y, p2.x, p2.y, c1, c2);
else
drawLineY(p1.x, p1.y, p2.x, p2.y, c1, c2);
}
void myCanvas::drawLineX (vector<PointColor>& pcv,
int x1, int y1, int x2, int y2, mColor c1, mColor c2)
{
int dx = x1<x2 ? 1 : -1;
float m = (y2-y1)/(float)(x2-x1);
float b = -m*x1 + y1;
mColor c;
for (int x=x1; x!=x2; x+=dx) {
int y = roundf(m*x+b);
c = lip (x, c1, c2, x1, x2);
//drawPixel(x, y, c);
PointColor pc;
pc.p = mPointi(x,y);
pc.c = c;
pcv.push_back(pc);
}
}
void myCanvas::drawLineY (vector<PointColor>& pcv,
int x1, int y1, int x2, int y2, mColor c1, mColor c2)
{
int dy = y1<y2 ? +1 : -1;
float m = (x2-x1)/(float)(y2-y1);
float b = -m*y1 + x1;
mColor c;
for (int y=y1; y!=y2; y+=dy) {
int x = roundf(m*y+b);
c = lip (y, c1, c2, y1, y2);
//drawPixel(x, y, c);
PointColor pc;
pc.p = mPointi(x,y);
pc.c = c;
//drawPixel(x, y, c);
pcv.push_back(pc);
}
}
void myCanvas::drawLine (vector<PointColor>& pcv,
int x1, int y1, int x2, int y2, mColor c1, mColor c2)
{
int dx = x2 - x1;
int dy = y2 - y1;
if (fabs(dy) < fabs(dx))
drawLineX(pcv, x1, y1, x2, y2, c1, c2);
else
drawLineY(pcv, x1, y1, x2, y2, c1, c2);
}
void myCanvas::drawTriangle (int x1, int y1, int x2, int y2, int x3, int y3,
mColor c1, mColor c2, mColor c3)
{
drawLine(x1,y1,x2,y2,c1,c2);
drawLine(x1,y1,x3,y3,c1,c3);
drawLine(x3,y3,x2,y2,c3,c2);
}
void myCanvas::drawTriangle (mPointi p1, mPointi p2, mPointi p3,
mColor c1, mColor c2, mColor c3)
{
drawLine (p1, p2, c1, c2);
drawLine (p2, p3, c2, c3);
drawLine (p3, p1, c3, c1);
}
bool comparePointColor (PointColor a, PointColor b)
{
// return a.p.y < b.p.y;
return a.p.y==b.p.y ? a.p.x < b.p.x : a.p.y < b.p.y;
}
void myCanvas::drawTriangleFill (int x1, int y1, int x2, int y2, int x3, int y3,
mColor c1, mColor c2, mColor c3)
{
vector<PointColor> pcv;
drawLine(pcv, x1,y1,x2,y2,c1,c2);
drawLine(pcv, x1,y1,x3,y3,c1,c3);
drawLine(pcv, x3,y3,x2,y2,c3,c2);
pcv.push_back(PointColor(mPointi(x1,y1), c1));
pcv.push_back(PointColor(mPointi(x2,y2), c2));
pcv.push_back(PointColor(mPointi(x3,y3), c3));
std::sort (pcv.begin(), pcv.end(), comparePointColor);
vector<PointColor>::iterator it=pcv.begin();
while (it != pcv.end()) {
// PointColor pc = *it;
// cerr << pc.p.x << ' ' << pc.p.y << endl;
vector<PointColor> line;
line.push_back(*it);
while (it!=pcv.end() && it->p.y == line[0].p.y)
line.push_back(*it++);
// if (line[0].p.y > 405 && line[0].p.y < 414) {
// for (int i=0; i<line.size(); i++)
// cerr << "(" << line[i].p.x << "," << line[i].p.y <<")";
// cerr << endl;
// }
if ( (line.size()==1)
|| (line.size()==2 && line[0].p.x==line[1].p.x && line[0].p.y==line[1].p.y) ) {
drawPixel(line[0].p.x, line[0].p.y, line[0].c.r, line[0].c.g, line[0].c.b);
// drawCircle(line[0].p.x, line[0].p.y, 5);
}
else {
drawLine(line[0].p, line[line.size()-1].p, line[0].c, line[line.size()-1].c);
}
}
return;
}
void myCanvas::drawTriangleFill (mPointi p1, mPointi p2, mPointi p3,
mColor c1, mColor c2, mColor c3)
{
drawTriangleFill(p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, c1, c2, c3);
}
void myCanvas::drawCircle (int x0, int y0, int r, mColor c1, int nSplit)
{
mPointi p(x0+r, y0 + 0);
for (int i=1; i<=nSplit; i++) {
mPointi q (round(x0 + r*cos(i*2*M_PI/nSplit)),
round(y0 + r*sin(i*2*M_PI/nSplit)));
drawLine(p, q, c1, c1);
p = q;
}
}
void myCanvas::drawCircleFilled (int x0, int y0, int r, mColor c1, int nSplit)
{
mPointi p0(x0, y0);
vector<mPointi> p;
for (int i=0; i<=nSplit; i++) {
mPointi q (round(x0 + r*cos(i*2*M_PI/nSplit)),
round(y0 + r*sin(i*2*M_PI/nSplit)));
p.push_back(q);
}
for (int i=1; i<p.size(); i++)
drawTriangleFill(p0, p[i-1], p[i], c1, c1, c1);
}
// EOF // | [
"yongduek.seo@gmail.com"
] | yongduek.seo@gmail.com |
9973a57e5399a114390eeb2e8762221c95f72058 | 5e2aec2f1a4066738cd962d7b44797eecd37fbbf | /liblonely/src/gamedata/LaylaPalettes.cpp | 96f4f11af8d8a92f39f13fffe23f8822b3aba379 | [] | no_license | suppertails66/lonely | 119dcc030104b5a603b561f49e83ae2c7bb06845 | 10cb7bc2cbad06e8c41fab7ed484d9ea5a938b8f | refs/heads/master | 2021-01-12T06:07:46.773284 | 2017-01-10T05:48:06 | 2017-01-10T05:48:06 | 77,306,625 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,771 | cpp | #include "gamedata/LaylaPalettes.h"
#include "gamedata/LaylaPatternToken.h"
#include "util/StringConversion.h"
namespace Lonely {
const char* LaylaPalettes::offsetFilePalettesName_ = "Palettes";
LaylaPalettes::LaylaPalettes() {
}
LaylaPalettes::LaylaPalettes(const NesRom& rom,
const LaylaOffsetFile& offsets) {
Tstring palettesName(offsetFilePalettesName_);
standardPaletteOffset_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"StandardPaletteOffset"));
bossPaletteOffset_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"BossPaletteOffset"));
caveReplacementTableOffset_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"CaveReplacementTableOffset"));
numCaveReplacementTableEntries_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"NumCaveReplacementTableEntries"));
baseReplacementTableOffset_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"BaseReplacementTableOffset"));
numBaseReplacementTableEntries_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"NumBaseReplacementTableEntries"));
bossReplacementTableOffset_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"BossReplacementTableOffset"));
numBossReplacementTableEntries_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"NumBossReplacementTableEntries"));
laylaFadeTableOffset_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"LaylaFadeTableOffset"));
numLaylaFadeTableEntries_ = StringConversion::stringToInt(
offsets.ini().valueOfKey(palettesName,
"NumLaylaFadeTableEntries"));
standardPalette_.readFullPaletteSet(rom.directRead(standardPaletteOffset_));
bossPalette_.readFullPaletteSet(rom.directRead(bossPaletteOffset_));
// caveReplacementBackgroundPalettes_.resize(numCaveReplacementTableEntries);
// baseReplacementBackgroundPalettes_.resize(numBaseReplacementTableEntries);
// bossReplacementSpritePalettes_.resize(numBossReplacementTableEntries);
readPatchTable(caveReplacementBackgroundPalettes_,
rom.directRead(caveReplacementTableOffset_),
caveReplacementBackgroundStartIndex_,
numCaveReplacementTableEntries_,
caveReplacementBackgroundColorsPerEntry_);
readPatchTable(baseReplacementBackgroundPalettes_,
rom.directRead(baseReplacementTableOffset_),
baseReplacementBackgroundStartIndex_,
numBaseReplacementTableEntries_,
baseReplacementBackgroundColorsPerEntry_);
readPatchTable(bossReplacementSpritePalettes_,
rom.directRead(bossReplacementTableOffset_),
bossReplacementSpriteStartIndex_,
numBossReplacementTableEntries_,
bossReplacementSpriteColorsPerEntry_);
readPatchTable(laylaFadeSpritePalettes_,
rom.directRead(laylaFadeTableOffset_),
laylaFadeStartIndex_,
numLaylaFadeTableEntries_,
laylaFadeColorsPerEntry_);
}
void LaylaPalettes::exportToRom(NesRom& rom) const {
standardPalette_.writeToData(rom.directWrite(standardPaletteOffset_));
bossPalette_.writeToData(rom.directWrite(bossPaletteOffset_));
writePatchTable(rom.directWrite(caveReplacementTableOffset_),
caveReplacementBackgroundPalettes_);
writePatchTable(rom.directWrite(baseReplacementTableOffset_),
baseReplacementBackgroundPalettes_);
writePatchTable(rom.directWrite(bossReplacementTableOffset_),
bossReplacementSpritePalettes_);
writePatchTable(rom.directWrite(laylaFadeTableOffset_),
laylaFadeSpritePalettes_);
}
int LaylaPalettes::save(Tstring& data) const {
// int byteCount = 0;
SaveHelper saver(data,
DataChunkIDs::LaylaPalettes,
0);
SaveHelper::saveInt(data, standardPaletteOffset_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, bossPaletteOffset_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, caveReplacementTableOffset_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, numCaveReplacementTableEntries_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, baseReplacementTableOffset_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, numBaseReplacementTableEntries_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, bossReplacementTableOffset_,
ByteSizes::uint32Size);
SaveHelper::saveInt(data, numBossReplacementTableEntries_,
ByteSizes::uint32Size);
Tbyte colorDataBuffer[NesColorData::size];
standardPalette_.writeToData(colorDataBuffer);
data += Tstring((char*)(colorDataBuffer), NesColorData::size);
bossPalette_.writeToData(colorDataBuffer);
data += Tstring((char*)(colorDataBuffer), NesColorData::size);
savePatchTable(data,
caveReplacementBackgroundPalettes_);
savePatchTable(data,
baseReplacementBackgroundPalettes_);
savePatchTable(data,
bossReplacementSpritePalettes_);
savePatchTable(data,
laylaFadeSpritePalettes_);
return saver.finalize();
}
int LaylaPalettes::load(const Tbyte* data) {
int byteCount = 0;
LoadHelper loader(data,
byteCount);
standardPaletteOffset_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
bossPaletteOffset_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
caveReplacementTableOffset_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
numCaveReplacementTableEntries_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
baseReplacementTableOffset_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
numBaseReplacementTableEntries_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
bossReplacementTableOffset_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
numBossReplacementTableEntries_ = LoadHelper::loadInt(data, byteCount,
ByteSizes::uint32Size);
byteCount += standardPalette_.readFromData(data + byteCount);
byteCount += bossPalette_.readFromData(data + byteCount);
byteCount += loadPatchTable(caveReplacementBackgroundPalettes_,
data + byteCount);
byteCount += loadPatchTable(baseReplacementBackgroundPalettes_,
data + byteCount);
byteCount += loadPatchTable(bossReplacementSpritePalettes_,
data + byteCount);
byteCount += loadPatchTable(laylaFadeSpritePalettes_,
data + byteCount);
return byteCount;
}
int LaylaPalettes::cavePatchIndex(int levelNum) const {
return (levelNum % numCaveReplacementTableEntries_);
}
int LaylaPalettes::basePatchIndex(int levelNum) const {
return (levelNum % numBaseReplacementTableEntries_);
}
int LaylaPalettes::bossPatchIndex(int levelNum) const {
return (levelNum % numBossReplacementTableEntries_);
}
NesColorData LaylaPalettes::generateCavePalette(int levelNum) const {
NesColorData palettes = standardPalette_;
LaylaPalettePatch patch = caveReplacementBackgroundPalettes_
[cavePatchIndex(levelNum)];
patch.apply(palettes.backgroundPalettes());
palettes.spritePalettes().palette(1)
= palettes.backgroundPalettes().palette(1);
return palettes;
}
NesColorData LaylaPalettes::generateBasePalette(int levelNum) const {
NesColorData palettes = standardPalette_;
LaylaPalettePatch patch = baseReplacementBackgroundPalettes_
[basePatchIndex(levelNum)];
patch.apply(palettes.backgroundPalettes());
return palettes;
}
NesColorData LaylaPalettes::generateBossPalette(int levelNum) const {
NesColorData palettes = bossPalette_;
LaylaPalettePatch patch = bossReplacementSpritePalettes_
[bossPatchIndex(levelNum)];
patch.apply(palettes.spritePalettes());
return palettes;
}
void LaylaPalettes::readPatchTable(PalettePatchArray& patches,
const Tbyte* src,
int startIndex,
int numEntries,
int colorsPerEntry) {
patches.clear();
patches.resize(numEntries);
for (int i = 0; i < numEntries; i++) {
for (int j = 0; j < colorsPerEntry; j++) {
NesColor color = NesColor(*(src++));
patches[i].setAndEnableColor(j + startIndex, color);
}
}
}
void LaylaPalettes::writePatchTable(
Tbyte* dst,
const PalettePatchArray& patches) {
for (int i = 0; i < patches.size(); i++) {
const LaylaPalettePatch& patch = patches[i];
for (int j = 0; j < patch.numColorsPerPatch(); j++) {
if (patch.colorEnabled(j)) {
*(dst++) = patch.color(j).nativeValue();
}
}
}
}
int LaylaPalettes::savePatchTable(Tstring& data,
const PalettePatchArray& patches) {
int byteCount = 0;
byteCount += SaveHelper::saveInt(data,
patches.size(),
ByteSizes::uint8Size);
for (int i = 0; i < patches.size(); i++) {
byteCount += patches[i].save(data);
}
return byteCount;
}
int LaylaPalettes::loadPatchTable(PalettePatchArray& patches,
const Tbyte* data) {
int byteCount = 0;
patches.resize(LoadHelper::loadInt(data, byteCount,
ByteSizes::uint8Size));
for (int i = 0; i < patches.size(); i++) {
byteCount += patches[i].load(data + byteCount);
}
return byteCount;
}
NesColorData LaylaPalettes::generateAreaPalette(
Tbyte areaNum,
int levelNum) const {
if (areaNum & SetAreaToken::bossFlag) {
return generateBossPalette(levelNum);
}
else if (areaNum & SetAreaToken::baseFlag) {
return generateBasePalette(levelNum);
}
else {
return generateCavePalette(levelNum);
}
}
NesColorData& LaylaPalettes::standardPalette() {
return standardPalette_;
}
NesColorData& LaylaPalettes::bossPalette() {
return bossPalette_;
}
LaylaPalettePatch& LaylaPalettes
::caveReplacementBackgroundPalette(int index) {
return caveReplacementBackgroundPalettes_[index];
}
LaylaPalettePatch& LaylaPalettes
::baseReplacementBackgroundPalette(int index) {
return baseReplacementBackgroundPalettes_[index];
}
LaylaPalettePatch& LaylaPalettes
::bossReplacementSpritePalette(int index) {
return bossReplacementSpritePalettes_[index];
}
LaylaPalettePatch& LaylaPalettes
::laylaFadeSpritePalette(int index) {
return laylaFadeSpritePalettes_[index];
}
};
| [
"suppertails66@gmail.com"
] | suppertails66@gmail.com |
b9cd2f63b582674ba1e7392d6dd187e527b85b63 | 6059ef7bc48ab49c938f075dc5210a19ec08538e | /src/plugins/poshuku/plugins/webkitview/xmlsettingsmanager.h | 251d08f228f42c634a008e8a9e5aaf33aa912fd2 | [
"BSL-1.0"
] | permissive | Laura-lc/leechcraft | 92b40aff06af9667aca9edd0489407ffc22db116 | 8cd066ad6a6ae5ee947919a97b2a4dc96ff00742 | refs/heads/master | 2021-01-13T19:34:09.767365 | 2020-01-11T15:25:31 | 2020-01-11T15:25:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,054 | h | /**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
* Permission is hereby granted, free of charge, to any person or organization
* obtaining a copy of the software and accompanying documentation covered by
* this license (the "Software") to use, reproduce, display, distribute,
* execute, and transmit the Software, and to prepare derivative works of the
* Software, and to permit third-parties to whom the Software is furnished to
* do so, all subject to the following:
*
* The copyright notices in the Software and this entire statement, including
* the above license grant, this restriction and the following disclaimer,
* must be included in all copies of the Software, in whole or in part, and
* all derivative works of the Software, unless such copies or derivative
* works are solely in the form of machine-executable object code generated by
* a source language processor.
*
* 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
* SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************/
#pragma once
#include <xmlsettingsdialog/basesettingsmanager.h>
namespace LC
{
namespace Poshuku
{
namespace WebKitView
{
class XmlSettingsManager : public Util::BaseSettingsManager
{
Q_OBJECT
XmlSettingsManager ();
public:
static XmlSettingsManager& Instance ();
protected:
QSettings* BeginSettings () const override;
void EndSettings (QSettings*) const override;
};
}
}
}
| [
"0xd34df00d@gmail.com"
] | 0xd34df00d@gmail.com |
a0b49e1d99375ea5aa7e910082ae16521252b82a | 205e0d2d8b6635422e094b01354c083d43790c27 | /main.cpp | 7877f4171962d85813b8fa723fc10ba9020ba8b4 | [] | no_license | Tonikawa/Arvore_AVL | 52bc0473309fcf8b4026e615c2e4de0f6839bfbb | 0fb6102d955a62352724ac2255ae2ce5d22d948a | refs/heads/main | 2023-09-01T12:45:47.272426 | 2021-11-08T00:55:55 | 2021-11-08T00:55:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,669 | cpp | // Fabio Silveira Tanikawa
// TIA: 32092563
// Júlia Carvalho de Souza Castro
// TIA: 32022298
// Gabriel Batista Cristiano
// TIA: 32090722
#include <iostream>
#include "AVLNode.h"
#include "AVLTree.h"
using namespace std;
int main() {
AVLTree* treeA = new AVLTree;
AVLTree* treeB = new AVLTree;
AVLTree* treeC = new AVLTree;
AVLTree* treeD = new AVLTree;
cout << "----- Questao 1 -----" << endl;
cout << "Inserindo os nós: 1, 2 e 3" << endl;
treeA->inserir(1);
treeA->inserir(2);
treeA->inserir(3);
cout << "Arvore Balanceada: " << endl;
treeA->preOrder();
cout << "------------------------\n\n";
cout << "----- Questao 2 -----" << endl;
cout << "Inserindo os nós: 3, 2 e 1" << endl;
treeB->inserir(3);
treeB->inserir(2);
treeB->inserir(1);
cout << "Arvore Balanceada: " << endl;
treeB->preOrder();
cout << "------------------------\n\n";
cout << "----- Questao 3 -----" << endl;
cout << "Inserindo os nós: 3, 1 e 2" << endl;
treeC->inserir(3);
treeC->inserir(1);
treeC->inserir(2);
cout << "Arvore Balanceada: " << endl;
treeC->preOrder();
cout << "------------------------\n\n";
cout << "----- Questao 4 -----" << endl;
cout << "Inserindo os nós: 1, 3 e 2" << endl;
treeD->inserir(1);
treeD->inserir(3);
treeD->inserir(2);
cout << "Arvore Balanceada: " << endl;
treeD->preOrder();
cout << "------------------------\n\n";
delete treeA;
delete treeB;
delete treeC;
delete treeD;
system("pause");
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
20f92a3286e55c331187d24b5bef821be7dfd609 | 2485ffe62134cd39d4c5cf12f8e73ca9ef781dd1 | /contrib/boost/describe/include/boost/describe.hpp | de3c8835c176e7439e44a5dfe0acb168828ec1d2 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | alesapin/XMorphy | 1aed0c8e0f8e74efac9523f4d6e585e5223105ee | aaf1d5561cc9227691331a515ca3bc94ed6cc0f1 | refs/heads/master | 2023-04-16T09:27:58.731844 | 2023-04-08T17:15:26 | 2023-04-08T17:15:26 | 97,373,549 | 37 | 5 | MIT | 2023-04-08T17:15:27 | 2017-07-16T09:35:41 | C++ | UTF-8 | C++ | false | false | 765 | hpp | #ifndef BOOST_DESCRIBE_HPP_INCLUDED
#define BOOST_DESCRIBE_HPP_INCLUDED
// Copyright 2020 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/describe/enumerators.hpp>
#include <boost/describe/bases.hpp>
#include <boost/describe/members.hpp>
#include <boost/describe/enum.hpp>
#include <boost/describe/class.hpp>
#include <boost/describe/modifiers.hpp>
#include <boost/describe/enum_to_string.hpp>
#include <boost/describe/enum_from_string.hpp>
#include <boost/describe/operators.hpp>
#include <boost/describe/descriptor_by_name.hpp>
#include <boost/describe/descriptor_by_pointer.hpp>
#include <boost/describe/modifier_description.hpp>
#endif // #ifndef BOOST_DESCRIBE_HPP_INCLUDED
| [
"alesapin@gmail.com"
] | alesapin@gmail.com |
c6932ee4652fdfd1c47f84257e1bc0033806ba2a | d85a2bd02006fb4b33e59fd5f3ed94593763fde8 | /src/main/include/subsystems/Limelight.h | 8ec47080039e9400096aae3697f122696b4217a8 | [] | no_license | wesHughes2020/InfiniteRecharge2020 | 80c8657b94bff3a6fed5a26873ae38d6e201447c | a29c624c9255ef72908088aa77cca01a8fef3623 | refs/heads/master | 2020-12-09T14:59:38.204716 | 2020-02-27T20:13:53 | 2020-02-27T20:13:53 | 233,340,821 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,320 | h | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#pragma once
#include <frc2/command/SubsystemBase.h>
#include "networktables/NetworkTable.h"
#include "networktables/NetworkTableInstance.h"
#include "Constants.h"
class Limelight : public frc2::SubsystemBase {
public:
Limelight();
/**
* Will be called periodically whenever the CommandScheduler runs.
*/
void Periodic();
double GetValidTarget();
double GetHorizontalOffset();
double GetVerticalOffset();
double GetTargetArea();
double GetTargetDistance();
void SetLEDMode(int mode);
void SetCamMode(int mode);
void SetSnapshot(int mode);
private:
// Components (e.g. motor controllers and sensors) should generally be
// declared private and exposed only through public methods.
std::shared_ptr<NetworkTable> table = nt::NetworkTableInstance::GetDefault().GetTable("limelight");
};
| [
"minihughes2020@icloud.com"
] | minihughes2020@icloud.com |
ac0eda4b6b3ca0ae8fe527a4caee1e32fd1907e9 | e201634405ea7aa7a8d17f89f608d44c4f302a6f | /src/pow.cpp | 53111e124e84083db21bc0a07abd3a74d7f7ac23 | [
"MIT"
] | permissive | worldcryptoforum/worldcryptoforum | fc3ce1c2cab1c523453afaa8cc5323a393872ea4 | b6054cf5df0c37b0751c7c094cffda8bb124934d | refs/heads/master | 2020-04-10T00:06:47.317453 | 2019-03-21T07:48:50 | 2019-03-21T07:48:50 | 160,676,114 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 5,645 | 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 "pow.h"
#include "chain.h"
#include "chainparams.h"
#include "main.h"
#include "primitives/block.h"
#include "uint256.h"
#include "util.h"
#include <math.h>
unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader* pblock)
{
/* current difficulty formula, worldcryptoforum - DarkGravity v3, written by Evan Duffield - evan@dashpay.io */
const CBlockIndex* BlockLastSolved = pindexLast;
const CBlockIndex* BlockReading = pindexLast;
int64_t nActualTimespan = 0;
int64_t LastBlockTime = 0;
int64_t PastBlocksMin = 24;
int64_t PastBlocksMax = 24;
int64_t CountBlocks = 0;
uint256 PastDifficultyAverage;
uint256 PastDifficultyAveragePrev;
if (BlockLastSolved == NULL || BlockLastSolved->nHeight == 0 || BlockLastSolved->nHeight < PastBlocksMin) {
return Params().ProofOfWorkLimit().GetCompact();
}
if(pindexLast->nHeight == 5701 || pindexLast->nHeight == 6084 || (pindexLast->nHeight >= 6089 && pindexLast->nHeight < 6100)) {
uint256 bnNew;
bnNew = ~uint256(0) >> 20;
return bnNew.GetCompact();
}
if(pindexLast->nHeight == 52700) {
uint256 bnNew;
bnNew = ~uint256(0) >> 20;
return bnNew.GetCompact();
}
if(pindexLast->nHeight == 160001) {
uint256 bnNew;
bnNew = ~uint256(0) >> 20;
return bnNew.GetCompact();
}
// Proof of Stake
if (pindexLast->nHeight > LAST_POW_BLOCK(chainActive.Height())) {
uint256 bnTargetLimit = Params().ProofOfWorkLimit();
if (pindexLast->nHeight <= LAST_POW_BLOCK(chainActive.Height()) + 3 )
return bnTargetLimit.GetCompact();
int64_t nTargetSpacing = Params().TargetSpacing();
int64_t nTargetTimespan = Params().TargetTimespan()*40;
int64_t nActualSpacing = 0;
if (pindexLast->nHeight != 0)
nActualSpacing = pindexLast->GetBlockTime() - pindexLast->pprev->GetBlockTime();
if (nActualSpacing < 0)
nActualSpacing = 1;
// ppcoin: target change every block
// ppcoin: retarget with exponential moving toward target spacing
uint256 bnNew;
bnNew.SetCompact(pindexLast->nBits);
int64_t nInterval = nTargetTimespan / nTargetSpacing;
bnNew *= ((nInterval - 1) * nTargetSpacing + nActualSpacing + nActualSpacing);
bnNew /= ((nInterval + 1) * nTargetSpacing);
if (bnNew <= 0 || bnNew > bnTargetLimit)
bnNew = bnTargetLimit;
return bnNew.GetCompact();
}
for (unsigned int i = 1; BlockReading && BlockReading->nHeight > 0; i++) {
if (PastBlocksMax > 0 && i > PastBlocksMax) {
break;
}
CountBlocks++;
if (CountBlocks <= PastBlocksMin) {
if (CountBlocks == 1) {
PastDifficultyAverage.SetCompact(BlockReading->nBits);
} else {
PastDifficultyAverage = ((PastDifficultyAveragePrev * CountBlocks) + (uint256().SetCompact(BlockReading->nBits))) / (CountBlocks + 1);
}
PastDifficultyAveragePrev = PastDifficultyAverage;
}
if (LastBlockTime > 0) {
int64_t Diff = (LastBlockTime - BlockReading->GetBlockTime());
nActualTimespan += Diff;
}
LastBlockTime = BlockReading->GetBlockTime();
if (BlockReading->pprev == NULL) {
assert(BlockReading);
break;
}
BlockReading = BlockReading->pprev;
}
uint256 bnNew(PastDifficultyAverage);
int64_t _nTargetTimespan = CountBlocks * Params().TargetSpacing();
if (nActualTimespan < _nTargetTimespan / 3)
nActualTimespan = _nTargetTimespan / 3;
if (nActualTimespan > _nTargetTimespan * 3)
nActualTimespan = _nTargetTimespan * 3;
// Retarget
bnNew *= nActualTimespan;
bnNew /= _nTargetTimespan;
//if (pindexLast->nHeight <= Params().LAST_POW_BLOCK()) bnNew = Params().ProofOfWorkLimit();
if (bnNew > Params().ProofOfWorkLimit()) {
bnNew = Params().ProofOfWorkLimit();
}
LogPrintf("GetNextWorkRequired RETARGET\n");
LogPrintf("nActualTimespan = %d\n", nActualTimespan);
LogPrintf("After: %08x %s\n", bnNew.GetCompact(), bnNew.ToString());
return bnNew.GetCompact();
}
bool CheckProofOfWork(uint256 hash, unsigned int nBits)
{
bool fNegative;
bool fOverflow;
uint256 bnTarget;
if (Params().SkipProofOfWorkCheck())
return true;
bnTarget.SetCompact(nBits, &fNegative, &fOverflow);
// Check range
if (fNegative || bnTarget == 0 || fOverflow || bnTarget > Params().ProofOfWorkLimit())
return error("CheckProofOfWork() : nBits below minimum work");
// Check proof of work matches claimed amount
if (hash > bnTarget)
return error("CheckProofOfWork() : hash doesn't match nBits");
return true;
}
uint256 GetBlockProof(const CBlockIndex& block)
{
uint256 bnTarget;
bool fNegative;
bool fOverflow;
bnTarget.SetCompact(block.nBits, &fNegative, &fOverflow);
if (fNegative || fOverflow || bnTarget == 0)
return 0;
// We need to compute 2**256 / (bnTarget+1), but we can't represent 2**256
// as it's too large for a uint256. However, as 2**256 is at least as large
// as bnTarget+1, it is equal to ((2**256 - bnTarget - 1) / (bnTarget+1)) + 1,
// or ~bnTarget / (nTarget+1) + 1.
return (~bnTarget / (bnTarget + 1)) + 1;
}
| [
"worldcryptoforum@gmail.com"
] | worldcryptoforum@gmail.com |
7d10f0852bd470cc5d2c2b84724f802ca2830560 | 7fd5e6156d6a42b305809f474659f641450cea81 | /boost/numeric/odeint/external/openmp/openmp_state.hpp | 6b536e09ac546b75373ecbd1b22f22560a0e3d6f | [] | no_license | imos/icfpc2015 | 5509b6cfc060108c9e5df8093c5bc5421c8480ea | e998055c0456c258aa86e8379180fad153878769 | refs/heads/master | 2020-04-11T04:30:08.777739 | 2015-08-10T11:53:12 | 2015-08-10T11:53:12 | 40,011,767 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,204 | hpp | /*
[auto_generated]
boost/numeric/odeint/external/openmp/openmp_state.hpp
[begin_description]
Wrappers for OpenMP.
[end_description]
Copyright 2013 Karsten Ahnert
Copyright 2013 Mario Mulansky
Copyright 2013 Pascal Germroth
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 BOOST_NUMERIC_ODEINT_EXTERNAL_OPENMP_OPENMP_STATE_HPP_INCLUDED
#define BOOST_NUMERIC_ODEINT_EXTERNAL_OPENMP_OPENMP_STATE_HPP_INCLUDED
#include <omp.h>
#include <vector>
#include <algorithm>
#include "boost/range/adaptor/sliced.hpp"
#include "boost/numeric/odeint/util/copy.hpp"
#include "boost/numeric/odeint/util/split.hpp"
#include "boost/numeric/odeint/util/resize.hpp"
#include "boost/numeric/odeint/external/openmp/openmp_nested_algebra.hpp"
namespace boost {
namespace numeric {
namespace odeint {
/** \brief A container that is split into distinct parts, for threading.
* Just a wrapper for vector<vector<T>>, use `copy` for splitting/joining.
*/
template< class T >
struct openmp_state : public std::vector< std::vector< T > >
{
openmp_state() {}
openmp_state(size_t n, const std::vector<T>& val = std::vector<T>())
: std::vector< std::vector< T > >(n, val) {}
template<class InputIterator>
openmp_state(InputIterator first, InputIterator last)
: std::vector< std::vector< T > >(first, last) {}
openmp_state(const std::vector< std::vector< T > > &orig)
: std::vector< std::vector< T > >(orig) {}
};
template< class T >
struct is_resizeable< openmp_state< T > > : boost::true_type { };
template< class T >
struct same_size_impl< openmp_state< T > , openmp_state< T > >
{
static bool same_size( const openmp_state< T > &x , const openmp_state< T > &y )
{
if( x.size() != y.size() ) return false;
for( size_t i = 0 ; i != x.size() ; i++ )
if( x[i].size() != y[i].size() ) return false;
return true;
}
};
template< class T >
struct resize_impl< openmp_state< T > , openmp_state< T > >
{
static void resize( openmp_state< T > &x , const openmp_state< T > &y )
{
x.resize( y.size() );
# pragma omp parallel for schedule(dynamic)
for(size_t i = 0 ; i < x.size() ; i++)
x[i].resize( y[i].size() );
}
};
/** \brief Copy data between openmp_states of same size. */
template< class T >
struct copy_impl< openmp_state< T >, openmp_state< T > >
{
static void copy( const openmp_state< T > &from, openmp_state< T > &to )
{
# pragma omp parallel for schedule(dynamic)
for(size_t i = 0 ; i < from.size() ; i++)
std::copy( from[i].begin() , from[i].end() , to.begin() );
}
};
/** \brief Copy data from some container to an openmp_state and resize it.
* Target container size will determine number of blocks to split into.
* If it is empty, it will be resized to the maximum number of OpenMP threads.
* SourceContainer must support `s::value_type`, `s::const_iterator`, `s.begin()`, `s.end()` and `s.size()`,
* with Random Access Iterators; i.e. it must be a Random Access Container. */
template< class SourceContainer >
struct split_impl< SourceContainer, openmp_state< typename SourceContainer::value_type > >
{
static void split( const SourceContainer &from, openmp_state< typename SourceContainer::value_type > &to )
{
if(to.size() == 0) to.resize( omp_get_max_threads() );
const size_t part = from.size() / to.size();
# pragma omp parallel for schedule(dynamic)
for(size_t i = 0 ; i < to.size() ; i++) {
typedef typename SourceContainer::const_iterator it_t;
const it_t begin = from.begin() + i * part;
it_t end = begin + part;
// for cases where from.size() % to.size() > 0
if(i + 1 == to.size() || end > from.end()) end = from.end();
to[i].resize(end - begin);
std::copy(begin, end, to[i].begin());
}
}
};
/** \brief Copy data from an openmp_state to some container and resize it.
* TargetContainer must support `s::value_type`, `s::iterator`, `s.begin()` and `s.resize(n)`,
* i.e. it must be a `std::vector`. */
template< class TargetContainer >
struct unsplit_impl< openmp_state< typename TargetContainer::value_type >, TargetContainer >
{
static void unsplit( const openmp_state< typename TargetContainer::value_type > &from , TargetContainer &to )
{
// resize target
size_t total_size = 0;
for(size_t i = 0 ; i < from.size() ; i++)
total_size += from[i].size();
to.resize( total_size );
// copy parts
typename TargetContainer::iterator out = to.begin();
for(size_t i = 0 ; i < from.size() ; i++)
out = std::copy(from[i].begin(), from[i].end(), out);
}
};
/** \brief OpenMP-parallelized algebra.
* For use with openmp_state.
*/
typedef openmp_nested_algebra< range_algebra > openmp_algebra;
/** \brief Use `openmp_algebra` for `openmp_state`. */
template< class T >
struct algebra_dispatcher< openmp_state< T > >
{
typedef openmp_algebra algebra_type;
};
}
}
}
#endif
| [
"git@imoz.jp"
] | git@imoz.jp |
663fb2dde6bb5191e353171f05e6c67f5baf4167 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/admin/wmi/wbem/winmgmt/coredll/objenum.cpp | 274a42fc7907eb36c0f95a46d2dc7f081e1d893d | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,706 | cpp | /*++
Copyright (C) 1996-2001 Microsoft Corporation
Module Name:
OBJENUM.CPP
Abstract:
Implements the class implementing IEnumWbemClassObject interface.
Classes defined:
CEnumWbemClassObject
History:
a-raymcc 16-Jul-96 Created.
--*/
#include "precomp.h"
#include <wbemcore.h>
// Read in by the config manager. Controls our cache and overflow buffer sizes as
// well as timeouts
extern DWORD g_dwMaxEnumCacheSize;
extern DWORD g_dwMaxEnumOverflowSize;
extern DWORD g_dwEnumOverflowTimeout;
// Marshaling Packet definitions
#include <wbemclasstoidmap.h>
#include <wbemguidtoclassmap.h>
#include <smartnextpacket.h>
//***************************************************************************
//
// See objenum.h for documentation.
//
//***************************************************************************
SCODE CBasicEnumWbemClassObject::QueryInterface(REFIID riid, LPVOID FAR* ppvObj)
{
*ppvObj = 0;
if (IID_IUnknown==riid || IID_IEnumWbemClassObject == riid)
{
*ppvObj = (IEnumWbemClassObject*)this;
AddRef();
return NOERROR;
}
else if ( IID_IWbemFetchSmartEnum == riid )
{
*ppvObj = (IWbemFetchSmartEnum*) this;
AddRef();
return NOERROR;
}
return ResultFromScode(E_NOINTERFACE);
}
//***************************************************************************
//
// See objenum.h for documentation.
//
//***************************************************************************
ULONG CBasicEnumWbemClassObject::AddRef()
{
return InterlockedIncrement(&m_lRefCount);
}
//***************************************************************************
//
// See objenum.h for documentation.
//
//***************************************************************************
ULONG CBasicEnumWbemClassObject::Release()
{
_ASSERT(m_lRefCount > 0, "Release() called with no matching AddRef()");
long lRef = InterlockedDecrement(&m_lRefCount);
if (0 != lRef)
return lRef;
delete this;
return 0;
}
//***************************************************************************
//***************************************************************************
//
// ASYNC
//
//***************************************************************************
//***************************************************************************
CDataAccessor::CDataAccessor() : m_dwTotal( 0 ), m_dwNumObjects( 0 )
{
ConfigMgr::AddCache();
}
CDataAccessor::~CDataAccessor()
{
ConfigMgr::RemoveCache();
}
BOOL CDataAccessor::RecordAdd(IWbemClassObject* p)
{
DWORD dwSize = ((CWbemObject*)p)->GetBlockLength();
m_dwTotal += dwSize;
++m_dwNumObjects;
return TRUE;
}
void CDataAccessor::ReportRemove(IWbemClassObject* p)
{
DWORD dwSize = ((CWbemObject*)p)->GetBlockLength();
m_dwTotal -= dwSize;
--m_dwNumObjects;
ConfigMgr::RemoveFromCache(dwSize);
}
class CForwardAccessor : public CDataAccessor
{
protected:
CFlexQueue m_q;
public:
CForwardAccessor(){}
virtual ~CForwardAccessor();
BOOL Add(IWbemClassObject* p)
{
RecordAdd(p);
if(m_q.Enqueue(p)) {p->AddRef(); return TRUE;}
else return FALSE;
}
BOOL Next(DWORD& rdwPos, IWbemClassObject*& rp)
{
if((rp = (IWbemClassObject*)m_q.Dequeue()) != NULL)
{
rdwPos++;
ReportRemove(rp);
return TRUE;
}
else return FALSE;
}
BOOL IsResettable() {return FALSE;}
void Clear( void );
// Return whether or not the queue is empty
BOOL IsDone( DWORD dwPos ) { return m_q.GetQueueSize() == 0; }
};
class CBiAccessor : public CDataAccessor
{
protected:
CFlexArray m_a;
public:
~CBiAccessor();
BOOL Add(IWbemClassObject* p)
{
RecordAdd(p);
if ( m_a.Add(p) == CFlexArray::no_error )
{
p->AddRef();
return TRUE;
}
else
{
return FALSE;
}
}
BOOL Next(DWORD& rdwPos, IWbemClassObject*& rp)
{
if(rdwPos < m_a.Size())
{
rp = (IWbemClassObject*)m_a.GetAt(rdwPos++);
rp->AddRef();
return TRUE;
}
else return FALSE;
}
BOOL IsResettable() {return TRUE;}
void Clear( void );
// Return whether or not the position is at our max
BOOL IsDone( DWORD dwPos ) { return !( dwPos < m_a.Size() ); }
};
CForwardAccessor::~CForwardAccessor()
{
// Tell the accessor to clear itself
Clear();
}
void CForwardAccessor::Clear( void )
{
IWbemClassObject* p;
while((p = (IWbemClassObject*)m_q.Dequeue()) != NULL)
{
ReportRemove(p);
p->Release();
}
}
CBiAccessor::~CBiAccessor()
{
// Tell the accessor to clear itself
Clear();
}
void CBiAccessor::Clear()
{
for(int i = 0; i < m_a.Size(); i++)
{
IWbemClassObject* p = (IWbemClassObject*)m_a[i];
ReportRemove(p);
p->Release();
}
m_a.Empty();
}
CEnumeratorCommon::CEnumeratorCommon( long lFlags, IWbemServices* pNamespace, LPCWSTR pwszQueryType,
LPCWSTR pwszQuery, long lEnumType, IWbemContext* pContext )
: m_pErrorInfo(NULL), m_dwNumDesired(0xFFFFFFFF), m_lFlags(lFlags),
m_pErrorObj(NULL), m_hres(WBEM_S_TIMEDOUT),
m_bComplete(FALSE), m_pNamespace(pNamespace), m_pForwarder(NULL),
m_lRef(0),m_fGotFirstObject( FALSE ), m_csNext(), m_lEntryCount( 0 ),
m_wstrQueryType( pwszQueryType ), m_wstrQuery( pwszQuery ),
m_lEnumType( lEnumType ), m_pContext( pContext ), m_fCheckMinMaxControl( g_dwMaxEnumCacheSize != 0 )
{
InitializeCriticalSection(&m_cs);
// One event indicating that we are ready
m_hReady = CreateEvent(NULL, TRUE, FALSE, NULL);
if ( NULL == m_hReady )
{
throw CX_MemoryException();
}
pNamespace->AddRef();
m_pSink = new CEnumSink(this);
if ( NULL == m_pSink )
{
throw CX_MemoryException();
}
// Allocate the approprioate accessor
if ( !( m_lFlags & WBEM_FLAG_FORWARD_ONLY ) )
{
m_pData = new CBiAccessor;
}
else
{
m_pData = new CForwardAccessor;
}
if ( NULL == m_pData )
{
throw CX_MemoryException();
}
if ( NULL != m_pContext )
{
m_pContext->AddRef();
}
}
CEnumeratorCommon::~CEnumeratorCommon()
{
m_lRef = 100;
// This will detach the sink from us
Cancel(WBEM_E_CALL_CANCELLED, TRUE);
EnterCriticalSection(&m_cs);
// Cleanup the event handles
if ( NULL != m_hReady )
{
CloseHandle(m_hReady);
m_hReady = NULL;
}
// Cleanup
if(m_pErrorInfo)
m_pErrorInfo->Release();
if(m_pErrorObj)
m_pErrorObj->Release();
if(m_pNamespace)
m_pNamespace->Release();
if(m_pForwarder)
m_pForwarder->Release();
if ( NULL != m_pContext )
{
m_pContext->Release();
m_pContext = NULL;
}
delete m_pData;
LeaveCriticalSection(&m_cs);
DeleteCriticalSection(&m_cs);
}
void CEnumeratorCommon::Cancel( HRESULT hres, BOOL fSetStatus )
{
CEnumSink* pEnumSink = NULL;
// This can happen on multiple threads, so let's clear
// m_pSink with a critical section. After that point we can
// actually schedule the cancel and detach the sink.
EnterCriticalSection( &m_cs );
// AddRef it now. We will release it
// outside the critical section when we
// are done with it.
pEnumSink = m_pSink;
// Check that the sink is not NULL before we AddRef/Release it
if ( NULL != m_pSink )
{
pEnumSink->AddRef();
m_pSink->Release();
m_pSink = NULL;
}
// Next, clear out our object
LeaveCriticalSection( &m_cs );
// Do this outside of a critical section.
// Cancel the asynchrnous call
// ===========================
if ( NULL != pEnumSink )
{
if(!m_bComplete)
{
CAsyncReq_CancelAsyncCall *pReq = new
CAsyncReq_CancelAsyncCall(pEnumSink, NULL);
if ( NULL != pReq )
{
ConfigMgr::EnqueueRequest(pReq);
}
}
// This ensures that no further objects will be indicated through this sink
// By detaching outside of m_cs, we guarantee that we will not deadlock, since
// detach enters another critical section inside of which it again reenters
// m_cs (whew!)
pEnumSink->Detach();
// Gone daddy gone
pEnumSink->Release();
}
// Finally, since the call has been cancelled, let's clean up
// any latent objects (of course, this has to be done in a
// critical section)
EnterCriticalSection( &m_cs );
// We must clear both the data and the object cache
m_pData->Clear();
LeaveCriticalSection( &m_cs );
if ( fSetStatus )
{
SetStatus(WBEM_STATUS_COMPLETE, hres, NULL);
}
}
void CEnumeratorCommon::AddRef()
{
InterlockedIncrement(&m_lRef);
}
void CEnumeratorCommon::Release()
{
if(InterlockedDecrement(&m_lRef) == 0)
delete this;
}
HRESULT CEnumeratorCommon::NextAsync(DWORD& rdwPos, ULONG uCount,
IWbemObjectSink* pSink)
{
if(pSink == NULL)
return WBEM_E_INVALID_PARAMETER;
// This function MUST block around the actual Next Critical Section.
// Therefore if any nexts are occurring, we should at least have the
// good taste to give them a chance to finish what they are doing.
// On Next operations, we MUST enter this critical section BEFORE m_cs, because
// we want to block other Next operations, but not operations that will cause
// a Next operation to complete. For example, the Indicate operation MUST be
// allowed to place objects into our arrays, or pass them down to the forwarding
// sink, or we will definitely deadlock.
// Below, you will see that if we get all of the requested data out, we will
// leave the critical section. If not, then the operation actually hasn't
// completed and we will want the m_csNext critical section to remain blocked.
// When the operation completes (either when an object completing the requested
// block is indicated, or the SetStatus() function is called), the critical
// section will actually be released.
m_csNext.Enter();
EnterCriticalSection(&m_cs);
// Controls how many objects we will let pile up in the enumerator
m_dwNumDesired = uCount;
ULONG uReturned = 0;
while (uReturned < uCount)
{
IWbemClassObject *pSrc;
if(m_pData->Next(rdwPos, pSrc))
{
/*
pSrc->Clone(pUsrArray + nUsrIx++);
*/
pSink->Indicate(1, &pSrc);
pSrc->Release();
uReturned++;
m_dwNumDesired--;
}
else break;
}
if(uReturned < uCount && !m_bComplete)
{
CBasicObjectSink* pWrapper = NULL;
CCountedSink* pCountedSink = NULL;
try
{
pWrapper = new CWrapperSink(pSink);
if ( NULL == pWrapper )
{
throw CX_MemoryException();
}
pWrapper->AddRef();
pCountedSink =
new CCountedSink(pWrapper, uCount-uReturned);
if ( NULL == pCountedSink )
{
throw CX_MemoryException();
}
pWrapper->Release();
m_pForwarder = pCountedSink;
m_pdwForwarderPos = &rdwPos;
pCountedSink->AddRef();
LeaveCriticalSection(&m_cs);
// We are intentionally staying in m_csNext. Another thread will be responsible for
// unlocking the critical section. This is a cross we have to bear because we support
// NextAsync
return WBEM_S_NO_ERROR;
}
catch(...)
{
// Cleanup
if ( NULL != pWrapper )
{
pWrapper->Release();
}
if ( NULL != pCountedSink )
{
pCountedSink->Release();
}
// The Next Operation is complete so we should release the critical section
m_csNext.Leave();
LeaveCriticalSection(&m_cs);
return WBEM_E_OUT_OF_MEMORY;
}
}
else
{
HRESULT hReturn = WBEM_S_NO_ERROR;
pSink->SetStatus(0, ( WBEM_S_TIMEDOUT == m_hres ? WBEM_S_NO_ERROR : m_hres ), NULL, m_pErrorObj);
// If the complete flag is set, check if the data accessor is really done. If so, then
// return WBEM_S_FALSE. In all other cases return WBEM_S_NO_ERROR.
if ( m_bComplete )
{
if ( m_pData->IsDone( rdwPos ) )
{
hReturn = WBEM_S_FALSE;
}
}
// The Next Operation is complete so we should release the critical section
m_csNext.Leave();
LeaveCriticalSection(&m_cs);
return hReturn;
}
}
HRESULT CEnumeratorCommon::Skip(DWORD& rdwPos, long lTimeout, ULONG nNum)
{
// We just turn this around into a Next command, except we tell Next to
// skip the objects (on each next it just releases them)
return Next(rdwPos, lTimeout, nNum, NULL, NULL);
}
HRESULT CEnumeratorCommon::Next(
DWORD& rdwPos,
long lTimeout,
ULONG uCount,
IWbemClassObject **pUsrArray,
ULONG* puReturned
)
{
// This function MUST block around the actual Next Critical Section.
// Therefore if any nexts are occurring, we should at least have the
// good taste to give them a chance to finish what they are doing.
// On Next operations, we MUST enter this critical section BEFORE m_cs, because
// we want to block other Next operations, but not operations that will cause
// a Next operation to complete. For example, the Indicate operation MUST be
// allowed to place objects into our arrays, or pass them down to the forwarding
// sink, or we will definitely deadlock.
m_csNext.Enter();
EnterCriticalSection(&m_cs);
// Controls how many objects we will let pile up in the enumerator
m_dwNumDesired = uCount;
ULONG uReturned = 0;
HRESULT hres = S_OK;
DWORD dwStart = GetTickCount();
// Start grabbing elements and cloning them to the user's array.
// =============================================================
int nUsrIx = 0;
while (uReturned < uCount)
{
IWbemClassObject *pSrc;
if(m_pData->Next(rdwPos, pSrc))
{
// Skip the object or store it in
// the user's array
if ( NULL == pUsrArray )
{
pSrc->Release();
}
else
{
pUsrArray[nUsrIx++] = pSrc;
}
// Increment this so we know how many objects
// we've processed (skipping or not).
uReturned++;
}
else
{
// Check if we've reached the end
// ==============================
if(m_bComplete)
{
// The end
// =======
SetErrorInfo(0, m_pErrorInfo);
hres = m_hres;
if (hres == WBEM_S_NO_ERROR)
{
hres = WBEM_S_FALSE;
}
else if ( FAILED( hres ) )
{
// If the array is not NULL we need to make sure we release any
// objects we set and clear the array.
if ( NULL != pUsrArray )
{
for ( DWORD dwCtr = 0; dwCtr < uReturned; dwCtr++ )
{
if ( NULL != pUsrArray[dwCtr] )
{
pUsrArray[dwCtr]->Release();
pUsrArray[dwCtr] = NULL;
}
}
}
// The number returned is actually 0
uReturned = 0;
}
break;
}
// Check if we've still got time
// =============================
DWORD dwTimeSpent = GetTickCount() - dwStart;
if((DWORD)lTimeout < dwTimeSpent)
{
// Out of time
// ===========
hres = WBEM_S_TIMEDOUT;
break;
}
// Calculate how many more we need
// ===============================
m_dwNumDesired = uCount - uReturned;
ResetEvent(m_hReady);
// Wait for them to arrive
// =======================
// By doing this, we will force other Next operations to block (we still own
// that critical section), but we allow objects to be indicated in, and SetStatus
// to be called so m_hReady can actually become signalled. Once it is signalled,
// we DO want to pull objects out, so we will turn right around and grab hold
// of m_cs.
// Boy, that was obvious, huh?
LeaveCriticalSection(&m_cs);
DWORD dwRes = CCoreQueue::QueueWaitForSingleObject(m_hReady,
(DWORD)lTimeout - dwTimeSpent);
EnterCriticalSection(&m_cs);
}
}
// We ALWAYS release m_csNext on the way out of this function.
m_csNext.Leave();
LeaveCriticalSection(&m_cs);
// Set info for the caller.
// ========================
if (puReturned)
*puReturned = uReturned;
return hres;
}
HRESULT CEnumeratorCommon::Indicate(long lNumObjects,
IWbemClassObject** apObjects,
long* plNumUsed )
{
HRESULT hres = S_OK;
// Check whether or not we're OOM. If we are, dump the whole connection
if ( !m_fCheckMinMaxControl )
{
if ( !CWin32DefaultArena::ValidateMemSize() )
{
// we are out of memory
// ====================
Cancel(WBEM_E_OUT_OF_MEMORY, TRUE);
return WBEM_E_OUT_OF_MEMORY;
}
}
// We MUST be in this critical section to change the data.
// We do NOT want m_csNext, since that will be owned by another
// thread (although see below where we release it)...
EnterCriticalSection(&m_cs);
// We haven't used any objects yet.
*plNumUsed = lNumObjects;
// If this is the first object, then set the ready event (sort of like doing a semi-synch under everyone's
// noses).
// if ( lNumObjects > 0 && !m_fGotFirstObject )
// {
// m_fGotFirstObject = TRUE;
// m_hres = WBEM_S_NO_ERROR; // We're ready to go
// SetEvent( m_hReady );
// }
DWORD dwThisSize = 0;
// This time actually add the objects to the appropriate arrays
for(long l = 0; SUCCEEDED(hres) && l < *plNumUsed; l++)
{
if ( !m_pData->Add(apObjects[l]) )
{
hres = WBEM_E_OUT_OF_MEMORY;
}
else
{
dwThisSize += ((CWbemObject*)apObjects[l])->GetBlockLength();
}
}
// Check for failures, if so, leave m_cs and dump the enumerator
if ( FAILED(hres) )
{
LeaveCriticalSection( &m_cs );
Cancel( hres, TRUE );
return hres;
}
// Inform memory control of this addition
// ======================================
DWORD dwTotalSize = m_pData->GetTotalSize();
DWORD dwSleep = 0;
if ( m_fCheckMinMaxControl )
{
hres = ConfigMgr::AddToCache(dwThisSize, dwTotalSize, &dwSleep);
}
// If we have a forwarder, pass-through any objects we can get away with
// We get this from calling NextAsync().
if ( NULL != m_pForwarder )
{
bool fCheckMemory = m_fCheckMinMaxControl;
for ( l = 0; NULL != m_pForwarder && l < *plNumUsed; l++ )
{
IWbemClassObject* p;
// We know that we just added the objects to the accessor
// so no need to check return codes here.
m_pData->Next(*m_pdwForwarderPos, p);
if(m_pForwarder->Indicate(1, &p) == WBEM_S_FALSE)
{
m_pForwarder->Release();
m_pForwarder = NULL;
// Since we completed the request here, no sense in checking for
// OOM conditions.
fCheckMemory = false;
// By releasing m_csNext here, we are effectively telling the code
// that a NextAsync call has completed. Remember, NextAsync() will
// Enter m_csNext, but if not all objects are available, leave the
// critical section hanging.
m_csNext.Leave();
}
p->Release();
} // Pass through all of the available objects
// At this point, if we had an error from before, try going into the cache
// again, since the calls to ::Next may have released out some of the objects
if ( fCheckMemory && hres != S_OK )
{
dwTotalSize = m_pData->GetTotalSize();
dwSleep = 0;
// See how the memory's doing now. By specifying 0, we won't cause
// the size to grow.
hres = ConfigMgr::AddToCache( 0, dwTotalSize, &dwSleep );
}
} // IF we have a forwarder
// Don't update anything if we're going to dump the enumerator
// Check if we have satisfied the reader's requirement
if(lNumObjects >= m_dwNumDesired)
{
SetEvent(m_hReady);
m_dwNumDesired = 0;
}
else
{
m_dwNumDesired -= lNumObjects;
}
LeaveCriticalSection(&m_cs);
// Finally, if we were checking the min/max control and we got a failure, we need to
// cancel the transaction
if ( m_fCheckMinMaxControl )
{
// No sense in sleeping
// ====================
if((m_lFlags & WBEM_FLAG_RETURN_IMMEDIATELY) == 0)
{
if(hres != S_OK)
{
// we are out of memory
// ====================
Cancel(WBEM_E_OUT_OF_MEMORY, TRUE);
return WBEM_E_OUT_OF_MEMORY;
}
}
else
{
if(dwSleep)
Sleep(dwSleep);
}
}
return hres;
}
HRESULT CEnumeratorCommon::SetStatus(long lFlags, HRESULT hresParam,
IWbemClassObject* pStatusObj)
{
if(lFlags != WBEM_STATUS_COMPLETE)
return WBEM_S_NO_ERROR;
EnterCriticalSection(&m_cs);
if(pStatusObj)
{
pStatusObj->QueryInterface(IID_IErrorInfo,
(void**)&m_pErrorInfo);
}
m_hres = hresParam;
m_bComplete = TRUE;
if(m_pForwarder)
{
m_pForwarder->SetStatus(lFlags, hresParam, NULL, pStatusObj);
m_pForwarder->Release();
m_pForwarder = NULL;
// By releasing m_csNext here, we are effectively telling the code
// that a NextAsync call has completed. Remember, NextAsync() will
// Enter m_csNext, but if not all objects are available, leave the
// critical section hanging.
m_csNext.Leave();
}
// Signal the event last
SetEvent(m_hReady);
LeaveCriticalSection(&m_cs);
return WBEM_S_NO_ERROR;
}
HRESULT CEnumeratorCommon::GetCallResult(long lTimeout, HRESULT* phres)
{
if(lTimeout < 0 && lTimeout != -1)
return WBEM_E_INVALID_PARAMETER;
// ALWAYS enter m_csNext first, since we will release m_cs before we release
// m_csNext. This will block anyone else from getting access to m_csNext until
// m_hReady is signalled
m_csNext.Enter();
EnterCriticalSection(&m_cs);
if(m_bComplete)
{
*phres = m_hres;
LeaveCriticalSection(&m_cs);
// If we're in here, we completed BEFORE this function got hold of
// m_cs (cool, huh?)
m_csNext.Leave();
return WBEM_S_NO_ERROR;
}
// Since we didn't complete, we should wait on m_hReady to
// become signalled, which will happen when the first object
// arrives.
LeaveCriticalSection(&m_cs);
DWORD dwRes = CCoreQueue::QueueWaitForSingleObject(m_hReady, lTimeout);
// Well, at least we can ascertain that something happened. Now we can
// release our lock on m_csNext.
m_csNext.Leave();
if(dwRes != WAIT_OBJECT_0)
{
return WBEM_S_TIMEDOUT;
}
*phres = m_hres;
SetErrorInfo(0, m_pErrorInfo);
return WBEM_S_NO_ERROR;
}
HRESULT CEnumeratorCommon::Reset( DWORD& rdwPos )
{
// If they said forwards-only, well that's just tough...
if(!IsResettable())
{
return WBEM_E_INVALID_OPERATION;
}
// Something's is really messed up!
if ( m_lEnumType <= enumtypeFirst || m_lEnumType >= enumTypeLast )
{
return WBEM_E_FAILED;
}
HRESULT hr = WBEM_S_NO_ERROR;
// We need access to m_csNext before we can properly reset the enumeration. This
// way we won't stomp all over any executing Next or Skip operations. We also want to
// ensure that no Next operations step in while we are resubmitting the request
CEnterWbemCriticalSection entercsNext( &m_csNext );
// This shouldn't fail, since we're basically infinite
if ( entercsNext.IsEntered() )
{
// First, check if we've actually got the full set of objects in the cache. If we do,
// empty the data accessor and reload it with the objects in the cache.
EnterCriticalSection( &m_cs );
// Reset the enumerator position reference
rdwPos = 0;
LeaveCriticalSection( &m_cs );
} // IF we got into m_csNext
else
{
hr = WBEM_S_TIMEDOUT;
}
return hr;
}
CEnumeratorCommon::CEnumSink::CEnumSink(CEnumeratorCommon* pEnum)
: CObjectSink(1), m_pEnum(pEnum)
{
}
CEnumeratorCommon::CEnumSink::~CEnumSink()
{
}
void CEnumeratorCommon::CEnumSink::Detach()
{
CInCritSec ics(&m_cs);
m_pEnum = NULL;
}
HRESULT CEnumeratorCommon::CEnumSink::
Indicate(long lNumObjects, IWbemClassObject** apObjects)
{
CInCritSec ics(&m_cs);
long lNumUsed = 0;
if ( NULL == m_pEnum )
{
return WBEM_S_NO_ERROR;
}
else
{
return m_pEnum->Indicate( lNumObjects, apObjects, &lNumUsed );
}
}
STDMETHODIMP CEnumeratorCommon::CEnumSink::
SetStatus(long lFlags, HRESULT hresParam, BSTR, IWbemClassObject* pStatusObj)
{
CInCritSec ics(&m_cs);
if(m_pEnum == NULL) return WBEM_S_NO_ERROR;
HRESULT hres = m_pEnum->SetStatus(lFlags, hresParam, pStatusObj);
return hres;
}
CAsyncEnumerator::CAsyncEnumerator(long lFlags, IWbemServices* pNamespace, LPCWSTR pwszQueryType,
LPCWSTR pwszQuery, long lEnumType, IWbemContext* pContext )
: m_XSmartEnum( this )
{
// Explicit cast to get to IUnknown, since compiler can't get us there.
gClientCounter.AddClientPtr( (IEnumWbemClassObject*) this, ENUMERATOR);
m_pCommon = new CEnumeratorCommon( lFlags, pNamespace, pwszQueryType, pwszQuery,
lEnumType, pContext );
m_pCommon->AddRef();
m_dwPos = 0;
m_pGuidToClassMap = NULL;
InitializeCriticalSection( &m_cs );
}
CAsyncEnumerator::CAsyncEnumerator( const CAsyncEnumerator& async )
: m_XSmartEnum( this )
{
// Explicit cast to get to IUnknown, since compiler can't get us there.
gClientCounter.AddClientPtr( (IEnumWbemClassObject*) this, ENUMERATOR);
m_pCommon = async.m_pCommon;
m_pCommon->AddRef();
// Preserve the last position
m_dwPos = async.m_dwPos;
m_pGuidToClassMap = NULL;
InitializeCriticalSection( &m_cs );
}
CAsyncEnumerator::~CAsyncEnumerator()
{
// Explicit cast to get to IUnknown, since compiler can't get us there.
gClientCounter.RemoveClientPtr((IEnumWbemClassObject*) this);
m_pCommon->Release();
// Cleanup the map
if ( NULL != m_pGuidToClassMap )
{
delete m_pGuidToClassMap;
}
DeleteCriticalSection( &m_cs );
}
STDMETHODIMP CAsyncEnumerator::Reset()
{
if(!m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
// Handoff to the common enumerator
return m_pCommon->Reset( m_dwPos );
}
STDMETHODIMP CAsyncEnumerator::Next(long lTimeout, ULONG uCount,
IWbemClassObject** apObj, ULONG* puReturned)
{
*puReturned = 0;
if(!m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
if(lTimeout < 0 && lTimeout != -1)
return WBEM_E_INVALID_PARAMETER;
return m_pCommon->Next(m_dwPos, lTimeout, uCount, apObj, puReturned);
}
STDMETHODIMP CAsyncEnumerator::NextAsync(ULONG uCount, IWbemObjectSink* pSink)
{
if(!m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
return m_pCommon->NextAsync(m_dwPos, uCount, pSink);
}
STDMETHODIMP CAsyncEnumerator::Clone(IEnumWbemClassObject** ppEnum)
{
*ppEnum = NULL;
if(!m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
if(m_pCommon->IsResettable())
{
CAsyncEnumerator* pEnum = new CAsyncEnumerator( *this );
if ( NULL != pEnum )
{
// We're good to go
*ppEnum = pEnum;
return WBEM_S_NO_ERROR;
}
return WBEM_E_OUT_OF_MEMORY;
}
else
{
*ppEnum = NULL;
return WBEM_E_INVALID_OPERATION;
}
}
STDMETHODIMP CAsyncEnumerator::Skip(long lTimeout, ULONG nNum)
{
if(!m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
if(lTimeout < 0 && lTimeout != -1)
return WBEM_E_INVALID_PARAMETER;
return m_pCommon->Skip(m_dwPos, lTimeout, nNum);
}
HRESULT CAsyncEnumerator::GetCallResult(long lTimeout, HRESULT* phres)
{
if(lTimeout < 0 && lTimeout != -1)
return WBEM_E_INVALID_PARAMETER;
return m_pCommon->GetCallResult(lTimeout, phres);
}
// IWbemFetchSmartEnum Methods
STDMETHODIMP CAsyncEnumerator::GetSmartEnum( IWbemWCOSmartEnum** ppSmartEnum )
{
*ppSmartEnum = NULL;
if(!m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
return m_XSmartEnum.QueryInterface( IID_IWbemWCOSmartEnum, (void**) ppSmartEnum );
};
SCODE CAsyncEnumerator::XSmartEnum::QueryInterface(REFIID riid, LPVOID FAR* ppvObj)
{
*ppvObj = 0;
if ( IID_IUnknown==riid || IID_IWbemWCOSmartEnum == riid)
{
*ppvObj = (IWbemWCOSmartEnum*)this;
AddRef();
return NOERROR;
}
else
{
return m_pOuter->QueryInterface( riid, ppvObj );
}
}
ULONG CAsyncEnumerator::XSmartEnum::AddRef( void )
{
return m_pOuter->AddRef();
}
ULONG CAsyncEnumerator::XSmartEnum::Release( void )
{
return m_pOuter->Release();
}
// IWbemWCOSmartEnum Methods!
STDMETHODIMP CAsyncEnumerator::XSmartEnum::
Next( REFGUID proxyGUID, long lTimeout, ULONG uCount,
ULONG* puReturned, ULONG* pdwBuffSize, BYTE** pBuffer)
{
*puReturned = 0;
*pdwBuffSize = 0;
*pBuffer = NULL;
if(!m_pOuter->m_Security.AccessCheck())
return WBEM_E_ACCESS_DENIED;
// Use a critical section to guard this operation.
CInCritSec(&m_pOuter->m_cs);
// Todo: The proxyGUID needs to be mapped to a per PROXY WbemClassToIdMap
// object so we ensure that data is lobotomized properly.
// Allocate a map if we need one
// Allocate a map if we need one
if ( NULL == m_pOuter->m_pGuidToClassMap )
{
m_pOuter->m_pGuidToClassMap = new CWbemGuidToClassMap;
}
// Look for the GUID in the cache. If we don't find it, it's new so add it
CWbemClassToIdMap* pClassToId = NULL;
CGUID guid( proxyGUID );
HRESULT hr = m_pOuter->m_pGuidToClassMap->GetMap( guid, &pClassToId );
if ( FAILED( hr ) )
{
hr = m_pOuter->m_pGuidToClassMap->AddMap( guid, &pClassToId );
}
// Only continue if we have a cache to work with
if ( SUCCEEDED( hr ) )
{
// Allocate a transient array to copy objects into
IWbemClassObject** apObj = new IWbemClassObject*[uCount];
if ( NULL != apObj )
{
// Clear the object array
ZeroMemory( apObj, uCount * sizeof(IWbemClassObject*) );
// Pass through to the regular next function
hr = m_pOuter->Next( lTimeout, uCount, apObj, puReturned );
if ( SUCCEEDED( hr ) )
{
// Only marshal data if we need to
if ( *puReturned > 0 )
{
// hr contains the actual proper return code, so let's not overwrite
// that valu unless something goes wrong during marshaling.
HRESULT hrMarshal = WBEM_S_NO_ERROR;
// Caluclate data length first
DWORD dwLength;
GUID* pguidClassIds = new GUID[*puReturned];
BOOL* pfSendFullObject = new BOOL[*puReturned];
CWbemSmartEnumNextPacket packet;
if(pguidClassIds && pfSendFullObject)
{
hrMarshal = packet.CalculateLength(*puReturned, apObj, &dwLength,
*pClassToId, pguidClassIds, pfSendFullObject );
}
else
{
hrMarshal = WBEM_E_OUT_OF_MEMORY;
}
if ( SUCCEEDED( hrMarshal ) )
{
// As we could be going cross process/machine, use the
// COM memory allocator
LPBYTE pbData = (LPBYTE) CoTaskMemAlloc( dwLength );
if ( NULL != pbData )
{
// hr contains the actual proper return code, so let's not overwrite
// that valu unless something goes wrong during marshaling.
// Write the objects out to the buffer
HRESULT hrMarshal = packet.MarshalPacket( pbData, dwLength, *puReturned, apObj,
pguidClassIds, pfSendFullObject);
// Copy the values, we're golden.
if ( SUCCEEDED( hr ) )
{
*pdwBuffSize = dwLength;
*pBuffer = pbData;
}
else
{
// Store the new error code
hr = hrMarshal;
// Clean up the memory --- something went wrong
CoTaskMemFree( pbData );
}
}
else
{
hr = WBEM_E_OUT_OF_MEMORY;
}
} // IF CalculateLength()
else
{
// Set the error code
hr = hrMarshal;
}
// Clean up the guid and flag arrays
if ( NULL != pguidClassIds )
{
delete [] pguidClassIds;
}
if ( NULL != pfSendFullObject )
{
delete [] pfSendFullObject;
}
} // IF *puReturned > 0
else
{
// NULL these out
*pdwBuffSize = 0;
*pBuffer = NULL;
}
} // IF SUCCEEDED IEnumWbemClassObject::Next
// We need to Release all the objects in the array, since we have
// inherited ownership from the old Next.
// ==============================================================
for(int i = 0; i < *puReturned; i++)
apObj[i]->Release();
delete [] apObj;
} // IF NULL != apObj
else
{
hr = WBEM_E_OUT_OF_MEMORY;
}
} // IF Cache obtained
return hr;
}
| [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
cbe066e1ff2fa5c3f2990ab4c82b5fd4369ecb02 | dccb136394c3c7f4a636f17f444ebaf95e24ab66 | /Programmers/Lv_1/programmers_같은 숫자는 싫어.cpp | 446fb2568ddbf2d59772b723877c75c04c9109fc | [] | no_license | Oh-kyung-tak/Algorithm | e2b88f6ae8e97130259dedfc30bb48591ae5b2fd | be63f972503170eb8ce06002a2eacd365ade7787 | refs/heads/master | 2020-04-25T22:37:41.799025 | 2020-01-19T08:55:42 | 2020-01-19T08:55:42 | 173,117,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 354 | cpp | #include <vector>
#include <iostream>
#include <map>
using namespace std;
vector<int> solution(vector<int> arr)
{
vector<int> answer;
int current = arr[0];
answer.push_back(arr[0]);
for (int i = 1; i < arr.size(); i++)
{
if (current == arr[i])
continue;
else
{
answer.push_back(arr[i]);
current = arr[i];
}
}
return answer;
} | [
"38690587+Oh-kyung-tak@users.noreply.github.com"
] | 38690587+Oh-kyung-tak@users.noreply.github.com |
0e904b96ce88ae54d65410bafe90d2837d61fe9b | 3deee8b5f3172b272257510d1296c620a8058d09 | /MS6/AmaPerishable.cpp | 7d8840064293079176cd776464a20d21414afb15 | [] | no_license | Jasper-Shi/Aid-Management-Application | e957ee3601b5ddd9e8a145168d5528faccb0dc37 | 46a6bdf0e5af55a40f5fe85a342b7ec8701c4aba | refs/heads/master | 2021-04-28T03:39:35.846601 | 2018-02-20T01:41:42 | 2018-02-20T01:41:42 | 122,143,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,572 | cpp | #include "AmaPerishable.h"
// AmaPersishable.cpp
sict::AmaPerishable::AmaPerishable() : AmaProduct::AmaProduct('P')
{
AmaProduct('P');
}
void sict::AmaPerishable::expiry(const Date & value)
{
expiry_ = value;
}
fstream & sict::AmaPerishable::store(fstream & file, bool addNewLine) const
{
AmaProduct::store(file, false);
file << ",";
expiry_.write(file);
if (addNewLine)
file << endl;
// TODO: insert return statement here
return file;
}
fstream & sict::AmaPerishable::load(fstream & file)
{
AmaProduct::load(file);
expiry_.read(file);
file.ignore();
// TODO: insert return statement here
return file;
}
ostream & sict::AmaPerishable::write(ostream & ostr, bool linear) const
{
AmaProduct::write(ostr, linear);
if (err_.isClear()) {
if (linear) {
expiry_.write(ostr);
}
else {
ostr << endl << "Expiry date: ";
expiry_.write(ostr);
}
}
return ostr;
}
istream & sict::AmaPerishable::read(istream & istr)
{
Date temp;
AmaProduct::read(istr);
if (err_.isClear()) {
cout << "Expiry date (YYYY/MM/DD): ";
istr >> temp;
if (temp.bad()) {
switch (temp.errCode()) {
case 1:
err_.message("Invalid Date Entry");
break;
case 2:
err_.message("Invalid Year in Date Entry");
break;
case 3:
err_.message("Invalid Month in Date Entry");
break;
case 4:
err_.message("Invalid Day in Date Entry");
break;
}
istr.setstate(ios::failbit);
}
else {
expiry_ = temp;
}
}
return istr;
}
| [
"noreply@github.com"
] | noreply@github.com |
7761c8c285e5298bc0422096e8d5e51f5eefc6d9 | 153684ec04d15fb9ca5ab4438fcca4dea1a22dc4 | /CapabilityAgents/AudioPlayer/test/AudioPlayerTest.cpp | c513ed0753c5a336b1152009e46ab20c28cc3a32 | [
"Apache-2.0"
] | permissive | nacichan/avs-device-sdk | c7cfeb43bf98d02c6da63d31ef0488f2cd9c8d7d | dbf4374cd1bb8c21282c1b4baa447de40c8949b5 | refs/heads/master | 2021-07-16T03:03:08.376150 | 2017-10-19T21:32:58 | 2017-10-19T21:32:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,156 | cpp | /*
* AudioPlayerTest.cpp
*
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/// @file AudioPlayerTest.cpp
#include <chrono>
#include <future>
#include <memory>
#include <map>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <rapidjson/document.h>
#include <rapidjson/error/en.h>
#include <rapidjson/stringbuffer.h>
#include <rapidjson/writer.h>
#include <AVSCommon/Utils/JSON/JSONUtils.h>
#include <AVSCommon/SDKInterfaces/MockExceptionEncounteredSender.h>
#include <AVSCommon/AVS/Attachment/AttachmentManagerInterface.h>
#include <AVSCommon/SDKInterfaces/MockContextManager.h>
#include <AVSCommon/SDKInterfaces/MockFocusManager.h>
#include <AVSCommon/SDKInterfaces/MockMessageSender.h>
#include <AVSCommon/SDKInterfaces/MockDirectiveSequencer.h>
#include <AVSCommon/SDKInterfaces/MockDirectiveHandlerResult.h>
#include <AVSCommon/AVS/Attachment/AttachmentManager.h>
#include "AudioPlayer/AudioPlayer.h"
namespace alexaClientSDK {
namespace capabilityAgents {
namespace audioPlayer {
namespace test {
using namespace avsCommon::utils::json;
using namespace avsCommon::utils;
using namespace avsCommon;
using namespace avsCommon::avs;
using namespace avsCommon::avs::attachment;
using namespace avsCommon::sdkInterfaces;
using namespace avsCommon::sdkInterfaces::test;
using namespace avsCommon::utils::mediaPlayer;
using namespace ::testing;
using namespace rapidjson;
/// Plenty of time for a test to complete.
static std::chrono::milliseconds WAIT_TIMEOUT(1000);
/// Default time parameter.
static std::chrono::milliseconds DEFAULT_TIME(50);
/// The name of the @c FocusManager channel used by the @c AudioPlayer.
static const std::string CHANNEL_NAME("Content");
/// The activity Id used with the @c FocusManager by @c AudioPlayer.
static const std::string FOCUS_MANAGER_ACTIVITY_ID("AudioPlayer.Play");
/// Namespace for AudioPlayer.
static const std::string NAMESPACE_AUDIO_PLAYER("AudioPlayer");
/// Name for AudioPlayer Play directive.
static const std::string NAME_PLAY("Play");
/// Name for AudioPlayer Stop directive.
static const std::string NAME_STOP("Stop");
/// Name for AudioPlayer ClearQueue directive.
static const std::string NAME_CLEARQUEUE("ClearQueue");
/// The @c NamespaceAndName to send to the @c ContextManager.
static const NamespaceAndName NAMESPACE_AND_NAME_PLAYBACK_STATE{NAMESPACE_AUDIO_PLAYER, "PlaybackState"};
/// Message Id for testing.
static const std::string MESSAGE_ID_TEST("MessageId_Test");
/// Another message Id for testing.
static const std::string MESSAGE_ID_TEST_2("MessageId_Test2");
/// PlayRequestId for testing.
static const std::string PLAY_REQUEST_ID_TEST("PlayRequestId_Test");
/// Context ID for testing
static const std::string CONTEXT_ID_TEST("ContextId_Test");
/// Context ID for testing
static const std::string CONTEXT_ID_TEST_2("ContextId_Test2");
/// Token for testing.
static const std::string TOKEN_TEST("Token_Test");
/// Previous token for testing.
static const std::string PREV_TOKEN_TEST("Prev_Token_Test");
/// Format of the audio.
static const std::string FORMAT_TEST("AUDIO_MPEG");
/// URL for testing.
static const std::string URL_TEST("cid:Test");
/// ENQUEUE playBehavior.
static const std::string NAME_ENQUEUE("ENQUEUE");
/// CLEAR_ALL clearBehavior.
static const std::string NAME_CLEAR_ALL("CLEAR_ALL");
/// audioItemId for testing.
static const std::string AUDIO_ITEM_ID("testID");
/// The @c FINISHED state of the @c AudioPlayer.
static const std::string FINISHED_STATE("FINISHED");
/// The @c PLAYING state of the @c AudioPlayer
static const std::string PLAYING_STATE{"PLAYING"};
/// The @c IDLE state of the @c AudioPlayer
static const std::string IDLE_STATE{"IDLE"};
/// The offset in milliseconds returned by the mock media player.
static const long OFFSET_IN_MILLISECONDS_TEST{100};
/// ExpiryTime for testing. Needs to be in ISO 8601 format.
static const std::string EXPIRY_TEST("481516234248151623421088");
/// progressReportDelayInMilliseconds for testing.
static const long PROGRESS_REPORT_DELAY{200};
/// progressReportIntervalInMilliseconds for testing.
static const long PROGRESS_REPORT_INTERVAL{100};
/// A payload for testing.
// clang-format off
static const std::string ENQUEUE_PAYLOAD_TEST =
"{"
"\"playBehavior\":\"" + NAME_ENQUEUE + "\","
"\"audioItem\": {"
"\"audioItemId\":\"" + AUDIO_ITEM_ID + "\","
"\"stream\": {"
"\"url\":\"" + URL_TEST + "\","
"\"streamFormat\":\"" + FORMAT_TEST + "\","
"\"offsetInMilliseconds\":" + std::to_string(OFFSET_IN_MILLISECONDS_TEST) + ","
"\"expiryTime\":\"" + EXPIRY_TEST + "\","
"\"progressReport\": {"
"\"progressReportDelayInMilliseconds\":" + std::to_string(PROGRESS_REPORT_DELAY) + ","
"\"progressReportIntervalInMilliseconds\":" + std::to_string(PROGRESS_REPORT_INTERVAL) +
"},"
"\"token\":\"" + TOKEN_TEST + "\","
"\"expectedPreviousToken\":\"\""
"}"
"}"
"}";
// clang-format on
/// Empty payload for testing.
static const std::string EMPTY_PAYLOAD_TEST = "{}";
/// CLEAR_ALL payload for testing.
// clang-format off
static const std::string CLEAR_ALL_PAYLOAD_TEST =
"{"
"\"clearBehavior\":\"" + NAME_CLEAR_ALL + "\""
"}";
// clang-format on
/// Token JSON key.
static const std::string TOKEN_KEY = "token";
/// Offset JSON key.
static const std::string OFFSET_KEY = "offsetInMilliseconds";
/// Player activity JSON key.
static const std::string ACTIVITY_KEY = "playerActivity";
/// The expected state when the @c AudioPlayer is not handling any directive.
// clang-format off
static const std::string IDLE_STATE_TEST =
"{"
"\"token\":\"\","
"\"offsetInMilliseconds\":" + std::to_string(0) + ","
"\"playerActivity\":\"" + IDLE_STATE + "\""
"}";
// clang-format on
/// Provide State Token for testing.
static const unsigned int PROVIDE_STATE_TOKEN_TEST{1};
/// JSON key for the event section of a message.
static const std::string MESSAGE_EVENT_KEY = "event";
/// JSON key for the header section of a message.
static const std::string MESSAGE_HEADER_KEY = "header";
/// JSON key for the name section of a message.
static const std::string MESSAGE_NAME_KEY = "name";
/// Name of PlaybackStarted event
static const std::string PLAYBACK_STARTED_NAME = "PlaybackStarted";
/// Name of PlaybackNearlyFinished event
static const std::string PLAYBACK_NEARLY_FINISHED_NAME = "PlaybackNearlyFinished";
/// Name of PlaybackFinished event
static const std::string PLAYBACK_FINISHED_NAME = "PlaybackFinished";
/// Name of PlaybackStopped event
static const std::string PLAYBACK_STOPPED_NAME = "PlaybackStopped";
/// Name of PlaybackPaused event
static const std::string PLAYBACK_PAUSED_NAME = "PlaybackPaused";
/// Name of PlaybackFailed event
static const std::string PLAYBACK_FAILED_NAME = "PlaybackFailed";
/// Name of PlaybackResumed event
static const std::string PLAYBACK_RESUMED_NAME = "PlaybackResumed";
/// Name of PlaybackStutterStarted event
static const std::string PLAYBACK_STUTTER_STARTED_NAME = "PlaybackStutterStarted";
/// Name of PlaybackStutterFinished event
static const std::string PLAYBACK_STUTTER_FINISHED_NAME = "PlaybackStutterFinished";
/// Name of ProgressReportDelayElapsed event
static const std::string PROGRESS_REPORT_DELAY_ELAPSED_NAME = "ProgressReportDelayElapsed";
/// Name of ProgressReportIntervalElapsed event
static const std::string PROGRESS_REPORT_INTERVAL_ELAPSED_NAME = "ProgressReportIntervalElapsed";
/// String to identify log entries originating from this file.
static const std::string TAG("AudioPlayerTest");
/**
* Create a LogEntry using this file's TAG and the specified event string.
*
* @param The event string for this @c LogEntry.
*/
#define LX(event) alexaClientSDK::avsCommon::utils::logger::LogEntry(TAG, event)
class MockMediaPlayer : public MediaPlayerInterface {
public:
/// Constructor.
MockMediaPlayer();
/// Destructor.
~MockMediaPlayer();
/**
* Creates an instance of the @c MockMediaPlayer.
*
* @return An instance of the @c MockMediaPlayer.
*/
static std::shared_ptr<NiceMock<MockMediaPlayer>> create();
// 'override' commented out to avoid needless warnings generated because MOCK_METHOD* does not use it.
void setObserver(
std::shared_ptr<avsCommon::utils::mediaPlayer::MediaPlayerObserverInterface> playerObserver) /*override*/;
MOCK_METHOD1(
setSource,
MediaPlayerStatus(std::shared_ptr<avsCommon::avs::attachment::AttachmentReader> attachmentReader));
MOCK_METHOD2(setSource, MediaPlayerStatus(std::shared_ptr<std::istream> stream, bool repeat));
#ifdef __clang__
// Remove warnings when compiling with clang.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Woverloaded-virtual"
#endif
MOCK_METHOD1(setSource, MediaPlayerStatus(const std::string& url));
#ifdef __clang__
#pragma clang diagnostic pop
#endif
MOCK_METHOD0(play, MediaPlayerStatus());
MOCK_METHOD0(stop, MediaPlayerStatus());
MOCK_METHOD0(pause, MediaPlayerStatus());
MOCK_METHOD0(resume, MediaPlayerStatus());
MOCK_METHOD0(getOffset, std::chrono::milliseconds());
MOCK_METHOD0(getOffsetInMilliseconds, int64_t());
MOCK_METHOD1(setOffset, MediaPlayerStatus(std::chrono::milliseconds offset));
/**
* This is a mock method which will signal to @c waitForPlay to send the play started notification to the observer.
*
* @return @c SUCCESS.
*/
MediaPlayerStatus mockPlay();
/**
* This is a mock method which will signal to @c waitForStop to send the play finished notification to the observer.
*
* @return @c SUCCESS.
*/
MediaPlayerStatus mockStop();
/**
* This is a mock method which will signal to @c waitForPause to send the play finished notification to the
* observer.
*
* @return @c SUCCESS.
*/
MediaPlayerStatus mockPause();
/**
* This is a mock method which will signal to @c waitForResume to send the play finished notification to the
* observer.
*
* @return @c SUCCESS.
*/
MediaPlayerStatus mockResume();
/**
* Waits for play to be called. It notifies the observer that play has started.
*
* @param duration Time to wait for a play to be called before notifying observer that an error occurred.
* @return @c true if play was called within the timeout duration else @c false.
*/
bool waitForPlay(const std::chrono::milliseconds duration = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for stop to be called. It notifies the observer that play has finished.
*
* @param duration Time to wait for a stop to be called before notifying observer that an error occurred.
* @return @c true if stop was called within the timeout duration else @c false.
*/
bool waitForStop(const std::chrono::milliseconds duration = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for pause to be called. It notifies the observer that play has been paused.
*
* @param duration Time to wait for a pause to be called before notifying observer that an error occurred.
* @return @c true if pause was called within the timeout duration else @c false.
*/
bool waitForPause(const std::chrono::milliseconds duration = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for resume to be called. It notifies the observer that play should resume.
*
* @param duration Time to wait for a resume to be called before notifying observer that an error occurred.
* @return @c true if resume was called within the timeout duration else @c false.
*/
bool waitForResume(const std::chrono::milliseconds duration = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for the promise @c m_wakePlayPromise to be fulfilled and the future to be notified of call to @c play.
*
* @param timeout The duration to wait for the future to be ready.
* @return @c true if @c play was called within the @c timeout else @c false.
*/
bool waitUntilPlaybackStarted(const std::chrono::milliseconds timeout = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for the promise @c m_wakeStopPromise to be fulfilled and the future to be notified of call to @c stop.
*
* @param timeout The duration to wait for the future to be ready.
* @return @c true if @c stop was called within the @c timeout else @c false.
*/
bool waitUntilPlaybackFinished(const std::chrono::milliseconds timeout = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for the promise @c m_wakePausePromise to be fulfilled and the future to be notified of call to @c pause.
*
* @param timeout The duration to wait for the future to be ready.
* @return @c true if @c pause was called within the @c timeout else @c false.
*/
bool waitUntilPlaybackPaused(const std::chrono::milliseconds timeout = std::chrono::milliseconds(DEFAULT_TIME));
/**
* Waits for the promise @c m_wakeResumePromise to be fulfilled and the future to be notified of call to @c resume.
*
* @param timeout The duration to wait for the future to be ready.
* @return @c true if @c resume was called within the @c timeout else @c false.
*/
bool waitUntilPlaybackResumed(const std::chrono::milliseconds timeout = std::chrono::milliseconds(DEFAULT_TIME));
/// Condition variable to wake the @ waitForPlay.
std::condition_variable m_wakeTriggerPlay;
/// Condition variable to wake the @ waitForStop.
std::condition_variable m_wakeTriggerStop;
/// Condition variable to wake the @ waitForPause.
std::condition_variable m_wakeTriggerPause;
/// Condition variable to wake the @ waitForResume.
std::condition_variable m_wakeTriggerResume;
/// mutex to protect @c m_play, @c m_stop and @c m_shutdown.
std::mutex m_mutex;
/// Flag to indicate @c play was called.
bool m_play;
/// Flag to indicate @c stop was called.
bool m_stop;
/// Flag to indicate @c pause was called
bool m_pause;
/// Flag to indicate @c resume was called
bool m_resume;
/// Flag to indicate when MockMediaPlayer is shutting down.
bool m_shutdown;
/// Thread to run @c waitForPlay asynchronously.
std::thread m_playThread;
/// Second thread to run @c waitForPlay asynchronously, to test returning to the PLAYING state
std::thread m_playThread_2;
/// Thread to run @c waitForStop asynchronously.
std::thread m_stopThread;
/// Thread to run @c waitForPause asynchronously.
std::thread m_pauseThread;
/// Thread to run @c waitForResume asynchronously.
std::thread m_resumeThread;
/// Promise to be fulfilled when @c play is called.
std::promise<void> m_wakePlayPromise;
/// Future to notify when @c play is called.
std::future<void> m_wakePlayFuture;
/// Promise to be fulfilled when @c stop is called.
std::promise<void> m_wakeStopPromise;
/// Future to notify when @c stop is called.
std::future<void> m_wakeStopFuture;
/// Promise to be fulfilled when @c pause is called.
std::promise<void> m_wakePausePromise;
/// Future to notify when @c pause is called.
std::future<void> m_wakePauseFuture;
/// Promise to be fulfilled when @c resume is called.
std::promise<void> m_wakeResumePromise;
/// Future to notify when @c resume is called.
std::future<void> m_wakeResumeFuture;
/// The player observer to be notified of the media player state changes.
std::shared_ptr<avsCommon::utils::mediaPlayer::MediaPlayerObserverInterface> m_playerObserver;
};
std::shared_ptr<NiceMock<MockMediaPlayer>> MockMediaPlayer::create() {
auto result = std::make_shared<NiceMock<MockMediaPlayer>>();
ON_CALL(*result.get(), play()).WillByDefault(Invoke(result.get(), &MockMediaPlayer::mockPlay));
ON_CALL(*result.get(), stop()).WillByDefault(Invoke(result.get(), &MockMediaPlayer::mockStop));
ON_CALL(*result.get(), pause()).WillByDefault(Invoke(result.get(), &MockMediaPlayer::mockPause));
ON_CALL(*result.get(), resume()).WillByDefault(Invoke(result.get(), &MockMediaPlayer::mockResume));
return result;
}
MockMediaPlayer::MockMediaPlayer() :
m_play{false},
m_stop{false},
m_pause{false},
m_resume{false},
m_shutdown{false},
m_wakePlayPromise{},
m_wakePlayFuture{m_wakePlayPromise.get_future()},
m_wakeStopPromise{},
m_wakeStopFuture{m_wakeStopPromise.get_future()},
m_wakePausePromise{},
m_wakePauseFuture{m_wakePausePromise.get_future()},
m_playerObserver{nullptr} {
}
MockMediaPlayer::~MockMediaPlayer() {
{
std::lock_guard<std::mutex> lock(m_mutex);
m_shutdown = true;
}
m_wakeTriggerPlay.notify_all();
m_wakeTriggerStop.notify_all();
m_wakeTriggerPause.notify_all();
m_wakeTriggerResume.notify_all();
if (m_playThread.joinable()) {
m_playThread.join();
}
if (m_playThread_2.joinable()) {
m_playThread_2.join();
}
if (m_stopThread.joinable()) {
m_stopThread.join();
}
if (m_pauseThread.joinable()) {
m_pauseThread.join();
}
if (m_resumeThread.joinable()) {
m_resumeThread.join();
}
}
void MockMediaPlayer::setObserver(
std::shared_ptr<avsCommon::utils::mediaPlayer::MediaPlayerObserverInterface> playerObserver) {
m_playerObserver = playerObserver;
}
MediaPlayerStatus MockMediaPlayer::mockPlay() {
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_play) {
m_playThread = std::thread(&MockMediaPlayer::waitForPlay, this, DEFAULT_TIME);
} else {
m_wakePlayPromise = std::promise<void>();
m_playThread_2 = std::thread(&MockMediaPlayer::waitForPlay, this, DEFAULT_TIME);
}
m_play = true;
m_wakeTriggerPlay.notify_one();
return MediaPlayerStatus::SUCCESS;
}
MediaPlayerStatus MockMediaPlayer::mockStop() {
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_stop) {
m_stopThread = std::thread(&MockMediaPlayer::waitForStop, this, DEFAULT_TIME);
m_stop = true;
m_wakeTriggerStop.notify_one();
}
return MediaPlayerStatus::SUCCESS;
}
MediaPlayerStatus MockMediaPlayer::mockPause() {
std::unique_lock<std::mutex> lock(m_mutex);
m_pauseThread = std::thread(&MockMediaPlayer::waitForPause, this, DEFAULT_TIME);
m_pause = true;
m_wakeTriggerPause.notify_one();
return MediaPlayerStatus::SUCCESS;
}
MediaPlayerStatus MockMediaPlayer::mockResume() {
std::unique_lock<std::mutex> lock(m_mutex);
m_resumeThread = std::thread(&MockMediaPlayer::waitForResume, this, DEFAULT_TIME);
m_resume = true;
m_wakeTriggerResume.notify_one();
return MediaPlayerStatus::SUCCESS;
}
bool MockMediaPlayer::waitForPlay(const std::chrono::milliseconds duration) {
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_wakeTriggerPlay.wait_for(lock, duration, [this]() { return (m_play || m_shutdown); })) {
if (m_playerObserver) {
m_playerObserver->onPlaybackError(ErrorType::MEDIA_ERROR_UNKNOWN, "waitForPlay timed out");
}
return false;
}
m_wakePlayPromise.set_value();
if (m_playerObserver) {
m_playerObserver->onPlaybackStarted();
}
return true;
}
bool MockMediaPlayer::waitForStop(const std::chrono::milliseconds duration) {
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_wakeTriggerStop.wait_for(lock, duration, [this]() { return (m_stop || m_shutdown); })) {
if (m_playerObserver) {
m_playerObserver->onPlaybackError(ErrorType::MEDIA_ERROR_UNKNOWN, "waitForStop timed out");
}
return false;
}
m_wakeStopPromise.set_value();
if (m_playerObserver) {
m_playerObserver->onPlaybackFinished();
}
return true;
}
bool MockMediaPlayer::waitForPause(const std::chrono::milliseconds duration) {
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_wakeTriggerPause.wait_for(lock, duration, [this]() { return (m_pause || m_shutdown); })) {
if (m_playerObserver) {
m_playerObserver->onPlaybackError(ErrorType::MEDIA_ERROR_UNKNOWN, "waitForPause timed out");
}
return false;
}
m_wakePausePromise.set_value();
if (m_playerObserver) {
m_playerObserver->onPlaybackPaused();
}
return true;
}
bool MockMediaPlayer::waitForResume(const std::chrono::milliseconds duration) {
std::unique_lock<std::mutex> lock(m_mutex);
if (!m_wakeTriggerResume.wait_for(lock, duration, [this]() { return (m_resume || m_shutdown); })) {
if (m_playerObserver) {
m_playerObserver->onPlaybackError(ErrorType::MEDIA_ERROR_UNKNOWN, "waitForResume timed out");
}
return false;
}
m_wakeResumePromise.set_value();
if (m_playerObserver) {
m_playerObserver->onPlaybackResumed();
}
return true;
}
bool MockMediaPlayer::waitUntilPlaybackStarted(std::chrono::milliseconds timeout) {
return m_wakePlayFuture.wait_for(timeout) == std::future_status::ready;
}
bool MockMediaPlayer::waitUntilPlaybackFinished(std::chrono::milliseconds timeout) {
return m_wakeStopFuture.wait_for(timeout) == std::future_status::ready;
}
bool MockMediaPlayer::waitUntilPlaybackPaused(std::chrono::milliseconds timeout) {
return m_wakePauseFuture.wait_for(timeout) == std::future_status::ready;
}
bool MockMediaPlayer::waitUntilPlaybackResumed(std::chrono::milliseconds timeout) {
return m_wakeResumeFuture.wait_for(timeout) == std::future_status::ready;
}
class AudioPlayerTest : public ::testing::Test {
public:
AudioPlayerTest();
void SetUp() override;
void TearDown() override;
/// @c AudioPlayer to test
std::shared_ptr<AudioPlayer> m_audioPlayer;
/// Player to send the audio to.
std::shared_ptr<MockMediaPlayer> m_mockMediaPlayer;
/// @c ContextManager to provide state and update state.
std::shared_ptr<MockContextManager> m_mockContextManager;
/// @c FocusManager to request focus to the DIALOG channel.
std::shared_ptr<MockFocusManager> m_mockFocusManager;
/// A directive handler result to send the result to.
std::unique_ptr<MockDirectiveHandlerResult> m_mockDirectiveHandlerResult;
/// A message sender used to send events to AVS.
std::shared_ptr<MockMessageSender> m_mockMessageSender;
/// An exception sender used to send exception encountered events to AVS.
std::shared_ptr<MockExceptionEncounteredSender> m_mockExceptionSender;
/// Attachment manager used to create a reader.
std::shared_ptr<AttachmentManager> m_attachmentManager;
/// Map for expected messages testing
std::map<std::string, bool> m_expectedMessages;
/**
* This is invoked in response to a @c setState call.
*
* @return @c SUCCESS.
*/
SetStateResult wakeOnSetState();
/// Promise to be fulfilled when @c setState is called.
std::promise<void> m_wakeSetStatePromise;
/// Future to notify when @c setState is called.
std::future<void> m_wakeSetStateFuture;
/**
* This is invoked in response to a @c acquireChannel call.
*
* @return @c true
*/
bool wakeOnAcquireChannel();
/// Promise to be fulfilled when @c acquireChannel is called.
std::promise<void> m_wakeAcquireChannelPromise;
/// Future to notify when @c acquireChannel is called.
std::future<void> m_wakeAcquireChannelFuture;
/**
* This is invoked in response to a @c releaseChannel call.
*
* @return @c true
*/
std::future<bool> wakeOnReleaseChannel();
/// Future to notify when @c releaseChannel is called.
std::future<void> m_wakeReleaseChannelFuture;
/**
* Fulfills the @c m_wakeSendMessagePromise. This is invoked in response to a @c sendMessage call.
*/
void wakeOnSendMessage();
/// Promise to be fulfilled when @c sendMessage is called.
std::promise<void> m_wakeSendMessagePromise;
/// Future to notify when @c sendMessage is called.
std::future<void> m_wakeSendMessageFuture;
/**
* Consolidate code to send Play directive.
*/
void sendPlayDirective();
/**
* Consolidate code to send ClearQueue directive
*/
void sendClearQueueDirective();
/**
* Verify that the message name matches the expected name
*
* @param request The @c MessageRequest to verify
* @param expectedName The expected name to find in the json header
*/
void verifyMessage(
std::shared_ptr<avsCommon::avs::MessageRequest> request,
std::map<std::string, bool>* expectedMessages);
/**
* Verify that the providede state matches the expected state
*
* @param jsonState The state to verify
* @param expectedState The expected state
*/
void verifyState(const std::string& providedState, const std::string& expectedState);
/// Condition variable to wake on a message being sent
std::condition_variable messageSentTrigger;
/// Mutex for messages
std::mutex messageMutex;
};
AudioPlayerTest::AudioPlayerTest() :
m_wakeSetStatePromise{},
m_wakeSetStateFuture{m_wakeSetStatePromise.get_future()},
m_wakeAcquireChannelPromise{},
m_wakeAcquireChannelFuture{m_wakeAcquireChannelPromise.get_future()},
m_wakeSendMessagePromise{},
m_wakeSendMessageFuture{m_wakeSendMessagePromise.get_future()} {
}
void AudioPlayerTest::SetUp() {
m_mockContextManager = std::make_shared<NiceMock<MockContextManager>>();
m_mockFocusManager = std::make_shared<NiceMock<MockFocusManager>>();
m_mockMessageSender = std::make_shared<NiceMock<MockMessageSender>>();
m_mockExceptionSender = std::make_shared<NiceMock<MockExceptionEncounteredSender>>();
m_attachmentManager = std::make_shared<AttachmentManager>(AttachmentManager::AttachmentType::IN_PROCESS);
m_mockMediaPlayer = MockMediaPlayer::create();
m_audioPlayer = AudioPlayer::create(
m_mockMediaPlayer,
m_mockMessageSender,
m_mockFocusManager,
m_mockContextManager,
m_attachmentManager,
m_mockExceptionSender);
m_mockDirectiveHandlerResult.reset(new MockDirectiveHandlerResult);
ASSERT_TRUE(m_audioPlayer);
}
void AudioPlayerTest::TearDown() {
m_audioPlayer->shutdown();
}
SetStateResult AudioPlayerTest::wakeOnSetState() {
m_wakeSetStatePromise.set_value();
return SetStateResult::SUCCESS;
}
bool AudioPlayerTest::wakeOnAcquireChannel() {
m_wakeAcquireChannelPromise.set_value();
return true;
}
std::future<bool> AudioPlayerTest::wakeOnReleaseChannel() {
std::promise<bool> releaseChannelSuccess;
std::future<bool> returnValue = releaseChannelSuccess.get_future();
releaseChannelSuccess.set_value(true);
return returnValue;
}
void AudioPlayerTest::wakeOnSendMessage() {
m_wakeSendMessagePromise.set_value();
}
void AudioPlayerTest::sendPlayDirective() {
auto avsMessageHeader =
std::make_shared<AVSMessageHeader>(NAMESPACE_AUDIO_PLAYER, NAME_PLAY, MESSAGE_ID_TEST, PLAY_REQUEST_ID_TEST);
std::shared_ptr<AVSDirective> playDirective =
AVSDirective::create("", avsMessageHeader, ENQUEUE_PAYLOAD_TEST, m_attachmentManager, CONTEXT_ID_TEST);
EXPECT_CALL(*(m_mockFocusManager.get()), acquireChannel(CHANNEL_NAME, _, FOCUS_MANAGER_ACTIVITY_ID))
.Times(1)
.WillOnce(InvokeWithoutArgs(this, &AudioPlayerTest::wakeOnAcquireChannel));
m_audioPlayer->CapabilityAgent::preHandleDirective(playDirective, std::move(m_mockDirectiveHandlerResult));
m_audioPlayer->CapabilityAgent::handleDirective(MESSAGE_ID_TEST);
ASSERT_TRUE(std::future_status::ready == m_wakeAcquireChannelFuture.wait_for(WAIT_TIMEOUT));
m_audioPlayer->onFocusChanged(FocusState::FOREGROUND);
}
void AudioPlayerTest::sendClearQueueDirective() {
auto avsClearMessageHeader = std::make_shared<AVSMessageHeader>(
NAMESPACE_AUDIO_PLAYER, NAME_CLEARQUEUE, MESSAGE_ID_TEST, PLAY_REQUEST_ID_TEST);
std::shared_ptr<AVSDirective> clearQueueDirective =
AVSDirective::create("", avsClearMessageHeader, CLEAR_ALL_PAYLOAD_TEST, m_attachmentManager, CONTEXT_ID_TEST);
m_audioPlayer->CapabilityAgent::preHandleDirective(clearQueueDirective, std::move(m_mockDirectiveHandlerResult));
m_audioPlayer->CapabilityAgent::handleDirective(MESSAGE_ID_TEST);
}
void AudioPlayerTest::verifyMessage(
std::shared_ptr<avsCommon::avs::MessageRequest> request,
std::map<std::string, bool>* expectedMessages) {
rapidjson::Document document;
document.Parse(request->getJsonContent().c_str());
EXPECT_FALSE(document.HasParseError())
<< "rapidjson detected a parsing error at offset:" + std::to_string(document.GetErrorOffset()) +
", error message: " + GetParseError_En(document.GetParseError());
auto event = document.FindMember(MESSAGE_EVENT_KEY);
EXPECT_NE(event, document.MemberEnd());
auto header = event->value.FindMember(MESSAGE_HEADER_KEY);
EXPECT_NE(header, event->value.MemberEnd());
std::string requestName;
jsonUtils::retrieveValue(header->value, MESSAGE_NAME_KEY, &requestName);
if (expectedMessages->find(requestName) != expectedMessages->end()) {
expectedMessages->at(requestName) = true;
}
}
void AudioPlayerTest::verifyState(const std::string& providedState, const std::string& expectedState) {
rapidjson::Document providedStateParsed;
providedStateParsed.Parse(providedState);
rapidjson::Document expectedStateParsed;
expectedStateParsed.Parse(expectedState);
EXPECT_EQ(providedStateParsed, expectedStateParsed);
}
/**
* Test create() with nullptrs
*/
TEST_F(AudioPlayerTest, testCreateWithNullPointers) {
std::shared_ptr<AudioPlayer> testAudioPlayer;
testAudioPlayer = AudioPlayer::create(
m_mockMediaPlayer,
nullptr,
m_mockFocusManager,
m_mockContextManager,
m_attachmentManager,
m_mockExceptionSender);
EXPECT_EQ(testAudioPlayer, nullptr);
testAudioPlayer = AudioPlayer::create(
m_mockMediaPlayer,
m_mockMessageSender,
nullptr,
m_mockContextManager,
m_attachmentManager,
m_mockExceptionSender);
EXPECT_EQ(testAudioPlayer, nullptr);
testAudioPlayer = AudioPlayer::create(
m_mockMediaPlayer,
m_mockMessageSender,
m_mockFocusManager,
nullptr,
m_attachmentManager,
m_mockExceptionSender);
EXPECT_EQ(testAudioPlayer, nullptr);
testAudioPlayer = AudioPlayer::create(
m_mockMediaPlayer,
m_mockMessageSender,
m_mockFocusManager,
m_mockContextManager,
nullptr,
m_mockExceptionSender);
EXPECT_EQ(testAudioPlayer, nullptr);
testAudioPlayer = AudioPlayer::create(
m_mockMediaPlayer, m_mockMessageSender, m_mockFocusManager, m_mockContextManager, m_attachmentManager, nullptr);
EXPECT_EQ(testAudioPlayer, nullptr);
}
/**
* Test transition from Idle to Playing
*/
TEST_F(AudioPlayerTest, testTransitionFromIdleToPlaying) {
EXPECT_CALL(*(m_mockMediaPlayer.get()), play()).Times(AtLeast(1));
sendPlayDirective();
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackStarted());
}
/**
* Test transition from Playing to Stopped with Stop Directive
*/
TEST_F(AudioPlayerTest, testTransitionFromPlayingToStopped) {
sendPlayDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), stop()).Times(AtLeast(1));
// now send Stop directive
auto avsStopMessageHeader =
std::make_shared<AVSMessageHeader>(NAMESPACE_AUDIO_PLAYER, NAME_STOP, MESSAGE_ID_TEST, PLAY_REQUEST_ID_TEST);
std::shared_ptr<AVSDirective> stopDirective =
AVSDirective::create("", avsStopMessageHeader, EMPTY_PAYLOAD_TEST, m_attachmentManager, CONTEXT_ID_TEST);
m_audioPlayer->CapabilityAgent::preHandleDirective(stopDirective, std::move(m_mockDirectiveHandlerResult));
m_audioPlayer->CapabilityAgent::handleDirective(MESSAGE_ID_TEST);
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackFinished());
}
/**
* Test transition from Playing to Stopped with ClearQueue.CLEAR_ALL Directive
*/
TEST_F(AudioPlayerTest, testTransitionFromPlayingToStoppedWithClear) {
sendPlayDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), stop()).Times(AtLeast(1));
sendClearQueueDirective();
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackFinished());
}
/**
* Test transition from Stopped to Playing after issuing second Play directive
*/
TEST_F(AudioPlayerTest, testTransitionFromStoppedToPlaying) {
sendPlayDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), stop()).Times(AtLeast(1));
sendClearQueueDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), play()).Times(AtLeast(1));
/// send a second Play directive
auto avsMessageHeader = std::make_shared<AVSMessageHeader>(NAMESPACE_AUDIO_PLAYER, NAME_PLAY, MESSAGE_ID_TEST_2);
std::shared_ptr<AVSDirective> playDirective =
AVSDirective::create("", avsMessageHeader, ENQUEUE_PAYLOAD_TEST, m_attachmentManager, CONTEXT_ID_TEST_2);
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackStarted());
m_audioPlayer->CapabilityAgent::preHandleDirective(playDirective, std::move(m_mockDirectiveHandlerResult));
m_audioPlayer->CapabilityAgent::handleDirective(MESSAGE_ID_TEST_2);
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackStarted());
m_audioPlayer->onFocusChanged(FocusState::FOREGROUND);
}
/**
* Test transition from Playing to Paused when focus changes to Dialog channel
*/
TEST_F(AudioPlayerTest, testTransitionFromPlayingToPaused) {
sendPlayDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), pause()).Times(AtLeast(1));
// simulate focus change
m_audioPlayer->onFocusChanged(FocusState::BACKGROUND);
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackPaused());
}
/**
* Test transition from Paused to Stopped on ClearQueue.CLEAR_ALL directive
*/
TEST_F(AudioPlayerTest, testTransitionFromPausedToStopped) {
sendPlayDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), stop()).Times(AtLeast(1));
// simulate focus change in order to pause
m_audioPlayer->onFocusChanged(FocusState::BACKGROUND);
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackPaused());
sendClearQueueDirective();
}
/**
* Test transition from Paused to Playing after resume
*/
TEST_F(AudioPlayerTest, testResumeAfterPaused) {
sendPlayDirective();
EXPECT_CALL(*(m_mockMediaPlayer.get()), stop()).Times(AtLeast(1));
// simulate focus change in order to pause
m_audioPlayer->onFocusChanged(FocusState::BACKGROUND);
ASSERT_TRUE(m_mockMediaPlayer->waitUntilPlaybackPaused());
EXPECT_CALL(*(m_mockMediaPlayer.get()), resume()).Times(AtLeast(1));
m_audioPlayer->onFocusChanged(FocusState::FOREGROUND);
}
/**
* Test @c provideState while IDLE
*/
TEST_F(AudioPlayerTest, testCallingProvideStateWhenIdle) {
EXPECT_CALL(
*(m_mockContextManager.get()),
setState(NAMESPACE_AND_NAME_PLAYBACK_STATE, _, StateRefreshPolicy::NEVER, PROVIDE_STATE_TOKEN_TEST))
.Times(1)
.WillOnce(DoAll(
// need to include all four arguments, but only care about jsonState
Invoke([this](
const avs::NamespaceAndName& namespaceAndName,
const std::string& jsonState,
const avs::StateRefreshPolicy& refreshPolicy,
const unsigned int stateRequestToken) { verifyState(jsonState, IDLE_STATE_TEST); }),
InvokeWithoutArgs(this, &AudioPlayerTest::wakeOnSetState)));
m_audioPlayer->provideState(PROVIDE_STATE_TOKEN_TEST);
ASSERT_TRUE(std::future_status::ready == m_wakeSetStateFuture.wait_for(WAIT_TIMEOUT));
}
/**
* Test @c onPlaybackError and expect a PlaybackFailed message
*/
TEST_F(AudioPlayerTest, testOnPlaybackError) {
m_expectedMessages.insert({PLAYBACK_STARTED_NAME, false});
m_expectedMessages.insert({PLAYBACK_NEARLY_FINISHED_NAME, false});
m_expectedMessages.insert({PLAYBACK_FAILED_NAME, false});
EXPECT_CALL(*(m_mockMessageSender.get()), sendMessage(_))
.Times(AtLeast(1))
.WillRepeatedly(Invoke([this](std::shared_ptr<avsCommon::avs::MessageRequest> request) {
if (!m_mockMediaPlayer->m_stop) {
std::lock_guard<std::mutex> lock(messageMutex);
verifyMessage(request, &m_expectedMessages);
messageSentTrigger.notify_one();
}
}));
sendPlayDirective();
m_audioPlayer->onPlaybackError(ErrorType::MEDIA_ERROR_UNKNOWN, "TEST_ERROR");
std::unique_lock<std::mutex> lock(messageMutex);
bool result;
result = messageSentTrigger.wait_for(lock, WAIT_TIMEOUT, [this] {
for (auto messageStatus : m_expectedMessages) {
if (!messageStatus.second) {
return false;
}
}
return true;
});
ASSERT_TRUE(result);
}
/**
* Test @c onPlaybackPaused and expect a PlaybackPaused message
*/
TEST_F(AudioPlayerTest, testOnPlaybackPaused) {
m_expectedMessages.insert({PLAYBACK_STARTED_NAME, false});
m_expectedMessages.insert({PLAYBACK_NEARLY_FINISHED_NAME, false});
m_expectedMessages.insert({PLAYBACK_PAUSED_NAME, false});
EXPECT_CALL(*(m_mockMessageSender.get()), sendMessage(_))
.Times(AtLeast(1))
.WillRepeatedly(Invoke([this](std::shared_ptr<avsCommon::avs::MessageRequest> request) {
if (!m_mockMediaPlayer->m_stop) {
std::lock_guard<std::mutex> lock(messageMutex);
verifyMessage(request, &m_expectedMessages);
messageSentTrigger.notify_one();
}
}));
sendPlayDirective();
m_audioPlayer->onPlaybackPaused();
std::unique_lock<std::mutex> lock(messageMutex);
bool result;
result = messageSentTrigger.wait_for(lock, WAIT_TIMEOUT, [this] {
for (auto messageStatus : m_expectedMessages) {
if (!messageStatus.second) {
return false;
}
}
return true;
});
ASSERT_TRUE(result);
}
/**
* Test @c onPlaybackResumed and expect a PlaybackResumed message
*/
TEST_F(AudioPlayerTest, testOnPlaybackResumed) {
m_expectedMessages.insert({PLAYBACK_STARTED_NAME, false});
m_expectedMessages.insert({PLAYBACK_NEARLY_FINISHED_NAME, false});
m_expectedMessages.insert({PLAYBACK_RESUMED_NAME, false});
EXPECT_CALL(*(m_mockMessageSender.get()), sendMessage(_))
.Times(AtLeast(1))
.WillRepeatedly(Invoke([this](std::shared_ptr<avsCommon::avs::MessageRequest> request) {
if (!m_mockMediaPlayer->m_stop) {
std::lock_guard<std::mutex> lock(messageMutex);
verifyMessage(request, &m_expectedMessages);
messageSentTrigger.notify_one();
}
}));
sendPlayDirective();
m_audioPlayer->onPlaybackResumed();
std::unique_lock<std::mutex> lock(messageMutex);
bool result;
result = messageSentTrigger.wait_for(lock, WAIT_TIMEOUT, [this] {
for (auto messageStatus : m_expectedMessages) {
if (!messageStatus.second) {
return false;
}
}
return true;
});
ASSERT_TRUE(result);
}
/**
* Test @c onBufferUnderrun and expect a PlaybackStutterStarted message
*/
TEST_F(AudioPlayerTest, testOnBufferUnderrun) {
m_expectedMessages.insert({PLAYBACK_STARTED_NAME, false});
m_expectedMessages.insert({PLAYBACK_NEARLY_FINISHED_NAME, false});
m_expectedMessages.insert({PLAYBACK_STUTTER_STARTED_NAME, false});
EXPECT_CALL(*(m_mockMessageSender.get()), sendMessage(_))
.Times(AtLeast(1))
.WillRepeatedly(Invoke([this](std::shared_ptr<avsCommon::avs::MessageRequest> request) {
if (!m_mockMediaPlayer->m_stop) {
std::lock_guard<std::mutex> lock(messageMutex);
verifyMessage(request, &m_expectedMessages);
messageSentTrigger.notify_one();
}
}));
sendPlayDirective();
m_audioPlayer->onBufferUnderrun();
std::unique_lock<std::mutex> lock(messageMutex);
bool result;
result = messageSentTrigger.wait_for(lock, WAIT_TIMEOUT, [this] {
for (auto messageStatus : m_expectedMessages) {
if (!messageStatus.second) {
return false;
}
}
return true;
});
ASSERT_TRUE(result);
}
/**
* Test @c onBufferRefilled and expect a PlaybackStutterFinished message
*/
TEST_F(AudioPlayerTest, testOnBufferRefilled) {
m_expectedMessages.insert({PLAYBACK_STARTED_NAME, false});
m_expectedMessages.insert({PLAYBACK_NEARLY_FINISHED_NAME, false});
m_expectedMessages.insert({PLAYBACK_STUTTER_FINISHED_NAME, false});
EXPECT_CALL(*(m_mockMessageSender.get()), sendMessage(_))
.Times(AtLeast(1))
.WillRepeatedly(Invoke([this](std::shared_ptr<avsCommon::avs::MessageRequest> request) {
if (!m_mockMediaPlayer->m_stop) {
std::lock_guard<std::mutex> lock(messageMutex);
verifyMessage(request, &m_expectedMessages);
messageSentTrigger.notify_one();
}
}));
sendPlayDirective();
m_audioPlayer->onBufferRefilled();
std::unique_lock<std::mutex> lock(messageMutex);
bool result;
result = messageSentTrigger.wait_for(lock, WAIT_TIMEOUT, [this] {
for (auto messageStatus : m_expectedMessages) {
if (!messageStatus.second) {
return false;
}
}
return true;
});
ASSERT_TRUE(result);
}
/**
* Test @c cancelDirective
* Expect the @c handleDirective call to the cancelled directive returns false
*/
TEST_F(AudioPlayerTest, testCancelDirective) {
sendPlayDirective();
m_audioPlayer->CapabilityAgent::cancelDirective(MESSAGE_ID_TEST);
ASSERT_FALSE(m_audioPlayer->CapabilityAgent::handleDirective(MESSAGE_ID_TEST));
}
} // namespace test
} // namespace audioPlayer
} // namespace capabilityAgents
} // namespace alexaClientSDK
| [
"rozenbf@amazon.com"
] | rozenbf@amazon.com |
bd8ae6cd2bd6a983228e936509bd9a14ee043aaa | 73dd6869ad9e72ca20efc9c3881c626a08290f58 | /src/client/Util/SystemInfo.h | d2cd0efd1213c85d414940f41fcc85097467615e | [] | no_license | rcirca/irose | 76cd50fa223375c67e6db412aea2ab941d4c1934 | 39afb7d253f66c0f5f6661d0cb0c179c64a6e64e | refs/heads/master | 2020-03-19T16:21:58.555061 | 2018-05-23T13:03:18 | 2018-05-23T13:03:18 | 136,712,714 | 4 | 4 | null | 2018-06-09T10:17:04 | 2018-06-09T10:17:04 | null | UHC | C++ | false | false | 898 | h | #ifndef _SYSTEM_INFO_
#define _SYSTEM_INFO_
enum enumWINDOWS_VERSION
{
WINDOWS_98 = 0,
WINDOWS_NT,
WINDOWS_ME,
WINDOWS_2000,
};
//----------------------------------------------------------------------------------------------------
/// class CSystemInfo
/// 유즈 시스템의 정보 관리
//----------------------------------------------------------------------------------------------------
class CSystemInfo
{
private:
char m_szLanguageBuffer[64];
char m_szWindowsFolder[1024];
OSVERSIONINFO m_OSVerInfo;
int m_iWindowsVersion;
public:
CSystemInfo(void);
~CSystemInfo(void);
void CollectingSystemInfo();
int GetWindowsVersion(){ return m_iWindowsVersion; }
const char* GetLanguage(){ return m_szLanguageBuffer; }
const char* GetWindowsFolder(){ return m_szWindowsFolder; }
};
extern class CSystemInfo g_SystemInfo;
#endif //_SYSTEM_INFO_ | [
"ralphminderhoud@gmail.com"
] | ralphminderhoud@gmail.com |
2e158b53375f6b443c0c190436aa8ff01d9de353 | 5be9c7f71d5fa33eb6b6bc094f28022f162d1b71 | /NestedHypervisor/HyperPlatform/HyperPlatform/vm.cpp | 328b9bdc9df83cc22aee49cfa51533196ec6d8d7 | [
"MIT"
] | permissive | chengtaowan/VirtICE | d50c4685f56fcb50f48c93de4a737a1f7bf15aa3 | 136f07357404cac5b9919b310b4c26e7af7550a3 | refs/heads/master | 2023-03-15T15:14:41.012792 | 2020-08-03T03:27:49 | 2020-08-03T03:27:49 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 48,854 | cpp | // Copyright (c) 2015-2016, tandasat. All rights reserved.
// Use of this source code is governed by a MIT-style license that can be
// found in the LICENSE file.
/// @file
/// Implements VMM initialization functions.
#include "vm.h"
#include <intrin.h>
#include "asm.h"
#include "common.h"
#include "ept.h"
#include "log.h"
#include "util.h"
#include "vmm.h"
#include "../../DdiMon/ddi_mon.h"
#include "../../DdiMon/shadow_hook.h"
extern "C" {
////////////////////////////////////////////////////////////////////////////////
//
// macro utilities
//
////////////////////////////////////////////////////////////////////////////////
//
// constants and macros
//
////////////////////////////////////////////////////////////////////////////////
//
// types
//
////////////////////////////////////////////////////////////////////////////////
//
// prototypes
//
VOID PrintVMCS();
_IRQL_requires_max_(PASSIVE_LEVEL) static bool VmpIsVmxAvailable();
_IRQL_requires_(DISPATCH_LEVEL) static NTSTATUS
VmpSetLockBitCallback(_In_opt_ void *context);
_IRQL_requires_max_(PASSIVE_LEVEL) static SharedProcessorData *VmpInitializeSharedData();
_IRQL_requires_(DISPATCH_LEVEL) static NTSTATUS VmpStartVM(_In_opt_ void *context);
static void VmpInitializeVm(_In_ ULONG_PTR guest_stack_pointer,
_In_ ULONG_PTR guest_instruction_pointer,
_In_opt_ void *context);
static bool VmpEnterVmxMode(_Inout_ ProcessorData *processor_data);
static bool VmpInitializeVMCS(_Inout_ ProcessorData *processor_data);
static bool VmpSetupVMCS(_In_ const ProcessorData *processor_data,
_In_ ULONG_PTR guest_stack_pointer,
_In_ ULONG_PTR guest_instruction_pointer,
_In_ ULONG_PTR vmm_stack_pointer);
static void VmpLaunchVM();
static ULONG VmpGetSegmentAccessRight(_In_ USHORT segment_selector);
static SegmentDesctiptor *VmpGetSegmentDescriptor(
_In_ ULONG_PTR descriptor_table_base, _In_ USHORT segment_selector);
static ULONG_PTR VmpGetSegmentBaseByDescriptor(
_In_ const SegmentDesctiptor *segment_descriptor);
static ULONG_PTR VmpGetSegmentBase(_In_ ULONG_PTR gdt_base,
_In_ USHORT segment_selector);
static ULONG VmpAdjustControlValue(_In_ Msr msr, _In_ ULONG requested_value);
static NTSTATUS VmpStopVM(_In_opt_ void *context);
static KSTART_ROUTINE VmpVmxOffThreadRoutine;
static void VmpFreeProcessorData(_In_opt_ ProcessorData *processor_data);
static bool VmpIsVmmInstalled();
#if defined(ALLOC_PRAGMA)
#pragma alloc_text(INIT, VmInitialization)
#pragma alloc_text(INIT, VmpIsVmxAvailable)
#pragma alloc_text(INIT, VmpSetLockBitCallback)
#pragma alloc_text(INIT, VmpInitializeSharedData)
#pragma alloc_text(INIT, VmpStartVM)
#pragma alloc_text(INIT, VmpInitializeVm)
#pragma alloc_text(INIT, VmpEnterVmxMode)
#pragma alloc_text(INIT, VmpInitializeVMCS)
#pragma alloc_text(INIT, VmpSetupVMCS)
#pragma alloc_text(INIT, VmpLaunchVM)
#pragma alloc_text(INIT, VmpGetSegmentAccessRight)
#pragma alloc_text(INIT, VmpGetSegmentBase)
#pragma alloc_text(INIT, VmpGetSegmentDescriptor)
#pragma alloc_text(INIT, VmpGetSegmentBaseByDescriptor)
#pragma alloc_text(INIT, VmpAdjustControlValue)
#pragma alloc_text(PAGE, VmTermination)
#pragma alloc_text(PAGE, VmpVmxOffThreadRoutine)
#endif
////////////////////////////////////////////////////////////////////////////////
//
// variables
//
////////////////////////////////////////////////////////////////////////////////
//
// implementations
//
// Define GetSegmentLimit if it is not defined yet (it is only defined on x64)
#if !defined(GetSegmentLimit)
inline ULONG GetSegmentLimit(_In_ ULONG selector) {
return __segmentlimit(selector);
}
#endif
// Checks if a VMM can be installed, and so, installs it
SharedShadowHookData* sharedata;
_Use_decl_annotations_ NTSTATUS VmInitialization() {
if (VmpIsVmmInstalled())
{
HYPERPLATFORM_LOG_DEBUG_SAFE("Vmp is installed %x \r\n", KeGetCurrentIrql());
return STATUS_CANCELLED;
}
if (!VmpIsVmxAvailable())
{
HYPERPLATFORM_LOG_DEBUG_SAFE("vmx not avaiable %x \r\n", KeGetCurrentIrql());
return STATUS_HV_FEATURE_UNAVAILABLE;
}
//Prepared a MST-Bitmap and EMPTY HOOKDATA data array
const auto shared_data = VmpInitializeSharedData();
if (!shared_data) {
HYPERPLATFORM_LOG_DEBUG_SAFE("VmpInitializeSharedData not avaiable %x \r\n",KeGetCurrentIrql());
return STATUS_MEMORY_NOT_ALLOCATED;
}
auto status = UtilForEachProcessor(VmpStartVM, shared_data);
if (!NT_SUCCESS(status)) {
HYPERPLATFORM_LOG_DEBUG_SAFE("VmpStartVM not avaiable %x ", KeGetCurrentIrql());
UtilForEachProcessor(VmpStopVM, nullptr);
return status;
}
HYPERPLATFORM_COMMON_DBG_BREAK();
return status;
}
// Checks if the system supports virtualization
_Use_decl_annotations_ static bool VmpIsVmxAvailable() {
PAGED_CODE();
// See: DISCOVERING SUPPORT FOR VMX
// If CPUID.1:ECX.VMX[bit 5]=1, then VMX operation is supported.
int cpu_info[4] = {};
__cpuid(cpu_info, 1);
const CpuFeaturesEcx cpu_features = {static_cast<ULONG_PTR>(cpu_info[2])};
if (!cpu_features.fields.vmx) {
HYPERPLATFORM_LOG_ERROR("VMX features are not supported.");
return false;
}
// See: BASIC VMX INFORMATION
// The first processors to support VMX operation use the write-back type.
const Ia32VmxBasicMsr vmx_basic_msr = {UtilReadMsr64(Msr::kIa32VmxBasic)};
if (static_cast<memory_type>(vmx_basic_msr.fields.memory_type) !=
memory_type::kWriteBack) {
HYPERPLATFORM_LOG_ERROR("Write-back cache type is not supported.");
return false;
}
// See: ENABLING AND ENTERING VMX OPERATION
Ia32FeatureControlMsr vmx_feature_control = {
UtilReadMsr64(Msr::kIa32FeatureControl)};
if (!vmx_feature_control.fields.lock) {
HYPERPLATFORM_LOG_INFO("The lock bit is clear. Attempting to set 1.");
const auto status = UtilForEachProcessor(VmpSetLockBitCallback, nullptr);
if (!NT_SUCCESS(status)) {
return false;
}
}
if (!vmx_feature_control.fields.enable_vmxon) {
HYPERPLATFORM_LOG_ERROR("VMX features are not enabled.");
return false;
}
/*
if (!EptIsEptAvailable()) {
HYPERPLATFORM_LOG_ERROR("EPT features are not fully supported.");
return false;
}
*/
return true;
}
// Sets 1 to the lock bit of the IA32_FEATURE_CONTROL MSR
_Use_decl_annotations_ static NTSTATUS VmpSetLockBitCallback(void *context) {
UNREFERENCED_PARAMETER(context);
Ia32FeatureControlMsr vmx_feature_control = {
UtilReadMsr64(Msr::kIa32FeatureControl)};
if (vmx_feature_control.fields.lock) {
return STATUS_SUCCESS;
}
vmx_feature_control.fields.lock = true;
UtilWriteMsr64(Msr::kIa32FeatureControl, vmx_feature_control.all);
vmx_feature_control.all = UtilReadMsr64(Msr::kIa32FeatureControl);
if (!vmx_feature_control.fields.lock) {
HYPERPLATFORM_LOG_ERROR("The lock bit is still clear.");
return STATUS_DEVICE_CONFIGURATION_ERROR;
}
return STATUS_SUCCESS;
}
// Initialize shared processor data
_Use_decl_annotations_ static SharedProcessorData *VmpInitializeSharedData()
{
PAGED_CODE();
const auto shared_data = reinterpret_cast<SharedProcessorData *>(ExAllocatePoolWithTag(NonPagedPoolNx, sizeof(SharedProcessorData),
kHyperPlatformCommonPoolTag));
if (!shared_data) {
return nullptr;
}
RtlZeroMemory(shared_data, sizeof(SharedProcessorData));
HYPERPLATFORM_LOG_DEBUG_SAFE("SharedData= %p", shared_data);
// Set up the MSR bitmap
const auto msr_bitmap = ExAllocatePoolWithTag(NonPagedPoolNx, PAGE_SIZE,
kHyperPlatformCommonPoolTag);
if (!msr_bitmap) {
ExFreePoolWithTag(shared_data, kHyperPlatformCommonPoolTag);
return nullptr;
}
RtlZeroMemory(msr_bitmap, PAGE_SIZE);
//hook msr
shared_data->msr_bitmap = msr_bitmap;
bool unsafe_msr_map[0x1000] = {};
for (auto msr = 0ul; msr < RTL_NUMBER_OF(unsafe_msr_map); ++msr)
{
__try
{
UtilReadMsr(static_cast<Msr>(msr));
} __except (EXCEPTION_EXECUTE_HANDLER) {
unsafe_msr_map[msr] = true;
}
}
// Activate VM-exit for RDMSR against all MSRs
const auto bitmap_read_low = reinterpret_cast<UCHAR *>(msr_bitmap);
const auto bitmap_read_high = bitmap_read_low + 1024;
RtlFillMemory(bitmap_read_low, 1024, 0xff); // read 0 - 1fff
RtlFillMemory(bitmap_read_high, 1024, 0xff); // read c0000000 - c0001fff
// But ignore IA32_MPERF (000000e7) and IA32_APERF (000000e8)
RTL_BITMAP bitmap_read_low_header = {};
RtlInitializeBitMap(&bitmap_read_low_header, reinterpret_cast<PULONG>(bitmap_read_low), 1024 * 8);
RtlClearBits(&bitmap_read_low_header, 0xe7, 2);
// Also ignore the unsage MSRs
for (auto msr = 0ul; msr < RTL_NUMBER_OF(unsafe_msr_map); ++msr) {
const auto ignore = unsafe_msr_map[msr];
if (ignore) {
RtlClearBits(&bitmap_read_low_header, msr, 1);
}
}
// But ignore IA32_GS_BASE (c0000101) and IA32_KERNEL_GS_BASE (c0000102)
RTL_BITMAP bitmap_read_high_header = {};
RtlInitializeBitMap(&bitmap_read_high_header,
reinterpret_cast<PULONG>(bitmap_read_high), 1024 * 8);
RtlClearBits(&bitmap_read_high_header, 0x101, 2);
// Set up shared shadow hook data
shared_data->shared_sh_data = ShAllocateSharedShaowHookData();
if (!shared_data->shared_sh_data) {
ExFreePoolWithTag(msr_bitmap, kHyperPlatformCommonPoolTag);
ExFreePoolWithTag(shared_data, kHyperPlatformCommonPoolTag);
return nullptr;
}
return shared_data;
}
// Virtualize the current processor
_Use_decl_annotations_ static NTSTATUS VmpStartVM(void *context)
{
HYPERPLATFORM_LOG_DEBUG_SAFE("Initializing VMX for the processor %d. with IRQL: %X",
KeGetCurrentProcessorNumberEx(nullptr), KeGetCurrentIrql());
const auto ok = AsmInitializeVm(VmpInitializeVm, context);
if (!ok)
{
return STATUS_UNSUCCESSFUL;
}
HYPERPLATFORM_LOG_DEBUG_SAFE("L2 Initialized successfully.");
return STATUS_SUCCESS;
}
_Use_decl_annotations_ static void VmpInitializeVm(ULONG_PTR guest_stack_pointer, ULONG_PTR guest_instruction_pointer, void *context)
{
const auto shared_data = reinterpret_cast<SharedProcessorData *>(context);
if (!shared_data)
{
return;
}
// Allocate related structures
const auto processor_data = reinterpret_cast<ProcessorData *>(ExAllocatePoolWithTag(NonPagedPoolNx, sizeof(ProcessorData), kHyperPlatformCommonPoolTag));
if (!processor_data)
{
return;
}
RtlZeroMemory(processor_data, sizeof(ProcessorData));
processor_data->ept_data = EptInitialization();
if (!processor_data->ept_data)
{
goto ReturnFalse;
}
/*
processor_data->sh_data = ShAllocateShadowHookData();
if (!processor_data->sh_data) {
goto ReturnFalse;
}
*/
const auto vmm_stack_limit = UtilAllocateContiguousMemory(KERNEL_STACK_SIZE);
const auto vmcs_region =
reinterpret_cast<VmControlStructure *>(ExAllocatePoolWithTag(
NonPagedPoolNx, kVmxMaxVmcsSize, kHyperPlatformCommonPoolTag));
const auto vmxon_region =
reinterpret_cast<VmControlStructure *>(ExAllocatePoolWithTag(
NonPagedPoolNx, kVmxMaxVmcsSize, kHyperPlatformCommonPoolTag));
processor_data->vmm_stack_limit = vmm_stack_limit;
processor_data->vmcs_region = vmcs_region;
processor_data->vmxon_region = vmxon_region;
if (!vmm_stack_limit || !vmcs_region || !vmxon_region) {
goto ReturnFalse;
}
RtlZeroMemory(vmm_stack_limit, KERNEL_STACK_SIZE);
RtlZeroMemory(vmcs_region, kVmxMaxVmcsSize);
RtlZeroMemory(vmxon_region, kVmxMaxVmcsSize);
// Initialize stack memory for VMM like this:
//
// (High)
// +------------------+ <- vmm_stack_region_base (eg, AED37000)
// | processor_data |
// +------------------+ <- vmm_stack_data (eg, AED36FFC) ;
// | MAXULONG_PTR |
// +------------------+ <- vmm_stack_base (initial SP)(eg, AED36FF8)
// | | v
// | (VMM Stack) | v (grow)
// | | v
// +------------------+ <- vmm_stack_limit (eg, AED34000)
// (Low)
const auto vmm_stack_region_base = reinterpret_cast<ULONG_PTR>(vmm_stack_limit) + KERNEL_STACK_SIZE;
const auto vmm_stack_data = vmm_stack_region_base - sizeof(void *);
const auto vmm_stack_base = vmm_stack_data - sizeof(void *);
HYPERPLATFORM_LOG_ERROR("vmcs_region= %p", vmcs_region);
HYPERPLATFORM_LOG_ERROR("vmxon_region= %p", vmxon_region);
HYPERPLATFORM_LOG_ERROR("VmmStackTop= %p", vmm_stack_limit);
HYPERPLATFORM_LOG_ERROR("VmmStackBottom= %p", vmm_stack_region_base);
HYPERPLATFORM_LOG_ERROR("VmmStackData= %p", vmm_stack_data);
HYPERPLATFORM_LOG_ERROR("ProcessorData= %p stored at %p", processor_data,vmm_stack_data);
HYPERPLATFORM_LOG_ERROR("VmmStackBase= %p", vmm_stack_base);
HYPERPLATFORM_LOG_ERROR("GuestStackPointer= %p", guest_stack_pointer);
HYPERPLATFORM_LOG_ERROR("GuestInstPointer= %p", guest_instruction_pointer);
*reinterpret_cast<ULONG_PTR *>(vmm_stack_base) = MAXULONG_PTR;
*reinterpret_cast<ProcessorData **>(vmm_stack_data) = processor_data;
processor_data->shared_data = shared_data;
InterlockedIncrement(&processor_data->shared_data->reference_count);
// Set up VMCS
if (!VmpEnterVmxMode(processor_data)) {
goto ReturnFalse;
}
if (!VmpInitializeVMCS(processor_data)) {
goto ReturnFalseWithVmxOff;
}
if (!VmpSetupVMCS(processor_data, guest_stack_pointer,
guest_instruction_pointer, vmm_stack_base)) {
goto ReturnFalseWithVmxOff;
}
// Do virtualize the processor
VmpLaunchVM();
// Here is not be executed with successful vmlaunch. Instead, the context
// jumps to an address specified by guest_instruction_pointer.
ReturnFalseWithVmxOff:;
__vmx_off();
ReturnFalse:;
VmpFreeProcessorData(processor_data);
}
// See: VMM SETUP & TEAR DOWN
_Use_decl_annotations_ static bool VmpEnterVmxMode(ProcessorData *processor_data) {
// Apply FIXED bits
const Cr0 cr0_fixed0 = {UtilReadMsr(Msr::kIa32VmxCr0Fixed0)};
const Cr0 cr0_fixed1 = {UtilReadMsr(Msr::kIa32VmxCr0Fixed1)};
Cr0 cr0 = {__readcr0()};
cr0.all &= cr0_fixed1.all;
cr0.all |= cr0_fixed0.all;
__writecr0(cr0.all);
const Cr4 cr4_fixed0 = {UtilReadMsr(Msr::kIa32VmxCr4Fixed0)};
const Cr4 cr4_fixed1 = {UtilReadMsr(Msr::kIa32VmxCr4Fixed1)};
Cr4 cr4 = {__readcr4()};
cr4.all &= cr4_fixed1.all;
cr4.all |= cr4_fixed0.all;
__writecr4(cr4.all); //寫入修正好的cr4
// Write a VMCS revision identifier
const Ia32VmxBasicMsr vmx_basic_msr = {UtilReadMsr64(Msr::kIa32VmxBasic)};
processor_data->vmxon_region->revision_identifier = vmx_basic_msr.fields.revision_identifier;
auto vmxon_region_pa = UtilPaFromVa(processor_data->vmxon_region);
HYPERPLATFORM_COMMON_DBG_BREAK();
if (__vmx_on(&vmxon_region_pa)) {
return false;
}
//UtilInveptAll();
return true;
}
// See: VMM SETUP & TEAR DOWN
_Use_decl_annotations_ static bool VmpInitializeVMCS(ProcessorData *processor_data) {
// Write a VMCS revision identifier
const Ia32VmxBasicMsr vmx_basic_msr = {UtilReadMsr64(Msr::kIa32VmxBasic)};
processor_data->vmcs_region->revision_identifier =
vmx_basic_msr.fields.revision_identifier;
auto vmcs_region_pa = UtilPaFromVa(processor_data->vmcs_region);
HYPERPLATFORM_COMMON_DBG_BREAK();
HYPERPLATFORM_LOG_DEBUG_SAFE("VMCS PA : %I64X VA: %I64X ", vmcs_region_pa, processor_data->vmcs_region);
if(__vmx_vmclear(&vmcs_region_pa))
{
return false;
}
if (__vmx_vmptrld(&vmcs_region_pa)) {
return false;
}
// The launch state of current VMCS is "clear"
return true;
}
// See: PREPARATION AND LAUNCHING A VIRTUAL MACHINE
_Use_decl_annotations_ static bool VmpSetupVMCS(
const ProcessorData *processor_data,
ULONG_PTR guest_stack_pointer,
ULONG_PTR guest_instruction_pointer,
ULONG_PTR vmm_stack_pointer)
{
Gdtr gdtr = {};
__sgdt(&gdtr);
Idtr idtr = {};
__sidt(&idtr);
// See: Algorithms for Determining VMX Capabilities
const auto use_true_msrs = Ia32VmxBasicMsr{UtilReadMsr64(Msr::kIa32VmxBasic)}.fields.vmx_capability_hint;
VmxVmEntryControls vm_entryctl_requested = {};
vm_entryctl_requested.fields.ia32e_mode_guest = IsX64();
VmxVmEntryControls vm_entryctl = {VmpAdjustControlValue(
(use_true_msrs) ? Msr::kIa32VmxTrueEntryCtls : Msr::kIa32VmxEntryCtls,
vm_entryctl_requested.all)};
VmxVmExitControls vm_exitctl_requested = {};
vm_exitctl_requested.fields.acknowledge_interrupt_on_exit = true;
vm_exitctl_requested.fields.host_address_space_size = IsX64();
VmxVmExitControls vm_exitctl = {VmpAdjustControlValue(
(use_true_msrs) ? Msr::kIa32VmxTrueExitCtls : Msr::kIa32VmxExitCtls,
vm_exitctl_requested.all)};
VmxPinBasedControls vm_pinctl_requested = {};
VmxPinBasedControls vm_pinctl = {
VmpAdjustControlValue((use_true_msrs) ? Msr::kIa32VmxTruePinbasedCtls
: Msr::kIa32VmxPinbasedCtls,
vm_pinctl_requested.all)};
VmxProcessorBasedControls vm_procctl_requested = {};
vm_procctl_requested.fields.invlpg_exiting = false;
vm_procctl_requested.fields.rdtsc_exiting = false;
vm_procctl_requested.fields.cr3_load_exiting = true;
vm_procctl_requested.fields.cr3_store_exiting = true;
vm_procctl_requested.fields.cr8_load_exiting = false;
vm_procctl_requested.fields.mov_dr_exiting = true;
vm_procctl_requested.fields.use_msr_bitmaps = true;
vm_procctl_requested.fields.activate_secondary_control = true;
VmxProcessorBasedControls vm_procctl = {
VmpAdjustControlValue((use_true_msrs) ? Msr::kIa32VmxTrueProcBasedCtls
: Msr::kIa32VmxProcBasedCtls,
vm_procctl_requested.all)};
VmxSecondaryProcessorBasedControls vm_procctl2_requested = {};
vm_procctl2_requested.fields.enable_ept = true;
vm_procctl2_requested.fields.enable_rdtscp = true;
vm_procctl2_requested.fields.descriptor_table_exiting = true;
vm_procctl2_requested.fields.enable_xsaves_xstors = true;
VmxSecondaryProcessorBasedControls vm_procctl2 = {VmpAdjustControlValue(Msr::kIa32VmxProcBasedCtls2, vm_procctl2_requested.all)};
// Set up CR0 and CR4 bitmaps
// - Where a bit is masked, the shadow bit appears
// - Where a bit is not masked, the actual bit appears
// VM-exit occurs when a guest modifies any of those fields
Cr0 cr0_mask = {};
Cr4 cr4_mask = {};
// See: PDPTE Registers
// If PAE paging would be in use following an execution of MOV to CR0 or MOV
// to CR4 (see Section 4.1.1) and the instruction is modifying any of CR0.CD,
// CR0.NW, CR0.PG, CR4.PAE, CR4.PGE, CR4.PSE, or CR4.SMEP; then the PDPTEs are
// loaded from the address in CR3.
if (UtilIsX86Pae()) {
cr0_mask.fields.pg = true;
cr0_mask.fields.cd = true;
cr0_mask.fields.nw = true;
cr4_mask.fields.pae = true;
cr4_mask.fields.pge = true;
cr4_mask.fields.pse = true;
cr4_mask.fields.smep = true;
}
const auto exception_bitmap =
//1 << InterruptionVector::kTrapFlags |
1 << InterruptionVector::kBreakpointException | 0 ;
// clang-format off
/* 16-Bit Control Field */
/* 16-Bit Guest-State Fields */
auto error = VmxStatus::kOk;
error |= UtilVmWrite(VmcsField::kGuestEsSelector, AsmReadES());
error |= UtilVmWrite(VmcsField::kGuestCsSelector, AsmReadCS());
error |= UtilVmWrite(VmcsField::kGuestSsSelector, AsmReadSS());
error |= UtilVmWrite(VmcsField::kGuestDsSelector, AsmReadDS());
error |= UtilVmWrite(VmcsField::kGuestFsSelector, AsmReadFS());
error |= UtilVmWrite(VmcsField::kGuestGsSelector, AsmReadGS());
error |= UtilVmWrite(VmcsField::kGuestLdtrSelector, AsmReadLDTR());
error |= UtilVmWrite(VmcsField::kGuestTrSelector, AsmReadTR());
/* 16-Bit Host-State Fields */
// RPL and TI have to be 0 */
error |= UtilVmWrite(VmcsField::kHostEsSelector, AsmReadES() & 0xf8);
error |= UtilVmWrite(VmcsField::kHostCsSelector, AsmReadCS() & 0xf8);
error |= UtilVmWrite(VmcsField::kHostSsSelector, AsmReadSS() & 0xf8);
error |= UtilVmWrite(VmcsField::kHostDsSelector, AsmReadDS() & 0xf8);
error |= UtilVmWrite(VmcsField::kHostFsSelector, AsmReadFS() & 0xf8);
error |= UtilVmWrite(VmcsField::kHostGsSelector, AsmReadGS() & 0xf8);
error |= UtilVmWrite(VmcsField::kHostTrSelector, AsmReadTR() & 0xf8);
/* 64-Bit Control Fields */
error |= UtilVmWrite64(VmcsField::kIoBitmapA, 0);
error |= UtilVmWrite64(VmcsField::kIoBitmapB, 0);
error |= UtilVmWrite64(VmcsField::kMsrBitmap, UtilPaFromVa(processor_data->shared_data->msr_bitmap));
error |= UtilVmWrite64(VmcsField::kEptPointer, EptGetEptPointer(processor_data->ept_data));
/* 64-Bit Guest-State Fields */
error |= UtilVmWrite64(VmcsField::kVmcsLinkPointer, MAXULONG64);
error |= UtilVmWrite64(VmcsField::kGuestIa32Debugctl, UtilReadMsr64(Msr::kIa32Debugctl));
if (UtilIsX86Pae()) {
UtilLoadPdptes(__readcr3());
}
/* 32-Bit Control Fields */
error |= UtilVmWrite(VmcsField::kPinBasedVmExecControl, vm_pinctl.all);
error |= UtilVmWrite(VmcsField::kCpuBasedVmExecControl, vm_procctl.all);
error |= UtilVmWrite(VmcsField::kExceptionBitmap, exception_bitmap);
error |= UtilVmWrite(VmcsField::kPageFaultErrorCodeMask, 0);
error |= UtilVmWrite(VmcsField::kPageFaultErrorCodeMatch, 0);
error |= UtilVmWrite(VmcsField::kCr3TargetCount, 0);
error |= UtilVmWrite(VmcsField::kVmExitControls, vm_exitctl.all);
error |= UtilVmWrite(VmcsField::kVmExitMsrStoreCount, 0);
error |= UtilVmWrite(VmcsField::kVmExitMsrLoadCount, 0);
error |= UtilVmWrite(VmcsField::kVmEntryControls, vm_entryctl.all);
error |= UtilVmWrite(VmcsField::kVmEntryMsrLoadCount, 0);
error |= UtilVmWrite(VmcsField::kVmEntryIntrInfoField, 0);
error |= UtilVmWrite(VmcsField::kSecondaryVmExecControl, vm_procctl2.all);
/* 32-Bit Guest-State Fields */
error |= UtilVmWrite(VmcsField::kGuestEsLimit, GetSegmentLimit(AsmReadES()));
error |= UtilVmWrite(VmcsField::kGuestCsLimit, GetSegmentLimit(AsmReadCS()));
error |= UtilVmWrite(VmcsField::kGuestSsLimit, GetSegmentLimit(AsmReadSS()));
error |= UtilVmWrite(VmcsField::kGuestDsLimit, GetSegmentLimit(AsmReadDS()));
error |= UtilVmWrite(VmcsField::kGuestFsLimit, GetSegmentLimit(AsmReadFS()));
error |= UtilVmWrite(VmcsField::kGuestGsLimit, GetSegmentLimit(AsmReadGS()));
error |= UtilVmWrite(VmcsField::kGuestLdtrLimit, GetSegmentLimit(AsmReadLDTR()));
error |= UtilVmWrite(VmcsField::kGuestTrLimit, GetSegmentLimit(AsmReadTR()));
error |= UtilVmWrite(VmcsField::kGuestGdtrLimit, gdtr.limit);
error |= UtilVmWrite(VmcsField::kGuestIdtrLimit, idtr.limit);
error |= UtilVmWrite(VmcsField::kGuestEsArBytes, VmpGetSegmentAccessRight(AsmReadES()));
error |= UtilVmWrite(VmcsField::kGuestCsArBytes, VmpGetSegmentAccessRight(AsmReadCS()));
error |= UtilVmWrite(VmcsField::kGuestSsArBytes, VmpGetSegmentAccessRight(AsmReadSS()));
error |= UtilVmWrite(VmcsField::kGuestDsArBytes, VmpGetSegmentAccessRight(AsmReadDS()));
error |= UtilVmWrite(VmcsField::kGuestFsArBytes, VmpGetSegmentAccessRight(AsmReadFS()));
error |= UtilVmWrite(VmcsField::kGuestGsArBytes, VmpGetSegmentAccessRight(AsmReadGS()));
error |= UtilVmWrite(VmcsField::kGuestLdtrArBytes, VmpGetSegmentAccessRight(AsmReadLDTR()));
error |= UtilVmWrite(VmcsField::kGuestTrArBytes, VmpGetSegmentAccessRight(AsmReadTR()));
error |= UtilVmWrite(VmcsField::kGuestInterruptibilityInfo, 0);
error |= UtilVmWrite(VmcsField::kGuestActivityState, 0);
error |= UtilVmWrite(VmcsField::kGuestSysenterCs, UtilReadMsr(Msr::kIa32SysenterCs));
/* 32-Bit Host-State Field */
error |= UtilVmWrite(VmcsField::kHostIa32SysenterCs, UtilReadMsr(Msr::kIa32SysenterCs));
/* Natural-Width Control Fields */
error |= UtilVmWrite(VmcsField::kCr0GuestHostMask, cr0_mask.all);
error |= UtilVmWrite(VmcsField::kCr4GuestHostMask, cr4_mask.all);
error |= UtilVmWrite(VmcsField::kCr0ReadShadow, __readcr0());
error |= UtilVmWrite(VmcsField::kCr4ReadShadow, __readcr4());
/* Natural-Width Guest-State Fields */
error |= UtilVmWrite(VmcsField::kGuestCr0, __readcr0());
error |= UtilVmWrite(VmcsField::kGuestCr3, __readcr3());
error |= UtilVmWrite(VmcsField::kGuestCr4, __readcr4());
#if defined(_AMD64_)
error |= UtilVmWrite(VmcsField::kGuestEsBase, 0);
error |= UtilVmWrite(VmcsField::kGuestCsBase, 0);
error |= UtilVmWrite(VmcsField::kGuestSsBase, 0);
error |= UtilVmWrite(VmcsField::kGuestDsBase, 0);
error |= UtilVmWrite(VmcsField::kGuestFsBase, UtilReadMsr(Msr::kIa32FsBase));
error |= UtilVmWrite(VmcsField::kGuestGsBase, UtilReadMsr(Msr::kIa32GsBase));
#else
error |= UtilVmWrite(VmcsField::kGuestEsBase, VmpGetSegmentBase(gdtr.base, AsmReadES()));
error |= UtilVmWrite(VmcsField::kGuestCsBase, VmpGetSegmentBase(gdtr.base, AsmReadCS()));
error |= UtilVmWrite(VmcsField::kGuestSsBase, VmpGetSegmentBase(gdtr.base, AsmReadSS()));
error |= UtilVmWrite(VmcsField::kGuestDsBase, VmpGetSegmentBase(gdtr.base, AsmReadDS()));
error |= UtilVmWrite(VmcsField::kGuestFsBase, VmpGetSegmentBase(gdtr.base, AsmReadFS()));
error |= UtilVmWrite(VmcsField::kGuestGsBase, VmpGetSegmentBase(gdtr.base, AsmReadGS()));
#endif
error |= UtilVmWrite(VmcsField::kGuestLdtrBase, VmpGetSegmentBase(gdtr.base, AsmReadLDTR()));
error |= UtilVmWrite(VmcsField::kGuestTrBase, VmpGetSegmentBase(gdtr.base, AsmReadTR()));
error |= UtilVmWrite(VmcsField::kGuestGdtrBase, gdtr.base);
error |= UtilVmWrite(VmcsField::kGuestIdtrBase, idtr.base);
error |= UtilVmWrite(VmcsField::kGuestDr7, __readdr(7));
error |= UtilVmWrite(VmcsField::kGuestRsp, guest_stack_pointer);
error |= UtilVmWrite(VmcsField::kGuestRip, guest_instruction_pointer);
error |= UtilVmWrite(VmcsField::kGuestRflags, __readeflags());
error |= UtilVmWrite(VmcsField::kGuestSysenterEsp, UtilReadMsr(Msr::kIa32SysenterEsp));
error |= UtilVmWrite(VmcsField::kGuestSysenterEip, UtilReadMsr(Msr::kIa32SysenterEip));
/* Natural-Width Host-State Fields */
error |= UtilVmWrite(VmcsField::kHostCr0, __readcr0()); //CR0
error |= UtilVmWrite(VmcsField::kHostCr3, __readcr3()); //CR3
error |= UtilVmWrite(VmcsField::kHostCr4, __readcr4()); //CR4
#if defined(_AMD64_)
error |= UtilVmWrite(VmcsField::kHostFsBase, UtilReadMsr(Msr::kIa32FsBase));
error |= UtilVmWrite(VmcsField::kHostGsBase, UtilReadMsr(Msr::kIa32GsBase));
#else
error |= UtilVmWrite(VmcsField::kHostFsBase, VmpGetSegmentBase(gdtr.base, AsmReadFS()));
error |= UtilVmWrite(VmcsField::kHostGsBase, VmpGetSegmentBase(gdtr.base, AsmReadGS()));
#endif
error |= UtilVmWrite(VmcsField::kHostTrBase, VmpGetSegmentBase(gdtr.base, AsmReadTR()));
error |= UtilVmWrite(VmcsField::kHostGdtrBase, gdtr.base);
error |= UtilVmWrite(VmcsField::kHostIdtrBase, idtr.base);
error |= UtilVmWrite(VmcsField::kHostIa32SysenterEsp, UtilReadMsr(Msr::kIa32SysenterEsp));
error |= UtilVmWrite(VmcsField::kHostIa32SysenterEip, UtilReadMsr(Msr::kIa32SysenterEip));
error |= UtilVmWrite(VmcsField::kHostRsp, vmm_stack_pointer);
error |= UtilVmWrite(VmcsField::kHostRip, reinterpret_cast<ULONG_PTR>(AsmVmmEntryPoint));
// clang-format on
const auto vmx_status = static_cast<VmxStatus>(error);
return vmx_status == VmxStatus::kOk;
}
VOID PrintHostStateField()
{
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 16bit Host State #############################");
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostCsSelector : %X", UtilVmRead(VmcsField::kHostCsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostDsSelector : %X", UtilVmRead(VmcsField::kHostDsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostEsSelector : %X", UtilVmRead(VmcsField::kHostEsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostSsSelector : %X", UtilVmRead(VmcsField::kHostSsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostFsSelector : %X", UtilVmRead(VmcsField::kHostFsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostGsSelector : %X", UtilVmRead(VmcsField::kHostGsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostTrSelector : %X", UtilVmRead(VmcsField::kHostTrSelector));
/*
Host 32 bit state field
*/
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 32bit Host State #############################");
HYPERPLATFORM_LOG_DEBUG_SAFE(" %.8X", UtilVmRead(VmcsField::kHostIa32SysenterCs)); //同上
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 64bit Host State #############################");
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostCr0 %I64X", UtilVmRead64(VmcsField::kHostCr0));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostCr3 %I64X", UtilVmRead64(VmcsField::kHostCr3));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostCr4 %I64X", UtilVmRead64(VmcsField::kHostCr4));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostFsBase %I64X", UtilVmRead64(VmcsField::kHostFsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostGsBase %I64X", UtilVmRead64(VmcsField::kHostGsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostTrBase %I64X", UtilVmRead64(VmcsField::kHostTrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostGdtrBase %I64X", UtilVmRead64(VmcsField::kHostGdtrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIdtrBase %I64X", UtilVmRead64(VmcsField::kHostIdtrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32SysenterEsp %I64X", UtilVmRead64(VmcsField::kHostIa32SysenterEsp));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32SysenterEip %I64X", UtilVmRead64(VmcsField::kHostIa32SysenterEip));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostRsp %I64X", UtilVmRead64(VmcsField::kHostRsp));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostRip %I64X", UtilVmRead64(VmcsField::kHostRip));
}
VOID PrintControlField()
{
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 16bit Control State #############################");
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32Pat: %x", UtilVmRead(VmcsField::kHostIa32Pat));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32PatHigh: %x", UtilVmRead(VmcsField::kHostIa32PatHigh));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32Efer: %x", UtilVmRead(VmcsField::kHostIa32Efer));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32EferHigh: %x", UtilVmRead(VmcsField::kHostIa32EferHigh));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32PerfGlobalCtrl: %x", UtilVmRead(VmcsField::kHostIa32PerfGlobalCtrl));
HYPERPLATFORM_LOG_DEBUG_SAFE("kHostIa32PerfGlobalCtrlHigh: %x", UtilVmRead(VmcsField::kHostIa32PerfGlobalCtrlHigh));
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 32bit Control State #############################");
HYPERPLATFORM_LOG_DEBUG_SAFE("kPinBasedVmExecControl: %x", UtilVmRead(VmcsField::kPinBasedVmExecControl));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCpuBasedVmExecControl: %x", UtilVmRead(VmcsField::kCpuBasedVmExecControl));
HYPERPLATFORM_LOG_DEBUG_SAFE("kExceptionBitmap: %x", UtilVmRead(VmcsField::kExceptionBitmap));
HYPERPLATFORM_LOG_DEBUG_SAFE("kPageFaultErrorCodeMask: %x", UtilVmRead(VmcsField::kPageFaultErrorCodeMask));
HYPERPLATFORM_LOG_DEBUG_SAFE("kPageFaultErrorCodeMatch: %x", UtilVmRead(VmcsField::kPageFaultErrorCodeMatch));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr3TargetCount: %x", UtilVmRead(VmcsField::kCr3TargetCount));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmExitControls: %x", UtilVmRead(VmcsField::kVmExitControls));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmExitMsrStoreCount: %x", UtilVmRead(VmcsField::kVmExitMsrStoreCount));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmExitMsrLoadCount: %x", UtilVmRead(VmcsField::kVmExitMsrLoadCount));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmEntryControls: %x", UtilVmRead(VmcsField::kVmEntryControls));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmEntryMsrLoadCount: %x", UtilVmRead(VmcsField::kVmEntryMsrLoadCount));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmEntryIntrInfoField: %x", UtilVmRead(VmcsField::kVmEntryIntrInfoField));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmEntryExceptionErrorCode: %x", UtilVmRead(VmcsField::kVmEntryExceptionErrorCode));
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmEntryInstructionLen: %x", UtilVmRead(VmcsField::kVmEntryInstructionLen));
HYPERPLATFORM_LOG_DEBUG_SAFE("kTprThreshold: %x", UtilVmRead(VmcsField::kTprThreshold));
HYPERPLATFORM_LOG_DEBUG_SAFE("kPleGap: %x", UtilVmRead(VmcsField::kPleGap));
HYPERPLATFORM_LOG_DEBUG_SAFE("kPleWindow: %x", UtilVmRead(VmcsField::kPleWindow));
HYPERPLATFORM_LOG_DEBUG_SAFE("kSecondaryVmExecControl: %x", UtilVmRead(VmcsField::kSecondaryVmExecControl));
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 64bit Control State #############################");
HYPERPLATFORM_LOG_DEBUG_SAFE("kIoBitmapA: %I64X", UtilVmRead64(VmcsField::kIoBitmapA));
HYPERPLATFORM_LOG_DEBUG_SAFE("kIoBitmapB: %I64X", UtilVmRead64(VmcsField::kIoBitmapB));
HYPERPLATFORM_LOG_DEBUG_SAFE("kMsrBitmap: %I64X", UtilVmRead64(VmcsField::kMsrBitmap));
//HYPERPLATFORM_LOG_DEBUG_SAFE("kPmlAddress: %I64X", UtilVmRead64(VmcsField::kPmlAddress));
HYPERPLATFORM_LOG_DEBUG_SAFE("kApicAccessAddr: %I64X", UtilVmRead64(VmcsField::kApicAccessAddr));
//HYPERPLATFORM_LOG_DEBUG_SAFE("kVmFuncCtls: %I64X", UtilVmRead64(VmcsField::kVmFuncCtls));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEptPointer: %I64X", UtilVmRead64(VmcsField::kEptPointer));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap0: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap0));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap0High: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap0High));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap1: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap1));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap1High: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap1High));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap2: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap2));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap2High: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap2High));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap3: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap3));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEoiExitBitmap3High: %I64X", UtilVmRead64(VmcsField::kEoiExitBitmap3High));
HYPERPLATFORM_LOG_DEBUG_SAFE("kEptpListAddress: %I64X", UtilVmRead64(VmcsField::kEptpListAddress));
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### Natural Control State #############################");
/*
Natural-width field
*/
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr0GuestHostMask: %I64X", UtilVmRead64(VmcsField::kCr0GuestHostMask));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr4GuestHostMask: %I64X", UtilVmRead64(VmcsField::kCr4GuestHostMask));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr0ReadShadow: %I64X", UtilVmRead64(VmcsField::kCr0ReadShadow));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr4ReadShadow: %I64X", UtilVmRead64(VmcsField::kCr4ReadShadow));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr3TargetValue0: %I64X", UtilVmRead64(VmcsField::kCr3TargetValue0));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr3TargetValue1: %I64X", UtilVmRead64(VmcsField::kCr3TargetValue1));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr3TargetValue2: %I64X", UtilVmRead64(VmcsField::kCr3TargetValue2));
HYPERPLATFORM_LOG_DEBUG_SAFE("kCr3TargetValue3: %I64X", UtilVmRead64(VmcsField::kCr3TargetValue3));
}
VOID PrintGuestStateField()
{
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 16bit Guest State #############################");
//16bit guest state field
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestEsSelector: %x ", UtilVmRead(VmcsField::kGuestEsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCsSelector: %x ", UtilVmRead(VmcsField::kGuestCsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSsSelector: %x ", UtilVmRead(VmcsField::kGuestSsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestDsSelector: %x ", UtilVmRead(VmcsField::kGuestDsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestFsSelector: %x ", UtilVmRead(VmcsField::kGuestFsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestGsSelector: %x ", UtilVmRead(VmcsField::kGuestGsSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestLdtrSelector: %x ", UtilVmRead(VmcsField::kGuestLdtrSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestTrSelector: %x ", UtilVmRead(VmcsField::kGuestTrSelector));
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 32bit Guest State #############################");
//32bit guest state field
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestEsLimit: %.8x ", UtilVmRead(VmcsField::kGuestEsLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCsLimit: %.8x ", UtilVmRead(VmcsField::kGuestCsLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSsLimit: %.8x ", UtilVmRead(VmcsField::kGuestSsLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestDsLimit: %.8x ", UtilVmRead(VmcsField::kGuestDsLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestFsLimit: %.8x ", UtilVmRead(VmcsField::kGuestFsLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestGsLimit: %.8x ", UtilVmRead(VmcsField::kGuestGsLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestLdtrLimit: %.8x ", UtilVmRead(VmcsField::kGuestLdtrLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestTrLimit: %.8x ", UtilVmRead(VmcsField::kGuestTrLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestGdtrLimit: %.8x ", UtilVmRead(VmcsField::kGuestGdtrLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestIdtrLimit: %.8x ", UtilVmRead(VmcsField::kGuestIdtrLimit));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestEsArBytes: %.8x ", UtilVmRead(VmcsField::kGuestEsArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCsArBytes: %.8x ", UtilVmRead(VmcsField::kGuestCsArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSsArBytes: %.8x ", UtilVmRead(VmcsField::kGuestSsArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestDsArBytes: %.8x ", UtilVmRead(VmcsField::kGuestDsArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestFsArBytes: %.8x ", UtilVmRead(VmcsField::kGuestFsArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestGsArBytes: %.8x ", UtilVmRead(VmcsField::kGuestGsArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestLdtrArBytes: %.8x ", UtilVmRead(VmcsField::kGuestLdtrArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestTrArBytes: %.8x ", UtilVmRead(VmcsField::kGuestTrArBytes));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestInterruptibilityInfo: %.8x ", UtilVmRead(VmcsField::kGuestInterruptibilityInfo));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestActivityState: %.8x ", UtilVmRead(VmcsField::kGuestActivityState));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSysenterCs: %.8x ", UtilVmRead(VmcsField::kGuestSysenterCs));
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### 64bit Guest State #############################");
//64bit guest state field
HYPERPLATFORM_LOG_DEBUG_SAFE("kVmcsLinkPointer: %I64X ", UtilVmRead64(VmcsField::kVmcsLinkPointer));//不使用影子VMCS
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestIa32Debugctl: %I64X ", UtilVmRead64(VmcsField::kGuestIa32Debugctl));
HYPERPLATFORM_LOG_DEBUG_SAFE("###################### Natural Guest State #############################");
//natural
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCr0: %I64X ", UtilVmRead(VmcsField::kGuestCr0)); //?入客戶CR0
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCr3: %I64X ", UtilVmRead(VmcsField::kGuestCr3)); //?入客戶CR3
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCr4: %I64X ", UtilVmRead(VmcsField::kGuestCr4)); //?入客戶CR4
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestEsBase: %I64X ", UtilVmRead(VmcsField::kGuestEsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestCsBase: %I64X ", UtilVmRead(VmcsField::kGuestCsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSsBase: %I64X ", UtilVmRead(VmcsField::kGuestSsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestDsBase: %I64X ", UtilVmRead(VmcsField::kGuestDsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestFsBase: %I64X ", UtilVmRead(VmcsField::kGuestFsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestGsBase: %I64X ", UtilVmRead(VmcsField::kGuestGsBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestLdtrBase: %I64X ", UtilVmRead(VmcsField::kGuestLdtrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestTrBase: %I64X ", UtilVmRead(VmcsField::kGuestTrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestGdtrBase: %I64X ", UtilVmRead(VmcsField::kGuestGdtrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestIdtrBase: %I64X ", UtilVmRead(VmcsField::kGuestIdtrBase));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestDr7: %I64X ", UtilVmRead(VmcsField::kGuestDr7));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestRflags: %I64X ", UtilVmRead(VmcsField::kGuestRflags));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSysenterEsp: %I64X ", UtilVmRead(VmcsField::kGuestSysenterEsp));
HYPERPLATFORM_LOG_DEBUG_SAFE("kGuestSysenterEip: %I64X ", UtilVmRead(VmcsField::kGuestSysenterEip));
}
VOID PrintVMCS()
{
PrintControlField();
PrintHostStateField();
PrintGuestStateField();
}
// Executes vmlaunch
/*_Use_decl_annotations_*/ static void VmpLaunchVM() {
auto error_code = UtilVmRead(VmcsField::kVmInstructionError);
if (error_code) {
HYPERPLATFORM_LOG_WARN("VM_INSTRUCTION_ERROR = %d", error_code);
}
HYPERPLATFORM_LOG_DEBUG_SAFE("VMlaunch [ddimon] irql : %x", KeGetCurrentIrql());
auto vmx_status = static_cast<VmxStatus>(__vmx_vmlaunch());
// Here is not be executed with successful vmlaunch. Instead, the context
// jumps to an address specified by GUEST_RIP.
if (vmx_status == VmxStatus::kErrorWithStatus) {
error_code = UtilVmRead(VmcsField::kVmInstructionError);
HYPERPLATFORM_LOG_ERROR("VM_INSTRUCTION_ERROR = %d", error_code);
}
HYPERPLATFORM_COMMON_DBG_BREAK();
}
// Returns access right of the segment specified by the SegmentSelector for VMX
_Use_decl_annotations_ static ULONG VmpGetSegmentAccessRight(
USHORT segment_selector) {
VmxRegmentDescriptorAccessRight access_right = {};
const SegmentSelector ss = {segment_selector};
if (segment_selector) {
auto native_access_right = AsmLoadAccessRightsByte(ss.all);
native_access_right >>= 8;
access_right.all = static_cast<ULONG>(native_access_right);
access_right.fields.reserved1 = 0;
access_right.fields.reserved2 = 0;
access_right.fields.unusable = false;
} else {
access_right.fields.unusable = true;
}
return access_right.all;
}
// Returns a base address of the segment specified by SegmentSelector
_Use_decl_annotations_ static ULONG_PTR VmpGetSegmentBase(
ULONG_PTR gdt_base, USHORT segment_selector) {
const SegmentSelector ss = {segment_selector};
if (!ss.all) {
return 0;
}
if (ss.fields.ti) {
const auto local_segment_descriptor =
VmpGetSegmentDescriptor(gdt_base, AsmReadLDTR());
const auto ldt_base =
VmpGetSegmentBaseByDescriptor(local_segment_descriptor);
const auto segment_descriptor =
VmpGetSegmentDescriptor(ldt_base, segment_selector);
return VmpGetSegmentBaseByDescriptor(segment_descriptor);
} else {
const auto segment_descriptor =
VmpGetSegmentDescriptor(gdt_base, segment_selector);
return VmpGetSegmentBaseByDescriptor(segment_descriptor);
}
}
// Returns the segment descriptor corresponds to the SegmentSelector
_Use_decl_annotations_ static SegmentDesctiptor *VmpGetSegmentDescriptor(
ULONG_PTR descriptor_table_base, USHORT segment_selector) {
const SegmentSelector ss = {segment_selector};
return reinterpret_cast<SegmentDesctiptor *>(
descriptor_table_base + ss.fields.index * sizeof(SegmentDesctiptor));
}
// Returns a base address of segment_descriptor
_Use_decl_annotations_ static ULONG_PTR VmpGetSegmentBaseByDescriptor(
const SegmentDesctiptor *segment_descriptor) {
// Caluculate a 32bit base address
const auto base_high = segment_descriptor->fields.base_high << (6 * 4);
const auto base_middle = segment_descriptor->fields.base_mid << (4 * 4);
const auto base_low = segment_descriptor->fields.base_low;
ULONG_PTR base = (base_high | base_middle | base_low) & MAXULONG;
// Get upper 32bit of the base address if needed
if (IsX64() && !segment_descriptor->fields.system) {
auto desc64 =
reinterpret_cast<const SegmentDesctiptorX64 *>(segment_descriptor);
ULONG64 base_upper32 = desc64->base_upper32;
base |= (base_upper32 << 32);
}
return base;
}
// Adjust the requested control value with consulting a value of related MSR
_Use_decl_annotations_ static ULONG VmpAdjustControlValue(
Msr msr, ULONG requested_value) {
LARGE_INTEGER msr_value = {};
msr_value.QuadPart = UtilReadMsr64(msr);
auto adjusted_value = requested_value;
// bit == 0 in high word ==> must be zero
adjusted_value &= msr_value.HighPart;
// bit == 1 in low word ==> must be one
adjusted_value |= msr_value.LowPart;
return adjusted_value;
}
// Terminates VM
_Use_decl_annotations_ void VmTermination() {
PAGED_CODE();
// Create a thread dedicated to de-virtualizing processors. For some reasons,
// de-virtualizing processors from this thread makes the system stop
// processing all timer related events and functioning properly.
HANDLE thread_handle = nullptr;
auto status =
PsCreateSystemThread(&thread_handle, GENERIC_ALL, nullptr, nullptr,
nullptr, VmpVmxOffThreadRoutine, nullptr);
if (NT_SUCCESS(status)) {
// Wait until the thread ends its work.
status = ZwWaitForSingleObject(thread_handle, FALSE, nullptr);
status = ZwClose(thread_handle);
} else {
HYPERPLATFORM_COMMON_DBG_BREAK();
}
NT_ASSERT(!VmpIsVmmInstalled());
}
// De-virtualizing all processors
_Use_decl_annotations_ static void VmpVmxOffThreadRoutine(void *start_context) {
UNREFERENCED_PARAMETER(start_context);
PAGED_CODE();
HYPERPLATFORM_LOG_INFO("Uninstalling VMM.");
///DdimonTermination();
auto status = UtilForEachProcessor(VmpStopVM, nullptr);
if (NT_SUCCESS(status)) {
HYPERPLATFORM_LOG_INFO("The VMM has been uninstalled.");
} else {
HYPERPLATFORM_LOG_WARN("The VMM has not been uninstalled (%08x).", status);
}
PsTerminateSystemThread(status);
}
// Stops virtualization through a hypercall and frees all related memory
_Use_decl_annotations_ static NTSTATUS VmpStopVM(void *context) {
UNREFERENCED_PARAMETER(context);
HYPERPLATFORM_LOG_INFO("Terminating VMX for the processor %d.",
KeGetCurrentProcessorNumberEx(nullptr));
// Stop virtualization and get an address of the management structure
ProcessorData *processor_data = nullptr;
auto status = UtilVmCall(HypercallNumber::kTerminateVmm, &processor_data);
if (!NT_SUCCESS(status)) {
return status;
}
VmpFreeProcessorData(processor_data);
return STATUS_SUCCESS;
}
// Frees all related memory
_Use_decl_annotations_ static void VmpFreeProcessorData(
ProcessorData *processor_data) {
if (!processor_data) {
return;
}
if (processor_data->vmm_stack_limit) {
UtilFreeContiguousMemory(processor_data->vmm_stack_limit);
}
if (processor_data->vmcs_region) {
ExFreePoolWithTag(processor_data->vmcs_region, kHyperPlatformCommonPoolTag);
}
if (processor_data->vmxon_region) {
ExFreePoolWithTag(processor_data->vmxon_region,
kHyperPlatformCommonPoolTag);
}
/* if (processor_data->sh_data) {
ShFreeShadowHookData(processor_data->sh_data);
}
if (processor_data->ept_data) {
EptTermination(processor_data->ept_data);
}
*/
// Free shared data if this is the last reference
if (processor_data->shared_data &&
InterlockedDecrement(&processor_data->shared_data->reference_count) ==
0) {
HYPERPLATFORM_LOG_DEBUG_SAFE("Freeing shared data...");
if (processor_data->shared_data->msr_bitmap) {
ExFreePoolWithTag(processor_data->shared_data->msr_bitmap,
kHyperPlatformCommonPoolTag);
}
if (processor_data->shared_data->shared_sh_data) {
ShFreeSharedShadowHookData(processor_data->shared_data->shared_sh_data);
}
ExFreePoolWithTag(processor_data->shared_data, kHyperPlatformCommonPoolTag);
}
ExFreePoolWithTag(processor_data, kHyperPlatformCommonPoolTag);
}
// Tests if the VMM is already installed using a backdoor command
/*_Use_decl_annotations_*/ static bool VmpIsVmmInstalled() {
int cpu_info[4] = {};
__cpuidex(cpu_info, 0, kHyperPlatformVmmBackdoorCode);
char vendor_id[13] = {};
RtlCopyMemory(&vendor_id[0], &cpu_info[1], 4); // ebx
RtlCopyMemory(&vendor_id[4], &cpu_info[3], 4); // edx
RtlCopyMemory(&vendor_id[8], &cpu_info[2], 4); // ecx
HYPERPLATFORM_LOG_DEBUG_SAFE("VendorId: %s ", vendor_id);
return RtlCompareMemory(vendor_id, "Pong by VMM!\0", sizeof(vendor_id)) ==
sizeof(vendor_id);
}
} // extern "C"
| [
"kelvin1272011@gmail.com"
] | kelvin1272011@gmail.com |
f1e391b4b996b8b92f49e18c028a68aad6bf8f7a | 4dda91e22ad7ea1fbfe4a8065865a380fdb9bda5 | /菱形.cpp | 90f6a9ce60deb568479cda7d03c31712130f007b | [] | no_license | glj-27/github | 1d4e49543bc39ef9d2f65418d8f70e463b4ecdca | c323b6404c6aa04a0e6e5b9fc2ee265837954be1 | refs/heads/master | 2020-07-10T10:03:26.814252 | 2019-08-25T03:00:19 | 2019-08-25T03:00:19 | 204,236,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 535 | cpp | #include<iostream>
using namespace std;
int main()
{
int n,i,j;
while(cin>>n)
{
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i;j++)
{cout<<" ";}
cout<<"*";
if(i==1)
{cout<<endl;continue;}
for(j=1;j<=i-2;j++)
{cout<<" ";}
cout<<"*";
for(j=1;j<=i-2;j++)
{cout<<" ";}
cout<<"*"<<endl;
}
for(i=n-1;i>=1;i--)
{
for(j=1;j<=n-i;j++)
{cout<<" ";}
cout<<"*";
if(i==1)
{cout<<endl;continue;}
for(j=1;j<=i-2;j++)
{cout<<" ";}
cout<<"*";
for(j=1;j<=i-2;j++)
{cout<<" ";}
cout<<"*"<<endl;
}
}
}
| [
"glj1522029024@163.com"
] | glj1522029024@163.com |
c5d829cdb0da1141cea28eaf2e1a8015e3e883e7 | d1cf34b4d5280e33ebcf1cd788b470372fdd5a26 | /zoj/34/3413.cpp | c403281780d4186a0f43e9c92f918fe4a13ca660 | [] | no_license | watashi/AlgoSolution | 985916ac511892b7e87f38c9b364069f6b51a0ea | bbbebda189c7e74edb104615f9c493d279e4d186 | refs/heads/master | 2023-08-17T17:25:10.748003 | 2023-08-06T04:34:19 | 2023-08-06T04:34:19 | 2,525,282 | 97 | 32 | null | 2020-10-09T18:52:29 | 2011-10-06T10:40:07 | C++ | UTF-8 | C++ | false | false | 3,432 | cpp | #include <cstdlib> // auto fix CE
#include <cmath>
#include <cstdlib> // auto fix CE
#include <cstdio>
#include <cstdlib> // auto fix CE
#include <algorithm>
using namespace std;
//?????
//???????
const int MAXN = 100;
const double EPS = 1e-8;
struct Point {
double x, y;
Point() { }
Point(double x, double y) : x(x), y(y) { }
};
inline bool zero(double x) {
return ((x > 0 ? x : -x) < EPS);
}
inline double xmult(const Point & p1, const Point & p2, const Point & p0) {
return (p1.x - p0.x) * (p2.y - p0.y) - (p2.x - p0.x) * (p1.y - p0.y);
}
bool sameSide(const Point & p1, const Point & p2, const Point & l1, const Point & l2) {
return xmult(l1, p1, l2) * xmult(l1, p2, l2) > EPS;
}
Point intersection(const Point & u1, const Point & u2, const Point & v1, const Point & v2) {
Point ret = u1;
double t = ((u1.x - v1.x) * (v1.y - v2.y) - (u1.y - v1.y) * (v1.x - v2.x)) / ((u1.x - u2.x) * (v1.y - v2.y) - (u1.y - u2.y) * (v1.x - v2.x));
ret.x += (u2.x - u1.x) * t;
ret.y += (u2.y - u1.y) * t;
return ret;
}
//?????l1, l2????????side???, ??l1, l2, side???
void polygonCut(int & n, Point * p, const Point & l1, const Point & l2, const Point & side) {
Point pp[MAXN];
int m = 0, i;
for (i = 0; i < n; i++) {
if (sameSide(p[i], side, l1, l2)) {
pp[m++] = p[i];
}
if (!sameSide(p[i], p[(i + 1) % n], l1, l2) && !(zero(xmult(p[i], l1, l2)) && zero(xmult(p[(i + 1) %n ], l1, l2)))) {
pp[m++] = intersection(p[i], p[(i + 1) % n], l1, l2);
}
}
for (n = i = 0; i < m; i++) {
if (!i || !zero(pp[i].x - pp[i - 1].x) || !zero(pp[i].y - pp[i-1].y)) {
p[n++] = pp[i];
}
}
if (zero(p[n - 1].x - p[0].x) && zero(p[n - 1].y - p[0].y)) {
n--;
}
if (n < 3) {
n = 0;
}
}
double areaPolygon(int n, const Point* p) {
double s1 = 0, s2 = 0;
for (int i = 0; i < n; i++) {
s1 += p[(i + 1) % n].y * p[i].x;
s2 += p[(i + 1) % n].y * p[(i + 2) % n].x;
}
return fabs(s1 - s2)/2;
}
int main() {
double x, y, a, b, k, l, r, ans;
Point p[100], u, v;
int n;
while (scanf("%lf%lf%lf%lf%lf", &x, &y, &a, &b, &k) != EOF) {
if (a == 0 && b == 0) {
ans = (x + y <= k + 1e-8 ? 1 : 0);
} else if (a == 0) {
l = max(0.0, x + y - k);
r = min(b, x + y + k);
ans = (l < r ? r - l : 0.0);
ans /= b;
} else if (b == 0) {
l = max(0.0, x + y - k);
r = min(a, x + y + k);
ans = (l < r ? r - l : 0.0);
ans /= a;
} else {
n = 4;
p[0] = Point(0, 0);
p[1] = Point(a, 0);
p[2] = Point(a, b);
p[3] = Point(0, b);
polygonCut(n, p, Point(x + y - k, 0), Point(x + y - k + 100, -100), Point(2000, 2000));
polygonCut(n, p, Point(x + y + k, 0), Point(x + y + k + 100, -100), Point(-2000, -2000));
ans = areaPolygon(n, p) / a / b;
}
printf("%.6lf\n", fabs(max(0.0, min(1.0, ans))));
}
return 0;
}
//Run ID Submit Time Judge Status Problem ID Language Run Time(ms) Run Memory(KB) User Name Admin
//321 2010-10-05 22:27:44 Accepted H C++ 70 180 watashi@Zodiac Source
// 2012-09-07 15:53:20 | Accepted | 3413 | C++ | 50 | 180 | watashi | Source
| [
"zejun.wu@gmail.com"
] | zejun.wu@gmail.com |
d6334325d32837b65fb8b52bb2200bb441641afd | f41d43fa7f842e6e31a76a04ef7efcf6936d46da | /hack.hpp | 95328f0dc4195642c70c011d74773f672a02c10d | [] | no_license | markopoloparadox/SinglyLinkedList | b5ceaff13f8c9e8ad6bc2a2aec5c01ead222ad0c | 49a4cd309e7cc7392301ef8834f09515f00f9d3a | refs/heads/master | 2020-03-15T21:07:51.495096 | 2018-05-08T18:55:51 | 2018-05-08T18:55:51 | 132,348,368 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,813 | hpp | #pragma once
#include <termios.h>
#include <unistd.h>
#include <iomanip>
#include <iostream>
#include <string>
#include <vector>
namespace hack
{
namespace color
{
constexpr auto RED_FG = "\e[38;2;255;0;0m";
constexpr auto GREEN_FG = "\e[38;2;0;255;0m";
constexpr auto BLUE_FG = "\e[38;2;0;0;255m";
constexpr auto GRAY_BG = "\e[48;2;83;83;32m";
constexpr auto RESET = "\e[0m";
}
enum class Color
{
Default = 0,
Green,
Black,
Cyan,
Red
};
inline char getch()
{
char buf = 0;
struct termios old = {0};
fflush(stdout);
if(tcgetattr(0, &old) < 0)
perror("tcgetattr");
old.c_lflag &= ~ICANON;
old.c_lflag &= ~ECHO;
old.c_cc[VMIN] = 1;
old.c_cc[CTIME] = 0;
if(tcsetattr(0, TCSANOW, &old) < 0)
perror("tcsetattr ICANON");
if(read(0, &buf, 1) < 0)
perror("read");
old.c_lflag &= ICANON;
old.c_lflag &= ECHO;
if(tcsetattr(0, TCSADRAIN, &old) < 0)
perror("tcsetattr ~ICANON");
printf("%c\n", buf);
return buf;
}
inline void MoveCursor(int r, int c)
{
std::string t = "tput cup " + std::to_string(r) + " " + std::to_string(c);
system(t.c_str());
}
inline void ClearText(int r, int c)
{
std::string t = "tput cup " + std::to_string(r) + " " + std::to_string(c);
system(t.c_str());
std::cout << std::setfill(' ') << std::setw(80 - r) << " " << "\n";
}
inline void SetColor(Color color)
{
std::string coloS = "";
switch(color)
{
case Color::Default:
system("tput sgr0");
break;
case Color::Black:
system("tput setaf 0");
break;
case Color::Red:
system("tput setaf 1");
break;
case Color::Green:
system("tput setaf 2");
break;
case Color::Cyan:
system("tput setaf 6");
break;
}
}
constexpr auto DisplayAreaStart = 0;
constexpr auto TextAreaStart = 16;
constexpr auto TextAreaSize = 7;
constexpr auto TerminalEnd = TextAreaStart + TextAreaSize;
inline void WriteText(std::string text, int r, int c, Color color = Color::Default)
{
SetColor(color);
std::string t = "tput cup " + std::to_string(r) + " " + std::to_string(c);
system(t.c_str());
std::cout << text;
SetColor(Color::Default);
}
inline void ClearDisplayArea()
{
std::string t = "tput cup " + std::to_string(0) + " " + std::to_string(0);
system(t.c_str());
for(int i = 0; i < TextAreaStart; ++i)
{
std::cout << std::setfill(' ') << std::setw(80) << " " << "\n";
}
}
inline void ClearTextArea()
{
std::string t = "tput cup " + std::to_string(TextAreaStart) + " " + std::to_string(0);
system(t.c_str());
for(int i = 0; i < TextAreaSize; ++i)
{
std::cout << std::setfill(' ') << std::setw(80) << " " << "\n";
}
}
inline void WriteToTextArea(std::string text, int c = 0, Color color = Color::Default)
{
c += TextAreaStart;
SetColor(color);
std::string t = "tput cup " + std::to_string(c) + " " + std::to_string(0);
system(t.c_str());
std::cout << text;
SetColor(Color::Default);
}
static auto TEXT_POS = 0;
// IN: text
// IN: nio - next instruction position
inline void WriteToTextArea(std::vector<std::string>& text, const int nip = 0)
{
ClearTextArea();
MoveCursor(TextAreaStart, 0);
int j = 0;
if(text.size() <= 7) {
for(auto& elem : text) {
std::cout << std::setw(3) << j << " " << elem << "\n";
j += 1;
}
MoveCursor(TextAreaStart + nip, 0);
return;
}
if(nip <= 3) {
for(int i = 0; i < TextAreaSize; ++i) {
std::cout << std::setw(3) << i << " " << text[i] << "\n";
}
MoveCursor(TextAreaStart + nip, 0);
}
else if(text.size() - 1 - nip <= 3) {
for(int i = text.size() - TextAreaSize; i < text.size(); ++i) {
std::cout << std::setw(3) << i << " " << text[i] << "\n";
}
MoveCursor(TextAreaStart + (TextAreaSize - (text.size() - 1 - nip) - 1), 0);
}
else {
for(int i = nip - 3; i <= nip + 3; ++i) {
std::cout << std::setw(3) << i << " " << text[i] << "\n";
}
MoveCursor(TextAreaStart + 3, 0);
}
}
} | [
"petrlic.marko@gmail.com"
] | petrlic.marko@gmail.com |
70a016cb43ccb828f18aa18bf133f835ade524b4 | 752ac067d1a326a202b05c6d7ac00e11fa960bae | /Phần 3/Bai23_GiaiPT1.cpp | 4602918fce4136794feda0bc535897e612003874 | [] | no_license | dzboy2k/tdt_108Cplus | ba9ca79fe10708174633fd4bee3aa5b6b48c6a70 | fe41fc5aefac32385a504a0df14020fb1538db59 | refs/heads/main | 2023-03-26T06:12:24.127446 | 2021-03-30T16:38:25 | 2021-03-30T16:38:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 410 | cpp | #include<iostream>
using namespace std;
int main(){
int a,b;
cout<<"a= ";
cin>>a;
cout<<"b= ";
cin>>b;
if ((a!=0&&b==0)||(a==0&&b!=0))
{
cout<<"Phuong trinh vo ngiem"<<endl;
}
else if ((a==0&&b==0))
{
cout<<"Phuong trinh vo so ngiem"<<endl;
}
else
{
double x=(double)-b/a;
cout<<"x="<<x<<endl;
}
system("pause");
} | [
"dzboy2k@gmail.com"
] | dzboy2k@gmail.com |
7c3165279e795025feef36e43821b65fabc04340 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_1/WRR+2W+poonceonce+pooncerelease+Release.c.cbmc_out.cpp | e4949e2fdcdc1e7d7f6458bcdebfbadd1ec2d454 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 36,549 | cpp | // 0:vars:2
// 2:atom_1_X0_2:1
// 3:atom_1_X2_0:1
// 4:thr0:1
// 5:thr1:1
// 6:thr2:1
#define ADDRSIZE 7
#define NPROC 4
#define NCONTEXT 1
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
char get_rng_th( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
int main(int argc, char **argv) {
// declare arrays for intial value version in contexts
int meminit_[ADDRSIZE*NCONTEXT];
#define meminit(x,k) meminit_[(x)*NCONTEXT+k]
int coinit_[ADDRSIZE*NCONTEXT];
#define coinit(x,k) coinit_[(x)*NCONTEXT+k]
int deltainit_[ADDRSIZE*NCONTEXT];
#define deltainit(x,k) deltainit_[(x)*NCONTEXT+k]
// declare arrays for running value version in contexts
int mem_[ADDRSIZE*NCONTEXT];
#define mem(x,k) mem_[(x)*NCONTEXT+k]
int co_[ADDRSIZE*NCONTEXT];
#define co(x,k) co_[(x)*NCONTEXT+k]
int delta_[ADDRSIZE*NCONTEXT];
#define delta(x,k) delta_[(x)*NCONTEXT+k]
// declare arrays for local buffer and observed writes
int buff_[NPROC*ADDRSIZE];
#define buff(x,k) buff_[(x)*ADDRSIZE+k]
int pw_[NPROC*ADDRSIZE];
#define pw(x,k) pw_[(x)*ADDRSIZE+k]
// declare arrays for context stamps
char cr_[NPROC*ADDRSIZE];
#define cr(x,k) cr_[(x)*ADDRSIZE+k]
char iw_[NPROC*ADDRSIZE];
#define iw(x,k) iw_[(x)*ADDRSIZE+k]
char cw_[NPROC*ADDRSIZE];
#define cw(x,k) cw_[(x)*ADDRSIZE+k]
char cx_[NPROC*ADDRSIZE];
#define cx(x,k) cx_[(x)*ADDRSIZE+k]
char is_[NPROC*ADDRSIZE];
#define is(x,k) is_[(x)*ADDRSIZE+k]
char cs_[NPROC*ADDRSIZE];
#define cs(x,k) cs_[(x)*ADDRSIZE+k]
char crmax_[NPROC*ADDRSIZE];
#define crmax(x,k) crmax_[(x)*ADDRSIZE+k]
char sforbid_[ADDRSIZE*NCONTEXT];
#define sforbid(x,k) sforbid_[(x)*NCONTEXT+k]
// declare arrays for synchronizations
int cl[NPROC];
int cdy[NPROC];
int cds[NPROC];
int cdl[NPROC];
int cisb[NPROC];
int caddr[NPROC];
int cctrl[NPROC];
int cstart[NPROC];
int creturn[NPROC];
// declare arrays for contexts activity
int active[NCONTEXT];
int ctx_used[NCONTEXT];
int r0= 0;
char creg_r0;
int r1= 0;
char creg_r1;
int r2= 0;
char creg_r2;
int r3= 0;
char creg_r3;
int r4= 0;
char creg_r4;
int r5= 0;
char creg_r5;
int r6= 0;
char creg_r6;
int r7= 0;
char creg_r7;
int r8= 0;
char creg_r8;
int r9= 0;
char creg_r9;
int r10= 0;
char creg_r10;
int r11= 0;
char creg_r11;
char old_cctrl= 0;
char old_cr= 0;
char old_cdy= 0;
char old_cw= 0;
char new_creg= 0;
buff(0,0) = 0;
pw(0,0) = 0;
cr(0,0) = 0;
iw(0,0) = 0;
cw(0,0) = 0;
cx(0,0) = 0;
is(0,0) = 0;
cs(0,0) = 0;
crmax(0,0) = 0;
buff(0,1) = 0;
pw(0,1) = 0;
cr(0,1) = 0;
iw(0,1) = 0;
cw(0,1) = 0;
cx(0,1) = 0;
is(0,1) = 0;
cs(0,1) = 0;
crmax(0,1) = 0;
buff(0,2) = 0;
pw(0,2) = 0;
cr(0,2) = 0;
iw(0,2) = 0;
cw(0,2) = 0;
cx(0,2) = 0;
is(0,2) = 0;
cs(0,2) = 0;
crmax(0,2) = 0;
buff(0,3) = 0;
pw(0,3) = 0;
cr(0,3) = 0;
iw(0,3) = 0;
cw(0,3) = 0;
cx(0,3) = 0;
is(0,3) = 0;
cs(0,3) = 0;
crmax(0,3) = 0;
buff(0,4) = 0;
pw(0,4) = 0;
cr(0,4) = 0;
iw(0,4) = 0;
cw(0,4) = 0;
cx(0,4) = 0;
is(0,4) = 0;
cs(0,4) = 0;
crmax(0,4) = 0;
buff(0,5) = 0;
pw(0,5) = 0;
cr(0,5) = 0;
iw(0,5) = 0;
cw(0,5) = 0;
cx(0,5) = 0;
is(0,5) = 0;
cs(0,5) = 0;
crmax(0,5) = 0;
buff(0,6) = 0;
pw(0,6) = 0;
cr(0,6) = 0;
iw(0,6) = 0;
cw(0,6) = 0;
cx(0,6) = 0;
is(0,6) = 0;
cs(0,6) = 0;
crmax(0,6) = 0;
cl[0] = 0;
cdy[0] = 0;
cds[0] = 0;
cdl[0] = 0;
cisb[0] = 0;
caddr[0] = 0;
cctrl[0] = 0;
cstart[0] = get_rng(0,NCONTEXT-1);
creturn[0] = get_rng(0,NCONTEXT-1);
buff(1,0) = 0;
pw(1,0) = 0;
cr(1,0) = 0;
iw(1,0) = 0;
cw(1,0) = 0;
cx(1,0) = 0;
is(1,0) = 0;
cs(1,0) = 0;
crmax(1,0) = 0;
buff(1,1) = 0;
pw(1,1) = 0;
cr(1,1) = 0;
iw(1,1) = 0;
cw(1,1) = 0;
cx(1,1) = 0;
is(1,1) = 0;
cs(1,1) = 0;
crmax(1,1) = 0;
buff(1,2) = 0;
pw(1,2) = 0;
cr(1,2) = 0;
iw(1,2) = 0;
cw(1,2) = 0;
cx(1,2) = 0;
is(1,2) = 0;
cs(1,2) = 0;
crmax(1,2) = 0;
buff(1,3) = 0;
pw(1,3) = 0;
cr(1,3) = 0;
iw(1,3) = 0;
cw(1,3) = 0;
cx(1,3) = 0;
is(1,3) = 0;
cs(1,3) = 0;
crmax(1,3) = 0;
buff(1,4) = 0;
pw(1,4) = 0;
cr(1,4) = 0;
iw(1,4) = 0;
cw(1,4) = 0;
cx(1,4) = 0;
is(1,4) = 0;
cs(1,4) = 0;
crmax(1,4) = 0;
buff(1,5) = 0;
pw(1,5) = 0;
cr(1,5) = 0;
iw(1,5) = 0;
cw(1,5) = 0;
cx(1,5) = 0;
is(1,5) = 0;
cs(1,5) = 0;
crmax(1,5) = 0;
buff(1,6) = 0;
pw(1,6) = 0;
cr(1,6) = 0;
iw(1,6) = 0;
cw(1,6) = 0;
cx(1,6) = 0;
is(1,6) = 0;
cs(1,6) = 0;
crmax(1,6) = 0;
cl[1] = 0;
cdy[1] = 0;
cds[1] = 0;
cdl[1] = 0;
cisb[1] = 0;
caddr[1] = 0;
cctrl[1] = 0;
cstart[1] = get_rng(0,NCONTEXT-1);
creturn[1] = get_rng(0,NCONTEXT-1);
buff(2,0) = 0;
pw(2,0) = 0;
cr(2,0) = 0;
iw(2,0) = 0;
cw(2,0) = 0;
cx(2,0) = 0;
is(2,0) = 0;
cs(2,0) = 0;
crmax(2,0) = 0;
buff(2,1) = 0;
pw(2,1) = 0;
cr(2,1) = 0;
iw(2,1) = 0;
cw(2,1) = 0;
cx(2,1) = 0;
is(2,1) = 0;
cs(2,1) = 0;
crmax(2,1) = 0;
buff(2,2) = 0;
pw(2,2) = 0;
cr(2,2) = 0;
iw(2,2) = 0;
cw(2,2) = 0;
cx(2,2) = 0;
is(2,2) = 0;
cs(2,2) = 0;
crmax(2,2) = 0;
buff(2,3) = 0;
pw(2,3) = 0;
cr(2,3) = 0;
iw(2,3) = 0;
cw(2,3) = 0;
cx(2,3) = 0;
is(2,3) = 0;
cs(2,3) = 0;
crmax(2,3) = 0;
buff(2,4) = 0;
pw(2,4) = 0;
cr(2,4) = 0;
iw(2,4) = 0;
cw(2,4) = 0;
cx(2,4) = 0;
is(2,4) = 0;
cs(2,4) = 0;
crmax(2,4) = 0;
buff(2,5) = 0;
pw(2,5) = 0;
cr(2,5) = 0;
iw(2,5) = 0;
cw(2,5) = 0;
cx(2,5) = 0;
is(2,5) = 0;
cs(2,5) = 0;
crmax(2,5) = 0;
buff(2,6) = 0;
pw(2,6) = 0;
cr(2,6) = 0;
iw(2,6) = 0;
cw(2,6) = 0;
cx(2,6) = 0;
is(2,6) = 0;
cs(2,6) = 0;
crmax(2,6) = 0;
cl[2] = 0;
cdy[2] = 0;
cds[2] = 0;
cdl[2] = 0;
cisb[2] = 0;
caddr[2] = 0;
cctrl[2] = 0;
cstart[2] = get_rng(0,NCONTEXT-1);
creturn[2] = get_rng(0,NCONTEXT-1);
buff(3,0) = 0;
pw(3,0) = 0;
cr(3,0) = 0;
iw(3,0) = 0;
cw(3,0) = 0;
cx(3,0) = 0;
is(3,0) = 0;
cs(3,0) = 0;
crmax(3,0) = 0;
buff(3,1) = 0;
pw(3,1) = 0;
cr(3,1) = 0;
iw(3,1) = 0;
cw(3,1) = 0;
cx(3,1) = 0;
is(3,1) = 0;
cs(3,1) = 0;
crmax(3,1) = 0;
buff(3,2) = 0;
pw(3,2) = 0;
cr(3,2) = 0;
iw(3,2) = 0;
cw(3,2) = 0;
cx(3,2) = 0;
is(3,2) = 0;
cs(3,2) = 0;
crmax(3,2) = 0;
buff(3,3) = 0;
pw(3,3) = 0;
cr(3,3) = 0;
iw(3,3) = 0;
cw(3,3) = 0;
cx(3,3) = 0;
is(3,3) = 0;
cs(3,3) = 0;
crmax(3,3) = 0;
buff(3,4) = 0;
pw(3,4) = 0;
cr(3,4) = 0;
iw(3,4) = 0;
cw(3,4) = 0;
cx(3,4) = 0;
is(3,4) = 0;
cs(3,4) = 0;
crmax(3,4) = 0;
buff(3,5) = 0;
pw(3,5) = 0;
cr(3,5) = 0;
iw(3,5) = 0;
cw(3,5) = 0;
cx(3,5) = 0;
is(3,5) = 0;
cs(3,5) = 0;
crmax(3,5) = 0;
buff(3,6) = 0;
pw(3,6) = 0;
cr(3,6) = 0;
iw(3,6) = 0;
cw(3,6) = 0;
cx(3,6) = 0;
is(3,6) = 0;
cs(3,6) = 0;
crmax(3,6) = 0;
cl[3] = 0;
cdy[3] = 0;
cds[3] = 0;
cdl[3] = 0;
cisb[3] = 0;
caddr[3] = 0;
cctrl[3] = 0;
cstart[3] = get_rng(0,NCONTEXT-1);
creturn[3] = get_rng(0,NCONTEXT-1);
// Dumping initializations
mem(0+0,0) = 0;
mem(0+1,0) = 0;
mem(2+0,0) = 0;
mem(3+0,0) = 0;
mem(4+0,0) = 0;
mem(5+0,0) = 0;
mem(6+0,0) = 0;
// Dumping context matching equalities
co(0,0) = 0;
delta(0,0) = -1;
co(1,0) = 0;
delta(1,0) = -1;
co(2,0) = 0;
delta(2,0) = -1;
co(3,0) = 0;
delta(3,0) = -1;
co(4,0) = 0;
delta(4,0) = -1;
co(5,0) = 0;
delta(5,0) = -1;
co(6,0) = 0;
delta(6,0) = -1;
// Dumping thread 1
int ret_thread_1 = 0;
cdy[1] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[1] >= cstart[1]);
T1BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !35, metadata !DIExpression()), !dbg !41
// br label %label_1, !dbg !42
goto T1BLOCK1;
T1BLOCK1:
// call void @llvm.dbg.label(metadata !40), !dbg !43
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !36, metadata !DIExpression()), !dbg !44
// call void @llvm.dbg.value(metadata i64 2, metadata !39, metadata !DIExpression()), !dbg !44
// store atomic i64 2, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) release, align 8, !dbg !45
// ST: Guess
// : Release
iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW
old_cw = cw(1,0);
cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM
// Check
ASSUME(active[iw(1,0)] == 1);
ASSUME(active[cw(1,0)] == 1);
ASSUME(sforbid(0,cw(1,0))== 0);
ASSUME(iw(1,0) >= 0);
ASSUME(iw(1,0) >= 0);
ASSUME(cw(1,0) >= iw(1,0));
ASSUME(cw(1,0) >= old_cw);
ASSUME(cw(1,0) >= cr(1,0));
ASSUME(cw(1,0) >= cl[1]);
ASSUME(cw(1,0) >= cisb[1]);
ASSUME(cw(1,0) >= cdy[1]);
ASSUME(cw(1,0) >= cdl[1]);
ASSUME(cw(1,0) >= cds[1]);
ASSUME(cw(1,0) >= cctrl[1]);
ASSUME(cw(1,0) >= caddr[1]);
ASSUME(cw(1,0) >= cr(1,0+0));
ASSUME(cw(1,0) >= cr(1,0+1));
ASSUME(cw(1,0) >= cr(1,2+0));
ASSUME(cw(1,0) >= cr(1,3+0));
ASSUME(cw(1,0) >= cr(1,4+0));
ASSUME(cw(1,0) >= cr(1,5+0));
ASSUME(cw(1,0) >= cr(1,6+0));
ASSUME(cw(1,0) >= cw(1,0+0));
ASSUME(cw(1,0) >= cw(1,0+1));
ASSUME(cw(1,0) >= cw(1,2+0));
ASSUME(cw(1,0) >= cw(1,3+0));
ASSUME(cw(1,0) >= cw(1,4+0));
ASSUME(cw(1,0) >= cw(1,5+0));
ASSUME(cw(1,0) >= cw(1,6+0));
// Update
caddr[1] = max(caddr[1],0);
buff(1,0) = 2;
mem(0,cw(1,0)) = 2;
co(0,cw(1,0))+=1;
delta(0,cw(1,0)) = -1;
is(1,0) = iw(1,0);
cs(1,0) = cw(1,0);
ASSUME(creturn[1] >= cw(1,0));
// ret i8* null, !dbg !46
ret_thread_1 = (- 1);
// Dumping thread 2
int ret_thread_2 = 0;
cdy[2] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[2] >= cstart[2]);
T2BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !49, metadata !DIExpression()), !dbg !68
// br label %label_2, !dbg !56
goto T2BLOCK1;
T2BLOCK1:
// call void @llvm.dbg.label(metadata !67), !dbg !70
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !52, metadata !DIExpression()), !dbg !71
// %0 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !59
// LD: Guess
old_cr = cr(2,0);
cr(2,0) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM
// Check
ASSUME(active[cr(2,0)] == 2);
ASSUME(cr(2,0) >= iw(2,0));
ASSUME(cr(2,0) >= 0);
ASSUME(cr(2,0) >= cdy[2]);
ASSUME(cr(2,0) >= cisb[2]);
ASSUME(cr(2,0) >= cdl[2]);
ASSUME(cr(2,0) >= cl[2]);
// Update
creg_r0 = cr(2,0);
crmax(2,0) = max(crmax(2,0),cr(2,0));
caddr[2] = max(caddr[2],0);
if(cr(2,0) < cw(2,0)) {
r0 = buff(2,0);
} else {
if(pw(2,0) != co(0,cr(2,0))) {
ASSUME(cr(2,0) >= old_cr);
}
pw(2,0) = co(0,cr(2,0));
r0 = mem(0,cr(2,0));
}
ASSUME(creturn[2] >= cr(2,0));
// call void @llvm.dbg.value(metadata i64 %0, metadata !54, metadata !DIExpression()), !dbg !71
// %conv = trunc i64 %0 to i32, !dbg !60
// call void @llvm.dbg.value(metadata i32 %conv, metadata !50, metadata !DIExpression()), !dbg !68
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !56, metadata !DIExpression()), !dbg !74
// %1 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !62
// LD: Guess
old_cr = cr(2,0+1*1);
cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM
// Check
ASSUME(active[cr(2,0+1*1)] == 2);
ASSUME(cr(2,0+1*1) >= iw(2,0+1*1));
ASSUME(cr(2,0+1*1) >= 0);
ASSUME(cr(2,0+1*1) >= cdy[2]);
ASSUME(cr(2,0+1*1) >= cisb[2]);
ASSUME(cr(2,0+1*1) >= cdl[2]);
ASSUME(cr(2,0+1*1) >= cl[2]);
// Update
creg_r1 = cr(2,0+1*1);
crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1));
caddr[2] = max(caddr[2],0);
if(cr(2,0+1*1) < cw(2,0+1*1)) {
r1 = buff(2,0+1*1);
} else {
if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) {
ASSUME(cr(2,0+1*1) >= old_cr);
}
pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1));
r1 = mem(0+1*1,cr(2,0+1*1));
}
ASSUME(creturn[2] >= cr(2,0+1*1));
// call void @llvm.dbg.value(metadata i64 %1, metadata !58, metadata !DIExpression()), !dbg !74
// %conv4 = trunc i64 %1 to i32, !dbg !63
// call void @llvm.dbg.value(metadata i32 %conv4, metadata !55, metadata !DIExpression()), !dbg !68
// %cmp = icmp eq i32 %conv, 2, !dbg !64
// %conv5 = zext i1 %cmp to i32, !dbg !64
// call void @llvm.dbg.value(metadata i32 %conv5, metadata !59, metadata !DIExpression()), !dbg !68
// call void @llvm.dbg.value(metadata i64* @atom_1_X0_2, metadata !60, metadata !DIExpression()), !dbg !78
// %2 = zext i32 %conv5 to i64
// call void @llvm.dbg.value(metadata i64 %2, metadata !62, metadata !DIExpression()), !dbg !78
// store atomic i64 %2, i64* @atom_1_X0_2 seq_cst, align 8, !dbg !66
// ST: Guess
iw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW
old_cw = cw(2,2);
cw(2,2) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM
// Check
ASSUME(active[iw(2,2)] == 2);
ASSUME(active[cw(2,2)] == 2);
ASSUME(sforbid(2,cw(2,2))== 0);
ASSUME(iw(2,2) >= max(creg_r0,0));
ASSUME(iw(2,2) >= 0);
ASSUME(cw(2,2) >= iw(2,2));
ASSUME(cw(2,2) >= old_cw);
ASSUME(cw(2,2) >= cr(2,2));
ASSUME(cw(2,2) >= cl[2]);
ASSUME(cw(2,2) >= cisb[2]);
ASSUME(cw(2,2) >= cdy[2]);
ASSUME(cw(2,2) >= cdl[2]);
ASSUME(cw(2,2) >= cds[2]);
ASSUME(cw(2,2) >= cctrl[2]);
ASSUME(cw(2,2) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,2) = (r0==2);
mem(2,cw(2,2)) = (r0==2);
co(2,cw(2,2))+=1;
delta(2,cw(2,2)) = -1;
ASSUME(creturn[2] >= cw(2,2));
// %cmp7 = icmp eq i32 %conv4, 0, !dbg !67
// %conv8 = zext i1 %cmp7 to i32, !dbg !67
// call void @llvm.dbg.value(metadata i32 %conv8, metadata !63, metadata !DIExpression()), !dbg !68
// call void @llvm.dbg.value(metadata i64* @atom_1_X2_0, metadata !64, metadata !DIExpression()), !dbg !81
// %3 = zext i32 %conv8 to i64
// call void @llvm.dbg.value(metadata i64 %3, metadata !66, metadata !DIExpression()), !dbg !81
// store atomic i64 %3, i64* @atom_1_X2_0 seq_cst, align 8, !dbg !69
// ST: Guess
iw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW
old_cw = cw(2,3);
cw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM
// Check
ASSUME(active[iw(2,3)] == 2);
ASSUME(active[cw(2,3)] == 2);
ASSUME(sforbid(3,cw(2,3))== 0);
ASSUME(iw(2,3) >= max(creg_r1,0));
ASSUME(iw(2,3) >= 0);
ASSUME(cw(2,3) >= iw(2,3));
ASSUME(cw(2,3) >= old_cw);
ASSUME(cw(2,3) >= cr(2,3));
ASSUME(cw(2,3) >= cl[2]);
ASSUME(cw(2,3) >= cisb[2]);
ASSUME(cw(2,3) >= cdy[2]);
ASSUME(cw(2,3) >= cdl[2]);
ASSUME(cw(2,3) >= cds[2]);
ASSUME(cw(2,3) >= cctrl[2]);
ASSUME(cw(2,3) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,3) = (r1==0);
mem(3,cw(2,3)) = (r1==0);
co(3,cw(2,3))+=1;
delta(3,cw(2,3)) = -1;
ASSUME(creturn[2] >= cw(2,3));
// ret i8* null, !dbg !70
ret_thread_2 = (- 1);
// Dumping thread 3
int ret_thread_3 = 0;
cdy[3] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[3] >= cstart[3]);
T3BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !86, metadata !DIExpression()), !dbg !94
// br label %label_3, !dbg !45
goto T3BLOCK1;
T3BLOCK1:
// call void @llvm.dbg.label(metadata !93), !dbg !96
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !87, metadata !DIExpression()), !dbg !97
// call void @llvm.dbg.value(metadata i64 1, metadata !89, metadata !DIExpression()), !dbg !97
// store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !48
// ST: Guess
iw(3,0+1*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW
old_cw = cw(3,0+1*1);
cw(3,0+1*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM
// Check
ASSUME(active[iw(3,0+1*1)] == 3);
ASSUME(active[cw(3,0+1*1)] == 3);
ASSUME(sforbid(0+1*1,cw(3,0+1*1))== 0);
ASSUME(iw(3,0+1*1) >= 0);
ASSUME(iw(3,0+1*1) >= 0);
ASSUME(cw(3,0+1*1) >= iw(3,0+1*1));
ASSUME(cw(3,0+1*1) >= old_cw);
ASSUME(cw(3,0+1*1) >= cr(3,0+1*1));
ASSUME(cw(3,0+1*1) >= cl[3]);
ASSUME(cw(3,0+1*1) >= cisb[3]);
ASSUME(cw(3,0+1*1) >= cdy[3]);
ASSUME(cw(3,0+1*1) >= cdl[3]);
ASSUME(cw(3,0+1*1) >= cds[3]);
ASSUME(cw(3,0+1*1) >= cctrl[3]);
ASSUME(cw(3,0+1*1) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,0+1*1) = 1;
mem(0+1*1,cw(3,0+1*1)) = 1;
co(0+1*1,cw(3,0+1*1))+=1;
delta(0+1*1,cw(3,0+1*1)) = -1;
ASSUME(creturn[3] >= cw(3,0+1*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !90, metadata !DIExpression()), !dbg !99
// call void @llvm.dbg.value(metadata i64 1, metadata !92, metadata !DIExpression()), !dbg !99
// store atomic i64 1, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) release, align 8, !dbg !50
// ST: Guess
// : Release
iw(3,0) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW
old_cw = cw(3,0);
cw(3,0) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM
// Check
ASSUME(active[iw(3,0)] == 3);
ASSUME(active[cw(3,0)] == 3);
ASSUME(sforbid(0,cw(3,0))== 0);
ASSUME(iw(3,0) >= 0);
ASSUME(iw(3,0) >= 0);
ASSUME(cw(3,0) >= iw(3,0));
ASSUME(cw(3,0) >= old_cw);
ASSUME(cw(3,0) >= cr(3,0));
ASSUME(cw(3,0) >= cl[3]);
ASSUME(cw(3,0) >= cisb[3]);
ASSUME(cw(3,0) >= cdy[3]);
ASSUME(cw(3,0) >= cdl[3]);
ASSUME(cw(3,0) >= cds[3]);
ASSUME(cw(3,0) >= cctrl[3]);
ASSUME(cw(3,0) >= caddr[3]);
ASSUME(cw(3,0) >= cr(3,0+0));
ASSUME(cw(3,0) >= cr(3,0+1));
ASSUME(cw(3,0) >= cr(3,2+0));
ASSUME(cw(3,0) >= cr(3,3+0));
ASSUME(cw(3,0) >= cr(3,4+0));
ASSUME(cw(3,0) >= cr(3,5+0));
ASSUME(cw(3,0) >= cr(3,6+0));
ASSUME(cw(3,0) >= cw(3,0+0));
ASSUME(cw(3,0) >= cw(3,0+1));
ASSUME(cw(3,0) >= cw(3,2+0));
ASSUME(cw(3,0) >= cw(3,3+0));
ASSUME(cw(3,0) >= cw(3,4+0));
ASSUME(cw(3,0) >= cw(3,5+0));
ASSUME(cw(3,0) >= cw(3,6+0));
// Update
caddr[3] = max(caddr[3],0);
buff(3,0) = 1;
mem(0,cw(3,0)) = 1;
co(0,cw(3,0))+=1;
delta(0,cw(3,0)) = -1;
is(3,0) = iw(3,0);
cs(3,0) = cw(3,0);
ASSUME(creturn[3] >= cw(3,0));
// ret i8* null, !dbg !51
ret_thread_3 = (- 1);
// Dumping thread 0
int ret_thread_0 = 0;
cdy[0] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[0] >= cstart[0]);
T0BLOCK0:
// %thr0 = alloca i64, align 8
// %thr1 = alloca i64, align 8
// %thr2 = alloca i64, align 8
// call void @llvm.dbg.value(metadata i32 %argc, metadata !109, metadata !DIExpression()), !dbg !144
// call void @llvm.dbg.value(metadata i8** %argv, metadata !110, metadata !DIExpression()), !dbg !144
// %0 = bitcast i64* %thr0 to i8*, !dbg !76
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !76
// call void @llvm.dbg.declare(metadata i64* %thr0, metadata !111, metadata !DIExpression()), !dbg !146
// %1 = bitcast i64* %thr1 to i8*, !dbg !78
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !78
// call void @llvm.dbg.declare(metadata i64* %thr1, metadata !115, metadata !DIExpression()), !dbg !148
// %2 = bitcast i64* %thr2 to i8*, !dbg !80
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %2) #7, !dbg !80
// call void @llvm.dbg.declare(metadata i64* %thr2, metadata !116, metadata !DIExpression()), !dbg !150
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1), metadata !117, metadata !DIExpression()), !dbg !151
// call void @llvm.dbg.value(metadata i64 0, metadata !119, metadata !DIExpression()), !dbg !151
// store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !83
// ST: Guess
iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,0+1*1);
cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,0+1*1)] == 0);
ASSUME(active[cw(0,0+1*1)] == 0);
ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(cw(0,0+1*1) >= iw(0,0+1*1));
ASSUME(cw(0,0+1*1) >= old_cw);
ASSUME(cw(0,0+1*1) >= cr(0,0+1*1));
ASSUME(cw(0,0+1*1) >= cl[0]);
ASSUME(cw(0,0+1*1) >= cisb[0]);
ASSUME(cw(0,0+1*1) >= cdy[0]);
ASSUME(cw(0,0+1*1) >= cdl[0]);
ASSUME(cw(0,0+1*1) >= cds[0]);
ASSUME(cw(0,0+1*1) >= cctrl[0]);
ASSUME(cw(0,0+1*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+1*1) = 0;
mem(0+1*1,cw(0,0+1*1)) = 0;
co(0+1*1,cw(0,0+1*1))+=1;
delta(0+1*1,cw(0,0+1*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+1*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !120, metadata !DIExpression()), !dbg !153
// call void @llvm.dbg.value(metadata i64 0, metadata !122, metadata !DIExpression()), !dbg !153
// store atomic i64 0, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !85
// ST: Guess
iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,0);
cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,0)] == 0);
ASSUME(active[cw(0,0)] == 0);
ASSUME(sforbid(0,cw(0,0))== 0);
ASSUME(iw(0,0) >= 0);
ASSUME(iw(0,0) >= 0);
ASSUME(cw(0,0) >= iw(0,0));
ASSUME(cw(0,0) >= old_cw);
ASSUME(cw(0,0) >= cr(0,0));
ASSUME(cw(0,0) >= cl[0]);
ASSUME(cw(0,0) >= cisb[0]);
ASSUME(cw(0,0) >= cdy[0]);
ASSUME(cw(0,0) >= cdl[0]);
ASSUME(cw(0,0) >= cds[0]);
ASSUME(cw(0,0) >= cctrl[0]);
ASSUME(cw(0,0) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0) = 0;
mem(0,cw(0,0)) = 0;
co(0,cw(0,0))+=1;
delta(0,cw(0,0)) = -1;
ASSUME(creturn[0] >= cw(0,0));
// call void @llvm.dbg.value(metadata i64* @atom_1_X0_2, metadata !123, metadata !DIExpression()), !dbg !155
// call void @llvm.dbg.value(metadata i64 0, metadata !125, metadata !DIExpression()), !dbg !155
// store atomic i64 0, i64* @atom_1_X0_2 monotonic, align 8, !dbg !87
// ST: Guess
iw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,2);
cw(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,2)] == 0);
ASSUME(active[cw(0,2)] == 0);
ASSUME(sforbid(2,cw(0,2))== 0);
ASSUME(iw(0,2) >= 0);
ASSUME(iw(0,2) >= 0);
ASSUME(cw(0,2) >= iw(0,2));
ASSUME(cw(0,2) >= old_cw);
ASSUME(cw(0,2) >= cr(0,2));
ASSUME(cw(0,2) >= cl[0]);
ASSUME(cw(0,2) >= cisb[0]);
ASSUME(cw(0,2) >= cdy[0]);
ASSUME(cw(0,2) >= cdl[0]);
ASSUME(cw(0,2) >= cds[0]);
ASSUME(cw(0,2) >= cctrl[0]);
ASSUME(cw(0,2) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,2) = 0;
mem(2,cw(0,2)) = 0;
co(2,cw(0,2))+=1;
delta(2,cw(0,2)) = -1;
ASSUME(creturn[0] >= cw(0,2));
// call void @llvm.dbg.value(metadata i64* @atom_1_X2_0, metadata !126, metadata !DIExpression()), !dbg !157
// call void @llvm.dbg.value(metadata i64 0, metadata !128, metadata !DIExpression()), !dbg !157
// store atomic i64 0, i64* @atom_1_X2_0 monotonic, align 8, !dbg !89
// ST: Guess
iw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW
old_cw = cw(0,3);
cw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM
// Check
ASSUME(active[iw(0,3)] == 0);
ASSUME(active[cw(0,3)] == 0);
ASSUME(sforbid(3,cw(0,3))== 0);
ASSUME(iw(0,3) >= 0);
ASSUME(iw(0,3) >= 0);
ASSUME(cw(0,3) >= iw(0,3));
ASSUME(cw(0,3) >= old_cw);
ASSUME(cw(0,3) >= cr(0,3));
ASSUME(cw(0,3) >= cl[0]);
ASSUME(cw(0,3) >= cisb[0]);
ASSUME(cw(0,3) >= cdy[0]);
ASSUME(cw(0,3) >= cdl[0]);
ASSUME(cw(0,3) >= cds[0]);
ASSUME(cw(0,3) >= cctrl[0]);
ASSUME(cw(0,3) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,3) = 0;
mem(3,cw(0,3)) = 0;
co(3,cw(0,3))+=1;
delta(3,cw(0,3)) = -1;
ASSUME(creturn[0] >= cw(0,3));
// %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !90
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[1] >= cdy[0]);
// %call7 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !91
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[2] >= cdy[0]);
// %call8 = call i32 @pthread_create(i64* noundef %thr2, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t2, i8* noundef null) #7, !dbg !92
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[3] >= cdy[0]);
// %3 = load i64, i64* %thr0, align 8, !dbg !93, !tbaa !94
// LD: Guess
old_cr = cr(0,4);
cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,4)] == 0);
ASSUME(cr(0,4) >= iw(0,4));
ASSUME(cr(0,4) >= 0);
ASSUME(cr(0,4) >= cdy[0]);
ASSUME(cr(0,4) >= cisb[0]);
ASSUME(cr(0,4) >= cdl[0]);
ASSUME(cr(0,4) >= cl[0]);
// Update
creg_r3 = cr(0,4);
crmax(0,4) = max(crmax(0,4),cr(0,4));
caddr[0] = max(caddr[0],0);
if(cr(0,4) < cw(0,4)) {
r3 = buff(0,4);
} else {
if(pw(0,4) != co(4,cr(0,4))) {
ASSUME(cr(0,4) >= old_cr);
}
pw(0,4) = co(4,cr(0,4));
r3 = mem(4,cr(0,4));
}
ASSUME(creturn[0] >= cr(0,4));
// %call9 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !98
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[1]);
// %4 = load i64, i64* %thr1, align 8, !dbg !99, !tbaa !94
// LD: Guess
old_cr = cr(0,5);
cr(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,5)] == 0);
ASSUME(cr(0,5) >= iw(0,5));
ASSUME(cr(0,5) >= 0);
ASSUME(cr(0,5) >= cdy[0]);
ASSUME(cr(0,5) >= cisb[0]);
ASSUME(cr(0,5) >= cdl[0]);
ASSUME(cr(0,5) >= cl[0]);
// Update
creg_r4 = cr(0,5);
crmax(0,5) = max(crmax(0,5),cr(0,5));
caddr[0] = max(caddr[0],0);
if(cr(0,5) < cw(0,5)) {
r4 = buff(0,5);
} else {
if(pw(0,5) != co(5,cr(0,5))) {
ASSUME(cr(0,5) >= old_cr);
}
pw(0,5) = co(5,cr(0,5));
r4 = mem(5,cr(0,5));
}
ASSUME(creturn[0] >= cr(0,5));
// %call10 = call i32 @pthread_join(i64 noundef %4, i8** noundef null), !dbg !100
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[2]);
// %5 = load i64, i64* %thr2, align 8, !dbg !101, !tbaa !94
// LD: Guess
old_cr = cr(0,6);
cr(0,6) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,6)] == 0);
ASSUME(cr(0,6) >= iw(0,6));
ASSUME(cr(0,6) >= 0);
ASSUME(cr(0,6) >= cdy[0]);
ASSUME(cr(0,6) >= cisb[0]);
ASSUME(cr(0,6) >= cdl[0]);
ASSUME(cr(0,6) >= cl[0]);
// Update
creg_r5 = cr(0,6);
crmax(0,6) = max(crmax(0,6),cr(0,6));
caddr[0] = max(caddr[0],0);
if(cr(0,6) < cw(0,6)) {
r5 = buff(0,6);
} else {
if(pw(0,6) != co(6,cr(0,6))) {
ASSUME(cr(0,6) >= old_cr);
}
pw(0,6) = co(6,cr(0,6));
r5 = mem(6,cr(0,6));
}
ASSUME(creturn[0] >= cr(0,6));
// %call11 = call i32 @pthread_join(i64 noundef %5, i8** noundef null), !dbg !102
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,2+0));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cw(0,6+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,2+0));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(cdy[0] >= cr(0,6+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[3]);
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0), metadata !130, metadata !DIExpression()), !dbg !172
// %6 = load atomic i64, i64* getelementptr inbounds ([2 x i64], [2 x i64]* @vars, i64 0, i64 0) seq_cst, align 8, !dbg !104
// LD: Guess
old_cr = cr(0,0);
cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,0)] == 0);
ASSUME(cr(0,0) >= iw(0,0));
ASSUME(cr(0,0) >= 0);
ASSUME(cr(0,0) >= cdy[0]);
ASSUME(cr(0,0) >= cisb[0]);
ASSUME(cr(0,0) >= cdl[0]);
ASSUME(cr(0,0) >= cl[0]);
// Update
creg_r6 = cr(0,0);
crmax(0,0) = max(crmax(0,0),cr(0,0));
caddr[0] = max(caddr[0],0);
if(cr(0,0) < cw(0,0)) {
r6 = buff(0,0);
} else {
if(pw(0,0) != co(0,cr(0,0))) {
ASSUME(cr(0,0) >= old_cr);
}
pw(0,0) = co(0,cr(0,0));
r6 = mem(0,cr(0,0));
}
ASSUME(creturn[0] >= cr(0,0));
// call void @llvm.dbg.value(metadata i64 %6, metadata !132, metadata !DIExpression()), !dbg !172
// %conv = trunc i64 %6 to i32, !dbg !105
// call void @llvm.dbg.value(metadata i32 %conv, metadata !129, metadata !DIExpression()), !dbg !144
// %cmp = icmp eq i32 %conv, 2, !dbg !106
// %conv12 = zext i1 %cmp to i32, !dbg !106
// call void @llvm.dbg.value(metadata i32 %conv12, metadata !133, metadata !DIExpression()), !dbg !144
// call void @llvm.dbg.value(metadata i64* @atom_1_X0_2, metadata !135, metadata !DIExpression()), !dbg !176
// %7 = load atomic i64, i64* @atom_1_X0_2 seq_cst, align 8, !dbg !108
// LD: Guess
old_cr = cr(0,2);
cr(0,2) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,2)] == 0);
ASSUME(cr(0,2) >= iw(0,2));
ASSUME(cr(0,2) >= 0);
ASSUME(cr(0,2) >= cdy[0]);
ASSUME(cr(0,2) >= cisb[0]);
ASSUME(cr(0,2) >= cdl[0]);
ASSUME(cr(0,2) >= cl[0]);
// Update
creg_r7 = cr(0,2);
crmax(0,2) = max(crmax(0,2),cr(0,2));
caddr[0] = max(caddr[0],0);
if(cr(0,2) < cw(0,2)) {
r7 = buff(0,2);
} else {
if(pw(0,2) != co(2,cr(0,2))) {
ASSUME(cr(0,2) >= old_cr);
}
pw(0,2) = co(2,cr(0,2));
r7 = mem(2,cr(0,2));
}
ASSUME(creturn[0] >= cr(0,2));
// call void @llvm.dbg.value(metadata i64 %7, metadata !137, metadata !DIExpression()), !dbg !176
// %conv16 = trunc i64 %7 to i32, !dbg !109
// call void @llvm.dbg.value(metadata i32 %conv16, metadata !134, metadata !DIExpression()), !dbg !144
// call void @llvm.dbg.value(metadata i64* @atom_1_X2_0, metadata !139, metadata !DIExpression()), !dbg !179
// %8 = load atomic i64, i64* @atom_1_X2_0 seq_cst, align 8, !dbg !111
// LD: Guess
old_cr = cr(0,3);
cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM
// Check
ASSUME(active[cr(0,3)] == 0);
ASSUME(cr(0,3) >= iw(0,3));
ASSUME(cr(0,3) >= 0);
ASSUME(cr(0,3) >= cdy[0]);
ASSUME(cr(0,3) >= cisb[0]);
ASSUME(cr(0,3) >= cdl[0]);
ASSUME(cr(0,3) >= cl[0]);
// Update
creg_r8 = cr(0,3);
crmax(0,3) = max(crmax(0,3),cr(0,3));
caddr[0] = max(caddr[0],0);
if(cr(0,3) < cw(0,3)) {
r8 = buff(0,3);
} else {
if(pw(0,3) != co(3,cr(0,3))) {
ASSUME(cr(0,3) >= old_cr);
}
pw(0,3) = co(3,cr(0,3));
r8 = mem(3,cr(0,3));
}
ASSUME(creturn[0] >= cr(0,3));
// call void @llvm.dbg.value(metadata i64 %8, metadata !141, metadata !DIExpression()), !dbg !179
// %conv20 = trunc i64 %8 to i32, !dbg !112
// call void @llvm.dbg.value(metadata i32 %conv20, metadata !138, metadata !DIExpression()), !dbg !144
// %and = and i32 %conv16, %conv20, !dbg !113
creg_r9 = max(creg_r7,creg_r8);
ASSUME(active[creg_r9] == 0);
r9 = r7 & r8;
// call void @llvm.dbg.value(metadata i32 %and, metadata !142, metadata !DIExpression()), !dbg !144
// %and21 = and i32 %conv12, %and, !dbg !114
creg_r10 = max(max(creg_r6,0),creg_r9);
ASSUME(active[creg_r10] == 0);
r10 = (r6==2) & r9;
// call void @llvm.dbg.value(metadata i32 %and21, metadata !143, metadata !DIExpression()), !dbg !144
// %cmp22 = icmp eq i32 %and21, 1, !dbg !115
// br i1 %cmp22, label %if.then, label %if.end, !dbg !117
old_cctrl = cctrl[0];
cctrl[0] = get_rng(0,NCONTEXT-1);
ASSUME(cctrl[0] >= old_cctrl);
ASSUME(cctrl[0] >= creg_r10);
ASSUME(cctrl[0] >= 0);
if((r10==1)) {
goto T0BLOCK1;
} else {
goto T0BLOCK2;
}
T0BLOCK1:
// call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([124 x i8], [124 x i8]* @.str.1, i64 0, i64 0), i32 noundef 66, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !118
// unreachable, !dbg !118
r11 = 1;
T0BLOCK2:
// %9 = bitcast i64* %thr2 to i8*, !dbg !121
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %9) #7, !dbg !121
// %10 = bitcast i64* %thr1 to i8*, !dbg !121
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %10) #7, !dbg !121
// %11 = bitcast i64* %thr0 to i8*, !dbg !121
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %11) #7, !dbg !121
// ret i32 0, !dbg !122
ret_thread_0 = 0;
ASSERT(r11== 0);
}
| [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
07957ea9e4cc3692765f28ad81f28d512213b321 | 0c27205dd38317efae779b13c308b92d57b0d2e4 | /CS&131 Computer Science I (C++)/PR Assignment 26 - Rock Paper Scissors Continuous Play/RockPaperScissors-Advanced/DavidBozin_RPS Advanced.cpp | e779bac183c0c3e72dfa4e287ff861c20285c869 | [] | no_license | DVDBZN/Schoolwork | 9af918ba27988b1eb658139c3a903cbb0f8c7558 | 0014041806a43b4293ac490542d302aaf38956e6 | refs/heads/main | 2023-04-12T13:55:27.457514 | 2021-05-07T00:47:24 | 2021-05-07T00:47:24 | 346,883,562 | 0 | 0 | null | 2021-03-20T08:50:46 | 2021-03-12T00:39:36 | C++ | UTF-8 | C++ | false | false | 4,504 | cpp | #include<iostream>
#include <stdlib.h>
#include<ctime>
#include<string>
using namespace std;
int main()
{
//Declare some variables
int playerNumber;
int computerNumber;
string answer;
//Variables for stats
double ties = 0;
double wins = 0;
double losses = 0;
//Title
cout << "Let's play a game of Rock, Paper, Scissors!\n";
//A do while loop that end when the user inputs "no", "No", "n", or "N".
do
{
//Prompt, rules, and input
cout << "\nEnter a number between 1 and 3.\n";
cout << "1=Rock 2=Paper 3=Scissors\n\n";
cin >> playerNumber;
//Random number generator between 1 and 3
srand(time(NULL));
computerNumber = rand() % 3 + 1;
//if statement for when the player inputs a number other than 1, 2, or 3.
if (playerNumber != 1 && playerNumber != 2 && playerNumber != 3)
{
cout << "Please enter 1, 2, or 3.\n\n";
}
//if statements for user input, random number, and stat counter.
if (playerNumber == 1)
{
cout << "You chose Rock\n";
if (computerNumber == 1)
{
cout << "You both chose Rock.\nIt's a tie!\n\n";
ties++;
}
if (computerNumber == 2)
{
cout << "Computer chose Paper.\nYou lose. :(\n\n";
losses++;
}
if (computerNumber == 3)
{
cout << "Computer chose Scissors.\nYou win!\n\n";
wins++;
}
}
if (playerNumber == 2)
{
cout << "You chose Paper\n";
if (computerNumber == 2)
{
cout << "You both chose Paper.\nIt's a tie!\n\n";
ties++;
}
if (computerNumber == 3)
{
cout << "Computer chose Scissors.\nYou lose. :(\n\n";
losses++;
}
if (computerNumber == 1)
{
cout << "Computer chose Rock.\nYou win!\n\n";
wins++;
}
}
if (playerNumber == 3)
{
cout << "You chose Scissors\n";
if (computerNumber == 3)
{
cout << "You both chose Scissors.\nIt's a tie!\n\n";
ties++;
}
if (computerNumber == 1)
{
cout << "Computer chose Rock.\nYou lose. :(\n\n";
losses++;
}
if (computerNumber == 2)
{
cout << "Computer chose Paper.\nYou win!\n\n";
wins++;
}
}
//Stats and prompt for loop
cout << "Your stats: " << wins << " wins; " << ties << " ties; and " << losses << " losses.\n\n";
cout << "Would you like to try agian?(Y/N) ";
cin >> answer;
cout << "--------------------------------------------------------------------------------";
}
//Strings that would end the loop
while (answer != "no" && answer != "n" && answer != "No" && answer != "N");
//Declaring more variables
double totalGames = wins + ties + losses;
double winPercent = wins / totalGames * 100;
double tiePercent = ties / totalGames * 100;
double lossPercent = losses / totalGames * 100;
//Final stats
cout << "\nFinal stats:\n";
cout << "Games played: " << totalGames << endl;
cout << "Wins: " << wins << "(" << winPercent << "%)\n";
cout << "Losses: " << losses << "(" << lossPercent << "%)\n";
cout << "Ties: " << ties << "(" << tiePercent << "%)\n";
//if statement for end message
if (winPercent < lossPercent)
cout << "\nI have defeated you, mortal.\nNow you have allowed me to conquer your physical world! *evil laughter*\n";
else
cout << "\nYou win this round, but I will be back! *evil laughter*\n";
//More decorations
cout << "\nThanks for playing!\n";
cout << " \\ / ____________________ \n";
cout << " \\\\ // | | \n";
cout << " \\\\ // | ___ ______ ____ | \n";
cout << " \\\\\\ /// | _ __ _____ __ __ | \n";
cout << " \\\\\\ /// |o _ ______ ____ __ | \n";
cout << " \\\\\\ /// | ________ _______ | \n";
cout << " \\\\\\ /// | ___________ __ _ | \n";
cout << " \\\\\\/// | ____ __ ___ _ __ | _____\n";
cout << " \\\\// |o ___ __ ___ ___ _ | ___/ \\\n";
cout << " |()| | __ _ ______ ____ | __/ \\___\n";
cout << " // \\\\ | _________ ______ | / \\\n";
cout << " // \\\\ | ____ _______ ___ | / |\n";
cout << " _____// \\\\_____ |o _ __ ___ ____ __ | | |\n";
cout << " / ___ / \\ ___ \\ | ______ _____ ___ | \\ \\\n";
cout << "| /_/ / \\ \\_\\ || | \\ | \n";
cout << " \\___/ \\___/ |____________________| \\___________________|\n\n";
}
//David Bozin - 11/09/2015 - Rock, Paper, Scissors - Advanced | [
"davebozin@gmail.com"
] | davebozin@gmail.com |
d711ef4ccbc7624d5329ede3973ed7e72acfe833 | a24ce771653ffe034230a31cc479cfdb98775504 | /EvCreate.h | 0dd8fd52736ec55fc116f3885d68bd0cd45af625 | [
"MIT"
] | permissive | MGZero/Harvest2013 | 950d47d0ce09379cc7127b5bf8a95d6079bbf51b | 2aad76cac9f8d36bac22d081706b8f1e310f3614 | refs/heads/master | 2021-01-10T19:47:40.643723 | 2013-11-08T04:32:35 | 2013-11-08T04:32:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 184 | h | #ifndef EVCREATE_H
#define EVCREATE_H
#include "CEvent.h"
class EvCreate : public CEvent
{
public:
EvCreate(CEntity * sender);
virtual ~EvCreate(){};
void process();
};
#endif | [
"steven.calandra@gmail.com"
] | steven.calandra@gmail.com |
5450f9aaba34d5016c746793a9455a84d399b5bb | d002ed401cba924074e021d22347b84334a02b0f | /export/windows/obj/include/lime/graphics/opengl/ext/OES_vertex_array_object.h | d484a446c57f250b55e9e7f7b4e43439184052cd | [] | no_license | IADenner/LD47 | 63f6beda87424ba7e0e129848ee190c1eb1da54d | 340856f1d77983da0e7f331b467609c45587f5d1 | refs/heads/master | 2022-12-29T13:01:46.789276 | 2020-10-05T22:04:42 | 2020-10-05T22:04:42 | 301,550,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,949 | h | // Generated by Haxe 4.1.2
#ifndef INCLUDED_lime_graphics_opengl_ext_OES_vertex_array_object
#define INCLUDED_lime_graphics_opengl_ext_OES_vertex_array_object
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_STACK_FRAME(_hx_pos_ff26fc69b0514c16_7_new)
HX_DECLARE_CLASS4(lime,graphics,opengl,ext,OES_vertex_array_object)
namespace lime{
namespace graphics{
namespace opengl{
namespace ext{
class HXCPP_CLASS_ATTRIBUTES OES_vertex_array_object_obj : public ::hx::Object
{
public:
typedef ::hx::Object super;
typedef OES_vertex_array_object_obj OBJ_;
OES_vertex_array_object_obj();
public:
enum { _hx_ClassId = 0x44b1832c };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=false,const char *inName="lime.graphics.opengl.ext.OES_vertex_array_object")
{ return ::hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return ::hx::Object::operator new(inSize+extra,false,"lime.graphics.opengl.ext.OES_vertex_array_object"); }
inline static ::hx::ObjectPtr< OES_vertex_array_object_obj > __new() {
::hx::ObjectPtr< OES_vertex_array_object_obj > __this = new OES_vertex_array_object_obj();
__this->__construct();
return __this;
}
inline static ::hx::ObjectPtr< OES_vertex_array_object_obj > __alloc(::hx::Ctx *_hx_ctx) {
OES_vertex_array_object_obj *__this = (OES_vertex_array_object_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(OES_vertex_array_object_obj), false, "lime.graphics.opengl.ext.OES_vertex_array_object"));
*(void **)__this = OES_vertex_array_object_obj::_hx_vtable;
{
HX_STACKFRAME(&_hx_pos_ff26fc69b0514c16_7_new)
HXDLIN( 7) ( ( ::lime::graphics::opengl::ext::OES_vertex_array_object)(__this) )->VERTEX_ARRAY_BINDING_OES = 34229;
}
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(::hx::DynamicArray inArgs);
//~OES_vertex_array_object_obj();
HX_DO_RTTI_ALL;
::hx::Val __Field(const ::String &inString, ::hx::PropertyAccess inCallProp);
::hx::Val __SetField(const ::String &inString,const ::hx::Val &inValue, ::hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("OES_vertex_array_object",de,b2,44,8d); }
int VERTEX_ARRAY_BINDING_OES;
::Dynamic createVertexArrayOES();
::Dynamic createVertexArrayOES_dyn();
void deleteVertexArrayOES( ::Dynamic arrayObject);
::Dynamic deleteVertexArrayOES_dyn();
bool isVertexArrayOES( ::Dynamic arrayObject);
::Dynamic isVertexArrayOES_dyn();
void bindVertexArrayOES( ::Dynamic arrayObject);
::Dynamic bindVertexArrayOES_dyn();
};
} // end namespace lime
} // end namespace graphics
} // end namespace opengl
} // end namespace ext
#endif /* INCLUDED_lime_graphics_opengl_ext_OES_vertex_array_object */
| [
"theiadstudios@gmail.com"
] | theiadstudios@gmail.com |
bf9ce0ceddf490c1057d33bd3d9951b89757e5eb | bcd545bc1966c11e6a8b55f27ac7894c56e563f7 | /Core/Src/si5351.cpp | f356f419533c5e94bfe6af9baa004a682cd5fc03 | [] | no_license | thaaraak/F7-DSP | 31e8a45ff33386cbe1bfd64211c1a94d7d249af4 | 7acc16fa8953ab16a8ca763d52ddaf517183c7bf | refs/heads/master | 2022-11-27T05:57:01.544214 | 2020-08-01T15:06:38 | 2020-08-01T15:06:38 | 281,505,750 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,056 | cpp | /*
* si5351.cpp - Si5351 library for Arduino
*
* Copyright (C) 2015 - 2019 Jason Milldrum <milldrum@gmail.com>
* Dana H. Myers <k6jq@comcast.net>
*
* Some tuning algorithms derived from clk-si5351.c in the Linux kernel.
* Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
* Rabeeh Khoury <rabeeh@solid-run.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include "si5351.h"
/********************/
/* Public functions */
/********************/
Si5351::Si5351(uint8_t i2c_addr):
i2c_bus_addr(i2c_addr)
{
xtal_freq[0] = SI5351_XTAL_FREQ;
// Start by using XO ref osc as default for each PLL
plla_ref_osc = SI5351_PLL_INPUT_XO;
pllb_ref_osc = SI5351_PLL_INPUT_XO;
clkin_div = SI5351_CLKIN_DIV_1;
}
/*
* init(uint8_t xtal_load_c, uint32_t ref_osc_freq, int32_t corr)
*
* Setup communications to the Si5351 and set the crystal
* load capacitance.
*
* xtal_load_c - Crystal load capacitance. Use the SI5351_CRYSTAL_LOAD_*PF
* defines in the header file
* xo_freq - Crystal/reference oscillator frequency in 1 Hz increments.
* Defaults to 25000000 if a 0 is used here.
* corr - Frequency correction constant in parts-per-billion
*
* Returns a boolean that indicates whether a device was found on the desired
* I2C address.
*
*/
bool Si5351::init(I2C_HandleTypeDef* h, uint8_t xtal_load_c, uint32_t xo_freq, int32_t corr)
{
hi2c = h;
uint8_t status = si5351_read( SI5351_DEVICE_STATUS );
status = 0;
if(status == 0)
{
// Wait for SYS_INIT flag to be clear, indicating that device is ready
uint8_t status_reg = 0;
do
{
status_reg = si5351_read(SI5351_DEVICE_STATUS);
} while (status_reg >> 7 == 1);
// Set crystal load capacitance
si5351_write(SI5351_CRYSTAL_LOAD, (xtal_load_c & SI5351_CRYSTAL_LOAD_MASK) | 0b00010010);
// Set up the XO reference frequency
if (xo_freq != 0)
{
set_ref_freq(xo_freq, SI5351_PLL_INPUT_XO);
}
else
{
set_ref_freq(SI5351_XTAL_FREQ, SI5351_PLL_INPUT_XO);
}
// Set the frequency calibration for the XO
set_correction(corr, SI5351_PLL_INPUT_XO);
reset();
return true;
}
else
{
return false;
}
}
/*
* reset(void)
*
* Call to reset the Si5351 to the state initialized by the library.
*
*/
void Si5351::reset(void)
{
// Initialize the CLK outputs according to flowchart in datasheet
// First, turn them off
si5351_write(16, 0x80);
si5351_write(17, 0x80);
si5351_write(18, 0x80);
si5351_write(19, 0x80);
si5351_write(20, 0x80);
si5351_write(21, 0x80);
si5351_write(22, 0x80);
si5351_write(23, 0x80);
// Turn the clocks back on...
si5351_write(16, 0x0c);
si5351_write(17, 0x0c);
si5351_write(18, 0x0c);
si5351_write(19, 0x0c);
si5351_write(20, 0x0c);
si5351_write(21, 0x0c);
si5351_write(22, 0x0c);
si5351_write(23, 0x0c);
// Set PLLA and PLLB to 800 MHz for automatic tuning
set_pll(SI5351_PLL_FIXED, SI5351_PLLA);
set_pll(SI5351_PLL_FIXED, SI5351_PLLB);
// Make PLL to CLK assignments for automatic tuning
pll_assignment[0] = SI5351_PLLA;
pll_assignment[1] = SI5351_PLLA;
pll_assignment[2] = SI5351_PLLA;
pll_assignment[3] = SI5351_PLLA;
pll_assignment[4] = SI5351_PLLA;
pll_assignment[5] = SI5351_PLLA;
pll_assignment[6] = SI5351_PLLB;
pll_assignment[7] = SI5351_PLLB;
set_ms_source(SI5351_CLK0, SI5351_PLLA);
set_ms_source(SI5351_CLK1, SI5351_PLLA);
set_ms_source(SI5351_CLK2, SI5351_PLLA);
set_ms_source(SI5351_CLK3, SI5351_PLLA);
set_ms_source(SI5351_CLK4, SI5351_PLLA);
set_ms_source(SI5351_CLK5, SI5351_PLLA);
set_ms_source(SI5351_CLK6, SI5351_PLLB);
set_ms_source(SI5351_CLK7, SI5351_PLLB);
// Reset the VCXO param
si5351_write(SI5351_VXCO_PARAMETERS_LOW, 0);
si5351_write(SI5351_VXCO_PARAMETERS_MID, 0);
si5351_write(SI5351_VXCO_PARAMETERS_HIGH, 0);
// Then reset the PLLs
pll_reset(SI5351_PLLA);
pll_reset(SI5351_PLLB);
// Set initial frequencies
uint8_t i;
for(i = 0; i < 8; i++)
{
clk_freq[i] = 0;
output_enable((enum si5351_clock)i, 0);
clk_first_set[i] = false;
}
}
/*
* set_freq(uint64_t freq, enum si5351_clock clk)
*
* Sets the clock frequency of the specified CLK output.
* Frequency range of 8 kHz to 150 MHz
*
* freq - Output frequency in Hz
* clk - Clock output
* (use the si5351_clock enum)
*/
uint8_t Si5351::set_freq(uint64_t freq, enum si5351_clock clk)
{
struct Si5351RegSet ms_reg;
uint64_t pll_freq;
uint8_t int_mode = 0;
uint8_t div_by_4 = 0;
uint8_t r_div = 0;
// Check which Multisynth is being set
if((uint8_t)clk <= (uint8_t)SI5351_CLK5)
{
// MS0 through MS5 logic
// ---------------------
// Lower bounds check
if(freq > 0 && freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT;
}
// Upper bounds check
if(freq > SI5351_MULTISYNTH_MAX_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_MULTISYNTH_MAX_FREQ * SI5351_FREQ_MULT;
}
// If requested freq >100 MHz and no other outputs are already >100 MHz,
// we need to recalculate PLLA and then recalculate all other CLK outputs
// on same PLL
if(freq > (SI5351_MULTISYNTH_SHARE_MAX * SI5351_FREQ_MULT))
{
// Check other clocks on same PLL
uint8_t i;
for(i = 0; i < 6; i++)
{
if(clk_freq[i] > (SI5351_MULTISYNTH_SHARE_MAX * SI5351_FREQ_MULT))
{
if(i != (uint8_t)clk && pll_assignment[i] == pll_assignment[clk])
{
return 1; // won't set if any other clks already >100 MHz
}
}
}
// Enable the output on first set_freq only
if(clk_first_set[(uint8_t)clk] == false)
{
output_enable(clk, 1);
clk_first_set[(uint8_t)clk] = true;
}
// Set the freq in memory
clk_freq[(uint8_t)clk] = freq;
// Calculate the proper PLL frequency
pll_freq = multisynth_calc(freq, 0, &ms_reg);
// Set PLL
set_pll(pll_freq, pll_assignment[clk]);
// Recalculate params for other synths on same PLL
for(i = 0; i < 6; i++)
{
if(clk_freq[i] != 0)
{
if(pll_assignment[i] == pll_assignment[clk])
{
struct Si5351RegSet temp_reg;
uint64_t temp_freq;
// Select the proper R div value
temp_freq = clk_freq[i];
r_div = select_r_div(&temp_freq);
multisynth_calc(temp_freq, pll_freq, &temp_reg);
// If freq > 150 MHz, we need to use DIVBY4 and integer mode
if(temp_freq >= SI5351_MULTISYNTH_DIVBY4_FREQ * SI5351_FREQ_MULT)
{
div_by_4 = 1;
int_mode = 1;
}
else
{
div_by_4 = 0;
int_mode = 0;
}
// Set multisynth registers
set_ms((enum si5351_clock)i, temp_reg, int_mode, r_div, div_by_4);
}
}
}
// Reset the PLL
pll_reset(pll_assignment[clk]);
}
else
{
clk_freq[(uint8_t)clk] = freq;
// Enable the output on first set_freq only
if(clk_first_set[(uint8_t)clk] == false)
{
output_enable(clk, 1);
clk_first_set[(uint8_t)clk] = true;
}
// Select the proper R div value
r_div = select_r_div(&freq);
// Calculate the synth parameters
if(pll_assignment[clk] == SI5351_PLLA)
{
multisynth_calc(freq, plla_freq, &ms_reg);
}
else
{
multisynth_calc(freq, pllb_freq, &ms_reg);
}
// Set multisynth registers
set_ms(clk, ms_reg, int_mode, r_div, div_by_4);
// Reset the PLL
//pll_reset(pll_assignment[clk]);
}
return 0;
}
else
{
// MS6 and MS7 logic
// -----------------
// Lower bounds check
if(freq > 0 && freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT;
}
// Upper bounds check
if(freq >= SI5351_MULTISYNTH_DIVBY4_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_MULTISYNTH_DIVBY4_FREQ * SI5351_FREQ_MULT - 1;
}
// If one of CLK6 or CLK7 is already set when trying to set the other,
// we have to ensure that it will also have an integer division ratio
// with the same PLL, otherwise do not set it.
if(clk == SI5351_CLK6)
{
if(clk_freq[7] != 0)
{
if(pllb_freq % freq == 0)
{
if((pllb_freq / freq) % 2 != 0)
{
// Not an even divide ratio, no bueno
return 1;
}
else
{
// Set the freq in memory
clk_freq[(uint8_t)clk] = freq;
// Select the proper R div value
r_div = select_r_div_ms67(&freq);
multisynth67_calc(freq, pllb_freq, &ms_reg);
}
}
else
{
// Not an integer divide ratio, no good
return 1;
}
}
else
{
// No previous assignment, so set PLLB based on CLK6
// Set the freq in memory
clk_freq[(uint8_t)clk] = freq;
// Select the proper R div value
r_div = select_r_div_ms67(&freq);
pll_freq = multisynth67_calc(freq, 0, &ms_reg);
//pllb_freq = pll_freq;
set_pll(pll_freq, SI5351_PLLB);
}
}
else
{
if(clk_freq[6] != 0)
{
if(pllb_freq % freq == 0)
{
if((pllb_freq / freq) % 2 != 0)
{
// Not an even divide ratio, no bueno
return 1;
}
else
{
// Set the freq in memory
clk_freq[(uint8_t)clk] = freq;
// Select the proper R div value
r_div = select_r_div_ms67(&freq);
multisynth67_calc(freq, pllb_freq, &ms_reg);
}
}
else
{
// Not an integer divide ratio, no good
return 1;
}
}
else
{
// No previous assignment, so set PLLB based on CLK7
// Set the freq in memory
clk_freq[(uint8_t)clk] = freq;
// Select the proper R div value
r_div = select_r_div_ms67(&freq);
pll_freq = multisynth67_calc(freq, 0, &ms_reg);
//pllb_freq = pll_freq;
set_pll(pll_freq, pll_assignment[clk]);
}
}
div_by_4 = 0;
int_mode = 0;
// Set multisynth registers (MS must be set before PLL)
set_ms(clk, ms_reg, int_mode, r_div, div_by_4);
return 0;
}
}
/*
* set_freq_manual(uint64_t freq, uint64_t pll_freq, enum si5351_clock clk)
*
* Sets the clock frequency of the specified CLK output using the given PLL
* frequency. You must ensure that the MS is assigned to the correct PLL and
* that the PLL is set to the correct frequency before using this method.
*
* It is important to note that if you use this method, you will have to
* track that all settings are sane yourself.
*
* freq - Output frequency in Hz
* pll_freq - Frequency of the PLL driving the Multisynth in Hz * 100
* clk - Clock output
* (use the si5351_clock enum)
*/
uint8_t Si5351::set_freq_manual(uint64_t freq, uint64_t pll_freq, enum si5351_clock clk)
{
struct Si5351RegSet ms_reg;
uint8_t int_mode = 0;
uint8_t div_by_4 = 0;
// Lower bounds check
if(freq > 0 && freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT;
}
// Upper bounds check
if(freq > SI5351_CLKOUT_MAX_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_CLKOUT_MAX_FREQ * SI5351_FREQ_MULT;
}
uint8_t r_div;
clk_freq[(uint8_t)clk] = freq;
set_pll(pll_freq, pll_assignment[clk]);
// Enable the output
output_enable(clk, 1);
// Select the proper R div value
r_div = select_r_div(&freq);
// Calculate the synth parameters
multisynth_calc(freq, pll_freq, &ms_reg);
// If freq > 150 MHz, we need to use DIVBY4 and integer mode
if(freq >= SI5351_MULTISYNTH_DIVBY4_FREQ * SI5351_FREQ_MULT)
{
div_by_4 = 1;
int_mode = 1;
}
// Set multisynth registers (MS must be set before PLL)
set_ms(clk, ms_reg, int_mode, r_div, div_by_4);
return 0;
}
/*
* set_pll(uint64_t pll_freq, enum si5351_pll target_pll)
*
* Set the specified PLL to a specific oscillation frequency
*
* pll_freq - Desired PLL frequency in Hz * 100
* target_pll - Which PLL to set
* (use the si5351_pll enum)
*/
void Si5351::set_pll(uint64_t pll_freq, enum si5351_pll target_pll)
{
struct Si5351RegSet pll_reg;
if(target_pll == SI5351_PLLA)
{
pll_calc(SI5351_PLLA, pll_freq, &pll_reg, ref_correction[plla_ref_osc], 0);
}
else
{
pll_calc(SI5351_PLLB, pll_freq, &pll_reg, ref_correction[pllb_ref_osc], 0);
}
// Derive the register values to write
// Prepare an array for parameters to be written to
uint8_t *params = new uint8_t[20];
uint8_t i = 0;
uint8_t temp;
// Registers 26-27
temp = ((pll_reg.p3 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(pll_reg.p3 & 0xFF);
params[i++] = temp;
// Register 28
temp = (uint8_t)((pll_reg.p1 >> 16) & 0x03);
params[i++] = temp;
// Registers 29-30
temp = (uint8_t)((pll_reg.p1 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(pll_reg.p1 & 0xFF);
params[i++] = temp;
// Register 31
temp = (uint8_t)((pll_reg.p3 >> 12) & 0xF0);
temp += (uint8_t)((pll_reg.p2 >> 16) & 0x0F);
params[i++] = temp;
// Registers 32-33
temp = (uint8_t)((pll_reg.p2 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(pll_reg.p2 & 0xFF);
params[i++] = temp;
// Write the parameters
if(target_pll == SI5351_PLLA)
{
si5351_write_bulk(SI5351_PLLA_PARAMETERS, i, params);
plla_freq = pll_freq;
}
else if(target_pll == SI5351_PLLB)
{
si5351_write_bulk(SI5351_PLLB_PARAMETERS, i, params);
pllb_freq = pll_freq;
}
delete params;
}
/*
* set_ms(enum si5351_clock clk, struct Si5351RegSet ms_reg, uint8_t int_mode, uint8_t r_div, uint8_t div_by_4)
*
* Set the specified multisynth parameters. Not normally needed, but public for advanced users.
*
* clk - Clock output
* (use the si5351_clock enum)
* int_mode - Set integer mode
* Set to 1 to enable, 0 to disable
* r_div - Desired r_div ratio
* div_by_4 - Set Divide By 4 mode
* Set to 1 to enable, 0 to disable
*/
void Si5351::set_ms(enum si5351_clock clk, struct Si5351RegSet ms_reg, uint8_t int_mode, uint8_t r_div, uint8_t div_by_4)
{
uint8_t *params = new uint8_t[20];
uint8_t i = 0;
uint8_t temp;
uint8_t reg_val;
if((uint8_t)clk <= (uint8_t)SI5351_CLK5)
{
// Registers 42-43 for CLK0
temp = (uint8_t)((ms_reg.p3 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(ms_reg.p3 & 0xFF);
params[i++] = temp;
// Register 44 for CLK0
reg_val = si5351_read((SI5351_CLK0_PARAMETERS + 2) + (clk * 8));
reg_val &= ~(0x03);
temp = reg_val | ((uint8_t)((ms_reg.p1 >> 16) & 0x03));
params[i++] = temp;
// Registers 45-46 for CLK0
temp = (uint8_t)((ms_reg.p1 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(ms_reg.p1 & 0xFF);
params[i++] = temp;
// Register 47 for CLK0
temp = (uint8_t)((ms_reg.p3 >> 12) & 0xF0);
temp += (uint8_t)((ms_reg.p2 >> 16) & 0x0F);
params[i++] = temp;
// Registers 48-49 for CLK0
temp = (uint8_t)((ms_reg.p2 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(ms_reg.p2 & 0xFF);
params[i++] = temp;
}
else
{
// MS6 and MS7 only use one register
temp = ms_reg.p1;
}
// Write the parameters
switch(clk)
{
case SI5351_CLK0:
si5351_write_bulk(SI5351_CLK0_PARAMETERS, i, params);
set_int(clk, int_mode);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK1:
si5351_write_bulk(SI5351_CLK1_PARAMETERS, i, params);
set_int(clk, int_mode);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK2:
si5351_write_bulk(SI5351_CLK2_PARAMETERS, i, params);
set_int(clk, int_mode);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK3:
si5351_write_bulk(SI5351_CLK3_PARAMETERS, i, params);
set_int(clk, int_mode);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK4:
si5351_write_bulk(SI5351_CLK4_PARAMETERS, i, params);
set_int(clk, int_mode);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK5:
si5351_write_bulk(SI5351_CLK5_PARAMETERS, i, params);
set_int(clk, int_mode);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK6:
si5351_write(SI5351_CLK6_PARAMETERS, temp);
ms_div(clk, r_div, div_by_4);
break;
case SI5351_CLK7:
si5351_write(SI5351_CLK7_PARAMETERS, temp);
ms_div(clk, r_div, div_by_4);
break;
}
delete params;
}
/*
* output_enable(enum si5351_clock clk, uint8_t enable)
*
* Enable or disable a chosen output
* clk - Clock output
* (use the si5351_clock enum)
* enable - Set to 1 to enable, 0 to disable
*/
void Si5351::output_enable(enum si5351_clock clk, uint8_t enable)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_OUTPUT_ENABLE_CTRL);
if(enable == 1)
{
reg_val &= ~(1<<(uint8_t)clk);
}
else
{
reg_val |= (1<<(uint8_t)clk);
}
si5351_write(SI5351_OUTPUT_ENABLE_CTRL, reg_val);
}
/*
* drive_strength(enum si5351_clock clk, enum si5351_drive drive)
*
* Sets the drive strength of the specified clock output
*
* clk - Clock output
* (use the si5351_clock enum)
* drive - Desired drive level
* (use the si5351_drive enum)
*/
void Si5351::drive_strength(enum si5351_clock clk, enum si5351_drive drive)
{
uint8_t reg_val;
const uint8_t mask = 0x03;
reg_val = si5351_read(SI5351_CLK0_CTRL + (uint8_t)clk);
reg_val &= ~(mask);
switch(drive)
{
case SI5351_DRIVE_2MA:
reg_val |= 0x00;
break;
case SI5351_DRIVE_4MA:
reg_val |= 0x01;
break;
case SI5351_DRIVE_6MA:
reg_val |= 0x02;
break;
case SI5351_DRIVE_8MA:
reg_val |= 0x03;
break;
default:
break;
}
si5351_write(SI5351_CLK0_CTRL + (uint8_t)clk, reg_val);
}
/*
* update_status(void)
*
* Call this to update the status structs, then access them
* via the dev_status and dev_int_status global members.
*
* See the header file for the struct definitions. These
* correspond to the flag names for registers 0 and 1 in
* the Si5351 datasheet.
*/
void Si5351::update_status(void)
{
update_sys_status(&dev_status);
update_int_status(&dev_int_status);
}
/*
* set_correction(int32_t corr, enum si5351_pll_input ref_osc)
*
* corr - Correction factor in ppb
* ref_osc - Desired reference oscillator
* (use the si5351_pll_input enum)
*
* Use this to set the oscillator correction factor.
* This value is a signed 32-bit integer of the
* parts-per-billion value that the actual oscillation
* frequency deviates from the specified frequency.
*
* The frequency calibration is done as a one-time procedure.
* Any desired test frequency within the normal range of the
* Si5351 should be set, then the actual output frequency
* should be measured as accurately as possible. The
* difference between the measured and specified frequencies
* should be calculated in Hertz, then multiplied by 10 in
* order to get the parts-per-billion value.
*
* Since the Si5351 itself has an intrinsic 0 PPM error, this
* correction factor is good across the entire tuning range of
* the Si5351. Once this calibration is done accurately, it
* should not have to be done again for the same Si5351 and
* crystal.
*/
void Si5351::set_correction(int32_t corr, enum si5351_pll_input ref_osc)
{
ref_correction[(uint8_t)ref_osc] = corr;
// Recalculate and set PLL freqs based on correction value
set_pll(plla_freq, SI5351_PLLA);
set_pll(pllb_freq, SI5351_PLLB);
}
/*
* set_phase(enum si5351_clock clk, uint8_t phase)
*
* clk - Clock output
* (use the si5351_clock enum)
* phase - 7-bit phase word
* (in units of VCO/4 period)
*
* Write the 7-bit phase register. This must be used
* with a user-set PLL frequency so that the user can
* calculate the proper tuning word based on the PLL period.
*/
void Si5351::set_phase(enum si5351_clock clk, uint8_t phase)
{
// Mask off the upper bit since it is reserved
phase = phase & 0b01111111;
si5351_write(SI5351_CLK0_PHASE_OFFSET + (uint8_t)clk, phase);
}
/*
* get_correction(enum si5351_pll_input ref_osc)
*
* ref_osc - Desired reference oscillator
* 0: crystal oscillator (XO)
* 1: external clock input (CLKIN)
*
* Returns the oscillator correction factor stored
* in RAM.
*/
int32_t Si5351::get_correction(enum si5351_pll_input ref_osc)
{
return ref_correction[(uint8_t)ref_osc];
}
/*
* pll_reset(enum si5351_pll target_pll)
*
* target_pll - Which PLL to reset
* (use the si5351_pll enum)
*
* Apply a reset to the indicated PLL.
*/
void Si5351::pll_reset(enum si5351_pll target_pll)
{
if(target_pll == SI5351_PLLA)
{
si5351_write(SI5351_PLL_RESET, SI5351_PLL_RESET_A);
}
else if(target_pll == SI5351_PLLB)
{
si5351_write(SI5351_PLL_RESET, SI5351_PLL_RESET_B);
}
}
/*
* set_ms_source(enum si5351_clock clk, enum si5351_pll pll)
*
* clk - Clock output
* (use the si5351_clock enum)
* pll - Which PLL to use as the source
* (use the si5351_pll enum)
*
* Set the desired PLL source for a multisynth.
*/
void Si5351::set_ms_source(enum si5351_clock clk, enum si5351_pll pll)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_CLK0_CTRL + (uint8_t)clk);
if(pll == SI5351_PLLA)
{
reg_val &= ~(SI5351_CLK_PLL_SELECT);
}
else if(pll == SI5351_PLLB)
{
reg_val |= SI5351_CLK_PLL_SELECT;
}
si5351_write(SI5351_CLK0_CTRL + (uint8_t)clk, reg_val);
pll_assignment[(uint8_t)clk] = pll;
}
/*
* set_int(enum si5351_clock clk, uint8_t int_mode)
*
* clk - Clock output
* (use the si5351_clock enum)
* enable - Set to 1 to enable, 0 to disable
*
* Set the indicated multisynth into integer mode.
*/
void Si5351::set_int(enum si5351_clock clk, uint8_t enable)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_CLK0_CTRL + (uint8_t)clk);
if(enable == 1)
{
reg_val |= (SI5351_CLK_INTEGER_MODE);
}
else
{
reg_val &= ~(SI5351_CLK_INTEGER_MODE);
}
si5351_write(SI5351_CLK0_CTRL + (uint8_t)clk, reg_val);
// Integer mode indication
/*
switch(clk)
{
case SI5351_CLK0:
clk0_int_mode = enable;
break;
case SI5351_CLK1:
clk1_int_mode = enable;
break;
case SI5351_CLK2:
clk2_int_mode = enable;
break;
default:
break;
}
*/
}
/*
* set_clock_pwr(enum si5351_clock clk, uint8_t pwr)
*
* clk - Clock output
* (use the si5351_clock enum)
* pwr - Set to 1 to enable, 0 to disable
*
* Enable or disable power to a clock output (a power
* saving feature).
*/
void Si5351::set_clock_pwr(enum si5351_clock clk, uint8_t pwr)
{
uint8_t reg_val; //, reg;
reg_val = si5351_read(SI5351_CLK0_CTRL + (uint8_t)clk);
if(pwr == 1)
{
reg_val &= 0b01111111;
}
else
{
reg_val |= 0b10000000;
}
si5351_write(SI5351_CLK0_CTRL + (uint8_t)clk, reg_val);
}
/*
* set_clock_invert(enum si5351_clock clk, uint8_t inv)
*
* clk - Clock output
* (use the si5351_clock enum)
* inv - Set to 1 to enable, 0 to disable
*
* Enable to invert the clock output waveform.
*/
void Si5351::set_clock_invert(enum si5351_clock clk, uint8_t inv)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_CLK0_CTRL + (uint8_t)clk);
if(inv == 1)
{
reg_val |= (SI5351_CLK_INVERT);
}
else
{
reg_val &= ~(SI5351_CLK_INVERT);
}
si5351_write(SI5351_CLK0_CTRL + (uint8_t)clk, reg_val);
}
/*
* set_clock_source(enum si5351_clock clk, enum si5351_clock_source src)
*
* clk - Clock output
* (use the si5351_clock enum)
* src - Which clock source to use for the multisynth
* (use the si5351_clock_source enum)
*
* Set the clock source for a multisynth (based on the options
* presented for Registers 16-23 in the Silicon Labs AN619 document).
* Choices are XTAL, CLKIN, MS0, or the multisynth associated with
* the clock output.
*/
void Si5351::set_clock_source(enum si5351_clock clk, enum si5351_clock_source src)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_CLK0_CTRL + (uint8_t)clk);
// Clear the bits first
reg_val &= ~(SI5351_CLK_INPUT_MASK);
switch(src)
{
case SI5351_CLK_SRC_XTAL:
reg_val |= (SI5351_CLK_INPUT_XTAL);
break;
case SI5351_CLK_SRC_CLKIN:
reg_val |= (SI5351_CLK_INPUT_CLKIN);
break;
case SI5351_CLK_SRC_MS0:
if(clk == SI5351_CLK0)
{
return;
}
reg_val |= (SI5351_CLK_INPUT_MULTISYNTH_0_4);
break;
case SI5351_CLK_SRC_MS:
reg_val |= (SI5351_CLK_INPUT_MULTISYNTH_N);
break;
default:
return;
}
si5351_write(SI5351_CLK0_CTRL + (uint8_t)clk, reg_val);
}
/*
* set_clock_disable(enum si5351_clock clk, enum si5351_clock_disable dis_state)
*
* clk - Clock output
* (use the si5351_clock enum)
* dis_state - Desired state of the output upon disable
* (use the si5351_clock_disable enum)
*
* Set the state of the clock output when it is disabled. Per page 27
* of AN619 (Registers 24 and 25), there are four possible values: low,
* high, high impedance, and never disabled.
*/
void Si5351::set_clock_disable(enum si5351_clock clk, enum si5351_clock_disable dis_state)
{
uint8_t reg_val, reg;
if (clk >= SI5351_CLK0 && clk <= SI5351_CLK3)
{
reg = SI5351_CLK3_0_DISABLE_STATE;
}
else if(clk >= SI5351_CLK4 && clk <= SI5351_CLK7)
{
reg = SI5351_CLK7_4_DISABLE_STATE;
}
else return;
reg_val = si5351_read(reg);
if (clk >= SI5351_CLK0 && clk <= SI5351_CLK3)
{
reg_val &= ~(0b11 << (clk * 2));
reg_val |= dis_state << (clk * 2);
}
else if(clk >= SI5351_CLK4 && clk <= SI5351_CLK7)
{
reg_val &= ~(0b11 << ((clk - 4) * 2));
reg_val |= dis_state << ((clk - 4) * 2);
}
si5351_write(reg, reg_val);
}
/*
* set_clock_fanout(enum si5351_clock_fanout fanout, uint8_t enable)
*
* fanout - Desired clock fanout
* (use the si5351_clock_fanout enum)
* enable - Set to 1 to enable, 0 to disable
*
* Use this function to enable or disable the clock fanout options
* for individual clock outputs. If you intend to output the XO or
* CLKIN on the clock outputs, enable this first.
*
* By default, only the Multisynth fanout is enabled at startup.
*/
void Si5351::set_clock_fanout(enum si5351_clock_fanout fanout, uint8_t enable)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_FANOUT_ENABLE);
switch(fanout)
{
case SI5351_FANOUT_CLKIN:
if(enable)
{
reg_val |= SI5351_CLKIN_ENABLE;
}
else
{
reg_val &= ~(SI5351_CLKIN_ENABLE);
}
break;
case SI5351_FANOUT_XO:
if(enable)
{
reg_val |= SI5351_XTAL_ENABLE;
}
else
{
reg_val &= ~(SI5351_XTAL_ENABLE);
}
break;
case SI5351_FANOUT_MS:
if(enable)
{
reg_val |= SI5351_MULTISYNTH_ENABLE;
}
else
{
reg_val &= ~(SI5351_MULTISYNTH_ENABLE);
}
break;
}
si5351_write(SI5351_FANOUT_ENABLE, reg_val);
}
/*
* set_pll_input(enum si5351_pll pll, enum si5351_pll_input input)
*
* pll - Which PLL to use as the source
* (use the si5351_pll enum)
* input - Which reference oscillator to use as PLL input
* (use the si5351_pll_input enum)
*
* Set the desired reference oscillator source for the given PLL.
*/
void Si5351::set_pll_input(enum si5351_pll pll, enum si5351_pll_input input)
{
uint8_t reg_val;
reg_val = si5351_read(SI5351_PLL_INPUT_SOURCE);
// Clear the bits first
//reg_val &= ~(SI5351_CLKIN_DIV_MASK);
switch(pll)
{
case SI5351_PLLA:
if(input == SI5351_PLL_INPUT_CLKIN)
{
reg_val |= SI5351_PLLA_SOURCE;
reg_val |= clkin_div;
plla_ref_osc = SI5351_PLL_INPUT_CLKIN;
}
else
{
reg_val &= ~(SI5351_PLLA_SOURCE);
plla_ref_osc = SI5351_PLL_INPUT_XO;
}
break;
case SI5351_PLLB:
if(input == SI5351_PLL_INPUT_CLKIN)
{
reg_val |= SI5351_PLLB_SOURCE;
reg_val |= clkin_div;
pllb_ref_osc = SI5351_PLL_INPUT_CLKIN;
}
else
{
reg_val &= ~(SI5351_PLLB_SOURCE);
pllb_ref_osc = SI5351_PLL_INPUT_XO;
}
break;
default:
return;
}
si5351_write(SI5351_PLL_INPUT_SOURCE, reg_val);
set_pll(plla_freq, SI5351_PLLA);
set_pll(pllb_freq, SI5351_PLLB);
}
/*
* set_vcxo(uint64_t pll_freq, uint8_t ppm)
*
* pll_freq - Desired PLL base frequency in Hz * 100
* ppm - VCXO pull limit in ppm
*
* Set the parameters for the VCXO on the Si5351B.
*/
void Si5351::set_vcxo(uint64_t pll_freq, uint8_t ppm)
{
struct Si5351RegSet pll_reg;
uint64_t vcxo_param;
// Bounds check
if(ppm < SI5351_VCXO_PULL_MIN)
{
ppm = SI5351_VCXO_PULL_MIN;
}
if(ppm > SI5351_VCXO_PULL_MAX)
{
ppm = SI5351_VCXO_PULL_MAX;
}
// Set PLLB params
vcxo_param = pll_calc(SI5351_PLLB, pll_freq, &pll_reg, ref_correction[pllb_ref_osc], 1);
// Derive the register values to write
// Prepare an array for parameters to be written to
uint8_t *params = new uint8_t[20];
uint8_t i = 0;
uint8_t temp;
// Registers 26-27
temp = ((pll_reg.p3 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(pll_reg.p3 & 0xFF);
params[i++] = temp;
// Register 28
temp = (uint8_t)((pll_reg.p1 >> 16) & 0x03);
params[i++] = temp;
// Registers 29-30
temp = (uint8_t)((pll_reg.p1 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(pll_reg.p1 & 0xFF);
params[i++] = temp;
// Register 31
temp = (uint8_t)((pll_reg.p3 >> 12) & 0xF0);
temp += (uint8_t)((pll_reg.p2 >> 16) & 0x0F);
params[i++] = temp;
// Registers 32-33
temp = (uint8_t)((pll_reg.p2 >> 8) & 0xFF);
params[i++] = temp;
temp = (uint8_t)(pll_reg.p2 & 0xFF);
params[i++] = temp;
// Write the parameters
si5351_write_bulk(SI5351_PLLB_PARAMETERS, i, params);
delete params;
// Write the VCXO parameters
vcxo_param = ((vcxo_param * ppm * SI5351_VCXO_MARGIN) / 100ULL) / 1000000ULL;
temp = (uint8_t)(vcxo_param & 0xFF);
si5351_write(SI5351_VXCO_PARAMETERS_LOW, temp);
temp = (uint8_t)((vcxo_param >> 8) & 0xFF);
si5351_write(SI5351_VXCO_PARAMETERS_MID, temp);
temp = (uint8_t)((vcxo_param >> 16) & 0x3F);
si5351_write(SI5351_VXCO_PARAMETERS_HIGH, temp);
}
/*
* set_ref_freq(uint32_t ref_freq, enum si5351_pll_input ref_osc)
*
* ref_freq - Reference oscillator frequency in Hz
* ref_osc - Which reference oscillator frequency to set
* (use the si5351_pll_input enum)
*
* Set the reference frequency value for the desired reference oscillator
*/
void Si5351::set_ref_freq(uint32_t ref_freq, enum si5351_pll_input ref_osc)
{
// uint8_t reg_val;
//reg_val = si5351_read(SI5351_PLL_INPUT_SOURCE);
// Clear the bits first
//reg_val &= ~(SI5351_CLKIN_DIV_MASK);
if(ref_freq <= 30000000UL)
{
xtal_freq[(uint8_t)ref_osc] = ref_freq;
//reg_val |= SI5351_CLKIN_DIV_1;
if(ref_osc == SI5351_PLL_INPUT_CLKIN)
{
clkin_div = SI5351_CLKIN_DIV_1;
}
}
else if(ref_freq > 30000000UL && ref_freq <= 60000000UL)
{
xtal_freq[(uint8_t)ref_osc] = ref_freq / 2;
//reg_val |= SI5351_CLKIN_DIV_2;
if(ref_osc == SI5351_PLL_INPUT_CLKIN)
{
clkin_div = SI5351_CLKIN_DIV_2;
}
}
else if(ref_freq > 60000000UL && ref_freq <= 100000000UL)
{
xtal_freq[(uint8_t)ref_osc] = ref_freq / 4;
//reg_val |= SI5351_CLKIN_DIV_4;
if(ref_osc == SI5351_PLL_INPUT_CLKIN)
{
clkin_div = SI5351_CLKIN_DIV_4;
}
}
else
{
//reg_val |= SI5351_CLKIN_DIV_1;
}
//si5351_write(SI5351_PLL_INPUT_SOURCE, reg_val);
}
uint8_t Si5351::si5351_write_bulk(uint8_t reg, uint8_t bytes, uint8_t *data)
{
HAL_StatusTypeDef status = HAL_OK;
while (HAL_I2C_IsDeviceReady(hi2c, (uint16_t)(i2c_bus_addr<<1), 3, 100) != HAL_OK) { }
status = HAL_I2C_Mem_Write(hi2c, // i2c handle
(uint8_t)(i2c_bus_addr<<1), // i2c address, left aligned
(uint8_t)reg, // register address
I2C_MEMADD_SIZE_8BIT, // si5351 uses 8bit register addresses
(uint8_t*)data, // write returned data to this variable
bytes, // how many bytes to expect returned
100); // timeout
return status;
}
uint8_t Si5351::si5351_write(uint8_t reg, uint8_t value)
{
HAL_StatusTypeDef status = HAL_OK;
while (HAL_I2C_IsDeviceReady(hi2c, (uint16_t)(i2c_bus_addr<<1), 3, 100) != HAL_OK) { }
status = HAL_I2C_Mem_Write(hi2c, // i2c handle
(uint8_t)(i2c_bus_addr<<1), // i2c address, left aligned
(uint8_t)reg, // register address
I2C_MEMADD_SIZE_8BIT, // si5351 uses 8bit register addresses
(uint8_t*)(&value), // write returned data to this variable
1, // how many bytes to expect returned
100); // timeout
return status;
}
uint8_t Si5351::si5351_read(uint8_t reg)
{
HAL_StatusTypeDef status = HAL_OK;
uint8_t value;
while (HAL_I2C_IsDeviceReady(hi2c, (uint16_t)(i2c_bus_addr<<1), 3, 100) != HAL_OK) { }
status = HAL_I2C_Mem_Read(hi2c, // i2c handle
(uint8_t)(i2c_bus_addr<<1), // i2c address, left aligned
(uint8_t)reg, // register address
I2C_MEMADD_SIZE_8BIT, // si5351 uses 8bit register addresses
(uint8_t*)(&value), // write returned data to this variable
1, // how many bytes to expect returned
100); // timeout
return value;
}
/*********************/
/* Private functions */
/*********************/
uint64_t Si5351::pll_calc(enum si5351_pll pll, uint64_t freq, struct Si5351RegSet *reg, int32_t correction, uint8_t vcxo)
{
uint64_t ref_freq;
if(pll == SI5351_PLLA)
{
ref_freq = xtal_freq[(uint8_t)plla_ref_osc] * SI5351_FREQ_MULT;
}
else
{
ref_freq = xtal_freq[(uint8_t)pllb_ref_osc] * SI5351_FREQ_MULT;
}
//ref_freq = 15974400ULL * SI5351_FREQ_MULT;
uint32_t a, b, c, p1, p2, p3;
uint64_t lltmp; //, denom;
// Factor calibration value into nominal crystal frequency
// Measured in parts-per-billion
ref_freq = ref_freq + (int32_t)((((((int64_t)correction) << 31) / 1000000000LL) * ref_freq) >> 31);
// PLL bounds checking
if (freq < SI5351_PLL_VCO_MIN * SI5351_FREQ_MULT)
{
freq = SI5351_PLL_VCO_MIN * SI5351_FREQ_MULT;
}
if (freq > SI5351_PLL_VCO_MAX * SI5351_FREQ_MULT)
{
freq = SI5351_PLL_VCO_MAX * SI5351_FREQ_MULT;
}
// Determine integer part of feedback equation
a = freq / ref_freq;
if (a < SI5351_PLL_A_MIN)
{
freq = ref_freq * SI5351_PLL_A_MIN;
}
if (a > SI5351_PLL_A_MAX)
{
freq = ref_freq * SI5351_PLL_A_MAX;
}
// Find best approximation for b/c = fVCO mod fIN
// denom = 1000ULL * 1000ULL;
// lltmp = freq % ref_freq;
// lltmp *= denom;
// do_div(lltmp, ref_freq);
//b = (((uint64_t)(freq % ref_freq)) * RFRAC_DENOM) / ref_freq;
if(vcxo)
{
b = (((uint64_t)(freq % ref_freq)) * 1000000ULL) / ref_freq;
c = 1000000ULL;
}
else
{
b = (((uint64_t)(freq % ref_freq)) * RFRAC_DENOM) / ref_freq;
c = b ? RFRAC_DENOM : 1;
}
// Calculate parameters
p1 = 128 * a + ((128 * b) / c) - 512;
p2 = 128 * b - c * ((128 * b) / c);
p3 = c;
// Recalculate frequency as fIN * (a + b/c)
lltmp = ref_freq;
lltmp *= b;
do_div(lltmp, c);
freq = lltmp;
freq += ref_freq * a;
reg->p1 = p1;
reg->p2 = p2;
reg->p3 = p3;
if(vcxo)
{
return (uint64_t)(128 * a * 1000000ULL + b);
}
else
{
return freq;
}
}
uint64_t Si5351::multisynth_calc(uint64_t freq, uint64_t pll_freq, struct Si5351RegSet *reg)
{
uint64_t lltmp;
uint32_t a, b, c, p1, p2, p3;
uint8_t divby4 = 0;
uint8_t ret_val = 0;
// Multisynth bounds checking
if (freq > SI5351_MULTISYNTH_MAX_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_MULTISYNTH_MAX_FREQ * SI5351_FREQ_MULT;
}
if (freq < SI5351_MULTISYNTH_MIN_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_MULTISYNTH_MIN_FREQ * SI5351_FREQ_MULT;
}
if (freq >= SI5351_MULTISYNTH_DIVBY4_FREQ * SI5351_FREQ_MULT)
{
divby4 = 1;
}
if(pll_freq == 0)
{
// Find largest integer divider for max
// VCO frequency and given target frequency
if(divby4 == 0)
{
lltmp = SI5351_PLL_VCO_MAX * SI5351_FREQ_MULT; // margin needed?
do_div(lltmp, freq);
if(lltmp == 5)
{
lltmp = 4;
}
else if(lltmp == 7)
{
lltmp = 6;
}
a = (uint32_t)lltmp;
}
else
{
a = 4;
}
b = 0;
c = 1;
pll_freq = a * freq;
}
else
{
// Preset PLL, so return the actual freq for these params instead of PLL freq
ret_val = 1;
// Determine integer part of feedback equation
a = pll_freq / freq;
if (a < SI5351_MULTISYNTH_A_MIN)
{
freq = pll_freq / SI5351_MULTISYNTH_A_MIN;
}
if (a > SI5351_MULTISYNTH_A_MAX)
{
freq = pll_freq / SI5351_MULTISYNTH_A_MAX;
}
b = (pll_freq % freq * RFRAC_DENOM) / freq;
c = b ? RFRAC_DENOM : 1;
}
// Calculate parameters
if (divby4 == 1)
{
p3 = 1;
p2 = 0;
p1 = 0;
}
else
{
p1 = 128 * a + ((128 * b) / c) - 512;
p2 = 128 * b - c * ((128 * b) / c);
p3 = c;
}
reg->p1 = p1;
reg->p2 = p2;
reg->p3 = p3;
if(ret_val == 0)
{
return pll_freq;
}
else
{
return freq;
}
}
uint64_t Si5351::multisynth67_calc(uint64_t freq, uint64_t pll_freq, struct Si5351RegSet *reg)
{
//uint8_t p1;
// uint8_t ret_val = 0;
uint32_t a;
uint64_t lltmp;
// Multisynth bounds checking
if(freq > SI5351_MULTISYNTH67_MAX_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_MULTISYNTH67_MAX_FREQ * SI5351_FREQ_MULT;
}
if(freq < SI5351_MULTISYNTH_MIN_FREQ * SI5351_FREQ_MULT)
{
freq = SI5351_MULTISYNTH_MIN_FREQ * SI5351_FREQ_MULT;
}
if(pll_freq == 0)
{
// Find largest integer divider for max
// VCO frequency and given target frequency
lltmp = (SI5351_PLL_VCO_MAX * SI5351_FREQ_MULT) - 100000000UL; // margin needed?
do_div(lltmp, freq);
a = (uint32_t)lltmp;
// Divisor has to be even
if(a % 2 != 0)
{
a++;
}
// Divisor bounds check
if(a < SI5351_MULTISYNTH_A_MIN)
{
a = SI5351_MULTISYNTH_A_MIN;
}
if(a > SI5351_MULTISYNTH67_A_MAX)
{
a = SI5351_MULTISYNTH67_A_MAX;
}
pll_freq = a * freq;
// PLL bounds checking
if(pll_freq > (SI5351_PLL_VCO_MAX * SI5351_FREQ_MULT))
{
a -= 2;
pll_freq = a * freq;
}
else if(pll_freq < (SI5351_PLL_VCO_MIN * SI5351_FREQ_MULT))
{
a += 2;
pll_freq = a * freq;
}
reg->p1 = (uint8_t)a;
reg->p2 = 0;
reg->p3 = 0;
return pll_freq;
}
else
{
// Multisynth frequency must be integer division of PLL
if(pll_freq % freq)
{
// No good
return 0;
}
else
{
a = pll_freq / freq;
// Division ratio bounds check
if(a < SI5351_MULTISYNTH_A_MIN || a > SI5351_MULTISYNTH67_A_MAX)
{
// No bueno
return 0;
}
else
{
reg->p1 = (uint8_t)a;
reg->p2 = 0;
reg->p3 = 0;
return 1;
}
}
}
}
void Si5351::update_sys_status(struct Si5351Status *status)
{
uint8_t reg_val = 0;
reg_val = si5351_read(SI5351_DEVICE_STATUS);
// Parse the register
status->SYS_INIT = (reg_val >> 7) & 0x01;
status->LOL_B = (reg_val >> 6) & 0x01;
status->LOL_A = (reg_val >> 5) & 0x01;
status->LOS = (reg_val >> 4) & 0x01;
status->REVID = reg_val & 0x03;
}
void Si5351::update_int_status(struct Si5351IntStatus *int_status)
{
uint8_t reg_val = 0;
reg_val = si5351_read(SI5351_INTERRUPT_STATUS);
// Parse the register
int_status->SYS_INIT_STKY = (reg_val >> 7) & 0x01;
int_status->LOL_B_STKY = (reg_val >> 6) & 0x01;
int_status->LOL_A_STKY = (reg_val >> 5) & 0x01;
int_status->LOS_STKY = (reg_val >> 4) & 0x01;
}
void Si5351::ms_div(enum si5351_clock clk, uint8_t r_div, uint8_t div_by_4)
{
uint8_t reg_val = 0;
uint8_t reg_addr = 0;
switch(clk)
{
case SI5351_CLK0:
reg_addr = SI5351_CLK0_PARAMETERS + 2;
break;
case SI5351_CLK1:
reg_addr = SI5351_CLK1_PARAMETERS + 2;
break;
case SI5351_CLK2:
reg_addr = SI5351_CLK2_PARAMETERS + 2;
break;
case SI5351_CLK3:
reg_addr = SI5351_CLK3_PARAMETERS + 2;
break;
case SI5351_CLK4:
reg_addr = SI5351_CLK4_PARAMETERS + 2;
break;
case SI5351_CLK5:
reg_addr = SI5351_CLK5_PARAMETERS + 2;
break;
case SI5351_CLK6:
reg_addr = SI5351_CLK6_7_OUTPUT_DIVIDER;
break;
case SI5351_CLK7:
reg_addr = SI5351_CLK6_7_OUTPUT_DIVIDER;
break;
}
reg_val = si5351_read(reg_addr);
if(clk <= (uint8_t)SI5351_CLK5)
{
// Clear the relevant bits
reg_val &= ~(0x7c);
if(div_by_4 == 0)
{
reg_val &= ~(SI5351_OUTPUT_CLK_DIVBY4);
}
else
{
reg_val |= (SI5351_OUTPUT_CLK_DIVBY4);
}
reg_val |= (r_div << SI5351_OUTPUT_CLK_DIV_SHIFT);
}
else if(clk == SI5351_CLK6)
{
// Clear the relevant bits
reg_val &= ~(0x07);
reg_val |= r_div;
}
else if(clk == SI5351_CLK7)
{
// Clear the relevant bits
reg_val &= ~(0x70);
reg_val |= (r_div << SI5351_OUTPUT_CLK_DIV_SHIFT);
}
si5351_write(reg_addr, reg_val);
}
uint8_t Si5351::select_r_div(uint64_t *freq)
{
uint8_t r_div = SI5351_OUTPUT_CLK_DIV_1;
// Choose the correct R divider
if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 2))
{
r_div = SI5351_OUTPUT_CLK_DIV_128;
*freq *= 128ULL;
}
else if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 2) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 4))
{
r_div = SI5351_OUTPUT_CLK_DIV_64;
*freq *= 64ULL;
}
else if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 4) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 8))
{
r_div = SI5351_OUTPUT_CLK_DIV_32;
*freq *= 32ULL;
}
else if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 8) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 16))
{
r_div = SI5351_OUTPUT_CLK_DIV_16;
*freq *= 16ULL;
}
else if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 16) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 32))
{
r_div = SI5351_OUTPUT_CLK_DIV_8;
*freq *= 8ULL;
}
else if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 32) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 64))
{
r_div = SI5351_OUTPUT_CLK_DIV_4;
*freq *= 4ULL;
}
else if((*freq >= SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 64) && (*freq < SI5351_CLKOUT_MIN_FREQ * SI5351_FREQ_MULT * 128))
{
r_div = SI5351_OUTPUT_CLK_DIV_2;
*freq *= 2ULL;
}
return r_div;
}
uint8_t Si5351::select_r_div_ms67(uint64_t *freq)
{
uint8_t r_div = SI5351_OUTPUT_CLK_DIV_1;
// Choose the correct R divider
if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 2))
{
r_div = SI5351_OUTPUT_CLK_DIV_128;
*freq *= 128ULL;
}
else if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 2) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 4))
{
r_div = SI5351_OUTPUT_CLK_DIV_64;
*freq *= 64ULL;
}
else if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 4) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 8))
{
r_div = SI5351_OUTPUT_CLK_DIV_32;
*freq *= 32ULL;
}
else if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 8) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 16))
{
r_div = SI5351_OUTPUT_CLK_DIV_16;
*freq *= 16ULL;
}
else if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 16) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 32))
{
r_div = SI5351_OUTPUT_CLK_DIV_8;
*freq *= 8ULL;
}
else if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 32) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 64))
{
r_div = SI5351_OUTPUT_CLK_DIV_4;
*freq *= 4ULL;
}
else if((*freq >= SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 64) && (*freq < SI5351_CLKOUT67_MIN_FREQ * SI5351_FREQ_MULT * 128))
{
r_div = SI5351_OUTPUT_CLK_DIV_2;
*freq *= 2ULL;
}
return r_div;
}
| [
"ghangrene@gmail.com"
] | ghangrene@gmail.com |
cce166114427e19424fec818b3221b226f552988 | f9f8405f7385fd1943a979e97c1c3ed237a03456 | /leftroom.h | 8922354c3271eb4cbcac6efc0bddff59fa693cfe | [] | no_license | hp1353/1-month-undertale | 36e3eecc966781b875bf46a77e62a3580dae1447 | 25470c3f3e033868f08f7ca8bb81064e7ded9d28 | refs/heads/master | 2021-01-22T02:53:12.515150 | 2017-09-03T10:21:47 | 2017-09-03T10:21:47 | 102,255,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,178 | h | #pragma once
#include "gameNode.h"
class player;
class camera;
class stage3;
class leftroom : public gameNode
{
private:
RECT nextdoor;
RECT backdoor;
image* fire;
image* torielsitup;
int firecount;
int fireindex;
RECT torielsitrc;
int tcount;
int tindex;
int textnum;
RECT textrc;
image* toriel;
image* torielface_1;
image* torielface_0;
image* torielface_talk;
int count;
int index;
int count1;
int index1;
int count2;
int talkcount;
int talkindex;
bool talkend;
bool viewfuck;
int fuckcount;
bool nextevent;
bool tormove1;
bool tormove2;
int count3;
int index3;
int heartcontrol;
bool nosleep;
int textcount;
int count5;
int index5;
bool torielangry;
public:
leftroom();
~leftroom();
HRESULT init();
void release();
void update();
void render();
player* _player;
camera* _camera;
stage3* _stage3;
void PlayerLink(player* player) { _player = player; }
void CameraLink(camera* camera) { _camera = camera; }
void Stage3Link(stage3* stage3) { _stage3 = stage3; }
void fireFrame();
void TextControlUpdate();
void TextControl();
void torielFrame();
};
| [
"noreply@github.com"
] | noreply@github.com |
c7f5c741cbe4ca8248c8dd3095027b221b4b72d4 | 1b39733ba4a81c01e45148dc3ac5a55d5783463d | /graph.cpp | a4cbaa19085a89fd6fd3fd667f50ea2a60d25cc1 | [] | no_license | PeiMengxin/cdn | 79da1c6d7a648f8f2ee696651a01af248540b830 | 790da10474add2494000325aca13e568fe8b1d71 | refs/heads/master | 2021-01-23T03:08:06.218697 | 2017-03-24T09:42:03 | 2017-03-24T09:42:03 | 86,051,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,286 | cpp | #include "graph.h"
using namespace std;
using std::cout;
bool Edge::operator<(Edge oneEdge)
{
return weight < oneEdge.weight;
}
bool Edge::operator>(Edge oneEdge)
{
return weight > oneEdge.weight;
}
Edge::Edge(int f, int t, int w, int totalBandwidth/* = 0*/, int rend_per/* = 0*/)
{
from = f;
to = t;
weight = w;
this->totalBandwidth = totalBandwidth;
this->rend_per = rend_per;
this->useBandwidth = 0;
}
Edge::Edge()
{
from = -1;
to = -1;
weight = 0;
totalBandwidth = 0;
rend_per = 0;
useBandwidth = 0;
}
Graph::Graph(int numVert)
{
numVertex = numVert;
numEdge = 0;
Indegree = new int[numVertex];
Mark = new int[numVertex];
for (int i=0;i<numVertex;i++)
{
Mark[i] = UNVISITED;
Indegree[i] = 0;
}
}
Graph::~Graph()
{
delete[] Mark;
delete[] Indegree;
}
int Graph::VerticesNum()
{
return numVertex;
}
int Graph::EdgesNum()
{
return numEdge;
}
bool Graph::IsEdge(Edge oneEdge)
{
if (oneEdge.weight > 0 && oneEdge.weight < MY_INFINITY&&oneEdge.to >= 0)
return true;
else
return false;
}
int Graph::FromVertex(Edge oneEdge)
{
return oneEdge.from;
}
int Graph::Weight(Edge oneEdge)
{
return oneEdge.weight;
}
int Graph::ToVertex(Edge oneEdge)
{
return oneEdge.to;
}
Graphl::Graphl(int numVert) :Graph(numVert)
{
graList = new LList<listUnit>[numVertex];
}
Graphl::~Graphl()
{
delete[] graList;
}
Edge Graphl::FirstEdge(int oneVertex)
{
Edge myEdge;
myEdge.from = oneVertex;
Link<listUnit> *temp = graList[oneVertex].head;
if (temp->next!=NULL)
{
myEdge.to = temp->next->element.vertex;
myEdge.weight = temp->next->element.weight;
myEdge.totalBandwidth = temp->next->element.totalBandwidth;
myEdge.rend_per = temp->next->element.rend_per;
myEdge.useBandwidth = temp->next->element.useBandwidth;
}
return myEdge;
}
Edge Graphl::NextEdge(Edge preEdge)
{
Edge myEdge;
myEdge.from = preEdge.from;
Link<listUnit> *temp = graList[preEdge.from].head;
while (temp->next!=NULL && temp->next->element.vertex<=preEdge.to)
{
temp=temp->next;
}
if (temp->next!=NULL)
{
myEdge.to = temp->next->element.vertex;
myEdge.weight = temp->next->element.weight;
myEdge.totalBandwidth = temp->next->element.totalBandwidth;
myEdge.rend_per = temp->next->element.rend_per;
myEdge.useBandwidth = temp->next->element.useBandwidth;
}
return myEdge;
}
void Graphl::build(char *topo[], int verticesNum, int edgeNum)
{
int node_start_line = 4;
int from,to,totalBandwidth,rend_per = -1;
int weight = 1;
stringstream ss;
for(int i = 0;i<edgeNum;i++)
{
ss.clear();
ss<<topo[i+node_start_line];
ss>>from>>to>>totalBandwidth>>rend_per;
weight = totalBandwidth*rend_per;
//cout<<from<<" "<<to<<" "<<totalBandwidth<<" "<<rend_per<<endl;
if (from >= 0 && to >= 0 && totalBandwidth > 0 && rend_per >= 0 && from < verticesNum && to < verticesNum)
{
setEdge(from, to, weight, totalBandwidth, rend_per);
setEdge(to, from, weight, totalBandwidth, rend_per);
}
}
}
void Graphl::setEdge(int from, int to, int weight)
{
Link<listUnit> *temp = graList[from].head;
while (temp->next!=NULL && temp->next->element.vertex<=to)
{
temp=temp->next;
}
if (temp->next==NULL)
{
temp->next = new Link < listUnit > ;
temp->next->element.vertex = to;
temp->next->element.weight = weight;
numEdge++;
Indegree[to]++;
return;
}
if (temp->next->element.vertex == to)
{
temp->next->element.weight = weight;
return;
}
if (temp->next->element.vertex > to)
{
Link<listUnit> *other = temp->next;
temp->next = new Link < listUnit > ;
temp->next->element.vertex = to;
temp->next->element.weight = weight;
temp->next->next = other;
numEdge++;
Indegree[to]++;
}
}
void Graphl::setEdge(int from, int to, int weight, int totalBandwidth, int rend_per)
{
Link<listUnit> *temp = graList[from].head;
while (temp->next!=NULL && temp->next->element.vertex<=to)
{
temp=temp->next;
}
if (temp->next==NULL)
{
temp->next = new Link < listUnit > ;
temp->next->element.vertex = to;
temp->next->element.weight = weight;
temp->next->element.totalBandwidth = totalBandwidth;
temp->next->element.rend_per = rend_per;
numEdge++;
Indegree[to]++;
return;
}
if (temp->next->element.vertex == to)
{
temp->next->element.weight = weight;
temp->next->element.totalBandwidth = totalBandwidth;
temp->next->element.rend_per = rend_per;
return;
}
if (temp->next->element.vertex > to)
{
Link<listUnit> *other = temp->next;
temp->next = new Link < listUnit > ;
temp->next->element.vertex = to;
temp->next->element.weight = weight;
temp->next->element.totalBandwidth = totalBandwidth;
temp->next->element.rend_per = rend_per;
temp->next->next = other;
numEdge++;
Indegree[to]++;
}
}
void Graphl::delEdge(int from, int to)
{
Link<listUnit> *temp = graList[from].head;
while (temp->next!=NULL && temp->next->element.vertex<to)
{
temp=temp->next;
}
if (temp->next == NULL)
return;
if (temp->next->element.vertex == to)
{
Link<listUnit> *other = temp->next->next;
delete temp->next;
temp->next = other;
numEdge--;
Indegree[to]--;
}
}
Record::~Record()
{
}
Record::Record()
{
pre = -1;
cost = MY_INFINITY;
}
Record::Record(int p, int c)
{
pre = p;
cost = c;
}
ConsumerNode::ConsumerNode()
{
id = -1;
from = -1;
demand = -1;
}
ConsumerNode::ConsumerNode(int _id, int f, int d)
{
id = _id;
from = f;
demand = d;
}
std::ostream& operator<<(std::ostream& os, const ConsumerNode& n)
{
os<<"id="<<n.id<<" from:"<<n.from<<" demand:"<<n.demand;
return os;
}
ConsumerNode::~ConsumerNode()
{
}
| [
"pei_mengxin@163.com"
] | pei_mengxin@163.com |
0eafd037ede88c191b0521729f6e7c35fa563ab5 | b70cd0aee41a9bac707b9b720030eeab94dca858 | /Desktop_Qt_5_9_0_MSVC2015_64bit-Debug/debug/qrc_icon.cpp | ded818e830f177cba907a2a4fef8447e1575fea6 | [] | no_license | sunxianliang1/ECT-8 | ce8b67bbacde908818961df8ac10033c50fe5ba0 | 03ac20ca9b6c4135133b8c2dba30dd274cc689a1 | refs/heads/master | 2020-04-08T06:33:41.900686 | 2018-11-26T10:25:13 | 2018-11-26T10:25:13 | 159,101,126 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819,517 | cpp | /****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.9.0
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// F:/??ico/????/cut.ico
0x0,0x0,0x7,0x14,
0x0,
0x0,0x1c,0x6e,0x78,0x9c,0xed,0x98,0xb,0x6c,0x53,0x55,0x18,0xc7,0xbf,0x51,0x58,
0xcb,0x44,0x2e,0xc,0x37,0xaa,0x66,0xb4,0x41,0x33,0x1e,0xb,0x4,0x50,0xc1,0x9,
0x3a,0x25,0x46,0x8,0x30,0x62,0x48,0x8c,0x9a,0x28,0xf,0x17,0x4,0x82,0x1,0x8c,
0x86,0x55,0x9d,0x5b,0x31,0x73,0x9d,0x64,0x76,0x46,0xcc,0x2,0x28,0x12,0x1e,0x63,
0x63,0xc3,0x65,0x5b,0x30,0x21,0x13,0x66,0x9b,0x8e,0x3d,0x70,0x2,0x12,0x25,0x53,
0xcc,0xe8,0x1c,0xa4,0x1d,0x82,0x19,0x1a,0xcd,0x30,0xb5,0xc7,0xff,0xb9,0x3d,0x77,
0x3b,0x6b,0x6f,0xdb,0x31,0x30,0x31,0xd1,0xaf,0xfd,0x9d,0x73,0xbf,0xf7,0xb9,0x5d,
0x77,0x7b,0xee,0x25,0x4a,0x20,0x3,0x59,0xad,0xe3,0x30,0x8f,0x24,0xff,0x8,0xa2,
0xb9,0x44,0xd0,0x9,0xba,0x89,0x2a,0x4d,0x44,0x93,0xc,0x9a,0x6e,0xa5,0xca,0x71,
0x44,0xcd,0x77,0x10,0x4d,0xe5,0x31,0xe0,0x71,0x22,0x35,0x4f,0x95,0x11,0x14,0x45,
0xec,0xea,0x9b,0xec,0xf6,0xd0,0xc4,0x5f,0xdc,0x84,0xc1,0xe5,0x72,0xc1,0xc2,0xd4,
0x37,0x31,0x16,0x9a,0xf8,0x8b,0x9b,0xf8,0x10,0x57,0xf2,0xb7,0xda,0x43,0x7,0x45,
0xf9,0x5b,0x30,0x9a,0x5e,0xf1,0xf9,0x55,0xd5,0x74,0xd5,0xd7,0x8a,0x69,0xac,0xcd,
0x71,0x5a,0xd,0x28,0x2a,0x76,0xe6,0x63,0x32,0x7a,0xa9,0x98,0xb7,0x24,0x9f,0x97,
0x7c,0xdc,0xbf,0x85,0xc6,0x16,0xf3,0x70,0x38,0x4b,0xf8,0xec,0x22,0xd3,0x2f,0x6a,
0x1e,0x11,0x2f,0x4,0xa7,0x89,0xd7,0xc1,0xc0,0x43,0x60,0xf4,0x3a,0x9d,0xdc,0xee,
0xb4,0x3b,0x79,0x3f,0x72,0x38,0x4b,0x9c,0x68,0xe0,0xcc,0xf5,0xfb,0xd4,0x3e,0x26,
0x9f,0xb3,0x4,0x7,0x25,0xce,0x92,0x62,0x6d,0x89,0x26,0x3f,0x7f,0xdb,0x7,0xd6,
0x9c,0x67,0x2f,0x92,0x34,0x4,0xac,0x5f,0x37,0xe8,0x9c,0xb4,0xda,0x9a,0x7b,0x1d,
0x19,0x1d,0x92,0x5e,0xe4,0xb0,0x3b,0x73,0x7,0xa,0x98,0xd6,0xb7,0xfa,0x4a,0x9c,
0xb6,0x1,0xdd,0x57,0x64,0x77,0xe4,0xfa,0xa4,0x70,0xf4,0xf7,0x39,0xfa,0x13,0x1c,
0xb9,0x28,0x9e,0x9b,0xbf,0xa5,0x3f,0xdc,0xcf,0xd7,0xef,0xd0,0xa,0x98,0x6c,0xb9,
0xea,0xf9,0xfa,0x85,0x6e,0xf4,0xab,0x9f,0x57,0xf1,0x80,0x3f,0xb4,0xc6,0xdc,0x81,
0xb3,0x53,0x27,0xa7,0x16,0x2f,0x1a,0x69,0x2b,0x36,0x85,0xcd,0x14,0x45,0xd7,0x15,
0x26,0xa4,0xb7,0x20,0x60,0xf1,0x66,0xf5,0x29,0x5e,0x4b,0xaf,0xe2,0xb3,0x5c,0x3f,
0xe3,0x2b,0xed,0x56,0xe9,0x2e,0xed,0x2e,0xbd,0xae,0x74,0x59,0x7a,0x8d,0x2e,0x4b,
0x9f,0xd1,0x95,0xc5,0xba,0xdf,0x67,0xec,0xba,0x85,0xb1,0xbe,0xac,0xd0,0xdc,0x5d,
0xca,0x98,0xdb,0xc8,0x98,0xdd,0xc0,0xd8,0x36,0x60,0xd8,0xc6,0x98,0xd1,0xcd,0x82,
0x46,0x17,0xb,0x2a,0x5e,0x16,0xb4,0xf4,0xb2,0x60,0x16,0xa7,0x8f,0x5,0xb,0x2,
0x2c,0x88,0x17,0x53,0x9,0xc9,0xe0,0xef,0xb9,0x58,0xf2,0x48,0x69,0x81,0x9,0x2,
0xc8,0x29,0x67,0x26,0xd5,0xbe,0xb7,0x82,0x8e,0x96,0x3e,0x4f,0xc7,0x76,0xac,0xa2,
0x86,0xb2,0x97,0xe8,0xf8,0xce,0xb5,0xd4,0xb8,0x7b,0x3d,0x7d,0xb9,0x67,0x23,0x9d,
0xfd,0xe8,0x71,0x3a,0xff,0xf1,0x62,0x3a,0xff,0xc9,0x12,0x3a,0xbf,0x67,0x19,0x9d,
0xfd,0x64,0x5,0x5d,0xd8,0xb7,0x9c,0x3a,0xf,0xae,0xa0,0x8b,0x15,0xcf,0xd1,0xf,
0x87,0x56,0xd2,0xc5,0xc3,0x2f,0x50,0x57,0xc5,0x33,0x74,0xa9,0xea,0x79,0xfa,0xe9,
0xc8,0x2a,0xf2,0x7d,0xf6,0x2,0xf5,0xd4,0xae,0x22,0xf7,0xde,0x4d,0xd4,0x71,0x68,
0xd,0xfd,0x58,0x95,0x43,0x9d,0xb5,0x9b,0xc8,0xb3,0xef,0x55,0x6a,0x3a,0xf0,0x1a,
0x79,0xe,0xbc,0x4e,0x2d,0xe5,0x5b,0xc9,0x73,0xd0,0x46,0x27,0xcb,0xdf,0xa0,0xe6,
0x8a,0x3c,0x6a,0xad,0xb0,0x51,0xf3,0xe1,0x2,0x6a,0xad,0x7c,0x93,0x4e,0x55,0xe5,
0x51,0x7b,0xf5,0xdb,0xd4,0xf9,0x79,0x1e,0x5d,0xae,0x5d,0x4b,0x57,0xea,0xd6,0xd0,
0xb5,0xa3,0x39,0xe4,0x3b,0x96,0x4b,0xbe,0x86,0xb7,0xe8,0xca,0x89,0x7c,0xba,0xda,
0x98,0x4f,0x2d,0x55,0xdb,0xa8,0xe5,0x48,0x11,0x9d,0xaa,0x79,0x97,0xda,0x6b,0xa,
0xe9,0x74,0xad,0x83,0xce,0xd4,0x6f,0xa7,0xd3,0x47,0x9d,0x74,0xb6,0xce,0x41,0xe7,
0x8e,0x96,0xd0,0xc5,0x2f,0x8a,0xe9,0xbb,0x13,0xbb,0xe9,0xdb,0xc6,0x4f,0xa9,0xfb,
0x8b,0x42,0xba,0xd4,0xf8,0x1e,0x5d,0x75,0xbd,0x43,0x3f,0xbb,0xdf,0xa5,0xab,0xee,
0x42,0xba,0xec,0x2a,0xa1,0x5f,0x4e,0x6e,0xa7,0x1e,0xcf,0xfb,0xd4,0xd3,0x54,0x4a,
0xfe,0xa6,0xf,0xa8,0xa7,0xa5,0x8c,0x7e,0x3d,0xf5,0x21,0x5d,0x6f,0xc7,0xfc,0xf5,
0x4e,0x3a,0xef,0xde,0x4f,0x1d,0x9e,0x83,0xf4,0x7d,0x53,0x39,0xfd,0xd8,0x7a,0x84,
0x7e,0xef,0xa8,0xa1,0xee,0x6f,0x1a,0xe8,0xf2,0xb7,0x27,0x86,0xf2,0x75,0xf8,0x5f,
0xfe,0x97,0x7f,0x9d,0xc,0xed,0x77,0x2a,0xbe,0xdc,0x99,0x90,0x90,0x90,0x39,0xc8,
0x92,0x9,0xcb,0x9d,0x9a,0x72,0xf7,0x68,0x2e,0x53,0x25,0xf7,0x54,0xd5,0x72,0xb7,
0xd0,0x92,0x92,0x92,0x9e,0xb8,0x17,0xf4,0xbb,0x1f,0x4d,0x4a,0xba,0x67,0x1,0xac,
0x42,0x1d,0x3b,0x16,0xc3,0x53,0xea,0xa8,0x19,0x9e,0xd2,0xcc,0x5c,0x14,0x85,0x8f,
0xc9,0xca,0x93,0x42,0x7f,0x32,0x64,0x8,0x8d,0x90,0x9,0x13,0xf8,0x38,0x63,0x42,
0x8a,0xd0,0x53,0x26,0xcc,0x18,0x30,0x43,0xa6,0xa5,0x3c,0xa6,0x8e,0x77,0x69,0xfe,
0xbb,0xa6,0x61,0x9c,0x99,0x32,0x51,0xeb,0x97,0x8a,0x80,0xc7,0x52,0x52,0x53,0xfb,
0xd5,0xd4,0x99,0x34,0x33,0x55,0x2b,0x87,0x86,0x13,0x85,0xa8,0x9a,0xa6,0x2c,0x1c,
0x38,0xdf,0x45,0x19,0x19,0x19,0x13,0x81,0xaa,0xe0,0x88,0x1f,0x2f,0xa2,0x70,0xc9,
0xc8,0x18,0x1f,0x8a,0x25,0x5a,0x1e,0xe1,0xe4,0x32,0x7e,0xc4,0x6c,0x9a,0x3d,0x62,
0xbc,0xae,0x4f,0x15,0x3,0x97,0xe8,0xee,0xd9,0x23,0xe7,0xd3,0xfc,0x91,0xb3,0xa3,
0xb9,0xef,0x1f,0x35,0xa,0xe3,0xa8,0x51,0x56,0x7d,0xf7,0xe4,0xc4,0xc4,0xc4,0x25,
0xb4,0x4,0xe3,0x1c,0x3d,0xf7,0xfc,0x44,0x23,0x64,0xb2,0x3a,0x2e,0xd3,0xf1,0x1b,
0xcd,0x70,0x3c,0x48,0x73,0xb8,0xdf,0x18,0xe9,0x9e,0x63,0x36,0x5b,0xcd,0xbc,0xb3,
0x95,0xcf,0x73,0x23,0xfc,0x56,0x33,0xa4,0xff,0x28,0x62,0x89,0xcb,0x90,0x94,0x16,
0x6a,0x3b,0xdf,0x6c,0xb1,0x9a,0xb3,0xc3,0xfc,0xe9,0x69,0x69,0x69,0xf,0x8b,0xe3,
0x7,0xad,0x69,0x96,0x79,0x61,0xfe,0xfb,0xd2,0x2d,0x53,0xfa,0x15,0xb,0x24,0x3c,
0x3f,0x5d,0xb2,0x3c,0x9d,0x9e,0x9e,0x1e,0xe1,0x97,0xcf,0xf9,0x91,0x48,0xff,0xc3,
0x83,0xd4,0x79,0x11,0xfe,0x38,0x7a,0xb8,0x3c,0x1d,0xc7,0x3f,0x64,0xf9,0x77,0xed,
0x53,0xac,0xea,0x9a,0xec,0xe3,0x6e,0xd7,0xd9,0xfd,0x73,0x72,0x72,0xfb,0x43,0x63,
0xc0,0x52,0xf0,0x2c,0x98,0x74,0x8b,0xb5,0x26,0x89,0x3a,0xbc,0xde,0x98,0x78,0xf1,
0xd8,0xaf,0x4d,0x7,0x9d,0x80,0x9,0x2,0x60,0x17,0x48,0xbc,0x99,0xbe,0x3c,0x5e,
0xe4,0x5,0xa4,0x5a,0xbc,0xee,0xf4,0x58,0x79,0xd8,0xf,0x9e,0x3,0x4c,0x87,0x1a,
0x10,0xe3,0xa,0x34,0xa8,0x46,0xa2,0x88,0xd7,0xab,0x73,0x2e,0x5a,0x1e,0xf6,0xa1,
0x73,0x1,0x13,0xdc,0x0,0xfb,0x41,0x9b,0x64,0xdb,0x3b,0x94,0xfe,0x88,0x2b,0x97,
0x72,0x3a,0x40,0x35,0x8,0x48,0xb6,0xc8,0x8b,0x10,0x4,0xfb,0xde,0x1c,0xc0,0x4,
0xab,0x25,0x7b,0x99,0x64,0x9f,0x11,0xab,0x37,0xfc,0xb3,0xa4,0xd8,0xbd,0x92,0x7d,
0xb3,0x64,0xcf,0xd1,0xcb,0xc5,0x9e,0x3b,0x7,0x30,0x81,0x59,0xb2,0x8f,0x1,0xbd,
0xc2,0x5e,0x1e,0xab,0x3f,0xfc,0x95,0x22,0xee,0xf,0x9e,0x27,0xd9,0xa7,0x48,0xb5,
0x75,0xfb,0x63,0x8f,0x9f,0x9,0x98,0x60,0x41,0x98,0xaf,0x59,0xd8,0x7b,0x63,0xf5,
0xe7,0x7e,0x11,0xd7,0x1e,0x66,0x5f,0x2c,0xd5,0xce,0xd4,0xcb,0xc5,0xfd,0x85,0x1,
0x5c,0x1,0xc,0x34,0x70,0x5d,0xd8,0x47,0x4b,0x76,0x4e,0x72,0x94,0xfc,0x64,0x29,
0xe6,0x1a,0xcf,0x13,0xf6,0x44,0xd0,0x2c,0xd9,0xa3,0x7e,0x8f,0x71,0x6f,0xb3,0x1,
0x30,0x81,0x7,0xbc,0xc,0x5c,0x92,0x2d,0xea,0xc6,0xa,0x3e,0x45,0x8e,0x3,0x6d,
0xa2,0x5e,0x9b,0x64,0xdb,0x10,0xeb,0xf3,0xc3,0x7d,0x95,0x1,0x34,0x0,0x16,0x8b,
0x28,0xb9,0x31,0x73,0x44,0xdd,0xb8,0xff,0xc3,0x3f,0xd7,0xaf,0x19,0xd,0x2a,0x1,
0x93,0xf1,0xd7,0xae,0xbe,0xa1,0x1d,0x47,0xc9,0x53,0x7d,0x3d,0x75,0xab,0xff,0xc,
0xcf,0x5,0xe5,0xbc,0x6e,0xbc,0xde,0xb2,0xe0,0x9e,0x70,0x1,0xb0,0x81,0xcd,0x20,
0xc5,0x5b,0xbd,0x72,0x11,0x66,0xc6,0xf9,0xe1,0xd0,0xe0,0xbf,0x3,0x6c,0xf5,0x9a,
0xef,0x72,0xcd,0xea,0x79,0x22,0xb7,0x50,0xe4,0xeb,0x7e,0xdf,0x86,0x23,0xb8,0x97,
0xce,0xbc,0x50,0xb1,0xf2,0x2f,0xcc,0xc,0xd4,0xb,0x5b,0x3d,0xd7,0x85,0x3d,0xe6,
0xf5,0xf5,0x76,0x8,0xee,0xe5,0x6d,0x80,0xe9,0xb0,0xf9,0x9f,0xee,0x7d,0x6c,0xc7,
0xaa,0x64,0xd0,0xc,0x18,0xd8,0x5,0xb2,0xc5,0xcc,0xf5,0x36,0x60,0x8e,0x5f,0x65,
0x78,0xd2,0x50,0xf6,0x52,0xa,0x38,0x3,0x98,0x20,0x5b,0xd8,0xb3,0x25,0xdb,0x5,
0x1e,0x77,0xbb,0x7b,0x1f,0xdf,0xb9,0x56,0x1,0x1d,0x80,0x49,0xec,0x2,0xd9,0x62,
0x96,0xed,0x6d,0xe0,0xa6,0x7e,0xaf,0xe3,0x49,0xe3,0xee,0xf5,0x95,0x80,0xe9,0xd0,
0x15,0xc5,0xbe,0xe3,0x76,0xf5,0xfe,0x72,0xcf,0xc6,0xa5,0x80,0xe9,0x70,0x6,0x8c,
0x1,0xe7,0xa2,0xf8,0x17,0xc4,0xaf,0x1e,0x5b,0xdc,0x7b,0x37,0x19,0xc0,0x77,0x80,
0x85,0xf1,0x1b,0x98,0x22,0x62,0xa6,0x83,0x3f,0x74,0x62,0x9a,0x6f,0xb5,0xbf,0x67,
0xdf,0xab,0xcb,0x1,0xd3,0xe1,0xc5,0xb0,0xb8,0x97,0xa3,0xc4,0xdd,0xd2,0xb5,0xa7,
0xe9,0xc0,0x6b,0xe5,0x80,0x85,0xb1,0x3f,0x4a,0x6c,0x9d,0x4e,0x6c,0xd9,0xad,0xf4,
0x6f,0x29,0xdf,0x7a,0xd,0x30,0x89,0xe,0xa0,0xbb,0x8f,0x85,0x3d,0x19,0x5c,0xa,
0x8b,0xef,0x1c,0x6e,0xef,0xd6,0xa,0xdb,0x24,0xc0,0x24,0x6e,0x80,0x59,0x71,0x72,
0x16,0x82,0x40,0x58,0x9e,0x12,0x2b,0x27,0x9a,0xb4,0x55,0xbe,0x99,0x5,0x98,0xc4,
0x2b,0x43,0xcc,0x2b,0xc,0xcb,0x7b,0x60,0x38,0xfd,0xbf,0xaa,0xca,0x5b,0xa,0x98,
0xa0,0xee,0x26,0xf2,0xc,0xc0,0x23,0xe5,0x2e,0x8c,0x9f,0x15,0x29,0xed,0xd5,0x6f,
0x2f,0x5,0xc,0x74,0x1,0xdd,0x3d,0x57,0x8c,0x5c,0x33,0xb8,0x22,0xf2,0x87,0x75,
0x1d,0x68,0xaf,0xce,0x9f,0xb,0x2,0x60,0xb8,0xf9,0x8b,0x1,0xfa,0xe7,0x4f,0x89,
0x1f,0xad,0x9b,0xaf,0x0,0x5b,0xfc,0xc8,0x98,0x35,0xb6,0x81,0xb8,0xf7,0x7d,0xff,
0x65,0x51,0x9f,0x51,0xb0,0x60,0xff,0x33,0xa,0x97,0xa5,0xd7,0xe8,0x51,0xba,0x1c,
0x2a,0xa5,0xdd,0xe,0xb7,0xd1,0x6d,0xf4,0x2a,0x2e,0xc5,0x6b,0x74,0x29,0xfc,0x59,
0x45,0xc0,0x60,0x2f,0x60,0x5d,0xa,0x92,0x2c,0x8c,0x79,0x95,0x81,0x67,0x14,0x1c,
0x4a,0x60,0xc1,0x4,0x60,0xb0,0x87,0x9e,0x53,0x80,0x80,0xe2,0x2d,0x8,0x58,0x7a,
0xb,0x2,0x59,0x9c,0xbe,0x82,0x0,0x7f,0xb1,0x60,0x81,0xf6,0x9c,0xe2,0x6f,0x6b,
0xb0,0xf0,0xda,
// F:/??ico/????/save_as.ico
0x0,0x0,0x5,0x72,
0x0,
0x0,0x1c,0x6e,0x78,0x9c,0xed,0x98,0x5f,0x6c,0x53,0x55,0x1c,0xc7,0x7f,0xdd,0x96,
0xb6,0xa1,0x59,0x76,0x1f,0x56,0x9b,0x6c,0x4,0x27,0xb3,0xe9,0xa0,0xc9,0x1e,0x7d,
0xc6,0xf8,0xe0,0x83,0xf,0xbe,0x98,0xa8,0x2f,0x6,0xd,0x5a,0x8c,0xc1,0x85,0x10,
0x7a,0x2f,0x3a,0xce,0x6,0x21,0xbd,0x37,0xa1,0xb9,0x37,0x11,0x5,0x8d,0x91,0x40,
0x18,0x32,0x36,0x21,0x5a,0x4c,0x64,0x12,0x75,0x30,0x60,0x97,0x8d,0x4,0x12,0x97,
0x25,0x2a,0x21,0x18,0x1e,0x6e,0xf9,0x23,0x6c,0x83,0xad,0x17,0x5c,0x38,0xfe,0xce,
0xb9,0x6d,0x69,0xf,0x67,0x7f,0xec,0xa4,0x31,0x81,0xef,0xb9,0x9f,0x9e,0x3f,0xdf,
0x73,0x7e,0xbf,0xdb,0xae,0x5d,0xcf,0x29,0x80,0xf,0x6a,0xa1,0xa5,0x45,0xc1,0xba,
0xe,0xb2,0x35,0x0,0x2f,0x0,0x60,0x1f,0xb0,0x1f,0x84,0xde,0x20,0xc0,0x8a,0xda,
0x42,0xbf,0x5,0x7a,0x15,0x80,0xb3,0x21,0x80,0x36,0x36,0x7,0x59,0x3,0xc0,0xd7,
0x71,0xd5,0xc0,0x1c,0xea,0xe6,0x17,0x74,0x77,0x7b,0x15,0x2b,0x6c,0x8,0x1f,0x6,
0x7,0x7,0x71,0x84,0xf2,0xb,0x28,0xf5,0x2a,0x56,0xd8,0x10,0x7b,0x58,0x58,0x81,
0xe,0x2b,0x91,0x70,0x51,0x89,0xc4,0x5a,0xd6,0x4f,0x76,0xb9,0xc9,0x4e,0xec,0xd2,
0x44,0x62,0x18,0xbb,0x7e,0xa2,0xb9,0xce,0x30,0xf3,0x89,0xbd,0x1e,0xfb,0xea,0x70,
0x87,0x95,0x4c,0x51,0xcb,0xb2,0x12,0xda,0x7b,0x0,0xc1,0xf,0xd5,0xdb,0x2e,0x49,
0x52,0x97,0xd2,0x84,0xa9,0x63,0x34,0xd5,0xb9,0x40,0x13,0xb6,0x8b,0x13,0x88,0xdd,
0x89,0xcb,0xd3,0x6a,0x17,0xde,0x8,0xb5,0xd0,0xd7,0x70,0x7d,0xc0,0x31,0xbb,0x5c,
0xd6,0x75,0x29,0xd1,0x1c,0xec,0x93,0xd7,0x13,0x4e,0x92,0x24,0x9,0x49,0xa6,0x53,
0x2a,0xc6,0xb3,0x9d,0xb4,0x9e,0xb5,0x89,0xaa,0x3a,0x44,0xb3,0xd9,0x7c,0x6c,0xbc,
0x41,0x54,0xd2,0xa9,0xab,0x84,0xf9,0xaa,0xa3,0x31,0x57,0xd5,0x1d,0x47,0x35,0xb9,
0x4f,0xb4,0xf5,0xb6,0x83,0x3d,0xd5,0x61,0xf3,0xd3,0xa6,0x66,0x3b,0x29,0x5d,0xc5,
0x61,0x3b,0x85,0xf3,0x1d,0xdd,0xc0,0x7b,0x47,0x2c,0xdd,0xd4,0xd0,0xd7,0x6c,0x13,
0x2d,0x87,0x10,0x15,0x6b,0xe6,0x67,0xf1,0xa9,0x18,0x16,0x7b,0x20,0xec,0xfe,0x35,
0x35,0xe7,0xa4,0xc,0xa2,0x69,0x24,0xa7,0x6a,0xcc,0x27,0x96,0x4b,0xd,0x6a,0xb8,
0x96,0x91,0x65,0xf1,0x75,0x3d,0x67,0x38,0xa6,0x66,0x1a,0x59,0xc3,0x36,0x99,0xef,
0xb8,0xb8,0x16,0x5d,0x37,0xc7,0xe3,0xeb,0xba,0x9b,0x35,0x74,0x3,0x65,0xea,0x26,
0x7f,0x3e,0x16,0x9b,0x60,0x18,0x56,0x2e,0x85,0xf1,0x83,0x59,0x2d,0x67,0xe0,0x62,
0xb6,0x3e,0xcb,0xe2,0x6b,0xe,0xbe,0x18,0x98,0x82,0xd2,0x5c,0x9a,0xc7,0x63,0xeb,
0x99,0xb4,0x7,0x6,0xbb,0x1f,0x5d,0xb3,0xd8,0x8b,0x8d,0x29,0xb8,0xf,0xa6,0xa9,
0x69,0x8e,0x69,0x92,0x94,0xa9,0x67,0xbb,0x17,0xfc,0xe3,0xd2,0xbc,0x1e,0x60,0xa4,
0x59,0x80,0x5a,0x17,0x99,0x40,0xae,0x3c,0x46,0x30,0x7e,0xa0,0x90,0xb7,0xfc,0x7d,
0x1e,0xf4,0x6e,0xaa,0xae,0xe4,0x6,0x7d,0x79,0x50,0x5f,0x6f,0x7d,0x11,0xe,0x6f,
0x7b,0x19,0xbe,0xd9,0xf1,0xa,0x1c,0xd5,0x5f,0x85,0xef,0x76,0xbe,0x6,0xdf,0x5b,
0x6f,0xc2,0xf,0x9f,0xbc,0x5,0x3,0x9f,0xbd,0xd,0xc7,0x77,0xaf,0x83,0x13,0x9f,
0xbf,0xb,0x3f,0x7d,0x91,0x80,0x9f,0xbf,0x7c,0x1f,0x7e,0xf9,0xea,0x3,0x38,0xb9,
0x77,0x3,0x9c,0xda,0xd7,0x1,0x43,0xfb,0x37,0xc2,0xe9,0x3,0x9b,0x60,0xa8,0x47,
0x85,0xb3,0x3d,0x9b,0x61,0xf0,0xc0,0x16,0xb0,0xf,0x69,0x70,0xae,0xf7,0x23,0x18,
0xed,0xeb,0x84,0xf3,0xfd,0x4,0xce,0x1c,0xde,0x6,0x67,0xfb,0x77,0xc0,0xe8,0x91,
0xed,0x60,0x1f,0xd5,0x61,0xe4,0xdb,0x9d,0x70,0x3e,0x63,0xc2,0xc5,0x63,0x69,0x18,
0x1b,0xd8,0x5,0xe3,0x27,0xf6,0xc0,0xe5,0x91,0x3e,0x98,0x70,0x7e,0x45,0xc6,0x60,
0x32,0x3b,0xe,0x53,0xd7,0x7f,0x87,0xbb,0x37,0x2f,0xc1,0xf4,0xad,0x2b,0x30,0x33,
0x71,0x15,0xdc,0x29,0x7,0xdc,0x3b,0xd7,0xe0,0xde,0xf4,0xd,0xb8,0x3f,0x73,0xb,
0x66,0xdd,0xc9,0xc5,0x7c,0xc6,0x9e,0xea,0xa9,0x9e,0x6a,0xe,0x2d,0xf2,0x7b,0x6a,
0x31,0x6a,0xf4,0xb5,0xb6,0xb6,0xfa,0x50,0xad,0x79,0xb1,0xb6,0xaf,0x68,0x63,0x3b,
0x1a,0x8d,0xfa,0xbc,0x8a,0xcb,0x57,0x3a,0xa1,0x6,0x15,0x8b,0xc5,0xf2,0x15,0x57,
0xd,0x57,0xc1,0xae,0xab,0xa9,0x59,0xd5,0xd6,0x96,0xaf,0xb8,0xb0,0xdd,0x94,0xf7,
0x9b,0xea,0x98,0xe2,0xab,0xe3,0x5e,0xc5,0x85,0xed,0xa6,0xa6,0xe5,0xde,0xff,0xbb,
0x3a,0x3f,0x2b,0xf1,0x78,0x3c,0x5f,0x71,0x61,0x7b,0xb9,0xdf,0xf3,0xfd,0x5c,0xed,
0x5c,0xf1,0xf6,0xbc,0x70,0x64,0xb9,0xdf,0xef,0xf9,0xc1,0x40,0x20,0xe0,0x6f,0x2f,
0x17,0xe,0xad,0x8,0x4,0xb8,0x1f,0x9c,0x5b,0x8b,0xf2,0x97,0x3d,0x54,0x68,0x59,
0x59,0x27,0xe4,0xf9,0x21,0x56,0x1e,0x15,0x8e,0x71,0x3f,0x14,0xaa,0x97,0xb8,0x5c,
0xdc,0xaf,0xaf,0xf,0x35,0x84,0x14,0x69,0xf1,0x7c,0xa5,0xa1,0x5e,0x59,0x19,0x7d,
0xbe,0xac,0xac,0xc4,0xb1,0x7a,0x85,0xfb,0x4a,0x83,0xa2,0x34,0xb4,0xa,0x77,0xde,
0xaa,0x30,0x79,0x3e,0x53,0x34,0x16,0x8d,0xc5,0xa2,0x25,0xa5,0xa1,0xdc,0x8f,0x29,
0x8d,0xac,0x34,0x2a,0xf9,0x12,0x2b,0x59,0xff,0xc,0x96,0x98,0x28,0xa5,0x31,0xac,
0x34,0x7a,0xef,0xad,0x30,0x36,0x57,0x35,0x97,0xab,0x2d,0x1c,0x56,0x22,0x61,0xee,
0x47,0xc2,0xe1,0x48,0xa4,0x6d,0x95,0x20,0x1c,0x53,0x22,0xdc,0xf,0xe3,0x84,0x70,
0xfc,0xd9,0x72,0xad,0x46,0xb7,0xb0,0x9e,0x69,0x75,0x5c,0x10,0x1f,0x7d,0xe8,0xc7,
0x5b,0xca,0xf5,0x88,0xdf,0x1e,0x2f,0xbf,0xca,0xfd,0xe6,0xf6,0x96,0xe7,0xca,0x54,
0xe2,0x37,0x47,0x9a,0x23,0x91,0x76,0x51,0x38,0xda,0xec,0xf9,0x10,0x69,0xce,0x17,
0xf1,0x5a,0xf4,0xc7,0x73,0x6e,0xfd,0xbf,0xf6,0x29,0x2d,0xfc,0x9e,0xba,0x95,0xff,
0xe0,0x89,0x3d,0x41,0x3a,0xd8,0xb9,0x26,0x83,0x50,0xdc,0x3f,0x15,0x61,0xfd,0x52,
0x4a,0x3d,0x19,0xe2,0xfc,0x3c,0x5d,0xb,0xe5,0x3e,0x44,0x5e,0xa2,0x5,0x70,0xdf,
0x56,0xa4,0x74,0x5c,0xf4,0x64,0x88,0xf3,0xb,0xcc,0x97,0x1b,0xf7,0xac,0xb4,0x94,
0x3b,0x37,0xfe,0x28,0x32,0x9f,0x27,0x43,0x9c,0x5f,0x60,0xae,0xdc,0xb8,0x57,0xa6,
0x22,0xd3,0xb7,0xff,0x2c,0x32,0x9f,0x27,0x43,0x98,0x9f,0x29,0xb4,0x65,0xb9,0x71,
0x8f,0x9e,0x41,0xa8,0x8,0xee,0x91,0x8b,0xcc,0xe7,0xc9,0x28,0x99,0x9b,0x29,0x41,
0x9a,0x1f,0xcf,0x7,0x54,0x6,0xee,0xcd,0x8b,0xcc,0xe7,0xc9,0x10,0xe6,0x67,0xa,
0x6d,0x59,0x7e,0x3c,0x9b,0x50,0x19,0x7f,0xe7,0x6e,0x57,0x8c,0x10,0x2b,0x53,0x68,
0xcb,0xf2,0xe3,0xb9,0x88,0xca,0x98,0xbd,0x37,0x55,0x31,0x42,0xac,0x4c,0xa1,0x2d,
0xcb,0x3f,0xf0,0xe9,0x5a,0x5a,0x2d,0x64,0xf9,0x7f,0xdc,0xfd,0xe,0xad,0x16,0xb2,
0xfc,0x78,0x16,0xa5,0xd5,0x42,0x96,0x1f,0xcf,0xc1,0xb4,0x5a,0xc8,0xf2,0xe3,0x19,
0x9c,0x56,0xb,0x59,0x7e,0x3c,0xff,0xd3,0x6a,0x21,0xcb,0x7f,0x72,0xef,0x6,0x2a,
0x72,0x79,0xa4,0x6f,0xc1,0xef,0xb8,0xf9,0x60,0xeb,0x65,0x71,0x65,0xf9,0x4f,0xed,
0xeb,0xa0,0x22,0x13,0xce,0x18,0x3d,0xbe,0x7b,0x5d,0xc5,0xb0,0xf5,0xb2,0xb8,0xb2,
0xfc,0x43,0xfb,0x37,0x52,0x91,0xc9,0x6b,0xe3,0x4b,0x46,0x16,0x57,0x96,0xff,0xf4,
0x81,0x4d,0x54,0x64,0xea,0xfa,0x6f,0x74,0xa8,0x47,0xad,0x18,0xb6,0x5e,0x16,0x57,
0x96,0xff,0x4c,0xcf,0x66,0x2a,0x72,0xf7,0xe6,0xa5,0x25,0x23,0x8b,0x2b,0xcb,0x3f,
0x7c,0x30,0x49,0x45,0xa6,0x6f,0x5d,0xa1,0xa3,0x47,0xb6,0x57,0xc,0x5b,0x2f,0x8b,
0x2b,0xcb,0x6f,0x1f,0xd2,0xa8,0xc8,0xcc,0xc4,0xd5,0x25,0x23,0x8b,0x2b,0xcb,0x7f,
0xae,0x77,0xb,0x15,0x61,0x7b,0x88,0x8b,0xc7,0xd2,0x15,0xc3,0xd6,0xcb,0xe2,0xca,
0xf2,0x8f,0x1c,0xfe,0x98,0x8a,0xb8,0x77,0xae,0x2d,0x19,0x59,0x5c,0x59,0xfe,0xd1,
0xbe,0x4e,0x2a,0xc2,0xf6,0x30,0x63,0x3,0xbb,0x2a,0x86,0xad,0x97,0xc5,0x95,0xe6,
0xef,0xdf,0x4a,0x45,0xee,0xcf,0xfc,0xb5,0x64,0x64,0x71,0x65,0xf9,0xcf,0xf7,0x13,
0x2a,0xc2,0xf6,0x50,0xe3,0x27,0xf6,0x54,0xc,0x5b,0x2f,0x8b,0xbb,0xd8,0xfc,0xb3,
0xee,0xe4,0x92,0xf9,0x17,0xf9,0xbb,0x64,0x73,0x1f,0x3,0xb,0x9e,0xbf,0x9e,0x14,
0x95,0xfc,0x4e,0x51,0x5b,0xad,0xdf,0x29,0x18,0x85,0xbc,0xff,0x0,0xeb,0x2c,0x1d,
0x6a,
// F:/??ico/????/document_file.ico
0x0,0x0,0x5,0x11,
0x0,
0x0,0x1c,0x6e,0x78,0x9c,0xed,0x58,0x5b,0x4f,0x1b,0x47,0x14,0x3e,0x4,0xda,0xa0,
0xa6,0x17,0xab,0x48,0x51,0x14,0x91,0xa,0x9a,0x6,0xb5,0xf2,0xb,0x8,0xab,0xc5,
0x95,0x2d,0xdb,0xbf,0xac,0x3c,0xfa,0xcd,0xff,0xa1,0x4f,0x51,0x55,0xa9,0xaa,0xd4,
0x2a,0x4d,0xaa,0x26,0x4,0xa1,0x52,0xd7,0x1,0x73,0xf1,0x5,0x5f,0x30,0xb6,0xf1,
0x15,0x8c,0xb1,0x8d,0x31,0x6b,0x2,0x39,0xfd,0x66,0x77,0x6d,0x6f,0xdc,0x50,0x6,
0xd8,0xaa,0x55,0xcb,0x37,0xf3,0xed,0xec,0xec,0x77,0xe6,0x9c,0xb3,0x17,0xe4,0x33,
0x10,0xd,0xd0,0x20,0x8d,0x8d,0x59,0x30,0xe,0x51,0xe9,0x6,0xd1,0xe7,0x44,0x98,
0x13,0xe6,0xc3,0xf4,0x70,0x98,0xe8,0xa3,0xc1,0xce,0x7c,0x8c,0x1e,0x5a,0x88,0x7e,
0xbd,0x45,0xf4,0xa9,0xb0,0x1,0xdd,0x44,0xea,0x3a,0x15,0x37,0xe8,0xc,0xcc,0xaa,
0x9d,0x66,0x67,0xb5,0x41,0x34,0x71,0x9,0x87,0xb9,0xb9,0x39,0x5c,0x61,0xb5,0x13,
0xb3,0x36,0x88,0x26,0x2e,0x89,0xc3,0xb9,0xf0,0xea,0xe8,0xcc,0x7d,0x58,0xc6,0x3e,
0xaf,0x77,0xb6,0x33,0x17,0xa2,0xa2,0x28,0x1d,0x3,0x9f,0xcf,0x87,0x99,0xe2,0x53,
0x66,0xbb,0x73,0x1d,0xdd,0xb9,0x30,0x87,0xf,0xcd,0x40,0x51,0xa1,0x2e,0x32,0xda,
0x7b,0x3b,0x1e,0x7d,0x9a,0x1,0xe3,0x92,0xc1,0x5e,0x45,0x57,0x67,0x9f,0x6a,0xa0,
0xaf,0x17,0xa7,0x2,0x8a,0x6e,0xcf,0xe2,0x12,0x9a,0x6e,0xaf,0x1b,0x77,0x74,0x4c,
0x59,0xb0,0xe7,0x4f,0xb5,0xc7,0x6d,0x76,0x74,0x9c,0xb1,0xaf,0x17,0xf,0xb2,0xba,
0xc6,0xa0,0xb,0x13,0x38,0x35,0xe8,0xbe,0x9e,0xce,0xaa,0xee,0xeb,0xe9,0x8a,0x70,
0xd8,0xd3,0xb5,0xa9,0x21,0xbf,0xae,0x41,0x77,0xbd,0x6a,0xcd,0x5d,0x5d,0x97,0x3b,
0xba,0xa2,0x4f,0x75,0xdd,0xab,0x3d,0x50,0xaf,0xe2,0x93,0x78,0xbb,0x1d,0xef,0x35,
0xfa,0x0,0xbc,0x9,0xe,0x82,0x3,0x20,0x9,0x7e,0x5,0xba,0xfe,0xe,0x76,0xe2,
0xbe,0xfe,0x9d,0xf,0x6b,0x49,0xd,0x19,0x12,0x1c,0xd0,0x9,0x2c,0x3e,0xfa,0x9a,
0x96,0x9f,0x7e,0x43,0x9,0xff,0x77,0x14,0x9c,0xff,0x9e,0xfc,0xf3,0x8f,0x29,0xe8,
0x7f,0x4a,0xa1,0xc5,0x1f,0x28,0x1a,0x78,0x44,0x91,0xc0,0x13,0x4a,0x6,0x7f,0xa6,
0xc4,0xca,0x33,0x4a,0xad,0xfe,0x42,0xe9,0xf5,0x67,0xf4,0xc2,0x3f,0x4f,0xab,0xbf,
0xcf,0x51,0x78,0x9,0x5c,0x5e,0xa0,0xe8,0xca,0x22,0xc5,0x43,0x1,0x4a,0x46,0x5e,
0x50,0x6a,0x23,0x48,0x99,0xd0,0x73,0xca,0x46,0x16,0x28,0x17,0x5d,0xa0,0xfc,0xc6,
0x22,0x95,0xe3,0x18,0x63,0x7e,0x4a,0xc7,0x82,0x54,0x4a,0x6,0x68,0x27,0xb5,0x4c,
0x99,0xf8,0x2a,0x65,0x93,0x6b,0x60,0x88,0x72,0xa9,0x30,0x15,0xd2,0x11,0xda,0x4d,
0xaf,0x52,0x25,0xb3,0x46,0xa5,0x4c,0x94,0xaa,0xdb,0x21,0xaa,0xe6,0x23,0x54,0xc8,
0xc4,0xa8,0x98,0x4d,0x52,0x29,0xbb,0x41,0x3b,0xb9,0x38,0x95,0xb7,0x93,0x18,0x93,
0x54,0x29,0xa4,0xa8,0x5a,0xda,0xa2,0x5a,0x21,0x46,0xf5,0x52,0x9c,0x1a,0xe5,0x24,
0x55,0xcb,0x19,0xaa,0xed,0xe6,0xa8,0x51,0xc9,0x53,0xb3,0x5a,0xa0,0xe6,0x7e,0x99,
0xe,0x6b,0x65,0x6a,0x35,0xf6,0x48,0x39,0xd8,0x25,0xa5,0x59,0xa5,0x76,0xab,0x4e,
0x27,0x47,0x35,0x3a,0x55,0xea,0x74,0xac,0x34,0xe9,0xe4,0xb8,0x45,0xa7,0x2f,0x15,
0x7a,0x75,0xd2,0x96,0x78,0xb3,0xd7,0xb8,0xc6,0x7f,0x3,0x72,0xbf,0x53,0xe7,0x63,
0xf0,0x3d,0x1d,0xef,0xbe,0x33,0x7c,0x73,0x68,0xe0,0xfd,0x7e,0xfd,0xf6,0x44,0x7,
0xf7,0xc7,0x47,0x47,0x2c,0x96,0xb7,0xfa,0x75,0x6b,0x17,0x13,0xe3,0xe3,0x23,0x23,
0x1f,0xbe,0x7d,0xa6,0x6e,0x85,0xb,0xeb,0xf8,0x88,0xe5,0x4c,0xdd,0x6a,0xfd,0xcc,
0x6e,0x83,0x85,0x51,0xbf,0x33,0x69,0xb5,0x75,0xdb,0xa4,0xd5,0xe5,0xb0,0xd9,0xee,
0x8f,0x1b,0x75,0x83,0x8c,0xe6,0x72,0xc1,0xc2,0x6a,0xed,0xe9,0xa3,0xd3,0x36,0x3,
0x26,0x6d,0x10,0x3f,0x1e,0x31,0xd4,0xc,0x77,0x6c,0xfd,0x80,0x81,0x21,0xc5,0xd1,
0x3f,0xe9,0xb0,0xb8,0xd5,0xd3,0xef,0xf5,0x8b,0x33,0x68,0xb7,0x8d,0xba,0x7d,0x46,
0xc0,0x2e,0x80,0x51,0xd5,0x47,0xd,0xba,0xdd,0xa6,0x35,0x87,0x46,0xd5,0xfa,0x9e,
0x51,0xd7,0xe0,0x98,0x41,0x9f,0xd1,0x7c,0x19,0xf5,0x9,0xbb,0xee,0x19,0xdd,0x31,
0xa3,0x1b,0x4f,0xf4,0xf4,0x4f,0xb0,0xd4,0xee,0x10,0xdd,0xa1,0x9e,0xf5,0xeb,0x13,
0xe,0xa7,0xc3,0xa1,0x8a,0x18,0xed,0x4e,0x71,0x74,0x38,0x5f,0xd3,0x75,0x3,0xa7,
0x13,0x5d,0x83,0xe3,0x41,0x4f,0x7f,0xe0,0x34,0xe0,0x4b,0xb5,0x3b,0x9d,0x46,0xdd,
0xa5,0x49,0x6e,0xa3,0x9d,0x41,0x9f,0x72,0xb9,0x3c,0x4e,0x8f,0x1b,0x70,0xba,0xdd,
0xda,0xe0,0xf4,0x4c,0xf5,0x74,0xab,0xcb,0xe3,0xf1,0xb8,0x3d,0x2,0x10,0xc5,0x19,
0xba,0xe1,0xfd,0x4e,0x7b,0xde,0x0,0xc3,0xfa,0xa9,0x2b,0xea,0x6f,0xf4,0x6f,0x93,
0xd7,0xef,0xda,0x6c,0x5f,0xf4,0xb7,0xe9,0xbb,0x64,0xa,0xfe,0x5d,0x75,0xca,0x98,
0x9a,0xd3,0xac,0xe5,0xcc,0x74,0xaf,0xa1,0x3,0xb5,0x1a,0xa3,0xe,0xfb,0x4b,0xa2,
0x56,0x63,0xd4,0x6d,0x8c,0x1a,0x8e,0x51,0xcb,0x31,0x6a,0x3b,0x46,0xad,0xc7,0x4f,
0x7e,0xfc,0xf6,0xf1,0x55,0xe3,0x67,0x42,0x73,0x8c,0x1a,0xed,0x5c,0x16,0xd3,0x11,
0xde,0xde,0x5c,0x67,0xd4,0x7d,0x9c,0x8,0x7,0x18,0xf5,0x22,0xa3,0x6e,0x64,0xd4,
0x98,0x57,0xfa,0xf1,0xc9,0x86,0x9e,0x73,0x39,0xbb,0x21,0x45,0x91,0x47,0x2e,0x15,
0xe2,0x4c,0x7c,0x85,0x51,0x9f,0x32,0xea,0x53,0x46,0xbd,0xca,0xa8,0x71,0x2f,0x9d,
0x43,0x36,0x8c,0xf8,0xdb,0x31,0x69,0xa2,0x76,0xe5,0xfc,0x56,0x84,0x51,0xef,0x62,
0x1e,0xc7,0x33,0x9,0x21,0x97,0x25,0x46,0xed,0x7c,0xa9,0x1c,0xb2,0x91,0x79,0x46,
0x2d,0x7c,0x21,0x8a,0x3c,0xa,0xe9,0x28,0xb7,0x6a,0x25,0x46,0xdd,0x8c,0x9c,0x62,
0x9c,0x4d,0xac,0x31,0xea,0xf6,0xb,0xe7,0xb0,0x1d,0x5d,0xe0,0xdd,0x7c,0xf2,0x52,
0x44,0xdd,0xcd,0xed,0xe6,0x1e,0xa3,0x3e,0xe7,0x4a,0x61,0x53,0xcd,0x29,0x1d,0x5f,
0xbd,0x50,0xe,0xd8,0x57,0xa8,0x6b,0x2f,0x43,0x3e,0x6e,0xaa,0xc4,0x1e,0x80,0xb1,
0x27,0xe0,0x46,0x25,0x87,0xe7,0x93,0x14,0xdf,0xc5,0x4f,0xb2,0xf1,0xb1,0xa7,0xe1,
0xbd,0xe2,0xd6,0x95,0x88,0x7d,0xc,0xee,0x7d,0x3,0xdf,0x44,0x98,0x13,0x78,0x7,
0xd8,0x83,0x49,0x3f,0x83,0x7c,0xec,0x37,0xbc,0xc3,0xf4,0x95,0x29,0xee,0xbb,0x98,
0x15,0xdf,0x63,0x98,0xb1,0xcf,0x93,0x8e,0x5f,0x88,0xfb,0x79,0x7f,0x27,0x6b,0xa,
0x2b,0x78,0x16,0x25,0xe4,0x81,0xfd,0xa5,0x74,0xfc,0x62,0x22,0xc0,0xd8,0xe7,0x99,
0xc6,0xbd,0x52,0x86,0x33,0x61,0xf9,0xbf,0x45,0xec,0x61,0xb9,0x5e,0xc9,0x9b,0x4a,
0xec,0x8f,0xa5,0xe3,0x97,0x37,0x97,0xf8,0xa0,0x5a,0x34,0x95,0xc2,0xa7,0x6c,0x7c,
0xec,0xdf,0x19,0x7b,0x6b,0x53,0x29,0x7c,0xca,0xc6,0xdf,0xdd,0xa,0xf2,0x61,0x6d,
0xc7,0x54,0xa,0x9f,0xd2,0xf1,0xd3,0xab,0xdc,0x6a,0x54,0x4c,0xa5,0xf0,0x29,0x1b,
0xbf,0x92,0x59,0xe3,0xa3,0x83,0xaa,0xa9,0x14,0x3e,0x65,0xe3,0xef,0x65,0xd7,0x59,
0x69,0xee,0x9b,0x4a,0xe1,0x53,0x36,0x7e,0x75,0x3b,0xc4,0xed,0xc3,0xba,0xa9,0x14,
0x3e,0xa5,0xe3,0xe7,0xc2,0xdc,0x3e,0x6a,0x98,0x4a,0xe1,0x53,0x3a,0x7e,0x3e,0xca,
0xc7,0x4a,0xd3,0x54,0xa,0x9f,0xb2,0xf1,0xf7,0xb,0x51,0x7e,0xd9,0x3e,0x34,0x95,
0xc2,0xa7,0x6c,0xfc,0x5a,0x61,0x83,0x4f,0x8e,0x5b,0xa6,0x52,0xf8,0x94,0x8d,0x5f,
0x2f,0xc6,0xf8,0xf4,0xe5,0x91,0xa9,0x14,0x3e,0xe5,0xe3,0xc7,0xb1,0x46,0x31,0x95,
0xc2,0xa7,0x74,0xfc,0x52,0x9c,0x5f,0x9d,0xb4,0x4d,0xa5,0xf0,0x29,0x1b,0xbf,0x51,
0x4e,0x30,0x9f,0x1e,0x9b,0x4a,0xe1,0x53,0x36,0x7e,0x39,0xbe,0x0,0xfb,0xa4,0xa9,
0x14,0x3e,0x65,0xe3,0xff,0xdf,0xf0,0x4f,0xff,0x9f,0xe2,0xf,0x97,0xea,0x9a,0x99,
// F:/??ico/????/check-6.png
0x0,0x0,0x5,0x3b,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64,
0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x3,0xad,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,
0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0,
0x0,0x0,0x0,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,
0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,
0x30,0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,
0x7a,0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,
0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,
0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,
0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,
0x43,0x6f,0x72,0x65,0x20,0x35,0x2e,0x30,0x2d,0x63,0x30,0x36,0x30,0x20,0x36,0x31,
0x2e,0x31,0x33,0x34,0x37,0x37,0x37,0x2c,0x20,0x32,0x30,0x31,0x30,0x2f,0x30,0x32,
0x2f,0x31,0x32,0x2d,0x31,0x37,0x3a,0x33,0x32,0x3a,0x30,0x30,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,
0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,
0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,
0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,
0x52,0x69,0x67,0x68,0x74,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,
0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,
0x31,0x2e,0x30,0x2f,0x72,0x69,0x67,0x68,0x74,0x73,0x2f,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,
0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,
0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,
0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,
0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,
0x70,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,
0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,
0x20,0x78,0x6d,0x70,0x52,0x69,0x67,0x68,0x74,0x73,0x3a,0x4d,0x61,0x72,0x6b,0x65,
0x64,0x3d,0x22,0x46,0x61,0x6c,0x73,0x65,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,0x3a,
0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x75,0x75,0x69,0x64,0x3a,0x41,0x45,0x33,0x46,0x34,0x36,0x30,
0x38,0x38,0x46,0x38,0x39,0x44,0x45,0x31,0x31,0x41,0x38,0x36,0x30,0x39,0x39,0x46,
0x31,0x32,0x31,0x41,0x32,0x30,0x34,0x32,0x39,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,
0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,
0x2e,0x64,0x69,0x64,0x3a,0x39,0x31,0x45,0x43,0x31,0x32,0x46,0x39,0x42,0x35,0x45,
0x46,0x31,0x31,0x45,0x30,0x42,0x41,0x41,0x33,0x42,0x42,0x45,0x34,0x44,0x37,0x42,
0x31,0x33,0x35,0x31,0x44,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,
0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,
0x3a,0x39,0x31,0x45,0x43,0x31,0x32,0x46,0x38,0x42,0x35,0x45,0x46,0x31,0x31,0x45,
0x30,0x42,0x41,0x41,0x33,0x42,0x42,0x45,0x34,0x44,0x37,0x42,0x31,0x33,0x35,0x31,
0x44,0x22,0x20,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,
0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,
0x68,0x6f,0x70,0x20,0x43,0x53,0x35,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,
0x3e,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,
0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,
0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x33,
0x32,0x45,0x42,0x39,0x34,0x34,0x44,0x45,0x46,0x42,0x35,0x45,0x30,0x31,0x31,0x39,
0x41,0x42,0x34,0x41,0x46,0x44,0x39,0x30,0x33,0x39,0x46,0x33,0x35,0x45,0x42,0x22,
0x20,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,
0x44,0x3d,0x22,0x75,0x75,0x69,0x64,0x3a,0x41,0x45,0x33,0x46,0x34,0x36,0x30,0x38,
0x38,0x46,0x38,0x39,0x44,0x45,0x31,0x31,0x41,0x38,0x36,0x30,0x39,0x39,0x46,0x31,
0x32,0x31,0x41,0x32,0x30,0x34,0x32,0x39,0x22,0x2f,0x3e,0x20,0x3c,0x2f,0x72,0x64,
0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,
0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f,0x78,0x3a,0x78,0x6d,
0x70,0x6d,0x65,0x74,0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,
0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,0x5e,0x7a,0x96,0x67,0x0,0x0,
0x1,0x24,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0x97,0x5d,0xb2,0x82,0x30,0xc,0x85,
0x13,0xc7,0x8d,0xb9,0xe,0xdf,0x61,0x37,0xd7,0x67,0xd8,0x97,0xab,0xa1,0xf4,0xdc,
0x4,0xea,0x40,0x7f,0x64,0x7c,0x68,0xc3,0xb,0x9d,0x29,0x69,0xa9,0xf0,0x9d,0x9e,
0x4,0x15,0x6,0x40,0x67,0xb6,0x1b,0x9d,0xdc,0x2e,0x1,0x97,0x80,0xbb,0x1e,0x5e,
0xef,0x27,0x81,0x3c,0x1,0xb3,0xcc,0x34,0x3a,0x99,0xcf,0x6b,0x5c,0xc6,0x6e,0x1b,
0x63,0xa,0xf3,0x89,0x3c,0x5c,0xe1,0x33,0x9f,0xeb,0xd6,0xfb,0xc9,0x7d,0x7,0x19,
0x77,0xf2,0xb4,0x8d,0x1e,0xe8,0x97,0xf3,0x9e,0xe8,0xef,0x31,0x6f,0xe,0x34,0x84,
0x23,0xc0,0x75,0x24,0xd1,0xeb,0x12,0xed,0x1f,0xfd,0x55,0x40,0x3b,0x38,0x5,0x38,
0x7d,0x76,0x8e,0xb5,0xa5,0x35,0x60,0x6,0xf,0x9d,0x86,0xc4,0x1,0x53,0xb8,0xf6,
0x2e,0x16,0x60,0xb,0xd7,0x3e,0xe6,0xe,0xd8,0xc1,0xb5,0xf7,0x85,0x14,0x98,0xc1,
0x79,0xff,0xfb,0x17,0x52,0x10,0xc1,0x7,0x99,0x43,0x63,0x2b,0xb8,0xae,0x97,0x53,
0x80,0x49,0xd6,0x5d,0x17,0x76,0x2e,0x51,0x85,0xd4,0x87,0xe7,0xe,0x6c,0xf0,0x92,
0xed,0xa8,0xd,0x2f,0x8,0x58,0x6c,0x3f,0xca,0x39,0x6a,0xc2,0x41,0x79,0xd,0x74,
0x3f,0x14,0x1c,0x6a,0xc1,0x4b,0xe,0x8c,0x2d,0xb,0x2e,0x83,0xa7,0x2,0x4,0xde,
0xff,0x0,0xa7,0x5a,0xf0,0x2f,0x45,0xe8,0xd8,0xa,0x9e,0xd7,0xc0,0xb6,0x73,0x36,
0x81,0x7f,0xff,0x22,0x9a,0x83,0x8,0x1b,0x78,0x92,0x82,0x68,0xe7,0x6c,0x1,0x8f,
0xfe,0x90,0x14,0x6c,0xe7,0xd6,0xf0,0xc4,0x81,0xa2,0xed,0xdc,0x12,0xbe,0x13,0x70,
0x98,0x73,0x6e,0x5,0x8f,0x53,0x70,0x9c,0x73,0x6e,0x1,0xd7,0xc6,0xd7,0xcb,0xe9,
0xd9,0x2,0xfe,0x5,0x18,0x0,0x67,0xe3,0x66,0x2d,0x0,0xab,0xd9,0xf5,0x0,0x0,
0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// F:/??ico/????/media_playback_start.ico
0x0,0x0,0x2f,0xff,
0x0,
0x1,0x8,0x3e,0x78,0x9c,0xed,0x7d,0x7,0x7c,0x15,0x55,0xf6,0xff,0xf8,0x73,0x77,
0x75,0x45,0x7a,0x4f,0xa5,0x8,0xf6,0x86,0x5b,0xfe,0xab,0xfb,0x73,0xd7,0xd5,0xd5,
0xff,0xaa,0xbb,0xee,0xaa,0xec,0x5a,0x11,0x94,0x95,0x5e,0x5,0xc,0x88,0x24,0x14,
0x1,0xa9,0xd2,0x5,0x69,0x22,0xab,0xd8,0x10,0x10,0x11,0x84,0x40,0x2a,0x2d,0x10,
0x20,0xbd,0x27,0x84,0x14,0x12,0x20,0x8d,0x24,0x4,0x29,0xe7,0x77,0xcf,0x2d,0xf3,
0xee,0xdc,0xb9,0x33,0x2f,0x9,0xdd,0xcd,0xf5,0x73,0x7c,0x6f,0x1e,0xaf,0x4c,0xe6,
0xfb,0xbd,0xa7,0xdd,0x73,0xcf,0x18,0xc6,0x75,0xe4,0xbf,0x90,0x10,0x83,0xfc,0xbf,
0x83,0x71,0xdb,0x8d,0xd7,0x19,0x6d,0xc,0xc3,0xb8,0x8d,0x8,0x79,0x9,0x5f,0xa4,
0xaf,0xb3,0x71,0x9d,0xd1,0xb2,0x91,0x41,0xa5,0x61,0x34,0x8c,0x86,0xd1,0x30,0x1a,
0x46,0xc3,0x68,0x18,0xd,0xe3,0xbf,0x68,0x5c,0xe7,0x45,0x1a,0xc6,0xb5,0x3f,0x10,
0xc7,0xff,0x21,0x72,0x3d,0x91,0x9f,0x11,0xf9,0x39,0x91,0x5f,0x10,0xb9,0x81,0xc8,
0x8d,0x44,0x7e,0xe9,0x20,0x37,0xf2,0xf7,0xfc,0x82,0x7f,0xe6,0x67,0xfc,0x3b,0xfe,
0xc7,0x68,0xe0,0xc6,0xd5,0x3a,0x64,0xac,0x11,0x33,0xc4,0xef,0x26,0x22,0x8d,0x89,
0x34,0x27,0xd2,0x8a,0x48,0x3b,0x22,0xbe,0x44,0x2,0x88,0x74,0x24,0xd2,0x99,0xc8,
0x2d,0x8a,0x74,0xe6,0xff,0x16,0xc0,0xdf,0xdb,0x8e,0x7f,0xb6,0x39,0xff,0xae,0x9b,
0xf8,0x77,0xff,0xdc,0x68,0xe0,0xc4,0x95,0x1e,0x78,0xdd,0x5,0xde,0x38,0x67,0x6f,
0x26,0xd2,0xc2,0x60,0x98,0x5,0x12,0xe9,0x4a,0xe4,0x6e,0x22,0xbf,0x22,0xf2,0x20,
0x91,0x3f,0x12,0xf9,0x33,0x91,0x27,0x89,0xfc,0x8d,0xc8,0x3f,0x88,0x3c,0x4b,0xe4,
0x39,0x2e,0xcf,0xf2,0xd7,0xfe,0xc6,0xdf,0xf3,0x67,0xfe,0x99,0x7,0xf9,0x77,0xdc,
0xcd,0xbf,0x33,0x90,0xff,0x46,0xb,0xfe,0x9b,0x37,0x1a,0x1e,0x3e,0x34,0x70,0xe1,
0xd2,0xe,0x19,0x73,0x9c,0x8b,0xcd,0x88,0xb4,0x25,0xd2,0x81,0xc8,0x1d,0x44,0x7e,
0x6d,0x30,0xcc,0x10,0xbf,0xe7,0x89,0xbc,0x4a,0xa4,0x37,0x91,0x1,0x44,0x86,0x11,
0x19,0x45,0x64,0xcc,0x3f,0xbb,0x77,0x5f,0xd2,0xfd,0xf9,0xe7,0x97,0x76,0x7f,0xfe,
0xb9,0x65,0xcf,0x73,0xe9,0x4e,0xe5,0xf9,0xa5,0xf8,0x6f,0xf8,0x1e,0xfe,0xde,0x61,
0xfc,0xb3,0xbd,0xf9,0x77,0x3d,0xcf,0xbf,0xfb,0x8f,0xfc,0xb7,0xee,0xe0,0xbf,0xdd,
0x96,0x9f,0xcb,0x4d,0x46,0x3,0x17,0x2e,0xc5,0x40,0x3d,0x8b,0x76,0x18,0xe7,0x5a,
0x53,0x83,0xcd,0x3f,0xd4,0xd5,0xf7,0x11,0x79,0x98,0xc8,0x53,0x44,0x5e,0x20,0xf2,
0x6f,0x22,0x43,0xef,0xbf,0xef,0xbe,0xa9,0x88,0xe9,0xf4,0x69,0xef,0xef,0x58,0xb9,
0x7c,0xf9,0xc1,0xd,0xeb,0xbe,0xc9,0xd9,0xbb,0x7b,0xd7,0xa9,0xb8,0x83,0x7,0xa0,
0x2e,0x82,0x9f,0xc1,0xcf,0xe2,0x77,0xe0,0x77,0xe1,0x77,0xe2,0x77,0xe3,0x6f,0xf0,
0xdf,0x7a,0x81,0xff,0xf6,0xc3,0xfc,0x5c,0x3a,0xf3,0x73,0x6b,0xca,0xcf,0xf5,0x67,
0xfc,0xdc,0x1b,0x46,0xfd,0x6,0x5e,0x3b,0x31,0xd7,0x5b,0x1a,0x4c,0xf7,0xa2,0x1e,
0xc6,0xeb,0xfd,0xc,0x91,0xd7,0x88,0xc,0x42,0x4c,0xde,0x1a,0x3e,0x6c,0x2d,0xe2,
0x14,0x19,0x1e,0x56,0x56,0x57,0x9c,0xeb,0x2a,0xf8,0x1b,0xf8,0x5b,0xf8,0x9b,0x9c,
0xf,0x83,0xf8,0xb9,0x3c,0xc3,0xcf,0xed,0x6e,0x7e,0xae,0x2d,0xd,0x8f,0x4e,0x68,
0xe0,0x41,0xed,0x87,0xc0,0x1d,0xb3,0xd4,0xad,0xd,0x36,0xaf,0xd0,0x6,0x3f,0x41,
0xe4,0x25,0x22,0x3,0x1f,0x7b,0xec,0xd1,0x39,0x8b,0x16,0x2c,0xd8,0xb5,0x75,0xcb,
0xe6,0xa3,0x97,0x1a,0x6f,0x6f,0x82,0xe7,0x80,0xe7,0x82,0xe7,0x84,0xe7,0xc6,0xcf,
0xf1,0x9,0x7e,0xce,0x9d,0xf9,0xdf,0xd0,0xc8,0x68,0xe0,0x81,0xb7,0x81,0x36,0x53,
0xc5,0xfd,0x37,0x44,0x9e,0x26,0xd2,0xcb,0xc7,0xc7,0x67,0x6c,0x48,0xf0,0xb8,0xef,
0x6a,0x8b,0x79,0xfc,0xa1,0x83,0x16,0x49,0x88,0x3b,0x4,0xf1,0x28,0x78,0x1c,0x27,
0xff,0xdb,0x21,0x2e,0x7,0xa5,0x47,0x8f,0xd4,0x95,0xb,0x78,0x8e,0x78,0xae,0x78,
0xce,0xfc,0xdc,0x7f,0x63,0xd8,0x79,0xd0,0xe0,0x1f,0x78,0x86,0xf0,0xeb,0x30,0xfe,
0x46,0x9d,0x29,0x70,0xff,0x2b,0x91,0x37,0xee,0xbf,0xff,0xbe,0xc9,0x1f,0xaf,0x5c,
0x11,0xeb,0x66,0xc3,0x65,0x2c,0x11,0xe7,0x84,0x78,0xfe,0x28,0xb,0xe7,0xc0,0xa7,
0xdf,0x26,0xc1,0x67,0x44,0x3e,0xdd,0x98,0xc,0x9f,0x6d,0xc4,0xe7,0xc9,0xec,0x35,
0x3c,0x26,0x8f,0x56,0x6e,0x68,0xe4,0xa0,0x77,0x4e,0xe0,0xb9,0xe2,0x39,0xe3,0xb9,
0xe3,0xdf,0xc0,0xff,0x16,0xc1,0x83,0x96,0xfc,0x6f,0x6d,0xf0,0x13,0x99,0x3e,0xc4,
0x98,0x1a,0xfd,0x67,0xb4,0x99,0xf,0x18,0xcc,0xa7,0x22,0xb8,0xdf,0x3f,0x65,0xd5,
0xca,0x95,0x7,0x5c,0x31,0x17,0xd8,0xc6,0xc7,0x31,0x21,0xcf,0x13,0xe3,0xe2,0x60,
0xc3,0xb6,0x24,0x98,0xb4,0x2c,0x3,0x6,0xcd,0xce,0x82,0x27,0xdf,0xce,0x85,0x7,
0xfa,0xe6,0x83,0xdf,0x8b,0x47,0xeb,0x24,0xf8,0x19,0xfc,0xec,0xc0,0x59,0x99,0x30,
0x7b,0x75,0x2a,0xac,0xdf,0x9a,0x20,0xf1,0xe0,0x80,0x24,0xee,0x7c,0x20,0x3c,0x38,
0x40,0x78,0x30,0xc5,0x60,0x3c,0x78,0x8a,0xff,0x8d,0x81,0xfc,0x6f,0xbe,0xc1,0xf8,
0xef,0xb4,0x9,0xc8,0x7b,0xf4,0x8f,0x51,0x1f,0xa2,0xcf,0x7c,0x17,0x91,0xc7,0x88,
0xf4,0xe8,0xd6,0xed,0xfe,0xf7,0x8,0xee,0xb1,0x3a,0x3d,0x2c,0xf4,0x38,0xc5,0x99,
0xe0,0x2d,0xe4,0xdb,0xd0,0x44,0x18,0xbd,0x28,0x13,0x9e,0xc,0xca,0x35,0xf1,0xb,
0xe8,0x55,0x4,0x81,0xfd,0x8f,0x41,0x87,0x81,0xc7,0xc0,0xbf,0xdf,0x31,0xf0,0xed,
0x7d,0xc,0x7c,0x7a,0x15,0x83,0xef,0x6b,0x45,0xe0,0xfb,0x2a,0x91,0x57,0x88,0xbc,
0x2c,0x9,0x1e,0xf7,0x28,0x2,0x9f,0xd7,0xc8,0x7b,0x5e,0x2f,0x6,0xff,0x3e,0xe4,
0xb3,0xfd,0x8b,0x21,0xb0,0x5f,0x31,0xf9,0x2e,0xf,0x2f,0x90,0x13,0x13,0x97,0xa5,
0x31,0x3e,0x58,0x74,0xf,0xe2,0xed,0xcc,0x5,0xd4,0x7,0xdd,0xee,0xbf,0xff,0x3d,
0xfc,0x1b,0xf9,0xdf,0x7a,0x17,0xff,0xdb,0x1b,0xf1,0x6b,0xf1,0xdf,0xa2,0xb,0xf0,
0xef,0xc4,0xfc,0x2a,0xc6,0x49,0x1d,0x88,0xfc,0x3f,0x22,0xcf,0xfb,0xf9,0xf9,0x8d,
0x9a,0x35,0x73,0x46,0xa8,0x4e,0xe7,0x32,0xcc,0xe3,0x20,0x29,0x81,0x63,0x9e,0x80,
0x98,0x27,0xc1,0xa0,0xf,0xb2,0xa1,0x5b,0xff,0x2,0x8a,0x5f,0xc0,0x9b,0x44,0x8,
0xd6,0x7e,0x4,0x37,0x9f,0x9e,0xc5,0x4c,0x8,0xde,0xed,0xdf,0x38,0xc6,0xe4,0x75,
0x86,0x3f,0xe2,0xeb,0xd3,0xa3,0xd8,0xc3,0x1,0x21,0xe4,0xd8,0x7,0xf1,0xef,0xc1,
0xdf,0xd3,0x93,0x3d,0x22,0x27,0xc4,0x7b,0xfc,0xdf,0x28,0x86,0xe,0xc8,0x87,0x7f,
0x17,0x99,0x3a,0x2,0xf5,0x3,0xe3,0x2,0xe7,0x80,0x17,0xbf,0x61,0xe6,0xf4,0xe9,
0xa1,0x7e,0xbe,0xbe,0x98,0x5f,0x78,0x9e,0xff,0xed,0x1d,0xf8,0xb5,0xf8,0x85,0xf1,
0xd3,0xe7,0x0,0xea,0x3a,0x8c,0x8d,0xd1,0x17,0xba,0xdd,0x60,0xf3,0xe0,0xf5,0xbe,
0x7d,0xfa,0x7c,0x1c,0x1d,0x19,0x51,0x6a,0xf1,0xd1,0x38,0xee,0x88,0x77,0x52,0x3c,
0xc3,0x3e,0x66,0x7f,0x3c,0x4c,0xfa,0x38,0x13,0xba,0xd,0x2a,0xa4,0x78,0x5,0xc,
0x3c,0x4e,0x31,0xf7,0xed,0x5d,0x4c,0xf1,0x15,0x58,0xfb,0xf4,0x62,0x1c,0xf0,0x7d,
0x8d,0x4b,0xf,0x21,0x45,0x9e,0xe7,0xaf,0xa,0x51,0x78,0xc0,0xf5,0x81,0xdf,0xcb,
0x47,0x99,0xbc,0x84,0x8f,0x1e,0xfd,0x40,0x85,0x7c,0xc6,0x8f,0x3c,0x6,0xf6,0x21,
0xfa,0xa1,0x6f,0xb1,0xc9,0x5,0xd4,0xb,0xbb,0xf7,0x1e,0xb2,0xe9,0x2d,0x5b,0xc,
0x19,0x11,0x5e,0xda,0xe7,0xcd,0x37,0x3f,0xc6,0xbf,0x9d,0x5f,0x83,0xdb,0xf9,0x35,
0xb9,0xd1,0xf8,0x69,0xda,0x3,0xe1,0xe3,0xa1,0xae,0xc3,0xdc,0x7a,0x37,0x22,0x7f,
0x27,0x73,0x7e,0xe4,0xea,0x55,0xab,0xf6,0xab,0xbe,0x9a,0xd0,0xeb,0x49,0x9,0xf1,
0x44,0x12,0x60,0xc7,0x4e,0x32,0xd7,0xe7,0xe5,0x40,0x57,0x32,0xc7,0x71,0x7e,0x7,
0xc,0x3e,0xe,0x3e,0x6f,0x12,0xac,0x7b,0x73,0x91,0x30,0xa7,0xb8,0xcb,0xf2,0x1a,
0x9f,0xc7,0x7c,0xde,0xb,0xf1,0xc6,0x3,0x3f,0xc9,0x36,0xf8,0xbd,0x24,0xe4,0xa8,
0x29,0x42,0x67,0x50,0x2e,0x10,0x9b,0xd2,0xa1,0x6f,0x31,0xb5,0x39,0xb7,0xf6,0x2a,
0xa0,0x3a,0x21,0x34,0x22,0x9e,0xea,0x2,0x53,0x34,0x3c,0x58,0xf5,0xf1,0xca,0xfd,
0x78,0xd,0xf0,0x5a,0xf0,0x6b,0xe2,0xc3,0xaf,0xd1,0x4f,0xc9,0x37,0x14,0xb6,0xbe,
0x89,0xc1,0x74,0x1d,0xe6,0xd4,0x5f,0x7a,0xe2,0x89,0xc7,0x67,0xee,0x8c,0x8e,0x2a,
0xb1,0x63,0x4f,0x30,0x4f,0x44,0x49,0x80,0x98,0xd8,0x44,0xe8,0x35,0x23,0x97,0x62,
0xeb,0x3f,0xe8,0x38,0x9d,0xef,0x3e,0x6f,0x1e,0x87,0xf6,0xff,0x26,0xd2,0xfb,0x38,
0xd7,0xe9,0x1a,0xe9,0x29,0xa4,0xd8,0xc3,0x89,0xd7,0x3c,0x5c,0xb0,0xe0,0xaf,0xf2,
0xe0,0x15,0x27,0x7d,0x60,0xc5,0xdf,0xf4,0x15,0x25,0x2e,0xa0,0x4e,0xe8,0xf0,0x6f,
0xc2,0x83,0x3e,0x4c,0x27,0xf4,0x9a,0x9c,0x2d,0xe9,0x3,0xb4,0xd,0x76,0xe,0x44,
0x45,0x84,0x97,0x3c,0xf1,0xf8,0xe3,0x33,0xc9,0x35,0x79,0x91,0x5f,0x1b,0xf4,0xd,
0x1b,0x1b,0x3f,0xd,0x9f,0x40,0xc4,0xf4,0x68,0xdf,0x70,0x8d,0xed,0x11,0x22,0xaf,
0xbf,0x37,0x69,0xe2,0x6,0xd9,0x7f,0x4b,0xa0,0x36,0x3d,0x9e,0xce,0xf7,0x64,0x82,
0x3b,0x4a,0xd0,0xd2,0x6c,0xe8,0x42,0xfc,0x2f,0xbf,0x21,0x27,0xc0,0x9f,0xe0,0xde,
0xae,0xf,0x11,0x81,0x3b,0xb7,0xe7,0x42,0x7c,0x64,0xb1,0xf1,0xc1,0xc3,0x1,0x9f,
0xd7,0xac,0x22,0x6c,0x83,0x8f,0x85,0x3,0x45,0x76,0x9b,0xa0,0xe5,0x41,0x91,0x95,
0x7,0x44,0x84,0x1f,0x89,0x7e,0x44,0x60,0x6f,0x66,0x1f,0x50,0x1f,0x4,0x2d,0xc8,
0xf0,0xe4,0x16,0x1c,0x7c,0xc4,0x89,0x13,0xc6,0x6f,0x30,0x58,0xce,0xe0,0x8f,0x6,
0x8b,0x13,0x9b,0x1a,0xd7,0x76,0xae,0x40,0xf8,0x79,0xb8,0x7e,0x8a,0x6b,0x67,0x7f,
0xe,0x8,0x8,0x18,0xf2,0x9f,0xd5,0x9f,0xec,0x93,0xb1,0x17,0x7a,0x3e,0x39,0x29,
0x91,0xe2,0xbe,0x66,0x4b,0x1a,0xdc,0x3f,0x9c,0x5c,0x5b,0x9c,0xef,0x43,0x8,0xd6,
0xfd,0x8,0xee,0xe6,0x9c,0xf7,0xd8,0x78,0x8b,0xa8,0x3c,0xd0,0xea,0x84,0x62,0xab,
0xc8,0xfa,0x40,0xf6,0x11,0x4,0xfe,0xb5,0xd2,0x7,0x76,0xe,0x30,0x1e,0x30,0x9d,
0x40,0xf5,0xc1,0x9b,0x44,0x1f,0xbc,0x51,0x44,0xfd,0x3,0xcc,0x33,0xb8,0xf9,0x6,
0x9f,0xac,0xfa,0x78,0x1f,0xb9,0x4e,0x7d,0xc,0xb6,0xfe,0xd8,0x95,0x5f,0xbb,0x6b,
0xd1,0x2f,0x14,0xd8,0xe3,0x3a,0x29,0xfa,0x36,0x7f,0xf1,0xf7,0xf7,0x1f,0x1e,0xbe,
0x63,0x7b,0x3e,0xce,0x73,0x2a,0xc2,0xbe,0x27,0x22,0xf6,0x9,0xb0,0xef,0x40,0x22,
0xc,0x5c,0x94,0xb,0xed,0x9,0xd6,0x81,0x6f,0x9d,0x0,0x9f,0xfe,0x6c,0xce,0xb7,
0x97,0xf5,0x7d,0x6f,0xab,0xcd,0x77,0xe3,0x81,0x2b,0x1f,0x64,0xfb,0xa0,0xe8,0x2,
0x8f,0x8f,0xa7,0xf8,0x6,0xaf,0x5a,0x39,0xe0,0xa7,0xda,0x4,0x4d,0xe,0x41,0xe8,
0x3,0x7f,0xe2,0x1f,0x74,0xec,0xcf,0x6c,0x2,0xfa,0x6,0xb2,0x8f,0xa8,0x72,0x20,
0x74,0xeb,0xf,0xf9,0xfe,0x7e,0x7e,0xc3,0xf1,0x9a,0xf1,0x6b,0xd7,0xc2,0xb8,0xb6,
0x38,0x20,0x74,0x3e,0x9e,0x37,0xae,0x91,0x3e,0x8d,0xb1,0x5d,0xd8,0xf6,0xd0,0x82,
0x24,0xae,0xe3,0x19,0xee,0x9,0x90,0x42,0xe6,0x3c,0xca,0x77,0xe1,0xa9,0x70,0xdf,
0x48,0x72,0x7d,0xde,0x2a,0x81,0x40,0xa2,0xef,0xdb,0xf5,0x25,0xd2,0xe7,0x4,0xc3,
0x5d,0x27,0xbd,0x15,0x79,0x43,0x88,0x8b,0x4e,0x50,0x79,0xa0,0xd1,0x7,0x3e,0xaa,
0x3d,0xf0,0x62,0x17,0xfc,0x44,0x9c,0xa0,0xf3,0xb,0x34,0x3c,0xe8,0x48,0xf4,0x40,
0x7,0x62,0x13,0x50,0x17,0x6c,0xd8,0x9a,0xc8,0x6c,0x42,0x9c,0x9d,0x3,0xdb,0xb6,
0xfe,0x50,0xe0,0xe7,0x47,0x63,0xc4,0xa7,0xf9,0x35,0x6c,0x61,0x5c,0x1b,0xb6,0x40,
0x60,0x8f,0xb9,0x2d,0xdc,0x82,0xf0,0x14,0x19,0x53,0xe,0xec,0xdf,0x57,0x2d,0x63,
0x8f,0x7a,0x3e,0x25,0x99,0x61,0x3f,0xe9,0xb3,0x6c,0x68,0xd7,0xef,0x4,0x4,0x8e,
0x2c,0x1,0x9f,0x81,0x27,0xe8,0x73,0x8a,0xfd,0x9b,0x27,0xd8,0xdc,0x97,0xa5,0x1e,
0x5c,0xf0,0x79,0xc3,0xa3,0xf,0xa8,0xb8,0xd9,0x5,0xc5,0x26,0xf8,0xa8,0xb1,0xa3,
0xc2,0x1,0xbf,0x57,0x24,0x3d,0xf0,0xb2,0x3b,0x7,0xa8,0x9f,0xf8,0x32,0xd3,0x5,
0x9d,0xfa,0x31,0x5d,0x30,0x71,0x59,0x3a,0x24,0xf0,0xf5,0x7,0x95,0x3,0x31,0x7b,
0x76,0x57,0x3f,0xf9,0x97,0xbf,0x60,0xde,0xf0,0x29,0x7e,0x2d,0xf1,0x9a,0x5e,0xed,
0x3e,0xa1,0xf0,0xf3,0xbb,0x10,0x79,0xe2,0xaf,0x4f,0x3f,0x3d,0xe9,0x60,0xec,0xfe,
0x6a,0x9c,0xeb,0x1e,0xec,0x9,0xee,0xc9,0x49,0x14,0xfb,0x9e,0xf3,0xf2,0xa1,0xdd,
0xa0,0x13,0x10,0x40,0xf4,0x7d,0xdb,0x1,0x25,0x1e,0xec,0xfb,0xb0,0x47,0xea,0xf3,
0xe1,0xe3,0x9b,0xc7,0x4d,0x71,0xe4,0x83,0xca,0x3,0x6e,0x27,0x7c,0x38,0x7,0x6c,
0x3a,0x41,0x6b,0x13,0xec,0x7e,0xa2,0x2d,0x7f,0xf0,0xaa,0x9d,0x7,0x5a,0x5d,0xe0,
0x90,0x57,0x36,0x75,0x1,0xc6,0xb2,0x3d,0x48,0x8c,0x30,0x25,0xdb,0xb2,0xee,0xa4,
0x72,0xe0,0xa9,0x27,0x9f,0x9c,0x64,0xb0,0xf5,0xc4,0x2e,0xfc,0xda,0xfe,0xec,0xa,
0xe2,0xeb,0x36,0x30,0x66,0xc5,0x9a,0xa8,0x4e,0x44,0x1e,0xd,0x8,0xf0,0x1f,0xb6,
0x67,0xd7,0xce,0x12,0xe1,0xcf,0x53,0x49,0x62,0xd8,0xef,0x3f,0x94,0x4,0xf,0x5,
0x93,0xeb,0x30,0xb2,0x14,0x2,0x86,0x49,0xd8,0xf7,0xf5,0xe8,0x7e,0xab,0x1c,0x37,
0xb9,0xd0,0x5e,0x48,0xad,0x74,0x2,0xc1,0xb4,0xb7,0xc0,0x5f,0xd2,0xb,0xb5,0xb5,
0xb,0x2,0x7f,0x47,0x1f,0xd1,0x81,0x3,0x5e,0x78,0x20,0xfc,0xc3,0x8e,0x6f,0x1c,
0xa5,0x31,0xc2,0xc3,0x43,0x8f,0xc0,0x9e,0x98,0x38,0x33,0xf7,0x65,0x8d,0xf,0x23,
0x4a,0x88,0xef,0x84,0x35,0x27,0x8f,0x1a,0xac,0x3e,0xf1,0x66,0x7e,0xad,0xaf,0xa6,
0x81,0x39,0x2b,0xac,0x75,0xf0,0x27,0xf2,0x70,0x60,0x60,0xe0,0xa0,0x88,0xf0,0xb0,
0x7c,0x19,0x7b,0xd4,0xf7,0xa9,0x4,0xfb,0xd8,0x43,0xc9,0xf0,0xd0,0x78,0xa2,0x7,
0x83,0x4a,0xc1,0x77,0x48,0x89,0x1d,0x7b,0x9d,0x48,0x5c,0x68,0x2f,0xf3,0xe2,0x4d,
0x21,0xe,0x5c,0xb0,0xe9,0x4,0xf,0x7,0x84,0x5d,0xd0,0xf3,0x40,0xef,0x1b,0x58,
0xf3,0x46,0xe,0x1c,0x78,0x85,0xe1,0xef,0x5b,0x4b,0x7b,0x10,0xd0,0xb3,0x88,0xae,
0x33,0x3c,0x3c,0x34,0x8f,0x70,0x80,0xe5,0x40,0x54,0xe,0x84,0x6e,0xdb,0x9a,0x4f,
0x62,0x27,0xac,0x2d,0xf8,0x5f,0x7e,0x8d,0x6f,0x32,0xae,0x9e,0x3c,0x21,0xda,0x23,
0x5c,0xc7,0xc2,0xb5,0xc,0x5c,0xe3,0xec,0x11,0x19,0x11,0x9e,0x47,0xe3,0x39,0x1e,
0xd3,0xe1,0x9c,0x4f,0x4d,0x4e,0x26,0xd8,0xa7,0xc0,0x43,0x13,0x8a,0x21,0x70,0x8c,
0x82,0xbd,0x93,0xd4,0x82,0xf,0x32,0xf,0x6a,0x6f,0x1b,0xec,0xfe,0x41,0xfd,0x7c,
0x44,0xbb,0x3d,0xf0,0xe3,0xe2,0xc9,0x1d,0x7a,0xb3,0x7,0x44,0x7,0xa0,0x4f,0x30,
0xb0,0x18,0xfe,0x40,0xf4,0xc0,0xee,0x18,0x5c,0xc7,0xb4,0xdb,0x82,0x4d,0x1b,0x37,
0xa6,0x1b,0xac,0xe,0x11,0xaf,0x71,0x5b,0x7e,0xcd,0xaf,0x6,0x5f,0x40,0xf8,0xfa,
0xf7,0x10,0xe9,0xfe,0xe5,0xe7,0x6b,0x76,0xb,0xbf,0x3e,0x85,0xeb,0x7b,0x3a,0xef,
0xe3,0x8,0xf6,0x13,0x9,0xf6,0xef,0x94,0x81,0xef,0x50,0x82,0xfd,0x40,0x82,0x7d,
0x7f,0x49,0xfa,0x5d,0x38,0x17,0xda,0xf7,0x39,0xee,0xdd,0x67,0x74,0xe1,0x81,0x25,
0xa7,0x24,0xf4,0x80,0x26,0x7f,0xe4,0x6b,0xd1,0x5,0xce,0x1c,0xb0,0xc5,0x88,0x2e,
0xf1,0x1,0x72,0xa0,0xf3,0x40,0x61,0xb,0xe,0x69,0x6d,0xc1,0xa7,0xff,0x59,0xbd,
0x1b,0xaf,0x31,0xbf,0xd6,0x22,0x26,0xb8,0x92,0x3,0xed,0x10,0xe6,0x2a,0xd1,0x37,
0x79,0x32,0x78,0xdc,0xb8,0x55,0x32,0xf6,0x88,0x7b,0x5a,0x4a,0x32,0xc3,0x7e,0xd2,
0x31,0x8a,0xbd,0xcf,0x30,0x86,0x3d,0xce,0x7d,0x3a,0xff,0x7,0x58,0x79,0xd0,0x96,
0xca,0x9,0x2a,0xed,0xfa,0xd7,0x81,0xf,0xb2,0x6f,0xa0,0xfa,0x8,0x5e,0x79,0x80,
0xf8,0x6b,0xf2,0x8a,0x3a,0xe,0xf4,0x74,0x88,0xd,0x14,0x1e,0xc8,0x1c,0xf0,0xad,
0x35,0x7,0x8e,0x72,0x3d,0x90,0x47,0xfd,0x1,0x1a,0x1b,0x28,0xf9,0xc2,0x77,0xc6,
0x8c,0x5e,0x65,0xb0,0x3a,0xe4,0x2e,0xfc,0xda,0x5f,0x29,0x5f,0x0,0x75,0xf,0xd6,
0xb1,0xf8,0x11,0x79,0xf8,0xef,0xcf,0x3c,0x13,0x42,0xce,0xaf,0x9a,0xfa,0xf6,0x7c,
0xce,0x23,0xf6,0x28,0x8f,0xcf,0x28,0x6,0x7f,0x8a,0x7d,0x29,0xb4,0x1d,0x54,0x6a,
0x62,0x6f,0xe1,0x0,0x17,0xf3,0x35,0x81,0xbf,0x8d,0x7,0x25,0x8e,0x3c,0x68,0xaf,
0xe1,0x41,0xbb,0xba,0xf0,0x40,0xc9,0x1f,0x30,0x9b,0x50,0xec,0xe1,0x40,0x2f,0x8d,
0x6f,0x28,0xad,0x29,0xf9,0xa8,0x3c,0x50,0x72,0x86,0xbe,0x2e,0x39,0x43,0x8f,0x2d,
0x20,0x1c,0x20,0xfe,0xc0,0x3f,0x83,0xf,0x9b,0x6b,0x22,0xb2,0x1e,0xc0,0x98,0xe0,
0x6f,0x7f,0x7d,0x3a,0xc4,0x60,0xb5,0xa6,0x7e,0x1c,0x83,0x2b,0x61,0x7,0x50,0xf7,
0xe0,0xfe,0x18,0x5c,0xb7,0x7a,0x39,0x2a,0x32,0x22,0x2f,0x95,0xe3,0x9e,0x9a,0xc2,
0xb0,0x4f,0x4f,0x49,0x81,0xd7,0x16,0x17,0x82,0x2f,0xea,0xfc,0xb7,0x4a,0xa1,0xcd,
0x60,0x82,0xfd,0xc0,0x52,0x36,0xff,0x55,0x19,0xa0,0x17,0xca,0x9,0xae,0x17,0x2c,
0xf6,0xa2,0xbf,0x3b,0x17,0x28,0x1f,0x2c,0x3e,0x82,0x27,0x86,0x6c,0xe7,0x18,0x33,
0x1c,0xb3,0xfa,0x5,0xb2,0x6f,0xd0,0x4b,0xc3,0x3,0x25,0x57,0x50,0x1b,0xe,0x78,
0xd7,0x3,0x47,0xa1,0x63,0x2f,0x22,0x7d,0x8b,0x61,0xd0,0xac,0x2c,0xf,0x7,0x24,
0x3d,0xb0,0x7d,0xdb,0xd6,0x3c,0xbc,0xe6,0xfc,0xda,0xb7,0x32,0x2e,0xbf,0x1d,0x40,
0xdf,0x13,0xe3,0x10,0xd4,0x41,0x4f,0x7f,0xb2,0x6a,0x55,0xa8,0x89,0xbd,0x98,0xf7,
0xa9,0x29,0x30,0xe7,0xdb,0xc3,0xd0,0x2e,0xa8,0xc,0xfc,0x48,0x9c,0xd7,0x66,0x8,
0x9f,0xfb,0x16,0xd1,0xf0,0xc0,0xb,0x27,0x90,0xf,0x1,0x43,0xcb,0xa1,0xe7,0x8a,
0xb3,0xf0,0xc4,0xec,0x1f,0xc1,0x7f,0xe8,0x49,0xee,0x3f,0xb8,0xd8,0x7,0x9b,0xaf,
0xe8,0xe6,0x27,0x4a,0x6b,0xca,0x36,0xe,0xb8,0xdb,0x3,0x4b,0x8c,0xe0,0x92,0x37,
0xf6,0xad,0x85,0x2d,0xe8,0xf4,0x6,0xab,0x61,0x9a,0xfd,0x69,0x9a,0x36,0x26,0x58,
0xbe,0x6c,0x69,0xa8,0xc1,0xf2,0x83,0x5d,0x38,0x16,0x97,0x2b,0x1e,0x10,0xfe,0x7e,
0x7b,0x22,0xbf,0xff,0x77,0xef,0xde,0x53,0x53,0x9,0xde,0x54,0x28,0xf6,0x29,0x4,
0xfb,0x54,0xd8,0xb4,0x2b,0x13,0x3a,0xbe,0x53,0x4a,0x7d,0xfd,0x36,0xc3,0xf8,0xdc,
0x1f,0xac,0xc1,0x5f,0x15,0x2f,0x3c,0xe8,0x30,0xa2,0x4,0x7a,0x4e,0xdd,0xe,0x5f,
0x6c,0xd8,0x6,0x91,0x9,0xc7,0x61,0xce,0xe,0x80,0x5f,0x4f,0x3e,0xd,0x3e,0x83,
0xcb,0xbd,0xea,0x3,0x35,0xa7,0xa0,0xb5,0xb,0xbd,0xed,0x3c,0x68,0x6f,0x89,0x11,
0x1c,0xec,0x81,0x62,0x13,0x6c,0x71,0xa2,0x45,0xf,0x78,0x89,0xf,0xf9,0x9a,0xf2,
0x2d,0x7d,0x8a,0xe0,0xb6,0x5e,0x85,0xb0,0x61,0x5b,0x22,0x24,0xc6,0xdb,0x39,0xd0,
0xab,0x67,0x4f,0xdc,0x7f,0xf0,0x7b,0x8e,0xc5,0xe5,0x8a,0x7,0xd0,0xdf,0xc0,0xb5,
0xc9,0x3b,0x89,0x74,0xdf,0x19,0x15,0x79,0x24,0x8d,0xe3,0x9f,0x96,0x4a,0x74,0x7e,
0x5a,0xa,0xa4,0x13,0xfc,0x7f,0xf7,0xfe,0x9,0x8,0xc,0x2e,0x83,0xb6,0x6f,0x95,
0x41,0x9b,0xa1,0x1c,0xfb,0xc1,0x8c,0x7,0x26,0x17,0x54,0xd1,0xea,0x7,0xab,0xcd,
0xb8,0xaf,0xff,0x36,0xf8,0xea,0xab,0xaf,0x20,0x22,0x22,0x82,0x4a,0xf8,0x2e,0x12,
0x1f,0x27,0x56,0xc1,0xc8,0xb5,0xe7,0xe1,0xd6,0x77,0x4e,0x11,0xfd,0x50,0xca,0x79,
0xe0,0xc0,0x5,0x29,0x8f,0x40,0xe3,0x85,0x3e,0x6e,0xbe,0x81,0x13,0x7,0x9c,0xe3,
0x44,0x6b,0xae,0xc8,0xd9,0x16,0x78,0xcd,0x17,0xe2,0xbf,0x91,0xcf,0xdc,0x32,0x80,
0xf9,0x83,0xac,0xb6,0xd5,0xca,0x81,0x1d,0xa1,0xdb,0x8e,0x18,0x2c,0x1e,0xb8,0x93,
0x63,0x72,0xa9,0x7d,0x41,0x31,0xf7,0xb1,0x86,0xe7,0x91,0x39,0x1f,0xcc,0xfe,0x4c,
0xf8,0x78,0x28,0x19,0x69,0xa9,0x14,0xfb,0xa0,0xcf,0xf3,0xc1,0x3f,0xa4,0x1c,0xda,
0x8f,0x42,0xec,0x9,0x7,0x86,0x30,0xfd,0x6f,0x11,0x27,0xe,0x38,0x72,0x81,0x71,
0xa0,0x5b,0xbf,0xd,0xb0,0x6d,0xdb,0x36,0xc8,0xcc,0xcc,0x84,0x82,0x82,0x2,0x48,
0x21,0xfa,0x26,0x32,0x6a,0x27,0x44,0xed,0x4f,0x85,0xd,0x71,0x67,0xe1,0xa5,0x15,
0xe7,0x20,0x60,0xc4,0x49,0xe6,0x2f,0xb8,0xc4,0xd,0xed,0x85,0xa8,0x71,0xa3,0x17,
0xbf,0xa0,0xbd,0xcd,0x1e,0xe8,0xf3,0x45,0xfa,0xf5,0x44,0xfb,0x5a,0xb2,0x1b,0x7,
0x44,0x7e,0x8,0xfd,0xc1,0xd1,0xb,0x33,0x68,0x6d,0x33,0xf2,0x40,0xd6,0x1,0xd3,
0xa7,0xbd,0xff,0x99,0xc1,0xea,0x2a,0x7c,0x8d,0x4b,0xaf,0x3,0xc4,0xdc,0xbf,0xab,
0x73,0xe7,0xce,0xbd,0x12,0xe2,0xe3,0xaa,0xd0,0xce,0x53,0x5f,0x8f,0x3c,0x22,0xfe,
0x9b,0x76,0x67,0x41,0xab,0xa0,0xa,0x8,0x40,0xbd,0x3f,0xbc,0xcc,0x8a,0xf9,0x50,
0x2b,0x7,0xda,0x72,0xb1,0xbc,0xe6,0x85,0xb,0x88,0x3f,0xce,0xfb,0xa3,0x47,0x8f,
0x42,0x4d,0x4d,0xd,0x54,0x54,0x54,0x40,0x7e,0x7e,0x3e,0xc4,0x91,0x6b,0x13,0x16,
0x1e,0x9,0x3b,0x13,0xa,0x60,0xd9,0x2e,0x80,0x47,0x88,0x6f,0xe0,0x33,0xa4,0x5c,
0x13,0x3f,0xe8,0x74,0x2,0xcf,0x2f,0x3b,0xfa,0x5,0xf6,0x75,0x67,0xab,0x2e,0xa8,
0x8b,0x4f,0x50,0x5c,0xa7,0x75,0x3,0xe4,0x40,0xe7,0xde,0xec,0x39,0xd6,0x39,0x63,
0x1d,0xac,0xbc,0x66,0xb8,0x6f,0xef,0x9e,0xaa,0x4e,0x9d,0x3a,0x62,0xdd,0xc8,0x5d,
0xc6,0xa5,0xd5,0x1,0x96,0xb9,0xbf,0x6c,0xe9,0x47,0xeb,0x11,0x73,0xc4,0x3f,0x9d,
0xe0,0x9e,0x91,0x96,0x46,0xe5,0xcf,0x73,0x8e,0x43,0x7,0x32,0xf7,0x5b,0xa3,0xde,
0x1f,0xc6,0xe6,0xbf,0x5d,0x4a,0xed,0xa2,0xf2,0xc0,0x81,0xb,0xdd,0xfa,0x6e,0x80,
0xc8,0xc8,0x48,0x28,0x2a,0x2a,0x82,0xb3,0x67,0xcf,0xc2,0xb9,0x73,0xe7,0x28,0xf,
0x4a,0x4b,0x4b,0xe1,0xf0,0xe1,0xc3,0xb0,0x6f,0xdf,0x3e,0x8,0x8b,0xda,0x3,0x91,
0x49,0x65,0x30,0x65,0xcb,0x79,0xb8,0x3b,0xa4,0x6,0xda,0xf,0x2c,0x71,0xe6,0x81,
0xca,0x1,0x27,0x5d,0xa0,0xab,0x3d,0x50,0x6b,0x90,0x28,0xf,0x34,0xeb,0x48,0x6e,
0x35,0x46,0x2f,0x6b,0xfc,0x42,0x8d,0x2f,0xd0,0x65,0x40,0x11,0xad,0x3d,0x47,0xfc,
0xb1,0x5e,0x4a,0xb6,0x3,0x8b,0x16,0xcc,0x5f,0x6f,0x5c,0x7a,0x1d,0x60,0xce,0xfd,
0x5b,0x3a,0x77,0xee,0x89,0x73,0x1f,0xf1,0x17,0xf3,0x3e,0x23,0x3d,0xd,0xe6,0x7c,
0x7f,0x4,0x7c,0x43,0x4e,0x82,0xcf,0xe8,0x72,0x36,0xf7,0x87,0x49,0xa2,0xe5,0x81,
0x46,0x34,0xfa,0x41,0xf6,0x1b,0xba,0xf5,0xb7,0xe2,0x8f,0xe3,0xfc,0xf9,0xf3,0xf4,
0xf9,0xa9,0x53,0xa7,0xe0,0xf8,0xf1,0xe3,0x90,0x91,0x91,0x1,0xd1,0x3b,0x89,0x4d,
0x88,0x49,0x80,0x2d,0x9,0x35,0x30,0xe0,0x8b,0xf3,0xd0,0x29,0xa8,0xd2,0xcc,0x2d,
0xd9,0x78,0x60,0x89,0x19,0x8f,0xf3,0xdc,0x91,0xb4,0x6,0xed,0x68,0xf,0xac,0x39,
0x23,0xad,0x4f,0xa0,0x5b,0x47,0xd4,0xad,0x1d,0xc8,0xf1,0xa1,0x46,0x7,0x74,0x20,
0xb1,0x0,0xc6,0x84,0x1f,0x90,0x78,0x80,0xd6,0xcc,0x49,0x6b,0xc6,0x4c,0x7,0x74,
0xea,0x69,0x5c,0x3a,0x1d,0x20,0xea,0x79,0xb0,0x3e,0xf5,0x8f,0x24,0xf6,0x58,0x27,
0xb0,0xc7,0xb9,0x9f,0x49,0xb0,0x3f,0x98,0x98,0x1,0x77,0x4d,0x29,0x23,0x3e,0x1f,
0x99,0xfb,0x23,0xca,0xad,0xd8,0x7b,0x13,0x37,0xdd,0xa0,0xe8,0x5,0x1d,0xfe,0x62,
0x20,0xf,0xce,0x9c,0x39,0x3,0x95,0x95,0x95,0xd4,0x3e,0x24,0x25,0x25,0x41,0x58,
0x44,0x14,0x44,0x1f,0xc8,0x80,0x2f,0xf,0x9c,0x83,0xbf,0x7e,0x78,0x16,0xfc,0x86,
0x55,0xe8,0x75,0x81,0xec,0x17,0x98,0xf9,0x43,0xa5,0xe,0x41,0x8d,0x11,0x94,0x35,
0xc5,0xf6,0x6a,0x9c,0xa8,0x59,0x47,0x74,0xaa,0x25,0x30,0xfd,0x1,0x87,0xd8,0x90,
0xea,0x80,0xbe,0xac,0x8e,0x4c,0xd4,0x4c,0x5a,0x74,0xc0,0xc2,0x5,0xeb,0xc,0x56,
0x3b,0xe8,0x63,0x5c,0xfc,0x7a,0x21,0x8c,0x2d,0x31,0xd7,0x78,0x7b,0x97,0x5b,0x6e,
0xe9,0x91,0x98,0x10,0x5f,0x85,0xb8,0xa7,0xf3,0x79,0x9f,0x99,0x91,0x6,0x41,0x5f,
0x17,0x82,0xff,0xa4,0xa,0x68,0x1b,0xc4,0x75,0xff,0x70,0x7,0xe1,0x98,0xb7,0x26,
0xcf,0x5b,0x7b,0xe5,0x84,0x9d,0xb,0xf,0xf4,0x73,0xc6,0x5f,0x70,0x0,0x6d,0xc2,
0xe9,0xd3,0xa7,0xa1,0xbc,0xbc,0x1c,0xf2,0xf2,0xf2,0xe0,0xe0,0xc1,0x83,0xb0,0x23,
0x3c,0x1a,0xa2,0x13,0x8b,0x61,0x51,0x24,0xc0,0x6f,0xa7,0x10,0x9b,0x40,0x7c,0x9,
0x27,0x7b,0xd0,0x5e,0x89,0x15,0xdd,0xe2,0x44,0x1f,0x94,0x37,0x8e,0x7b,0xcf,0x13,
0xd4,0x86,0x3,0x3c,0x36,0xd4,0xfa,0x2,0xe4,0x75,0xac,0x1d,0xb9,0x65,0xa0,0xa4,
0x3,0xe2,0xac,0x3a,0x80,0xf8,0x64,0xb8,0xb7,0xe8,0x76,0x8e,0xd5,0xc5,0xcc,0x7,
0x60,0x7e,0x9,0xdb,0x8a,0x3e,0xb8,0x60,0xde,0xbc,0xd5,0x54,0xdf,0x4b,0xd8,0x1f,
0x4a,0xca,0x80,0xc0,0x89,0x15,0xe0,0x3f,0xae,0xc,0x5a,0x8d,0x64,0xf8,0x53,0x19,
0xce,0x44,0xe5,0x40,0x6b,0x45,0xc4,0x6b,0xb5,0xd1,0xf,0x6e,0xf3,0x5f,0xe5,0x1,
0xfe,0x3b,0xfa,0x6,0x25,0x25,0x25,0x90,0x9d,0x9d,0xd,0x7b,0xf7,0xee,0x85,0xf0,
0xe8,0x7d,0x10,0x9e,0x7c,0x12,0x82,0xbe,0x25,0xf1,0xe2,0xd8,0x6a,0x69,0xfd,0xc9,
0x39,0x56,0xb4,0xad,0x2d,0x69,0x39,0x70,0x4c,0x63,0xb,0xbc,0xf9,0x84,0x6e,0x76,
0x80,0x8b,0xa2,0x3,0xba,0xf6,0x39,0xca,0x75,0x0,0xab,0xa1,0x94,0x75,0xc0,0xac,
0x19,0x33,0x56,0x1b,0xac,0x86,0xbc,0x8d,0x71,0xf1,0x72,0x82,0x22,0xcf,0x8f,0x75,
0x1d,0x4f,0x1f,0x8c,0x8d,0x3d,0x26,0xf0,0xcf,0xa4,0xf8,0xa7,0xc3,0xdc,0x2d,0x79,
0xe0,0xff,0x5e,0x5,0xb4,0x1e,0x5d,0x41,0x75,0x3f,0xc3,0xbf,0xdc,0x94,0x36,0xd2,
0x73,0x26,0x76,0x7e,0xd8,0x38,0xe1,0xc0,0x83,0xda,0xe2,0xaf,0xf2,0xa0,0xba,0xba,
0x1a,0x8e,0x1d,0x3b,0x6,0x69,0xc4,0x47,0x8d,0x8e,0xde,0x9,0x91,0xfb,0x92,0x61,
0x63,0xfc,0x8f,0xd0,0xe3,0x93,0x73,0x10,0x38,0x42,0x93,0x43,0xb4,0xe5,0x8d,0xdc,
0x7c,0xc3,0xe3,0xfa,0x9c,0xa1,0x8e,0x3,0xe6,0xbe,0x32,0xef,0x79,0x42,0xdb,0x5a,
0xc1,0x4b,0xb2,0xe,0x48,0xa7,0xfb,0xa2,0xe4,0xdc,0xe0,0xce,0xe8,0xa8,0x63,0x6,
0xcb,0x9,0x76,0x32,0x2e,0xde,0xba,0x0,0xfa,0x12,0x58,0x7b,0x76,0xdf,0xbb,0xef,
0x8e,0x9d,0x8e,0x73,0x9e,0xa,0xc1,0x3f,0x2b,0x33,0x9d,0xe2,0x7f,0xe7,0xf4,0xa,
0x8,0x1c,0x5f,0x1,0xad,0x46,0x31,0xdb,0xef,0x55,0x74,0x5c,0x50,0x38,0x61,0xd1,
0x1d,0x12,0x7,0x1e,0xa8,0x23,0xfe,0x32,0xf,0x7e,0xfc,0xf1,0x47,0x38,0x79,0xf2,
0x24,0xcd,0x1b,0x24,0x24,0x24,0xd0,0x78,0x31,0xfa,0x50,0xe,0xac,0x8e,0x1,0xf8,
0xd3,0x6c,0xcc,0x21,0x96,0xd9,0xd7,0xa2,0xd5,0xbc,0x91,0xce,0x1f,0xb0,0xf8,0x4,
0xba,0x75,0x3,0xbb,0x3f,0xe0,0xad,0x9e,0xc8,0xa9,0xbe,0x98,0xfa,0x1,0x42,0x7,
0x24,0xb0,0xbd,0x71,0x72,0xfd,0x58,0xd0,0xdb,0xa3,0xa6,0x1b,0xac,0x1f,0x4d,0x33,
0xe3,0xe2,0xf8,0x81,0xe8,0x4b,0x60,0x7e,0xf1,0xf,0x1b,0x37,0xac,0x8f,0x14,0xf8,
0x23,0xee,0x88,0xff,0x8a,0xb0,0x3c,0xf0,0x99,0x54,0x9,0x6d,0xde,0x21,0x73,0x1f,
0xf1,0x1f,0xa9,0x91,0x5a,0xf1,0x41,0xe6,0x81,0xf4,0x9a,0x62,0x3b,0xea,0x8b,0xbf,
0xe0,0x80,0xf0,0xd,0xca,0xca,0xca,0x20,0x37,0x37,0x17,0x62,0x63,0x63,0x49,0xbc,
0xb8,0x1b,0xa2,0x92,0x4e,0xc0,0xcc,0xed,0xe7,0xe1,0x9e,0xf1,0x22,0x87,0xa8,0xb7,
0x7,0x8e,0xf9,0xa2,0xde,0x1a,0xe,0x8,0x7b,0xe0,0x56,0x4b,0xe0,0x55,0xf,0x28,
0xfe,0x0,0xf7,0x3,0x30,0x16,0xf8,0x6c,0x53,0xa,0xad,0xa9,0x14,0xbe,0x20,0xca,
0x97,0x5f,0x7c,0x1e,0x89,0x58,0x71,0xcc,0x7e,0x71,0x81,0xd8,0xb,0xdd,0xdf,0xf9,
0xd6,0x5b,0x6f,0x7d,0x81,0xea,0x7b,0x2e,0x59,0x24,0xc6,0xca,0x22,0x1c,0x78,0x76,
0xf9,0x9,0x8,0x24,0x7e,0x1f,0xe6,0x7c,0xb4,0xd8,0xbb,0x49,0xad,0xf4,0x3,0x97,
0xe1,0x4c,0x2e,0x4,0x7f,0x99,0x7,0x22,0x5e,0x3c,0x71,0xe2,0x4,0xcd,0x25,0xee,
0xda,0xb5,0xb,0x22,0x76,0x1f,0x84,0xd0,0xa4,0x6a,0x18,0xfc,0xd5,0x39,0xe8,0xf4,
0xf6,0x49,0x17,0xe,0xb0,0xbc,0xb1,0xb6,0xee,0x4c,0xcd,0x17,0xd6,0x22,0x36,0xb4,
0xe5,0x6,0xbc,0xe4,0x89,0xa9,0x1f,0x30,0xa0,0x8,0x5e,0x9f,0x92,0x43,0xf1,0x4f,
0x94,0xf0,0x47,0xe9,0xda,0xa5,0xb,0xf6,0xa6,0xea,0x6c,0x5c,0xb8,0xd,0x40,0x1f,
0x12,0x6b,0x4e,0xef,0x99,0x35,0x6b,0xe6,0x7c,0xf,0xf6,0xe9,0x90,0x9d,0x99,0x1,
0x71,0xc9,0x59,0xd0,0x7c,0x42,0x15,0xf8,0x8c,0x23,0xf8,0xbf,0x8d,0xf3,0x1f,0x6d,
0x0,0xb3,0x3,0xd4,0x16,0xe8,0xa4,0xde,0xfa,0x81,0x49,0xb7,0x1,0x17,0x8e,0xbf,
0xcc,0x3,0x8c,0x17,0xab,0xaa,0xaa,0xe8,0xf7,0xc9,0xb9,0xe4,0xf5,0xf1,0x67,0xe1,
0xef,0x4b,0xce,0x80,0xef,0xd0,0x72,0x77,0x9f,0xc0,0x6d,0xfd,0x48,0xad,0x25,0x70,
0xab,0x35,0x76,0xe1,0x80,0xaf,0xb2,0xc7,0x0,0x5f,0xeb,0xf8,0x3a,0xe3,0x42,0xcc,
0x7e,0x56,0x5b,0x2d,0xfc,0x0,0x94,0xa9,0x93,0x27,0xcf,0x37,0x58,0x8d,0x50,0x13,
0xe3,0xc2,0xe2,0x0,0xac,0x35,0xc6,0x7d,0xc9,0xf,0x6e,0xfa,0x6e,0x63,0x38,0xea,
0x7c,0xa6,0xf7,0x33,0x20,0x3b,0x2b,0x3,0xe6,0x6e,0x2d,0x80,0x80,0xf7,0x2b,0xa1,
0xe5,0x3b,0x27,0xa1,0xf5,0xdb,0x2,0x7b,0xab,0x20,0x27,0x5a,0x9b,0xdc,0xb0,0x73,
0xa1,0x95,0x24,0x5e,0x79,0x71,0x91,0xf1,0x17,0x1c,0x40,0x9b,0x80,0xbe,0x81,0x9c,
0x4b,0xde,0x11,0x16,0x1,0x3b,0x13,0xb,0xe1,0xa3,0x5d,0xe7,0xe1,0x37,0x53,0x4f,
0x41,0xfb,0x81,0xa5,0xe,0x3e,0x81,0x93,0x1e,0x70,0xc8,0x17,0x5b,0xd6,0xc,0x8e,
0xb9,0xfb,0x3,0x36,0x3b,0xe0,0xf1,0x7,0xf0,0xdf,0xbb,0x10,0x3f,0x70,0xe,0xfa,
0x81,0xc4,0x97,0xa1,0x3a,0x80,0x73,0xe0,0xeb,0xaf,0xbe,0xc,0x37,0x58,0x1c,0xd0,
0xda,0xb8,0xb0,0x7a,0x71,0xcc,0x25,0x62,0x8d,0xc9,0xe3,0x29,0x49,0x89,0x55,0x59,
0x1c,0xff,0xec,0xac,0x4c,0x8a,0xff,0x3f,0x56,0x96,0x40,0x20,0xf1,0xfb,0x5b,0x8e,
0x39,0x49,0xe7,0xbf,0x4e,0x5a,0x3b,0xbc,0xa6,0xea,0xa,0x53,0x67,0x78,0xe1,0x41,
0xb7,0x81,0x17,0x17,0x7f,0x95,0x7,0x72,0x2e,0x39,0x26,0x26,0x86,0xe5,0x92,0x53,
0xca,0x21,0x78,0xf3,0x79,0xe8,0xfa,0x4e,0xa5,0x63,0xde,0xd8,0xdd,0x27,0x3c,0xae,
0xe7,0x80,0xb2,0xf,0xcd,0x96,0x1b,0x70,0xd9,0x6f,0x86,0xff,0xde,0xb5,0x5f,0x11,
0xfc,0x2b,0xe4,0xb0,0xb9,0xb7,0x42,0xd4,0x8a,0xc4,0xee,0x8b,0xa9,0x42,0xcc,0x38,
0x76,0x37,0xd4,0x13,0x7b,0xb4,0x1b,0x58,0x67,0xdc,0xe5,0xb5,0x1e,0x3d,0x86,0x20,
0xf6,0x59,0x7c,0xee,0xe7,0x50,0xfc,0x33,0xa1,0xd9,0x7b,0xd5,0xd0,0x3e,0x84,0x60,
0x3f,0x5a,0xc2,0x37,0x48,0x23,0xe,0xdc,0xb0,0x8,0xc5,0x5f,0xd1,0x11,0x1a,0x1e,
0xd4,0x35,0xfe,0xab,0xf,0xf,0xe4,0x5c,0x72,0x7a,0x7a,0x3a,0xcd,0x25,0x47,0xc6,
0x24,0xc2,0xf7,0x9,0x35,0xf0,0xda,0xaa,0xb3,0x10,0x30,0xbc,0xdc,0x3d,0x36,0x70,
0xb1,0x5,0x76,0xe,0x78,0x89,0x9,0x1c,0x7c,0x1,0xba,0x7f,0x80,0xf7,0xa5,0x11,
0x7d,0x12,0x44,0x4e,0x8,0xe5,0xe5,0x97,0x5e,0x1c,0x62,0xb0,0xda,0x90,0x9b,0x8c,
0xfa,0xf9,0x0,0xa6,0xed,0x5f,0xfa,0xd1,0x92,0xe5,0x88,0xbb,0xb0,0xfb,0x88,0xff,
0x8a,0xc8,0x7c,0xf0,0x9b,0x56,0x5,0x2d,0xde,0xad,0xe4,0x38,0x9f,0xd4,0x63,0xef,
0x26,0xae,0x5c,0xd0,0xeb,0x84,0x4b,0x8d,0xbf,0xcc,0x3,0x5d,0x2e,0x39,0xea,0x40,
0x6,0x7c,0x71,0xe0,0x3c,0x8b,0x17,0x31,0x4e,0x50,0x73,0x45,0x5a,0x7f,0x40,0xa9,
0x29,0x72,0xc9,0x13,0xbb,0x71,0x40,0xf5,0x5,0xf1,0xdf,0x6e,0xe9,0x5f,0x4,0xcb,
0xbe,0x49,0x83,0xe4,0xc4,0x78,0xb,0xfe,0xb,0xe6,0xcd,0x5b,0x6e,0x5c,0x98,0xf,
0x80,0xb1,0x23,0xf6,0x2a,0xfb,0x6d,0xd8,0x8e,0xed,0x7b,0x29,0xfe,0xd4,0xee,0xb3,
0xb9,0x3f,0xe0,0xeb,0xe3,0xd0,0x71,0xda,0x49,0x68,0x89,0xf8,0x8f,0x3e,0x29,0x49,
0x85,0x77,0xa9,0x13,0x1f,0x98,0x2e,0x10,0x5c,0xb8,0xd8,0xf6,0xdf,0x1b,0x7,0x9c,
0x72,0xc9,0x51,0x49,0xc7,0x60,0x4e,0x38,0x89,0x17,0x43,0xaa,0xcc,0x7d,0x6b,0xce,
0x3e,0xa1,0x66,0xcf,0xb2,0xbc,0x17,0x51,0xe3,0xf,0x5a,0xe2,0x42,0xcb,0x7a,0xb1,
0x7,0x7f,0xac,0x35,0xbc,0x75,0x70,0x11,0xc,0x9e,0x9d,0xd,0x62,0x8f,0x9d,0xc0,
0xff,0xfb,0xef,0x36,0xee,0x45,0xec,0x38,0x86,0xf5,0xc9,0x3,0x60,0xfe,0x10,0xf7,
0x74,0xfc,0x31,0x35,0x39,0xa9,0x32,0x9b,0xe3,0x8f,0x73,0x3f,0x27,0x2b,0xb,0x1e,
0x5b,0x5e,0x6,0xfe,0xef,0x11,0xdf,0x6f,0x2c,0xc1,0x7c,0xc,0x93,0x96,0xe2,0x71,
0xb4,0xf4,0x58,0x1b,0x6e,0x78,0xe5,0xc1,0x95,0xc1,0x5f,0xe6,0x81,0x9a,0x4b,0xde,
0xb3,0x67,0xf,0x84,0xef,0xdc,0x7,0xe1,0x29,0x95,0x30,0xe4,0xab,0xb3,0xd0,0x71,
0x44,0x85,0x59,0x73,0x6a,0xd6,0x9e,0xd7,0x3a,0x47,0x78,0xcc,0xc5,0x17,0x2c,0x76,
0xd4,0x1,0xd4,0x7,0xec,0x53,0x4,0x4f,0x8d,0x3e,0x42,0xf7,0xd0,0xa3,0x88,0xb5,
0xa1,0x3,0xb1,0xfb,0x2b,0xd,0xb6,0x1e,0xd4,0xce,0xa8,0x5f,0x2e,0x18,0xfd,0x6,
0xff,0x3b,0xef,0xb8,0xe3,0x59,0xc4,0x5e,0x48,0x4e,0x76,0x16,0x95,0x66,0x53,0x6b,
0xa0,0xed,0x4,0xe6,0xfb,0xb7,0x1c,0xe3,0x5d,0x5a,0x59,0x44,0x60,0xaf,0xe1,0x87,
0x17,0xbd,0x70,0x25,0xf0,0x57,0x79,0x20,0x72,0xc9,0xa9,0xa9,0xa9,0x10,0x15,0x1d,
0xcd,0x72,0xc9,0x9,0x3f,0xc2,0xb3,0x8b,0x7f,0x4,0x3f,0x8c,0x13,0xfa,0x48,0xfb,
0x55,0xdd,0x38,0xe0,0xe2,0xb,0x68,0xd7,0x8b,0x95,0xfe,0x54,0x78,0xdc,0xa1,0x27,
0x8b,0x7,0x3d,0xf8,0xc7,0x9b,0x7d,0x35,0x6e,0xbf,0xed,0x36,0xec,0x6b,0xef,0x6f,
0xd4,0xdd,0x7,0x34,0x73,0xfe,0x6f,0xbf,0x3d,0x6a,0x94,0xd0,0xf9,0x28,0x88,0xfd,
0xf,0x7,0x8e,0x40,0x13,0x12,0x13,0xb5,0x20,0xba,0x8f,0xe2,0xef,0x26,0x32,0x7,
0xd4,0x63,0xf1,0xbc,0xe,0x3c,0xb8,0x92,0xf8,0xcb,0x3c,0xd0,0xe6,0x92,0xe3,0xe,
0xc3,0x8a,0xbd,0x24,0x5e,0x9c,0x5c,0xcd,0x6c,0x82,0x5b,0x7d,0xa9,0x76,0xcd,0xf0,
0x98,0xa7,0x7f,0x95,0x1b,0x7,0xa4,0x98,0x10,0x5f,0x6b,0x47,0x3e,0xbf,0x71,0x47,
0x2a,0xa4,0x24,0x26,0x9a,0xf9,0x20,0x94,0xe1,0xc3,0x86,0x62,0xf,0x81,0xfa,0xac,
0x5,0xe0,0x7b,0xb1,0xf,0xd5,0xad,0x1f,0xaf,0x5c,0xb1,0xc4,0xc4,0x9e,0xe8,0xfd,
0xc3,0x44,0xf7,0xcd,0xb,0x3b,0xa,0x4d,0xa7,0x70,0xfc,0x89,0xfe,0xa7,0xe2,0x8d,
0x7,0xef,0x70,0xfc,0x35,0xbc,0xb0,0x70,0xc2,0xc9,0x4e,0x70,0xe,0x5c,0xaa,0xf8,
0xaf,0x3e,0x1c,0x50,0x73,0xc9,0xfb,0xf7,0xef,0x67,0xb9,0xe4,0xe4,0x12,0x98,0xb8,
0xf9,0x1c,0x74,0x25,0xe7,0x5b,0xb7,0xb5,0x2,0xab,0x3f,0xe8,0x8a,0x3f,0xf7,0x5,
0x50,0x57,0xa0,0xbe,0x99,0xb3,0x26,0x83,0xee,0xad,0x97,0xf1,0x5f,0xf2,0xe1,0x87,
0x78,0x3f,0x83,0x5b,0x39,0x96,0x75,0xc1,0x5f,0xac,0xf7,0xdf,0xf5,0xc5,0xe7,0x6b,
0x3e,0xcb,0x91,0xe6,0xfe,0xe1,0x9c,0x6c,0x8,0xfa,0xee,0x18,0x34,0x9b,0xac,0xe0,
0x6f,0x4a,0xa5,0x8b,0x78,0xd7,0x15,0x16,0x3b,0x61,0x72,0xc1,0xa3,0x13,0xae,0x16,
0xfc,0x65,0x1e,0xe8,0x72,0xc9,0x91,0x7b,0xe,0xc1,0xb6,0xa4,0x6a,0xe8,0xb9,0xea,
0xc,0x4,0xc,0x2e,0x73,0xf7,0x7,0xdc,0xea,0x46,0xbc,0xd4,0x92,0xe3,0xfb,0xda,
0x12,0xbf,0x63,0xcc,0x92,0x6c,0xba,0xe7,0xe,0xf7,0xdb,0x8a,0x1e,0x3b,0xab,0x3e,
0x5e,0x89,0xb5,0xa1,0x77,0x19,0x75,0xaf,0x7,0xc0,0xf7,0x62,0x1d,0xd1,0x7d,0x31,
0x7b,0xf7,0xc4,0x31,0x9f,0x2f,0x93,0xcc,0x7d,0x86,0xff,0x3f,0x3e,0x2d,0x87,0xe6,
0x93,0xaa,0x18,0xfe,0xc4,0xff,0x37,0xc5,0x15,0xfb,0x4a,0xd,0x57,0x1c,0x74,0x87,
0xce,0x6f,0xe0,0xb6,0xe1,0x6a,0xc3,0x5f,0xc,0x35,0x97,0x9c,0x9c,0x9c,0xc,0x11,
0x91,0x24,0x4e,0x88,0x4d,0x83,0xb5,0x71,0x67,0xe0,0x4f,0xb3,0x6a,0xc0,0xa7,0xdf,
0x9,0xef,0xfe,0x80,0xcc,0x1,0xed,0x7e,0x2,0xab,0x3f,0x88,0xef,0xc3,0xb8,0xe3,
0x9f,0x93,0xf2,0x4c,0xfc,0x45,0x3e,0x28,0x22,0x6c,0x47,0x9c,0xc1,0xd6,0x2,0x9b,
0xd6,0x11,0x7f,0x8c,0x17,0xb0,0xf7,0xd4,0xaf,0xf6,0xee,0xd9,0x1d,0x2f,0x7c,0xbe,
0xc3,0x87,0xb3,0x29,0xfe,0x8f,0xad,0xaa,0x80,0xe6,0x13,0x11,0xff,0x4a,0x2b,0xfe,
0xb5,0x11,0x37,0x3e,0xe8,0xec,0x84,0xc4,0x7,0xc4,0xff,0x81,0xc1,0xdf,0x5e,0x95,
0xf8,0xe3,0x70,0xca,0x25,0x6f,0xc7,0x5c,0x72,0xd2,0x51,0x98,0x1b,0x79,0xe,0xee,
0x19,0x77,0x52,0x6b,0x7,0x6c,0x7a,0xc0,0x75,0x9d,0xb0,0xd8,0x8a,0x3f,0xf9,0xae,
0x27,0xc7,0xe6,0x9b,0xfb,0x6e,0x5,0xfe,0xe1,0x3b,0xb6,0xc7,0x1b,0xec,0x3e,0x4,
0xcd,0x8d,0xba,0xc5,0x80,0xf8,0x5e,0xdc,0x5f,0xfc,0xdb,0x83,0xb1,0xfb,0xb3,0x5,
0xfe,0xb9,0x4,0xfb,0xdc,0x9c,0x1c,0xf8,0xcd,0xb2,0x4a,0x68,0x3e,0x9e,0xe0,0x1f,
0x4c,0x30,0x1c,0xc7,0xa4,0x5,0x97,0x96,0x3a,0x21,0xb8,0xb7,0xe0,0xe2,0xce,0x87,
0x4a,0x67,0x9d,0xf0,0xe,0xd3,0x3,0xf,0xc,0xb9,0x7a,0xf1,0x17,0x43,0xcd,0x25,
0xe7,0x90,0x6b,0x46,0x73,0xc9,0xd1,0x31,0x10,0x91,0x5a,0xe,0x6f,0xad,0x3f,0x3,
0x1d,0x87,0x97,0x39,0xfb,0x2,0x5e,0xe3,0x1,0x8f,0xe,0xc0,0x7f,0xc3,0x5c,0xc2,
0xc3,0xa3,0xa,0x78,0x8f,0xd,0xf,0xfe,0x3b,0xa3,0x22,0xb3,0xd,0x96,0x3,0x68,
0x51,0xf,0xfc,0x31,0x6f,0xf0,0x3b,0xaa,0xf3,0x65,0xfc,0xf,0xe7,0x40,0x93,0x59,
0x3f,0x42,0xf3,0x10,0x86,0xbf,0x93,0xb4,0xc,0xb6,0xf2,0x42,0x16,0xef,0xfa,0xc1,
0xd9,0x3e,0x5c,0xb,0xf8,0x8b,0x21,0xc7,0x8b,0x22,0x97,0xcc,0xe2,0xc5,0x44,0xf8,
0x3e,0xf9,0x34,0x3c,0xb7,0xa4,0x6,0x7c,0xfb,0x95,0xd4,0xca,0x17,0x74,0xcc,0x9,
0xf0,0x9e,0xe5,0xf8,0x1e,0xb6,0xff,0x32,0x11,0xe4,0x7e,0x4b,0x88,0xa1,0x51,0xf7,
0x1c,0x10,0xae,0x19,0xb5,0xa2,0xf8,0x13,0xcc,0x5,0x7,0x70,0xee,0x53,0xfc,0x67,
0x13,0xfc,0x83,0x11,0x7f,0x27,0xd1,0x71,0x82,0xbc,0x3e,0xae,0x4a,0xd2,0x13,0x55,
0x16,0xfd,0x50,0x2b,0x5b,0x71,0x8d,0xe1,0x2f,0x86,0x9a,0x4b,0x4e,0x24,0x7e,0x3a,
0xae,0x2f,0x46,0x1e,0x48,0x87,0x15,0x31,0xe7,0xe0,0x36,0xf2,0xb7,0x3a,0xd7,0xe,
0x79,0xaf,0x17,0xf1,0x79,0xb5,0x48,0xc2,0x3f,0xc9,0xec,0xb9,0x83,0x3c,0xe0,0xf8,
0xb7,0x32,0xea,0xb6,0xe,0x28,0xf0,0x7f,0x90,0xe2,0xcf,0x5,0xb1,0xa7,0xf8,0x7f,
0xc0,0xe7,0x7f,0x8,0xc7,0x3b,0x44,0x92,0x60,0xe5,0x35,0x2d,0x37,0xd8,0xf3,0x96,
0xc1,0x55,0x56,0xbd,0xe0,0x95,0xb,0x4,0xff,0xa1,0xd7,0x1e,0xfe,0x38,0xd4,0x78,
0x11,0xf7,0x28,0xe0,0x3e,0xb6,0x1f,0xc2,0x77,0x43,0xf0,0x76,0x0,0xdf,0x81,0xa5,
0xfa,0x9e,0x34,0xda,0xf5,0x1,0xa9,0x5e,0x4c,0x70,0x80,0xe8,0xb,0xb6,0xf,0xd7,
0x83,0x7f,0x32,0xc3,0xff,0xc1,0xb,0xc0,0xff,0x77,0x32,0xfe,0x47,0x10,0xff,0xdc,
0x1c,0x68,0x3c,0x87,0xe1,0xdf,0x3c,0x44,0xc1,0xbe,0x2e,0xa2,0xd1,0x15,0xaa,0x2f,
0x61,0xf3,0x17,0x8,0x7,0xae,0x55,0xfc,0x71,0x88,0xbc,0x11,0xae,0x25,0x60,0xe,
0x79,0xc7,0x8e,0x1d,0xb0,0xf8,0x93,0xaf,0xe1,0x85,0xcf,0x1,0xfc,0x86,0x96,0x7b,
0xb7,0x3,0x2e,0x7b,0xcc,0xd1,0x7,0x10,0xbd,0x17,0x14,0xfc,0xeb,0x33,0xff,0x4d,
0xfb,0x9f,0x2b,0xe3,0x9f,0x7b,0x98,0xce,0xff,0xc6,0x73,0xce,0x50,0xff,0x4f,0x48,
0xb,0x6f,0x12,0xa2,0x3c,0xaf,0x5,0x17,0x9c,0xfc,0x85,0x6b,0x11,0x7f,0x9d,0x1f,
0x80,0xf9,0xc2,0x81,0xd3,0xbf,0x84,0xbb,0xdf,0x4d,0x6,0xff,0x11,0x15,0x1e,0x5f,
0xf0,0xd,0x5d,0x3c,0xe0,0xb4,0x46,0xc8,0xed,0x3f,0x11,0x7c,0x3f,0x62,0x4f,0xf5,
0xbf,0xd4,0x7b,0xcb,0xa8,0x9f,0xfd,0x37,0xfd,0x7f,0xaa,0xf3,0xa9,0xdf,0x8f,0xf8,
0xe3,0xfc,0x3f,0xc,0x8d,0xe7,0x12,0xfc,0x27,0x54,0xd3,0xda,0x2f,0x94,0x16,0x92,
0xd0,0xd7,0x6a,0xcb,0xd,0x2d,0x17,0x2a,0x2d,0x36,0xa2,0x85,0xe2,0x27,0x3c,0x30,
0xec,0xda,0xc1,0xdf,0x29,0xe,0x98,0xb5,0xf2,0x5b,0x78,0xe8,0x9d,0x1d,0xd0,0x69,
0xc,0xdf,0x6f,0xf4,0x66,0x1d,0xe2,0x41,0x5d,0xef,0x99,0xd7,0x8a,0x39,0xfe,0x6c,
0x1f,0x7e,0x8a,0xc0,0x9f,0x88,0x51,0x7f,0xff,0x9f,0xc6,0xff,0xc2,0xe6,0xa3,0xe0,
0xfc,0x47,0xe,0x34,0x9e,0x77,0x6,0x9a,0x4d,0x22,0xf8,0x4f,0xac,0x36,0xf1,0x6f,
0xee,0x20,0x2d,0x74,0x52,0x2b,0x1e,0x48,0x22,0xc5,0x92,0xd7,0x2,0xfe,0xba,0x3c,
0xc0,0xa1,0x43,0x87,0xe0,0xf3,0xf5,0x3f,0xc0,0x93,0xc1,0xdf,0xc1,0x2d,0x63,0xf3,
0xc0,0x67,0x10,0x5b,0x27,0x6a,0x2f,0xf7,0xb8,0x76,0xe2,0x80,0x4b,0x3c,0x68,0xde,
0xe7,0x86,0x7c,0x46,0xc6,0x5f,0x88,0x51,0xbf,0xf8,0xdf,0xcc,0xff,0x65,0x66,0xa4,
0x9f,0xb4,0xe2,0x4f,0xe6,0xff,0x7c,0x82,0xff,0x64,0x82,0xbd,0xe0,0x80,0x45,0xaa,
0x3c,0x42,0x39,0x50,0xcd,0x64,0xa2,0x86,0xf,0xb5,0xd1,0xb,0x8a,0x6d,0xe8,0x76,
0x95,0xfb,0xff,0xba,0x3c,0xe0,0xa6,0xad,0x61,0xd0,0x7b,0xea,0x5a,0xb8,0xe3,0x9d,
0x14,0xa2,0xeb,0xcb,0xbc,0xd7,0x8e,0xc9,0xbd,0xa8,0x1c,0xd6,0x8,0xcd,0xbe,0xa4,
0xbd,0x58,0x6d,0x41,0x97,0x81,0xc7,0x78,0x1f,0x86,0x14,0x13,0xfb,0xf8,0x43,0x7,
0x4f,0x1a,0xf5,0xcb,0xff,0x99,0xf9,0xff,0x3,0xfb,0xf7,0x1d,0x12,0xf8,0xe7,0x1d,
0x21,0xf8,0x13,0x79,0x74,0x4d,0x25,0x34,0x7d,0xff,0x94,0x87,0x3,0x36,0x1e,0x54,
0x69,0x78,0x21,0x9,0xe7,0x44,0xb,0x55,0xbc,0xf2,0xe0,0xea,0xc5,0xdf,0x69,0x1d,
0x60,0xf4,0xbc,0x6f,0xa0,0xdb,0x98,0xdd,0xd0,0x61,0x34,0x99,0xef,0x3,0x94,0x7a,
0x72,0xb5,0xf,0x8d,0x4b,0xd,0xb9,0x2e,0x2f,0xe8,0xcb,0x73,0x3f,0x6d,0xc9,0x77,
0xfc,0x65,0x62,0x21,0x88,0xfd,0xf8,0xa2,0x7,0x5b,0x74,0x64,0xc4,0x21,0xa3,0x7e,
0xf9,0x7f,0x73,0xfd,0xef,0xe0,0x81,0xd8,0x83,0xe8,0xf7,0xa3,0xe4,0xe5,0x32,0xfc,
0xff,0xf4,0x79,0x15,0x34,0x9d,0x5e,0x3,0xcd,0xa6,0x9c,0xf2,0xe0,0xef,0x4d,0x1c,
0xb8,0xd0,0x42,0xc8,0x4,0x8f,0x2d,0x71,0xe4,0x1,0xe1,0x40,0xb7,0xab,0xcc,0xff,
0x73,0x5a,0x7,0xfc,0xf0,0xd3,0x4d,0xf0,0xc8,0xbb,0x5b,0xa1,0x4b,0x8,0x99,0xe3,
0x43,0x4a,0xad,0x3d,0xed,0xd4,0xfa,0x51,0x75,0x9d,0xd8,0xb5,0x5e,0xcc,0xaa,0x3,
0xf0,0x3d,0xb8,0xaf,0xfd,0x2f,0x93,0xa,0x59,0x2f,0x6,0x22,0xa9,0x1c,0xff,0x5d,
0xd1,0x51,0x7,0x8d,0xfa,0xad,0xff,0x99,0xeb,0xff,0xd1,0x51,0x91,0xdf,0xb,0xbd,
0x9f,0x77,0x24,0x97,0xea,0x80,0xfe,0x9b,0xcb,0xa1,0xc9,0xac,0xd3,0xd0,0x6c,0x2a,
0xc1,0xff,0xbd,0x6a,0xbb,0xd4,0x97,0xf,0xaa,0x4f,0xa9,0xe1,0xc0,0xd5,0x84,0xbf,
0xae,0xe,0x60,0xed,0x77,0x5b,0xa1,0xfb,0x84,0xd,0xd0,0x75,0xdc,0x61,0xf0,0x1d,
0x59,0x6e,0xeb,0x5f,0x65,0xd9,0x73,0xec,0xba,0x8f,0xc0,0xda,0xbf,0xdc,0x69,0x6d,
0x0,0x75,0x45,0x9b,0x41,0x25,0x30,0x68,0x71,0x1e,0x9b,0xff,0xbc,0xf,0x17,0xca,
0xb6,0x1f,0xb6,0x7c,0x6f,0xd4,0x7f,0x2f,0x20,0xad,0xff,0xf9,0x7e,0xd3,0xa6,0x65,
0x16,0xfc,0x9,0xbf,0x83,0x42,0x4b,0x69,0xe,0xa0,0xe9,0xfb,0x35,0x4,0xef,0x53,
0x1a,0x71,0xe0,0x84,0x1b,0x37,0x64,0xdb,0xa1,0xfa,0x8f,0x12,0xf,0xba,0x5d,0x5,
0xfe,0x9f,0xae,0xe,0x28,0x34,0x2c,0x12,0xfa,0x4f,0x5f,0xb,0xf7,0x8c,0x3b,0x8,
0x81,0x63,0x2b,0xac,0xfd,0xed,0x2c,0xbd,0x4e,0x75,0x3a,0x40,0xd3,0xd3,0xdc,0xb5,
0x46,0xc0,0xc3,0x1,0x7c,0x6f,0x9b,0x21,0x25,0x30,0xe6,0xe3,0x5c,0x8e,0x7f,0x8a,
0x89,0xff,0x37,0x6b,0xbf,0x5e,0x66,0xd4,0xaf,0xfe,0x7,0x7,0xad,0xff,0xfb,0x70,
0xd1,0xa2,0x51,0x26,0xfe,0x9c,0x3,0xdf,0x1c,0x2c,0x82,0x9b,0x49,0xc,0x80,0x36,
0xa0,0xf9,0xe4,0x53,0xa6,0x34,0x93,0x44,0x7e,0x5d,0xcf,0x91,0x53,0x7a,0x3e,0x28,
0xfa,0x40,0xf5,0xd,0xae,0x24,0xfe,0x4e,0x75,0x80,0x53,0x97,0xae,0x87,0xdf,0x8c,
0x8d,0x82,0x4e,0x21,0xc4,0xc6,0xf,0x2b,0xe3,0x3d,0x8b,0x94,0x7e,0x76,0x96,0x5e,
0xb7,0xf6,0x7e,0x3,0xda,0x9e,0xf6,0x6a,0x5f,0x52,0x8d,0xe,0x40,0x1d,0x81,0xf3,
0xff,0xcb,0xed,0x99,0xb4,0x1f,0x3,0xda,0x0,0x11,0x7,0xcc,0xf9,0xe0,0x3,0xac,
0xff,0xa9,0x6f,0xfd,0x1f,0xcd,0x1,0x8d,0x1e,0x1d,0xf4,0x22,0x9b,0xf7,0xc,0xff,
0x7c,0xf2,0x7c,0x6f,0x5a,0x3e,0xdc,0xfc,0xe1,0x39,0x68,0x36,0xf3,0x34,0xf5,0x1,
0x4c,0x99,0xec,0x79,0xde,0x5c,0x88,0xc4,0xd,0xfa,0xf8,0x9e,0x47,0x2c,0xba,0xc2,
0x85,0x3,0x32,0xf,0xae,0x4,0xfe,0x4e,0x75,0xc0,0xab,0xbe,0xde,0xc,0x7f,0x1e,
0xb7,0x19,0x6e,0x9b,0x54,0x4,0xed,0xdf,0xae,0xb0,0xf7,0xb0,0x52,0x38,0xd0,0x4e,
0xd6,0x1,0x6a,0xcf,0x9,0xa7,0xfb,0x1a,0xc8,0x39,0x21,0x35,0x27,0x48,0x9e,0xfb,
0xf6,0x61,0xf6,0xff,0x60,0x7c,0x1a,0xc5,0x1f,0x7b,0xae,0x8a,0x7e,0x7c,0x23,0xde,
0x1a,0x8e,0xf7,0x94,0xab,0x6f,0xfd,0xaf,0x59,0xff,0xcf,0xec,0xbe,0x47,0xf2,0xf3,
0x8e,0x40,0xfb,0xe5,0x67,0xa0,0xf5,0x7,0x35,0xd4,0x6,0x58,0x38,0xe0,0x24,0x6e,
0x3a,0xc2,0xc9,0x6f,0xd0,0xf0,0xa0,0xdb,0xf0,0xcb,0x8b,0xbf,0x6e,0x1f,0xc0,0xc6,
0x2d,0xdb,0xa1,0xc7,0x94,0x6f,0xe0,0xf6,0xf1,0x19,0xe0,0xf7,0xee,0x49,0x6b,0xbf,
0x12,0x99,0x3,0x6a,0x8f,0x53,0xe1,0x7,0x68,0x74,0x80,0xeb,0x1e,0x12,0x2d,0xfe,
0xcc,0x3f,0x8,0x1c,0x74,0x1c,0xee,0x1b,0x7d,0x8c,0xf7,0x62,0x49,0x5,0xb9,0x1f,
0x9f,0x71,0x61,0xf5,0xff,0xe6,0xfe,0x9f,0xe4,0xa4,0xc4,0x34,0x19,0xfb,0xfc,0x23,
0x47,0xe0,0x99,0x75,0x55,0xd0,0x7e,0x41,0xd,0x8b,0x3,0x88,0x1f,0x68,0x91,0x29,
0xb5,0xe0,0x84,0x13,0x7,0xdc,0xf4,0xc1,0x65,0xc4,0x5f,0xb7,0xf,0x8,0xeb,0x79,
0x86,0xce,0x5e,0xb,0xdd,0xc6,0xc5,0x40,0xa7,0x49,0x64,0xbe,0x8f,0x50,0xfa,0x13,
0x48,0x7d,0x6a,0x2c,0x7d,0xeb,0xd4,0x5e,0xa6,0x3a,0xfc,0x2d,0x1c,0xd0,0xf9,0x1,
0xf6,0x3d,0x64,0xe8,0x33,0x76,0x1c,0x71,0x2,0xba,0xcf,0x2e,0xe4,0x3d,0xd8,0x3c,
0xf8,0xc7,0xee,0x8b,0x49,0x33,0x2e,0x6c,0xff,0xf,0xe,0xba,0xff,0x2f,0x22,0x3c,
0x6c,0x8d,0x5,0xff,0xbc,0x5c,0x98,0x1c,0x55,0x2,0x6d,0x16,0xff,0x8,0x4d,0x88,
0xd,0x68,0xaa,0xe2,0x3f,0x55,0xc3,0x9,0x93,0x1b,0x76,0xf1,0xf8,0xa,0xd5,0x4c,
0x74,0xfe,0x1,0xe7,0x40,0xb7,0xb7,0x2e,0x2d,0xfe,0x4e,0xfb,0x0,0x3f,0x58,0xf5,
0x2d,0xfc,0xef,0xb8,0x1d,0x70,0xcb,0x64,0x82,0xdf,0xe8,0x93,0x9e,0xde,0x26,0x72,
0x8f,0xa,0x49,0x7,0xb4,0xf5,0xc2,0x1,0x4b,0xdf,0x19,0xb5,0x8f,0xbd,0xd3,0x3e,
0x32,0xc5,0x17,0x44,0xfc,0x3,0x47,0x95,0xc0,0xe4,0x2f,0x8f,0xd0,0x9e,0xc,0xc2,
0xfe,0xa3,0x6c,0xd9,0xbc,0x79,0x8d,0x71,0x61,0xfb,0xff,0x70,0xd0,0xfd,0xbf,0x2b,
0x96,0x2d,0x1b,0x9e,0x2f,0xeb,0x7f,0x32,0xff,0x43,0x93,0x8f,0x42,0xa3,0x25,0xe7,
0xa0,0xf9,0x7,0x4,0xff,0x69,0x4,0xef,0xf7,0xbd,0x88,0xca,0x9,0x57,0x1e,0x28,
0x7e,0xa2,0xa4,0xb,0x2e,0x15,0xfe,0x4e,0xb5,0x5b,0x5f,0x7e,0xfb,0x3,0x3c,0x1d,
0xb2,0x11,0xba,0x4e,0xca,0x5,0xdf,0xe0,0x4a,0xfb,0x9e,0x74,0xb5,0x5f,0xd,0xd7,
0x1,0x96,0xfe,0x85,0x1a,0x3b,0x60,0xeb,0x3b,0xa4,0x8b,0x5,0x5c,0xf0,0xa7,0xcf,
0xc9,0xe7,0xb0,0x27,0x5e,0x54,0x6c,0x26,0xef,0xbf,0x98,0xa,0xa2,0x2f,0xdb,0xa2,
0x85,0xb,0xf1,0x1e,0x82,0x17,0xba,0xff,0x97,0xfa,0x0,0xf,0x3f,0xfc,0xf0,0x83,
0x4c,0xef,0xe7,0x32,0xa1,0x3a,0xe0,0x8,0x74,0x5d,0x7d,0x6,0xda,0xcc,0x27,0xf8,
0xcf,0x38,0xcd,0xfc,0x0,0x49,0x9a,0x4a,0x22,0x1f,0x33,0x1e,0x28,0x7c,0x90,0x39,
0xa0,0xf8,0x8c,0xcd,0x14,0x1f,0xb1,0xdb,0x88,0x8b,0x8f,0xbf,0xae,0xf,0xc0,0xf7,
0xdb,0xc2,0xe1,0xcd,0x69,0x6b,0xe1,0xee,0xf1,0x89,0x10,0x30,0xa9,0x8a,0xed,0x43,
0x93,0xf7,0x23,0x3b,0xe2,0x2f,0xf5,0x31,0xb4,0xe1,0x5f,0x6a,0x8d,0x7,0x1d,0xf0,
0x37,0x75,0x80,0x5a,0x2b,0x2a,0xe1,0x4f,0xe7,0xfe,0xb0,0x13,0x70,0xef,0xd8,0xe3,
0xb4,0x27,0x83,0xe8,0xc9,0x23,0xf0,0xff,0xfd,0x43,0xf,0xe1,0xba,0xff,0x85,0xee,
0xff,0x37,0xfb,0x7f,0x10,0x7f,0x32,0x4d,0xe0,0x9e,0x9f,0x7f,0x4,0xa,0x88,0xf,
0x3c,0x60,0x5b,0x5,0xb3,0x1,0xb3,0xb8,0xe,0x20,0xd2,0x54,0x23,0xf4,0x75,0x89,
0xb,0x56,0x9d,0xa0,0xe7,0x81,0xd5,0x4f,0xf4,0xf8,0x5,0x17,0x13,0x7f,0x5d,0xce,
0x76,0xf7,0xee,0xdd,0xf0,0xee,0xa2,0x75,0xf0,0xeb,0xe0,0x5d,0xd0,0x79,0xa,0xd1,
0xef,0x74,0x6f,0xbb,0xb2,0xf,0x55,0xed,0x5b,0xa3,0xf6,0x29,0x92,0x7d,0x41,0xca,
0x1,0xa5,0xbf,0xb9,0xe9,0x7,0x9e,0x70,0xf4,0x3,0x9c,0x72,0xc2,0xa2,0xcf,0x18,
0xbe,0x2f,0x30,0xa8,0x14,0x6,0xaf,0x28,0xa0,0x3d,0xd8,0x32,0xb9,0xfe,0x47,0x39,
0x10,0xbb,0x1f,0x6d,0xff,0xc5,0xe8,0xff,0x81,0x83,0xf6,0xff,0xd9,0x1e,0xba,0x6d,
0xb1,0xc0,0xbf,0x80,0x4b,0x68,0xca,0x51,0xb8,0x69,0xe9,0x79,0x68,0x36,0xf7,0x47,
0xa6,0x3,0xa6,0xd7,0xd8,0xc5,0x81,0xf,0x56,0x1e,0xb8,0xf8,0x8,0xb2,0x9f,0x48,
0x74,0xc1,0xc5,0xc0,0x5f,0x8d,0xe7,0x44,0x1f,0xa0,0x25,0x6b,0x36,0xc1,0xa3,0xc1,
0x5b,0xe0,0xb6,0x69,0xe4,0x1a,0x87,0x54,0x59,0xf7,0x9f,0x8d,0x52,0xfa,0x1b,0x99,
0x1c,0x70,0xc7,0xdf,0xe3,0x7,0xd8,0xf3,0x1,0xce,0x39,0x61,0x69,0x5d,0x40,0xa3,
0x3,0xf0,0xb9,0xcf,0x80,0x13,0xf4,0xb7,0x36,0xef,0xce,0xa6,0xfb,0xb2,0x33,0x24,
0xfc,0x37,0x7d,0xb7,0x71,0xb1,0x71,0x71,0xfa,0xff,0xe0,0xa0,0xfd,0xbf,0x26,0x4e,
0x18,0xff,0x9c,0x39,0xff,0x11,0xff,0x7c,0xc6,0x81,0x2e,0x9f,0x92,0x38,0x70,0x21,
0xd7,0x1,0x94,0x3,0xb5,0xe7,0x81,0xab,0x3e,0x70,0xb0,0x9,0xdd,0x46,0x5e,0x18,
0xfe,0x22,0x67,0x8b,0xf1,0x5c,0x61,0x61,0x21,0xcd,0xd9,0xae,0xdb,0xb4,0xd,0xfe,
0x35,0x65,0x3d,0xdc,0x36,0x35,0xb,0xfc,0xa7,0x54,0x7b,0xf6,0xa1,0xa9,0xfb,0xf,
0x75,0x1c,0x90,0xfa,0x96,0xd9,0x62,0x1,0xb5,0xd7,0xb9,0x5b,0x4e,0x48,0xd7,0x57,
0xc2,0x21,0x17,0x80,0xfc,0x8,0x78,0xab,0x4,0xee,0x1d,0x77,0x2,0x44,0x4f,0x96,
0x4c,0xae,0xff,0x51,0xde,0x1d,0x3b,0xf6,0x39,0xe3,0xe2,0xf5,0xff,0x32,0xd7,0x2,
0xb2,0xb3,0x32,0xf3,0xb,0x14,0xe,0x4,0x85,0x97,0x43,0xf3,0x8f,0xce,0xb2,0x7c,
0xf0,0x4c,0xce,0x1,0x59,0x74,0x5c,0x98,0xee,0x4d,0x1f,0xd8,0x6d,0x82,0xe0,0x40,
0xb7,0x51,0xf5,0xc3,0x5f,0xd7,0x7,0x70,0x7b,0x78,0x24,0xc,0x20,0xf1,0xdc,0xfd,
0x93,0x62,0xa1,0xd3,0xcc,0x2a,0x68,0x3d,0xae,0xd2,0xbe,0xf7,0xa8,0xde,0xf8,0xb,
0x3f,0x40,0xf2,0x5,0x74,0x7e,0xa0,0x9a,0x13,0x74,0xd3,0x1,0xbd,0xd9,0x23,0xc6,
0x8f,0x3e,0x6f,0x97,0xc2,0x98,0x35,0x5,0xc0,0x7a,0xb2,0x64,0x98,0xd8,0x27,0xc6,
0xc7,0xe5,0x1b,0x17,0xb7,0xff,0x1f,0xe,0xda,0xff,0x73,0xf3,0xe6,0xef,0xa7,0x15,
0xe4,0xe7,0x81,0x2c,0x31,0x19,0x85,0x70,0xd3,0x72,0x80,0x96,0xb,0xb8,0xe,0x20,
0x1c,0x68,0xa2,0xe3,0x81,0x13,0x1f,0x54,0xdb,0xa0,0xb3,0x9,0x92,0x2e,0xa8,0x2b,
0xfe,0x4e,0x7d,0x40,0xa7,0xaf,0xdc,0x0,0xbf,0x9b,0x10,0x1,0x5d,0x67,0x97,0x41,
0xdb,0x89,0x55,0x9e,0x3a,0x73,0x65,0xbf,0x91,0xaa,0x3,0x6c,0xbd,0x49,0x6a,0xc5,
0x1,0xe9,0xbe,0x17,0xba,0x9c,0xa0,0x23,0xfe,0xf6,0x38,0x0,0x5f,0xf3,0x1b,0x56,
0x42,0x7d,0x8f,0x9d,0x7,0xb3,0x69,0x1f,0xb6,0x4c,0xae,0xff,0x51,0xd6,0xad,0xfb,
0x66,0x9a,0x71,0x71,0xfb,0x7f,0xe2,0xa0,0xf5,0x0,0x43,0x86,0xc,0x7e,0x44,0xc5,
0x1f,0xe5,0xd5,0x2d,0xe4,0xfa,0x2d,0x61,0x3a,0x0,0x39,0x40,0xf1,0xd7,0x89,0xc9,
0x3,0x67,0x7d,0xe0,0xe8,0x1b,0x8,0xfc,0x6b,0xa9,0xff,0x65,0x1b,0x8f,0xf1,0x9c,
0xc8,0xd9,0xae,0x5e,0xbb,0x19,0x9e,0x18,0xbf,0x9,0xee,0x9a,0x71,0x14,0x7c,0xc9,
0xf7,0xb1,0xba,0x42,0x65,0xff,0x91,0x8b,0xe,0xd0,0xe2,0x2f,0x71,0xc0,0x9e,0xf,
0x50,0xf1,0xb7,0xe6,0x3,0xb4,0x39,0x61,0xa7,0x35,0x21,0xf2,0x88,0x3a,0xc3,0x6f,
0x74,0x39,0xf4,0x5a,0x5a,0x4,0xac,0x27,0x47,0xba,0xc7,0xff,0x27,0xd2,0xbf,0x7f,
0x3f,0xec,0x3,0x7f,0xb1,0xfb,0xff,0x9a,0xfd,0xbf,0xf7,0xef,0xdb,0xb7,0x41,0xc5,
0x7f,0x5d,0xc2,0x31,0xb8,0x69,0x5,0x40,0x8b,0x85,0x67,0x68,0x6d,0x38,0xee,0xf,
0xa1,0x32,0x13,0x6d,0xc2,0x8f,0xa6,0x4e,0x68,0x62,0xd3,0xd,0x76,0xe,0x34,0x53,
0x39,0xa0,0xd8,0x82,0xda,0xcc,0x7f,0xa7,0x9c,0x6d,0xcf,0x69,0xdf,0xc0,0x5d,0x93,
0x53,0x21,0x70,0xc6,0x29,0x68,0x15,0x2c,0xd7,0x9b,0x5b,0xf7,0x9a,0xb4,0x52,0x39,
0x60,0xd3,0x1,0xce,0xbe,0xa0,0xda,0xe7,0xda,0xd2,0xd3,0x5e,0xbd,0x9f,0x85,0x57,
0x1f,0xc0,0x8a,0x3f,0x1e,0xfb,0xc,0x2d,0xa1,0xbd,0xd2,0x7e,0xd8,0x9b,0x3,0xa2,
0x27,0x8f,0xe8,0xcb,0x17,0x1d,0x15,0xb9,0xc1,0xb8,0x34,0xfd,0xbf,0x71,0xd0,0xfe,
0xff,0xcb,0x96,0x2e,0x7d,0x55,0xc6,0xbe,0x30,0x3f,0x9f,0x3e,0x3e,0xb2,0xbe,0x6,
0x5a,0x2c,0x3d,0x4b,0x6b,0x43,0x71,0x7f,0x88,0xc9,0x1,0x22,0x4d,0x67,0x79,0x6c,
0x83,0x5e,0x1f,0x8,0xbf,0x91,0xd9,0x87,0x66,0x5a,0x7b,0xc0,0x78,0xe0,0x86,0xbf,
0xd3,0x7d,0x0,0x86,0xcf,0x59,0xb,0xbf,0x9a,0xb0,0x17,0x6e,0x99,0x75,0x12,0x5a,
0x4f,0xaa,0xb6,0xd4,0x18,0xdb,0xf6,0x1d,0xa9,0x7b,0x91,0xd5,0x7e,0x4,0x8e,0xf8,
0x6b,0xe6,0xbf,0x6b,0x3e,0xa0,0x54,0xb3,0x26,0x50,0xe2,0x5a,0x1f,0x84,0xef,0xf1,
0x1b,0x51,0xa,0x4f,0x7c,0x70,0x82,0xf6,0x5f,0xc3,0x3d,0xd9,0x99,0x12,0xfe,0x8b,
0x16,0x2c,0xc0,0xfb,0xc3,0x5e,0xaa,0x7b,0x80,0x98,0xf7,0xff,0x48,0x4d,0x49,0x8e,
0x29,0x94,0xf1,0x2f,0xc8,0xb7,0xe8,0x0,0xac,0xf,0xa7,0x1c,0x10,0xc2,0xf1,0x17,
0x62,0xfa,0x8,0x2e,0x1c,0xd0,0xdb,0x3,0x3d,0xfe,0x72,0xce,0x16,0x6b,0x70,0xc4,
0x7d,0x40,0xe6,0xae,0xde,0x8,0x7f,0x18,0x1f,0xa,0xb7,0xcd,0x26,0xf3,0x88,0x7c,
0xde,0x53,0x47,0x22,0xe1,0x6f,0xe1,0xc0,0x49,0x3b,0x7,0x34,0xf8,0xdb,0xec,0x80,
0x12,0xb,0x6a,0xfd,0x0,0x6d,0x3e,0xc8,0xba,0x26,0xd0,0x56,0x8b,0xff,0x9,0x76,
0xcf,0x3a,0x72,0xec,0x3f,0xa4,0x84,0xfe,0xf6,0xd7,0xd1,0xb9,0x14,0x7b,0x9c,0xff,
0xc2,0xff,0x3f,0x10,0x1b,0x1b,0x63,0x5c,0xfa,0x7b,0x0,0x99,0x3a,0xa0,0x90,0x60,
0x6e,0x11,0xc2,0x3,0xf4,0x3,0x9a,0x2d,0x3b,0x7,0x37,0xcf,0xe7,0x76,0x60,0xb6,
0x46,0x24,0x1e,0x34,0x71,0xd2,0x5,0x33,0xec,0x36,0x41,0xc4,0x8a,0x2a,0xfe,0x72,
0xce,0x16,0x6b,0x70,0xe2,0xe3,0xe3,0x69,0xce,0xf6,0x99,0x49,0xdf,0xc2,0xed,0x53,
0x73,0x20,0x80,0x7c,0x77,0xcb,0x89,0xfa,0x5a,0x32,0x1b,0x7,0x1c,0x75,0x40,0x85,
0xc5,0xf,0x68,0xed,0xe8,0x7,0x6a,0xd6,0x4,0x94,0x58,0xd0,0x6d,0x5d,0xd0,0xd2,
0x7b,0x5a,0xed,0x2b,0x46,0xde,0xe7,0x3b,0xaa,0x14,0x7a,0x2d,0x2f,0x6,0xb1,0x1f,
0x5f,0xe8,0x7f,0x94,0x45,0xb,0x2f,0xe9,0xdc,0x17,0xc3,0xaa,0x3,0x2c,0xf8,0xf3,
0x58,0x0,0x75,0xc0,0xe2,0x33,0xb4,0x46,0x9c,0x72,0xc0,0xb,0xf,0x9a,0xaa,0x76,
0x41,0xe0,0xaf,0xe1,0x80,0xc0,0x5f,0xdc,0xff,0x9,0x7d,0x3b,0xcc,0xd9,0x16,0x17,
0x17,0xd3,0x9c,0xed,0x96,0xd0,0x8,0xe8,0x33,0x63,0x2d,0xdc,0xf7,0x5e,0x3c,0x74,
0x9e,0x43,0x6c,0x3c,0xe6,0xc,0x26,0x8a,0xda,0x1,0x3b,0x7,0x5a,0xca,0xb5,0xe5,
0x3a,0x3b,0xa0,0xf6,0x24,0xb1,0xe4,0x83,0x9c,0xfd,0x40,0x2d,0xfe,0x6e,0x6b,0x2,
0x32,0xfe,0x9a,0x38,0x0,0xf5,0x82,0x3f,0x89,0xf7,0x3b,0x4,0x57,0xc0,0xae,0xb8,
0x1c,0x12,0xc3,0xb0,0x7e,0x1c,0x2,0xfb,0x43,0x7,0x2e,0xcb,0xdc,0x17,0x83,0xea,
0x80,0x15,0xcb,0x97,0xbf,0x22,0xe3,0x5f,0xc0,0x1f,0x47,0x47,0x54,0x50,0xe,0x34,
0x43,0x3b,0x30,0x57,0xe2,0x80,0x2c,0x26,0xf,0x9c,0x74,0x41,0x8d,0xa3,0x6f,0xd8,
0xed,0xed,0x6f,0xe9,0xbe,0x29,0xd4,0xf1,0x18,0xc7,0x67,0x65,0x65,0xd1,0x9c,0xed,
0xf8,0x8f,0xd6,0xc3,0xaf,0x27,0xee,0x84,0xae,0x73,0xcb,0xa1,0x2d,0xd6,0x25,0x49,
0x6b,0x86,0xa2,0xbe,0xb4,0xde,0x3a,0x40,0xed,0x4b,0xe4,0x68,0x3,0xb8,0xf,0x60,
0xe3,0x80,0xb2,0x2e,0xac,0x5b,0x17,0x74,0xf2,0x3,0xc9,0xa3,0x2f,0xf9,0x1c,0x9e,
0xc7,0x98,0xaf,0x8f,0x42,0xe,0x62,0x8f,0xc2,0xfb,0xb1,0xa1,0x2c,0xfe,0x70,0xd1,
0x2b,0xc6,0xe5,0xb9,0xff,0x1f,0xe,0xf3,0xfe,0x9f,0xe9,0x69,0xa9,0x7b,0x65,0xfd,
0xcf,0x78,0x90,0x7,0xbf,0xfa,0xea,0x47,0x68,0xbe,0xec,0x2c,0xdc,0xbc,0x80,0x71,
0x80,0xc6,0x85,0x8e,0x1c,0x70,0xd0,0x5,0xba,0x7c,0x1,0xc7,0x7f,0xdd,0xba,0x75,
0x34,0x86,0xc7,0x75,0xd9,0xa5,0x5f,0x6c,0x82,0xc7,0x26,0x6c,0x81,0x3b,0xe7,0x14,
0x83,0x2f,0xe1,0x53,0x33,0x87,0x75,0x63,0x5b,0x7d,0xb9,0xbc,0xdf,0x48,0xa7,0x3,
0xdc,0xfc,0xc0,0x3a,0xe7,0x2,0xea,0x88,0x3f,0xd7,0x1,0x38,0xef,0xd1,0x67,0xf0,
0x1d,0x5d,0x6,0xf,0xce,0x2a,0x35,0x7b,0xaf,0xd1,0x7e,0x3c,0x1c,0xfb,0xb8,0x43,
0x7,0xb1,0xcf,0xdf,0xe5,0xbc,0xff,0x27,0xe,0x7a,0xff,0xdf,0x51,0xa3,0x46,0x3e,
0x7c,0xb4,0xb0,0x0,0x54,0x5f,0x60,0x7b,0x4a,0x31,0xb3,0x3,0x4b,0xce,0x50,0x5f,
0xc0,0xe4,0x80,0xca,0x3,0x7,0x1f,0xd1,0x66,0xb,0x84,0x5f,0x48,0xf0,0xbf,0x37,
0xe8,0x7b,0x58,0xb2,0xe2,0x13,0x58,0xb1,0xfa,0x73,0x78,0x71,0xca,0x37,0x70,0xe7,
0xb4,0x4c,0xe8,0x30,0xf7,0x34,0xb4,0x78,0x5f,0xaa,0x33,0xa3,0xf5,0x65,0xa,0x7,
0x44,0x7d,0xb9,0xe,0xff,0x60,0x65,0xbf,0xe9,0x58,0x89,0x3,0xae,0x36,0xa0,0x2e,
0x6b,0x2,0xd6,0x7c,0xb0,0x2d,0x1f,0xa8,0xe0,0x2f,0xb0,0xf7,0x19,0x53,0x4e,0xcf,
0x69,0xeb,0xfe,0x5c,0x73,0x1f,0xbe,0xdc,0x8f,0x6f,0xf8,0xb0,0xa1,0x78,0x1f,0xf0,
0xcb,0x79,0xff,0x5f,0x31,0xe8,0xfd,0xbf,0x77,0xef,0xda,0x39,0xf,0x39,0x60,0xe5,
0x41,0x1e,0x8c,0x8e,0xe4,0x76,0xe0,0x43,0xe6,0xb,0x50,0x5b,0x30,0x47,0x88,0x3,
0xf,0x44,0x9c,0xa8,0xd5,0x3,0x4c,0x17,0xdc,0xf1,0xc1,0x51,0xe8,0x16,0xb4,0x11,
0xee,0x1d,0xbf,0x1b,0xba,0xcc,0xaf,0x82,0xd6,0x33,0x4e,0x5b,0x73,0x84,0x96,0xda,
0x1,0xb5,0x7e,0xa8,0xca,0xee,0x7,0x48,0x36,0xc0,0xca,0x1,0x5d,0x3e,0xc8,0x4b,
0x1c,0x30,0x52,0x13,0x7,0x68,0x6a,0x83,0x4,0xfe,0x6d,0x5c,0xe2,0x0,0xfc,0xb7,
0x76,0xa3,0xca,0xe8,0x39,0x8d,0xf9,0xa6,0xc8,0xec,0xc1,0x91,0x23,0xf5,0xe2,0xb,
0xdb,0xb1,0x63,0x9e,0x71,0x65,0xee,0xff,0x8d,0x83,0xae,0xb,0xbc,0xf8,0xc2,0xb,
0xb7,0xe7,0x1e,0xce,0xc9,0x13,0x1c,0x38,0x2a,0xe9,0x1,0xcc,0x9,0x34,0x5e,0x7e,
0x1e,0x1a,0x2f,0x3c,0xeb,0xe1,0xc0,0x5c,0x8e,0xbf,0xaa,0xf,0x54,0x5b,0xa0,0x8b,
0xd,0x8,0x7,0x5a,0x91,0x7f,0x6b,0x43,0xde,0xd7,0x96,0x88,0x76,0xad,0xc0,0xa9,
0xa6,0xd0,0x55,0x7,0x54,0x99,0xfb,0xce,0x5b,0x6a,0xf0,0x77,0x8a,0x3,0x9c,0xd7,
0x4,0x24,0xe,0xe8,0xf0,0x77,0x59,0xf,0x60,0xd8,0x97,0x50,0xdd,0xd1,0x2a,0xf8,
0x24,0x3c,0xbe,0xa8,0xd4,0xdc,0x7f,0x8d,0xf8,0xb,0xec,0x53,0x53,0x53,0xf2,0xba,
0x77,0xef,0x8e,0xf7,0xfa,0xba,0x98,0x79,0xfe,0xba,0xe,0xf4,0x37,0x1a,0xcf,0x9f,
0x37,0xf7,0x49,0x13,0x7f,0x89,0x3,0x69,0xb9,0x85,0xd0,0x6e,0xf5,0x39,0x68,0x4a,
0x62,0x42,0x99,0x3,0x42,0xf4,0x1c,0xf0,0x12,0x17,0x4c,0x57,0xf3,0x2,0x9a,0x75,
0x2,0xb9,0x66,0x40,0x53,0x43,0x68,0xea,0x0,0x19,0xff,0x60,0x65,0xbf,0xb9,0xda,
0x93,0x4a,0xee,0x5b,0xaa,0xd3,0x1,0xe,0x36,0xa0,0xb5,0x25,0x17,0xec,0x3d,0xe,
0x44,0xec,0xe9,0x3d,0xb3,0xc7,0x9f,0x84,0xc0,0xc9,0x95,0x90,0x98,0xc6,0xf6,0x5f,
0x1f,0xe6,0x73,0x5f,0xc8,0xac,0x99,0x33,0x9f,0x34,0x58,0x9e,0xf7,0x72,0xf8,0x7c,
0x6e,0x3,0x75,0x4f,0x8b,0x98,0xbd,0x7b,0xe6,0xc8,0x1c,0x40,0xfc,0x91,0x7,0xdb,
0x53,0x8b,0xa1,0xdd,0x27,0xe7,0xa0,0xd9,0x52,0xe2,0xf,0x2a,0x1c,0x30,0x6d,0x41,
0x5d,0xf4,0x80,0x26,0x26,0xb4,0xad,0x13,0x4c,0x96,0xed,0x40,0x2d,0x74,0x40,0xb0,
0x53,0x2c,0x88,0xd8,0x57,0x7a,0xf5,0x3,0xa9,0xe,0xf0,0x86,0xbf,0xc4,0x1,0x5b,
0x1c,0x28,0xf0,0x27,0xc7,0xf8,0xfe,0xb6,0x21,0x4,0xfb,0x29,0xc4,0xe6,0xc7,0x1e,
0x81,0xdc,0xc3,0x9e,0xb9,0x2f,0x24,0x2a,0x32,0x62,0x8e,0xc1,0xf6,0x74,0x5f,0x9,
0xbd,0xaf,0xe,0x11,0xf,0xb4,0xcd,0xc8,0x48,0xdf,0x6d,0xe1,0x40,0x21,0xe3,0xc0,
0x82,0x7d,0xa5,0xd4,0x17,0x68,0xae,0x70,0xa0,0x89,0xc5,0x27,0xd0,0xe4,0xb,0xb4,
0xbe,0x80,0x3e,0x2f,0x60,0xd6,0xe,0xe8,0xfc,0x0,0x9b,0xe,0xd0,0xf9,0x0,0x55,
0x4a,0xbf,0x9,0x4d,0x5f,0x3a,0x17,0xfc,0x5b,0xd9,0x72,0x81,0x1a,0x3f,0x50,0xc2,
0xdf,0x92,0xb,0x1c,0xc8,0x8e,0xf1,0xfd,0x88,0x3d,0x72,0x74,0xfe,0xf6,0xa3,0x7c,
0xdf,0x3d,0xc1,0x5e,0xc2,0x3f,0x31,0x21,0x7e,0xb7,0xc1,0xf6,0x74,0x5c,0x4e,0x7f,
0xdf,0xdb,0x40,0xdf,0xf3,0xa6,0x17,0xfe,0xf5,0xaf,0xdb,0xf3,0xf3,0x8e,0x94,0xab,
0x7a,0xa0,0xb0,0xa0,0xc0,0x91,0x3,0x56,0x1e,0x28,0x7a,0x40,0x8d,0xb,0xd5,0x98,
0xf0,0x62,0xe8,0x0,0x75,0x9f,0xb9,0x25,0x17,0xe0,0x84,0xff,0x49,0x7b,0x9f,0x72,
0x17,0x1f,0x40,0x8d,0x3,0xda,0x2a,0xf5,0xc1,0x68,0xf,0x4c,0xec,0x27,0x32,0xec,
0xc5,0x9e,0xdb,0xc3,0x39,0x59,0xa6,0xdf,0x9f,0x95,0x91,0x5e,0xfe,0xfc,0x73,0xcf,
0xdd,0x61,0xb0,0x9a,0xee,0xcb,0xed,0xef,0x7b,0x1b,0x68,0x87,0x6e,0x5e,0xb2,0xf8,
0xc3,0x27,0x64,0xe,0x30,0x3b,0x80,0xcf,0x25,0x3d,0xf0,0x11,0xe7,0xc0,0x7c,0x2f,
0xb1,0xc1,0x6c,0xb6,0x76,0xd4,0x74,0x96,0x66,0xbd,0x40,0xe6,0x80,0x57,0xfc,0x4f,
0xd9,0xf0,0xd7,0xc7,0x1,0x4e,0x36,0xc0,0xbb,0xf,0xa0,0xaf,0xf,0x74,0x8e,0x3,
0xcd,0xfb,0x5a,0x13,0x9d,0x40,0xef,0x97,0x4c,0xec,0x3d,0xf2,0x74,0xfe,0xe,0xc4,
0xfe,0x30,0xeb,0xb5,0x44,0xf1,0xe7,0xfd,0x77,0x8,0xfe,0xc4,0xcf,0xfa,0xff,0x6,
0x8b,0xf5,0xae,0xb4,0xcd,0x77,0x1a,0x58,0x6b,0xdc,0x24,0x3c,0x3c,0x6c,0xb8,0x6a,
0x7,0x50,0x7,0x14,0x4a,0x1c,0x68,0xca,0xf5,0x80,0x99,0x1f,0x98,0xeb,0x6e,0x7,
0x6c,0x79,0x1,0x1d,0xfe,0xef,0xdb,0xfd,0x40,0x93,0x3,0x1a,0x1b,0xd0,0xdc,0x2d,
0x17,0xa4,0xd1,0x1,0x6e,0x6b,0xc2,0x16,0x1f,0x40,0xd1,0x1,0x8e,0xeb,0xc1,0xe4,
0x98,0xf2,0x66,0x62,0x25,0x3d,0xcf,0xf9,0x3b,0x8a,0xcc,0x79,0x6f,0xc1,0x9e,0xc8,
0xd6,0x1f,0x7e,0xc0,0x7a,0xee,0x26,0xc6,0x85,0xd5,0x73,0x5f,0xea,0x81,0xf6,0x8,
0xcf,0xaf,0xd9,0xf6,0xed,0xa1,0x23,0xac,0x1c,0x10,0xfa,0xc0,0x63,0xb,0x9a,0x60,
0x5c,0xb0,0x88,0xeb,0x1,0x57,0x3b,0xa0,0xd4,0x95,0x28,0xb1,0x80,0x4d,0x7,0xd4,
0x16,0x7f,0xad,0xd,0x70,0x8e,0x3,0xb4,0x75,0x21,0xf2,0x9a,0xb0,0xae,0x3e,0x58,
0xb7,0x16,0x38,0x8c,0xcd,0x79,0xbc,0x5f,0x6e,0xcb,0xf7,0x2a,0xe9,0xb9,0x2e,0x8,
0x2b,0xa2,0xbd,0x75,0xe8,0x5e,0x5b,0xa9,0xe7,0x12,0x62,0xbf,0x65,0xf3,0xf7,0x23,
0xc,0x56,0xcf,0xf7,0x73,0xe3,0xea,0xb1,0xf9,0x4e,0x3,0xcf,0x8f,0xc6,0x4,0xf1,
0x71,0x87,0x96,0xd9,0xfc,0x41,0x1a,0x1f,0x32,0xe,0x60,0x5c,0xd0,0x68,0xf9,0x79,
0x68,0xf2,0x21,0xe1,0xc0,0x2,0xe6,0x13,0x98,0xf9,0x81,0xda,0xf8,0x82,0x5a,0x1b,
0x50,0xa3,0xb1,0x1,0xba,0x38,0xb0,0xca,0xc1,0xf,0x54,0xf1,0x77,0x5a,0xf,0xd0,
0xe4,0x2,0x1d,0xea,0xc3,0xd5,0xfb,0x9e,0xd3,0x7b,0x99,0x10,0xff,0x12,0xcf,0xd3,
0x7f,0xd6,0x29,0x58,0xb5,0xf3,0xa8,0xd9,0x5b,0x47,0xf4,0x58,0x13,0xb2,0x7f,0x5f,
0xc,0xee,0xe1,0x16,0xbe,0xfe,0xd5,0x8e,0xbd,0x18,0xa2,0x5e,0xa8,0x45,0x4a,0x72,
0xd2,0x17,0x96,0xdc,0x80,0xe4,0x13,0x6c,0x4f,0x3b,0x6,0x5d,0xd7,0x9c,0x65,0xba,
0x60,0xc9,0x39,0xd3,0x2f,0x6c,0x32,0x57,0x8a,0x9,0xa5,0xdc,0xa0,0xe3,0xfa,0x80,
0x5c,0x4f,0xac,0xcd,0x5,0x39,0x73,0xc0,0x2b,0xfe,0xe6,0x7a,0x40,0xa5,0xd2,0x8f,
0xdc,0x3e,0xff,0x5b,0x8d,0xac,0x70,0xc4,0x9f,0xfa,0x2,0xe4,0xdf,0x5a,0xe2,0xe7,
0x26,0x54,0xd2,0xf3,0xbd,0x63,0x41,0x15,0x84,0xc6,0x15,0xb0,0xbe,0x2a,0x1a,0xec,
0xc9,0xfc,0xf9,0xc2,0x60,0xd8,0x5f,0x8a,0x7a,0x9e,0x4b,0x3d,0x4,0x7,0x9a,0x1f,
0x88,0x8d,0x9d,0xa5,0x72,0x40,0x48,0xda,0x91,0x42,0xf8,0xd3,0xfa,0xd3,0x94,0x3,
0x8d,0x97,0x9e,0xf7,0xf8,0x85,0x73,0xbd,0xe4,0x86,0x9d,0xf0,0x77,0xb4,0x1,0x5e,
0xd6,0x84,0x94,0xba,0x10,0xeb,0xfc,0x67,0xf8,0xb7,0x72,0xcb,0x5,0x8b,0x7b,0x19,
0xea,0x62,0x40,0xf2,0x9c,0xbe,0xf,0xf5,0xc8,0xd4,0x6a,0x9a,0xc7,0x7c,0xf6,0xb3,
0x72,0x48,0xce,0x3a,0x62,0xee,0xa9,0x13,0x7a,0x5f,0xd8,0xfe,0xbd,0x7b,0x76,0xcf,
0x32,0x58,0xdf,0xae,0x6b,0x11,0x7b,0x31,0x84,0x2d,0x68,0x1a,0x19,0x11,0x3e,0xcc,
0x89,0x3,0x28,0x53,0x76,0x97,0x51,0xe,0x50,0x1e,0x2c,0xc6,0xb5,0xc3,0xb3,0x9e,
0xf5,0x63,0x9d,0xe,0x50,0xd6,0x5,0x9a,0xa9,0xf8,0x6b,0xd7,0x4,0x74,0xf8,0x57,
0xdb,0x7d,0x0,0x87,0xf9,0xef,0x5a,0x17,0x28,0xee,0x77,0x8a,0x3a,0x40,0xe0,0x8f,
0xf7,0x35,0x25,0xff,0x46,0xed,0xc7,0xc4,0x2a,0xea,0xbf,0xf8,0xcd,0xa9,0x81,0xa9,
0xa1,0xc7,0x2d,0xfb,0xe9,0x65,0xdd,0x8f,0xb2,0x3d,0x34,0x74,0x98,0xc1,0xd6,0x73,
0xaf,0x25,0x9d,0xef,0x34,0x84,0x4f,0xd8,0x38,0x74,0xdb,0xd6,0x5e,0x6a,0x7e,0x40,
0x96,0x1d,0xc4,0x1e,0xe0,0xda,0x31,0x72,0xe0,0xe6,0x65,0xe7,0x3d,0xbe,0xe1,0x1c,
0x17,0x1b,0x20,0xe1,0xef,0x54,0x33,0xec,0x8a,0xff,0x4,0x15,0x7f,0xe7,0xf9,0x6f,
0xcb,0x3,0x3a,0xe4,0x81,0x29,0x17,0x82,0x18,0xee,0x2d,0xc6,0x13,0xff,0x6e,0x66,
0xd,0x3d,0xf7,0xc7,0x3e,0x39,0x9,0x31,0xa9,0xf9,0xd2,0x3e,0x5a,0x2b,0xf6,0x39,
0xd9,0x59,0xe5,0x11,0xe1,0x61,0x78,0xdf,0x46,0xe1,0xe7,0x5f,0xeb,0xd8,0x8b,0x81,
0x7f,0x7,0xc6,0xac,0x8d,0x3e,0xfd,0xcf,0x7f,0xfe,0x74,0x24,0x37,0xf7,0x88,0xbb,
0x2e,0x28,0xa7,0xeb,0x6,0x54,0x17,0x7c,0x74,0x8e,0xe9,0x2,0x51,0x4f,0x34,0x8b,
0xed,0x39,0x6f,0xa2,0xd4,0xc,0xaa,0x75,0x82,0x96,0xbd,0x23,0xb5,0xc1,0xdf,0x92,
0xb,0x76,0xce,0x1,0x58,0xd6,0x83,0xd5,0x18,0x10,0x9f,0x93,0x7f,0x43,0xee,0xd0,
0xfe,0xa7,0xd3,0x4f,0xd1,0x73,0xf6,0x9d,0x5f,0x3,0xb,0xa2,0x8e,0xd3,0x7d,0xd3,
0x54,0xf8,0x5e,0x5a,0xb9,0xaf,0x4a,0x76,0x56,0xe6,0x91,0x55,0x1f,0xaf,0x7c,0xd4,
0x60,0xbd,0xba,0xae,0x37,0x7e,0x3a,0xd8,0xcb,0x3,0x73,0x56,0x37,0xf6,0xef,0xdf,
0xaf,0x53,0x46,0x7a,0xda,0x66,0x37,0xe,0xa4,0x13,0xbf,0x60,0xe0,0x8e,0x4a,0xd3,
0x26,0xdc,0x6c,0xe3,0x81,0x75,0xfe,0x7b,0xcb,0x3,0x38,0xe5,0x1,0x75,0x3e,0x80,
0x16,0x7f,0x5d,0x4d,0x58,0x10,0xcf,0x5,0x8d,0x61,0xff,0x8e,0x9f,0xc5,0xfe,0x55,
0x38,0xdf,0x45,0xcd,0xc3,0x98,0xad,0x25,0x90,0x92,0x9d,0x7,0xf2,0xde,0x39,0xb5,
0x9f,0xa,0xf1,0x91,0x37,0xf7,0xed,0xdb,0x17,0xf7,0xec,0xdc,0x68,0x5c,0x7d,0x79,
0xbd,0x8b,0x3d,0x84,0x5f,0xd8,0x94,0xc4,0x36,0xef,0xba,0xd9,0x3,0x94,0xfd,0x59,
0x45,0xd0,0xe3,0x87,0x6a,0xf,0xf,0x96,0xf1,0xf5,0x64,0x51,0x53,0x32,0xcb,0xea,
0x7,0x5a,0xe2,0x40,0xdb,0xfc,0x77,0xc9,0x3,0x2a,0x39,0x0,0xb7,0x7a,0xa0,0x96,
0x2,0x6f,0xb4,0x13,0x21,0xac,0xc7,0x29,0xf2,0xad,0xc9,0x9c,0xd3,0x2c,0x9f,0x49,
0xa4,0xc7,0xfa,0xa,0x88,0x49,0x2b,0xa0,0x7b,0x24,0x71,0xbf,0xb4,0xe,0xfb,0xc3,
0x87,0x73,0xca,0x89,0x9f,0xf7,0xae,0xc1,0x6c,0xfd,0xb5,0xec,0xe7,0xd5,0x75,0x8,
0x9f,0xa0,0xd1,0x17,0x9f,0x7f,0xfe,0x8,0xf1,0x77,0x13,0xdc,0x38,0x20,0x78,0x80,
0x35,0x25,0xc2,0x2e,0x50,0xdb,0x80,0x31,0xe3,0x2,0x5e,0x6f,0x2e,0xe9,0x4,0x6a,
0xb,0xd4,0x18,0x40,0x57,0x13,0xa2,0xb5,0xff,0x52,0x1e,0x50,0xe9,0x3f,0x8f,0xaf,
0xd3,0xbe,0xf7,0xe4,0xb3,0xd8,0xff,0x18,0x7f,0xa3,0xe9,0xec,0xd3,0x54,0x2f,0xa1,
0xf8,0x2c,0x21,0xf3,0x3d,0xb4,0x14,0x52,0xb3,0xf3,0x9,0xe6,0x79,0x74,0x8f,0x7c,
0x1,0xdf,0x27,0x29,0xcf,0x7f,0xd4,0xfd,0xd9,0x99,0x19,0x9,0x6b,0x3e,0xfd,0x14,
0xf7,0xea,0x34,0x32,0x7e,0x5a,0xb6,0xbe,0x2e,0x3,0x75,0x1d,0xae,0x63,0x35,0x8b,
0x8d,0xdd,0xff,0x6e,0x41,0x7e,0x5e,0x99,0x37,0x1e,0xa0,0x60,0xee,0xe8,0xef,0x9b,
0x4e,0x99,0x3c,0x30,0xed,0xc3,0x42,0x6b,0xcc,0x40,0x7d,0xc4,0xe9,0x4a,0x4c,0x38,
0xb9,0x5a,0x59,0x7,0xaa,0xb6,0xf4,0x2b,0xa7,0x22,0xfa,0x16,0xb,0x9c,0xdf,0x63,
0x1c,0xc2,0x3e,0x37,0x4d,0x66,0xd4,0xd0,0xfc,0x4,0xf6,0x3f,0xbb,0x99,0xf8,0xa7,
0x28,0x7f,0xff,0xa6,0x12,0x16,0xec,0x3e,0xc1,0xf6,0x44,0xd3,0x7d,0x11,0x62,0x7f,
0xb4,0x55,0xef,0xa3,0x10,0x3f,0xaf,0x6c,0x5f,0xcc,0x5e,0x9c,0xf3,0xcd,0xf8,0xdf,
0xfe,0x53,0xd7,0xf7,0xde,0x86,0xf0,0xd,0x7f,0x39,0x68,0xd0,0xa0,0x8e,0xe9,0x69,
0xa9,0x6b,0x6a,0xc3,0x1,0xe1,0x23,0xe8,0xb8,0x80,0xd2,0x8,0x73,0x9,0x52,0xfc,
0xd0,0x78,0xb6,0xa7,0xce,0xd8,0xf4,0x1d,0x65,0x1f,0x52,0xde,0x87,0x4a,0x38,0x83,
0xef,0x69,0x4c,0xde,0x8f,0x79,0x88,0x46,0xe4,0x7b,0xb0,0xd7,0xd,0x95,0xc5,0x4c,
0xfe,0xb1,0xae,0x8a,0x60,0x5e,0x2,0x69,0x39,0xac,0xf6,0x5d,0xb7,0x2f,0x92,0xa,
0xef,0x95,0x80,0xd8,0x13,0x3b,0xbf,0x66,0xe0,0xc0,0x1,0x1d,0xd,0x56,0xb3,0xf3,
0x53,0xf5,0xf1,0xea,0x3b,0x44,0xae,0xa0,0xd1,0x87,0x8b,0x16,0xde,0x57,0x17,0x1e,
0x8,0x59,0x9f,0x78,0x9c,0xda,0x8,0xe4,0x83,0xc8,0x2b,0xd6,0x49,0x96,0x73,0x21,
0x3e,0x6,0x15,0xc2,0x21,0xe4,0x51,0xfb,0x95,0x64,0x8e,0x7f,0x5b,0xd,0xa3,0xc3,
0xca,0x61,0x7d,0x7c,0xb1,0xa5,0xce,0x51,0xec,0x7f,0x2a,0x28,0x70,0xe6,0x41,0x6a,
0x4a,0xf2,0x9a,0x85,0xb,0x17,0x60,0x1f,0xee,0x46,0xc6,0x4f,0x23,0xa6,0xbf,0x94,
0x3,0xf5,0xe1,0x5,0xf1,0x40,0xd6,0xf,0xc8,0x9,0xd4,0x11,0xc8,0xb,0x14,0xcc,
0x35,0x62,0x5d,0x22,0x3e,0x32,0xa9,0x31,0x5f,0x43,0xa1,0xef,0x8b,0xa8,0x80,0x5,
0x31,0xa5,0x74,0x4f,0x5b,0x7a,0x6e,0x1,0xd8,0x6b,0xdc,0x39,0xf6,0xf8,0x3c,0xdf,
0xba,0x7,0xc6,0xb,0xee,0xff,0xed,0xba,0xbe,0x2e,0x43,0xf0,0xe0,0xa6,0x65,0x4b,
0x3f,0xba,0x37,0x21,0x21,0x7e,0x5a,0x6d,0xfd,0x3,0x27,0x11,0x6b,0xd0,0x85,0x62,
0x3d,0xb2,0x20,0x9f,0x3f,0xb2,0xfa,0x4,0x8a,0x61,0xa1,0xb5,0x96,0xdd,0x53,0xcf,
0x6a,0xad,0x6d,0x75,0x12,0xa2,0xe7,0xcb,0x12,0xe2,0xe3,0xa6,0x2d,0xfd,0x68,0xc9,
0xbd,0x6,0xab,0xd3,0x68,0xc0,0xfd,0xc2,0x6,0x5e,0x3b,0xf4,0x8f,0x31,0x36,0x6e,
0xba,0x33,0x3a,0xea,0xd5,0xac,0xcc,0x8c,0x4d,0x75,0xc2,0xbd,0xd0,0xb3,0xfe,0xcc,
0xb0,0x66,0x8f,0x85,0x1a,0x7e,0x78,0x38,0x91,0xef,0x59,0xaf,0xd4,0x72,0xc9,0x8a,
0x7b,0x66,0x46,0xfa,0xa6,0xe8,0xa8,0x48,0xb1,0x7,0xef,0x46,0x7e,0xce,0xd,0xb8,
0x5f,0xbc,0x21,0xfc,0x44,0xaa,0x13,0x46,0x8f,0xe,0xa,0xd8,0xb5,0x33,0xfa,0x95,
0x8c,0xf4,0xb4,0xcf,0x48,0x2c,0x9d,0x7b,0x21,0x7a,0xa1,0x3e,0x82,0xbf,0x89,0xbf,
0x8d,0xe7,0x30,0x3a,0x28,0x28,0xc0,0xf0,0xcc,0xf5,0x6,0xbf,0xee,0xd2,0xf,0x99,
0xb,0x38,0xd7,0x6e,0x5e,0xb9,0x62,0xf9,0x3d,0xb1,0xfb,0xf7,0xd,0x20,0xf3,0xf0,
0xb3,0x9c,0xec,0xac,0xe8,0x8b,0x8d,0x37,0x7e,0x27,0x7e,0x37,0xfe,0x6,0xfe,0x96,
0xc1,0xea,0xb0,0x6e,0x34,0x1a,0x30,0xbf,0xd2,0x3,0xaf,0x3b,0xea,0x59,0xc1,0x7,
0x8c,0xa9,0x71,0x2e,0x36,0x5e,0xf5,0xf1,0xca,0xbb,0xc3,0xc2,0x76,0x3c,0x4d,0xec,
0xf1,0xe8,0xe4,0xa4,0xc4,0xf7,0x13,0x89,0xf,0x71,0x38,0x27,0x3b,0x8a,0x4b,0xb4,
0x22,0xf4,0x75,0x7c,0xf,0xbe,0x17,0x3f,0x83,0x9f,0xc5,0xef,0x30,0x58,0x9d,0xfd,
0x4d,0xfc,0xbb,0x5,0xde,0xff,0x63,0x34,0x60,0x7e,0xb5,0xe,0x99,0x13,0x68,0x87,
0x11,0x33,0xcc,0xaf,0x22,0x7e,0x38,0x67,0x7f,0xe9,0x20,0x37,0xf2,0xf7,0xfc,0x82,
0x7f,0xe6,0x67,0x46,0x3,0xd6,0x3f,0xb5,0x71,0x9d,0x17,0x69,0x18,0xd,0xa3,0x61,
0x34,0x8c,0x86,0xd1,0x30,0x1a,0x46,0xc3,0x68,0x18,0xd,0xe3,0x27,0x3b,0xbc,0xf5,
0xcf,0xad,0xe5,0x28,0x6b,0x6a,0x39,0xac,0x31,0x8c,0x40,0xf9,0x58,0xf9,0xa5,0x1a,
0x3c,0x96,0xde,0x10,0x86,0xc7,0xd7,0x5b,0xdf,0x2e,0x7d,0xe0,0x2c,0x3b,0xfe,0x83,
0xf9,0x63,0xec,0xb8,0xa9,0xe5,0xe3,0xd2,0x17,0x28,0x7f,0xdb,0x79,0x71,0x1c,0x2c,
0xfd,0xba,0x74,0x6,0x65,0xe2,0x98,0x7f,0x61,0x8e,0x38,0xbe,0x81,0x1d,0x87,0x88,
0xe3,0xeb,0xac,0x5f,0xcf,0x7f,0xe0,0xbc,0xe7,0x38,0x58,0x3a,0x5b,0xf3,0x8c,0x6b,
0x3c,0xc7,0x81,0x96,0x9f,0xe3,0x3f,0x98,0xe3,0x39,0xbe,0x41,0x77,0x1c,0xe6,0x39,
0xbe,0xde,0x72,0x3a,0xfc,0x84,0xc,0x69,0x68,0x8e,0xcf,0xcb,0xc7,0xc1,0x96,0xd3,
0xa3,0x27,0xa8,0x1e,0xd7,0xc8,0xc7,0x81,0x96,0xd3,0xa5,0x27,0xac,0x1e,0xe7,0xc8,
0xc7,0x37,0xd8,0x8f,0xc3,0xe4,0xe3,0xeb,0xed,0xc7,0x21,0xf2,0xf1,0x75,0xde,0x8f,
0xd,0xcb,0xf0,0x7a,0x7c,0xde,0x7a,0x1c,0x5c,0xd7,0xe3,0xb3,0xd6,0xe3,0x3f,0x5c,
0xe8,0x71,0x8d,0xf5,0x38,0xf0,0xbf,0xfd,0xf8,0x62,0x5f,0xdf,0xb,0xc5,0xbb,0xae,
0xfc,0xaa,0x33,0x7f,0xc3,0xe4,0x63,0xcd,0x7c,0xc8,0x91,0x8f,0x35,0xf3,0xc9,0xdb,
0x7c,0x54,0xe7,0xaf,0xb7,0xf9,0xae,0xea,0x7,0x6f,0xfa,0xc4,0xa6,0x7f,0xa4,0x3f,
0xe0,0xfa,0xda,0xe8,0x33,0x55,0xff,0xa9,0xfa,0x51,0xd5,0x9f,0xaa,0x7e,0x55,0xf5,
0xaf,0x4d,0x3f,0x9b,0x3f,0x78,0x83,0x5e,0xbf,0xab,0xfa,0x5f,0xb5,0xf,0xaa,0xfd,
0xb0,0xd9,0x17,0xd5,0xfe,0xa8,0xf6,0x49,0xb5,0x5f,0x36,0xfb,0xa6,0xda,0x3f,0xd5,
0x3e,0xda,0xec,0xa7,0x6a,0x5f,0x2f,0xde,0xf8,0x3f,0xe9,0xde,0x7b,0xf,
// F:/??ico/????/copy.ico
0x0,0x0,0x4,0xf9,
0x0,
0x0,0x1c,0x6e,0x78,0x9c,0xed,0x58,0xdf,0x4f,0xdb,0x56,0x14,0x3e,0xfc,0x98,0x8a,
0xca,0xd6,0x46,0xab,0x54,0x24,0x2a,0x2d,0xa0,0xa0,0x7a,0xf,0x4d,0xa3,0xa8,0x5,
0x29,0xbc,0x6c,0xff,0xd9,0xf2,0x98,0x37,0xff,0x1b,0x7d,0x98,0x34,0x4d,0xdb,0x43,
0xb5,0x6a,0x2d,0xad,0xe8,0x3a,0x94,0x52,0x28,0x84,0x80,0xf3,0x3,0x39,0x81,0x4,
0x1b,0x42,0x20,0x59,0x0,0x13,0x7e,0x9c,0x9d,0x7b,0x6d,0x87,0x26,0xcb,0xf5,0xb5,
0x42,0xa4,0x4e,0x2a,0x9f,0xfd,0xc5,0x1c,0x7f,0xd7,0xf7,0x1c,0xdf,0x7c,0x52,0xce,
0x5,0x60,0x0,0x86,0x60,0x62,0x22,0x40,0xd7,0x61,0x30,0x6,0x1,0x66,0x0,0x28,
0x6,0x8a,0x47,0xe0,0xd9,0x8,0xc0,0x77,0x43,0x6e,0x3c,0x1,0xcf,0x2,0x0,0x7f,
0x8d,0x2,0x7c,0xcf,0xc6,0x10,0x7f,0x4,0xe0,0xcf,0x71,0xc,0x82,0x0,0x71,0x7e,
0x42,0x3c,0x6e,0x5f,0xd8,0xc1,0x6e,0xd1,0xc7,0xdc,0xdc,0x1c,0xdd,0x41,0x7e,0x2,
0xa2,0x7d,0x61,0x7,0xbb,0xc5,0x3e,0xfc,0x60,0x24,0xc1,0x71,0x15,0xd3,0x93,0x6a,
0x22,0x11,0x6f,0xc5,0x56,0x22,0x61,0x59,0x98,0xb8,0x8a,0x51,0x25,0x60,0xbc,0x15,
0x33,0xa8,0xad,0x74,0x77,0x99,0xaa,0x5a,0x7c,0x46,0x7b,0xea,0x4,0xd3,0x55,0x16,
0xd3,0x28,0x8b,0x14,0xa6,0x5b,0x16,0x8b,0xd9,0xdf,0x3c,0x56,0xed,0x58,0xe5,0x53,
0xb1,0xb,0xaa,0x3c,0x26,0x24,0xa8,0x1e,0xba,0xc7,0x74,0x9e,0xa,0xe9,0x1,0xcb,
0x79,0xde,0xd6,0xd9,0x10,0xe4,0x31,0xd7,0xd5,0x96,0x6e,0xd9,0x40,0xd5,0xd5,0x69,
0x1a,0x3a,0x2d,0xfe,0x2,0xb6,0xce,0xef,0x30,0x5d,0xb5,0xeb,0x63,0x21,0x1d,0x16,
0x1f,0xcf,0x2a,0xe1,0xe3,0x2d,0x7b,0x39,0xd9,0x7d,0x76,0xba,0xf3,0xb1,0x81,0x34,
0x92,0xc7,0xb6,0xae,0xda,0xba,0x6a,0xaf,0x28,0xf2,0xf9,0x50,0x75,0xd7,0x4a,0xb5,
0x47,0xe2,0xa1,0x13,0xf3,0x0,0xaf,0xd6,0x92,0xd7,0xd1,0xae,0xf3,0x7,0x5a,0x3a,
0x5b,0x2a,0x7a,0xfd,0xd6,0x97,0xe3,0xd,0x74,0xa1,0x3,0xe3,0x4f,0xc4,0x1f,0x88,
0x41,0xe2,0x5d,0xc6,0x39,0xb8,0x2e,0x83,0xd8,0x8d,0x2e,0xda,0x7d,0x3e,0x62,0x17,
0x35,0xfc,0x49,0x81,0x3,0xe,0x9,0x2f,0x9f,0xff,0x2,0xc9,0x3f,0x7f,0x86,0xdc,
0x2,0x5d,0xe7,0x5f,0xc0,0xf2,0x9b,0x5f,0x61,0x79,0xfe,0x37,0x58,0x7b,0xf7,0x3b,
0xa4,0x93,0x7f,0x80,0xf6,0xfe,0x39,0xe4,0x97,0x5e,0x40,0x76,0xf9,0x15,0xe8,0x2b,
0x2f,0x21,0xf5,0x61,0x1e,0xd6,0x97,0xdf,0x81,0xb6,0xb2,0x0,0xd9,0xb5,0x24,0xe4,
0xd2,0x8b,0x90,0xdf,0x58,0x82,0x42,0xea,0x35,0x14,0xd3,0xf3,0xb0,0xbd,0x3e,0xf,
0xa5,0x8d,0xb7,0x60,0x66,0xe8,0xaa,0x2d,0x80,0xae,0x2d,0x81,0x91,0x4b,0x82,0x99,
0x5f,0x84,0x42,0x76,0x5,0xb6,0xf2,0xab,0x50,0xcc,0xa5,0xa0,0xb4,0xb9,0x6,0x65,
0x3d,0xd,0x7b,0xfa,0x32,0x54,0x8a,0xab,0x60,0x14,0xd6,0xa1,0xba,0x95,0x82,0xea,
0x76,0x1a,0x76,0xa,0x1a,0x18,0x45,0xd,0x76,0xb7,0x33,0xc4,0x1c,0x54,0xca,0x79,
0x38,0x2c,0x6b,0x50,0x33,0x32,0x50,0x37,0x73,0x50,0x35,0x75,0xa8,0x55,0x4a,0xd0,
0xa8,0x96,0xa1,0x71,0x60,0xc2,0x51,0x6d,0x17,0x8e,0xeb,0xfb,0x70,0xd2,0x38,0x80,
0xe6,0xd1,0x3e,0x9c,0x1e,0xd7,0xe1,0xfc,0xe4,0x10,0xce,0xac,0x6,0x9c,0x37,0x8f,
0xe0,0xe2,0xcc,0x82,0xcb,0xf3,0x53,0x7f,0x5f,0xde,0xd,0x6e,0xf0,0x5,0xc0,0xf7,
0xef,0x94,0x3f,0xc,0x7d,0xcd,0x71,0xfb,0xf6,0xad,0xaf,0x6,0x7,0xba,0xe8,0xf7,
0x42,0x1c,0xc1,0xe0,0xb7,0x81,0x3b,0xdf,0xc,0x77,0xd1,0x15,0x1b,0x34,0x22,0xa0,
0x4,0xef,0x8,0x75,0x45,0x9,0x6,0xa7,0x23,0x4a,0xb0,0x53,0xbf,0xaf,0x84,0x9d,
0x43,0x51,0x62,0xb1,0xd8,0xb4,0xd2,0xa9,0x3f,0x6e,0x81,0x25,0x9,0xdc,0xea,0x52,
0xb6,0xa3,0x47,0x22,0xca,0xc3,0xe0,0x48,0xb7,0xb2,0xdd,0x19,0x22,0x8a,0x32,0xda,
0xb5,0xec,0x88,0x8b,0xc7,0xf7,0xba,0x96,0x3d,0x11,0x8d,0x46,0x23,0xd1,0x48,0x24,
0x1a,0x1d,0x17,0x94,0x1d,0x75,0xf0,0x40,0x50,0xf6,0x13,0x7,0x93,0xb6,0x3e,0xae,
0x44,0xdc,0xc3,0x2e,0xdb,0xd5,0x43,0x8e,0x7e,0x55,0x11,0x2b,0xfb,0xe1,0xe8,0x53,
0x91,0x6e,0xf,0xba,0x3f,0xe3,0xc0,0xd1,0x1f,0xb4,0xc9,0x54,0xf6,0xd3,0x18,0x97,
0x63,0x53,0x8e,0x1e,0x6d,0xc7,0x78,0x6c,0xc6,0x3e,0x1c,0x3d,0xf4,0xa4,0x1d,0x21,
0x7a,0xc9,0x59,0x62,0xec,0x91,0xad,0x4f,0x76,0xe8,0x93,0xb1,0x59,0x1b,0x8e,0x1e,
0x9a,0xee,0x78,0xde,0x91,0x67,0xc3,0xae,0x3e,0xd3,0x86,0x50,0xac,0x5d,0x9f,0x8a,
0xb5,0xc9,0xb1,0xa9,0x70,0x38,0xc2,0xcf,0xb1,0x96,0xfe,0xe9,0xe1,0x96,0xdd,0xc2,
0x23,0xa7,0x5e,0x97,0xe1,0x4e,0x7d,0xb6,0xd,0xee,0x6b,0xb5,0x10,0x6e,0xd7,0x67,
0x3b,0x9f,0x97,0xe9,0x63,0xe1,0x76,0x8c,0x41,0x3f,0xf1,0xff,0xea,0x53,0x26,0x78,
0x4d,0xf1,0x40,0x5f,0x5f,0xf1,0x8b,0x3,0xf5,0x71,0x58,0x58,0x7d,0xf5,0x1f,0x52,
0xef,0x86,0xd4,0xc7,0x21,0xf5,0x73,0x48,0xbd,0x1d,0x52,0x9f,0x87,0xd4,0xf7,0x21,
0xf5,0x7f,0x7d,0xfd,0x21,0x28,0xa4,0xe6,0x90,0x7a,0xb9,0xae,0xdc,0xd1,0xd3,0x48,
0xfd,0x1f,0x52,0x4f,0x88,0xd4,0x3b,0x22,0xf5,0x91,0x48,0xfd,0x24,0x52,0xdf,0xd9,
0xb7,0x1a,0x8a,0xa9,0xd7,0x68,0x16,0x35,0x21,0x8d,0xc2,0x6,0x96,0x36,0xd3,0x58,
0xcc,0xae,0x20,0xf5,0xae,0x48,0x7d,0x26,0x52,0x5f,0x8a,0xd4,0xcf,0xf6,0xa5,0x86,
0x62,0xfa,0xd,0x52,0xdf,0xea,0x49,0x73,0x4b,0xc3,0xb2,0xbe,0xce,0xd7,0x82,0xfa,
0x55,0xa4,0x3e,0x16,0xf7,0x4a,0x39,0xaa,0x6b,0xed,0xda,0x35,0x50,0xff,0x8d,0x15,
0x9a,0xcb,0xf,0x8d,0x82,0x86,0xd8,0x6c,0x70,0x52,0xbf,0x8c,0x27,0xf5,0x5d,0x3c,
0x30,0xf5,0x6b,0xd5,0x40,0xbd,0x3f,0xee,0xef,0x6c,0xfa,0xa6,0xb9,0x95,0xe5,0x6b,
0x41,0x7b,0x2,0xa4,0x7d,0x4,0xd2,0xde,0x43,0x98,0xbf,0x17,0x6f,0x57,0xd,0x5d,
0x4a,0xda,0x63,0x20,0xed,0x39,0xe8,0xfb,0x58,0x43,0xda,0xf3,0x8,0xf3,0xf7,0xea,
0xed,0x83,0xdd,0xa2,0x94,0x7b,0xe5,0x4d,0x34,0xa8,0xe,0xda,0x67,0x9,0xf3,0x5f,
0xc7,0xdb,0xb5,0xca,0xb6,0x94,0x55,0xb3,0x80,0xb4,0x87,0x13,0xe7,0xbf,0xa6,0xb7,
0xeb,0xfb,0x3b,0x52,0x96,0x32,0x49,0x61,0xfe,0x7e,0x78,0x9b,0xf6,0x8b,0x9e,0xdc,
0xdd,0xfc,0x20,0xcc,0xdf,0xf,0x6f,0x1f,0xd5,0xf6,0x3c,0x49,0xfb,0x61,0x71,0x7e,
0xed,0x6f,0x5f,0x7e,0xf6,0xf2,0x36,0xed,0x93,0x3d,0xb9,0xa7,0x7f,0x14,0xe6,0x2f,
0x67,0x16,0x7c,0x79,0xd9,0xcb,0xdb,0xb4,0x47,0xf7,0x64,0xa5,0xb8,0x2a,0xcc,0x6f,
0xe4,0x92,0xbe,0x7c,0xec,0xe5,0xed,0xd3,0xa3,0x9a,0x27,0xab,0x5b,0x29,0x71,0xfe,
0xfc,0xa2,0x2f,0xf,0x7b,0x79,0xbb,0x79,0xf2,0x8f,0x27,0xab,0xdb,0x69,0x61,0x7e,
0xe6,0x4d,0x99,0x7f,0x65,0xde,0x3e,0xb3,0x1a,0x9e,0x3c,0x28,0xad,0xb,0xf3,0x33,
0x6f,0xca,0xfc,0x2b,0xf3,0xf6,0x79,0xf3,0xd8,0x93,0x87,0xe5,0xd,0x8f,0xfc,0x1f,
0xa5,0xfe,0x95,0x79,0xfb,0xe2,0xcc,0xf2,0x64,0x6d,0x27,0x23,0xcc,0xcf,0xbc,0x29,
0xf3,0xaf,0xcc,0xdb,0x97,0xe7,0xa7,0x9e,0xac,0x19,0xe2,0xfc,0xcc,0x9b,0x32,0xff,
0xca,0xbc,0x7d,0x79,0xd1,0xf4,0x64,0xcd,0xcc,0x8a,0xf3,0x93,0x37,0x65,0xfe,0x95,
0x79,0xbb,0x6e,0xe6,0x3c,0x69,0x66,0xc4,0xbf,0x3f,0xcc,0x9b,0x32,0xff,0xf6,0xea,
0x6d,0x3f,0x60,0xde,0x94,0xf9,0xb7,0x57,0x6f,0xfb,0x1,0xf3,0xa6,0xcc,0xbf,0xbd,
0x7a,0xdb,0x57,0x7e,0xf2,0xa6,0xcc,0xbf,0xbd,0x7a,0xdb,0x57,0x7e,0xf2,0xa6,0xcc,
0xbf,0xbd,0x7a,0xdb,0xf,0x98,0x37,0x65,0xfe,0xed,0xd5,0xdb,0x37,0x10,0xe3,0x73,
0xff,0x9f,0xe2,0x5f,0xe5,0x8,0x9b,0x4e,
// F:/??ico/????/delete_2.png
0x0,0x0,0x5,0x92,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64,
0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x3,0xad,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,
0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0,
0x0,0x0,0x0,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,
0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,
0x30,0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,
0x7a,0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,
0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,
0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,
0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,
0x43,0x6f,0x72,0x65,0x20,0x35,0x2e,0x30,0x2d,0x63,0x30,0x36,0x30,0x20,0x36,0x31,
0x2e,0x31,0x33,0x34,0x37,0x37,0x37,0x2c,0x20,0x32,0x30,0x31,0x30,0x2f,0x30,0x32,
0x2f,0x31,0x32,0x2d,0x31,0x37,0x3a,0x33,0x32,0x3a,0x30,0x30,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,
0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,
0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,
0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,
0x52,0x69,0x67,0x68,0x74,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,
0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,
0x31,0x2e,0x30,0x2f,0x72,0x69,0x67,0x68,0x74,0x73,0x2f,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,
0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,
0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,
0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,
0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,
0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,
0x70,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,
0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,
0x20,0x78,0x6d,0x70,0x52,0x69,0x67,0x68,0x74,0x73,0x3a,0x4d,0x61,0x72,0x6b,0x65,
0x64,0x3d,0x22,0x46,0x61,0x6c,0x73,0x65,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,0x3a,
0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x75,0x75,0x69,0x64,0x3a,0x41,0x45,0x33,0x46,0x34,0x36,0x30,
0x38,0x38,0x46,0x38,0x39,0x44,0x45,0x31,0x31,0x41,0x38,0x36,0x30,0x39,0x39,0x46,
0x31,0x32,0x31,0x41,0x32,0x30,0x34,0x32,0x39,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,
0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,
0x2e,0x64,0x69,0x64,0x3a,0x39,0x31,0x39,0x36,0x33,0x45,0x35,0x38,0x42,0x35,0x45,
0x46,0x31,0x31,0x45,0x30,0x42,0x41,0x41,0x33,0x42,0x42,0x45,0x34,0x44,0x37,0x42,
0x31,0x33,0x35,0x31,0x44,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,
0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,
0x3a,0x39,0x31,0x39,0x36,0x33,0x45,0x35,0x37,0x42,0x35,0x45,0x46,0x31,0x31,0x45,
0x30,0x42,0x41,0x41,0x33,0x42,0x42,0x45,0x34,0x44,0x37,0x42,0x31,0x33,0x35,0x31,
0x44,0x22,0x20,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,
0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,
0x68,0x6f,0x70,0x20,0x43,0x53,0x35,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x22,
0x3e,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,
0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,
0x6e,0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x33,
0x32,0x45,0x42,0x39,0x34,0x34,0x44,0x45,0x46,0x42,0x35,0x45,0x30,0x31,0x31,0x39,
0x41,0x42,0x34,0x41,0x46,0x44,0x39,0x30,0x33,0x39,0x46,0x33,0x35,0x45,0x42,0x22,
0x20,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,
0x44,0x3d,0x22,0x75,0x75,0x69,0x64,0x3a,0x41,0x45,0x33,0x46,0x34,0x36,0x30,0x38,
0x38,0x46,0x38,0x39,0x44,0x45,0x31,0x31,0x41,0x38,0x36,0x30,0x39,0x39,0x46,0x31,
0x32,0x31,0x41,0x32,0x30,0x34,0x32,0x39,0x22,0x2f,0x3e,0x20,0x3c,0x2f,0x72,0x64,
0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,
0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f,0x78,0x3a,0x78,0x6d,
0x70,0x6d,0x65,0x74,0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,
0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,0xaf,0x5b,0x6a,0xc5,0x0,0x0,
0x1,0x7b,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0x57,0x41,0x6a,0xc3,0x30,0x10,0xf4,
0x26,0x81,0x5e,0x1a,0x68,0x1f,0xd0,0x6,0x7a,0x69,0x9e,0x10,0x4a,0x5f,0x92,0x6b,
0x21,0x3d,0x95,0xbe,0xa5,0xe4,0x64,0x41,0xaf,0xfd,0x48,0x20,0xf4,0x9,0xcd,0xa5,
0x90,0xf4,0x1,0xcd,0x21,0x97,0x10,0xa2,0x8d,0x12,0x6c,0x23,0xb9,0x2b,0x6b,0x25,
0xcb,0xf1,0xa5,0x82,0x5,0x39,0xb6,0x47,0xe3,0xdd,0xd1,0x68,0x3,0x88,0x98,0xb4,
0x39,0x3a,0x49,0xcb,0xa3,0x75,0x2,0x3d,0xe3,0xea,0x75,0xa8,0x5f,0xa5,0x2a,0x26,
0x2a,0x84,0x8a,0xe7,0x40,0x7c,0x1a,0xe3,0xed,0xab,0x98,0x82,0xae,0x1,0x7c,0xb9,
0x2f,0xa6,0x4,0x18,0x78,0x2e,0x3e,0x53,0xf1,0x48,0x61,0xc0,0x74,0x41,0x67,0x40,
0xee,0xd1,0xb6,0x78,0xfe,0x3b,0x97,0x44,0x25,0x46,0xd7,0x56,0x2,0xb9,0x97,0x29,
0x3,0x18,0x2,0x17,0x2f,0xca,0xd2,0xd5,0xca,0x61,0x94,0x60,0xfb,0x74,0xc7,0xdd,
0x93,0x10,0xb8,0xf8,0x69,0x5c,0xbc,0x7f,0x3,0x9d,0x81,0x1d,0x8a,0x4c,0x34,0x49,
0x40,0x26,0xb8,0xe4,0x85,0xf1,0x25,0x7a,0x6,0x36,0xe3,0x81,0xf,0x90,0x9e,0x9,
0xaf,0x77,0x2e,0x3f,0x96,0x16,0xd,0xec,0x64,0xe,0x8a,0x35,0xc5,0xc6,0x2e,0x5d,
0x59,0x84,0xfa,0x83,0xb1,0x3d,0x1a,0x9c,0x46,0x84,0x12,0xcb,0x2f,0x60,0x93,0x8b,
0xbb,0x8,0xc4,0x22,0x1,0x6c,0x2b,0xce,0x8c,0x28,0x26,0x9,0xa7,0x71,0xb9,0x32,
0x50,0x87,0x4,0xcb,0x35,0xb9,0x4,0xce,0x73,0x1a,0xa2,0x8c,0xb6,0xdd,0xd8,0x67,
0x87,0x49,0x80,0xee,0x8e,0xea,0xa4,0x5,0xbd,0x44,0x48,0x94,0x20,0x46,0x4d,0x30,
0x74,0x1b,0xc6,0x14,0x4,0xfa,0x1a,0x51,0x13,0x6a,0x44,0xa7,0x15,0x67,0x12,0x68,
0xf2,0x30,0xfa,0x43,0xc2,0x6c,0x4a,0x25,0xa6,0xc9,0x31,0xb,0xbc,0x0,0xcb,0xdc,
0x15,0xa9,0xf5,0x38,0xfe,0x79,0xb8,0x3e,0x4b,0x43,0x72,0x33,0xff,0x5,0x32,0x3,
0x8a,0x8c,0x38,0x12,0x72,0x4,0x4,0xde,0xcb,0xc3,0xde,0x90,0xac,0x46,0x57,0xae,
0xaf,0xa8,0xdb,0x94,0x9e,0x30,0x6e,0x3f,0xd7,0x95,0x46,0x44,0xf9,0xfe,0x46,0x45,
0xdf,0x53,0x9c,0xac,0xd6,0xbe,0x53,0x1,0x20,0xb4,0x1e,0xae,0x1f,0xb0,0xed,0xca,
0x18,0x64,0xf6,0xe0,0xff,0xcf,0x69,0xdb,0x4,0xe,0x2,0xc,0x0,0x57,0xe6,0xd,
0x82,0xac,0x8a,0xfc,0x6,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
0x82,
// F:/??ico/????/paste.ico
0x0,0x0,0x7,0x82,
0x0,
0x0,0x1c,0x6e,0x78,0x9c,0xed,0x58,0xf,0x50,0x54,0xe5,0x16,0x3f,0xfe,0x89,0xd9,
0x99,0xd7,0x8c,0xc6,0x38,0x36,0xc,0x63,0xe0,0x8c,0x83,0x49,0x33,0xcb,0x32,0xee,
0x54,0x43,0x94,0xa4,0xcc,0x3a,0x5b,0xc1,0x30,0x4c,0xc,0xea,0xb0,0x44,0x8d,0x3d,
0x19,0xeb,0x55,0x8c,0xe5,0xbd,0xd1,0x7a,0xc5,0xfe,0x70,0xb7,0xa2,0xdd,0x7a,0x3e,
0xb2,0x30,0xb0,0x0,0x15,0x5,0xcd,0xac,0xf7,0x4,0xa5,0xde,0x92,0x94,0x94,0x90,
0x63,0x4f,0xe5,0x95,0x12,0x18,0xda,0x5d,0x15,0x21,0x1c,0xb4,0x9b,0x99,0xa7,0x73,
0xee,0xfe,0x11,0x2e,0x2,0x17,0x91,0x37,0x6f,0x1a,0x7f,0xf7,0xfe,0xf6,0x7e,0xe7,
0x3b,0xe7,0x77,0xcf,0x77,0xef,0xdd,0x3b,0x7b,0xce,0x2,0x4c,0x80,0x49,0x10,0x1d,
0x3d,0x95,0x8e,0x93,0xc1,0x37,0x11,0xe0,0x4e,0x0,0xb2,0x81,0x6c,0x13,0x54,0x99,
0x0,0x6e,0x9b,0x14,0xb4,0xa3,0xa1,0x6a,0x2a,0xc0,0x97,0x7f,0x1,0xb8,0x9d,0x63,
0x88,0x49,0x0,0x9a,0x4e,0xc3,0x44,0x18,0x2,0x5,0xda,0xe,0x5,0x5,0xfe,0x3,
0x6f,0x3c,0x45,0x1f,0x5e,0xaf,0x97,0x66,0x50,0xdb,0x1,0xd1,0x7f,0xe0,0x8d,0xa7,
0xf8,0xc3,0x18,0x56,0x6,0x10,0xb4,0x97,0xf9,0xb1,0x2f,0x68,0x3b,0x55,0x17,0x43,
0xa,0xda,0x82,0x47,0xc3,0xb2,0xa0,0xad,0x68,0xa6,0x4b,0x18,0xe8,0x57,0x95,0xa0,
0x2d,0x91,0x81,0x1e,0xf,0xf9,0xb,0xb5,0x3c,0x32,0x9b,0xaa,0x9a,0xcb,0x99,0x9a,
0x78,0xf3,0x68,0x1,0x74,0x7e,0x41,0x91,0xa4,0x95,0x92,0xe4,0x41,0xe,0x10,0x29,
0xb3,0xe4,0x14,0x9a,0x96,0x89,0x1e,0xf,0x99,0x48,0xf1,0x6e,0x41,0xcc,0x55,0x5c,
0x82,0x66,0x7a,0xc8,0x16,0x4,0xc5,0x59,0xe8,0x51,0xd0,0x43,0x57,0x8b,0xa4,0x97,
0x9c,0x45,0x6e,0xd1,0x25,0xfa,0xf5,0x32,0xe9,0xb,0x25,0xe1,0x49,0x94,0xd8,0x44,
0xd5,0x47,0xf9,0xdd,0x42,0xae,0xe8,0x11,0x54,0x74,0xa9,0x88,0x74,0x7e,0x49,0x10,
0x9b,0x14,0xc5,0x8d,0xe8,0x16,0xb5,0xf5,0xca,0x92,0x54,0x58,0x54,0x28,0xd3,0x5a,
0x15,0x55,0xf3,0x17,0xc9,0x45,0x2e,0x9f,0x28,0x17,0xba,0x64,0x9f,0x44,0xe7,0x93,
0xc9,0x50,0x8a,0xdc,0x92,0xcb,0xe7,0x12,0x45,0xca,0xe7,0x16,0x45,0x9f,0xe8,0x93,
0x65,0x51,0x50,0xdc,0x7c,0xa5,0x14,0x26,0x52,0xc,0x6d,0xb2,0x4b,0xb3,0x7d,0x2e,
0x1e,0xcb,0x2e,0x52,0x68,0x36,0x9b,0x6e,0x97,0xcf,0x4d,0x3,0xb6,0x4d,0x4d,0x8a,
0x20,0x89,0x4d,0xb2,0x5c,0xe4,0x7e,0x26,0x74,0xf7,0x28,0x6d,0xff,0xa7,0xe3,0x16,
0x39,0xf3,0x15,0xb8,0x24,0x59,0x34,0xf8,0x60,0x31,0x88,0x4b,0x30,0x69,0x28,0x7a,
0xe1,0x9a,0x38,0xaf,0x3f,0x3b,0x0,0x56,0xe3,0x81,0x79,0x88,0xde,0x0,0x3,0x18,
0xf8,0x3d,0x37,0xf9,0x17,0x35,0xb9,0xdf,0x2,0x27,0x4,0x48,0x28,0x5a,0x9e,0x0,
0x6b,0x9f,0xbe,0x17,0xde,0x5b,0x79,0x2f,0x6c,0x10,0xef,0x83,0xe2,0xe7,0x16,0x42,
0x99,0xf3,0x41,0x28,0xcf,0xbf,0x1f,0x36,0xad,0xba,0x1f,0xca,0x9d,0xb,0xa1,0xd2,
0x69,0x83,0xca,0xd5,0xf,0xc0,0x96,0x2,0x1b,0x6c,0x5a,0x93,0x2,0x5b,0x5f,0xb4,
0xc3,0xb6,0x57,0x52,0xa0,0x46,0x4e,0x87,0x2d,0xf2,0xc3,0xb0,0xed,0xb5,0xc5,0xf0,
0xe1,0x1b,0x59,0xb0,0xe3,0xd5,0x74,0xd8,0x59,0x94,0x1,0x9f,0x78,0x16,0xc3,0xe,
0x77,0x36,0xec,0xfa,0xbb,0x3,0x6a,0xd7,0x66,0x43,0x7d,0x71,0x36,0x7c,0xfc,0xd6,
0x63,0xf0,0xcf,0xe2,0xbf,0x42,0x5d,0xf1,0xa3,0xb0,0x7b,0xdd,0x52,0xa8,0x7f,0xe7,
0x71,0xd8,0xb5,0x6e,0x39,0x7c,0xfa,0x6e,0x2e,0xfc,0xbb,0xf4,0x9,0xa8,0x2b,0xf9,
0x1b,0xec,0x29,0xcd,0x83,0xfa,0xb2,0x15,0xe0,0x2d,0x59,0xa,0x7b,0xcb,0x96,0x43,
0xc3,0x86,0xa7,0x60,0xef,0x7,0x79,0xf0,0x65,0x45,0x1e,0x78,0xcb,0x5,0xf8,0xa2,
0xf2,0x59,0x68,0xdc,0x98,0xf,0x4d,0x9b,0x45,0xf8,0xba,0xea,0x79,0xd8,0xbf,0xd5,
0x9,0xcd,0xd5,0x12,0xb4,0xd4,0x48,0xb0,0x77,0x73,0x1,0x1c,0xd8,0x5e,0x0,0x47,
0x6a,0xdd,0xe0,0xdd,0xb9,0x1,0x9a,0x77,0x95,0x42,0x6b,0xdd,0x9b,0xd0,0xd6,0xb0,
0x1e,0xda,0x3e,0x2f,0x85,0x96,0x86,0xf,0xa1,0xbd,0xf1,0x7d,0x38,0xda,0x58,0x9,
0x87,0xbe,0xaa,0x83,0x6f,0x9b,0x1b,0xe0,0xe8,0xe1,0xaf,0xe1,0xd8,0x91,0x16,0x38,
0x7c,0xe8,0x20,0xb4,0x7f,0x77,0x10,0x8e,0x1f,0x3d,0x4,0x9d,0x6d,0xad,0x70,0xb2,
0xe3,0x3b,0xe8,0x3c,0xde,0xe,0xca,0x8f,0xc7,0xe0,0xd4,0x8f,0xff,0x85,0x33,0x27,
0xbe,0x7,0xdf,0x89,0x76,0xe8,0xfa,0xa9,0xd,0x94,0x93,0x9d,0x70,0x4a,0x39,0x4e,
0xe3,0xe,0xe8,0xf6,0x75,0xc0,0x19,0xdf,0x9,0xe8,0x3a,0xad,0x40,0xf7,0x19,0x1f,
0xf4,0x74,0x9d,0x82,0x9f,0x4f,0x77,0xc2,0xb9,0xb3,0x3f,0x41,0x5f,0xf,0x8d,0xbb,
0xbb,0xe0,0x7c,0x6f,0x17,0xfc,0xd2,0xd7,0xd,0x17,0xfa,0x7a,0x41,0x3d,0xdf,0xb,
0x17,0x7f,0xe9,0x83,0x8b,0x6a,0x1f,0x5c,0xfa,0xf5,0x2,0xfc,0xfe,0x9b,0xa,0x97,
0x2f,0x5d,0x34,0xf8,0xad,0xba,0x81,0x1b,0xb8,0x7e,0x18,0xc5,0xef,0x94,0x41,0x98,
0x4c,0x93,0xfb,0xc1,0x64,0xd2,0xfb,0x6f,0x36,0x4d,0x9c,0x70,0x5,0x83,0xfd,0x53,
0xc2,0xe6,0x25,0x85,0x30,0x2f,0x6c,0x8a,0xde,0x3f,0x2d,0x2c,0xc9,0x6e,0xb3,0xdb,
0x18,0x76,0x7b,0xd2,0x94,0xa9,0x7a,0xff,0xf4,0x69,0xb,0xec,0x21,0x2c,0xb8,0x65,
0xba,0xde,0x1f,0x11,0xbe,0xc0,0x9e,0x91,0xe6,0x87,0x3d,0x39,0x3c,0x42,0xef,0x9f,
0x11,0x9e,0x1c,0x74,0xa7,0xa5,0x25,0x87,0xcf,0xe0,0xb9,0xb9,0xa6,0x2b,0x88,0x8a,
0x4c,0xce,0x8,0xc1,0x76,0x6b,0x94,0x76,0x4d,0xfd,0x30,0x33,0xd2,0x96,0x91,0x91,
0x19,0xd8,0x6d,0x91,0x33,0xb5,0x35,0x4f,0x9,0x21,0x6c,0x76,0xa4,0x6d,0xc9,0x92,
0xcc,0xc0,0x16,0xf0,0x4f,0x9f,0x16,0x44,0xd8,0x4d,0xb7,0x47,0xa7,0x66,0x5e,0xf1,
0x47,0xcf,0xd1,0xd6,0x14,0x11,0x31,0x83,0x31,0x3d,0xfc,0xce,0xa4,0x39,0xd1,0xa9,
0x4b,0x42,0x48,0xb,0xf8,0x3,0x88,0xa,0x4f,0x4e,0x9d,0x33,0x33,0xcd,0x91,0x15,
0x44,0xc0,0x3f,0x73,0x46,0x94,0x7f,0x8b,0xbc,0xe7,0x3e,0xf3,0xac,0xf4,0xec,0x10,
0xd2,0x67,0x99,0xb5,0x7b,0x1e,0xc0,0xcd,0xa6,0x34,0x87,0xe6,0xcf,0x72,0xa4,0xa7,
0x3b,0xb2,0xb2,0x73,0x2,0xfe,0x88,0x10,0x52,0xd2,0x2d,0xb3,0xd2,0x73,0x72,0x1c,
0xb6,0xf9,0xf3,0x6d,0x8e,0x9c,0x9c,0xcc,0x59,0x16,0xf6,0xc7,0xf4,0x83,0xc5,0x4c,
0xfe,0x45,0x77,0xc5,0x44,0xdd,0xc5,0x47,0xb3,0xa6,0x9f,0x1d,0x33,0x9b,0x77,0xd,
0x96,0xb9,0xa9,0x8e,0x45,0x29,0x73,0x62,0x63,0x63,0x53,0x16,0x39,0x52,0xcc,0xf1,
0xec,0x8f,0x65,0xcc,0xd6,0x3e,0x63,0x2d,0x96,0xf8,0xf8,0xf8,0x3b,0xe2,0xad,0x56,
0xab,0xd9,0x3c,0x97,0xc6,0xec,0xb7,0x58,0xe2,0x42,0xb0,0x92,0x3b,0xde,0x9c,0x98,
0x90,0x90,0x60,0xe6,0x91,0xe6,0x8f,0xb3,0xc6,0x59,0xfb,0x81,0x66,0x2d,0x16,0x4b,
0x40,0xcb,0xb8,0x7b,0x8,0x4,0xfd,0x74,0xb2,0x84,0x44,0x3f,0x12,0xb4,0xb1,0xb6,
0x25,0x24,0x84,0xfc,0x34,0x9f,0x38,0x18,0x21,0x3f,0x58,0xac,0xb4,0x82,0x38,0xff,
0x6e,0xb5,0x5a,0xe2,0xe3,0x43,0x4b,0x1b,0x80,0x98,0x18,0xff,0xd3,0x1a,0xe4,0x8,
0x40,0xbb,0x1,0x71,0xb1,0xb1,0x43,0xf9,0x13,0xb5,0xab,0xb3,0x26,0xe,0xe5,0xbf,
0x36,0xfc,0x7f,0xd5,0x29,0xd1,0xda,0x9a,0xa,0x6,0xbd,0xd7,0x37,0x70,0xad,0xa0,
0xfa,0xd,0x2b,0x5e,0x48,0x42,0xaa,0xeb,0x90,0xea,0x3b,0x43,0xe4,0x58,0xd6,0xb0,
0x76,0xac,0xf9,0xa9,0x5e,0xc4,0xf2,0xfc,0x5,0x48,0xf5,0x25,0x52,0x9d,0x69,0x88,
0x1c,0xcb,0x1a,0xd6,0x8e,0x35,0x7f,0xcd,0xcb,0xf,0x21,0xd5,0xaf,0x48,0xb5,0x1e,
0x52,0xad,0x67,0x88,0x1c,0xcb,0x1a,0xd6,0x8e,0x35,0x3f,0xd5,0xc3,0x48,0xf5,0x32,
0x1e,0x3b,0xd2,0x8c,0x54,0x47,0x1a,0x22,0xc7,0xb2,0x86,0xb5,0x63,0xcd,0x4f,0x75,
0x38,0x52,0x7d,0x8e,0x3f,0xb4,0x7e,0x83,0x54,0xc3,0x1a,0x22,0xc7,0xb2,0x86,0xb5,
0x63,0xcd,0x5f,0xbb,0xf6,0x11,0xa4,0xde,0x0,0xa9,0xb6,0x46,0xaa,0x9d,0xd,0x91,
0x63,0x59,0xc3,0xda,0xb1,0xe6,0xdf,0xfd,0xf6,0x63,0x48,0x7d,0x9,0x52,0x5d,0x8f,
0x54,0xab,0x1b,0x22,0xc7,0xb2,0x86,0xb5,0xfa,0xf3,0x6d,0x5a,0x35,0xbf,0x9a,0x88,
0x46,0x49,0x3d,0xe,0x7e,0xe4,0x79,0x4,0xa9,0xa7,0x40,0xea,0xb,0xc,0x91,0x63,
0x59,0xc3,0x5a,0x7d,0xfe,0xad,0x6b,0x16,0xe2,0x68,0xf8,0x59,0x49,0x2e,0x52,0xdf,
0x85,0xd4,0xcf,0x20,0xf5,0x24,0x86,0xc8,0xb1,0xac,0x61,0xad,0x3e,0xff,0xf6,0xc2,
0x54,0x95,0x88,0xc3,0xb1,0xe6,0xe5,0x14,0xac,0x5a,0xf3,0x20,0x52,0xbf,0x88,0xd4,
0xd7,0xe1,0x27,0xff,0x78,0x1c,0xa9,0x8f,0x42,0xea,0x87,0xc,0x91,0x63,0x59,0xc3,
0x5a,0x7d,0x7e,0xea,0x2d,0x55,0x22,0xe,0x47,0xea,0x49,0x91,0xfa,0x57,0xa4,0x3e,
0x16,0xa9,0x7f,0xc4,0x7f,0xbd,0xbd,0xc,0xa9,0x77,0x43,0xea,0xc3,0xc,0x91,0x63,
0x59,0xc3,0x5a,0x7d,0x7e,0xea,0x67,0x55,0x22,0xe,0xc7,0xed,0xaf,0x2f,0x46,0xea,
0x3f,0xe9,0x3d,0x6e,0x41,0xea,0x5d,0x91,0x7a,0x5c,0xa4,0x7e,0x11,0xa9,0x7,0x34,
0x44,0x8e,0x65,0xd,0x6b,0xf5,0xf9,0xa9,0x77,0x56,0x89,0x38,0x1c,0x77,0xb8,0xb3,
0xe8,0x1d,0xfa,0xf,0xbd,0x4b,0x1d,0xd8,0x58,0xb1,0x2,0x6b,0xdf,0x7d,0x12,0xa9,
0x47,0xc5,0x5f,0x2f,0xf4,0x1a,0x22,0xc7,0xb2,0x86,0xb5,0xfa,0xfc,0x7b,0xd6,0x2d,
0x55,0x89,0x38,0x1c,0x3f,0xf2,0x64,0x23,0xf5,0xda,0x48,0x3d,0x36,0xee,0xdb,0xb8,
0x12,0x77,0xaf,0x7f,0x1a,0xa9,0x3f,0x46,0xea,0x79,0xd,0x91,0x63,0x59,0xc3,0x5a,
0x7d,0xfe,0xea,0x97,0xec,0x97,0xab,0x5f,0xb4,0xe3,0x70,0xac,0x74,0xda,0xe8,0x1a,
0x4e,0x22,0xf5,0xda,0xd8,0xb4,0x59,0xc4,0x3d,0xa5,0x79,0x48,0xbd,0x39,0x52,0xbf,
0xad,0x91,0xfa,0x6f,0x3c,0x7f,0xae,0x7,0xa9,0x57,0xd7,0xc8,0x63,0x9e,0xb,0xfa,
0x39,0x96,0x35,0xac,0xd5,0xe7,0xaf,0x2f,0xce,0xc6,0x91,0x58,0xb7,0xd6,0x81,0xca,
0xc9,0x4e,0xec,0xed,0x39,0x8b,0x5f,0x55,0xe5,0x63,0x7d,0xd9,0xa,0xec,0x39,0x7b,
0x1a,0xa9,0xd7,0xd7,0x78,0xa1,0xaf,0x17,0x3b,0x8f,0xb7,0xe3,0xe1,0x43,0x7,0x35,
0xf2,0x98,0xe7,0x82,0x7e,0x8e,0x65,0xd,0x6b,0xf5,0xf9,0xbd,0x25,0x4b,0x71,0x34,
0xdc,0xbf,0xd5,0x89,0xd,0x15,0x2,0xfe,0xdc,0xdd,0x85,0x97,0x2f,0x5d,0xd4,0xc8,
0xeb,0x6a,0xde,0x55,0x1a,0x8a,0xe1,0x31,0xcf,0x5,0xfd,0x1c,0xcb,0x1a,0xd6,0xea,
0xf3,0xef,0x2d,0xa3,0xef,0xe5,0x28,0xd8,0x5c,0xbd,0x8a,0xae,0xe3,0x85,0xd0,0xfd,
0x60,0xf2,0xf5,0xee,0xab,0xc8,0x1b,0x40,0x9e,0xb,0xfa,0x39,0x96,0x35,0xac,0xd5,
0xe7,0xd7,0xeb,0x46,0x62,0x73,0xb5,0x34,0x88,0xde,0x72,0x1,0xf,0x6c,0x2f,0x18,
0x40,0x9e,0xbb,0x5a,0xac,0x3e,0xff,0xfe,0x2d,0xcf,0xe3,0x68,0x78,0xb5,0x73,0x36,
0x6e,0xcc,0xc7,0x1f,0x3e,0x2f,0x1d,0x40,0x9e,0x33,0x92,0x5f,0xbf,0xee,0x6b,0x61,
0x4b,0x8d,0x44,0xcf,0x76,0x55,0x28,0x7,0x8f,0x79,0xee,0x9b,0x6d,0xab,0x47,0xfc,
0xbd,0x6d,0xad,0xf3,0x60,0x6b,0xdd,0x9b,0xe3,0xc2,0x23,0xb5,0xee,0x11,0xf3,0xeb,
0xef,0xdb,0xf5,0x64,0x5b,0xc3,0xfa,0x11,0xf3,0xb7,0x35,0xbc,0xa7,0xb6,0x37,0xbe,
0x8f,0xe3,0xc1,0x63,0xde,0x92,0x73,0x23,0xe5,0xa7,0xe7,0x95,0x49,0xfc,0x7d,0x9c,
0x68,0x1b,0x29,0xff,0x48,0x8,0xfe,0x6,0x19,0x9d,0xbf,0xde,0xf8,0xa2,0xf2,0x59,
0x1c,0x8e,0xe3,0x9d,0x9f,0xee,0xe1,0xce,0xab,0xbd,0xc7,0x1,0xee,0x1c,0xef,0xfc,
0x7f,0x56,0xfc,0xaf,0xfe,0xa7,0x60,0x5e,0xed,0x7f,0x8a,0x3f,0x0,0x8a,0xd9,0x2f,
0x7e,
// F:/??ico/????/folder.ico
0x0,0x0,0x4,0xc8,
0x0,
0x0,0x1c,0x6e,0x78,0x9c,0xed,0x58,0x5f,0x6c,0x14,0x45,0x1c,0xfe,0xae,0x6d,0xca,
0x91,0x7a,0x5e,0x4d,0xd5,0xc6,0xd6,0x62,0x2b,0xa4,0x34,0xd7,0x58,0xf4,0x4e,0x9b,
0xfe,0xb1,0xa9,0xf0,0x40,0x88,0x9,0x2f,0xc4,0x7,0x1e,0xc,0x4f,0x3e,0x11,0x4d,
0x78,0xc1,0x34,0x39,0x84,0xb,0x86,0x74,0x93,0xc5,0x10,0xf4,0xc1,0x87,0x4b,0x7c,
0xab,0xb6,0xd,0xa9,0x25,0x27,0xde,0x1e,0x4b,0x61,0xa3,0x45,0x42,0x88,0x4,0x91,
0x40,0x2b,0x6d,0x39,0xda,0x34,0x47,0xd5,0x13,0x95,0x90,0xb4,0x5,0xf3,0xf3,0x37,
0x73,0xdd,0xf6,0xa0,0x73,0xf5,0x5a,0x19,0xff,0x24,0xfd,0x76,0xbe,0xd9,0xfb,0xcd,
0x37,0x33,0xdf,0xec,0xdc,0x6e,0xbb,0xbf,0x3,0x3c,0x28,0x44,0x75,0x75,0x29,0x9f,
0x8b,0x70,0xab,0x0,0x68,0x4,0x38,0x6,0xc7,0x5e,0x74,0x7b,0x81,0x75,0x85,0x6e,
0x5c,0x8d,0xee,0x52,0xe0,0x9b,0x12,0xa0,0x4e,0xf4,0x61,0xbe,0x6,0xc8,0x71,0x12,
0x5,0xc8,0x81,0x88,0x2c,0x88,0x44,0x32,0x27,0x71,0x88,0x26,0xae,0x1c,0xc7,0xe1,
0x16,0x92,0x5,0x44,0x99,0x93,0x38,0x44,0x93,0xa8,0x96,0xd,0xb3,0x75,0x1,0x1c,
0x96,0x24,0xec,0xe8,0x7c,0x61,0xd3,0x58,0x36,0xfa,0x81,0xd6,0xa8,0x10,0xa2,0xb2,
0x4e,0x70,0x9c,0x88,0xc5,0xec,0x68,0xdc,0xb6,0xe3,0xa2,0x7e,0x51,0xf4,0xb7,0xa2,
0x66,0x34,0x1e,0x4f,0x88,0x22,0x74,0x3b,0x6a,0xc5,0xac,0x44,0xc2,0xe2,0xb3,0xe8,
0x6f,0xb7,0x9a,0xe1,0xa8,0xd9,0xc4,0xa1,0x19,0xb6,0xe4,0x7c,0x61,0xcb,0x8a,0xdb,
0x66,0xd8,0xe4,0x9a,0xfd,0xe2,0x31,0xab,0xd5,0xb4,0x78,0x88,0x15,0x8f,0x8b,0xf1,
0x76,0xd8,0x34,0xdf,0x67,0xd5,0x14,0x64,0x9d,0x7,0xb,0x74,0x58,0x71,0x6e,0xe7,
0xd8,0x8a,0x89,0xb0,0x53,0x84,0x52,0xe7,0xfe,0x9d,0x56,0xd8,0xcc,0x34,0xf2,0x78,
0x33,0x6c,0x58,0x66,0xa6,0x98,0x86,0xe8,0x9f,0x70,0x43,0xc3,0x10,0xba,0x35,0x1f,
0xf2,0x27,0xd6,0x4d,0x73,0x71,0xff,0xe9,0x33,0xb2,0x18,0xa6,0xd8,0x2e,0xc3,0x36,
0x2d,0x2e,0x71,0xcb,0xb6,0xc5,0xf6,0x59,0x96,0x9c,0x81,0x1d,0xd,0x43,0x6e,0xa7,
0x98,0x28,0xd3,0x66,0x89,0x78,0x7e,0x72,0xcb,0x8a,0xc8,0xfe,0x22,0x8c,0x64,0x6d,
0xbf,0x50,0xfb,0x17,0x62,0xd9,0x39,0x5b,0xbf,0xc7,0x2d,0xbf,0x2e,0xc4,0x7e,0xc3,
0x30,0x8e,0xe4,0xfe,0x36,0x29,0xb,0x3c,0xca,0x9f,0x4,0xd6,0x38,0x7f,0x9f,0x7e,
0x66,0x7b,0x16,0xf,0x38,0x6b,0x88,0xb2,0x99,0xf4,0x67,0x3c,0x1f,0xbc,0xcf,0xbd,
0x99,0x45,0x15,0x65,0x2d,0xd0,0x33,0x47,0x81,0xae,0x6b,0x28,0xf8,0x74,0x8,0xc5,
0x9f,0xd,0x63,0x6d,0xcf,0xf,0x78,0xbc,0x77,0x4,0x65,0xc7,0x46,0x51,0xfe,0xf9,
0x18,0xd0,0xc3,0x2b,0xef,0x9b,0x42,0x61,0xff,0x8f,0x28,0x62,0x7a,0x8f,0xff,0x84,
0xc7,0x62,0x3f,0xc3,0xf7,0x45,0x1a,0x55,0xc7,0x93,0x28,0xfb,0xf2,0x36,0x9e,0x8c,
0xdf,0x46,0x45,0xe2,0x37,0x54,0xd9,0xbf,0x63,0x7d,0x6c,0x1c,0x75,0x27,0x26,0xd0,
0x60,0x4d,0x22,0x74,0x72,0x12,0xcd,0xa7,0x52,0x68,0x1b,0x48,0xa1,0x66,0xe0,0xe,
0xea,0xce,0xdc,0xc5,0xe6,0xd3,0x29,0xb4,0x7f,0xf5,0xb,0x2,0xce,0x5d,0x4,0xbf,
0x9e,0xc6,0xcb,0x83,0xd3,0x68,0x39,0x37,0x8b,0xf6,0xf3,0xf7,0xb0,0xd5,0x49,0x61,
0xdb,0x60,0x1a,0xdb,0xcf,0xa6,0xb1,0xe5,0xc2,0x7d,0xbc,0xfe,0xed,0x1f,0xd8,0x71,
0x89,0xf0,0xc6,0x77,0x84,0x9d,0x97,0x9,0x6f,0x7e,0x4f,0xd8,0x75,0x85,0xf0,0xf6,
0xc5,0x34,0xde,0xba,0x4a,0xd8,0x3d,0x44,0x78,0x87,0x79,0xe0,0xea,0x1d,0xec,0x19,
0x26,0xec,0xbd,0x4e,0xe8,0x18,0x9a,0xc1,0xfe,0xe1,0x19,0xec,0x1b,0x21,0x1c,0x1c,
0x23,0x1c,0xba,0x41,0x38,0x9c,0x24,0x1c,0x1d,0x27,0x7c,0x3c,0x41,0xf8,0x64,0x62,
0x16,0x5d,0x29,0x42,0x37,0xb3,0xe7,0x16,0xe1,0xd8,0xd4,0x4a,0x9e,0xd5,0x55,0xac,
0xe2,0xff,0x8f,0x95,0xfd,0x9f,0x5a,0x3e,0x5e,0x5a,0xab,0x44,0xd5,0x9c,0xfc,0x82,
0x5a,0x76,0x3b,0x78,0x4b,0x4a,0xb8,0x28,0x21,0x75,0x8f,0xc7,0xeb,0xf1,0xa9,0x21,
0x75,0x9e,0xc8,0xf3,0x84,0x1a,0x52,0xe7,0x79,0xa,0xca,0xd4,0x90,0xba,0xaf,0xc4,
0x57,0x50,0xa9,0x46,0x46,0xf7,0xf9,0x8a,0xaa,0xd5,0x90,0x3a,0xfb,0x14,0xd5,0x3e,
0xaf,0x84,0xd4,0xd9,0xa7,0x78,0xa3,0x1a,0x19,0xbd,0xa2,0xa2,0x38,0xa0,0x86,0xd4,
0xd7,0x55,0x56,0xfa,0xeb,0xeb,0xeb,0x3,0x8a,0x22,0x75,0x5e,0x87,0xbf,0x41,0xd,
0xa9,0xd7,0xd4,0xd4,0x3c,0x15,0x74,0xb1,0x29,0xab,0xe,0x6,0xa5,0x5e,0x5b,0x5b,
0xfb,0x74,0x48,0x20,0x18,0xa,0x6,0x1f,0xac,0xa5,0xce,0xeb,0x2c,0x6f,0x54,0x43,
0xea,0x81,0x8d,0x81,0xf2,0x26,0x35,0x32,0x7a,0x7d,0xe0,0x99,0xc6,0x66,0x15,0xda,
0xa5,0xce,0xd7,0xb6,0xe1,0xd9,0x57,0x5a,0x16,0xe3,0xd5,0xcc,0xed,0x23,0x2e,0x64,
0xc3,0xfa,0xc5,0x70,0xef,0x3e,0x79,0x35,0x9b,0x16,0x1f,0xf3,0xba,0x1a,0x2d,0xae,
0x1e,0x52,0x62,0x5e,0x86,0xbc,0xd2,0x90,0xa8,0xda,0x94,0x77,0x7f,0x53,0x53,0x23,
0x1f,0xb2,0xca,0xa1,0x37,0x35,0xcf,0x51,0xa9,0xb7,0x3f,0xb4,0x1f,0x8b,0x3b,0xcc,
0xed,0x47,0xe,0x79,0x69,0xfc,0xb7,0xde,0x53,0xaa,0xe5,0x9a,0x22,0xa5,0x2b,0xb9,
0x92,0x55,0xfc,0xa3,0xe8,0x9b,0x8a,0x30,0x49,0x13,0x9d,0x25,0xbd,0x7b,0x6f,0x7e,
0xa4,0xd1,0x7b,0xe9,0x35,0xf4,0x24,0x89,0xdf,0x83,0x25,0xb,0x7a,0x17,0x3e,0xeb,
0xa0,0xd2,0xbf,0xeb,0x1a,0x49,0xf2,0x3a,0xc4,0x99,0xdf,0xc5,0xb5,0x31,0xc7,0xf7,
0xbe,0xb0,0x47,0xec,0xcf,0xef,0xfe,0xda,0xa8,0xb2,0xe7,0x3c,0x84,0x5c,0x72,0xce,
0x42,0x9c,0x73,0x68,0xa3,0xca,0x9f,0xf3,0x1f,0x72,0xc9,0xf9,0x12,0x71,0x4e,0xa3,
0x8d,0x2a,0x7f,0xce,0xbb,0xc8,0x25,0xe7,0x6a,0xc4,0xf9,0x93,0x36,0xaa,0xfc,0x39,
0xdf,0x23,0x97,0x9c,0x27,0x12,0xe7,0x6d,0xda,0xa8,0xf2,0xe7,0x3c,0x93,0x5c,0x72,
0x8e,0x4a,0x9c,0x23,0x6a,0xa3,0xca,0x9f,0xf3,0x58,0x72,0xc9,0xf9,0x31,0x71,0x6e,
0xaa,0x8d,0x2a,0x7f,0xce,0x9b,0xc9,0x25,0xe7,0xdf,0xc4,0x39,0xb1,0x36,0xaa,0xfc,
0x39,0x67,0x27,0x97,0x9c,0xeb,0x13,0xe7,0xe1,0xda,0xa8,0xf2,0x6f,0x39,0x37,0x4b,
0x2e,0xeb,0x4e,0x4c,0x10,0xe7,0xff,0xda,0xa8,0xf2,0xdf,0x72,0xe1,0x3e,0xb9,0x6c,
0xb0,0x26,0x69,0xef,0x75,0xd2,0x46,0x95,0x7f,0xf6,0xfd,0x19,0x3a,0x39,0x49,0xef,
0x8d,0x92,0x36,0xaa,0xfc,0x77,0x5c,0x22,0x72,0xd9,0x7c,0x2a,0x45,0x87,0x6e,0x90,
0x36,0xaa,0xfc,0x77,0x5e,0x26,0x72,0xd9,0x36,0x90,0xa2,0x8e,0xa1,0x19,0x3a,0x9c,
0x24,0x1d,0x74,0x54,0xfe,0xbb,0xae,0x10,0xb9,0xdc,0x36,0x98,0xa6,0xcd,0xa7,0x53,
0xb4,0x7f,0x78,0x86,0x3e,0x1c,0xa7,0x47,0x46,0x63,0x74,0xf6,0xa2,0xca,0x5b,0xe0,
0xe1,0x67,0x64,0xfb,0xd9,0x34,0x6d,0x75,0x52,0x8f,0x8c,0x38,0xd2,0xd7,0x92,0xcb,
0x5b,0x60,0x37,0x3f,0x17,0x3a,0xb9,0x94,0xb7,0xc0,0x9e,0x61,0x22,0x8d,0x54,0x7e,
0xe7,0xd9,0x78,0x97,0x9f,0x4b,0x4d,0xfc,0x4b,0x6f,0x81,0x7d,0x23,0x44,0x79,0xb2,
0x2f,0x9f,0xf9,0x96,0x8b,0x83,0x63,0x44,0xf9,0x52,0x87,0x7f,0x27,0xff,0x5d,0xc8,
0x97,0x3a,0xfc,0x3f,0xb8,0x49,0xe,0x93,0xf2,0xa0,0xa3,0xc3,0x5f,0xe0,0xe8,0x38,
0x39,0x4c,0x5a,0x82,0xda,0xbc,0xff,0x2d,0x68,0xfc,0x9d,0xe2,0x39,0x27,0x8f,0xdf,
0x29,0xfe,0x4,0xa4,0x29,0x2f,0x81,
// F:/??ico/????/gear.png
0x0,0x0,0x9d,0xf9,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x6,0x0,0x0,0x0,0x5c,0x72,0xa8,0x66,
0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64,
0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x3,0x73,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,
0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x0,0x0,
0x0,0x0,0x0,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x62,0x65,0x67,
0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,
0x30,0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,
0x7a,0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,0x6d,
0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,
0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,
0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,
0x43,0x6f,0x72,0x65,0x20,0x35,0x2e,0x35,0x2d,0x63,0x30,0x31,0x34,0x20,0x37,0x39,
0x2e,0x31,0x35,0x31,0x34,0x38,0x31,0x2c,0x20,0x32,0x30,0x31,0x33,0x2f,0x30,0x33,
0x2f,0x31,0x33,0x2d,0x31,0x32,0x3a,0x30,0x39,0x3a,0x31,0x35,0x20,0x20,0x20,0x20,
0x20,0x20,0x20,0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,
0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,
0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,
0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,
0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,
0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,
0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,
0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,
0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,
0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,
0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x52,0x65,0x66,0x23,
0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74,0x74,
0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,
0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,
0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,
0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x62,0x37,0x62,
0x65,0x63,0x36,0x38,0x38,0x2d,0x66,0x63,0x30,0x31,0x2d,0x34,0x34,0x64,0x64,0x2d,
0x39,0x30,0x66,0x63,0x2d,0x35,0x32,0x32,0x64,0x32,0x35,0x30,0x61,0x35,0x35,0x36,
0x31,0x22,0x20,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,
0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x41,0x38,0x36,
0x39,0x37,0x30,0x43,0x45,0x33,0x37,0x39,0x44,0x31,0x31,0x45,0x33,0x39,0x42,0x43,
0x44,0x44,0x45,0x31,0x37,0x32,0x46,0x37,0x37,0x32,0x41,0x45,0x46,0x22,0x20,0x78,
0x6d,0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3d,
0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x41,0x38,0x36,0x39,0x37,0x30,0x43,
0x44,0x33,0x37,0x39,0x44,0x31,0x31,0x45,0x33,0x39,0x42,0x43,0x44,0x44,0x45,0x31,
0x37,0x32,0x46,0x37,0x37,0x32,0x41,0x45,0x46,0x22,0x20,0x78,0x6d,0x70,0x3a,0x43,
0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,
0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,0x43,0x20,0x28,
0x4d,0x61,0x63,0x69,0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,
0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,
0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32,0x63,0x64,0x37,0x38,0x30,
0x62,0x30,0x2d,0x61,0x62,0x66,0x66,0x2d,0x34,0x39,0x32,0x63,0x2d,0x39,0x32,0x61,
0x31,0x2d,0x37,0x65,0x65,0x36,0x65,0x36,0x33,0x62,0x33,0x38,0x39,0x32,0x22,0x20,
0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,
0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x62,0x37,0x62,0x65,0x63,0x36,
0x38,0x38,0x2d,0x66,0x63,0x30,0x31,0x2d,0x34,0x34,0x64,0x64,0x2d,0x39,0x30,0x66,
0x63,0x2d,0x35,0x32,0x32,0x64,0x32,0x35,0x30,0x61,0x35,0x35,0x36,0x31,0x22,0x2f,
0x3e,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,
0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,
0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0x20,0x3c,0x3f,0x78,
0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,
0x58,0x92,0xde,0xf7,0x0,0x0,0x9a,0x1c,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0xbd,
0x7,0x9c,0x26,0xc7,0x55,0x2f,0x7a,0xaa,0xbf,0x30,0x79,0x76,0x67,0x66,0x77,0x36,
0xe7,0xa8,0x5d,0xad,0xa4,0x95,0xa5,0x55,0xb6,0x2d,0xd9,0xa,0xc6,0x38,0xdb,0x60,
0xe3,0x80,0x2f,0xf1,0xf2,0xc8,0x97,0x70,0x71,0xc2,0x7e,0xc0,0xfd,0xc1,0x23,0x3c,
0xb8,0x70,0xb1,0x1,0xd9,0x18,0xc3,0x3,0x1e,0x36,0xf6,0x5,0xcb,0x41,0xb2,0x6c,
0xd9,0x56,0xce,0x69,0x83,0x56,0x2b,0x6d,0xce,0x3b,0x1b,0x67,0x27,0x7e,0xa1,0xeb,
0xd6,0x39,0x15,0xba,0xaa,0xba,0xfb,0xb,0x13,0xbf,0x59,0x4d,0xaf,0x4a,0x5f,0x9c,
0xfe,0xba,0xab,0xea,0xe4,0x73,0xfe,0x87,0x7d,0xea,0x7f,0x7c,0x13,0xa6,0xf1,0x98,
0x27,0xc6,0xd5,0x62,0x5c,0x25,0xc6,0x3a,0x31,0x56,0x8a,0xb1,0x58,0x8c,0x1e,0x31,
0xda,0xc4,0x68,0x87,0xd9,0x63,0xf6,0x98,0xd9,0xc7,0xa8,0x18,0x83,0x62,0x9c,0x17,
0xe3,0xa2,0x18,0x7d,0x62,0x1c,0x10,0xe3,0x15,0x31,0x9e,0x17,0xe3,0x59,0x31,0x4e,
0x4f,0xd7,0xc5,0x65,0xa7,0xf8,0xf7,0x9a,0xc5,0xb8,0x4d,0x8c,0xb7,0x88,0xf1,0x26,
0x31,0x36,0x8a,0xc1,0x66,0xf7,0xc8,0xec,0x71,0x9,0x1f,0x4d,0x6a,0x74,0xa7,0x7c,
0xce,0xc5,0xd8,0x2d,0xc6,0xf7,0xc4,0xf8,0xb6,0x18,0xf,0x88,0x31,0x72,0x29,0x31,
0x0,0x24,0xf0,0x37,0x88,0xf1,0x53,0x62,0xbc,0x43,0x8c,0xce,0xd7,0xc4,0xb2,0x73,
0xae,0xee,0x9e,0x25,0xbf,0x5f,0xf7,0x2c,0xce,0xf2,0xc9,0x4b,0xf4,0xc0,0x85,0xbd,
0x4c,0x8d,0x5f,0x12,0xa3,0x5f,0x8c,0xff,0x14,0xe3,0xef,0xc5,0xf8,0xa1,0x62,0x10,
0x93,0x76,0x4,0x93,0x2c,0xed,0x7f,0x4e,0x8c,0x97,0xc4,0xf8,0xbe,0x18,0x1f,0x7e,
0xcd,0x10,0xff,0xec,0x31,0x7b,0x8c,0xfd,0xe8,0x54,0xb4,0xf2,0x7d,0x45,0x3b,0x3f,
0xa7,0x68,0x69,0xc6,0x68,0x0,0x79,0x31,0x7e,0x5e,0x8c,0x8f,0x89,0xb1,0xa8,0xd2,
0x17,0xc3,0x30,0x84,0x42,0xa1,0x8,0xc5,0x22,0x8e,0x12,0x94,0xcb,0x65,0x28,0x95,
0x4a,0xf4,0x7e,0x18,0x72,0x21,0x2c,0xb9,0xd1,0x91,0x1a,0x58,0xd4,0x8f,0x49,0x31,
0x18,0xbf,0xc0,0x9f,0xd5,0x8,0x1a,0x5d,0xac,0xcb,0x75,0x64,0x34,0x82,0x20,0x10,
0x83,0x41,0x26,0x93,0xa1,0x91,0xcb,0x65,0x21,0x97,0xcf,0x41,0x3e,0x97,0xa3,0xcf,
0x52,0x8e,0xd,0x62,0xfc,0xad,0x18,0x9f,0x11,0xe3,0xf,0xd5,0xf3,0x42,0x23,0x33,
0x80,0x5b,0xc5,0xf8,0x6b,0xa5,0xce,0x24,0x6c,0x7e,0xe,0xa3,0xa3,0x5,0x18,0x1e,
0x19,0x85,0xd1,0x91,0x11,0x22,0x7e,0xee,0x51,0x5,0xe7,0x7c,0x86,0x2d,0x35,0xaf,
0x42,0xf0,0x7c,0x6c,0x84,0x3b,0xcb,0x0,0x66,0xb6,0x5,0x98,0xca,0xd8,0x99,0xc3,
0xe5,0xf1,0x55,0x5e,0x30,0x82,0xa6,0xe6,0x66,0x68,0x69,0x6e,0x82,0xa6,0xa6,0xbc,
0xfb,0x1d,0x79,0xa0,0x20,0xfd,0x4b,0x31,0x7e,0x41,0x99,0x9,0xf,0x34,0x1a,0x3,
0x58,0x20,0xc6,0x9f,0x89,0xf1,0xc1,0xa4,0xf,0x91,0xe8,0x7,0x7,0x87,0x60,0x78,
0x78,0x58,0x48,0xf9,0x30,0x92,0xec,0x33,0x8e,0xd8,0xc7,0x20,0xe1,0x63,0xf4,0xcf,
0x3d,0x2,0xe6,0x29,0xe7,0x61,0x55,0x34,0x3,0x3e,0xcb,0x8,0x66,0xe4,0xfe,0xe0,
0xce,0x66,0xe1,0x8a,0x3e,0x70,0x5c,0xec,0x47,0xd,0x21,0x80,0x96,0x96,0x16,0x68,
0x6b,0x6b,0x25,0x66,0xe0,0x1d,0x28,0x58,0xd1,0x59,0xf8,0xcf,0x62,0xfc,0x86,0x18,
0x27,0x1b,0x81,0x1,0xdc,0x21,0xc6,0x3f,0x89,0xd1,0xeb,0xdf,0xe8,0xd0,0xd0,0x30,
0xf4,0x5f,0x1c,0x84,0x62,0xa1,0x70,0x49,0x13,0x7d,0x22,0xff,0xe7,0x95,0x37,0x0,
0x83,0x14,0x3e,0xc0,0x52,0x39,0xc7,0x2c,0xf5,0x5c,0xe2,0x4c,0x1,0x1f,0x71,0x5c,
0xbc,0x38,0x0,0x3,0x3,0x83,0xc2,0x44,0xc8,0x43,0x67,0x47,0x1b,0xb4,0xb6,0xb6,
0xf8,0x5a,0xc1,0x7,0x15,0xdd,0x7d,0x48,0x8c,0xef,0x8c,0xe7,0xb7,0xc7,0xe3,0x4,
0xcc,0x88,0xf1,0x7b,0x20,0x43,0x17,0xbd,0xb6,0x4,0x1c,0x10,0xd2,0xfe,0xf8,0x89,
0x53,0x70,0xe6,0xcc,0x39,0x28,0x8c,0x8e,0x9a,0x1b,0xbb,0x94,0x89,0x1f,0x6f,0x4d,
0xde,0x1e,0x57,0xff,0x25,0xff,0x8b,0xc8,0x5b,0xbd,0xe6,0x1e,0xad,0xf3,0x94,0xa1,
0x9e,0xe8,0xdf,0x71,0x7e,0xf,0xf8,0x2c,0x15,0x5d,0x42,0xcc,0x40,0xf,0xa4,0x1d,
0xa4,0x21,0xa4,0x25,0xa4,0x29,0x8f,0x7c,0xe6,0x2b,0xda,0xfb,0x3d,0x45,0x8b,0x53,
0xaa,0x1,0xcc,0x11,0xe3,0x2b,0x62,0xdc,0xee,0xab,0xfa,0xe7,0xcf,0x9f,0xa7,0x47,
0x6d,0xdb,0x5f,0xfa,0x12,0x3f,0x4d,0xe7,0x4f,0x7e,0x3f,0xdd,0x25,0xc0,0xbc,0xb7,
0x67,0x25,0xfe,0xac,0x56,0x20,0x77,0x2,0x3a,0xc9,0xcf,0x9e,0x39,0xb,0x83,0x3,
0x3,0x30,0x77,0xee,0x5c,0xdb,0x34,0x40,0x1,0xfe,0x29,0x31,0xae,0x17,0xe3,0x7d,
0x62,0x5c,0x98,0xa,0xd,0x0,0x33,0xf5,0x1e,0xb1,0x89,0x1f,0xbd,0xf6,0xe7,0xce,
0x9d,0x87,0x53,0xa7,0xfa,0x24,0xf1,0x23,0xe1,0x87,0xe1,0x25,0x4e,0xfc,0xbc,0x2,
0xf1,0xc7,0xbf,0x17,0x49,0xec,0x5a,0xce,0x17,0xd7,0x18,0xd2,0x7e,0x77,0x56,0x13,
0x78,0xd,0x68,0x4,0x8a,0x96,0x90,0xb6,0x90,0xc6,0x90,0xd6,0x90,0xe6,0xac,0x3,
0x69,0xf1,0x61,0x45,0x9b,0x93,0xca,0x0,0x96,0x8b,0xf1,0xa0,0x18,0x9b,0x6d,0xa9,
0x7f,0x2,0x55,0x14,0x61,0xb3,0x84,0xaf,0x1,0x55,0x7f,0xcc,0xdc,0x3c,0x65,0x44,
0x2a,0x9f,0x4d,0xc8,0xb3,0xc7,0xec,0x91,0x6c,0x1a,0x20,0x8d,0x21,0xad,0x21,0xcd,
0x21,0xed,0x59,0xc7,0xe5,0x8a,0x36,0x57,0x4c,0x16,0x3,0x40,0x9b,0x3,0x3d,0x90,
0x6b,0xf4,0x1b,0xe8,0xac,0xe8,0xeb,0x3b,0x6d,0x62,0xf7,0x97,0xbe,0xd4,0xaf,0xdd,
0x22,0x90,0x2a,0xbc,0x24,0x6c,0xdf,0x27,0x50,0xc9,0x8a,0x88,0xa6,0x2f,0x35,0x90,
0x4,0x95,0x1d,0x82,0xb3,0x9a,0xc0,0xa5,0xae,0xd,0x20,0xad,0x21,0xcd,0x21,0xed,
0x21,0xd,0x5a,0x7,0xd2,0xe6,0x77,0x15,0xad,0x4e,0x28,0x3,0xc0,0xa2,0x9c,0x7b,
0xc4,0x58,0xab,0x2f,0x4,0x9d,0x13,0xe7,0x2f,0xf4,0x4b,0xc2,0x9f,0x95,0xfa,0x75,
0xf2,0x88,0x30,0x1a,0x9c,0xcf,0x12,0xee,0xec,0x31,0x36,0x6d,0x40,0xd0,0x1e,0xd2,
0x20,0xd2,0xa2,0x45,0x7f,0x6b,0x15,0xad,0xb6,0x4d,0x14,0x3,0x40,0xf,0x23,0xe6,
0x26,0x5f,0xa7,0xed,0xfd,0xbe,0xbe,0xb3,0x30,0x34,0x3c,0x6c,0x24,0xfe,0x2c,0xf1,
0x27,0x11,0x39,0x4f,0xb1,0xf9,0x79,0xcc,0xbb,0xef,0x46,0x3,0x12,0xe2,0xfb,0x2c,
0x2e,0xf9,0x31,0x2a,0x64,0x8f,0x59,0x4d,0xe0,0xb5,0xc9,0x4,0x90,0x6,0x91,0x16,
0x91,0x26,0x2d,0xbf,0x0,0xd2,0xea,0xd7,0xa1,0x86,0xe8,0x40,0x2d,0xc,0xe0,0x8f,
0x41,0x56,0xf0,0x41,0x59,0xfc,0xc0,0xe9,0xd3,0x67,0x61,0xb4,0x30,0x3a,0x4b,0xfc,
0xb3,0xc7,0xec,0xd1,0x40,0x4c,0x0,0x69,0x12,0x69,0x13,0x13,0xed,0xd4,0x71,0x9b,
0xa2,0xdd,0x71,0x31,0x80,0xb7,0x8b,0xf1,0xeb,0x52,0xf2,0x73,0xa,0x45,0x14,0x30,
0xa9,0x67,0x96,0xf8,0xd3,0xed,0x73,0x6,0x9e,0x9d,0x9f,0x60,0xf7,0x33,0x5b,0xa0,
0xb3,0x54,0x1d,0x82,0xa9,0xf3,0x39,0x7f,0xca,0xaa,0xd5,0x9,0x30,0xff,0x7,0x66,
0x8f,0xd7,0x8,0x13,0x40,0xda,0x3c,0x7b,0xf6,0x2c,0xd1,0xaa,0x3a,0x7e,0x5d,0xd1,
0xf0,0x98,0x18,0xc0,0x42,0x31,0xbe,0x80,0xbb,0x8,0x7f,0xe0,0xdc,0xb9,0xb,0xe4,
0x75,0x9c,0x7e,0x9b,0x7f,0x66,0xaa,0xb6,0xb3,0x71,0xfd,0xd9,0x63,0x2a,0x7c,0x2,
0x48,0xa3,0x48,0xab,0x8a,0x3e,0x99,0xa2,0xe1,0x85,0x63,0x61,0x0,0xff,0xb,0x24,
0x62,0xf,0x39,0x1a,0x46,0x46,0x86,0xa7,0x99,0xf8,0xab,0xa5,0xcc,0x35,0x12,0xa9,
0x33,0x23,0xad,0x6d,0xe2,0x67,0x29,0x52,0xd9,0x48,0x7a,0xe6,0x49,0x70,0xeb,0x75,
0x5c,0xf2,0xb3,0x94,0x31,0x5d,0xeb,0x32,0xeb,0x73,0x68,0x14,0x26,0x80,0xb4,0x8a,
0x34,0xab,0x8e,0x79,0x8a,0x96,0xeb,0x62,0x0,0x6f,0x15,0xe3,0x3d,0xf8,0x4,0x63,
0x8e,0xc3,0x43,0x23,0xd,0xe3,0xed,0xaf,0x9e,0x50,0xd3,0x60,0x72,0x9f,0xb1,0x3a,
0x68,0x93,0xcd,0xe2,0x7e,0xcc,0x1e,0x13,0xc2,0x4,0x90,0x66,0x91,0x76,0xd5,0xf1,
0x1e,0x45,0xd3,0xb1,0x23,0x29,0x15,0x18,0xe1,0x8b,0xfe,0x1c,0x9f,0x60,0xb9,0x2e,
0xc6,0x19,0xc3,0x72,0x89,0x6c,0x8c,0xe9,0xa1,0x3e,0x9e,0xf8,0x32,0xe,0xb8,0x33,
0xd5,0xd5,0x71,0x3c,0xe5,0xa5,0x2a,0xf6,0xe1,0xd6,0x2b,0xee,0xbe,0xcf,0x3d,0x39,
0x2e,0xdf,0x64,0xd1,0x77,0x2a,0x56,0xa,0x56,0xae,0x22,0x9c,0x1e,0xd,0xa0,0xd2,
0xeb,0x59,0x8e,0x36,0xe5,0x2b,0x82,0xb9,0x2,0x50,0x22,0xda,0xcd,0xe7,0xf3,0x54,
0x6e,0xac,0x68,0x1a,0x73,0x4,0x46,0xab,0x69,0x0,0x3f,0x2b,0xc6,0x3a,0x74,0x24,
0x5c,0xc0,0x38,0x7f,0x39,0x6c,0xe8,0x58,0xff,0xcc,0xd2,0x8,0x6c,0x23,0x81,0x59,
0x84,0x6e,0x9b,0xc,0x33,0x9b,0x60,0xe2,0xc5,0x4a,0xb3,0xc7,0x74,0x69,0x1,0x48,
0xbb,0x44,0xc3,0xd2,0x29,0xb8,0x4e,0xd1,0x76,0x45,0x13,0xa0,0x45,0x8c,0x8f,0xe3,
0x93,0xc1,0xc1,0x41,0x28,0x15,0x8b,0x10,0xf2,0x50,0x5a,0x77,0x53,0xb6,0x9a,0xc9,
0x36,0x65,0x3c,0xe7,0x7d,0xba,0x73,0xe2,0xab,0xeb,0xf5,0xda,0xfb,0xcf,0x6c,0xdb,
0x3e,0xc5,0x6c,0xd7,0xdf,0xf1,0xfd,0x1,0xd5,0xbd,0xfe,0x13,0xe5,0x53,0x19,0xdb,
0xdf,0xa7,0x57,0x27,0xce,0xfa,0x6,0xa6,0x95,0x9,0x88,0x47,0xa4,0x5d,0xa4,0x61,
0xa4,0x65,0x75,0x7c,0x5c,0xd1,0x78,0x2a,0x3,0xc0,0xfa,0xe2,0x45,0x8,0xcf,0x35,
0x34,0x38,0x6c,0xd2,0x7b,0x1b,0x9b,0x95,0xcf,0x84,0xd,0x66,0x13,0xb2,0x9f,0xd0,
0xc3,0x2e,0x9,0xc9,0x5f,0x5d,0x43,0x9b,0x65,0x2,0x53,0x3d,0xf1,0x3a,0x6d,0x18,
0x69,0x19,0x69,0x1a,0x24,0xb2,0xd0,0x87,0x2a,0xf9,0x0,0x7e,0x13,0xff,0x77,0x71,
0x40,0x48,0xff,0xb0,0xc,0x65,0x55,0x7c,0x30,0x35,0xd2,0x9f,0xc7,0x36,0xce,0x58,
0xfe,0x5e,0x23,0xe9,0x30,0x36,0xb5,0x3e,0x1,0xee,0xdb,0xbc,0xc6,0xae,0x7,0xf,
0x7,0xc0,0xb7,0x8d,0x99,0x63,0x1a,0x70,0x96,0x66,0x3b,0xb3,0x49,0x99,0xe7,0x89,
0x5b,0x1f,0x5e,0xd1,0x57,0x81,0xeb,0x22,0xd7,0x64,0xd6,0x27,0x30,0x55,0x5a,0x0,
0xd3,0xb,0x25,0x68,0x19,0x69,0xba,0xbb,0xb,0xab,0xf8,0x9,0x49,0xe8,0xf3,0x7a,
0x61,0x6c,0xd,0xe0,0x6,0x31,0xd6,0x8f,0x8c,0x16,0x24,0x56,0x5f,0x28,0x39,0xc8,
0xec,0x31,0x4e,0x2b,0x1,0xec,0xf0,0x1f,0xb3,0xd2,0x77,0x99,0x83,0xf2,0x32,0x5d,
0x79,0x2,0x91,0x6f,0x67,0xb2,0x35,0xa9,0x59,0xd,0x60,0x5a,0xd6,0x97,0xb4,0x78,
0x4e,0x34,0x3d,0x22,0xab,0x7,0x11,0x68,0xf4,0xd,0x49,0x26,0xc0,0x47,0xf0,0x7f,
0x8,0xe3,0x15,0xa,0x8e,0xc1,0xa7,0xcc,0xf6,0x4f,0xb3,0xe5,0x53,0xbe,0x57,0x75,
0x9f,0xfa,0xf5,0xf7,0x93,0xbd,0xb1,0xab,0xc4,0xe9,0xcd,0x3,0x73,0x19,0x81,0xf7,
0xcf,0xcf,0x3,0x48,0x33,0x19,0xc6,0xee,0x4b,0x89,0xe6,0x25,0xc9,0x67,0x12,0x67,
0x4,0xbc,0xce,0xdf,0xa9,0x76,0x9d,0x6c,0x16,0xb7,0x60,0x9a,0x98,0x3b,0xd2,0x32,
0xd2,0x34,0xd2,0xb6,0x3a,0x7e,0xca,0x67,0x0,0x18,0xfa,0xfb,0x31,0x9,0xd1,0x5d,
0x92,0xd2,0x7f,0xd6,0x8d,0x3b,0x59,0xde,0x80,0x69,0xcf,0xa,0xe4,0x89,0x78,0x4,
0x3a,0xa5,0x94,0x47,0xeb,0x3f,0x7b,0x5c,0x3a,0x8c,0x40,0xac,0x29,0xd2,0x36,0xd2,
0x38,0xc8,0x6,0x3d,0xcd,0x36,0x3,0xc0,0xc2,0x81,0x6e,0x84,0xeb,0x26,0xc7,0x1,
0x9f,0xcc,0xb0,0x5f,0x35,0x2f,0xfe,0x58,0x25,0xbf,0x27,0x79,0xa7,0x8b,0xc0,0xab,
0x68,0x2,0xb1,0xcb,0x4c,0x95,0xfc,0xe3,0x9d,0x57,0xf7,0x7,0xe3,0x98,0x85,0xa1,
0xf2,0x4d,0x44,0x52,0x42,0x2,0x4e,0xf8,0xeb,0xef,0xfa,0x52,0xd2,0x35,0x2b,0x7f,
0x9d,0x92,0x17,0x6c,0x16,0xc1,0x68,0x7a,0xb4,0x0,0x5a,0x53,0x74,0x8,0x8e,0x50,
0xd7,0x31,0x6c,0x3e,0x82,0x10,0xfe,0xc6,0x9,0x78,0x1b,0x56,0x11,0x15,0x55,0xd8,
0xf,0x66,0xb,0x7d,0x26,0xdd,0x2f,0x30,0x59,0x36,0xb6,0xb,0x28,0x12,0x1,0x92,
0x80,0x69,0xb2,0xa2,0x8,0x1e,0x42,0x3,0x54,0xe2,0x5f,0x16,0xbe,0xc7,0x58,0x60,
0xfc,0x14,0x8c,0x65,0xa8,0xa9,0xc5,0xec,0x31,0xf3,0x99,0x40,0x49,0x68,0x1,0x25,
0x41,0xeb,0xd9,0x4c,0x80,0x42,0xff,0xdb,0x9a,0x1,0xbc,0xa9,0x80,0xc4,0x1f,0xf2,
0x49,0x96,0xfc,0x90,0x28,0x11,0x2a,0x7e,0x8f,0x57,0x39,0x5d,0x1a,0xa8,0x26,0x9b,
0x2e,0xca,0xe6,0x89,0xbf,0x9f,0x86,0xf3,0x3f,0x3e,0x4e,0x61,0xfb,0x3b,0x22,0x34,
0x62,0x50,0x4,0xce,0x8d,0x9a,0xaf,0x9,0x3d,0x94,0xf3,0x1d,0x46,0x15,0x8a,0x28,
0xf9,0xfd,0xfa,0x45,0x53,0xbb,0x20,0x88,0x3e,0x10,0xc4,0xcf,0x82,0xc,0x64,0xf0,
0x31,0x13,0xc8,0x48,0x45,0x6c,0x8e,0x59,0xe5,0x84,0x40,0x6,0x96,0x56,0x32,0x7b,
0x4c,0x13,0x17,0x30,0x9,0x42,0x68,0x6,0x64,0x5b,0x9a,0xde,0xa4,0x35,0x0,0xec,
0x5a,0x7a,0xe5,0xe8,0x68,0x51,0xaa,0x81,0xe1,0x2c,0xae,0xdf,0xc,0x59,0x51,0xf9,
0x7f,0x45,0xcc,0x3a,0x67,0x23,0xe4,0xd2,0x81,0x8b,0x44,0x2e,0x9f,0x2b,0x20,0xb2,
0x90,0x47,0xc4,0xce,0x2d,0xe6,0x0,0xdc,0x61,0x1e,0x8c,0x69,0x30,0x33,0x24,0x7e,
0xa9,0x5,0x64,0x32,0x59,0x41,0xfc,0x59,0xf1,0x98,0x83,0x4c,0x20,0x19,0x2,0x45,
0x30,0x30,0xb4,0x17,0xb0,0x59,0xe2,0x9e,0x21,0x1a,0x80,0xa6,0x6d,0x64,0x0,0xad,
0x2d,0x4d,0x57,0x8a,0x8f,0x7a,0x90,0x1,0x6c,0x13,0xea,0x7f,0x50,0x46,0xcf,0x7f,
0x98,0x8e,0x45,0x3b,0x51,0x92,0x3f,0x9d,0xaf,0xd4,0x28,0xf9,0xab,0x8,0xc8,0xb8,
0xe4,0x9f,0xea,0x8d,0x99,0x9c,0xab,0x5f,0xbf,0x46,0x52,0x29,0x8f,0x21,0x72,0xd2,
0x22,0x91,0xa3,0x87,0x17,0xd3,0x3e,0xcb,0x61,0x11,0x16,0x2f,0xe8,0x82,0x95,0x2b,
0x7b,0xa1,0xb3,0xa3,0x15,0xba,0xba,0xda,0x60,0x8e,0x78,0x6c,0x6b,0x6b,0x16,0xa3,
0x9,0xda,0x5a,0x9b,0xa0,0xa5,0x25,0xf,0xd9,0xac,0x50,0xe9,0xc5,0x5,0xe1,0x73,
0x3c,0x86,0x87,0xb,0x94,0xef,0x51,0x2a,0x96,0x61,0x68,0x78,0x14,0x6,0x7,0x47,
0x68,0x5c,0x1c,0x1c,0x86,0xfe,0xb,0x43,0x70,0xf6,0xfc,0x0,0x5c,0xec,0x1f,0x86,
0x3,0x87,0xfa,0xe0,0xc4,0xa9,0xf3,0x82,0x11,0xe4,0x89,0x9,0x50,0xbf,0xbb,0x72,
0x46,0x39,0x3e,0x42,0xf0,0x73,0x1a,0x66,0x8f,0xc6,0x12,0x17,0x5a,0x10,0x20,0xad,
0x23,0xcd,0x67,0x32,0xc1,0xb5,0xc8,0x0,0xb6,0x94,0x4a,0x82,0xf8,0xcb,0x2a,0xeb,
0x4f,0x8f,0x9,0xd3,0x0,0x6a,0x25,0xec,0x3a,0x19,0xc0,0xc,0x91,0xd0,0x93,0x76,
0x5e,0x25,0xed,0x43,0x5a,0xcc,0x22,0xcc,0xed,0x6c,0x85,0x9f,0xff,0xe9,0xb7,0xc1,
0x86,0xf5,0x8b,0x2c,0x46,0xeb,0x6a,0x72,0x7e,0x46,0x1e,0x2,0x4b,0xe2,0x91,0xcb,
0x49,0x5f,0x70,0x53,0x3e,0x43,0x8c,0xa2,0x77,0x7e,0xa7,0xc5,0xb8,0x22,0xe7,0x24,
0x1e,0xbb,0x5f,0x3e,0xa,0x7f,0xf7,0xc5,0xfb,0xe0,0xec,0xb9,0x21,0xc8,0x6,0x39,
0xe0,0x99,0x50,0x99,0x9,0xb3,0x9a,0x40,0x43,0x1f,0x48,0xd3,0x62,0x11,0x29,0x2f,
0xa0,0x8c,0xa0,0xa2,0x65,0x6c,0x43,0xb6,0x5,0x19,0xc0,0x3a,0x62,0x0,0x93,0xc,
0xe9,0x3d,0x6e,0xc9,0x5f,0x45,0xb2,0x4f,0xbf,0xe4,0xaf,0xf6,0xfb,0x7c,0x8c,0x7f,
0xcf,0x13,0x55,0x3a,0x74,0xe8,0xc8,0x6e,0xca,0x5,0x41,0xfc,0xcd,0xf0,0xa9,0x8f,
0xbd,0xf,0xe6,0xce,0x69,0xa5,0xf7,0xc2,0x30,0x52,0xf3,0x8d,0x7f,0xc0,0xe4,0x0,
0xf0,0xd8,0x9a,0xf8,0x51,0xb,0x53,0x97,0xc0,0x98,0x95,0xb4,0x24,0xbb,0xdb,0x6e,
0x58,0xbf,0x18,0x3e,0xfd,0xf1,0xf7,0xc3,0xa7,0xff,0xe0,0x9f,0xe1,0xfc,0xf9,0x11,
0xc8,0xb0,0xbc,0x24,0xfe,0x50,0x9b,0x3,0x9,0x2e,0x0,0x6e,0x65,0x47,0xa6,0xce,
0xcb,0x2c,0xe3,0x98,0x32,0x53,0x0,0xb5,0x3d,0x41,0xf3,0x4d,0x4d,0xb9,0xf5,0xc8,
0x0,0xd6,0x18,0x6,0x30,0x1b,0x96,0x99,0x39,0xb,0xa9,0x24,0x7f,0x59,0x30,0x80,
0x9f,0xfc,0xf0,0x5b,0x85,0xca,0xdf,0x4c,0xb6,0x5d,0x18,0x96,0xdc,0xd6,0xea,0xdc,
0x25,0xfc,0x6a,0xc,0x3e,0xca,0x4e,0x8c,0x88,0x5f,0xbf,0x8f,0xc,0x20,0x8,0xb2,
0xd0,0x2e,0xb4,0x84,0x9f,0xfc,0xe0,0x9b,0xe0,0x4f,0xfe,0xfc,0xab,0x80,0x85,0xa6,
0x4c,0xec,0xa2,0x0,0xfd,0x4,0x56,0xa8,0xd0,0x4e,0xc5,0xe6,0x1a,0xde,0x6c,0xf6,
0x68,0x0,0xbd,0x34,0x62,0x0,0x62,0x85,0x56,0x65,0xcb,0x21,0x9f,0x1f,0x6a,0xc4,
0x7a,0x4c,0x1b,0x56,0xf9,0xff,0x93,0xaf,0x10,0xf3,0x31,0xda,0xfa,0xc9,0x92,0xbf,
0xf1,0x59,0x57,0xad,0x1a,0x1,0xab,0xa0,0x9,0xe8,0x35,0xa,0x9,0xa0,0x15,0x19,
0x40,0x53,0x53,0x0,0x9b,0x37,0x2e,0xa1,0x24,0xf,0x7c,0xed,0x13,0x7f,0x65,0xed,
0x2b,0x99,0xb9,0xe8,0xdf,0x33,0x88,0x46,0xea,0x49,0x18,0x22,0x3,0x40,0xcd,0x22,
0xb,0x5b,0x36,0xaf,0x80,0x8e,0x8e,0x3c,0x5c,0x1c,0x18,0x25,0x13,0x0,0xb0,0xc7,
0x3d,0x8f,0xb0,0x8f,0xa2,0xce,0x56,0x3c,0x91,0x9,0x24,0x6b,0x1f,0xb3,0xc7,0x64,
0xa,0xd,0x9c,0xf4,0x40,0x39,0x7b,0x9,0x94,0x3e,0xe4,0x8b,0x3,0xf1,0xbf,0xe,
0xee,0x84,0x8a,0x66,0x8f,0x46,0x77,0x2d,0xc8,0x70,0xe,0xaa,0xff,0x45,0x58,0xbf,
0x6e,0x9,0xbd,0x59,0x2e,0x97,0xac,0x30,0x2e,0x24,0x74,0x1b,0x72,0x53,0x7e,0xd3,
0x86,0x9f,0x36,0xec,0x9e,0x8b,0x36,0x8d,0x32,0x33,0xca,0xb0,0x7c,0x69,0xf,0x14,
0xb,0xc3,0x50,0x2c,0x8f,0xd2,0xef,0x9b,0x88,0x43,0x4d,0x2d,0xd3,0x66,0x8f,0xe9,
0xd3,0x0,0xcc,0x5a,0xf6,0x64,0xc5,0x63,0x87,0x49,0x14,0xe1,0x53,0xb4,0x83,0xc7,
0x22,0x30,0x3d,0x9c,0xbd,0x1a,0xfe,0xe0,0x12,0x3b,0x74,0x65,0x61,0x48,0xea,0x7f,
0x18,0x16,0x49,0xe2,0xcf,0xeb,0xe9,0x54,0x4,0x19,0x3a,0xea,0xbe,0xfb,0x38,0x56,
0x5f,0x8d,0xd4,0x2,0x74,0x25,0x1f,0x57,0xa8,0x45,0x61,0x28,0xfd,0xf,0xf3,0xe6,
0x75,0x42,0xa9,0x38,0xa,0xd9,0x5c,0x9e,0x42,0x84,0xf8,0x7e,0x26,0x93,0x71,0x36,
0x5b,0xb2,0xfd,0x3f,0xeb,0x2c,0x9c,0x4e,0x1,0xa2,0x69,0x5d,0xec,0x97,0x56,0xc1,
0x0,0xc2,0x8e,0x59,0xe,0x3d,0xa3,0x74,0x39,0xa3,0x1,0x20,0x54,0xdb,0xfc,0x79,
0x73,0x3d,0xbb,0x3e,0x89,0xf8,0xeb,0x33,0x5,0xec,0x4,0x1f,0x6d,0xcf,0xfb,0xe5,
0xbc,0xf8,0x9b,0xf3,0x7a,0xe6,0x8,0xd3,0x63,0x4,0x32,0xc5,0xbc,0x30,0x3,0xb2,
0x32,0x1a,0x40,0x7e,0x83,0x4c,0x22,0x7d,0x9b,0x12,0xd5,0x59,0xda,0x6f,0x8,0x4e,
0x20,0x34,0x80,0xf6,0xac,0xd0,0xe8,0xf2,0x51,0x56,0xf6,0xe4,0x31,0x2,0x63,0xab,
0xf3,0x14,0xef,0x76,0x15,0xc9,0x7e,0xe9,0x49,0xfe,0xfa,0xb1,0xfd,0xb8,0xce,0xe1,
0xe7,0x52,0xe2,0x63,0x3c,0x17,0xa5,0xb0,0xdd,0x60,0xd4,0x97,0xe4,0x63,0x89,0xea,
0xd8,0x8c,0x3,0xed,0x7f,0xc9,0x4,0xec,0xcf,0xe4,0xef,0xf5,0xce,0x9f,0xb,0x65,
0x61,0x86,0x84,0xe8,0x8c,0x24,0xe7,0x63,0x9,0x58,0x39,0xc0,0xf0,0x92,0x94,0xf1,
0xcc,0xb7,0xfd,0xa5,0x71,0x40,0x5a,0x81,0xf6,0xd,0x18,0x5f,0xc0,0x6c,0x34,0x60,
0xea,0x8c,0x80,0x48,0x11,0xc8,0xc6,0x4b,0x40,0x27,0xba,0x48,0x83,0xd7,0xf9,0xfe,
0x6b,0x51,0x27,0xab,0xf5,0x8,0x65,0x69,0x27,0x66,0xf8,0x85,0x25,0x1a,0xf3,0x7b,
0x3a,0x13,0x88,0x97,0x4f,0xe0,0x1c,0x6b,0xa9,0x1f,0xd7,0x2,0x50,0xfb,0x28,0x95,
0x46,0x85,0x19,0x50,0x80,0x6c,0xa6,0x0,0xe5,0x6c,0x56,0x86,0xc,0x3,0x5d,0xf1,
0x18,0x44,0xdc,0xdf,0x6a,0x9a,0xca,0xd5,0x6b,0xc,0x2d,0xce,0x1e,0xd3,0x42,0xfa,
0xda,0x1b,0x80,0xa9,0xc0,0x7c,0x7a,0xc9,0x72,0xc6,0xc5,0xf7,0xa7,0x51,0x13,0xe0,
0x60,0xe5,0xf7,0xcb,0x58,0x7f,0x77,0x77,0xbb,0xd7,0x60,0x14,0x9c,0x9a,0xff,0x9,
0xb0,0x38,0x94,0x1f,0xc0,0x5d,0xb,0xfc,0xcd,0xf9,0xf3,0xe6,0x40,0x59,0x30,0x23,
0x94,0xfe,0x65,0x5e,0x52,0x21,0x48,0x61,0xa,0x8,0xcd,0x4,0x90,0xb8,0x3,0xf0,
0x6a,0x7,0xe2,0x1a,0x81,0xcd,0x5c,0x66,0x35,0x81,0xa9,0x37,0x27,0xb3,0xb3,0x29,
0xff,0x33,0x90,0x8f,0x2b,0xe2,0x6f,0x69,0x69,0x82,0xd6,0x96,0x3c,0x55,0x71,0xda,
0x66,0x80,0x1f,0x6,0x9c,0x9c,0xbd,0xc3,0x29,0xc5,0xb8,0x25,0x9f,0x25,0xc2,0xc7,
0x28,0x40,0xb9,0x54,0x82,0x20,0x10,0x8f,0x61,0x40,0xfe,0x0,0x94,0xef,0x9c,0x45,
0xa0,0x27,0xdc,0xd2,0x64,0xf4,0xeb,0x59,0x9f,0xc0,0xf4,0xea,0x9e,0xd9,0x29,0x7,
0x71,0xe5,0xb5,0x49,0x72,0xc6,0xea,0xfb,0x7e,0x63,0xa8,0xe9,0x6c,0x12,0xce,0xe9,
0x11,0x7e,0x28,0xb,0x80,0xd0,0x7,0xb0,0x78,0x61,0xcf,0xb4,0x15,0x6e,0xe9,0xdf,
0x5d,0xb0,0x70,0x1e,0x1c,0x3d,0x76,0xe,0x42,0x8c,0x44,0x88,0x51,0x2e,0x61,0x6a,
0x70,0x9,0x13,0x3,0xd5,0x3a,0x6,0x52,0x1b,0x60,0x6e,0x7d,0x80,0xd6,0x4,0x22,
0x8d,0xc0,0x8f,0xc,0x54,0xae,0x85,0x98,0xf8,0xf5,0x78,0x8d,0x50,0xbc,0x37,0xb2,
0xb3,0xb3,0x52,0x9d,0x48,0xfd,0x52,0x5b,0x9f,0x53,0x49,0x48,0x2f,0x36,0xf9,0xea,
0xab,0x49,0xe9,0x95,0x21,0xbf,0x85,0xb,0xba,0x13,0x88,0x7f,0xb2,0xb9,0x37,0x73,
0x98,0xc0,0x82,0x5,0x3d,0x70,0xe8,0x70,0x1f,0x84,0xe8,0xc,0xcc,0xea,0xf0,0x64,
0x40,0x9a,0x80,0x9c,0x1e,0xc1,0x10,0x82,0x8c,0x62,0x2,0xda,0x8e,0x8,0x62,0x9a,
0x80,0x36,0x11,0x6a,0x5b,0xf,0x30,0x95,0x8c,0xe9,0xeb,0xe1,0x95,0x2b,0xcf,0x1e,
0x89,0xc7,0x14,0x30,0x0,0xdf,0xa6,0x4f,0xe,0x49,0x35,0x96,0x97,0xdf,0x23,0x7c,
0x83,0x92,0x23,0x87,0x5d,0x10,0xaf,0x81,0x33,0x2,0x23,0xe9,0xaa,0xa1,0xdf,0xf2,
0x9a,0x7e,0x3b,0xed,0xfe,0xed,0xa4,0x9d,0x5e,0x41,0x7c,0x7a,0x2e,0xab,0xa3,0xf4,
0x4e,0x24,0xe1,0x47,0x9f,0x2c,0xec,0x9d,0x27,0x6d,0x7f,0x55,0x98,0xa4,0xe7,0x48,
0xd6,0x9e,0x94,0x1,0x5b,0xd4,0xe3,0xdc,0x49,0x92,0xf,0x94,0xac,0xb7,0x8,0xdf,
0x4,0x4,0xb4,0x2f,0x40,0xbe,0xe9,0xee,0x7,0x1b,0xdc,0x44,0x61,0xdc,0x59,0x7e,
0x90,0x28,0x94,0x0,0x6a,0x3d,0x2,0x6b,0x3d,0x66,0x19,0x41,0x15,0x6,0xe0,0xeb,
0xfd,0xaf,0x75,0x74,0x58,0xab,0xce,0x5e,0x11,0x3e,0xc5,0xdc,0xc5,0x26,0x9f,0xdb,
0xd9,0x6,0xb7,0xdc,0xbc,0x9,0x96,0x2d,0xe9,0x81,0x92,0x50,0x75,0x5f,0xdd,0x77,
0x1c,0x1e,0x79,0x7c,0x37,0x14,0x46,0x4b,0xc0,0x55,0x9d,0x3c,0x49,0x3b,0xdd,0x13,
0x70,0x5c,0xea,0x6b,0x82,0x9,0x40,0x28,0x3e,0xa1,0x9,0x5,0x62,0x18,0x4e,0x76,
0x7d,0xa9,0x3f,0xe5,0x77,0x3c,0x4a,0x8,0x53,0x0,0x1f,0xf8,0xdb,0xb,0x84,0x16,
0x82,0xf5,0x8,0x18,0xe,0x2c,0xe7,0x4a,0x10,0x88,0x47,0x2a,0x13,0x66,0x19,0x32,
0x3,0x50,0x3,0x60,0x3c,0x23,0xe6,0x47,0x83,0x8b,0x4,0x14,0x6,0xd4,0xbe,0x1,
0x19,0x59,0x50,0x52,0x9b,0x33,0x23,0xc1,0x4d,0x93,0x34,0xe6,0x66,0x30,0x12,0x93,
0x9,0x65,0x18,0x34,0xdf,0x94,0x85,0x9b,0xae,0xdf,0x8,0x6b,0x57,0x2f,0x82,0x6c,
0x36,0x80,0x23,0x47,0xcf,0xc2,0x83,0xf,0xef,0x84,0xf3,0xfd,0x83,0x54,0xb3,0x80,
0x6b,0xa1,0x19,0xc1,0x6c,0xb5,0x22,0x24,0xd0,0x38,0x9f,0x3e,0x13,0xa0,0x7a,0xe,
0x38,0x9b,0x76,0xe2,0x2f,0xab,0x64,0x9b,0x72,0xb9,0x0,0xd7,0x5f,0xb7,0x11,0x7e,
0xfa,0x23,0x6f,0x82,0x5c,0x2e,0xca,0x74,0xbb,0x7e,0xdb,0x5a,0x78,0xc7,0x5b,0xaf,
0x85,0xbf,0xfc,0xdc,0x37,0xe0,0x95,0xbd,0x27,0x8,0x38,0x83,0xe4,0x1c,0x79,0xc0,
0x83,0x9a,0xf2,0xdc,0xe3,0x39,0xf1,0xc9,0x51,0x1,0x93,0x92,0xb,0xb2,0x6c,0x1b,
0xaf,0xf,0xc3,0x70,0xd3,0xcb,0x50,0xd1,0xc,0xe9,0x31,0xc,0x52,0x12,0xa6,0xc4,
0x26,0x60,0x19,0xa6,0x0,0x48,0x2,0x52,0xf5,0x91,0x1b,0x84,0x38,0x2d,0xf4,0x56,
0x60,0x7a,0x24,0x4a,0x2f,0x40,0x10,0xdd,0x3a,0x71,0x98,0x40,0x85,0x9,0xad,0xfb,
0xe,0x35,0x33,0x2e,0x92,0xc3,0x71,0xdd,0x9a,0x45,0xf0,0x2b,0xbf,0xf0,0xa3,0xd0,
0xd1,0xd1,0x6c,0xae,0xe6,0x9a,0xab,0x57,0xc3,0x5b,0xef,0xda,0xa,0x5f,0xf8,0xc7,
0xef,0xc1,0xe3,0x4f,0xec,0x26,0xdc,0x2,0x8e,0x40,0x26,0x74,0x9,0xb3,0x4c,0x20,
0xe9,0x98,0xd,0xc4,0x3a,0x4e,0x36,0xe5,0x60,0xe3,0xb2,0xd2,0x8e,0x62,0xdc,0xa5,
0x11,0x78,0xf7,0x3b,0x6e,0x84,0x9f,0xff,0xa9,0x3b,0xa8,0x1a,0xe,0x3d,0xee,0x85,
0x42,0x81,0x6,0x16,0xe0,0xb4,0xb5,0xe5,0xe1,0xb7,0x7e,0xed,0x9d,0x70,0xe5,0x96,
0xe5,0x94,0x16,0x4b,0xd2,0x90,0xa4,0x54,0x38,0xc1,0x78,0xfb,0x11,0x73,0xd2,0x12,
0xb1,0xbb,0xbb,0x23,0x35,0xdb,0x6f,0x22,0xb5,0x81,0xf8,0x39,0xa3,0x93,0xcf,0x9b,
0xd7,0x2d,0x23,0x0,0x14,0x5,0xd0,0xd5,0x88,0x25,0xc3,0x3c,0x69,0x18,0xc6,0x20,
0x19,0x45,0xa8,0x6a,0x9,0x88,0x61,0xf0,0x30,0x62,0x1c,0x6a,0xde,0xa4,0x29,0x51,
0x36,0xef,0x73,0x74,0x2e,0xd2,0xf9,0x47,0xa1,0x58,0x18,0x85,0x2b,0x2e,0x5f,0x41,
0x73,0x8e,0x73,0x2f,0x91,0x6e,0xf5,0x7a,0x14,0x69,0x8d,0x70,0xad,0xde,0xf5,0xf6,
0x1b,0x68,0xed,0x70,0xd,0xa9,0x48,0x8a,0x2b,0xc0,0x9b,0xd9,0x2e,0x45,0x53,0xed,
0x3,0x48,0x93,0xec,0x35,0x17,0xfe,0x4f,0x1d,0xf1,0x5b,0xea,0x3e,0x16,0xda,0x8,
0x99,0x5,0xbf,0xf8,0x5f,0xdf,0x6,0xd7,0xa,0xc9,0x82,0xe0,0x19,0x25,0xda,0xe0,
0x9a,0xb0,0xa5,0x9d,0x8a,0xb9,0xef,0xd9,0x6c,0x96,0xa4,0xd1,0xdd,0x5f,0xbc,0x1f,
0x1e,0x7d,0xfc,0x25,0x15,0x5a,0xc9,0x9,0xeb,0x37,0x63,0xd4,0x4f,0xfd,0x37,0xd5,
0x35,0x1,0x9e,0x4a,0xff,0xba,0xe7,0x9b,0x2e,0x7,0xee,0xee,0x6a,0x9f,0xd6,0xcd,
0x4c,0x4e,0xc0,0xde,0x1e,0x22,0x50,0x9a,0x37,0xae,0x88,0x3b,0x5b,0x6,0x86,0x12,
0x1f,0xe7,0xc8,0x92,0xfa,0xe4,0xf6,0xb,0x81,0x88,0x54,0x66,0x4,0x6,0xaa,0x7d,
0xba,0x4a,0x14,0x52,0x3e,0x14,0x8d,0x31,0x18,0xaa,0x89,0x41,0x7b,0x9f,0x4a,0x9f,
0x8b,0x5,0xb8,0xe9,0x86,0xcb,0xe0,0x67,0x7f,0xea,0x4e,0x5a,0x2b,0x24,0x7a,0xac,
0x49,0xd0,0x44,0x2d,0x4b,0x96,0x3,0xb1,0x1e,0x39,0x78,0xfb,0x5b,0xaf,0x81,0x45,
0x8b,0xba,0xe1,0x73,0x7f,0xf7,0x4d,0x28,0x96,0x38,0xad,0x9,0xf,0xb8,0x32,0xd1,
0x82,0xd9,0x2e,0x45,0x9a,0x1,0xcc,0xb6,0x72,0x74,0xed,0x4b,0x5d,0x63,0xdf,0xde,
0x2e,0x24,0xfb,0xaf,0xbe,0x17,0x96,0x2f,0xeb,0x21,0xc9,0x82,0xc,0x0,0x91,0x93,
0xa5,0x5a,0x1b,0x1d,0xba,0x2,0x2f,0x97,0xcb,0xc1,0xcf,0x9,0xc9,0xd3,0xd6,0xda,
0xc,0xf7,0x7d,0xef,0x19,0xf1,0x5a,0xbc,0x9f,0x45,0xc,0xbd,0xac,0x20,0x86,0xc0,
0x38,0xb9,0xc6,0xba,0xe9,0x4c,0xee,0x16,0x97,0xfd,0xde,0x9a,0x9b,0x11,0xe2,0x4b,
0xe6,0x0,0x4c,0xe7,0xd1,0xd1,0xd1,0xa,0xcd,0x2d,0x79,0x28,0x91,0x84,0x2e,0x93,
0xf7,0x3f,0x28,0x97,0x94,0x72,0x8f,0xff,0xf,0x84,0x69,0x2f,0x6c,0x7f,0x71,0xdd,
0x12,0x4b,0x50,0xc3,0x91,0x33,0xe9,0x1f,0x60,0x91,0xdd,0xaf,0x5f,0xa3,0x13,0x4f,
0x6b,0x4f,0x65,0xd2,0x8,0x4a,0xa4,0x5d,0xdd,0x75,0xfb,0xb5,0xf0,0xe1,0xf,0xdc,
0x4a,0xeb,0x24,0xd7,0xa4,0x9c,0xba,0x1e,0x58,0xb2,0x7c,0xcd,0xd6,0xd5,0xf0,0xbb,
0x1f,0xff,0x0,0xfc,0xe9,0xff,0xfc,0x77,0x18,0x18,0x18,0x85,0x8c,0xd8,0xed,0x19,
0xc5,0x8b,0x18,0x5c,0xda,0x3d,0x19,0x2b,0xef,0xa3,0x68,0x4c,0xa3,0x9,0x90,0x6,
0x94,0x3f,0xb5,0x53,0x61,0xec,0x4b,0xa5,0xc2,0xe2,0x46,0x5b,0xba,0xa4,0x1b,0x7e,
0xff,0x53,0x1f,0x16,0xc4,0xdf,0x2d,0x36,0x9a,0x6c,0x95,0x86,0xc,0x40,0x4a,0x7f,
0xf0,0x92,0x6e,0x42,0xfa,0x4c,0x4a,0xa3,0x12,0x7c,0xe8,0x3,0xaf,0x17,0x26,0xc3,
0x4d,0xe2,0xf5,0x8,0xfd,0xad,0xad,0x7e,0xa6,0x39,0x62,0x6a,0x89,0xc,0x70,0xa7,
0x94,0x37,0x14,0xb6,0xf7,0xbc,0x84,0x1c,0x80,0xa9,0xed,0xe1,0xa8,0x7f,0x7f,0xe1,
0xa2,0x5e,0xa5,0x1,0x94,0xd,0x28,0x69,0x68,0xd4,0x7b,0xfb,0xb9,0x74,0xde,0x45,
0x8e,0x3c,0x57,0xed,0x97,0xe6,0x83,0xca,0x2c,0x14,0x73,0x59,0x14,0x8c,0xb8,0x84,
0xf3,0x38,0x3a,0x4,0xef,0x79,0xe7,0x2d,0xf0,0x91,0x9f,0xb8,0x95,0xde,0xc7,0xb9,
0xc6,0x39,0x97,0x11,0x7,0x77,0x3d,0xf0,0xfc,0x72,0x3d,0x8a,0x34,0xff,0x2b,0x4,
0x3,0xff,0xfd,0x4f,0x7d,0x4,0x96,0x2c,0xee,0x12,0x6b,0x3b,0xa2,0x6a,0x17,0x4a,
0x93,0x60,0xa2,0xcd,0xfa,0x0,0x66,0x9c,0x37,0x54,0xf7,0x3f,0x44,0x7b,0xb5,0x54,
0x2e,0x50,0x65,0xdb,0xd6,0x2b,0x56,0xc1,0xef,0xfe,0xce,0xfb,0x15,0xc2,0x8e,0xb4,
0x2b,0xa5,0x9a,0x69,0x7b,0xa3,0xc1,0xd9,0x78,0xba,0x46,0x5e,0x6e,0xba,0x22,0xbc,
0xeb,0x6d,0xdb,0xe0,0x27,0x3f,0xf4,0x66,0xa1,0xb2,0x8e,0xd0,0x26,0xc6,0xc,0x39,
0x54,0x8f,0x4d,0xa7,0x65,0xbb,0xf1,0x46,0xcd,0x1d,0xb8,0x5c,0x6f,0x38,0x7a,0xdf,
0x23,0x86,0x14,0x2f,0xe3,0x9d,0x5c,0xc2,0x8f,0x6,0x5e,0xc3,0xa2,0xde,0x79,0x52,
0x73,0x42,0x66,0x47,0xc9,0x40,0x25,0x53,0xad,0x28,0x71,0xa,0xa4,0x2f,0xa0,0xac,
0x1f,0xd5,0x77,0xb5,0xdf,0xc0,0x3c,0x2f,0xa3,0x64,0x1f,0x15,0x44,0x2f,0x6c,0xfd,
0xe2,0x30,0x14,0x4,0xe1,0x17,0xa,0x43,0xf0,0xd1,0xf,0xdf,0x9,0xef,0x79,0xc7,
0xd,0xca,0xff,0x52,0xb4,0x60,0xcf,0xe2,0xeb,0xa1,0xe7,0x48,0x9e,0x4b,0xfa,0x6b,
0x70,0x2d,0x3f,0xfd,0xb1,0xf7,0xc3,0x95,0x5b,0x56,0xd2,0x39,0x71,0xad,0x8d,0x9f,
0x26,0xe4,0x53,0xc8,0x3c,0x1b,0xd2,0x7,0xd0,0x28,0x46,0x0,0x9f,0xb2,0xdf,0xd1,
0xf1,0x64,0x92,0x58,0x6a,0x43,0xa2,0xb4,0x78,0xdb,0x5b,0xaf,0x83,0xf7,0xbd,0xf3,
0x6,0xb3,0x79,0xd0,0xc1,0x14,0x86,0x21,0x24,0x95,0xd6,0x46,0xc4,0x20,0x43,0x55,
0xe2,0x4f,0x9c,0x18,0xfd,0x9b,0xdf,0xb8,0x5,0xda,0x5b,0x9b,0xe0,0xb3,0x77,0xdf,
0x43,0x86,0x6f,0x86,0xe7,0x41,0xfc,0x8f,0xc2,0x60,0x50,0xb7,0xfa,0x69,0x27,0x0,
0xc9,0x10,0xe0,0x2,0x95,0x4,0x64,0x4b,0x41,0xb7,0xf7,0xdf,0x44,0xcf,0x27,0x83,
0x24,0xf0,0x7f,0x2e,0xec,0xf8,0x85,0x8b,0xe6,0x29,0x87,0x9f,0x2c,0x52,0xa2,0xaa,
0xc0,0x50,0xe5,0xfd,0x5,0x92,0x41,0xe2,0x1c,0x51,0x8d,0x20,0xda,0xde,0x21,0x93,
0xf9,0x7f,0x2c,0x34,0xbe,0x0,0xd3,0xa7,0x20,0x94,0x61,0x4e,0x64,0x20,0x20,0xee,
0xf3,0x57,0x7f,0xf1,0xc7,0x85,0xdd,0xbf,0xc9,0x38,0x5d,0x43,0xa5,0x45,0x44,0x7e,
0x93,0xf8,0x7a,0x68,0x5f,0x4a,0xa9,0xc4,0xd,0xa3,0x40,0x3f,0xcd,0xaf,0xff,0xd2,
0xdb,0xe1,0xcb,0x5f,0x7b,0x4,0xee,0xf9,0xd6,0x13,0x90,0xcf,0x8b,0xf3,0x67,0xf2,
0x4,0x65,0x16,0x84,0x99,0x1a,0xf2,0x37,0x2e,0x45,0x3,0x80,0xbf,0xd6,0x32,0x1,
0x7d,0x67,0x5f,0x99,0xec,0x7d,0x24,0xa8,0xff,0xfa,0x33,0x3f,0x2,0x37,0x5e,0xb7,
0x81,0x1c,0x7d,0x12,0x5e,0xab,0x14,0xdb,0x68,0xe9,0xad,0xcb,0x24,0x81,0x84,0x8e,
0x5a,0x89,0x61,0xc2,0xf5,0xd0,0xd2,0xf2,0x5e,0xf8,0xb3,0xbf,0xfc,0x77,0x8,0x8b,
0xa8,0x45,0x34,0x51,0xa8,0x10,0x37,0x9d,0x1,0xd9,0x80,0xea,0x10,0xda,0xdc,0x6e,
0xf8,0xa1,0x7c,0x0,0xf3,0x28,0x4,0x98,0xc6,0x3c,0x27,0x4b,0x3,0x60,0x89,0xaf,
0xd1,0x11,0x88,0xe0,0xa4,0x18,0x2e,0x2d,0x95,0x73,0xe2,0xfe,0xca,0xc0,0xca,0x4c,
0xa9,0x98,0x19,0xba,0x4f,0x22,0x76,0x1e,0x98,0xc4,0x29,0x49,0xa4,0xcc,0x61,0x2e,
0xa1,0xa,0x6f,0xe2,0xdc,0x63,0xe8,0xee,0x63,0xbf,0xfd,0x5f,0xe0,0x75,0x5b,0xd7,
0x2a,0x66,0x1c,0x69,0x62,0xd5,0xd6,0xc3,0x6,0x31,0x91,0xfe,0x2,0xc9,0x8,0xd0,
0x2f,0xf3,0x63,0xef,0xbe,0x19,0x16,0x2d,0xec,0x86,0xbb,0xbf,0xf8,0x4d,0xfa,0xbd,
0x2c,0x34,0xbf,0xa6,0x9d,0x83,0xc1,0x6b,0x8b,0xf8,0xa3,0x4e,0xa9,0x28,0xb1,0xd0,
0xde,0x6f,0x6e,0xca,0xc0,0xc7,0x7f,0xeb,0xfd,0x82,0xf8,0xd7,0x1b,0x95,0x51,0x13,
0xbf,0x6f,0x5f,0x56,0xf6,0xe0,0x47,0x85,0x38,0xe8,0x9c,0xd2,0xa1,0x29,0xc,0x59,
0x7d,0xf2,0xb7,0x7f,0x2,0xb2,0x99,0x50,0x98,0x3,0x42,0xbd,0x45,0x35,0xb9,0x54,
0x24,0x1b,0x58,0x87,0xf4,0xa0,0x6a,0x68,0xca,0xee,0xdf,0x27,0xcb,0x81,0x17,0xf6,
0xc6,0xd3,0x80,0xa7,0x2a,0x11,0xc8,0x8f,0x4,0x2c,0x59,0xb2,0x48,0x31,0x80,0xa2,
0xa,0xfb,0x95,0x1c,0xfb,0x9f,0xab,0xe7,0xb6,0xdd,0xaf,0xfd,0x2,0x65,0x65,0xfb,
0xa3,0xa9,0x84,0xf3,0x53,0x28,0xc,0x13,0xa1,0xfe,0xde,0xa7,0x7f,0xe,0xae,0xbe,
0x6a,0xad,0x99,0xc7,0x8,0xb9,0xba,0x12,0xf1,0xdb,0x26,0x8a,0xeb,0x17,0xd0,0xbe,
0x3,0x5c,0xe3,0x5b,0x6e,0xbc,0xc,0x3e,0xf9,0xdf,0x3f,0x8,0xf9,0x1c,0x10,0xa4,
0x99,0xe,0x55,0x9a,0x86,0x29,0xaf,0x21,0x73,0x20,0xa0,0x58,0x4b,0x8,0xe9,0x96,
0xc0,0x8c,0x1f,0x4a,0x72,0xa2,0x2a,0x58,0x16,0x1b,0xb2,0x24,0xed,0xce,0x62,0x61,
0x4,0x16,0xcc,0xef,0x80,0xdf,0xff,0xdd,0xf,0xc1,0xda,0xd5,0xbd,0xc6,0x69,0x84,
0x9e,0x7e,0x4d,0xfc,0xf1,0x8d,0x96,0x84,0x9f,0x7,0x9,0x5a,0x2,0x7,0xdd,0x6b,
0x11,0xcf,0xb9,0x6e,0xed,0x42,0xf8,0xdd,0x8f,0x7f,0x18,0x9a,0xf3,0x5c,0xd8,0xa0,
0xc3,0xb4,0xd9,0xa5,0xba,0x1c,0x82,0x6c,0xd6,0xc3,0xcd,0x1a,0xf0,0x30,0x7e,0xfd,
0xda,0x57,0x81,0x9,0x36,0xf8,0x77,0x28,0x1d,0xd7,0xae,0x5e,0x98,0x80,0xfb,0x37,
0x79,0x8c,0x20,0x3e,0xf,0x11,0xa1,0x5d,0xb1,0x65,0x83,0x78,0x52,0xa2,0x39,0xd5,
0x8e,0x36,0x99,0x13,0x10,0xe5,0x2,0x94,0x95,0x89,0x60,0x72,0x3,0xd0,0x57,0x20,
0xe6,0x26,0xa4,0xb5,0x10,0x36,0xff,0xe8,0x8,0x14,0x47,0x6,0xa1,0xa5,0x29,0x80,
0x3f,0xfa,0xfd,0x5f,0x82,0xcb,0x36,0x2c,0xa7,0xb9,0x93,0x92,0x3f,0x84,0x74,0x98,
0xb3,0xda,0xd6,0x44,0x32,0x81,0xd0,0x38,0x75,0x31,0x91,0xe8,0xf,0x3e,0xfd,0x93,
0xd0,0xd3,0xd5,0xc,0xa3,0xa3,0x43,0xa4,0x9,0xe2,0xde,0x90,0xfd,0x31,0x2c,0x27,
0xc7,0xa5,0x4a,0x17,0x8a,0xee,0x33,0x37,0xdc,0xf2,0xe3,0x9f,0x91,0x21,0x2e,0xe5,
0xa1,0xe5,0xe1,0x25,0xd4,0x16,0x3c,0x9e,0xd9,0x47,0x6a,0xaa,0x90,0x34,0x5b,0x36,
0xad,0x80,0xdf,0xfe,0x6f,0xef,0x85,0x8e,0xf6,0x26,0x4b,0xc5,0xac,0xb6,0xd1,0x52,
0xac,0x63,0x2b,0xe5,0x2f,0xc2,0xd4,0x7,0xa7,0x34,0xb7,0xbb,0xab,0x3,0xae,0xbb,
0xf6,0x32,0x78,0xf2,0xa9,0x5d,0x30,0x34,0x34,0xea,0x84,0xbf,0x24,0x8e,0x16,0x8f,
0x35,0xe1,0x88,0x3c,0xed,0xa1,0x72,0x98,0x49,0x47,0xe5,0x5d,0x77,0xdc,0x20,0xa4,
0xe3,0x1a,0xcb,0x39,0x39,0x45,0x71,0x1b,0xc6,0x62,0xf7,0xc8,0xa8,0xc3,0x50,0xb,
0x9c,0x3b,0x77,0x1e,0x76,0xec,0x7c,0x59,0xa6,0xdf,0x66,0xb2,0x26,0x9c,0x67,0xcc,
0x1b,0x95,0x43,0x6c,0x3b,0xea,0x74,0x44,0x40,0x86,0x5e,0x47,0xa1,0xbb,0xbb,0x13,
0xfe,0xec,0xff,0xf9,0xd,0x58,0xb6,0xac,0xb7,0xa6,0x35,0x49,0xbb,0x77,0xdf,0xbf,
0x12,0xbd,0xe6,0xa6,0x67,0x2,0x1e,0x1d,0xed,0x2d,0xf0,0xfa,0x9b,0xaf,0x80,0x7d,
0x7b,0x8f,0xc0,0xf1,0x13,0x67,0xa4,0x7f,0xc6,0x5c,0x33,0xf3,0x4c,0x94,0x99,0x7f,
0xe8,0x3c,0x89,0x20,0x93,0x21,0x53,0x14,0xf3,0x25,0x2e,0x61,0x6,0x10,0x11,0xbf,
0xe9,0xa0,0x53,0x92,0xd9,0x7d,0x6f,0xba,0x6d,0x2b,0xfc,0xc2,0xcf,0xde,0x45,0xf1,
0x60,0x3b,0xc6,0x5f,0xef,0x46,0x4b,0xdb,0x74,0x49,0x4c,0x0,0x47,0x67,0x67,0x2b,
0xdc,0x70,0xdd,0x66,0x78,0xe6,0xb9,0xdd,0xd0,0xdf,0x3f,0x20,0xe1,0xb4,0x59,0x84,
0x8c,0xc3,0x54,0xae,0x80,0xfb,0x77,0x2e,0xf1,0x2f,0xe8,0x9d,0x3,0xbf,0xfa,0x8b,
0xef,0x22,0xf6,0x2d,0xaf,0x19,0x2a,0x3a,0x29,0x27,0x76,0x3,0xb9,0xf7,0xa8,0xe1,
0xc2,0x30,0xb1,0xe7,0xda,0x6b,0xb7,0xc2,0xfd,0xf7,0x3f,0x0,0xe7,0x5,0x23,0x8,
0x4c,0x11,0xe,0x93,0x2a,0x8d,0x5,0x3,0x17,0x15,0xf0,0x84,0x26,0x1a,0x80,0x5a,
0xc3,0x92,0xc5,0xf3,0xe0,0x4f,0xff,0xf8,0xb7,0xc4,0xfd,0xcd,0x35,0x61,0xd7,0xf4,
0x35,0xa9,0xd,0xec,0xb4,0x1a,0x63,0xc6,0x91,0x17,0x76,0xc0,0xcd,0x37,0x6d,0x81,
0x73,0xe7,0xfb,0xe1,0x95,0x57,0x8f,0xc8,0x7e,0x88,0x1,0x33,0xe5,0xcb,0x97,0x12,
0x13,0x78,0xd,0x31,0x0,0x8f,0xf8,0xd1,0xde,0x27,0xfb,0xb4,0x0,0x1f,0xfd,0xf0,
0xed,0x14,0xa6,0xd3,0x9e,0x7e,0x19,0xdf,0xe7,0xe3,0xda,0x68,0xb5,0x32,0x1,0x3c,
0x30,0x51,0xe8,0xe6,0x1b,0xaf,0x80,0x17,0xb7,0xbf,0xa,0x67,0xcf,0xf5,0x3,0xb3,
0x5d,0x80,0x16,0xe2,0x8f,0x71,0x52,0x5a,0xc4,0xbf,0x72,0x45,0x2f,0x7c,0xe2,0xbf,
0x7f,0x8,0x9a,0x9b,0x33,0x4e,0x1c,0x7c,0x2a,0xfd,0x0,0x69,0x5a,0x40,0x73,0x53,
0x13,0xdc,0x79,0xc7,0x6d,0xf0,0xe4,0xd3,0xcf,0xc2,0xe9,0xbe,0xb3,0xea,0x7d,0x19,
0xf1,0xa0,0xc4,0x3e,0x1e,0x39,0x31,0xb9,0xe9,0x67,0x28,0xef,0x6d,0xed,0x9a,0x25,
0xf0,0x67,0x7f,0xfc,0xdb,0x30,0x77,0x4e,0x5b,0x4a,0xf4,0x65,0xb2,0xd6,0x44,0xda,
0xfc,0xc8,0xc0,0xae,0xb9,0x7a,0x3,0xf5,0x53,0x7c,0xf6,0xf9,0xdd,0x4,0x6a,0x6a,
0x4a,0xbc,0x2f,0x21,0x26,0x50,0x85,0x1,0x94,0x8c,0x63,0xe6,0x52,0x60,0x0,0xa6,
0x9a,0x8f,0x88,0xbf,0x0,0x4d,0x39,0x6,0xbf,0xf1,0x2b,0xef,0x86,0x6d,0xd7,0xb8,
0x5e,0x65,0x9b,0xf8,0x93,0xd1,0x75,0xc7,0x27,0x25,0xa3,0xd,0x17,0x39,0xa5,0x9a,
0x9a,0x72,0x70,0xcb,0x4d,0x57,0xc2,0x9e,0x57,0xe,0xc2,0x89,0x93,0xa7,0x55,0xe6,
0xab,0x74,0x0,0xd0,0x3f,0x9d,0x4f,0x5f,0x92,0xb5,0x5,0xab,0x56,0x2e,0x80,0xf,
0xbe,0xff,0x36,0xf8,0xc8,0x4f,0xdc,0x46,0x55,0x6f,0xa5,0x52,0xd1,0x49,0x81,0x9d,
0xa,0xe9,0x5f,0xe9,0xfe,0xf4,0xd1,0xde,0xde,0x6,0xef,0x7b,0xef,0xdb,0x61,0xf9,
0xf2,0x25,0x42,0xa5,0x3e,0x1,0xa7,0x4e,0xf6,0x11,0xb1,0xeb,0x10,0xa6,0x4e,0x6,
0xc2,0x26,0xa6,0x78,0x5f,0xa8,0x8d,0x5d,0x79,0xc5,0x6,0xf8,0xe3,0x3f,0xfc,0x4d,
0x6a,0x54,0x2a,0x19,0x72,0xb1,0x42,0xf4,0x65,0xfc,0x6b,0xa2,0x9,0xd9,0xd7,0x4,
0xf0,0x58,0xb7,0x76,0x89,0x60,0x46,0x8b,0x85,0x99,0xb6,0x1d,0x8a,0x25,0xd5,0xf3,
0x90,0x55,0x3,0xa5,0x9d,0x89,0xc,0x20,0x30,0xc,0x80,0xfd,0xfa,0xc7,0xbe,0xca,
0x47,0x46,0x86,0x29,0x73,0xad,0x84,0xb,0xa0,0xb2,0xa4,0x2e,0x85,0x50,0x5f,0x59,
0xc5,0xf8,0x43,0xb1,0xd1,0x3e,0xf5,0xb1,0xf,0xc2,0xea,0x55,0xf3,0x49,0xba,0x68,
0x2,0x9a,0x68,0xe2,0x4f,0xb7,0x41,0xa3,0x4d,0x84,0xb,0x80,0xf5,0x3,0xf9,0x7c,
0x9e,0x24,0xe4,0x3d,0xdf,0x7a,0x12,0xbe,0xf1,0xed,0x47,0x61,0x78,0xa8,0x48,0x25,
0xac,0xfa,0xcf,0xb0,0xd4,0xf7,0x16,0xa1,0x9a,0xde,0x70,0xdd,0x46,0x52,0xfb,0x75,
0xc6,0x61,0xb2,0xd6,0x52,0xbb,0xa9,0x32,0x91,0x5a,0x80,0x7d,0xaf,0x28,0x45,0x31,
0xd6,0x8e,0x29,0xd1,0x59,0x2,0x7,0xd,0xe0,0xd0,0xa1,0x63,0x70,0xff,0x77,0x1f,
0x82,0x7b,0xbf,0xf3,0x30,0x9c,0x3c,0x79,0x46,0x1,0x83,0xc8,0xeb,0x9c,0xd3,0xd9,
0xe,0x3f,0xfe,0xbe,0xb7,0xc2,0x8f,0xff,0xd8,0x8f,0x90,0x39,0xa3,0xf3,0xfa,0x23,
0x7,0xec,0xe4,0xaf,0x89,0x7d,0xed,0xb2,0xa6,0x23,0x27,0xae,0x3f,0xb,0xfb,0xf7,
0x1f,0x87,0xdf,0xfd,0x83,0x2f,0x89,0xe7,0x1d,0x90,0xcd,0xc9,0xd0,0xad,0xc,0x5f,
0xce,0x6c,0x2d,0x0,0x7d,0x1c,0x59,0x24,0x7c,0xb1,0x46,0xf9,0x7c,0xb3,0xd0,0x24,
0x5b,0x2e,0x51,0x6,0x40,0x2d,0x90,0x4b,0xca,0xbe,0x1c,0x85,0x37,0xbe,0xfe,0x32,
0xf8,0xe8,0x87,0xee,0x30,0x12,0x46,0xe6,0xf4,0xf3,0x94,0xb0,0x12,0x9f,0x10,0x5,
0x28,0xcd,0x11,0xa5,0x55,0x63,0x6c,0xd1,0xad,0x89,0x5,0xa7,0x7b,0xff,0xc1,0x93,
0xd0,0xd7,0xd7,0x4f,0xf6,0xe7,0x92,0x45,0xdd,0xb0,0x74,0xc9,0x3c,0x23,0x39,0xcb,
0x54,0xd,0x57,0xa6,0x50,0x98,0x34,0xd,0x78,0x5d,0x4e,0xca,0xc9,0xd4,0x2,0x7c,
0x26,0x80,0x44,0x8e,0xf7,0x96,0xc9,0xc8,0xa1,0xfd,0x1b,0x7b,0xf7,0x1e,0x84,0x3,
0x7,0x8f,0xd1,0xf7,0x16,0x2d,0x9a,0x7,0x1b,0xd6,0xaf,0x16,0x9f,0x33,0x8b,0xa9,
0x95,0x2d,0x93,0x66,0x72,0xee,0x2d,0x4d,0x3b,0x93,0xcc,0x80,0x11,0x9c,0xb9,0x64,
0x2,0x39,0xf8,0xd2,0x3f,0xfd,0x27,0xdc,0xf7,0xdd,0x97,0xa0,0xb9,0xa5,0x3,0x72,
0x82,0x58,0xa8,0xa6,0x23,0x60,0x97,0x1c,0x3,0xc8,0xa6,0x45,0x0,0x1b,0xcd,0x9e,
0xaf,0x70,0x5b,0xb1,0x77,0x28,0x97,0x4c,0x69,0x0,0x18,0x72,0xdb,0xf6,0xba,0xb5,
0xaa,0x9a,0xaf,0x64,0x11,0x3f,0x4c,0x1a,0xf1,0x47,0x4e,0x6f,0xbb,0x91,0x46,0xd4,
0x60,0x43,0x4a,0x73,0xe9,0x91,0xd6,0xdd,0x74,0x56,0x9,0xfb,0x7e,0xf5,0xca,0x5e,
0x90,0x58,0xf9,0xaa,0xfa,0xad,0xac,0xbd,0xe4,0x3a,0x9e,0xce,0x27,0x95,0x40,0xc6,
0x7b,0x6f,0x32,0xd3,0x59,0x9a,0x92,0xc8,0x8,0x90,0xa0,0xf4,0xe3,0xaa,0x55,0xcb,
0x60,0xf5,0xea,0xe5,0x8e,0x86,0x56,0x28,0x94,0xad,0xec,0x3e,0x9e,0x72,0x2f,0x93,
0xb3,0x26,0xf6,0x7a,0xe8,0xdf,0x91,0x4e,0xc7,0x12,0x31,0x83,0x6d,0xd7,0x6c,0x82,
0xff,0x7d,0xcf,0xe3,0x54,0x39,0x14,0xa0,0xaa,0x8c,0xd1,0x8d,0x4b,0xc0,0x11,0xe8,
0x47,0x2,0x2f,0xb9,0x4c,0x40,0xe3,0xdc,0xa1,0x1c,0x7f,0xe9,0x64,0xc2,0x5c,0x70,
0xed,0xe8,0x8c,0xa3,0xe7,0x4e,0x5e,0xfa,0x6c,0x12,0xa1,0x68,0x2f,0x7f,0xb9,0xcc,
0x14,0x3,0x90,0xc4,0xa2,0xa5,0x90,0xbe,0xe,0x1d,0x26,0xb3,0xdb,0x7c,0x4f,0x36,
0x81,0x4c,0x14,0x83,0x8b,0xda,0x87,0xe9,0xb6,0xe2,0x41,0xca,0xfd,0x95,0xad,0x66,
0xa6,0x3c,0x11,0xd6,0x6c,0xa2,0xef,0xcd,0x87,0x37,0xf7,0xf,0xdc,0x23,0x78,0x9d,
0x1d,0x9d,0xad,0x30,0x38,0x70,0x96,0xae,0x1,0xa5,0x3f,0xb4,0xb4,0xb,0xcd,0xa0,
0xa9,0x6,0xdc,0xc2,0x99,0x75,0x64,0xeb,0x97,0xbc,0xac,0x1,0x79,0x9a,0x7d,0x5d,
0xdc,0xcb,0xf3,0x2f,0xc1,0xe0,0xe0,0x0,0x74,0x77,0xcf,0xad,0x72,0x7f,0x7c,0xd2,
0x8,0x45,0xd7,0xaa,0xfb,0xc4,0x23,0x25,0x3d,0x23,0xc9,0x63,0xfb,0x9,0x92,0x7c,
0x12,0xc9,0x1e,0x7e,0x3e,0xad,0xfe,0xda,0x4a,0xc,0x2e,0xd2,0xb0,0xca,0x86,0xa8,
0xf4,0xfb,0x2e,0xb3,0x4d,0xbe,0xb7,0xc9,0xf5,0x67,0xa4,0xa7,0x35,0x93,0x6,0x29,
0x98,0xd7,0xe0,0xc0,0xa0,0xd0,0x1e,0x47,0x60,0x74,0x64,0x0,0xf2,0x4d,0xad,0x90,
0x11,0xa6,0x1a,0xfa,0x2,0x32,0x99,0xe0,0x12,0x63,0x0,0x97,0x1a,0x20,0x80,0x5,
0x21,0xc5,0x55,0x41,0xc9,0xa1,0x43,0x87,0x60,0xd9,0xb2,0xa5,0x9,0x8c,0x8c,0x4f,
0x21,0xb1,0x70,0xc7,0x6,0x75,0xdb,0x6f,0xa5,0xb7,0xf2,0x4e,0xcb,0x77,0x6f,0x94,
0x40,0x8d,0x4d,0xf4,0x69,0xf7,0x16,0x49,0xfd,0x46,0xbd,0xb7,0xb8,0x50,0xc3,0x3d,
0x3,0x61,0x11,0x46,0x86,0x7,0x85,0xdd,0xdc,0x4f,0xfa,0x32,0xe5,0x6d,0x60,0x4d,
0x17,0x41,0xbf,0xb1,0x19,0x49,0x1b,0xfe,0x8,0xd2,0xbf,0x55,0xc7,0x59,0x26,0x95,
0x73,0xb0,0x94,0x91,0x7e,0x5d,0xdc,0x2a,0x9a,0xc1,0xc,0xbb,0x1d,0x3b,0x76,0xc0,
0x85,0xb,0xfd,0x55,0x42,0x39,0x6c,0x4a,0x88,0x25,0x29,0xd7,0xdc,0x2e,0xaf,0xf5,
0x47,0x9c,0x38,0x78,0x43,0x46,0x69,0x67,0xd6,0xbd,0xb1,0x8a,0x8e,0xc2,0xb,0x17,
0x2e,0xd0,0x9e,0xc9,0x6,0x8c,0xb4,0x48,0x2c,0x51,0xc6,0x1a,0x5,0x1c,0xe8,0x54,
0xd6,0x39,0xa,0x97,0xc2,0x71,0xc9,0x15,0x3,0x71,0x6b,0x87,0x49,0x5f,0x80,0xac,
0xd,0xff,0xc1,0xf,0x7e,0x0,0x3a,0xbd,0x53,0xab,0xa3,0xc9,0xde,0xec,0xa9,0x26,
0x96,0xea,0xcc,0xb6,0x96,0x82,0xa4,0x46,0x63,0x4,0xf5,0xdf,0xdf,0x14,0xc9,0x7a,
0xe6,0x32,0x2,0xbd,0xf,0x22,0x1f,0x5,0x13,0x7b,0xe5,0x87,0x32,0xea,0x82,0x11,
0x31,0xca,0xb8,0x1c,0xa5,0x44,0x2c,0x34,0x7,0x46,0xc4,0xc0,0x9a,0x7,0xcc,0x2a,
0xe5,0x97,0x40,0xc6,0x6c,0x36,0x56,0x1d,0x0,0xbc,0x2e,0x35,0x2c,0x4e,0x34,0x7c,
0x82,0x24,0xeb,0xd8,0x27,0x57,0xa3,0xe7,0x48,0x48,0x29,0xd9,0xa0,0xe2,0xe8,0xd1,
0xa3,0xf0,0xd2,0x4b,0x2f,0xc1,0xc6,0x8d,0x1b,0x63,0x66,0x40,0x64,0x9b,0x4e,0xb5,
0x59,0x30,0xb9,0xfe,0x87,0xc6,0x30,0xf,0x1a,0xed,0xfe,0xfc,0xc4,0x1e,0x77,0x7f,
0xe2,0x1e,0xc1,0xbd,0x42,0xde,0x8b,0x52,0x8,0x32,0x8a,0xc9,0x29,0xa1,0x49,0x3,
0xc5,0x16,0x4b,0x59,0xa2,0x95,0x1c,0x32,0x8d,0x4c,0x66,0x6,0x99,0x3,0x71,0x8d,
0xfd,0x92,0x2f,0x7,0x96,0x61,0x3f,0xb9,0x40,0x8f,0x3e,0xfa,0x18,0xc,0xd,0xd,
0x55,0xd1,0x2,0x66,0x81,0x22,0x2f,0xd5,0xc3,0x5d,0xdb,0xb8,0xf4,0xc7,0xbd,0x81,
0x7b,0x4,0xf,0x8c,0x4e,0x14,0x4b,0xa5,0xa8,0xb5,0x19,0xe1,0x3d,0x94,0x24,0x3,
0x50,0xe6,0x40,0x91,0x50,0xa0,0x8b,0x33,0xba,0x84,0x38,0x5b,0x1b,0xd7,0xa8,0xc4,
0xe5,0xab,0xa5,0x4a,0x8e,0xb5,0x5d,0x56,0x1d,0x5d,0x73,0xbd,0xdf,0xf3,0x91,0x6,
0x4b,0x65,0x6,0xb9,0x2c,0xa7,0x6c,0xb3,0x87,0x1e,0x7a,0x18,0xee,0xbc,0xf3,0xf6,
0x58,0x22,0xd0,0x64,0xe5,0x3,0xcc,0x1e,0x8d,0x42,0xfc,0xf1,0x1e,0xc,0x3a,0x64,
0xa9,0xdf,0xc3,0xbd,0x81,0x7b,0x4,0x8f,0xd1,0xd1,0x52,0x64,0x27,0xab,0xca,0x46,
0x83,0x56,0x8c,0x89,0x59,0x4c,0x26,0x9a,0xe1,0x5b,0x39,0xa7,0x19,0xcc,0xc,0x63,
0x0,0x7e,0x62,0xc0,0x8c,0xf,0x4,0x60,0x85,0x1a,0x53,0x2b,0xaa,0x60,0xa6,0x47,
0x46,0xb9,0x60,0x0,0xf2,0xe3,0xfd,0xfb,0xf7,0xc3,0xbe,0x7d,0xfb,0x61,0xd5,0xaa,
0x55,0x1e,0xb1,0x2b,0x84,0x9e,0x69,0x30,0x5,0xa6,0xc2,0xd6,0x1d,0xaf,0x19,0x36,
0xf3,0x19,0x62,0xbc,0x7e,0xc1,0x96,0xfe,0xb8,0x27,0x70,0x6f,0xe8,0xe3,0xe2,0xc0,
0xb0,0x2c,0x6,0xa,0xe4,0x3e,0xd2,0xe5,0xcd,0xf8,0xa7,0x4,0x64,0x46,0x49,0x66,
0xa3,0xb2,0x76,0x46,0xbc,0x9f,0xa1,0x32,0xe8,0x5c,0xc3,0x33,0x1,0x9f,0xc6,0x83,
0x64,0x27,0x4e,0xfd,0x76,0x45,0xfa,0xdf,0x4d,0x7d,0xfa,0x24,0xb3,0x9d,0x7d,0x41,
0x0,0xfd,0x3,0x2e,0x74,0xf6,0xc3,0xf,0x3f,0x22,0x38,0xfd,0xa8,0x65,0xa,0xb0,
0x69,0x73,0x8,0x4e,0x24,0xc1,0xdb,0xf7,0x53,0x39,0x62,0x52,0xf,0xd1,0x44,0xb5,
0xf1,0xee,0x5c,0xcd,0x5c,0x66,0xe8,0xcf,0x15,0xee,0x5,0xdc,0x13,0xf6,0x71,0xf6,
0xdc,0x45,0xd3,0x67,0x30,0xc2,0x6c,0x50,0xbd,0x7,0xd,0xad,0x68,0xa0,0x96,0xa2,
0x4,0x19,0x35,0x88,0x42,0x33,0xe7,0xb8,0x34,0x7d,0x0,0x8a,0x5b,0x53,0x8f,0x7a,
0x31,0x8e,0x1e,0x3b,0xeb,0x30,0x27,0x69,0xeb,0x3d,0x5e,0xd5,0x39,0xd4,0xc8,0x1b,
0x3d,0xc9,0x7b,0x9d,0xfe,0x9d,0xf8,0xf7,0xd3,0x47,0xfc,0x6f,0x12,0x59,0x6c,0xcc,
0x8f,0xd2,0xc8,0xc4,0x5f,0xd9,0xf1,0x87,0x7b,0x1,0xf7,0x84,0x91,0x92,0xc2,0xfe,
0xdf,0xbf,0xff,0x98,0xca,0xd0,0xc4,0xce,0x26,0x19,0xc5,0xc,0x32,0x11,0x53,0x8,
0xe4,0x39,0x64,0x17,0xa9,0x92,0x64,0x2,0x65,0x9,0xf5,0x36,0x93,0x74,0xe8,0xac,
0x1f,0x9c,0x65,0x3c,0x6e,0xf,0x37,0xc6,0xc1,0x6b,0xfe,0x1a,0x3,0x30,0x2a,0x1b,
0xaa,0x66,0x98,0x9,0x78,0xe4,0xf8,0x28,0x2c,0x5b,0xdc,0x64,0xbe,0xf6,0xf2,0xcb,
0x2f,0xc3,0xba,0x75,0x6b,0x61,0xc9,0x92,0x25,0xce,0xf9,0xd,0x58,0x67,0x83,0x9a,
0x2,0x95,0x2a,0xd2,0xd2,0x36,0x78,0x7d,0x4,0x1a,0xef,0x2,0xcc,0x18,0x78,0x73,
0x94,0xc6,0x38,0x1b,0xd1,0x77,0x92,0x54,0xfc,0x13,0x31,0x42,0xf4,0xf8,0xe3,0x5e,
0xb0,0x8f,0xdd,0x7b,0x8e,0xa,0x13,0x60,0x8,0x9a,0x9b,0xdb,0x49,0x83,0xc,0x34,
0xa3,0xf3,0xf7,0x19,0xe7,0xaa,0xa9,0x69,0x68,0x7a,0x4b,0x30,0xe3,0x6c,0x6c,0x40,
0x1,0x82,0xf5,0x16,0x81,0x4b,0xef,0x97,0x9c,0x6,0xc0,0xc,0x92,0x8b,0x4,0x3e,
0x40,0xbb,0x2c,0x9b,0xcd,0xc3,0xee,0x97,0xf,0xc3,0xc8,0xa8,0xbb,0x22,0xf,0x3e,
0xf8,0x90,0x6c,0x1,0xe6,0x48,0x46,0x18,0x7,0xf1,0x4c,0xbe,0x7a,0xef,0x9b,0x29,
0xfe,0x67,0xae,0x14,0x67,0x13,0x34,0xa2,0xf3,0x55,0x96,0xfe,0x8d,0x65,0x26,0x24,
0xad,0xa5,0x7d,0x7d,0xb8,0xf6,0xb8,0x7,0xec,0xa3,0xff,0xe2,0x8,0xbc,0xb8,0x7d,
0xf,0x64,0xb2,0x79,0xb9,0x77,0x32,0x39,0x9,0x1d,0xae,0x3b,0x1b,0x9b,0x96,0xf0,
0x5a,0x13,0x90,0xce,0x41,0x63,0xe,0x28,0xa0,0x93,0x99,0x62,0xe,0x4,0xb5,0x71,
0x50,0x56,0xf5,0xf3,0xa4,0xcd,0x30,0xb1,0xb6,0x7f,0xed,0xe7,0x93,0x5c,0x3b,0x50,
0xa5,0xa9,0xc8,0x0,0x9a,0x68,0x31,0x5f,0xdc,0x75,0xcc,0x5d,0xec,0xfe,0x7e,0x78,
0xea,0xa9,0xa7,0x21,0xa9,0x43,0x51,0x23,0xf4,0x94,0xb7,0x89,0x2e,0xed,0xfd,0xca,
0x4,0x3f,0x3e,0x46,0x80,0xe5,0xbd,0xd5,0xce,0x6b,0x5f,0x43,0xb2,0x99,0xd0,0x48,
0x8e,0x3f,0x77,0x9d,0x71,0xed,0x71,0xf,0xd8,0x1a,0xcf,0x63,0x4f,0x6c,0x27,0x62,
0xcf,0x2a,0xc1,0x21,0x89,0x5f,0xee,0x25,0x66,0xff,0x33,0x1b,0xde,0xc5,0xf,0xb4,
0xbb,0x37,0x1,0xf0,0x86,0x67,0x2,0x97,0x6c,0x1e,0x0,0x31,0x1,0x2a,0x45,0x95,
0xb,0x99,0xcb,0x35,0xc3,0xb9,0xb3,0x17,0xe1,0xf8,0xc9,0x82,0xf3,0xbd,0xed,0xdb,
0x77,0x40,0x5f,0x5f,0x5f,0x43,0x64,0x8,0x56,0x22,0xfc,0x38,0x31,0xa7,0x49,0x64,
0x9f,0x88,0x83,0x9,0xd4,0x4,0x58,0x5,0x8d,0xa3,0x9a,0x56,0xd0,0x8,0x8e,0xbf,
0xe8,0x3a,0x71,0xcd,0x71,0xed,0xed,0xe3,0xd5,0xbd,0xc7,0xe0,0xf4,0xe9,0x73,0x90,
0xcd,0xe5,0x9,0x8,0x4,0x5,0x7,0xee,0x1f,0x1c,0x1,0xe1,0x1,0x64,0xd4,0x88,
0xfa,0x1b,0x30,0x13,0x29,0x88,0x6e,0x3c,0xd2,0x6,0x6c,0x26,0xd0,0x98,0x8c,0x20,
0x5b,0xbb,0xc3,0xa2,0x51,0xc,0x1a,0x56,0xc5,0x37,0x10,0x81,0x6e,0x60,0x19,0x67,
0x98,0x29,0xd3,0x82,0xe6,0xca,0x4d,0x50,0x2e,0xb7,0xc0,0x8e,0x5d,0x7,0xa0,0xa7,
0x7b,0x3,0xe4,0x73,0xdc,0x2c,0x16,0xa6,0x7e,0xbe,0xe7,0x3d,0xef,0x32,0xe0,0x15,
0x49,0xb9,0x1,0x53,0xc1,0xc9,0x35,0xe3,0xb1,0x61,0xbe,0xed,0xf7,0x92,0xb2,0x2e,
0x5d,0x74,0x9e,0xe8,0xf9,0xe8,0xe8,0x28,0x9c,0x38,0x71,0x12,0x4e,0x9c,0x3c,0x1,
0x67,0x4e,0x9f,0x86,0x73,0xe7,0xcf,0x51,0x3d,0x4,0x3a,0xbb,0x86,0x87,0x86,0x29,
0xd5,0x15,0xbf,0x83,0x47,0x53,0x53,0x13,0x61,0x12,0xb4,0xb6,0xb6,0x42,0x4b,0x6b,
0xb,0xcc,0xe9,0xec,0x84,0xae,0xae,0x2e,0xe8,0xe9,0x99,0x7,0xb,0x17,0x2e,0x14,
0x63,0x1,0x7d,0x47,0xff,0x86,0x9e,0xb,0xbb,0x88,0xc9,0xb9,0xaa,0x8a,0xf9,0x14,
0x53,0x99,0xef,0xef,0x66,0x79,0xea,0xe9,0x41,0x35,0x1d,0xd7,0xdc,0xbe,0xf6,0xc1,
0xa1,0x51,0x78,0xfa,0x99,0xed,0x42,0xf2,0xe7,0x25,0xc1,0x67,0x64,0xf5,0x9f,0x7c,
0x9d,0x95,0xe6,0xa4,0x8a,0x8,0xc4,0x18,0xa0,0xa5,0x15,0x30,0x6a,0x8a,0xaa,0xe6,
0x47,0x11,0xbf,0xdd,0xa8,0xa4,0xd1,0xb2,0x6,0x2f,0xd9,0xce,0x40,0x92,0x33,0x4b,
0xd,0x0,0xdb,0x55,0xa3,0x6,0x20,0x51,0x81,0xb,0xb0,0x73,0xf7,0x49,0xd8,0xba,
0xa5,0xd7,0x7c,0xf7,0xec,0xd9,0xb3,0xf0,0xdc,0x73,0xcf,0xc3,0xd5,0x57,0x5f,0x6d,
0x6d,0x6c,0xbd,0x69,0xb8,0x21,0xbe,0xc9,0xdc,0xb8,0xe9,0x50,0xd6,0xae,0x3,0xcb,
0x27,0x74,0xfd,0x7c,0x78,0x78,0x8,0x5e,0x7d,0x75,0x2f,0xec,0xdd,0xbb,0x17,0xe,
0x1e,0x3c,0x4,0x27,0x4f,0x9d,0x72,0x36,0x38,0x4b,0x10,0x8f,0x64,0xbf,0x72,0x99,
0x20,0x85,0xef,0xd,0xf,0xf,0x3,0x3f,0x3,0x70,0x38,0x61,0x2e,0x17,0xf4,0xf6,
0xc2,0x8a,0x15,0xcb,0x61,0xcd,0x9a,0x35,0xb0,0x76,0xed,0x5a,0x82,0x2,0x4f,0x76,
0xd4,0xda,0x8,0xc0,0x2c,0xc1,0x39,0x68,0x3b,0x59,0x27,0x57,0xfa,0xfb,0x8e,0x3f,
0x7d,0xe0,0x5a,0xe3,0x9a,0xdb,0xc7,0x63,0x8f,0x6f,0x27,0x1f,0x59,0xe,0x81,0x32,
0xb3,0xd2,0xf6,0xd7,0x5d,0x9c,0x2,0xd2,0x0,0x32,0x4a,0x9b,0x8a,0x86,0xfd,0xda,
0x86,0x78,0x67,0x51,0xa6,0x51,0xc4,0xc,0x1a,0x94,0x9,0x78,0x1a,0x40,0xf5,0x34,
0xa0,0xea,0xaa,0xdc,0x58,0x33,0xf8,0x26,0x36,0x5a,0x20,0xf1,0xf7,0x18,0xb5,0xa3,
0x92,0x0,0x88,0x79,0x82,0x76,0xc2,0x50,0xcd,0xc9,0x53,0x67,0xe1,0xf4,0xd9,0x6e,
0x98,0xd7,0x9d,0xb5,0x36,0xc5,0x73,0xb0,0x7a,0xf5,0x2a,0x98,0x3b,0xb7,0x2b,0x25,
0x2,0x32,0x39,0x11,0x81,0xb1,0x10,0xbe,0x7e,0x1c,0x18,0xb8,0x48,0x6a,0xec,0xf6,
0xed,0xdb,0xe1,0xe0,0xa1,0x43,0x51,0xa3,0x4b,0xf5,0x39,0x7a,0xaf,0x79,0x5,0x6,
0x90,0x74,0x31,0x69,0x77,0x89,0xc,0xe5,0xe4,0xc9,0x93,0xf0,0xe4,0x93,0x4f,0x11,
0xe3,0x40,0x66,0xb0,0x65,0xcb,0x16,0xd8,0x72,0xf9,0x66,0x68,0x6f,0xef,0xa8,0x93,
0x11,0xb0,0x49,0x8e,0x1a,0xb0,0x14,0x3f,0x15,0x83,0xf3,0xe7,0xcf,0xd3,0x5a,0xdb,
0xc7,0xfe,0x3,0x27,0xe0,0xd8,0xb1,0x13,0x90,0x6f,0x6e,0xa3,0x7d,0xe2,0xaa,0xfc,
0x4c,0x45,0x1,0x98,0xab,0xf6,0x6b,0x13,0x4c,0x59,0x6a,0xda,0x62,0x33,0x86,0x1b,
0xd3,0xf3,0x20,0x61,0xd1,0x39,0xa4,0x87,0x6b,0xa7,0x96,0x36,0x5c,0x5a,0xbf,0xc4,
0x7b,0x3,0x32,0x52,0xdb,0x90,0x1,0x70,0xb1,0xb0,0xb2,0x4b,0xad,0x8c,0xd7,0xbe,
0xb0,0x7d,0x1f,0xbc,0xe1,0xe6,0xd,0x82,0xd3,0xcb,0x9,0xc1,0x9a,0x81,0x1f,0xfe,
0xf0,0x41,0x78,0xfb,0xdb,0xdf,0xee,0x35,0xe6,0x70,0xd3,0x45,0x27,0x72,0xc3,0x56,
0xc2,0xd,0x4c,0x27,0x7c,0x4e,0x61,0xab,0x27,0x9f,0x7a,0x1a,0x76,0xef,0xde,0x6d,
0xf0,0x1b,0x75,0xd2,0x13,0x38,0x1b,0x30,0x89,0x14,0x2a,0x87,0x39,0xb8,0x97,0x4a,
0x1d,0x23,0x24,0xd5,0x2c,0xe7,0xe0,0x81,0x83,0xa4,0x69,0x7c,0xeb,0x5b,0xdf,0x86,
0x8d,0x1b,0xd6,0xc3,0x35,0xd7,0x5c,0x3,0x1b,0xc4,0x63,0x3a,0xd0,0x6,0xf7,0x42,
0xac,0x93,0xa3,0xd,0xa4,0xdb,0xfe,0xd2,0x5c,0xc1,0x35,0x8e,0xfa,0x29,0x0,0x8c,
0x8c,0x14,0xe0,0xb1,0x27,0x9e,0x93,0xce,0x62,0xa1,0xee,0x13,0x3,0xc8,0x66,0xd,
0x4a,0x93,0xa6,0x6e,0xe3,0x8,0x54,0x39,0x0,0xc,0x6c,0x66,0x10,0xb8,0x10,0xe2,
0x8a,0x91,0xca,0x1a,0x82,0x78,0x79,0x74,0x23,0x69,0x1,0xd9,0xb1,0x4b,0xfa,0x46,
0xf3,0xd,0xc4,0xaf,0x87,0x26,0x1a,0x9d,0x81,0x90,0x31,0x5a,0x40,0x59,0x98,0x2,
0xf9,0x72,0x49,0xa8,0xbb,0x45,0x78,0xf9,0x95,0xd3,0xb0,0x79,0x63,0x4f,0x24,0xe5,
0x4e,0x9e,0x82,0x97,0x5e,0xda,0x5,0x97,0x5d,0xb6,0x29,0xc5,0x8e,0x9c,0x58,0x13,
0x25,0x4d,0xea,0xfb,0x92,0x1e,0x1f,0xd1,0x6e,0x7d,0xfa,0xe9,0x67,0xe1,0xa1,0x87,
0x1f,0x86,0xbe,0xbe,0xd3,0x6a,0x83,0x45,0x2a,0xa7,0x3e,0x85,0x43,0xe0,0xcc,0x25,
0x7a,0x49,0xdc,0x6c,0x42,0x66,0x98,0x1b,0x2d,0x37,0x84,0x97,0x4,0x23,0xc2,0x31,
0x6f,0xde,0x3c,0xb8,0xf9,0xa6,0x9b,0x84,0x29,0xb5,0x55,0x35,0xdb,0xf4,0x19,0x41,
0xba,0x36,0x30,0xd1,0x3e,0x96,0xa4,0x28,0xe,0xae,0x2d,0x6a,0x31,0xf6,0xf1,0xc4,
0x93,0x3b,0xa8,0xea,0x2f,0xdf,0xd4,0x4c,0xaa,0x7f,0xa0,0xa4,0x3f,0xd9,0xfc,0x41,
0x10,0x33,0xb7,0xc8,0xb1,0xca,0x32,0xae,0xaa,0x1f,0xeb,0x1f,0xe0,0xcd,0x16,0x63,
0xa9,0x9a,0xea,0x74,0xd3,0x4f,0xf6,0x52,0x3,0x4,0x4a,0x76,0xa9,0x8b,0x85,0x44,
0x5b,0x8e,0xb,0xe,0x4f,0xb8,0xf4,0x25,0xc8,0x9,0x2d,0xe0,0xd0,0xd1,0x53,0xb0,
0x78,0x71,0x17,0x74,0x75,0x46,0xc1,0x90,0x67,0x9f,0x7d,0xe,0x36,0x6e,0xbc,0x6c,
0xca,0x55,0x7e,0x1f,0xa5,0x36,0x72,0xb8,0x85,0x14,0xae,0x7a,0xe0,0x81,0xef,0x13,
0x50,0x85,0x94,0x46,0xd6,0xc6,0xd3,0x44,0xcf,0x2a,0x74,0x19,0x56,0xc,0x42,0x3b,
0x39,0x53,0xd,0x36,0xee,0x32,0x8,0x5e,0x81,0xbf,0xb2,0x4,0x82,0x3d,0x7b,0xe6,
0x2c,0x7c,0xfd,0xeb,0xf7,0x90,0x94,0x7d,0xe3,0x1b,0xdf,0x40,0x8c,0x20,0xe9,0x37,
0x93,0xb4,0x1,0xad,0xdd,0x4c,0xa6,0x49,0xf0,0xec,0xb3,0xcf,0x3b,0xef,0x1e,0x39,
0xda,0x7,0xfb,0xf6,0x1f,0x82,0x26,0xa1,0xfa,0x67,0x48,0xfa,0x37,0x29,0xe9,0x9f,
0x95,0x9e,0xfe,0x20,0x2a,0xf5,0xd5,0x74,0xc1,0xa4,0x6d,0x69,0x72,0x4d,0x6c,0x46,
0xcd,0xed,0x75,0xd3,0x33,0x69,0x99,0x61,0xae,0x16,0x30,0xbd,0x46,0x80,0x1e,0xd9,
0xb1,0x4e,0xe6,0x4c,0x50,0xff,0x23,0x9,0x8e,0x1e,0x5c,0x80,0x4c,0x80,0xe,0xc1,
0x50,0x10,0xbf,0x60,0x2,0x39,0x4,0xc,0x2d,0xc1,0xf3,0x2f,0xec,0x83,0xd7,0xdf,
0xb4,0x4e,0x7c,0x26,0x97,0x69,0x68,0x68,0x98,0x1c,0x44,0x3d,0x3d,0x3d,0x9,0x9b,
0x71,0x7c,0x4c,0xa1,0x32,0x54,0x38,0x73,0xa4,0xc,0x1e,0x8,0x4b,0xf5,0x9f,0x5f,
0xff,0x3a,0x1c,0x3f,0x76,0x3c,0xda,0x68,0x56,0x48,0x8d,0x1,0x8b,0x69,0x13,0x46,
0xfd,0x4c,0x64,0x0,0xe9,0xc4,0xcd,0x12,0x54,0x3f,0x56,0x81,0x1a,0xb9,0xe3,0xe8,
0x72,0x8f,0xb,0xfd,0xfd,0xe2,0xba,0xef,0x81,0x27,0x9e,0x78,0x12,0xde,0xf6,0xb6,
0x1f,0x85,0x65,0xcb,0x96,0x55,0xd0,0x6,0x26,0xda,0x24,0x48,0x4e,0x89,0x3e,0x23,
0x98,0x93,0x9d,0xee,0x5b,0x28,0x96,0xe0,0xa1,0x47,0x9e,0x26,0xa9,0x4f,0xa1,0xbe,
0xac,0x72,0xfa,0x5,0xca,0xe1,0xc7,0x32,0x56,0xca,0xaf,0x9b,0x6,0x68,0x32,0x4d,
0x3,0xb7,0x63,0x90,0xdd,0x41,0x88,0xf9,0x73,0xc9,0x58,0x82,0x59,0x34,0x1b,0x5,
0x98,0x12,0x46,0x60,0x9b,0x2,0x59,0x9e,0x5,0x9e,0x6b,0x82,0x5c,0x28,0x1,0x43,
0x47,0x86,0xb,0xb0,0xf7,0xc0,0x79,0x58,0xbf,0x7a,0x8e,0xf9,0x8b,0x81,0x81,0x41,
0x62,0x0,0xd6,0x1e,0x9f,0x50,0xc9,0xef,0x3e,0x8f,0x33,0x80,0xa1,0xa1,0x41,0xb8,
0xf7,0xbe,0xef,0xc0,0x33,0x4f,0x3f,0x13,0x79,0xeb,0xc1,0xce,0x72,0xb4,0xdc,0xdc,
0x4a,0x9c,0x30,0x9f,0xf8,0x2d,0x47,0x60,0x53,0x73,0x33,0xb5,0xee,0xc2,0x50,0x1e,
0xf6,0x21,0xa0,0xc6,0x1d,0x2a,0x2,0xa0,0x8f,0x72,0x28,0x1b,0x8f,0x60,0xa9,0x2b,
0x46,0x5,0x46,0x46,0x47,0x61,0x74,0x64,0x44,0x56,0xbb,0x25,0xdd,0xf,0x8f,0x18,
0x1,0x4b,0x99,0xa4,0x53,0xa7,0x4e,0xc1,0x17,0xfe,0xfe,0x8b,0xb0,0x75,0xeb,0x55,
0x70,0xc7,0xed,0x6f,0x86,0x96,0x96,0xd6,0x38,0x23,0xe1,0x90,0x60,0x12,0x4c,0x5c,
0x1f,0x0,0x3d,0x55,0x3,0x3,0x3,0xce,0x67,0x4f,0x3f,0xbd,0x53,0xdc,0x5f,0x1,
0x72,0xf9,0x16,0x19,0xf7,0x57,0xce,0x3f,0x1d,0xf2,0x63,0xca,0xde,0x37,0x19,0x80,
0xb1,0xe2,0x2a,0xab,0xa9,0x1b,0xb3,0x7d,0x2f,0x2c,0x66,0xea,0x35,0x72,0x32,0x50,
0x96,0x8c,0x39,0xab,0x8d,0x76,0x7a,0x59,0x5f,0x63,0x78,0xf7,0x6b,0xd7,0x44,0xb8,
0x6b,0xc7,0xab,0x25,0x93,0xc9,0x41,0x59,0xc8,0x9,0x75,0x2f,0xcc,0x61,0x8b,0xaa,
0x66,0xd8,0xbb,0xf7,0x28,0x2c,0x5a,0xd0,0x9,0x1d,0x6d,0x2e,0x27,0xb7,0xdb,0x4e,
0x8f,0x27,0x1f,0x40,0x87,0x80,0x22,0x7f,0x82,0x1d,0xe,0x72,0x25,0xc2,0xae,0x5d,
0xbb,0xe0,0xab,0x5f,0xfb,0x1a,0xc5,0xea,0xb5,0xc4,0x8f,0x54,0x7e,0x4b,0xea,0x2b,
0xa6,0x0,0xb6,0xe6,0x20,0x1e,0x31,0x8e,0xdf,0xd1,0xde,0x1,0xed,0x1d,0xed,0xd0,
0x2a,0x8,0xe,0x89,0x3f,0x13,0x4,0x90,0xca,0xcd,0xfc,0xf7,0x6d,0xc9,0x2e,0x6,
0xe6,0xa,0xa0,0xe4,0xbc,0x28,0x8,0xe8,0xe2,0xc5,0x7e,0xa,0x15,0x6a,0x7f,0x2,
0x31,0x18,0x1d,0xf7,0x66,0xcc,0xf7,0xf9,0x99,0x7,0xc,0xbb,0xed,0xde,0xfd,0x32,
0xbc,0xe3,0xed,0x6f,0x83,0xd,0x1b,0x36,0x24,0xac,0x11,0x9f,0xd4,0x1e,0xd,0xb6,
0x56,0x85,0xc7,0x89,0x93,0x67,0x60,0xd7,0x4b,0x7b,0x4,0x43,0x6c,0x93,0xfd,0xf1,
0xac,0x90,0x9f,0x4c,0x9e,0xca,0x4a,0xcf,0xbf,0x9e,0x6b,0x6b,0x7e,0x35,0xea,0x34,
0x98,0x18,0x7f,0x20,0x35,0xa5,0xa,0xd2,0xc2,0x65,0x90,0xbe,0x16,0x39,0x95,0xbe,
0x0,0x1f,0x98,0xf1,0x35,0xa1,0x1,0xd8,0xce,0x3c,0xe9,0xc0,0xa1,0x4,0xa1,0x2c,
0x66,0x7b,0xa1,0x43,0x50,0x46,0x5,0x9e,0x7b,0xf1,0x0,0xdc,0x7c,0xfd,0x6a,0xf1,
0x39,0xa7,0x24,0x98,0xc9,0xb0,0xf9,0x2b,0xa9,0xfc,0xe8,0xe4,0xbb,0xf7,0xbe,0xfb,
0xe0,0xd1,0x47,0x1e,0x33,0x4,0x9e,0x28,0xf1,0xad,0xbf,0xd1,0x1b,0xb3,0xb3,0xb3,
0x13,0xba,0xbb,0xbb,0x61,0xee,0xdc,0xb9,0xd4,0xd5,0xc6,0xf6,0xf,0xf8,0x9e,0x7f,
0xce,0x6a,0x8b,0x6,0x68,0x27,0x17,0x6a,0xb,0x6d,0x6d,0x6d,0xe4,0xe0,0x43,0x42,
0xc7,0x2e,0x3e,0x17,0xce,0x5f,0x80,0xb3,0xe7,0xce,0x41,0xff,0x85,0xb,0x92,0x8,
0x92,0x42,0xe,0xcc,0x8d,0x28,0xa0,0x36,0xf1,0x95,0xaf,0x7c,0x5,0xae,0xbb,0xee,
0x3a,0x78,0xf3,0x9b,0xdf,0x64,0xf9,0x6,0xd2,0x4c,0x82,0x89,0x8d,0x10,0x74,0x75,
0x49,0x58,0x78,0xec,0x40,0xf4,0xc3,0x87,0x9e,0x90,0xb1,0x7e,0xf2,0xf8,0x37,0xc9,
0x47,0xb1,0x27,0xa8,0xa6,0x5f,0x98,0x0,0xf2,0x31,0x23,0x35,0x1,0xf2,0xfe,0x6b,
0x9f,0x40,0x60,0x21,0x4,0xb9,0x66,0xd3,0x4c,0x45,0x92,0xca,0x36,0xbe,0xad,0xcf,
0xeb,0x7c,0x3f,0x5d,0x13,0xa0,0x35,0x42,0x53,0x80,0x67,0x29,0xfc,0x17,0x52,0x54,
0x40,0x98,0x3,0x42,0xb,0x18,0x1e,0xea,0x87,0x83,0x87,0x2e,0xc2,0xd6,0x2b,0x97,
0xa,0xf5,0xbf,0x9b,0xd4,0xe0,0xa4,0x2c,0xb6,0x89,0x23,0xfe,0xe8,0xf9,0x39,0x41,
0x4c,0xff,0xfa,0xaf,0xff,0xa,0x47,0x8e,0x1e,0x93,0x44,0x9d,0x42,0xfc,0x86,0x69,
0x88,0xd1,0x2a,0x24,0xfd,0xbc,0x79,0xf3,0xa1,0x5b,0x30,0xab,0x5c,0x3e,0xe7,0x86,
0xa0,0xd2,0x88,0x5c,0xbf,0xe7,0x61,0xf4,0x27,0xd1,0x7f,0x2c,0x7a,0x80,0x7f,0x23,
0x8,0xb4,0x29,0xdf,0x4,0xbd,0xbd,0xbd,0xd0,0xbb,0xa0,0x97,0xba,0xfa,0x60,0x96,
0x61,0xdf,0xe9,0x3e,0xd2,0x58,0x2a,0x2e,0x91,0x3a,0x3f,0xfa,0x5,0xe,0x1f,0x3e,
0xc,0xef,0x79,0xcf,0x7b,0x60,0xce,0x9c,0x39,0x9,0x66,0xc0,0x78,0x99,0x80,0xab,
0x51,0xe9,0xbf,0x45,0x93,0xe,0x19,0xfb,0x7d,0xdf,0x79,0x10,0x6,0xfa,0x87,0x20,
0xd7,0xd4,0x62,0xb2,0xfd,0x74,0xe6,0x5f,0xe4,0xf9,0x8f,0x4a,0x7f,0xa3,0xa6,0x2d,
0x41,0x8c,0xf1,0x26,0xfa,0x5b,0x66,0x18,0x5c,0x78,0xe6,0xba,0x9b,0xde,0xf7,0x99,
0x32,0xf5,0xcb,0x93,0x2d,0x9a,0xb8,0x81,0x3c,0xbe,0xd4,0xb0,0xf1,0x2c,0x87,0xd,
0x33,0x4a,0xa6,0xea,0x5a,0x5b,0x26,0xdb,0xf7,0xd8,0xc9,0x93,0xf0,0xb3,0x3f,0xfd,
0x1,0x21,0x49,0x3b,0x4d,0xf7,0xdd,0xb1,0x4a,0xa0,0x6a,0x7d,0xe8,0xf4,0xf3,0x83,
0x7,0xf,0xc2,0x17,0xbe,0xf0,0xf7,0x70,0xe6,0xcc,0x19,0x23,0x65,0x2,0x1b,0xd8,
0x43,0xc5,0xf7,0x3,0x55,0x9c,0xd3,0xdd,0xd5,0x4d,0x68,0x46,0x4b,0x97,0x2e,0x85,
0x8e,0x8e,0xe,0xea,0xf3,0x46,0x9b,0x36,0x90,0xb1,0x6a,0xa6,0x62,0xd6,0xf8,0x3a,
0x63,0x75,0x1c,0x8a,0xd5,0x7,0xe8,0x4,0x17,0xd0,0x5d,0x63,0x55,0xaa,0xab,0xce,
0x72,0x53,0xe7,0x2,0xa7,0xfa,0xcd,0x5,0x5a,0x41,0xed,0x0,0xaf,0x61,0x41,0xef,
0x2,0x22,0x2e,0x4a,0x2f,0x2e,0x8c,0x7a,0xe,0x4b,0x66,0x95,0x67,0xcb,0xbf,0x1b,
0xb8,0x38,0x0,0x3b,0x76,0xec,0x84,0x95,0x2b,0x57,0xd0,0xdf,0x3b,0xc,0xba,0xe2,
0xf3,0xda,0xe7,0x3d,0x7a,0x64,0xa6,0x29,0x6b,0xbe,0xa9,0x9,0xfe,0xea,0xaf,0xfe,
0xe,0xb2,0xf9,0x66,0xca,0xc,0xcd,0xe7,0x5b,0xe9,0x31,0x27,0x98,0x1a,0xf9,0x1,
0x32,0x4d,0xca,0x19,0x98,0x57,0x2d,0xb4,0x75,0x6,0x60,0xd6,0xcc,0x4f,0x60,0x65,
0xfe,0x5,0x2c,0xf0,0x98,0x33,0xab,0xf3,0x3a,0xa7,0x96,0x71,0xe8,0xb5,0xcf,0x58,
0xed,0xc1,0xb3,0x71,0xaf,0x79,0xa3,0x34,0x40,0x4c,0xa6,0xbc,0x78,0x8d,0xfa,0x18,
0x1c,0x82,0x20,0x3d,0xb8,0xd4,0x2a,0x39,0x50,0x9e,0x5f,0x31,0x21,0x57,0x6f,0xdd,
0xa,0x1b,0xd6,0xaf,0x25,0x84,0x18,0xbb,0x80,0xa3,0x5e,0x26,0x50,0x8d,0xf8,0xf5,
0x62,0xec,0xdc,0xb9,0x13,0xfe,0xed,0xdf,0xbe,0xc,0x25,0xdd,0x39,0x7,0xec,0x8c,
0x32,0x8b,0x80,0x18,0x23,0x49,0x8f,0xd8,0x5,0xcd,0x2d,0xcd,0x72,0xe3,0x59,0x92,
0x1e,0x5f,0x73,0xcb,0xe,0xe5,0xca,0x36,0x8f,0x45,0x8,0xac,0x7d,0xc6,0x9c,0xb4,
0x35,0x87,0x3d,0x3a,0xce,0x2b,0xdb,0x4b,0xc1,0x53,0x22,0xc,0x38,0xda,0x5,0x21,
0xaf,0x13,0x3,0x53,0x92,0x8f,0x1e,0x39,0xea,0xa6,0xda,0xda,0xde,0x70,0x75,0x1e,
0xf4,0x25,0xfc,0x7f,0xff,0xfc,0x2f,0xf0,0x5e,0xa1,0x9,0xac,0x5a,0xb5,0x12,0x2a,
0x27,0xd,0xd5,0xaf,0x9,0xf8,0xce,0x45,0xbc,0x97,0xcd,0x9b,0x36,0xc1,0xeb,0xae,
0xbd,0x1a,0x76,0xee,0x78,0x55,0x49,0x7e,0x41,0x8,0x59,0x4d,0xe0,0x2a,0xed,0xd7,
0x2f,0xf6,0x51,0xaf,0x25,0x53,0xce,0x38,0x8c,0x39,0x49,0xfd,0x9f,0x69,0x96,0x40,
0x66,0xdb,0x4d,0xef,0xfd,0x4c,0x49,0x69,0x0,0xe5,0x50,0xb5,0x67,0x6e,0x88,0x4c,
0x0,0x17,0x8f,0x8e,0x83,0xce,0xab,0xe6,0x10,0xbd,0xaa,0xe5,0x1f,0x78,0x8f,0xd1,
0x86,0x20,0xc9,0x1f,0x96,0x55,0x23,0xce,0x12,0x7c,0xfa,0x13,0x3f,0xf,0xed,0xed,
0xd8,0xa7,0xde,0x6d,0x56,0xe9,0x33,0x9f,0x5a,0x38,0x6d,0x35,0xe2,0xc7,0x74,0xd4,
0x2f,0x7f,0xf9,0x2b,0x34,0xdf,0x81,0x92,0x8c,0x94,0x61,0xe6,0xe5,0x94,0xb7,0xb7,
0xb7,0x11,0x70,0x9,0x16,0xe5,0x50,0x4b,0x71,0x4b,0x7a,0x7,0x9e,0x54,0x26,0xc9,
0xe,0x60,0x24,0x3c,0x58,0xe9,0xaa,0x51,0x12,0x8b,0x97,0xdc,0x62,0x79,0xb3,0xb5,
0x84,0x4e,0xa,0x49,0x56,0xaa,0x2e,0xc,0xac,0x81,0xd7,0x88,0xea,0x36,0xfa,0x23,
0x90,0xc8,0xb1,0xe3,0x74,0x5a,0x65,0x21,0x6a,0x9b,0x2f,0xed,0x7e,0x89,0xb4,0x7,
0x34,0x2b,0xe2,0xc,0x6b,0x6c,0x65,0xd9,0xf6,0xfc,0xdb,0xf0,0x68,0xd8,0x8d,0xf8,
0xf2,0xcd,0x9b,0xe1,0x6b,0xff,0xf1,0x2d,0x92,0xf2,0xb2,0xe5,0x57,0x13,0x69,0x1,
0x94,0xfb,0x9f,0x6b,0x92,0x92,0x3f,0x2b,0x25,0x7f,0x46,0x45,0x4b,0x2,0xab,0xf6,
0x5f,0x57,0xfe,0xb1,0x18,0xf1,0xb3,0xc6,0xb7,0x0,0xb4,0x36,0xa9,0x3a,0x37,0xd3,
0x7d,0x36,0xde,0x55,0xca,0xfe,0x4,0xb2,0x79,0xa4,0x6e,0x90,0xa9,0xf1,0xd6,0xfc,
0xc1,0x13,0x9a,0x50,0xa4,0xa5,0x35,0xd9,0xb0,0xa7,0xd4,0x3f,0xd8,0x39,0xd7,0x5b,
0xee,0x7c,0x3d,0x2c,0x5b,0xda,0x63,0x5a,0x70,0x27,0x35,0xe1,0xac,0x67,0xf3,0xd9,
0x1b,0xd8,0x56,0xf,0x35,0xf1,0x7f,0xe5,0xdf,0xff,0x5d,0x30,0x20,0x6e,0x65,0xf3,
0x81,0x43,0xfc,0x59,0xb1,0x40,0x2b,0x57,0xac,0x80,0x4d,0x97,0x6d,0x82,0xf6,0xb6,
0x76,0x13,0x77,0x76,0x7c,0x3,0xcc,0xf2,0x70,0x68,0x42,0xf,0xdc,0xa,0xb5,0xc8,
0xf9,0x6b,0xd5,0xa6,0x5b,0x1b,0x37,0x24,0x13,0x28,0xf4,0xee,0x93,0xc7,0x36,0xd,
0x98,0xdf,0x67,0x4e,0xe,0xbc,0xa3,0x3a,0xb0,0x28,0x3e,0xde,0xd1,0xd9,0x1,0x5b,
0x2e,0xbf,0x1c,0xd6,0xac,0x5d,0x23,0xc3,0x8e,0x4e,0xde,0x3c,0xb3,0x9c,0x9f,0x21,
0xdc,0x73,0xcf,0x37,0x48,0x1b,0x72,0xe2,0xe8,0x89,0x38,0x8d,0x6c,0x4c,0xc2,0x43,
0x36,0x2b,0x95,0xed,0xd5,0x37,0x6c,0x58,0x3,0xef,0x7a,0xe7,0x5b,0xcd,0x77,0x74,
0x8a,0x2f,0x18,0xf3,0x2b,0xe3,0x81,0x7f,0x30,0x1b,0x5f,0x36,0x8a,0xea,0x0,0x58,
0x91,0xa2,0x50,0xd5,0xff,0x27,0xed,0xd1,0x94,0x79,0x8d,0x69,0xde,0xd,0xe7,0x4,
0x9c,0x1e,0x89,0xaf,0x37,0x69,0x58,0xe,0x55,0x76,0x5a,0x98,0x1c,0x8b,0xf6,0xb3,
0xd6,0x74,0x8f,0x7a,0x1f,0x94,0x84,0xc5,0xcb,0x87,0x39,0x31,0x96,0x92,0xa9,0xe,
0xec,0xea,0xea,0x84,0xf,0xbe,0xff,0xcd,0xe4,0xf8,0x43,0x2f,0x77,0xd4,0xb1,0x16,
0x62,0x8f,0xd5,0xc3,0x7d,0xf6,0x66,0xe5,0x16,0x6c,0xba,0x74,0xa4,0xed,0xd8,0xb9,
0x3,0xbe,0xfa,0xd5,0xaf,0x41,0x62,0x1d,0xbf,0xba,0xde,0xb9,0x73,0xe7,0x90,0x9d,
0x9f,0x17,0x76,0x69,0x24,0xc5,0x99,0x43,0xf8,0x91,0xfd,0x99,0x10,0xa5,0x65,0x16,
0xf1,0x7a,0xe1,0x43,0x13,0xe2,0xd3,0x1d,0x79,0x42,0x79,0x5d,0x5c,0xa7,0xe3,0xfa,
0x51,0x42,0xeb,0xd,0x4a,0x81,0x5,0xeb,0x5a,0x63,0xee,0x15,0x16,0x13,0x82,0xb,
0x16,0x2c,0xa4,0x8,0xc5,0xde,0x57,0xf7,0x52,0x21,0x4e,0x9a,0xa3,0x11,0x6b,0xa,
0x72,0xb9,0x2c,0xac,0x5f,0xbf,0x3e,0xd6,0xbe,0xdd,0x9d,0xff,0xea,0xa6,0x80,0x5d,
0xbd,0x69,0x3f,0x16,0x95,0x36,0xf2,0xcb,0xbf,0xf8,0x53,0xf0,0xd4,0x53,0x2f,0xc0,
0xc5,0xc1,0xa2,0x9,0x61,0xda,0xea,0xbd,0x5c,0xbb,0x40,0x4e,0x25,0x5e,0x7,0xd3,
0x61,0xb3,0x50,0x15,0xf5,0x28,0xa6,0xaa,0x9e,0x87,0x9c,0xa7,0x3b,0x51,0x99,0xa,
0x41,0x7,0x95,0x71,0x9,0xa7,0x8f,0x1,0x84,0xd0,0x0,0x98,0xe0,0x56,0x1c,0x38,
0x94,0x4,0xcf,0x4d,0xeb,0xe8,0xb2,0x2,0x56,0x90,0x79,0xe7,0xa6,0xde,0x9a,0xab,
0x49,0xe5,0x11,0x3,0x70,0xa4,0x9e,0x9e,0x70,0x6d,0xd,0x9b,0x45,0x8b,0x5a,0x87,
0x97,0x8a,0x5,0x58,0xb6,0xa4,0x7,0x7e,0xf3,0xd7,0x3e,0x0,0xcd,0x4d,0x19,0x18,
0x1d,0x2d,0x28,0xd5,0x3f,0xbe,0xe9,0xea,0xb3,0xfb,0x99,0xa7,0x1,0xc8,0xf7,0xe,
0x1f,0x3e,0x42,0x36,0x3f,0xde,0xf,0xb3,0xec,0x69,0xfd,0xc,0xd5,0x6b,0xcc,0x9a,
0x5b,0xb0,0x60,0x81,0x71,0xea,0x81,0xb3,0x79,0x22,0xe2,0x27,0xfb,0x3c,0x88,0x8a,
0x4d,0x18,0xc4,0x13,0x4e,0x28,0x2f,0xa0,0xa5,0x85,0x8,0xb0,0xbd,0xbd,0x9d,0x1c,
0x6e,0x68,0x52,0x34,0x37,0x37,0x53,0xb8,0x10,0x25,0xb3,0xc,0x8d,0x95,0x88,0x38,
0x46,0x46,0x46,0xe0,0xe2,0xc0,0x20,0x5c,0xbc,0x78,0x11,0x2e,0xf6,0xf7,0xc3,0x19,
0x61,0xc7,0xf,0xab,0x46,0x2a,0x78,0x8,0x63,0x49,0x31,0x59,0x69,0xa,0x24,0x11,
0x7c,0x92,0x36,0x84,0x8c,0xec,0xb2,0xcb,0x2e,0x83,0x13,0x27,0x4e,0x90,0xd3,0x53,
0xf6,0x6c,0x64,0xae,0x7f,0x41,0x8c,0x6f,0x7c,0xf3,0xdb,0xf0,0x81,0x8e,0x4e,0x32,
0x77,0x6c,0x8c,0x46,0x1d,0xc2,0x95,0xf7,0x57,0xab,0x3f,0x40,0x7e,0x57,0xc6,0xea,
0x75,0xcb,0x72,0x19,0x6,0x6c,0x6f,0x6f,0x81,0xcf,0x7d,0xf6,0x8f,0xe0,0x53,0xbf,
0xfb,0xff,0xc2,0xe1,0x63,0x67,0x24,0x84,0x57,0x90,0x95,0x7b,0x8f,0x5a,0x81,0x95,
0xc4,0xdc,0x86,0x20,0x7b,0xe7,0x96,0x65,0x4a,0x30,0x2f,0xab,0x14,0x5f,0xee,0xac,
0x9d,0x16,0x52,0x76,0xca,0xb0,0x7e,0xe6,0x38,0x4f,0x3,0x89,0x2c,0x4,0x1,0x73,
0x7c,0x51,0xd3,0x22,0x67,0x2d,0x9a,0x67,0xbf,0xf4,0x9b,0xff,0xc6,0x47,0x47,0x87,
0xa0,0x30,0x8a,0x2d,0x8f,0xa,0x94,0x1e,0xcb,0x53,0xb2,0xbf,0x26,0x93,0xf8,0xb9,
0x6,0x56,0xe4,0x25,0x5a,0x90,0x9e,0x9e,0xe,0xb8,0xe3,0xcd,0xaf,0x83,0x35,0x2b,
0x17,0x92,0xed,0x36,0x3c,0x52,0x84,0xa1,0xa1,0x11,0x41,0xa4,0xb8,0x51,0x47,0xc5,
0xeb,0x82,0x7c,0x2d,0x1e,0x47,0xa,0xf8,0x99,0x78,0x6f,0x78,0x84,0xaa,0xbb,0x90,
0x90,0x87,0xc4,0xe3,0xb0,0x78,0x6f,0x64,0xb4,0x40,0xe1,0xaa,0xa8,0x73,0xad,0x54,
0x7,0xbb,0xbb,0xda,0xe1,0xf6,0x37,0x6f,0x83,0x1f,0xbd,0x6b,0x1b,0x2d,0xc6,0xe8,
0xa8,0x94,0xfe,0x91,0xda,0x56,0x5f,0xf2,0x4f,0x25,0xbb,0x5f,0x87,0xfa,0x3e,0xfb,
0xd9,0xcf,0xc1,0xe0,0xd0,0xa0,0x71,0xe2,0xd9,0xde,0xfe,0x9c,0xb0,0x9d,0xd1,0xd6,
0x27,0x75,0x3f,0x88,0x3c,0xf9,0x36,0x83,0x90,0x55,0x68,0x2c,0xca,0xe2,0xf3,0xc3,
0x7d,0x4a,0xda,0x75,0x9,0xfb,0x1b,0x19,0x9,0x2,0x79,0x20,0xe1,0x47,0xf7,0xe3,
0x43,0xb8,0xf3,0x18,0xa3,0x2,0x60,0x4e,0x98,0x12,0x33,0xe8,0x8e,0x1f,0x97,0x84,
0x8b,0x12,0x1c,0xcf,0x81,0xb6,0x71,0x56,0x85,0xcc,0x7c,0xd5,0xdc,0x4d,0x4b,0x76,
0xf9,0x27,0xfe,0xed,0xc0,0xe0,0x20,0x55,0x33,0xa2,0xb6,0xc5,0x58,0x5c,0x6b,0x6f,
0x6d,0x6b,0x85,0x9f,0xf8,0xc0,0x7,0x28,0x44,0x18,0x4f,0xc4,0x9a,0x88,0x35,0x9,
0x88,0xf9,0x35,0x35,0xe5,0x89,0xd9,0xff,0xfb,0xd7,0xbe,0xb,0xf7,0xde,0xf7,0x18,
0x9c,0xbb,0x30,0x8,0xf9,0x7c,0xb,0x15,0x3,0x65,0x54,0x16,0x60,0x53,0x73,0x13,
0xb4,0x88,0xd1,0xda,0xda,0x2c,0x18,0x29,0x8e,0xbc,0x10,0x14,0x79,0x68,0x69,0x15,
0xef,0xb5,0x34,0x41,0x53,0x5e,0x9c,0xa7,0x39,0x4f,0xcf,0x9b,0xc5,0x23,0x8e,0xa6,
0xa6,0x9c,0x78,0x2d,0x9f,0x97,0x4a,0x21,0xec,0xdb,0x7f,0x2,0xbe,0xf3,0xdd,0x67,
0x4,0x33,0x1d,0x30,0x11,0x5,0x13,0xe6,0x55,0x9a,0xc6,0xd4,0xb9,0x0,0x2,0x5a,
0xbb,0x5c,0x36,0x4f,0x11,0x91,0xa6,0xa6,0xd6,0xe9,0x66,0x0,0x36,0xf1,0xcb,0x22,
0x1d,0x74,0xc8,0xdd,0xb0,0xed,0x32,0xf8,0x99,0x8f,0xde,0x2e,0x24,0x54,0xa6,0x22,
0x9c,0x92,0x6f,0x6f,0xa7,0xa9,0x58,0x78,0xe,0x64,0x18,0xc3,0xc3,0x5,0xb1,0xf1,
0x8a,0xe2,0xc6,0xb3,0x82,0x48,0x3a,0x8c,0x5d,0x88,0x9b,0x91,0xd2,0x60,0xc3,0xf2,
0x98,0x32,0xd2,0xd2,0x52,0x7b,0xf5,0xc0,0x73,0x7f,0xee,0x6f,0xfe,0x6,0x4e,0x8,
0x42,0x72,0x42,0x63,0xca,0xa6,0x6e,0x13,0x44,0xbf,0x6e,0xed,0x5a,0x4a,0xd5,0xb5,
0xc3,0x65,0xb6,0xbd,0xaf,0xbd,0xfc,0x81,0x29,0xfb,0x8d,0x22,0x14,0x78,0x2e,0xcc,
0x5,0x58,0xb5,0x72,0x15,0xd5,0xe9,0xa3,0xa4,0x97,0xda,0x53,0x68,0x3d,0x86,0xca,
0x9f,0x12,0x37,0x6f,0x92,0x1c,0x7d,0x3a,0x1e,0x2e,0x71,0x1,0xe5,0x23,0x6a,0x6,
0xd8,0x40,0x63,0xdf,0xbe,0x7d,0x24,0x9,0x91,0x90,0x62,0x4e,0xc5,0x14,0x3b,0x9d,
0x5b,0x9a,0xa,0xce,0x37,0x96,0x32,0xf,0xa,0x66,0x90,0x74,0xcc,0x9f,0x3f,0x1f,
0x3e,0x20,0x98,0x80,0x5e,0x7f,0x9b,0x9,0xd4,0x63,0xa,0xa4,0x45,0x63,0x24,0x56,
0x64,0x96,0x1c,0x96,0xd9,0xac,0x4c,0xfa,0x39,0x7b,0xb6,0x1f,0x46,0xb,0x25,0x22,
0xe0,0x96,0x16,0x24,0xfc,0xbc,0x77,0x2f,0x7e,0x44,0x88,0x3b,0xfb,0x2b,0x3d,0xea,
0xc4,0xc8,0xa9,0xfc,0x85,0x2f,0xdd,0xf,0x8f,0x3d,0xb9,0x5b,0x66,0x1d,0x1a,0x26,
0x10,0x54,0x44,0x79,0x9e,0xa,0x6,0x90,0x4d,0x6,0x3,0xe1,0x53,0xa8,0x8f,0xe8,
0xd,0x2a,0x33,0xf2,0x56,0xaf,0xe8,0x85,0x9f,0xfd,0x2f,0x77,0xd0,0xfb,0xd4,0x7b,
0xad,0x1c,0x7a,0x10,0x54,0x71,0x15,0xdb,0x26,0x3c,0x3b,0x6,0x6c,0x7f,0x9e,0xcf,
0x5,0x62,0x34,0x8b,0x67,0xcd,0xf4,0x1a,0x37,0x21,0xaa,0x7a,0x48,0x9c,0x25,0x62,
0x7a,0x7c,0xc2,0x88,0xdf,0x7,0x4a,0xbd,0xe7,0x9e,0x7b,0x88,0xf8,0x93,0x62,0xe3,
0x73,0x3a,0xe7,0xc0,0x5a,0x21,0xf9,0xb3,0x99,0xac,0xe3,0xb1,0x37,0x1e,0x7a,0xdb,
0x8b,0xef,0x89,0x54,0xbc,0x66,0x54,0xaf,0x11,0xa1,0x67,0xcd,0x9a,0xd5,0x44,0x90,
0x48,0xe4,0xc8,0xe4,0x64,0x74,0xa3,0xac,0x8,0xdf,0x96,0xfe,0xc9,0x3e,0xd,0xb7,
0x4,0x39,0x2,0x5,0xd5,0x71,0x63,0x24,0x12,0x84,0xc,0xbb,0xe2,0x8a,0x2d,0x42,
0x9d,0xdf,0x28,0xa4,0xf8,0x1e,0x21,0xdd,0xf6,0x41,0x59,0xac,0x5d,0x8e,0xbc,0xe5,
0x95,0x4a,0x62,0x6d,0x2d,0x85,0x91,0x9,0x72,0xc5,0x15,0x57,0x90,0x26,0x80,0x9a,
0x91,0x7f,0x9c,0x3e,0x7d,0x1a,0xbe,0xff,0xfd,0x7,0xe0,0x8e,0x3b,0x6e,0xb7,0xcc,
0x80,0xa8,0x8e,0xbe,0x56,0x53,0xc0,0xae,0xbd,0xd7,0xcf,0xf1,0x5c,0x38,0x37,0xc5,
0xa2,0x74,0xd2,0x95,0xcb,0x32,0x19,0x68,0xce,0x1c,0xb7,0x4e,0x1,0xf7,0x86,0xed,
0x44,0xf4,0xd3,0x95,0xa3,0x79,0x74,0xd7,0xc3,0xf7,0x3,0x65,0x32,0x32,0xd4,0x8c,
0x7b,0xfa,0xe4,0xc9,0xd3,0xb0,0xef,0xe0,0x29,0x32,0x62,0x3,0x96,0x9b,0x52,0xe2,
0x8f,0xd3,0xb8,0x7c,0x3d,0xed,0x4e,0x40,0x29,0xfd,0x65,0x8,0x12,0x6d,0xf2,0xf7,
0xbc,0xf3,0x16,0xb2,0xfb,0x51,0x1d,0x97,0xc9,0x49,0xdc,0x99,0xec,0x44,0x67,0xb,
0x63,0x89,0x9c,0x37,0x39,0xf1,0x42,0xdb,0x83,0x5c,0x49,0x7c,0xee,0x84,0xfc,0xea,
0xcf,0x45,0x4f,0x6e,0x28,0xa2,0x17,0x77,0xc7,0xce,0x9d,0xf0,0xd4,0xd3,0x4f,0xc7,
0x88,0x1f,0xff,0x87,0xe8,0x43,0xab,0x57,0xaf,0x26,0x2,0xd3,0xa7,0xa,0x2c,0x77,
0xb3,0xbe,0xef,0xc0,0x2f,0x3b,0x55,0xd7,0xb5,0x6a,0xe5,0x4a,0xb8,0xfc,0xf2,0xcb,
0x29,0xa1,0x3,0xef,0x45,0x6b,0x32,0xc8,0x34,0xa5,0xb4,0xf,0xbd,0xd6,0xdb,0x15,
0xaa,0xfb,0x38,0x4f,0xbc,0x27,0x9d,0x5,0x27,0x19,0x81,0x4c,0xfe,0xc1,0xeb,0xdd,
0xbc,0x79,0x33,0xac,0x5f,0xbf,0xe,0x5e,0x78,0xf1,0x45,0x62,0x6e,0x59,0x96,0x8d,
0xaa,0xe3,0x18,0xab,0x32,0x5b,0x40,0xe7,0xc0,0x4e,0xcd,0x7b,0xf6,0xec,0x71,0x72,
0x6,0xf4,0x75,0xec,0xdc,0xb9,0x8b,0x10,0x9a,0xd6,0xac,0x59,0xab,0x88,0xd8,0xaf,
0xa7,0xb0,0x1c,0x3b,0x50,0x3f,0x13,0xc0,0xdf,0x91,0x73,0x55,0x16,0xf7,0x56,0x22,
0x66,0x67,0x9f,0xcf,0x5f,0xfb,0x24,0x4d,0x34,0xd,0xf,0xd1,0x16,0x4a,0x78,0xde,
0x4c,0xa6,0x4c,0xcc,0xf9,0xdd,0x62,0x6f,0xff,0xe1,0x9f,0xfc,0x2b,0xb0,0x26,0x69,
0x62,0xf0,0x6,0x48,0x21,0xce,0x4e,0x2f,0xf1,0xf3,0x28,0x1e,0xaf,0x72,0xf2,0x57,
0xaf,0xea,0xa5,0x44,0x1c,0x19,0x8e,0xb,0x53,0x25,0x73,0x7c,0x4b,0xd5,0x1a,0xa2,
0xe3,0x1e,0xf7,0x86,0xc4,0x90,0x5f,0x2d,0xc4,0xef,0xa6,0xd3,0x32,0xb3,0x51,0xf5,
0x35,0xa1,0xfd,0xfc,0xb5,0xaf,0xfe,0x6f,0x17,0x34,0x52,0xa9,0xf5,0x18,0x27,0x47,
0xa9,0x6d,0xe0,0xa6,0x75,0x66,0x19,0x8b,0xbc,0xcc,0x76,0xc2,0x9,0xd3,0x75,0xe5,
0xe2,0x7,0xd1,0xae,0x47,0x4,0x9e,0xee,0xee,0x2e,0x62,0x92,0x58,0xb0,0x83,0xb9,
0x1c,0x38,0x5f,0x52,0x63,0xa,0x63,0x73,0x55,0x6f,0x3a,0xad,0x4b,0x64,0xa1,0xc2,
0xd1,0xf,0x88,0x68,0x2,0xca,0x2,0xcc,0x89,0x4d,0x9d,0x81,0x6b,0xc5,0x75,0x9c,
0x3e,0x7d,0x6,0x9e,0x79,0xe6,0x19,0x99,0xd3,0x10,0x4,0xa9,0xab,0xe2,0x3,0x9d,
0x68,0x26,0x80,0x9a,0x80,0x66,0x2,0x36,0x41,0xdc,0x7f,0xff,0xf7,0x60,0xd1,0xa2,
0xc5,0x16,0xfe,0x20,0x8f,0x49,0xe0,0xda,0xa3,0x2,0x11,0x13,0xd0,0xf7,0x57,0x2e,
0xeb,0xeb,0x29,0x3b,0xda,0x4f,0x7d,0x5,0x5f,0x3c,0x45,0x18,0xa8,0x8,0x41,0xc8,
0x8c,0x19,0xb6,0x46,0xec,0xed,0x30,0x44,0x33,0x3b,0x23,0x4d,0x2b,0x9e,0xb1,0x9c,
0x94,0xd3,0x73,0x4c,0x63,0x1e,0x0,0xb7,0x9c,0x72,0x9c,0x36,0x72,0xef,0xbc,0x39,
0xe4,0xf0,0x8b,0x24,0x18,0x8f,0xc5,0xfa,0xed,0x10,0x11,0xe7,0x10,0xfb,0x4e,0xa5,
0x11,0xa9,0xc3,0x10,0x3b,0x5f,0xbd,0xc4,0x1f,0x97,0x94,0xb6,0xea,0x2f,0xc7,0x37,
0xbe,0xf1,0x4d,0x18,0x1a,0x1e,0x8a,0xe5,0x88,0x74,0x74,0x76,0x92,0xe4,0xf,0x58,
0xe0,0x62,0xcb,0x59,0xea,0x32,0xf3,0x90,0x2c,0xf5,0x25,0x61,0xa,0xf0,0xad,0xb7,
0xde,0x4a,0xa1,0x42,0x24,0x7c,0xf4,0xdc,0x8f,0x8e,0x8e,0x90,0xc6,0x24,0xfd,0x18,
0x61,0x8a,0xdd,0x5c,0xfb,0x3c,0xb9,0xf3,0xec,0xce,0x9f,0x8e,0x18,0xe0,0x6f,0xca,
0xdf,0x1e,0x25,0x46,0x74,0xdb,0x6d,0xb7,0x51,0x2,0x10,0x4a,0x54,0x9b,0xe0,0x63,
0x23,0x70,0x73,0x8,0x90,0x61,0x60,0x85,0xa0,0xae,0xb,0xb0,0xf,0x3c,0x37,0x82,
0x8b,0xf8,0xfd,0xe,0xdd,0xa9,0x61,0x35,0xa,0x9b,0x78,0x7e,0x80,0x7f,0xaf,0x51,
0xde,0x9,0xaf,0x63,0xb8,0x7b,0x31,0x69,0x9e,0x35,0x63,0xc6,0xbd,0x3d,0xbf,0x67,
0x8e,0x4a,0x3c,0x93,0xf9,0x2d,0xf5,0xe4,0x98,0x5c,0x62,0xc,0xc0,0x4a,0xa2,0x8,
0x65,0x7f,0xb5,0x65,0xcb,0x7a,0x95,0xdd,0x5a,0x8e,0xc5,0x82,0xeb,0x25,0x76,0xdf,
0xa7,0x91,0xb6,0x70,0x2e,0xe1,0xf3,0x3a,0xb2,0xfd,0x2a,0x31,0x2,0x80,0x57,0x5f,
0x7d,0x55,0xa8,0xc7,0x2f,0x38,0xb8,0x72,0xe4,0xe5,0x6e,0x69,0x55,0x92,0x3f,0x30,
0x76,0x73,0x8a,0xb8,0x74,0xb0,0xec,0x30,0x42,0x82,0x89,0x35,0xdb,0xb6,0x5d,0x4b,
0xef,0x21,0x71,0xe0,0x28,0x14,0x4a,0x6a,0xce,0x92,0x3c,0xe6,0x69,0xf7,0x5a,0x9d,
0x58,0xb8,0x93,0x3c,0xe4,0xce,0xbf,0x64,0xd8,0x65,0xfa,0x6d,0x7d,0x1d,0x78,0x4d,
0x78,0x6d,0xc8,0xd8,0x8a,0x58,0x48,0x5,0xdc,0x65,0x2,0x5e,0x82,0x12,0x83,0x28,
0x2b,0x11,0x35,0x81,0x4d,0x9b,0x36,0x41,0x5b,0x7b,0x9b,0x9b,0x6a,0x2b,0xc6,0x9e,
0x57,0x5e,0xa1,0xe2,0x21,0x7f,0x7e,0xc7,0xd2,0xb7,0xc1,0x26,0xd2,0xb4,0x7b,0xad,
0x7d,0xff,0x54,0x66,0xa,0x76,0xb4,0x45,0x47,0x9e,0x70,0xce,0x96,0x2f,0x17,0x7b,
0xbc,0x54,0x20,0x8d,0x37,0x34,0xbd,0x3,0xa6,0xef,0x8,0xd0,0xfc,0xd,0x79,0x1c,
0xe,0x60,0x6a,0x86,0xe6,0x8e,0x25,0x52,0x61,0x97,0x2d,0xed,0x4d,0xb0,0x59,0xed,
0xcd,0x37,0x96,0x4d,0x5c,0x69,0xf3,0xc7,0xeb,0xfd,0xeb,0xf0,0xa9,0x3a,0x9b,0xd2,
0x49,0x71,0x15,0x27,0x43,0xe9,0x6f,0xe7,0xe3,0xe1,0x40,0xf,0xec,0xea,0x35,0xd2,
0xe6,0x67,0x69,0x38,0x72,0x7a,0x3,0xf2,0xa8,0xa0,0x1e,0xbf,0xb3,0x6d,0xdb,0x36,
0x58,0xbb,0x76,0xd,0xd9,0xf9,0x92,0xf0,0xb,0x9,0x12,0xbf,0x1a,0x23,0xe3,0x35,
0x8e,0x74,0xc2,0x71,0x19,0x81,0xd4,0x8,0xec,0x6b,0x42,0x60,0x50,0x74,0x14,0x96,
0x4b,0x9e,0x26,0x0,0x71,0x9c,0x43,0x1b,0xd3,0x10,0x7d,0xb,0x9b,0x37,0x6d,0x96,
0xe5,0xcc,0x5e,0xa2,0x21,0xb6,0xef,0xd2,0xaa,0x72,0x72,0x3,0x12,0x56,0xa7,0xe0,
0x1,0x8f,0xd0,0xc7,0xba,0x7f,0x2a,0x9d,0x1b,0x9c,0xf9,0xd4,0xef,0x2f,0x5f,0xba,
0x0,0x8a,0xa5,0xa2,0xf2,0x3f,0x94,0x62,0xc2,0x6e,0xaa,0x86,0xa6,0xfb,0x60,0xfa,
0xa4,0x7f,0xa4,0x1,0x94,0xa9,0xb1,0x62,0x59,0x30,0x80,0x5,0x5e,0x8a,0xaf,0xaf,
0xba,0xd5,0xcb,0x89,0x6b,0xe1,0xd4,0x63,0x9,0xa7,0x40,0xaa,0xf,0x2,0x3f,0x7b,
0xe6,0x99,0x67,0xe1,0xe4,0xa9,0x93,0xae,0xe3,0x4f,0x48,0xc0,0xd5,0xab,0x56,0x51,
0x39,0x2d,0xf3,0x32,0x14,0xb5,0x34,0x8c,0x89,0x32,0x45,0xfc,0x37,0xdd,0x74,0x23,
0x2c,0x59,0xb2,0xd8,0x48,0x5b,0xe9,0x20,0xf5,0x43,0x96,0x69,0xf7,0x64,0x13,0x36,
0xab,0x71,0x24,0x33,0x3,0x9f,0x11,0xe8,0x47,0xbc,0x16,0x69,0x16,0xc8,0xeb,0x43,
0x33,0xe5,0xca,0x2b,0xaf,0x20,0x13,0x41,0x9b,0x4,0x7e,0x5d,0x81,0x81,0x29,0x83,
0xa8,0x4a,0xd,0x6d,0x7d,0xf4,0x9,0xc8,0xb9,0x88,0x4c,0xa3,0x33,0x67,0xcf,0x50,
0xd8,0xb0,0x52,0x5,0xdd,0x58,0xcd,0xe8,0x7a,0x35,0xcb,0xda,0x34,0xcf,0xb8,0x6,
0xa0,0xf7,0xfa,0x92,0x25,0xbd,0x94,0xe7,0x82,0x51,0xaf,0xb0,0xac,0x6b,0x51,0xc2,
0x69,0xeb,0x1e,0x34,0xbd,0x3e,0x0,0xca,0xae,0xe4,0x32,0xeb,0x4f,0xd8,0x43,0x4b,
0x97,0x74,0x5b,0x1e,0xf9,0xb8,0x3,0xab,0x71,0x90,0x95,0xd2,0xa5,0x3f,0x2e,0xe6,
0x3,0xf,0x3c,0x60,0x1,0x75,0xca,0x2f,0x62,0x4a,0x2c,0x2,0x77,0x90,0x2a,0x1c,
0x4,0x71,0x5a,0xd7,0xbb,0xc5,0xb1,0xfb,0x39,0x5c,0x7b,0xed,0x35,0x54,0xf7,0x8f,
0x89,0x4a,0x52,0xea,0x97,0x53,0xec,0xd4,0x4a,0xd7,0x5a,0x6f,0xbe,0x79,0xe5,0xbf,
0x49,0x22,0x1a,0xa9,0xd,0x94,0x95,0x36,0x50,0x80,0x85,0xb,0x17,0xc1,0xe6,0xcb,
0x37,0x4b,0x1f,0x88,0x4d,0xa5,0x9e,0x6f,0xc3,0xaf,0x2d,0xe8,0xea,0xee,0xa2,0x24,
0x26,0x93,0x1d,0xa9,0x4a,0x70,0x11,0x18,0x35,0xc,0x27,0x4e,0xb,0x98,0x4c,0xc1,
0x96,0x96,0x2f,0x80,0xd7,0xbf,0x74,0x49,0x8f,0x6c,0x20,0xaa,0x1a,0x89,0x72,0xa7,
0xd6,0xe5,0x35,0xc5,0x0,0xc0,0x29,0x9a,0xc8,0x65,0x3,0xe8,0x9d,0x3f,0x27,0x61,
0x12,0x6a,0x4f,0xc7,0x9d,0x2e,0x46,0x60,0xef,0x6f,0x2c,0xf4,0x39,0x7f,0xe1,0xbc,
0x93,0xdb,0xdf,0xd6,0xd6,0xa,0x8b,0x17,0x2f,0xb6,0x6a,0xf6,0xe3,0xde,0x71,0x1f,
0x60,0x2,0xe7,0x61,0xcb,0xe5,0x5b,0xa8,0x4,0x18,0xa3,0x22,0xd5,0x23,0x23,0xb5,
0x69,0x2e,0x95,0x9b,0x85,0xd6,0x27,0x49,0x7d,0xff,0x4c,0xc4,0x4,0xe4,0xf5,0x62,
0x31,0x13,0xe,0xcc,0x20,0xa4,0xee,0x43,0xbe,0xae,0x61,0x11,0xbf,0xed,0x1b,0x58,
0x21,0xfe,0x86,0x98,0xa5,0x75,0x6d,0x18,0x51,0xc1,0x68,0xc1,0x74,0xd4,0xd1,0x8f,
0xd5,0xc1,0x9d,0x14,0x36,0x5c,0xd0,0xdb,0x29,0xcc,0x9d,0x40,0xa5,0xba,0x97,0x28,
0xf9,0x2d,0x54,0xcf,0x75,0xe8,0x76,0x2a,0xf7,0x7a,0x50,0xbb,0x5d,0x38,0x91,0x43,
0x11,0x3e,0x28,0xee,0x17,0xa2,0xfa,0xbf,0x28,0x41,0xaa,0x24,0x3f,0x9f,0xce,0xe1,
0xa6,0xd4,0xc6,0x55,0xe4,0x1f,0xfc,0xf0,0x87,0x4e,0xd2,0x4b,0x40,0x5d,0x74,0x56,
0x38,0x50,0xde,0x71,0x61,0x6b,0x23,0xcc,0xca,0x8d,0xb2,0x74,0xe9,0x12,0x58,0xb7,
0x6e,0x8d,0xb1,0xad,0xa5,0xca,0x1f,0x7a,0xd9,0x7d,0xb5,0x3a,0x42,0x93,0xa4,0x52,
0xb2,0xed,0x1f,0xaf,0x80,0xac,0x16,0x59,0x71,0x33,0xe,0x65,0x72,0x4d,0xd9,0xf8,
0x5,0xd0,0x14,0x40,0xf,0x3f,0x66,0x11,0x3a,0x4d,0x4c,0x3c,0xe2,0xb7,0xdf,0xd7,
0x91,0x1,0x1d,0x52,0xd4,0x7,0x42,0xb6,0xa7,0x99,0x38,0xf5,0x46,0x3a,0x26,0x73,
0x54,0xde,0xb7,0x0,0xcb,0x97,0x2d,0x54,0xd2,0x5f,0x6a,0x0,0x68,0xa,0x60,0x2e,
0xc,0xe7,0x91,0x3,0x7c,0xaa,0x68,0xb1,0x21,0xa2,0x0,0xa8,0xfe,0xaf,0x58,0xb1,
0xd0,0x4a,0x5e,0x69,0x24,0x75,0x3f,0x4d,0xe2,0xc4,0x91,0x6a,0x30,0xa9,0x85,0x90,
0x7d,0x2c,0x69,0xbe,0x70,0xc1,0x2,0xb2,0x6d,0x1d,0x47,0x58,0x2,0x58,0x87,0xbe,
0x5f,0xac,0x2c,0x43,0x6f,0xf8,0xd5,0x57,0xbf,0x8e,0x32,0xfa,0x22,0x7b,0x9f,0xd7,
0x2c,0xf9,0xe3,0x61,0x49,0xb0,0xda,0x7d,0xd7,0xd2,0x12,0x3c,0x39,0xa3,0xb1,0x56,
0x4d,0x0,0x87,0xf6,0xb,0xe0,0x3d,0xdc,0x78,0xe3,0x8d,0xc4,0x0,0x30,0xd6,0x8f,
0x7e,0x81,0xa8,0x2c,0x19,0x9c,0x66,0x9b,0xf6,0x40,0x1c,0xc2,0xe5,0xcb,0x97,0x3b,
0x8c,0x1,0xfb,0x22,0x1c,0x3e,0x7c,0xa8,0x82,0x16,0xd0,0x98,0xc5,0xf8,0x91,0x2f,
0x40,0x7a,0xfd,0x57,0xac,0x58,0x6c,0xe1,0x6f,0x94,0x15,0x2e,0x45,0xa8,0xb4,0x0,
0xed,0x18,0x9c,0x1a,0x4d,0x60,0x1a,0x19,0x40,0x28,0x4b,0x7d,0x95,0xe4,0x40,0xae,
0xe8,0x56,0xdf,0x8d,0xd,0x8d,0x67,0x52,0x49,0x3f,0x26,0xc4,0x5d,0x2,0x7b,0xf2,
0xa9,0xa7,0x9c,0xef,0x63,0xae,0xf9,0x82,0x85,0xb,0x9c,0xd2,0x59,0x1b,0xc5,0xc7,
0xd2,0xf7,0x9d,0xb1,0xed,0xda,0x6d,0xf4,0xf6,0x58,0x89,0x3f,0xbd,0x6d,0x77,0xfd,
0x2d,0xc0,0x7d,0xc,0xc3,0xb1,0x30,0x1,0x8c,0x7a,0xdc,0xf6,0xa6,0xdb,0x88,0x39,
0x22,0x23,0xb0,0x73,0x5,0x6c,0x33,0xc8,0x3f,0xd0,0x17,0x80,0x69,0xc3,0xf6,0xb1,
0x6b,0xd7,0x4b,0xe0,0xa7,0x7b,0x27,0xaf,0x4d,0xe3,0xf8,0x3,0xdc,0xfd,0xcc,0x61,
0xc5,0xf2,0x45,0x91,0x6,0x80,0xb9,0x0,0xda,0xf1,0x1d,0x86,0x6a,0x44,0xa6,0xde,
0x64,0x33,0x81,0x60,0xda,0x38,0xa2,0x49,0xba,0x90,0x2a,0xe3,0xb2,0x25,0xf3,0x61,
0xea,0x5a,0x47,0x4f,0xc,0x33,0xb0,0x25,0xed,0xe0,0xe0,0x0,0xec,0x7e,0x69,0xb7,
0xe3,0xfc,0x43,0xbb,0xdf,0xf4,0x98,0x63,0x36,0xbe,0xbf,0x6b,0xf7,0x9a,0x70,0xa8,
0x58,0x78,0xc4,0xc9,0xeb,0xea,0x9a,0x23,0x8,0xc7,0xe,0xf3,0x41,0x55,0xe2,0x77,
0xab,0xf9,0x22,0x26,0xa0,0x25,0xba,0x2d,0xfd,0x65,0x8e,0x7f,0x7c,0xf8,0x5a,0x80,
0x7e,0x8c,0x77,0x2e,0xaa,0x85,0x9,0x80,0x95,0x38,0x54,0x80,0xa5,0x4b,0x16,0x53,
0x99,0xf3,0xb1,0x63,0xc7,0x8,0x51,0x58,0xc3,0x8b,0x57,0x3a,0x90,0x71,0x20,0x2e,
0x82,0x4d,0xd9,0x7,0xe,0x1c,0x14,0x5a,0xc4,0x30,0xf8,0x7d,0xff,0x66,0xc2,0xa1,
0xe7,0x67,0xe9,0xe2,0x79,0x62,0xad,0x8b,0xc6,0xfe,0x37,0x7e,0x0,0x1e,0x2a,0x7f,
0x40,0xd9,0x68,0x2,0x11,0x23,0x98,0x9c,0x23,0xab,0x89,0x31,0x6e,0x3f,0x4e,0xae,
0xf3,0x2f,0x34,0x15,0x6a,0x52,0xed,0x59,0x42,0xde,0xd1,0x46,0x77,0x0,0xb2,0x54,
0xe7,0xdf,0xf6,0x1d,0x3b,0xe8,0x9e,0xb4,0xaa,0x8f,0xf8,0xfc,0xdd,0x56,0x73,0x11,
0x1f,0x4d,0x8f,0x2b,0xb4,0x9,0xfb,0xfd,0x5c,0x2e,0x4f,0x45,0x32,0x76,0x1d,0x84,
0x6b,0xe7,0x56,0x96,0xfa,0x11,0x23,0x70,0x35,0x13,0x3c,0xd0,0x29,0x87,0xf9,0xf5,
0xaf,0xbc,0xf2,0xa,0x1c,0x3d,0x7a,0x94,0x3a,0xe5,0xa0,0x3a,0x8e,0x9f,0x63,0xa9,
0x2b,0xc2,0x72,0x21,0x81,0x62,0xee,0xfd,0x55,0x57,0x5d,0x1,0x4d,0x4d,0xcd,0x89,
0xce,0x2d,0xbb,0x30,0x27,0xe9,0x7a,0xa2,0xb4,0x5b,0x79,0x4d,0x3a,0xcb,0xb3,0x58,
0xc,0xe0,0x4d,0x42,0xb,0xc0,0x92,0x68,0x74,0xa,0x6a,0xf8,0xb0,0x6c,0x2e,0x6b,
0x98,0xa0,0x9f,0x2a,0x8c,0x7,0x42,0x85,0x1d,0x3e,0x72,0x58,0x30,0xd8,0x21,0xba,
0x39,0x34,0x91,0xf6,0xee,0xdd,0x7,0x9b,0x37,0x6f,0xf2,0x7e,0xdf,0x47,0x17,0x68,
0x4,0x47,0x60,0xbc,0xef,0x3,0x45,0x2,0x96,0xce,0x97,0x21,0xc0,0xb2,0x4,0xa5,
0x21,0xdc,0x41,0xc4,0x1d,0xb0,0x7b,0x37,0xa2,0x9,0x40,0x98,0x17,0x1c,0xa4,0xdc,
0x98,0x8,0xe4,0x20,0x8b,0xc6,0x55,0x46,0x6c,0x76,0x3a,0xd9,0xa1,0x76,0x7a,0x60,
0xcd,0xf5,0xdc,0x39,0x6d,0xe4,0x34,0x9a,0x9,0x92,0x3f,0xae,0xfe,0x7,0xb0,0x63,
0xfb,0x4e,0xc7,0xf3,0xbf,0x68,0xe1,0x22,0xa7,0x6f,0x5f,0x55,0x5f,0x88,0xf8,0xb7,
0x7e,0xdd,0x3a,0x72,0x7c,0xe1,0x3c,0xc8,0xe,0xb6,0xd5,0x33,0xf9,0xd2,0x7a,0xb,
0xea,0xd7,0x58,0x59,0x77,0xff,0xfd,0xf7,0x53,0x6e,0x2,0x4a,0x63,0x52,0xfb,0x94,
0x26,0x82,0x8f,0x54,0x2a,0x3d,0x3c,0x22,0xc6,0x71,0xea,0xf6,0xfb,0xf0,0xc3,0x8f,
0xc0,0xdd,0x77,0x17,0xe0,0x9a,0x6b,0x5e,0x7,0x6f,0x7f,0xfb,0x3b,0x84,0x16,0xb3,
0xc8,0x14,0xd0,0xf8,0x8c,0xa0,0x12,0x13,0xd0,0xdf,0x93,0x39,0xf7,0x21,0x61,0x32,
0x60,0xb9,0x33,0x3a,0x5,0xd1,0x99,0x47,0x35,0x5,0x42,0xc2,0x77,0xb4,0xb7,0x93,
0x9a,0x9f,0x84,0x43,0xa8,0xf,0x2c,0x73,0xc6,0xa2,0x2a,0x7d,0x60,0x39,0x32,0x16,
0x41,0x61,0xe,0x7f,0x74,0x5d,0x93,0xd3,0xc4,0x75,0x32,0xfc,0x5e,0x5d,0x73,0xdb,
0x9,0x5b,0x0,0xe7,0x24,0xc8,0x88,0x81,0x0,0x24,0xa8,0x71,0x11,0xae,0x48,0x20,
0x5,0x9,0x56,0x2d,0x8a,0xfb,0x63,0xa1,0xce,0xa8,0x8c,0xc0,0x45,0x26,0x54,0x3,
0x98,0xe,0xce,0x28,0xb,0x80,0xb8,0xb1,0x7b,0xd6,0xac,0x5d,0xea,0xa4,0x44,0xfa,
0x1b,0xbe,0x11,0x16,0xd5,0x6b,0xbf,0xe7,0xa8,0xdc,0xa8,0xce,0x1e,0x38,0x70,0xc0,
0xf0,0x5,0xdc,0xd0,0x73,0xe6,0xce,0xa9,0xe9,0x7c,0x9a,0xf8,0xb1,0x24,0x15,0x1,
0x41,0x64,0x51,0x4f,0x39,0x25,0x11,0xaa,0x56,0xe2,0x67,0x74,0x1e,0x84,0xd9,0xfa,
0xfe,0xf7,0x7f,0x40,0x26,0x96,0xd,0xe8,0x69,0x3,0x7b,0x6a,0x46,0x60,0x6f,0x2c,
0x24,0xce,0x47,0x1f,0x7d,0xc,0xbe,0xfb,0xdd,0xef,0xc1,0x5b,0xde,0x72,0x17,0x7c,
0xe4,0x23,0x1f,0x26,0xed,0x24,0x4e,0xfc,0x95,0x4a,0x72,0xb9,0x43,0x9c,0x12,0x7b,
0xa1,0x8,0x37,0xdd,0x7c,0x33,0x3c,0xfd,0xf4,0x33,0x84,0x38,0xd4,0xde,0xd6,0x46,
0xc0,0x22,0xa8,0x9,0x98,0x8a,0xc8,0x84,0x3,0x6b,0xc,0xd0,0x29,0x38,0xa4,0xf0,
0x3,0x8e,0x1d,0x3b,0x4e,0x51,0x6,0x89,0x35,0x18,0x8f,0x72,0x34,0x2,0x23,0x48,
0x6a,0x16,0xa4,0x5f,0xe3,0x5e,0x5f,0xbd,0x72,0x29,0xbc,0xf4,0xf2,0x1,0xe3,0xf0,
0x23,0x89,0x9c,0x91,0x9a,0x9e,0xee,0x34,0x24,0x35,0x71,0xfc,0x8c,0x91,0xb1,0x2e,
0xb3,0x4c,0x61,0x42,0x99,0xc0,0x34,0x69,0x0,0x51,0xc8,0x8,0xb9,0xdd,0x8a,0x15,
0x8b,0x4c,0x5e,0xb4,0x1d,0x36,0x89,0x57,0x7e,0x4d,0xb7,0xfa,0x1f,0x57,0x31,0x71,
0x2d,0x5e,0x79,0xe5,0x55,0xba,0xf,0x59,0xb6,0xcb,0x84,0xda,0x3a,0xdf,0xd,0x6d,
0x39,0x20,0x97,0x9,0x41,0x2c,0xf1,0x3f,0xac,0xf,0xd0,0xe0,0x11,0x3a,0x33,0x2c,
0xe,0x82,0x11,0xbf,0x26,0x9b,0x10,0xb5,0xaa,0xd1,0xd7,0xd7,0x7,0x9f,0xff,0xfc,
0x17,0xe0,0xf8,0xf1,0xe3,0x26,0xd7,0xde,0x26,0x7a,0x9f,0x11,0x68,0x0,0x90,0x8c,
0x42,0x8b,0x25,0x84,0x22,0xd5,0x6f,0xe0,0xfe,0xfb,0xbf,0xb,0xcf,0x3f,0xff,0x2,
0x7c,0xec,0x63,0xbf,0x3,0x8b,0x16,0x2d,0xb2,0xd6,0xf,0x2a,0xae,0x8f,0xd,0xcb,
0x8d,0xd7,0x25,0x35,0x9a,0xb2,0x60,0x8e,0xa8,0x5,0x5c,0x9,0x4f,0x3c,0xf1,0x4,
0x69,0x4,0xf8,0xb7,0xf8,0x5b,0x2d,0xad,0xad,0x84,0x2b,0x90,0xcc,0xe8,0x18,0x2c,
0x5b,0xba,0x94,0xf2,0x0,0x34,0xd3,0x3c,0x74,0xe8,0x30,0xac,0x5e,0xbd,0x32,0x15,
0x30,0xa4,0x11,0xfb,0xf1,0x49,0x19,0x27,0xf7,0xf9,0xca,0x95,0x8b,0x61,0xc7,0xae,
0x57,0x21,0x53,0x96,0x20,0x38,0x36,0xf6,0x43,0x18,0x28,0xe7,0x9c,0x62,0xa0,0x8,
0x53,0x26,0x35,0x81,0x8,0xaf,0x70,0xa2,0x98,0x40,0x76,0x7a,0xb8,0xa3,0x5d,0x9d,
0x57,0x86,0xe5,0xcb,0x16,0x24,0xe2,0xef,0x35,0x7e,0x28,0x50,0xaa,0x66,0xfb,0xf7,
0xef,0xb3,0x1c,0x57,0x1,0xd9,0xd3,0x91,0x39,0xe0,0x96,0xf5,0x2,0xd7,0xe8,0x38,
0x56,0xf,0x3e,0xd4,0x82,0x56,0xaf,0x52,0xc0,0x24,0xa1,0xa7,0x5,0xf1,0xaa,0xa6,
0x88,0x2d,0xf9,0x11,0x77,0xf0,0xb3,0x9f,0xfd,0x2c,0x25,0xce,0x68,0x2,0xd7,0xc,
0x0,0x93,0x6b,0x10,0x2d,0x8,0xa5,0x29,0x86,0x26,0x91,0x0,0xb5,0x39,0x80,0x7e,
0x7,0x1d,0xaa,0x43,0xb3,0x41,0x23,0xf6,0xe2,0xdf,0x22,0x43,0xf9,0xc4,0x27,0x3e,
0x29,0xc6,0x27,0x88,0x51,0xb9,0x12,0xbe,0x92,0xea,0x6d,0xfb,0xc,0xa4,0xef,0x7,
0xef,0xf1,0xba,0xeb,0xae,0x85,0x47,0x1e,0x79,0x4,0x46,0x46,0x47,0xa8,0xef,0x20,
0xc2,0xa4,0xe1,0xef,0xa4,0x31,0x0,0xed,0xb,0xc0,0x2,0x2b,0x1d,0x41,0x38,0x7e,
0xfc,0x98,0x62,0x9a,0xa1,0x1,0x8,0x69,0xc4,0x64,0x31,0x37,0xb9,0x33,0x2,0x34,
0x59,0xbd,0x72,0x89,0xf4,0x3,0x28,0x28,0x3c,0x1e,0x70,0xb3,0xf6,0xa8,0xfe,0x73,
0xad,0x9,0xc8,0x37,0x14,0xb2,0x73,0xa8,0x5a,0xaa,0x4d,0x5c,0x3f,0xc1,0xec,0x74,
0x4c,0x8,0xd7,0x8,0xab,0x98,0x4,0x24,0x26,0x61,0xc5,0xf2,0xf9,0x1e,0xd7,0x6e,
0x4c,0xca,0x77,0xcd,0x80,0xc8,0x43,0x7e,0xe0,0xe0,0x41,0x43,0xec,0x5d,0x5d,0xdd,
0x12,0x53,0x2e,0x86,0xf1,0xf,0x11,0xa0,0xa9,0xf1,0x81,0x48,0xf5,0x1f,0x55,0x5c,
0x24,0x48,0xb4,0xfd,0xfd,0xf0,0x4f,0x12,0x61,0xf9,0x1e,0x79,0x7d,0x2d,0x48,0xb8,
0x7f,0xfd,0xd7,0x7f,0x4d,0x44,0xa5,0x25,0x3a,0xaa,0xc9,0xe8,0xdc,0xc3,0xa1,0x21,
0xc7,0x34,0x43,0xc0,0xcf,0xec,0x47,0xc4,0x28,0x40,0x29,0x8f,0xcc,0x3,0x1,0x3c,
0x51,0x83,0x40,0x55,0x1b,0x4d,0x1a,0x64,0x10,0x7f,0xf1,0x17,0x7f,0x1,0x9f,0xfc,
0xe4,0x27,0xc5,0xb9,0x7a,0x9d,0x75,0x4a,0x33,0x5,0xfc,0xe6,0x1c,0x9a,0xe1,0xe3,
0xef,0x60,0x86,0x23,0xe5,0x4c,0x88,0x7f,0x78,0x5d,0xb4,0x19,0x11,0xae,0x4a,0x77,
0x3a,0xf2,0x24,0x1c,0x5e,0x33,0x82,0x85,0x62,0x14,0x1,0xe7,0x7,0x71,0xa,0x6d,
0x24,0x26,0x1f,0x35,0xaa,0x1,0xad,0x7f,0xb0,0xb1,0x6,0x56,0xac,0x58,0x20,0x1d,
0xe0,0xa8,0x1,0x64,0xd0,0xd6,0x17,0xa3,0x8c,0x98,0xfd,0x11,0x2,0x92,0x7c,0xb4,
0xf0,0x1f,0xc9,0x71,0xe,0xa,0xbc,0x4,0x26,0x4,0x51,0x68,0x1a,0x32,0x1,0xed,
0x8c,0xb6,0x32,0x85,0x43,0x16,0x2d,0x9c,0x37,0xc5,0x40,0xa4,0xf5,0x12,0x3e,0x4b,
0x8,0xb7,0x81,0xf2,0xae,0x17,0xe0,0xe4,0xc9,0x93,0x3a,0xe9,0x9f,0x3a,0xf8,0x98,
0x76,0xd2,0x2c,0x5d,0x95,0x31,0x7e,0x10,0xf4,0xa,0x2f,0x5b,0x4a,0x92,0x4d,0xaa,
0xc9,0x49,0x51,0x90,0x24,0xd5,0x1f,0xc0,0xc6,0x1e,0x40,0xc9,0x7a,0xf7,0xdd,0x9f,
0x27,0xe2,0xd5,0x44,0x8e,0x9a,0x8,0x66,0xd4,0x21,0xe1,0x68,0x14,0x60,0x7c,0xd4,
0xcf,0x35,0x93,0xd0,0xef,0xa1,0x2d,0x8e,0x8f,0x8,0xfd,0x85,0xd9,0x8b,0x18,0x91,
0x40,0xc6,0x81,0xaf,0x11,0x84,0x4,0x8f,0xbb,0xef,0xbe,0xdb,0xc0,0x6b,0xfb,0x21,
0xc2,0xf4,0x8d,0x1f,0x1d,0x78,0x8f,0x78,0xaf,0x5b,0xb6,0x6c,0x21,0x86,0xa0,0xd1,
0x88,0x47,0x10,0xd0,0x55,0x68,0x4,0xe5,0xa,0xe5,0xb1,0xba,0x79,0x8,0x1e,0xc8,
0x3c,0xd0,0xa7,0x90,0xb6,0x2e,0x8d,0xdc,0xac,0x93,0x8a,0x82,0x16,0xf7,0xca,0x82,
0x20,0xcc,0x0,0x24,0x3f,0x40,0x29,0xd6,0xab,0x42,0x67,0xcb,0xca,0x88,0x80,0x5d,
0x9a,0x1c,0x5a,0xb5,0x3,0x21,0xcc,0xa0,0x4c,0x40,0x6e,0x42,0x1c,0xa1,0x4a,0x7a,
0xe8,0x99,0xd7,0x45,0x40,0x8c,0x7c,0x46,0x24,0x0,0xc4,0x37,0xd5,0x99,0x33,0xa7,
0x65,0xb8,0x6,0x30,0xac,0x95,0x83,0xb6,0xf6,0x76,0x17,0xe7,0xbf,0x8a,0x39,0x83,
0x1b,0x7e,0x91,0x20,0x50,0x44,0x90,0xf5,0xcb,0x42,0x6b,0x51,0xfd,0xf5,0x7b,0xdf,
0xfc,0xe6,0x37,0x49,0x3a,0x6a,0xa2,0x46,0x9,0x8b,0x31,0x74,0xd4,0x2c,0x34,0xc1,
0x6b,0x6,0x80,0x12,0x17,0xa5,0x3a,0xe,0x7c,0xae,0x9,0x1f,0x9f,0xe3,0xf7,0xd1,
0x44,0xc0,0x81,0x70,0xe2,0x48,0xa8,0x58,0xab,0x8f,0xe9,0xbc,0xf8,0x1a,0xb5,0x14,
0x2a,0x76,0x62,0x10,0x93,0x42,0x95,0xf2,0x3,0xec,0xca,0x38,0xbc,0x57,0x84,0x13,
0xd3,0x20,0x26,0xc8,0x0,0x90,0x71,0xd,0xd,0xe,0x9,0x46,0x30,0x9c,0xba,0x17,
0xf0,0x1a,0xf0,0x5a,0xf5,0xe1,0xb4,0x1f,0xab,0xb0,0x46,0x8d,0x18,0x9,0x40,0x54,
0xe2,0x9e,0x9e,0x2e,0x15,0xee,0x15,0xc4,0x5f,0xe,0x15,0x23,0xb0,0x89,0x9f,0x3b,
0x9a,0x22,0xb7,0x4a,0xc5,0xfd,0xb4,0xf4,0x71,0x68,0x0,0x53,0x49,0xfc,0x76,0x6e,
0xb4,0xd4,0x0,0x36,0xae,0x5d,0x6a,0x36,0xbe,0xdf,0x66,0xc9,0xc6,0x56,0x6b,0x54,
0x93,0x0,0xe1,0xb0,0x74,0x88,0xb6,0xb3,0x73,0x8e,0xd3,0x57,0xde,0x5c,0xbb,0xd2,
0x4b,0x43,0xcb,0x41,0xa5,0x4d,0x1,0x94,0xae,0x48,0x6c,0xb2,0x22,0xac,0x52,0x5e,
0xbe,0x6f,0xf3,0xdb,0xaa,0xff,0x19,0xf8,0xde,0xf7,0x1e,0x30,0xc4,0x8f,0x29,0xb4,
0xd8,0xce,0x1b,0x5f,0x27,0x49,0x7c,0x9b,0x19,0xe0,0xd0,0xce,0x3f,0xad,0xd,0x34,
0x11,0x62,0xac,0x64,0x12,0xc8,0x10,0xf0,0x7c,0x88,0x1,0x88,0xcf,0xf1,0x7a,0x9f,
0x7b,0xee,0x79,0x38,0x77,0xee,0x7c,0x42,0x11,0x11,0xab,0x18,0x12,0x8c,0xc2,0x9a,
0x65,0x32,0x7b,0x3a,0x3b,0x3b,0x94,0xe6,0x53,0x36,0xb8,0x2,0xba,0x39,0x8b,0x8f,
0x58,0x6c,0x47,0x4,0x22,0x6,0x70,0xae,0x61,0x93,0x80,0x5c,0x48,0x72,0x77,0x6e,
0x34,0x23,0xbc,0x6c,0xc3,0x2a,0x95,0xf5,0x27,0xd3,0x81,0xed,0xb2,0x61,0x97,0xd0,
0xc1,0xd5,0x0,0xc0,0x7,0x78,0x1d,0xbb,0xd9,0x3c,0x3d,0x61,0x40,0xa3,0xc6,0x94,
0x85,0x24,0x58,0xea,0x60,0x0,0xb8,0x9b,0xc5,0xf5,0xe6,0x36,0x92,0x96,0xa0,0xd5,
0xdf,0xd3,0xa7,0xfb,0xcc,0xf3,0x39,0xaa,0x82,0x2d,0x8d,0x5b,0x30,0xcf,0x5e,0xc5,
0x85,0x9f,0x47,0x30,0x5a,0x25,0xcf,0xf3,0x5f,0x3b,0x5e,0x1,0xfe,0xdc,0x7d,0xf7,
0xdd,0x47,0x1a,0x15,0x12,0x35,0x4a,0x7e,0x94,0xd4,0xda,0xb6,0xd7,0xf0,0xd7,0x3e,
0xf1,0xa7,0xd9,0xdb,0xf8,0xbb,0xf8,0x99,0x7f,0x2d,0xc8,0xa4,0xf0,0xfb,0xfb,0xf7,
0xef,0xa7,0xef,0x63,0x2c,0xff,0xb6,0xdb,0xde,0x58,0x1,0xb6,0x3b,0x6e,0xff,0xba,
0x66,0x40,0x9,0x96,0x2e,0x5d,0x46,0x75,0xfe,0x3a,0x5d,0x78,0x58,0x68,0x2,0x78,
0x3d,0xc8,0x7c,0xf4,0xb5,0xfa,0x92,0x13,0xcd,0x1a,0xd4,0x74,0xf0,0xe8,0xef,0xbf,
0x60,0x9c,0x7f,0x8d,0x14,0x9,0xb0,0xd7,0x38,0x9,0x2b,0x52,0x13,0xf9,0xe6,0x4d,
0xab,0xe0,0xa1,0x47,0x9e,0x95,0xce,0xc0,0x40,0xc,0xf4,0x5,0x18,0xb0,0x50,0x45,
0xf,0x8c,0x1b,0xa7,0x31,0x53,0xe,0x64,0xed,0x49,0xd2,0x7e,0x97,0x38,0x5a,0x76,
0x43,0x6a,0x0,0xcc,0xed,0xfe,0xa3,0x3a,0x0,0xf5,0x74,0x75,0x18,0x38,0x65,0x1f,
0x68,0xc3,0xce,0x64,0xb3,0x1d,0x6f,0xd3,0xab,0x11,0xb8,0xd7,0x83,0x8e,0x37,0xdd,
0x2d,0x47,0xb7,0xba,0xe6,0x7e,0x6f,0xbd,0xa4,0xf0,0x5f,0x28,0xed,0x7f,0xcc,0x17,
0xa8,0x35,0xdd,0xd3,0x55,0xff,0xe5,0xc0,0xda,0x7b,0xac,0x95,0xd7,0x2a,0x32,0x12,
0xbf,0x26,0x1e,0x83,0x3c,0xa4,0x7c,0x2,0x12,0x7,0x3f,0xeb,0x48,0x7b,0x7c,0x4f,
0x9b,0x0,0xb6,0x26,0xa0,0x87,0xad,0x29,0xa0,0x5f,0x0,0xd3,0x9b,0xf1,0x39,0x26,
0xe3,0x60,0xe9,0x2f,0xf3,0x5a,0x63,0xd7,0xb2,0x34,0x3a,0x2,0x84,0xfe,0x5,0xd4,
0x8a,0xca,0xa,0x2e,0xab,0x5c,0x8a,0x60,0xda,0xfd,0x7a,0x1,0x3d,0x3f,0xe8,0x40,
0xd4,0xeb,0xdf,0xdf,0x7f,0x31,0xb1,0x37,0xc4,0x74,0x11,0x3d,0x8b,0x75,0xa,0x4e,
0xea,0x6f,0x18,0xc1,0xbc,0xcd,0x9f,0xdf,0x1d,0x65,0xc5,0xda,0x6a,0xbf,0x11,0xe8,
0xda,0x6e,0x4a,0xf3,0x23,0x1,0xb8,0x55,0xa9,0xf5,0xc3,0xfa,0x67,0x23,0x64,0xde,
0xc9,0x4f,0x5,0x36,0xd,0x3f,0x79,0x54,0x6,0x79,0xf6,0xdc,0x5,0x93,0x6,0xea,
0x87,0x4c,0xdc,0xf8,0xb6,0x2b,0x11,0x7d,0xa9,0x35,0x5d,0x4e,0xc1,0xb3,0xa,0xd7,
0x1e,0xdb,0x76,0x57,0x4a,0x66,0x61,0x29,0xd7,0xdc,0xa9,0x9a,0x78,0x24,0xd9,0xcb,
0x69,0x4c,0xc0,0xde,0xf3,0xbb,0x76,0xed,0x22,0x9,0x8a,0x44,0x89,0x1e,0x7c,0x1d,
0xd3,0xd7,0x84,0xeb,0x13,0xb1,0x26,0xfc,0x8c,0x95,0x80,0xa3,0x43,0x7e,0x51,0x7f,
0x4,0xee,0x40,0x70,0xd9,0x9e,0x78,0x74,0x2a,0xa2,0xbd,0x8e,0x4,0x8a,0x29,0xc5,
0x51,0xc5,0x5e,0x65,0x5f,0x47,0x3c,0x19,0x6,0x9,0x60,0x9e,0x4a,0x89,0x8d,0xa0,
0xc5,0xf0,0x37,0xd0,0xcf,0x40,0xd7,0x8c,0x9a,0x8b,0x25,0x51,0x35,0x74,0x18,0x76,
0xf,0x1a,0x1c,0x18,0xa4,0xeb,0x48,0x8a,0x4,0x4c,0xc7,0x3e,0x48,0x8b,0xd2,0xc4,
0xbb,0x43,0x47,0xb0,0x71,0x98,0x8e,0xad,0x51,0x81,0x34,0x1e,0x40,0x80,0x74,0xc1,
0x42,0x53,0x26,0x2e,0x9b,0x40,0x85,0x94,0x21,0x68,0x34,0x1b,0x43,0xe0,0x61,0xcc,
0xb4,0xa8,0xcc,0x84,0xe3,0xb4,0x3e,0xa5,0x3e,0x0,0x27,0xb9,0x7,0x24,0xb7,0x7b,
0xea,0x99,0x9d,0x24,0x49,0xa2,0xcd,0x9d,0x54,0x95,0x6,0x15,0x81,0x2b,0xa6,0x42,
0x33,0x48,0x3a,0x35,0x86,0x63,0x30,0xe4,0x26,0x6d,0xf9,0x36,0xa7,0x89,0x67,0x45,
0x26,0x68,0xa9,0xa8,0x68,0x57,0xd7,0xae,0xb2,0xb2,0xd8,0xef,0x63,0x83,0xe,0x24,
0x78,0xb4,0xf9,0x75,0x5c,0xdf,0x96,0xfa,0x7a,0xd8,0x8c,0x41,0xf,0xfb,0x33,0x3f,
0x43,0x30,0xea,0xe,0xc4,0x9c,0xef,0xa1,0x5f,0x80,0x10,0x7b,0xc4,0xfb,0x98,0x91,
0x17,0x4,0xac,0xaa,0x13,0xce,0xcd,0xea,0x8c,0xee,0x15,0xf3,0x12,0x24,0x33,0x8,
0x4d,0xf5,0xa0,0x8d,0x25,0x40,0x5d,0xaa,0x12,0x70,0x17,0x3a,0x3b,0xe4,0xdf,0x8d,
0x90,0xc9,0x50,0xdb,0x5a,0x4d,0xae,0xa4,0xaf,0x6f,0xef,0xe2,0x81,0x7b,0xfe,0xd1,
0xc7,0x9f,0xb5,0xf0,0x1f,0xa3,0xcc,0x58,0xe0,0xb6,0x9d,0x1f,0x9,0xf7,0xa8,0xc9,
0x7d,0x7c,0x6e,0x93,0xf0,0x1f,0x1a,0xcc,0x4,0x48,0x16,0xb,0xc7,0x8e,0xf7,0x11,
0x8a,0x8e,0xad,0x32,0xd5,0x52,0xaa,0xea,0x96,0xbc,0x4e,0x1d,0x33,0xf0,0xcd,0x14,
0xcd,0x0,0xb0,0xa0,0xc6,0x66,0x62,0xd5,0xee,0x5b,0x73,0x72,0xf4,0x6,0xbb,0xc4,
0xcf,0xeb,0xb8,0x96,0x80,0x12,0x62,0x90,0x98,0xb1,0x9d,0x56,0x12,0x61,0xdb,0xe1,
0x3d,0xed,0xc,0xd4,0x6a,0xbf,0x96,0xfe,0x49,0xf3,0xe6,0x67,0x7,0xda,0xe7,0x46,
0x6,0x80,0x8f,0xe7,0xce,0x9d,0x55,0x89,0x29,0x75,0x46,0x81,0xd4,0x81,0x73,0x16,
0x5a,0xfe,0x1f,0x7c,0x5e,0x52,0xdd,0x9a,0x50,0xab,0x21,0x67,0x60,0xc8,0xbd,0x2d,
0xf,0x26,0x24,0x89,0xc,0x60,0x22,0x70,0x1,0xc7,0x4b,0xf4,0xc9,0xe5,0xd7,0x95,
0xf6,0xae,0x44,0x8e,0x3a,0x7a,0xe4,0x84,0xe5,0x13,0xd3,0x6d,0xeb,0x3d,0x8f,0xbf,
0xe7,0xfd,0x87,0x71,0x38,0xfc,0xa6,0xd9,0x9,0xc8,0x12,0xed,0xb5,0xb,0x17,0x6,
0x29,0xd5,0x14,0x8f,0xad,0x5b,0xaf,0x72,0x50,0x60,0xe2,0x49,0x1d,0x7e,0x47,0x55,
0xbb,0xe3,0xb,0xc4,0xbc,0xe7,0x13,0x6d,0x26,0xc4,0xa1,0xbc,0x24,0x20,0xa6,0xec,
0xc2,0xdb,0xea,0x71,0xa2,0x38,0x23,0xf0,0xdb,0x9c,0x53,0x35,0x96,0x72,0xb8,0xd5,
0xeb,0x83,0xd0,0x9b,0xaa,0xaf,0xef,0x34,0x11,0x84,0x76,0xe8,0xf9,0x12,0x5f,0x13,
0xb3,0x26,0x62,0x9f,0xb0,0x75,0xfb,0x30,0xdb,0xf4,0x4b,0xd3,0x8,0x4c,0xb7,0x5f,
0xc1,0x3c,0xd0,0xd7,0x70,0xe1,0x42,0xbf,0x83,0x84,0x5c,0x6b,0x36,0x9e,0xfe,0x2d,
0x3c,0xf,0xf,0xe3,0x66,0xa7,0xd6,0x4,0xf4,0xb5,0x65,0x58,0xc6,0x41,0x4c,0x42,
0x87,0xa4,0xfe,0x5e,0xd2,0x9a,0x4c,0x84,0x25,0x90,0xc4,0xc4,0x7d,0x8f,0x7e,0x52,
0x48,0xd6,0x8d,0x0,0xb0,0x18,0x3e,0x3,0xde,0xf,0x46,0x51,0x70,0xcf,0x9f,0x3b,
0xdf,0x2f,0xbf,0xe7,0x37,0xaa,0xb1,0x1a,0xbf,0xba,0xb6,0x7d,0xed,0xbe,0x36,0xdf,
0xf1,0xd8,0x30,0x51,0x80,0xa8,0xce,0x5c,0x5e,0xdc,0x80,0xb0,0xe5,0xca,0x65,0x4e,
0x13,0x82,0xa5,0xaa,0x2b,0x57,0xae,0xa4,0x6,0x97,0xd4,0x22,0x9b,0x31,0x67,0x51,
0x2b,0x67,0x7c,0xc5,0x99,0x81,0xef,0x33,0x98,0xc,0x1b,0xb1,0x30,0x5a,0xa0,0x73,
0x6b,0x49,0xee,0x57,0xff,0x25,0xa0,0x7e,0x2b,0x66,0x20,0x39,0x3a,0x12,0x2e,0xa2,
0xe6,0x8c,0x95,0xa9,0xca,0xc6,0x1c,0xdd,0xe,0x91,0xdb,0x71,0x7f,0x3f,0xe4,0x67,
0x67,0xfe,0xd9,0xc0,0x1d,0xfe,0xe6,0xb5,0xb5,0x3,0x9b,0x21,0xe8,0x3,0x7f,0x13,
0xcb,0x7a,0xc7,0xe3,0x78,0xd3,0x31,0x7d,0xed,0x14,0x24,0x8c,0x8,0xd5,0x14,0x86,
0x5a,0xc5,0x29,0x67,0xa0,0xff,0xdb,0x68,0x86,0xe0,0x34,0x16,0x8a,0xc5,0x49,0xdb,
0xa3,0x49,0x36,0x7d,0x1a,0xd1,0x27,0x35,0x47,0xb5,0xed,0x7f,0xbc,0x3f,0xd9,0x1a,
0xfd,0x10,0x15,0x8d,0x61,0x69,0x33,0x46,0x42,0xfa,0xfb,0x7,0xc4,0x1c,0xb4,0xca,
0x22,0x60,0xab,0x70,0x4a,0xa7,0x1,0xdb,0x91,0x8d,0x28,0x93,0x9c,0x47,0xd1,0x0,
0x36,0xc3,0x52,0x81,0xa3,0x89,0xc4,0xd,0x25,0x1b,0x4e,0x82,0x78,0x1c,0x1c,0x2a,
0x9,0xbb,0x2e,0x47,0x13,0x83,0x35,0xeb,0x38,0xd0,0x9e,0x5d,0xb6,0x6c,0x29,0x2c,
0x5f,0xbe,0x8c,0x42,0x5b,0x52,0x52,0xfa,0x4c,0x80,0xc5,0x1a,0x32,0x46,0xfe,0x86,
0xa4,0xe7,0x13,0xeb,0x34,0xb4,0x25,0x26,0xb6,0xca,0xf2,0xf4,0x1d,0xe7,0x39,0xd7,
0xb5,0xde,0x8c,0x9b,0x6c,0x37,0xbb,0x26,0xc2,0x7e,0x5d,0xbd,0x0,0x8a,0x19,0xf5,
0x50,0xd6,0xf3,0xb7,0x18,0xc9,0xae,0x9,0xdc,0xf7,0xe6,0xdb,0x92,0x5f,0xcf,0x9b,
0x21,0x3c,0xce,0x3d,0x6,0xed,0x12,0xbc,0xaf,0x2,0xe3,0xf7,0x31,0xe2,0x51,0xa9,
0x8b,0x50,0xba,0xf6,0xc2,0x8d,0xd3,0xd1,0x37,0x1f,0x1c,0x5c,0x3d,0x95,0x31,0x68,
0x77,0x35,0xd6,0xd7,0x82,0xc,0x20,0x23,0xae,0xad,0x72,0x17,0x9f,0xfa,0xd7,0x99,
0x79,0x3d,0x19,0xf5,0x7e,0xb5,0x5b,0x8b,0xf9,0x8c,0x3d,0x8d,0xf8,0x91,0x79,0xa1,
0x93,0x14,0x8b,0x96,0xb0,0x3e,0xc3,0x2f,0x75,0xbf,0xd0,0x3f,0xac,0xd5,0xc4,0x58,
0x67,0x28,0xb2,0xf7,0x99,0x1f,0x12,0xe7,0x66,0xf,0xc9,0xc7,0x4,0x85,0x78,0x6c,
0xc,0xa0,0xb6,0xe6,0x10,0x13,0xe5,0x8,0x24,0x82,0xd1,0xa8,0x34,0xb4,0x39,0xb3,
0x70,0x71,0x60,0x94,0x18,0x80,0x7d,0xe0,0x84,0xbd,0xfa,0xea,0x5e,0x1a,0xb8,0x69,
0xd1,0xc3,0x8d,0x9a,0x1,0xda,0x9f,0xb2,0x57,0x9c,0x1b,0x3,0x4d,0x77,0x3c,0xb2,
0x98,0x46,0x30,0x71,0xda,0x80,0xca,0x63,0x4f,0x43,0xa6,0x89,0x49,0x12,0xe6,0x24,
0x76,0xe0,0xbf,0x91,0x91,0xd1,0x4,0xd3,0xa8,0xf6,0x6b,0xd3,0x89,0x44,0x5a,0xc2,
0xdb,0x29,0xbf,0xda,0xce,0xb7,0x99,0x80,0x8e,0x54,0xd8,0xaa,0x7f,0xe4,0x54,0x4c,
0x56,0xf9,0x7d,0x70,0x4e,0x7c,0x1f,0x7f,0xd7,0xce,0xca,0x1b,0xcb,0x21,0x6d,0x78,
0x17,0x42,0xcc,0x26,0xf8,0x50,0x35,0xf0,0xc4,0x83,0x1a,0x86,0x58,0x8c,0x2,0x7f,
0x5b,0x6a,0x2e,0x6c,0xc2,0xa5,0x7e,0x5a,0x5b,0xf1,0x6a,0xdd,0xa8,0xb1,0x2c,0x1c,
0xbb,0x18,0xa1,0xa4,0xc7,0x3a,0x8a,0x24,0xe8,0x33,0x7d,0x9c,0x3b,0x7f,0x51,0xf5,
0x83,0x64,0x5e,0x56,0xa5,0x9f,0xf2,0x6b,0xbd,0xa7,0x53,0x7f,0x35,0xa3,0xc2,0x2a,
0x41,0x25,0x50,0x6b,0xa7,0x3f,0x77,0x4c,0xa2,0x6,0xc0,0xd3,0x1d,0x2a,0x64,0x2,
0x64,0xa8,0x6d,0x72,0x20,0x18,0xc0,0xa9,0xbe,0x7e,0x58,0xb2,0xa8,0x3d,0xf5,0x4c,
0x38,0x91,0x47,0x8e,0x1c,0xa1,0x81,0x7f,0x3f,0x6f,0x5e,0xf,0x85,0x9f,0x70,0xc8,
0xb8,0x70,0xd4,0xf1,0x35,0x32,0x17,0xfc,0xe6,0x9f,0x6e,0xc1,0xca,0x58,0x98,0x40,
0x52,0x77,0x62,0x22,0xa8,0x14,0xcf,0x3f,0xb3,0x40,0x2f,0x1d,0xcf,0xab,0x90,0x7c,
0x25,0x5e,0x32,0x8c,0xce,0xc7,0xbd,0xab,0x6d,0x6e,0xe5,0x39,0x31,0xcf,0x1f,0x99,
0x90,0xed,0xa4,0xb3,0xb5,0x1,0xdb,0xcb,0xaf,0x25,0xbe,0xfd,0xdc,0x97,0xf0,0xbe,
0xe4,0x4f,0x53,0x8b,0xf1,0xb7,0xdc,0x7e,0x7e,0x7c,0x4c,0xc,0xc0,0x4f,0xf4,0xb2,
0xc3,0x54,0x90,0xa0,0xa1,0xe8,0xe7,0xa4,0x11,0x56,0x8,0x37,0x8e,0x97,0xf8,0xfd,
0x10,0x5e,0x9a,0x6d,0x8f,0x66,0xd0,0xa1,0x43,0x87,0x48,0xd2,0x63,0x4e,0x48,0xad,
0x7b,0xea,0xf8,0xf1,0x33,0xb2,0x66,0x24,0x90,0x9d,0x82,0x59,0x10,0xd4,0xb7,0x11,
0x6b,0x0,0x9a,0xa9,0x49,0x3,0xd0,0x75,0x6,0x63,0x6d,0x85,0x54,0x2b,0xd1,0x68,
0x27,0x11,0xc5,0x34,0x39,0x1,0xe4,0x11,0x3,0xc8,0x4,0x39,0xc1,0x0,0xce,0x8b,
0x85,0x5e,0xc,0xb5,0xcc,0x1,0x9e,0x7,0x1d,0x5f,0x38,0x10,0xe5,0x6,0x55,0x51,
0xd4,0xc,0x90,0x19,0x60,0x1d,0x7e,0x64,0x77,0xf9,0xc4,0x32,0x19,0x4c,0x80,0x43,
0xab,0x90,0xbe,0x85,0x51,0x57,0x8a,0x9b,0xfa,0xff,0x24,0xa6,0x60,0x55,0x4,0xe2,
0xb9,0xb0,0x4,0x37,0x62,0x0,0xb5,0x48,0x7f,0xee,0x98,0x0,0xb2,0x6f,0x40,0xc1,
0x48,0x7e,0x5f,0xe5,0xb7,0x25,0xb9,0x96,0xb2,0x5a,0x5,0xf7,0xbd,0xdc,0x3e,0x50,
0x48,0x9a,0x8d,0xa9,0x9,0x55,0xa6,0xe5,0xf2,0x3a,0x23,0x18,0xd1,0x39,0xf1,0xde,
0x8d,0xd5,0xeb,0xad,0x83,0x6c,0x19,0x57,0x36,0x8f,0xb1,0x8d,0x8b,0xf7,0x4a,0x99,
0x82,0x7c,0x52,0x88,0x3f,0x1e,0x1d,0x89,0xd6,0xe7,0xd4,0xa9,0x53,0x44,0xf4,0x28,
0xe9,0xf5,0x3d,0xd4,0x73,0xa0,0xfd,0x7f,0xec,0xf8,0x49,0x21,0xfc,0x9a,0x31,0x85,
0xcc,0x92,0xe2,0x81,0x12,0x64,0xb2,0x24,0x18,0xc,0xb6,0x22,0xc2,0x82,0x71,0xcb,
0xd1,0x5a,0x69,0xba,0x2b,0xdb,0x5,0xe,0x9d,0x87,0x13,0xea,0x3,0xe0,0xa9,0x9c,
0xd8,0x27,0x46,0xae,0x5a,0x61,0x5,0x19,0x21,0xa1,0x84,0xed,0xcc,0x47,0x33,0x70,
0xfa,0xec,0x8,0xf4,0xce,0x6b,0xae,0xfb,0x57,0x71,0x1,0x76,0xec,0xd8,0x49,0x43,
0xc6,0xa8,0x97,0x92,0x99,0x80,0x19,0x6b,0xf1,0xc4,0x9c,0x6a,0x28,0x36,0xf5,0x49,
0x7f,0xa,0x49,0xb5,0xb5,0xc2,0x79,0xa5,0xa6,0x3a,0x1b,0x2a,0xc1,0x3d,0x4d,0x75,
0xdf,0x60,0x27,0xd9,0x0,0x49,0x10,0x2c,0xaf,0x45,0x47,0x68,0x75,0xf,0xb6,0xbb,
0xb8,0xf8,0x5d,0x4c,0xcc,0x79,0xf1,0xc5,0x17,0x63,0xc4,0x9b,0xe4,0xab,0xb0,0xdb,
0x77,0x27,0x85,0xb8,0xd2,0x54,0xfe,0x24,0xbf,0x9,0x86,0xe8,0xb0,0x77,0x41,0x32,
0x4e,0x7f,0xf5,0x48,0xa,0x9a,0x80,0x58,0xc3,0x90,0x14,0xd5,0x62,0x1e,0x23,0xb0,
0x13,0x93,0xec,0xeb,0x4e,0xd3,0x9c,0xc6,0xc6,0x8,0x5c,0xe2,0xb7,0x19,0x0,0x32,
0x20,0x4c,0x3f,0x46,0xf5,0x1e,0xed,0x79,0x6d,0xba,0x8c,0xf5,0x38,0x76,0xfc,0x2c,
0xad,0x77,0x36,0xa7,0xda,0xc1,0x7,0xba,0x57,0x24,0x98,0x4,0x20,0x48,0x70,0x1e,
0xeb,0xe0,0x31,0xab,0x93,0xe8,0xa7,0xd1,0x9,0x98,0x94,0xc7,0xcf,0xa5,0x43,0x85,
0x26,0x39,0x20,0x1f,0x40,0x36,0x9b,0x87,0x57,0xf7,0x9e,0x84,0xf9,0x3d,0x2b,0xc6,
0x15,0xcb,0xc5,0x85,0x41,0x74,0x1e,0x1c,0x28,0x11,0x37,0x6e,0xdc,0x0,0x57,0x5d,
0x75,0xa5,0x74,0x36,0x7a,0x4c,0x0,0x80,0x8f,0x5b,0xb,0xc0,0xc7,0x2e,0x15,0xe,
0x4b,0x37,0x3,0x58,0x4c,0xb0,0x73,0xcb,0x71,0x86,0x60,0x1b,0xd8,0x50,0x33,0xc9,
0x6d,0x50,0x9,0x6f,0x4f,0x6b,0x55,0x9b,0x36,0x5d,0x6,0x2f,0xbc,0xf0,0x82,0x23,
0xf1,0x6d,0x2,0x4e,0x92,0xac,0x76,0x78,0x30,0x4d,0xfa,0x57,0xd2,0xc0,0xf0,0x1c,
0x68,0xef,0xe2,0x6f,0x47,0xe,0xcc,0xea,0xd9,0x8b,0xfe,0xa9,0x8f,0x1d,0x3f,0x6,
0x76,0xa6,0x6c,0x2c,0x6c,0x1a,0xea,0x88,0x40,0x18,0x73,0xfc,0xe2,0xd1,0xd1,0xde,
0x36,0xae,0xb6,0x71,0xbe,0xef,0xc5,0x8f,0xe3,0x63,0x86,0xde,0x73,0xcf,0xbd,0x0,
0xbb,0x77,0xbf,0x4c,0xc,0x6f,0xa2,0x1c,0xc7,0x3b,0x76,0xed,0x25,0xd3,0x17,0xf7,
0x25,0xad,0x85,0xe9,0x1f,0x19,0x58,0xed,0x64,0x6b,0xa3,0x69,0xad,0x15,0x44,0x75,
0x1,0xf5,0x11,0x50,0x50,0x1f,0x31,0xa7,0x8f,0xb8,0x9,0xc1,0x2b,0x4a,0x31,0xe9,
0x0,0x41,0xce,0x87,0xaa,0x5c,0x1e,0xfa,0x2f,0xe,0xc3,0xf6,0x5d,0x27,0x60,0x60,
0xb0,0x34,0x21,0x13,0x8d,0xb,0xb6,0x7d,0xfb,0xe,0xb8,0xf7,0xde,0xfb,0x8,0x96,
0xda,0x97,0x2f,0xe3,0x8b,0xa0,0x44,0xf7,0x36,0x7f,0xde,0x3c,0x6b,0x93,0xa7,0xdb,
0x65,0xcc,0x86,0x5,0x27,0x2d,0x48,0x7e,0x15,0xd5,0x49,0x96,0xd0,0x2e,0xac,0x9a,
0x64,0xd3,0x84,0x88,0xd1,0x7,0x8c,0x94,0xf8,0x4,0xed,0x7b,0xb4,0x6d,0x69,0xef,
0x4b,0xfe,0x24,0x9b,0xbf,0xd2,0x86,0xd3,0x59,0x7c,0xc8,0xbc,0xe3,0x36,0x7a,0x6d,
0xd2,0x16,0xef,0xf9,0xc8,0x91,0xa3,0x71,0xff,0x88,0xba,0x96,0xb4,0x88,0x82,0xfd,
0x5a,0x67,0x12,0x4e,0x4c,0x74,0xca,0xa5,0x38,0xdc,0x33,0xf7,0xde,0xfb,0x1d,0xda,
0x43,0x13,0x45,0xfc,0x17,0x2e,0xc,0xc1,0xe3,0x4f,0xbe,0x4,0xe7,0xcf,0xd,0x88,
0xb9,0xcb,0x49,0x1f,0x58,0x90,0x25,0x7f,0x18,0x53,0x70,0x72,0x91,0xf4,0xaf,0x84,
0x2,0x6c,0x3b,0x5,0xc7,0xe6,0x7f,0x99,0x4,0xd,0x20,0x3d,0xf1,0x20,0xa9,0xa3,
0xac,0x2,0xca,0x97,0xb1,0xeb,0x4c,0x1e,0xca,0xb9,0x66,0x38,0x7c,0xf4,0x34,0xec,
0xdd,0x77,0x10,0x9a,0xf2,0x59,0xa1,0xc6,0x2f,0x80,0xc5,0xb,0xbb,0xa0,0xab,0xab,
0x35,0x6a,0xab,0x35,0x86,0x3,0x7d,0x5,0xf,0x3d,0xf4,0x8,0xdc,0x7a,0xeb,0x1b,
0xbd,0xb0,0xa,0x24,0x3c,0xd6,0xee,0x80,0xd3,0x4,0x38,0x6f,0xfe,0xfc,0x28,0x53,
0xcd,0xf3,0x10,0xa7,0xda,0xd0,0xd6,0xf3,0xa3,0x47,0x8f,0x39,0xbf,0xef,0x62,0x2,
0x54,0x66,0xa2,0x32,0x7f,0xbf,0x8,0xaf,0x7b,0xdd,0x35,0xf0,0xc3,0x1f,0xfe,0xb0,
0xa2,0xf,0xc0,0x27,0xfe,0xa4,0x64,0x9f,0x5a,0xa4,0xbf,0xbe,0xef,0xd5,0x4,0x61,
0x56,0x8c,0xb5,0x27,0x4f,0xbe,0x66,0x1b,0xb9,0x37,0x2a,0xa,0x3b,0x78,0xe0,0x20,
0x45,0x30,0xc8,0x1c,0x54,0xd7,0x2a,0xc3,0x5d,0xee,0xef,0xf9,0xd7,0xa0,0xb5,0x0,
0x64,0x0,0xd1,0xef,0x87,0x75,0x55,0x3,0xba,0xce,0xe2,0x78,0xc5,0x1e,0xa2,0x23,
0xa3,0x76,0x36,0x9e,0x3,0x6d,0xf7,0xd3,0x67,0xfa,0x85,0xd9,0x70,0x12,0xf6,0x1f,
0x3c,0xc,0x43,0x83,0x23,0x42,0xed,0xc7,0xac,0xcc,0x16,0x62,0xdc,0x92,0x9,0x4,
0x6a,0x7f,0x33,0xf,0x3f,0x92,0x4d,0x49,0x8a,0x7b,0xb6,0x1e,0x69,0x57,0x1b,0x87,
0xe7,0x89,0xc4,0xef,0x4a,0x7f,0xbd,0x9,0x33,0xc0,0xd1,0x11,0x28,0x26,0x23,0x17,
0x36,0xc9,0x2e,0x29,0xe2,0xf3,0x42,0x61,0x8,0x5e,0xda,0xbd,0x5f,0xd8,0xb6,0xbb,
0x0,0xcd,0xf8,0xe5,0xcb,0x16,0x8b,0xb1,0x48,0xd8,0xca,0x73,0x21,0x97,0xcd,0xd4,
0x7d,0x93,0x68,0xbb,0x61,0x58,0x26,0x2,0xb5,0xf4,0x4d,0x81,0xfa,0xf1,0xe4,0xf4,
0x66,0x9b,0x3f,0xaf,0x87,0x62,0xd6,0x76,0xdb,0x2f,0x8a,0x72,0x24,0x71,0x6f,0xce,
0x8d,0x82,0xa7,0x99,0xfc,0xf0,0xc8,0x30,0xd9,0xc2,0x5d,0x5d,0x73,0x6b,0x48,0x76,
0xb2,0xaf,0x5b,0x6e,0x30,0x24,0x0,0xac,0xab,0x5f,0xbf,0x7e,0x3d,0x39,0xa6,0x7c,
0x6,0x90,0x26,0xe9,0x2b,0xc5,0xf9,0x2b,0x99,0xf,0xf8,0x1e,0xd6,0x1d,0x60,0x18,
0x10,0x4d,0xae,0x30,0xac,0x8c,0x5e,0x9c,0x9c,0x21,0x7,0x70,0xf2,0xe4,0x29,0xe8,
0x47,0x64,0xe0,0x8e,0x76,0x27,0x9b,0x90,0x25,0xdd,0x74,0x2,0x41,0x63,0x78,0xb0,
0xa7,0x67,0x5e,0x55,0x42,0xaf,0xee,0x8c,0x8c,0xab,0xfe,0xb8,0x57,0xd0,0xab,0x3f,
0x96,0x3,0x73,0xfc,0x8f,0x9f,0x3c,0x7,0x7,0xf,0x1e,0x13,0xc,0xee,0x10,0x8c,
0x16,0x8a,0xa4,0x29,0xa1,0xca,0x9f,0xcb,0x37,0x93,0xb9,0x8b,0x4c,0x20,0x93,0xc9,
0xcb,0xf7,0x9,0x3e,0x2e,0x70,0x32,0x1d,0xc1,0x36,0x3,0x52,0x34,0x56,0x5f,0xdc,
0xda,0xce,0x76,0xcd,0xd4,0xe4,0xdf,0x55,0xce,0x8,0xcc,0xa6,0xab,0xf8,0xb5,0x86,
0x77,0xd2,0x39,0x74,0xb4,0x61,0xdd,0x5,0xd4,0x4c,0x81,0xe0,0xd,0x55,0xa8,0x8a,
0x8b,0x89,0xa1,0xb8,0x26,0xbe,0x56,0x89,0x35,0x5,0x31,0x4a,0xa5,0x51,0xd8,0x7f,
0xe0,0x28,0xbc,0xf2,0xea,0x7e,0x2,0x4f,0x58,0xb2,0x64,0x11,0xac,0x5c,0xb1,0x98,
0xfa,0xac,0xb7,0xb6,0x34,0xd5,0xbc,0x30,0x98,0x4f,0x80,0x18,0xf7,0x13,0x9b,0xc,
0x18,0xd2,0x26,0x34,0xe1,0x34,0xf0,0x3c,0xe8,0x29,0x7c,0x5,0xef,0x31,0xc0,0xfb,
0xf,0x3,0x68,0x6e,0x6a,0xa6,0x82,0x9e,0xeb,0xaf,0xbf,0xce,0xa9,0xef,0x96,0xf3,
0xc4,0x12,0x19,0xb0,0x9d,0xf6,0xac,0xdb,0x6f,0xa1,0xbf,0x63,0x70,0x70,0xd0,0xe0,
0x1,0xda,0xd2,0xdd,0x2e,0xb,0x4e,0x32,0x15,0xaa,0x49,0x19,0xbb,0x58,0x7,0x43,
0x8e,0x4b,0x96,0x2c,0xa6,0xec,0x45,0xe9,0x9d,0xaf,0x1d,0xc0,0xc4,0x76,0xb6,0xa1,
0xe3,0x52,0x26,0xf4,0x64,0x12,0x33,0xd,0x2b,0x31,0x22,0xae,0xf2,0x3,0x30,0x1b,
0x71,0xa2,0xa1,0xe4,0xf0,0xfa,0x70,0xaf,0xd4,0x73,0xc,0x8f,0x14,0xe1,0xd8,0xb1,
0x3e,0xb1,0x4f,0x31,0x54,0x7d,0x8c,0x66,0x3,0xcd,0x5b,0x24,0xfa,0xa6,0xe6,0xbc,
0x61,0x0,0x59,0x45,0xf4,0x68,0xf2,0x1a,0xd,0x20,0xa3,0xc2,0x80,0x6,0x40,0x56,
0xcd,0x91,0xd3,0xdf,0x21,0x49,0x48,0x8d,0x25,0x5f,0x27,0x4e,0xdf,0xd9,0xb1,0x4b,
0x7e,0x1e,0x23,0x78,0xdf,0xee,0xac,0xc6,0x99,0x49,0x52,0x72,0x19,0xe,0xa4,0x88,
0x8e,0x78,0x8d,0x1b,0x82,0x1c,0x83,0xa5,0x26,0x9a,0xa8,0x92,0xb0,0xc5,0x70,0xe2,
0x8a,0x82,0x11,0x14,0xb,0x23,0x70,0xf4,0xd8,0x49,0xa,0xbf,0x20,0x98,0xe2,0xbc,
0xde,0x1e,0x58,0xbd,0x72,0x39,0x69,0x7,0xdd,0xdd,0x95,0x71,0xf8,0x25,0xd2,0x6d,
0xa0,0x50,0x64,0xc1,0x52,0x49,0xa1,0xa6,0x84,0xa2,0xb4,0x2e,0x2f,0x98,0x2,0x8c,
0x3d,0xed,0x59,0xa5,0xee,0xbf,0xce,0xfd,0x32,0x62,0x64,0x9a,0xc3,0x63,0x52,0xd3,
0xf6,0xed,0x2f,0xc2,0x8d,0x37,0x5e,0x2f,0x8,0x8a,0x39,0x21,0xd3,0x74,0xc4,0x5d,
0x5b,0xb,0x90,0xa5,0xb4,0xa8,0xfe,0x5f,0x79,0xe5,0x16,0x72,0x5a,0xe1,0x6b,0x4d,
0xf8,0xbe,0xca,0x5f,0xaf,0x7a,0x69,0xab,0xfd,0x78,0xe,0xec,0x58,0xac,0x4d,0xf,
0xbf,0x6d,0x59,0x35,0xdb,0x5a,0x17,0xce,0x60,0x4,0xe0,0xc9,0x27,0x9f,0x12,0xc4,
0xd1,0x64,0x3a,0x28,0x27,0x45,0x24,0x92,0x9c,0x99,0xfa,0x7a,0x51,0x73,0xc8,0xb,
0x53,0x11,0x13,0xa9,0x92,0xf7,0x2d,0xaf,0x6a,0xf3,0xc7,0x9b,0xbc,0x48,0xc7,0xb4,
0xc4,0x78,0xa8,0x62,0xcf,0xf7,0xf,0xc1,0x91,0xa3,0xa7,0x60,0xff,0xfe,0x43,0x42,
0x9b,0xe9,0x53,0x1a,0x97,0x24,0x6e,0x7a,0xcc,0x64,0x95,0x8d,0x2f,0x19,0x41,0x26,
0x93,0x35,0x12,0xdf,0x7c,0x96,0x91,0xd9,0xb0,0x81,0x6a,0xf8,0xc1,0x52,0xed,0x7e,
0x36,0x51,0x61,0xff,0x4,0xd,0xc0,0xed,0xda,0x9d,0xce,0x58,0x78,0x3a,0x67,0xf6,
0x25,0x7b,0xc4,0x30,0x78,0x32,0x43,0xe0,0x32,0x94,0x41,0x8,0xa7,0xa8,0x7,0x4,
0x59,0x73,0xf3,0x61,0x46,0x26,0x9,0x65,0x83,0x3c,0x71,0xc8,0x72,0xb6,0x48,0xc,
0x20,0x57,0x2e,0x40,0x21,0x33,0x2c,0x36,0x5e,0x1,0x8a,0xd9,0x61,0x6a,0xa9,0x74,
0xee,0x6c,0x3f,0x3c,0xd9,0xf7,0x1c,0x3c,0xfa,0xd8,0x13,0xd4,0x61,0x66,0xd5,0xaa,
0x65,0xb0,0x6a,0xe5,0x32,0xa1,0xea,0x2f,0x88,0x49,0x13,0xc,0x17,0xa2,0x57,0x37,
0x9e,0x27,0x50,0x7f,0x38,0xd0,0xf6,0xc2,0xcb,0xc6,0xa6,0xcb,0xc9,0x2b,0x9e,0x96,
0x19,0xe7,0x60,0x3,0xa,0x29,0x1f,0x10,0xea,0xb,0x27,0x4d,0x0,0x31,0x4,0x77,
0x6c,0xdf,0x4e,0xf0,0x56,0x73,0xe7,0xce,0xb1,0x3c,0xb9,0xbc,0x26,0x2d,0x0,0x3f,
0x97,0x9d,0x77,0x8a,0x84,0xb9,0x8f,0x51,0xf,0x89,0x11,0x50,0x72,0xcc,0x0,0x3f,
0xb3,0xaf,0x12,0xe1,0xdb,0x61,0x43,0x2d,0xf9,0xf1,0x6f,0x36,0x6e,0x5c,0x4f,0x8c,
0x6,0x89,0x4e,0x22,0x18,0x1,0xd4,0x3,0x5f,0xa6,0xe7,0xed,0xd4,0xa9,0x3e,0x82,
0xf8,0x5e,0xbd,0x7a,0x35,0x69,0x7b,0x74,0x9d,0x99,0xb8,0xb9,0xc2,0xbc,0xb6,0xe9,
0xfa,0xda,0x30,0xef,0x61,0xe1,0x82,0x85,0x8e,0x3,0x72,0xbc,0xf9,0x2b,0x11,0x4e,
0x41,0x39,0x31,0xb6,0x8f,0xbf,0x73,0xfa,0xcc,0x45,0x61,0x4e,0x9e,0x80,0x7d,0xfb,
0xf,0x12,0x18,0x89,0xf4,0xe2,0x67,0xc5,0xbc,0xb7,0x51,0x28,0xcf,0x10,0xbc,0x26,
0x72,0x4d,0xf0,0xb8,0xbf,0x3,0x65,0x9a,0xa1,0xc3,0x4f,0x49,0x7d,0xfa,0x2e,0xa8,
0x24,0x20,0x6d,0xff,0xdb,0x75,0x1,0x12,0xf6,0x47,0x52,0x6,0x9f,0x88,0xd6,0x60,
0x10,0xc3,0x10,0xcd,0xd6,0xaf,0x42,0x40,0x8a,0x74,0xe7,0x5e,0xbc,0x3f,0xf9,0x3b,
0xf6,0x23,0x69,0xe,0x52,0x26,0x98,0x24,0x20,0x5a,0x7c,0x9e,0xa5,0x85,0x40,0xe,
0x19,0xa,0xe2,0xf,0x4,0x23,0xc8,0x95,0xa,0xc4,0x10,0x4a,0xc5,0x51,0x9a,0x5c,
0x64,0x4,0x99,0x62,0x96,0x24,0x11,0x4e,0xfc,0xd0,0xf0,0x8,0xbc,0xf0,0xc2,0x4e,
0x78,0xf6,0xd9,0xe7,0x21,0x97,0x65,0xb0,0x6a,0xcd,0x6a,0xb8,0x7a,0xeb,0x15,0xd0,
0x3b,0x7f,0xbe,0xf9,0xf5,0xf3,0xe7,0x2f,0x50,0xe6,0xa0,0xbd,0xe0,0xb5,0x6c,0x1a,
0x17,0x76,0x29,0xba,0x57,0x19,0x2a,0xe2,0x84,0x4f,0xff,0xf4,0x33,0xcf,0x1a,0x6,
0xe0,0xd7,0x1,0xf8,0x55,0x89,0xa6,0xde,0x9e,0x31,0x3,0xca,0x89,0x8d,0x32,0xee,
0xbc,0xf3,0xce,0xc4,0x1c,0x85,0x4a,0x5a,0x80,0xfc,0xbe,0xd4,0x2,0x46,0x47,0x65,
0x6c,0x1c,0xd1,0x7c,0xd1,0xac,0xd0,0xbd,0xff,0x6c,0x4d,0xa0,0x52,0xae,0x80,0x7f,
0x9d,0x5a,0xf2,0xe3,0x35,0x62,0xa8,0x12,0xcf,0x83,0xe7,0x8c,0xfa,0x17,0xf0,0x9a,
0x6c,0x7f,0x3f,0xd6,0x8e,0xdd,0x8a,0x74,0xe6,0xa2,0x59,0x73,0xe6,0x32,0xaa,0xa8,
0x4,0x56,0xee,0x7b,0x5b,0xd3,0x44,0x33,0x67,0xf9,0xf2,0xa5,0x6,0x48,0x25,0x9,
0x46,0xbd,0x56,0x66,0xe0,0x87,0x27,0x71,0x8f,0xf8,0x92,0x7e,0xd7,0xae,0xbd,0xb0,
0x6f,0xef,0x1,0x18,0x15,0xda,0xa8,0x26,0xf2,0x7c,0xbe,0x85,0xf6,0x25,0x99,0x30,
0xe4,0xcc,0xd3,0x4d,0x55,0x32,0x46,0x1b,0x8,0x14,0xc1,0x4b,0x2d,0x20,0xa3,0x7a,
0x0,0x32,0xd3,0xe2,0x4b,0x67,0x0,0x32,0x5b,0xf7,0x67,0xcc,0xa9,0x24,0xf5,0x7d,
0x49,0x91,0xaf,0x69,0x7c,0xf1,0xff,0x71,0x45,0x1,0x92,0x43,0x33,0x69,0xcc,0xc1,
0x2f,0x75,0x4c,0x8a,0xc5,0xea,0xb8,0xb4,0x4c,0x93,0x45,0xc4,0x20,0xb2,0x93,0x43,
0x64,0x0,0x21,0x71,0xd2,0x32,0xaa,0x56,0xe8,0x13,0xc8,0x49,0xd3,0xa0,0x8c,0x9a,
0x40,0x11,0x4d,0x4,0xac,0x1b,0x1f,0x26,0x46,0x90,0xc9,0x8c,0x90,0x66,0x50,0x2c,
0x8e,0xc0,0xcb,0xbb,0x5f,0x81,0x5d,0x3b,0x77,0xc2,0xeb,0x6f,0xb9,0x19,0xae,0xb9,
0xe6,0x6a,0x3a,0x3f,0x2,0x59,0x4a,0x29,0x9b,0x54,0x34,0x52,0x7f,0x72,0x90,0xc6,
0xb9,0x5f,0xb3,0x76,0xd,0xb5,0xd2,0x2,0x5,0x9,0x96,0xb6,0x78,0x7e,0xb8,0x4b,
0x13,0xe6,0xdc,0xae,0xb9,0xf0,0xd8,0xe3,0x4f,0xc0,0x1b,0xde,0xf0,0x7a,0x83,0x91,
0xef,0x33,0xd6,0xf8,0x9c,0x83,0xd7,0x9e,0x2b,0xf2,0xb5,0xe0,0x39,0x2e,0xbf,0x7c,
0x33,0x55,0xa0,0xa1,0xb3,0xcd,0xf,0x1,0xfa,0x21,0x3f,0x5f,0x43,0x33,0xb9,0xf8,
0x4,0xdb,0xd5,0x4b,0xd9,0x86,0xa8,0x5,0x20,0xf1,0xa3,0xf4,0x8d,0x5a,0x96,0x57,
0x8a,0xa0,0xb0,0x58,0x1,0xd,0x1e,0x43,0x43,0x83,0xf0,0xfd,0x1f,0x7c,0x9f,0xbc,
0xff,0x26,0xf6,0xad,0x86,0x5d,0xaf,0xa0,0x35,0x82,0x18,0x43,0x15,0xef,0xe1,0x75,
0x60,0xe6,0xa7,0xdd,0x3d,0x77,0x6c,0x78,0x80,0xf1,0x2e,0x4f,0xb8,0x47,0xf4,0xb1,
0x7b,0xcf,0x61,0xb1,0xae,0x4f,0x10,0x51,0xa3,0xf0,0xc9,0x37,0xb5,0xb9,0xaa,0xbd,
0x56,0xf5,0x51,0xbd,0x27,0xa2,0xcf,0xc9,0x7d,0xcb,0xa2,0x7b,0xa,0x58,0xd6,0x7d,
0x4f,0x31,0x0,0xb0,0xa3,0x32,0x56,0x51,0x90,0xfc,0xe7,0xf7,0x1,0xb4,0xf3,0x2,
0x26,0xb8,0x37,0x60,0x4,0x41,0x0,0x11,0x18,0x81,0x27,0xa9,0x63,0x95,0x76,0xfe,
0xe7,0x76,0xb3,0xb,0x5f,0xda,0x73,0x70,0xbf,0x63,0xff,0x1d,0x53,0x7f,0xa3,0x13,
0x83,0x78,0x60,0xb8,0x7e,0x80,0xcf,0x19,0x36,0x49,0xc,0x23,0x4e,0x49,0x12,0x22,
0x2b,0x73,0xe9,0x33,0x6a,0xb2,0x33,0x5,0xb5,0x79,0xa,0xb4,0x79,0x4a,0x41,0x41,
0x9e,0xab,0x94,0xa1,0x73,0xfd,0xe0,0x87,0xf,0xd1,0x86,0xda,0xba,0xf5,0x4a,0x2,
0x91,0xb4,0xd5,0xeb,0xfa,0xb5,0x9f,0x64,0x3f,0x0,0xaa,0xde,0xe8,0x19,0x77,0xda,
0x7f,0x55,0x2,0x6,0x61,0x6e,0xcc,0xbb,0xbb,0xbb,0x7,0x4e,0x9e,0x38,0x9,0x8f,
0x3c,0xf2,0x28,0xdc,0x76,0xdb,0x6d,0x4e,0xdf,0xc0,0x4a,0xbe,0x0,0x9b,0x9,0xe0,
0x77,0x90,0x30,0x11,0x23,0x50,0x16,0xcb,0x34,0xc1,0xc2,0x85,0x8b,0xe8,0xba,0x30,
0xd7,0x0,0x37,0x76,0x18,0x86,0x35,0x31,0x76,0xbc,0x6e,0x4,0xdf,0x5c,0xb4,0x68,
0x21,0xf5,0x4,0x44,0xf3,0x2,0xbb,0xb,0xa3,0xe3,0xcf,0xee,0x5b,0x98,0x46,0xfc,
0x49,0xb6,0xbf,0xb6,0xff,0x11,0xbd,0x78,0x54,0x98,0x10,0xf3,0xe7,0xf7,0x3a,0x66,
0x5a,0xc6,0x8b,0x5a,0x4,0x2c,0x48,0x64,0x5c,0x64,0xff,0xb7,0xcb,0xe2,0xa7,0xb1,
0xd8,0xff,0x95,0xb5,0x1,0xa6,0x80,0x46,0x1,0xf6,0xee,0x3b,0x2e,0x88,0xff,0x49,
0xb1,0x77,0x9a,0x28,0x4a,0x85,0xc,0x0,0x1d,0x77,0x48,0xe4,0x52,0xb5,0xf,0x1c,
0xf5,0xde,0xd8,0xf3,0x26,0xab,0x4f,0xa7,0xbb,0x4b,0x62,0xf7,0x55,0xfd,0x58,0xb3,
0x49,0x70,0x35,0x0,0x60,0x11,0x75,0x49,0xdc,0x79,0xc9,0x6,0x35,0xad,0x44,0xec,
0x8b,0xd7,0xb5,0x87,0x6d,0x5a,0xf,0x27,0xaf,0x18,0x88,0x57,0x59,0x3,0xb5,0xa9,
0xc1,0xf5,0x94,0x73,0x55,0x3c,0x13,0xa8,0xdd,0x8e,0x1b,0x3b,0x14,0x23,0xc3,0xf4,
0xe6,0x8,0x22,0xbb,0x2a,0x57,0x24,0x29,0x91,0x2d,0xe5,0x69,0x11,0x4a,0xe5,0x82,
0xac,0x2e,0x2c,0xe5,0xe5,0x63,0x31,0x6b,0x42,0x8d,0xf,0x3e,0xf8,0x30,0xa9,0xe9,
0xc9,0xd5,0x63,0x7c,0xc,0x1a,0x90,0x4b,0x34,0x68,0xf,0x63,0x9f,0xba,0xfd,0x7,
0xe,0xc5,0xed,0x7e,0x3f,0xd1,0x5,0x2,0x3,0xc,0xa2,0x37,0x7c,0x97,0x30,0x4b,
0x10,0xe7,0xe,0x19,0xc0,0xd,0x37,0x5c,0xaf,0x60,0xc2,0xe2,0xbe,0x80,0xf4,0xee,
0x3b,0x2e,0x13,0x28,0x14,0xa2,0xb6,0x6b,0x48,0x28,0x28,0xc1,0x71,0x60,0xc6,0xe2,
0xe0,0xe0,0x80,0x90,0xc2,0xc3,0xaa,0x5,0xb9,0xcc,0xb1,0xd7,0xf8,0x80,0xc8,0xc8,
0xda,0xdb,0x3b,0x60,0xce,0x9c,0x4e,0x93,0x2,0x3b,0x3a,0x2a,0xa5,0xbe,0xac,0xcd,
0xf,0xab,0xe6,0x4e,0x24,0x75,0x2d,0xd2,0xef,0xe3,0x6f,0x7f,0xe7,0x3b,0xf7,0xd3,
0x6f,0xb5,0xb5,0xb6,0xca,0x90,0x25,0x46,0x7c,0xac,0x28,0x5,0xf3,0xa,0x99,0xb4,
0x56,0xc0,0xd5,0x9e,0xc2,0xef,0x60,0x1,0x54,0x84,0xa2,0x3c,0x1e,0xfb,0xdf,0xd7,
0x50,0x18,0x85,0xf1,0x86,0x86,0xb,0xf0,0xe8,0x63,0x4f,0x53,0xad,0x7e,0x16,0x35,
0x4e,0xf2,0xdc,0xab,0x47,0xa5,0xee,0x93,0xaa,0x6f,0xa,0xad,0xd4,0x35,0x33,0x15,
0xd2,0xd3,0x12,0x1e,0xc0,0x7a,0xee,0x4a,0x79,0x88,0x69,0x63,0x3e,0x78,0x48,0xe0,
0x26,0x6d,0x4d,0x12,0xe0,0x69,0xb6,0x1e,0x15,0xa9,0x96,0xf4,0xd9,0x34,0xf9,0xaa,
0x6f,0x80,0xfb,0x71,0x49,0x6e,0x49,0x4d,0x4b,0xc8,0x4a,0x66,0x20,0xed,0x64,0xae,
0x24,0x17,0x2e,0x80,0xc,0x99,0x88,0xcf,0xc2,0x40,0x6d,0x8,0x65,0xdf,0x96,0x33,
0xca,0xc3,0x5c,0x30,0xf1,0x76,0x2d,0x41,0x8b,0xa3,0x21,0xbc,0xf0,0xc2,0xe,0xb8,
0xfd,0xf6,0x37,0x5b,0x91,0x8a,0xfa,0x36,0x4d,0x92,0x1f,0x40,0xbe,0x2f,0x9,0x6d,
0xdd,0xba,0xf5,0x70,0xc0,0x62,0x0,0xba,0x76,0x3b,0x96,0xda,0xcb,0x98,0xe9,0xfd,
0x66,0xa4,0x9f,0xd8,0x48,0x8,0x80,0x82,0x60,0x11,0xdf,0xfa,0xd6,0xbd,0xf0,0xde,
0xf7,0xbe,0x3b,0xc1,0x86,0xe6,0x89,0xe,0xc1,0x24,0x73,0x40,0x12,0x47,0x91,0x1e,
0x91,0x70,0x35,0x8,0x28,0xe6,0xb,0x48,0xe2,0xe,0x12,0x81,0x4a,0x74,0x32,0x8d,
0x46,0xe3,0x91,0xb0,0x5c,0x25,0xa5,0x6a,0xf3,0x1a,0x13,0xa7,0xd2,0xa1,0xb1,0xbe,
0xfc,0xe5,0xaf,0x50,0xa8,0x12,0xef,0x35,0xb0,0xcb,0x93,0xed,0x10,0xa5,0x85,0x47,
0x68,0x9c,0x95,0x16,0x18,0x6,0xfe,0xae,0x56,0xff,0xb5,0x1f,0x62,0xac,0xf6,0xbf,
0xef,0xd4,0xc5,0xdf,0x42,0x74,0xa5,0x97,0xf7,0x1c,0xa4,0x20,0x35,0xda,0xf9,0xb9,
0x5c,0x33,0x11,0x3d,0x11,0x7e,0xd6,0x72,0xea,0x91,0x7d,0xcf,0x2c,0xbb,0x9e,0x19,
0xfb,0xdf,0x49,0xb,0x4f,0x52,0xf3,0x1d,0x82,0xf7,0xa3,0x24,0x6e,0x7f,0xc,0x96,
0x90,0x43,0x6d,0x27,0xa,0xb2,0xc9,0x65,0x0,0x13,0x19,0x60,0xad,0x64,0x15,0xb3,
0x8,0xe1,0x84,0x88,0x44,0x21,0xa2,0x28,0xc,0xf4,0x30,0x88,0xa2,0x14,0x99,0x8c,
0xda,0x60,0x61,0x86,0xbe,0x83,0x5e,0x62,0xda,0x34,0xe5,0x2c,0xd5,0x55,0x15,0x29,
0xef,0x9f,0xd3,0xc2,0x98,0xc9,0xe4,0xb2,0xfa,0x4a,0xa7,0xcc,0x8e,0x1f,0xb,0x20,
0x92,0x1c,0x78,0x2a,0x24,0xb4,0xd6,0xd6,0x16,0xe8,0xe9,0xe9,0x86,0x33,0x9,0xdd,
0x6a,0xa2,0xcd,0xc0,0xc1,0x38,0x3b,0xd0,0x76,0x55,0x4d,0x1f,0xf1,0x1e,0x16,0x2d,
0x5a,0xc,0x27,0x8e,0x9f,0xa0,0xf8,0xf8,0xb6,0x6d,0xd7,0xc0,0xb2,0x65,0xcb,0xbd,
0x8d,0x1d,0x81,0x69,0xa4,0x77,0xe3,0x8d,0x98,0x84,0x4c,0x12,0x92,0x6d,0xb9,0x25,
0xee,0x7e,0x56,0x21,0x6,0x69,0x30,0x16,0xdb,0xab,0xac,0x1b,0xb6,0x94,0xa9,0x6b,
0x8f,0x64,0x0,0x25,0xd3,0xad,0xb9,0x1a,0xc0,0x4a,0xdc,0xaf,0xc0,0x1c,0x7,0x1b,
0xbe,0x8f,0xb1,0x75,0xcc,0xae,0xc3,0xa,0x3e,0x74,0xc4,0x66,0x6c,0x4,0x23,0xab,
0x8c,0x39,0xd2,0x4,0x6c,0x46,0x90,0x51,0x99,0xaf,0x9c,0xd0,0x97,0x51,0x53,0x19,
0x1e,0x1e,0x49,0x40,0x84,0x1a,0xc7,0x8a,0xaa,0x93,0xe1,0x1e,0x39,0x74,0xf0,0x20,
0x4d,0x28,0x85,0xa3,0x85,0x6,0x80,0x9,0x3c,0xc8,0x0,0x8c,0xe7,0xde,0x56,0xf5,
0x95,0xb4,0x86,0x14,0x69,0xef,0xec,0x1,0xf,0x22,0x2c,0x89,0x9,0x44,0x39,0x24,
0xcc,0xca,0xf,0xd0,0x85,0x42,0xbe,0x26,0x60,0x25,0xd,0x8c,0xf1,0xa8,0xa9,0x16,
0xc0,0xbf,0xc8,0x4a,0xb9,0xdf,0xdc,0xd,0xad,0x26,0xa4,0x34,0x33,0xe7,0x1f,0x30,
0x97,0x33,0xc6,0xd3,0x21,0x83,0xf4,0xa1,0x54,0x32,0x99,0x58,0x81,0x4e,0xc2,0x3c,
0xd9,0xac,0xd9,0x6c,0x93,0x95,0x68,0x21,0x9d,0x34,0xeb,0xd6,0xae,0x13,0xb6,0x76,
0x97,0x65,0x7,0x8f,0x45,0x6a,0x24,0xc3,0x77,0xcb,0xc4,0x94,0x32,0xb5,0xe2,0x4a,
0x22,0x4c,0xdb,0xaf,0xc2,0x52,0x6a,0xcc,0xb3,0xd9,0xc,0x2c,0x14,0x36,0x37,0x12,
0xc8,0x57,0xbe,0xf2,0x55,0x52,0xbd,0xd3,0x90,0x90,0x2b,0xb7,0xe0,0x72,0x9b,0xaa,
0xc8,0x98,0x7d,0x99,0x72,0xdb,0x47,0xa9,0x1b,0xef,0x30,0x79,0xd1,0xe5,0x18,0x54,
0x43,0xbf,0x1e,0xa6,0xef,0xe0,0x77,0xf1,0x6f,0x22,0x7,0x5b,0x94,0xd0,0x55,0xad,
0x65,0x59,0x12,0x42,0x2e,0x86,0x48,0xff,0xee,0xee,0xbb,0x95,0x6f,0x61,0x6e,0x24,
0xf5,0x3d,0xd4,0x61,0xf2,0xa2,0x7,0xcc,0x51,0xf7,0x35,0x68,0x86,0xde,0x73,0xb,
0x17,0xf4,0xd2,0xb5,0xa5,0xab,0xff,0xbc,0x66,0xa9,0xef,0x47,0xad,0xf0,0x7e,0x71,
0x8f,0x2c,0x5f,0xbe,0x84,0xa2,0x4c,0x4,0x9b,0x1d,0x60,0xd7,0xe2,0x26,0x1a,0x94,
0xc1,0x87,0xcc,0x4a,0x33,0x81,0x8c,0xce,0xe5,0xb7,0xea,0xfa,0x2d,0x1f,0x86,0xde,
0xa7,0x41,0x10,0xf9,0xb0,0xa2,0xfd,0xcb,0x12,0x5e,0xeb,0xef,0x65,0xa2,0x32,0x61,
0x9b,0xa1,0x58,0x4,0xcf,0x20,0xbd,0x5f,0x65,0x7d,0xc,0x20,0x9,0xc,0x60,0xdc,
0x43,0xa,0xbb,0xd8,0x48,0xe0,0x55,0x11,0x8f,0x48,0xcf,0x83,0xa6,0x5c,0x71,0x35,
0x8c,0x9f,0x54,0xbd,0x9f,0x21,0x4c,0x1,0x89,0x2b,0x20,0x25,0x49,0x3e,0x52,0xd9,
0xd4,0x2,0xcd,0x9d,0xd3,0x5,0x9f,0xfa,0xd4,0xef,0x78,0x9b,0x9a,0x3b,0x1d,0x89,
0x6a,0x19,0xba,0xad,0x99,0xdd,0xde,0xc,0x87,0x56,0x99,0x97,0x2c,0x59,0x6a,0x10,
0x6b,0xd3,0xb0,0x0,0x6c,0x1b,0x90,0x1c,0x5d,0xc,0xcc,0x7d,0x2d,0x5a,0xb8,0x88,
0x3c,0xf8,0x18,0x87,0xfe,0x8f,0xff,0xf8,0xcf,0xd4,0x90,0x9a,0x5b,0x37,0x90,0x7c,
0x9d,0xf2,0x3e,0x43,0xf3,0x5c,0xb7,0xdf,0x42,0x95,0x5e,0xc3,0x6e,0xdb,0x43,0xb6,
0xe4,0x8a,0x9a,0x72,0x68,0xe9,0xcf,0x55,0x1f,0xc7,0x30,0x4c,0x9f,0x97,0x6a,0xc,
0xf4,0x8b,0x5f,0xfc,0x7,0xe8,0x3b,0xd5,0x47,0xd2,0xbe,0xbb,0x4b,0x35,0x2e,0x51,
0xf6,0xbf,0xf1,0xfc,0x67,0x15,0xf2,0x70,0x26,0x1b,0x65,0x7,0x6,0x2c,0x62,0xa,
0x28,0xfd,0x9b,0x9b,0xc9,0x79,0xa8,0xe7,0xdb,0x6e,0x92,0x19,0x5f,0x9b,0x5a,0x47,
0xe8,0x84,0x3c,0x71,0x8f,0x7c,0xfc,0x63,0xbf,0x21,0xae,0x83,0xc3,0xc8,0xf0,0x45,
0x28,0x8c,0xe,0x92,0xcf,0x6,0x89,0x33,0x87,0x82,0x46,0x39,0x1,0x6d,0x41,0x15,
0x28,0x2f,0xbf,0xfd,0xa8,0x19,0x97,0xdc,0xb7,0x19,0x67,0xff,0xca,0xf6,0x71,0x81,
0x91,0xf0,0x4c,0x7d,0x87,0x69,0x67,0xa1,0x2d,0x8,0xb9,0xe3,0x17,0x8c,0x68,0x88,
0xab,0xf6,0xe1,0xde,0x60,0x71,0xe9,0x54,0x71,0x4,0xb5,0xe9,0xee,0x6e,0xff,0xb7,
0xb8,0x77,0x3b,0x62,0xff,0x71,0x81,0xef,0xd7,0x82,0xda,0x59,0x57,0x49,0x59,0x69,
0xac,0xa,0xa7,0xf4,0x38,0xab,0xe5,0x38,0x92,0x9c,0xd3,0x8d,0xa5,0x62,0xb5,0xde,
0xdd,0x7f,0xf7,0x3f,0x5,0x57,0x5f,0x4c,0x9b,0xdb,0xcd,0x5e,0x1b,0x8b,0xfa,0xc8,
0x13,0x55,0x61,0x49,0x34,0x25,0xa1,0x69,0xac,0x4d,0xd4,0xc8,0x62,0xf1,0x5c,0x1d,
0x9,0x50,0x4c,0x80,0x7c,0x1,0x82,0x0,0x96,0x2e,0x5d,0x4a,0x84,0x80,0x71,0x7c,
0x54,0x99,0x2b,0x41,0x4b,0xb3,0x94,0xae,0x43,0xc9,0x1a,0x81,0x8b,0xdb,0x17,0x99,
0x8,0x3e,0xd1,0xc4,0xff,0xa6,0x72,0xc,0xdd,0xbd,0x96,0x28,0x91,0x47,0x3e,0x7e,
0xfb,0xde,0x7b,0xe1,0xa9,0xa7,0x9e,0xa2,0xf5,0xe9,0x99,0xd7,0x13,0xd5,0x29,0x64,
0x22,0x22,0xd7,0xf3,0x60,0x6b,0x2,0xe0,0x39,0xc0,0xf0,0x32,0xa8,0x93,0x50,0xe8,
0x76,0xd,0x72,0xf3,0x10,0xc6,0xb2,0x8e,0x11,0x3d,0xe8,0xac,0xca,0x95,0x2b,0x97,
0xc1,0xdf,0x7f,0xe1,0x7f,0x41,0x47,0x7,0x9a,0x1a,0xc8,0x4,0x86,0xe8,0x77,0x41,
0x79,0xf2,0x3,0x4f,0xda,0x27,0x6b,0xa8,0x2c,0xf5,0x3b,0x90,0x22,0xd9,0x99,0x95,
0x11,0x68,0x84,0x45,0xe0,0x69,0xcb,0x8e,0xd4,0x1c,0x7f,0x57,0xa4,0x60,0xfc,0xd,
0x86,0xf5,0x90,0x40,0x1f,0xd8,0xd7,0xcc,0x19,0xea,0x7d,0x37,0xd1,0x21,0x7a,0xdf,
0x1f,0xaa,0x6e,0xd6,0x19,0x66,0xf2,0x34,0x84,0x92,0x1a,0xc0,0xf4,0x63,0x10,0xfd,
0x5d,0xa0,0x27,0x2a,0x80,0x6b,0xae,0xb9,0xa,0xfe,0xff,0x7f,0xfd,0x5b,0xd8,0xb8,
0x71,0x2d,0x85,0xb0,0x74,0x3,0x92,0x5a,0xa4,0x56,0xed,0x6a,0x64,0x84,0x67,0x87,
0xe7,0x47,0x7,0x15,0x16,0xca,0x18,0x86,0x68,0xc1,0x82,0xf9,0x5e,0x5d,0x5a,0xdc,
0x40,0xa9,0x8b,0xa,0x29,0x19,0xc3,0x76,0xa8,0x45,0x20,0x33,0xc0,0x84,0x99,0xed,
0xdb,0xb7,0x3b,0x4,0xe5,0x37,0x9d,0xf0,0x21,0xa9,0xd3,0x19,0x81,0x5f,0x62,0xeb,
0x97,0x73,0xfb,0x4c,0xa0,0x16,0xb3,0x30,0xb9,0x1,0x86,0xbe,0xd6,0xc7,0x1f,0x7f,
0x2,0xbe,0xfc,0x6f,0x5f,0x21,0x82,0xc6,0xc8,0x46,0xd7,0xdc,0x2e,0xba,0x2f,0xa7,
0x39,0x49,0xe0,0x55,0x2f,0xea,0xb6,0x65,0xea,0x33,0x3d,0x67,0x4d,0xf9,0x3c,0x21,
0x3e,0xe1,0x1c,0x47,0x79,0x8,0x13,0xbb,0x8e,0x78,0xe0,0xf9,0x71,0xaf,0x6c,0xde,
0x7c,0x19,0x7c,0xe5,0xcb,0x7f,0xf,0x97,0x6f,0x5e,0x29,0x34,0xb2,0xd3,0x30,0x30,
0x78,0xe,0x8a,0x25,0xe9,0x77,0x60,0x2a,0xd1,0x87,0xa9,0x68,0x0,0x38,0x7b,0x33,
0x6b,0xf6,0x66,0x6c,0x1f,0x9b,0xbd,0xab,0x18,0x81,0x89,0x18,0x4,0x86,0x1,0xa8,
0x64,0x18,0xf9,0xa8,0x4,0xa2,0xa6,0x25,0xa7,0x50,0x40,0x31,0x45,0x27,0xbb,0x9f,
0xb1,0x9a,0xe9,0x55,0xd3,0x7c,0x1d,0x78,0x0,0xae,0xd3,0xc2,0x76,0x62,0xc4,0x5b,
0x45,0xb3,0x44,0xcd,0xc1,0x77,0x74,0x54,0x1a,0x4e,0xc,0xd8,0xe6,0xa2,0x9e,0x2d,
0x65,0xae,0x49,0x6f,0x70,0xc4,0xbc,0x13,0x8f,0x3f,0xfd,0xd1,0xf7,0xc1,0x5f,0xfe,
0xf9,0xff,0x4d,0xa0,0x11,0x18,0x2f,0x46,0x15,0x37,0xea,0xa9,0xe,0x75,0xd7,0xb0,
0x27,0x7f,0xd7,0xfd,0x43,0x9d,0x21,0xb7,0x71,0xe3,0xc6,0x88,0x28,0xc0,0x42,0x7d,
0xb5,0x86,0xcf,0xd9,0x19,0x68,0xbb,0x11,0xc8,0x97,0x90,0xc9,0x48,0xa6,0xf0,0xf5,
0xaf,0x7f,0x83,0xe0,0xd2,0xe3,0x4c,0x80,0x25,0xe2,0xce,0xd7,0x73,0x1f,0x63,0x9,
0xa1,0xb9,0xcd,0x30,0x92,0xf2,0xf7,0xe5,0x23,0xd6,0xd1,0x7f,0xfe,0xf3,0x5f,0x30,
0x6a,0x3c,0x86,0xee,0x74,0xd8,0x4f,0x67,0x41,0x9a,0x36,0x65,0xa,0xa6,0x5c,0xef,
0x92,0xc0,0xd6,0x4,0xd4,0x5a,0xa1,0x73,0x4e,0x67,0x3c,0x56,0x92,0xe4,0x63,0xd,
0xe5,0x46,0xcc,0x3c,0xa4,0xbd,0x82,0x7b,0x66,0x4e,0xe7,0x1c,0xb8,0xfb,0x6f,0xff,
0xa,0x3e,0xfa,0xe1,0x77,0xc3,0xc8,0xd0,0x39,0x31,0xfa,0x29,0xc9,0x8c,0x2b,0xc7,
0xad,0x9d,0xd0,0x13,0xed,0x45,0xe6,0x6a,0xa7,0x96,0x46,0x0,0xbe,0x36,0x60,0xb9,
0xf2,0x7d,0xfb,0x9e,0x79,0x9a,0x33,0x3,0xcf,0xf6,0x9f,0xa0,0x9e,0x88,0x99,0xab,
0xaf,0x7b,0xd7,0x67,0xca,0xe5,0x22,0x15,0xd7,0xb8,0xa1,0x95,0xaa,0x2e,0xfd,0x4,
0x3c,0xb5,0xb8,0x13,0x28,0x4d,0xe5,0x8f,0x5b,0x35,0x49,0x8c,0x23,0xce,0x8,0xec,
0xac,0x28,0xdd,0x4d,0x5,0xfb,0xab,0x95,0x85,0x8a,0x86,0xb9,0x0,0x1d,0xed,0x2d,
0xf0,0x7b,0x9f,0xfe,0x65,0xb8,0xf3,0x8e,0x9b,0x29,0x3b,0x50,0x3b,0xb5,0xfc,0xec,
0xb5,0xf1,0x78,0x8f,0xdd,0x86,0x8f,0x71,0xc6,0xd6,0xd3,0xdd,0x4d,0x59,0x78,0x45,
0x21,0x49,0x34,0xf1,0x27,0xa6,0x74,0x32,0x6b,0x49,0xad,0x85,0x46,0x7b,0x18,0x63,
0xe5,0xe7,0x55,0x56,0x1a,0xc2,0xa4,0xa3,0xe7,0x7c,0xe1,0xc2,0x5,0xb1,0xf8,0xba,
0x1d,0x7a,0x1b,0xb,0x23,0x98,0x8,0xc2,0x27,0x84,0xe7,0x20,0x22,0xfe,0xc7,0x1e,
0x7b,0x1c,0x3e,0xfb,0xb9,0xcf,0xc9,0x84,0x2e,0x41,0x8,0x58,0x86,0xdd,0xd6,0xd6,
0x6e,0x88,0x3d,0xaf,0x3b,0x14,0x35,0xc9,0xea,0xb8,0xbc,0xd5,0xc3,0x50,0x47,0x5,
0x74,0xe8,0x52,0x77,0x26,0xc6,0xba,0x1,0x9d,0x8f,0x90,0xec,0x0,0x1c,0xdf,0x3a,
0xda,0xcf,0x6d,0xff,0xe,0xde,0xd3,0xb6,0x6d,0x5b,0x85,0x46,0xb0,0xe,0x1e,0x7c,
0xe8,0x51,0x18,0x1a,0x1e,0xa6,0xc4,0x20,0x99,0xfa,0x9b,0x73,0x22,0x2,0x3a,0x27,
0xc0,0x51,0xfd,0x83,0x4,0x53,0x36,0xf0,0xcd,0x3,0x6f,0x98,0xbf,0x89,0xb,0x41,
0x5f,0xb,0x70,0x1b,0xb3,0xb2,0x4,0x1a,0x5,0x27,0xa4,0x28,0xb5,0xac,0xac,0x42,
0xe2,0xca,0x8d,0x95,0x1,0x24,0x31,0x81,0x54,0xb7,0x7f,0xe2,0xf7,0x58,0xdc,0x2a,
0xf0,0xdc,0x5,0x2c,0x96,0x9,0x16,0x65,0xc8,0xe9,0x84,0x14,0x19,0x83,0x47,0x8f,
0x2d,0xa6,0x6,0x6f,0xba,0x6c,0x15,0xfc,0xd1,0xff,0xf8,0x35,0x58,0xb1,0x7c,0x11,
0x65,0xae,0x61,0x56,0x1c,0x86,0xc0,0xe2,0xde,0xec,0xea,0x21,0xad,0x5a,0xb2,0xc6,
0x7c,0x86,0x17,0xc5,0xf5,0x3,0xea,0xfa,0x7b,0xe4,0xf0,0x11,0x87,0x1,0xb0,0x64,
0xe7,0x80,0x7a,0xdf,0xc1,0xc,0x83,0x66,0xa1,0x32,0x23,0xd3,0xc2,0xb8,0x39,0x5e,
0x3b,0xc2,0x52,0x21,0x41,0x20,0x0,0x6a,0x9c,0xeb,0xb3,0x4,0x34,0xdb,0x89,0x61,
0x4,0xd5,0x24,0xbe,0x3f,0xbe,0xfd,0xed,0x7b,0xe1,0x4b,0x5f,0xfa,0x47,0x43,0xfc,
0x73,0xbb,0xba,0x4,0x43,0xec,0x31,0x8e,0x3f,0x1a,0xb9,0x6c,0xac,0x4b,0xb1,0xdd,
0xae,0xdc,0xee,0x6c,0x8c,0xc7,0x65,0x97,0x6d,0xa4,0x28,0x9,0x32,0x0,0x37,0x8a,
0x33,0x3e,0x40,0xd0,0x6a,0x4c,0x20,0x2a,0x36,0xe2,0x54,0x7b,0x70,0xd7,0x5d,0x6f,
0x80,0x1d,0x2f,0xee,0x80,0xbe,0xbe,0x73,0x44,0xf4,0x14,0x79,0x32,0x85,0x55,0xd6,
0x9c,0xdb,0x3e,0x0,0x88,0xfc,0x51,0xe,0xd3,0xf7,0x5,0xa2,0xe5,0x54,0x74,0xe5,
0x3d,0x4b,0x44,0x96,0xb6,0xd7,0x3a,0xbe,0x2f,0x59,0x4a,0xb7,0xed,0x44,0x6,0xf0,
0x4e,0x8b,0x1,0x94,0x6a,0x60,0x0,0x3c,0x16,0x8e,0xb2,0x13,0x63,0x5c,0x15,0x3f,
0x4e,0xd0,0x69,0x9e,0xed,0xe4,0x8d,0x17,0xff,0xbe,0x86,0x8b,0x26,0xe2,0x17,0xd7,
0x8c,0xb9,0xff,0xe5,0xb0,0x0,0xef,0x7e,0xc7,0xad,0xf0,0xdf,0x7e,0xe5,0x83,0x42,
0x9a,0x64,0x48,0xea,0xcb,0x8a,0xb5,0xf2,0xa4,0x10,0x7f,0xb2,0x16,0xe0,0x7e,0xd6,
0xd1,0x31,0x7,0x86,0x87,0x87,0x64,0x65,0x99,0x7,0xf,0x1e,0x30,0xf,0x7f,0xcf,
0xce,0x30,0x66,0x3a,0x4b,0x52,0x42,0x5e,0xa1,0x87,0x1e,0xc3,0x68,0xf8,0xdd,0xbd,
0xfb,0xf6,0xa,0xcd,0xe2,0x24,0xac,0x5f,0xb7,0xce,0x2a,0xa4,0xf1,0x13,0x47,0x92,
0x18,0x1,0x4b,0xc5,0xe5,0x4b,0xf6,0xd7,0xc6,0x13,0x56,0x92,0x54,0x7d,0xdb,0x24,
0xc1,0xeb,0xfc,0x9b,0xbf,0xf9,0x5b,0xca,0xf4,0x43,0xd,0x6,0xed,0x77,0x84,0xd,
0x5f,0xb8,0x60,0x81,0xd3,0x93,0x10,0x89,0x3f,0x9f,0xcb,0x3b,0xed,0xca,0x9d,0xcf,
0x2d,0xe9,0x8f,0x47,0x6f,0x6f,0x2f,0x2c,0x5e,0xbc,0x84,0x18,0x7a,0x14,0xfe,0xe3,
0xe3,0x96,0xfe,0xb5,0x30,0x81,0x28,0xd3,0x53,0xe2,0x1e,0xa0,0x26,0xf2,0x23,0x6f,
0xb9,0x15,0x2e,0xf6,0x9f,0x87,0x17,0xb7,0xef,0x52,0x69,0xe9,0x4c,0xa6,0x7,0xdb,
0x12,0x5b,0x13,0xba,0x31,0x3,0xc0,0x12,0x4,0x60,0x55,0xfe,0xb9,0xa1,0x4e,0xfd,
0x79,0xdc,0x64,0x64,0x31,0x7f,0x7a,0xdc,0xf9,0x9a,0x4c,0x9b,0x3e,0x4d,0x46,0x7e,
0x96,0x31,0x6b,0x0,0xac,0x26,0xc7,0x53,0x35,0x89,0x5f,0xcd,0x4,0x70,0xff,0xce,
0xe6,0xf4,0xa1,0x44,0xd7,0xd,0x8b,0x24,0xf9,0x5b,0x9a,0x3,0xf8,0x8d,0x5f,0xfb,
0x20,0xdc,0x75,0xc7,0x75,0xa4,0xf2,0x63,0xa1,0x8,0x75,0x96,0x9d,0x44,0xe2,0x4f,
0xf3,0x5,0xd8,0xf1,0x65,0xbc,0x6e,0xf4,0x5a,0x23,0xb2,0xc,0x61,0xf1,0x43,0xa4,
0xde,0xd9,0x13,0xc1,0x52,0x35,0x2,0xf9,0x1c,0x89,0x8,0x63,0xf4,0xd4,0x59,0x86,
0x21,0x92,0x6e,0x1f,0x3c,0xfb,0xdc,0x73,0xb0,0x68,0xf1,0x22,0x8a,0xa9,0x27,0x77,
0xab,0xf1,0x37,0x1,0xaf,0x83,0x10,0x92,0xa4,0x4c,0x1a,0x36,0xbe,0xfc,0x1c,0x41,
0x58,0xff,0xe4,0x4f,0xfe,0xc,0x5e,0x79,0xf5,0x55,0x13,0xa,0x43,0x47,0xa6,0x46,
0x66,0xd6,0x12,0x5d,0x9b,0x0,0xf2,0x31,0x63,0xa0,0xbd,0xc9,0x31,0x48,0x9a,0x41,
0xd4,0xd2,0xc,0xcf,0x8d,0xdf,0xdb,0xb2,0xe5,0x72,0x5a,0x57,0x59,0x87,0x60,0x27,
0x26,0xf1,0x98,0x3,0x6f,0x7c,0x6b,0xe9,0x96,0xb1,0xbb,0xb9,0xf,0xdc,0x98,0x90,
0x78,0x7f,0xd7,0x5f,0xb7,0x15,0xd6,0xac,0x5a,0xa,0x4f,0x3c,0xf9,0xbc,0xd0,0x30,
0xcb,0x44,0x48,0xae,0x6f,0x2a,0x9e,0xcf,0x2,0xb1,0x47,0x2f,0x6a,0xc6,0x92,0xb3,
0xfe,0x5c,0x73,0x98,0x25,0x9a,0x9c,0x49,0x34,0x97,0xbc,0x96,0x13,0x6a,0x2,0x54,
0x4e,0xff,0x4c,0xb7,0x45,0xea,0x75,0x5c,0xf0,0x98,0x5d,0x86,0xd7,0x5a,0x12,0xd7,
0xbc,0x7a,0xe5,0x2,0xf8,0xf4,0x27,0x7e,0x6,0x56,0xad,0x5c,0x48,0xea,0xbe,0xce,
0x5b,0xd7,0xa1,0xbe,0xe4,0xd4,0x55,0x3e,0x61,0xa8,0x40,0xbe,0x16,0xe0,0x16,0xf1,
0xc8,0xde,0x77,0x98,0x7a,0x8b,0x90,0xd2,0x81,0x95,0x1f,0x1e,0x38,0xd2,0x9f,0x39,
0x5c,0xdf,0x56,0x13,0xf5,0xa2,0x22,0xf2,0xd,0x32,0x80,0x11,0xd4,0x4,0x2,0x29,
0x6d,0x9f,0x7e,0xfa,0x19,0x38,0x79,0xf2,0x24,0x61,0xf3,0x21,0x28,0x89,0xdf,0x93,
0x2e,0x6e,0x3e,0x25,0x85,0x5a,0x2b,0xf,0xdf,0xe9,0xa8,0x5f,0x4b,0x8f,0x3d,0xa3,
0xdc,0xfe,0x2f,0x7d,0xe9,0x9f,0xe0,0x9f,0xff,0xf9,0x5f,0x48,0x4b,0xc9,0xaa,0x22,
0x19,0x64,0x5a,0x8b,0x97,0x2c,0x26,0x49,0x6f,0xf7,0x25,0x24,0x49,0x9f,0xb3,0x5e,
0x8b,0xd,0x98,0x55,0x1e,0x7f,0xf9,0xbd,0x2c,0x31,0x1,0xad,0xfe,0xa3,0xea,0x8f,
0xb1,0x7f,0xbc,0x5f,0x6d,0xfb,0xdb,0x0,0xb4,0x13,0x21,0xfd,0x6b,0x33,0x7,0x22,
0x93,0x40,0x9b,0x20,0x2b,0x56,0x2c,0x85,0x37,0xbe,0xe1,0x5a,0x78,0xfe,0xb9,0x17,
0xe1,0xcc,0xb9,0xb,0x6,0xe1,0xda,0x66,0x4,0xe0,0x87,0xf4,0x2c,0xb3,0x20,0xee,
0xe8,0x4b,0x5f,0x97,0xca,0x61,0xf3,0xa4,0xac,0x1a,0x98,0xa,0x6,0x90,0xe6,0xe5,
0xaf,0x16,0x5,0x60,0x75,0x11,0xbf,0xee,0xf8,0x83,0x69,0xaa,0x24,0xd5,0xcb,0x45,
0x72,0xea,0xbd,0xe5,0xce,0x6d,0xf0,0x2b,0xff,0xd7,0xbb,0xc5,0x6,0xc9,0xaa,0x44,
0x96,0x51,0x27,0xce,0x9f,0x5c,0x46,0xcb,0x61,0xa2,0xfb,0x83,0xc6,0x9,0xcf,0x2d,
0x6c,0x40,0xe7,0x1d,0x3a,0x3,0x2f,0xf4,0xf7,0x47,0x84,0xee,0x73,0xec,0x98,0xd,
0xe8,0x9a,0x5,0xf8,0x3e,0xda,0xd2,0xda,0x27,0xa0,0x93,0x4a,0x8e,0x1e,0x3b,0xa,
0xf,0x3e,0xf4,0x10,0x11,0x1f,0xf6,0x43,0x90,0x78,0x4,0x69,0xb9,0x2,0xb5,0x11,
0x7d,0x12,0xf1,0x6b,0x82,0x97,0xde,0x6d,0x46,0xd9,0x83,0xdf,0xfa,0xd6,0xb7,0xe1,
0xaf,0x3f,0xfb,0x39,0xd8,0xbb,0x77,0xaf,0xf5,0x9d,0x80,0xd0,0x91,0xd0,0xe9,0x67,
0x9c,0x7a,0x48,0xf0,0xd9,0x5c,0xa4,0x1,0x64,0x94,0xca,0x6f,0x69,0x6,0x91,0xf3,
0x2f,0x22,0x7e,0x84,0x6f,0xc3,0x2,0x26,0x49,0xfc,0xc5,0x54,0xec,0xc1,0x89,0x5f,
0xcf,0x74,0xff,0x8a,0xd6,0x8,0x24,0x13,0xc0,0xfe,0x88,0x6d,0x70,0xe7,0x1d,0xb7,
0x8,0x93,0xe0,0x22,0xec,0x7e,0x79,0x9f,0x74,0xe,0x26,0xa5,0x3,0x57,0xf0,0xee,
0x27,0xff,0x4e,0x65,0x49,0x9f,0xe4,0x7c,0xf6,0xb5,0xec,0x64,0x21,0x3d,0x69,0x1a,
0x40,0xed,0x69,0xc4,0xf5,0x4b,0x7d,0xae,0xb2,0xed,0x4a,0x44,0xfc,0xf9,0x7c,0x20,
0x8,0xff,0x3d,0x70,0xd7,0xed,0xd7,0xd0,0x7b,0xba,0x46,0x5d,0xda,0x87,0x61,0x85,
0x52,0xd5,0x89,0x27,0xfe,0x24,0xa9,0x61,0x13,0x9f,0x6,0xb1,0x40,0xef,0xfd,0xa9,
0xbe,0x3e,0xd3,0x41,0x28,0xb1,0xdf,0xbc,0x2f,0xa5,0x4d,0x85,0x68,0x10,0xf9,0x4,
0x84,0x64,0x6d,0x12,0x12,0xb1,0xff,0x62,0x3f,0x7d,0x86,0x76,0x36,0x76,0xd4,0x7d,
0xf9,0xe5,0x97,0xe1,0x7b,0xf,0x7c,0x5f,0x30,0x99,0xb,0x54,0x8f,0xd0,0xd1,0xd1,
0x99,0x90,0x2b,0x50,0x1b,0x23,0x8,0x2c,0xf,0xb5,0x4d,0xf4,0xf8,0x78,0xfc,0xf8,
0x31,0xf8,0xc6,0x37,0xbe,0x9,0x9f,0x13,0xb6,0xfe,0xce,0x1d,0x3b,0x29,0x43,0x2e,
0xa3,0x4a,0x61,0x51,0x8a,0x23,0xe1,0x63,0x1e,0x3,0xa6,0x63,0xe7,0x8c,0xcd,0x2f,
0x24,0xbd,0xb2,0xed,0xf1,0x75,0xce,0x6a,0x61,0x66,0x9b,0x6,0x7a,0xe0,0x81,0xe6,
0xc3,0xe6,0xcd,0x9b,0x89,0xd1,0x27,0x39,0xfe,0x26,0x43,0xfa,0x57,0x66,0x2,0xee,
0xa1,0x6b,0x2c,0xa8,0x75,0xb9,0xb8,0xfe,0x6d,0xd7,0x6e,0x11,0xc,0xb8,0x17,0x9e,
0x7e,0x66,0x3b,0x14,0xd0,0x24,0x30,0xb1,0x7e,0xd7,0x24,0x98,0x38,0x49,0xf,0x89,
0x39,0xb5,0x95,0xcd,0xf2,0x64,0x6,0xc0,0x7e,0xe6,0x97,0xbe,0xc4,0x47,0x47,0x7,
0x9,0x6f,0xf,0xd1,0x76,0x90,0xa8,0xea,0x3,0x5a,0xac,0xbd,0x6f,0xf9,0x58,0x54,
0x7e,0x52,0xbb,0xca,0x32,0xc4,0xb7,0x7c,0xd9,0x7c,0xf8,0xf5,0x5f,0x7e,0x1f,0xf4,
0x74,0xb7,0x9b,0x74,0x56,0x5d,0xad,0x36,0x15,0x2a,0x7f,0x6d,0x4c,0xc0,0x36,0x87,
0x2,0x52,0x6b,0x5b,0x5a,0x9a,0x89,0x41,0x61,0xb9,0x2f,0x46,0x25,0x9c,0xfe,0x1,
0x9,0x76,0xac,0x6e,0x1d,0x4e,0x76,0x27,0xfe,0xc3,0xd,0xa7,0xe6,0x2,0x9f,0xf,
0xb,0xa6,0x77,0x60,0xff,0x7e,0x18,0x18,0x18,0xa0,0xef,0xa0,0x6,0x30,0x82,0x79,
0xfe,0x83,0x43,0x50,0x14,0x5a,0xd0,0xb2,0xa5,0x4b,0xe0,0xc6,0x9b,0x6e,0x84,0xad,
0x57,0x5d,0x5,0xbd,0xbd,0xb,0x20,0x8e,0xeb,0xc0,0xab,0x44,0x76,0xa2,0xd7,0x68,
0x66,0x3c,0xff,0xfc,0xf3,0x94,0x95,0xb8,0x5f,0xfc,0x66,0x94,0x79,0xc9,0x4c,0xca,
0x2e,0x26,0xf9,0xa0,0xbf,0x3,0x1f,0x33,0xca,0x96,0xd7,0xa1,0xbc,0x40,0x7b,0xfe,
0x95,0x36,0x90,0xcd,0xb8,0x36,0xbe,0x61,0xc,0x4a,0xf5,0xc7,0x54,0x68,0x4,0x70,
0xc1,0xf3,0x62,0xc1,0xf,0xae,0x6f,0x12,0xe4,0xf7,0xd4,0xac,0x6b,0xe5,0x9e,0x81,
0x54,0x27,0x20,0xee,0x49,0xa3,0x3a,0x9d,0xea,0x3b,0x7,0x7f,0xfc,0xa7,0xff,0x8,
0xc7,0x4e,0xf4,0xab,0x2,0xa2,0xbc,0x85,0x77,0x18,0x24,0x98,0x17,0x3c,0xc5,0x8b,
0x5f,0x3f,0x1d,0xd5,0x62,0x62,0x9b,0x46,0x3c,0xaa,0xc0,0xa9,0xa9,0xa9,0xad,0x31,
0x19,0x40,0x44,0xfc,0xb2,0x2a,0xd,0x43,0x7c,0x6f,0xba,0xf5,0x6a,0xf8,0xf0,0x4f,
0xdc,0x4e,0xa0,0x9e,0x68,0xef,0xeb,0x98,0xf0,0x54,0xab,0xfc,0xb5,0x9a,0x2,0x11,
0xf4,0x79,0x40,0x12,0x11,0x99,0x0,0x3a,0xf3,0x30,0x46,0x4e,0xd7,0xc8,0xdc,0x3e,
0x81,0xe0,0x25,0xa6,0x44,0x8d,0x32,0x25,0xd1,0x13,0x80,0x43,0x59,0x31,0x44,0xc5,
0x20,0xfa,0x4e,0xf7,0x51,0xa8,0x11,0xe7,0xa2,0x20,0x18,0xb,0x9e,0xbf,0x28,0x9e,
0x23,0xd4,0x78,0x59,0xb5,0xd7,0x46,0x4,0xa4,0xb5,0x6b,0xd6,0x90,0x3a,0x8d,0x12,
0x1a,0x41,0x3e,0xe6,0xcc,0x99,0x4b,0x1e,0x6d,0xf4,0x1d,0x68,0xa4,0x1f,0x34,0x2d,
0x6,0x6,0x6,0x9,0x12,0x1b,0xc7,0xe1,0x23,0x47,0x8,0xb7,0xf,0x21,0xb2,0x64,
0xa8,0xb,0x5c,0xb0,0xe,0x45,0xc0,0xf3,0xe7,0xcf,0x87,0x6e,0x61,0x9e,0x98,0xe4,
0x1d,0xc,0xe3,0xe5,0xb4,0xca,0xaf,0x24,0xd,0xbe,0x8f,0x4e,0xbf,0x4c,0x94,0x1,
0x88,0x58,0xe,0xe4,0x3,0xc0,0x2e,0xc6,0x56,0xf8,0xef,0xea,0xab,0xaf,0x86,0xd6,
0x56,0x9c,0x2b,0x99,0xbf,0x91,0xe6,0xc8,0xe5,0x53,0xb4,0xb0,0xbe,0x36,0xe0,0x67,
0x60,0xea,0xeb,0x46,0x6,0x80,0xf3,0x89,0xca,0xca,0x17,0xfe,0xe1,0x1e,0x78,0xe0,
0x7,0xcf,0x9,0x6d,0xad,0x4d,0x31,0x81,0x8c,0x87,0xf0,0x53,0xf,0xc1,0xd7,0x4b,
0xf8,0x53,0xce,0x0,0x26,0xf2,0xe0,0xa6,0x2e,0x5d,0x12,0x3f,0xd6,0xb4,0x17,0xe0,
0xe7,0x7f,0xfa,0xad,0x70,0xcb,0x4d,0x57,0x18,0x64,0x1a,0x64,0x0,0xb2,0xe6,0x3d,
0xac,0x0,0xe9,0x35,0x75,0xc4,0x9f,0x6c,0xa,0x44,0x3e,0x10,0x29,0xd9,0x10,0x70,
0xa3,0x85,0x10,0x67,0x9f,0x7b,0xee,0x79,0x22,0x68,0x2,0x7,0xe5,0x1e,0xaa,0x92,
0x62,0x6,0xba,0x4b,0x2e,0x28,0x26,0x80,0xef,0x91,0x16,0x50,0xe,0x23,0xc6,0xc0,
0x65,0x7,0x1b,0xc,0xd,0xa2,0xa4,0x1e,0x12,0x44,0x8c,0x73,0xa4,0xcd,0x22,0x9d,
0x3,0x11,0xaa,0x9e,0x84,0xa4,0x4a,0x73,0xa9,0x61,0x38,0x68,0x32,0x3c,0x99,0xa1,
0xd9,0xb6,0xbd,0x91,0xfc,0x2a,0x83,0xf,0x1d,0x7d,0xe8,0x9c,0xcc,0xe5,0x73,0xc4,
0xe0,0xa4,0x4a,0x9f,0x31,0x39,0xfd,0x92,0xf1,0xe5,0x8c,0xe4,0xa7,0xf7,0xb3,0x19,
0xe5,0x3,0x90,0x9a,0x80,0x96,0xfc,0x1a,0x14,0x74,0xeb,0x55,0x5b,0xa1,0xb3,0xb3,
0x5d,0x45,0x72,0x74,0xf2,0x16,0x40,0xbc,0x2e,0x61,0xfa,0xd6,0xd6,0x65,0xf2,0xcc,
0x74,0x39,0xc2,0xdc,0xf,0x5c,0x63,0x44,0x62,0xc2,0x7b,0xfa,0xde,0x3,0x4f,0xc1,
0xe7,0xff,0xe1,0xdb,0xd4,0x4,0x24,0x63,0xf2,0x5,0x82,0x2a,0xd1,0xb2,0x7a,0x22,
0x34,0xf5,0x9b,0xd6,0x49,0xc,0x20,0xb3,0x75,0xdb,0xbb,0x3e,0x53,0x22,0x42,0x53,
0xc0,0xf,0x3c,0xac,0x13,0x66,0x68,0xc2,0x59,0x0,0x5d,0x83,0xcc,0xec,0x2b,0xc2,
0xfb,0xde,0x79,0x3d,0xdc,0xf1,0xe6,0xeb,0x68,0x33,0xcb,0xac,0xbe,0xa2,0x93,0xd5,
0x97,0x44,0xfc,0x9c,0x4f,0xcf,0xf5,0xa7,0x6d,0x94,0x28,0x79,0x89,0x11,0xe1,0xa0,
0x8d,0x7b,0x42,0x10,0x6c,0x62,0xfa,0xb3,0x95,0x3a,0x1c,0x24,0x84,0x8e,0xfc,0xa4,
0x11,0x24,0x9c,0x8e,0xf6,0xe,0x58,0xd0,0xdb,0x4b,0x30,0xdb,0x52,0x5b,0x0,0x49,
0x74,0x54,0x65,0x17,0xc1,0x57,0xe9,0x18,0x70,0x56,0x61,0xee,0x69,0x15,0x5e,0x62,
0xf0,0x65,0xc,0x81,0x66,0xad,0x54,0x5c,0x33,0xc4,0x67,0xad,0x2d,0x2d,0xd4,0x11,
0x18,0xb5,0x89,0xce,0x39,0x9d,0xe4,0xe5,0xc7,0xcd,0xae,0x9,0x99,0x5e,0xe7,0x2d,
0x6f,0x7f,0x56,0x25,0xf8,0xa0,0xf,0xc0,0xb2,0xf5,0xf3,0x96,0x4f,0x40,0xe2,0xe4,
0x1,0x5c,0x7e,0xf9,0xe5,0x4,0x43,0xa6,0x1d,0xba,0xae,0x66,0x37,0x7d,0xc4,0x5f,
0xd9,0x24,0x70,0x9d,0x83,0x76,0xfb,0xf5,0xb5,0x6b,0x96,0x89,0x4f,0x46,0xe1,0xf9,
0x1d,0xb2,0xf,0x20,0x33,0x7d,0x0,0x3,0xab,0x1,0x68,0x1d,0xe9,0xbc,0x13,0xc0,
0x0,0x74,0x9,0xb6,0x2e,0x91,0xa7,0x32,0x7a,0x68,0xa0,0xc3,0x96,0xfe,0xa1,0x72,
0xfa,0xdd,0xfa,0x86,0xd7,0x99,0x4d,0x21,0xed,0x7d,0xa5,0x12,0x2a,0xb5,0xb8,0x51,
0x36,0x47,0x14,0xff,0xd7,0xad,0xc3,0xc0,0xe4,0x30,0x84,0xa1,0xae,0x67,0x1f,0x55,
0xc9,0x2d,0xb,0xe0,0xaa,0x2b,0xaf,0xa4,0x7c,0x79,0x6e,0x19,0xe7,0x3e,0x80,0x44,
0x8,0x72,0x33,0x5,0xa1,0x2c,0xde,0x20,0x68,0x68,0xac,0x15,0xc1,0xd7,0xa,0x54,
0x84,0xca,0x47,0x33,0x72,0x61,0x17,0x2f,0x5a,0x4c,0x39,0xf7,0xd8,0x71,0x18,0xa1,
0xb7,0xfb,0xfa,0x4e,0x29,0xb3,0x20,0x90,0x25,0xb4,0x61,0x20,0xe7,0x4d,0x6b,0x17,
0xde,0x9c,0x31,0x7b,0xa3,0x28,0xe6,0x85,0xb6,0x3c,0x62,0xf0,0x77,0x76,0x74,0x12,
0x6c,0x19,0x31,0xc,0x5d,0xc0,0x93,0x9,0xa2,0x2a,0xbe,0x6c,0xc6,0x79,0xb4,0x35,
0x1,0x1b,0xfc,0xc3,0xbc,0x56,0x89,0x4c,0xc8,0xe4,0x10,0xc0,0x14,0x9d,0x87,0x52,
0x73,0x49,0x4a,0xf8,0xe1,0xd,0xb2,0xbe,0xdc,0xcc,0x8b,0xbd,0xd6,0xa0,0xd6,0x45,
0x96,0x9b,0x47,0x8c,0xe0,0xcd,0x6f,0xba,0x1,0xfe,0xf1,0x5f,0xbe,0x23,0x98,0x5f,
0xce,0x30,0xe0,0x34,0x5b,0xbd,0xfe,0xac,0xcd,0x89,0xc9,0xf7,0x6e,0x28,0x6,0x60,
0x38,0x69,0x28,0xbd,0xfe,0xcb,0x96,0x76,0xb,0xdb,0xb9,0x49,0x85,0x82,0xca,0x6e,
0xc5,0x5a,0x42,0x3c,0x78,0x3a,0x37,0x87,0xcb,0x4,0x6c,0x4d,0x24,0x4a,0xf3,0x95,
0x18,0x7b,0x92,0x9,0xa0,0xd3,0xc,0x89,0xe0,0x85,0x17,0x5e,0x4c,0x4,0xeb,0x94,
0xf9,0x2,0x19,0x69,0x2,0xb0,0x90,0xaa,0xb6,0x42,0x25,0x2d,0xa9,0x83,0x12,0xbd,
0xaf,0x7e,0x7,0xfb,0xc7,0xab,0x39,0xc1,0x6e,0x43,0x28,0xa5,0xb1,0xee,0x7e,0xd5,
0xca,0x95,0xc4,0x0,0xce,0x9c,0x3d,0x43,0xf6,0x3d,0xda,0xf9,0xa3,0x3a,0x6a,0x52,
0x8e,0xca,0x6a,0xa9,0x10,0x49,0x69,0x4,0x28,0xad,0xf3,0x42,0x8a,0x37,0x35,0x35,
0x43,0x73,0x53,0x93,0x51,0xd1,0xf1,0xa6,0xb2,0xa6,0x76,0x3f,0x6b,0xec,0x7d,0x5d,
0x8a,0x9d,0xb1,0x30,0xfc,0xc8,0x9b,0xaf,0xbe,0x8f,0xc,0xcc,0x54,0xff,0xe1,0xb9,
0xac,0x4e,0x45,0x1,0x81,0xb5,0x6e,0x25,0x3f,0x45,0x44,0xfc,0xa5,0xd4,0x5e,0x83,
0x8d,0xb3,0xbe,0x11,0x93,0x97,0x13,0xc8,0x1d,0x67,0x2e,0xee,0x55,0xc6,0xa,0xb4,
0x77,0x57,0x2c,0x9d,0xb,0x87,0x8f,0xf5,0xab,0x6,0x28,0xed,0xb2,0xc8,0x2b,0xd6,
0x82,0x6d,0xfa,0xee,0x27,0x9b,0x5e,0x30,0x38,0x5d,0xc,0x20,0x24,0x58,0x70,0x4c,
0x4b,0xee,0x6c,0x6f,0x36,0x0,0x15,0x3c,0xb1,0x6c,0xad,0xb1,0x36,0x87,0x2b,0x29,
0x58,0x8c,0x9,0x68,0x42,0xd7,0x4c,0x0,0x73,0xe4,0xb7,0x5d,0x7b,0xd,0x3c,0xfb,
0xec,0x73,0xb1,0xe,0xb4,0xba,0x47,0x9e,0xe9,0xa3,0x4a,0x10,0x12,0xea,0x7c,0x48,
0x78,0x1a,0x33,0x1f,0x6d,0xfa,0x20,0x54,0x18,0x88,0x92,0x39,0x10,0xf1,0x4,0xdc,
0xa4,0xde,0x62,0xe8,0x90,0x1c,0x85,0x2a,0x43,0xb2,0x44,0xf9,0x14,0x65,0x53,0x59,
0x57,0x26,0xdf,0x0,0x37,0xda,0x88,0xd3,0x2d,0xd8,0xca,0xf8,0xa3,0xf2,0xdc,0x80,
0x49,0xd0,0xe,0x25,0xd1,0xc1,0xea,0x71,0xe0,0x3,0x79,0x6a,0x30,0x8f,0xac,0x32,
0x5,0x32,0x16,0xe6,0xbf,0xf4,0xf6,0xbf,0xe,0x5a,0x5b,0xdb,0x9c,0xec,0xcd,0x74,
0xe2,0xe7,0xd,0xb4,0xbe,0x7e,0x96,0xa5,0xb,0xfc,0xa8,0x33,0x7,0x51,0x63,0xed,
0x68,0x6f,0x82,0x91,0xe1,0x63,0xb2,0x37,0xa0,0xf1,0x5,0x64,0xbd,0xb5,0xe6,0x63,
0x8e,0x96,0xd5,0x4b,0x5f,0xfe,0x68,0x30,0x13,0x40,0x65,0xfb,0x51,0x8c,0xb5,0xc,
0x17,0x2e,0x5c,0x50,0x61,0x20,0x5e,0xe5,0x96,0x39,0x34,0xde,0x61,0x6f,0xc,0x1b,
0xab,0xcf,0x65,0x2,0xe8,0xf,0x40,0x24,0x60,0xc4,0x2,0x44,0xd4,0xde,0x24,0x7b,
0x93,0xba,0x27,0xe9,0x4e,0x44,0x3a,0xa4,0x17,0x2a,0xe4,0x54,0xce,0x1d,0x3c,0xc,
0xac,0x1b,0xd7,0xce,0x43,0xd,0xb6,0x81,0x4e,0x3a,0xda,0x90,0x4a,0xf2,0x6b,0xa6,
0x5a,0x56,0x8,0x49,0x65,0x5d,0xf4,0x92,0xd0,0x8d,0x57,0xb6,0x34,0xe7,0x46,0x4b,
0xa0,0x6a,0x45,0xcb,0x37,0xa0,0xd1,0x7c,0x34,0xbe,0x81,0x5d,0xdf,0x4f,0xe1,0x3e,
0xb,0xf5,0x57,0xa3,0xfb,0xa2,0x1f,0x4,0x25,0x7f,0x3e,0x97,0x35,0x92,0x3f,0x29,
0x75,0x7b,0xe6,0xac,0x6f,0xfc,0x5d,0xcd,0x4,0xce,0x9f,0x3f,0x4b,0xc8,0x42,0xe8,
0x80,0x43,0x53,0x0,0x3f,0x6f,0x6a,0x6a,0x4d,0x74,0x8,0x4e,0x8f,0x6,0x80,0xfb,
0x31,0x6c,0x18,0x5,0x40,0xc6,0xbc,0x43,0x59,0xe2,0x8b,0x44,0x82,0xb1,0x67,0x5d,
0x1,0xc7,0x1a,0x74,0x2b,0xd4,0xe6,0xf,0x48,0x60,0x2,0x62,0xf3,0xa3,0xb9,0x83,
0x12,0xfa,0xda,0x6b,0xaf,0xa5,0xb0,0x1b,0xf6,0x3d,0x4c,0x62,0x2,0x5c,0x7b,0xe6,
0xd5,0x6b,0x41,0xb6,0xe4,0xb,0xe0,0x96,0xa9,0x40,0xcc,0x1,0x25,0xb5,0xca,0x9e,
0x4,0x1e,0xb5,0x3f,0xa,0x54,0xc1,0x49,0x8e,0xe7,0xa4,0xad,0xaa,0x34,0x0,0xc3,
0x0,0x28,0x52,0x20,0x5b,0x63,0xc5,0x26,0xd9,0xc2,0x36,0x8,0x4c,0xc3,0xb,0x66,
0x6c,0x7a,0x4d,0xe8,0x6,0xd1,0xd7,0x62,0x14,0x6,0xf,0x4f,0x39,0x78,0x57,0xad,
0x5c,0x45,0x5d,0x86,0x28,0xfc,0x38,0xac,0xcd,0x11,0x57,0xf2,0x4f,0x75,0x1e,0xc7,
0x84,0x3a,0xa,0xad,0xe7,0xfb,0xf6,0xed,0x83,0x11,0x34,0x5f,0x11,0x63,0xb1,0x88,
0x5a,0xce,0x10,0x1,0x86,0xe4,0xa8,0xdb,0x55,0xd6,0x62,0x2,0x6c,0x6a,0xf9,0x96,
0x46,0x4,0x9,0x1b,0xcd,0x7,0x60,0x55,0xd3,0xa0,0x26,0x90,0xcd,0x30,0x78,0xe6,
0x99,0x67,0xa9,0x1b,0x2d,0x65,0xbd,0x11,0xa4,0xb6,0x1d,0xa3,0x18,0x7b,0x7b,0xef,
0xe9,0xb1,0x17,0x2d,0x73,0xa0,0xac,0xf0,0xfa,0xf8,0x28,0x49,0x6c,0x54,0x89,0xd7,
0xae,0x5d,0x47,0x9e,0xf0,0x9d,0xd8,0xdb,0xaf,0x50,0x74,0x98,0x40,0x6c,0x8b,0xe0,
0x7c,0x40,0x68,0x0,0x34,0x89,0xa9,0x68,0x6,0xa1,0x88,0x89,0x79,0xe0,0x27,0x54,
0x5f,0xf,0x68,0x1a,0x80,0xf2,0xb3,0x48,0xc2,0xd3,0xc,0xa0,0xac,0x12,0xaa,0xb8,
0xe5,0x93,0x30,0xe6,0xc,0x63,0xb1,0x6c,0x45,0x5b,0xc2,0xeb,0x70,0x21,0x58,0x65,
0xc8,0x36,0xa2,0xf,0xfa,0x5,0xae,0xb8,0x62,0xb,0x61,0xfa,0x49,0x80,0xd2,0x51,
0xd5,0x65,0x28,0x34,0xcc,0x6b,0x3a,0xf3,0x38,0xc6,0x4e,0xea,0x6e,0x36,0xa7,0x9e,
0x27,0x64,0xae,0xb8,0x77,0x31,0x34,0x8a,0xe6,0x6c,0xb1,0x28,0xee,0x77,0x64,0xc8,
0x84,0xe2,0x24,0xc8,0x68,0xd3,0xb4,0x6b,0x2,0x8d,0x65,0x2,0x0,0xc4,0xc0,0x26,
0x31,0xdb,0x6d,0xd7,0xae,0x97,0xa8,0x2a,0x8c,0x29,0x15,0x97,0x41,0x3c,0x27,0x7c,
0x3c,0xd,0x3f,0xa7,0x8a,0x9,0x38,0x3e,0x1,0xe5,0x38,0x92,0x8d,0x3c,0xa,0x26,
0x5e,0x8f,0xb1,0xf5,0x9b,0x6e,0xbc,0x1,0x76,0xbf,0xbc,0x87,0x40,0x45,0x34,0x3a,
0x6e,0x4c,0x35,0x27,0x26,0x10,0xa8,0x26,0xab,0xb2,0x79,0xa7,0x99,0x3b,0x4d,0xa4,
0x7a,0x1e,0xed,0xb2,0x6a,0xd9,0x70,0x81,0x4,0x80,0x56,0xc9,0xb3,0x5a,0xeb,0xd2,
0x79,0x7,0x49,0x1d,0x84,0x2c,0x46,0x64,0x4b,0x7b,0x7c,0x3f,0x63,0xe1,0xf8,0x27,
0x1d,0x58,0x15,0xb8,0x69,0xd3,0x46,0xda,0xf8,0x18,0xca,0xd5,0xc5,0x3d,0x6e,0x9c,
0x7f,0xe6,0x10,0x7f,0x5a,0xa1,0x4d,0x4,0xdf,0xd,0xb4,0x67,0x71,0xef,0xea,0xb0,
0xac,0x64,0xb4,0x25,0xd9,0xdc,0xb6,0x30,0xa2,0xb4,0xa9,0x8c,0xa7,0x9,0x4c,0x3,
0x3,0x68,0x14,0x17,0x20,0xe7,0x5e,0x7b,0x32,0xf4,0xa6,0x96,0xe5,0x46,0xdc,0xb1,
0x63,0x27,0x75,0xf6,0xc1,0x44,0x1a,0x1d,0x29,0x70,0xf1,0xec,0x1a,0xcf,0x51,0x54,
0x89,0x9,0xc8,0x76,0x68,0xd1,0xc6,0xe1,0xbc,0x64,0x18,0x0,0x46,0x3f,0x30,0x99,
0xe4,0xf2,0x4d,0x9b,0x89,0x70,0xf6,0xec,0xd9,0x3,0x3,0x17,0x7,0x62,0xad,0xd7,
0x99,0xc5,0xf1,0x28,0xa1,0x8,0xa2,0xec,0x42,0xf0,0x51,0x83,0x6d,0xed,0x2a,0x29,
0xef,0x24,0x13,0x45,0x13,0xc0,0x6a,0xc4,0x22,0xd1,0x78,0xe3,0xf7,0x13,0x68,0x66,
0x60,0x9c,0x85,0x91,0xc9,0x62,0xaf,0x1,0xfa,0x37,0x36,0x6d,0xda,0x4,0xf3,0x7a,
0x7a,0xa0,0x58,0x2a,0x12,0x3e,0x82,0xc4,0x66,0xb4,0xc1,0x59,0xd5,0x3a,0x3a,0xcd,
0xa4,0x1a,0x5d,0xed,0x8f,0xda,0xb5,0xf9,0x8e,0x41,0xf4,0x96,0xc,0xf,0xd,0xd1,
0x9e,0xd5,0xe,0x56,0x9a,0x17,0xa6,0xb5,0x2e,0xd9,0xcb,0x92,0xf6,0x38,0x6a,0x51,
0x5c,0x42,0xda,0x33,0x36,0x41,0xdd,0x7f,0xeb,0x74,0x3,0x66,0x1b,0x77,0x92,0xb9,
0xd8,0x34,0x32,0x4c,0x85,0x1b,0x6,0x3d,0xe5,0x37,0xdd,0x74,0xa3,0xd3,0x49,0x28,
0xea,0xea,0xc2,0x9d,0xce,0x3d,0x8d,0xca,0x4,0x4c,0x63,0xf,0xb5,0x12,0x76,0xab,
0x2f,0x42,0xa4,0x2d,0x2a,0xe7,0x1c,0xa6,0xf1,0xe6,0xcb,0x30,0xa7,0xb3,0x13,0xae,
0xbf,0xee,0x3a,0x38,0x76,0xec,0x38,0xec,0xdb,0xbf,0x8f,0x6c,0x66,0x9f,0x11,0x44,
0x36,0x3a,0x33,0x2a,0x7f,0x8,0xa1,0x21,0x48,0xa6,0xab,0x29,0xbd,0x4d,0x10,0x40,
0x10,0xef,0x8,0x1c,0xa8,0xeb,0x73,0x90,0x58,0xe2,0xfe,0x8,0x3f,0x8d,0x9d,0x79,
0xfd,0x22,0xb0,0x26,0x60,0xdd,0xba,0xb5,0xb0,0x6c,0xd9,0x32,0x69,0xeb,0xab,0x32,
0x6d,0xc2,0x65,0xc,0x75,0x16,0x63,0x72,0xd1,0x16,0x6f,0x70,0x83,0x3f,0x9,0xff,
0xd2,0xad,0xff,0x7,0xda,0xab,0x3a,0xc2,0x82,0x19,0x8d,0x66,0x8e,0xd4,0x1f,0x6b,
0x46,0x8f,0x29,0xee,0x14,0xee,0xb5,0x60,0xc5,0x5e,0xb3,0x26,0x0,0xf3,0xc0,0xf,
0x71,0xb2,0x86,0x47,0xa,0xe6,0xf3,0xfd,0xfb,0xf,0x90,0xf3,0xa8,0xa7,0x67,0x9e,
0xcc,0xa0,0x77,0xe2,0xed,0x8d,0xed,0xb,0xf0,0x35,0x1d,0x3f,0x99,0xc4,0xf4,0xf5,
0x43,0xfc,0x79,0xe,0x2a,0x24,0x86,0xea,0x62,0x9e,0x42,0x79,0x98,0xdc,0x83,0x39,
0xfc,0x98,0xa3,0x7f,0xf0,0xd0,0x21,0x18,0x1c,0x18,0x74,0x2b,0xe,0xbd,0xdd,0x19,
0x28,0xac,0x57,0xa3,0xfe,0x33,0x30,0x8c,0xc0,0xb4,0xde,0x4e,0xd0,0x65,0xe3,0xad,
0xa9,0x12,0xfc,0x33,0x8e,0xe5,0xc5,0x9c,0x97,0xed,0x84,0xdd,0xb7,0x8a,0x8,0x1f,
0xbf,0xae,0x89,0xde,0x6d,0x34,0x62,0x13,0xfd,0x4c,0x74,0xf6,0xb9,0xf8,0xf,0xe,
0x43,0x20,0xc0,0x96,0xd3,0xb4,0x57,0xf5,0x31,0x34,0x34,0x1a,0x1,0xd8,0x1a,0x29,
0xcf,0xd,0x94,0x9d,0x5c,0x93,0x40,0x35,0xb8,0xc9,0x4d,0x99,0x26,0x60,0x31,0x80,
0xc6,0xc9,0x3,0x60,0x5a,0x8d,0x55,0xf7,0x7f,0xf1,0xe2,0xb0,0xf3,0xf9,0x53,0x4f,
0x3d,0x3,0x77,0xdd,0x75,0x47,0xc,0xef,0x4e,0x13,0x15,0xe7,0x95,0xfb,0x16,0x8e,
0x8d,0xdb,0xd7,0xb2,0x18,0xf5,0xc1,0x53,0xc7,0x22,0x4,0x5e,0xf2,0x35,0x12,0x4a,
0xb1,0xc8,0x4d,0x6f,0xbf,0x7c,0x4e,0xe6,0xdb,0x63,0xb7,0x5f,0x34,0xb,0xce,0x9c,
0x39,0xb,0x47,0x8f,0x1e,0xa1,0x6c,0xbf,0x44,0xc9,0xe9,0xa9,0x42,0x94,0x23,0xc0,
0x78,0xac,0xcd,0xb6,0x8e,0xfd,0xdb,0x6c,0x33,0x95,0x85,0xfa,0x6a,0x97,0x7a,0x8e,
0xe7,0xc1,0xa4,0x26,0x8c,0xd4,0x60,0x61,0x10,0x3a,0x36,0x51,0x93,0xa1,0x52,0xde,
0xa2,0xad,0xee,0xbb,0x5e,0xfe,0xf1,0xa8,0xfc,0xf5,0x95,0x98,0x4f,0x24,0x0,0xc,
0x8b,0x99,0x3c,0x6e,0x2a,0x37,0xa7,0x3d,0x6a,0x1f,0xe7,0xce,0x5f,0x30,0x29,0xdc,
0x1,0xd8,0xc8,0x3e,0xba,0xe0,0xad,0x44,0x66,0x81,0x36,0xa9,0xd2,0x6a,0x6,0x26,
0xc7,0x0,0x68,0xb0,0x3c,0x0,0xa7,0x19,0x4,0xc3,0x72,0xd0,0x51,0xa1,0x5,0x70,
0x68,0x69,0x96,0xef,0x9f,0x39,0x73,0x86,0xb8,0xeb,0xea,0x55,0xab,0xd4,0x1e,0xe7,
0xd6,0x7e,0x8f,0x6a,0xeb,0xc6,0x63,0xa,0xa4,0x11,0x3d,0x83,0x38,0x85,0x70,0xef,
0x53,0x8d,0xcb,0x56,0xcb,0x6f,0x3b,0x4c,0xc0,0x31,0x9,0x98,0xe5,0x14,0x2b,0x93,
0xca,0x4c,0xd,0x3e,0x71,0xa8,0x6c,0x3a,0x84,0x2,0xc3,0xba,0x7f,0x4c,0x1e,0x3a,
0x79,0xf2,0x14,0x39,0xb,0x31,0xfd,0xd7,0x77,0xde,0xd9,0xcc,0x10,0xfd,0x4,0x64,
0x1a,0x70,0x88,0x31,0x81,0x38,0x2b,0x3,0xb7,0x6b,0x66,0x82,0x16,0x80,0xbf,0x8f,
0xfd,0xc,0x11,0xb8,0x3,0xb5,0x14,0xfc,0x6d,0xa,0xe9,0x61,0x43,0x51,0xea,0x40,
0x54,0xb4,0xd4,0xfd,0x34,0xa9,0x5f,0x1f,0x81,0x8e,0x75,0x6d,0xec,0xa4,0x9d,0xf1,
0xed,0xb,0xb3,0xd2,0x1e,0x5e,0xa5,0x54,0xff,0xf7,0xed,0xdf,0x4f,0x7b,0x54,0x1f,
0x17,0xfa,0x87,0x60,0x70,0x70,0x98,0x8a,0x6e,0x54,0xe9,0xa0,0xd3,0xfc,0x3,0xc,
0xd6,0x45,0x31,0x32,0xf,0x55,0xad,0xfe,0x54,0x39,0x6,0x1b,0xd0,0x7,0x20,0x39,
0xa4,0x8e,0x1f,0xef,0x7e,0xf5,0x24,0x6c,0xbd,0x7c,0xa1,0xf9,0x14,0x2b,0xe9,0x56,
0x2c,0x5f,0x2e,0x63,0xcd,0x8e,0xaa,0xca,0x21,0xa,0xc,0xd4,0x67,0xa,0x24,0x82,
0x96,0xba,0xff,0x4b,0xdc,0x71,0x4e,0x94,0xde,0x48,0x34,0x56,0x33,0x23,0x88,0xfc,
0x2,0x90,0xaa,0xd,0x68,0xb3,0x0,0x89,0x9,0x89,0x2a,0x2b,0x24,0xab,0xcc,0xac,
0xcb,0x51,0x88,0x69,0xc9,0x92,0x45,0x84,0x6,0x84,0x4c,0x2,0x37,0x1f,0x6a,0x7,
0x67,0xcf,0x9d,0x83,0x1,0x4,0x23,0x85,0x31,0xda,0xd6,0x56,0xf8,0x50,0x87,0xb6,
0x3a,0x3a,0xda,0x9,0xee,0x1c,0x73,0xf6,0x25,0xe8,0x47,0x4e,0x55,0x6c,0x86,0xa,
0x97,0xa1,0x48,0xc8,0x3d,0x94,0xb2,0x9d,0x42,0xf8,0x63,0x95,0xfa,0xb1,0x22,0xab,
0x71,0xaf,0xcd,0x58,0x98,0x41,0x74,0xe2,0x38,0x48,0xaa,0x8c,0xe6,0xe0,0xde,0xb4,
0x8f,0xe7,0x9e,0x7f,0x59,0x41,0x80,0xdb,0xd0,0x60,0xce,0x49,0x40,0x65,0x78,0x99,
0x76,0xee,0xf2,0x7e,0x3,0xd5,0x17,0x24,0x98,0x2,0x6,0xd0,0x58,0x99,0xc0,0xa6,
0x57,0x1a,0x3,0xd9,0x86,0xf9,0xd8,0x91,0x3e,0x58,0xb9,0xac,0x7,0xba,0xe6,0x48,
0xb4,0x18,0x4,0xbf,0x78,0x71,0xfb,0x76,0xd8,0xba,0xf5,0xaa,0x84,0x9c,0x7b,0xa8,
0x4b,0xb,0xa8,0xb6,0xb1,0xe2,0xed,0x9b,0x93,0x84,0x61,0x24,0xc5,0x59,0x6c,0xb3,
0xd5,0xae,0xd,0xc4,0x1c,0x84,0x29,0x8c,0x40,0xf7,0xaf,0xc3,0x36,0xe8,0x3e,0xb2,
0xe,0x12,0x26,0xc6,0xd9,0x11,0xac,0x3,0x37,0xe4,0xc5,0x8b,0x3,0x62,0xf4,0xc3,
0xe0,0xd0,0x10,0x79,0xa6,0x65,0xd6,0x5d,0xd1,0xa4,0xdd,0xea,0x5a,0x0,0xdd,0xa6,
0x2b,0xaf,0x2a,0xf5,0x10,0xbb,0xa0,0xa5,0xa5,0x15,0xda,0xda,0x5a,0xa9,0x8,0xa8,
0xa3,0xb3,0x83,0x7e,0xc3,0xee,0x15,0x88,0xe7,0xd2,0xa1,0x3c,0xad,0xe6,0x27,0xd7,
0xee,0xfb,0x84,0x5f,0x1f,0x33,0x72,0xca,0xac,0xad,0xff,0xd5,0xbf,0x36,0x63,0x67,
0xd4,0xbe,0xf4,0xf7,0x31,0x17,0x71,0xe0,0x9e,0xc4,0xbd,0xa9,0x8f,0x13,0x27,0xce,
0xc1,0xe1,0xc3,0xc7,0xc5,0x7c,0xb6,0xaa,0x4a,0xc0,0xc,0x98,0xc2,0x21,0xb0,0x21,
0xbf,0xa3,0x8b,0xe,0x55,0x5e,0x6,0x19,0xb,0x14,0x22,0x64,0x13,0xef,0x18,0xf4,
0xe8,0xbc,0xc1,0x34,0x0,0xb7,0xb3,0x4a,0x46,0xc5,0x49,0x9f,0x7f,0x61,0x2f,0xbc,
0xf1,0x96,0x8d,0x66,0x21,0x10,0x23,0x1f,0xbd,0xcc,0x98,0x47,0xee,0xf6,0x85,0x8b,
0x62,0xae,0x95,0xb8,0xbc,0x2d,0x71,0x1d,0x9,0xec,0xb8,0xb5,0x92,0x4a,0x3f,0x53,
0xcd,0x6c,0xdf,0x1b,0x30,0x26,0xcf,0xb6,0xe3,0x20,0x4c,0x30,0xb,0xf4,0x75,0x68,
0x55,0x1f,0x9,0x8f,0x1c,0x48,0x2a,0x1d,0x57,0x62,0xd5,0x67,0x4c,0xe5,0x59,0x7b,
0x7b,0x1b,0x49,0x6e,0x7,0xaa,0xba,0xca,0x86,0xe2,0x5c,0x13,0x89,0xdb,0x6c,0x14,
0x61,0xd6,0xa5,0xe3,0x4a,0xa6,0x69,0x63,0x1a,0x71,0xd9,0x34,0x20,0xd,0x1d,0x46,
0x96,0xee,0xd8,0xab,0xd7,0xd6,0x77,0xd7,0x88,0xa7,0xb4,0x97,0xf7,0x6f,0x29,0xc9,
0x5d,0x11,0xad,0x4c,0x7d,0xd7,0xa6,0xcd,0x4b,0xb5,0x18,0x7a,0x65,0x9c,0x50,0x8,
0xc6,0xfb,0x71,0x4f,0x1a,0x1f,0x8e,0x38,0xd1,0x13,0x4f,0xbe,0xa8,0x5a,0xb2,0x47,
0x2d,0xce,0x58,0x62,0x9e,0x84,0xe7,0xf4,0xa3,0x4a,0x4d,0x99,0x8d,0xc9,0xb0,0xda,
0x6b,0x92,0xa3,0x3,0xd,0x67,0x2,0x98,0xc6,0x9f,0xba,0x66,0x39,0x93,0x23,0xc,
0xbc,0xc3,0x47,0xfb,0x61,0xf9,0xd2,0x4e,0x29,0xd,0x5,0xa7,0xc4,0x2c,0xab,0xd7,
0xbf,0xfe,0x16,0x70,0xd1,0x78,0xad,0xcd,0xc2,0x23,0x29,0x9c,0x60,0x2d,0xc6,0xa5,
0x8b,0x27,0x59,0x9c,0xc,0xbc,0x84,0x6c,0xbc,0xb8,0x96,0xc1,0x2d,0xe7,0xe,0xf3,
0x7c,0x14,0xac,0xe,0x26,0x10,0x37,0xb,0xa2,0x7b,0x62,0xe,0xa3,0x40,0xf5,0x1b,
0x11,0x92,0x50,0x90,0xb3,0x52,0x60,0x80,0x3c,0xfd,0x2a,0x3d,0x66,0x83,0x7a,0xb0,
0x64,0x58,0x77,0x1f,0x6,0x3b,0x34,0xd9,0x81,0xaa,0x33,0x70,0x58,0x36,0x35,0x3,
0x5a,0x13,0x48,0x26,0xfa,0xf1,0x13,0xbe,0x1f,0x89,0x70,0x9b,0xb0,0xb0,0xc4,0x88,
0x5,0x4b,0xf0,0x63,0xb0,0xc4,0x75,0x2,0x67,0x8d,0xa2,0x6b,0x63,0x29,0x30,0xea,
0xc9,0x1d,0x76,0x6c,0xf5,0x1f,0xf7,0xa2,0xdd,0xb0,0xf4,0x95,0x57,0x8f,0xc2,0x5,
0xa1,0x7d,0xa1,0xed,0x6f,0xf6,0x31,0xf6,0xc,0x84,0xa8,0x19,0xaa,0x7b,0x6f,0x2e,
0x13,0x90,0x69,0xd9,0x8c,0xd2,0xbd,0x65,0x98,0x70,0xf2,0x1c,0x83,0xd,0x15,0x5,
0xc0,0xd,0x8c,0xc2,0x24,0x30,0x9b,0x37,0xc2,0x8d,0x7f,0x71,0xfb,0x1e,0x58,0xb4,
0xf0,0x6a,0xc8,0x65,0xe5,0x44,0x1c,0x3e,0x7c,0x84,0x90,0x70,0xb0,0xf1,0x4,0x63,
0x91,0x47,0xda,0x76,0xb0,0x71,0x5e,0xb,0xd1,0xdb,0x21,0x1d,0x96,0xe0,0xed,0x8d,
0x36,0x6,0x62,0xd4,0x21,0x44,0x16,0x6e,0x7e,0x84,0xd4,0xc2,0xc6,0x1d,0x9a,0xb8,
0x7d,0xaf,0x83,0x1d,0x72,0x83,0x31,0x38,0x26,0xd3,0x18,0x41,0x4c,0x2a,0x99,0xef,
0x87,0xa0,0xb2,0x81,0xa1,0x64,0x18,0x69,0x1c,0xe,0xdc,0xec,0x3f,0xb,0x84,0xc4,
0xae,0xb4,0xc,0x3d,0x46,0x10,0x55,0xe6,0x85,0x9,0xea,0x75,0xb5,0x72,0xec,0xb1,
0x39,0xdd,0x7c,0x7,0x5b,0xa4,0x6e,0x5b,0xf5,0x10,0xd6,0xf5,0xf7,0xf7,0xf7,0x53,
0xa9,0x33,0xde,0x33,0x96,0x16,0xa3,0x9,0x23,0xaf,0x8d,0x59,0x21,0x63,0xe6,0x44,
0x8b,0x20,0x41,0xd3,0xb3,0x99,0x41,0xd2,0x9e,0x89,0xe2,0xfd,0x91,0xe3,0xf,0xf7,
0x20,0xee,0x45,0x7d,0x8c,0x16,0x30,0x67,0x65,0x3b,0x49,0x7e,0x6c,0x1c,0xa2,0xb5,
0x0,0x8d,0xa3,0xc8,0xc0,0xf,0x9e,0x72,0xda,0xab,0x3a,0x8a,0x10,0xf9,0xb3,0x42,
0xb9,0xc6,0xdc,0xf6,0xc7,0x8e,0x57,0x13,0x68,0xf4,0x28,0x80,0x71,0x80,0x64,0x64,
0xd7,0x15,0x9a,0x3c,0x44,0x93,0xc9,0xc3,0x48,0x61,0x4,0x76,0xbf,0x7c,0x1c,0xb6,
0x6c,0x5e,0x62,0xbe,0x8b,0xd8,0xf8,0x3f,0xfa,0xa3,0x3f,0xa2,0xd2,0x62,0xc5,0xe4,
0x86,0x3c,0x25,0x3c,0x94,0xa4,0xd2,0x27,0x37,0xbd,0x70,0x30,0xfd,0x90,0xb,0x8b,
0x8d,0x7f,0xf8,0xd0,0x51,0x78,0x79,0xcf,0x1e,0x38,0x75,0xea,0x94,0x73,0x56,0xec,
0x2,0x7c,0xd9,0xc6,0x8d,0xb0,0x7e,0xc3,0x3a,0x89,0xf4,0xc2,0xb9,0x6b,0x7b,0x3a,
0x4c,0xa0,0x76,0x9f,0x40,0x3a,0x23,0x88,0x33,0x83,0xb4,0xe0,0x1d,0x46,0x10,0xc6,
0xe,0x36,0x1,0x89,0xc4,0x9e,0xaa,0x56,0x57,0x7d,0x6f,0x6c,0x51,0x98,0xb4,0xd6,
0xe3,0x9a,0x58,0xf6,0xbc,0xbc,0x7,0x5e,0xda,0xbd,0x9b,0x30,0xf,0xec,0x3,0xbb,
0x9,0x6d,0x58,0xbf,0x1e,0x96,0x2e,0x5b,0x22,0xb3,0x24,0x13,0x12,0xc5,0x2a,0x6b,
0x5,0xee,0x9e,0x71,0x71,0x1e,0xc1,0x74,0x72,0x6,0x92,0xfe,0x6e,0xd8,0xef,0x85,
0x17,0x5f,0x11,0x66,0x92,0x2c,0xc5,0xc6,0xb8,0x3e,0x9,0xb0,0x40,0x32,0x3,0x23,
0xc9,0x59,0x72,0x9b,0x38,0xa3,0xd,0x68,0xc6,0x2c,0xab,0xe3,0xc4,0x7f,0x4c,0xb5,
0xf1,0xd,0x26,0xdc,0x1c,0x68,0x40,0x6,0xa0,0xeb,0xca,0xb3,0x10,0x66,0xb4,0xb7,
0x3b,0x4f,0x85,0x13,0xbb,0xf7,0x1c,0x80,0x55,0x2b,0xe6,0xb,0xdb,0x36,0x2f,0xc3,
0x2c,0x17,0x2e,0x50,0x57,0x1a,0xf4,0x7,0xb8,0x1b,0x3d,0x29,0xba,0xed,0x87,0x85,
0x34,0x91,0x83,0x53,0xf3,0xae,0xdf,0x47,0x9b,0x17,0xab,0xf3,0xf6,0xec,0x79,0xc5,
0x71,0xee,0xd8,0x7,0x6e,0xbc,0x67,0x9e,0x7d,0x16,0x8e,0x1e,0x3b,0x6,0xb7,0xdc,
0x7c,0x13,0x85,0xe8,0x7c,0xa6,0xe3,0x4a,0x9d,0xb1,0x27,0x2a,0xd9,0xc4,0xe8,0x37,
0xad,0x70,0x35,0x3,0xfb,0x7e,0xb9,0xa5,0x11,0x8d,0xf5,0xf7,0x6a,0x25,0xee,0x89,
0x8a,0xb7,0x27,0xc5,0xda,0x5d,0xe2,0xc7,0x50,0xe3,0x43,0xf,0x3f,0x22,0x6b,0x25,
0x12,0xe,0x64,0xd4,0x38,0x30,0x23,0x71,0xfd,0xfa,0x75,0xb0,0x76,0xed,0x5a,0x68,
0x46,0xb8,0x34,0xce,0x8c,0x4f,0x25,0x49,0x6b,0x8b,0x1b,0x10,0x49,0x2,0x22,0x1a,
0xb8,0xf7,0x50,0x23,0x34,0x61,0xbf,0xb,0x83,0xf0,0xd2,0x4b,0xaf,0x40,0x2e,0xdf,
0x22,0x89,0x1f,0xb5,0x0,0x96,0x75,0x5a,0x82,0x47,0x9d,0x82,0xd3,0x6f,0x3f,0x2e,
0xbe,0x54,0x79,0x37,0x8b,0xb4,0x99,0x89,0x3a,0x32,0x57,0x5e,0xfb,0xe,0xea,0xb,
0x80,0x85,0xa,0x8d,0x80,0x9,0x18,0x45,0xf2,0x98,0x71,0xe8,0x85,0xaa,0x23,0x10,
0xa6,0x4e,0x5e,0xb8,0x38,0x8,0x2b,0x96,0xcd,0x37,0xdf,0xed,0xeb,0x3b,0x4d,0x8b,
0x2c,0x51,0x66,0xc0,0x69,0xb5,0x14,0x5f,0xb4,0xc0,0xea,0x6e,0x23,0xcb,0x63,0xb5,
0x6a,0xa6,0xf1,0xf7,0xce,0x9c,0x91,0xa0,0x9d,0x4f,0x3c,0xf1,0x24,0x6d,0xb0,0x78,
0x3b,0xea,0xf8,0x81,0x4e,0x20,0x54,0x3,0x31,0x26,0x8e,0x1b,0x2d,0xd9,0xb9,0x9,
0xe3,0x92,0xc6,0xd5,0xd5,0xe5,0xb1,0xc3,0x45,0x27,0x13,0x0,0x54,0x91,0xe4,0xe3,
0x93,0xf4,0x95,0xa4,0xbf,0x8f,0xac,0x6c,0xf7,0x2c,0x18,0x18,0xb8,0x8,0xdf,0xfd,
0xde,0x3,0x70,0xf6,0xec,0xd9,0xaa,0xe7,0xc3,0xb5,0x43,0xb0,0x54,0xec,0x9b,0x80,
0x66,0x42,0x6b,0x6b,0xb,0x99,0x6e,0x26,0x1c,0x67,0x77,0x65,0x82,0x2a,0x6d,0xcf,
0xf5,0x50,0xfb,0x7,0xc3,0x9e,0x3f,0xf8,0xc1,0x83,0x8e,0xed,0xff,0xe0,0x23,0xcf,
0x9,0xa1,0x50,0x10,0xd2,0xbf,0x59,0x8,0x2d,0x59,0xed,0x17,0x64,0x2d,0xe9,0x9f,
0xf1,0x19,0x41,0x60,0x1a,0x89,0x82,0xd5,0x43,0x0,0x12,0xbb,0x1,0x6b,0x27,0x8,
0x24,0x66,0x71,0xd6,0x3a,0xc1,0x36,0x26,0x60,0x20,0x4,0x6b,0xe6,0x2a,0xc5,0x0,
0xc2,0x70,0x72,0x1a,0x83,0x8c,0x55,0xb,0xb0,0x37,0xab,0x44,0xff,0x95,0x38,0x81,
0xe7,0xcf,0x9f,0x83,0xee,0xee,0xb9,0xd0,0xd1,0xde,0x6c,0x1c,0x82,0xe8,0x99,0xc6,
0x92,0x61,0xd7,0xa9,0xca,0x3c,0xe9,0xee,0xb6,0xb6,0xb2,0xf1,0xed,0x91,0xc9,0x20,
0xee,0xc0,0xe3,0x4f,0x3c,0x41,0x45,0x1c,0xd2,0xce,0xaf,0x6f,0xe,0x30,0x9,0xe6,
0xc0,0x81,0x83,0x4,0xc7,0x85,0x45,0x30,0x69,0x92,0x6d,0xb2,0xd3,0x3c,0xc7,0xd6,
0x88,0xa5,0x66,0xb6,0x3c,0xa9,0xe9,0xba,0x95,0x54,0x7e,0x1c,0x28,0xd5,0x1f,0x78,
0xe0,0x7,0xa9,0x1a,0x59,0xa5,0xc8,0x6,0xae,0xe9,0xde,0xbd,0xfb,0xe0,0xe8,0xd1,
0xa3,0xe4,0x18,0x45,0x50,0x12,0x84,0xe7,0x82,0x34,0xa7,0xa2,0x45,0xf8,0x72,0xaf,
0xb0,0x28,0xa6,0x2f,0xc6,0xb3,0xcf,0x3e,0xef,0x98,0x84,0x47,0x8e,0x9e,0x26,0x3f,
0x15,0x11,0x7e,0x56,0x30,0x80,0x7c,0x13,0x69,0xae,0x94,0xe2,0x9b,0x51,0x91,0x19,
0xa5,0xfe,0x7,0xb1,0xa6,0x21,0x41,0xea,0x73,0xb0,0xea,0xc,0x62,0x61,0xc9,0x3a,
0x99,0x80,0xdf,0x18,0x24,0xd3,0xa8,0xc,0xc0,0xf5,0x8e,0x42,0x54,0xd7,0x1e,0x4a,
0xb8,0xb0,0x93,0xa7,0xfa,0x60,0xed,0xea,0x25,0x66,0x2,0x50,0x1a,0xac,0x58,0xb1,
0x82,0xfa,0xc8,0xb9,0x6a,0x64,0x72,0xe7,0x9b,0x40,0x2d,0x28,0xb6,0xb8,0xda,0xb9,
0x73,0x17,0x35,0xec,0x40,0x20,0xe,0x74,0xf2,0x8d,0xe7,0x40,0x66,0x74,0xf0,0xe0,
0x41,0x98,0x37,0xaf,0x7,0x3a,0x3a,0x3a,0x22,0x98,0xad,0xd8,0xc2,0xfd,0x1f,0xf6,
0xbe,0x2c,0x36,0xae,0x2c,0x3d,0xef,0x3f,0xe7,0xde,0xaa,0xa2,0xa4,0xd6,0xbe,0xb6,
0xf6,0xb5,0xb5,0xf4,0xb4,0x7a,0x99,0xf4,0xd8,0x6e,0xdb,0x83,0xf6,0x4,0x93,0x49,
0xec,0xc,0xfc,0xe0,0x57,0xe7,0x21,0x79,0xb1,0x1,0x7,0x1,0xb2,0xc0,0x40,0x5e,
0x2,0x18,0x6,0x8c,0x3c,0x18,0xc9,0x83,0x11,0x20,0xb0,0x3,0x1b,0x88,0x9d,0x97,
0x20,0x63,0xc7,0xf1,0x32,0xf0,0x78,0x5a,0x3d,0xed,0x9e,0x99,0x6e,0x75,0x4b,0x6a,
0x6a,0xa3,0x44,0xad,0x24,0x45,0x51,0xa4,0x28,0x89,0x8b,0x44,0x49,0x24,0xab,0xee,
0xc9,0xff,0x9f,0xfd,0x9c,0x7b,0x6f,0x71,0x11,0x8b,0x14,0xa9,0xba,0x8d,0xdb,0x14,
0x8b,0xb5,0xdc,0x3a,0xf7,0xfc,0xfb,0xff,0x7f,0xdf,0x52,0xae,0xeb,0x7c,0x5c,0xff,
0xc5,0xba,0xae,0xbc,0xf5,0x37,0x5e,0x1a,0x79,0x63,0x3f,0xfa,0xd1,0x27,0xb3,0xf2,
0xc8,0x9a,0x1d,0x74,0x8f,0xfb,0xfb,0xef,0xca,0xd0,0x8e,0x94,0xf6,0xba,0x75,0x6b,
0x15,0xb7,0x22,0xcc,0xc4,0x9c,0xe4,0xaa,0x28,0xe4,0x4d,0x10,0xbf,0x83,0x2d,0xfb,
0xe1,0xbe,0xfc,0xe8,0xe3,0xd3,0x32,0x9,0x5b,0xa9,0x74,0x60,0x8,0x50,0x83,0x4a,
0x52,0x53,0xa8,0xbb,0xda,0x3,0x30,0x6,0xc7,0x19,0xa0,0xf8,0x2c,0x61,0x4,0xf2,
0x15,0x40,0x41,0x15,0x67,0x2e,0x4a,0xa0,0x44,0x1,0x7c,0xd7,0x53,0x0,0xf5,0x97,
0x46,0x1,0x4,0x76,0x8c,0x99,0x1,0x8a,0xba,0xf4,0x4,0x9e,0xa1,0xe0,0x52,0x92,
0x65,0xf3,0xa6,0xb5,0xf6,0x79,0x74,0x53,0x68,0x10,0x25,0x66,0x48,0x2d,0xa2,0x54,
0x1e,0xbc,0x37,0x28,0x4b,0x37,0x94,0x44,0x1c,0x1e,0x1e,0xe,0xdc,0xb8,0x17,0xb6,
0x93,0x28,0x41,0x44,0x6,0x7a,0xe8,0xd0,0x1,0xd9,0x60,0xe3,0x4b,0x96,0x28,0x6d,
0x87,0x5d,0xc4,0xf0,0x4a,0x34,0x3f,0x5f,0x96,0x7b,0xee,0xb,0x0,0x41,0x86,0x7d,
0x84,0x6e,0xff,0x8b,0xa,0x7f,0xac,0xac,0x29,0x7c,0xec,0xee,0xbe,0x26,0x3b,0x28,
0x9,0x90,0xe5,0x35,0xd3,0x33,0x51,0xb0,0x6f,0xfc,0xfd,0xf3,0xe9,0xa7,0x3f,0x91,
0x61,0x9f,0x39,0xba,0xae,0xf4,0xa0,0xe2,0x1f,0x40,0xe1,0x57,0x6e,0x7f,0x45,0xbb,
0xfe,0xaa,0xa5,0x57,0x37,0x1,0x59,0x6f,0x82,0x6b,0x2a,0x70,0x96,0x83,0x7d,0xb7,
0x9f,0x63,0xaa,0x5,0xdc,0xe1,0xb,0xb8,0x7c,0x55,0xa8,0x34,0xd9,0x9c,0x50,0xc1,
0x43,0x7a,0x70,0xc9,0xca,0xc,0x2f,0xf1,0xc1,0x74,0xff,0x74,0x22,0x52,0x10,0xb8,
0xa8,0xd5,0xda,0x1a,0xdd,0x84,0x32,0x5,0x97,0x2e,0xdf,0x94,0xb9,0x80,0x5a,0x4d,
0x7d,0x5,0xb2,0x10,0x14,0xbb,0xab,0xe,0x41,0xaf,0xe5,0x52,0x67,0xc0,0x48,0xdb,
0x13,0x44,0x53,0x77,0xf7,0x75,0x78,0x1c,0xb5,0xc9,0x2e,0xf4,0x41,0x9f,0x45,0x9,
0x22,0xe2,0xb7,0x13,0xfe,0x1c,0xfe,0x32,0x9a,0x5a,0x5c,0x22,0x55,0x9f,0xcb,0x82,
0x99,0x64,0x1b,0xad,0x69,0x6b,0x14,0xa2,0xc0,0xb0,0x60,0x40,0x9e,0xe4,0xb5,0x51,
0x3e,0x89,0xb0,0x27,0x24,0xd1,0x6a,0x41,0xf6,0x94,0xf6,0x98,0x9f,0x7c,0xa4,0x89,
0xd5,0xce,0xf3,0x97,0x75,0xd2,0x4f,0xb9,0xfc,0x9c,0xdc,0x7e,0x9d,0xf9,0x37,0x56,
0x1f,0x8c,0xa5,0xe7,0xf9,0xf8,0x3e,0xb6,0xf8,0x8b,0x79,0xa4,0xcb,0x61,0x63,0xc8,
0x58,0x5d,0x24,0x52,0xbb,0x56,0x1b,0xab,0x14,0xc6,0x5a,0x7d,0x1a,0x2e,0x5e,0xee,
0x81,0x7f,0xf4,0xde,0x61,0xfb,0x4c,0x72,0xe7,0x69,0x1c,0xf3,0xcd,0x37,0x4f,0xc8,
0xb6,0x58,0xd2,0x76,0x23,0x23,0xa3,0x52,0xf0,0x69,0x88,0x68,0xbe,0x16,0x84,0x72,
0xc,0x37,0x6f,0xf5,0xc2,0xb5,0xee,0x1b,0x92,0xe4,0x93,0x46,0x75,0xc9,0x75,0xdc,
0xb7,0x77,0xf,0xbc,0xf5,0xd6,0x9,0xd9,0x71,0x17,0x1f,0xe4,0x66,0x12,0xd9,0x85,
0x1a,0xb8,0xc9,0xf7,0xa1,0xb5,0x8f,0x19,0xee,0xb9,0xe7,0x8a,0xd3,0x5a,0x16,0xbb,
0xf3,0x53,0x70,0xed,0x7a,0x2f,0xf4,0xf5,0xf5,0xc3,0xe8,0xd8,0xb8,0xc,0xef,0xe8,
0xbe,0x1f,0x3e,0xb4,0x1f,0xf6,0xef,0xdb,0xa1,0x62,0xfc,0x39,0x1c,0x64,0x18,0xc8,
0x33,0x24,0xa8,0xf6,0x3,0x7,0xf6,0xa3,0x47,0x79,0x50,0xe,0x5e,0x91,0x8b,0x4f,
0xfb,0x8a,0xf6,0x17,0xd,0x5f,0xf9,0xc7,0xb9,0xaf,0xae,0x4a,0xde,0x7,0x5b,0xf6,
0x23,0x5,0xc0,0x12,0xd7,0x87,0xe1,0x61,0x6,0xc4,0xc,0xd0,0x6e,0xb0,0xc8,0xb,
0x77,0x7d,0xf3,0x2e,0x66,0x4e,0xe5,0xc4,0x98,0xe,0x73,0x57,0x0,0x3e,0x48,0xe0,
0x52,0xcf,0x2,0x94,0x6c,0x5,0xd5,0xc0,0x82,0xa,0x80,0x57,0xd0,0x13,0x58,0x85,
0x9e,0x80,0xa,0x57,0x7a,0x7a,0x7,0xe1,0xc8,0xe1,0x3d,0xb0,0x7e,0x9d,0xcb,0xbc,
0xd3,0xd,0x8a,0x6f,0xd2,0x7c,0x8f,0xc7,0x8f,0x9f,0xc2,0xe5,0x2b,0xdd,0x70,0xf1,
0x42,0x97,0x84,0xb2,0xf2,0xbb,0xb1,0x1e,0x3c,0x18,0x81,0xfb,0xf7,0x1f,0xc0,0xd9,
0x73,0x9d,0xf0,0x4b,0x1f,0xfe,0x22,0x2a,0x9d,0x63,0xc1,0x6b,0x29,0x24,0xa1,0xd,
0xa8,0xb0,0xfa,0xda,0xb2,0x3f,0x5f,0x87,0x80,0xd6,0x90,0xd6,0x32,0x3e,0x6e,0xdd,
0xbe,0x7,0x9f,0x7c,0xf2,0x53,0x68,0x64,0xc2,0xeb,0x94,0x23,0x6b,0x3e,0x84,0xa,
0x63,0x0,0x6a,0x28,0x90,0x27,0x4e,0x1c,0x85,0xa3,0x6f,0xec,0x83,0x35,0x6b,0x3a,
0xe6,0xa8,0xf0,0xeb,0xd2,0xeb,0xa0,0xb3,0xd9,0xf1,0x68,0xe4,0x31,0x3e,0xa7,0x7,
0xf7,0xa3,0x2a,0xfb,0xa5,0xd2,0xf2,0x2b,0x96,0x25,0x59,0xfa,0xb3,0x8a,0x80,0x7b,
0x9d,0xff,0x4c,0x83,0xda,0x38,0xca,0xf0,0x70,0x32,0x40,0x81,0xb8,0xcc,0xd5,0x8b,
0x99,0xb5,0x12,0x88,0x64,0x3d,0x5d,0x2e,0xbb,0xc1,0x34,0x8,0x91,0x86,0xad,0x56,
0x57,0x49,0xd6,0x20,0x2,0x54,0x38,0x77,0xfe,0x3a,0xfc,0xd2,0x2f,0x7e,0x6d,0x61,
0x63,0xf8,0x7b,0xc3,0x70,0xf1,0x62,0x17,0x7a,0xe,0x3d,0x56,0x43,0x1b,0x0,0x47,
0x67,0xd1,0x85,0x65,0x30,0xfa,0xe8,0xd4,0x3f,0xc0,0xc8,0xe8,0x38,0xfc,0xfc,0x7,
0xef,0xdb,0x1b,0xe1,0xc0,0x2f,0xbc,0x8,0x0,0x5e,0x6e,0xd4,0xa2,0xa5,0xf,0xf9,
0xc2,0x60,0xc0,0xfc,0x96,0x45,0x20,0xa5,0x5f,0x75,0x5e,0x43,0x57,0xfc,0xa2,0x4c,
0x66,0x55,0xab,0x9e,0xab,0x2d,0xfb,0x2e,0x74,0xc9,0x18,0xef,0xcd,0xf9,0xb,0x57,
0xa0,0xb3,0xf3,0x12,0xec,0xdb,0xb7,0x1b,0x95,0xc1,0x11,0xd8,0xb1,0x7d,0xd3,0x82,
0x7a,0xd8,0x9f,0x9d,0x3e,0xef,0xac,0xbe,0x3c,0x75,0x79,0x4d,0x66,0xfc,0x59,0x5e,
0xbc,0x73,0x49,0x45,0x1e,0x20,0x3d,0x83,0x9f,0xec,0x73,0xc9,0x90,0x92,0xa6,0xa1,
0x57,0x26,0x4,0xf0,0xea,0xb3,0x7a,0x38,0x88,0x9a,0x83,0xaa,0xb5,0xd5,0xb2,0x77,
0x61,0x6c,0x74,0xc,0x6,0x6,0x1f,0xc3,0xce,0x1d,0x6b,0x5f,0x2c,0x6e,0x9f,0x26,
0xad,0xdf,0x8b,0x82,0x7f,0x59,0x86,0xd,0x72,0xb0,0xc6,0xa,0xbd,0x4e,0xdc,0xe8,
0x4d,0x66,0x95,0x80,0xe6,0x30,0x6c,0x60,0x38,0x72,0x1,0xbd,0x4,0x72,0x43,0xbf,
0xf3,0xed,0xf,0x25,0xf9,0xa5,0x2a,0x33,0x25,0x41,0xd8,0xd1,0x76,0x4,0x66,0x9f,
0x9,0x30,0x7,0xd7,0x25,0x3b,0xc2,0x3b,0xa8,0xd7,0x33,0xf8,0xe4,0xd3,0xb3,0xd0,
0xd7,0xdb,0xaf,0xe8,0xb7,0x6d,0x99,0xcd,0x29,0x0,0xa9,0x24,0xf4,0x68,0x6d,0x43,
0x83,0x6d,0xf4,0xdf,0xbd,0xf,0xbd,0x7d,0x77,0xd1,0x53,0x7c,0xd,0xc3,0xb2,0x63,
0x70,0xf0,0xc0,0x2e,0xbc,0x47,0xc9,0xb,0x5d,0x67,0x4f,0xef,0x10,0x3c,0x18,0x1e,
0x91,0xc6,0x48,0x36,0xaa,0xa5,0x5a,0x9,0x70,0x95,0xf8,0x63,0x3c,0x2c,0xe5,0x85,
0x19,0xfc,0xa2,0x3a,0x3f,0x8b,0x94,0x0,0x94,0x8c,0x3e,0x2d,0x78,0xe,0xe0,0x65,
0x9a,0x7,0x6e,0xae,0x4,0xfc,0x32,0x6,0x2d,0x38,0x95,0x5c,0x1a,0xb5,0x69,0xd9,
0x7e,0xb9,0x7d,0xeb,0xbb,0xb8,0x11,0xe6,0xbe,0x60,0xa3,0xa3,0x4f,0xe0,0x72,0xd7,
0x35,0xb8,0x72,0xe5,0xaa,0x1e,0xae,0xe1,0x52,0xf0,0x55,0x63,0x11,0xd7,0x37,0x93,
0x69,0x72,0xe,0xa7,0xbd,0x95,0x15,0xcf,0x20,0xa1,0x8d,0x86,0xd7,0xd3,0xa8,0xa7,
0x70,0xa7,0x6f,0x0,0xfe,0xfc,0x2f,0xbe,0xf,0xdf,0xfd,0xee,0xb7,0xe1,0xd8,0xb1,
0x1d,0x6d,0x69,0x5e,0xa0,0x83,0x20,0xd1,0x6,0x7,0x87,0xe1,0xef,0xfe,0xfe,0x53,
0x78,0xf4,0x68,0x4c,0x66,0xd9,0x93,0x4a,0xd5,0xd6,0xd9,0xa5,0xd5,0x65,0x6a,0xe8,
0x9,0xc,0x3b,0x52,0xe6,0x33,0x4c,0xd7,0xe5,0x39,0xf1,0x74,0x12,0x7e,0xfa,0xd9,
0x59,0xf8,0xfc,0xf3,0x73,0x70,0xf4,0xe8,0x21,0x38,0x7e,0xec,0x20,0x2a,0x97,0x35,
0xf3,0xca,0x9,0x7d,0xf1,0x65,0xa7,0x6e,0xf5,0xd5,0x1d,0x7f,0xba,0xce,0x2f,0xcb,
0xcc,0xdc,0xb7,0xe0,0x7e,0xb6,0xde,0x8f,0xff,0x95,0x9c,0xf9,0xdd,0x21,0x2c,0xee,
0x5e,0xd5,0xc3,0x4a,0xae,0x14,0xa0,0x7e,0x77,0x9d,0xa0,0x73,0x95,0xd3,0x65,0x30,
0xb,0x30,0x93,0x12,0xe0,0x1a,0x57,0x5d,0x64,0x15,0xb9,0x11,0x28,0x17,0xf0,0xec,
0xd9,0x34,0xdc,0xea,0x7d,0x4,0x47,0xe,0x6e,0x9e,0xd5,0xfb,0xd0,0x34,0x5b,0x7f,
0xff,0x10,0x5c,0xb8,0x74,0x15,0xee,0xf6,0xdf,0xd5,0xd,0x41,0xc4,0x62,0xab,0xc1,
0x19,0xed,0xcd,0x34,0xb1,0x9c,0x13,0xfc,0x20,0x41,0x3,0x7a,0x8,0x87,0x36,0x58,
0x5a,0x97,0x16,0x69,0x6c,0x7c,0x2,0x4e,0x9d,0xfa,0x9,0xfc,0xb3,0x7f,0xfa,0x4f,
0x8a,0x97,0x5f,0x2c,0xc5,0xba,0x95,0xd9,0xd7,0x66,0x1b,0x65,0xf1,0xaf,0xd5,0x22,
0xa6,0xe7,0x14,0xc0,0x76,0xb4,0xfc,0x7f,0x82,0xc2,0x3f,0x2e,0xe9,0xb6,0x2b,0xba,
0xc9,0x86,0x4e,0xae,0x1b,0x6d,0x2,0xdc,0x3d,0x61,0x9a,0xc7,0x84,0x85,0xdc,0xa2,
0x7b,0x54,0x27,0x83,0xd1,0x98,0x92,0x49,0xe4,0xee,0x6b,0xb7,0x51,0xf1,0x77,0xc3,
0xae,0x9d,0xaf,0xc3,0x9b,0x6f,0x1e,0xc1,0x9f,0x5b,0xa5,0xe0,0xce,0xe6,0xb8,0xdc,
0x75,0x1b,0x9e,0x4f,0x4e,0xcb,0x59,0x7f,0xe3,0x85,0xa8,0x6e,0xbf,0x44,0x65,0xfb,
0x81,0x85,0x1d,0x7f,0x31,0x78,0x68,0xe4,0x1,0xf8,0x80,0xa1,0x41,0x8,0xe0,0xe5,
0xc0,0x5a,0xe8,0x1,0x2c,0x2f,0x5,0x0,0xba,0x22,0xa0,0xbc,0x80,0xaa,0x82,0xd1,
0xc6,0x4d,0xd1,0x7d,0xad,0xf,0x76,0x6c,0x5b,0x7,0x6b,0x5f,0xab,0x94,0xbe,0x9e,
0x6e,0x1a,0xb9,0xf9,0x17,0x2e,0x5d,0x81,0xa7,0x4,0xac,0x49,0xa4,0x16,0xe8,0x4a,
0x72,0x3b,0x80,0xe4,0x29,0x0,0x2d,0xf8,0xdc,0xdb,0x58,0x8c,0x45,0x6e,0x9a,0x51,
0x0,0xb4,0x9,0x71,0x93,0x99,0x64,0xd4,0x3d,0xb4,0x56,0x84,0xef,0x1f,0xc4,0xae,
0x4b,0x16,0x53,0xb3,0x39,0xc5,0x8e,0xfe,0x2c,0xc1,0x5c,0x20,0xce,0x16,0x54,0x11,
0x78,0x57,0x4d,0x6b,0xb8,0x71,0xe3,0x26,0x59,0xa6,0xa3,0x1e,0xfb,0x54,0x5a,0x7e,
0x55,0x6b,0x4f,0xd2,0xaa,0x1e,0xb5,0x4d,0x42,0x77,0xdb,0x58,0x47,0x42,0x26,0x2,
0xc2,0x2f,0xa8,0x49,0x5,0x90,0x4a,0x4f,0x0,0x15,0x40,0x3a,0x25,0xc3,0xb6,0xe9,
0xfa,0x24,0xdc,0x1f,0x7e,0x4,0x3,0x3f,0xfc,0x14,0x56,0xaf,0xee,0x40,0x45,0x70,
0x14,0x8e,0x1c,0xde,0x7,0x1d,0xb5,0x4a,0xd3,0xc4,0xdf,0xa5,0x4b,0xdd,0x72,0x40,
0x8d,0x92,0x7e,0xa9,0x1d,0xf7,0xd5,0xe4,0x28,0xde,0x35,0xb0,0xa0,0xcd,0x37,0x2c,
0xe0,0x3b,0xc1,0xce,0x2b,0x81,0x78,0x8f,0x41,0xb,0x55,0x40,0xba,0x3c,0x2,0x0,
0x7f,0x73,0x18,0x25,0x40,0xb,0xdf,0x90,0xee,0xba,0x99,0x61,0xf8,0xf1,0x67,0x57,
0xe0,0x9d,0x93,0x87,0x50,0x11,0xac,0x9,0xd6,0xf2,0xd1,0xc8,0x13,0xe8,0xba,0x72,
0x13,0x95,0xc4,0xd,0xbd,0x98,0x1c,0x2a,0xb5,0xd5,0xda,0x6d,0x34,0xac,0x36,0xce,
0xf2,0x33,0xfd,0xb8,0xe9,0x1c,0x74,0x53,0x58,0x61,0x1c,0x27,0x49,0x39,0xc,0xb8,
0x63,0x5d,0xc5,0x80,0xc,0x37,0xc3,0x86,0x8d,0x1b,0x25,0xc3,0xcf,0xf3,0xe7,0xcf,
0xa2,0xb1,0x5a,0x47,0x78,0xd2,0x4a,0xf8,0xeb,0x62,0xc0,0x13,0xf7,0x58,0x99,0x12,
0x28,0x1f,0xf5,0x5d,0x7c,0x45,0xe0,0xe0,0xd2,0x1b,0xb2,0x14,0xb7,0x71,0xd3,0x66,
0xe9,0xe9,0x99,0x1e,0xfb,0x44,0x7b,0x0,0xcc,0xdc,0x3b,0x16,0x59,0x5c,0xa6,0x12,
0xb5,0x92,0x3f,0x49,0xe3,0x19,0x28,0x4c,0x3,0x3c,0xab,0x2a,0x81,0x4c,0xf0,0x6a,
0xca,0x23,0x98,0x94,0x0,0xa6,0x67,0xce,0x5c,0x82,0x2f,0xcf,0x5c,0x80,0x23,0x87,
0xe,0xc0,0x89,0xe3,0x87,0x60,0xf3,0xe6,0x75,0xce,0x6b,0xc4,0xb,0xea,0xe9,0x19,
0x84,0xd3,0x5f,0x74,0x82,0xa0,0x8a,0x14,0x2a,0x22,0x8e,0x27,0xd3,0x21,0x8,0xd3,
0x79,0x8,0x39,0x15,0x1a,0x43,0x7e,0xc5,0x9d,0x45,0x90,0xff,0x5d,0xf8,0x4a,0xc0,
0x20,0x43,0xb1,0x85,0xcf,0x1d,0x2d,0x23,0x5e,0x80,0x99,0x12,0x82,0x5c,0xb9,0x7f,
0x82,0x98,0x6d,0x54,0xb,0x33,0xf5,0x8a,0x7c,0x71,0xf6,0x2a,0x6e,0x8,0x1,0x5b,
0x36,0xad,0x27,0x48,0x15,0x89,0x9c,0x3b,0xfa,0x68,0x44,0x2e,0x2a,0xe5,0xc,0x54,
0x42,0x8f,0x5b,0x17,0xcd,0xb6,0x65,0x72,0x3d,0x4c,0x64,0xe2,0xfe,0xc0,0xed,0x67,
0x1e,0x63,0x2e,0xf7,0x12,0x34,0x7a,0xbe,0x1e,0x37,0x58,0x43,0x37,0x79,0xd0,0xa2,
0xbe,0xf7,0xde,0xbb,0x1a,0x50,0xc3,0x17,0xa4,0xc5,0x21,0xbb,0x2c,0x2,0x39,0x29,
0xfe,0xf7,0xcc,0x2,0x98,0x7,0xcc,0x68,0xa5,0x12,0xc8,0x93,0xa9,0x4a,0x6f,0x5e,
0xb3,0x16,0xbd,0xfd,0xf6,0x49,0xf8,0x2,0x85,0x4f,0x75,0xb1,0x39,0xa1,0xb3,0xa1,
0x9a,0xe7,0x1,0x28,0xa2,0x14,0x50,0xf7,0x46,0x80,0x56,0xe2,0x2a,0x2f,0x90,0xe8,
0x90,0x8d,0x94,0x48,0xa3,0xa2,0xc2,0x81,0x3a,0x79,0x92,0x75,0x5,0x5f,0x4e,0xe1,
0xc2,0xcd,0x5b,0x77,0xe0,0xfa,0x8d,0xdb,0xb0,0x6e,0xfd,0x5a,0xd8,0xb2,0x79,0x93,
0xf4,0x32,0x87,0x86,0x1e,0xe0,0xfe,0xaa,0xeb,0xc9,0x54,0x35,0xa2,0x4e,0x65,0xe9,
0xc4,0x7a,0x8b,0x51,0x4b,0x2f,0x4,0x78,0xe1,0x81,0xf1,0x80,0x2,0xe8,0xef,0x72,
0x0,0xea,0x28,0x3c,0x78,0x95,0x43,0x0,0x7f,0x51,0x5c,0x59,0x10,0xbf,0x42,0xa5,
0xc3,0x2e,0x36,0x3d,0x46,0x1a,0xfd,0xfe,0x83,0x71,0xe9,0xe6,0x51,0x93,0xc6,0xaa,
0x35,0xeb,0x3d,0x1,0xe1,0x96,0xc9,0x16,0xb4,0x32,0xb0,0x49,0xc6,0xa8,0xdf,0x3a,
0xb0,0xfe,0x71,0x4f,0x38,0x30,0xad,0xed,0x75,0x1d,0x36,0xd3,0xa1,0x2,0x6e,0xb8,
0x77,0xde,0xf9,0x9a,0xa5,0xda,0x72,0x2c,0x46,0xad,0xf,0x4,0xca,0x11,0x8e,0x58,
0xe,0x3,0xa1,0xec,0xf5,0xc5,0x33,0xf2,0x8b,0xa5,0x4,0x7c,0x45,0xa0,0x3e,0x27,
0xd3,0xe8,0x44,0xef,0xbc,0xfd,0x26,0x7c,0xf9,0xe5,0x5,0xad,0xac,0xf5,0xbd,0xe7,
0xae,0xcd,0x96,0x41,0x3c,0x5c,0xc3,0x82,0xc1,0x1e,0x79,0x1f,0x12,0x1d,0x19,0xa4,
0xda,0x1b,0x48,0x49,0x9,0x28,0xba,0x2e,0xf2,0x4,0x2a,0xb2,0xc1,0x6c,0x52,0xee,
0x1b,0x52,0x4,0xcf,0x9e,0xd5,0xe1,0x4e,0xff,0x90,0x5a,0x14,0xfc,0x1c,0xd3,0xec,
0xa3,0x3c,0x10,0x97,0x0,0x74,0x53,0xa6,0x3c,0x98,0xea,0xcb,0xc3,0x86,0xfb,0x4,
0x22,0x91,0xeb,0x1f,0x94,0x0,0xd9,0x8c,0xa0,0xa7,0xb,0xa7,0x0,0x5e,0xe6,0xa6,
0xf0,0xa6,0xa5,0x22,0xa5,0xe9,0x81,0xa7,0x44,0x87,0x8b,0xd7,0x5c,0x53,0x8c,0xb4,
0x5c,0xe5,0x6,0xb2,0x86,0xca,0x0,0x67,0xa2,0x61,0xc1,0x16,0xe9,0xa6,0x83,0x6d,
0xb0,0x62,0x1,0x99,0xa3,0xf0,0x72,0xb0,0xc1,0x44,0x18,0x14,0x8,0xbf,0xf7,0x6f,
0x95,0xb8,0x52,0xce,0x94,0x64,0xd6,0xe1,0x75,0x38,0x76,0xf4,0x90,0xa6,0xd7,0x12,
0x33,0xb8,0xda,0xad,0x17,0xfe,0x78,0xc4,0xd5,0x59,0x9b,0x3c,0x26,0x98,0x58,0x42,
0x25,0x50,0x1e,0x9a,0x8,0xb9,0x96,0x27,0x8e,0x1f,0x76,0x41,0xa0,0xd0,0x4b,0xee,
0x57,0xd9,0x59,0x7e,0xe4,0x3a,0xd8,0x27,0xcc,0x79,0x17,0x9c,0x2,0x3,0xf4,0x4,
0xc8,0x93,0x20,0xeb,0x4e,0x71,0x7c,0xa3,0x51,0x81,0x7a,0x42,0x39,0xa5,0x9a,0x54,
0x8,0x32,0xb1,0x2b,0xf7,0x4f,0x66,0xd1,0xa6,0x94,0xa0,0xab,0x98,0xbf,0x22,0x13,
0x7f,0x89,0xea,0xfa,0xcb,0x81,0x7d,0x7a,0x9f,0x2f,0xec,0x28,0x8b,0xd7,0xc,0x12,
0xa2,0xa4,0xb2,0x32,0x23,0x17,0xef,0x1f,0xdb,0x4e,0xee,0x8c,0x9,0x2b,0x6,0x40,
0x2c,0x57,0xae,0x91,0x9c,0x2f,0x53,0xf,0x0,0x3c,0x2b,0x9d,0xb8,0xa,0x1,0xfe,
0xbb,0xd1,0x20,0xf4,0xda,0xaa,0xcd,0x2,0x9b,0x4c,0xb0,0xca,0xd6,0xab,0x50,0x41,
0x61,0xae,0x9,0x7,0x85,0xc5,0x3c,0x6e,0xb7,0x98,0x84,0x33,0x72,0x2d,0x83,0x26,
0xe,0xaf,0xec,0xc4,0x1a,0x4c,0x6f,0x94,0x8a,0x9c,0x54,0xa4,0x8d,0x15,0x71,0x68,
0xb4,0x4c,0xaf,0x16,0xb,0x7f,0x34,0x52,0x6b,0x94,0x5d,0x89,0x27,0x10,0xc0,0x67,
0xe9,0x7d,0x16,0x5f,0xff,0x62,0x78,0x2,0x45,0xfc,0x26,0xe4,0x5,0x1c,0x39,0xbc,
0x5f,0x8d,0x6e,0x6b,0x3c,0x42,0xab,0xc4,0x99,0x13,0xf0,0x38,0x6c,0xb,0x2d,0x2f,
0x8f,0x92,0xa2,0x42,0x2a,0x6c,0x52,0x2,0x59,0x56,0x91,0x5e,0x46,0x6a,0xaa,0x5,
0x8d,0x69,0x5b,0x39,0x90,0xfb,0x46,0x23,0x32,0x83,0x8f,0x29,0xc1,0x35,0xce,0x1f,
0x53,0xc3,0x35,0x2e,0xff,0x0,0xde,0xc8,0x2f,0xf,0xdc,0x7f,0xe6,0x21,0x4d,0xf9,
0x9e,0x66,0xde,0xfa,0xe7,0xc7,0x46,0x5b,0xd5,0x13,0xb0,0x6c,0x15,0x80,0x8d,0xc7,
0x51,0xf8,0xfc,0x18,0x90,0xfe,0x6d,0x85,0xdf,0xc0,0x40,0x6b,0x3c,0x1,0xc5,0x46,
0xdb,0xd0,0xc2,0xa9,0xe8,0xb1,0x81,0xc8,0x37,0xac,0x72,0xcc,0x82,0x8d,0xed,0x84,
0x25,0x14,0x7c,0xae,0x93,0x3d,0x2a,0x2f,0x20,0x24,0x64,0x93,0xe2,0xd5,0xab,0xe3,
0x46,0x3d,0x84,0x1e,0x8,0x97,0x4d,0x2b,0xc5,0x16,0xbf,0x15,0x5a,0x60,0x6,0xe1,
0x27,0x9a,0xb5,0x67,0xcf,0x24,0xd1,0x28,0xf5,0xd5,0x13,0x7e,0x5e,0x91,0xa2,0x23,
0xb0,0x8c,0xdd,0xbb,0x77,0xc1,0x1b,0x6f,0xbc,0x21,0xd1,0x74,0x62,0xb7,0x3c,0x8f,
0xb5,0xb8,0xd0,0xdf,0xa5,0xb8,0xf9,0x9d,0x12,0x81,0x34,0xb2,0x7b,0xe4,0xf0,0x1,
0x8c,0xcf,0xfb,0xd,0xf6,0xb3,0xfb,0xfc,0x48,0xf0,0xf3,0xc2,0xcf,0xc2,0xae,0x3a,
0xfd,0x53,0xed,0x91,0x4c,0x2a,0x72,0xca,0x25,0x51,0x39,0x91,0x68,0xdb,0x79,0x63,
0x5a,0x27,0xc,0xa7,0xb5,0xe7,0xe8,0xc,0x86,0x83,0x9b,0xe0,0x76,0xbf,0x5,0x1d,
0x7d,0xbe,0x60,0x7,0xd7,0xe1,0x5,0xfa,0xcc,0xef,0x11,0x8c,0xb2,0xfe,0x2c,0x87,
0x5f,0xd5,0x52,0x80,0x9e,0x65,0xad,0x0,0x9c,0x12,0x50,0xe,0x3c,0x4b,0x38,0xa,
0x62,0x16,0xc5,0xdd,0xce,0x45,0x52,0xd5,0x82,0x86,0x84,0x94,0x92,0x8a,0x80,0x5c,
0x3d,0xa1,0x9,0x19,0x2c,0xf0,0xa5,0xc8,0x13,0x6f,0x9a,0xa4,0x23,0x73,0x82,0x6f,
0x3c,0xe,0xe9,0x21,0x26,0xaa,0xa,0x41,0xd7,0xf2,0xd6,0xd7,0x8e,0x4a,0xc5,0x42,
0x99,0x67,0xf0,0xd9,0x6f,0x5b,0x1a,0xf7,0x97,0xb,0x3f,0x75,0x30,0xf6,0xf6,0xf5,
0x4a,0xca,0xaa,0x66,0xc3,0x50,0x74,0x9d,0x6,0xde,0xfa,0xc6,0x8d,0x9b,0xf0,0xfe,
0xfb,0x5f,0x87,0x7d,0x7b,0xf7,0x41,0xd6,0x44,0x9,0xb4,0xb6,0xad,0xd9,0x78,0x23,
0xea,0x33,0x69,0x4d,0x4f,0x9e,0x3c,0xe,0xd7,0x6f,0xf4,0x2a,0xdc,0xa,0xd,0x49,
0xe,0x1e,0xf2,0x72,0x18,0xfb,0xfb,0x16,0xd6,0xb5,0xe3,0x6,0x39,0x1e,0xa6,0x72,
0x3c,0xa0,0x73,0x4,0x34,0x75,0x9a,0xa5,0x18,0x1a,0x60,0x38,0xa0,0x0,0x68,0x94,
0xf5,0x97,0x15,0x4,0x99,0x3c,0xc8,0x20,0x3,0xc7,0x66,0x1c,0xc4,0xf5,0x11,0x80,
0x47,0x9c,0xf4,0x63,0x9e,0xc7,0x12,0x5e,0xc7,0xcc,0xd6,0x9d,0x1,0x6b,0x59,0x1d,
0x70,0xd9,0x2b,0x0,0x1b,0xe,0x30,0x16,0x20,0x3,0xe7,0xa1,0xdd,0xf0,0x86,0x6b,
0x40,0x11,0x5a,0xd0,0x86,0x61,0x61,0xc1,0xf0,0xc0,0x5a,0x3,0xa1,0xb4,0x2d,0xcb,
0x59,0xc7,0x62,0x4,0x17,0x99,0x20,0xe4,0x64,0x21,0xb8,0xfd,0x9c,0xa3,0x6f,0xec,
0xd7,0xb0,0xd9,0x2,0x44,0x41,0xe6,0x7f,0xe1,0x5,0xa6,0x8,0xff,0xc0,0x9,0x7f,
0xff,0xdd,0xbb,0xf0,0xd9,0x67,0xa7,0xe7,0xf4,0x8e,0xa4,0x28,0xe8,0x35,0x94,0xe0,
0xda,0xbd,0x6b,0x17,0x64,0xb9,0xef,0xd0,0x9a,0xb1,0x66,0xbf,0xf2,0xe0,0xb0,0x73,
0x1d,0x37,0x1,0xf5,0xf3,0xff,0x9f,0xef,0xfd,0xad,0x14,0x48,0x99,0xdb,0x41,0xe1,
0xe4,0xa5,0xb8,0x8f,0x61,0xf6,0x3c,0x48,0xba,0x5,0xf9,0x1f,0xf,0x9,0x48,0x26,
0x71,0x33,0x59,0x5,0x2,0xd9,0xdf,0xd1,0xb0,0xac,0x3d,0x42,0x1b,0x8a,0x44,0xb8,
0x7b,0x1b,0x50,0xb5,0x47,0xd6,0x3f,0x42,0xf1,0xa,0x5b,0x7f,0xc3,0xbb,0x16,0x25,
0x2d,0xe2,0xa6,0xa0,0xe2,0x4c,0xc1,0x42,0xe1,0x2,0xae,0x8,0x5,0x10,0xe7,0x5,
0xca,0x32,0x2b,0x12,0x93,0x4d,0x68,0xeb,0x8d,0x37,0x53,0xf2,0xe5,0x51,0xa7,0x18,
0x77,0x68,0x48,0xa2,0x28,0x58,0xcf,0x25,0x1,0x13,0xaf,0x25,0x58,0xe0,0xfb,0xb8,
0x14,0xe2,0x91,0x23,0x7b,0x5c,0xae,0xc1,0x23,0xd6,0x70,0x7c,0x7f,0x62,0x1,0xbf,
0x6f,0x9c,0x3c,0xb,0x1b,0x47,0xea,0x78,0x1d,0x67,0xce,0x9c,0x99,0xf7,0xfb,0xd3,
0x6b,0xa9,0xd,0x97,0x20,0xb4,0xf2,0xc,0x82,0xad,0x5,0x37,0x91,0x89,0x77,0x6e,
0xfe,0xad,0xf2,0x37,0xc7,0x8f,0x1e,0x92,0x3f,0x33,0x9f,0x62,0x5c,0xe2,0xc8,0xb,
0xb,0xbe,0x5a,0x86,0xa4,0xe3,0xef,0xf,0x16,0x75,0xdd,0xf9,0x96,0x36,0x91,0x25,
0x44,0xcd,0xa7,0xa8,0x3d,0xc,0x83,0x49,0x29,0x1b,0xbb,0xb4,0x27,0xa9,0xee,0x63,
0x16,0x95,0x78,0xc3,0x8e,0xd1,0x19,0x63,0xfc,0x48,0x9,0x2d,0x26,0x2b,0xb0,0x39,
0x38,0xbc,0x62,0x87,0x72,0xdd,0x55,0x2,0x27,0xd1,0xc4,0x23,0xe6,0xa7,0x69,0xe7,
0xe4,0x1a,0xc5,0x35,0xe8,0xe,0xb4,0x75,0xde,0xc4,0xf2,0x16,0x28,0x8c,0x38,0xc7,
0x46,0xb9,0x65,0xcb,0x26,0x58,0xb7,0x76,0x95,0x2e,0xff,0x85,0xf1,0x7f,0x6b,0x5c,
0xe5,0xb0,0x93,0xdc,0xb9,0xc2,0xaa,0xcc,0x79,0xfd,0xfa,0x75,0x89,0x6e,0x3c,0xdf,
0x83,0x5e,0x4b,0xef,0xe1,0xf8,0xed,0x20,0xf7,0x79,0xad,0xd8,0xb4,0x45,0x6b,0x47,
0x6b,0xba,0x71,0xe3,0x3a,0xd8,0xba,0x7d,0xb3,0x4b,0xe4,0x66,0x5e,0xae,0x27,0x82,
0x49,0xf,0x5c,0x7e,0x3f,0x9,0x57,0x60,0x79,0xdd,0x73,0xc1,0x2b,0xe3,0x71,0x95,
0xe1,0x37,0x7b,0x80,0xb9,0xb2,0xa3,0xc1,0xfa,0x37,0xfb,0x25,0x18,0xfb,0x2d,0x4a,
0x44,0x42,0xc1,0x72,0x95,0x4d,0xf9,0x35,0xbd,0xcf,0x2d,0x50,0x0,0x65,0x9d,0x80,
0x2b,0xf9,0x94,0x8b,0x6f,0x50,0x51,0x53,0x1a,0x2c,0x71,0xdd,0x65,0x89,0xee,0x2f,
0x37,0x5d,0x7d,0xcc,0xdc,0x68,0xdd,0xf2,0xc9,0x74,0xc7,0x20,0xe8,0xbe,0x6f,0xd2,
0xa1,0x99,0xee,0x3a,0xfb,0xda,0x9b,0x47,0x3c,0x5c,0x45,0x28,0x24,0xca,0x68,0x45,
0xec,0x1f,0xb8,0xfe,0x5a,0x9,0x90,0x1b,0x4f,0x3,0x4e,0x2f,0x7a,0xd0,0x7b,0x28,
0xa,0xb2,0x8,0xb6,0x8a,0xb5,0xa,0xe3,0x50,0x94,0x28,0x3,0xe5,0x82,0xbf,0xfd,
0xd6,0xf1,0x20,0x7,0xa0,0x8,0x34,0x84,0xed,0xb9,0xd0,0xa9,0x17,0xf,0x39,0x57,
0x75,0xd9,0x99,0x9f,0x22,0x7a,0x4c,0xc6,0xff,0xb2,0x8a,0x57,0xd0,0xa1,0xc7,0xb9,
0xbd,0xdf,0x76,0x2f,0xa4,0xd1,0xe8,0xaf,0xf7,0x6f,0xbb,0x37,0x4c,0x85,0x88,0x85,
0x9f,0xa9,0x46,0x80,0x5c,0xa7,0x5f,0x70,0x32,0xdf,0xb7,0x2,0x70,0xe3,0x42,0xad,
0x3d,0x5f,0x39,0xf,0x20,0x8e,0xed,0x43,0x12,0x12,0x73,0x53,0x1d,0x8a,0xab,0xeb,
0x1a,0x4c,0xbc,0xce,0x41,0x5d,0x12,0xf4,0x13,0x8c,0xb8,0x19,0x8f,0x1f,0x3b,0x20,
0x27,0xa,0x45,0x16,0xf2,0x15,0xb6,0xe8,0xea,0x23,0x6b,0x1c,0xa,0x28,0x61,0xdd,
0x2d,0x4,0x8c,0x16,0xbd,0x7,0xbd,0x57,0xe0,0x5e,0x3,0x6b,0xb9,0x17,0x10,0xaf,
0x1f,0xad,0x29,0xad,0xed,0x49,0xa9,0x0,0x54,0x72,0x2e,0xd3,0x6c,0x48,0xc2,0x65,
0xb,0xf2,0xeb,0xcd,0xc2,0x78,0xbf,0x30,0xe6,0xf6,0x72,0x2,0xb1,0xf,0xe1,0x72,
0x40,0x3c,0x28,0xff,0x3a,0xef,0xd0,0x78,0x83,0x89,0x7,0xf6,0xe9,0xdd,0x13,0xff,
0x33,0x59,0x9c,0xd8,0x2b,0x88,0xfd,0xfd,0x46,0x20,0x56,0x1c,0xfb,0x2f,0x24,0x2f,
0x40,0xfa,0x6a,0x2b,0x0,0xb5,0xe0,0x9,0xab,0xe8,0x12,0x20,0x97,0x71,0x9f,0xb3,
0x30,0x51,0xa9,0x49,0xdf,0x18,0xd3,0x6a,0xea,0xef,0x53,0x7a,0xfd,0xb1,0xa3,0x7b,
0x6c,0x8d,0xba,0x55,0x96,0xdf,0x4f,0x0,0x31,0x6,0x85,0x0,0x96,0x84,0x59,0xef,
0x93,0x55,0x9a,0x63,0x74,0x6c,0x2,0xfa,0xfa,0x6,0xe1,0xf1,0x93,0x27,0xb2,0xe4,
0xe5,0x1f,0x94,0x65,0x27,0x22,0xd1,0xbd,0x7b,0x5e,0x87,0xd,0xeb,0x57,0x7,0x7f,
0xa3,0xf7,0x22,0xac,0xbc,0xa,0x5a,0x3f,0x16,0xcc,0x16,0xf8,0xc9,0x3b,0xb6,0xc0,
0xf3,0xd,0x61,0x49,0x50,0x68,0x2f,0xe0,0xe4,0x5b,0x47,0x23,0x4,0xeb,0x4c,0xb1,
0xe7,0x98,0xc4,0xa4,0xbd,0x67,0x5,0x71,0x76,0x94,0x5c,0xcb,0xc5,0xe3,0x7e,0x46,
0x9e,0x85,0xbf,0x33,0xe3,0x35,0x90,0xa7,0xe1,0x4f,0x1c,0x7a,0xfd,0x24,0xc2,0xe3,
0xf1,0x12,0x8e,0x83,0x38,0x4c,0x3e,0xc6,0xa5,0xc8,0x25,0x9e,0xbc,0x49,0x95,0xcf,
0xa4,0x28,0x88,0x96,0x4b,0x27,0x60,0x6b,0x6c,0xa9,0xeb,0x21,0xa7,0xfb,0x9b,0x71,
0xd0,0x96,0xdc,0xdd,0xa2,0x0,0x71,0x58,0x4f,0x9b,0xa9,0xd,0xd0,0x80,0x5a,0x25,
0x85,0xed,0xdb,0x36,0x96,0xc4,0xdc,0xad,0x82,0x2,0xc9,0x8f,0x99,0xd2,0x49,0x2,
0x4b,0x4a,0xc0,0x59,0xf1,0x3a,0xfc,0xf8,0x27,0x5f,0x49,0x5c,0x7c,0x16,0x58,0x29,
0x70,0x9b,0x55,0xbb,0xd0,0xa7,0x4f,0x67,0x70,0xf8,0xf0,0x11,0xf8,0x85,0xf,0xde,
0xb6,0xa0,0x19,0x46,0xa1,0x9c,0x7c,0xeb,0x2d,0xf,0x3e,0xbb,0x98,0x3a,0x6c,0xe1,
0x3d,0x1c,0x77,0x50,0xf2,0x6f,0xe7,0xce,0x6d,0xd0,0x51,0xab,0xca,0x2a,0x8e,0x9c,
0xf9,0xa7,0xa4,0x60,0x92,0xc9,0xe4,0x5d,0x28,0x84,0xbe,0x32,0x80,0x3c,0x51,0x94,
0x98,0xeb,0xe7,0x8b,0x8,0xb5,0x4f,0x78,0x42,0x9c,0xd9,0x5e,0x12,0x60,0xe0,0xe6,
0x9a,0xcd,0xff,0x75,0x77,0x15,0xcb,0x13,0xb,0x7b,0x23,0xff,0x5,0xf0,0x51,0xde,
0x85,0xce,0xad,0xe3,0xaf,0x89,0x52,0xf5,0x65,0x3d,0x13,0xaf,0xb6,0x7,0x90,0x77,
0xad,0x12,0x55,0xa,0x24,0x1,0x11,0xae,0xa7,0xc0,0xc4,0xf4,0xb1,0xe6,0xa6,0xe6,
0x1f,0x68,0x28,0x45,0xf1,0xee,0x7b,0xc7,0x6c,0x96,0xdf,0xbb,0x6d,0x91,0x80,0xbc,
0xb8,0x22,0x28,0xb2,0xfe,0xf6,0xfa,0xf1,0xbf,0xc9,0xa9,0x49,0xe9,0xb2,0x9b,0x83,
0x80,0x33,0xff,0xea,0xaf,0x3f,0x86,0x27,0x13,0x13,0x12,0x45,0x49,0x85,0x37,0x69,
0xce,0x84,0x5b,0x6,0x26,0x14,0xac,0x9e,0x9e,0x3e,0x78,0xf8,0xf0,0x11,0xfc,0xf3,
0x5f,0xf9,0x10,0x85,0x4d,0x3d,0x97,0xde,0xf3,0xe8,0xd1,0x37,0xa0,0x4a,0x13,0x70,
0xcc,0xa7,0x32,0x5f,0x68,0x2f,0x80,0xe5,0x14,0x9c,0x5d,0x39,0x9d,0x5c,0xfd,0xc6,
0xfb,0x27,0xe1,0x27,0x9f,0x75,0x6,0x95,0x1b,0xf3,0x37,0xd5,0xa3,0xe0,0x14,0x37,
0xb,0x38,0xfe,0x58,0x6c,0xe7,0xa3,0xc7,0x9b,0x85,0x33,0xce,0x33,0x60,0x5a,0x9a,
0x99,0x86,0x86,0x53,0xde,0x81,0xf7,0xb9,0xc2,0x1,0x7d,0xc4,0xad,0x8d,0x2c,0x37,
0x8,0x14,0xba,0xf4,0x6c,0x91,0x2b,0x1,0xbc,0x2d,0xfa,0xf9,0x1b,0xed,0x4a,0x7e,
0x89,0xcb,0x6,0x7,0xbc,0x6e,0x7e,0xaf,0x81,0xea,0x26,0x3b,0xf6,0xc6,0x6e,0x3d,
0xff,0x2f,0x7c,0x74,0xa7,0x62,0x41,0x65,0xf3,0x15,0x7e,0xff,0x67,0x3e,0xee,0xa7,
0x9f,0x5d,0x5d,0x57,0x82,0x86,0x9f,0x1f,0xfd,0xc3,0x97,0x30,0xf1,0xf4,0x99,0x9c,
0xa5,0x27,0x5,0x50,0xab,0xbd,0x26,0x69,0xab,0x3b,0x3a,0xd6,0xe2,0xf9,0x9a,0xfa,
0x9d,0x7e,0x76,0xe0,0x63,0xf8,0x38,0x3d,0x87,0x80,0x2e,0x9e,0x3e,0x7d,0xe,0x9f,
0xfe,0xb8,0xd3,0xbe,0xf,0xbd,0x27,0xbd,0x77,0xdc,0x68,0xe4,0xae,0xe3,0xc5,0x12,
0x82,0x21,0x3b,0x73,0x7e,0xdd,0x8c,0xa9,0xa4,0x35,0x3e,0x79,0xf2,0x98,0x2b,0x1,
0x4a,0xad,0xdb,0xb0,0x9e,0x6b,0x10,0xb6,0x15,0xa6,0x60,0x58,0x93,0x4c,0x3b,0x2b,
0x31,0xc,0xf1,0x50,0x8f,0x8b,0xd9,0x43,0x5a,0xaf,0x22,0xb2,0xf,0x1e,0xc6,0xf6,
0x81,0xd2,0x9,0xab,0x12,0x45,0x75,0xff,0x85,0x8e,0xf9,0xdb,0x39,0x80,0x59,0x59,
0x58,0x3d,0x1e,0x64,0x68,0xb8,0x2d,0xc3,0x8f,0x8b,0xeb,0x32,0xe1,0x3a,0xc2,0x68,
0xd3,0xd5,0x6a,0x95,0xc0,0x53,0x88,0x3d,0xb6,0x66,0x5c,0xf4,0xb3,0x37,0x9a,0x2c,
0x12,0x98,0x90,0x44,0xe3,0xf9,0xf3,0xe7,0x1,0x92,0xed,0xc0,0xe0,0x23,0x18,0x1c,
0xbc,0x2f,0x51,0x74,0x24,0x61,0x5,0x71,0xd6,0x25,0x55,0x49,0x5a,0xc1,0xbc,0x76,
0x58,0xd9,0xf4,0x42,0x1e,0x40,0x43,0xa1,0x2d,0xd3,0x34,0x5c,0xbd,0xc1,0xe5,0x6b,
0xef,0xf,0x8f,0xc3,0xb6,0xad,0x6a,0x2e,0x9e,0xde,0xfb,0xf8,0xb1,0xe3,0xa8,0x2c,
0xaa,0x1e,0x25,0x7b,0x6c,0xe8,0x66,0xef,0xe5,0x94,0x1,0x96,0x14,0xb5,0xd2,0xfa,
0x0,0x2c,0x84,0xf8,0x6b,0x2a,0x0,0x2a,0x11,0x28,0xd0,0xb3,0x11,0xda,0x1a,0x9b,
0x9e,0x0,0xd7,0x88,0xc5,0x62,0xa8,0xa1,0x17,0xb4,0xb8,0x41,0xf8,0x24,0x20,0x80,
0xf9,0x12,0xe0,0xaf,0x49,0xe6,0x85,0x4,0x65,0x1e,0xc7,0xd2,0x1e,0x6d,0xf,0xa0,
0x69,0x48,0xc0,0x5c,0xd6,0x37,0x20,0x74,0x74,0xe3,0x9a,0x82,0x29,0xcb,0x73,0xef,
0xde,0x7d,0xb,0xcf,0x6c,0xad,0x24,0xe4,0xf1,0xe0,0xfc,0x32,0x5a,0xe8,0x71,0xc0,
0x8c,0xa3,0xba,0x45,0xd6,0x1f,0x98,0x1b,0x30,0xb9,0xdc,0xd5,0x15,0xb0,0x1c,0x9d,
0x3b,0x77,0xd9,0x32,0x2b,0x4b,0xba,0x2a,0xfd,0x93,0x10,0x94,0xc8,0xca,0x13,0xa0,
0x65,0xd,0x7f,0xa6,0xe4,0x1d,0xe8,0x53,0x41,0x6e,0x75,0x48,0xec,0x4,0x7a,0xdd,
0xb9,0xce,0xab,0x41,0xa2,0xf0,0x72,0xd7,0xe5,0x90,0x5c,0x73,0x8e,0x5e,0x40,0xc8,
0xd2,0xc4,0x72,0x8f,0x85,0xd3,0x8b,0x6e,0xd,0xcd,0x67,0xd1,0x1a,0xf7,0xf,0xdc,
0xd3,0x1e,0x80,0xd0,0xf1,0xb7,0x8,0xc2,0x0,0x3f,0xaf,0xe1,0x1c,0x81,0xb0,0xc5,
0x3b,0xec,0xa,0x28,0xbf,0xff,0x73,0x51,0x6,0xc1,0x40,0x92,0xff,0x5f,0x89,0x7,
0xc1,0xa2,0xe4,0x72,0x0,0x24,0xd8,0x56,0x0,0x2f,0x93,0x22,0xe0,0x41,0xf2,0xcc,
0x1f,0xff,0x34,0xa4,0x1f,0x97,0xbb,0x6e,0x59,0x9e,0x7a,0xbf,0x19,0x27,0x66,0x95,
0xcd,0xcd,0x86,0xb3,0xa2,0x84,0x5e,0x33,0x4b,0xc9,0xa,0xad,0x3f,0x7d,0x36,0xf5,
0xf0,0x9b,0xe3,0xee,0xc0,0x3,0x8c,0xe3,0x47,0x65,0x9f,0x83,0x81,0xd1,0x92,0x67,
0x52,0xf5,0x60,0xb5,0x56,0xc9,0xd0,0xa0,0x56,0x5d,0xa3,0x84,0xdf,0x2a,0x1,0xa5,
0x0,0x2a,0xf8,0x1c,0x2,0xe1,0xbc,0x37,0xe4,0x28,0xb0,0xe9,0x33,0xe8,0xb3,0xfc,
0x29,0x43,0x5f,0xc9,0xf9,0xd7,0xd8,0xcc,0xb2,0xc7,0x8f,0x15,0xf1,0x37,0x1a,0xe,
0x47,0xd3,0xd6,0x4c,0x7,0x7d,0xf6,0xf9,0xf3,0x5d,0x2e,0xb7,0x92,0xf9,0x89,0x6b,
0x2f,0xc,0x88,0xb2,0xf2,0xe5,0x5e,0x3f,0x5b,0x40,0x63,0x11,0xc1,0x7c,0x71,0x9e,
0x63,0x3,0xf6,0x95,0x42,0xdb,0x3,0x58,0xae,0x35,0x3,0xbf,0xa7,0x5b,0x6f,0xe2,
0x67,0xcf,0x26,0xe1,0xf3,0xcf,0x4f,0x5b,0x22,0x10,0x16,0xb0,0xca,0xf2,0x42,0x92,
0xd2,0x3c,0x3,0x6e,0xec,0x15,0xb0,0xe6,0x96,0xd2,0x8b,0xc7,0x2f,0x5d,0xee,0xb2,
0x18,0x84,0xb4,0xe7,0xcf,0x9e,0xeb,0x92,0xc8,0xc9,0xd2,0x3,0x20,0xa2,0x4a,0x49,
0x5b,0xa5,0x1b,0x59,0x74,0x7,0x5b,0x62,0x39,0xe2,0x2a,0x4a,0x29,0x18,0xb4,0x5d,
0xd3,0x14,0x55,0x51,0xa,0xa3,0xf3,0x7c,0xb7,0x75,0xea,0xe9,0x33,0xc8,0xd3,0xb0,
0xd7,0xcb,0x66,0xf2,0x6c,0x8a,0xbe,0x43,0xf8,0x9a,0x58,0x39,0x5a,0x22,0x4d,0xee,
0x83,0x68,0xaa,0xcf,0xa6,0x35,0xa6,0x69,0xc6,0x7c,0x7e,0xdb,0x13,0x7a,0xe3,0xfc,
0x17,0x32,0x32,0x15,0x29,0x5,0xb6,0xc0,0x6,0x83,0x95,0x87,0x31,0x45,0x1d,0x54,
0x45,0xad,0xdc,0x6c,0x71,0x94,0x44,0xaa,0x68,0x42,0x62,0x5a,0xa0,0x36,0x7a,0x7d,
0x33,0x37,0x5c,0x6a,0x4e,0x46,0x5,0x0,0xd7,0xf0,0x43,0xa,0x80,0x80,0x2b,0x89,
0xbe,0xfa,0xeb,0x5f,0x7f,0x57,0x62,0x2,0xda,0x6a,0x81,0xd9,0x96,0xcc,0x33,0x54,
0xb9,0x78,0x39,0x1e,0x85,0x15,0x5,0xc9,0xc9,0xa2,0xe4,0x1f,0x93,0x2,0x71,0xfb,
0xf6,0x2d,0xfb,0xcc,0x3b,0xfd,0xf7,0x61,0x64,0x74,0x4c,0xb9,0xf7,0x12,0xb9,0x46,
0x9,0xbb,0x85,0xcf,0x36,0x16,0xd5,0x43,0xb2,0x51,0xe5,0xcf,0x86,0x6a,0x66,0xb1,
0xb9,0x89,0x4c,0xce,0xca,0x8f,0x8e,0x8e,0xc3,0xc0,0xbd,0x11,0xd8,0xf5,0xfa,0x46,
0xf9,0x17,0xa2,0x5a,0x3b,0x71,0xe2,0x38,0xac,0x5e,0xbd,0xba,0x24,0xd7,0x51,0x7c,
0xfd,0xe1,0xdf,0x23,0x26,0x60,0xeb,0x42,0x43,0xce,0x6d,0xa6,0x3f,0x8e,0x8c,0x8c,
0xc0,0xd9,0xb3,0x5f,0x49,0x4a,0xee,0x89,0x89,0x67,0xba,0x5,0x3b,0xa4,0xb5,0x92,
0xa3,0xbd,0x42,0x91,0x83,0x48,0x76,0x1d,0x83,0xde,0x2c,0x4c,0xd,0x2e,0xd3,0xe0,
0x26,0x5c,0x3d,0x77,0x91,0xa8,0xda,0x45,0x8c,0xf4,0x9d,0x5b,0x9e,0xc5,0x92,0xb7,
0x78,0xcd,0xb2,0x82,0x24,0x60,0x9b,0xbd,0x62,0xf6,0x37,0x98,0x73,0x1b,0x4d,0x8e,
0x3f,0x51,0xee,0x3f,0x6d,0xd0,0xef,0x7f,0xff,0xef,0x60,0xc3,0x86,0xd,0x92,0x5f,
0x6e,0xff,0xbe,0xbd,0x9a,0xb6,0xdc,0x3,0xa2,0xf0,0xd0,0x5e,0xe2,0xb1,0x5a,0x6,
0x50,0xd2,0x1c,0x22,0x6c,0xdc,0x18,0x1b,0x90,0x8b,0x17,0x2f,0xe9,0x81,0x23,0x95,
0x90,0x3c,0xf7,0xd5,0x65,0xdd,0xd5,0x58,0xb1,0x9d,0x8e,0x49,0x3c,0xb7,0xee,0x87,
0x16,0xa4,0x10,0xe8,0xbd,0x53,0x3c,0x1b,0x60,0xe3,0xe9,0x34,0xa9,0x43,0x46,0x28,
0x39,0xc9,0x34,0x74,0x76,0x76,0xc3,0xce,0x1d,0x3f,0x23,0x5f,0x4f,0x9f,0x75,0xe9,
0xd2,0x65,0xf8,0xc6,0x37,0xde,0xf,0x7,0x92,0x9a,0x72,0x20,0x8a,0x12,0x8e,0xfb,
0x3c,0x82,0x91,0xc9,0x31,0x10,0xa8,0x6a,0x4f,0x6f,0x9f,0xe4,0x75,0x24,0x62,0x10,
0x73,0x8c,0x8e,0x12,0xb9,0x6b,0x2,0x66,0x94,0x37,0x30,0xee,0x56,0xe8,0xa2,0x6b,
0xf0,0xa6,0xa6,0x84,0x2b,0x2a,0x68,0xc5,0xc0,0x5a,0x9a,0xa0,0x33,0xef,0x29,0xbc,
0xfe,0x0,0xd7,0x14,0xb0,0xb0,0x1e,0xc8,0xdc,0x3d,0x80,0x97,0x28,0x23,0xb9,0x1c,
0xdd,0x1,0x4b,0x61,0x3d,0x39,0xd,0xd3,0xd3,0x2,0x63,0x67,0xa6,0x37,0xe9,0xa8,
0x64,0x92,0xed,0xec,0x3c,0xf,0xdb,0xb7,0x6f,0x87,0x83,0xa8,0xc,0x76,0xed,0xda,
0x29,0x29,0x99,0x55,0x8c,0x6a,0x6a,0xc7,0xcc,0x26,0xf,0x85,0x85,0xe3,0x99,0xd9,
0xbd,0x34,0xe7,0x93,0xc7,0x8f,0xa1,0xa7,0xa7,0xd7,0x3e,0x87,0x18,0x6b,0xc6,0xc7,
0x27,0x34,0x73,0x4e,0x45,0x43,0x56,0xa7,0x72,0x76,0x81,0xf3,0xa2,0xfa,0x1a,0x38,
0x3c,0x3d,0xfa,0x25,0x61,0x90,0xda,0x84,0x9b,0xaa,0xe,0x10,0x80,0xca,0xf8,0xe3,
0x9,0xe8,0xbf,0xfb,0x8,0xf6,0xec,0x56,0xdc,0xb,0x24,0x94,0x27,0x8e,0x1f,0xd7,
0x94,0xda,0x5e,0x40,0x29,0x66,0x16,0x84,0x0,0x72,0x8d,0x79,0x9d,0x79,0xf8,0x4b,
0xa3,0x5e,0x97,0x9e,0x14,0xbd,0xff,0xe0,0xd0,0x50,0x4e,0x90,0x9f,0x3f,0x9f,0x82,
0xa9,0xe9,0x29,0x99,0xc4,0x94,0xb8,0x8e,0xb9,0x64,0x9e,0x57,0x5,0xf0,0xea,0xf2,
0xd2,0xbb,0x10,0x4b,0x2a,0x6b,0xb9,0xea,0xc1,0x52,0x44,0xaf,0xf1,0x1e,0x4e,0xf1,
0x42,0xa6,0x70,0x13,0x56,0xd5,0x46,0x64,0xaf,0x62,0x23,0xe0,0xfc,0x9c,0x29,0x1f,
0x93,0x4e,0xa,0xf,0x87,0xc7,0x13,0x75,0xd8,0xb4,0xa1,0x12,0x3d,0x4f,0x48,0x3a,
0x69,0x3a,0x53,0x14,0x7e,0x42,0xdc,0x21,0xcf,0x60,0xdb,0xb6,0x6d,0xaa,0xf3,0x50,
0xe4,0x95,0x40,0x51,0x43,0x4d,0x5c,0x49,0x30,0xdc,0xf2,0x17,0xd1,0x12,0x9b,0xe7,
0x66,0xda,0xfa,0x73,0x3b,0xdd,0x48,0xf3,0xc,0xa9,0xcb,0x34,0xb,0x1e,0x6c,0x3e,
0x21,0x98,0xf7,0xbb,0xb0,0x3d,0xf,0x24,0xc8,0xa,0x2e,0x8b,0xf2,0x6,0x18,0x16,
0x24,0x53,0xf2,0xfd,0xbe,0xea,0xbc,0xa,0xbb,0x77,0x7d,0x60,0xaf,0xef,0xe2,0xa5,
0x4b,0xf0,0xc1,0x7,0x3f,0x27,0xc3,0xa1,0x2c,0xba,0xd6,0xfc,0x44,0x75,0x89,0xf0,
0xeb,0xf7,0x22,0xcf,0x89,0x84,0x9e,0x10,0x8b,0x9a,0x1,0x97,0x10,0xc4,0x3b,0x3,
0x8d,0xfc,0xa3,0x49,0x36,0x5,0x30,0x88,0x1b,0x0,0xed,0x3e,0xf6,0xc2,0xae,0xcc,
0x76,0xf3,0x9,0xeb,0x2d,0xa8,0x50,0x1,0x96,0x54,0x1a,0x8b,0xc8,0x3d,0x5b,0x22,
0x83,0x2,0xc0,0xc9,0x39,0x93,0xd,0x81,0xb4,0x3b,0xc8,0x9f,0xda,0xdc,0x16,0xe9,
0xb9,0xde,0xbe,0x88,0xe8,0x11,0x85,0x6d,0x64,0x64,0x2,0x15,0xc0,0x86,0xd2,0xd7,
0xd0,0xc6,0x26,0x6b,0x4d,0x27,0x41,0x6e,0xed,0xc3,0xf0,0x80,0x94,0x1,0x71,0xdf,
0x81,0x6,0x23,0x9,0x85,0x53,0xe4,0x72,0x0,0xbe,0xf5,0x1f,0x43,0x2f,0xa3,0x17,
0x5d,0x64,0x73,0xdc,0xbe,0x7d,0xf,0x9e,0x4c,0x3c,0x55,0x8c,0x35,0x89,0x4f,0x59,
0x95,0x68,0x14,0xe4,0x30,0x69,0x57,0xf8,0xad,0xcc,0xa0,0x53,0xca,0x6d,0xc0,0xd2,
0xc8,0x54,0x7f,0xc0,0xc4,0xd3,0x27,0xd0,0xdb,0xf7,0x0,0xc3,0x9a,0xad,0xf2,0x6f,
0xf4,0xd9,0x6f,0x9e,0x38,0x1,0xeb,0x37,0xac,0x97,0x63,0xa5,0x4e,0xf0,0xbc,0x31,
0xe9,0xa8,0x2a,0xc0,0xbc,0xb2,0xd7,0xd8,0xd8,0x18,0xf4,0xa0,0xd0,0x93,0x9b,0x4f,
0x90,0x65,0xb3,0x39,0x86,0xee,0x3f,0xb4,0x68,0xce,0x66,0xe2,0x2e,0x2f,0xc0,0x22,
0x48,0xf8,0x9,0xa6,0x41,0x5e,0x3c,0xca,0xed,0x25,0x76,0x6,0x4a,0x3d,0x83,0x45,
0xde,0xc4,0x4f,0x30,0xea,0x3,0x54,0x0,0x6c,0xb3,0xad,0x5e,0xe4,0xb1,0x48,0xdb,
0x47,0x59,0x31,0x0,0x7c,0x9c,0xc0,0x4,0xee,0xd,0x8e,0xc0,0xa1,0x3,0x1b,0x66,
0xf5,0x72,0xda,0xf0,0xd4,0x5f,0x4f,0xe7,0x6,0x14,0xa0,0x3,0xfb,0xf7,0xc3,0xbe,
0xfd,0xfb,0x54,0xbe,0x40,0x5a,0xa7,0xfc,0x4e,0xf5,0x5d,0x65,0x7a,0xe8,0x2,0xc6,
0xfe,0x60,0xb3,0xf3,0x42,0xd6,0xfd,0x13,0x5e,0xf1,0xb0,0xd,0xd4,0x64,0xa3,0x42,
0xd6,0xe0,0xee,0x3d,0x72,0x65,0xb8,0xd0,0x22,0x91,0x77,0x21,0x8,0x27,0x4f,0x96,
0xc,0x5,0x54,0xa9,0x41,0x88,0x50,0x72,0xeb,0x53,0x70,0xfe,0xe2,0x35,0xd8,0xbb,
0x67,0x8b,0xa5,0xd1,0xba,0x70,0xe1,0x22,0x7c,0xf3,0x9b,0xbf,0x10,0xc,0xda,0x34,
0xbb,0x76,0x6a,0x56,0xea,0x45,0x5,0x78,0xbb,0x87,0xe2,0xfa,0xb1,0x39,0x2f,0x7b,
0x7f,0xff,0xa0,0x9e,0xbe,0xf3,0x4a,0xb2,0x25,0xb5,0x73,0xe5,0xfa,0xb,0xd7,0xa0,
0xd3,0x8c,0x15,0xe5,0x15,0xda,0xb7,0xa6,0xdf,0x0,0xff,0x7b,0x4a,0x39,0x80,0xc7,
0x7e,0xe3,0x42,0xfb,0x98,0x8b,0x6,0x60,0xde,0x48,0x71,0x2,0x63,0x8f,0x9f,0xa0,
0x95,0xcc,0x60,0xcd,0xea,0xb9,0x55,0x57,0x49,0x10,0xbe,0xea,0x3c,0xf,0x9d,0xe7,
0x2f,0xc0,0xf6,0xed,0xdb,0x60,0x3f,0x2a,0x83,0x3d,0x7b,0x76,0xcb,0x90,0x21,0x4e,
0xaf,0x9b,0x3b,0x44,0x2,0x44,0xee,0xb2,0x39,0x6e,0xde,0xba,0xb,0x4f,0x9f,0x4f,
0xca,0x3a,0xbe,0x1d,0x6b,0xb6,0x23,0xcc,0xac,0x0,0xe2,0xbc,0x49,0xc3,0x89,0xc6,
0xca,0x53,0x64,0xab,0x28,0x3a,0xe8,0x51,0x48,0x8,0xae,0x6c,0x1a,0x9e,0x3f,0x7b,
0x2,0x3d,0x7d,0xc3,0x70,0x70,0xff,0x36,0x25,0x90,0x77,0xef,0xc2,0x8d,0x9b,0x37,
0xe1,0xf0,0xa1,0x43,0xca,0x1d,0x37,0x31,0xbd,0xc9,0x67,0x68,0x6c,0x82,0xfe,0x3b,
0xfd,0xf2,0x9a,0x87,0x86,0xee,0xcf,0x7b,0x5e,0x80,0xa6,0x19,0x47,0x46,0x1f,0x43,
0xad,0xb6,0xda,0x11,0xbc,0x58,0x26,0xa0,0x99,0x5d,0x79,0x93,0xa0,0x64,0x42,0x34,
0x63,0xe2,0x58,0xd9,0x5e,0x2b,0x4,0xbc,0x4,0xf,0x53,0xdc,0xb8,0xc3,0x2c,0x4e,
0xa,0x2d,0xf8,0x68,0xe7,0x4a,0xcc,0x1,0x86,0xd6,0x3f,0x91,0x3c,0x71,0x15,0xb8,
0x76,0x63,0x8,0xde,0x3d,0xf9,0xfa,0x3c,0xf3,0xa,0x94,0x2f,0x18,0x92,0xe7,0x99,
0x33,0x67,0x55,0xbe,0x0,0xbd,0x2,0x82,0xe5,0x32,0x77,0xe7,0xa9,0xe7,0x39,0x98,
0x83,0xe6,0xe4,0xcf,0x75,0x5e,0x56,0x6e,0x3f,0xf7,0x90,0x6a,0x4c,0x13,0xa,0x70,
0xeb,0xad,0x94,0x29,0xb2,0x38,0x0,0x35,0x7b,0x82,0x3,0xf5,0x8,0x90,0xf0,0xaf,
0x52,0x84,0x19,0x28,0xcc,0xe7,0x2f,0x5c,0x83,0xfd,0x7b,0x1d,0x99,0x26,0x1,0x8e,
0x8e,0x8f,0x3f,0x86,0x63,0xc7,0x8e,0xc2,0x6a,0x8d,0x26,0x4c,0xbb,0x87,0xf2,0x1e,
0xb7,0xd1,0xda,0xcf,0x14,0xd7,0xcf,0x36,0xe7,0xf2,0xd5,0xf9,0x6e,0x55,0xcd,0xb0,
0x84,0x20,0xea,0x7b,0xb9,0xd2,0x25,0x2b,0x27,0xd3,0xf4,0xbc,0x91,0x88,0x83,0xc8,
0xbd,0x76,0x5,0x7b,0x7,0x25,0x1d,0x8b,0x3,0xa8,0x0,0xd8,0x2d,0xfc,0xee,0xdf,
0xa,0x68,0xca,0x45,0xbb,0x17,0x60,0xd6,0xde,0x94,0x6e,0xf4,0x91,0x4d,0x35,0x69,
0x5,0x6,0x6,0x1f,0xc2,0x63,0xf4,0x4,0xf6,0xef,0xdf,0x1,0xaf,0x6f,0x7b,0xcd,
0x56,0x5,0xe6,0x7a,0xf8,0xf9,0x82,0x5a,0xad,0x6,0xeb,0xd6,0xad,0x45,0xe1,0x6b,
0xa0,0x5,0x1c,0xcd,0x29,0xe7,0xeb,0x37,0xfa,0x61,0xf2,0xf9,0x94,0x66,0xab,0x4d,
0x65,0xaf,0x3f,0x4f,0x4c,0x9c,0xc,0x10,0xf1,0x50,0x86,0xf2,0xae,0x5d,0xe4,0x30,
0x76,0x76,0xf3,0xaa,0x24,0xe4,0xd4,0x4b,0x20,0x11,0x71,0xb3,0xd5,0x72,0xf4,0xf9,
0xe9,0xc4,0x18,0xa,0xf6,0x30,0x1c,0x3a,0xb8,0xcd,0x2a,0x2e,0x52,0x48,0x34,0x31,
0xb8,0x71,0xc3,0x6,0xd9,0x77,0x40,0xa,0x61,0x72,0x72,0xf2,0x85,0xd7,0x98,0xb2,
0xfe,0xbd,0xbd,0x83,0x70,0xf5,0xfa,0x2d,0x18,0x43,0xf,0x80,0x3a,0x14,0x13,0xb,
0xd9,0xc6,0x75,0x25,0x0,0x2,0xc6,0x2d,0x16,0xd0,0x68,0x17,0xf5,0xb7,0x2c,0xe,
0x53,0xd3,0x4b,0xea,0xb4,0xda,0x75,0xc2,0xf5,0xeb,0x21,0x5,0x70,0x8d,0x45,0x54,
0xc5,0x6d,0xd1,0x9f,0xcb,0x82,0x2a,0x78,0x70,0xaa,0xb9,0x53,0x7,0x1d,0x8d,0xd3,
0x3e,0x7e,0xf2,0xc,0xce,0x9e,0xbb,0x22,0x2d,0xe6,0xae,0x5d,0x54,0x2,0xdc,0x9,
0x5b,0x37,0xaf,0xb6,0x20,0x97,0x73,0x3d,0x48,0x90,0x86,0x87,0x27,0x4b,0x14,0x45,
0x3,0x2d,0x72,0x97,0x83,0xa6,0xa2,0x1c,0x0,0x33,0x89,0x3f,0x5e,0x10,0xd6,0xe5,
0x6b,0xf1,0xe5,0x56,0xc3,0x58,0xc6,0x44,0xc2,0xa7,0x55,0x33,0xc5,0xb2,0x54,0xad,
0x4e,0xc1,0xa5,0x2b,0x37,0x61,0xff,0xbe,0x2d,0xa8,0xf8,0x78,0xe0,0xc1,0x3c,0x1a,
0x19,0x79,0xe1,0x65,0xa5,0xef,0x74,0x77,0x60,0x18,0xae,0x5d,0xbb,0xd,0x7d,0x77,
0xee,0xca,0xf5,0x35,0x74,0xe0,0x69,0x5a,0xb5,0xc9,0x4d,0x1f,0xf6,0xbb,0x2c,0xd8,
0xcd,0x7d,0xff,0x80,0x99,0xc7,0x4f,0xc,0x8a,0x60,0xb0,0x67,0xa5,0x86,0x0,0x10,
0x76,0xa3,0x76,0xa7,0xf8,0x8f,0x8b,0xf9,0x51,0xd7,0x76,0x37,0xd0,0xac,0x97,0xd4,
0xe3,0x28,0x14,0xa2,0xaa,0xc0,0x16,0x40,0xc1,0x48,0xd5,0x93,0x49,0xb8,0x77,0x6f,
0x18,0xee,0xdc,0x19,0x90,0xf1,0xf4,0xc1,0x83,0xfb,0xd0,0x75,0xde,0xe,0x1b,0xd6,
0xd7,0x16,0x2c,0x17,0xd5,0x7d,0xfd,0xe,0x2a,0x88,0xba,0xaa,0xfb,0xcb,0xcc,0x7f,
0xa2,0x66,0xfe,0x35,0x78,0xa9,0xe5,0xab,0x2f,0x98,0x43,0x8,0x5c,0xe6,0x8,0xb6,
0xda,0x17,0x18,0xfa,0x2e,0x64,0x75,0x45,0x45,0x29,0x81,0x46,0xb6,0x6,0x9e,0x3f,
0x1d,0x87,0x9e,0xbe,0x87,0x70,0xe8,0xc0,0xd6,0x5,0xf9,0x1e,0xb2,0x14,0x38,0x3c,
0x2a,0x71,0xff,0x6f,0xdc,0xb8,0x25,0x95,0x0,0xad,0x69,0x4a,0x43,0x49,0x89,0xe2,
0xe1,0x53,0xc2,0xaf,0x31,0x1b,0xb9,0x21,0x6,0xd,0xa1,0xb7,0xe6,0xd2,0x42,0xfb,
0x32,0x55,0x2,0x16,0x2f,0x67,0x15,0x10,0xdc,0x5c,0x4c,0x51,0x83,0x7f,0x81,0x9b,
0x25,0xc3,0x7,0xb8,0x89,0x15,0xdb,0xf2,0x3f,0x97,0xb8,0x4a,0x33,0x7,0xb,0xc5,
0x51,0xc8,0xb4,0xf0,0xcb,0x5a,0x7c,0xbd,0xa2,0x68,0xac,0x35,0xd9,0xe4,0x8d,0x9b,
0x7d,0x92,0xa2,0x7c,0xf5,0xaa,0xe,0x49,0x75,0xb5,0x77,0xcf,0x56,0x58,0xb3,0xba,
0x32,0xef,0xcf,0x9f,0x26,0xeb,0x7f,0xbe,0x4b,0xb,0xbe,0x12,0xa,0x13,0xf7,0x83,
0x6e,0xf5,0xb5,0x37,0x3c,0x42,0xe,0xe,0xc7,0x63,0x23,0x41,0x60,0x10,0xe2,0xe5,
0x6b,0x4b,0x29,0x15,0x1d,0xa,0x22,0x4d,0x15,0x36,0x6a,0xab,0xa0,0xeb,0xca,0x6d,
0xd8,0xb7,0x77,0xb,0xa,0xe8,0xfc,0xc5,0x68,0x6c,0xfc,0x29,0xdc,0xc4,0x75,0xb9,
0xda,0x7d,0x3,0x26,0x26,0x9e,0x2a,0xf7,0x3e,0x51,0x44,0x9c,0xb4,0x86,0xa9,0x6,
0x68,0xa5,0xd0,0x86,0x2a,0x1c,0x5c,0xcf,0x2f,0x70,0x4b,0xc5,0xed,0xe8,0xb8,0xe6,
0xae,0x55,0xbd,0x7e,0x80,0x95,0xae,0xa,0x2c,0x39,0x8a,0x45,0x3c,0xce,0xd0,0x58,
0x7c,0x49,0xad,0xc0,0x8f,0x70,0x31,0xcf,0xe3,0x83,0xef,0x6,0xa5,0x95,0x76,0x22,
0x70,0x4e,0x5e,0x0,0xed,0xc5,0x4,0xc0,0x83,0xe,0x57,0xcd,0x38,0x34,0x75,0xd7,
0xd0,0x5c,0x73,0x54,0x46,0xab,0xa3,0x32,0x98,0x9a,0x9e,0x84,0xb,0x17,0xaf,0xc1,
0xb9,0xce,0x4b,0xb0,0x79,0xd3,0x6,0xa9,0xc,0x76,0xef,0xda,0xc,0xb5,0x6a,0x32,
0xa7,0x4f,0xbe,0x7a,0xb5,0x7,0xea,0x8d,0xc,0xaa,0x28,0x90,0xdc,0x58,0x7f,0xb,
0x6d,0xce,0xa2,0x49,0xc6,0x62,0x96,0xda,0x1c,0x5f,0x7d,0x81,0x12,0x0,0x30,0x4c,
0xca,0x2a,0xd9,0x49,0x71,0x38,0xa1,0xf1,0x3c,0x7f,0x56,0x87,0x9e,0xde,0x87,0x70,
0xf8,0xe0,0x96,0x39,0xc7,0xf5,0xb7,0x7b,0x6,0xe0,0xa,0xa,0xfd,0xc3,0x7,0xf,
0x6d,0xb9,0x92,0xb2,0xfb,0xf6,0xfa,0x8d,0xa0,0x1b,0xd8,0x76,0x83,0xcc,0x6c,0x0,
0x5a,0xe3,0xef,0x58,0x48,0xc,0xd2,0xde,0x9d,0x36,0x61,0x1d,0xf5,0xad,0x90,0xcc,
0xe3,0x9f,0x1e,0xa6,0x74,0x33,0x70,0x31,0x3f,0xc2,0x7,0xde,0xf5,0x9f,0x60,0xc0,
0x2d,0xda,0xc7,0xcc,0x8b,0xab,0x48,0x2c,0xb8,0xea,0x43,0x77,0xb,0xac,0x89,0x27,
0xeb,0xb2,0x95,0xd6,0x0,0x6d,0x90,0x22,0xa8,0xd7,0xab,0x92,0x81,0x96,0xb8,0xe9,
0xc7,0xc6,0x9e,0xc2,0xe7,0xa7,0x15,0xbc,0xd5,0xee,0x9d,0x3b,0xe0,0xf0,0xe1,0xbd,
0xb0,0xf3,0xf5,0x8d,0x41,0x6c,0x5d,0x74,0x3c,0x99,0x78,0x8e,0x4a,0xa4,0x5b,0x59,
0x7f,0x43,0x53,0xad,0x63,0x63,0x60,0xdc,0x52,0x97,0x7,0x9b,0x20,0x2e,0xfd,0xb1,
0x7c,0xf1,0x37,0x14,0x7a,0x9f,0xba,0x2a,0x93,0xfd,0x4,0x5c,0x18,0xc5,0x46,0x23,
0xc3,0x75,0x14,0xe2,0x3e,0xbc,0xde,0xd,0xe8,0xd5,0x34,0xc7,0x96,0x21,0x45,0xd5,
0xdf,0x7f,0x1f,0xe3,0xfa,0x5b,0xd0,0xd7,0xd7,0x6f,0x91,0x96,0xa9,0x6c,0x69,0x66,
0x16,0x6c,0xe3,0x12,0x57,0x82,0xce,0xf5,0xef,0x92,0x84,0xd3,0xe3,0x67,0x50,0x4a,
0x80,0x2e,0x2c,0xf1,0xac,0x7f,0x3e,0xc7,0xe1,0x12,0x19,0x6c,0x66,0x0,0x63,0xdb,
0x35,0x28,0xf2,0x59,0xf3,0x95,0xa2,0x4,0xf4,0x94,0xa5,0x46,0x31,0xfe,0x88,0xf0,
0x2b,0xcd,0x5d,0x3b,0x85,0x8b,0xfe,0x1f,0x4c,0xe9,0x48,0x2,0xdd,0xb7,0x96,0xf8,
0x6d,0x45,0x86,0x2,0x20,0xe9,0xc9,0x89,0x27,0x40,0x11,0x4e,0x72,0x89,0xb1,0x97,
0xca,0x76,0x5a,0xc9,0x4b,0x98,0x2a,0xca,0xf2,0xb4,0x5e,0x43,0x81,0x40,0x5,0x90,
0x2a,0x3e,0x7a,0xc3,0x49,0x3f,0x30,0x34,0xc,0x77,0xee,0xe,0x50,0x3b,0xbe,0xcc,
0x17,0x1c,0x3c,0xb8,0x1b,0xb6,0x6d,0x5d,0x9f,0xdb,0x8c,0x54,0xf,0x3f,0xf5,0xf1,
0x69,0x59,0xc0,0x4a,0x65,0xbb,0x6e,0x45,0x93,0x56,0xe8,0x7c,0x4,0x67,0x2e,0xf6,
0x87,0x92,0xd1,0x54,0xf,0x2e,0x3b,0x7,0x57,0x15,0xa3,0xf4,0xc8,0xff,0x29,0x85,
0x42,0xdb,0x43,0xc6,0xe6,0xe8,0x92,0x67,0xd5,0xe,0x59,0x15,0xf8,0xe9,0xe7,0x57,
0xe1,0x67,0xbf,0x71,0xc,0x5e,0x5b,0x93,0x46,0x71,0x3d,0xc0,0xf0,0x83,0x31,0x19,
0xd7,0x13,0x20,0xe9,0xf4,0x74,0x43,0x5e,0x1f,0xe1,0xe,0x58,0x58,0x6d,0xd9,0xb6,
0x9c,0xd8,0xc6,0xa5,0xc4,0xe0,0xeb,0x5b,0xe2,0x4d,0xe6,0xa6,0x18,0x39,0xb7,0xf5,
0x7f,0x3f,0x8b,0x19,0x12,0x72,0x94,0x80,0x72,0xbc,0xca,0xee,0x80,0x9,0x7,0xb9,
0x83,0xc1,0xc7,0xe3,0x63,0xfa,0x5f,0xaa,0x27,0xcf,0x4e,0xe1,0xa3,0x8f,0xf0,0xdc,
0x4,0x96,0x46,0x39,0xd4,0x88,0xed,0x63,0x76,0x71,0x96,0x1a,0x3a,0xe1,0x1a,0x6e,
0x4b,0x1,0x8b,0x32,0x91,0x48,0x2a,0x32,0x82,0xaf,0x4a,0xb2,0xa,0x34,0xd2,0x69,
0x48,0x1a,0x44,0x42,0x82,0x1a,0x18,0xbd,0x81,0x69,0x3c,0x29,0x3c,0x48,0xa6,0x2b,
0xd6,0x33,0xb8,0x7e,0xb3,0x57,0xc6,0xc5,0x6b,0xd6,0x74,0xa0,0x22,0xd8,0xf,0x1b,
0xd6,0xaf,0x95,0xf5,0xfe,0x7b,0x83,0xf7,0xd1,0xed,0xee,0xb7,0xe1,0x45,0x9a,0x7a,
0xa4,0x14,0xd4,0xc7,0xcf,0x34,0xa8,0xa9,0x57,0xfa,0x33,0x33,0xf2,0x36,0xe1,0xcd,
0x7c,0xd8,0x6a,0xd,0x9d,0xc9,0x34,0xa4,0x95,0x75,0x12,0x4c,0x70,0xcc,0x23,0xc,
0x4b,0x66,0x73,0x1c,0x84,0x21,0x20,0x43,0x81,0xa9,0xa7,0xf0,0xf7,0xa7,0xce,0xc0,
0xae,0x9d,0xdb,0xa4,0xc2,0xa2,0xd7,0x8e,0x8e,0x8d,0xc3,0x8d,0x6b,0xb7,0xd1,0x53,
0x79,0xa2,0xa9,0xd5,0x53,0xa8,0xd6,0xaa,0x9e,0x85,0x77,0xec,0x4b,0x36,0xab,0x6f,
0x2c,0xbf,0x11,0x7c,0xfa,0x9,0xae,0xe5,0xd7,0xd0,0x80,0xfb,0x84,0x9f,0x5e,0xc2,
0xdf,0x7a,0x2,0xc1,0x34,0x25,0x13,0x76,0xf2,0xce,0x9b,0xc1,0x7c,0xc5,0x8c,0x93,
0x59,0x36,0xae,0x34,0x38,0xe7,0xe3,0xb8,0x46,0xa7,0xa4,0x2,0xd0,0xcf,0x9b,0x44,
0x2d,0xfc,0xbf,0x71,0xc1,0x7f,0x93,0x4b,0xb,0xc6,0x2d,0xef,0x5d,0x3b,0x1b,0xf8,
0x22,0x1e,0x81,0x1a,0xb0,0x91,0xfd,0xe8,0xb4,0xf1,0x35,0xa5,0x15,0x6d,0x78,0x82,
0xd7,0x22,0xd7,0x9d,0x5a,0x6c,0xd3,0xe9,0xaa,0xcc,0xd,0x18,0x8f,0xa0,0x51,0x99,
0xd2,0x8a,0x60,0x12,0xa6,0xd0,0x6a,0x76,0x75,0xdd,0x70,0x6d,0xad,0x28,0xe4,0xb2,
0x16,0x6e,0x5c,0x7f,0x62,0x36,0xb2,0x7d,0xff,0x31,0xea,0x8c,0xf7,0x3b,0x2b,0x48,
0x0,0x16,0xc0,0xf6,0x34,0xb3,0x94,0x94,0x3,0x10,0x8c,0x42,0x1,0xb4,0xd4,0x7a,
0xca,0xae,0x52,0xd5,0x3c,0x7a,0xba,0x15,0xfa,0x4e,0xff,0x90,0xf4,0x6e,0x14,0xaf,
0x2,0x40,0xc7,0xaa,0xd7,0x94,0xe8,0xf1,0x98,0x6e,0x8b,0x5b,0xf2,0x15,0xe6,0xd5,
0xf5,0xcd,0xdf,0x5d,0xb6,0x1a,0x82,0x4a,0x46,0x48,0xa3,0xcd,0x22,0x4f,0x20,0xf2,
0x78,0xda,0x39,0x0,0xcf,0x43,0xe2,0x6e,0xcd,0x93,0xe4,0x2f,0x29,0x15,0xe3,0x2b,
0x0,0x7a,0xda,0xff,0xc4,0x58,0xeb,0x37,0x1b,0x32,0xde,0xaa,0x3,0xcb,0x88,0x28,
0x23,0x53,0xd6,0xa1,0xed,0x5,0xbc,0x90,0xf6,0xf5,0x99,0x8b,0x85,0xa6,0x33,0x97,
0x37,0x22,0x4b,0x24,0x3,0xad,0xca,0xae,0x53,0x68,0x90,0xa2,0xf0,0x90,0x37,0x30,
0xa9,0x15,0x42,0x55,0xf5,0xe0,0xe3,0x69,0x73,0x32,0xda,0x12,0x26,0x1a,0xd9,0x27,
0x31,0x4c,0x46,0x2c,0x9,0xe9,0xb1,0x59,0xf1,0xe8,0xaf,0xb,0xef,0xc3,0xae,0xb9,
0x2,0xa7,0xbf,0x38,0xab,0xae,0x1,0x44,0x38,0xab,0x40,0xe2,0x7d,0x4f,0x85,0x2c,
0x64,0xae,0x77,0x4a,0x93,0x78,0x36,0x74,0x28,0x20,0x6c,0x4f,0x42,0xcc,0x9f,0x67,
0x79,0x17,0xb9,0x57,0xb1,0xe0,0x26,0x5b,0x1d,0x85,0x27,0x8c,0x85,0x8a,0x80,0x95,
0xc1,0x6b,0x7b,0x70,0x65,0x11,0x33,0xf,0x6b,0x9a,0x8,0x58,0x81,0xc9,0x3f,0xcb,
0x66,0x94,0x58,0x4e,0x4c,0x7c,0xf4,0x8f,0xcd,0x73,0xfc,0xa0,0xed,0x33,0x74,0xeb,
0xae,0xe1,0x66,0x7a,0x83,0x37,0x70,0x63,0x92,0x12,0xd0,0xe3,0xc1,0xed,0x63,0xe1,
0xbc,0x2,0x8b,0xa9,0x9f,0xa8,0x9b,0x42,0x30,0x57,0x52,0x1,0xc8,0xd0,0x40,0x95,
0xc,0xeb,0x54,0x6a,0x43,0x1,0xaa,0xa3,0x27,0x60,0x92,0x87,0x42,0x33,0xd4,0xda,
0x2d,0x6d,0xa8,0xa8,0x2c,0x99,0xa9,0x4b,0x92,0x81,0xb7,0xf1,0x83,0x78,0x38,0x8a,
0x8d,0x21,0xaa,0x4,0xc4,0xbc,0xf5,0xf9,0x84,0x9a,0x1b,0x26,0x92,0x65,0x38,0xa8,
0xe8,0x56,0x5c,0x4d,0xb4,0xda,0xa8,0xca,0x9c,0x80,0xa5,0xd3,0x26,0xc5,0x5,0x1a,
0xbe,0xdb,0x24,0x5,0x22,0xc,0x40,0xf5,0x5e,0x89,0x73,0x51,0x1,0x72,0x42,0x5e,
0x64,0xe9,0x83,0x5e,0x86,0xa8,0xaf,0x9f,0x85,0x2d,0x81,0xed,0xa,0x0,0x67,0xb6,
0xb2,0x42,0x32,0x8e,0xf,0x7f,0x52,0xa4,0x0,0xe8,0x49,0xbf,0x8f,0xee,0xe4,0x1f,
0x36,0x92,0x3a,0x5a,0xa7,0xba,0xba,0x71,0x94,0xd0,0x82,0x76,0x2e,0xa0,0x55,0xca,
0xc0,0xc,0xeb,0x64,0x99,0xb2,0xe2,0xd,0x12,0x6,0x52,0xc0,0x44,0x5f,0x8e,0x42,
0x25,0x93,0x87,0xc9,0x34,0x1,0x60,0x83,0x20,0xc4,0x5f,0xf,0x82,0x87,0xd9,0xc4,
0x5c,0xa,0x2a,0x4c,0xce,0x43,0x69,0x85,0x19,0xfd,0x2,0x1a,0x2c,0x16,0xe2,0xd1,
0xcf,0x4c,0x91,0xa1,0x6,0x85,0x68,0xdc,0x57,0x7d,0x26,0x7a,0x22,0x19,0xd1,0xac,
0x53,0xd5,0x43,0x38,0xa2,0xe,0x29,0xf8,0x8a,0xbd,0x87,0x58,0x7c,0xc0,0x12,0xac,
0x28,0x2,0x4f,0x56,0x50,0x9d,0xf0,0x3d,0xa6,0xfc,0xe0,0x12,0xcc,0xa0,0x8,0x20,
0x70,0xfb,0x1d,0xea,0x3e,0x8b,0x35,0x98,0xc7,0x3,0xb8,0xc2,0x7b,0xff,0xfd,0x61,
0x35,0x87,0x11,0xf1,0xfb,0x7e,0x5c,0x9f,0x46,0x21,0xfe,0x9f,0x25,0x2c,0xfd,0x1d,
0x3c,0x5f,0xcf,0x18,0x6e,0x3e,0xc2,0x88,0x23,0xf6,0x5b,0x43,0x25,0xd4,0x3e,0x5a,
0x90,0x37,0xa4,0x9b,0x94,0x4a,0x45,0xcb,0x53,0xa,0xb,0x94,0x9b,0x96,0x35,0x32,
0xe9,0x85,0x49,0x1e,0xbc,0xa4,0xa1,0xd1,0x79,0xc,0xb,0x4e,0xc3,0x6e,0x6f,0xdb,
0xbe,0xca,0xa0,0x20,0xf6,0xe7,0x5,0x99,0x70,0xcf,0xf5,0x17,0x9e,0x12,0x70,0xd9,
0xc1,0x48,0x98,0x98,0xf2,0x4,0x41,0x44,0x55,0x2,0x97,0x5c,0x12,0xba,0xa4,0x27,
0x42,0xc0,0x43,0xdd,0x4b,0xa2,0xe8,0xbb,0xe8,0x9a,0x1b,0xda,0xa8,0x18,0x25,0x51,
0x9c,0x37,0x81,0x5c,0xbe,0x22,0xe4,0xd7,0x83,0xdc,0x75,0xb0,0x40,0xb8,0xe3,0xa2,
0x26,0xb3,0xdf,0xa1,0xb4,0x63,0x58,0xac,0xcc,0x9d,0xc5,0x2d,0xcd,0x39,0xee,0x29,
0x75,0xde,0xc3,0xef,0xfa,0x67,0xfe,0xb3,0xe2,0xe2,0xed,0x33,0xd4,0x14,0xbf,0x87,
0x9a,0xe2,0xf,0x28,0xee,0xe4,0xbc,0x21,0xb1,0xd7,0x99,0x9e,0xef,0x6e,0x7b,0x1,
0xad,0x3b,0xb8,0x1e,0x14,0x70,0x56,0xd,0x15,0x42,0xc6,0x50,0x68,0x28,0xe3,0xae,
0x18,0x87,0x85,0x66,0xc0,0x89,0x15,0x41,0xbe,0x76,0x1d,0x31,0xf7,0x46,0x6c,0xb5,
0x85,0x0,0xfe,0x85,0x96,0xd1,0x1b,0xb4,0x11,0xac,0x30,0xb9,0xa4,0x7e,0xa,0x89,
0x36,0x54,0x46,0x74,0x29,0xf0,0xfa,0x29,0xe9,0xc9,0xc8,0x53,0x90,0xb9,0x81,0xba,
0x7,0xdd,0xed,0x3b,0x2a,0xc5,0x96,0x7d,0x26,0x4b,0x1f,0x93,0x7f,0x6,0xde,0x2,
0xc4,0x93,0xbf,0x21,0xa2,0x33,0xac,0xc0,0x12,0xa1,0xf3,0x2,0xfd,0xf2,0xaa,0x9c,
0x15,0xf9,0x3d,0x92,0xf1,0x66,0xa,0x80,0x8e,0x3f,0x4a,0xd2,0xca,0xbf,0x49,0xb3,
0xfa,0x11,0xda,0x60,0xd2,0x8d,0xd3,0x37,0xb7,0x1d,0xa,0x2c,0x4e,0xc6,0x96,0xe6,
0x6,0xa4,0x95,0x64,0x2a,0xbe,0x36,0xfc,0x84,0xc6,0x72,0x3a,0x4e,0x3c,0xc7,0x8b,
0x7,0xb1,0x85,0x66,0x26,0x4e,0xf7,0xe3,0x7f,0x8,0xdb,0x7c,0x4b,0xaf,0x61,0xf6,
0xc8,0xd9,0x2c,0x28,0xcb,0x95,0x1d,0x3a,0xbc,0x21,0x5,0xc0,0xa9,0x17,0x82,0x17,
0x7a,0x2,0x31,0x6c,0x58,0xdc,0xba,0xec,0xc3,0xa2,0xe5,0x2e,0x18,0xe2,0xf6,0xe5,
0x82,0xae,0x46,0xf6,0x2a,0xec,0x1f,0x16,0x35,0xa3,0xa5,0x1a,0x19,0xba,0x72,0x9d,
0x64,0x3b,0x7e,0x7e,0x91,0x2,0x98,0xc4,0x38,0xe1,0xdf,0xe2,0xb,0xfe,0x5a,0xc6,
0x9f,0x66,0xb3,0x35,0x24,0x38,0x54,0x5b,0x42,0x17,0x2d,0x47,0xc0,0x35,0xc8,0x66,
0xa6,0x4f,0x2e,0x9b,0xf1,0xcc,0xde,0x16,0x19,0xf7,0x94,0x40,0x91,0x4b,0xcd,0x21,
0x18,0xf2,0x1,0x96,0xb3,0x8c,0xa1,0xe0,0xc6,0x98,0x10,0xd0,0x54,0x3,0xcc,0xb5,
0x53,0x4e,0x96,0xf9,0x20,0xb1,0x6c,0xb9,0x14,0x5e,0x66,0xd,0x4d,0xe6,0x99,0xfb,
0x84,0x3c,0x97,0x0,0xcc,0xc2,0xd2,0x87,0x9e,0x4d,0x99,0x7,0x0,0x5,0x5e,0xd2,
0x8a,0x73,0xfe,0xbd,0x4e,0xca,0x54,0x57,0x8c,0x92,0x7f,0x4f,0xb2,0x3d,0x1b,0x5,
0x40,0xc7,0xdf,0xa0,0xcb,0xf0,0xbd,0x2c,0xa9,0xff,0x5a,0x86,0x31,0xa9,0xd0,0x4a,
0x20,0xcb,0x34,0x42,0x4c,0xdb,0xb,0x58,0x4,0x25,0x60,0x4,0x81,0x5b,0xd6,0x61,
0xc3,0x4f,0xcf,0x34,0x64,0x98,0x2,0x77,0xe4,0x41,0xe2,0xcd,0x47,0x10,0xa,0xeb,
0xff,0xe0,0xb0,0xbb,0xc1,0x0,0x7e,0x8,0xcf,0x32,0x8a,0x2,0x41,0x5f,0xd8,0xfb,
0xec,0xda,0xa5,0x41,0x26,0xe,0x1b,0x7a,0xde,0xc4,0x56,0x9,0x40,0x14,0xa,0xba,
0x1f,0x22,0x84,0x25,0xc1,0x30,0x4c,0x31,0x5d,0x4e,0x2c,0x7a,0x38,0xaf,0xc7,0x44,
0x71,0x2e,0x60,0x85,0xb8,0xfe,0x5c,0x67,0xfd,0xad,0xf5,0x47,0x59,0xc6,0x3f,0xff,
0x55,0xd1,0x6b,0xd2,0xb2,0x9b,0x8c,0x6f,0xf4,0xaf,0xd3,0xb4,0xfa,0x21,0x7a,0x0,
0x9b,0x15,0x11,0xa3,0xb0,0x9b,0xac,0x1d,0xa,0x2c,0xde,0xd,0x55,0xe8,0x55,0xdc,
0x12,0x5b,0xa8,0x3f,0x24,0xd2,0x2b,0x60,0x1a,0x4d,0x58,0xd8,0x9f,0x59,0x41,0x3f,
0xbb,0xdf,0x40,0x13,0x9b,0x76,0xef,0xf1,0xd8,0x88,0x6a,0x24,0x3d,0xf6,0x82,0x96,
0xbf,0x28,0xc4,0x91,0xdd,0xe6,0xf2,0x5b,0x29,0xe1,0x27,0xe7,0x46,0x68,0xcf,0x0,
0x2,0x61,0x2f,0x16,0x7c,0x3f,0xf6,0xf,0x2a,0xfb,0x51,0x73,0x13,0x2b,0x74,0x65,
0x18,0x14,0x2d,0xc3,0x8a,0x72,0xfd,0x35,0xdb,0x93,0xea,0x16,0xad,0x3e,0x24,0x59,
0x2e,0x93,0xf3,0x66,0x13,0x1c,0x83,0xf8,0x46,0xff,0x2a,0xad,0x54,0xff,0x2f,0x6e,
0x2c,0x26,0x6f,0x54,0x92,0x11,0x1d,0xe,0xde,0xbc,0x46,0x5b,0x9,0x2c,0xf2,0x8d,
0x95,0x96,0xdf,0x23,0x23,0xb5,0x10,0xe2,0x32,0x4a,0x30,0xa,0x3a,0x73,0x4c,0xc6,
0x81,0x27,0x0,0x79,0xaf,0xa0,0xa8,0xb,0x30,0xe7,0x3a,0xb7,0x26,0x6e,0x76,0x38,
0x85,0xa,0x7e,0x5c,0x85,0x99,0x22,0x37,0x80,0x16,0x37,0x0,0xc5,0x72,0xcc,0xa,
0x6a,0xfd,0x2c,0xe7,0x46,0xc5,0x3c,0x85,0xac,0xf8,0x33,0x96,0xb1,0x16,0xb0,0xf0,
0x6d,0x4c,0x4f,0x51,0x9a,0x49,0xd4,0x4a,0x55,0x90,0xc,0x93,0x2c,0x97,0x7a,0x65,
0x33,0xbc,0xf7,0xff,0x4b,0xd3,0xda,0x7f,0x95,0x40,0xc,0x69,0xc5,0xc3,0x9a,0xe7,
0x5,0x9d,0x58,0xed,0x63,0x71,0x34,0x7c,0x9,0x8f,0x9e,0x85,0xca,0x4e,0xbc,0xc1,
0x99,0xb0,0x2b,0x30,0x16,0x7e,0x16,0x9,0x4a,0x90,0x27,0x68,0x31,0x5b,0x6d,0x0,
0x4c,0xe1,0xff,0xc,0x4a,0x99,0x2c,0x80,0x11,0x87,0xe8,0xbb,0xf8,0xdf,0xa3,0xb0,
0x3,0x32,0x17,0xef,0xb3,0x15,0xbb,0x2f,0xb8,0x87,0x4d,0x69,0xc0,0x53,0x48,0x76,
0x49,0x86,0x9b,0xbd,0x3e,0x9d,0xc5,0x67,0xfc,0x76,0x5a,0xa9,0xbd,0x83,0x1a,0xfa,
0x5b,0x2a,0xd9,0x6c,0x59,0x16,0x64,0x73,0x4a,0xdb,0x13,0x58,0x82,0x90,0xc0,0x8b,
0xe5,0xd5,0xe3,0x26,0x2f,0xc3,0xad,0x7,0x10,0x78,0x3,0x91,0x3b,0xcc,0x60,0x16,
0x3c,0xde,0x8b,0xf2,0x7d,0x54,0x5b,0xb4,0x6a,0xfd,0x55,0x39,0x26,0x66,0x9,0x3e,
0x1d,0x2e,0x61,0x91,0x3b,0xcf,0x4a,0xfc,0xf8,0xb2,0xe4,0x65,0x91,0x7,0xb1,0xf2,
0x84,0x3f,0x55,0x50,0xee,0x92,0x11,0xba,0x46,0xc3,0x3e,0xbf,0x3d,0xd3,0x7b,0xcc,
0x46,0x1,0x34,0xf0,0x46,0xfd,0x6a,0xa5,0x52,0xfb,0x21,0xde,0x90,0x9f,0x9,0x66,
0xad,0xda,0x4a,0x60,0x89,0x94,0x80,0x70,0xb1,0x3d,0x88,0x40,0x29,0x38,0xde,0x41,
0x53,0xba,0x8d,0x84,0xa8,0x28,0xc6,0x2e,0x94,0x99,0x85,0x8d,0xfd,0x9b,0x7e,0x1f,
0x0,0xdd,0xfb,0xf,0x1a,0xaf,0xcf,0xa3,0xf5,0x89,0x85,0x7e,0xc6,0x0,0x3e,0x54,
0x1c,0xb9,0xa7,0x89,0xe6,0x1a,0x60,0xb9,0x78,0xb5,0xb1,0xf0,0x2b,0xd4,0xa4,0x2a,
0x54,0x2a,0x74,0xd6,0x4e,0x93,0xcc,0x2,0xcc,0x5c,0xb6,0x4b,0x67,0xf9,0x79,0x4f,
0xd0,0xb5,0xfc,0x6e,0x5a,0xe9,0xf8,0x29,0xae,0xdf,0x61,0xb0,0xef,0x4c,0x9c,0x50,
0x8d,0x76,0x4e,0x60,0x29,0x6e,0xbe,0xd9,0xcf,0xc2,0x23,0xf9,0x34,0x9,0x5a,0x9b,
0xe9,0x17,0xee,0x49,0x10,0xf3,0xc,0xf9,0x82,0x54,0x8e,0x5,0xb0,0x78,0xdf,0x47,
0x65,0xaf,0x15,0x93,0x8f,0x57,0xd6,0xcc,0xd3,0xe,0x47,0x71,0x7d,0x9,0xc3,0x51,
0x59,0x19,0x60,0x5,0x84,0xad,0x41,0xcc,0x6f,0x2c,0x7f,0xaa,0x68,0xdd,0x51,0x46,
0x6f,0x90,0xac,0x92,0xcc,0xce,0xe6,0xbd,0xd2,0x39,0x7c,0xee,0x30,0x7e,0xd8,0xb7,
0x2b,0x95,0x8e,0x1f,0xe2,0xc7,0x1f,0xb2,0xda,0xb9,0xa1,0xb4,0x81,0xf0,0x28,0xc6,
0xdb,0x8a,0x60,0xf1,0xc3,0x2,0x97,0x19,0x13,0x1e,0xdf,0x5d,0xc8,0x35,0x5c,0xd6,
0xdb,0xff,0xb2,0xc8,0x84,0xf5,0x6,0x4,0xd7,0x28,0xbd,0xa2,0xac,0x8e,0x7,0xcd,
0x7a,0x78,0x43,0xe1,0x67,0x2b,0xea,0x5e,0xbb,0x41,0x2a,0xae,0x61,0xd3,0x2a,0xd2,
0xed,0x27,0xcb,0x8f,0xc2,0x7f,0x93,0x64,0x94,0x64,0x75,0xb6,0xef,0x99,0xce,0xf1,
0x1a,0x7a,0xf0,0x3,0xbe,0x89,0x4a,0xe0,0x7,0x78,0x21,0x6f,0x1a,0x66,0xd7,0x6,
0x53,0xd4,0x51,0x72,0xa,0xac,0x1d,0x12,0x2c,0xb9,0x47,0x10,0xf6,0xc4,0x17,0xe1,
0xe1,0x17,0xbb,0xcc,0x2f,0x43,0xb7,0x5c,0x58,0xf5,0x10,0xda,0xb0,0x94,0x5,0xef,
0x4d,0x2c,0xfd,0xa,0x6c,0xef,0x55,0x61,0x9b,0x6b,0xf2,0x49,0x74,0x93,0xf,0xc5,
0xfc,0xe8,0xf6,0x5f,0x42,0xcb,0xff,0x1d,0x7c,0xea,0xc0,0x5c,0xde,0x37,0x9d,0xc7,
0xb5,0xc,0xe0,0x7,0xfd,0x7c,0xa5,0xba,0xea,0x7b,0x78,0x51,0xff,0x58,0x66,0x6b,
0x1b,0x5c,0x6,0x1,0x8c,0x14,0x41,0xc6,0xda,0xde,0xc0,0x4b,0x91,0x23,0xf0,0x2d,
0xbc,0xcb,0x15,0x34,0x9,0xfa,0xb,0x71,0xf5,0x96,0x34,0x26,0x66,0xda,0x1b,0x0,
0x28,0x9d,0x33,0x28,0xe,0xf2,0xd9,0xb2,0x8d,0xed,0x67,0xb4,0xfa,0x12,0xd4,0x23,
0xa8,0xf3,0x93,0xe5,0xff,0x8,0xff,0xfe,0x6b,0xf8,0xc4,0x39,0x93,0x2d,0xce,0x93,
0xaa,0x2,0xc6,0xf0,0x3,0xbf,0x83,0x4a,0xe0,0x77,0xf1,0xcc,0x74,0xd6,0x51,0xc6,
0x21,0xe,0xd8,0x91,0xcf,0xc0,0x44,0xdb,0x3e,0x5a,0xb9,0x69,0x72,0xa3,0xc1,0xfe,
0x94,0x60,0x1,0x5e,0xde,0xcb,0x76,0x8f,0x58,0x84,0x56,0x5c,0x86,0xfb,0x57,0x5c,
0xf2,0x5b,0x39,0xf7,0xd0,0xcc,0x74,0xe4,0x62,0x7d,0xb2,0xfa,0x28,0x7b,0x24,0x83,
0x24,0x8b,0xf3,0x11,0xfe,0xf9,0x7a,0x0,0xe6,0xa0,0xe8,0xff,0x3f,0xe1,0x45,0xfd,
0x18,0xaf,0xf2,0x4f,0xf1,0x6,0x6d,0x3,0x8d,0x3b,0xe,0x6c,0x5a,0xcd,0xb3,0x6b,
0x6f,0xc0,0x1f,0x56,0x69,0x7b,0x4,0x4b,0x7f,0xb8,0x5b,0xe0,0xdd,0xb,0x11,0x5b,
0xd1,0x97,0xed,0x9a,0x67,0x47,0xe7,0x55,0xa6,0xc8,0x96,0xcb,0xbe,0xcb,0xa1,0x1a,
0x79,0x60,0x9e,0x8a,0x17,0x21,0x55,0x4,0x29,0x69,0x75,0x38,0x49,0x92,0x5f,0xc7,
0x27,0xfe,0xe0,0x45,0x3e,0x8f,0x2f,0xc0,0x35,0xff,0x0,0x2f,0xe4,0x64,0xa5,0xda,
0xf1,0xbf,0x8,0xe2,0x39,0xad,0xd6,0x24,0x66,0x5d,0xaa,0xb1,0xea,0xb8,0x7,0xf5,
0x1c,0x63,0xd4,0xb7,0x8f,0x25,0xb6,0x2e,0x10,0x9f,0xed,0x6b,0x5e,0x52,0x8f,0xcd,
0x34,0x74,0x59,0x6e,0x4,0xc7,0x2d,0x21,0x65,0xa,0x65,0x8b,0x64,0x8c,0x64,0xd,
0x65,0xee,0xad,0x17,0x15,0xfe,0x17,0xf5,0x0,0xfc,0x63,0x8,0xcf,0x5f,0x4f,0x2b,
0xd5,0x3f,0xc6,0x8b,0xfe,0x6f,0x8d,0xfa,0xd4,0x31,0xce,0xa7,0x25,0xba,0x8d,0x9d,
0x28,0x34,0x3,0x45,0xb2,0xc6,0x9b,0x59,0x90,0x4b,0xcb,0xd1,0xb6,0xcc,0x34,0xf5,
0x8a,0x49,0x2c,0x45,0x56,0xf2,0x65,0x57,0xcc,0xcb,0xdd,0x70,0x30,0x56,0x34,0x8d,
0x69,0xdc,0x7d,0xea,0x86,0x64,0x1e,0x86,0x9f,0x57,0xe6,0x53,0x75,0xfe,0xab,0x18,
0xe,0xfc,0x16,0xde,0xa7,0x53,0xb,0x75,0x3d,0xe9,0x2,0x7f,0xbf,0x53,0x78,0x81,
0x6f,0xf3,0x6a,0xc7,0x6f,0xf0,0x46,0xe5,0x3f,0x26,0x8d,0xe9,0xd7,0xd,0x29,0x86,
0x51,0x4,0x3c,0xf3,0xe7,0xd8,0x5d,0xbd,0xd7,0x84,0x9,0x8c,0x15,0x24,0x7c,0xda,
0x3a,0x61,0x91,0x36,0x67,0x7b,0xd,0x16,0x76,0x41,0xe3,0x5f,0x43,0xf7,0xde,0x59,
0x7f,0x9e,0x73,0xf7,0x8d,0xd7,0xac,0xd9,0x91,0xee,0xa1,0xc5,0xff,0xcf,0xf8,0xf4,
0xff,0x8e,0xe7,0xd4,0x42,0x5e,0x62,0xda,0x82,0xaf,0x4d,0x17,0xf8,0x7,0x78,0xc1,
0xff,0x3,0xcf,0x7f,0x91,0x64,0xd9,0xbf,0xcb,0x1a,0xd3,0x47,0x1b,0x9a,0x59,0x56,
0xa1,0xc1,0x64,0xb2,0x64,0x8,0x1e,0xa0,0x85,0x1b,0x65,0x15,0xf9,0xc9,0xb0,0xf6,
0xd1,0x3e,0x56,0x80,0x76,0xf5,0x71,0x17,0x2,0x22,0x53,0xcb,0x76,0xc4,0x2d,0x4d,
0x5a,0xa2,0xba,0xfb,0xba,0xf1,0xf1,0xff,0x82,0x2f,0xfa,0x53,0x88,0x90,0x7c,0x5e,
0x66,0x5,0x60,0xe,0xba,0xe0,0x3f,0xc4,0x2f,0xf0,0x47,0x9c,0xd7,0x3e,0x4c,0x84,
0xf8,0x97,0xe8,0x1,0xfc,0x2a,0x2a,0x81,0x75,0x99,0x46,0x1a,0xca,0x7c,0x54,0x18,
0xe3,0x11,0x18,0x93,0x2f,0x5e,0x35,0xa,0x87,0xf6,0xb1,0xa2,0x9d,0x0,0xe6,0xc1,
0x94,0x32,0x1e,0x30,0xf5,0x5a,0x74,0x67,0x35,0xcd,0x37,0x8e,0xd6,0xff,0x2f,0xf1,
0x6f,0x7f,0x82,0x4f,0xfd,0x51,0xab,0x45,0x20,0x5d,0x84,0x35,0xa0,0x2f,0x40,0x34,
0x44,0x1f,0xa3,0x3b,0xd3,0x81,0x27,0xd,0x15,0xfd,0x32,0x2a,0x80,0x6f,0x65,0x22,
0x3b,0xee,0xa0,0xa1,0x5c,0xb5,0x20,0xc,0xb,0xda,0x47,0xfb,0x58,0x19,0xb9,0x96,
0xb8,0xa6,0x6f,0x5d,0x7e,0xc6,0xaf,0xa0,0x2,0xf8,0x18,0x1f,0xfe,0x1b,0xa,0xa3,
0x71,0xdf,0x3f,0x5f,0xac,0x6b,0x4b,0x17,0x79,0x2d,0xe8,0x8b,0xfd,0xad,0x3e,0x9,
0xad,0x84,0xc8,0xe5,0xdf,0xc3,0xf3,0x6d,0x94,0xf5,0xa3,0xa8,0x4,0xf6,0xa3,0xd4,
0xef,0x40,0x15,0xb0,0x5,0x7f,0xae,0x41,0xf1,0x5f,0xd3,0x4e,0x2,0xb4,0x8f,0xe5,
0x6e,0xff,0xf1,0xff,0x13,0x28,0xed,0x13,0x28,0xf6,0xf,0xf0,0xe7,0x20,0xa,0x7e,
0xf,0xa,0x7b,0x37,0xfe,0x89,0x18,0x7a,0xcf,0xa1,0x57,0x3c,0xbc,0x54,0x57,0xf8,
0xff,0x5,0x18,0x0,0x11,0x20,0xdd,0x43,0x5e,0x30,0x6e,0x22,0x0,0x0,0x0,0x0,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// F:/??ico/??/stop.png
0x0,0x0,0x0,0x8d,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x2,0x0,0x0,0x0,0xfc,0x18,0xed,0xa3,
0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
0x0,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,0x64,
0x79,0x71,0xc9,0x65,0x3c,0x0,0x0,0x0,0x2f,0x49,0x44,0x41,0x54,0x78,0xda,0xec,
0xcd,0x41,0x1,0x0,0x30,0x8,0x4,0xa0,0x73,0xfd,0xab,0x58,0xcd,0xc,0x96,0x98,
0x3f,0x28,0x40,0xa5,0x27,0x97,0x5e,0x8e,0x9,0x4,0x2,0x81,0x40,0x20,0x10,0x8,
0x4,0x82,0x5f,0x56,0x0,0x1,0x6,0x0,0x4,0x97,0x1,0xdb,0x5f,0x29,0xd2,0x6c,
0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// F:/??ico/??/play_24.png
0x0,0x0,0xb,0xb7,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8e,0x7c,0xfb,0x51,0x93,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x0,0xd4,0x49,0x44,
0x41,0x54,0x78,0xda,0xc4,0xd7,0xd1,0xd,0x83,0x30,0xc,0x4,0xd0,0x2b,0xf2,0x4,
0x4c,0xc2,0x2e,0x4c,0xd0,0x4d,0xe8,0x40,0xe9,0x2a,0x30,0x49,0x18,0xc1,0xfd,0x6c,
0x8a,0xa8,0x12,0x27,0xe7,0xc4,0x12,0x3f,0x11,0x12,0x77,0xf,0x4,0x1,0xaa,0x8a,
0xf4,0x40,0x88,0x3b,0x42,0x5c,0xe0,0x34,0xd7,0xeb,0x4d,0x37,0xe7,0x2c,0x0,0x76,
0x84,0xb8,0xa1,0xc3,0x3c,0x54,0xf5,0x77,0xe1,0x7d,0xa6,0xb,0x7,0x80,0x27,0xd6,
0xf9,0x60,0xa,0xa4,0x33,0x65,0xce,0x77,0xd7,0xc8,0x9,0x80,0xad,0x61,0x15,0x70,
0xd7,0xb0,0x8,0x50,0x34,0x5a,0x4,0x5c,0x34,0x6a,0x5,0xaa,0x35,0x58,0x2,0x34,
0xd,0x86,0x80,0x49,0xc3,0x43,0xa0,0x49,0x83,0x2d,0x90,0xd5,0xf0,0x16,0x30,0x6b,
0x78,0xa,0xdc,0x6a,0xf4,0x14,0x28,0xd2,0xe8,0x15,0xe0,0xef,0x48,0xa7,0xeb,0x7c,
0x1f,0xc8,0xcb,0x2d,0xe8,0x11,0xe0,0x85,0x75,0xde,0x46,0x8,0x14,0xbd,0xa2,0x65,
0x44,0x6b,0xcf,0x0,0xe6,0xcf,0xb4,0x8c,0x68,0xcd,0xe,0xd0,0xb4,0x55,0x93,0x11,
0xad,0x19,0x1,0x68,0xdb,0x75,0x19,0xd1,0xba,0x36,0x0,0xfd,0x27,0xc5,0x12,0x80,
0xda,0xda,0x12,0xc0,0xa5,0x75,0x69,0x0,0xb7,0xd6,0xb9,0x0,0xee,0xad,0xd3,0xf9,
0xc,0x0,0x34,0x14,0xa1,0x26,0x91,0x36,0xfa,0xb7,0x0,0x0,0x0,0x0,0x49,0x45,
0x4e,0x44,0xae,0x42,0x60,0x82,
// F:/??ico/??/pause_24.png
0x0,0x0,0xb,0x30,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,
0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0xa,0x4d,0x69,0x43,0x43,0x50,0x50,0x68,0x6f,
0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66,0x69,
0x6c,0x65,0x0,0x0,0x78,0xda,0x9d,0x53,0x77,0x58,0x93,0xf7,0x16,0x3e,0xdf,0xf7,
0x65,0xf,0x56,0x42,0xd8,0xf0,0xb1,0x97,0x6c,0x81,0x0,0x22,0x23,0xac,0x8,0xc8,
0x10,0x59,0xa2,0x10,0x92,0x0,0x61,0x84,0x10,0x12,0x40,0xc5,0x85,0x88,0xa,0x56,
0x14,0x15,0x11,0x9c,0x48,0x55,0xc4,0x82,0xd5,0xa,0x48,0x9d,0x88,0xe2,0xa0,0x28,
0xb8,0x67,0x41,0x8a,0x88,0x5a,0x8b,0x55,0x5c,0x38,0xee,0x1f,0xdc,0xa7,0xb5,0x7d,
0x7a,0xef,0xed,0xed,0xfb,0xd7,0xfb,0xbc,0xe7,0x9c,0xe7,0xfc,0xce,0x79,0xcf,0xf,
0x80,0x11,0x12,0x26,0x91,0xe6,0xa2,0x6a,0x0,0x39,0x52,0x85,0x3c,0x3a,0xd8,0x1f,
0x8f,0x4f,0x48,0xc4,0xc9,0xbd,0x80,0x2,0x15,0x48,0xe0,0x4,0x20,0x10,0xe6,0xcb,
0xc2,0x67,0x5,0xc5,0x0,0x0,0xf0,0x3,0x79,0x78,0x7e,0x74,0xb0,0x3f,0xfc,0x1,
0xaf,0x6f,0x0,0x2,0x0,0x70,0xd5,0x2e,0x24,0x12,0xc7,0xe1,0xff,0x83,0xba,0x50,
0x26,0x57,0x0,0x20,0x91,0x0,0xe0,0x22,0x12,0xe7,0xb,0x1,0x90,0x52,0x0,0xc8,
0x2e,0x54,0xc8,0x14,0x0,0xc8,0x18,0x0,0xb0,0x53,0xb3,0x64,0xa,0x0,0x94,0x0,
0x0,0x6c,0x79,0x7c,0x42,0x22,0x0,0xaa,0xd,0x0,0xec,0xf4,0x49,0x3e,0x5,0x0,
0xd8,0xa9,0x93,0xdc,0x17,0x0,0xd8,0xa2,0x1c,0xa9,0x8,0x0,0x8d,0x1,0x0,0x99,
0x28,0x47,0x24,0x2,0x40,0xbb,0x0,0x60,0x55,0x81,0x52,0x2c,0x2,0xc0,0xc2,0x0,
0xa0,0xac,0x40,0x22,0x2e,0x4,0xc0,0xae,0x1,0x80,0x59,0xb6,0x32,0x47,0x2,0x80,
0xbd,0x5,0x0,0x76,0x8e,0x58,0x90,0xf,0x40,0x60,0x0,0x80,0x99,0x42,0x2c,0xcc,
0x0,0x20,0x38,0x2,0x0,0x43,0x1e,0x13,0xcd,0x3,0x20,0x4c,0x3,0xa0,0x30,0xd2,
0xbf,0xe0,0xa9,0x5f,0x70,0x85,0xb8,0x48,0x1,0x0,0xc0,0xcb,0x95,0xcd,0x97,0x4b,
0xd2,0x33,0x14,0xb8,0x95,0xd0,0x1a,0x77,0xf2,0xf0,0xe0,0xe2,0x21,0xe2,0xc2,0x6c,
0xb1,0x42,0x61,0x17,0x29,0x10,0x66,0x9,0xe4,0x22,0x9c,0x97,0x9b,0x23,0x13,0x48,
0xe7,0x3,0x4c,0xce,0xc,0x0,0x0,0x1a,0xf9,0xd1,0xc1,0xfe,0x38,0x3f,0x90,0xe7,
0xe6,0xe4,0xe1,0xe6,0x66,0xe7,0x6c,0xef,0xf4,0xc5,0xa2,0xfe,0x6b,0xf0,0x6f,0x22,
0x3e,0x21,0xf1,0xdf,0xfe,0xbc,0x8c,0x2,0x4,0x0,0x10,0x4e,0xcf,0xef,0xda,0x5f,
0xe5,0xe5,0xd6,0x3,0x70,0xc7,0x1,0xb0,0x75,0xbf,0x6b,0xa9,0x5b,0x0,0xda,0x56,
0x0,0x68,0xdf,0xf9,0x5d,0x33,0xdb,0x9,0xa0,0x5a,0xa,0xd0,0x7a,0xf9,0x8b,0x79,
0x38,0xfc,0x40,0x1e,0x9e,0xa1,0x50,0xc8,0x3c,0x1d,0x1c,0xa,0xb,0xb,0xed,0x25,
0x62,0xa1,0xbd,0x30,0xe3,0x8b,0x3e,0xff,0x33,0xe1,0x6f,0xe0,0x8b,0x7e,0xf6,0xfc,
0x40,0x1e,0xfe,0xdb,0x7a,0xf0,0x0,0x71,0x9a,0x40,0x99,0xad,0xc0,0xa3,0x83,0xfd,
0x71,0x61,0x6e,0x76,0xae,0x52,0x8e,0xe7,0xcb,0x4,0x42,0x31,0x6e,0xf7,0xe7,0x23,
0xfe,0xc7,0x85,0x7f,0xfd,0x8e,0x29,0xd1,0xe2,0x34,0xb1,0x5c,0x2c,0x15,0x8a,0xf1,
0x58,0x89,0xb8,0x50,0x22,0x4d,0xc7,0x79,0xb9,0x52,0x91,0x44,0x21,0xc9,0x95,0xe2,
0x12,0xe9,0x7f,0x32,0xf1,0x1f,0x96,0xfd,0x9,0x93,0x77,0xd,0x0,0xac,0x86,0x4f,
0xc0,0x4e,0xb6,0x7,0xb5,0xcb,0x6c,0xc0,0x7e,0xee,0x1,0x2,0x8b,0xe,0x58,0xd2,
0x76,0x0,0x40,0x7e,0xf3,0x2d,0x8c,0x1a,0xb,0x91,0x0,0x10,0x67,0x34,0x32,0x79,
0xf7,0x0,0x0,0x93,0xbf,0xf9,0x8f,0x40,0x2b,0x1,0x0,0xcd,0x97,0xa4,0xe3,0x0,
0x0,0xbc,0xe8,0x18,0x5c,0xa8,0x94,0x17,0x4c,0xc6,0x8,0x0,0x0,0x44,0xa0,0x81,
0x2a,0xb0,0x41,0x7,0xc,0xc1,0x14,0xac,0xc0,0xe,0x9c,0xc1,0x1d,0xbc,0xc0,0x17,
0x2,0x61,0x6,0x44,0x40,0xc,0x24,0xc0,0x3c,0x10,0x42,0x6,0xe4,0x80,0x1c,0xa,
0xa1,0x18,0x96,0x41,0x19,0x54,0xc0,0x3a,0xd8,0x4,0xb5,0xb0,0x3,0x1a,0xa0,0x11,
0x9a,0xe1,0x10,0xb4,0xc1,0x31,0x38,0xd,0xe7,0xe0,0x12,0x5c,0x81,0xeb,0x70,0x17,
0x6,0x60,0x18,0x9e,0xc2,0x18,0xbc,0x86,0x9,0x4,0x41,0xc8,0x8,0x13,0x61,0x21,
0x3a,0x88,0x11,0x62,0x8e,0xd8,0x22,0xce,0x8,0x17,0x99,0x8e,0x4,0x22,0x61,0x48,
0x34,0x92,0x80,0xa4,0x20,0xe9,0x88,0x14,0x51,0x22,0xc5,0xc8,0x72,0xa4,0x2,0xa9,
0x42,0x6a,0x91,0x5d,0x48,0x23,0xf2,0x2d,0x72,0x14,0x39,0x8d,0x5c,0x40,0xfa,0x90,
0xdb,0xc8,0x20,0x32,0x8a,0xfc,0x8a,0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3,0xd4,
0x2,0x75,0x40,0xb9,0xa8,0x1f,0x1a,0x8a,0xc6,0xa0,0x73,0xd1,0x74,0x34,0xf,0x5d,
0x80,0x96,0xa2,0x6b,0xd1,0x1a,0xb4,0x1e,0x3d,0x80,0xb6,0xa2,0xa7,0xd1,0x4b,0xe8,
0x75,0x74,0x0,0x7d,0x8a,0x8e,0x63,0x80,0xd1,0x31,0xe,0x66,0x8c,0xd9,0x61,0x5c,
0x8c,0x87,0x45,0x60,0x89,0x58,0x1a,0x26,0xc7,0x16,0x63,0xe5,0x58,0x35,0x56,0x8f,
0x35,0x63,0x1d,0x58,0x37,0x76,0x15,0x1b,0xc0,0x9e,0x61,0xef,0x8,0x24,0x2,0x8b,
0x80,0x13,0xec,0x8,0x5e,0x84,0x10,0xc2,0x6c,0x82,0x90,0x90,0x47,0x58,0x4c,0x58,
0x43,0xa8,0x25,0xec,0x23,0xb4,0x12,0xba,0x8,0x57,0x9,0x83,0x84,0x31,0xc2,0x27,
0x22,0x93,0xa8,0x4f,0xb4,0x25,0x7a,0x12,0xf9,0xc4,0x78,0x62,0x3a,0xb1,0x90,0x58,
0x46,0xac,0x26,0xee,0x21,0x1e,0x21,0x9e,0x25,0x5e,0x27,0xe,0x13,0x5f,0x93,0x48,
0x24,0xe,0xc9,0x92,0xe4,0x4e,0xa,0x21,0x25,0x90,0x32,0x49,0xb,0x49,0x6b,0x48,
0xdb,0x48,0x2d,0xa4,0x53,0xa4,0x3e,0xd2,0x10,0x69,0x9c,0x4c,0x26,0xeb,0x90,0x6d,
0xc9,0xde,0xe4,0x8,0xb2,0x80,0xac,0x20,0x97,0x91,0xb7,0x90,0xf,0x90,0x4f,0x92,
0xfb,0xc9,0xc3,0xe4,0xb7,0x14,0x3a,0xc5,0x88,0xe2,0x4c,0x9,0xa2,0x24,0x52,0xa4,
0x94,0x12,0x4a,0x35,0x65,0x3f,0xe5,0x4,0xa5,0x9f,0x32,0x42,0x99,0xa0,0xaa,0x51,
0xcd,0xa9,0x9e,0xd4,0x8,0xaa,0x88,0x3a,0x9f,0x5a,0x49,0x6d,0xa0,0x76,0x50,0x2f,
0x53,0x87,0xa9,0x13,0x34,0x75,0x9a,0x25,0xcd,0x9b,0x16,0x43,0xcb,0xa4,0x2d,0xa3,
0xd5,0xd0,0x9a,0x69,0x67,0x69,0xf7,0x68,0x2f,0xe9,0x74,0xba,0x9,0xdd,0x83,0x1e,
0x45,0x97,0xd0,0x97,0xd2,0x6b,0xe8,0x7,0xe9,0xe7,0xe9,0x83,0xf4,0x77,0xc,0xd,
0x86,0xd,0x83,0xc7,0x48,0x62,0x28,0x19,0x6b,0x19,0x7b,0x19,0xa7,0x18,0xb7,0x19,
0x2f,0x99,0x4c,0xa6,0x5,0xd3,0x97,0x99,0xc8,0x54,0x30,0xd7,0x32,0x1b,0x99,0x67,
0x98,0xf,0x98,0x6f,0x55,0x58,0x2a,0xf6,0x2a,0x7c,0x15,0x91,0xca,0x12,0x95,0x3a,
0x95,0x56,0x95,0x7e,0x95,0xe7,0xaa,0x54,0x55,0x73,0x55,0x3f,0xd5,0x79,0xaa,0xb,
0x54,0xab,0x55,0xf,0xab,0x5e,0x56,0x7d,0xa6,0x46,0x55,0xb3,0x50,0xe3,0xa9,0x9,
0xd4,0x16,0xab,0xd5,0xa9,0x1d,0x55,0xbb,0xa9,0x36,0xae,0xce,0x52,0x77,0x52,0x8f,
0x50,0xcf,0x51,0x5f,0xa3,0xbe,0x5f,0xfd,0x82,0xfa,0x63,0xd,0xb2,0x86,0x85,0x46,
0xa0,0x86,0x48,0xa3,0x54,0x63,0xb7,0xc6,0x19,0x8d,0x21,0x16,0xc6,0x32,0x65,0xf1,
0x58,0x42,0xd6,0x72,0x56,0x3,0xeb,0x2c,0x6b,0x98,0x4d,0x62,0x5b,0xb2,0xf9,0xec,
0x4c,0x76,0x5,0xfb,0x1b,0x76,0x2f,0x7b,0x4c,0x53,0x43,0x73,0xaa,0x66,0xac,0x66,
0x91,0x66,0x9d,0xe6,0x71,0xcd,0x1,0xe,0xc6,0xb1,0xe0,0xf0,0x39,0xd9,0x9c,0x4a,
0xce,0x21,0xce,0xd,0xce,0x7b,0x2d,0x3,0x2d,0x3f,0x2d,0xb1,0xd6,0x6a,0xad,0x66,
0xad,0x7e,0xad,0x37,0xda,0x7a,0xda,0xbe,0xda,0x62,0xed,0x72,0xed,0x16,0xed,0xeb,
0xda,0xef,0x75,0x70,0x9d,0x40,0x9d,0x2c,0x9d,0xf5,0x3a,0x6d,0x3a,0xf7,0x75,0x9,
0xba,0x36,0xba,0x51,0xba,0x85,0xba,0xdb,0x75,0xcf,0xea,0x3e,0xd3,0x63,0xeb,0x79,
0xe9,0x9,0xf5,0xca,0xf5,0xe,0xe9,0xdd,0xd1,0x47,0xf5,0x6d,0xf4,0xa3,0xf5,0x17,
0xea,0xef,0xd6,0xef,0xd1,0x1f,0x37,0x30,0x34,0x8,0x36,0x90,0x19,0x6c,0x31,0x38,
0x63,0xf0,0xcc,0x90,0x63,0xe8,0x6b,0x98,0x69,0xb8,0xd1,0xf0,0x84,0xe1,0xa8,0x11,
0xcb,0x68,0xba,0x91,0xc4,0x68,0xa3,0xd1,0x49,0xa3,0x27,0xb8,0x26,0xee,0x87,0x67,
0xe3,0x35,0x78,0x17,0x3e,0x66,0xac,0x6f,0x1c,0x62,0xac,0x34,0xde,0x65,0xdc,0x6b,
0x3c,0x61,0x62,0x69,0x32,0xdb,0xa4,0xc4,0xa4,0xc5,0xe4,0xbe,0x29,0xcd,0x94,0x6b,
0x9a,0x66,0xba,0xd1,0xb4,0xd3,0x74,0xcc,0xcc,0xc8,0x2c,0xdc,0xac,0xd8,0xac,0xc9,
0xec,0x8e,0x39,0xd5,0x9c,0x6b,0x9e,0x61,0xbe,0xd9,0xbc,0xdb,0xfc,0x8d,0x85,0xa5,
0x45,0x9c,0xc5,0x4a,0x8b,0x36,0x8b,0xc7,0x96,0xda,0x96,0x7c,0xcb,0x5,0x96,0x4d,
0x96,0xf7,0xac,0x98,0x56,0x3e,0x56,0x79,0x56,0xf5,0x56,0xd7,0xac,0x49,0xd6,0x5c,
0xeb,0x2c,0xeb,0x6d,0xd6,0x57,0x6c,0x50,0x1b,0x57,0x9b,0xc,0x9b,0x3a,0x9b,0xcb,
0xb6,0xa8,0xad,0x9b,0xad,0xc4,0x76,0x9b,0x6d,0xdf,0x14,0xe2,0x14,0x8f,0x29,0xd2,
0x29,0xf5,0x53,0x6e,0xda,0x31,0xec,0xfc,0xec,0xa,0xec,0x9a,0xec,0x6,0xed,0x39,
0xf6,0x61,0xf6,0x25,0xf6,0x6d,0xf6,0xcf,0x1d,0xcc,0x1c,0x12,0x1d,0xd6,0x3b,0x74,
0x3b,0x7c,0x72,0x74,0x75,0xcc,0x76,0x6c,0x70,0xbc,0xeb,0xa4,0xe1,0x34,0xc3,0xa9,
0xc4,0xa9,0xc3,0xe9,0x57,0x67,0x1b,0x67,0xa1,0x73,0x9d,0xf3,0x35,0x17,0xa6,0x4b,
0x90,0xcb,0x12,0x97,0x76,0x97,0x17,0x53,0x6d,0xa7,0x8a,0xa7,0x6e,0x9f,0x7a,0xcb,
0x95,0xe5,0x1a,0xee,0xba,0xd2,0xb5,0xd3,0xf5,0xa3,0x9b,0xbb,0x9b,0xdc,0xad,0xd9,
0x6d,0xd4,0xdd,0xcc,0x3d,0xc5,0x7d,0xab,0xfb,0x4d,0x2e,0x9b,0x1b,0xc9,0x5d,0xc3,
0x3d,0xef,0x41,0xf4,0xf0,0xf7,0x58,0xe2,0x71,0xcc,0xe3,0x9d,0xa7,0x9b,0xa7,0xc2,
0xf3,0x90,0xe7,0x2f,0x5e,0x76,0x5e,0x59,0x5e,0xfb,0xbd,0x1e,0x4f,0xb3,0x9c,0x26,
0x9e,0xd6,0x30,0x6d,0xc8,0xdb,0xc4,0x5b,0xe0,0xbd,0xcb,0x7b,0x60,0x3a,0x3e,0x3d,
0x65,0xfa,0xce,0xe9,0x3,0x3e,0xc6,0x3e,0x2,0x9f,0x7a,0x9f,0x87,0xbe,0xa6,0xbe,
0x22,0xdf,0x3d,0xbe,0x23,0x7e,0xd6,0x7e,0x99,0x7e,0x7,0xfc,0x9e,0xfb,0x3b,0xfa,
0xcb,0xfd,0x8f,0xf8,0xbf,0xe1,0x79,0xf2,0x16,0xf1,0x4e,0x5,0x60,0x1,0xc1,0x1,
0xe5,0x1,0xbd,0x81,0x1a,0x81,0xb3,0x3,0x6b,0x3,0x1f,0x4,0x99,0x4,0xa5,0x7,
0x35,0x5,0x8d,0x5,0xbb,0x6,0x2f,0xc,0x3e,0x15,0x42,0xc,0x9,0xd,0x59,0x1f,
0x72,0x93,0x6f,0xc0,0x17,0xf2,0x1b,0xf9,0x63,0x33,0xdc,0x67,0x2c,0x9a,0xd1,0x15,
0xca,0x8,0x9d,0x15,0x5a,0x1b,0xfa,0x30,0xcc,0x26,0x4c,0x1e,0xd6,0x11,0x8e,0x86,
0xcf,0x8,0xdf,0x10,0x7e,0x6f,0xa6,0xf9,0x4c,0xe9,0xcc,0xb6,0x8,0x88,0xe0,0x47,
0x6c,0x88,0xb8,0x1f,0x69,0x19,0x99,0x17,0xf9,0x7d,0x14,0x29,0x2a,0x32,0xaa,0x2e,
0xea,0x51,0xb4,0x53,0x74,0x71,0x74,0xf7,0x2c,0xd6,0xac,0xe4,0x59,0xfb,0x67,0xbd,
0x8e,0xf1,0x8f,0xa9,0x8c,0xb9,0x3b,0xdb,0x6a,0xb6,0x72,0x76,0x67,0xac,0x6a,0x6c,
0x52,0x6c,0x63,0xec,0x9b,0xb8,0x80,0xb8,0xaa,0xb8,0x81,0x78,0x87,0xf8,0x45,0xf1,
0x97,0x12,0x74,0x13,0x24,0x9,0xed,0x89,0xe4,0xc4,0xd8,0xc4,0x3d,0x89,0xe3,0x73,
0x2,0xe7,0x6c,0x9a,0x33,0x9c,0xe4,0x9a,0x54,0x96,0x74,0x63,0xae,0xe5,0xdc,0xa2,
0xb9,0x17,0xe6,0xe9,0xce,0xcb,0x9e,0x77,0x3c,0x59,0x35,0x59,0x90,0x7c,0x38,0x85,
0x98,0x12,0x97,0xb2,0x3f,0xe5,0x83,0x20,0x42,0x50,0x2f,0x18,0x4f,0xe5,0xa7,0x6e,
0x4d,0x1d,0x13,0xf2,0x84,0x9b,0x85,0x4f,0x45,0xbe,0xa2,0x8d,0xa2,0x51,0xb1,0xb7,
0xb8,0x4a,0x3c,0x92,0xe6,0x9d,0x56,0x95,0xf6,0x38,0xdd,0x3b,0x7d,0x43,0xfa,0x68,
0x86,0x4f,0x46,0x75,0xc6,0x33,0x9,0x4f,0x52,0x2b,0x79,0x91,0x19,0x92,0xb9,0x23,
0xf3,0x4d,0x56,0x44,0xd6,0xde,0xac,0xcf,0xd9,0x71,0xd9,0x2d,0x39,0x94,0x9c,0x94,
0x9c,0xa3,0x52,0xd,0x69,0x96,0xb4,0x2b,0xd7,0x30,0xb7,0x28,0xb7,0x4f,0x66,0x2b,
0x2b,0x93,0xd,0xe4,0x79,0xe6,0x6d,0xca,0x1b,0x93,0x87,0xca,0xf7,0xe4,0x23,0xf9,
0x73,0xf3,0xdb,0x15,0x6c,0x85,0x4c,0xd1,0xa3,0xb4,0x52,0xae,0x50,0xe,0x16,0x4c,
0x2f,0xa8,0x2b,0x78,0x5b,0x18,0x5b,0x78,0xb8,0x48,0xbd,0x48,0x5a,0xd4,0x33,0xdf,
0x66,0xfe,0xea,0xf9,0x23,0xb,0x82,0x16,0x7c,0xbd,0x90,0xb0,0x50,0xb8,0xb0,0xb3,
0xd8,0xb8,0x78,0x59,0xf1,0xe0,0x22,0xbf,0x45,0xbb,0x16,0x23,0x8b,0x53,0x17,0x77,
0x2e,0x31,0x5d,0x52,0xba,0x64,0x78,0x69,0xf0,0xd2,0x7d,0xcb,0x68,0xcb,0xb2,0x96,
0xfd,0x50,0xe2,0x58,0x52,0x55,0xf2,0x6a,0x79,0xdc,0xf2,0x8e,0x52,0x83,0xd2,0xa5,
0xa5,0x43,0x2b,0x82,0x57,0x34,0x95,0xa9,0x94,0xc9,0xcb,0x6e,0xae,0xf4,0x5a,0xb9,
0x63,0x15,0x61,0x95,0x64,0x55,0xef,0x6a,0x97,0xd5,0x5b,0x56,0x7f,0x2a,0x17,0x95,
0x5f,0xac,0x70,0xac,0xa8,0xae,0xf8,0xb0,0x46,0xb8,0xe6,0xe2,0x57,0x4e,0x5f,0xd5,
0x7c,0xf5,0x79,0x6d,0xda,0xda,0xde,0x4a,0xb7,0xca,0xed,0xeb,0x48,0xeb,0xa4,0xeb,
0x6e,0xac,0xf7,0x59,0xbf,0xaf,0x4a,0xbd,0x6a,0x41,0xd5,0xd0,0x86,0xf0,0xd,0xad,
0x1b,0xf1,0x8d,0xe5,0x1b,0x5f,0x6d,0x4a,0xde,0x74,0xa1,0x7a,0x6a,0xf5,0x8e,0xcd,
0xb4,0xcd,0xca,0xcd,0x3,0x35,0x61,0x35,0xed,0x5b,0xcc,0xb6,0xac,0xdb,0xf2,0xa1,
0x36,0xa3,0xf6,0x7a,0x9d,0x7f,0x5d,0xcb,0x56,0xfd,0xad,0xab,0xb7,0xbe,0xd9,0x26,
0xda,0xd6,0xbf,0xdd,0x77,0x7b,0xf3,0xe,0x83,0x1d,0x15,0x3b,0xde,0xef,0x94,0xec,
0xbc,0xb5,0x2b,0x78,0x57,0x6b,0xbd,0x45,0x7d,0xf5,0x6e,0xd2,0xee,0x82,0xdd,0x8f,
0x1a,0x62,0x1b,0xba,0xbf,0xe6,0x7e,0xdd,0xb8,0x47,0x77,0x4f,0xc5,0x9e,0x8f,0x7b,
0xa5,0x7b,0x7,0xf6,0x45,0xef,0xeb,0x6a,0x74,0x6f,0x6c,0xdc,0xaf,0xbf,0xbf,0xb2,
0x9,0x6d,0x52,0x36,0x8d,0x1e,0x48,0x3a,0x70,0xe5,0x9b,0x80,0x6f,0xda,0x9b,0xed,
0x9a,0x77,0xb5,0x70,0x5a,0x2a,0xe,0xc2,0x41,0xe5,0xc1,0x27,0xdf,0xa6,0x7c,0x7b,
0xe3,0x50,0xe8,0xa1,0xce,0xc3,0xdc,0xc3,0xcd,0xdf,0x99,0x7f,0xb7,0xf5,0x8,0xeb,
0x48,0x79,0x2b,0xd2,0x3a,0xbf,0x75,0xac,0x2d,0xa3,0x6d,0xa0,0x3d,0xa1,0xbd,0xef,
0xe8,0x8c,0xa3,0x9d,0x1d,0x5e,0x1d,0x47,0xbe,0xb7,0xff,0x7e,0xef,0x31,0xe3,0x63,
0x75,0xc7,0x35,0x8f,0x57,0x9e,0xa0,0x9d,0x28,0x3d,0xf1,0xf9,0xe4,0x82,0x93,0xe3,
0xa7,0x64,0xa7,0x9e,0x9d,0x4e,0x3f,0x3d,0xd4,0x99,0xdc,0x79,0xf7,0x4c,0xfc,0x99,
0x6b,0x5d,0x51,0x5d,0xbd,0x67,0x43,0xcf,0x9e,0x3f,0x17,0x74,0xee,0x4c,0xb7,0x5f,
0xf7,0xc9,0xf3,0xde,0xe7,0x8f,0x5d,0xf0,0xbc,0x70,0xf4,0x22,0xf7,0x62,0xdb,0x25,
0xb7,0x4b,0xad,0x3d,0xae,0x3d,0x47,0x7e,0x70,0xfd,0xe1,0x48,0xaf,0x5b,0x6f,0xeb,
0x65,0xf7,0xcb,0xed,0x57,0x3c,0xae,0x74,0xf4,0x4d,0xeb,0x3b,0xd1,0xef,0xd3,0x7f,
0xfa,0x6a,0xc0,0xd5,0x73,0xd7,0xf8,0xd7,0x2e,0x5d,0x9f,0x79,0xbd,0xef,0xc6,0xec,
0x1b,0xb7,0x6e,0x26,0xdd,0x1c,0xb8,0x25,0xba,0xf5,0xf8,0x76,0xf6,0xed,0x17,0x77,
0xa,0xee,0x4c,0xdc,0x5d,0x7a,0x8f,0x78,0xaf,0xfc,0xbe,0xda,0xfd,0xea,0x7,0xfa,
0xf,0xea,0x7f,0xb4,0xfe,0xb1,0x65,0xc0,0x6d,0xe0,0xf8,0x60,0xc0,0x60,0xcf,0xc3,
0x59,0xf,0xef,0xe,0x9,0x87,0x9e,0xfe,0x94,0xff,0xd3,0x87,0xe1,0xd2,0x47,0xcc,
0x47,0xd5,0x23,0x46,0x23,0x8d,0x8f,0x9d,0x1f,0x1f,0x1b,0xd,0x1a,0xbd,0xf2,0x64,
0xce,0x93,0xe1,0xa7,0xb2,0xa7,0x13,0xcf,0xca,0x7e,0x56,0xff,0x79,0xeb,0x73,0xab,
0xe7,0xdf,0xfd,0xe2,0xfb,0x4b,0xcf,0x58,0xfc,0xd8,0xf0,0xb,0xf9,0x8b,0xcf,0xbf,
0xae,0x79,0xa9,0xf3,0x72,0xef,0xab,0xa9,0xaf,0x3a,0xc7,0x23,0xc7,0x1f,0xbc,0xce,
0x79,0x3d,0xf1,0xa6,0xfc,0xad,0xce,0xdb,0x7d,0xef,0xb8,0xef,0xba,0xdf,0xc7,0xbd,
0x1f,0x99,0x28,0xfc,0x40,0xfe,0x50,0xf3,0xd1,0xfa,0x63,0xc7,0xa7,0xd0,0x4f,0xf7,
0x3e,0xe7,0x7c,0xfe,0xfc,0x2f,0xf7,0x84,0xf3,0xfb,0x25,0xd2,0x9f,0x33,0x0,0x0,
0x0,0x4,0x67,0x41,0x4d,0x41,0x0,0x0,0xb1,0x8e,0x7c,0xfb,0x51,0x93,0x0,0x0,
0x0,0x20,0x63,0x48,0x52,0x4d,0x0,0x0,0x7a,0x25,0x0,0x0,0x80,0x83,0x0,0x0,
0xf9,0xff,0x0,0x0,0x80,0xe9,0x0,0x0,0x75,0x30,0x0,0x0,0xea,0x60,0x0,0x0,
0x3a,0x98,0x0,0x0,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x0,0x0,0x0,0x4d,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0xce,0x31,0x12,0x0,0x10,0xc,0x44,0xd1,0xc4,0xd,0x38,
0x1a,0xe7,0xe4,0x68,0x1c,0x61,0xb5,0xa2,0xd0,0x6a,0xfe,0x2f,0x93,0xd9,0x99,0xe7,
0x92,0xec,0xcc,0xc7,0x8a,0x87,0xbb,0x56,0xfc,0xf9,0xef,0xf3,0xb9,0x57,0xcd,0x61,
0x9f,0xec,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x80,0xd,0x0,0x0,0xff,0xff,0x3,0x0,0x6b,0xd5,0xa,0x3d,0xe6,
0x39,0xd8,0xc4,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// F:/??ico/????/c6.ico
0x0,0x1,0x6a,0xb6,
0x0,
0x0,0x1,0x0,0xa,0x0,0x30,0x30,0x10,0x0,0x1,0x0,0x4,0x0,0x68,0x6,0x0,
0x0,0xa6,0x0,0x0,0x0,0x20,0x20,0x10,0x0,0x1,0x0,0x4,0x0,0xe8,0x2,0x0,
0x0,0xe,0x7,0x0,0x0,0x10,0x10,0x10,0x0,0x1,0x0,0x4,0x0,0x28,0x1,0x0,
0x0,0xf6,0x9,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x8,0x0,0xa8,0xe,0x0,
0x0,0x1e,0xb,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x8,0x0,0xa8,0x8,0x0,
0x0,0xc6,0x19,0x0,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x8,0x0,0x68,0x5,0x0,
0x0,0x6e,0x22,0x0,0x0,0x80,0x80,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x8,0x1,
0x0,0xd6,0x27,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x25,0x0,
0x0,0xfe,0x2f,0x1,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0,
0x0,0xa6,0x55,0x1,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0,
0x0,0x4e,0x66,0x1,0x0,0x28,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0,
0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x80,0x4,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x80,0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x80,0x0,0x80,0x0,0x0,
0x0,0x80,0x0,0x80,0x0,0x80,0x80,0x0,0x0,0x80,0x80,0x80,0x0,0xc0,0xc0,0xc0,
0x0,0x0,0x0,0xff,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0x0,0x0,
0x0,0xff,0x0,0xff,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x7,
0x77,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x70,0x0,0x77,0x77,0x77,0x70,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7,
0x7,0x0,0x7,0x7,0x77,0x87,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x70,0x70,0x7,0x0,0x0,0x70,0x70,0x70,0x77,0x7,0x77,0x88,
0x88,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,
0x7,0x0,0x70,0x70,0x70,0x70,0x77,0x7,0x77,0x77,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x70,0x70,0x70,0x0,0x0,0x70,0x7,0x7,0x7,0x7,0x7,0x7,
0x7,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7,0x7,
0x7,0x7,0x7,0x7,0x7,0x7,0x7,0x77,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x7,0x0,0x70,0x77,0x0,0x0,0x0,0x70,0x7,0x7,0x7,0x77,0x77,0x70,0x70,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x70,0x0,
0x0,0x70,0x77,0x70,0x77,0x70,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0x70,0x0,0x70,0x70,0x0,0x0,0x70,0x70,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x30,0x70,0x21,0x0,0x0,
0x0,0x70,0x7,0x0,0x0,0x70,0x7,0x7,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x30,0x43,0x3,0x72,0x72,0x13,0x73,0x3,0x40,0x34,0x34,0x3,0x40,0x30,
0x0,0x0,0x64,0x30,0x0,0x0,0x0,0x0,0x77,0x0,0x42,0x12,0x3,0x3,0x1,0x27,
0x32,0x12,0x32,0x1,0x21,0x25,0x21,0x61,0x61,0x61,0x67,0x7,0x0,0x0,0x0,0x0,
0x70,0x0,0x12,0x3,0x43,0x21,0x32,0x72,0x12,0x34,0x30,0x34,0x33,0x23,0x32,0x33,
0x32,0x12,0x0,0x47,0x0,0x0,0x0,0x0,0x70,0x6,0x1,0x21,0x21,0x63,0x21,0x73,
0x32,0x73,0x7,0x3,0x37,0x37,0x37,0x73,0x73,0x25,0x23,0x27,0x0,0x0,0x0,0x0,
0x7,0x0,0x30,0x73,0x21,0x20,0x77,0x32,0x37,0x33,0x21,0x32,0x72,0x72,0x33,0xb7,
0x33,0x23,0x37,0x50,0x0,0x0,0x0,0x0,0x70,0x0,0x3,0x23,0x6,0x13,0x28,0x37,
0x13,0x61,0x72,0x73,0x33,0x33,0x73,0x33,0x73,0x37,0x37,0x70,0x0,0x0,0x0,0x0,
0x0,0x71,0x63,0x3,0x30,0x36,0x33,0x32,0x73,0x32,0x37,0x37,0x73,0x73,0x33,0x7a,
0x73,0xa3,0x36,0x30,0x0,0x0,0x0,0x0,0x7,0x7,0x30,0x34,0x32,0x37,0x37,0x73,
0x73,0x37,0x37,0x73,0x7b,0x73,0x7b,0x7b,0x33,0x73,0x83,0x60,0x0,0x0,0x0,0x0,
0x7,0x61,0x23,0x3,0x33,0x73,0x33,0x73,0x37,0x37,0x7b,0x78,0xa7,0x7a,0x83,0x8a,
0x8b,0x8b,0x77,0x50,0x0,0x0,0x0,0x0,0x7,0x7,0x3,0x27,0x23,0x77,0x37,0x33,
0x7b,0x7b,0x88,0xb7,0x8b,0x88,0xb8,0x8b,0x87,0x88,0x82,0x70,0x0,0x0,0x0,0x0,
0x7,0x17,0x33,0x33,0x73,0x7b,0x7b,0x7b,0x77,0x87,0x88,0x78,0x87,0x8b,0x88,0xb8,
0x8b,0x88,0xb6,0x70,0x0,0x0,0x0,0x7,0x7,0x7,0x37,0x77,0x38,0xb7,0x8b,0x88,
0x8b,0x88,0xb8,0x8b,0x88,0x88,0x88,0x88,0x88,0xb8,0x77,0x70,0x0,0x0,0x0,0x7,
0x7,0x7,0x73,0x8b,0x88,0xb7,0x8a,0x8b,0x88,0xb8,0x88,0x88,0x8b,0x88,0xb8,0x8b,
0x88,0x88,0x72,0x70,0x0,0x0,0x0,0x7,0x6,0x17,0xb7,0xb8,0x7b,0x87,0xb8,0xb8,
0x88,0x88,0x8b,0x88,0x88,0x88,0x88,0x8f,0x8b,0x88,0x77,0x0,0x0,0x0,0x0,0x0,
0x70,0x73,0x77,0x8a,0x87,0x8b,0x88,0x88,0x8b,0x8b,0x88,0x88,0x88,0x88,0x88,0xfb,
0x88,0x8b,0x72,0x0,0x0,0x0,0x0,0x1,0x7,0x7,0xb7,0xb8,0xb8,0x88,0x88,0xb8,
0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xf8,0x88,0x88,0x75,0x0,0x0,0x0,0x0,0x6,
0x7,0x27,0x38,0x78,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x8f,0x8f,0x88,
0xfb,0xf8,0x36,0x0,0x0,0x0,0x0,0x0,0x14,0x37,0x37,0xb8,0x88,0xff,0x88,0xf8,
0x88,0x88,0xf8,0x88,0xff,0xff,0xff,0xff,0x8f,0x88,0x73,0x0,0x0,0x0,0x0,0x0,
0x61,0x63,0x77,0x78,0x88,0xf8,0xf8,0x88,0xf8,0xff,0xf8,0xff,0x8f,0x8f,0xff,0xf8,
0xff,0xf8,0x65,0x0,0x0,0x0,0x0,0x0,0x34,0x37,0x37,0x88,0xf8,0xf8,0xf8,0xf8,
0xff,0x8f,0xff,0x8f,0xff,0xff,0xff,0x8f,0xff,0xf8,0x37,0x0,0x0,0x0,0x0,0x70,
0x41,0x63,0x77,0x88,0xf8,0xff,0x88,0x88,0xff,0xf8,0xf8,0xff,0x8f,0xff,0xff,0xff,
0xff,0xf7,0x77,0x0,0x0,0x0,0x0,0x70,0x30,0x77,0x78,0x8f,0x88,0x8f,0x88,0x8f,
0x8f,0xff,0xff,0x8f,0xff,0xff,0xf8,0xff,0xff,0xf7,0x27,0x0,0x0,0x0,0x0,0x70,
0x42,0x57,0x88,0x8e,0xf8,0x88,0xf8,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xf7,0x50,0x0,0x0,0x0,0x0,0x52,0x14,0x78,0x7e,0x88,0x88,0xf8,0x88,0xf8,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0x30,0x0,0x0,0x0,0x0,0x20,
0x2,0x76,0x87,0xe8,0xef,0x88,0x8f,0x8f,0xff,0xff,0xff,0xff,0xff,0x8f,0xff,0xff,
0xff,0x87,0x40,0x0,0x0,0x0,0x0,0x50,0x50,0x7e,0x7e,0x88,0x8e,0x88,0x88,0xff,
0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xff,0x83,0x70,0x0,0x0,0x0,0x0,0x20,
0x24,0x7e,0x88,0xe8,0xe8,0x88,0x8f,0x8f,0xff,0xff,0xf8,0xff,0xff,0xff,0xff,0xf8,
0xff,0x86,0x10,0x0,0x0,0x0,0x0,0x5,0x2,0x88,0x88,0x88,0x88,0xef,0x88,0x8f,
0x8f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x87,0x70,0x0,0x0,0x0,0x0,0x2,
0x14,0x7e,0x88,0xe8,0xe8,0x8e,0xf8,0x88,0xf8,0x8f,0x8f,0xf8,0xf8,0xff,0x8f,0x8f,
0xff,0x76,0x70,0x0,0x0,0x0,0x0,0x50,0x6,0x88,0x88,0x88,0x88,0x88,0xe8,0xef,
0x88,0x88,0x88,0xf8,0xff,0xff,0xff,0xff,0x8f,0x73,0x70,0x0,0x0,0x0,0x7,0x24,
0x0,0xe8,0xe8,0xe8,0xe8,0xee,0x8e,0x88,0xef,0xef,0x88,0x88,0x88,0x88,0x88,0x88,
0xf8,0x74,0x80,0x0,0x0,0x0,0x7,0x1,0x25,0x46,0x56,0x57,0x47,0x47,0x47,0x76,
0x77,0x76,0x76,0x76,0x76,0x76,0x76,0x76,0x76,0x73,0x0,0x0,0x0,0x0,0x7,0x0,
0x0,0x0,0x0,0x2,0x12,0x12,0x52,0x50,0x70,0x53,0x43,0x74,0x37,0x43,0x65,0x34,
0x35,0x25,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x30,0x34,0x34,0x74,0x77,0x75,0x77,
0x77,0x77,0x77,0x77,0x77,0x87,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xe0,0x7f,0xff,0xff,0x0,0x0,0xff,0xff,0x80,
0x1,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xf,0xff,0x0,0x0,0xff,0xfc,0x0,
0x0,0x0,0x7f,0x0,0x0,0xff,0xfc,0x0,0x0,0x0,0x3f,0x0,0x0,0xff,0xfc,0x0,
0x0,0x0,0x7f,0x0,0x0,0xff,0xff,0x0,0x0,0x1,0xff,0x0,0x0,0xff,0x80,0x0,
0x0,0x7,0xff,0x0,0x0,0xfe,0x0,0x0,0x4,0x1f,0xff,0x0,0x0,0xfe,0x0,0x0,
0x1,0xff,0xff,0x0,0x0,0xfe,0x0,0x0,0x0,0x1,0xff,0x0,0x0,0xfe,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x3f,0x0,0x0,0xf0,0x0,0x0,0x0,0x1f,0xff,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x28,0x0,0x0,
0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x0,
0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x80,0x0,
0x0,0x0,0x80,0x80,0x0,0x80,0x0,0x0,0x0,0x80,0x0,0x80,0x0,0x80,0x80,0x0,
0x0,0x80,0x80,0x80,0x0,0xc0,0xc0,0xc0,0x0,0x0,0x0,0xff,0x0,0x0,0xff,0x0,
0x0,0x0,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0xff,0xff,0x0,
0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7,0x77,0x77,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x70,0x0,0x77,0x77,
0x78,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x7,0x0,0x70,0x0,0x70,
0x70,0x77,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x70,0x0,0x7,0x7,0x7,0x7,
0x7,0x70,0x70,0x0,0x0,0x0,0x0,0x0,0x77,0x77,0x70,0x70,0x0,0x70,0x77,0x70,
0x77,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7,0x0,0x7,
0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x2,0x10,0x20,0x0,0x0,0x70,0x7,
0x7,0x70,0x0,0x0,0x0,0x0,0x0,0x70,0x70,0x30,0x72,0x53,0x73,0x72,0x1,0x24,
0x30,0x40,0x0,0x67,0x0,0x0,0x0,0x70,0x0,0x30,0x30,0x30,0x32,0x13,0x6,0x13,
0x23,0x33,0x70,0x30,0x0,0x0,0x0,0x0,0x3,0x43,0x21,0x27,0x33,0x72,0x13,0x37,
0x37,0x37,0x32,0x70,0x0,0x0,0x0,0x70,0x3,0x21,0x63,0x73,0x63,0x3,0x63,0x72,
0x33,0x73,0x33,0x77,0x0,0x0,0x0,0x7,0x61,0x23,0x3,0x73,0x37,0x37,0x37,0x37,
0x33,0xb7,0xa3,0x36,0x0,0x0,0x0,0x7,0x12,0x13,0x73,0x37,0x33,0x73,0x83,0x83,
0x78,0xa7,0xb7,0x73,0x0,0x0,0x0,0x7,0x23,0x72,0x37,0x37,0x37,0xb8,0x87,0xb8,
0x8b,0x88,0x88,0x77,0x0,0x0,0x0,0x7,0x17,0x37,0x8b,0x8b,0x88,0x88,0xb8,0x88,
0x88,0xb8,0xb8,0x73,0x0,0x0,0x0,0x70,0x73,0x8b,0x78,0xa8,0x8b,0x88,0x88,0x8b,
0x88,0x88,0x88,0x77,0x0,0x0,0x7,0x7,0x7b,0x78,0xb8,0xb8,0x88,0xb8,0x88,0x88,
0x88,0x88,0xb8,0x37,0x0,0x0,0x7,0x3,0x77,0xb8,0x88,0x88,0x88,0x88,0x88,0x88,
0x8f,0x88,0x88,0x70,0x0,0x0,0x7,0x6,0x37,0x88,0x8f,0x88,0x88,0x88,0x88,0x8f,
0xff,0xf8,0xf8,0x30,0x0,0x0,0x0,0x52,0x73,0x88,0x8f,0x88,0xf8,0xff,0xf8,0xff,
0xff,0xff,0xf8,0x70,0x0,0x0,0x2,0x14,0x37,0x8f,0x8f,0x88,0xff,0x8f,0xff,0xff,
0xff,0x8f,0xf8,0x30,0x0,0x0,0x0,0x63,0x78,0x88,0x8f,0x88,0xff,0xff,0x8f,0xff,
0xff,0xff,0xf8,0x40,0x0,0x0,0x0,0x16,0x88,0xef,0x88,0xf8,0xff,0x8f,0xff,0xff,
0x8f,0xff,0xf7,0x30,0x0,0x0,0x4,0x7,0x68,0x7e,0xf8,0x8f,0xff,0xff,0xff,0xff,
0xff,0xff,0xf7,0x70,0x0,0x0,0x3,0x7,0xe8,0x88,0xe8,0x8f,0xff,0xff,0xff,0xff,
0xff,0xff,0xf7,0x70,0x0,0x0,0x70,0x47,0x88,0xe8,0x88,0x88,0x8f,0xff,0xff,0x8f,
0xff,0x8f,0xf3,0x70,0x0,0x0,0x70,0x7,0xe8,0x88,0xe8,0xef,0x88,0x88,0x8f,0xff,
0x8f,0xff,0x86,0x0,0x0,0x0,0x70,0x27,0x88,0xe8,0x8e,0x7e,0x8e,0x88,0x88,0x88,
0x88,0x88,0x77,0x0,0x0,0x0,0x70,0x40,0x40,0x4,0x5,0x70,0x75,0x66,0x66,0x46,
0x26,0x56,0x70,0x0,0x0,0x0,0x7,0x34,0x37,0x77,0x77,0x77,0x70,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xf0,0xf,0xff,0xff,0xc0,0x0,
0x7f,0xff,0x80,0x0,0xf,0xff,0x80,0x0,0x1f,0xfc,0x0,0x0,0x7f,0xf8,0x0,0x19,
0xff,0xf0,0x0,0x0,0x7f,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,
0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,
0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0,
0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,
0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xc0,0x0,0x0,
0x7,0xc0,0x0,0x0,0xf,0xc0,0x0,0x0,0xf,0xc0,0x0,0x0,0xf,0xe0,0x1,0xff,
0xff,0xff,0xff,0xff,0xff,0x28,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,
0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x80,0x0,0x0,0x80,0x0,0x0,0x0,0x80,0x80,0x0,0x80,0x0,0x0,
0x0,0x80,0x0,0x80,0x0,0x80,0x80,0x0,0x0,0x80,0x80,0x80,0x0,0xc0,0xc0,0xc0,
0x0,0x0,0x0,0xff,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0x0,0x0,
0x0,0xff,0x0,0xff,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
0x77,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x77,0x78,0x0,0x0,0x0,0x7,
0x1,0x61,0x61,0x70,0x0,0x0,0x70,0x0,0x6,0x7,0x77,0x0,0x0,0x0,0x0,0x33,
0x23,0x10,0x21,0x24,0x20,0x0,0x16,0x3,0x73,0x63,0x37,0x33,0x70,0x0,0x61,0x32,
0x73,0x37,0x73,0x73,0x70,0x0,0x12,0x77,0x38,0x88,0xb8,0x88,0x30,0x0,0x67,0xb8,
0xb8,0xb8,0x88,0x8b,0x70,0x0,0x17,0x88,0x88,0x88,0xf8,0xf8,0x70,0x0,0x27,0x8f,
0x8f,0xff,0xff,0xff,0x70,0x7,0x57,0x8f,0x8f,0xff,0xff,0xf8,0x0,0x7,0x28,0xe8,
0xff,0xff,0xff,0xf8,0x0,0x7,0x48,0x88,0x88,0xf8,0xff,0x88,0x0,0x0,0x27,0x66,
0x76,0x77,0x77,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x7f,0x0,
0x0,0xf8,0x3,0x0,0x0,0xf8,0x7,0x0,0x0,0xc0,0xf,0x0,0x0,0xc0,0x1,0x0,
0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,
0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0x80,0x3,0x0,0x0,0x80,0x3,0x0,
0x0,0x80,0x3,0x0,0x0,0x80,0x3,0x0,0x0,0xff,0xff,0x0,0x0,0x28,0x0,0x0,
0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x0,
0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xf,0x0,0xf,0x18,0x17,
0x0,0x13,0x13,0x13,0x0,0x12,0x18,0x16,0x0,0x13,0x1d,0x1b,0x0,0x1c,0x1c,0x1c,
0x0,0x22,0x1f,0x17,0x0,0x26,0x24,0x1e,0x0,0xd,0x2b,0x25,0x0,0xb,0x2f,0x2b,
0x0,0x15,0x25,0x20,0x0,0x19,0x24,0x21,0x0,0x10,0x2b,0x25,0x0,0x18,0x2f,0x29,
0x0,0xd,0x32,0x2c,0x0,0x1e,0x31,0x27,0x0,0x12,0x35,0x2d,0x0,0x19,0x34,0x2b,
0x0,0x15,0x3b,0x2e,0x0,0xc,0x38,0x32,0x0,0x11,0x36,0x31,0x0,0x12,0x3c,0x33,
0x0,0x1b,0x3b,0x33,0x0,0x23,0x23,0x23,0x0,0x28,0x26,0x20,0x0,0x24,0x2b,0x2a,
0x0,0x2b,0x2b,0x2b,0x0,0x33,0x2f,0x24,0x0,0x28,0x31,0x2f,0x0,0x3d,0x35,0x20,
0x0,0x27,0x3d,0x36,0x0,0x33,0x33,0x33,0x0,0x3c,0x3c,0x3c,0x0,0x44,0x39,0x1c,
0x0,0x40,0x3f,0x3f,0x0,0xb,0x49,0x39,0x0,0x13,0x45,0x38,0x0,0x15,0x56,0x3d,
0x0,0x23,0x48,0x3d,0x0,0x27,0x51,0x3d,0x0,0x4f,0x45,0x2c,0x0,0x58,0x4a,0x23,
0x0,0x4b,0x44,0x33,0x0,0x52,0x4a,0x39,0x0,0x5c,0x53,0x39,0x0,0x15,0x4b,0x41,
0x0,0x1c,0x4d,0x41,0x0,0xa,0x54,0x43,0x0,0x15,0x56,0x46,0x0,0x16,0x5e,0x51,
0x0,0x20,0x4c,0x41,0x0,0x3e,0x44,0x42,0x0,0x24,0x57,0x48,0x0,0x25,0x5e,0x55,
0x0,0xb,0x63,0x47,0x0,0x15,0x69,0x4f,0x0,0xb,0x68,0x54,0x0,0x17,0x66,0x55,
0x0,0xd,0x76,0x5b,0x0,0x14,0x75,0x59,0x0,0x22,0x65,0x4e,0x0,0x25,0x68,0x58,
0x0,0x31,0x6f,0x5c,0x0,0x26,0x74,0x5e,0x0,0x31,0x75,0x5b,0x0,0xa,0x77,0x60,
0x0,0x18,0x78,0x62,0x0,0x26,0x79,0x65,0x0,0x32,0x77,0x65,0x0,0x43,0x43,0x43,
0x0,0x4b,0x4b,0x4b,0x0,0x4c,0x54,0x4f,0x0,0x52,0x50,0x4b,0x0,0x49,0x59,0x54,
0x0,0x53,0x53,0x53,0x0,0x53,0x59,0x57,0x0,0x5b,0x5b,0x5b,0x0,0x62,0x59,0x44,
0x0,0x63,0x5c,0x4a,0x0,0x64,0x5d,0x50,0x0,0x55,0x62,0x5e,0x0,0x65,0x62,0x5b,
0x0,0x77,0x74,0x5e,0x0,0x4c,0x6c,0x65,0x0,0x59,0x66,0x63,0x0,0x47,0x71,0x69,
0x0,0x53,0x75,0x6b,0x0,0x4a,0x7c,0x76,0x0,0x63,0x63,0x62,0x0,0x6c,0x6c,0x6c,
0x0,0x6b,0x7f,0x7a,0x0,0x73,0x73,0x73,0x0,0x7a,0x7a,0x74,0x0,0x7b,0x7b,0x7b,
0x0,0x89,0x71,0x21,0x0,0x86,0x7b,0x54,0x0,0x13,0x81,0x5b,0x0,0x18,0x86,0x69,
0x0,0x1d,0x8c,0x73,0x0,0x18,0x98,0x73,0x0,0x28,0x83,0x6d,0x0,0x3c,0x86,0x6f,
0x0,0x27,0x8a,0x74,0x0,0x36,0x8a,0x79,0x0,0x24,0x96,0x79,0x0,0x37,0x96,0x7b,
0x0,0x1e,0xa1,0x7b,0x0,0x51,0x8f,0x7b,0x0,0x41,0x90,0x77,0x0,0x7f,0x80,0x7e,
0x0,0x96,0x82,0x3e,0x0,0xab,0x96,0x50,0x0,0xb9,0xa9,0x6a,0x0,0xc9,0xab,0x44,
0x0,0xc3,0xab,0x5a,0x0,0xda,0xb6,0x51,0x0,0xc3,0xb0,0x63,0x0,0xd5,0xbb,0x6c,
0x0,0xc7,0xb5,0x75,0x0,0xd6,0xbf,0x73,0x0,0xf5,0xc4,0x58,0x0,0xdb,0xc4,0x7c,
0x0,0xe2,0xc0,0x6b,0x0,0xf5,0xc7,0x67,0x0,0xf4,0xcc,0x79,0x0,0x29,0x9b,0x82,
0x0,0x36,0x98,0x83,0x0,0x1e,0xa6,0x8b,0x0,0x1f,0xab,0x91,0x0,0x26,0xa5,0x88,
0x0,0x37,0xa5,0x89,0x0,0x2d,0xb2,0x8c,0x0,0x33,0xb1,0x8b,0x0,0x2a,0xa9,0x95,
0x0,0x3b,0xaa,0x97,0x0,0x27,0xb3,0x92,0x0,0x35,0xb6,0x99,0x0,0x3f,0xbe,0xb3,
0x0,0x43,0x8b,0x80,0x0,0x58,0x88,0x80,0x0,0x43,0x99,0x84,0x0,0x52,0x96,0x87,
0x0,0x5b,0x93,0x93,0x0,0x76,0x94,0x8a,0x0,0x6b,0x97,0x92,0x0,0x47,0xa6,0x89,
0x0,0x57,0xaa,0x89,0x0,0x51,0xb1,0x8e,0x0,0x4b,0xa9,0x98,0x0,0x57,0xa6,0x96,
0x0,0x4b,0xb3,0x98,0x0,0x56,0xb5,0x99,0x0,0x67,0xaf,0x95,0x0,0x62,0xb8,0x9f,
0x0,0x5e,0xaf,0xa2,0x0,0x49,0xba,0xa3,0x0,0x59,0xb8,0xa3,0x0,0x6b,0xbc,0xa8,
0x0,0x48,0xc5,0xa6,0x0,0x59,0xc4,0xab,0x0,0x5a,0xc9,0xb2,0x0,0x67,0xc5,0xad,
0x0,0x76,0xc4,0xaa,0x0,0x66,0xc9,0xb3,0x0,0x7a,0xca,0xb6,0x0,0x62,0xd2,0xbb,
0x0,0x77,0xd1,0xbb,0x0,0x6a,0xd4,0xc1,0x0,0x78,0xd8,0xc3,0x0,0x82,0x82,0x82,
0x0,0x8b,0x8b,0x8b,0x0,0x80,0x9d,0x8d,0x0,0x96,0x96,0x8e,0x0,0x95,0x95,0x95,
0x0,0x9d,0x9c,0x9c,0x0,0x83,0xa6,0x9b,0x0,0x96,0xaa,0x96,0x0,0xa6,0xac,0x8e,
0x0,0xbb,0xb5,0x89,0x0,0xa5,0xaf,0x90,0x0,0xaa,0xb8,0x9f,0x0,0xb8,0xbc,0x9d,
0x0,0x89,0xb1,0xa4,0x0,0x8e,0xb8,0xb0,0x0,0xa2,0xa2,0xa2,0x0,0xa8,0xa8,0xa2,
0x0,0xaa,0xaa,0xaa,0x0,0xa5,0xbd,0xad,0x0,0xb2,0xb2,0xb2,0x0,0xbc,0xbb,0xb7,
0x0,0x86,0xcb,0xbc,0x0,0x87,0xd1,0xba,0x0,0x98,0xd0,0xbd,0x0,0xa9,0xd0,0xbd,
0x0,0xda,0xc7,0x89,0x0,0xdf,0xcf,0x96,0x0,0xe5,0xcb,0x84,0x0,0xf1,0xce,0x88,
0x0,0xed,0xd0,0x8c,0x0,0xfa,0xd3,0x89,0x0,0xe9,0xd2,0x97,0x0,0xf6,0xd7,0x98,
0x0,0xca,0xcf,0xb4,0x0,0xc9,0xd5,0xbd,0x0,0xd9,0xda,0xb9,0x0,0xe9,0xd9,0xa7,
0x0,0xf7,0xdc,0xa6,0x0,0xec,0xde,0xb2,0x0,0xff,0xe1,0xac,0x0,0xed,0xe3,0xbf,
0x0,0xf9,0xe4,0xbb,0x0,0x88,0xd9,0xc6,0x0,0x94,0xda,0xc9,0x0,0x9c,0xdf,0xd0,
0x0,0xa5,0xdc,0xca,0x0,0xbc,0xd6,0xcc,0x0,0xa4,0xdf,0xd1,0x0,0xb8,0xdb,0xd2,
0x0,0x8d,0xe1,0xcf,0x0,0x9a,0xe1,0xce,0x0,0x8c,0xe4,0xd3,0x0,0x98,0xe3,0xd3,
0x0,0xb2,0xe0,0xcc,0x0,0xa6,0xe7,0xd9,0x0,0xb8,0xe5,0xd9,0x0,0xaf,0xee,0xe2,
0x0,0xb7,0xec,0xe1,0x0,0xbc,0xf0,0xe6,0x0,0xc7,0xca,0xc7,0x0,0xcf,0xdb,0xce,
0x0,0xd6,0xda,0xc7,0x0,0xce,0xe4,0xcd,0x0,0xd9,0xe2,0xcf,0x0,0xc7,0xe4,0xd6,
0x0,0xd7,0xe8,0xd9,0x0,0xea,0xe5,0xca,0x0,0xf7,0xe9,0xc8,0x0,0xe7,0xe9,0xd6,
0x0,0xf3,0xeb,0xd3,0x0,0xfb,0xf1,0xd8,0x0,0xc1,0xee,0xe4,0x0,0xd8,0xec,0xe3,
0x0,0xcd,0xf0,0xe7,0x0,0xd7,0xf1,0xe8,0x0,0xd4,0xf6,0xf0,0x0,0xe6,0xed,0xe6,
0x0,0xe8,0xf3,0xec,0x0,0xfa,0xf8,0xe9,0x0,0xeb,0xf5,0xf2,0x0,0xf2,0xf5,0xf3,
0x0,0xf4,0xfa,0xf5,0x0,0xfe,0xfc,0xf3,0x0,0xf7,0xfa,0xf8,0x0,0xfe,0xfe,0xfd,
0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x21,0x21,0x4b,0x4d,0x5e,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x20,0x4,0x18,0x20,0x46,0x47,0x4b,0x4d,0x4d,
0x5a,0x5c,0xaa,0xaf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x21,0x4,0x6,0x1b,0x1b,0x1b,0x20,0x20,0x21,0x21,0x46,
0x4b,0x59,0x5a,0x5e,0xab,0xae,0xae,0xae,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x4d,0x6,0x6,0x18,0x18,0x18,0x18,0x18,0x1a,0x1b,0x1b,0x20,0x21,
0x21,0x21,0x46,0x46,0x47,0x4b,0x5a,0xaa,0xae,0xbb,0xbd,0xbd,0xbd,0xbd,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x1b,0x18,0x6,0x6,0x6,0x6,0x6,0x6,0x18,0x18,0x1b,0x1b,0x1b,
0x20,0x20,0x21,0x21,0x46,0x46,0x46,0x46,0x47,0x47,0x4b,0x5a,0xaa,0xae,0xaf,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x4b,0x1b,0x18,0x6,0x18,0x1b,0x6,0x6,0x18,0x18,0x1b,0x1b,0x20,
0x20,0x21,0x21,0x21,0x46,0x46,0x46,0x46,0x46,0x47,0x47,0x47,0x4b,0x4d,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x5c,0x1b,0x4,0x18,0x1a,0x18,0x18,0x1b,0x1b,0x20,0x21,
0x21,0x46,0x46,0x46,0x46,0x47,0x47,0x47,0x4b,0x4b,0x4d,0x5a,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x20,
0x20,0x21,0x47,0x4d,0x4d,0x18,0x4,0x18,0x6,0x1a,0x1a,0x1a,0x1b,0x20,0x21,0x23,
0x47,0x4b,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x4d,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x18,0x4,0x4,
0x4,0x4,0x1,0x4,0x1,0x1,0x1,0x1,0x4,0x3,0x4,0x7,0x1a,0x1b,0x23,0x47,
0x59,0xab,0x0,0xab,0x5e,0x5c,0x5a,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x18,0x4,0x1,
0x4,0x4,0x1,0x1,0x1,0x4,0x1,0x4,0x4,0x3,0x3,0x6,0x3,0x6,0x6,0x6,
0x1b,0x23,0x4c,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x18,0x1,0x4,
0xb,0xd,0xd,0x12,0x17,0x17,0x1a,0x6,0x6,0x6,0x6,0x6,0x8,0x6,0x18,0x18,
0x18,0x18,0x18,0x1a,0x18,0x18,0x18,0x1b,0x20,0x46,0x4b,0x5c,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x6,0x4,0x4,
0xd,0xd,0x15,0x15,0x33,0x3d,0x31,0x28,0x17,0xd,0x2f,0x8b,0x36,0x15,0x1f,0x1f,
0x1a,0x1a,0x1b,0x1a,0x1b,0x1b,0x1b,0x1b,0x1b,0x1b,0x18,0x18,0x18,0x18,0x6,0x22,
0x2a,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1b,0x4,0x3,0x4,
0x9,0xa,0x15,0x17,0x35,0x39,0x17,0x2f,0x14,0x25,0x44,0x65,0x30,0x24,0x35,0x36,
0x16,0xf,0x9,0x11,0x12,0x2f,0x27,0x27,0x17,0x1f,0x1f,0x1d,0x1b,0x18,0x18,0x2a,
0x5f,0x1c,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1b,0x4,0x3,0x4,
0xf,0x15,0x16,0x2f,0x35,0x31,0x31,0x32,0x30,0x36,0x3a,0x37,0x37,0x31,0x24,0x17,
0x15,0x15,0x17,0x32,0x43,0x3a,0x3d,0x3d,0x3a,0x43,0x63,0x62,0x31,0x13,0x13,0x10,
0x10,0x8,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1a,0x4,0x3,0xc,
0x16,0x16,0x31,0x26,0x25,0x17,0x31,0x37,0x2e,0x68,0x43,0x42,0x32,0x95,0x31,0x35,
0x2e,0x2f,0x3a,0x62,0x65,0x3e,0x44,0x7e,0x7e,0x89,0x80,0x83,0x37,0x24,0x28,0x26,
0x35,0x20,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1a,0x3,0x3,0xd,
0x25,0x31,0x3c,0x31,0x16,0x16,0x2e,0x31,0x96,0x9b,0x31,0x3a,0x67,0x45,0x35,0x2e,
0x2e,0x3a,0x43,0x40,0x45,0x45,0x44,0x7e,0x6b,0x89,0x89,0x62,0x61,0x38,0x61,0x64,
0x57,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x18,0x3,0x3,0x11,
0x30,0x39,0x31,0x24,0x2e,0x25,0x31,0x3e,0x9e,0x36,0x3f,0x3a,0x7f,0x2e,0x32,0x36,
0x43,0x45,0x44,0x68,0x67,0x69,0x62,0x62,0x64,0x81,0x80,0x7e,0x61,0x61,0x62,0x85,
0x57,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x20,0x20,0x31,
0x37,0x26,0x30,0x35,0x30,0x30,0x36,0x7f,0x65,0x36,0x45,0x68,0x67,0x43,0x43,0x40,
0x66,0x8d,0x8d,0x6a,0x89,0x88,0x63,0x63,0x82,0x80,0x86,0x92,0x64,0x64,0x64,0x6b,
0x54,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x23,0x47,0x4b,0x32,
0x24,0x24,0x31,0x30,0x37,0x3a,0x68,0x92,0x43,0x8c,0x43,0x87,0x65,0x44,0x67,0x8d,
0x96,0x96,0x93,0x94,0x83,0x6a,0x8d,0x7e,0x9f,0x84,0x89,0x6a,0x6b,0x84,0x85,0x94,
0x52,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x23,0x46,0x4b,0x2e,
0x2e,0x24,0x39,0x43,0x3b,0x7f,0x95,0x69,0x44,0x6d,0x67,0x83,0x69,0x7e,0x8b,0x9d,
0xa5,0x98,0x93,0x98,0x92,0x93,0x8d,0x94,0xa0,0xa0,0x9f,0x9a,0x98,0xa4,0xa1,0xa2,
0x52,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x23,0x46,0x4a,0x30,
0x24,0x39,0x65,0x61,0x69,0x9b,0x6a,0x86,0x83,0x89,0x86,0x83,0x89,0x9c,0x9b,0xc0,
0xa2,0xa0,0xa3,0x99,0xa3,0xa3,0xd4,0xd4,0xd4,0xa9,0xa9,0xa9,0xa3,0xa7,0xdb,0xbf,
0x4d,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x46,0x46,0x4a,0x39,
0x42,0x63,0x67,0x63,0x7f,0x83,0x86,0x8a,0x9c,0x89,0x9d,0x9c,0xa4,0xa5,0xa5,0xd7,
0xdb,0xd4,0xd7,0xc1,0xc0,0xc1,0xd4,0xd9,0xdb,0xdb,0xd4,0xa7,0xa7,0xd5,0xdc,0xb8,
0x4b,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x18,0x23,0x46,0x54,0x67,
0x7f,0x87,0x9d,0x97,0xa3,0xa0,0xa4,0xa5,0xa2,0xa8,0xbf,0xa5,0xa9,0xdb,0xbf,0xd9,
0xc1,0xdf,0xc1,0xd5,0xdc,0xe0,0xd9,0xde,0xdb,0xde,0xde,0xdb,0xc0,0xdb,0xe0,0xb0,
0x4d,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1b,0x21,0x46,0x8c,0x9c,
0x97,0xa2,0xa7,0xa5,0xa5,0xa4,0xa7,0xa8,0xa6,0xa7,0xd5,0xd5,0xdd,0xdd,0xdb,0xd9,
0xe1,0xd9,0xd6,0xd9,0xe0,0xd9,0xe0,0xe0,0xe2,0xde,0xe2,0xd7,0xdb,0xe0,0xe0,0xac,
0x4b,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1b,0x46,0x21,0x8e,0x9c,
0x9c,0xa5,0xa7,0xa3,0xa7,0xa7,0xa7,0xa1,0xa6,0xa9,0xdb,0xd6,0xd5,0xd5,0xd6,0xd6,
0xd9,0xe1,0xe0,0xe0,0xe3,0xe2,0xe0,0xe2,0xe2,0xe2,0xe1,0xe2,0xdc,0xde,0xdc,0x5b,
0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x1b,0x21,0x46,0x8e,0x9c,
0xa0,0xa1,0xa2,0xa0,0xa7,0xa7,0xa6,0xd4,0xa9,0xa9,0xd6,0xe0,0xdd,0xdd,0xe0,0xe0,
0xe0,0xe4,0xe3,0xe4,0xe4,0xe4,0xe2,0xe2,0xe2,0xf5,0xe1,0xde,0xde,0xdc,0xdc,0x57,
0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x20,0x21,0x21,0x95,0x9c,
0xa0,0xa2,0xa4,0xa8,0xd4,0xd5,0xda,0xdf,0xc1,0xd6,0xf1,0xe4,0xe0,0xe0,0xe0,0xe0,
0xe2,0xe0,0xf1,0xf1,0xf1,0xe2,0xf1,0xe1,0xf4,0xf3,0xe0,0xdc,0xde,0xea,0xdb,0x52,
0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x21,0x21,0x8d,0x87,
0xa0,0xa4,0xbf,0xdf,0xea,0xe6,0xf6,0xeb,0xea,0xea,0xe1,0xe1,0xd9,0xe0,0xd9,0xf1,
0xda,0xda,0xda,0xda,0xea,0xf2,0xeb,0xf7,0xf4,0xf4,0xeb,0xeb,0xdf,0xf3,0xe3,0x4c,
0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x1d,0x20,0x46,0x8b,0x8e,
0x96,0x9e,0xc2,0xeb,0xf2,0xf8,0xf8,0xe6,0xf2,0xf2,0xea,0xdf,0xda,0xea,0xeb,0xf2,
0xeb,0xf2,0xea,0xf4,0xfa,0xfa,0xf7,0xfe,0xfd,0xfd,0xfb,0xeb,0xf5,0xf4,0xd8,0x4c,
0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x20,0x20,0x46,0x58,0x58,
0x8f,0xb7,0xe5,0xee,0xe6,0xf8,0xf6,0xe7,0xee,0xea,0xea,0xf2,0xee,0xf6,0xfa,0xfa,
0xf6,0xf3,0xf9,0xfa,0xfa,0xfa,0xfe,0xfe,0xfe,0xfe,0xf4,0xfb,0xf9,0xf9,0xcc,0x4b,
0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1b,0x20,0x34,0x56,0x58,
0x91,0xbc,0xe7,0xef,0xeb,0xf0,0xe9,0xef,0xe8,0xea,0xee,0xee,0xf8,0xf8,0xf9,0xf9,
0xf7,0xf7,0xf9,0xfa,0xfa,0xfe,0xfe,0xfe,0xfe,0xf9,0xfb,0xfd,0xfb,0xfe,0xbd,0x4d,
0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x6,0x20,0x1b,0x34,0x56,0x8c,
0xb0,0xcb,0xec,0xf0,0xee,0xed,0xf0,0xef,0xe7,0xcc,0xe9,0xf8,0xf9,0xf8,0xf8,0xf9,
0xf7,0xf7,0xfa,0xfa,0xfe,0xfe,0xfe,0xfe,0xfe,0xf7,0xfd,0xfe,0xfe,0xfe,0xba,0x4b,
0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x6,0x1b,0x1b,0x48,0x90,0xac,
0xb5,0xcd,0xed,0xed,0xed,0xf0,0xef,0xef,0xcd,0xcd,0xee,0xf8,0xf8,0xf8,0xfb,0xf8,
0xfa,0xf7,0xfa,0xfe,0xfe,0xfe,0xfe,0xfe,0xf9,0xfe,0xfe,0xfe,0xfe,0xfe,0xae,0x4d,
0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x6,0x1b,0x1b,0x52,0xb4,0xb1,
0xb6,0xce,0xd0,0xcf,0xd2,0xf0,0xef,0xef,0xec,0xeb,0xf8,0xf8,0xfd,0xf8,0xf8,0xf8,
0xfa,0xfa,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfa,0xfe,0xfe,0xfe,0xfe,0xfe,0x5e,0x4c,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x18,0x1b,0x18,0x53,0xb3,0xb2,
0xb3,0xc3,0xc3,0xce,0xd2,0xef,0xed,0xef,0xee,0xf0,0xf8,0xfd,0xfd,0xfd,0xfd,0xf8,
0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfa,0x5c,0x4b,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x18,0x18,0x18,0x60,0x73,0x71,
0x71,0x71,0x7a,0xce,0xd0,0xd2,0xd2,0xec,0xf0,0xf8,0xfb,0xfe,0xfe,0xfe,0xfd,0xfd,
0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xf7,0x59,0x4b,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x18,0x6,0x18,0x6f,0x72,0x73,
0x75,0x76,0xc5,0xc4,0xce,0xce,0xd0,0xed,0xef,0xf8,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,
0xfe,0xfe,0xfe,0xfe,0xfd,0xf8,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xee,0x4d,0x48,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x6,0x8,0x70,0x76,0x78,
0x7a,0xc5,0xc5,0xc5,0xc7,0xce,0xd0,0xed,0xf0,0xf8,0xf8,0xfe,0xfe,0xfe,0xfe,0xfe,
0xfe,0xfe,0xfe,0xfd,0xf8,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xe7,0x4b,0x4b,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x18,0x6,0x8,0x71,0xc3,0xc9,
0xce,0xc7,0xc5,0xc6,0xc7,0xca,0xcf,0xd3,0xed,0xf0,0xf8,0xf8,0xfd,0xfd,0xfd,0xf8,
0xfd,0xfd,0xf8,0xf8,0xf8,0xfd,0xfd,0xf8,0xfd,0xf8,0xf8,0xf8,0xfd,0xbe,0x4b,0x4d,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x18,0x6,0x8,0x77,0xc9,0xce,
0xce,0xce,0xc9,0xca,0xca,0xca,0xca,0xd1,0xd3,0xed,0xf0,0xf0,0xf0,0xf0,0xf8,0xf0,
0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf8,0xfd,0xf8,0xf8,0xf8,0xf8,0xf8,0xba,0x4b,0x5a,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x18,0x4,0x1c,0x76,0xc3,0xc4,
0xce,0xcf,0xd0,0xcf,0xca,0xc8,0xc8,0xc8,0xca,0xca,0xd1,0xd1,0xd3,0xf0,0xed,0xf0,
0xf0,0xf0,0xf0,0xf0,0xf8,0xf8,0xf8,0xf8,0xf0,0xf8,0xf8,0xf8,0xf8,0xad,0x4b,0xab,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1b,0x6,0x4,0x1e,0x74,0x7b,0xc5,
0xc9,0xc9,0xc9,0xc6,0x7d,0x7c,0x79,0x79,0x7c,0xc8,0xc8,0xca,0xcf,0xcf,0xd3,0xd3,
0xd3,0xed,0xed,0xef,0xef,0xef,0xef,0xef,0xec,0xef,0xee,0xec,0xee,0x5d,0x4b,0xb9,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1b,0x18,0x4,0x7,0x29,0x29,0x2b,
0x2b,0x2c,0x2c,0x2c,0x2d,0x2d,0x2d,0x4e,0x4e,0x50,0x52,0x52,0x52,0x52,0x52,0x52,
0x59,0x52,0x59,0x59,0x52,0x4d,0x59,0x4c,0x59,0x4c,0x52,0x4d,0x4d,0x4b,0x4b,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1b,0x4,0x1,0x4,0x3,0x4,0x6,
0x6,0x18,0x1b,0x20,0x20,0x21,0x21,0x46,0x47,0x47,0x47,0x47,0x47,0x49,0x49,0x49,
0x49,0x49,0x49,0x47,0x47,0x47,0x47,0x49,0x49,0x49,0x4b,0x4b,0x4b,0x4b,0x52,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1b,0x6,0x4,0x6,0x6,0x1a,
0x1b,0x20,0x23,0x46,0x49,0x49,0x4c,0x52,0x52,0x52,0x55,0x5a,0x5c,0x5c,0x5c,0x5b,
0xaa,0xab,0xab,0xab,0xaf,0xaf,0xaf,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xe0,
0x7f,0xff,0xff,0x0,0x0,0xff,0xff,0x80,0x1,0xff,0xff,0x0,0x0,0xff,0xff,0x0,
0x0,0xf,0xff,0x0,0x0,0xff,0xfc,0x0,0x0,0x0,0x7f,0x0,0x0,0xff,0xfc,0x0,
0x0,0x0,0x3f,0x0,0x0,0xff,0xfc,0x0,0x0,0x0,0x7f,0x0,0x0,0xff,0xff,0x0,
0x0,0x1,0xff,0x0,0x0,0xff,0x80,0x0,0x0,0x7,0xff,0x0,0x0,0xfe,0x0,0x0,
0x4,0x1f,0xff,0x0,0x0,0xfe,0x0,0x0,0x1,0xff,0xff,0x0,0x0,0xfe,0x0,0x0,
0x0,0x1,0xff,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf8,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x3f,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0xf0,0x0,0x0,
0x0,0x1f,0xff,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xff,0x0,0x0,0x28,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,
0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,
0x0,0x13,0x13,0x13,0x0,0x14,0x1c,0x1a,0x0,0x1c,0x1c,0x1c,0x0,0x11,0x23,0x1e,
0x0,0xf,0x25,0x23,0x0,0xd,0x2c,0x25,0x0,0xe,0x2e,0x29,0x0,0x13,0x26,0x22,
0x0,0x18,0x27,0x23,0x0,0x1c,0x2b,0x29,0x0,0xd,0x34,0x2f,0x0,0x1b,0x31,0x2b,
0x0,0x15,0x38,0x2e,0x0,0xf,0x36,0x31,0x0,0xf,0x38,0x31,0x0,0x12,0x3a,0x33,
0x0,0x22,0x22,0x22,0x0,0x29,0x28,0x21,0x0,0x25,0x2d,0x2c,0x0,0x2a,0x2b,0x2b,
0x0,0x2b,0x39,0x26,0x0,0x32,0x32,0x32,0x0,0x3b,0x3b,0x3b,0x0,0xf,0x47,0x3a,
0x0,0x7,0x4c,0x3e,0x0,0xc,0x4f,0x3e,0x0,0x15,0x42,0x36,0x0,0x1a,0x45,0x36,
0x0,0x15,0x45,0x3a,0x0,0x1b,0x45,0x3a,0x0,0x13,0x4a,0x3d,0x0,0x1f,0x48,0x3a,
0x0,0x13,0x52,0x3b,0x0,0x66,0x55,0x1f,0x0,0x52,0x4b,0x34,0x0,0x68,0x5e,0x3f,
0x0,0x7b,0x6d,0x3d,0x0,0x12,0x4d,0x41,0x0,0x1a,0x4c,0x41,0x0,0x4,0x56,0x44,
0x0,0xc,0x51,0x42,0x0,0x9,0x5b,0x44,0x0,0xa,0x5d,0x4a,0x0,0x13,0x55,0x45,
0x0,0x17,0x5c,0x46,0x0,0x12,0x56,0x49,0x0,0x1b,0x55,0x49,0x0,0x1f,0x5b,0x49,
0x0,0x18,0x5d,0x51,0x0,0x36,0x49,0x43,0x0,0x20,0x53,0x46,0x0,0x2b,0x50,0x44,
0x0,0x35,0x59,0x50,0x0,0x3e,0x58,0x52,0x0,0xf,0x65,0x47,0x0,0x1b,0x60,0x4b,
0x0,0x18,0x66,0x53,0x0,0x10,0x6a,0x51,0x0,0x1e,0x64,0x58,0x0,0x13,0x6b,0x59,
0x0,0x1e,0x6e,0x5d,0x0,0x1e,0x71,0x53,0x0,0x14,0x74,0x5d,0x0,0x1b,0x72,0x5e,
0x0,0x15,0x7f,0x5c,0x0,0x23,0x64,0x51,0x0,0x23,0x67,0x5b,0x0,0x2e,0x6e,0x5b,
0x0,0x1f,0x7d,0x68,0x0,0x2d,0x74,0x62,0x0,0x28,0x7a,0x65,0x0,0x29,0x7d,0x68,
0x0,0x3c,0x71,0x67,0x0,0x32,0x7c,0x6f,0x0,0x42,0x43,0x43,0x0,0x45,0x4a,0x45,
0x0,0x4b,0x4b,0x4b,0x0,0x59,0x58,0x4b,0x0,0x53,0x53,0x53,0x0,0x56,0x5c,0x5b,
0x0,0x5b,0x5b,0x5b,0x0,0x60,0x60,0x5f,0x0,0x5d,0x68,0x65,0x0,0x4b,0x75,0x6e,
0x0,0x47,0x79,0x70,0x0,0x63,0x63,0x63,0x0,0x6c,0x6c,0x6c,0x0,0x6d,0x7d,0x7a,
0x0,0x73,0x74,0x73,0x0,0x78,0x78,0x77,0x0,0x7a,0x7a,0x7a,0x0,0x1e,0x80,0x67,
0x0,0x12,0x89,0x64,0x0,0x1c,0x85,0x6a,0x0,0x1a,0x94,0x76,0x0,0x17,0x9e,0x77,
0x0,0x1c,0x9b,0x74,0x0,0x23,0x84,0x6c,0x0,0x2c,0x80,0x6a,0x0,0x3e,0x86,0x6e,
0x0,0x24,0x8c,0x76,0x0,0x28,0x8b,0x72,0x0,0x2b,0x8e,0x78,0x0,0x3b,0x87,0x78,
0x0,0x29,0x91,0x73,0x0,0x27,0x90,0x79,0x0,0x2d,0x93,0x7c,0x0,0x30,0x92,0x75,
0x0,0x43,0x94,0x7a,0x0,0x9f,0x85,0x3d,0x0,0x90,0x82,0x56,0x0,0xa3,0x92,0x5b,
0x0,0xb9,0xab,0x68,0x0,0xcd,0xa6,0x4c,0x0,0xc7,0xa9,0x5a,0x0,0xd0,0xab,0x58,
0x0,0xc9,0xab,0x68,0x0,0xcc,0xb7,0x69,0x0,0xd2,0xb8,0x64,0x0,0xc7,0xae,0x77,
0x0,0xd6,0xbe,0x71,0x0,0x2e,0x93,0x80,0x0,0x22,0x9e,0x81,0x0,0x2c,0x9d,0x83,
0x0,0x31,0x93,0x82,0x0,0x39,0x9c,0x84,0x0,0x27,0xa6,0x86,0x0,0x2a,0xa1,0x84,
0x0,0x22,0xa9,0x8c,0x0,0x32,0xa0,0x83,0x0,0x3b,0xa2,0x84,0x0,0x35,0xa2,0x8d,
0x0,0x33,0xaa,0x8f,0x0,0x23,0xaa,0x91,0x0,0x30,0xac,0x98,0x0,0x2b,0xb2,0x91,
0x0,0x35,0xb0,0x95,0x0,0x33,0xb3,0x9b,0x0,0x40,0x8f,0x82,0x0,0x59,0x8d,0x8b,
0x0,0x42,0x91,0x85,0x0,0x4e,0x93,0x88,0x0,0x4d,0x9f,0x8e,0x0,0x52,0x9d,0x8c,
0x0,0x76,0x8f,0x89,0x0,0x73,0x99,0x92,0x0,0x42,0xa3,0x84,0x0,0x49,0xa0,0x83,
0x0,0x45,0xa1,0x89,0x0,0x44,0xa8,0x8f,0x0,0x58,0xad,0x8d,0x0,0x4f,0xab,0x92,
0x0,0x46,0xaa,0x98,0x0,0x53,0xa4,0x99,0x0,0x47,0xb7,0x97,0x0,0x4e,0xb4,0x9e,
0x0,0x51,0xb5,0x93,0x0,0x65,0xa3,0x93,0x0,0x7a,0xa1,0x9c,0x0,0x60,0xb9,0x9f,
0x0,0x4e,0xbe,0xac,0x0,0x5e,0xbb,0xa3,0x0,0x6d,0xbd,0xa0,0x0,0x78,0xbc,0xa4,
0x0,0x78,0xbf,0xb2,0x0,0x47,0xc8,0xa8,0x0,0x57,0xc1,0xa6,0x0,0x51,0xc0,0xab,
0x0,0x5b,0xc7,0xa9,0x0,0x5f,0xcb,0xb5,0x0,0x62,0xc7,0xaf,0x0,0x78,0xc9,0xaf,
0x0,0x69,0xc9,0xb5,0x0,0x72,0xc9,0xb4,0x0,0x7a,0xcb,0xb4,0x0,0x74,0xcf,0xbb,
0x0,0x63,0xd2,0xbd,0x0,0x72,0xd2,0xbb,0x0,0x7b,0xd1,0xbd,0x0,0x75,0xd9,0xc2,
0x0,0x7a,0xdb,0xc5,0x0,0x82,0x82,0x82,0x0,0x88,0x88,0x87,0x0,0x8d,0x8d,0x8d,
0x0,0x80,0x9c,0x8a,0x0,0x94,0x94,0x93,0x0,0x9b,0x9b,0x9b,0x0,0xb3,0xb2,0x8b,
0x0,0xa8,0xa7,0x9c,0x0,0xa2,0xb2,0x9b,0x0,0xb1,0xb3,0x91,0x0,0x9f,0xbc,0xab,
0x0,0xa8,0xa8,0xa8,0x0,0xbc,0xb9,0xac,0x0,0xb3,0xb3,0xb3,0x0,0xc8,0xb1,0x80,
0x0,0xd0,0xb7,0x87,0x0,0xce,0xbc,0x9a,0x0,0xc3,0xbd,0xad,0x0,0x80,0xcd,0xb3,
0x0,0x83,0xd4,0xbe,0x0,0xd9,0xca,0x92,0x0,0xe5,0xcc,0x87,0x0,0xfa,0xd4,0x8c,
0x0,0xe0,0xce,0x94,0x0,0xe9,0xd3,0x97,0x0,0xf9,0xd7,0x96,0x0,0xcb,0xc0,0xa9,
0x0,0xc6,0xc0,0xb0,0x0,0xcc,0xd2,0xb8,0x0,0xd5,0xdd,0xbf,0x0,0xeb,0xd9,0xa7,
0x0,0xf4,0xda,0xa2,0x0,0xe8,0xdd,0xb6,0x0,0xfe,0xe0,0xa8,0x0,0xee,0xe3,0xbd,
0x0,0xfc,0xe5,0xba,0x0,0x81,0xd5,0xc1,0x0,0x8b,0xd8,0xc6,0x0,0x8c,0xdb,0xca,
0x0,0x96,0xd9,0xc8,0x0,0x9e,0xde,0xd0,0x0,0xa3,0xda,0xca,0x0,0xb5,0xdc,0xca,
0x0,0x98,0xe0,0xcf,0x0,0x8c,0xe3,0xd0,0x0,0x98,0xe3,0xd3,0x0,0xbf,0xe2,0xcf,
0x0,0xa7,0xe6,0xd8,0x0,0xb6,0xe4,0xd8,0x0,0xae,0xee,0xe1,0x0,0xba,0xec,0xe1,
0x0,0xb7,0xf0,0xe4,0x0,0xc5,0xc5,0xc5,0x0,0xcc,0xda,0xc4,0x0,0xd2,0xd7,0xd4,
0x0,0xc5,0xe0,0xcc,0x0,0xc6,0xe3,0xd8,0x0,0xd7,0xe7,0xd8,0x0,0xed,0xe9,0xcd,
0x0,0xf7,0xe9,0xc7,0x0,0xe9,0xeb,0xd5,0x0,0xf6,0xed,0xd2,0x0,0xfd,0xf1,0xd7,
0x0,0xc3,0xee,0xe4,0x0,0xd3,0xec,0xe2,0x0,0xd9,0xf0,0xe4,0x0,0xe6,0xee,0xe1,
0x0,0xe9,0xf2,0xec,0x0,0xfb,0xf8,0xe9,0x0,0xeb,0xf6,0xf2,0x0,0xf2,0xf6,0xf2,
0x0,0xf4,0xf8,0xf5,0x0,0xfd,0xfc,0xf3,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x3,0x17,0x4d,0x4f,0x56,0x5b,
0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x3,0x11,0x14,0x14,0x16,0x17,0x17,0x4f,
0x51,0x57,0xb6,0xba,0xc1,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x3,0x11,0x3,0x3,0x11,0x11,0x14,0x16,0x16,
0x17,0x4b,0x4b,0x4b,0x4f,0x57,0xb6,0xbb,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x4d,0x14,0x11,0x11,0x3,0x11,0x14,0x16,0x17,
0x17,0x17,0x4b,0x4c,0x4c,0x4d,0x4f,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x57,0x51,0x56,0x59,0x56,0x3,0x3,0x11,0x14,0x14,0x16,0x17,0x4d,
0x4f,0x51,0x51,0x4f,0x51,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x11,0x2,0x2,0x1,0x1,0x1,0x1,0x2,0x1,0x1,0x11,0x14,0x17,0x51,
0x0,0x0,0xb8,0xb8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x5b,0x11,0x2,0x2,0x4,0x8,0x9,0x8,0x2,0x3,0x3,0x3,0x11,0x11,0x11,
0x11,0x11,0x16,0x4d,0x56,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x56,0x11,0x1,0x4,0x7,0xe,0x30,0x2c,0x20,0xb,0x46,0x3d,0x10,0x34,0xc,
0xa,0x13,0x13,0x14,0x14,0x14,0x11,0x11,0x11,0x22,0x23,0x0,0x0,0x0,0x0,0x0,
0x0,0x4f,0x3,0x2,0x5,0xe,0x1e,0x30,0x27,0x2e,0x2c,0x39,0x2b,0x27,0x1f,0xe,
0x10,0x2e,0x39,0x42,0x38,0x40,0x3d,0x1e,0xc,0x15,0x12,0x0,0x0,0x0,0x0,0x0,
0x0,0x4b,0x1,0x2,0xd,0x1d,0x2d,0x1b,0x27,0x29,0x8b,0x3c,0x3c,0x68,0x33,0x27,
0x39,0x62,0x44,0x62,0x80,0x8a,0x7c,0x37,0x21,0x3e,0x4b,0x0,0x0,0x0,0x0,0x0,
0x0,0x16,0x3,0x2,0x18,0x3a,0x29,0x1b,0x1f,0x4a,0x8e,0x42,0x67,0x2f,0x31,0x3b,
0x47,0x63,0x66,0x5e,0x5f,0x86,0x7b,0x41,0x5d,0x83,0x51,0x0,0x0,0x0,0x0,0x0,
0x0,0x14,0x17,0x32,0x28,0x26,0x2d,0x29,0x43,0x7e,0x44,0x46,0x7d,0x40,0x48,0x6d,
0x94,0x93,0x88,0x69,0x7f,0x81,0x83,0x60,0x61,0x6c,0x4f,0x0,0x0,0x0,0x0,0x0,
0x0,0x14,0x4b,0x36,0x1f,0x19,0x3c,0x3f,0x95,0x65,0x64,0x7a,0x6a,0x6b,0x98,0xa3,
0x97,0x9d,0x94,0x83,0xa7,0xa6,0x9d,0x9b,0xa9,0x9e,0x4f,0x0,0x0,0x0,0x0,0x0,
0x0,0x14,0x4c,0x35,0x28,0x45,0x5c,0x82,0x7e,0x87,0x89,0x85,0x8a,0xa2,0xc8,0xb2,
0xac,0xa4,0xc8,0xc9,0xdc,0xb5,0xda,0xc8,0xdc,0x9f,0x4f,0x0,0x0,0x0,0x0,0x0,
0x0,0x14,0x4b,0x49,0x65,0x84,0x95,0xa2,0xa1,0xad,0xaa,0xc8,0xb3,0xdb,0xdd,0xdd,
0xdf,0xdd,0xde,0xe3,0xe3,0xe2,0xdc,0xda,0xe3,0x91,0x56,0x0,0x0,0x0,0x0,0x0,
0x0,0x16,0x4b,0x90,0x9c,0xae,0xc8,0xb0,0xae,0xb1,0xb0,0xdc,0xe3,0xdc,0xde,0xe6,
0xde,0xe3,0xe7,0xe5,0xe7,0xe5,0xe5,0xe3,0xe5,0x58,0x59,0x0,0x0,0x0,0x0,0x0,
0x5b,0x16,0x17,0x8f,0xa8,0xad,0xa9,0xb0,0xb0,0xb4,0xb5,0xe3,0xe3,0xe3,0xe3,0xe5,
0xe8,0xe8,0xe8,0xe7,0xe8,0xf5,0xe5,0xe3,0xe1,0x53,0xb8,0x0,0x0,0x0,0x0,0x0,
0x56,0x16,0x17,0x99,0xa8,0xad,0xb3,0xdd,0xe4,0xe0,0xdf,0xe8,0xe5,0xe5,0xe7,0xe6,
0xe6,0xf5,0xe8,0xe6,0xf6,0xf5,0xe5,0xe6,0xe5,0x50,0x0,0x0,0x0,0x0,0x0,0x0,
0x4d,0x16,0x17,0x8d,0x9a,0xa5,0xed,0xf7,0xfa,0xef,0xef,0xee,0xe6,0xe4,0xee,0xef,
0xee,0xf6,0xf9,0xfc,0xfd,0xfd,0xf7,0xf6,0xee,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,
0x16,0x16,0x17,0x55,0x8c,0xc0,0xf2,0xef,0xf2,0xf2,0xee,0xee,0xf8,0xfc,0xfc,0xf7,
0xfb,0xfd,0xfc,0xff,0xff,0xfb,0xfc,0xfb,0xec,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,
0x11,0x16,0x17,0x54,0x92,0xd2,0xf3,0xf0,0xf3,0xf2,0xeb,0xf2,0xfa,0xf9,0xfc,0xf9,
0xfb,0xfd,0xff,0xff,0xff,0xfc,0xfe,0xff,0xea,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,
0x11,0x14,0x4c,0xb9,0xbe,0xd6,0xf1,0xf1,0xf4,0xf0,0xd3,0xf8,0xfa,0xfa,0xfc,0xfc,
0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xc3,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,
0x3,0x14,0x4e,0xbc,0xbf,0xca,0xce,0xf0,0xf3,0xf0,0xf8,0xfa,0xfe,0xfe,0xfa,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xbb,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,
0x11,0x11,0x24,0x73,0x71,0x76,0xce,0xd6,0xd8,0xf0,0xfa,0xfe,0xff,0xff,0xff,0xfe,
0xff,0xff,0xfe,0xff,0xfe,0xff,0xff,0xfe,0xb8,0x56,0x0,0x0,0x0,0x0,0x0,0x0,
0x11,0x3,0x25,0x77,0x79,0xcb,0xcb,0xce,0xd4,0xf1,0xfa,0xfe,0xff,0xff,0xff,0xff,
0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0x59,0x5b,0x0,0x0,0x0,0x0,0x0,0xb8,
0x11,0x3,0x6f,0xca,0xd4,0xce,0xcb,0xce,0xd5,0xd9,0xf3,0xf4,0xfa,0xfe,0xfa,0xfa,
0xfa,0xfa,0xfe,0xfe,0xfe,0xfe,0xfa,0xfe,0x52,0xba,0x0,0x0,0x0,0x0,0x0,0x59,
0x11,0x3,0x70,0xcb,0xd4,0xd4,0xd5,0xcf,0xcc,0xcf,0xd7,0xd9,0xf1,0xf4,0xf4,0xf4,
0xf4,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf4,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x51,
0x11,0x2,0x6e,0x75,0x78,0xc4,0x78,0x74,0x72,0x74,0x76,0xc5,0xc5,0xc6,0xc6,0xd0,
0xd0,0xd0,0xd1,0xd0,0xc7,0xc7,0xc2,0xbd,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,
0x11,0x1,0x1,0x2,0x3,0x11,0x16,0x16,0x4b,0x4b,0x4c,0x4c,0x4f,0x4d,0x4d,0x4f,
0x4d,0x4d,0x4f,0x4d,0x4d,0x4f,0x4f,0x4f,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x59,0x4b,0x4b,0x4d,0x56,0x57,0x5a,0xb6,0xb6,0xb8,0xb8,0xba,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xf0,0xf,0xff,0xff,0xc0,0x0,0x7f,0xff,0x80,0x0,0xf,0xff,0x80,0x0,
0x1f,0xfc,0x0,0x0,0x7f,0xf8,0x0,0x19,0xff,0xf0,0x0,0x0,0x7f,0xf0,0x0,0x0,
0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,
0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,
0x3,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,
0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,0x7,0xe0,0x0,0x0,
0x7,0xe0,0x0,0x0,0x7,0xc0,0x0,0x0,0x7,0xc0,0x0,0x0,0xf,0xc0,0x0,0x0,
0xf,0xc0,0x0,0x0,0xf,0xe0,0x1,0xff,0xff,0xff,0xff,0xff,0xff,0x28,0x0,0x0,
0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x17,0x16,0x0,0x15,0x17,0x17,
0x0,0x12,0x1b,0x1a,0x0,0x10,0x1d,0x1b,0x0,0x14,0x1d,0x1b,0x0,0x1c,0x1c,0x1c,
0x0,0x36,0x30,0x1e,0x0,0x11,0x2d,0x26,0x0,0x1e,0x2e,0x29,0x0,0x17,0x33,0x2f,
0x0,0x12,0x39,0x31,0x0,0x21,0x21,0x21,0x0,0x25,0x25,0x25,0x0,0x29,0x29,0x29,
0x0,0x33,0x33,0x33,0x0,0x35,0x36,0x36,0x0,0x39,0x39,0x39,0x0,0x3c,0x3d,0x39,
0x0,0x3c,0x3c,0x3c,0x0,0x42,0x3f,0x25,0x0,0x14,0x47,0x3b,0x0,0x1d,0x46,0x3d,
0x0,0x15,0x49,0x3e,0x0,0x1a,0x49,0x3d,0x0,0x24,0x47,0x3c,0x0,0x48,0x43,0x2f,
0x0,0x59,0x51,0x38,0x0,0xf,0x58,0x47,0x0,0x19,0x56,0x46,0x0,0x13,0x58,0x44,
0x0,0x22,0x4c,0x42,0x0,0x23,0x51,0x45,0x0,0x1e,0x64,0x54,0x0,0x1b,0x68,0x59,
0x0,0x13,0x70,0x50,0x0,0x1e,0x72,0x5f,0x0,0x23,0x63,0x56,0x0,0x26,0x6a,0x5c,
0x0,0x3d,0x6d,0x5e,0x0,0x22,0x73,0x61,0x0,0x29,0x7f,0x68,0x0,0x34,0x7c,0x70,
0x0,0x45,0x45,0x45,0x0,0x4d,0x4d,0x4d,0x0,0x52,0x52,0x52,0x0,0x57,0x57,0x57,
0x0,0x5d,0x5d,0x5d,0x0,0x6f,0x63,0x44,0x0,0x79,0x6c,0x52,0x0,0x4f,0x77,0x6b,
0x0,0x60,0x60,0x60,0x0,0x67,0x67,0x67,0x0,0x6a,0x6a,0x67,0x0,0x6c,0x6c,0x6c,
0x0,0x68,0x77,0x74,0x0,0x6f,0x76,0x74,0x0,0x73,0x73,0x73,0x0,0x77,0x77,0x77,
0x0,0x78,0x78,0x78,0x0,0x7c,0x7d,0x7d,0x0,0x84,0x71,0x48,0x0,0x8a,0x79,0x54,
0x0,0x21,0x8f,0x74,0x0,0x2c,0x8b,0x77,0x0,0x33,0x87,0x71,0x0,0x30,0x8b,0x75,
0x0,0x2e,0x92,0x7b,0x0,0x57,0x85,0x7f,0x0,0x8d,0x81,0x69,0x0,0x8d,0x85,0x75,
0x0,0x87,0x86,0x7f,0x0,0x8c,0x86,0x7b,0x0,0x89,0x86,0x7e,0x0,0xc8,0xb2,0x64,
0x0,0x29,0xa6,0x8c,0x0,0x39,0xa6,0x88,0x0,0x35,0xae,0x8b,0x0,0x3d,0xb3,0x93,
0x0,0x42,0xaa,0x8a,0x0,0x54,0xa8,0x8b,0x0,0x46,0xad,0x95,0x0,0x4b,0xa8,0x99,
0x0,0x4f,0xac,0x98,0x0,0x4b,0xbb,0xa5,0x0,0x58,0xbe,0xa7,0x0,0x6d,0xc9,0xb2,
0x0,0x73,0xce,0xba,0x0,0x71,0xd6,0xc0,0x0,0x83,0x83,0x83,0x0,0x8e,0x8e,0x8e,
0x0,0x8f,0x90,0x8f,0x0,0x9c,0x9c,0x9c,0x0,0xa1,0xad,0x90,0x0,0xa9,0xa8,0xa2,
0x0,0xbe,0xbd,0xba,0x0,0xbe,0xbe,0xbe,0x0,0x81,0xce,0xb9,0x0,0x89,0xcf,0xbb,
0x0,0x88,0xcf,0xbc,0x0,0x89,0xd3,0xbf,0x0,0xde,0xc7,0x83,0x0,0xe4,0xd2,0x9b,
0x0,0xee,0xd5,0x9a,0x0,0xf5,0xd6,0x96,0x0,0xe7,0xd9,0xab,0x0,0xec,0xdc,0xad,
0x0,0xfd,0xe3,0xb3,0x0,0x8a,0xd9,0xc4,0x0,0x86,0xdc,0xc8,0x0,0x91,0xdd,0xcc,
0x0,0x94,0xe1,0xd0,0x0,0x98,0xe1,0xd1,0x0,0x9c,0xe4,0xd3,0x0,0xac,0xe6,0xd9,
0x0,0xaf,0xe9,0xdd,0x0,0xac,0xec,0xde,0x0,0xb7,0xe6,0xd8,0x0,0xb8,0xe5,0xd9,
0x0,0xbc,0xe6,0xda,0x0,0xd1,0xd8,0xc1,0x0,0xd3,0xd3,0xd3,0x0,0xd9,0xe4,0xcf,
0x0,0xc1,0xe1,0xd1,0x0,0xc0,0xe2,0xdb,0x0,0xca,0xe7,0xd8,0x0,0xe6,0xe8,0xce,
0x0,0xf5,0xeb,0xce,0x0,0xea,0xec,0xd6,0x0,0xe3,0xec,0xde,0x0,0xf6,0xef,0xd6,
0x0,0xfe,0xf0,0xd2,0x0,0xce,0xed,0xe2,0x0,0xdd,0xf1,0xe9,0x0,0xe0,0xe5,0xe2,
0x0,0xe7,0xf3,0xef,0x0,0xef,0xf5,0xed,0x0,0xff,0xf6,0xe0,0x0,0xff,0xf8,0xe4,
0x0,0xf9,0xf7,0xec,0x0,0xff,0xfa,0xe9,0x0,0xff,0xfc,0xea,0x0,0xfb,0xf9,0xef,
0x0,0xff,0xfc,0xed,0x0,0xf7,0xf8,0xf2,0x0,0xf1,0xf8,0xf4,0x0,0xfe,0xfd,0xf7,
0x0,0xf7,0xf9,0xf8,0x0,0xfb,0xfc,0xf8,0x0,0xfe,0xfe,0xfa,0x0,0xfe,0xfe,0xfe,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x36,0x5a,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xc,0xe,0x10,0x2b,0x2f,
0x3b,0x5c,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xc,0xc,0x10,0x2b,0x2c,
0x2c,0x3a,0x0,0x0,0x0,0x0,0x0,0x2e,0x1,0x3,0x3,0x3,0x6,0xe,0x2c,0x33,
0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x3,0xb,0x1d,0x18,0x22,0x18,0xa,0x16,
0x19,0x1f,0x9,0x14,0x0,0x0,0x0,0xe,0x8,0x1e,0x15,0x2a,0x24,0x25,0x21,0x29,
0x3f,0x4b,0x23,0x27,0x0,0x0,0x0,0x10,0x20,0x1c,0x28,0x41,0x40,0x42,0x50,0x4f,
0x4c,0x4e,0x4d,0x32,0x0,0x0,0x0,0x10,0x26,0x43,0x51,0x54,0x55,0x61,0x64,0x62,
0x6e,0x6d,0x6c,0x37,0x0,0x0,0x0,0x13,0x53,0x56,0x57,0x58,0x6f,0x70,0x72,0x73,
0x73,0x73,0x70,0x3a,0x0,0x0,0x0,0x10,0x52,0x62,0x7d,0x7b,0x75,0x76,0x7c,0x84,
0x85,0x84,0x77,0x3c,0x0,0x0,0x0,0x10,0x44,0x78,0x80,0x7a,0x81,0x88,0x87,0x93,
0x96,0x91,0x86,0x5b,0x0,0x0,0x3b,0x13,0x5d,0x69,0x7f,0x7e,0x8b,0x8e,0x91,0x96,
0x94,0x96,0x79,0x0,0x0,0x0,0x36,0x1a,0x4a,0x65,0x6a,0x82,0x96,0x96,0x96,0x94,
0x96,0x96,0x5f,0x0,0x0,0x0,0x2e,0x1b,0x66,0x67,0x68,0x6b,0x83,0x89,0x89,0x89,
0x8e,0x89,0x5e,0x0,0x0,0x0,0x13,0x7,0x30,0x31,0x3d,0x3e,0x45,0x46,0x48,0x49,
0x48,0x47,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xfc,0x7f,0x0,0x0,0xf8,0x3,0x0,0x0,0xf8,0x7,0x0,
0x0,0xc0,0xf,0x0,0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,
0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xc0,0x1,0x0,
0x0,0x80,0x3,0x0,0x0,0x80,0x3,0x0,0x0,0x80,0x3,0x0,0x0,0x80,0x3,0x0,
0x0,0xff,0xff,0x0,0x0,0x28,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,
0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x13,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
0x19,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,
0x1f,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
0x28,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x29,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x28,0x0,0x0,0x0,
0x28,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x25,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x1e,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,
0x19,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
0x13,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
0x15,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,
0x1b,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x21,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x26,0x0,0x0,0x0,
0x27,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,
0x2b,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
0x2d,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
0x2d,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,
0x26,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
0x27,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x22,0x0,0x0,0x0,
0x21,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,
0x1b,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x16,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,
0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,
0x1d,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x23,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x29,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,
0x2f,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x31,0x0,0x0,0x0,
0x31,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x31,0x1,0x1,0x1,
0x31,0x4,0x4,0x4,0x37,0x7,0x7,0x7,0x3d,0xa,0xa,0xa,0x4e,0xf,0xf,0xf,
0x83,0x10,0x10,0x10,0x79,0xc,0xc,0xc,0x55,0x6,0x6,0x6,0x3f,0x1,0x1,0x1,
0x28,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x25,0x0,0x0,0x0,
0x23,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,
0x1d,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x16,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x11,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x16,0x0,0x0,0x0,
0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,
0x20,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x25,0x0,0x0,0x0,
0x27,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,
0x2d,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x31,0x0,0x0,0x0,
0x32,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x34,0x0,0x0,0x0,
0x34,0x0,0x0,0x0,0x35,0x1,0x1,0x1,0x34,0x3,0x3,0x3,0x3a,0xf,0xf,0xf,
0x5e,0x1d,0x1d,0x1d,0x9e,0x1f,0x1f,0x1f,0xd4,0x18,0x18,0x18,0xeb,0x19,0x19,0x19,
0xf3,0x21,0x21,0x21,0xeb,0x34,0x34,0x34,0xdc,0x35,0x35,0x35,0xd4,0x36,0x36,0x36,
0xd8,0x37,0x37,0x37,0xdd,0x34,0x34,0x34,0xd2,0x27,0x27,0x27,0xa5,0x16,0x16,0x16,
0x70,0xd,0xd,0xd,0x55,0x7,0x7,0x7,0x3e,0x3,0x3,0x3,0x25,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x19,0x0,0x0,0x0,
0x17,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0xb,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x11,0x0,0x0,0x0,
0x13,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x22,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x28,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,
0x30,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x35,0x0,0x0,0x0,
0x36,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x38,0x0,0x0,0x0,
0x38,0x2,0x2,0x2,0x3e,0xd,0xd,0xd,0x5f,0x20,0x20,0x20,0xa4,0x24,0x24,0x24,
0xe5,0x1a,0x1a,0x1a,0xfb,0x16,0x16,0x16,0xfe,0x16,0x16,0x16,0xff,0x19,0x19,0x19,
0xff,0x24,0x24,0x24,0xfe,0x38,0x38,0x38,0xfd,0x43,0x43,0x43,0xfe,0x46,0x46,0x46,
0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,0xff,0x49,0x49,0x49,0xff,0x4c,0x4c,0x4c,
0xff,0x4b,0x4b,0x4b,0xfd,0x45,0x45,0x45,0xe9,0x3d,0x3d,0x3d,0xd1,0x32,0x32,0x32,
0xba,0x26,0x26,0x26,0x95,0x18,0x18,0x18,0x64,0x5,0x5,0x5,0x2f,0x3,0x3,0x3,
0x24,0x2,0x2,0x2,0x1d,0x1,0x1,0x1,0x13,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,
0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x22,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,
0x2d,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x32,0x0,0x0,0x0,
0x34,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x38,0x0,0x0,0x0,
0x39,0x0,0x0,0x0,0x3a,0x1,0x1,0x1,0x3b,0x2,0x2,0x2,0x3f,0xa,0xa,0xa,
0x58,0x1b,0x1b,0x1b,0x98,0x23,0x23,0x23,0xe1,0x1c,0x1c,0x1c,0xff,0x16,0x16,0x16,
0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x1b,0x1b,0x1b,
0xff,0x32,0x32,0x32,0xff,0x49,0x49,0x49,0xff,0x56,0x56,0x56,0xff,0x55,0x55,0x55,
0xff,0x54,0x54,0x54,0xff,0x51,0x51,0x51,0xff,0x4c,0x4c,0x4c,0xff,0x48,0x48,0x48,
0xff,0x49,0x49,0x49,0xff,0x4c,0x4c,0x4c,0xff,0x4e,0x4e,0x4e,0xff,0x51,0x51,0x51,
0xff,0x53,0x53,0x53,0xff,0x56,0x56,0x56,0xff,0x5a,0x5a,0x5a,0xfe,0x4f,0x4f,0x4f,
0xe6,0x43,0x43,0x43,0xc3,0x2e,0x2e,0x2e,0x8e,0x21,0x21,0x21,0x70,0x15,0x15,0x15,
0x4f,0x7,0x7,0x7,0x24,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,
0x1d,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x24,0x0,0x0,0x0,
0x26,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
0x2f,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x35,0x0,0x0,0x0,
0x37,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,
0x3c,0x1,0x1,0x1,0x3e,0x8,0x8,0x8,0x51,0x1a,0x1a,0x1a,0x90,0x22,0x22,0x22,
0xdb,0x1b,0x1b,0x1b,0xfb,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,
0xff,0x14,0x14,0x14,0xff,0x18,0x18,0x18,0xff,0x27,0x27,0x27,0xff,0x3b,0x3b,0x3b,
0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x41,0x41,0x41,0xff,0x45,0x45,0x45,
0xff,0x4d,0x4d,0x4d,0xff,0x56,0x56,0x56,0xff,0x5f,0x5f,0x5f,0xff,0x62,0x62,0x62,
0xff,0x62,0x62,0x62,0xff,0x60,0x60,0x60,0xff,0x5a,0x5a,0x5a,0xff,0x58,0x58,0x58,
0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x5c,0x5c,0x5c,
0xff,0x60,0x60,0x60,0xff,0x66,0x66,0x66,0xff,0x69,0x69,0x69,0xfe,0x67,0x67,0x67,
0xf4,0x63,0x63,0x63,0xe5,0x57,0x57,0x57,0xd4,0x49,0x49,0x49,0xb2,0x33,0x33,0x33,
0x7d,0x12,0x12,0x12,0x42,0xb,0xb,0xb,0x32,0x6,0x6,0x6,0x1e,0x1,0x1,0x1,
0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0xf,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,
0x17,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,
0x1f,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x26,0x0,0x0,0x0,
0x29,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x30,0x0,0x0,0x0,
0x32,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x39,0x0,0x0,0x0,
0x3b,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x3e,0x1,0x1,0x1,0x41,0x6,0x6,0x6,
0x51,0x17,0x17,0x17,0x87,0x23,0x23,0x23,0xd7,0x1c,0x1c,0x1c,0xfc,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,
0xff,0x26,0x26,0x26,0xff,0x34,0x34,0x34,0xff,0x38,0x38,0x38,0xff,0x35,0x35,0x35,
0xff,0x35,0x35,0x35,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,
0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x44,0x44,0x44,
0xff,0x4a,0x4a,0x4a,0xff,0x54,0x54,0x54,0xff,0x5c,0x5c,0x5c,0xff,0x64,0x64,0x64,
0xff,0x6d,0x6d,0x6d,0xff,0x74,0x74,0x74,0xff,0x73,0x73,0x73,0xff,0x70,0x70,0x70,
0xff,0x6b,0x6b,0x6b,0xff,0x66,0x66,0x66,0xff,0x69,0x69,0x69,0xff,0x6d,0x6d,0x6d,
0xff,0x70,0x70,0x70,0xff,0x74,0x74,0x74,0xff,0x78,0x78,0x78,0xff,0x7d,0x7d,0x7d,
0xff,0x85,0x85,0x85,0xff,0x80,0x80,0x80,0xf7,0x71,0x71,0x71,0xdb,0x5a,0x5a,0x5a,
0xb1,0x46,0x46,0x46,0x98,0x32,0x32,0x32,0x72,0x16,0x16,0x16,0x34,0x1,0x1,0x1,
0xd,0x1,0x1,0x1,0xb,0x1,0x1,0x1,0x7,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,
0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,
0x21,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x29,0x0,0x0,0x0,
0x2b,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x33,0x0,0x0,0x0,
0x35,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,
0x3e,0x1,0x1,0x1,0x3f,0x5,0x5,0x5,0x4a,0x15,0x15,0x15,0x7e,0x21,0x21,0x21,
0xc7,0x1d,0x1d,0x1d,0xfc,0x16,0x16,0x16,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,
0xff,0x11,0x11,0x11,0xff,0x14,0x14,0x14,0xff,0x21,0x21,0x21,0xff,0x31,0x31,0x31,
0xff,0x31,0x31,0x31,0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,
0xff,0x32,0x32,0x32,0xff,0x34,0x34,0x34,0xff,0x36,0x36,0x36,0xff,0x37,0x37,0x37,
0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,
0xff,0x3e,0x3e,0x3e,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x43,0x43,0x43,
0xff,0x45,0x45,0x45,0xff,0x4a,0x4a,0x4a,0xff,0x54,0x54,0x54,0xff,0x62,0x62,0x62,
0xff,0x73,0x73,0x73,0xff,0x7f,0x7f,0x7f,0xff,0x84,0x84,0x84,0xff,0x89,0x89,0x89,
0xff,0x87,0x87,0x87,0xff,0x84,0x84,0x84,0xff,0x82,0x82,0x82,0xff,0x7c,0x7c,0x7c,
0xff,0x7d,0x7d,0x7d,0xff,0x81,0x81,0x81,0xff,0x85,0x85,0x85,0xff,0x89,0x89,0x89,
0xff,0x8c,0x8c,0x8c,0xff,0x8e,0x8e,0x8e,0xfd,0x8f,0x8f,0x8f,0xf9,0x88,0x88,0x88,
0xef,0x74,0x74,0x74,0xd1,0x57,0x57,0x57,0x9e,0x2d,0x2d,0x2d,0x5e,0x21,0x21,0x21,
0x4c,0x12,0x12,0x12,0x2f,0x3,0x3,0x3,0x7,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
0x19,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x21,0x0,0x0,0x0,
0x23,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,
0x2e,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x36,0x0,0x0,0x0,
0x38,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x3c,0x1,0x1,0x1,0x3e,0x4,0x4,0x4,
0x48,0x12,0x12,0x12,0x74,0x23,0x23,0x23,0xc8,0x1e,0x1e,0x1e,0xf6,0x16,0x16,0x16,
0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x11,0x11,0x11,0xff,0x14,0x14,0x14,
0xff,0x20,0x20,0x20,0xff,0x2d,0x2d,0x2d,0xff,0x2d,0x2d,0x2d,0xff,0x2a,0x2a,0x2a,
0xff,0x29,0x29,0x29,0xff,0x2b,0x2b,0x2b,0xff,0x2c,0x2c,0x2c,0xff,0x2e,0x2e,0x2e,
0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x31,0x31,0x31,0xff,0x33,0x33,0x33,
0xff,0x35,0x35,0x35,0xff,0x37,0x37,0x37,0xff,0x38,0x38,0x38,0xff,0x3a,0x3a,0x3a,
0xff,0x3b,0x3b,0x3b,0xff,0x3d,0x3d,0x3d,0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3f,0x3f,
0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,
0xff,0x42,0x42,0x42,0xff,0x47,0x47,0x47,0xff,0x4d,0x4d,0x4d,0xff,0x55,0x55,0x55,
0xff,0x64,0x64,0x64,0xff,0x74,0x74,0x74,0xff,0x89,0x89,0x89,0xff,0x9b,0x9b,0x9b,
0xff,0x9f,0x9f,0x9f,0xff,0x9d,0x9d,0x9d,0xff,0x99,0x99,0x99,0xff,0x92,0x92,0x92,
0xff,0x92,0x92,0x92,0xff,0x92,0x92,0x92,0xff,0x91,0x91,0x91,0xff,0x94,0x94,0x94,
0xff,0x98,0x98,0x98,0xff,0x9d,0x9d,0x9d,0xff,0xa5,0xa5,0xa5,0xff,0xa4,0xa4,0xa4,
0xfd,0x99,0x99,0x99,0xeb,0x84,0x84,0x84,0xcf,0x6f,0x6f,0x6f,0xbc,0x58,0x58,0x58,
0x9a,0x2f,0x2f,0x2f,0x52,0x9,0x9,0x9,0x28,0x7,0x7,0x7,0x1f,0x6,0x6,0x6,
0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x1b,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x22,0x0,0x0,0x0,
0x25,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
0x30,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x38,0x0,0x0,0x0,
0x3b,0x0,0x0,0x0,0x3e,0x3,0x3,0x3,0x44,0x10,0x10,0x10,0x6b,0x22,0x22,0x22,
0xbf,0x23,0x23,0x23,0xf7,0x17,0x17,0x17,0xff,0x15,0x15,0x15,0xff,0x14,0x14,0x14,
0xff,0x12,0x12,0x12,0xff,0x14,0x14,0x14,0xff,0x1f,0x1f,0x1f,0xff,0x2a,0x2a,0x2a,
0xff,0x2a,0x2a,0x2a,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,
0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,0xff,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,
0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x2c,0x2c,0x2c,
0xff,0x2e,0x2e,0x2e,0xff,0x30,0x30,0x30,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,
0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,
0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,
0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,
0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,0xff,0x47,0x47,0x47,
0xff,0x54,0x54,0x54,0xff,0x66,0x66,0x66,0xff,0x7a,0x7a,0x7a,0xff,0x8f,0x8f,0x8f,
0xff,0x9d,0x9d,0x9d,0xff,0xae,0xae,0xae,0xff,0xb2,0xb2,0xb2,0xff,0xaf,0xaf,0xaf,
0xff,0xa9,0xa9,0xa9,0xff,0xa0,0xa0,0xa0,0xff,0x9e,0x9e,0x9e,0xff,0xa1,0xa1,0xa1,
0xff,0xa4,0xa4,0xa4,0xff,0xa8,0xa8,0xa8,0xff,0xac,0xac,0xac,0xff,0xae,0xae,0xae,
0xff,0xb3,0xb3,0xb3,0xff,0xb7,0xb7,0xb7,0xff,0xa7,0xa7,0xa7,0xef,0x81,0x81,0x81,
0xc1,0x64,0x64,0x64,0x90,0x4e,0x4e,0x4e,0x77,0x30,0x30,0x30,0x4f,0xa,0xa,0xa,
0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x11,0x0,0x0,0x0,
0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x19,0x0,0x0,0x0,
0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x24,0x0,0x0,0x0,
0x26,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,
0x32,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,
0x3e,0x2,0x2,0x2,0x43,0x1a,0x1a,0x1a,0x98,0x23,0x23,0x23,0xf0,0x1a,0x1a,0x1a,
0xff,0x17,0x17,0x17,0xff,0x15,0x15,0x15,0xff,0x12,0x12,0x12,0xff,0x15,0x15,0x15,
0xff,0x1e,0x1e,0x1e,0xff,0x29,0x29,0x29,0xff,0x27,0x27,0x27,0xff,0x23,0x23,0x23,
0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,
0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x24,0x24,0x24,
0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,
0xff,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,0xff,0x2e,0x2e,0x2e,
0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,0xff,0x34,0x34,0x34,0xff,0x37,0x37,0x37,
0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,
0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,
0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,
0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x45,0x45,0x45,
0xff,0x4a,0x4a,0x4a,0xff,0x4e,0x4e,0x4e,0xff,0x5d,0x5d,0x5d,0xff,0x74,0x74,0x74,
0xff,0x91,0x91,0x91,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0xbb,0xbb,0xbb,
0xff,0xbe,0xbe,0xbe,0xff,0xb8,0xb8,0xb8,0xff,0xb6,0xb6,0xb6,0xff,0xb2,0xb2,0xb2,
0xff,0xae,0xae,0xae,0xff,0xb1,0xb1,0xb1,0xff,0xb3,0xb3,0xb3,0xff,0xb7,0xb7,0xb7,
0xff,0xb9,0xb9,0xb9,0xff,0xb8,0xb8,0xb8,0xfe,0xb2,0xb2,0xb2,0xf7,0xab,0xab,0xab,
0xea,0x9b,0x9b,0x9b,0xdc,0x7d,0x7d,0x7d,0xbc,0x4e,0x4e,0x4e,0x76,0x32,0x32,0x32,
0x48,0x25,0x25,0x25,0x3a,0x3,0x3,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,
0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,
0x1d,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x25,0x0,0x0,0x0,
0x28,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x31,0x0,0x0,0x0,
0x35,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,
0x3f,0x5,0x5,0x5,0x61,0x1b,0x1b,0x1b,0xf3,0x19,0x19,0x19,0xff,0x17,0x17,0x17,
0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x20,0x20,0x20,0xff,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x21,0x21,0x21,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,
0xff,0x21,0x21,0x21,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,
0xff,0x22,0x22,0x22,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,
0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x26,0x26,0x26,
0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,0xff,0x29,0x29,0x29,0xff,0x2b,0x2b,0x2b,
0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,0xff,0x2e,0x2e,0x2e,0xff,0x2f,0x2f,0x2f,
0xff,0x31,0x31,0x31,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,0xff,0x37,0x37,0x37,
0xff,0x39,0x39,0x39,0xff,0x3c,0x3c,0x3c,0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3f,0x3f,
0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,
0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,
0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,0xff,0x42,0x42,0x42,0xff,0x41,0x41,0x41,
0xff,0x3f,0x3f,0x3f,0xff,0x41,0x41,0x41,0xff,0x4b,0x4b,0x4b,0xff,0x5a,0x5a,0x5a,
0xff,0x6c,0x6c,0x6c,0xff,0x82,0x82,0x82,0xff,0x9b,0x9b,0x9b,0xff,0xb8,0xb8,0xb8,
0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc5,0xc5,0xc5,0xff,0xbe,0xbe,0xbe,
0xff,0xbb,0xbb,0xbb,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,
0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xc1,0xc1,0xc1,0xff,0xbe,0xbe,0xbe,
0xff,0xb4,0xb4,0xb4,0xfa,0x6b,0x6b,0x6b,0x9e,0x6,0x6,0x6,0xa,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,
0x1e,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x33,0x0,0x0,0x0,
0x37,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x40,0x0,0x0,0x0,
0x3e,0xb,0xb,0xb,0x91,0x1b,0x1b,0x1b,0xfd,0x19,0x19,0x19,0xff,0x18,0x18,0x18,
0xff,0x1f,0x1f,0x1f,0xff,0x27,0x27,0x27,0xff,0x24,0x24,0x24,0xff,0x21,0x21,0x21,
0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,
0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,
0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,
0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,
0xff,0x25,0x25,0x25,0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,0xff,0x29,0x29,0x29,
0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,0xff,0x2e,0x2e,0x2e,
0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x32,0x32,0x32,0xff,0x33,0x33,0x33,
0xff,0x34,0x34,0x34,0xff,0x35,0x35,0x35,0xff,0x36,0x36,0x36,0xff,0x38,0x38,0x38,
0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,0xff,0x3e,0x3e,0x3e,0xff,0x40,0x40,0x40,
0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,
0xff,0x50,0x50,0x50,0xff,0x66,0x66,0x66,0xff,0x80,0x80,0x80,0xff,0x9d,0x9d,0x9d,
0xff,0xad,0xad,0xad,0xff,0xbc,0xbc,0xbc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd,
0xff,0xca,0xca,0xca,0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc,
0xff,0xbc,0xbc,0xbc,0xff,0xb5,0xb5,0xb5,0xfa,0x2d,0x2d,0x2d,0x4a,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
0x16,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,
0x20,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x29,0x0,0x0,0x0,
0x2b,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x35,0x0,0x0,0x0,
0x39,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x43,0x0,0x0,0x0,
0x3e,0x12,0x12,0x12,0xba,0x1c,0x1c,0x1c,0xff,0x1f,0x1f,0x1f,0xff,0x26,0x26,0x26,
0xff,0x25,0x25,0x25,0xff,0x21,0x21,0x21,0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,
0xff,0x1e,0x1e,0x1e,0xff,0x1c,0x1c,0x1c,0xff,0x1b,0x1b,0x1b,0xff,0x1b,0x1b,0x1b,
0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,
0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,
0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,
0xff,0x29,0x29,0x29,0xff,0x2b,0x2b,0x2b,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,
0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,
0xff,0x33,0x33,0x33,0xff,0x34,0x34,0x34,0xff,0x35,0x35,0x35,0xff,0x36,0x36,0x36,
0xff,0x37,0x37,0x37,0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,
0xff,0x3b,0x3b,0x3b,0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x41,0x41,0x41,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,
0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,
0xff,0x46,0x46,0x46,0xff,0x46,0x46,0x46,0xff,0x46,0x46,0x46,0xff,0x46,0x46,0x46,
0xff,0x46,0x46,0x46,0xff,0x45,0x45,0x45,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x4a,0x4a,0x4a,0xff,0x52,0x52,0x52,0xff,0x5c,0x5c,0x5c,0xff,0x6e,0x6e,0x6e,
0xff,0x89,0x89,0x89,0xff,0xab,0xab,0xab,0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,
0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0x4e,0x4e,0x4e,0x79,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0xe,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x14,0x0,0x0,0x0,
0x16,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,
0x21,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,
0x2d,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x37,0x0,0x0,0x0,
0x3b,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x45,0x0,0x0,0x0,
0x41,0x10,0x10,0x10,0xaf,0x22,0x22,0x22,0xff,0x26,0x26,0x26,0xff,0x21,0x21,0x21,
0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x1c,0x1c,0x1c,
0xff,0x1a,0x1a,0x1a,0xff,0x1c,0x1c,0x1c,0xff,0x1b,0x1b,0x1b,0xff,0x1b,0x1b,0x1b,
0xff,0x1b,0x1b,0x1b,0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,
0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,
0xff,0x23,0x23,0x23,0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x27,0x27,0x27,
0xff,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,
0xff,0x2e,0x2e,0x2e,0xff,0x30,0x30,0x30,0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,
0xff,0x34,0x34,0x34,0xff,0x35,0x35,0x35,0xff,0x36,0x36,0x36,0xff,0x37,0x37,0x37,
0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,0xff,0x3a,0x3a,0x3a,
0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,
0xff,0x3d,0x3d,0x3d,0xff,0x3e,0x3e,0x3e,0xff,0x40,0x40,0x40,0xff,0x42,0x42,0x42,
0xff,0x43,0x43,0x43,0xff,0x45,0x45,0x45,0xff,0x47,0x47,0x47,0xff,0x49,0x49,0x49,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,
0xff,0x4a,0x4a,0x4a,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,
0xff,0x48,0x48,0x48,0xff,0x46,0x46,0x46,0xff,0x49,0x49,0x49,0xff,0x59,0x59,0x59,
0xff,0x6c,0x6c,0x6c,0xff,0x87,0x87,0x87,0xff,0x7d,0x7d,0x7d,0xb2,0x6,0x6,0x6,
0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0xf,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,
0x17,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,
0x22,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,
0x2e,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x39,0x0,0x0,0x0,
0x3d,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x47,0x0,0x0,0x0,
0x45,0x10,0x10,0x10,0x95,0x22,0x22,0x22,0xff,0x20,0x20,0x20,0xff,0x1f,0x1f,0x1f,
0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,
0xff,0x1d,0x1d,0x1d,0xff,0x20,0x20,0x20,0xff,0x27,0x27,0x27,0xff,0x2c,0x2c,0x2c,
0xff,0x2e,0x2e,0x2e,0xff,0x30,0x30,0x30,0xff,0x2b,0x2b,0x2b,0xff,0x1f,0x1f,0x1f,
0xff,0x1b,0x1b,0x1b,0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,
0xff,0x1e,0x1e,0x1e,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,
0xff,0x23,0x23,0x23,0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x27,0x27,0x27,
0xff,0x29,0x29,0x29,0xff,0x2b,0x2b,0x2b,0xff,0x2c,0x2c,0x2c,0xff,0x2e,0x2e,0x2e,
0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x32,0x32,0x32,0xff,0x33,0x33,0x33,
0xff,0x35,0x35,0x35,0xff,0x36,0x36,0x36,0xff,0x37,0x37,0x37,0xff,0x38,0x38,0x38,
0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,
0xff,0x3d,0x3d,0x3d,0xff,0x3e,0x3e,0x3e,0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3f,0x3f,
0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,
0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,
0xff,0x45,0x45,0x45,0xff,0x47,0x47,0x47,0xff,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,
0xff,0x4c,0x4c,0x4c,0xff,0x4d,0x4d,0x4d,0xff,0x4e,0x4e,0x4e,0xff,0x4d,0x4d,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x54,0x54,0x54,0xf9,0x47,0x47,0x47,0x79,0x3,0x3,0x3,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0xf,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x16,0x0,0x0,0x0,
0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x23,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
0x30,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,
0x3e,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x49,0x0,0x0,0x0,
0x4b,0xa,0xa,0xa,0x65,0x24,0x24,0x24,0xdf,0x20,0x20,0x20,0xf7,0x1f,0x1f,0x1f,
0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,
0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,
0xff,0x1f,0x1f,0x1f,0xff,0x23,0x23,0x23,0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,
0xff,0x21,0x21,0x21,0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,
0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,
0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,
0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,0xff,0x2f,0x2f,0x2f,
0xff,0x30,0x30,0x30,0xff,0x32,0x32,0x32,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,
0xff,0x36,0x36,0x36,0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,
0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,0xff,0x3e,0x3e,0x3e,
0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,
0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,
0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,0xff,0x49,0x49,0x49,0xff,0x4b,0x4b,0x4b,
0xff,0x4e,0x4e,0x4e,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,
0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x53,0x53,0x53,
0xfa,0x51,0x51,0x51,0xd9,0x2c,0x2c,0x2c,0x63,0x5,0x5,0x5,0x9,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x16,0x0,0x0,0x0,
0x18,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,
0x31,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,
0x40,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,
0x4e,0x1,0x1,0x1,0x52,0x5,0x5,0x5,0x59,0x10,0x10,0x10,0x84,0x14,0x14,0x14,
0xa8,0xf,0xf,0xf,0xb2,0x16,0x16,0x16,0xc0,0x1c,0x1c,0x1c,0xd8,0x1f,0x1f,0x1f,
0xf1,0x1e,0x1e,0x1e,0xfe,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,
0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,0xff,0x2e,0x2e,0x2e,
0xff,0x33,0x33,0x33,0xff,0x22,0x22,0x22,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,
0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,
0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,
0xff,0x2b,0x2b,0x2b,0xff,0x2d,0x2d,0x2d,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,
0xff,0x32,0x32,0x32,0xff,0x34,0x34,0x34,0xff,0x35,0x35,0x35,0xff,0x37,0x37,0x37,
0xff,0x38,0x38,0x38,0xff,0x3a,0x3a,0x3a,0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,
0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,
0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,
0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,
0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,
0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,
0xff,0x49,0x49,0x49,0xff,0x4c,0x4c,0x4c,0xff,0x4d,0x4d,0x4d,0xff,0x4e,0x4e,0x4e,
0xff,0x50,0x50,0x50,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,
0xff,0x55,0x55,0x55,0xff,0x58,0x58,0x58,0xfe,0x4e,0x4e,0x4e,0xc6,0x29,0x29,0x29,
0x63,0x8,0x8,0x8,0x11,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
0x19,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x21,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,
0x32,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,
0x41,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,
0x50,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x57,0x1,0x1,0x1,0x58,0x1,0x1,0x1,
0x5b,0x1,0x1,0x1,0x5d,0x2,0x2,0x2,0x63,0x5,0x5,0x5,0x6b,0xb,0xb,0xb,
0x74,0x19,0x19,0x19,0x8d,0x1a,0x1a,0x1a,0xd9,0x12,0x12,0x12,0xff,0x14,0x14,0x14,
0xff,0x17,0x17,0x17,0xff,0x1d,0x1d,0x1d,0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,
0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,
0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,
0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,0xff,0x2b,0x2b,0x2b,
0xff,0x2d,0x2d,0x2d,0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,
0xff,0x34,0x34,0x34,0xff,0x36,0x36,0x36,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,
0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,
0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,
0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,
0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,
0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4d,0x4d,0x4d,0xff,0x50,0x50,0x50,
0xff,0x55,0x55,0x55,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,
0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,
0xf1,0x47,0x47,0x47,0xb4,0x22,0x22,0x22,0x49,0x7,0x7,0x7,0x12,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
0x19,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x22,0x0,0x0,0x0,
0x25,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,
0x32,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,
0x43,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,
0x51,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,
0x5f,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x64,0x4,0x4,0x4,0x6a,0x13,0x13,0x13,
0x94,0x1d,0x1d,0x1d,0xe6,0x10,0x10,0x10,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,
0xff,0xe,0xe,0xe,0xff,0x25,0x25,0x25,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,
0xff,0x22,0x22,0x22,0xff,0x2f,0x2f,0x2f,0xff,0x21,0x21,0x21,0xff,0x20,0x20,0x20,
0xff,0x21,0x21,0x21,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x26,0x26,0x26,
0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,
0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,
0xff,0x37,0x37,0x37,0xff,0x38,0x38,0x38,0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,
0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x46,0x46,0x46,0xff,0x46,0x46,0x46,
0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4d,0x4d,0x4d,
0xff,0x4f,0x4f,0x4f,0xff,0x54,0x54,0x54,0xff,0x59,0x59,0x59,0xff,0x5a,0x5a,0x5a,
0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,
0xff,0x5c,0x5c,0x5c,0xfe,0x58,0x58,0x58,0xed,0x3d,0x3d,0x3d,0x94,0x1a,0x1a,0x1a,
0x3c,0x2,0x2,0x2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
0x1a,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1e,0x2,0x2,0x2,
0x2e,0x6,0x6,0x6,0x58,0x7,0x7,0x7,0x65,0x6,0x6,0x6,0x6d,0x6,0x6,0x6,
0x74,0x7,0x7,0x7,0x7b,0x7,0x7,0x7,0x77,0x6,0x6,0x6,0x6f,0x3,0x3,0x3,
0x58,0x3,0x3,0x3,0x50,0x3,0x3,0x3,0x53,0x2,0x2,0x2,0x55,0x1,0x1,0x1,
0x55,0x1,0x1,0x1,0x55,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,
0x5f,0x0,0x0,0x0,0x62,0x9,0x9,0x9,0x6e,0x1d,0x1d,0x1d,0xb2,0x1b,0x1b,0x1b,
0xf9,0x13,0x13,0x13,0xff,0x11,0x11,0x11,0xff,0xe,0xe,0xe,0xff,0xd,0xd,0xd,
0xff,0x24,0x24,0x24,0xff,0x29,0x29,0x29,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,
0xff,0x24,0x24,0x24,0xff,0x2d,0x2d,0x2d,0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,
0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,
0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,0xff,0x2e,0x2e,0x2e,0xff,0x30,0x30,0x30,
0xff,0x32,0x32,0x32,0xff,0x34,0x34,0x34,0xff,0x36,0x36,0x36,0xff,0x38,0x38,0x38,
0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,
0xff,0x42,0x42,0x42,0xff,0x47,0x47,0x47,0xff,0x4d,0x4d,0x4d,0xff,0x54,0x54,0x54,
0xff,0x56,0x56,0x56,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x54,0x54,0x54,
0xff,0x51,0x51,0x51,0xff,0x50,0x50,0x50,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,
0xff,0x4e,0x4e,0x4e,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x52,0x52,0x52,0xff,0x56,0x56,0x56,
0xff,0x5b,0x5b,0x5b,0xff,0x5c,0x5c,0x5c,0xff,0x5d,0x5d,0x5d,0xff,0x5d,0x5d,0x5d,
0xff,0x5d,0x5d,0x5d,0xff,0x5e,0x5e,0x5e,0xff,0x5e,0x5e,0x5e,0xff,0x58,0x58,0x58,
0xe2,0x3a,0x3a,0x3a,0x8e,0x10,0x10,0x10,0x24,0x1,0x1,0x1,0x4,0x1,0x1,0x1,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x19,0x1,0x1,0x1,0x1c,0x2,0x2,0x2,0x28,0xc,0xc,0xc,0x72,0x13,0x13,0x13,
0xc6,0x17,0x17,0x17,0xf4,0x16,0x16,0x16,0xfa,0x15,0x15,0x15,0xfd,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xfb,0x10,0x10,0x10,0xf3,0xe,0xe,0xe,
0xe6,0xd,0xd,0xd,0xe1,0xd,0xd,0xd,0xda,0xa,0xa,0xa,0xc3,0x8,0x8,0x8,
0xa8,0x8,0x8,0x8,0x97,0x6,0x6,0x6,0x94,0x5,0x5,0x5,0x88,0x5,0x5,0x5,
0x79,0x11,0x11,0x11,0x87,0x26,0x26,0x26,0xd9,0x1f,0x1f,0x1f,0xff,0x19,0x19,0x19,
0xff,0x16,0x16,0x16,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x21,0x21,0x21,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,
0xff,0x25,0x25,0x25,0xff,0x2c,0x2c,0x2c,0xff,0x23,0x23,0x23,0xff,0x23,0x23,0x23,
0xff,0x24,0x24,0x24,0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,
0xff,0x2c,0x2c,0x2c,0xff,0x2e,0x2e,0x2e,0xff,0x30,0x30,0x30,0xff,0x32,0x32,0x32,
0xff,0x34,0x34,0x34,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,
0xff,0x3d,0x3d,0x3d,0xff,0x3e,0x3e,0x3e,0xff,0x42,0x42,0x42,0xff,0x49,0x49,0x49,
0xff,0x50,0x50,0x50,0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,
0xff,0x59,0x59,0x59,0xff,0x5b,0x5b,0x5b,0xff,0x5f,0x5f,0x5f,0xff,0x62,0x62,0x62,
0xff,0x63,0x63,0x63,0xff,0x63,0x63,0x63,0xff,0x64,0x64,0x64,0xff,0x64,0x64,0x64,
0xff,0x62,0x62,0x62,0xff,0x5f,0x5f,0x5f,0xff,0x5d,0x5d,0x5d,0xff,0x5c,0x5c,0x5c,
0xff,0x59,0x59,0x59,0xff,0x5a,0x5a,0x5a,0xff,0x5d,0x5d,0x5d,0xff,0x5f,0x5f,0x5f,
0xff,0x5f,0x5f,0x5f,0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,
0xff,0x5f,0x5f,0x5f,0xfa,0x54,0x54,0x54,0xd5,0x31,0x31,0x31,0x74,0xe,0xe,0xe,
0x21,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x15,0x1,0x1,0x1,0x1b,0x9,0x9,0x9,
0x40,0x13,0x13,0x13,0x7c,0x24,0x24,0x24,0xca,0x20,0x20,0x20,0xfe,0x17,0x17,0x17,
0xff,0x17,0x17,0x17,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x11,0x11,0x11,0xff,0xf,0xf,0xf,
0xff,0xe,0xe,0xe,0xff,0xd,0xd,0xd,0xff,0xb,0xb,0xb,0xf5,0xd,0xd,0xd,
0xeb,0x15,0x15,0x15,0xfe,0x10,0x10,0x10,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,
0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,
0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x24,0x24,0x24,
0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,0xff,0x23,0x23,0x23,0xff,0x25,0x25,0x25,
0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,
0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,
0xff,0x37,0x37,0x37,0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,0xff,0x3e,0x3e,0x3e,
0xff,0x41,0x41,0x41,0xff,0x47,0x47,0x47,0xff,0x4d,0x4d,0x4d,0xff,0x52,0x52,0x52,
0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x58,0x58,0x58,
0xff,0x59,0x59,0x59,0xff,0x5a,0x5a,0x5a,0xff,0x5b,0x5b,0x5b,0xff,0x5c,0x5c,0x5c,
0xff,0x5d,0x5d,0x5d,0xff,0x5e,0x5e,0x5e,0xff,0x5f,0x5f,0x5f,0xff,0x62,0x62,0x62,
0xff,0x64,0x64,0x64,0xff,0x65,0x65,0x65,0xff,0x66,0x66,0x66,0xff,0x68,0x68,0x68,
0xff,0x65,0x65,0x65,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x62,0x62,0x62,
0xff,0x62,0x62,0x62,0xff,0x62,0x62,0x62,0xff,0x62,0x62,0x62,0xfc,0x4e,0x4e,0x4e,
0xc6,0x28,0x28,0x28,0x62,0x7,0x7,0x7,0x11,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x13,0x3,0x3,0x3,0x1a,0x16,0x16,0x16,0x7c,0x25,0x25,0x25,
0xde,0x24,0x24,0x24,0xfa,0x2b,0x2b,0x2b,0xff,0x21,0x21,0x21,0xff,0x17,0x17,0x17,
0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x11,0x11,0x11,
0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x10,0x10,0x10,0xff,0xf,0xf,0xf,
0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xe,0xe,0xe,0xff,0xd,0xd,0xd,
0xff,0xb,0xb,0xb,0xff,0xc,0xc,0xc,0xff,0xc,0xc,0xc,0xff,0xd,0xd,0xd,
0xff,0xf,0xf,0xf,0xff,0x10,0x10,0x10,0xff,0x13,0x13,0x13,0xff,0x17,0x17,0x17,
0xff,0x1a,0x1a,0x1a,0xff,0x1c,0x1c,0x1c,0xff,0x1e,0x1e,0x1e,0xff,0x22,0x22,0x22,
0xff,0x28,0x28,0x28,0xff,0x2b,0x2b,0x2b,0xff,0x2d,0x2d,0x2d,0xff,0x2f,0x2f,0x2f,
0xff,0x32,0x32,0x32,0xff,0x34,0x34,0x34,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,
0xff,0x3b,0x3b,0x3b,0xff,0x3d,0x3d,0x3d,0xff,0x41,0x41,0x41,0xff,0x47,0x47,0x47,
0xff,0x4d,0x4d,0x4d,0xff,0x50,0x50,0x50,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,
0xff,0x57,0x57,0x57,0xff,0x5a,0x5a,0x5a,0xff,0x5d,0x5d,0x5d,0xff,0x58,0x58,0x58,
0xf0,0x52,0x52,0x52,0xdb,0x5c,0x5c,0x5c,0xf4,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f,
0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,0xff,0x61,0x61,0x61,
0xff,0x62,0x62,0x62,0xff,0x62,0x62,0x62,0xff,0x63,0x63,0x63,0xff,0x63,0x63,0x63,
0xff,0x63,0x63,0x63,0xff,0x63,0x63,0x63,0xff,0x63,0x63,0x63,0xff,0x63,0x63,0x63,
0xff,0x62,0x62,0x62,0xf7,0x4d,0x4d,0x4d,0xbc,0x22,0x22,0x22,0x51,0x7,0x7,0x7,
0x14,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x11,0x13,0x13,0x13,0x67,0x29,0x29,0x29,0xf7,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x2c,0x2c,0x2c,0xff,0x1f,0x1f,0x1f,0xff,0x16,0x16,0x16,
0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x11,0x11,0x11,
0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,
0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,
0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x10,0x10,0x10,
0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xe,0xe,0xe,0xff,0xd,0xd,0xd,
0xff,0xc,0xc,0xc,0xff,0xd,0xd,0xd,0xff,0xd,0xd,0xd,0xff,0xd,0xd,0xd,
0xff,0xf,0xf,0xf,0xff,0x10,0x10,0x10,0xff,0x13,0x13,0x13,0xff,0x18,0x18,0x18,
0xff,0x22,0x22,0x22,0xff,0x28,0x28,0x28,0xff,0x2c,0x2c,0x2c,0xff,0x30,0x30,0x30,
0xff,0x37,0x37,0x37,0xff,0x40,0x40,0x40,0xff,0x49,0x49,0x49,0xff,0x50,0x50,0x50,
0xff,0x53,0x53,0x53,0xff,0x56,0x56,0x56,0xff,0x59,0x59,0x59,0xff,0x5b,0x5b,0x5b,
0xff,0x57,0x57,0x57,0xf3,0x3d,0x3d,0x3d,0xba,0x1d,0x1d,0x1d,0x67,0x16,0x16,0x16,
0x4a,0xc,0xc,0xc,0x35,0x1b,0x1b,0x1b,0x4c,0x29,0x29,0x29,0x5e,0x2a,0x2a,0x2a,
0x67,0x2f,0x2f,0x2f,0x79,0x4a,0x4a,0x4a,0xae,0x59,0x59,0x59,0xd1,0x60,0x60,0x60,
0xe4,0x5f,0x5f,0x5f,0xea,0x62,0x62,0x62,0xf2,0x64,0x64,0x64,0xfc,0x65,0x65,0x65,
0xff,0x65,0x65,0x65,0xff,0x65,0x65,0x65,0xfe,0x60,0x60,0x60,0xed,0x45,0x45,0x45,
0xa8,0x1b,0x1b,0x1b,0x44,0x4,0x4,0x4,0xb,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x11,0x2,0x2,0x2,0x18,0x20,0x20,0x20,0xa9,0x28,0x28,0x28,0xff,0x28,0x28,0x28,
0xff,0x27,0x27,0x27,0xff,0x2b,0x2b,0x2b,0xff,0x1c,0x1c,0x1c,0xff,0x15,0x15,0x15,
0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,
0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x11,0x11,0x11,
0xff,0xf,0xf,0xf,0xff,0xd,0xd,0xd,0xff,0xd,0xd,0xd,0xff,0xf,0xf,0xf,
0xff,0x13,0x13,0x13,0xff,0x19,0x19,0x19,0xff,0x1d,0x1d,0x1d,0xff,0x23,0x23,0x23,
0xff,0x2f,0x2f,0x2f,0xff,0x3c,0x3c,0x3c,0xff,0x43,0x43,0x43,0xfd,0x38,0x38,0x38,
0xe0,0x17,0x17,0x17,0x82,0x3,0x3,0x3,0x3f,0x2,0x2,0x2,0x2d,0x1,0x1,0x1,
0x27,0x1,0x1,0x1,0x22,0x1,0x1,0x1,0x1e,0x0,0x0,0x0,0x1b,0x1,0x1,0x1,
0x19,0x2,0x2,0x2,0x17,0x6,0x6,0x6,0x19,0xa,0xa,0xa,0x1c,0xf,0xf,0xf,
0x20,0x10,0x10,0x10,0x27,0x20,0x20,0x20,0x46,0x3c,0x3c,0x3c,0x7a,0x4a,0x4a,0x4a,
0x94,0x41,0x41,0x41,0x9d,0x35,0x35,0x35,0x87,0x14,0x14,0x14,0x36,0x3,0x3,0x3,
0xb,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x10,0x5,0x5,0x5,0x27,0x28,0x28,0x28,0xd7,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x27,0x27,0x27,0xff,0x2a,0x2a,0x2a,0xff,0x1a,0x1a,0x1a,0xff,0x15,0x15,0x15,
0xff,0x15,0x15,0x15,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,
0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x17,0x17,0x17,0xff,0x17,0x17,0x17,
0xff,0x18,0x18,0x18,0xff,0x18,0x18,0x18,0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,
0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,0xff,0x18,0x18,0x18,
0xff,0x17,0x17,0x17,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x14,0x14,0x14,
0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,0xff,0x10,0x10,0x10,0xff,0xb,0xb,0xb,
0xf3,0x9,0x9,0x9,0xe3,0x7,0x7,0x7,0xd2,0x8,0x8,0x8,0xc5,0x7,0x7,0x7,
0xb9,0x6,0x6,0x6,0xa1,0x4,0x4,0x4,0x83,0x4,0x4,0x4,0x5d,0x4,0x4,0x4,
0x4f,0x4,0x4,0x4,0x45,0x3,0x3,0x3,0x34,0x2,0x2,0x2,0x24,0x2,0x2,0x2,
0x15,0x2,0x2,0x2,0x12,0x1,0x1,0x1,0xf,0x2,0x2,0x2,0xb,0x2,0x2,0x2,
0x9,0x2,0x2,0x2,0x7,0x1,0x1,0x1,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x10,0x8,0x8,0x8,0x31,0x2a,0x2a,0x2a,0xe8,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x27,0x27,0x27,0xff,0x29,0x29,0x29,0xff,0x19,0x19,0x19,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x13,0x16,0x15,
0xff,0x11,0x1b,0x19,0xff,0x12,0x19,0x17,0xff,0x15,0x19,0x17,0xff,0x14,0x17,0x16,
0xff,0x13,0x15,0x15,0xff,0x13,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x12,0x12,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,
0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,
0xff,0x17,0x17,0x17,0xff,0x17,0x17,0x17,0xff,0x18,0x18,0x18,0xff,0x18,0x18,0x18,
0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,0xff,0x1a,0x1a,0x1a,0xff,0x1a,0x1a,0x1a,
0xff,0x1b,0x1b,0x1b,0xff,0x1b,0x1b,0x1b,0xff,0x1c,0x1c,0x1c,0xff,0x1c,0x1c,0x1c,
0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,
0xff,0x1d,0x1d,0x1d,0xff,0x1c,0x1c,0x1c,0xff,0x1a,0x1a,0x1a,0xff,0x19,0x19,0x19,
0xff,0x17,0x17,0x17,0xff,0x14,0x14,0x14,0xfe,0x12,0x12,0x12,0xfd,0x10,0x10,0x10,
0xfa,0xd,0xd,0xd,0xf1,0xa,0xa,0xa,0xdd,0x9,0x9,0x9,0xca,0x9,0x9,0x9,
0xb9,0x8,0x8,0x8,0xaf,0x6,0x6,0x6,0x95,0x4,0x4,0x4,0x72,0x5,0x5,0x5,
0x4b,0x5,0x5,0x5,0x3f,0x4,0x4,0x4,0x36,0x3,0x3,0x3,0x2a,0x2,0x2,0x2,
0x1a,0x2,0x2,0x2,0xd,0x2,0x2,0x2,0x9,0x1,0x1,0x1,0x6,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x10,0xb,0xb,0xb,0x3d,0x2a,0x2a,0x2a,0xed,0x29,0x29,0x29,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x17,0x17,0x17,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x12,0x18,0x17,
0xff,0xc,0x27,0x22,0xff,0x10,0x25,0x21,0xff,0x19,0x2a,0x23,0xff,0x17,0x25,0x21,
0xff,0x16,0x23,0x20,0xff,0x1b,0x27,0x25,0xff,0x17,0x20,0x1e,0xff,0x15,0x1c,0x1b,
0xff,0x16,0x1c,0x1c,0xff,0x18,0x1c,0x1c,0xff,0x16,0x19,0x19,0xff,0x15,0x16,0x16,
0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x14,0x13,0x13,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,
0xff,0x16,0x16,0x16,0xff,0x17,0x17,0x17,0xff,0x17,0x17,0x17,0xff,0x18,0x18,0x18,
0xff,0x18,0x18,0x18,0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,0xff,0x1a,0x1a,0x1a,
0xff,0x1a,0x1a,0x1a,0xff,0x1b,0x1b,0x1b,0xff,0x1b,0x1b,0x1b,0xff,0x1c,0x1c,0x1c,
0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,
0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x21,0x21,0x21,
0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,
0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,
0xff,0x21,0x21,0x21,0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,
0xff,0x1b,0x1b,0x1b,0xff,0x18,0x18,0x18,0xfd,0x15,0x15,0x15,0xfc,0x12,0x12,0x12,
0xfa,0x10,0x10,0x10,0xf8,0xc,0xc,0xc,0xe8,0x8,0x8,0x8,0xd1,0x6,0x6,0x6,
0xb3,0x7,0x7,0x7,0x9f,0x6,0x6,0x6,0x96,0x5,0x5,0x5,0x80,0x4,0x4,0x4,
0x60,0x4,0x4,0x4,0x3a,0x4,0x4,0x4,0x2b,0x3,0x3,0x3,0x24,0x2,0x2,0x2,
0x1a,0x1,0x1,0x1,0x9,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x1,0x1,0x1,
0x10,0x12,0x12,0x12,0x5a,0x29,0x29,0x29,0xf4,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x26,0x26,0x26,0xff,0x16,0x16,0x16,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x11,0x17,0x16,
0xff,0x11,0x2d,0x25,0xff,0x16,0x33,0x2a,0xff,0xe,0x2d,0x26,0xff,0xc,0x2a,0x24,
0xff,0x13,0x2f,0x2a,0xff,0x15,0x32,0x2d,0xff,0x10,0x2e,0x28,0xff,0x13,0x33,0x2e,
0xff,0x13,0x32,0x30,0xff,0x1e,0x3d,0x3b,0xff,0x26,0x45,0x45,0xff,0x21,0x3d,0x3c,
0xff,0x22,0x3d,0x3a,0xff,0x24,0x3e,0x3a,0xff,0x1f,0x37,0x32,0xff,0x19,0x2d,0x28,
0xff,0x19,0x25,0x21,0xff,0x18,0x20,0x1e,0xff,0x17,0x1e,0x1c,0xff,0x18,0x1c,0x1a,
0xff,0x18,0x19,0x18,0xff,0x18,0x18,0x18,0xff,0x18,0x18,0x18,0xff,0x19,0x19,0x19,
0xff,0x19,0x19,0x19,0xff,0x1a,0x19,0x19,0xff,0x1b,0x1a,0x1a,0xff,0x1b,0x1b,0x1b,
0xff,0x1c,0x1b,0x1b,0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1c,0x1d,0xff,0x1d,0x1d,0x1d,
0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,
0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x21,0x21,0x21,
0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,
0xff,0x23,0x23,0x23,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,
0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,
0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,
0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,
0xff,0x24,0x24,0x24,0xff,0x22,0x22,0x22,0xff,0x20,0x20,0x20,0xff,0x1e,0x1e,0x1e,
0xff,0x1c,0x1c,0x1c,0xff,0x1a,0x1a,0x1a,0xff,0x17,0x17,0x17,0xfe,0x11,0x11,0x11,
0xf5,0xf,0xf,0xf,0xea,0xd,0xd,0xd,0xe7,0xb,0xb,0xb,0xe1,0x9,0x9,0x9,
0xcb,0x6,0x6,0x6,0xa5,0x7,0x7,0x7,0x92,0x7,0x7,0x7,0x87,0x6,0x6,0x6,
0x72,0x3,0x3,0x3,0x4b,0x3,0x3,0x3,0x2e,0x3,0x3,0x3,0x20,0x3,0x3,0x3,
0x19,0x3,0x3,0x3,0x11,0x1,0x1,0x1,0x8,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xf,0x1,0x1,0x1,
0x11,0x16,0x16,0x16,0x72,0x2b,0x2b,0x2b,0xf9,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x24,0x24,0x24,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x15,0x1c,0x19,
0xff,0x16,0x31,0x28,0xff,0xf,0x2b,0x25,0xff,0xa,0x28,0x24,0xff,0xb,0x2d,0x27,
0xff,0xc,0x2e,0x25,0xff,0xc,0x2e,0x24,0xff,0xd,0x30,0x2a,0xff,0xe,0x30,0x2b,
0xff,0x10,0x2f,0x28,0xff,0x14,0x37,0x2f,0xff,0x17,0x3e,0x34,0xff,0x19,0x42,0x36,
0xff,0x1d,0x4f,0x40,0xff,0x25,0x5f,0x50,0xff,0x27,0x60,0x52,0xff,0x28,0x5c,0x4c,
0xff,0x24,0x56,0x46,0xff,0x1d,0x52,0x44,0xff,0x16,0x48,0x3c,0xff,0x20,0x45,0x38,
0xff,0x1c,0x36,0x2e,0xff,0x16,0x29,0x29,0xff,0x15,0x27,0x27,0xff,0x18,0x24,0x22,
0xff,0x1e,0x27,0x22,0xff,0x1d,0x25,0x22,0xff,0x1a,0x21,0x20,0xff,0x1b,0x1f,0x1f,
0xff,0x1c,0x1f,0x1e,0xff,0x1d,0x1f,0x1e,0xff,0x1e,0x1f,0x1e,0xff,0x1f,0x1e,0x1e,
0xff,0x1f,0x1e,0x1f,0xff,0x20,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,
0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,
0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,
0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,
0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,
0xff,0x26,0x26,0x26,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,
0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,
0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x25,0x25,0x25,
0xff,0x24,0x24,0x24,0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,0xff,0x1e,0x1e,0x1e,
0xff,0x1c,0x1c,0x1c,0xff,0x19,0x19,0x19,0xff,0x17,0x17,0x17,0xff,0x13,0x13,0x13,
0xfd,0xe,0xe,0xe,0xf0,0xd,0xd,0xd,0xe8,0xb,0xb,0xb,0xe2,0x8,0x8,0x8,
0xd5,0x7,0x7,0x7,0xb9,0x5,0x5,0x5,0x98,0x6,0x6,0x6,0x78,0x6,0x6,0x6,
0x69,0x5,0x5,0x5,0x58,0x2,0x2,0x2,0x35,0x1,0x1,0x1,0x6,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xe,0x1,0x1,0x1,
0x11,0x18,0x18,0x18,0x86,0x2c,0x2c,0x2c,0xfd,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x22,0x22,0x22,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x18,0x22,0x1c,
0xff,0x14,0x2f,0x28,0xff,0xe,0x29,0x27,0xff,0x13,0x30,0x2a,0xff,0x13,0x31,0x29,
0xff,0x12,0x33,0x27,0xff,0x13,0x38,0x2a,0xff,0x14,0x3b,0x31,0xff,0x17,0x3c,0x31,
0xff,0x1a,0x3e,0x32,0xff,0x1b,0x43,0x37,0xff,0x19,0x44,0x3a,0xff,0x1b,0x44,0x3b,
0xff,0x20,0x50,0x42,0xff,0x28,0x5f,0x4d,0xff,0x2f,0x66,0x52,0xff,0x28,0x5f,0x4c,
0xff,0x1f,0x5d,0x49,0xff,0x17,0x5a,0x48,0xff,0x15,0x51,0x41,0xff,0x27,0x56,0x40,
0xff,0x27,0x52,0x3f,0xff,0x1c,0x46,0x3e,0xff,0x1e,0x46,0x39,0xff,0x2b,0x4d,0x38,
0xff,0x25,0x45,0x36,0xff,0x1a,0x3e,0x35,0xff,0xf,0x34,0x2f,0xff,0xc,0x2b,0x27,
0xff,0xd,0x34,0x2b,0xff,0xe,0x3d,0x32,0xff,0x23,0x5c,0x54,0xff,0x2b,0x5c,0x53,
0xff,0x26,0x4e,0x45,0xff,0x24,0x45,0x40,0xff,0x1d,0x30,0x2d,0xff,0x1f,0x2b,0x29,
0xff,0x20,0x27,0x26,0xff,0x22,0x25,0x24,0xff,0x23,0x25,0x25,0xff,0x24,0x25,0x24,
0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x26,0x25,0x25,0xff,0x26,0x25,0x26,
0xff,0x26,0x26,0x26,0xff,0x27,0x26,0x26,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,
0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,
0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,
0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,
0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,
0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,
0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x24,0x24,0x24,0xff,0x23,0x23,0x23,
0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,0xff,0x1f,0x1f,0x1f,0xff,0x1d,0x1d,0x1d,
0xff,0x1a,0x1a,0x1a,0xff,0x18,0x18,0x18,0xfe,0x14,0x14,0x14,0xfd,0x19,0x16,0x12,
0xfb,0x17,0x13,0xe,0xf6,0x10,0xe,0xa,0xe7,0x11,0xd,0x8,0xd5,0xf,0xb,0x8,
0xc3,0xd,0xb,0x4,0x8f,0xa,0x8,0x2,0x47,0x1,0x1,0x2,0x38,0x1,0x1,0x1,
0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xe,0x1,0x1,0x1,
0x12,0x1d,0x1d,0x1d,0x96,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x1f,0x1f,0x1f,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x13,0x13,0xff,0x13,0x22,0x21,
0xff,0x16,0x38,0x39,0xff,0x10,0x2c,0x2b,0xff,0x12,0x2c,0x26,0xff,0x12,0x30,0x28,
0xff,0x10,0x2f,0x26,0xff,0xe,0x30,0x2b,0xff,0xc,0x33,0x2e,0xff,0xc,0x35,0x2f,
0xff,0xe,0x36,0x30,0xff,0x13,0x39,0x34,0xff,0x15,0x3c,0x36,0xff,0x1b,0x43,0x3a,
0xff,0x21,0x52,0x43,0xff,0x27,0x5e,0x4a,0xff,0x26,0x63,0x4c,0xff,0x1e,0x66,0x4f,
0xff,0x15,0x62,0x4c,0xff,0xf,0x56,0x45,0xff,0x17,0x4c,0x3c,0xff,0x29,0x55,0x3e,
0xff,0x30,0x5a,0x40,0xff,0x1e,0x45,0x36,0xff,0x1f,0x40,0x35,0xff,0x15,0x37,0x32,
0xff,0x8,0x2f,0x2e,0xff,0x5,0x2f,0x2d,0xff,0x3,0x26,0x26,0xff,0x2,0x2e,0x29,
0xff,0x6,0x45,0x36,0xff,0x32,0x89,0x78,0xff,0x5c,0xbf,0xac,0xff,0x50,0xb9,0xa2,
0xff,0x41,0xb0,0x9c,0xff,0x14,0x7b,0x6e,0xff,0x8,0x56,0x45,0xff,0xb,0x51,0x43,
0xff,0xd,0x45,0x39,0xff,0x13,0x3e,0x32,0xff,0x14,0x3a,0x31,0xff,0x25,0x48,0x3a,
0xff,0x2e,0x4f,0x3f,0xff,0x2a,0x42,0x39,0xff,0x23,0x2c,0x2c,0xff,0x24,0x2d,0x2c,
0xff,0x25,0x2d,0x2d,0xff,0x26,0x2c,0x2b,0xff,0x28,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x29,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,
0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,
0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,
0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,
0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,
0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,
0xff,0x27,0x27,0x27,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,
0xff,0x25,0x25,0x25,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x23,0x23,0x23,
0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,0xff,0x2c,0x27,0x20,
0xff,0x4c,0x3d,0x1c,0xff,0x57,0x42,0x1b,0xff,0x51,0x3c,0x19,0xff,0x4b,0x39,0x15,
0xff,0x32,0x27,0x12,0xff,0x10,0xf,0xf,0xff,0xc,0xc,0xc,0xf9,0x5,0x5,0x5,
0xc8,0x2,0x2,0x2,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xe,0x1,0x1,0x1,
0x13,0x23,0x23,0x23,0xa6,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x29,0x29,0x29,0xff,0x1c,0x1c,0x1c,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x13,0x13,0xff,0x10,0x1d,0x1e,
0xff,0xb,0x22,0x23,0xff,0xa,0x1f,0x1d,0xff,0xc,0x25,0x21,0xff,0xc,0x28,0x24,
0xff,0xa,0x26,0x25,0xff,0xb,0x2a,0x2b,0xff,0xb,0x2c,0x2d,0xff,0xb,0x2f,0x2e,
0xff,0xd,0x2f,0x2d,0xff,0xe,0x2d,0x2a,0xff,0x12,0x33,0x2e,0xff,0x19,0x44,0x39,
0xff,0x1d,0x50,0x40,0xff,0x21,0x61,0x4b,0xff,0x1a,0x6c,0x55,0xff,0x12,0x6e,0x56,
0xff,0x9,0x5f,0x4c,0xff,0xc,0x49,0x3d,0xff,0x1c,0x45,0x3e,0xff,0x28,0x52,0x44,
0xff,0x36,0x5b,0x40,0xff,0x1b,0x3b,0x32,0xff,0x4,0x28,0x2c,0xff,0x4,0x2f,0x2e,
0xff,0x6,0x31,0x2c,0xff,0x3,0x28,0x26,0xff,0x5,0x2b,0x29,0xff,0x5,0x3c,0x31,
0xff,0x2e,0x6f,0x61,0xff,0x68,0xbd,0xac,0xff,0x6c,0xc5,0xaf,0xff,0x52,0xbe,0xa9,
0xff,0x22,0x95,0x86,0xff,0x5,0x5b,0x49,0xff,0x5,0x51,0x3f,0xff,0x6,0x48,0x3b,
0xff,0xe,0x48,0x39,0xff,0xc,0x44,0x37,0xff,0xa,0x48,0x38,0xff,0x2f,0x73,0x58,
0xff,0x3b,0x82,0x61,0xff,0x2f,0x68,0x56,0xff,0x1e,0x45,0x41,0xff,0x1b,0x47,0x42,
0xff,0x1a,0x47,0x41,0xff,0x16,0x37,0x32,0xff,0x17,0x2f,0x2d,0xff,0x17,0x30,0x2d,
0xff,0x1c,0x2f,0x2e,0xff,0x22,0x2e,0x2e,0xff,0x23,0x2d,0x2d,0xff,0x25,0x2e,0x2d,
0xff,0x27,0x2d,0x2c,0xff,0x29,0x2e,0x2d,0xff,0x2a,0x2d,0x2c,0xff,0x2a,0x2c,0x2c,
0xff,0x2b,0x2c,0x2c,0xff,0x2c,0x2c,0x2c,0xff,0x2c,0x2b,0x2b,0xff,0x2c,0x2b,0x2b,
0xff,0x2c,0x2b,0x2b,0xff,0x2c,0x2b,0x2b,0xff,0x2b,0x2b,0x2b,0xff,0x2b,0x2b,0x2b,
0xff,0x2b,0x2b,0x2b,0xff,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,
0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,
0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,0xff,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,0xff,0x25,0x25,0x25,0xff,0x24,0x24,0x24,
0xff,0x24,0x24,0x24,0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,0xff,0x58,0x4c,0x1a,
0xff,0x84,0x6d,0x20,0xff,0xb8,0x99,0x28,0xff,0xc1,0x9f,0x25,0xff,0x99,0x7c,0x1f,
0xff,0x5e,0x4f,0x1a,0xff,0x23,0x22,0x1c,0xff,0x1a,0x1a,0x1a,0xff,0x12,0x12,0x12,
0xff,0x5,0x5,0x5,0xb3,0x1,0x1,0x1,0x6,0x1,0x1,0x1,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xd,0x3,0x3,0x3,
0x1b,0x26,0x26,0x26,0xc0,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x28,0x28,
0xff,0x29,0x29,0x29,0xff,0x19,0x19,0x19,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x13,0x13,0xff,0xe,0x18,0x18,
0xff,0x9,0x1b,0x1b,0xff,0xb,0x22,0x20,0xff,0xd,0x2a,0x25,0xff,0xc,0x27,0x27,
0xff,0xc,0x2b,0x2b,0xff,0xb,0x2b,0x2a,0xff,0xb,0x2e,0x2a,0xff,0xb,0x32,0x2c,
0xff,0xd,0x31,0x2c,0xff,0x10,0x36,0x30,0xff,0x1c,0x4a,0x3d,0xff,0x20,0x55,0x43,
0xff,0x20,0x59,0x46,0xff,0x1d,0x6b,0x53,0xff,0x12,0x75,0x5c,0xff,0x6,0x66,0x53,
0xff,0x8,0x4d,0x42,0xff,0x11,0x3b,0x36,0xff,0x1b,0x42,0x3c,0xff,0x20,0x4b,0x3f,
0xff,0x21,0x48,0x3d,0xff,0x18,0x43,0x3b,0xff,0x6,0x35,0x35,0xff,0xa,0x37,0x33,
0xff,0x8,0x30,0x2d,0xff,0xa,0x31,0x2d,0xff,0xc,0x40,0x37,0xff,0x15,0x4c,0x3d,
0xff,0x46,0x92,0x87,0xff,0x61,0xbb,0xae,0xff,0x40,0xa8,0x94,0xff,0x17,0x87,0x77,
0xff,0x6,0x60,0x4f,0xff,0x7,0x4f,0x3e,0xff,0x5,0x48,0x3c,0xff,0xc,0x4a,0x3a,
0xff,0x16,0x4c,0x3a,0xff,0x9,0x40,0x36,0xff,0xf,0x51,0x42,0xff,0x2c,0x7b,0x65,
0xff,0x3c,0x85,0x6c,0xff,0x39,0x74,0x69,0xff,0x26,0x59,0x52,0xff,0x1a,0x4c,0x43,
0xff,0xe,0x41,0x37,0xff,0xe,0x33,0x2e,0xff,0xc,0x31,0x2c,0xff,0xb,0x32,0x2d,
0xff,0xa,0x2d,0x29,0xff,0x9,0x24,0x24,0xff,0x9,0x23,0x21,0xff,0xc,0x2d,0x28,
0xff,0xd,0x31,0x2b,0xff,0x16,0x35,0x31,0xff,0x1a,0x36,0x32,0xff,0x1d,0x38,0x34,
0xff,0x1f,0x3a,0x36,0xff,0x23,0x43,0x3b,0xff,0x28,0x44,0x3c,0xff,0x29,0x43,0x3a,
0xff,0x27,0x38,0x33,0xff,0x2a,0x35,0x33,0xff,0x2c,0x35,0x34,0xff,0x2a,0x2f,0x2e,
0xff,0x2c,0x2d,0x2d,0xff,0x2c,0x2d,0x2d,0xff,0x2c,0x2c,0x2c,0xff,0x2c,0x2c,0x2c,
0xff,0x2c,0x2a,0x2b,0xff,0x2b,0x29,0x29,0xff,0x2a,0x29,0x29,0xff,0x2a,0x29,0x29,
0xff,0x2a,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,0xff,0x26,0x26,0x26,0xff,0x26,0x26,0x26,
0xff,0x25,0x25,0x25,0xff,0x24,0x24,0x24,0xff,0x23,0x23,0x24,0xff,0x4d,0x44,0x1d,
0xff,0x7c,0x68,0x21,0xff,0xc1,0xa1,0x27,0xff,0xe1,0xc1,0x27,0xff,0xb9,0x9d,0x27,
0xff,0x7b,0x68,0x19,0xff,0x28,0x26,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x19,0x19,0x19,
0xff,0xa,0xa,0xa,0xcb,0x2,0x2,0x2,0x16,0x1,0x1,0x1,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x7,0x7,0x7,
0x28,0x28,0x28,0x28,0xd2,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x28,0x28,
0xff,0x28,0x28,0x28,0xff,0x17,0x17,0x17,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x14,0x13,0xff,0xc,0x19,0x19,
0xff,0xb,0x24,0x22,0xff,0xe,0x2d,0x26,0xff,0xd,0x2f,0x28,0xff,0xd,0x35,0x2d,
0xff,0xc,0x36,0x2e,0xff,0xa,0x3a,0x31,0xff,0xa,0x3d,0x33,0xff,0xe,0x3f,0x35,
0xff,0x11,0x3a,0x34,0xff,0x18,0x41,0x38,0xff,0x1e,0x4c,0x3e,0xff,0x1a,0x4c,0x3d,
0xff,0x1b,0x58,0x45,0xff,0x1d,0x76,0x5c,0xff,0x10,0x77,0x5f,0xff,0xe,0x5f,0x50,
0xff,0x11,0x3d,0x37,0xff,0xd,0x36,0x33,0xff,0x11,0x3f,0x3a,0xff,0x1e,0x51,0x46,
0xff,0x15,0x46,0x3f,0xff,0x14,0x4a,0x43,0xff,0xa,0x3e,0x3a,0xff,0x8,0x36,0x31,
0xff,0x13,0x44,0x3a,0xff,0x17,0x50,0x44,0xff,0x19,0x56,0x44,0xff,0x19,0x53,0x43,
0xff,0x32,0x80,0x72,0xff,0x2a,0x89,0x78,0xff,0xa,0x6b,0x58,0xff,0x3,0x55,0x44,
0xff,0x6,0x50,0x41,0xff,0x5,0x49,0x3d,0xff,0x8,0x4f,0x3f,0xff,0x19,0x53,0x40,
0xff,0x12,0x44,0x37,0xff,0x8,0x42,0x37,0xff,0x12,0x52,0x43,0xff,0x21,0x69,0x5a,
0xff,0x3a,0x76,0x6a,0xff,0x24,0x58,0x51,0xff,0x13,0x40,0x35,0xff,0xf,0x41,0x34,
0xff,0x10,0x39,0x32,0xff,0x10,0x32,0x2e,0xff,0x10,0x36,0x30,0xff,0xe,0x35,0x30,
0xff,0x10,0x31,0x2e,0xff,0xd,0x2b,0x28,0xff,0xb,0x29,0x26,0xff,0xd,0x31,0x2b,
0xff,0xb,0x3d,0x33,0xff,0x10,0x3e,0x37,0xff,0x13,0x3d,0x35,0xff,0x11,0x3f,0x37,
0xff,0x13,0x4b,0x3e,0xff,0x17,0x5b,0x4a,0xff,0x1b,0x60,0x51,0xff,0x21,0x65,0x54,
0xff,0x19,0x59,0x46,0xff,0x12,0x53,0x45,0xff,0x21,0x61,0x51,0xff,0x20,0x4f,0x40,
0xff,0x24,0x4f,0x40,0xff,0x2a,0x4d,0x40,0xff,0x2a,0x48,0x3c,0xff,0x20,0x3f,0x35,
0xff,0x26,0x43,0x3d,0xff,0x2a,0x4a,0x44,0xff,0x2d,0x46,0x40,0xff,0x29,0x37,0x34,
0xff,0x29,0x30,0x2e,0xff,0x2a,0x2d,0x2c,0xff,0x2a,0x2a,0x2a,0xff,0x29,0x2a,0x2a,
0xff,0x28,0x29,0x29,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x24,0x24,
0xff,0x48,0x3a,0x21,0xff,0x6e,0x53,0x1d,0xff,0x70,0x54,0x1e,0xff,0x66,0x51,0x1e,
0xff,0x3b,0x32,0x1f,0xff,0x21,0x20,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x1a,0x1a,0x1a,
0xff,0xc,0xc,0xc,0xcc,0x2,0x2,0x2,0x19,0x1,0x1,0x1,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x8,0x8,0x8,
0x32,0x29,0x29,0x29,0xde,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x28,0x28,
0xff,0x28,0x28,0x28,0xff,0x16,0x16,0x16,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x16,0x15,0xff,0xe,0x29,0x21,
0xff,0xe,0x35,0x29,0xff,0xe,0x34,0x2a,0xff,0xe,0x38,0x2e,0xff,0xc,0x38,0x2f,
0xff,0xc,0x37,0x2e,0xff,0xf,0x39,0x33,0xff,0xf,0x37,0x33,0xff,0x12,0x35,0x35,
0xff,0x18,0x3a,0x39,0xff,0x1d,0x44,0x3c,0xff,0x1d,0x47,0x3b,0xff,0x18,0x4c,0x3a,
0xff,0x19,0x5e,0x47,0xff,0x1d,0x74,0x5c,0xff,0x20,0x76,0x5f,0xff,0x1d,0x56,0x4a,
0xff,0x11,0x3a,0x35,0xff,0x13,0x42,0x3e,0xff,0x1e,0x55,0x4c,0xff,0x2a,0x68,0x59,
0xff,0x1b,0x5b,0x50,0xff,0xc,0x4b,0x42,0xff,0x8,0x44,0x3b,0xff,0xb,0x40,0x37,
0xff,0x15,0x4e,0x42,0xff,0x20,0x5f,0x4e,0xff,0x1b,0x5e,0x4a,0xff,0x1b,0x5d,0x4d,
0xff,0x23,0x6a,0x59,0xff,0xf,0x5e,0x4c,0xff,0x6,0x53,0x41,0xff,0x5,0x56,0x42,
0xff,0x6,0x56,0x43,0xff,0x6,0x56,0x45,0xff,0x15,0x5f,0x49,0xff,0x15,0x49,0x3c,
0xff,0xe,0x41,0x36,0xff,0xc,0x49,0x3c,0xff,0x16,0x50,0x42,0xff,0x1b,0x4b,0x40,
0xff,0x1a,0x44,0x3c,0xff,0x13,0x3c,0x32,0xff,0x12,0x41,0x36,0xff,0xf,0x3e,0x37,
0xff,0xd,0x2f,0x2c,0xff,0xd,0x31,0x2d,0xff,0xe,0x32,0x2e,0xff,0xf,0x32,0x2f,
0xff,0x10,0x30,0x2c,0xff,0xd,0x2c,0x28,0xff,0xb,0x2f,0x29,0xff,0xb,0x39,0x30,
0xff,0xb,0x41,0x37,0xff,0xd,0x4c,0x41,0xff,0x11,0x4e,0x43,0xff,0x10,0x54,0x47,
0xff,0x14,0x5e,0x4c,0xff,0x18,0x5d,0x4c,0xff,0x19,0x5b,0x4b,0xff,0x1e,0x61,0x4f,
0xff,0x20,0x68,0x50,0xff,0x1d,0x5f,0x46,0xff,0x21,0x5d,0x49,0xff,0x1c,0x5d,0x4b,
0xff,0x22,0x67,0x4d,0xff,0x23,0x5f,0x47,0xff,0x17,0x5a,0x42,0xff,0xb,0x5c,0x42,
0xff,0x1a,0x7d,0x6b,0xff,0x2f,0xa2,0x93,0xff,0x25,0x93,0x7a,0xff,0x13,0x6d,0x55,
0xff,0x20,0x6a,0x55,0xff,0x28,0x70,0x60,0xff,0x21,0x5b,0x4c,0xff,0x1c,0x41,0x34,
0xff,0x21,0x3e,0x33,0xff,0x23,0x37,0x30,0xff,0x28,0x39,0x33,0xff,0x24,0x2f,0x2c,
0xff,0x24,0x29,0x27,0xff,0x25,0x28,0x27,0xff,0x25,0x27,0x26,0xff,0x2f,0x2b,0x25,
0xff,0x43,0x38,0x22,0xff,0x35,0x2d,0x23,0xff,0x2a,0x25,0x23,0xff,0x37,0x2f,0x20,
0xff,0x39,0x31,0x20,0xff,0x26,0x24,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x1b,0x1b,0x1b,
0xff,0xb,0xb,0xb,0xcd,0x2,0x2,0x2,0x1a,0x1,0x1,0x1,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x9,0xc,0xc,0xc,
0x3c,0x2b,0x2b,0x2b,0xe8,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x28,0x28,
0xff,0x26,0x26,0x26,0xff,0x15,0x15,0x15,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x18,0x16,0xff,0xe,0x2b,0x23,
0xff,0x9,0x27,0x22,0xff,0xb,0x2b,0x26,0xff,0x11,0x33,0x2d,0xff,0x13,0x37,0x31,
0xff,0x13,0x39,0x32,0xff,0x14,0x3b,0x35,0xff,0x13,0x3b,0x36,0xff,0x11,0x39,0x35,
0xff,0x19,0x40,0x37,0xff,0x20,0x49,0x3a,0xff,0x22,0x4f,0x3e,0xff,0x28,0x5e,0x49,
0xff,0x2f,0x69,0x56,0xff,0x24,0x65,0x54,0xff,0x22,0x56,0x4a,0xff,0x1e,0x4a,0x3f,
0xff,0x15,0x4f,0x44,0xff,0xc,0x4f,0x45,0xff,0x1a,0x5f,0x50,0xff,0x28,0x72,0x5e,
0xff,0xd,0x5f,0x51,0xff,0x6,0x4e,0x42,0xff,0xb,0x49,0x3e,0xff,0xc,0x48,0x3d,
0xff,0x12,0x55,0x44,0xff,0x17,0x5e,0x4a,0xff,0x1d,0x6a,0x59,0xff,0x30,0x78,0x61,
0xff,0x1f,0x66,0x52,0xff,0xb,0x59,0x4d,0xff,0x6,0x54,0x46,0xff,0x6,0x63,0x4b,
0xff,0x6,0x66,0x50,0xff,0x11,0x70,0x58,0xff,0x11,0x59,0x49,0xff,0x10,0x40,0x39,
0xff,0x15,0x4a,0x3f,0xff,0x9,0x46,0x3b,0xff,0x11,0x44,0x38,0xff,0x10,0x37,0x2f,
0xff,0x19,0x42,0x34,0xff,0x14,0x41,0x35,0xff,0x11,0x42,0x39,0xff,0xf,0x34,0x31,
0xff,0xc,0x32,0x30,0xff,0x10,0x37,0x32,0xff,0x10,0x36,0x30,0xff,0xd,0x32,0x2c,
0xff,0xe,0x2c,0x29,0xff,0x10,0x34,0x30,0xff,0x16,0x49,0x41,0xff,0x1c,0x5d,0x54,
0xff,0x19,0x62,0x57,0xff,0x15,0x62,0x53,0xff,0xf,0x6d,0x5a,0xff,0x11,0x87,0x6f,
0xff,0x15,0x77,0x5f,0xff,0x1c,0x65,0x4d,0xff,0x28,0x6f,0x53,0xff,0x26,0x65,0x4b,
0xff,0x22,0x60,0x47,0xff,0x2d,0x77,0x60,0xff,0x25,0x72,0x64,0xff,0x20,0x65,0x4f,
0xff,0x20,0x68,0x4e,0xff,0x14,0x64,0x4c,0xff,0x10,0x64,0x4b,0xff,0xa,0x64,0x4a,
0xff,0xd,0x7b,0x65,0xff,0x19,0x8e,0x78,0xff,0xe,0x81,0x64,0xff,0x2b,0x98,0x80,
0xff,0x40,0xaa,0x95,0xff,0x1f,0x96,0x7d,0xff,0x9,0x78,0x5d,0xff,0x9,0x64,0x46,
0xff,0xe,0x59,0x3c,0xff,0x18,0x59,0x42,0xff,0x1a,0x52,0x3e,0xff,0xd,0x33,0x28,
0xff,0x10,0x32,0x26,0xff,0x13,0x37,0x2b,0xff,0x15,0x3a,0x2d,0xff,0x1b,0x3a,0x2d,
0xff,0x1a,0x36,0x29,0xff,0x17,0x30,0x27,0xff,0x17,0x2d,0x26,0xff,0x1f,0x28,0x25,
0xff,0x26,0x24,0x22,0xff,0x24,0x23,0x21,0xff,0x20,0x20,0x20,0xff,0x1c,0x1c,0x1c,
0xff,0xc,0xc,0xc,0xc7,0x1,0x1,0x1,0x10,0x1,0x1,0x1,0x3,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x8,0x11,0x11,0x11,
0x4a,0x2b,0x2b,0x2b,0xf2,0x2b,0x2b,0x2b,0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x24,0x24,0x24,0xff,0x14,0x14,0x14,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x13,0x12,0x12,0xff,0x13,0x16,0x15,0xff,0x10,0x28,0x22,
0xff,0xb,0x2a,0x23,0xff,0xa,0x2d,0x27,0xff,0xf,0x36,0x2f,0xff,0x11,0x3b,0x31,
0xff,0x11,0x3a,0x32,0xff,0x11,0x3b,0x34,0xff,0xe,0x38,0x32,0xff,0x1b,0x46,0x3a,
0xff,0x28,0x52,0x41,0xff,0x2b,0x57,0x42,0xff,0x2a,0x5c,0x43,0xff,0x29,0x5e,0x48,
0xff,0x20,0x54,0x44,0xff,0x1e,0x49,0x3c,0xff,0x1c,0x43,0x39,0xff,0x19,0x44,0x39,
0xff,0x10,0x4d,0x40,0xff,0xa,0x4f,0x45,0xff,0x1e,0x64,0x54,0xff,0x1f,0x73,0x5b,
0xff,0x9,0x66,0x53,0xff,0x9,0x5d,0x4c,0xff,0x7,0x49,0x3d,0xff,0x12,0x4e,0x3f,
0xff,0xf,0x4c,0x3c,0xff,0x17,0x60,0x52,0xff,0x3b,0x88,0x76,0xff,0x2e,0x7f,0x6d,
0xff,0x1c,0x6b,0x5e,0xff,0x6,0x58,0x4c,0xff,0x6,0x5e,0x4a,0xff,0x8,0x6a,0x54,
0xff,0x9,0x77,0x5f,0xff,0xe,0x70,0x5a,0xff,0x1c,0x5c,0x4f,0xff,0x36,0x6d,0x59,
0xff,0x12,0x70,0x5f,0xff,0xe,0x64,0x54,0xff,0x16,0x46,0x3a,0xff,0xf,0x3b,0x31,
0xff,0x14,0x41,0x36,0xff,0x10,0x41,0x38,0xff,0x10,0x39,0x34,0xff,0xe,0x31,0x30,
0xff,0x11,0x37,0x33,0xff,0x12,0x3a,0x35,0xff,0x12,0x39,0x35,0xff,0x15,0x3c,0x36,
0xff,0x23,0x4c,0x47,0xff,0x22,0x58,0x52,0xff,0x1d,0x65,0x5a,0xff,0x19,0x6d,0x5e,
0xff,0x14,0x71,0x5c,0xff,0x10,0x75,0x5b,0xff,0x20,0x9d,0x7e,0xff,0x1c,0xa3,0x83,
0xff,0x18,0x7b,0x61,0xff,0x22,0x68,0x51,0xff,0x25,0x66,0x4e,0xff,0x24,0x63,0x4c,
0xff,0x22,0x63,0x4e,0xff,0x2a,0x7c,0x66,0xff,0x26,0x7c,0x68,0xff,0x16,0x6c,0x57,
0xff,0x12,0x70,0x57,0xff,0x12,0x74,0x5a,0xff,0xd,0x76,0x5a,0xff,0xe,0x7e,0x62,
0xff,0x16,0x81,0x68,0xff,0xe,0x7e,0x65,0xff,0xb,0x87,0x69,0xff,0x1e,0x98,0x81,
0xff,0x1a,0x9b,0x85,0xff,0x6,0x8a,0x6d,0xff,0xa,0x8e,0x6e,0xff,0x14,0x8b,0x68,
0xff,0xb,0x58,0x3b,0xff,0x9,0x46,0x2f,0xff,0xc,0x3a,0x2a,0xff,0xc,0x36,0x28,
0xff,0xb,0x3a,0x2a,0xff,0xd,0x44,0x31,0xff,0xe,0x42,0x2f,0xff,0xe,0x3d,0x2b,
0xff,0x8,0x3f,0x2b,0xff,0xb,0x3f,0x2b,0xff,0x11,0x4e,0x37,0xff,0x18,0x35,0x2b,
0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,0xff,0x1c,0x1c,0x1c,
0xff,0xc,0xc,0xc,0xbb,0x1,0x1,0x1,0x8,0x2,0x2,0x2,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x6,0x15,0x15,0x15,
0x60,0x2b,0x2b,0x2b,0xfa,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,
0xff,0x21,0x21,0x21,0xff,0x13,0x13,0x13,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x13,0x12,0x12,0xff,0x14,0x18,0x16,0xff,0x13,0x29,0x21,
0xff,0x11,0x30,0x28,0xff,0x12,0x37,0x31,0xff,0x12,0x3b,0x33,0xff,0xf,0x3c,0x32,
0xff,0xd,0x3c,0x34,0xff,0xd,0x3d,0x35,0xff,0x13,0x41,0x36,0xff,0x1a,0x4a,0x3a,
0xff,0x1e,0x52,0x3e,0xff,0x22,0x58,0x41,0xff,0x20,0x57,0x40,0xff,0x1b,0x50,0x3d,
0xff,0x18,0x49,0x39,0xff,0x16,0x3e,0x33,0xff,0xd,0x32,0x2c,0xff,0xd,0x34,0x30,
0xff,0x12,0x4a,0x41,0xff,0x14,0x59,0x4d,0xff,0x1f,0x6c,0x58,0xff,0x20,0x7e,0x65,
0xff,0x9,0x69,0x56,0xff,0x5,0x4f,0x42,0xff,0xe,0x49,0x42,0xff,0xf,0x42,0x37,
0xff,0x11,0x51,0x47,0xff,0x34,0x7f,0x74,0xff,0x35,0x84,0x74,0xff,0x2d,0x82,0x71,
0xff,0x16,0x6c,0x60,0xff,0x7,0x61,0x4f,0xff,0xb,0x6e,0x55,0xff,0xc,0x74,0x5d,
0xff,0x8,0x77,0x60,0xff,0xb,0x64,0x56,0xff,0x2a,0x6d,0x5b,0xff,0x20,0x75,0x67,
0xff,0x32,0xb8,0xa4,0xff,0x41,0xa5,0x92,0xff,0x15,0x48,0x40,0xff,0xf,0x3d,0x34,
0xff,0xf,0x44,0x3b,0xff,0x1d,0x4e,0x46,0xff,0x20,0x47,0x42,0xff,0x21,0x47,0x44,
0xff,0x20,0x47,0x42,0xff,0x19,0x43,0x3e,0xff,0x15,0x3c,0x37,0xff,0x17,0x41,0x39,
0xff,0x1e,0x52,0x45,0xff,0x1e,0x60,0x4d,0xff,0x1d,0x6c,0x55,0xff,0x1a,0x78,0x60,
0xff,0x19,0x86,0x6b,0xff,0x15,0x93,0x78,0xff,0x32,0xb7,0x99,0xff,0x19,0x80,0x6b,
0xff,0x1a,0x63,0x50,0xff,0x26,0x65,0x4f,0xff,0x2b,0x6d,0x54,0xff,0x32,0x78,0x62,
0xff,0x29,0x70,0x63,0xff,0x1c,0x7d,0x6c,0xff,0xf,0x87,0x6d,0xff,0xd,0x82,0x67,
0xff,0x1a,0x7d,0x60,0xff,0x16,0x82,0x63,0xff,0x1a,0x99,0x7e,0xff,0x30,0xa9,0x90,
0xff,0x2f,0xa3,0x8c,0xff,0x22,0xa2,0x8f,0xff,0x12,0x9f,0x86,0xff,0x10,0x94,0x77,
0xff,0xb,0x98,0x7c,0xff,0x39,0xb6,0x99,0xff,0x33,0xb0,0x8f,0xff,0x13,0x87,0x6a,
0xff,0xa,0x52,0x36,0xff,0x8,0x4b,0x2f,0xff,0xd,0x46,0x2e,0xff,0xf,0x46,0x2f,
0xff,0x10,0x4c,0x34,0xff,0x11,0x49,0x31,0xff,0x1a,0x45,0x2e,0xff,0x18,0x53,0x38,
0xff,0x8,0x47,0x2e,0xff,0x13,0x51,0x37,0xff,0x14,0x62,0x46,0xff,0x1b,0x35,0x2d,
0xff,0x24,0x24,0x23,0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,0xff,0x1b,0x1b,0x1b,
0xff,0xa,0xa,0xa,0xa5,0x1,0x1,0x1,0x4,0x1,0x1,0x1,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x19,0x19,0x19,
0x7a,0x2d,0x2d,0x2d,0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,
0xff,0x1f,0x1f,0x1f,0xff,0x12,0x12,0x12,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x13,0x12,0x13,0xff,0x17,0x1f,0x1b,0xff,0x1b,0x34,0x2a,
0xff,0x19,0x3a,0x30,0xff,0x17,0x3b,0x33,0xff,0x13,0x3a,0x32,0xff,0x11,0x3a,0x32,
0xff,0x10,0x3c,0x33,0xff,0x16,0x42,0x35,0xff,0x1d,0x4d,0x3b,0xff,0x1d,0x57,0x42,
0xff,0x22,0x61,0x47,0xff,0x22,0x5d,0x46,0xff,0x14,0x54,0x41,0xff,0xb,0x44,0x37,
0xff,0xb,0x37,0x2f,0xff,0x14,0x3d,0x34,0xff,0x16,0x41,0x35,0xff,0x17,0x40,0x34,
0xff,0x15,0x4c,0x3f,0xff,0x6,0x4b,0x40,0xff,0x15,0x65,0x51,0xff,0x21,0x78,0x5f,
0xff,0x6,0x50,0x42,0xff,0x7,0x46,0x3b,0xff,0xd,0x4c,0x3f,0xff,0x8,0x4e,0x3f,
0xff,0x2e,0x7d,0x72,0xff,0x3b,0x8d,0x7f,0xff,0x40,0x98,0x84,0xff,0x36,0x8a,0x77,
0xff,0x17,0x74,0x60,0xff,0x11,0x7c,0x61,0xff,0xb,0x69,0x58,0xff,0x8,0x73,0x5e,
0xff,0x9,0x6a,0x59,0xff,0xd,0x5e,0x51,0xff,0xb,0x4d,0x42,0xff,0x3b,0xa9,0x9c,
0xff,0x92,0xef,0xdc,0xff,0x4b,0x8a,0x81,0xff,0xe,0x39,0x33,0xff,0x13,0x41,0x3b,
0xff,0x22,0x62,0x53,0xff,0x2a,0x5b,0x51,0xff,0x2c,0x56,0x4c,0xff,0x29,0x54,0x49,
0xff,0x24,0x50,0x42,0xff,0x1c,0x4a,0x3b,0xff,0x1c,0x4e,0x3d,0xff,0x23,0x5a,0x47,
0xff,0x25,0x69,0x52,0xff,0x1e,0x6a,0x55,0xff,0x17,0x6f,0x5b,0xff,0x15,0x7f,0x68,
0xff,0x11,0x82,0x6b,0xff,0x15,0x8d,0x77,0xff,0x1f,0x89,0x73,0xff,0x24,0x6a,0x56,
0xff,0x33,0x6e,0x57,0xff,0x35,0x6f,0x56,0xff,0x2f,0x6c,0x56,0xff,0x2e,0x6b,0x5a,
0xff,0x20,0x78,0x64,0xff,0x14,0x98,0x79,0xff,0x1e,0xa5,0x88,0xff,0x2a,0x9e,0x86,
0xff,0x25,0x92,0x76,0xff,0x21,0x9c,0x7b,0xff,0x3d,0xb7,0x9b,0xff,0x42,0xb4,0x98,
0xff,0x34,0xb1,0x98,0xff,0x2b,0xb3,0x9e,0xff,0x2b,0xb3,0x9b,0xff,0x11,0x98,0x7c,
0xff,0x27,0xa8,0x8c,0xff,0x89,0xdb,0xc9,0xff,0x2c,0x8a,0x70,0xff,0x9,0x6c,0x4e,
0xff,0xb,0x61,0x42,0xff,0xb,0x57,0x37,0xff,0xe,0x4e,0x31,0xff,0x16,0x4f,0x31,
0xff,0x18,0x52,0x34,0xff,0x1d,0x4d,0x30,0xff,0x28,0x54,0x34,0xff,0x15,0x5f,0x3d,
0xff,0xc,0x54,0x37,0xff,0x10,0x63,0x42,0xff,0x17,0x6e,0x51,0xff,0x20,0x33,0x2e,
0xff,0x27,0x27,0x27,0xff,0x2e,0x2e,0x2e,0xff,0x35,0x35,0x35,0xff,0x31,0x31,0x31,
0xff,0x11,0x11,0x11,0x89,0x1,0x1,0x1,0x3,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x9,0x1,0x1,0x1,0x8,0x1b,0x1b,0x1b,
0x8c,0x2c,0x2c,0x2c,0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,
0xff,0x1d,0x1d,0x1d,0xff,0x12,0x12,0x12,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x16,0x21,0x1d,0xff,0x17,0x34,0x2a,
0xff,0x16,0x39,0x2f,0xff,0x16,0x3c,0x30,0xff,0x18,0x40,0x35,0xff,0x19,0x42,0x36,
0xff,0x1a,0x46,0x37,0xff,0x1f,0x4e,0x3d,0xff,0x1c,0x5e,0x47,0xff,0x17,0x69,0x4f,
0xff,0x1a,0x69,0x4e,0xff,0x13,0x5f,0x49,0xff,0xb,0x4f,0x3f,0xff,0xc,0x4a,0x3c,
0xff,0x1c,0x43,0x36,0xff,0x26,0x4a,0x3b,0xff,0x20,0x49,0x3a,0xff,0x14,0x3f,0x34,
0xff,0x8,0x43,0x38,0xff,0x7,0x47,0x3c,0xff,0x1d,0x62,0x4c,0xff,0x13,0x56,0x43,
0xff,0x8,0x46,0x3b,0xff,0x12,0x51,0x45,0xff,0x8,0x3c,0x33,0xff,0x26,0x74,0x69,
0xff,0x58,0xaf,0xa3,0xff,0x53,0xaa,0x99,0xff,0x44,0xa4,0x92,0xff,0x23,0x78,0x66,
0xff,0x16,0x75,0x5a,0xff,0xf,0x5f,0x4f,0xff,0x8,0x61,0x58,0xff,0xb,0x7b,0x63,
0xff,0xa,0x62,0x52,0xff,0xb,0x4b,0x40,0xff,0x17,0x68,0x5b,0xff,0x70,0xe3,0xcb,
0xff,0x77,0xc8,0xb4,0xff,0x1b,0x48,0x3e,0xff,0x18,0x43,0x36,0xff,0x24,0x57,0x49,
0xff,0x2b,0x6f,0x58,0xff,0x2b,0x59,0x47,0xff,0x28,0x55,0x44,0xff,0x23,0x53,0x43,
0xff,0x1c,0x4d,0x3f,0xff,0x16,0x4c,0x3e,0xff,0x15,0x4f,0x43,0xff,0x14,0x5d,0x4e,
0xff,0x12,0x68,0x56,0xff,0x11,0x6a,0x59,0xff,0x14,0x78,0x63,0xff,0x13,0x77,0x62,
0xff,0x17,0x72,0x5e,0xff,0x40,0xa2,0x85,0xff,0x3e,0x8a,0x71,0xff,0x2f,0x6d,0x56,
0xff,0x30,0x6c,0x59,0xff,0x2f,0x6b,0x59,0xff,0x34,0x71,0x5a,0xff,0x36,0x73,0x5b,
0xff,0x30,0x80,0x65,0xff,0x22,0x95,0x7a,0xff,0x31,0xa6,0x92,0xff,0x3e,0xad,0x97,
0xff,0x32,0xab,0x8e,0xff,0x42,0xb6,0x99,0xff,0x41,0xb6,0x99,0xff,0x41,0xb6,0x97,
0xff,0x37,0xbb,0x9f,0xff,0x3e,0xc2,0xac,0xff,0x3b,0xbd,0xa8,0xff,0x29,0xaa,0x92,
0xff,0x25,0xa3,0x87,0xff,0x2b,0x8b,0x72,0xff,0x12,0x68,0x4d,0xff,0xe,0x70,0x50,
0xff,0xa,0x6d,0x49,0xff,0xb,0x54,0x36,0xff,0x11,0x50,0x34,0xff,0x11,0x47,0x2d,
0xff,0x14,0x47,0x2e,0xff,0x26,0x56,0x3b,0xff,0x1f,0x5e,0x3e,0xff,0xb,0x60,0x40,
0xff,0x12,0x69,0x48,0xff,0x30,0x95,0x74,0xff,0x45,0x99,0x7d,0xff,0x54,0x5e,0x5b,
0xff,0x5e,0x5e,0x5e,0xff,0x5f,0x5f,0x5f,0xff,0x5e,0x5e,0x5e,0xff,0x47,0x47,0x47,
0xfc,0x14,0x14,0x14,0x75,0x1,0x1,0x1,0x3,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x1,0x1,0x1,0xa,0x21,0x21,0x21,
0x9b,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,
0xff,0x1c,0x1c,0x1c,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x13,0x13,0x13,0xff,0x13,0x14,0x14,0xff,0x13,0x20,0x1c,0xff,0x14,0x34,0x2c,
0xff,0x14,0x3b,0x2e,0xff,0x15,0x40,0x33,0xff,0x16,0x45,0x38,0xff,0x15,0x46,0x38,
0xff,0x15,0x4f,0x3d,0xff,0x16,0x62,0x4b,0xff,0x11,0x79,0x5c,0xff,0xe,0x77,0x59,
0xff,0x8,0x6e,0x53,0xff,0xd,0x5a,0x46,0xff,0x1d,0x55,0x46,0xff,0x23,0x62,0x54,
0xff,0x17,0x3a,0x31,0xff,0xe,0x30,0x2a,0xff,0x9,0x34,0x2e,0xff,0xa,0x36,0x30,
0xff,0xb,0x3d,0x34,0xff,0x12,0x4d,0x3e,0xff,0x1e,0x5e,0x46,0xff,0x17,0x57,0x44,
0xff,0x11,0x4d,0x42,0xff,0xa,0x3f,0x37,0xff,0x22,0x62,0x5c,0xff,0x6f,0xc2,0xb6,
0xff,0x7f,0xcb,0xc1,0xff,0x7c,0xcd,0xbf,0xff,0x48,0xad,0x9d,0xff,0xa,0x69,0x53,
0xff,0xe,0x55,0x44,0xff,0xd,0x4e,0x43,0xff,0x20,0x77,0x60,0xff,0x18,0x77,0x60,
0xff,0xd,0x5a,0x4a,0xff,0x12,0x56,0x45,0xff,0x48,0xb3,0x9b,0xff,0x75,0xd9,0xc0,
0xff,0x35,0x70,0x61,0xff,0x11,0x3d,0x2f,0xff,0x1c,0x4b,0x40,0xff,0x27,0x5e,0x4d,
0xff,0x17,0x5f,0x4f,0xff,0x1b,0x4a,0x3f,0xff,0x20,0x50,0x44,0xff,0x1b,0x51,0x46,
0xff,0x11,0x4b,0x42,0xff,0x11,0x4c,0x43,0xff,0x12,0x59,0x4c,0xff,0x13,0x6a,0x57,
0xff,0x12,0x70,0x5f,0xff,0x19,0x7b,0x65,0xff,0x1d,0x7e,0x67,0xff,0x1d,0x74,0x5d,
0xff,0x27,0x73,0x5a,0xff,0x39,0x83,0x6a,0xff,0x2d,0x6c,0x5d,0xff,0x2b,0x6d,0x5a,
0xff,0x31,0x72,0x5e,0xff,0x39,0x77,0x62,0xff,0x40,0x7a,0x63,0xff,0x38,0x75,0x61,
0xff,0x2c,0x78,0x66,0xff,0x1e,0x83,0x6f,0xff,0x1e,0x96,0x7c,0xff,0x2a,0xab,0x89,
0xff,0x3a,0xb1,0x96,0xff,0x2a,0xa8,0x8b,0xff,0x28,0xab,0x8c,0xff,0x33,0xb4,0x98,
0xff,0x3c,0xbc,0xa3,0xff,0x32,0xbd,0xa6,0xff,0x36,0xba,0xaa,0xff,0x76,0xd7,0xc7,
0xff,0x35,0xa9,0x8e,0xff,0xa,0x6d,0x4f,0xff,0x19,0x7b,0x5d,0xff,0x14,0x90,0x6d,
0xff,0x14,0x7e,0x5a,0xff,0x25,0x76,0x5b,0xff,0x18,0x72,0x56,0xff,0x9,0x58,0x3c,
0xff,0x14,0x5f,0x47,0xff,0x1b,0x6d,0x53,0xff,0xc,0x78,0x55,0xff,0xe,0x7c,0x58,
0xff,0x2f,0x9b,0x76,0xff,0x3d,0xab,0x8a,0xff,0x46,0x91,0x7a,0xff,0x5e,0x62,0x61,
0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,0xff,0x5d,0x5d,0x5d,0xff,0x42,0x42,0x42,
0xf7,0x10,0x10,0x10,0x59,0x1,0x1,0x1,0x4,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x8,0x3,0x3,0x3,0xf,0x26,0x26,0x26,
0xae,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,
0xff,0x1a,0x1a,0x1a,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x10,0x23,0x1f,0xff,0xb,0x3f,0x33,
0xff,0x9,0x4d,0x3d,0xff,0x10,0x46,0x39,0xff,0x12,0x49,0x3c,0xff,0x13,0x54,0x40,
0xff,0x12,0x62,0x4a,0xff,0xb,0x72,0x56,0xff,0x10,0x86,0x67,0xff,0xc,0x82,0x64,
0xff,0xf,0x69,0x52,0xff,0x19,0x4e,0x3f,0xff,0xf,0x45,0x3a,0xff,0xb,0x31,0x2f,
0xff,0xc,0x2b,0x29,0xff,0xd,0x3e,0x33,0xff,0x11,0x3f,0x35,0xff,0xd,0x37,0x30,
0xff,0xe,0x43,0x37,0xff,0x7,0x38,0x2f,0xff,0x27,0x60,0x47,0xff,0x23,0x62,0x53,
0xff,0x9,0x42,0x3a,0xff,0x11,0x4d,0x45,0xff,0x60,0xb6,0xac,0xff,0x91,0xd6,0xcb,
0xff,0x97,0xd8,0xcb,0xff,0x81,0xd2,0xc6,0xff,0x20,0x71,0x66,0xff,0xf,0x46,0x3a,
0xff,0xb,0x38,0x33,0xff,0x22,0x5d,0x4b,0xff,0x30,0x75,0x5a,0xff,0x10,0x5e,0x4f,
0xff,0xd,0x53,0x43,0xff,0x2c,0x81,0x6d,0xff,0x72,0xdc,0xc0,0xff,0x3e,0x9b,0x8c,
0xff,0x17,0x3e,0x33,0xff,0x14,0x48,0x3d,0xff,0x1e,0x61,0x52,0xff,0x23,0x5d,0x4d,
0xff,0x13,0x56,0x49,0xff,0x19,0x54,0x49,0xff,0x1c,0x55,0x4a,0xff,0x16,0x52,0x49,
0xff,0x14,0x4f,0x46,0xff,0x14,0x57,0x4b,0xff,0x15,0x68,0x57,0xff,0x15,0x6d,0x5b,
0xff,0x1c,0x7b,0x65,0xff,0x21,0x7e,0x63,0xff,0x20,0x72,0x5b,0xff,0x19,0x64,0x52,
0xff,0x26,0x6c,0x57,0xff,0x33,0x77,0x63,0xff,0x30,0x73,0x62,0xff,0x38,0x7d,0x67,
0xff,0x36,0x79,0x65,0xff,0x2f,0x72,0x61,0xff,0x2e,0x79,0x69,0xff,0x2c,0x7d,0x6c,
0xff,0x1f,0x79,0x65,0xff,0x17,0x7e,0x64,0xff,0x18,0x93,0x75,0xff,0x26,0xa1,0x85,
0xff,0x1c,0x95,0x78,0xff,0x13,0x9a,0x7a,0xff,0x17,0xa3,0x84,0xff,0x27,0xb0,0x94,
0xff,0x31,0xb3,0x9a,0xff,0x26,0xaa,0x94,0xff,0x36,0xae,0x9a,0xff,0x2e,0xb2,0x99,
0xff,0x19,0x94,0x78,0xff,0x16,0x82,0x66,0xff,0x14,0x89,0x69,0xff,0xf,0x9d,0x77,
0xff,0x20,0x8f,0x6d,0xff,0x23,0x84,0x68,0xff,0xf,0x81,0x5f,0xff,0xc,0x7e,0x59,
0xff,0x10,0x86,0x63,0xff,0xc,0x82,0x5e,0xff,0xc,0x93,0x6c,0xff,0x17,0xa3,0x7c,
0xff,0x29,0xac,0x85,0xff,0x41,0xae,0x8c,0xff,0x44,0x80,0x6d,0xff,0x5d,0x5f,0x5f,
0xff,0x5f,0x5f,0x5f,0xff,0x5e,0x5e,0x5e,0xff,0x5b,0x5b,0x5b,0xff,0x3a,0x3a,0x3a,
0xf1,0xa,0xa,0xa,0x3f,0x2,0x2,0x2,0x4,0x1,0x1,0x1,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4,0x4,0x4,0x17,0x29,0x29,0x29,
0xc5,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,0xff,0x26,0x26,0x26,
0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,
0xff,0x14,0x14,0x14,0xff,0x14,0x15,0x15,0xff,0x11,0x27,0x22,0xff,0xc,0x38,0x2f,
0xff,0xc,0x41,0x36,0xff,0x11,0x4b,0x3c,0xff,0x11,0x5a,0x46,0xff,0xf,0x66,0x4e,
0xff,0xc,0x6d,0x54,0xff,0xc,0x77,0x5a,0xff,0xf,0x7f,0x62,0xff,0x10,0x6f,0x56,
0xff,0x15,0x4d,0x3e,0xff,0xe,0x44,0x38,0xff,0x8,0x40,0x37,0xff,0xf,0x3a,0x32,
0xff,0x13,0x47,0x39,0xff,0x12,0x45,0x38,0xff,0x12,0x3a,0x32,0xff,0x19,0x49,0x3a,
0xff,0xb,0x3f,0x33,0xff,0x9,0x33,0x2c,0xff,0x39,0x6d,0x52,0xff,0x19,0x57,0x4c,
0xff,0x6,0x39,0x34,0xff,0x3a,0x88,0x7e,0xff,0x74,0xcb,0xbe,0xff,0x8e,0xcf,0xc4,
0xff,0x9c,0xe2,0xd2,0xff,0x45,0x99,0x90,0xff,0x8,0x31,0x2c,0xff,0xa,0x2f,0x2b,
0xff,0x16,0x44,0x3e,0xff,0x43,0x79,0x5c,0xff,0x17,0x58,0x49,0xff,0xb,0x63,0x52,
0xff,0xe,0x66,0x54,0xff,0x48,0xad,0x97,0xff,0x70,0xce,0xb8,0xff,0x2b,0x68,0x5a,
0xff,0x19,0x3e,0x31,0xff,0x15,0x51,0x44,0xff,0x27,0x69,0x57,0xff,0x1b,0x55,0x4a,
0xff,0x15,0x58,0x4e,0xff,0x15,0x58,0x4e,0xff,0x16,0x54,0x4c,0xff,0x15,0x54,0x4a,
0xff,0x15,0x53,0x48,0xff,0x17,0x65,0x55,0xff,0x1c,0x76,0x64,0xff,0x27,0x7c,0x6b,
0xff,0x2b,0x7b,0x68,0xff,0x1f,0x6e,0x58,0xff,0x1e,0x68,0x54,0xff,0x24,0x6d,0x5a,
0xff,0x3c,0x84,0x6e,0xff,0x38,0x86,0x6f,0xff,0x30,0x83,0x6c,0xff,0x33,0x84,0x6d,
0xff,0x2b,0x85,0x6d,0xff,0x1f,0x88,0x72,0xff,0x1b,0x87,0x73,0xff,0x1d,0x7f,0x68,
0xff,0x18,0x79,0x5d,0xff,0x18,0x84,0x67,0xff,0x18,0x8b,0x6e,0xff,0x16,0x84,0x68,
0xff,0x15,0x8b,0x6e,0xff,0x16,0x95,0x75,0xff,0x1a,0xa4,0x86,0xff,0x21,0xad,0x93,
0xff,0x27,0xab,0x94,0xff,0x2b,0xa5,0x8e,0xff,0x1f,0x9b,0x80,0xff,0x10,0x9b,0x7b,
0xff,0x10,0x8c,0x6f,0xff,0x11,0x8c,0x70,0xff,0xf,0x8d,0x6c,0xff,0x11,0x86,0x63,
0xff,0x14,0x70,0x50,0xff,0xe,0x6e,0x4c,0xff,0xe,0x80,0x5a,0xff,0xd,0x89,0x61,
0xff,0xf,0x8f,0x65,0xff,0xe,0x8e,0x67,0xff,0xf,0x9b,0x74,0xff,0x10,0xa1,0x7b,
0xff,0x1f,0xa5,0x83,0xff,0x41,0xb2,0x93,0xff,0x4d,0x83,0x73,0xff,0x5d,0x5e,0x5e,
0xff,0x5e,0x5e,0x5e,0xff,0x5d,0x5d,0x5d,0xff,0x59,0x59,0x59,0xff,0x34,0x34,0x34,
0xe8,0x7,0x7,0x7,0x2a,0x2,0x2,0x2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5,0x5,0x5,0x21,0x2b,0x2b,0x2b,
0xda,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x27,0x27,0x27,0xff,0x25,0x25,0x25,
0xff,0x17,0x17,0x17,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,
0xff,0x14,0x14,0x14,0xff,0x15,0x17,0x17,0xff,0x10,0x2e,0x28,0xff,0xf,0x3b,0x30,
0xff,0xf,0x45,0x37,0xff,0xa,0x5c,0x45,0xff,0x5,0x6c,0x52,0xff,0x8,0x73,0x58,
0xff,0x11,0x74,0x58,0xff,0x17,0x74,0x56,0xff,0x18,0x61,0x4c,0xff,0x1a,0x4b,0x3d,
0xff,0x16,0x47,0x3b,0xff,0xa,0x4a,0x3d,0xff,0xc,0x49,0x3b,0xff,0x15,0x50,0x3d,
0xff,0xe,0x42,0x36,0xff,0x1a,0x44,0x36,0xff,0x1e,0x4f,0x3d,0xff,0xe,0x3e,0x33,
0xff,0x7,0x38,0x31,0xff,0xf,0x43,0x3a,0xff,0x36,0x6c,0x60,0xff,0x16,0x4f,0x49,
0xff,0x1f,0x65,0x58,0xff,0x4b,0xab,0x99,0xff,0x6a,0xbf,0xac,0xff,0x8b,0xd8,0xc5,
0xff,0x64,0xc5,0xb7,0xff,0xf,0x45,0x44,0xff,0xa,0x32,0x2c,0xff,0xf,0x40,0x3a,
0xff,0x4e,0x98,0x78,0xff,0x37,0x7b,0x61,0xff,0xf,0x58,0x4a,0xff,0xf,0x71,0x5e,
0xff,0x11,0x87,0x70,0xff,0x45,0xb5,0x97,0xff,0x44,0xa4,0x8d,0xff,0x17,0x42,0x38,
0xff,0x12,0x3f,0x37,0xff,0x1d,0x5d,0x4d,0xff,0x1a,0x59,0x4b,0xff,0x14,0x57,0x4e,
0xff,0x17,0x60,0x57,0xff,0x16,0x5f,0x54,0xff,0x17,0x63,0x56,0xff,0x17,0x61,0x52,
0xff,0x1b,0x64,0x56,0xff,0x26,0x72,0x66,0xff,0x26,0x6f,0x62,0xff,0x32,0x76,0x69,
0xff,0x30,0x74,0x64,0xff,0x26,0x72,0x5e,0xff,0x2f,0x7a,0x65,0xff,0x38,0x82,0x6d,
0xff,0x45,0x98,0x81,0xff,0x2a,0x90,0x76,0xff,0x1f,0x87,0x6f,0xff,0x29,0x8e,0x75,
0xff,0x24,0x9a,0x7c,0xff,0x1c,0x98,0x79,0xff,0x1b,0x93,0x74,0xff,0x1d,0x8e,0x6e,
0xff,0x1f,0x89,0x69,0xff,0x1b,0x80,0x65,0xff,0x1a,0x80,0x66,0xff,0x19,0x86,0x6b,
0xff,0x19,0x89,0x6d,0xff,0x19,0x92,0x73,0xff,0x22,0xa8,0x89,0xff,0x1a,0xa8,0x8d,
0xff,0x21,0xb0,0x99,0xff,0x1e,0xaa,0x90,0xff,0x1b,0xa4,0x88,0xff,0x1a,0xa6,0x86,
0xff,0x1b,0xa1,0x83,0xff,0x26,0x9d,0x84,0xff,0x22,0x98,0x7a,0xff,0x21,0x8e,0x6a,
0xff,0x15,0x66,0x47,0xff,0x11,0x65,0x42,0xff,0xf,0x76,0x50,0xff,0x13,0x80,0x5b,
0xff,0x1f,0x8a,0x66,0xff,0x1a,0x90,0x6c,0xff,0xf,0x8b,0x67,0xff,0x27,0x9e,0x7c,
0xff,0x43,0xb3,0x96,0xff,0x60,0xcc,0xb0,0xff,0x57,0x81,0x75,0xff,0x5d,0x5c,0x5c,
0xff,0x5d,0x5d,0x5d,0xff,0x5c,0x5c,0x5c,0xff,0x56,0x56,0x56,0xff,0x2c,0x2c,0x2c,
0xd9,0x5,0x5,0x5,0x1e,0x2,0x2,0x2,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x7,0x7,0x7,0x29,0x29,0x29,0x29,
0xe4,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x27,0x27,0x27,0xff,0x25,0x25,0x25,
0xff,0x16,0x16,0x16,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,
0xff,0x15,0x14,0x14,0xff,0x15,0x19,0x19,0xff,0xf,0x3c,0x32,0xff,0xe,0x42,0x35,
0xff,0x6,0x4d,0x38,0xff,0x6,0x69,0x4e,0xff,0xc,0x7b,0x5b,0xff,0x12,0x79,0x5b,
0xff,0x13,0x69,0x4f,0xff,0x13,0x52,0x3f,0xff,0x14,0x43,0x38,0xff,0x12,0x48,0x3e,
0xff,0x9,0x3f,0x37,0xff,0x8,0x42,0x37,0xff,0x19,0x52,0x3e,0xff,0x14,0x4a,0x39,
0xff,0x22,0x5b,0x49,0xff,0x20,0x5c,0x49,0xff,0x7,0x46,0x3a,0xff,0x6,0x3f,0x34,
0xff,0xe,0x4b,0x44,0xff,0xe,0x41,0x3a,0xff,0x43,0x7b,0x6b,0xff,0x24,0x65,0x57,
0xff,0x1d,0x72,0x62,0xff,0x33,0x96,0x83,0xff,0x5a,0xae,0x98,0xff,0x65,0xce,0xb5,
0xff,0x20,0x72,0x6b,0xff,0xb,0x36,0x34,0xff,0xb,0x3e,0x38,0xff,0x43,0x86,0x75,
0xff,0x5b,0xae,0x8a,0xff,0x17,0x59,0x49,0xff,0x1a,0x64,0x4f,0xff,0xf,0x74,0x62,
0xff,0x21,0x9e,0x83,0xff,0x3f,0xaf,0x90,0xff,0x1a,0x7c,0x66,0xff,0x13,0x40,0x36,
0xff,0x15,0x4d,0x44,0xff,0x17,0x60,0x50,0xff,0x16,0x57,0x4b,0xff,0x18,0x5f,0x53,
0xff,0x18,0x69,0x5d,0xff,0x1a,0x6f,0x61,0xff,0x1b,0x73,0x62,0xff,0x21,0x6e,0x61,
0xff,0x2e,0x71,0x6b,0xff,0x31,0x6d,0x66,0xff,0x32,0x78,0x69,0xff,0x39,0x84,0x6e,
0xff,0x3b,0x87,0x6d,0xff,0x30,0x88,0x6f,0xff,0x31,0x93,0x7a,0xff,0x29,0x84,0x6f,
0xff,0x23,0x87,0x71,0xff,0x22,0x8c,0x74,0xff,0x29,0x8e,0x74,0xff,0x30,0x96,0x79,
0xff,0x2c,0x97,0x7a,0xff,0x21,0x9e,0x7e,0xff,0x1e,0xa7,0x83,0xff,0x24,0xa5,0x7e,
0xff,0x22,0x8b,0x6b,0xff,0x1c,0x7d,0x63,0xff,0x1d,0x88,0x6e,0xff,0x1c,0x86,0x6b,
0xff,0x1c,0x8d,0x70,0xff,0x1c,0x92,0x73,0xff,0x1a,0x98,0x79,0xff,0x1a,0xa7,0x8a,
0xff,0x1c,0xb0,0x93,0xff,0x20,0xae,0x92,0xff,0x24,0xb1,0x97,0xff,0x21,0xb4,0x98,
0xff,0x2e,0xb3,0x97,0xff,0x59,0xb9,0xa3,0xff,0x57,0xb9,0xa0,0xff,0x1d,0x8a,0x67,
0xff,0x12,0x77,0x54,0xff,0x14,0x86,0x61,0xff,0x15,0x92,0x6b,0xff,0x1a,0x82,0x5c,
0xff,0x16,0x7f,0x5b,0xff,0xe,0x82,0x5c,0xff,0x29,0x98,0x74,0xff,0x51,0xbc,0xa3,
0xff,0x3f,0xc0,0xa1,0xff,0x37,0xb1,0x91,0xff,0x4f,0x70,0x66,0xff,0x5c,0x5c,0x5c,
0xff,0x5c,0x5c,0x5c,0xff,0x5b,0x5b,0x5b,0xff,0x52,0x52,0x52,0xff,0x26,0x26,0x26,
0xc7,0x5,0x5,0x5,0x16,0x2,0x2,0x2,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0xc,0xc,0xc,0x32,0x29,0x29,0x29,
0xeb,0x29,0x29,0x29,0xff,0x28,0x28,0x28,0xff,0x26,0x26,0x26,0xff,0x22,0x22,0x22,
0xff,0x13,0x13,0x13,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,
0xff,0x14,0x14,0x14,0xff,0x13,0x17,0x16,0xff,0xe,0x30,0x27,0xff,0x9,0x48,0x36,
0xff,0x5,0x62,0x46,0xff,0x12,0x74,0x53,0xff,0x17,0x79,0x59,0xff,0xf,0x67,0x4e,
0xff,0x10,0x4f,0x3e,0xff,0xa,0x38,0x30,0xff,0x8,0x40,0x38,0xff,0xc,0x4f,0x42,
0xff,0xa,0x52,0x42,0xff,0x15,0x5c,0x46,0xff,0x1a,0x52,0x3f,0xff,0x22,0x51,0x3f,
0xff,0x1b,0x5e,0x4b,0xff,0x5,0x56,0x48,0xff,0x6,0x45,0x39,0xff,0x14,0x4c,0x42,
0xff,0x19,0x4a,0x40,0xff,0x1d,0x4c,0x40,0xff,0x39,0x73,0x5b,0xff,0x20,0x6f,0x5c,
0xff,0x27,0x84,0x72,0xff,0x35,0x96,0x7e,0xff,0x43,0xa1,0x86,0xff,0x1f,0x83,0x70,
0xff,0xb,0x3f,0x3b,0xff,0x11,0x47,0x3c,0xff,0x28,0x5f,0x54,0xff,0x63,0xa4,0x82,
0xff,0x2c,0x67,0x4f,0xff,0x20,0x5f,0x4b,0xff,0x1a,0x78,0x63,0xff,0x18,0x7a,0x69,
0xff,0x2d,0xab,0x93,0xff,0x1d,0x92,0x78,0xff,0x14,0x69,0x57,0xff,0x17,0x52,0x46,
0xff,0x17,0x67,0x56,0xff,0x17,0x66,0x56,0xff,0x1f,0x7d,0x6b,0xff,0x23,0x8e,0x7a,
0xff,0x1c,0x70,0x60,0xff,0x1b,0x68,0x59,0xff,0x1c,0x61,0x55,0xff,0x27,0x6e,0x66,
0xff,0x2f,0x6e,0x63,0xff,0x42,0x8a,0x73,0xff,0x56,0xab,0x8f,0xff,0x4c,0xa3,0x87,
0xff,0x42,0x9b,0x82,0xff,0x33,0x98,0x7e,0xff,0x2f,0x91,0x7a,0xff,0x2f,0x8b,0x75,
0xff,0x35,0x8d,0x77,0xff,0x32,0x92,0x78,0xff,0x2f,0x99,0x7b,0xff,0x2d,0xa6,0x86,
0xff,0x2a,0xb1,0x90,0xff,0x23,0xb9,0x98,0xff,0x21,0xb1,0x8d,0xff,0x21,0x9e,0x7a,
0xff,0x21,0x83,0x65,0xff,0x21,0x89,0x6e,0xff,0x1e,0x89,0x6e,0xff,0x22,0x91,0x73,
0xff,0x22,0x9f,0x80,0xff,0x1d,0x95,0x76,0xff,0x1d,0x98,0x79,0xff,0x1c,0xa5,0x8b,
0xff,0x21,0xab,0x92,0xff,0x20,0xa2,0x88,0xff,0x1b,0xa1,0x85,0xff,0x20,0xbb,0x9e,
0xff,0x31,0xb1,0x95,0xff,0x81,0xc9,0xb1,0xff,0x3a,0xa8,0x8a,0xff,0x14,0x93,0x6b,
0xff,0x14,0x90,0x69,0xff,0x13,0x9b,0x76,0xff,0x13,0x9f,0x7a,0xff,0x14,0x89,0x65,
0xff,0x13,0x86,0x61,0xff,0x17,0x93,0x6b,0xff,0x2c,0xa8,0x83,0xff,0x31,0xbb,0x9a,
0xff,0x1b,0xab,0x85,0xff,0x1f,0x93,0x70,0xff,0x4e,0x69,0x61,0xff,0x5c,0x5b,0x5b,
0xff,0x5b,0x5b,0x5b,0xff,0x5a,0x5a,0x5a,0xff,0x4d,0x4d,0x4d,0xff,0x20,0x20,0x20,
0xb0,0x3,0x3,0x3,0xd,0x2,0x2,0x2,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6,0x11,0x11,0x11,0x46,0x29,0x29,0x29,
0xf2,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,0xff,0x3f,0x3f,0x3f,
0xff,0x3c,0x3c,0x3c,0xff,0x3a,0x3a,0x3a,0xff,0x35,0x35,0x35,0xff,0x35,0x35,0x35,
0xff,0x34,0x34,0x35,0xff,0x55,0x5a,0x56,0xff,0x22,0x5d,0x49,0xff,0x7,0x64,0x4a,
0xff,0x8,0x6a,0x4e,0xff,0xc,0x66,0x4a,0xff,0xf,0x59,0x43,0xff,0x15,0x57,0x43,
0xff,0xc,0x49,0x3a,0xff,0x4,0x58,0x47,0xff,0xb,0x55,0x42,0xff,0x16,0x57,0x42,
0xff,0x13,0x6f,0x56,0xff,0x25,0x77,0x60,0xff,0x28,0x60,0x4b,0xff,0x10,0x4d,0x3e,
0xff,0x4,0x58,0x4c,0xff,0x5,0x49,0x3d,0xff,0x12,0x4a,0x3e,0xff,0x1d,0x67,0x5a,
0xff,0x17,0x55,0x46,0xff,0x15,0x48,0x3a,0xff,0x3a,0x75,0x70,0xff,0x3a,0x94,0x82,
0xff,0x3a,0x9d,0x84,0xff,0x48,0xa0,0x83,0xff,0x32,0x9d,0x82,0xff,0x14,0x65,0x55,
0xff,0xe,0x3f,0x33,0xff,0x18,0x51,0x48,0xff,0x5b,0x92,0x79,0xff,0x57,0x90,0x6c,
0xff,0x1c,0x5a,0x47,0xff,0x16,0x6f,0x5a,0xff,0x31,0x7b,0x68,0xff,0x54,0xb0,0xa3,
0xff,0x3b,0xac,0xa0,0xff,0x14,0x70,0x63,0xff,0x17,0x5f,0x50,0xff,0x1a,0x73,0x5e,
0xff,0x1c,0x94,0x79,0xff,0x1b,0x7e,0x69,0xff,0x20,0x7b,0x66,0xff,0x1e,0x6f,0x5e,
0xff,0x1d,0x65,0x55,0xff,0x1e,0x66,0x56,0xff,0x24,0x6c,0x5a,0xff,0x38,0x80,0x66,
0xff,0x4a,0x8f,0x6f,0xff,0x52,0x9a,0x7b,0xff,0x46,0x99,0x7c,0xff,0x3c,0x95,0x7d,
0xff,0x43,0x9b,0x84,0xff,0x42,0xa0,0x88,0xff,0x43,0x98,0x7f,0xff,0x45,0x97,0x7c,
0xff,0x46,0x96,0x7a,0xff,0x40,0xa3,0x84,0xff,0x32,0xb6,0x94,0xff,0x2b,0xc6,0xa0,
0xff,0x28,0xcd,0xa6,0xff,0x25,0xc5,0xa0,0xff,0x24,0xad,0x8a,0xff,0x24,0x8f,0x71,
0xff,0x28,0x8a,0x6d,0xff,0x25,0x94,0x76,0xff,0x25,0x92,0x72,0xff,0x26,0x97,0x79,
0xff,0x22,0x9d,0x7d,0xff,0x21,0xa0,0x7d,0xff,0x21,0xaa,0x8a,0xff,0x22,0xa8,0x8f,
0xff,0x23,0xa3,0x8d,0xff,0x1f,0xa5,0x89,0xff,0x1b,0xa3,0x84,0xff,0x29,0xac,0x8b,
0xff,0x82,0xce,0xb1,0xff,0x55,0x9c,0x80,0xff,0x17,0x8f,0x6c,0xff,0x17,0xae,0x87,
0xff,0x16,0x9b,0x72,0xff,0x15,0x8f,0x66,0xff,0x14,0x9d,0x75,0xff,0x14,0x90,0x69,
0xff,0x1e,0x98,0x71,0xff,0x1b,0x99,0x72,0xff,0x19,0x9e,0x78,0xff,0x19,0xa5,0x7b,
0xff,0x16,0x9b,0x72,0xff,0x26,0x8f,0x6e,0xff,0x52,0x66,0x60,0xff,0x5b,0x5a,0x5a,
0xff,0x5a,0x5a,0x5a,0xff,0x59,0x59,0x59,0xff,0x49,0x49,0x49,0xff,0x1b,0x1b,0x1b,
0x98,0x2,0x2,0x2,0x5,0x1,0x1,0x1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x16,0x16,0x16,0x61,0x28,0x28,0x28,
0xf9,0x28,0x28,0x28,0xff,0x27,0x27,0x27,0xff,0x2b,0x2b,0x2b,0xff,0x51,0x51,0x51,
0xff,0x4f,0x4f,0x4f,0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,
0xff,0x4f,0x4f,0x4f,0xff,0x6c,0x79,0x71,0xff,0x1f,0x75,0x5c,0xff,0x8,0x67,0x4d,
0xff,0x2,0x5a,0x43,0xff,0x4,0x50,0x3d,0xff,0xc,0x43,0x34,0xff,0x15,0x48,0x36,
0xff,0x11,0x4f,0x3c,0xff,0x13,0x67,0x4f,0xff,0x1d,0x61,0x4a,0xff,0x17,0x63,0x4d,
0xff,0xe,0x62,0x4e,0xff,0x1a,0x59,0x49,0xff,0xe,0x4c,0x3c,0xff,0x5,0x4b,0x40,
0xff,0x5,0x48,0x3e,0xff,0xb,0x44,0x36,0xff,0xe,0x71,0x5e,0xff,0xa,0x74,0x61,
0xff,0xc,0x55,0x45,0xff,0x18,0x55,0x4b,0xff,0x5f,0xab,0xaf,0xff,0x50,0xb1,0x9b,
0xff,0x55,0xb7,0x98,0xff,0x49,0xa6,0x89,0xff,0x14,0x81,0x6b,0xff,0x11,0x5a,0x48,
0xff,0x25,0x5d,0x55,0xff,0x2d,0x5e,0x51,0xff,0x7a,0xb5,0x91,0xff,0x27,0x69,0x51,
0xff,0x10,0x65,0x4e,0xff,0x2c,0x82,0x6c,0xff,0x3b,0x88,0x7b,0xff,0x95,0xde,0xd2,
0xff,0x46,0xb4,0xa8,0xff,0x19,0x80,0x70,0xff,0x20,0x7d,0x67,0xff,0x20,0x84,0x6c,
0xff,0x1c,0x7d,0x69,0xff,0x1b,0x71,0x5e,0xff,0x1c,0x6b,0x58,0xff,0x21,0x72,0x5e,
0xff,0x28,0x7a,0x62,0xff,0x2b,0x82,0x69,0xff,0x40,0x93,0x76,0xff,0x48,0x9b,0x7d,
0xff,0x3e,0x97,0x7b,0xff,0x3e,0x97,0x7a,0xff,0x3b,0x94,0x79,0xff,0x48,0x9c,0x82,
0xff,0x4c,0x9e,0x83,0xff,0x50,0xa4,0x87,0xff,0x50,0xab,0x8a,0xff,0x4a,0xa3,0x83,
0xff,0x52,0x9f,0x7f,0xff,0x4c,0xb0,0x8e,0xff,0x38,0xbd,0x99,0xff,0x30,0xd1,0xab,
0xff,0x31,0xd5,0xb1,0xff,0x29,0xbb,0x99,0xff,0x28,0x93,0x78,0xff,0x2e,0x87,0x6d,
0xff,0x2c,0x90,0x70,0xff,0x2d,0xac,0x88,0xff,0x2b,0x9c,0x7e,0xff,0x26,0x8e,0x72,
0xff,0x23,0xa0,0x7d,0xff,0x21,0xb7,0x94,0xff,0x27,0xbe,0xa1,0xff,0x25,0xaa,0x92,
0xff,0x20,0x99,0x7e,0xff,0x20,0xb2,0x90,0xff,0x1c,0xa6,0x84,0xff,0x43,0xb4,0x95,
0xff,0x5a,0xa6,0x8c,0xff,0x1f,0x72,0x54,0xff,0x1a,0x8c,0x6c,0xff,0x19,0xb1,0x8f,
0xff,0x18,0x9d,0x78,0xff,0x18,0x9d,0x73,0xff,0x17,0x9e,0x74,0xff,0x1e,0xa1,0x79,
0xff,0x21,0x9f,0x79,0xff,0x15,0x95,0x6f,0xff,0x20,0xa0,0x78,0xff,0x17,0xa8,0x7e,
0xff,0x15,0x9e,0x74,0xff,0x2b,0x8f,0x71,0xff,0x55,0x62,0x5f,0xff,0x5b,0x5a,0x5a,
0xff,0x59,0x59,0x59,0xff,0x58,0x58,0x58,0xff,0x45,0x45,0x45,0xff,0x15,0x15,0x15,
0x81,0x1,0x1,0x1,0x2,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x18,0x18,0x18,0x7a,0x29,0x29,0x29,
0xfd,0x27,0x27,0x27,0xff,0x26,0x26,0x26,0xff,0x2e,0x2e,0x2e,0xff,0x50,0x50,0x50,
0xff,0x4c,0x4c,0x4c,0xff,0x4b,0x4b,0x4b,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4f,0x4d,0x4e,0xff,0x68,0x7e,0x74,0xff,0x11,0x68,0x52,0xff,0x3,0x5b,0x46,
0xff,0x3,0x54,0x42,0xff,0x5,0x53,0x40,0xff,0x11,0x44,0x33,0xff,0xb,0x3c,0x2e,
0xff,0x12,0x53,0x41,0xff,0x1e,0x58,0x44,0xff,0x17,0x4e,0x3e,0xff,0x10,0x4d,0x3b,
0xff,0x11,0x4e,0x40,0xff,0x8,0x44,0x38,0xff,0x5,0x47,0x3b,0xff,0x6,0x3f,0x34,
0xff,0x12,0x4d,0x3f,0xff,0xd,0x64,0x4f,0xff,0x7,0x56,0x47,0xff,0xd,0x61,0x53,
0xff,0xf,0x5b,0x51,0xff,0x24,0x73,0x65,0xff,0x5f,0xb6,0xa6,0xff,0x60,0xbf,0xa5,
0xff,0x56,0xaf,0x92,0xff,0x23,0x93,0x7c,0xff,0xc,0x84,0x6b,0xff,0x19,0x6f,0x5e,
0xff,0x32,0x6c,0x5e,0xff,0x72,0xa9,0x94,0xff,0x65,0xa3,0x97,0xff,0x14,0x57,0x46,
0xff,0x33,0x85,0x6d,0xff,0x27,0x69,0x5c,0xff,0x3b,0x98,0x8c,0xff,0x6f,0xcc,0xba,
0xff,0x2d,0xa1,0x8e,0xff,0x1e,0x7e,0x6c,0xff,0x1d,0x75,0x65,0xff,0x1b,0x6b,0x5b,
0xff,0x1d,0x66,0x56,0xff,0x24,0x6f,0x59,0xff,0x31,0x7b,0x60,0xff,0x37,0x96,0x78,
0xff,0x33,0x95,0x77,0xff,0x3f,0x99,0x7f,0xff,0x47,0xa3,0x89,0xff,0x3d,0x9d,0x82,
0xff,0x4c,0xa7,0x8a,0xff,0x59,0xaf,0x92,0xff,0x55,0xaa,0x8c,0xff,0x59,0xad,0x90,
0xff,0x58,0xae,0x8c,0xff,0x58,0xac,0x88,0xff,0x4f,0xae,0x8a,0xff,0x4e,0xb5,0x92,
0xff,0x59,0xa4,0x81,0xff,0x52,0xaa,0x89,0xff,0x45,0xb7,0x95,0xff,0x33,0xbe,0x9b,
0xff,0x33,0xaf,0x90,0xff,0x31,0x87,0x6d,0xff,0x33,0x7f,0x64,0xff,0x37,0x91,0x72,
0xff,0x39,0x9f,0x7f,0xff,0x34,0x97,0x7a,0xff,0x2b,0x82,0x68,0xff,0x28,0x95,0x73,
0xff,0x29,0xad,0x8a,0xff,0x45,0xd3,0xb5,0xff,0x4e,0xce,0xb3,0xff,0x26,0xa5,0x89,
0xff,0x23,0x9e,0x80,0xff,0x23,0xc3,0x9f,0xff,0x46,0xca,0xa8,0xff,0x44,0xaa,0x87,
0xff,0x2a,0x8c,0x67,0xff,0x30,0x96,0x73,0xff,0x1e,0x90,0x6d,0xff,0x20,0x9d,0x79,
0xff,0x1e,0xa2,0x7d,0xff,0x19,0xa3,0x79,0xff,0x1d,0xaa,0x81,0xff,0x32,0xb4,0x8c,
0xff,0x1d,0x9c,0x74,0xff,0x1b,0xa0,0x76,0xff,0x19,0xaf,0x81,0xff,0x22,0xaf,0x84,
0xff,0x30,0xa7,0x7f,0xff,0x52,0x9e,0x88,0xff,0x59,0x5f,0x5e,0xff,0x5a,0x59,0x59,
0xff,0x59,0x59,0x59,0xff,0x58,0x58,0x58,0xff,0x41,0x41,0x41,0xff,0x12,0x12,0x12,
0x70,0x2,0x2,0x2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x1a,0x1a,0x1a,0x8d,0x29,0x29,0x29,
0xff,0x27,0x27,0x27,0xff,0x25,0x25,0x25,0xff,0x2f,0x2f,0x2f,0xff,0x4f,0x4f,0x4f,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,
0xff,0x50,0x4e,0x4e,0xff,0x63,0x82,0x77,0xff,0xa,0x65,0x50,0xff,0x6,0x54,0x43,
0xff,0x5,0x37,0x2e,0xff,0x10,0x39,0x2c,0xff,0x19,0x4e,0x3b,0xff,0xa,0x48,0x3a,
0xff,0xe,0x50,0x40,0xff,0xa,0x47,0x39,0xff,0xa,0x44,0x37,0xff,0x11,0x52,0x43,
0xff,0x8,0x54,0x46,0xff,0x7,0x54,0x47,0xff,0x4,0x4b,0x3c,0xff,0x1c,0x62,0x51,
0xff,0x22,0x82,0x6b,0xff,0x7,0x5d,0x46,0xff,0xa,0x5a,0x4e,0xff,0x10,0x68,0x60,
0xff,0x26,0x79,0x6a,0xff,0x39,0x94,0x7b,0xff,0x59,0xb4,0x9a,0xff,0x5e,0xba,0x9d,
0xff,0x39,0x93,0x7d,0xff,0x12,0x90,0x78,0xff,0x16,0x82,0x67,0xff,0x19,0x57,0x44,
0xff,0x26,0x64,0x4f,0xff,0x86,0xbf,0xa6,0xff,0x2b,0x70,0x5f,0xff,0x28,0x82,0x6e,
0xff,0x33,0x7b,0x6b,0xff,0x1b,0x6a,0x5e,0xff,0x2c,0xa2,0x90,0xff,0x2f,0xb4,0x9e,
0xff,0x1c,0x83,0x70,0xff,0x1b,0x74,0x63,0xff,0x22,0x7d,0x6a,0xff,0x2a,0x79,0x63,
0xff,0x29,0x88,0x6d,0xff,0x2f,0x86,0x6a,0xff,0x36,0x86,0x6e,0xff,0x2d,0x96,0x7e,
0xff,0x39,0x9d,0x88,0xff,0x4d,0xa7,0x91,0xff,0x4c,0xaa,0x8d,0xff,0x48,0xa5,0x85,
0xff,0x87,0xca,0xb6,0xff,0x70,0xbb,0xa0,0xff,0x5c,0xaf,0x8e,0xff,0x5b,0xaf,0x8c,
0xff,0x54,0xa9,0x85,0xff,0x54,0xa1,0x7f,0xff,0x51,0xae,0x8a,0xff,0x4c,0xd2,0xad,
0xff,0x54,0xaa,0x86,0xff,0x57,0xa5,0x81,0xff,0x49,0xaf,0x8a,0xff,0x32,0x97,0x79,
0xff,0x37,0x7d,0x65,0xff,0x41,0x7c,0x62,0xff,0x43,0x95,0x77,0xff,0x49,0xad,0x8e,
0xff,0x45,0x98,0x7e,0xff,0x37,0x8a,0x70,0xff,0x2d,0xa0,0x7e,0xff,0x2b,0xa8,0x83,
0xff,0x36,0xab,0x8a,0xff,0x72,0xd3,0xba,0xff,0x57,0xc2,0xa8,0xff,0x27,0xa5,0x82,
0xff,0x2a,0xb8,0x96,0xff,0x2c,0xcf,0xac,0xff,0x3a,0xd9,0xb1,0xff,0x50,0xc5,0x9f,
0xff,0x58,0xb2,0x8b,0xff,0x42,0xba,0x96,0xff,0x2b,0x9e,0x79,0xff,0x26,0x99,0x76,
0xff,0x1d,0xa1,0x7c,0xff,0x1a,0xab,0x83,0xff,0x28,0xb9,0x92,0xff,0x42,0xc1,0x9d,
0xff,0x40,0xba,0x97,0xff,0x44,0xbf,0x99,0xff,0x42,0xbf,0x9a,0xff,0x51,0xbe,0x9d,
0xff,0x70,0xc9,0xad,0xff,0x6e,0xa4,0x93,0xff,0x5a,0x5d,0x5c,0xff,0x59,0x59,0x59,
0xff,0x58,0x58,0x58,0xff,0x56,0x56,0x56,0xff,0x3d,0x3d,0x3d,0xf8,0x10,0x10,0x10,
0x60,0x2,0x2,0x2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x20,0x20,0x20,0x9b,0x26,0x26,0x26,
0xff,0x27,0x27,0x27,0xff,0x25,0x25,0x25,0xff,0x32,0x32,0x32,0xff,0x4c,0x4c,0x4c,
0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,
0xff,0x50,0x4f,0x4e,0xff,0x62,0x83,0x79,0xff,0xa,0x5b,0x50,0xff,0x5,0x3b,0x33,
0xff,0x10,0x39,0x2e,0xff,0x25,0x5e,0x49,0xff,0x1e,0x67,0x52,0xff,0xa,0x4d,0x3e,
0xff,0x4,0x41,0x34,0xff,0x8,0x44,0x39,0xff,0xe,0x4b,0x3e,0xff,0x5,0x5c,0x4b,
0xff,0x4,0x71,0x5c,0xff,0x4,0x78,0x61,0xff,0x23,0x74,0x60,0xff,0x26,0x71,0x5c,
0xff,0x9,0x64,0x4c,0xff,0x8,0x68,0x52,0xff,0x7,0x70,0x60,0xff,0x20,0x85,0x76,
0xff,0x41,0x9d,0x85,0xff,0x44,0xa6,0x89,0xff,0x56,0xad,0x8f,0xff,0x4c,0xbe,0xa1,
0xff,0x21,0x7c,0x6a,0xff,0xd,0x80,0x66,0xff,0x16,0x72,0x5a,0xff,0x11,0x4c,0x3e,
0xff,0x56,0x8f,0x71,0xff,0x5d,0xaa,0x8a,0xff,0x26,0x83,0x6c,0xff,0x3c,0x8c,0x77,
0xff,0x1c,0x75,0x65,0xff,0x19,0x83,0x75,0xff,0x3d,0xc0,0xa9,0xff,0x2e,0x9f,0x8e,
0xff,0x1c,0x70,0x5f,0xff,0x2d,0x91,0x77,0xff,0x38,0x98,0x7b,0xff,0x3a,0xa1,0x89,
0xff,0x28,0x98,0x82,0xff,0x25,0x8d,0x7c,0xff,0x2a,0x8a,0x78,0xff,0x33,0x95,0x80,
0xff,0x38,0x95,0x81,0xff,0x45,0xa2,0x89,0xff,0x4e,0xab,0x8e,0xff,0x67,0xb8,0x9d,
0xff,0x99,0xd4,0xc2,0xff,0x69,0xb9,0x9a,0xff,0x61,0xb5,0x92,0xff,0x58,0xaf,0x8e,
0xff,0x55,0xb7,0x98,0xff,0x55,0x9b,0x7c,0xff,0x55,0xb1,0x8f,0xff,0x45,0xd5,0xb1,
0xff,0x50,0xb3,0x8f,0xff,0x5b,0xaf,0x88,0xff,0x41,0xa0,0x7e,0xff,0x34,0x88,0x6f,
0xff,0x3c,0x86,0x6d,0xff,0x47,0x96,0x78,0xff,0x58,0xb6,0x96,0xff,0x55,0xa8,0x8f,
0xff,0x40,0x94,0x7b,0xff,0x35,0xa8,0x87,0xff,0x31,0xc0,0x9e,0xff,0x30,0xac,0x8c,
0xff,0x34,0xb6,0x96,0xff,0x43,0xbe,0xa1,0xff,0x35,0xb0,0x90,0xff,0x2e,0xb8,0x91,
0xff,0x4a,0xc4,0xa4,0xff,0x50,0xc8,0xa5,0xff,0x2b,0xda,0xb4,0xff,0x43,0xc7,0xa1,
0xff,0x41,0xa3,0x7b,0xff,0x3c,0xac,0x87,0xff,0x3e,0xa1,0x7f,0xff,0x25,0x95,0x70,
0xff,0x27,0xa3,0x7f,0xff,0x2f,0xb7,0x93,0xff,0x3f,0xbf,0x9d,0xff,0x5c,0xc8,0xaa,
0xff,0x70,0xcd,0xb2,0xff,0x6a,0xce,0xb1,0xff,0x66,0xc8,0xaa,0xff,0x64,0xc5,0xa8,
0xff,0x6c,0xc6,0xad,0xff,0x6a,0x9e,0x8f,0xff,0x59,0x5c,0x5b,0xff,0x59,0x58,0x58,
0xff,0x58,0x58,0x58,0xff,0x55,0x55,0x55,0xff,0x37,0x37,0x37,0xee,0xe,0xe,0xe,
0x4d,0x2,0x2,0x2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x3,0x2,0x2,0x2,0x9,0x23,0x23,0x23,0xb0,0x25,0x25,0x25,
0xff,0x27,0x27,0x27,0xff,0x24,0x24,0x24,0xff,0x37,0x37,0x37,0xff,0x4b,0x4b,0x4b,
0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,
0xff,0x50,0x50,0x4f,0xff,0x56,0x70,0x69,0xff,0x7,0x44,0x3e,0xff,0x1b,0x53,0x4b,
0xff,0x1b,0x4f,0x3d,0xff,0x11,0x52,0x41,0xff,0x7,0x45,0x3b,0xff,0x5,0x3c,0x33,
0xff,0x5,0x44,0x39,0xff,0x7,0x4e,0x3f,0xff,0x4,0x53,0x42,0xff,0x3,0x6d,0x57,
0xff,0x7,0x6d,0x58,0xff,0x1f,0x6c,0x59,0xff,0x28,0x77,0x5e,0xff,0xb,0x72,0x57,
0xff,0x7,0x7b,0x5f,0xff,0x5,0x63,0x4c,0xff,0xf,0x72,0x5e,0xff,0x47,0xaa,0x91,
0xff,0x54,0xb2,0x96,0xff,0x55,0xae,0x8e,0xff,0x56,0xb1,0x93,0xff,0x38,0xb7,0x9d,
0xff,0x35,0xa3,0x8b,0xff,0x1a,0x83,0x69,0xff,0x15,0x6c,0x55,0xff,0x3a,0x7d,0x62,
0xff,0x5e,0xa0,0x7b,0xff,0x2e,0x82,0x6c,0xff,0x3f,0x7f,0x6d,0xff,0x23,0x78,0x68,
0xff,0x1f,0x76,0x68,0xff,0x2e,0xa6,0x93,0xff,0x57,0xcd,0xb5,0xff,0x2c,0x94,0x81,
0xff,0x28,0x95,0x7a,0xff,0x2a,0xa1,0x84,0xff,0x2c,0x9d,0x88,0xff,0x2b,0x98,0x88,
0xff,0x26,0x97,0x85,0xff,0x29,0x94,0x81,0xff,0x32,0x92,0x7c,0xff,0x37,0x96,0x7d,
0xff,0x42,0xa3,0x8a,0xff,0x59,0xb8,0xa0,0xff,0x67,0xbf,0xa4,0xff,0x7c,0xc9,0xae,
0xff,0x91,0xd2,0xbc,0xff,0x6c,0xc0,0x9e,0xff,0x56,0xaa,0x88,0xff,0x54,0xc4,0xa8,
0xff,0x51,0xb7,0x9a,0xff,0x58,0x99,0x7a,0xff,0x5d,0xaa,0x87,0xff,0x54,0xb7,0x96,
0xff,0x64,0xc2,0xa1,0xff,0x4d,0xa9,0x88,0xff,0x3b,0x9a,0x80,0xff,0x42,0xa3,0x87,
0xff,0x46,0xa2,0x82,0xff,0x5a,0xb2,0x8d,0xff,0x5b,0xab,0x8f,0xff,0x44,0x9b,0x82,
0xff,0x39,0x99,0x7b,0xff,0x3b,0xa2,0x80,0xff,0x34,0xa7,0x84,0xff,0x42,0xac,0x8f,
0xff,0xa3,0xe6,0xd9,0xff,0x64,0xc8,0xaf,0xff,0x31,0xb7,0x8d,0xff,0x55,0xc7,0xa5,
0xff,0x5c,0xc6,0xa9,0xff,0x48,0xc3,0xa1,0xff,0x41,0xd3,0xb2,0xff,0x3e,0xc5,0xa1,
0xff,0x41,0xa6,0x84,0xff,0x5b,0xb7,0x98,0xff,0x5a,0xb1,0x94,0xff,0x59,0xb5,0x99,
0xff,0x62,0xc2,0xa6,0xff,0x63,0xc6,0xaa,0xff,0x66,0xc8,0xac,0xff,0x64,0xc8,0xac,
0xff,0x60,0xc4,0xa7,0xff,0x61,0xc6,0xa8,0xff,0x5e,0xcc,0xad,0xff,0x65,0xcf,0xb5,
0xff,0x6c,0xcf,0xb9,0xff,0x69,0x97,0x8d,0xff,0x59,0x5a,0x5a,0xff,0x58,0x58,0x58,
0xff,0x57,0x57,0x57,0xff,0x52,0x52,0x52,0xff,0x31,0x31,0x31,0xdf,0xa,0xa,0xa,
0x35,0x1,0x1,0x1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x2,0x5,0x5,0x5,0x18,0x24,0x24,0x24,0xc6,0x25,0x25,0x25,
0xff,0x26,0x26,0x26,0xff,0x23,0x23,0x23,0xff,0x3b,0x3b,0x3b,0xff,0x4a,0x4a,0x4a,
0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,
0xff,0x53,0x53,0x52,0xff,0x47,0x6a,0x60,0xff,0x4,0x3b,0x32,0xff,0x10,0x43,0x3b,
0xff,0x7,0x40,0x35,0xff,0x3,0x3e,0x33,0xff,0x4,0x3a,0x31,0xff,0x3,0x3a,0x32,
0xff,0x3,0x4a,0x3d,0xff,0x5,0x68,0x55,0xff,0xc,0x74,0x60,0xff,0x9,0x81,0x69,
0xff,0x40,0x99,0x85,0xff,0x4f,0x91,0x7b,0xff,0x7,0x69,0x4c,0xff,0x10,0x87,0x68,
0xff,0xe,0x83,0x62,0xff,0x14,0x7c,0x62,0xff,0x60,0xb3,0xa0,0xff,0x5f,0xba,0xa1,
0xff,0x57,0xb4,0x98,0xff,0x5f,0xb3,0x97,0xff,0x36,0x9f,0x87,0xff,0x1c,0x8c,0x72,
0xff,0x25,0x8e,0x72,0xff,0x16,0x8b,0x72,0xff,0x1a,0x77,0x65,0xff,0x4f,0x98,0x7c,
0xff,0x37,0x85,0x6b,0xff,0x44,0x8e,0x78,0xff,0x40,0xad,0x95,0xff,0x26,0x93,0x7c,
0xff,0x24,0x90,0x7b,0xff,0x37,0xb7,0x9d,0xff,0x48,0xb7,0x9f,0xff,0x23,0x85,0x6d,
0xff,0x27,0x90,0x73,0xff,0x23,0x8d,0x77,0xff,0x26,0x9b,0x86,0xff,0x28,0xa4,0x8c,
0xff,0x27,0x9f,0x87,0xff,0x31,0x9a,0x81,0xff,0x42,0xa2,0x86,0xff,0x4d,0xa9,0x8e,
0xff,0x67,0xbb,0xa3,0xff,0x88,0xd1,0xba,0xff,0x86,0xd0,0xb5,0xff,0x88,0xcf,0xb6,
0xff,0x7f,0xcf,0xb2,0xff,0x53,0xaf,0x8d,0xff,0x4a,0xaf,0x92,0xff,0x60,0xd0,0xb6,
0xff,0x4b,0xa2,0x84,0xff,0x63,0xa6,0x87,0xff,0x6e,0xab,0x8a,0xff,0x7d,0xc1,0xa6,
0xff,0x6b,0xba,0x9c,0xff,0x47,0xa0,0x7f,0xff,0x47,0xb4,0x96,0xff,0x56,0xb6,0x96,
0xff,0x70,0xc2,0x9f,0xff,0x6b,0xbc,0x9e,0xff,0x54,0xad,0x90,0xff,0x46,0xa3,0x81,
0xff,0x41,0xa4,0x82,0xff,0x46,0xa2,0x82,0xff,0x38,0xa5,0x83,0xff,0x7d,0xd1,0xc3,
0xff,0xd2,0xf3,0xf2,0xff,0x4f,0xbf,0xa1,0xff,0x55,0xc6,0xa5,0xff,0x73,0xcc,0xb7,
0xff,0x58,0xd0,0xb5,0xff,0x5f,0xd4,0xbb,0xff,0x63,0xd2,0xba,0xff,0x63,0xcd,0xb4,
0xff,0x6f,0xc6,0xaf,0xff,0x83,0xcf,0xb7,0xff,0x6b,0xc2,0xa7,0xff,0x6a,0xc7,0xad,
0xff,0x67,0xc7,0xab,0xff,0x77,0xce,0xb4,0xff,0x73,0xca,0xb0,0xff,0x69,0xc9,0xb0,
0xff,0x62,0xc7,0xad,0xff,0x5a,0xc8,0xae,0xff,0x65,0xd7,0xc2,0xff,0x6d,0xdb,0xc6,
0xff,0x7e,0xde,0xce,0xff,0x66,0x8a,0x84,0xff,0x58,0x59,0x59,0xff,0x58,0x58,0x58,
0xff,0x57,0x57,0x57,0xff,0x50,0x50,0x50,0xff,0x29,0x29,0x29,0xd0,0x7,0x7,0x7,
0x22,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x1,0x7,0x7,0x7,0x25,0x26,0x26,0x26,0xd7,0x26,0x26,0x26,
0xff,0x25,0x25,0x25,0xff,0x23,0x23,0x23,0xff,0x3e,0x3e,0x3e,0xff,0x48,0x48,0x48,
0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,
0xff,0x5a,0x5a,0x58,0xff,0x3b,0x6a,0x5e,0xff,0x1,0x3e,0x32,0xff,0x2,0x36,0x2b,
0xff,0x5,0x48,0x39,0xff,0x5,0x40,0x34,0xff,0x3,0x43,0x36,0xff,0x7,0x50,0x3e,
0xff,0x15,0x64,0x53,0xff,0x16,0x76,0x61,0xff,0x10,0x7a,0x67,0xff,0x35,0x95,0x7e,
0xff,0x63,0xab,0x91,0xff,0x19,0x70,0x52,0xff,0x11,0x6e,0x53,0xff,0x18,0x7f,0x5f,
0xff,0xf,0x87,0x66,0xff,0x53,0xba,0xa3,0xff,0x84,0xd3,0xc3,0xff,0x64,0xbd,0xa8,
0xff,0x6e,0xc0,0xa9,0xff,0x3f,0xa6,0x8d,0xff,0x13,0x73,0x5f,0xff,0x2a,0x88,0x6f,
0xff,0x29,0x99,0x81,0xff,0x18,0x98,0x84,0xff,0x34,0x92,0x7c,0xff,0x37,0x88,0x6b,
0xff,0x37,0x9b,0x87,0xff,0x49,0xcd,0xb4,0xff,0x24,0xc5,0xa9,0xff,0x1f,0x9a,0x80,
0xff,0x1d,0x99,0x80,0xff,0x56,0xd2,0xb4,0xff,0x3c,0xa2,0x87,0xff,0x23,0x89,0x6e,
0xff,0x27,0xa1,0x86,0xff,0x2c,0xb8,0x9c,0xff,0x2e,0xc3,0xa6,0xff,0x2b,0xb4,0x99,
0xff,0x36,0xa6,0x8d,0xff,0x45,0xa5,0x8c,0xff,0x52,0xa9,0x8e,0xff,0x61,0xb0,0x96,
0xff,0x84,0xc8,0xac,0xff,0x9a,0xd8,0xba,0xff,0x9e,0xdb,0xbe,0xff,0x9e,0xde,0xc6,
0xff,0x62,0xc8,0xad,0xff,0x3d,0xac,0x8f,0xff,0x51,0xc1,0xa9,0xff,0x54,0xca,0xb0,
0xff,0x4e,0xac,0x8d,0xff,0x6f,0xb5,0x95,0xff,0x77,0xb8,0x96,0xff,0x6e,0xba,0x9a,
0xff,0x4c,0xa0,0x82,0xff,0x44,0x91,0x78,0xff,0x54,0xa8,0x89,0xff,0x70,0xbf,0x9a,
0xff,0x7b,0xc6,0xaa,0xff,0x6a,0xbd,0xa4,0xff,0x5c,0xba,0x9a,0xff,0x5c,0xbd,0x9a,
0xff,0x62,0xcb,0xad,0xff,0x6c,0xcd,0xb4,0xff,0x5e,0xc7,0xb0,0xff,0xa5,0xe7,0xdc,
0xff,0x96,0xd9,0xcb,0xff,0x7b,0xce,0xb5,0xff,0x96,0xdf,0xd0,0xff,0x80,0xdd,0xca,
0xff,0x70,0xda,0xc2,0xff,0x72,0xd9,0xc4,0xff,0x6c,0xd1,0xbd,0xff,0x6a,0xd2,0xba,
0xff,0x7a,0xde,0xc6,0xff,0x84,0xd7,0xc0,0xff,0x6a,0xcc,0xb3,0xff,0x67,0xc6,0xab,
0xff,0x6b,0xc8,0xac,0xff,0x74,0xcf,0xb3,0xff,0x7d,0xcf,0xb5,0xff,0x73,0xcd,0xb6,
0xff,0x71,0xd2,0xbb,0xff,0x78,0xd7,0xc2,0xff,0x7f,0xdf,0xce,0xff,0x7d,0xe3,0xd4,
0xff,0x8f,0xe2,0xd9,0xff,0x62,0x79,0x77,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,
0xff,0x57,0x57,0x57,0xff,0x4e,0x4e,0x4e,0xff,0x25,0x25,0x25,0xc7,0x6,0x6,0x6,
0x1c,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x1,0x8,0x8,0x8,0x31,0x23,0x23,0x23,0xe0,0x25,0x25,0x25,
0xff,0x25,0x25,0x25,0xff,0x23,0x23,0x23,0xff,0x3f,0x3f,0x3f,0xff,0x47,0x47,0x47,
0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,0xff,0x46,0x46,0x46,
0xff,0x60,0x62,0x5f,0xff,0x32,0x68,0x5a,0xff,0x2,0x4f,0x3e,0xff,0x3,0x59,0x43,
0xff,0x3,0x51,0x3d,0xff,0x3,0x45,0x37,0xff,0x3,0x4c,0x3b,0xff,0x13,0x64,0x53,
0xff,0x21,0x72,0x61,0xff,0x18,0x76,0x62,0xff,0x25,0x70,0x5b,0xff,0x3f,0x86,0x6c,
0xff,0x1b,0x73,0x5c,0xff,0xd,0x6d,0x55,0xff,0x14,0x7d,0x63,0xff,0xa,0x8b,0x6f,
0xff,0x15,0x96,0x7b,0xff,0x4f,0xb9,0x9e,0xff,0x4e,0xb8,0x9c,0xff,0x5c,0xba,0xa1,
0xff,0x5e,0xb8,0x9c,0xff,0x27,0x8a,0x71,0xff,0x1a,0x7e,0x67,0xff,0x39,0xbc,0xa2,
0xff,0x26,0xc0,0xac,0xff,0x23,0xad,0x9a,0xff,0x3c,0x9f,0x85,0xff,0x3c,0xae,0x95,
0xff,0x56,0xd0,0xbe,0xff,0x2f,0xc7,0xaf,0xff,0x1b,0x9f,0x83,0xff,0x1f,0x87,0x6c,
0xff,0x27,0x9f,0x81,0xff,0x5f,0xce,0xb1,0xff,0x2e,0xa3,0x8a,0xff,0x2a,0xab,0x91,
0xff,0x2e,0xbb,0xa2,0xff,0x34,0xbf,0xa7,0xff,0x31,0xb6,0xa0,0xff,0x40,0xaf,0x99,
0xff,0x58,0xb4,0x9c,0xff,0x5f,0xb7,0x9b,0xff,0x70,0xbe,0xa6,0xff,0x77,0xc2,0xa8,
0xff,0x7d,0xc6,0xa6,0xff,0x8b,0xd3,0xb2,0xff,0x91,0xda,0xbc,0xff,0x7b,0xd1,0xb5,
0xff,0x45,0xc3,0xa7,0xff,0x4a,0xc6,0xac,0xff,0x5c,0xd6,0xc1,0xff,0x47,0xc6,0xab,
0xff,0x55,0xb6,0x97,0xff,0x75,0xc6,0xa7,0xff,0x77,0xc4,0xa4,0xff,0x63,0xb6,0x96,
0xff,0x53,0x99,0x81,0xff,0x6b,0xaf,0x97,0xff,0x80,0xc6,0xa8,0xff,0x87,0xce,0xb2,
0xff,0x81,0xcc,0xb7,0xff,0x75,0xcf,0xb8,0xff,0x78,0xcd,0xb4,0xff,0xa1,0xe8,0xd7,
0xff,0xaa,0xec,0xdc,0xff,0x88,0xd4,0xc4,0xff,0x7f,0xcf,0xbc,0xff,0x8d,0xdd,0xc5,
0xff,0x85,0xcd,0xb5,0xff,0x9a,0xd8,0xca,0xff,0x82,0xdb,0xcb,0xff,0x75,0xdb,0xc4,
0xff,0x7a,0xde,0xc8,0xff,0x74,0xd9,0xc3,0xff,0x71,0xd0,0xbb,0xff,0x6e,0xd1,0xba,
0xff,0x90,0xe9,0xd4,0xff,0x83,0xdd,0xc8,0xff,0x71,0xd0,0xb8,0xff,0x6e,0xbb,0xa2,
0xff,0x76,0xc8,0xaf,0xff,0x74,0xd2,0xb5,0xff,0x77,0xce,0xaf,0xff,0x7a,0xd0,0xb8,
0xff,0x88,0xde,0xc9,0xff,0x95,0xe1,0xcf,0xff,0x93,0xe1,0xd3,0xff,0x96,0xe7,0xde,
0xff,0x98,0xdd,0xd8,0xff,0x63,0x73,0x72,0xff,0x58,0x57,0x57,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x4d,0x4d,0x4d,0xff,0x25,0x25,0x25,0xbc,0x5,0x5,0x5,
0x15,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x1,0xd,0xd,0xd,0x3b,0x25,0x25,0x25,0xe9,0x24,0x24,0x24,
0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x40,0x40,0x40,0xff,0x45,0x45,0x45,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x45,0x45,0x46,
0xff,0x62,0x66,0x62,0xff,0x29,0x66,0x56,0xff,0x3,0x69,0x50,0xff,0x3,0x68,0x50,
0xff,0x3,0x4b,0x3a,0xff,0x3,0x49,0x3b,0xff,0x3,0x5a,0x4b,0xff,0xb,0x74,0x65,
0xff,0x12,0x7f,0x6d,0xff,0x35,0x82,0x6e,0xff,0x3f,0x9b,0x7e,0xff,0x13,0x62,0x4f,
0xff,0x5,0x6a,0x58,0xff,0x10,0x94,0x7b,0xff,0x11,0x81,0x69,0xff,0x12,0x7d,0x65,
0xff,0x24,0x96,0x7a,0xff,0x3a,0xae,0x8a,0xff,0x45,0xae,0x8b,0xff,0x52,0xb1,0x8d,
0xff,0x3b,0x9f,0x81,0xff,0x11,0x73,0x60,0xff,0x29,0x9b,0x87,0xff,0x41,0xd1,0xbc,
0xff,0x25,0xbc,0xac,0xff,0x20,0xa4,0x94,0xff,0x3c,0xa4,0x8e,0xff,0x5a,0xc1,0xae,
0xff,0x43,0xbd,0xa3,0xff,0x32,0xac,0x8c,0xff,0x24,0x9d,0x7a,0xff,0x2a,0xa0,0x82,
0xff,0x31,0xa1,0x84,0xff,0x39,0xb2,0x98,0xff,0x28,0xa8,0x91,0xff,0x2d,0xad,0x96,
0xff,0x2d,0xb5,0x9f,0xff,0x2c,0xb0,0x9a,0xff,0x44,0xb7,0xa0,0xff,0x5f,0xc0,0xa8,
0xff,0x5f,0xc0,0xa4,0xff,0x65,0xc1,0xa4,0xff,0x8d,0xd2,0xbf,0xff,0x6b,0xc1,0xab,
0xff,0x52,0xbe,0xa2,0xff,0x64,0xc5,0xaa,0xff,0x90,0xdb,0xc2,0xff,0x6c,0xcc,0xb1,
0xff,0x5d,0xd2,0xb7,0xff,0x93,0xe8,0xd8,0xff,0x7d,0xe7,0xd4,0xff,0x65,0xcb,0xb2,
0xff,0x84,0xd6,0xbe,0xff,0x9a,0xdf,0xc9,0xff,0x92,0xd1,0xba,0xff,0x8c,0xc4,0xb1,
0xff,0x8c,0xc5,0xb2,0xff,0x95,0xd1,0xbc,0xff,0x97,0xd5,0xbf,0xff,0x90,0xd5,0xc1,
0xff,0x83,0xd6,0xc1,0xff,0x7d,0xd1,0xba,0xff,0x84,0xcf,0xbb,0xff,0x9e,0xe3,0xd3,
0xff,0x93,0xd9,0xc6,0xff,0x8a,0xcb,0xb8,0xff,0x82,0xd0,0xba,0xff,0x86,0xdb,0xc6,
0xff,0x86,0xd5,0xc2,0xff,0x7e,0xd7,0xc3,0xff,0x7e,0xde,0xc9,0xff,0x80,0xe0,0xcc,
0xff,0x89,0xe4,0xd0,0xff,0x7b,0xd9,0xc3,0xff,0x76,0xd1,0xba,0xff,0x84,0xdc,0xc9,
0xff,0x9f,0xed,0xdc,0xff,0x7e,0xd9,0xc2,0xff,0x7f,0xc1,0xac,0xff,0x6a,0xaa,0x93,
0xff,0x9a,0xdd,0xc9,0xff,0x88,0xde,0xc4,0xff,0x78,0xd4,0xb7,0xff,0x90,0xde,0xc6,
0xff,0x99,0xe0,0xcc,0xff,0x99,0xe0,0xcd,0xff,0x9a,0xe2,0xd4,0xff,0xa0,0xe7,0xe0,
0xff,0x9d,0xd6,0xd2,0xff,0x61,0x6c,0x6b,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x4c,0x4c,0x4c,0xff,0x24,0x24,0x24,0xa6,0x4,0x4,0x4,
0xc,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x10,0x10,0x10,0x4f,0x25,0x25,0x25,0xf3,0x24,0x24,0x24,
0xff,0x23,0x23,0x23,0xff,0x25,0x25,0x25,0xff,0x43,0x43,0x43,0xff,0x43,0x43,0x43,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x45,0x45,0x45,
0xff,0x62,0x69,0x64,0xff,0x21,0x68,0x57,0xff,0x5,0x67,0x51,0xff,0x5,0x54,0x43,
0xff,0x6,0x6c,0x56,0xff,0x8,0x82,0x6a,0xff,0xc,0x8d,0x72,0xff,0x9,0x8f,0x73,
0xff,0x33,0x95,0x82,0xff,0x5a,0xac,0x8f,0xff,0x1b,0x9e,0x7f,0xff,0x16,0x7b,0x62,
0xff,0x20,0x90,0x75,0xff,0x28,0x9d,0x81,0xff,0x1b,0x81,0x67,0xff,0x17,0x83,0x66,
0xff,0x32,0xa5,0x84,0xff,0x3a,0xaa,0x86,0xff,0x3c,0xa4,0x80,0xff,0x45,0xa7,0x86,
0xff,0x22,0x8e,0x76,0xff,0x15,0x8f,0x7d,0xff,0x38,0xb6,0xa4,0xff,0x30,0xb6,0xaa,
0xff,0x1f,0xb5,0xad,0xff,0x3c,0xb9,0xac,0xff,0x61,0xb9,0xa5,0xff,0x3e,0xa8,0x8e,
0xff,0x2b,0x9e,0x7d,0xff,0x25,0xa8,0x84,0xff,0x22,0xbe,0x9f,0xff,0x27,0xb5,0x9a,
0xff,0x4e,0xc2,0xa7,0xff,0x31,0xaa,0x93,0xff,0x2e,0xa6,0x8f,0xff,0x2f,0xad,0x97,
0xff,0x36,0xc4,0xac,0xff,0x4e,0xc6,0xae,0xff,0x6b,0xc7,0xb0,0xff,0x6f,0xc7,0xb1,
0xff,0x73,0xcc,0xb4,0xff,0x76,0xcb,0xb5,0xff,0x7a,0xca,0xb6,0xff,0x69,0xc5,0xb2,
0xff,0x6c,0xc7,0xb6,0xff,0x93,0xd8,0xc7,0xff,0xc2,0xed,0xdf,0xff,0x91,0xdc,0xc7,
0xff,0x91,0xde,0xcb,0xff,0xad,0xf1,0xe4,0xff,0x8a,0xe3,0xd0,0xff,0x84,0xd3,0xbf,
0xff,0xa4,0xe4,0xd2,0xff,0x9e,0xd4,0xc0,0xff,0xa2,0xd9,0xc3,0xff,0x9e,0xdb,0xc9,
0xff,0x8e,0xcd,0xb9,0xff,0x93,0xcc,0xb5,0xff,0x91,0xd0,0xbb,0xff,0x86,0xd1,0xbe,
0xff,0x83,0xd5,0xc0,0xff,0x8c,0xd0,0xbc,0xff,0x89,0xcb,0xb6,0xff,0x8a,0xce,0xb8,
0xff,0x8c,0xd0,0xbc,0xff,0x89,0xdd,0xc8,0xff,0x8b,0xe0,0xce,0xff,0xa3,0xe3,0xd8,
0xff,0x95,0xde,0xcd,0xff,0x8c,0xe1,0xcd,0xff,0x83,0xe2,0xcf,0xff,0x85,0xe4,0xd1,
0xff,0x95,0xe7,0xd3,0xff,0x80,0xdb,0xc6,0xff,0x74,0xd5,0xbf,0xff,0x9d,0xec,0xdc,
0xff,0xa6,0xec,0xdd,0xff,0x7d,0xc0,0xac,0xff,0x6e,0xaa,0x98,0xff,0x75,0xc8,0xb1,
0xff,0x73,0xdb,0xbe,0xff,0x6c,0xd5,0xb9,0xff,0x99,0xe8,0xd4,0xff,0xb2,0xeb,0xdf,
0xff,0x9b,0xdd,0xca,0xff,0x83,0xda,0xc0,0xff,0x9e,0xe6,0xd5,0xff,0xab,0xec,0xe1,
0xff,0x9f,0xca,0xc2,0xff,0x5f,0x63,0x62,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x56,0x56,0x56,0xff,0x46,0x46,0x46,0xfb,0x1d,0x1d,0x1d,0x83,0x2,0x2,0x2,
0x6,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x0,0x15,0x15,0x15,0x68,0x24,0x24,0x24,0xfa,0x24,0x24,0x24,
0xff,0x23,0x23,0x23,0xff,0x27,0x27,0x27,0xff,0x46,0x46,0x46,0xff,0x42,0x42,0x42,
0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,
0xff,0x60,0x72,0x6b,0xff,0x1b,0x7e,0x6b,0xff,0x9,0x73,0x5f,0xff,0x9,0x5e,0x4b,
0xff,0x9,0x79,0x61,0xff,0x11,0x85,0x6b,0xff,0x16,0x7a,0x5f,0xff,0x19,0x75,0x5b,
0xff,0x2a,0x8c,0x75,0xff,0x15,0x85,0x69,0xff,0x1e,0x85,0x6b,0xff,0x25,0x99,0x7e,
0xff,0x26,0x9a,0x7d,0xff,0x19,0x8a,0x6a,0xff,0x12,0x82,0x63,0xff,0x2f,0x9e,0x7b,
0xff,0x48,0xb4,0x8e,0xff,0x47,0xaf,0x8c,0xff,0x4e,0xb0,0x8e,0xff,0x33,0xa8,0x89,
0xff,0x1f,0xa7,0x8e,0xff,0x25,0xaf,0x9e,0xff,0x33,0xbc,0xb0,0xff,0x2e,0xc1,0xbb,
0xff,0x41,0xc5,0xbc,0xff,0x76,0xc7,0xb6,0xff,0x60,0xc6,0xae,0xff,0x31,0xae,0x92,
0xff,0x31,0xad,0x92,0xff,0x36,0xc2,0xa6,0xff,0x45,0xcc,0xb7,0xff,0x5b,0xd2,0xbb,
0xff,0x6f,0xce,0xba,0xff,0x5d,0xba,0xa7,0xff,0x66,0xbd,0xab,0xff,0x6d,0xc1,0xb0,
0xff,0x6f,0xce,0xb9,0xff,0x80,0xcf,0xba,0xff,0x87,0xd1,0xbf,0xff,0x8e,0xd3,0xc2,
0xff,0x8d,0xd8,0xc6,0xff,0x88,0xd5,0xc2,0xff,0x83,0xca,0xb7,0xff,0x84,0xc7,0xb3,
0xff,0x87,0xcb,0xb9,0xff,0xb4,0xe5,0xd6,0xff,0xbb,0xeb,0xdc,0xff,0x87,0xd8,0xc3,
0xff,0x8f,0xd9,0xc8,0xff,0x8a,0xdf,0xcc,0xff,0x81,0xd4,0xc1,0xff,0x8c,0xcd,0xbb,
0xff,0x99,0xcc,0xb8,0xff,0xa1,0xd4,0xbf,0xff,0xb1,0xec,0xdb,0xff,0x9d,0xe2,0xce,
0xff,0x94,0xcf,0xb8,0xff,0x8f,0xc5,0xb0,0xff,0x89,0xc2,0xae,0xff,0x86,0xcc,0xb9,
0xff,0x8b,0xd4,0xc3,0xff,0x99,0xd7,0xc7,0xff,0xa2,0xdd,0xcc,0xff,0x8b,0xd2,0xbe,
0xff,0x82,0xd5,0xc2,0xff,0x8d,0xdc,0xcb,0xff,0xc3,0xec,0xe9,0xff,0xc3,0xed,0xe8,
0xff,0xa3,0xe3,0xd4,0xff,0x96,0xe4,0xd3,0xff,0x7e,0xde,0xcc,0xff,0x93,0xe8,0xd5,
0xff,0x99,0xe9,0xd4,0xff,0x7a,0xdd,0xc8,0xff,0x7a,0xdc,0xc6,0xff,0x8e,0xdf,0xcb,
0xff,0x79,0xc3,0xad,0xff,0x6c,0xbc,0xa7,0xff,0x7c,0xd3,0xbd,0xff,0x77,0xdd,0xc1,
0xff,0x64,0xd1,0xb4,0xff,0x7d,0xd3,0xba,0xff,0x9d,0xe4,0xd3,0xff,0x92,0xdb,0xca,
0xff,0x84,0xd0,0xbb,0xff,0xb2,0xea,0xdb,0xff,0xaf,0xec,0xdf,0xff,0xa7,0xea,0xdd,
0xff,0x93,0xb9,0xaf,0xff,0x5b,0x5d,0x5d,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x56,0x56,0x56,0xff,0x3f,0x3f,0x3f,0xf6,0x15,0x15,0x15,0x63,0x1,0x1,0x1,
0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x17,0x17,0x17,0x7f,0x25,0x25,0x25,0xfc,0x23,0x23,0x23,
0xff,0x22,0x22,0x22,0xff,0x29,0x29,0x29,0xff,0x47,0x47,0x47,0xff,0x42,0x42,0x42,
0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x5b,0x72,0x6b,0xff,0x11,0x69,0x5c,0xff,0x1,0x67,0x5a,0xff,0x2,0x70,0x60,
0xff,0x2,0x71,0x5f,0xff,0x2,0x6e,0x5c,0xff,0x2,0x77,0x63,0xff,0x4,0x95,0x7f,
0xff,0x4,0x9e,0x87,0xff,0x7,0x8c,0x74,0xff,0x20,0x97,0x83,0xff,0x33,0xa6,0x91,
0xff,0x25,0x94,0x79,0xff,0x13,0x86,0x66,0xff,0x2a,0x9c,0x7d,0xff,0x4e,0xb5,0x94,
0xff,0x4e,0xb4,0x94,0xff,0x5d,0xb7,0x9d,0xff,0x5a,0xb9,0x9f,0xff,0x39,0xb8,0x9f,
0xff,0x38,0xc3,0xaf,0xff,0x4b,0xbd,0xaf,0xff,0x4c,0xbb,0xb4,0xff,0x5b,0xcc,0xc5,
0xff,0x83,0xc5,0xb6,0xff,0x82,0xc4,0xb1,0xff,0x5f,0xbc,0xa6,0xff,0x64,0xbf,0xac,
0xff,0x65,0xc5,0xb0,0xff,0x66,0xd1,0xbc,0xff,0x6f,0xd4,0xc3,0xff,0x7b,0xd8,0xc2,
0xff,0x75,0xc2,0xae,0xff,0x7a,0xc6,0xb1,0xff,0x7a,0xc0,0xaf,0xff,0x82,0xc3,0xb1,
0xff,0x80,0xc8,0xb1,0xff,0x7f,0xca,0xb5,0xff,0x86,0xd1,0xbf,0xff,0x8e,0xd6,0xc5,
0xff,0x94,0xe0,0xce,0xff,0x8b,0xda,0xc7,0xff,0x8b,0xd1,0xbc,0xff,0x8b,0xcb,0xb5,
0xff,0x95,0xd2,0xbc,0xff,0xb8,0xe9,0xd7,0xff,0xa4,0xe4,0xd1,0xff,0x88,0xd5,0xc2,
0xff,0x91,0xd4,0xc3,0xff,0x85,0xcd,0xbd,0xff,0x8c,0xcd,0xbb,0xff,0xa0,0xcf,0xbc,
0xff,0xa2,0xd1,0xbb,0xff,0xa8,0xe2,0xd0,0xff,0xa4,0xe5,0xd4,0xff,0x9f,0xd9,0xc5,
0xff,0x8e,0xc8,0xb8,0xff,0x89,0xc4,0xb2,0xff,0x8b,0xc7,0xb4,0xff,0x8f,0xcf,0xbe,
0xff,0x99,0xe2,0xd2,0xff,0x9e,0xe4,0xd3,0xff,0x9c,0xe0,0xcf,0xff,0x93,0xe0,0xcf,
0xff,0x89,0xd6,0xc4,0xff,0xa5,0xdd,0xd0,0xff,0xae,0xed,0xe1,0xff,0x9f,0xe5,0xd5,
0xff,0xad,0xea,0xdc,0xff,0x85,0xdb,0xc9,0xff,0x8a,0xde,0xcc,0xff,0x9a,0xe9,0xd7,
0xff,0x89,0xe6,0xd2,0xff,0x80,0xe5,0xcf,0xff,0x74,0xd9,0xc2,0xff,0x99,0xda,0xcc,
0xff,0x98,0xd7,0xc7,0xff,0x73,0xd6,0xbd,0xff,0x93,0xe0,0xce,0xff,0x88,0xd5,0xc3,
0xff,0x85,0xd4,0xc0,0xff,0x83,0xd4,0xbf,0xff,0x7c,0xd8,0xc2,0xff,0x7a,0xd1,0xba,
0xff,0xb3,0xe7,0xd8,0xff,0xd1,0xf6,0xf0,0xff,0x99,0xe4,0xd3,0xff,0xa9,0xeb,0xdb,
0xff,0x83,0xa9,0xa0,0xff,0x59,0x5b,0x5a,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x55,0x55,0x55,0xff,0x39,0x39,0x39,0xf3,0x10,0x10,0x10,0x53,0x1,0x1,0x1,
0x3,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x1,0x1,0x1,0x4,0x1b,0x1b,0x1b,0x8e,0x22,0x22,0x22,0xfd,0x23,0x23,0x23,
0xff,0x22,0x22,0x22,0xff,0x2a,0x2a,0x2a,0xff,0x47,0x47,0x47,0xff,0x41,0x41,0x41,
0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x47,0x47,0x46,
0xff,0x60,0x79,0x72,0xff,0x2a,0x7e,0x6f,0xff,0x2c,0x89,0x79,0xff,0x2c,0x8f,0x7f,
0xff,0x2c,0x94,0x81,0xff,0x35,0x9a,0x86,0xff,0x37,0xa4,0x92,0xff,0x41,0xb3,0xa1,
0xff,0x48,0xb3,0x9f,0xff,0x46,0xac,0x9a,0xff,0x60,0xbe,0xaf,0xff,0x6a,0xc2,0xb2,
0xff,0x58,0xb2,0x9c,0xff,0x58,0xb2,0x99,0xff,0x6b,0xbe,0xa6,0xff,0x73,0xc2,0xaa,
0xff,0x78,0xc2,0xad,0xff,0x80,0xc5,0xb2,0xff,0x70,0xc5,0xb3,0xff,0x66,0xcb,0xb9,
0xff,0x65,0xc8,0xb6,0xff,0x75,0xcc,0xbc,0xff,0x6d,0xcb,0xbd,0xff,0x6e,0xc3,0xb3,
0xff,0x84,0xc7,0xb0,0xff,0x62,0xbf,0xac,0xff,0x60,0xbc,0xaa,0xff,0x5f,0xc2,0xac,
0xff,0x61,0xcf,0xb8,0xff,0x6d,0xd2,0xbe,0xff,0x80,0xdb,0xc7,0xff,0x90,0xd8,0xc5,
0xff,0x7e,0xbf,0xaa,0xff,0x7f,0xc9,0xb4,0xff,0x85,0xcf,0xba,0xff,0x81,0xc8,0xb2,
0xff,0x7d,0xcc,0xb6,0xff,0x7e,0xd4,0xc0,0xff,0x8a,0xd9,0xc7,0xff,0x94,0xde,0xcc,
0xff,0x93,0xe3,0xd1,0xff,0x82,0xda,0xc7,0xff,0x87,0xd3,0xc0,0xff,0x8c,0xd0,0xbc,
0xff,0x9d,0xdb,0xc7,0xff,0xaf,0xe6,0xd5,0xff,0x9a,0xdf,0xcc,0xff,0xa6,0xe3,0xd6,
0xff,0x97,0xd4,0xc4,0xff,0x90,0xcc,0xb7,0xff,0xb5,0xe5,0xd4,0xff,0xb1,0xe1,0xcf,
0xff,0xa1,0xd8,0xc7,0xff,0x9d,0xd7,0xc8,0xff,0xa2,0xd7,0xc8,0xff,0x92,0xce,0xbf,
0xff,0x8f,0xcf,0xbf,0xff,0x96,0xe2,0xd1,0xff,0x92,0xe2,0xd1,0xff,0x98,0xe6,0xd5,
0xff,0xa9,0xee,0xe2,0xff,0xc3,0xf4,0xec,0xff,0x98,0xe0,0xd2,0xff,0x95,0xde,0xce,
0xff,0xbe,0xeb,0xe1,0xff,0xab,0xef,0xe2,0xff,0x89,0xea,0xd8,0xff,0x92,0xe9,0xd8,
0xff,0x8f,0xe4,0xd3,0xff,0x83,0xda,0xc9,0xff,0x9a,0xe7,0xd4,0xff,0x99,0xe9,0xd8,
0xff,0x91,0xe5,0xd2,0xff,0x84,0xdc,0xc9,0xff,0x80,0xdd,0xcc,0xff,0xb3,0xf1,0xe6,
0xff,0x9e,0xe9,0xd8,0xff,0x84,0xe1,0xcc,0xff,0x92,0xde,0xd0,0xff,0x85,0xd7,0xc3,
0xff,0x8c,0xd9,0xc2,0xff,0x7a,0xcc,0xb5,0xff,0x7d,0xd4,0xbe,0xff,0x93,0xe0,0xcc,
0xff,0xbe,0xf2,0xe4,0xff,0xa1,0xe9,0xd8,0xff,0x97,0xe4,0xcf,0xff,0xa4,0xea,0xd7,
0xff,0x79,0x9c,0x93,0xff,0x59,0x5a,0x5a,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x55,0x55,0x55,0xff,0x36,0x36,0x36,0xef,0xd,0xd,0xd,0x41,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0x1,0x1,0x1,0x9,0x22,0x22,0x22,0x9f,0x21,0x21,0x21,0xfe,0x22,0x22,0x22,
0xff,0x21,0x21,0x21,0xff,0x2d,0x2d,0x2d,0xff,0x46,0x46,0x46,0xff,0x40,0x40,0x40,
0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x49,0x49,0x49,
0xff,0x6b,0x8e,0x84,0xff,0x52,0xa9,0x99,0xff,0x4f,0xa8,0x98,0xff,0x4f,0xa3,0x95,
0xff,0x4f,0xa9,0x96,0xff,0x4f,0xa8,0x94,0xff,0x51,0xb0,0x9f,0xff,0x62,0xc0,0xad,
0xff,0x5c,0xba,0xa3,0xff,0x61,0xbf,0xae,0xff,0x6c,0xc5,0xb5,0xff,0x71,0xc5,0xb4,
0xff,0x64,0xbd,0xa7,0xff,0x73,0xc8,0xb1,0xff,0x76,0xc6,0xaf,0xff,0x71,0xc1,0xab,
0xff,0x81,0xc6,0xb1,0xff,0x78,0xc2,0xae,0xff,0x5e,0xbe,0xaa,0xff,0x60,0xc7,0xb4,
0xff,0x5c,0xb8,0xa4,0xff,0x6a,0xc3,0xae,0xff,0x61,0xd1,0xbd,0xff,0x7c,0xc3,0xac,
0xff,0x77,0xd1,0xbd,0xff,0x60,0xc8,0xb8,0xff,0x61,0xc4,0xb2,0xff,0x5f,0xd5,0xbd,
0xff,0x64,0xdc,0xc2,0xff,0x78,0xd3,0xbe,0xff,0x90,0xe5,0xd1,0xff,0x96,0xd6,0xc4,
0xff,0x89,0xce,0xba,0xff,0x83,0xd0,0xbc,0xff,0x7f,0xca,0xb7,0xff,0x80,0xd2,0xbe,
0xff,0x7e,0xdc,0xc8,0xff,0x7c,0xe0,0xcd,0xff,0x84,0xde,0xcc,0xff,0x92,0xe1,0xd0,
0xff,0x8d,0xe3,0xd3,0xff,0x81,0xd9,0xc7,0xff,0x86,0xd3,0xc0,0xff,0x8a,0xd3,0xc0,
0xff,0x95,0xda,0xc5,0xff,0xa4,0xe0,0xcc,0xff,0x9d,0xdf,0xce,0xff,0xa8,0xe1,0xd2,
0xff,0x99,0xd1,0xbf,0xff,0xa6,0xd9,0xc8,0xff,0xc6,0xf1,0xe8,0xff,0xb8,0xe5,0xdb,
0xff,0xb3,0xe2,0xdb,0xff,0xa6,0xd6,0xcd,0xff,0x95,0xcd,0xc1,0xff,0x93,0xda,0xc9,
0xff,0x95,0xe1,0xd0,0xff,0x99,0xe5,0xd6,0xff,0xa3,0xed,0xe0,0xff,0xa7,0xf1,0xe4,
0xff,0xa7,0xf1,0xe6,0xff,0xa6,0xe9,0xde,0xff,0x90,0xdb,0xca,0xff,0xab,0xe7,0xda,
0xff,0xb1,0xe8,0xdd,0xff,0x94,0xe5,0xd5,0xff,0x97,0xeb,0xdd,0xff,0x8f,0xe5,0xd6,
0xff,0x91,0xe1,0xd0,0xff,0x94,0xe0,0xcf,0xff,0x9b,0xe6,0xd5,0xff,0xa0,0xe7,0xd7,
0xff,0x9b,0xe5,0xd5,0xff,0x84,0xdd,0xcb,0xff,0x9e,0xeb,0xde,0xff,0xd6,0xfe,0xfb,
0xff,0xa6,0xe6,0xd6,0xff,0x8a,0xe1,0xd0,0xff,0x84,0xd2,0xbf,0xff,0x8b,0xc3,0xab,
0xff,0x84,0xc9,0xb2,0xff,0x85,0xdd,0xc8,0xff,0x86,0xdf,0xc9,0xff,0xab,0xeb,0xda,
0xff,0xa8,0xed,0xdc,0xff,0x95,0xe5,0xd0,0xff,0x9f,0xe8,0xd4,0xff,0xa8,0xea,0xd8,
0xff,0x71,0x8e,0x86,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x55,0x55,0x55,0xff,0x35,0x35,0x35,0xea,0xa,0xa,0xa,0x30,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x2,0x2,0x2,0x10,0x27,0x27,0x27,0xbb,0x25,0x25,0x25,0xff,0x24,0x24,0x24,
0xff,0x20,0x20,0x20,0xff,0x33,0x33,0x33,0xff,0x45,0x45,0x45,0xff,0x3f,0x3f,0x3f,
0xff,0x40,0x40,0x40,0xff,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0xff,0x4c,0x4c,0x4b,
0xff,0x69,0x9c,0x90,0xff,0x4f,0xb1,0x9c,0xff,0x4c,0xae,0x9a,0xff,0x4c,0xa8,0x95,
0xff,0x4d,0xaa,0x95,0xff,0x4c,0xac,0x98,0xff,0x56,0xb3,0xa0,0xff,0x62,0xbc,0xa7,
0xff,0x68,0xc2,0xab,0xff,0x69,0xc5,0xaf,0xff,0x77,0xcb,0xbb,0xff,0x78,0xcb,0xbb,
0xff,0x7a,0xce,0xba,0xff,0x83,0xd0,0xb9,0xff,0x7a,0xcb,0xb4,0xff,0x81,0xc9,0xb3,
0xff,0x81,0xc6,0xb2,0xff,0x69,0xbe,0xa9,0xff,0x5e,0xc6,0xb0,0xff,0x59,0xcc,0xb6,
0xff,0x67,0xc3,0xaf,0xff,0x6b,0xda,0xca,0xff,0x6d,0xb4,0xa2,0xff,0x85,0xc9,0xb2,
0xff,0x70,0xdb,0xca,0xff,0x65,0xd2,0xc0,0xff,0x5f,0xd3,0xbb,0xff,0x60,0xda,0xc0,
0xff,0x66,0xd2,0xba,0xff,0x7c,0xd9,0xc3,0xff,0x8e,0xdc,0xc9,0xff,0x8c,0xd0,0xbd,
0xff,0x88,0xd9,0xc6,0xff,0x81,0xd1,0xbf,0xff,0x8a,0xd3,0xc1,0xff,0x8c,0xde,0xca,
0xff,0x90,0xe5,0xd3,0xff,0x84,0xe5,0xd4,0xff,0x85,0xe1,0xce,0xff,0x8e,0xe2,0xd1,
0xff,0x8a,0xe3,0xd3,0xff,0x83,0xdc,0xc9,0xff,0x85,0xd7,0xc3,0xff,0x8d,0xd7,0xc4,
0xff,0x95,0xd7,0xc4,0xff,0x95,0xd7,0xc6,0xff,0xa7,0xe2,0xd8,0xff,0xb9,0xe8,0xe0,
0xff,0xac,0xda,0xd1,0xff,0xb9,0xe5,0xdd,0xff,0xc0,0xec,0xe2,0xff,0xb0,0xe2,0xd5,
0xff,0xa3,0xdd,0xd3,0xff,0x94,0xcf,0xc1,0xff,0x96,0xd5,0xc4,0xff,0x9c,0xdf,0xd0,
0xff,0x9f,0xe1,0xd2,0xff,0xa2,0xe2,0xd6,0xff,0xa0,0xea,0xde,0xff,0xa4,0xf0,0xe3,
0xff,0x9c,0xe9,0xda,0xff,0x91,0xd1,0xc1,0xff,0xa7,0xe0,0xd1,0xff,0xad,0xed,0xdf,
0xff,0x96,0xdc,0xcb,0xff,0x99,0xe2,0xd0,0xff,0x9f,0xe9,0xdb,0xff,0xa1,0xea,0xdb,
0xff,0xaa,0xec,0xdb,0xff,0xae,0xee,0xde,0xff,0xaf,0xef,0xdf,0xff,0xab,0xed,0xde,
0xff,0x91,0xef,0xdc,0xff,0x91,0xde,0xcb,0xff,0x90,0xe0,0xd1,0xff,0xc3,0xfa,0xf0,
0xff,0x9a,0xdb,0xca,0xff,0x96,0xd6,0xc7,0xff,0xa7,0xcd,0xbe,0xff,0x8b,0xcd,0xb9,
0xff,0x7d,0xdb,0xc5,0xff,0x90,0xe6,0xd3,0xff,0xa6,0xe8,0xd6,0xff,0xbc,0xf3,0xe6,
0xff,0xa3,0xeb,0xda,0xff,0x9d,0xe6,0xd3,0xff,0x93,0xe5,0xce,0xff,0x9d,0xe2,0xcf,
0xff,0x6b,0x7e,0x79,0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x52,0x52,0x52,0xff,0x31,0x31,0x31,0xd6,0x7,0x7,0x7,0x1f,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x3,0x3,0x3,0x18,0x28,0x28,0x28,0xd3,0x26,0x26,0x26,0xff,0x26,0x26,0x26,
0xff,0x23,0x23,0x23,0xff,0x39,0x39,0x39,0xff,0x44,0x44,0x44,0xff,0x3f,0x3f,0x3f,
0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,0xff,0x4d,0x50,0x4f,
0xff,0x67,0xae,0x9f,0xff,0x4c,0xbd,0xa5,0xff,0x4b,0xb2,0x9c,0xff,0x4b,0xad,0x97,
0xff,0x4b,0xa8,0x93,0xff,0x4c,0xae,0x9a,0xff,0x59,0xb6,0xa2,0xff,0x66,0xbc,0xa4,
0xff,0x70,0xc4,0xaf,0xff,0x7b,0xce,0xba,0xff,0x80,0xd3,0xc3,0xff,0x7d,0xd1,0xbf,
0xff,0x7e,0xce,0xb7,0xff,0x82,0xce,0xb6,0xff,0x78,0xc7,0xae,0xff,0x87,0xcd,0xb6,
0xff,0x7c,0xc8,0xb4,0xff,0x77,0xcc,0xb6,0xff,0x66,0xd6,0xbe,0xff,0x61,0xd9,0xc3,
0xff,0x71,0xc6,0xb5,0xff,0x77,0xd3,0xc4,0xff,0x92,0xc4,0xab,0xff,0x6c,0xdb,0xc8,
0xff,0x68,0xd7,0xc6,0xff,0x62,0xd8,0xc1,0xff,0x5e,0xd5,0xbc,0xff,0x61,0xcc,0xb4,
0xff,0x6c,0xd2,0xba,0xff,0x79,0xd4,0xbd,0xff,0x8b,0xcd,0xb8,0xff,0x99,0xe0,0xd0,
0xff,0x98,0xe4,0xd3,0xff,0x90,0xdf,0xce,0xff,0x94,0xe1,0xce,0xff,0x9c,0xe3,0xd1,
0xff,0x9b,0xe7,0xd5,0xff,0x8f,0xe8,0xd5,0xff,0x84,0xe3,0xd0,0xff,0x82,0xe2,0xd0,
0xff,0x8a,0xe4,0xd3,0xff,0x8b,0xe0,0xcf,0xff,0x92,0xd9,0xcb,0xff,0x9a,0xd9,0xcc,
0xff,0xa0,0xdb,0xce,0xff,0xac,0xe3,0xd9,0xff,0xb8,0xea,0xe5,0xff,0xb1,0xe3,0xdb,
0xff,0xa9,0xdb,0xcf,0xff,0xb2,0xe7,0xd9,0xff,0xaf,0xe9,0xd8,0xff,0xab,0xe0,0xcf,
0xff,0x98,0xcf,0xc1,0xff,0x95,0xd3,0xc3,0xff,0x99,0xdb,0xcc,0xff,0x9e,0xe2,0xd5,
0xff,0x9e,0xe4,0xda,0xff,0x9c,0xe7,0xde,0xff,0xa8,0xee,0xe3,0xff,0xa0,0xe6,0xda,
0xff,0x9f,0xde,0xd1,0xff,0xb3,0xe3,0xd5,0xff,0xbd,0xf2,0xe5,0xff,0xa5,0xeb,0xde,
0xff,0x96,0xe3,0xd4,0xff,0xa6,0xec,0xdc,0xff,0xa7,0xf0,0xe4,0xff,0xa3,0xf3,0xe4,
0xff,0xaf,0xf3,0xe4,0xff,0xbe,0xf4,0xe8,0xff,0xb1,0xe9,0xdf,0xff,0xa0,0xea,0xdb,
0xff,0xa0,0xe6,0xd4,0xff,0x99,0xd3,0xc6,0xff,0xcb,0xf7,0xf1,0xff,0xaf,0xda,0xcc,
0xff,0x98,0xd7,0xc9,0xff,0xb4,0xec,0xdf,0xff,0x9d,0xde,0xce,0xff,0x7c,0xd4,0xbf,
0xff,0x9c,0xe7,0xd6,0xff,0x98,0xe6,0xd4,0xff,0xb1,0xee,0xde,0xff,0xa7,0xeb,0xdb,
0xff,0x9f,0xe6,0xd3,0xff,0xa1,0xe6,0xd3,0xff,0xb9,0xed,0xe0,0xff,0xb2,0xe1,0xd7,
0xff,0x63,0x72,0x6e,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,
0xff,0x4e,0x4e,0x4e,0xff,0x27,0x27,0x27,0xbb,0x5,0x5,0x5,0x16,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x5,0x5,0x5,0x1f,0x26,0x26,0x26,0xe3,0x25,0x25,0x25,0xff,0x25,0x25,0x25,
0xff,0x23,0x23,0x23,0xff,0x3f,0x3f,0x3f,0xff,0x42,0x42,0x42,0xff,0x3e,0x3e,0x3e,
0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x4f,0x53,0x52,
0xff,0x67,0xb8,0xa6,0xff,0x4a,0xc6,0xa9,0xff,0x4a,0xc0,0xa1,0xff,0x4a,0xbd,0xa0,
0xff,0x4a,0xb6,0xa1,0xff,0x4b,0xb3,0x9d,0xff,0x59,0xb9,0xa1,0xff,0x65,0xbe,0xa4,
0xff,0x6f,0xc5,0xae,0xff,0x7b,0xcf,0xb9,0xff,0x8a,0xd9,0xc6,0xff,0x7a,0xd1,0xbb,
0xff,0x7c,0xcb,0xb4,0xff,0x7b,0xc8,0xb0,0xff,0x82,0xca,0xb2,0xff,0x86,0xcf,0xb9,
0xff,0x7c,0xce,0xba,0xff,0x91,0xe0,0xcd,0xff,0x6a,0xde,0xc6,0xff,0x6e,0xd1,0xbe,
0xff,0x77,0xc1,0xb2,0xff,0x8f,0xcf,0xb9,0xff,0x81,0xd3,0xba,0xff,0x5b,0xda,0xca,
0xff,0x5d,0xce,0xb8,0xff,0x5d,0xd2,0xb9,0xff,0x60,0xd0,0xb8,0xff,0x63,0xd0,0xb9,
0xff,0x67,0xd2,0xbc,0xff,0x75,0xc5,0xad,0xff,0x91,0xd0,0xbf,0xff,0x97,0xea,0xdb,
0xff,0x9d,0xe6,0xd7,0xff,0x8c,0xd9,0xc7,0xff,0x95,0xde,0xcb,0xff,0x9c,0xe4,0xd0,
0xff,0x9b,0xe7,0xd4,0xff,0x97,0xeb,0xd9,0xff,0x88,0xe5,0xd4,0xff,0x8d,0xe7,0xd7,
0xff,0x91,0xdf,0xd1,0xff,0x8e,0xcc,0xc1,0xff,0x9c,0xd7,0xcb,0xff,0xac,0xe7,0xd9,
0xff,0xa9,0xe7,0xd8,0xff,0x9e,0xde,0xcf,0xff,0x99,0xdd,0xce,0xff,0x9d,0xd7,0xc7,
0xff,0xb0,0xe4,0xd2,0xff,0xb3,0xea,0xda,0xff,0xac,0xe2,0xd2,0xff,0x9f,0xd7,0xc6,
0xff,0x9c,0xdb,0xce,0xff,0x9b,0xe2,0xd4,0xff,0x9a,0xe1,0xd5,0xff,0x99,0xe2,0xd9,
0xff,0x9e,0xe7,0xe0,0xff,0xab,0xeb,0xe4,0xff,0xa4,0xe3,0xd5,0xff,0xa3,0xdf,0xd2,
0xff,0xc3,0xed,0xe6,0xff,0xbf,0xf4,0xe9,0xff,0xac,0xf1,0xe3,0xff,0x9e,0xe8,0xda,
0xff,0xab,0xed,0xde,0xff,0xb1,0xf0,0xe2,0xff,0xa3,0xec,0xde,0xff,0x9e,0xee,0xdf,
0xff,0xa8,0xf0,0xe2,0xff,0xa8,0xec,0xe0,0xff,0x9c,0xe1,0xd2,0xff,0xaf,0xe9,0xda,
0xff,0x98,0xd3,0xc5,0xff,0xa7,0xe5,0xda,0xff,0xf2,0xfc,0xfd,0xff,0xb5,0xdc,0xd5,
0xff,0xb4,0xe8,0xe2,0xff,0xb9,0xf1,0xe6,0xff,0x8a,0xde,0xcc,0xff,0x9b,0xe4,0xd3,
0xff,0xa8,0xeb,0xdc,0xff,0xa0,0xe9,0xd8,0xff,0xa3,0xeb,0xda,0xff,0x8b,0xe0,0xcb,
0xff,0x91,0xe2,0xcd,0xff,0xae,0xec,0xdb,0xff,0xda,0xf7,0xed,0xff,0xaa,0xdb,0xd1,
0xff,0x5f,0x6b,0x69,0xff,0x58,0x57,0x58,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,
0xff,0x4b,0x4b,0x4b,0xff,0x20,0x20,0x20,0xa6,0x4,0x4,0x4,0xf,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x8,0x8,0x8,0x24,0x25,0x25,0x25,0xe9,0x25,0x25,0x25,0xff,0x24,0x24,0x24,
0xff,0x23,0x23,0x23,0xff,0x48,0x48,0x48,0xff,0x42,0x42,0x42,0xff,0x3e,0x3e,0x3e,
0xff,0x3f,0x3f,0x3f,0xff,0x41,0x41,0x41,0xff,0x41,0x40,0x40,0xff,0x50,0x56,0x55,
0xff,0x62,0xbc,0xa9,0xff,0x48,0xbf,0xa3,0xff,0x48,0xbf,0x9f,0xff,0x49,0xc5,0xa7,
0xff,0x48,0xc5,0xae,0xff,0x4b,0xbe,0xa4,0xff,0x57,0xbe,0xa0,0xff,0x68,0xc3,0xa7,
0xff,0x6f,0xc8,0xac,0xff,0x77,0xd0,0xb7,0xff,0x7d,0xd9,0xc0,0xff,0x76,0xd0,0xba,
0xff,0x7b,0xca,0xb1,0xff,0x78,0xc5,0xac,0xff,0x7c,0xca,0xb4,0xff,0x77,0xcd,0xb8,
0xff,0x6f,0xd2,0xbe,0xff,0x76,0xda,0xc5,0xff,0x75,0xdc,0xc5,0xff,0x73,0xb6,0xa7,
0xff,0x82,0xb9,0xa9,0xff,0x8a,0xd1,0xb9,0xff,0x66,0xda,0xc8,0xff,0x5d,0xcf,0xba,
0xff,0x5d,0xcd,0xb3,0xff,0x5f,0xd1,0xb8,0xff,0x62,0xce,0xb8,0xff,0x60,0xd3,0xbd,
0xff,0x68,0xce,0xb7,0xff,0x87,0xc4,0xac,0xff,0x79,0xe0,0xca,0xff,0x86,0xe2,0xce,
0xff,0x8c,0xdd,0xcb,0xff,0x8d,0xdf,0xcc,0xff,0x9b,0xe1,0xce,0xff,0x9f,0xe0,0xcd,
0xff,0xa1,0xe8,0xd8,0xff,0xa1,0xec,0xdd,0xff,0x96,0xe1,0xd3,0xff,0x8b,0xd6,0xc7,
0xff,0x8c,0xd4,0xc4,0xff,0x9b,0xd8,0xc8,0xff,0xab,0xea,0xd9,0xff,0x9f,0xe7,0xd5,
0xff,0x93,0xde,0xcd,0xff,0x97,0xdc,0xcd,0xff,0x94,0xdd,0xcb,0xff,0xa8,0xdf,0xce,
0xff,0xaf,0xe3,0xd3,0xff,0xad,0xe4,0xd5,0xff,0xa6,0xe1,0xd2,0xff,0x9e,0xe7,0xd9,
0xff,0x9f,0xeb,0xde,0xff,0xa4,0xea,0xdd,0xff,0xa3,0xe7,0xdb,0xff,0xa7,0xe8,0xe0,
0xff,0xac,0xe7,0xde,0xff,0xa3,0xe2,0xd5,0xff,0xa8,0xe6,0xdb,0xff,0xc1,0xef,0xe6,
0xff,0xc7,0xf4,0xe9,0xff,0xad,0xf1,0xe3,0xff,0xa2,0xea,0xdb,0xff,0xa5,0xeb,0xdd,
0xff,0xac,0xed,0xdf,0xff,0xa8,0xe8,0xd9,0xff,0xa3,0xe6,0xd7,0xff,0x97,0xea,0xda,
0xff,0x9d,0xee,0xe0,0xff,0xac,0xf0,0xe1,0xff,0xb6,0xef,0xdf,0xff,0xa3,0xdb,0xcf,
0xff,0xa8,0xe5,0xd8,0xff,0xd6,0xf8,0xf5,0xff,0xda,0xf2,0xf0,0xff,0xa0,0xdf,0xd1,
0xff,0xb3,0xec,0xdf,0xff,0xa4,0xe9,0xdb,0xff,0xa8,0xec,0xdd,0xff,0xb3,0xf0,0xe3,
0xff,0xa5,0xea,0xda,0xff,0xa1,0xe8,0xd8,0xff,0x95,0xe5,0xd1,0xff,0x8c,0xe5,0xcf,
0xff,0x98,0xe7,0xd3,0xff,0xaa,0xe7,0xd4,0xff,0xac,0xeb,0xd8,0xff,0x96,0xca,0xbe,
0xff,0x5a,0x61,0x5f,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,
0xff,0x47,0x47,0x47,0xff,0x1a,0x1a,0x1a,0x90,0x2,0x2,0x2,0x5,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xe,0xe,0xe,0x35,0x23,0x23,0x23,0xee,0x24,0x24,0x24,0xff,0x24,0x24,0x24,
0xff,0x25,0x25,0x25,0xff,0x48,0x48,0x48,0xff,0x40,0x40,0x40,0xff,0x3e,0x3e,0x3e,
0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x54,0x5d,0x5a,
0xff,0x5a,0xb4,0xa1,0xff,0x46,0xb4,0x9c,0xff,0x47,0xb6,0x9f,0xff,0x47,0xb5,0xa0,
0xff,0x47,0xb9,0xa3,0xff,0x46,0xbd,0xa4,0xff,0x50,0xbe,0xa4,0xff,0x66,0xc5,0xad,
0xff,0x6c,0xc7,0xae,0xff,0x72,0xd1,0xb6,0xff,0x6f,0xd3,0xbb,0xff,0x78,0xcf,0xb9,
0xff,0x79,0xc9,0xb0,0xff,0x77,0xc8,0xb0,0xff,0x62,0xc2,0xad,0xff,0x53,0xbf,0xa7,
0xff,0x60,0xc8,0xb1,0xff,0x7e,0xd6,0xc0,0xff,0x78,0xd5,0xc2,0xff,0x73,0xb6,0xa6,
0xff,0x87,0xca,0xb5,0xff,0x87,0xd8,0xc4,0xff,0x64,0xd2,0xc2,0xff,0x5c,0xc7,0xaf,
0xff,0x63,0xd1,0xb8,0xff,0x63,0xd2,0xb8,0xff,0x5e,0xd2,0xb9,0xff,0x5f,0xdb,0xc6,
0xff,0x7b,0xd4,0xbc,0xff,0x83,0xd5,0xbd,0xff,0x69,0xe2,0xcc,0xff,0x7c,0xdb,0xc7,
0xff,0x86,0xd8,0xc4,0xff,0x94,0xe5,0xd2,0xff,0x9e,0xe3,0xd1,0xff,0xa7,0xe4,0xd4,
0xff,0x98,0xe3,0xd3,0xff,0x8b,0xd4,0xc5,0xff,0x86,0xd2,0xc1,0xff,0x8d,0xe1,0xcf,
0xff,0x96,0xea,0xd8,0xff,0x99,0xe7,0xd4,0xff,0x91,0xe5,0xd2,0xff,0x8e,0xe4,0xd1,
0xff,0x9f,0xe3,0xd6,0xff,0xad,0xe7,0xdf,0xff,0x99,0xda,0xc9,0xff,0x9f,0xd6,0xc8,
0xff,0xa2,0xdc,0xce,0xff,0xab,0xeb,0xde,0xff,0xaa,0xf0,0xe3,0xff,0xab,0xf1,0xe5,
0xff,0xb9,0xf1,0xe5,0xff,0xbe,0xf0,0xe6,0xff,0xb6,0xee,0xe3,0xff,0xae,0xe3,0xd9,
0xff,0xa2,0xdf,0xd1,0xff,0xab,0xed,0xe0,0xff,0xc0,0xf3,0xe9,0xff,0xc1,0xf1,0xe6,
0xff,0xad,0xed,0xdf,0xff,0xac,0xee,0xdf,0xff,0xac,0xee,0xdf,0xff,0xa9,0xed,0xdf,
0xff,0xab,0xec,0xdf,0xff,0xae,0xeb,0xde,0xff,0xa0,0xeb,0xdc,0xff,0x9d,0xf0,0xe2,
0xff,0xaf,0xf2,0xe4,0xff,0xc4,0xf5,0xe8,0xff,0xae,0xe2,0xd4,0xff,0xa5,0xdf,0xd2,
0xff,0xc4,0xf5,0xe9,0xff,0xc7,0xf1,0xea,0xff,0xab,0xdf,0xd6,0xff,0xac,0xdf,0xd5,
0xff,0xa6,0xeb,0xdc,0xff,0xab,0xf0,0xe1,0xff,0xad,0xee,0xe1,0xff,0x9c,0xe6,0xd4,
0xff,0x9f,0xe6,0xd4,0xff,0xa1,0xe9,0xd9,0xff,0x8b,0xe7,0xd3,0xff,0x8a,0xe6,0xd1,
0xff,0xa1,0xe4,0xce,0xff,0xa4,0xe0,0xcd,0xff,0xa7,0xe9,0xd9,0xff,0x83,0xaf,0xa6,
0xff,0x54,0x58,0x57,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,
0xff,0x46,0x46,0x46,0xff,0x14,0x14,0x14,0x7a,0x1,0x1,0x1,0x2,0x1,0x1,0x1,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x13,0x13,0x13,0x56,0x25,0x25,0x25,0xf7,0x24,0x24,0x24,0xff,0x23,0x23,0x23,
0xff,0x28,0x28,0x28,0xff,0x48,0x48,0x48,0xff,0x3e,0x3e,0x3e,0xff,0x3d,0x3d,0x3d,
0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x40,0x3f,0x3f,0xff,0x5b,0x69,0x64,
0xff,0x52,0xaf,0x99,0xff,0x45,0xac,0x95,0xff,0x45,0xb0,0x9c,0xff,0x45,0xb5,0x9f,
0xff,0x47,0xbc,0xa6,0xff,0x52,0xc3,0xaf,0xff,0x5c,0xc5,0xb1,0xff,0x69,0xc8,0xb3,
0xff,0x69,0xca,0xb3,0xff,0x67,0xcc,0xb2,0xff,0x6c,0xcb,0xb5,0xff,0x77,0xcb,0xb4,
0xff,0x73,0xc8,0xb0,0xff,0x59,0xc1,0xaa,0xff,0x4b,0xbd,0xa5,0xff,0x59,0xc0,0xa6,
0xff,0x78,0xcb,0xb6,0xff,0x7d,0xd5,0xc1,0xff,0x73,0xd2,0xc1,0xff,0x81,0xdc,0xcc,
0xff,0x7a,0xd2,0xbd,0xff,0x6e,0xd4,0xc2,0xff,0x58,0xc3,0xad,0xff,0x5b,0xc7,0xaf,
0xff,0x6d,0xd6,0xbe,0xff,0x6a,0xd8,0xc0,0xff,0x6b,0xde,0xc7,0xff,0x69,0xdc,0xc7,
0xff,0x8d,0xd8,0xbf,0xff,0x78,0xe8,0xd2,0xff,0x67,0xde,0xc7,0xff,0x80,0xda,0xc6,
0xff,0x99,0xe0,0xcc,0xff,0x97,0xe0,0xcd,0xff,0x99,0xdf,0xcc,0xff,0x91,0xdb,0xc9,
0xff,0x85,0xd6,0xc5,0xff,0x87,0xdf,0xcd,0xff,0x85,0xeb,0xd9,0xff,0x8b,0xe9,0xd8,
0xff,0x8b,0xe3,0xd0,0xff,0x8d,0xe4,0xd1,0xff,0x93,0xe6,0xd4,0xff,0x96,0xde,0xcd,
0xff,0x9f,0xdb,0xcd,0xff,0x9c,0xe2,0xd2,0xff,0x9d,0xe2,0xd2,0xff,0x9c,0xd8,0xcb,
0xff,0xa0,0xe1,0xd3,0xff,0xa8,0xef,0xe2,0xff,0xb1,0xf0,0xe5,0xff,0xc3,0xf2,0xe8,
0xff,0xcd,0xf5,0xeb,0xff,0xc6,0xf2,0xe7,0xff,0xb1,0xe3,0xd7,0xff,0xa6,0xe0,0xd2,
0xff,0xb3,0xf0,0xe3,0xff,0xc1,0xf4,0xe8,0xff,0xc7,0xf3,0xe8,0xff,0xb4,0xeb,0xdf,
0xff,0xb2,0xee,0xe0,0xff,0xbe,0xf5,0xe8,0xff,0xb8,0xf4,0xe9,0xff,0xb4,0xf2,0xe7,
0xff,0xb1,0xee,0xe1,0xff,0xa5,0xe9,0xdc,0xff,0xa8,0xf1,0xe3,0xff,0xb1,0xf2,0xe4,
0xff,0xc5,0xf6,0xea,0xff,0xb7,0xe8,0xdb,0xff,0xa4,0xdb,0xcd,0xff,0xbe,0xef,0xe3,
0xff,0xd3,0xf8,0xf1,0xff,0xb0,0xec,0xe1,0xff,0xaa,0xe5,0xdc,0xff,0xbb,0xed,0xe6,
0xff,0x9d,0xe5,0xd6,0xff,0x9f,0xe8,0xd8,0xff,0x9b,0xe5,0xd4,0xff,0xa0,0xe7,0xd5,
0xff,0xab,0xec,0xde,0xff,0x90,0xe7,0xd6,0xff,0x81,0xe4,0xd0,0xff,0x94,0xe4,0xce,
0xff,0xb9,0xe8,0xd4,0xff,0xa3,0xe0,0xd1,0xff,0x8a,0xd2,0xc2,0xff,0x6d,0x9a,0x8e,
0xff,0x56,0x57,0x56,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,
0xff,0x42,0x42,0x42,0xff,0x12,0x12,0x12,0x68,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x16,0x16,0x16,0x72,0x24,0x24,0x24,0xfe,0x23,0x23,0x23,0xff,0x22,0x22,0x22,
0xff,0x2a,0x2a,0x2a,0xff,0x47,0x47,0x47,0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,
0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x3f,0x3f,0xff,0x61,0x76,0x6f,
0xff,0x4e,0xaf,0x99,0xff,0x43,0xa7,0x91,0xff,0x43,0xae,0x99,0xff,0x43,0xbb,0xa4,
0xff,0x4d,0xc3,0xaf,0xff,0x62,0xc7,0xb5,0xff,0x64,0xc9,0xb7,0xff,0x61,0xca,0xb3,
0xff,0x5f,0xc9,0xb0,0xff,0x69,0xc8,0xb0,0xff,0x6e,0xc7,0xb0,0xff,0x72,0xc9,0xb2,
0xff,0x5c,0xc5,0xac,0xff,0x47,0xbf,0xa8,0xff,0x59,0xca,0xb1,0xff,0x75,0xcf,0xb8,
0xff,0x79,0xd2,0xbf,0xff,0x79,0xd6,0xc6,0xff,0x78,0xcf,0xbf,0xff,0x7b,0xd9,0xc8,
0xff,0x6a,0xce,0xbd,0xff,0x57,0xcb,0xb7,0xff,0x5b,0xc9,0xb1,0xff,0x7d,0xdb,0xc5,
0xff,0x7b,0xdd,0xc7,0xff,0x7a,0xde,0xc8,0xff,0x7b,0xe3,0xce,0xff,0x7e,0xd6,0xbe,
0xff,0x93,0xe4,0xcd,0xff,0x75,0xec,0xd8,0xff,0x71,0xdd,0xc7,0xff,0x92,0xdd,0xcc,
0xff,0x9b,0xdd,0xcd,0xff,0x96,0xde,0xce,0xff,0x9c,0xe1,0xd1,0xff,0xaa,0xea,0xda,
0xff,0xa4,0xf2,0xe3,0xff,0x90,0xf0,0xe0,0xff,0x85,0xe7,0xd5,0xff,0x88,0xe0,0xcd,
0xff,0x8e,0xe1,0xce,0xff,0x95,0xdf,0xcd,0xff,0x9b,0xdb,0xca,0xff,0xa6,0xe0,0xd0,
0xff,0xa2,0xe8,0xd8,0xff,0xa3,0xec,0xdb,0xff,0xa0,0xe4,0xd4,0xff,0x9c,0xe5,0xd7,
0xff,0xa4,0xec,0xe0,0xff,0xac,0xed,0xe3,0xff,0xbf,0xf2,0xe8,0xff,0xcb,0xf5,0xec,
0xff,0xc6,0xf3,0xe9,0xff,0xb4,0xe8,0xdc,0xff,0xaf,0xe7,0xdb,0xff,0xbc,0xf3,0xe7,
0xff,0xc0,0xf1,0xe5,0xff,0xc5,0xef,0xe4,0xff,0xbf,0xef,0xe3,0xff,0xb5,0xec,0xe0,
0xff,0xc3,0xf5,0xea,0xff,0xc1,0xf6,0xed,0xff,0xb2,0xf0,0xe6,0xff,0xae,0xee,0xe2,
0xff,0xaa,0xec,0xe0,0xff,0xb0,0xef,0xe3,0xff,0xb6,0xf0,0xe2,0xff,0xbe,0xf5,0xe9,
0xff,0xc1,0xef,0xe5,0xff,0xaa,0xdc,0xd0,0xff,0xc6,0xf1,0xe8,0xff,0xd2,0xf6,0xee,
0xff,0xe2,0xfc,0xfa,0xff,0xc6,0xf2,0xec,0xff,0xb3,0xec,0xe1,0xff,0xa6,0xe0,0xd3,
0xff,0x98,0xde,0xcd,0xff,0x99,0xe4,0xd3,0xff,0xa3,0xe8,0xd9,0xff,0xab,0xed,0xe0,
0xff,0x96,0xe9,0xd8,0xff,0x90,0xe7,0xd5,0xff,0x94,0xe2,0xd0,0xff,0x9b,0xda,0xc3,
0xff,0xa3,0xd9,0xc6,0xff,0x92,0xd8,0xca,0xff,0x94,0xda,0xcb,0xff,0x70,0x9a,0x90,
0xff,0x56,0x55,0x55,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x55,0x55,0x55,
0xff,0x3d,0x3d,0x3d,0xf8,0x10,0x10,0x10,0x5b,0x1,0x1,0x1,0x3,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x18,0x18,0x18,0x88,0x24,0x24,0x24,0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,
0xff,0x2c,0x2c,0x2c,0xff,0x45,0x45,0x45,0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,
0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3e,0x3e,0xff,0x64,0x80,0x78,
0xff,0x4a,0xb2,0x9a,0xff,0x40,0xaf,0x98,0xff,0x43,0xb5,0xa0,0xff,0x47,0xbe,0xaa,
0xff,0x52,0xc4,0xae,0xff,0x5b,0xc5,0xb2,0xff,0x5d,0xc9,0xb4,0xff,0x58,0xc9,0xb2,
0xff,0x64,0xc7,0xb1,0xff,0x6d,0xc8,0xb2,0xff,0x67,0xc6,0xb1,0xff,0x67,0xca,0xb3,
0xff,0x4c,0xc8,0xb0,0xff,0x47,0xc8,0xaf,0xff,0x65,0xcf,0xb6,0xff,0x79,0xd2,0xc0,
0xff,0x79,0xd7,0xc9,0xff,0x75,0xce,0xbf,0xff,0x7d,0xd3,0xc4,0xff,0x70,0xd4,0xc5,
0xff,0x5d,0xcc,0xb8,0xff,0x66,0xd1,0xb7,0xff,0x87,0xdf,0xc7,0xff,0x9c,0xe6,0xd2,
0xff,0x92,0xe2,0xce,0xff,0x91,0xe7,0xd2,0xff,0x8a,0xdc,0xc9,0xff,0x8e,0xc8,0xb0,
0xff,0x99,0xf4,0xe0,0xff,0x75,0xde,0xcc,0xff,0x74,0xc7,0xb6,0xff,0x91,0xda,0xca,
0xff,0x9f,0xdf,0xd0,0xff,0xb8,0xed,0xe3,0xff,0xc2,0xf4,0xe8,0xff,0xc4,0xf5,0xea,
0xff,0xa8,0xef,0xe3,0xff,0x8b,0xe8,0xd9,0xff,0x93,0xe6,0xd7,0xff,0x95,0xe4,0xd4,
0xff,0x9d,0xe5,0xd5,0xff,0xa4,0xe7,0xd8,0xff,0xaf,0xec,0xdd,0xff,0xa8,0xee,0xde,
0xff,0x9c,0xea,0xda,0xff,0x9f,0xe8,0xd9,0xff,0xa1,0xed,0xde,0xff,0xa0,0xeb,0xdd,
0xff,0xad,0xed,0xe2,0xff,0xbd,0xf3,0xea,0xff,0xc5,0xf6,0xed,0xff,0xc2,0xf3,0xe9,
0xff,0xb0,0xe6,0xdb,0xff,0xb0,0xe8,0xdd,0xff,0xc6,0xf4,0xeb,0xff,0xc3,0xf2,0xe7,
0xff,0xbd,0xeb,0xe0,0xff,0xc3,0xef,0xe4,0xff,0xbc,0xf1,0xe5,0xff,0xc7,0xf6,0xeb,
0xff,0xc1,0xf4,0xea,0xff,0xb3,0xed,0xe3,0xff,0xac,0xea,0xde,0xff,0xb0,0xf1,0xe5,
0xff,0xb5,0xf3,0xe7,0xff,0xb6,0xee,0xe0,0xff,0xb9,0xf2,0xe6,0xff,0xbb,0xef,0xe5,
0xff,0xab,0xd6,0xce,0xff,0xbf,0xec,0xe2,0xff,0xda,0xfb,0xf4,0xff,0xda,0xf9,0xf5,
0xff,0xe9,0xfd,0xfb,0xff,0xdd,0xf3,0xf1,0xff,0xb1,0xe3,0xda,0xff,0xae,0xe5,0xd9,
0xff,0x9f,0xe6,0xd6,0xff,0x9a,0xe6,0xd6,0xff,0xa4,0xe9,0xdc,0xff,0x9d,0xea,0xdb,
0xff,0x85,0xe5,0xd2,0xff,0x99,0xe6,0xd5,0xff,0xa5,0xe3,0xd1,0xff,0xaf,0xe1,0xcf,
0xff,0x97,0xd6,0xc9,0xff,0x98,0xda,0xd0,0xff,0x85,0xd6,0xc8,0xff,0x63,0x91,0x89,
0xff,0x57,0x55,0x55,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x54,0x54,0x54,
0xff,0x39,0x39,0x39,0xf1,0xd,0xd,0xd,0x45,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1d,0x1d,0x1d,0x96,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x21,0x21,0x21,
0xff,0x2e,0x2e,0x2e,0xff,0x44,0x44,0x44,0xff,0x3a,0x3a,0x3a,0xff,0x3b,0x3b,0x3b,
0xff,0x3d,0x3d,0x3d,0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3d,0x3e,0xff,0x65,0x8b,0x81,
0xff,0x44,0xb4,0x9c,0xff,0x3e,0xb4,0x9d,0xff,0x44,0xb9,0xa4,0xff,0x4c,0xbf,0xab,
0xff,0x50,0xc4,0xaf,0xff,0x59,0xc8,0xb3,0xff,0x5a,0xcb,0xb5,0xff,0x57,0xc7,0xb1,
0xff,0x6a,0xc8,0xb3,0xff,0x64,0xc6,0xb1,0xff,0x60,0xc8,0xb1,0xff,0x59,0xcd,0xb4,
0xff,0x53,0xd0,0xb6,0xff,0x54,0xcf,0xb7,0xff,0x6d,0xd1,0xbd,0xff,0x7e,0xd5,0xc6,
0xff,0x80,0xd4,0xc6,0xff,0x70,0xc9,0xb8,0xff,0x75,0xda,0xc9,0xff,0x67,0xd0,0xb9,
0xff,0x88,0xd8,0xbc,0xff,0xaf,0xe6,0xcf,0xff,0xb3,0xe8,0xd1,0xff,0xae,0xe7,0xd1,
0xff,0xad,0xe9,0xd2,0xff,0xb5,0xf3,0xdf,0xff,0x8f,0xbf,0xaf,0xff,0x8d,0xbe,0xaa,
0xff,0x85,0xd0,0xc0,0xff,0x77,0xbe,0xae,0xff,0x88,0xd2,0xc1,0xff,0xb1,0xeb,0xde,
0xff,0xc0,0xf0,0xe4,0xff,0xcc,0xf4,0xeb,0xff,0xc6,0xf4,0xeb,0xff,0xc3,0xf3,0xea,
0xff,0xa9,0xec,0xe3,0xff,0x98,0xe6,0xda,0xff,0xa4,0xe8,0xdb,0xff,0xab,0xec,0xdf,
0xff,0xb1,0xee,0xe1,0xff,0xb0,0xed,0xdf,0xff,0xa0,0xe9,0xd9,0xff,0x97,0xe8,0xd8,
0xff,0x9b,0xeb,0xdc,0xff,0xa3,0xf0,0xe2,0xff,0xa7,0xf1,0xe4,0xff,0xaf,0xf1,0xe5,
0xff,0xbf,0xf3,0xe9,0xff,0xb9,0xf3,0xe9,0xff,0xb1,0xec,0xe1,0xff,0xad,0xe2,0xd7,
0xff,0xb1,0xe6,0xdd,0xff,0xc1,0xee,0xe6,0xff,0xc7,0xf1,0xe7,0xff,0xbd,0xee,0xe2,
0xff,0xc7,0xf0,0xe5,0xff,0xc2,0xf1,0xe7,0xff,0xc2,0xf6,0xea,0xff,0xbd,0xf0,0xe5,
0xff,0xb1,0xe8,0xdd,0xff,0xae,0xe9,0xde,0xff,0xb4,0xf1,0xe6,0xff,0xb7,0xf2,0xe7,
0xff,0xb2,0xe8,0xdb,0xff,0xb0,0xe8,0xdd,0xff,0xb4,0xef,0xe4,0xff,0xaf,0xd2,0xc6,
0xff,0xb5,0xe1,0xd5,0xff,0xcc,0xf8,0xee,0xff,0xd9,0xf9,0xf3,0xff,0xd5,0xf6,0xf0,
0xff,0xcb,0xf2,0xed,0xff,0xb9,0xe6,0xdd,0xff,0xb6,0xe7,0xda,0xff,0xab,0xe8,0xda,
0xff,0x8e,0xe0,0xd0,0xff,0x91,0xe1,0xd1,0xff,0x99,0xe5,0xd5,0xff,0x84,0xe2,0xd1,
0xff,0x85,0xe2,0xce,0xff,0x91,0xe1,0xcf,0xff,0xc1,0xf0,0xe2,0xff,0xb4,0xe4,0xd4,
0xff,0x92,0xcb,0xbc,0xff,0x91,0xd7,0xc6,0xff,0x70,0xde,0xcf,0xff,0x53,0x84,0x7e,
0xff,0x57,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x52,0x52,0x52,
0xff,0x32,0x32,0x32,0xe2,0x8,0x8,0x8,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,
0x2,0x1f,0x1f,0x1f,0xa7,0x20,0x20,0x20,0xff,0x22,0x22,0x22,0xff,0x20,0x20,0x20,
0xff,0x31,0x31,0x31,0xff,0x43,0x43,0x43,0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,
0xff,0x3c,0x3c,0x3c,0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3d,0x3e,0xff,0x61,0x93,0x86,
0xff,0x3e,0xb5,0x9e,0xff,0x3d,0xb6,0xa0,0xff,0x40,0xba,0xa4,0xff,0x48,0xbe,0xaa,
0xff,0x4e,0xc4,0xae,0xff,0x5b,0xca,0xb4,0xff,0x5a,0xc8,0xb3,0xff,0x69,0xc8,0xb4,
0xff,0x6b,0xc8,0xb3,0xff,0x6b,0xca,0xb4,0xff,0x69,0xcf,0xb8,0xff,0x69,0xd2,0xb9,
0xff,0x70,0xd3,0xbc,0xff,0x73,0xd3,0xc1,0xff,0x7c,0xd3,0xc4,0xff,0x8b,0xd6,0xc5,
0xff,0x80,0xd0,0xbc,0xff,0x7e,0xcf,0xb9,0xff,0x7e,0xd1,0xba,0xff,0xb1,0xe3,0xc6,
0xff,0xce,0xec,0xd5,0xff,0xd0,0xef,0xdc,0xff,0xd2,0xf0,0xdc,0xff,0xcc,0xeb,0xd7,
0xff,0xb8,0xdf,0xcc,0xff,0x9b,0xc7,0xb5,0xff,0x86,0xb9,0xa6,0xff,0xa0,0xdb,0xc9,
0xff,0x9e,0xdc,0xcb,0xff,0xa1,0xe4,0xd2,0xff,0x9e,0xe5,0xd5,0xff,0xb7,0xea,0xe1,
0xff,0xc7,0xf2,0xeb,0xff,0xce,0xf5,0xee,0xff,0xc9,0xf3,0xea,0xff,0xb9,0xef,0xe5,
0xff,0xa4,0xe9,0xdd,0xff,0x9e,0xe7,0xd9,0xff,0xa5,0xe8,0xda,0xff,0xaa,0xe7,0xdc,
0xff,0xa9,0xe8,0xdb,0xff,0x9a,0xe4,0xd5,0xff,0x99,0xe5,0xd5,0xff,0xa1,0xeb,0xdc,
0xff,0xa9,0xef,0xe1,0xff,0xb1,0xed,0xe1,0xff,0xa8,0xec,0xdf,0xff,0xb9,0xf5,0xea,
0xff,0xb9,0xf1,0xe7,0xff,0xac,0xe3,0xd9,0xff,0xab,0xd8,0xcf,0xff,0xb1,0xe2,0xd9,
0xff,0xba,0xe6,0xde,0xff,0xc0,0xea,0xe1,0xff,0xbb,0xec,0xe1,0xff,0xc4,0xef,0xe4,
0xff,0xc9,0xf1,0xe7,0xff,0xbc,0xf0,0xe5,0xff,0xbf,0xef,0xe5,0xff,0xb4,0xe5,0xda,
0xff,0xb2,0xe8,0xdd,0xff,0xb3,0xec,0xe1,0xff,0xb3,0xec,0xe2,0xff,0xb1,0xe7,0xdc,
0xff,0xb3,0xe4,0xd9,0xff,0xb7,0xe9,0xde,0xff,0xb6,0xda,0xce,0xff,0xb5,0xde,0xd0,
0xff,0xc9,0xf5,0xe7,0xff,0xd2,0xf5,0xe9,0xff,0xda,0xf5,0xec,0xff,0xce,0xf1,0xea,
0xff,0xcc,0xf3,0xec,0xff,0xc7,0xee,0xe0,0xff,0xbc,0xea,0xdb,0xff,0x9e,0xdf,0xcf,
0xff,0x92,0xd9,0xc7,0xff,0x8e,0xda,0xc8,0xff,0x8e,0xde,0xca,0xff,0xa2,0xe3,0xce,
0xff,0x9c,0xe1,0xce,0xff,0x9d,0xe6,0xd4,0xff,0xcb,0xef,0xe0,0xff,0xca,0xe5,0xd0,
0xff,0xbc,0xe1,0xcd,0xff,0x8f,0xed,0xda,0xff,0x70,0xdc,0xcb,0xff,0x55,0x71,0x6d,
0xff,0x57,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x50,0x50,0x50,
0xff,0x27,0x27,0x27,0xd1,0x5,0x5,0x5,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x4,
0x10,0x21,0x21,0x21,0xc1,0x21,0x21,0x21,0xff,0x21,0x21,0x21,0xff,0x20,0x20,0x20,
0xff,0x34,0x34,0x34,0xff,0x41,0x41,0x41,0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,
0xff,0x3c,0x3c,0x3c,0xff,0x3d,0x3d,0x3d,0xff,0x40,0x3e,0x3e,0xff,0x5f,0x97,0x8a,
0xff,0x3c,0xb2,0x9c,0xff,0x3c,0xb2,0x9f,0xff,0x3e,0xb6,0xa4,0xff,0x3f,0xb9,0xa6,
0xff,0x4d,0xc1,0xad,0xff,0x5b,0xc5,0xb0,0xff,0x66,0xc6,0xb1,0xff,0x6b,0xc6,0xb1,
0xff,0x6c,0xc8,0xb3,0xff,0x70,0xcd,0xb7,0xff,0x72,0xd1,0xbb,0xff,0x7f,0xd3,0xc0,
0xff,0x86,0xd4,0xc4,0xff,0x8b,0xd6,0xc7,0xff,0x90,0xd8,0xc7,0xff,0x8a,0xd3,0xbc,
0xff,0xb2,0xe0,0xc5,0xff,0xb2,0xde,0xca,0xff,0xa9,0xdc,0xc9,0xff,0xe8,0xf3,0xe2,
0xff,0xd7,0xea,0xda,0xff,0xc8,0xdb,0xcb,0xff,0xb6,0xce,0xbc,0xff,0xad,0xd2,0xbf,
0xff,0xbb,0xdc,0xca,0xff,0xa3,0xcd,0xba,0xff,0xb0,0xdc,0xc9,0xff,0xce,0xf4,0xe3,
0xff,0xb5,0xe6,0xd4,0xff,0xaa,0xe3,0xd0,0xff,0xaa,0xe2,0xd3,0xff,0xbe,0xec,0xe2,
0xff,0xc4,0xf0,0xe7,0xff,0xc5,0xf0,0xe8,0xff,0xc0,0xee,0xe3,0xff,0xb4,0xea,0xdd,
0xff,0xa6,0xe4,0xd6,0xff,0xa3,0xe4,0xd6,0xff,0xa8,0xe3,0xd8,0xff,0xa2,0xe3,0xd7,
0xff,0x95,0xe4,0xd4,0xff,0x96,0xe1,0xd1,0xff,0xa4,0xe2,0xd4,0xff,0xac,0xe5,0xd8,
0xff,0xad,0xe5,0xd9,0xff,0xb0,0xe6,0xda,0xff,0xb6,0xef,0xe3,0xff,0xb9,0xf0,0xe6,
0xff,0xab,0xdf,0xd4,0xff,0xaf,0xd5,0xcd,0xff,0xb3,0xdc,0xd5,0xff,0xb4,0xdc,0xd5,
0xff,0xb7,0xde,0xd6,0xff,0xb7,0xe4,0xda,0xff,0xbe,0xe9,0xde,0xff,0xc9,0xee,0xe5,
0xff,0xbd,0xe9,0xe0,0xff,0xb9,0xe8,0xde,0xff,0xb9,0xe4,0xdb,0xff,0xb7,0xe7,0xdd,
0xff,0xb5,0xe6,0xdd,0xff,0xb6,0xe6,0xdc,0xff,0xba,0xe5,0xd8,0xff,0xc4,0xe7,0xda,
0xff,0xd2,0xef,0xe1,0xff,0xc9,0xe5,0xd9,0xff,0xb4,0xdd,0xce,0xff,0xd1,0xf4,0xe6,
0xff,0xe6,0xf7,0xeb,0xff,0xdc,0xf3,0xe6,0xff,0xcd,0xee,0xe1,0xff,0xbb,0xec,0xdf,
0xff,0xd7,0xf5,0xe9,0xff,0xd3,0xf2,0xe3,0xff,0xb1,0xe5,0xd3,0xff,0xa5,0xdd,0xc9,
0xff,0x99,0xd3,0xc0,0xff,0x9f,0xd9,0xc4,0xff,0xc7,0xed,0xd8,0xff,0xc8,0xea,0xd7,
0xff,0x8a,0xd9,0xc4,0xff,0xab,0xe7,0xd2,0xff,0xed,0xf8,0xec,0xff,0xeb,0xf7,0xee,
0xff,0xa1,0xf1,0xde,0xff,0x9e,0xf2,0xe2,0xff,0xa7,0xdb,0xce,0xff,0x5b,0x68,0x66,
0xff,0x56,0x55,0x56,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x4e,0x4e,0x4e,
0xff,0x23,0x23,0x23,0xc9,0x3,0x3,0x3,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x6,0x6,
0x1e,0x21,0x21,0x21,0xd5,0x21,0x21,0x21,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,
0xff,0x35,0x35,0x35,0xff,0x3e,0x3e,0x3e,0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,
0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,0xff,0x44,0x43,0x42,0xff,0x5a,0x96,0x8a,
0xff,0x39,0xaa,0x97,0xff,0x3a,0xab,0x9a,0xff,0x39,0xae,0x9d,0xff,0x3a,0xb2,0xa0,
0xff,0x4a,0xb7,0xa6,0xff,0x5e,0xbe,0xab,0xff,0x63,0xbf,0xab,0xff,0x67,0xc4,0xae,
0xff,0x6b,0xc7,0xb3,0xff,0x6f,0xca,0xb8,0xff,0x7f,0xcf,0xbf,0xff,0x90,0xd2,0xc4,
0xff,0x87,0xd4,0xc6,0xff,0x8d,0xd7,0xc5,0xff,0xa3,0xdd,0xc0,0xff,0xb7,0xe0,0xc5,
0xff,0xef,0xf5,0xe5,0xff,0xa2,0xc1,0xb3,0xff,0xa9,0xc6,0xb5,0xff,0xd0,0xdb,0xcb,
0xff,0xc9,0xdc,0xcc,0xff,0xd3,0xe1,0xd2,0xff,0xe2,0xed,0xe0,0xff,0xed,0xf6,0xe9,
0xff,0xf4,0xfa,0xf0,0xff,0xab,0xcf,0xbe,0xff,0xd0,0xe9,0xd8,0xff,0xc3,0xe6,0xd4,
0xff,0xb4,0xe0,0xcd,0xff,0xb9,0xe2,0xd0,0xff,0xba,0xe8,0xd8,0xff,0xc1,0xec,0xe2,
0xff,0xbb,0xea,0xdf,0xff,0xb8,0xe8,0xdc,0xff,0xba,0xe8,0xda,0xff,0xb3,0xe4,0xd5,
0xff,0xab,0xe0,0xd1,0xff,0xb0,0xe1,0xd3,0xff,0xa1,0xe1,0xd2,0xff,0x91,0xe3,0xd3,
0xff,0x99,0xe2,0xd3,0xff,0xa8,0xe0,0xd3,0xff,0xae,0xde,0xd2,0xff,0xaa,0xdc,0xd0,
0xff,0xb2,0xe1,0xd5,0xff,0xb1,0xe0,0xd4,0xff,0xbd,0xee,0xe4,0xff,0xb6,0xe1,0xd6,
0xff,0xb7,0xd8,0xcf,0xff,0xbb,0xd9,0xd2,0xff,0xb7,0xd5,0xd0,0xff,0xb7,0xd7,0xd2,
0xff,0xb6,0xdc,0xd5,0xff,0xba,0xe1,0xd7,0xff,0xc2,0xe6,0xde,0xff,0xbf,0xe4,0xdc,
0xff,0xb9,0xe4,0xd9,0xff,0xb9,0xe0,0xd7,0xff,0xba,0xe2,0xd9,0xff,0xbe,0xe6,0xdb,
0xff,0xc1,0xe5,0xda,0xff,0xc4,0xe3,0xd5,0xff,0xd9,0xec,0xdd,0xff,0xec,0xf6,0xea,
0xff,0xe6,0xf1,0xe7,0xff,0xbd,0xe1,0xd3,0xff,0xd0,0xef,0xe1,0xff,0xf6,0xfa,0xf3,
0xff,0xdb,0xef,0xe4,0xff,0xd0,0xee,0xe0,0xff,0xdc,0xf4,0xe8,0xff,0xdd,0xf5,0xe9,
0xff,0xdd,0xf5,0xe9,0xff,0xc9,0xed,0xdf,0xff,0xb6,0xe4,0xd3,0xff,0xbd,0xe6,0xd5,
0xff,0xc7,0xea,0xd5,0xff,0xdf,0xf5,0xe1,0xff,0xe3,0xf5,0xe6,0xff,0x95,0xd6,0xc1,
0xff,0x8e,0xd5,0xbd,0xff,0xe6,0xf7,0xed,0xff,0xdf,0xf6,0xef,0xff,0xab,0xe7,0xdb,
0xff,0xd3,0xf6,0xf1,0xff,0xc8,0xf4,0xea,0xff,0xa3,0xd4,0xc8,0xff,0x5e,0x64,0x63,
0xff,0x56,0x56,0x56,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x4e,0x4e,0x4e,
0xff,0x21,0x21,0x21,0xc1,0x2,0x2,0x2,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x7,0x7,
0x28,0x21,0x21,0x21,0xe1,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x1f,0x1f,0x1f,
0xff,0x36,0x36,0x36,0xff,0x3b,0x3b,0x3b,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,
0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,0xff,0x48,0x48,0x46,0xff,0x55,0x95,0x88,
0xff,0x36,0x9f,0x90,0xff,0x37,0xa2,0x92,0xff,0x37,0xa4,0x94,0xff,0x40,0xa7,0x98,
0xff,0x52,0xaf,0xa0,0xff,0x5e,0xb6,0xa5,0xff,0x61,0xbb,0xa8,0xff,0x6a,0xc2,0xae,
0xff,0x6a,0xc2,0xb1,0xff,0x71,0xc5,0xb8,0xff,0x89,0xcd,0xc2,0xff,0x89,0xd0,0xc3,
0xff,0x91,0xd5,0xc0,0xff,0xb9,0xe0,0xc8,0xff,0xbf,0xe3,0xc9,0xff,0xe2,0xef,0xde,
0xff,0xf2,0xf6,0xeb,0xff,0x9e,0xc0,0xb2,0xff,0xd8,0xe4,0xd9,0xff,0xfa,0xfc,0xf4,
0xff,0xf6,0xfa,0xf1,0xff,0xf8,0xfb,0xf1,0xff,0xf5,0xf8,0xee,0xff,0xf9,0xfa,0xf2,
0xff,0xd9,0xe7,0xdb,0xff,0xaa,0xc9,0xb9,0xff,0xdc,0xef,0xde,0xff,0xc2,0xe3,0xcf,
0xff,0xc6,0xe4,0xd2,0xff,0xca,0xe8,0xd7,0xff,0xc6,0xeb,0xdd,0xff,0xc3,0xea,0xde,
0xff,0xb9,0xe5,0xd7,0xff,0xb7,0xe2,0xd3,0xff,0xbe,0xe4,0xd3,0xff,0xb8,0xe0,0xce,
0xff,0xb5,0xe0,0xd0,0xff,0xa1,0xe2,0xd2,0xff,0x93,0xe3,0xd4,0xff,0xa5,0xe2,0xd4,
0xff,0xb0,0xdf,0xd3,0xff,0xb7,0xdf,0xd4,0xff,0xb4,0xde,0xd2,0xff,0xb9,0xde,0xd2,
0xff,0xb2,0xd7,0xcc,0xff,0xb0,0xd9,0xce,0xff,0xd0,0xef,0xe9,0xff,0xc7,0xde,0xd3,
0xff,0xc6,0xda,0xd2,0xff,0xbf,0xd6,0xd2,0xff,0xbd,0xd6,0xd4,0xff,0xbc,0xd6,0xd3,
0xff,0xba,0xdb,0xd4,0xff,0xc4,0xe4,0xdd,0xff,0xc0,0xdd,0xd8,0xff,0xbb,0xd9,0xd1,
0xff,0xbb,0xdb,0xd3,0xff,0xbc,0xde,0xd5,0xff,0xc2,0xe2,0xd7,0xff,0xcf,0xe9,0xdb,
0xff,0xd1,0xe7,0xd9,0xff,0xe2,0xef,0xe2,0xff,0xf7,0xfb,0xf3,0xff,0xf9,0xfa,0xf5,
0xff,0xca,0xde,0xd4,0xff,0xcf,0xea,0xdb,0xff,0xf6,0xfb,0xf3,0xff,0xec,0xf4,0xea,
0xff,0xe6,0xf5,0xeb,0xff,0xf5,0xfd,0xf8,0xff,0xfc,0xfd,0xfc,0xff,0xe4,0xf1,0xe8,
0xff,0xca,0xe4,0xd8,0xff,0xcd,0xeb,0xe0,0xff,0xe6,0xf5,0xeb,0xff,0xef,0xf9,0xec,
0xff,0xee,0xfa,0xec,0xff,0xf7,0xfd,0xf3,0xff,0xaf,0xdf,0xce,0xff,0x87,0xcd,0xb3,
0xff,0xdc,0xf1,0xe2,0xff,0xe2,0xf7,0xf2,0xff,0xba,0xed,0xdd,0xff,0xe0,0xf8,0xf1,
0xff,0xc6,0xeb,0xe4,0xff,0xcb,0xf1,0xe6,0xff,0xb0,0xce,0xc5,0xff,0x5b,0x5f,0x5e,
0xff,0x56,0x56,0x56,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x4d,0x4d,0x4d,
0xff,0x21,0x21,0x21,0xb2,0x1,0x1,0x1,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xa,0xa,
0x31,0x21,0x21,0x21,0xe9,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,
0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,0xff,0x37,0x37,0x37,0xff,0x38,0x38,0x38,
0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,0xff,0x4a,0x4c,0x4b,0xff,0x50,0x92,0x86,
0xff,0x35,0x96,0x87,0xff,0x35,0x96,0x88,0xff,0x40,0x99,0x8b,0xff,0x4c,0x9f,0x91,
0xff,0x53,0xa7,0x98,0xff,0x57,0xac,0x9d,0xff,0x5d,0xb2,0xa3,0xff,0x65,0xb9,0xaa,
0xff,0x6a,0xbd,0xb0,0xff,0x77,0xc3,0xb9,0xff,0x84,0xc8,0xbc,0xff,0x9a,0xd1,0xbc,
0xff,0xbc,0xde,0xc5,0xff,0xd5,0xe7,0xd3,0xff,0xe1,0xec,0xdd,0xff,0xf1,0xf4,0xe7,
0xff,0xe9,0xf2,0xe8,0xff,0xaa,0xe6,0xd7,0xff,0xf1,0xfc,0xf3,0xff,0xfb,0xf9,0xf2,
0xff,0xf8,0xf9,0xf0,0xff,0xf8,0xf8,0xef,0xff,0xf6,0xf7,0xed,0xff,0xfd,0xfd,0xf8,
0xff,0xb2,0xca,0xbc,0xff,0xca,0xdb,0xca,0xff,0xdf,0xec,0xdb,0xff,0xd2,0xe5,0xd3,
0xff,0xd6,0xe8,0xd6,0xff,0xd6,0xec,0xdd,0xff,0xcf,0xeb,0xdf,0xff,0xc6,0xe8,0xdc,
0xff,0xc3,0xe4,0xd5,0xff,0xbe,0xdf,0xd0,0xff,0xc5,0xe1,0xd0,0xff,0xb7,0xe0,0xce,
0xff,0x98,0xdc,0xca,0xff,0x98,0xde,0xcc,0xff,0xb4,0xdf,0xd1,0xff,0xb9,0xdc,0xd1,
0xff,0xba,0xde,0xd2,0xff,0xc2,0xe2,0xd6,0xff,0xc6,0xe2,0xd5,0xff,0xba,0xd9,0xcb,
0xff,0xbf,0xdb,0xcb,0xff,0xcf,0xe3,0xd6,0xff,0xd7,0xe7,0xdf,0xff,0xd6,0xe3,0xd9,
0xff,0xce,0xde,0xd8,0xff,0xc7,0xd9,0xd6,0xff,0xc5,0xd8,0xd5,0xff,0xc1,0xda,0xd6,
0xff,0xc8,0xe6,0xe0,0xff,0xc7,0xe2,0xde,0xff,0xc0,0xd7,0xd1,0xff,0xbe,0xd9,0xd1,
0xff,0xc0,0xdf,0xd7,0xff,0xca,0xe7,0xdd,0xff,0xdb,0xee,0xe0,0xff,0xdf,0xed,0xdf,
0xff,0xeb,0xf4,0xe8,0xff,0xfb,0xfd,0xf7,0xff,0xfd,0xfc,0xfd,0xff,0xd5,0xdb,0xd8,
0xff,0xc3,0xda,0xca,0xff,0xf4,0xfb,0xf1,0xff,0xfd,0xfd,0xf9,0xff,0xfb,0xfd,0xf9,
0xff,0xff,0xff,0xfe,0xff,0xf5,0xf9,0xf7,0xff,0xde,0xeb,0xe5,0xff,0xd9,0xe7,0xdf,
0xff,0xe8,0xf4,0xec,0xff,0xfa,0xfd,0xfa,0xff,0xfe,0xff,0xfa,0xff,0xf8,0xfd,0xf6,
0xff,0xfd,0xff,0xfc,0xff,0xc8,0xe9,0xdc,0xff,0x94,0xd2,0xbb,0xff,0xd7,0xed,0xdc,
0xff,0xe1,0xf7,0xed,0xff,0xd0,0xf4,0xe7,0xff,0xdf,0xe9,0xe5,0xff,0xcd,0xe0,0xdc,
0xff,0xeb,0xf9,0xf6,0xff,0xcf,0xf8,0xee,0xff,0x8e,0xb9,0xab,0xff,0x58,0x5a,0x59,
0xff,0x56,0x56,0x56,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x47,0x47,0x47,
0xfd,0x1b,0x1b,0x1b,0x8c,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xe,0xe,
0x3d,0x1f,0x1f,0x1f,0xf1,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x21,0x21,0x21,
0xff,0x3c,0x3c,0x3c,0xff,0x37,0x37,0x37,0xff,0x36,0x36,0x36,0xff,0x37,0x37,0x37,
0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,0xff,0x4b,0x4f,0x4e,0xff,0x4d,0x8c,0x84,
0xff,0x36,0x8c,0x80,0xff,0x41,0x8d,0x82,0xff,0x4a,0x8e,0x84,0xff,0x4c,0x95,0x8a,
0xff,0x53,0x9b,0x91,0xff,0x56,0xa1,0x97,0xff,0x58,0xac,0xa2,0xff,0x5c,0xb4,0xa9,
0xff,0x67,0xb8,0xac,0xff,0x7d,0xbe,0xb1,0xff,0x9e,0xcc,0xb8,0xff,0xbb,0xd8,0xc1,
0xff,0xcc,0xdf,0xcc,0xff,0xdd,0xe9,0xd6,0xff,0xea,0xee,0xde,0xff,0xf6,0xf5,0xe8,
0xff,0xde,0xed,0xe2,0xff,0xa8,0xdd,0xcd,0xff,0xfa,0xfd,0xf3,0xff,0xfa,0xf9,0xf0,
0xff,0xf9,0xf8,0xee,0xff,0xf8,0xf8,0xee,0xff,0xfb,0xfb,0xf3,0xff,0xe7,0xed,0xe7,
0xff,0xa9,0xbf,0xaf,0xff,0xe7,0xec,0xdb,0xff,0xe2,0xea,0xd8,0xff,0xdf,0xe9,0xd7,
0xff,0xdd,0xea,0xdb,0xff,0xdc,0xed,0xe1,0xff,0xd1,0xeb,0xdf,0xff,0xcf,0xe9,0xdc,
0xff,0xce,0xe6,0xd6,0xff,0xc4,0xe1,0xd1,0xff,0xb9,0xe2,0xd1,0xff,0x92,0xda,0xc7,
0xff,0xab,0xde,0xcd,0xff,0xcd,0xe3,0xd2,0xff,0xc8,0xdf,0xd1,0xff,0xc5,0xe0,0xd3,
0xff,0xcf,0xe6,0xda,0xff,0xcc,0xe4,0xd8,0xff,0xc5,0xdf,0xd0,0xff,0xd6,0xe7,0xd8,
0xff,0xe5,0xef,0xe3,0xff,0xe5,0xed,0xe3,0xff,0xe0,0xeb,0xe1,0xff,0xd7,0xe7,0xdf,
0xff,0xd2,0xe2,0xdc,0xff,0xd6,0xe3,0xde,0xff,0xd0,0xe4,0xe0,0xff,0xcc,0xe7,0xe2,
0xff,0xce,0xe7,0xe3,0xff,0xc4,0xde,0xd8,0xff,0xc0,0xdb,0xd3,0xff,0xca,0xe6,0xde,
0xff,0xd9,0xf0,0xe7,0xff,0xe8,0xf5,0xec,0xff,0xee,0xf5,0xec,0xff,0xf2,0xf8,0xee,
0xff,0xfc,0xfe,0xfa,0xff,0xfe,0xfe,0xfe,0xff,0xe3,0xe5,0xe2,0xff,0xd0,0xdb,0xd2,
0xff,0xed,0xf5,0xed,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,
0xff,0xfe,0xfe,0xfd,0xff,0xf1,0xf7,0xf4,0xff,0xf3,0xf8,0xf6,0xff,0xfd,0xfe,0xfd,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfb,0xfe,0xfa,0xff,0xfe,0xff,0xfe,
0xff,0xdf,0xf2,0xeb,0xff,0xa2,0xdb,0xc6,0xff,0xde,0xf2,0xe2,0xff,0xea,0xfb,0xf1,
0xff,0xde,0xf8,0xed,0xff,0xdc,0xe7,0xe4,0xff,0xc9,0xd6,0xd3,0xff,0xef,0xf3,0xf1,
0xff,0xd5,0xf4,0xe8,0xff,0xb7,0xed,0xd8,0xff,0xa1,0xa7,0xa4,0xff,0x58,0x58,0x58,
0xff,0x56,0x56,0x56,0xff,0x56,0x56,0x56,0xff,0x56,0x56,0x56,0xff,0x40,0x40,0x40,
0xfb,0x12,0x12,0x12,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x11,0x11,0x11,
0x58,0x1f,0x1f,0x1f,0xf8,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x22,0x22,0x22,
0xff,0x3d,0x3d,0x3d,0xff,0x36,0x36,0x36,0xff,0x35,0x35,0x35,0xff,0x36,0x36,0x36,
0xff,0x38,0x38,0x38,0xff,0x39,0x39,0x39,0xff,0x4c,0x50,0x4f,0xff,0x51,0x85,0x7e,
0xff,0x42,0x84,0x7b,0xff,0x46,0x82,0x7a,0xff,0x46,0x86,0x7d,0xff,0x4d,0x8d,0x84,
0xff,0x54,0x91,0x8b,0xff,0x57,0x9e,0x9a,0xff,0x56,0xab,0xa7,0xff,0x58,0xaf,0xa8,
0xff,0x71,0xb3,0xa8,0xff,0x96,0xc1,0xb1,0xff,0xb0,0xce,0xb9,0xff,0xc4,0xd8,0xc3,
0xff,0xd3,0xe1,0xcd,0xff,0xe3,0xe9,0xd7,0xff,0xec,0xee,0xde,0xff,0xf9,0xf5,0xe8,
0xff,0xcf,0xe7,0xd9,0xff,0xb5,0xe0,0xd1,0xff,0xff,0xfe,0xf4,0xff,0xf9,0xf8,0xee,
0xff,0xf9,0xf8,0xee,0xff,0xf7,0xf7,0xec,0xff,0xfe,0xfe,0xf7,0xff,0xc4,0xd3,0xc4,
0xff,0xbe,0xce,0xbc,0xff,0xf0,0xf2,0xe0,0xff,0xe6,0xeb,0xd9,0xff,0xe5,0xec,0xdc,
0xff,0xe1,0xed,0xe0,0xff,0xda,0xec,0xe0,0xff,0xd5,0xea,0xdf,0xff,0xd9,0xeb,0xde,
0xff,0xd3,0xe9,0xda,0xff,0xab,0xdf,0xce,0xff,0x92,0xd7,0xc5,0xff,0xb8,0xe2,0xd2,
0xff,0xde,0xea,0xdb,0xff,0xd5,0xe5,0xd5,0xff,0xd1,0xe5,0xd6,0xff,0xd7,0xe8,0xdc,
0xff,0xcb,0xe2,0xd6,0xff,0xce,0xe4,0xd4,0xff,0xe5,0xef,0xe1,0xff,0xee,0xf3,0xea,
0xff,0xee,0xf4,0xec,0xff,0xea,0xf3,0xeb,0xff,0xdc,0xeb,0xe3,0xff,0xd8,0xe8,0xe0,
0xff,0xe2,0xec,0xe6,0xff,0xe2,0xef,0xec,0xff,0xd1,0xea,0xe5,0xff,0xcb,0xe6,0xe2,
0xff,0xc9,0xe3,0xde,0xff,0xca,0xe9,0xe1,0xff,0xd0,0xec,0xe5,0xff,0xe2,0xf3,0xed,
0xff,0xef,0xf8,0xf2,0xff,0xf5,0xf9,0xf4,0xff,0xf7,0xfb,0xf5,0xff,0xfd,0xfe,0xfc,
0xff,0xfe,0xfe,0xfd,0xff,0xe8,0xec,0xe8,0xff,0xdf,0xe6,0xe1,0xff,0xf9,0xfb,0xf9,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xee,0xf7,0xf4,
0xff,0xad,0xdb,0xcb,0xff,0xd8,0xf0,0xe2,0xff,0xf2,0xff,0xf1,0xff,0xea,0xfa,0xf1,
0xff,0xda,0xe5,0xe5,0xff,0xd5,0xe2,0xe0,0xff,0xf7,0xfa,0xfa,0xff,0xd8,0xf8,0xee,
0xff,0xc0,0xf0,0xdc,0xff,0xf1,0xfa,0xf3,0xff,0x94,0x98,0x95,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x3c,0x3c,0x3c,
0xfb,0x10,0x10,0x10,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x3,0x13,0x13,0x13,
0x74,0x20,0x20,0x20,0xfc,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x23,0x23,0x23,
0xff,0x3d,0x3d,0x3d,0xff,0x34,0x34,0x34,0xff,0x34,0x34,0x34,0xff,0x35,0x35,0x35,
0xff,0x37,0x37,0x37,0xff,0x38,0x38,0x38,0xff,0x4b,0x50,0x4e,0xff,0x53,0x7e,0x77,
0xff,0x46,0x7e,0x74,0xff,0x43,0x7c,0x73,0xff,0x47,0x80,0x78,0xff,0x4d,0x83,0x7b,
0xff,0x53,0x8b,0x87,0xff,0x5c,0x9a,0x9b,0xff,0x5e,0xa2,0xa3,0xff,0x67,0xa7,0xa1,
0xff,0x87,0xb2,0xa6,0xff,0xa3,0xc2,0xb0,0xff,0xbb,0xd0,0xb9,0xff,0xd0,0xda,0xc4,
0xff,0xdd,0xe3,0xcd,0xff,0xe7,0xea,0xd6,0xff,0xee,0xed,0xdd,0xff,0xfa,0xf7,0xe8,
0xff,0xb9,0xce,0xbe,0xff,0xc0,0xd6,0xc6,0xff,0xfe,0xfc,0xf6,0xff,0xf8,0xf6,0xeb,
0xff,0xf9,0xf7,0xec,0xff,0xf9,0xf8,0xec,0xff,0xf2,0xf6,0xe9,0xff,0xa4,0xba,0xa5,
0xff,0xdd,0xe4,0xd3,0xff,0xf0,0xf1,0xdf,0xff,0xeb,0xef,0xdd,0xff,0xe8,0xef,0xe1,
0xff,0xe1,0xed,0xe1,0xff,0xdb,0xea,0xdf,0xff,0xd9,0xea,0xdf,0xff,0xcd,0xea,0xda,
0xff,0xac,0xe1,0xcf,0xff,0x94,0xd5,0xc4,0xff,0xc3,0xe1,0xd3,0xff,0xe4,0xeb,0xdf,
0xff,0xe4,0xec,0xde,0xff,0xdf,0xea,0xdc,0xff,0xd9,0xe8,0xdb,0xff,0xcb,0xe3,0xd5,
0xff,0xd6,0xe9,0xd9,0xff,0xee,0xf3,0xe9,0xff,0xf2,0xf5,0xee,0xff,0xf0,0xf5,0xf0,
0xff,0xec,0xf4,0xef,0xff,0xe3,0xef,0xea,0xff,0xe3,0xef,0xe8,0xff,0xed,0xf5,0xef,
0xff,0xe9,0xf3,0xf1,0xff,0xd2,0xe8,0xe3,0xff,0xc7,0xe5,0xdd,0xff,0xcc,0xe7,0xe1,
0xff,0xd6,0xef,0xea,0xff,0xd8,0xf4,0xef,0xff,0xe7,0xf6,0xf3,0xff,0xf2,0xf9,0xf6,
0xff,0xf7,0xfc,0xf8,0xff,0xf8,0xfb,0xf8,0xff,0xf9,0xfc,0xf8,0xff,0xfe,0xff,0xfc,
0xff,0xe4,0xe9,0xe1,0xff,0xd9,0xe1,0xdb,0xff,0xfa,0xfc,0xfc,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfc,0xff,0xf9,0xfc,0xfa,0xff,0xb9,0xdd,0xd0,
0xff,0xcc,0xe8,0xdc,0xff,0xf7,0xfe,0xf2,0xff,0xf2,0xfa,0xf4,0xff,0xe2,0xe7,0xe8,
0xff,0xe4,0xec,0xeb,0xff,0xfc,0xfd,0xfd,0xff,0xe1,0xf9,0xee,0xff,0xc6,0xf2,0xdf,
0xff,0xf4,0xfd,0xf8,0xff,0xf1,0xf7,0xf1,0xff,0x87,0x8c,0x88,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x3a,0x3a,0x3a,
0xfa,0xc,0xc,0xc,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x5,0x15,0x15,0x15,
0x89,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x24,0x24,0x24,
0xff,0x3b,0x3b,0x3b,0xff,0x33,0x33,0x33,0xff,0x33,0x33,0x33,0xff,0x34,0x34,0x34,
0xff,0x36,0x36,0x36,0xff,0x37,0x37,0x37,0xff,0x4f,0x55,0x53,0xff,0x50,0x79,0x71,
0xff,0x45,0x7a,0x72,0xff,0x43,0x7b,0x73,0xff,0x49,0x7b,0x74,0xff,0x4d,0x7e,0x78,
0xff,0x52,0x87,0x86,0xff,0x5c,0x90,0x92,0xff,0x60,0x97,0x97,0xff,0x73,0xa3,0x9c,
0xff,0x8e,0xb2,0xa4,0xff,0xaa,0xc2,0xae,0xff,0xc4,0xd0,0xb8,0xff,0xd7,0xdb,0xc3,
0xff,0xe2,0xe3,0xcd,0xff,0xea,0xea,0xd5,0xff,0xf0,0xee,0xdb,0xff,0xf9,0xf6,0xe5,
0xff,0xab,0xbc,0xa8,0xff,0xd0,0xd7,0xc7,0xff,0xfd,0xfb,0xf3,0xff,0xf8,0xf5,0xe8,
0xff,0xf8,0xf6,0xe8,0xff,0xfb,0xfa,0xea,0xff,0xd7,0xdb,0xc8,0xff,0xa7,0xb1,0x9c,
0xff,0xf1,0xf1,0xdc,0xff,0xef,0xf0,0xde,0xff,0xec,0xef,0xdf,0xff,0xe9,0xed,0xe0,
0xff,0xe0,0xea,0xdd,0xff,0xcd,0xe6,0xd9,0xff,0xbd,0xe5,0xd4,0xff,0xba,0xe4,0xd1,
0xff,0xbc,0xe1,0xcf,0xff,0xd1,0xe3,0xd6,0xff,0xe3,0xeb,0xdf,0xff,0xe7,0xef,0xe3,
0xff,0xea,0xef,0xe4,0xff,0xe2,0xec,0xde,0xff,0xd7,0xe9,0xd8,0xff,0xe2,0xef,0xe0,
0xff,0xf0,0xf4,0xeb,0xff,0xf2,0xf6,0xee,0xff,0xf2,0xf6,0xf0,0xff,0xef,0xf5,0xf1,
0xff,0xec,0xf4,0xf1,0xff,0xf1,0xf6,0xf2,0xff,0xf7,0xfa,0xf6,0xff,0xef,0xf6,0xf3,
0xff,0xdd,0xec,0xe5,0xff,0xd0,0xe7,0xdc,0xff,0xd4,0xec,0xe6,0xff,0xe4,0xf4,0xf3,
0xff,0xe0,0xf7,0xf4,0xff,0xe4,0xf7,0xf4,0xff,0xf4,0xfa,0xf7,0xff,0xf7,0xfc,0xf8,
0xff,0xf2,0xf8,0xf4,0xff,0xee,0xf6,0xf1,0xff,0xf9,0xfc,0xf9,0xff,0xf3,0xf5,0xf0,
0xff,0xda,0xe1,0xdb,0xff,0xf7,0xf9,0xf8,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfd,0xff,0xfe,0xff,0xff,0xff,0xcf,0xe7,0xdd,0xff,0xbb,0xdf,0xd0,
0xff,0xf3,0xfd,0xef,0xff,0xfc,0xff,0xfa,0xff,0xf8,0xf8,0xfa,0xff,0xf4,0xf7,0xf7,
0xff,0xfe,0xff,0xff,0xff,0xe7,0xfb,0xf1,0xff,0xd2,0xf6,0xe2,0xff,0xf8,0xfe,0xf7,
0xff,0xf9,0xfe,0xf8,0xff,0xef,0xf3,0xef,0xff,0x80,0x80,0x80,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x35,0x35,0x35,
0xf8,0x8,0x8,0x8,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x2,0x7,0x1b,0x1b,0x1b,
0x9a,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x26,0x26,0x26,
0xff,0x3a,0x3a,0x3a,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x33,0x33,0x33,
0xff,0x35,0x35,0x35,0xff,0x36,0x36,0x36,0xff,0x53,0x5c,0x58,0xff,0x4a,0x76,0x6d,
0xff,0x43,0x77,0x6e,0xff,0x45,0x77,0x70,0xff,0x49,0x79,0x71,0xff,0x4d,0x7e,0x7b,
0xff,0x54,0x85,0x85,0xff,0x5c,0x8d,0x8d,0xff,0x66,0x98,0x94,0xff,0x7c,0xa6,0x9d,
0xff,0x94,0xb4,0xa5,0xff,0xb1,0xc4,0xad,0xff,0xca,0xd1,0xb8,0xff,0xda,0xdc,0xc3,
0xff,0xe6,0xe4,0xcc,0xff,0xec,0xe9,0xd3,0xff,0xf2,0xee,0xd9,0xff,0xf4,0xf0,0xdd,
0xff,0xac,0xdf,0xc8,0xff,0xe6,0xf0,0xde,0xff,0xfb,0xf5,0xe5,0xff,0xf8,0xf5,0xe5,
0xff,0xf6,0xf3,0xe1,0xff,0xfc,0xf7,0xe3,0xff,0xba,0xc9,0xb2,0xff,0xd0,0xd5,0xbe,
0xff,0xf6,0xf4,0xdd,0xff,0xf0,0xf0,0xdd,0xff,0xf0,0xef,0xdf,0xff,0xe2,0xe9,0xda,
0xff,0xb6,0xdf,0xce,0xff,0xaa,0xdf,0xcc,0xff,0xc1,0xe4,0xd3,0xff,0xdb,0xea,0xdb,
0xff,0xe2,0xea,0xdd,0xff,0xe3,0xeb,0xdf,0xff,0xe9,0xf0,0xe5,0xff,0xea,0xf0,0xe5,
0xff,0xe4,0xed,0xdd,0xff,0xe7,0xf0,0xde,0xff,0xf0,0xf5,0xe8,0xff,0xf4,0xf6,0xed,
0xff,0xf3,0xf6,0xef,0xff,0xf3,0xf6,0xef,0xff,0xf1,0xf5,0xf0,0xff,0xf2,0xf6,0xf1,
0xff,0xf8,0xfa,0xf6,0xff,0xf7,0xfa,0xf7,0xff,0xe9,0xf4,0xed,0xff,0xe0,0xee,0xe4,
0xff,0xde,0xee,0xe1,0xff,0xe4,0xf3,0xef,0xff,0xea,0xf6,0xf7,0xff,0xe6,0xf7,0xf6,
0xff,0xdf,0xf5,0xf2,0xff,0xed,0xf7,0xf4,0xff,0xf2,0xf8,0xf5,0xff,0xee,0xf6,0xf2,
0xff,0xed,0xf6,0xf2,0xff,0xf8,0xfb,0xf9,0xff,0xfb,0xfb,0xfa,0xff,0xe2,0xe7,0xe4,
0xff,0xf5,0xf7,0xf6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xe7,0xf3,0xed,0xff,0xb3,0xdb,0xcc,0xff,0xeb,0xf9,0xeb,
0xff,0xfe,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xec,0xfc,0xf2,0xff,0xd8,0xf7,0xe3,0xff,0xf7,0xfd,0xf5,0xff,0xfc,0xfe,0xf9,
0xff,0xfd,0xff,0xfe,0xff,0xea,0xea,0xea,0xff,0x71,0x71,0x71,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x32,0x32,0x32,
0xee,0x6,0x6,0x6,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x2,0x9,0x1e,0x1e,0x1e,
0xb1,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1c,0x1c,0x1c,0xff,0x2a,0x2a,0x2a,
0xff,0x38,0x38,0x38,0xff,0x30,0x30,0x30,0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,
0xff,0x34,0x34,0x34,0xff,0x35,0x35,0x35,0xff,0x56,0x62,0x5d,0xff,0x43,0x71,0x67,
0xff,0x43,0x74,0x68,0xff,0x48,0x77,0x6d,0xff,0x49,0x79,0x73,0xff,0x4d,0x7e,0x7c,
0xff,0x58,0x87,0x85,0xff,0x65,0x94,0x90,0xff,0x77,0xa2,0x9a,0xff,0x8c,0xb0,0xa4,
0xff,0xa1,0xbc,0xac,0xff,0xba,0xc9,0xb4,0xff,0xd1,0xd6,0xbd,0xff,0xe0,0xe0,0xc6,
0xff,0xe9,0xe6,0xce,0xff,0xee,0xeb,0xd4,0xff,0xf6,0xef,0xd9,0xff,0xf0,0xef,0xda,
0xff,0xb2,0xe5,0xcd,0xff,0xf1,0xf4,0xe1,0xff,0xfa,0xf4,0xe1,0xff,0xf8,0xf3,0xe0,
0xff,0xf7,0xf1,0xdc,0xff,0xf2,0xee,0xd6,0xff,0xba,0xce,0xb1,0xff,0xef,0xee,0xd6,
0xff,0xf7,0xf3,0xe0,0xff,0xf5,0xf2,0xdf,0xff,0xdf,0xe9,0xd4,0xff,0xb1,0xde,0xc7,
0xff,0xa7,0xdc,0xc7,0xff,0xc7,0xe2,0xd1,0xff,0xdf,0xe9,0xdc,0xff,0xe4,0xec,0xde,
0xff,0xe2,0xec,0xdf,0xff,0xe9,0xf0,0xe4,0xff,0xe5,0xed,0xdf,0xff,0xe2,0xeb,0xd9,
0xff,0xee,0xf2,0xe2,0xff,0xf7,0xf7,0xed,0xff,0xf8,0xf8,0xef,0xff,0xf5,0xf7,0xef,
0xff,0xf3,0xf6,0xf0,0xff,0xf4,0xf7,0xf1,0xff,0xf6,0xf8,0xf2,0xff,0xf7,0xf9,0xf4,
0xff,0xec,0xf6,0xef,0xff,0xde,0xf0,0xe6,0xff,0xe3,0xf1,0xe6,0xff,0xea,0xf4,0xeb,
0xff,0xea,0xf6,0xf1,0xff,0xef,0xf8,0xf8,0xff,0xea,0xf5,0xf6,0xff,0xda,0xf1,0xee,
0xff,0xe0,0xf1,0xef,0xff,0xe9,0xf3,0xf2,0xff,0xeb,0xf5,0xf2,0xff,0xf2,0xf9,0xf6,
0xff,0xfd,0xfe,0xfd,0xff,0xfd,0xfd,0xfd,0xff,0xe7,0xec,0xe9,0xff,0xf2,0xf5,0xf3,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xf7,0xfc,0xfa,0xff,0xbf,0xdf,0xd1,0xff,0xdc,0xf1,0xe6,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf2,0xfd,0xf5,
0xff,0xe2,0xfa,0xe5,0xff,0xf8,0xfe,0xf6,0xff,0xfe,0xff,0xfc,0xff,0xfe,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xde,0xde,0xdc,0xff,0x68,0x68,0x67,0xff,0x58,0x58,0x58,
0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x53,0x53,0x53,0xff,0x2c,0x2c,0x2c,
0xd7,0x5,0x5,0x5,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x4,0x11,0x1f,0x1f,0x1f,
0xc8,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1c,0x1c,0x1c,0xff,0x2e,0x2e,0x2e,
0xff,0x36,0x36,0x36,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x31,0x31,0x31,
0xff,0x33,0x33,0x33,0xff,0x34,0x34,0x34,0xff,0x58,0x65,0x5f,0xff,0x44,0x6c,0x62,
0xff,0x45,0x70,0x66,0xff,0x49,0x76,0x6e,0xff,0x4c,0x7a,0x76,0xff,0x51,0x7f,0x7d,
0xff,0x5c,0x89,0x87,0xff,0x6c,0x97,0x93,0xff,0x80,0xa7,0x9f,0xff,0x96,0xb6,0xa9,
0xff,0xac,0xc2,0xb1,0xff,0xc6,0xd1,0xba,0xff,0xdb,0xdd,0xc3,0xff,0xe6,0xe3,0xca,
0xff,0xee,0xe8,0xcf,0xff,0xf2,0xeb,0xd4,0xff,0xfa,0xf0,0xda,0xff,0xec,0xee,0xd7,
0xff,0xbb,0xe1,0xc6,0xff,0xf6,0xf6,0xe2,0xff,0xfa,0xf3,0xdf,0xff,0xf9,0xf2,0xdb,
0xff,0xf8,0xf1,0xd8,0xff,0xe8,0xe5,0xc8,0xff,0xd5,0xdc,0xbf,0xff,0xfc,0xf5,0xe2,
0xff,0xf9,0xf4,0xe1,0xff,0xe1,0xe9,0xcf,0xff,0xc5,0xe2,0xc5,0xff,0xc4,0xe1,0xc8,
0xff,0xcc,0xde,0xcc,0xff,0xd3,0xe1,0xd2,0xff,0xdf,0xe9,0xda,0xff,0xe0,0xe9,0xdb,
0xff,0xdc,0xe7,0xdb,0xff,0xd8,0xe4,0xd2,0xff,0xdd,0xe7,0xd2,0xff,0xf0,0xf3,0xe3,
0xff,0xf8,0xf8,0xed,0xff,0xf7,0xf8,0xee,0xff,0xf6,0xf7,0xed,0xff,0xf5,0xf6,0xef,
0xff,0xf5,0xf7,0xf1,0xff,0xf7,0xf8,0xf1,0xff,0xf4,0xf8,0xef,0xff,0xe9,0xf4,0xe8,
0xff,0xe1,0xf2,0xe6,0xff,0xeb,0xf6,0xed,0xff,0xf7,0xfa,0xf6,0xff,0xf3,0xfa,0xf5,
0xff,0xef,0xf7,0xf4,0xff,0xeb,0xf4,0xf1,0xff,0xde,0xed,0xeb,0xff,0xd9,0xec,0xe9,
0xff,0xe5,0xf2,0xf1,0xff,0xed,0xf6,0xf5,0xff,0xf5,0xfb,0xf8,0xff,0xfc,0xff,0xfc,
0xff,0xfe,0xfe,0xfd,0xff,0xeb,0xee,0xeb,0xff,0xf1,0xf4,0xf2,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xd8,0xea,0xe1,0xff,0xce,0xe5,0xdc,0xff,0xfc,0xfe,0xfd,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf8,0xfe,0xf7,0xff,0xed,0xfc,0xec,
0xff,0xf9,0xfe,0xf8,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xd4,0xd4,0xd3,0xff,0x61,0x61,0x61,0xff,0x58,0x58,0x58,
0xff,0x58,0x58,0x58,0xff,0x58,0x58,0x58,0xff,0x50,0x50,0x50,0xff,0x26,0x26,0x26,
0xc0,0x4,0x4,0x4,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x6,0x6,0x1e,0x1f,0x1f,0x1f,
0xdb,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1c,0x1c,0x1c,0xff,0x30,0x30,0x30,
0xff,0x34,0x34,0x34,0xff,0x2e,0x2e,0x2e,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,
0xff,0x32,0x32,0x32,0xff,0x33,0x33,0x33,0xff,0x58,0x68,0x62,0xff,0x41,0x67,0x5d,
0xff,0x44,0x6d,0x64,0xff,0x49,0x76,0x70,0xff,0x4f,0x7a,0x78,0xff,0x53,0x80,0x7f,
0xff,0x5d,0x8d,0x8a,0xff,0x70,0x9b,0x96,0xff,0x87,0xaa,0xa1,0xff,0xa3,0xbb,0xab,
0xff,0xbf,0xcb,0xb4,0xff,0xd7,0xd9,0xbe,0xff,0xe4,0xe1,0xc5,0xff,0xec,0xe7,0xcb,
0xff,0xf3,0xeb,0xd1,0xff,0xf5,0xed,0xd5,0xff,0xfc,0xf1,0xda,0xff,0xeb,0xed,0xd5,
0xff,0xc2,0xdf,0xc5,0xff,0xf8,0xf7,0xe2,0xff,0xfa,0xf1,0xd9,0xff,0xf8,0xef,0xd5,
0xff,0xf5,0xed,0xd0,0xff,0xf2,0xeb,0xd0,0xff,0xf8,0xf3,0xde,0xff,0xfa,0xf4,0xdf,
0xff,0xe4,0xe9,0xca,0xff,0xd8,0xe7,0xc7,0xff,0xe4,0xeb,0xd0,0xff,0xd8,0xdf,0xc9,
0xff,0xc9,0xd8,0xc6,0xff,0xd1,0xdf,0xcd,0xff,0xd8,0xe3,0xd3,0xff,0xc9,0xda,0xcb,
0xff,0xc9,0xdb,0xc6,0xff,0xdb,0xe4,0xce,0xff,0xf1,0xf2,0xe4,0xff,0xf9,0xf8,0xed,
0xff,0xf8,0xf8,0xed,0xff,0xf6,0xf6,0xec,0xff,0xf4,0xf5,0xeb,0xff,0xf4,0xf6,0xec,
0xff,0xf5,0xf7,0xec,0xff,0xf2,0xf7,0xe9,0xff,0xec,0xf5,0xe7,0xff,0xed,0xf6,0xeb,
0xff,0xf5,0xf9,0xf3,0xff,0xf9,0xfb,0xf7,0xff,0xf2,0xf8,0xf1,0xff,0xe9,0xf2,0xed,
0xff,0xe6,0xef,0xec,0xff,0xe1,0xed,0xe8,0xff,0xdd,0xec,0xe8,0xff,0xe6,0xf2,0xf1,
0xff,0xef,0xf8,0xf6,0xff,0xf4,0xfb,0xf9,0xff,0xfa,0xfd,0xfb,0xff,0xfd,0xfe,0xfe,
0xff,0xed,0xf0,0xed,0xff,0xf0,0xf3,0xf0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xed,0xf8,0xf1,
0xff,0xc6,0xe2,0xd5,0xff,0xf7,0xfa,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfa,0xfe,0xf8,0xff,0xf3,0xfd,0xf0,0xff,0xfd,0xff,0xfb,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xc9,0xc9,0xc9,0xff,0x5b,0x5b,0x5b,0xff,0x59,0x59,0x59,
0xff,0x59,0x59,0x59,0xff,0x59,0x59,0x59,0xff,0x4d,0x4d,0x4d,0xff,0x1d,0x1d,0x1d,
0xa3,0x3,0x3,0x3,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x7,0x7,0x2d,0x1f,0x1f,0x1f,
0xe8,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1c,0x1c,0x1c,0xff,0x31,0x31,0x31,
0xff,0x32,0x32,0x32,0xff,0x2d,0x2d,0x2d,0xff,0x2e,0x2e,0x2e,0xff,0x2f,0x2f,0x2f,
0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x55,0x68,0x62,0xff,0x41,0x68,0x60,
0xff,0x4a,0x73,0x6c,0xff,0x4f,0x79,0x74,0xff,0x53,0x7e,0x7b,0xff,0x59,0x85,0x83,
0xff,0x6a,0x95,0x8e,0xff,0x80,0xa3,0x9a,0xff,0x99,0xb3,0xa3,0xff,0xb8,0xc4,0xac,
0xff,0xd0,0xd3,0xb7,0xff,0xe1,0xdd,0xbf,0xff,0xea,0xe4,0xc5,0xff,0xf1,0xe8,0xcc,
0xff,0xf5,0xec,0xd1,0xff,0xf8,0xef,0xd6,0xff,0xfd,0xf1,0xdb,0xff,0xef,0xf0,0xd8,
0xff,0xcf,0xe6,0xcb,0xff,0xfb,0xf3,0xda,0xff,0xf8,0xee,0xd0,0xff,0xf6,0xec,0xcd,
0xff,0xf6,0xed,0xd1,0xff,0xfc,0xf4,0xde,0xff,0xfa,0xf4,0xdc,0xff,0xe7,0xe9,0xc5,
0xff,0xe7,0xeb,0xcc,0xff,0xf4,0xf0,0xd7,0xff,0xe6,0xe6,0xc9,0xff,0xce,0xd8,0xbe,
0xff,0xc7,0xd6,0xbf,0xff,0xcb,0xd9,0xc3,0xff,0xbe,0xd1,0xbb,0xff,0xc4,0xd6,0xbe,
0xff,0xdc,0xe4,0xcf,0xff,0xf0,0xf2,0xe3,0xff,0xf6,0xf6,0xe9,0xff,0xf6,0xf5,0xe8,
0xff,0xf3,0xf3,0xe6,0xff,0xf2,0xf3,0xe6,0xff,0xf3,0xf5,0xe7,0xff,0xf5,0xf7,0xe8,
0xff,0xf5,0xf7,0xea,0xff,0xf3,0xf7,0xeb,0xff,0xf6,0xf9,0xf0,0xff,0xfa,0xfb,0xf4,
0xff,0xf7,0xf8,0xf2,0xff,0xf0,0xf6,0xee,0xff,0xe8,0xf1,0xea,0xff,0xe5,0xee,0xe9,
0xff,0xe6,0xf0,0xeb,0xff,0xe5,0xf2,0xed,0xff,0xea,0xf5,0xf1,0xff,0xef,0xf7,0xf6,
0xff,0xf1,0xf8,0xf6,0xff,0xf4,0xfa,0xf8,0xff,0xfb,0xfe,0xfc,0xff,0xed,0xf0,0xee,
0xff,0xee,0xf2,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfa,0xfe,0xfc,0xff,0xd0,0xe8,0xdd,
0xff,0xe6,0xf4,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xfb,0xff,0xf8,0xff,0xf7,0xfe,0xf3,0xff,0xfe,0xff,0xfd,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xb8,0xb8,0xb8,0xff,0x57,0x57,0x57,0xff,0x59,0x59,0x59,
0xff,0x59,0x59,0x59,0xff,0x59,0x59,0x59,0xff,0x4a,0x4a,0x4a,0xff,0x17,0x17,0x17,
0x87,0x1,0x1,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xc,0xc,0x37,0x1f,0x1f,0x1f,
0xee,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x33,0x33,0x33,
0xff,0x2f,0x2f,0x2f,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,0xff,0x2e,0x2e,0x2e,
0xff,0x2f,0x2f,0x2f,0xff,0x33,0x33,0x33,0xff,0x52,0x6a,0x64,0xff,0x4c,0x73,0x6c,
0xff,0x53,0x7a,0x75,0xff,0x56,0x7f,0x7a,0xff,0x5c,0x86,0x7f,0xff,0x68,0x90,0x89,
0xff,0x79,0x9d,0x93,0xff,0x8e,0xab,0x9c,0xff,0xa8,0xba,0xa4,0xff,0xc4,0xca,0xaf,
0xff,0xd9,0xd7,0xb7,0xff,0xe7,0xe0,0xbf,0xff,0xef,0xe6,0xc7,0xff,0xf3,0xea,0xce,
0xff,0xf7,0xed,0xd1,0xff,0xfa,0xef,0xd5,0xff,0xfc,0xf2,0xda,0xff,0xf4,0xf0,0xd6,
0xff,0xdd,0xe7,0xc6,0xff,0xfa,0xee,0xcf,0xff,0xf5,0xeb,0xca,0xff,0xf6,0xed,0xce,
0xff,0xfa,0xf1,0xd8,0xff,0xfb,0xf3,0xdc,0xff,0xf2,0xed,0xcf,0xff,0xf3,0xef,0xd2,
0xff,0xfa,0xf2,0xda,0xff,0xf0,0xea,0xce,0xff,0xdf,0xe0,0xbf,0xff,0xd0,0xd8,0xbb,
0xff,0xca,0xd5,0xb9,0xff,0xc3,0xd0,0xb2,0xff,0xc4,0xd2,0xb6,0xff,0xd8,0xe0,0xcb,
0xff,0xe5,0xe9,0xd8,0xff,0xef,0xf0,0xde,0xff,0xf1,0xf1,0xe0,0xff,0xf2,0xf1,0xe1,
0xff,0xf4,0xf3,0xe4,0xff,0xf7,0xf6,0xe8,0xff,0xf9,0xf8,0xeb,0xff,0xf8,0xf8,0xed,
0xff,0xf7,0xf9,0xee,0xff,0xf9,0xfa,0xef,0xff,0xf9,0xf9,0xf0,0xff,0xf6,0xf7,0xed,
0xff,0xf2,0xf5,0xed,0xff,0xf0,0xf5,0xed,0xff,0xee,0xf4,0xed,0xff,0xef,0xf5,0xef,
0xff,0xf0,0xf7,0xf2,0xff,0xee,0xf6,0xf2,0xff,0xed,0xf5,0xf4,0xff,0xef,0xf6,0xf4,
0xff,0xf2,0xf8,0xf6,0xff,0xf8,0xfc,0xfa,0xff,0xeb,0xf1,0xec,0xff,0xed,0xf2,0xee,
0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xe6,0xee,0xe9,0xff,0xd5,0xe7,0xde,
0xff,0xfc,0xfe,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xf9,
0xff,0xf9,0xfe,0xf4,0xff,0xfe,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xfe,0xfe,0xfe,0xff,0xa7,0xa7,0xa7,0xff,0x56,0x56,0x56,0xff,0x59,0x59,0x59,
0xff,0x59,0x59,0x59,0xff,0x59,0x59,0x59,0xff,0x47,0x47,0x47,0xff,0x12,0x12,0x12,
0x6d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x11,0x11,0x4f,0x1e,0x1e,0x1e,
0xf4,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x34,0x34,0x34,
0xff,0x2d,0x2d,0x2d,0xff,0x2b,0x2b,0x2b,0xff,0x2c,0x2c,0x2c,0xff,0x2d,0x2d,0x2d,
0xff,0x2e,0x2e,0x2e,0xff,0x3a,0x3a,0x39,0xff,0x5d,0x76,0x6c,0xff,0x5d,0x83,0x79,
0xff,0x5b,0x84,0x7d,0xff,0x64,0x8a,0x80,0xff,0x70,0x92,0x86,0xff,0x7b,0x9a,0x8d,
0xff,0x8a,0xa5,0x95,0xff,0x9e,0xb3,0x9d,0xff,0xb6,0xc0,0xa6,0xff,0xce,0xcf,0xaf,
0xff,0xde,0xda,0xb6,0xff,0xeb,0xe2,0xc0,0xff,0xf2,0xe8,0xc8,0xff,0xf6,0xeb,0xcd,
0xff,0xf9,0xed,0xd1,0xff,0xfb,0xef,0xd4,0xff,0xfc,0xf0,0xd5,0xff,0xf8,0xed,0xce,
0xff,0xee,0xe7,0xc5,0xff,0xf5,0xea,0xc7,0xff,0xf7,0xec,0xcb,0xff,0xfa,0xf0,0xd4,
0xff,0xfb,0xf3,0xdb,0xff,0xfa,0xf2,0xdb,0xff,0xfa,0xf2,0xdb,0xff,0xfa,0xf2,0xdb,
0xff,0xf5,0xee,0xd2,0xff,0xea,0xe6,0xc6,0xff,0xdf,0xe0,0xbe,0xff,0xd6,0xda,0xba,
0xff,0xd2,0xd8,0xb8,0xff,0xcd,0xd5,0xb5,0xff,0xcd,0xd7,0xbd,0xff,0xda,0xe1,0xcb,
0xff,0xe6,0xea,0xd7,0xff,0xf0,0xf0,0xe0,0xff,0xf4,0xf2,0xe3,0xff,0xf8,0xf5,0xe8,
0xff,0xfc,0xf9,0xee,0xff,0xfc,0xf9,0xee,0xff,0xf9,0xf9,0xec,0xff,0xf9,0xf9,0xed,
0xff,0xfb,0xf9,0xee,0xff,0xfa,0xf8,0xee,0xff,0xf7,0xf7,0xed,0xff,0xf6,0xf7,0xed,
0xff,0xf6,0xf8,0xef,0xff,0xf6,0xf8,0xf1,0xff,0xf3,0xf7,0xf1,0xff,0xf3,0xf7,0xf3,
0xff,0xf2,0xf7,0xf1,0xff,0xef,0xf5,0xf1,0xff,0xee,0xf5,0xf3,0xff,0xf1,0xf7,0xf5,
0xff,0xf5,0xf9,0xf7,0xff,0xe8,0xf0,0xeb,0xff,0xee,0xf3,0xee,0xff,0xfe,0xff,0xfd,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfc,
0xff,0xfe,0xff,0xfd,0xff,0xf8,0xf9,0xf7,0xff,0xd8,0xde,0xd4,0xff,0xf3,0xf5,0xf3,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfa,0xff,0xfb,0xff,0xf7,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xfa,0xfa,0xfa,0xff,0x97,0x97,0x97,0xff,0x58,0x58,0x58,0xff,0x5a,0x5a,0x5a,
0xff,0x59,0x59,0x59,0xff,0x59,0x59,0x59,0xff,0x43,0x43,0x43,0xff,0xf,0xf,0xf,
0x5c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x13,0x13,0x68,0x1d,0x1d,0x1d,
0xf8,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x20,0x20,0x20,0xff,0x34,0x34,0x34,
0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x2b,0x2b,0x2b,0xff,0x2c,0x2c,0x2c,
0xff,0x2c,0x2c,0x2c,0xff,0x40,0x40,0x3f,0xff,0x71,0x88,0x7b,0xff,0x75,0x96,0x87,
0xff,0x77,0x97,0x87,0xff,0x7a,0x98,0x88,0xff,0x7e,0x9b,0x8c,0xff,0x84,0xa0,0x8f,
0xff,0x92,0xab,0x97,0xff,0xa8,0xb7,0xa1,0xff,0xc3,0xc6,0xa6,0xff,0xd6,0xd3,0xad,
0xff,0xe3,0xdb,0xb5,0xff,0xee,0xe2,0xc0,0xff,0xf4,0xe8,0xc7,0xff,0xf7,0xeb,0xcb,
0xff,0xf9,0xed,0xcf,0xff,0xfb,0xee,0xd0,0xff,0xf9,0xec,0xc9,0xff,0xf6,0xe9,0xc5,
0xff,0xf5,0xe8,0xc2,0xff,0xf6,0xea,0xc6,0xff,0xf9,0xee,0xcf,0xff,0xfb,0xf1,0xd7,
0xff,0xfb,0xf1,0xda,0xff,0xfa,0xf2,0xda,0xff,0xfa,0xf1,0xd9,0xff,0xf8,0xf0,0xd6,
0xff,0xf3,0xed,0xd0,0xff,0xea,0xe6,0xc8,0xff,0xe1,0xe2,0xc2,0xff,0xda,0xde,0xbb,
0xff,0xd5,0xda,0xb9,0xff,0xd0,0xd7,0xb6,0xff,0xcd,0xd8,0xbb,0xff,0xd9,0xe2,0xce,
0xff,0xe9,0xee,0xe0,0xff,0xf2,0xf2,0xe5,0xff,0xf8,0xf6,0xe8,0xff,0xfc,0xf9,0xee,
0xff,0xfd,0xfa,0xef,0xff,0xfa,0xf9,0xed,0xff,0xfb,0xfa,0xee,0xff,0xfc,0xfa,0xf0,
0xff,0xfc,0xf9,0xef,0xff,0xfa,0xf8,0xee,0xff,0xf9,0xf9,0xef,0xff,0xfa,0xf9,0xf0,
0xff,0xf9,0xf9,0xf1,0xff,0xf6,0xf7,0xf0,0xff,0xf2,0xf6,0xf0,0xff,0xf3,0xf6,0xf0,
0xff,0xf0,0xf5,0xef,0xff,0xee,0xf4,0xf0,0xff,0xf0,0xf6,0xf3,0xff,0xf2,0xf8,0xf5,
0xff,0xe3,0xee,0xe9,0xff,0xed,0xf3,0xee,0xff,0xfd,0xfe,0xfa,0xff,0xfd,0xfd,0xfa,
0xff,0xfe,0xfe,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfb,0xff,0xfb,0xfe,0xf8,
0xff,0xff,0xff,0xff,0xff,0xe9,0xf0,0xe8,0xff,0xe3,0xe9,0xe1,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfb,0xff,0xfc,0xff,0xf9,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xf6,0xf6,0xf6,0xff,0x89,0x89,0x89,0xff,0x58,0x58,0x58,0xff,0x5a,0x5a,0x5a,
0xff,0x59,0x59,0x59,0xff,0x58,0x58,0x58,0xff,0x3e,0x3e,0x3e,0xf7,0xd,0xd,0xd,
0x4c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x14,0x14,0x81,0x1f,0x1f,0x1f,
0xfc,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x21,0x21,0x21,0xff,0x34,0x34,0x34,
0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,0xff,0x2b,0x2b,0x2b,
0xff,0x2b,0x2b,0x2b,0xff,0x48,0x49,0x45,0xff,0x87,0x97,0x84,0xff,0x8c,0xa3,0x8e,
0xff,0x8e,0xa5,0x8f,0xff,0x8c,0xa5,0x90,0xff,0x89,0xa3,0x92,0xff,0x8c,0xa6,0x94,
0xff,0x96,0xad,0x99,0xff,0xae,0xba,0xa0,0xff,0xcb,0xca,0xa3,0xff,0xdc,0xd3,0xaa,
0xff,0xe7,0xdb,0xb3,0xff,0xee,0xe2,0xbc,0xff,0xf4,0xe6,0xc4,0xff,0xf7,0xea,0xc9,
0xff,0xf9,0xeb,0xc9,0xff,0xf7,0xe8,0xc1,0xff,0xf3,0xe4,0xbb,0xff,0xf2,0xe3,0xba,
0xff,0xf5,0xe7,0xbf,0xff,0xf9,0xeb,0xc8,0xff,0xf9,0xee,0xd0,0xff,0xfa,0xf0,0xd5,
0xff,0xfa,0xf0,0xd7,0xff,0xf8,0xf0,0xd7,0xff,0xf8,0xf0,0xd9,0xff,0xf7,0xef,0xd7,
0xff,0xf2,0xec,0xd0,0xff,0xea,0xe7,0xcb,0xff,0xe3,0xe4,0xc5,0xff,0xdd,0xe0,0xbe,
0xff,0xdc,0xe0,0xbf,0xff,0xd4,0xdd,0xbf,0xff,0xcd,0xdd,0xc5,0xff,0xd8,0xe5,0xd6,
0xff,0xea,0xef,0xe1,0xff,0xf6,0xf4,0xe5,0xff,0xfb,0xf8,0xe9,0xff,0xfd,0xf9,0xee,
0xff,0xfc,0xf9,0xee,0xff,0xfd,0xfa,0xef,0xff,0xfe,0xfb,0xf0,0xff,0xfd,0xfa,0xf0,
0xff,0xfd,0xfa,0xef,0xff,0xfd,0xf9,0xef,0xff,0xfd,0xf9,0xef,0xff,0xfb,0xf9,0xef,
0xff,0xf8,0xf8,0xed,0xff,0xf5,0xf6,0xec,0xff,0xf4,0xf6,0xed,0xff,0xf3,0xf6,0xed,
0xff,0xef,0xf4,0xed,0xff,0xf0,0xf6,0xf1,0xff,0xf0,0xf6,0xf2,0xff,0xe0,0xeb,0xe5,
0xff,0xef,0xf4,0xef,0xff,0xfd,0xfd,0xf8,0xff,0xfc,0xfc,0xf8,0xff,0xfd,0xfd,0xf9,
0xff,0xfe,0xfd,0xfa,0xff,0xfe,0xfe,0xfb,0xff,0xff,0xfe,0xfb,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfb,0xff,0xf9,0xfc,0xf4,0xff,0xfc,0xff,0xfb,
0xff,0xfc,0xfe,0xfc,0xff,0xe2,0xee,0xe1,0xff,0xf6,0xfa,0xf6,0xff,0xff,0xff,0xff,
0xff,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfa,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xf0,0xf0,0xf0,0xff,0x78,0x78,0x78,0xff,0x5a,0x5a,0x5a,0xff,0x5a,0x5a,0x5a,
0xff,0x59,0x59,0x59,0xff,0x57,0x57,0x57,0xff,0x37,0x37,0x37,0xeb,0xa,0xa,0xa,
0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x16,0x16,0x95,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x23,0x23,0x23,0xff,0x33,0x33,0x33,
0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x29,0x29,0x29,0xff,0x2a,0x2a,0x2a,
0xff,0x29,0x29,0x29,0xff,0x51,0x52,0x4c,0xff,0x96,0xa2,0x87,0xff,0xa0,0xac,0x90,
0xff,0xa1,0xae,0x91,0xff,0x9c,0xac,0x93,0xff,0x92,0xa9,0x96,0xff,0x90,0xa9,0x99,
0xff,0x9d,0xaf,0x9c,0xff,0xb5,0xbb,0x9d,0xff,0xcc,0xc8,0xa1,0xff,0xdc,0xd2,0xa8,
0xff,0xe6,0xd9,0xaf,0xff,0xed,0xde,0xb5,0xff,0xf2,0xe2,0xbb,0xff,0xf5,0xe5,0xbb,
0xff,0xf4,0xe3,0xb4,0xff,0xf0,0xde,0xae,0xff,0xf0,0xdf,0xae,0xff,0xf4,0xe2,0xb4,
0xff,0xf6,0xe7,0xbd,0xff,0xf8,0xeb,0xc9,0xff,0xf9,0xee,0xd1,0xff,0xf8,0xef,0xd4,
0xff,0xf9,0xf0,0xd7,0xff,0xf8,0xf0,0xd9,0xff,0xf9,0xf1,0xda,0xff,0xf5,0xef,0xd7,
0xff,0xf0,0xeb,0xd0,0xff,0xe9,0xe8,0xcc,0xff,0xe4,0xe5,0xc7,0xff,0xe5,0xe6,0xc7,
0xff,0xde,0xe6,0xcb,0xff,0xd4,0xe3,0xcd,0xff,0xd1,0xe4,0xd1,0xff,0xe1,0xeb,0xda,
0xff,0xf4,0xf3,0xe2,0xff,0xfb,0xf7,0xe7,0xff,0xfd,0xf8,0xea,0xff,0xfd,0xf9,0xed,
0xff,0xfe,0xfa,0xef,0xff,0xff,0xfb,0xf0,0xff,0xff,0xfa,0xf0,0xff,0xfe,0xfa,0xf0,
0xff,0xfe,0xfa,0xef,0xff,0xfe,0xf9,0xef,0xff,0xfd,0xf9,0xef,0xff,0xfb,0xf8,0xed,
0xff,0xf9,0xf7,0xeb,0xff,0xf8,0xf7,0xeb,0xff,0xf8,0xf7,0xec,0xff,0xf6,0xf6,0xec,
0xff,0xf4,0xf6,0xef,0xff,0xef,0xf4,0xee,0xff,0xe5,0xed,0xe6,0xff,0xf2,0xf6,0xef,
0xff,0xfd,0xfd,0xf7,0xff,0xfb,0xfb,0xf6,0xff,0xfd,0xfc,0xf7,0xff,0xfe,0xfd,0xf8,
0xff,0xfe,0xfe,0xf9,0xff,0xff,0xfe,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfa,0xff,0xf9,0xfc,0xf1,0xff,0xfa,0xfd,0xf5,0xff,0xff,0xff,0xff,
0xff,0xf2,0xf7,0xf1,0xff,0xe9,0xf3,0xe7,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xe7,0xe7,0xe7,0xff,0x6a,0x6a,0x6a,0xff,0x5a,0x5a,0x5a,0xff,0x5a,0x5a,0x5a,
0xff,0x59,0x59,0x59,0xff,0x55,0x55,0x55,0xff,0x2e,0x2e,0x2e,0xdb,0x6,0x6,0x6,
0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x19,0x19,0x19,0xa2,0x1d,0x1d,0x1d,
0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x25,0x25,0x25,0xff,0x31,0x31,0x31,
0xff,0x26,0x26,0x26,0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,0xff,0x29,0x29,0x29,
0xff,0x27,0x27,0x27,0xff,0x5a,0x5a,0x51,0xff,0xa7,0xab,0x8b,0xff,0xaf,0xb4,0x91,
0xff,0xb1,0xb6,0x91,0xff,0xaa,0xb2,0x92,0xff,0x9a,0xab,0x96,0xff,0x93,0xa9,0x9a,
0xff,0xa1,0xb1,0x9c,0xff,0xb9,0xbc,0x9c,0xff,0xcb,0xc6,0x9e,0xff,0xd8,0xce,0xa4,
0xff,0xe1,0xd4,0xa8,0xff,0xe9,0xda,0xac,0xff,0xee,0xdd,0xae,0xff,0xef,0xdc,0xa7,
0xff,0xeb,0xd8,0xa1,0xff,0xeb,0xda,0xa2,0xff,0xef,0xdf,0xac,0xff,0xf4,0xe3,0xb6,
0xff,0xf5,0xe8,0xc2,0xff,0xf5,0xec,0xcd,0xff,0xf6,0xed,0xd2,0xff,0xf7,0xee,0xd5,
0xff,0xf7,0xf0,0xd7,0xff,0xf8,0xf0,0xda,0xff,0xf7,0xf1,0xda,0xff,0xf4,0xee,0xd6,
0xff,0xee,0xea,0xd0,0xff,0xea,0xe9,0xcc,0xff,0xe9,0xe9,0xcc,0xff,0xe5,0xe9,0xd1,
0xff,0xdc,0xe7,0xd3,0xff,0xd8,0xe7,0xd4,0xff,0xe4,0xec,0xd9,0xff,0xf4,0xf3,0xe0,
0xff,0xfa,0xf7,0xe6,0xff,0xfc,0xf9,0xeb,0xff,0xfd,0xfa,0xed,0xff,0xfe,0xfa,0xef,
0xff,0xff,0xfb,0xf1,0xff,0xff,0xfb,0xf1,0xff,0xff,0xfb,0xf1,0xff,0xff,0xfb,0xf0,
0xff,0xff,0xfa,0xf0,0xff,0xfe,0xfa,0xef,0xff,0xfe,0xf9,0xee,0xff,0xfc,0xf8,0xec,
0xff,0xfb,0xf8,0xeb,0xff,0xfa,0xf8,0xeb,0xff,0xfa,0xf7,0xea,0xff,0xf9,0xf8,0xec,
0xff,0xf4,0xf6,0xec,0xff,0xec,0xf0,0xe8,0xff,0xf6,0xf7,0xf0,0xff,0xfd,0xfc,0xf6,
0xff,0xfc,0xfb,0xf5,0xff,0xfd,0xfc,0xf7,0xff,0xfe,0xfd,0xf8,0xff,0xff,0xfe,0xf9,
0xff,0xff,0xfe,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,
0xff,0xfa,0xfc,0xf0,0xff,0xf9,0xfc,0xf1,0xff,0xff,0xff,0xfb,0xff,0xfe,0xfe,0xfd,
0xff,0xef,0xf6,0xe9,0xff,0xf5,0xfa,0xf2,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xdb,0xdb,0xdb,0xff,0x63,0x63,0x63,0xff,0x5a,0x5a,0x5a,0xff,0x59,0x59,0x59,
0xff,0x59,0x59,0x59,0xff,0x53,0x53,0x53,0xff,0x28,0x28,0x28,0xcd,0x2,0x2,0x2,
0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x3,0x3,0x3,0xc,0x1d,0x1d,0x1d,0xbb,0x1d,0x1d,0x1d,
0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x27,0x27,0x27,0xff,0x2f,0x2f,0x2f,
0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x27,0x27,0x27,0xff,0x28,0x28,0x28,
0xff,0x25,0x25,0x26,0xff,0x61,0x60,0x54,0xff,0xb2,0xb1,0x8a,0xff,0xb9,0xb7,0x8f,
0xff,0xbb,0xb8,0x8f,0xff,0xb3,0xb5,0x90,0xff,0xa1,0xad,0x95,0xff,0x96,0xaa,0x98,
0xff,0xa3,0xb0,0x9a,0xff,0xbb,0xbb,0x97,0xff,0xcb,0xc3,0x97,0xff,0xd5,0xc9,0x9c,
0xff,0xdc,0xcf,0xa0,0xff,0xe4,0xd4,0xa0,0xff,0xe6,0xd3,0x97,0xff,0xe4,0xd0,0x93,
0xff,0xe7,0xd3,0x97,0xff,0xeb,0xd9,0xa1,0xff,0xef,0xde,0xad,0xff,0xf2,0xe5,0xbf,
0xff,0xf3,0xea,0xca,0xff,0xf3,0xeb,0xcf,0xff,0xf5,0xec,0xd2,0xff,0xf5,0xee,0xd3,
0xff,0xf4,0xee,0xd5,0xff,0xf5,0xef,0xd7,0xff,0xf5,0xef,0xd7,0xff,0xf2,0xed,0xd3,
0xff,0xed,0xea,0xcf,0xff,0xea,0xe9,0xcd,0xff,0xe7,0xea,0xd2,0xff,0xe2,0xe9,0xd5,
0xff,0xe2,0xea,0xd7,0xff,0xeb,0xef,0xda,0xff,0xf6,0xf4,0xe0,0xff,0xf9,0xf7,0xe6,
0xff,0xfb,0xf9,0xeb,0xff,0xfe,0xfb,0xef,0xff,0xfe,0xfb,0xf1,0xff,0xff,0xfc,0xf2,
0xff,0xff,0xfd,0xf3,0xff,0xff,0xfd,0xf4,0xff,0xff,0xfd,0xf3,0xff,0xff,0xfc,0xf3,
0xff,0xff,0xfc,0xf2,0xff,0xff,0xfb,0xf0,0xff,0xfe,0xfa,0xee,0xff,0xfe,0xf9,0xed,
0xff,0xfd,0xf9,0xed,0xff,0xfd,0xf9,0xed,0xff,0xfc,0xf8,0xec,0xff,0xfc,0xf9,0xee,
0xff,0xfa,0xf9,0xee,0xff,0xfc,0xfa,0xf1,0xff,0xfe,0xfc,0xf4,0xff,0xfe,0xfc,0xf5,
0xff,0xfe,0xfd,0xf7,0xff,0xff,0xfd,0xf8,0xff,0xff,0xfe,0xfa,0xff,0xff,0xfe,0xfa,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xff,0xfc,0xfc,0xf2,
0xff,0xfa,0xfc,0xef,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xfe,0xfe,0xfb,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xcd,0xcd,0xcd,0xff,0x60,0x60,0x60,0xff,0x5a,0x5a,0x5a,0xff,0x59,0x59,0x59,
0xff,0x58,0x58,0x58,0xff,0x51,0x51,0x51,0xff,0x25,0x25,0x25,0xc2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x5,0x5,0x5,0x19,0x20,0x20,0x20,0xd0,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1d,0x1d,0x1d,0xff,0x29,0x29,0x29,0xff,0x2c,0x2c,0x2c,
0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,0xff,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x6a,0x68,0x59,0xff,0xb7,0xb2,0x88,0xff,0xbe,0xb7,0x87,
0xff,0xc0,0xb7,0x87,0xff,0xb8,0xb3,0x89,0xff,0xa8,0xae,0x90,0xff,0x9c,0xaa,0x93,
0xff,0xa8,0xae,0x93,0xff,0xba,0xb6,0x8d,0xff,0xc8,0xbd,0x8b,0xff,0xd0,0xc4,0x90,
0xff,0xd7,0xc7,0x90,0xff,0xda,0xc8,0x88,0xff,0xd9,0xc6,0x85,0xff,0xdf,0xca,0x88,
0xff,0xe6,0xd1,0x92,0xff,0xe9,0xd8,0xa0,0xff,0xed,0xe1,0xb6,0xff,0xef,0xe7,0xc7,
0xff,0xf0,0xe8,0xca,0xff,0xf2,0xea,0xcd,0xff,0xf3,0xeb,0xd0,0xff,0xf3,0xec,0xd1,
0xff,0xf2,0xed,0xd2,0xff,0xf3,0xed,0xd3,0xff,0xf3,0xed,0xd2,0xff,0xf0,0xeb,0xd0,
0xff,0xed,0xea,0xce,0xff,0xe9,0xe9,0xcf,0xff,0xe8,0xeb,0xd5,0xff,0xe9,0xec,0xd7,
0xff,0xef,0xef,0xda,0xff,0xf5,0xf4,0xe0,0xff,0xf8,0xf7,0xe6,0xff,0xfb,0xf9,0xec,
0xff,0xfd,0xfb,0xf0,0xff,0xfe,0xfc,0xf3,0xff,0xff,0xfd,0xf4,0xff,0xff,0xfe,0xf5,
0xff,0xff,0xfe,0xf6,0xff,0xff,0xfe,0xf6,0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf6,
0xff,0xff,0xfd,0xf5,0xff,0xff,0xfc,0xf2,0xff,0xff,0xfb,0xf1,0xff,0xff,0xfa,0xf0,
0xff,0xff,0xfa,0xef,0xff,0xfe,0xf9,0xee,0xff,0xfe,0xfa,0xef,0xff,0xfe,0xfb,0xf0,
0xff,0xff,0xfc,0xf3,0xff,0xff,0xfc,0xf4,0xff,0xff,0xfc,0xf6,0xff,0xff,0xfd,0xf7,
0xff,0xff,0xfe,0xf8,0xff,0xff,0xfe,0xf9,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfe,0xfd,0xf4,0xff,0xfc,0xfc,0xf0,
0xff,0xfe,0xfe,0xf6,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,
0xff,0xff,0xfe,0xf4,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,
0xff,0xbf,0xbf,0xc0,0xff,0x5d,0x5d,0x5d,0xff,0x59,0x59,0x59,0xff,0x58,0x58,0x58,
0xff,0x58,0x58,0x58,0xff,0x4e,0x4e,0x4e,0xff,0x20,0x20,0x20,0xb0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x6,0x6,0x6,0x23,0x1f,0x1f,0x1f,0xe0,0x1f,0x1f,0x1f,
0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,
0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,0xff,0x26,0x26,0x26,
0xff,0x27,0x27,0x27,0xff,0x79,0x76,0x62,0xff,0xba,0xb2,0x86,0xff,0xc0,0xb5,0x80,
0xff,0xc1,0xb3,0x7c,0xff,0xb8,0xb0,0x80,0xff,0xad,0xad,0x86,0xff,0xa9,0xab,0x88,
0xff,0xad,0xac,0x87,0xff,0xb9,0xb0,0x81,0xff,0xc4,0xb7,0x81,0xff,0xcb,0xbc,0x7f,
0xff,0xce,0xbc,0x77,0xff,0xcd,0xbb,0x75,0xff,0xd4,0xbf,0x7b,0xff,0xdd,0xc6,0x7e,
0xff,0xe3,0xd0,0x90,0xff,0xe8,0xda,0xaa,0xff,0xeb,0xe1,0xba,0xff,0xec,0xe3,0xc0,
0xff,0xed,0xe5,0xc5,0xff,0xee,0xe7,0xc8,0xff,0xf0,0xe8,0xcb,0xff,0xf1,0xe9,0xcd,
0xff,0xf1,0xea,0xcd,0xff,0xf1,0xea,0xcd,0xff,0xf0,0xea,0xcc,0xff,0xf0,0xea,0xce,
0xff,0xed,0xe9,0xce,0xff,0xec,0xea,0xd1,0xff,0xed,0xec,0xd3,0xff,0xf0,0xef,0xd7,
0xff,0xf5,0xf3,0xdf,0xff,0xf8,0xf7,0xe6,0xff,0xfb,0xf9,0xeb,0xff,0xfc,0xfb,0xef,
0xff,0xfe,0xfc,0xf3,0xff,0xfe,0xfe,0xf6,0xff,0xff,0xfe,0xf7,0xff,0xff,0xff,0xf9,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xf9,
0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfc,0xf3,0xff,0xff,0xfb,0xf1,
0xff,0xff,0xfb,0xf0,0xff,0xff,0xfb,0xf0,0xff,0xff,0xfc,0xf2,0xff,0xff,0xfd,0xf5,
0xff,0xff,0xfd,0xf6,0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf8,0xff,0xff,0xfe,0xf9,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xfe,0xf5,0xff,0xfc,0xfc,0xf1,0xff,0xfe,0xfe,0xf5,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xfe,0xf4,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xfd,0xfd,
0xff,0xab,0xab,0xab,0xff,0x5a,0x5a,0x5a,0xff,0x59,0x59,0x59,0xff,0x58,0x58,0x58,
0xff,0x58,0x58,0x58,0xff,0x4a,0x4a,0x4a,0xff,0x1c,0x1c,0x1c,0x90,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x8,0x8,0x8,0x2c,0x20,0x20,0x20,0xe9,0x1f,0x1f,0x1f,
0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,0xff,0x2b,0x2b,0x2b,0xff,0x28,0x28,0x28,
0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xff,0x25,0x25,0x25,
0xff,0x28,0x27,0x27,0xff,0x87,0x80,0x63,0xff,0xbc,0xb0,0x7b,0xff,0xc1,0xb1,0x72,
0xff,0xc3,0xae,0x67,0xff,0xba,0xab,0x6d,0xff,0xb1,0xa8,0x77,0xff,0xad,0xa6,0x7c,
0xff,0xaf,0xa8,0x7b,0xff,0xb7,0xad,0x78,0xff,0xbf,0xb0,0x70,0xff,0xc4,0xb1,0x66,
0xff,0xc2,0xb1,0x68,0xff,0xc8,0xb5,0x70,0xff,0xd3,0xbd,0x70,0xff,0xdc,0xc5,0x7c,
0xff,0xe3,0xd3,0x9b,0xff,0xe7,0xd9,0xad,0xff,0xe8,0xdc,0xb1,0xff,0xea,0xde,0xb6,
0xff,0xec,0xe1,0xbc,0xff,0xec,0xe4,0xc1,0xff,0xed,0xe5,0xc4,0xff,0xee,0xe6,0xc6,
0xff,0xef,0xe6,0xc6,0xff,0xef,0xe7,0xc6,0xff,0xef,0xe8,0xc8,0xff,0xef,0xea,0xcb,
0xff,0xf0,0xea,0xce,0xff,0xf0,0xeb,0xcf,0xff,0xf1,0xed,0xd3,0xff,0xf4,0xf1,0xdb,
0xff,0xf7,0xf5,0xe4,0xff,0xf9,0xf7,0xe9,0xff,0xfb,0xf9,0xed,0xff,0xfd,0xfb,0xf1,
0xff,0xfe,0xfd,0xf4,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xf8,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfd,0xf4,
0xff,0xff,0xfd,0xf4,0xff,0xff,0xfd,0xf5,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf8,
0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,
0xff,0xff,0xfe,0xf7,0xff,0xfe,0xfc,0xf2,0xff,0xff,0xfe,0xf5,0xff,0xff,0xff,0xf9,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xfa,0xfa,0xf9,
0xff,0x95,0x95,0x93,0xff,0x56,0x56,0x56,0xff,0x58,0x58,0x58,0xff,0x57,0x57,0x57,
0xff,0x56,0x56,0x56,0xff,0x45,0x45,0x45,0xff,0x14,0x14,0x14,0x65,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xc,0xc,0xc,0x34,0x1f,0x1f,0x1f,0xf2,0x20,0x20,0x20,
0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x2d,0x2d,0x2d,0xff,0x25,0x25,0x25,
0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,
0xff,0x28,0x28,0x27,0xff,0x8f,0x85,0x5d,0xff,0xbb,0xa9,0x69,0xff,0xc2,0xaa,0x5b,
0xff,0xc4,0xa9,0x4f,0xff,0xbe,0xa5,0x59,0xff,0xb6,0xa3,0x65,0xff,0xb2,0xa5,0x6c,
0xff,0xb4,0xa7,0x6e,0xff,0xba,0xaa,0x66,0xff,0xbe,0xab,0x5c,0xff,0xbc,0xab,0x5e,
0xff,0xbe,0xae,0x67,0xff,0xca,0xb5,0x69,0xff,0xd6,0xbf,0x71,0xff,0xdf,0xca,0x87,
0xff,0xe3,0xd2,0x9b,0xff,0xe5,0xd6,0xa3,0xff,0xe7,0xd8,0xaa,0xff,0xe9,0xdc,0xb0,
0xff,0xeb,0xdf,0xb5,0xff,0xed,0xe2,0xba,0xff,0xed,0xe3,0xbe,0xff,0xee,0xe5,0xc0,
0xff,0xef,0xe5,0xc0,0xff,0xf0,0xe5,0xc0,0xff,0xf0,0xe7,0xc3,0xff,0xf0,0xe8,0xc7,
0xff,0xef,0xe9,0xca,0xff,0xf1,0xeb,0xcd,0xff,0xf4,0xee,0xd3,0xff,0xf6,0xf2,0xdc,
0xff,0xf9,0xf6,0xe4,0xff,0xfb,0xf8,0xea,0xff,0xfc,0xfa,0xee,0xff,0xfd,0xfb,0xf1,
0xff,0xfe,0xfd,0xf4,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,
0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,
0xff,0xff,0xfc,0xf3,0xff,0xff,0xfd,0xf4,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfb,0xff,0xf6,0xf6,0xf2,
0xff,0x89,0x88,0x86,0xff,0x55,0x55,0x55,0xff,0x57,0x57,0x57,0xff,0x57,0x57,0x57,
0xff,0x56,0x56,0x56,0xff,0x3f,0x3f,0x3f,0xff,0xc,0xc,0xc,0x41,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x11,0x11,0x11,0x4e,0x20,0x20,0x20,0xfa,0x20,0x20,0x20,
0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x2e,0x2e,0x2e,0xff,0x23,0x23,0x23,
0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,
0xff,0x29,0x28,0x26,0xff,0x98,0x87,0x51,0xff,0xbf,0xa5,0x53,0xff,0xc5,0xa6,0x41,
0xff,0xc6,0xa5,0x3b,0xff,0xc1,0xa5,0x49,0xff,0xbd,0xa6,0x58,0xff,0xbb,0xa9,0x61,
0xff,0xbb,0xaa,0x60,0xff,0xbe,0xac,0x5c,0xff,0xbb,0xac,0x61,0xff,0xbc,0xad,0x62,
0xff,0xc5,0xb0,0x5f,0xff,0xd3,0xba,0x65,0xff,0xdd,0xc4,0x78,0xff,0xe2,0xcb,0x88,
0xff,0xe5,0xd0,0x95,0xff,0xe5,0xd4,0x9f,0xff,0xe8,0xd8,0xa7,0xff,0xe8,0xda,0xac,
0xff,0xea,0xdd,0xb1,0xff,0xed,0xdf,0xb6,0xff,0xed,0xe1,0xba,0xff,0xee,0xe2,0xba,
0xff,0xee,0xe2,0xba,0xff,0xee,0xe2,0xbb,0xff,0xf0,0xe4,0xbd,0xff,0xf0,0xe6,0xc0,
0xff,0xf2,0xe8,0xc4,0xff,0xf2,0xeb,0xca,0xff,0xf4,0xee,0xd2,0xff,0xf7,0xf2,0xdb,
0xff,0xf9,0xf5,0xe4,0xff,0xfb,0xf9,0xea,0xff,0xfd,0xfa,0xef,0xff,0xfe,0xfc,0xf2,
0xff,0xff,0xfe,0xf6,0xff,0xff,0xfe,0xfa,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xfd,0xf4,
0xff,0xff,0xfd,0xf4,0xff,0xff,0xfe,0xf6,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xff,0xf1,0xf0,0xeb,
0xff,0x80,0x80,0x7e,0xff,0x55,0x55,0x55,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,
0xff,0x55,0x55,0x55,0xff,0x3c,0x3c,0x3c,0xff,0x8,0x8,0x8,0x2b,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x14,0x14,0x14,0x6d,0x22,0x22,0x22,0xff,0x20,0x20,0x20,
0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x2e,0x2e,0x2e,0xff,0x21,0x21,0x21,
0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,
0xff,0x2a,0x29,0x25,0xff,0xa7,0x90,0x47,0xff,0xc4,0xa6,0x41,0xff,0xc8,0xa7,0x37,
0xff,0xc9,0xa8,0x39,0xff,0xc6,0xa9,0x47,0xff,0xc3,0xab,0x58,0xff,0xc2,0xad,0x5d,
0xff,0xc2,0xb0,0x63,0xff,0xbd,0xaf,0x68,0xff,0xbe,0xae,0x61,0xff,0xc9,0xb3,0x5f,
0xff,0xd4,0xbb,0x66,0xff,0xdd,0xc2,0x6f,0xff,0xe2,0xc6,0x7c,0xff,0xe4,0xcb,0x87,
0xff,0xe6,0xcf,0x91,0xff,0xe6,0xd2,0x9a,0xff,0xe7,0xd6,0xa0,0xff,0xe9,0xd9,0xa6,
0xff,0xea,0xdb,0xaa,0xff,0xeb,0xdd,0xae,0xff,0xec,0xdd,0xb1,0xff,0xed,0xde,0xb1,
0xff,0xed,0xdf,0xb2,0xff,0xed,0xe0,0xb3,0xff,0xee,0xe1,0xb7,0xff,0xf0,0xe4,0xbd,
0xff,0xf2,0xe6,0xc2,0xff,0xf3,0xea,0xca,0xff,0xf5,0xee,0xd3,0xff,0xf7,0xf2,0xdb,
0xff,0xf9,0xf5,0xe3,0xff,0xfb,0xf9,0xe9,0xff,0xfd,0xfa,0xef,0xff,0xfe,0xfc,0xf3,
0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfc,0xf2,
0xff,0xff,0xfd,0xf4,0xff,0xff,0xfe,0xf6,0xff,0xff,0xfe,0xf7,0xff,0xff,0xff,0xf8,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfc,0xff,0xff,0xfe,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xf8,0xff,0xff,0xfe,0xf7,0xff,0xff,0xff,0xf8,0xff,0xe7,0xe6,0xe0,
0xff,0x74,0x74,0x73,0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x56,0x56,0x56,
0xff,0x54,0x54,0x54,0xff,0x38,0x38,0x38,0xf1,0x7,0x7,0x7,0x24,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x16,0x16,0x16,0x83,0x22,0x22,0x22,0xff,0x21,0x21,0x21,
0xff,0x20,0x20,0x20,0xff,0x22,0x22,0x22,0xff,0x2e,0x2e,0x2e,0xff,0x20,0x20,0x20,
0xff,0x1f,0x1f,0x1f,0xff,0x1f,0x1f,0x1f,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,
0xff,0x31,0x2f,0x26,0xff,0xb2,0x99,0x43,0xff,0xc7,0xa9,0x42,0xff,0xcb,0xac,0x40,
0xff,0xcc,0xad,0x46,0xff,0xcb,0xaf,0x52,0xff,0xca,0xb1,0x5b,0xff,0xc7,0xb1,0x62,
0xff,0xc3,0xaf,0x63,0xff,0xc4,0xae,0x5a,0xff,0xce,0xb6,0x5f,0xff,0xd9,0xbe,0x6d,
0xff,0xdf,0xc3,0x74,0xff,0xe1,0xc6,0x79,0xff,0xe3,0xc8,0x7d,0xff,0xe4,0xcb,0x84,
0xff,0xe5,0xce,0x8c,0xff,0xe7,0xd1,0x92,0xff,0xe7,0xd3,0x98,0xff,0xe8,0xd6,0x9f,
0xff,0xe9,0xd8,0xa2,0xff,0xea,0xd9,0xa3,0xff,0xea,0xd9,0xa6,0xff,0xeb,0xda,0xa8,
0xff,0xec,0xdc,0xaa,0xff,0xed,0xdf,0xae,0xff,0xef,0xe0,0xb4,0xff,0xf0,0xe3,0xbc,
0xff,0xf3,0xe7,0xc3,0xff,0xf4,0xeb,0xcc,0xff,0xf6,0xee,0xd3,0xff,0xf8,0xf2,0xda,
0xff,0xf9,0xf5,0xe2,0xff,0xfb,0xf8,0xe8,0xff,0xfd,0xfa,0xed,0xff,0xfd,0xfc,0xf2,
0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xfb,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xf7,0xff,0xff,0xfc,0xf1,0xff,0xff,0xfd,0xf3,
0xff,0xff,0xfd,0xf4,0xff,0xff,0xfd,0xf4,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xfe,0xf9,0xff,0xff,0xfe,0xf7,
0xff,0xff,0xfe,0xf6,0xff,0xff,0xfe,0xf5,0xff,0xff,0xff,0xf8,0xff,0xd9,0xd8,0xd2,
0xff,0x68,0x68,0x67,0xff,0x55,0x55,0x56,0xff,0x56,0x56,0x56,0xff,0x55,0x55,0x55,
0xff,0x51,0x51,0x51,0xff,0x32,0x32,0x32,0xda,0x6,0x6,0x6,0x1b,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x1b,0x92,0x20,0x20,0x20,0xff,0x22,0x22,0x22,
0xff,0x21,0x21,0x21,0xff,0x23,0x23,0x23,0xff,0x2b,0x2b,0x2b,0xff,0x1e,0x1e,0x1e,
0xff,0x1e,0x1e,0x1e,0xff,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1f,
0xff,0x3d,0x39,0x2c,0xff,0xbe,0xa4,0x4e,0xff,0xcd,0xb0,0x51,0xff,0xd1,0xb4,0x54,
0xff,0xd2,0xb6,0x5c,0xff,0xd1,0xb8,0x64,0xff,0xcd,0xb6,0x66,0xff,0xca,0xb3,0x61,
0xff,0xcd,0xb4,0x5d,0xff,0xd6,0xbb,0x65,0xff,0xdc,0xc2,0x74,0xff,0xe0,0xc7,0x7d,
0xff,0xe2,0xc8,0x7f,0xff,0xe3,0xc9,0x80,0xff,0xe5,0xca,0x81,0xff,0xe5,0xcb,0x84,
0xff,0xe6,0xcd,0x89,0xff,0xe7,0xd0,0x8c,0xff,0xe7,0xd1,0x91,0xff,0xe7,0xd2,0x96,
0xff,0xe8,0xd3,0x97,0xff,0xe9,0xd5,0x9a,0xff,0xea,0xd6,0x9d,0xff,0xeb,0xd8,0xa0,
0xff,0xeb,0xda,0xa7,0xff,0xed,0xdd,0xad,0xff,0xf0,0xe0,0xb4,0xff,0xf1,0xe4,0xbd,
0xff,0xf4,0xe8,0xc4,0xff,0xf5,0xec,0xcc,0xff,0xf7,0xee,0xd4,0xff,0xf9,0xf2,0xda,
0xff,0xfa,0xf5,0xe1,0xff,0xfb,0xf8,0xe6,0xff,0xfd,0xfa,0xec,0xff,0xfe,0xfc,0xf0,
0xff,0xfe,0xfe,0xf5,0xff,0xff,0xff,0xf9,0xff,0xff,0xfe,0xfc,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xf9,0xff,0xff,0xfc,0xf1,0xff,0xff,0xfc,0xf1,0xff,0xff,0xfd,0xf4,
0xff,0xff,0xfc,0xf3,0xff,0xff,0xfe,0xf4,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xf7,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf4,
0xff,0xff,0xfe,0xf4,0xff,0xff,0xfe,0xf4,0xff,0xff,0xff,0xf8,0xff,0xc8,0xc7,0xc3,
0xff,0x5b,0x5b,0x5b,0xff,0x56,0x56,0x56,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,
0xff,0x4e,0x4e,0x4e,0xff,0x28,0x28,0x28,0xbb,0x4,0x4,0x4,0x10,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1e,0x1e,0x1e,0xa5,0x20,0x20,0x20,0xff,0x22,0x22,0x22,
0xff,0x21,0x21,0x21,0xff,0x26,0x26,0x26,0xff,0x2a,0x2a,0x2a,0xff,0x1d,0x1d,0x1d,
0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x1c,0x1c,0x1d,
0xff,0x46,0x42,0x31,0xff,0xc6,0xad,0x59,0xff,0xd3,0xb7,0x5d,0xff,0xd6,0xba,0x65,
0xff,0xd7,0xbc,0x6c,0xff,0xd5,0xbd,0x70,0xff,0xd3,0xbb,0x6e,0xff,0xd6,0xbd,0x6d,
0xff,0xdb,0xc3,0x75,0xff,0xe0,0xc6,0x7c,0xff,0xe1,0xc9,0x81,0xff,0xe3,0xcb,0x85,
0xff,0xe4,0xcb,0x86,0xff,0xe4,0xcb,0x85,0xff,0xe7,0xcb,0x85,0xff,0xe7,0xcb,0x85,
0xff,0xe7,0xcc,0x86,0xff,0xe7,0xcd,0x88,0xff,0xe7,0xcf,0x8a,0xff,0xe7,0xcf,0x8d,
0xff,0xe8,0xd1,0x90,0xff,0xe9,0xd3,0x92,0xff,0xea,0xd4,0x99,0xff,0xec,0xd7,0x9f,
0xff,0xed,0xda,0xa7,0xff,0xef,0xde,0xad,0xff,0xf2,0xe1,0xb5,0xff,0xf3,0xe4,0xbd,
0xff,0xf5,0xe8,0xc4,0xff,0xf7,0xec,0xcd,0xff,0xf8,0xef,0xd5,0xff,0xfa,0xf2,0xdb,
0xff,0xfb,0xf5,0xe1,0xff,0xfc,0xf7,0xe6,0xff,0xfd,0xf9,0xea,0xff,0xfe,0xfb,0xee,
0xff,0xfe,0xfd,0xf3,0xff,0xff,0xff,0xf6,0xff,0xff,0xfe,0xfa,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfc,
0xff,0xff,0xfe,0xf4,0xff,0xff,0xfb,0xee,0xff,0xff,0xfc,0xf2,0xff,0xff,0xfc,0xf1,
0xff,0xff,0xfc,0xf1,0xff,0xff,0xfe,0xf4,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xf9,0xff,0xff,0xfe,0xf9,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,
0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,
0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf8,
0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf2,0xff,0xff,0xfe,0xf2,
0xff,0xff,0xfe,0xf2,0xff,0xff,0xfe,0xf3,0xff,0xff,0xff,0xf8,0xff,0xbc,0xbc,0xb8,
0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,
0xff,0x4b,0x4b,0x4b,0xff,0x21,0x21,0x21,0xa1,0x2,0x2,0x2,0x6,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x2,0x2,0x2,0x8,0x22,0x22,0x22,0xc0,0x22,0x22,0x22,0xff,0x23,0x23,0x23,
0xff,0x22,0x22,0x22,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,0xff,0x1c,0x1c,0x1c,
0xff,0x1c,0x1c,0x1c,0xff,0x1c,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,0xff,0x1a,0x1b,0x1c,
0xff,0x53,0x4c,0x37,0xff,0xcd,0xb3,0x60,0xff,0xd8,0xbb,0x67,0xff,0xda,0xbe,0x6f,
0xff,0xdb,0xc2,0x76,0xff,0xdb,0xc4,0x7d,0xff,0xdc,0xc7,0x82,0xff,0xdf,0xca,0x86,
0xff,0xe1,0xcc,0x8a,0xff,0xe4,0xcd,0x8d,0xff,0xe5,0xcd,0x8e,0xff,0xe6,0xce,0x8e,
0xff,0xe6,0xce,0x8b,0xff,0xe7,0xcd,0x89,0xff,0xe8,0xcc,0x85,0xff,0xe8,0xcc,0x83,
0xff,0xe8,0xcb,0x82,0xff,0xe8,0xcc,0x83,0xff,0xe9,0xcd,0x86,0xff,0xe9,0xcf,0x8a,
0xff,0xe9,0xcf,0x8c,0xff,0xea,0xd2,0x91,0xff,0xeb,0xd5,0x98,0xff,0xee,0xd8,0x9f,
0xff,0xef,0xdb,0xa7,0xff,0xf1,0xde,0xad,0xff,0xf3,0xe1,0xb4,0xff,0xf5,0xe4,0xbc,
0xff,0xf6,0xe8,0xc3,0xff,0xf9,0xec,0xcd,0xff,0xf9,0xef,0xd4,0xff,0xfb,0xf1,0xd9,
0xff,0xfc,0xf4,0xde,0xff,0xfd,0xf6,0xe2,0xff,0xfe,0xf8,0xe7,0xff,0xfe,0xfa,0xec,
0xff,0xff,0xfc,0xf0,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf5,0xff,0xff,0xff,0xf9,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xf9,
0xff,0xff,0xfc,0xef,0xff,0xff,0xfb,0xee,0xff,0xff,0xfb,0xee,0xff,0xff,0xfb,0xee,
0xff,0xff,0xfd,0xf1,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf8,
0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf8,0xff,0xff,0xfe,0xf8,
0xff,0xff,0xfe,0xf8,0xff,0xff,0xfe,0xf8,0xff,0xff,0xfe,0xf8,0xff,0xff,0xfe,0xf8,
0xff,0xff,0xfe,0xf8,0xff,0xff,0xfe,0xf9,0xff,0xff,0xff,0xf7,0xff,0xff,0xfe,0xf3,
0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf0,0xff,0xff,0xfe,0xf0,0xff,0xff,0xfe,0xf0,
0xff,0xff,0xfe,0xf2,0xff,0xff,0xfe,0xf4,0xff,0xff,0xff,0xf9,0xff,0xb1,0xb0,0xad,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,
0xff,0x49,0x49,0x49,0xff,0x1a,0x1a,0x1a,0x88,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x6,0x6,0x6,0x17,0x24,0x24,0x24,0xd8,0x23,0x23,0x23,0xff,0x23,0x23,0x23,
0xff,0x22,0x22,0x22,0xff,0x2a,0x2a,0x2a,0xff,0x25,0x25,0x25,0xff,0x1b,0x1b,0x1b,
0xff,0x1b,0x1b,0x1b,0xff,0x1c,0x1c,0x1c,0xff,0x1c,0x1c,0x1c,0xff,0x18,0x18,0x1a,
0xff,0x67,0x5d,0x41,0xff,0xd5,0xbb,0x6b,0xff,0xda,0xc0,0x74,0xff,0xdc,0xc4,0x7c,
0xff,0xde,0xc8,0x85,0xff,0xdf,0xcd,0x8e,0xff,0xe2,0xd0,0x96,0xff,0xe4,0xd2,0x9a,
0xff,0xe5,0xd2,0x99,0xff,0xe6,0xd2,0x99,0xff,0xe6,0xd3,0x99,0xff,0xe8,0xd1,0x96,
0xff,0xe9,0xd0,0x92,0xff,0xe8,0xcf,0x8d,0xff,0xea,0xcd,0x86,0xff,0xe9,0xcc,0x80,
0xff,0xe9,0xcb,0x7f,0xff,0xe9,0xcc,0x81,0xff,0xea,0xcd,0x86,0xff,0xeb,0xcf,0x8a,
0xff,0xeb,0xd0,0x8c,0xff,0xec,0xd3,0x92,0xff,0xee,0xd5,0x98,0xff,0xf0,0xd8,0x9e,
0xff,0xf2,0xdb,0xa5,0xff,0xf4,0xde,0xab,0xff,0xf5,0xe1,0xb1,0xff,0xf7,0xe4,0xba,
0xff,0xf8,0xe8,0xc3,0xff,0xfa,0xec,0xcb,0xff,0xfb,0xee,0xd1,0xff,0xfc,0xf1,0xd6,
0xff,0xfd,0xf3,0xda,0xff,0xfd,0xf4,0xde,0xff,0xfe,0xf7,0xe4,0xff,0xfe,0xf9,0xe8,
0xff,0xff,0xfb,0xec,0xff,0xff,0xfc,0xef,0xff,0xff,0xfd,0xf1,0xff,0xff,0xfe,0xf5,
0xff,0xff,0xfe,0xf9,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfc,
0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfa,
0xff,0xff,0xff,0xf9,0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf6,
0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf8,
0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xf9,0xff,0xff,0xfd,0xf1,
0xff,0xff,0xfa,0xeb,0xff,0xff,0xf9,0xe9,0xff,0xff,0xf9,0xea,0xff,0xff,0xfb,0xed,
0xff,0xff,0xfe,0xf3,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf6,
0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf7,
0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf7,
0xff,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xef,
0xff,0xff,0xfd,0xee,0xff,0xff,0xfd,0xee,0xff,0xff,0xfe,0xef,0xff,0xff,0xfe,0xf0,
0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf7,0xff,0xfc,0xfc,0xf6,0xff,0x9d,0x9d,0x99,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,
0xff,0x47,0x47,0x47,0xfe,0x17,0x17,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x7,0x7,0x7,0x23,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0xff,0x24,0x24,0x24,
0xff,0x23,0x23,0x23,0xff,0x2b,0x2b,0x2b,0xff,0x24,0x24,0x24,0xff,0x1a,0x1a,0x1a,
0xff,0x1b,0x1b,0x1b,0xff,0x1b,0x1b,0x1b,0xff,0x1b,0x1b,0x1b,0xff,0x15,0x16,0x18,
0xff,0x78,0x6c,0x49,0xff,0xd7,0xbf,0x76,0xff,0xda,0xc4,0x7e,0xff,0xdc,0xc8,0x87,
0xff,0xde,0xcc,0x90,0xff,0xe2,0xd1,0x9a,0xff,0xe3,0xd4,0x9f,0xff,0xe4,0xd6,0xa3,
0xff,0xe7,0xd7,0xa4,0xff,0xe8,0xd6,0xa4,0xff,0xe8,0xd7,0xa2,0xff,0xe8,0xd5,0x9e,
0xff,0xea,0xd4,0x98,0xff,0xea,0xd0,0x90,0xff,0xea,0xce,0x86,0xff,0xeb,0xcc,0x7f,
0xff,0xeb,0xcc,0x7f,0xff,0xea,0xcd,0x82,0xff,0xec,0xce,0x85,0xff,0xed,0xcf,0x88,
0xff,0xee,0xd1,0x8c,0xff,0xef,0xd3,0x90,0xff,0xf1,0xd5,0x96,0xff,0xf2,0xd7,0x9b,
0xff,0xf4,0xda,0xa1,0xff,0xf6,0xdd,0xa7,0xff,0xf7,0xe0,0xae,0xff,0xf8,0xe4,0xb7,
0xff,0xfa,0xe7,0xbf,0xff,0xfb,0xea,0xc6,0xff,0xfc,0xed,0xcc,0xff,0xfd,0xef,0xd2,
0xff,0xfd,0xf1,0xd6,0xff,0xfe,0xf3,0xda,0xff,0xff,0xf5,0xdf,0xff,0xff,0xf6,0xe3,
0xff,0xff,0xf8,0xe6,0xff,0xff,0xfa,0xe9,0xff,0xff,0xfb,0xed,0xff,0xff,0xfd,0xef,
0xff,0xff,0xfe,0xf2,0xff,0xff,0xfe,0xf4,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf7,
0xff,0xff,0xfe,0xf7,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf7,0xff,0xff,0xfe,0xf6,
0xff,0xff,0xfe,0xf4,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf2,
0xff,0xff,0xfe,0xf2,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf4,
0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xfd,0xf1,0xff,0xff,0xf9,0xe8,
0xff,0xff,0xf7,0xe4,0xff,0xff,0xf7,0xe5,0xff,0xff,0xf9,0xe8,0xff,0xff,0xfc,0xee,
0xff,0xff,0xfe,0xf4,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf5,
0xff,0xff,0xff,0xf5,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf5,
0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf5,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,
0xff,0xff,0xff,0xf3,0xff,0xff,0xfe,0xef,0xff,0xff,0xfd,0xed,0xff,0xff,0xfd,0xed,
0xff,0xff,0xfd,0xed,0xff,0xff,0xfd,0xed,0xff,0xff,0xfe,0xee,0xff,0xff,0xfe,0xf1,
0xff,0xff,0xfe,0xf5,0xff,0xff,0xfe,0xf6,0xff,0xf7,0xf6,0xf0,0xff,0x8b,0x8b,0x88,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,
0xff,0x43,0x43,0x43,0xf7,0x14,0x14,0x14,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xc,0xc,0xc,0x2c,0x23,0x23,0x23,0xe8,0x25,0x25,0x25,0xff,0x24,0x24,0x24,
0xff,0x23,0x23,0x23,0xff,0x2b,0x2b,0x2b,0xff,0x20,0x20,0x20,0xff,0x1a,0x1a,0x1a,
0xff,0x1a,0x1a,0x1a,0xff,0x1a,0x1a,0x1a,0xff,0x1a,0x1a,0x1a,0xff,0x14,0x15,0x17,
0xff,0x87,0x7b,0x51,0xff,0xd6,0xc2,0x7a,0xff,0xd9,0xc6,0x85,0xff,0xdd,0xcb,0x8f,
0xff,0xe0,0xcf,0x96,0xff,0xe2,0xd2,0x9d,0xff,0xe4,0xd6,0xa3,0xff,0xe6,0xd9,0xa7,
0xff,0xe7,0xd9,0xa9,0xff,0xe8,0xd9,0xa9,0xff,0xe8,0xd9,0xa8,0xff,0xea,0xd8,0xa2,
0xff,0xea,0xd5,0x9c,0xff,0xeb,0xd2,0x92,0xff,0xec,0xd0,0x89,0xff,0xec,0xce,0x84,
0xff,0xed,0xce,0x85,0xff,0xee,0xcf,0x86,0xff,0xee,0xd0,0x87,0xff,0xef,0xd1,0x8a,
0xff,0xf0,0xd2,0x8d,0xff,0xf2,0xd5,0x91,0xff,0xf4,0xd6,0x94,0xff,0xf4,0xd7,0x97,
0xff,0xf6,0xd9,0x9c,0xff,0xf8,0xdc,0xa1,0xff,0xf9,0xdf,0xa9,0xff,0xfa,0xe2,0xb1,
0xff,0xfb,0xe5,0xb7,0xff,0xfc,0xe7,0xbe,0xff,0xfd,0xe9,0xc4,0xff,0xfd,0xeb,0xc9,
0xff,0xfd,0xee,0xcf,0xff,0xfe,0xf0,0xd3,0xff,0xff,0xf2,0xd7,0xff,0xff,0xf2,0xdb,
0xff,0xff,0xf4,0xde,0xff,0xff,0xf6,0xe1,0xff,0xff,0xf7,0xe3,0xff,0xff,0xf9,0xe6,
0xff,0xff,0xfa,0xe8,0xff,0xff,0xfb,0xeb,0xff,0xff,0xfc,0xed,0xff,0xff,0xfd,0xef,
0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,0xff,0xff,0xfc,0xee,
0xff,0xff,0xfb,0xec,0xff,0xff,0xfb,0xeb,0xff,0xff,0xfb,0xeb,0xff,0xff,0xfc,0xec,
0xff,0xff,0xfc,0xec,0xff,0xff,0xfc,0xee,0xff,0xff,0xfd,0xee,0xff,0xff,0xfd,0xf0,
0xff,0xff,0xfd,0xf0,0xff,0xff,0xfc,0xed,0xff,0xff,0xf8,0xe6,0xff,0xff,0xf6,0xe0,
0xff,0xff,0xf5,0xe0,0xff,0xff,0xf7,0xe3,0xff,0xff,0xfa,0xe9,0xff,0xff,0xfe,0xf0,
0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,
0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,
0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xff,0xf3,0xff,0xff,0xfe,0xf0,
0xff,0xff,0xfd,0xed,0xff,0xff,0xfc,0xeb,0xff,0xff,0xfc,0xeb,0xff,0xff,0xfc,0xeb,
0xff,0xff,0xfc,0xec,0xff,0xff,0xfd,0xed,0xff,0xff,0xfe,0xf0,0xff,0xff,0xfe,0xf3,
0xff,0xff,0xfe,0xf4,0xff,0xff,0xfe,0xf4,0xff,0xf1,0xf0,0xea,0xff,0x7a,0x7a,0x77,
0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x53,0x53,0x53,
0xff,0x3e,0x3e,0x3e,0xee,0xf,0xf,0xf,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x10,0x10,0x10,0x40,0x24,0x24,0x24,0xee,0x26,0x26,0x26,0xff,0x25,0x25,0x25,
0xff,0x25,0x25,0x25,0xff,0x2c,0x2c,0x2c,0xff,0x1d,0x1d,0x1d,0xff,0x19,0x19,0x19,
0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,0xff,0x1a,0x1a,0x1a,0xff,0x15,0x15,0x18,
0xff,0x8f,0x81,0x55,0xff,0xd6,0xc3,0x7a,0xff,0xd8,0xc7,0x87,0xff,0xdd,0xcc,0x92,
0xff,0xe0,0xd1,0x99,0xff,0xe2,0xd5,0xa0,0xff,0xe5,0xd7,0xa5,0xff,0xe6,0xd8,0xa7,
0xff,0xe8,0xd9,0xaa,0xff,0xe9,0xdb,0xab,0xff,0xe9,0xda,0xab,0xff,0xeb,0xd9,0xa6,
0xff,0xeb,0xd7,0xa0,0xff,0xec,0xd6,0x9b,0xff,0xee,0xd5,0x97,0xff,0xee,0xd4,0x94,
0xff,0xf0,0xd4,0x94,0xff,0xf0,0xd5,0x96,0xff,0xf1,0xd6,0x96,0xff,0xf2,0xd6,0x97,
0xff,0xf3,0xd6,0x98,0xff,0xf5,0xd7,0x98,0xff,0xf5,0xd7,0x97,0xff,0xf6,0xd8,0x98,
0xff,0xf8,0xd9,0x9a,0xff,0xf8,0xdb,0x9e,0xff,0xfa,0xdd,0xa2,0xff,0xfb,0xdf,0xa8,
0xff,0xfc,0xe1,0xaf,0xff,0xfd,0xe4,0xb5,0xff,0xfe,0xe6,0xba,0xff,0xfe,0xe8,0xc0,
0xff,0xfe,0xeb,0xc6,0xff,0xff,0xec,0xca,0xff,0xff,0xee,0xce,0xff,0xff,0xef,0xd1,
0xff,0xff,0xf0,0xd4,0xff,0xff,0xf1,0xd7,0xff,0xff,0xf2,0xd9,0xff,0xff,0xf4,0xdc,
0xff,0xff,0xf5,0xde,0xff,0xff,0xf7,0xe1,0xff,0xff,0xf8,0xe4,0xff,0xff,0xf8,0xe5,
0xff,0xff,0xf9,0xe6,0xff,0xff,0xf9,0xe6,0xff,0xff,0xf9,0xe5,0xff,0xff,0xf8,0xe4,
0xff,0xff,0xf8,0xe4,0xff,0xff,0xf9,0xe4,0xff,0xff,0xf9,0xe5,0xff,0xff,0xf9,0xe6,
0xff,0xff,0xfa,0xe7,0xff,0xff,0xfa,0xe8,0xff,0xff,0xfb,0xe9,0xff,0xff,0xfb,0xeb,
0xff,0xff,0xfb,0xea,0xff,0xff,0xf7,0xe4,0xff,0xff,0xf5,0xdf,0xff,0xff,0xf4,0xde,
0xff,0xff,0xf5,0xdf,0xff,0xff,0xf7,0xe5,0xff,0xff,0xfc,0xec,0xff,0xff,0xfd,0xf0,
0xff,0xff,0xfd,0xf1,0xff,0xff,0xfd,0xf1,0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf1,
0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf1,
0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf0,0xff,0xff,0xfd,0xed,0xff,0xff,0xfc,0xea,
0xff,0xff,0xfa,0xe9,0xff,0xff,0xfb,0xe9,0xff,0xff,0xfb,0xe9,0xff,0xff,0xfb,0xe9,
0xff,0xff,0xfc,0xeb,0xff,0xff,0xfe,0xee,0xff,0xff,0xfe,0xf1,0xff,0xff,0xfe,0xf2,
0xff,0xff,0xfe,0xf2,0xff,0xff,0xfe,0xf2,0xff,0xec,0xec,0xe4,0xff,0x6e,0x6d,0x6b,
0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x52,0x52,0x52,
0xff,0x38,0x38,0x38,0xe6,0xa,0xa,0xa,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x15,0x15,0x15,0x5d,0x26,0x26,0x26,0xf6,0x26,0x26,0x26,0xff,0x26,0x26,0x26,
0xff,0x26,0x26,0x26,0xff,0x2c,0x2c,0x2c,0xff,0x1c,0x1c,0x1c,0xff,0x18,0x18,0x18,
0xff,0x18,0x18,0x18,0xff,0x19,0x19,0x19,0xff,0x19,0x19,0x19,0xff,0x1b,0x1a,0x1a,
0xff,0x9a,0x8c,0x57,0xff,0xd7,0xc2,0x7b,0xff,0xd9,0xc8,0x87,0xff,0xdd,0xcd,0x93,
0xff,0xe0,0xd2,0x9a,0xff,0xe3,0xd4,0x9d,0xff,0xe5,0xd6,0xa2,0xff,0xe6,0xd8,0xa7,
0xff,0xe8,0xda,0xab,0xff,0xea,0xdb,0xac,0xff,0xea,0xdb,0xac,0xff,0xec,0xda,0xaa,
0xff,0xee,0xda,0xa8,0xff,0xed,0xda,0xa6,0xff,0xef,0xd9,0xa3,0xff,0xf1,0xda,0xa3,
0xff,0xf1,0xda,0xa4,0xff,0xf2,0xda,0xa4,0xff,0xf3,0xda,0xa4,0xff,0xf5,0xda,0xa1,
0xff,0xf5,0xd9,0x9f,0xff,0xf5,0xd8,0x9c,0xff,0xf7,0xd7,0x99,0xff,0xf8,0xd8,0x98,
0xff,0xf9,0xd9,0x99,0xff,0xfa,0xda,0x9b,0xff,0xfb,0xda,0x9b,0xff,0xfd,0xdc,0x9e,
0xff,0xfd,0xde,0xa4,0xff,0xfd,0xe0,0xac,0xff,0xfe,0xe2,0xb0,0xff,0xff,0xe5,0xb6,
0xff,0xff,0xe7,0xbd,0xff,0xff,0xe8,0xc1,0xff,0xff,0xea,0xc4,0xff,0xff,0xeb,0xc7,
0xff,0xff,0xec,0xc9,0xff,0xff,0xed,0xcc,0xff,0xff,0xee,0xcf,0xff,0xff,0xef,0xd2,
0xff,0xff,0xf1,0xd5,0xff,0xff,0xf2,0xd6,0xff,0xff,0xf3,0xd8,0xff,0xff,0xf4,0xda,
0xff,0xff,0xf4,0xdb,0xff,0xff,0xf5,0xdc,0xff,0xff,0xf5,0xdc,0xff,0xff,0xf5,0xdd,
0xff,0xff,0xf6,0xde,0xff,0xff,0xf6,0xdf,0xff,0xff,0xf7,0xe0,0xff,0xff,0xf7,0xe1,
0xff,0xff,0xf8,0xe3,0xff,0xff,0xf9,0xe4,0xff,0xff,0xf9,0xe5,0xff,0xff,0xfa,0xe6,
0xff,0xff,0xf7,0xe2,0xff,0xff,0xf5,0xdd,0xff,0xff,0xf3,0xdb,0xff,0xff,0xf4,0xdc,
0xff,0xff,0xf5,0xe0,0xff,0xff,0xf9,0xe6,0xff,0xff,0xfc,0xed,0xff,0xff,0xfc,0xef,
0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,
0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,0xff,0xff,0xfd,0xef,0xff,0xff,0xfe,0xef,
0xff,0xff,0xfe,0xee,0xff,0xff,0xfc,0xea,0xff,0xff,0xfa,0xe7,0xff,0xff,0xfa,0xe6,
0xff,0xff,0xfa,0xe6,0xff,0xff,0xfa,0xe7,0xff,0xff,0xfa,0xe7,0xff,0xff,0xfc,0xe9,
0xff,0xff,0xfe,0xed,0xff,0xff,0xfe,0xef,0xff,0xff,0xfe,0xef,0xff,0xff,0xfe,0xef,
0xff,0xff,0xfe,0xef,0xff,0xff,0xff,0xf0,0xff,0xe3,0xe3,0xd7,0xff,0x65,0x65,0x63,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x52,0x52,0x52,
0xff,0x33,0x33,0x33,0xdc,0x3,0x3,0x3,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x19,0x19,0x19,0x78,0x28,0x28,0x28,0xfc,0x27,0x27,0x27,0xff,0x26,0x26,0x26,
0xff,0x27,0x27,0x27,0xff,0x2b,0x2b,0x2b,0xff,0x1b,0x1b,0x1b,0xff,0x18,0x18,0x18,
0xff,0x18,0x18,0x18,0xff,0x18,0x18,0x18,0xff,0x18,0x18,0x18,0xff,0x23,0x22,0x1e,
0xff,0xab,0x9a,0x5f,0xff,0xd9,0xc3,0x7c,0xff,0xdc,0xc7,0x84,0xff,0xdf,0xca,0x8b,
0xff,0xe2,0xcd,0x8e,0xff,0xe3,0xcf,0x94,0xff,0xe5,0xd4,0x9d,0xff,0xe8,0xd7,0xa5,
0xff,0xe8,0xda,0xaa,0xff,0xea,0xdb,0xac,0xff,0xeb,0xdb,0xad,0xff,0xee,0xdc,0xac,
0xff,0xef,0xdc,0xac,0xff,0xf0,0xdc,0xab,0xff,0xf0,0xdc,0xaa,0xff,0xf1,0xdb,0xa9,
0xff,0xf2,0xdb,0xa8,0xff,0xf4,0xdb,0xa7,0xff,0xf5,0xdb,0xa5,0xff,0xf5,0xda,0xa2,
0xff,0xf7,0xd9,0x9e,0xff,0xf7,0xd8,0x9a,0xff,0xf8,0xd7,0x96,0xff,0xf9,0xd7,0x94,
0xff,0xf9,0xd7,0x94,0xff,0xfb,0xd7,0x92,0xff,0xfc,0xd7,0x92,0xff,0xfd,0xd8,0x94,
0xff,0xfd,0xda,0x98,0xff,0xfe,0xdc,0x9e,0xff,0xfe,0xde,0xa3,0xff,0xff,0xe0,0xa9,
0xff,0xff,0xe3,0xb0,0xff,0xff,0xe4,0xb4,0xff,0xff,0xe5,0xb5,0xff,0xff,0xe6,0xb8,
0xff,0xff,0xe7,0xbb,0xff,0xff,0xe9,0xbf,0xff,0xff,0xea,0xc2,0xff,0xff,0xeb,0xc6,
0xff,0xff,0xec,0xc9,0xff,0xff,0xec,0xc9,0xff,0xff,0xed,0xcb,0xff,0xff,0xee,0xcd,
0xff,0xff,0xef,0xd0,0xff,0xff,0xf0,0xd2,0xff,0xff,0xf1,0xd3,0xff,0xff,0xf2,0xd5,
0xff,0xff,0xf3,0xd7,0xff,0xff,0xf4,0xd9,0xff,0xff,0xf4,0xda,0xff,0xff,0xf5,0xdc,
0xff,0xff,0xf6,0xde,0xff,0xff,0xf7,0xdf,0xff,0xff,0xf7,0xe1,0xff,0xff,0xf6,0xde,
0xff,0xff,0xf3,0xda,0xff,0xff,0xf3,0xd8,0xff,0xff,0xf3,0xd8,0xff,0xff,0xf3,0xdb,
0xff,0xff,0xf6,0xe1,0xff,0xff,0xfa,0xe8,0xff,0xff,0xfb,0xeb,0xff,0xff,0xfb,0xeb,
0xff,0xff,0xfc,0xec,0xff,0xff,0xfc,0xed,0xff,0xff,0xfc,0xed,0xff,0xff,0xfc,0xed,
0xff,0xff,0xfc,0xed,0xff,0xff,0xfd,0xed,0xff,0xff,0xfd,0xed,0xff,0xff,0xfc,0xea,
0xff,0xff,0xfa,0xe6,0xff,0xff,0xf8,0xe4,0xff,0xff,0xf8,0xe3,0xff,0xff,0xf8,0xe3,
0xff,0xff,0xf9,0xe3,0xff,0xff,0xf9,0xe5,0xff,0xff,0xfb,0xe7,0xff,0xff,0xfe,0xeb,
0xff,0xff,0xfe,0xec,0xff,0xff,0xfe,0xec,0xff,0xff,0xfe,0xec,0xff,0xff,0xfd,0xec,
0xff,0xff,0xfe,0xed,0xff,0xff,0xff,0xee,0xff,0xd6,0xd4,0xc8,0xff,0x5f,0x5f,0x5d,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x51,0x51,0x51,
0xff,0x30,0x30,0x30,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x1a,0x1a,0x1a,0x8b,0x29,0x29,0x29,0xff,0x28,0x28,0x28,0xff,0x27,0x27,0x27,
0xff,0x28,0x28,0x28,0xff,0x2b,0x2b,0x2b,0xff,0x19,0x19,0x19,0xff,0x17,0x17,0x17,
0xff,0x17,0x17,0x17,0xff,0x17,0x17,0x17,0xff,0x17,0x17,0x17,0xff,0x2b,0x29,0x22,
0xff,0xbc,0xa7,0x66,0xff,0xda,0xc0,0x73,0xff,0xdc,0xc3,0x79,0xff,0xdf,0xc6,0x7d,
0xff,0xe2,0xc8,0x83,0xff,0xe4,0xcd,0x8d,0xff,0xe6,0xd2,0x9a,0xff,0xe8,0xd6,0xa1,
0xff,0xeb,0xd9,0xa6,0xff,0xeb,0xda,0xa9,0xff,0xed,0xdb,0xaa,0xff,0xee,0xdb,0xab,
0xff,0xef,0xdd,0xae,0xff,0xf1,0xdd,0xae,0xff,0xf2,0xdc,0xac,0xff,0xf2,0xdb,0xaa,
0xff,0xf4,0xdb,0xa6,0xff,0xf5,0xdb,0xa4,0xff,0xf5,0xda,0xa0,0xff,0xf7,0xd9,0x9e,
0xff,0xf7,0xd8,0x9b,0xff,0xf8,0xd7,0x96,0xff,0xf9,0xd6,0x92,0xff,0xf9,0xd5,0x8e,
0xff,0xfa,0xd3,0x8b,0xff,0xfc,0xd3,0x89,0xff,0xfc,0xd3,0x87,0xff,0xfd,0xd4,0x88,
0xff,0xfe,0xd5,0x8a,0xff,0xfe,0xd7,0x90,0xff,0xfe,0xd9,0x95,0xff,0xfe,0xdb,0x9b,
0xff,0xff,0xdd,0x9e,0xff,0xff,0xde,0xa3,0xff,0xff,0xdf,0xa7,0xff,0xff,0xe1,0xaa,
0xff,0xff,0xe2,0xaf,0xff,0xff,0xe4,0xb3,0xff,0xff,0xe5,0xb7,0xff,0xff,0xe7,0xba,
0xff,0xff,0xe7,0xbc,0xff,0xff,0xe9,0xbf,0xff,0xff,0xea,0xc1,0xff,0xff,0xeb,0xc4,
0xff,0xff,0xec,0xc7,0xff,0xff,0xed,0xca,0xff,0xff,0xee,0xcc,0xff,0xff,0xef,0xce,
0xff,0xff,0xf0,0xd1,0xff,0xff,0xf1,0xd3,0xff,0xff,0xf2,0xd5,0xff,0xff,0xf3,0xd7,
0xff,0xff,0xf4,0xd9,0xff,0xff,0xf5,0xdb,0xff,0xff,0xf4,0xda,0xff,0xff,0xf2,0xd6,
0xff,0xff,0xf1,0xd4,0xff,0xff,0xf1,0xd4,0xff,0xff,0xf2,0xd7,0xff,0xff,0xf4,0xda,
0xff,0xff,0xf8,0xe2,0xff,0xff,0xfa,0xe6,0xff,0xff,0xfa,0xe6,0xff,0xff,0xfa,0xe7,
0xff,0xff,0xfb,0xe8,0xff,0xff,0xfb,0xe9,0xff,0xff,0xfb,0xe9,0xff,0xff,0xfb,0xe9,
0xff,0xff,0xfb,0xea,0xff,0xff,0xfc,0xea,0xff,0xff,0xfa,0xe6,0xff,0xff,0xf8,0xe3,
0xff,0xff,0xf7,0xe0,0xff,0xff,0xf6,0xe0,0xff,0xff,0xf7,0xe0,0xff,0xff,0xf7,0xe1,
0xff,0xff,0xf9,0xe1,0xff,0xff,0xfb,0xe5,0xff,0xff,0xfc,0xe9,0xff,0xff,0xfd,0xea,
0xff,0xff,0xfd,0xea,0xff,0xff,0xfe,0xe9,0xff,0xff,0xfe,0xea,0xff,0xff,0xfd,0xea,
0xff,0xff,0xfd,0xe9,0xff,0xff,0xff,0xeb,0xff,0xc8,0xc7,0xba,0xff,0x5a,0x5a,0x5a,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x50,0x50,0x50,
0xff,0x2c,0x2c,0x2c,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,
0x3,0x1f,0x1f,0x1f,0x97,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x29,0x29,0x29,0xff,0x29,0x29,0x29,0xff,0x18,0x18,0x18,0xff,0x17,0x17,0x17,
0xff,0x17,0x17,0x17,0xff,0x16,0x16,0x16,0xff,0x17,0x17,0x17,0xff,0x33,0x2f,0x24,
0xff,0xc6,0xac,0x60,0xff,0xdb,0xbd,0x66,0xff,0xde,0xbf,0x6b,0xff,0xe0,0xc2,0x71,
0xff,0xe2,0xc5,0x78,0xff,0xe4,0xcb,0x85,0xff,0xe8,0xd0,0x93,0xff,0xe9,0xd4,0x9a,
0xff,0xeb,0xd6,0x9e,0xff,0xec,0xd8,0xa2,0xff,0xee,0xd9,0xa5,0xff,0xef,0xdc,0xaa,
0xff,0xf0,0xdc,0xad,0xff,0xf1,0xdd,0xad,0xff,0xf2,0xdc,0xab,0xff,0xf4,0xdb,0xa7,
0xff,0xf5,0xda,0xa2,0xff,0xf5,0xd9,0x9e,0xff,0xf6,0xd8,0x9b,0xff,0xf7,0xd6,0x98,
0xff,0xf7,0xd5,0x94,0xff,0xf8,0xd5,0x8f,0xff,0xf9,0xd2,0x89,0xff,0xfa,0xd1,0x82,
0xff,0xfa,0xd0,0x7d,0xff,0xfb,0xcf,0x7b,0xff,0xfc,0xcf,0x78,0xff,0xfc,0xd0,0x78,
0xff,0xfd,0xd1,0x7c,0xff,0xfe,0xd3,0x82,0xff,0xfe,0xd5,0x88,0xff,0xfe,0xd6,0x8c,
0xff,0xfe,0xd8,0x8e,0xff,0xff,0xd9,0x93,0xff,0xff,0xdb,0x99,0xff,0xff,0xdd,0x9e,
0xff,0xff,0xde,0xa3,0xff,0xff,0xe0,0xa7,0xff,0xff,0xe2,0xab,0xff,0xff,0xe3,0xaf,
0xff,0xff,0xe4,0xb3,0xff,0xff,0xe5,0xb6,0xff,0xff,0xe6,0xba,0xff,0xff,0xe8,0xbd,
0xff,0xff,0xe9,0xc0,0xff,0xff,0xea,0xc3,0xff,0xff,0xeb,0xc5,0xff,0xff,0xec,0xc8,
0xff,0xff,0xed,0xcb,0xff,0xff,0xee,0xcd,0xff,0xff,0xef,0xcf,0xff,0xff,0xf0,0xd1,
0xff,0xff,0xf1,0xd4,0xff,0xff,0xf2,0xd5,0xff,0xff,0xf0,0xd2,0xff,0xff,0xef,0xd0,
0xff,0xff,0xef,0xd0,0xff,0xff,0xf0,0xd2,0xff,0xff,0xf2,0xd5,0xff,0xff,0xf5,0xdb,
0xff,0xff,0xf8,0xe1,0xff,0xff,0xf8,0xe2,0xff,0xff,0xf8,0xe3,0xff,0xff,0xf9,0xe4,
0xff,0xff,0xf9,0xe4,0xff,0xff,0xf9,0xe5,0xff,0xff,0xfa,0xe5,0xff,0xff,0xfa,0xe6,
0xff,0xff,0xfa,0xe5,0xff,0xff,0xf8,0xe2,0xff,0xff,0xf6,0xdf,0xff,0xff,0xf5,0xdd,
0xff,0xff,0xf5,0xdd,0xff,0xff,0xf5,0xdd,0xff,0xff,0xf6,0xde,0xff,0xff,0xf7,0xdf,
0xff,0xff,0xfa,0xe3,0xff,0xff,0xfb,0xe7,0xff,0xff,0xfc,0xe8,0xff,0xff,0xfc,0xe7,
0xff,0xff,0xfc,0xe8,0xff,0xff,0xfc,0xe7,0xff,0xff,0xfc,0xe7,0xff,0xff,0xfd,0xe7,
0xff,0xff,0xfd,0xe7,0xff,0xff,0xff,0xe9,0xff,0xbb,0xb9,0xac,0xff,0x58,0x58,0x57,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x4d,0x4d,0x4d,
0xff,0x26,0x26,0x26,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x4,
0xd,0x25,0x25,0x25,0xb3,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,0xff,0x28,0x28,0x28,
0xff,0x2b,0x2b,0x2b,0xff,0x26,0x26,0x26,0xff,0x17,0x17,0x17,0xff,0x16,0x16,0x16,
0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x39,0x33,0x23,
0xff,0xcc,0xac,0x52,0xff,0xdd,0xb9,0x58,0xff,0xdf,0xbb,0x5b,0xff,0xe1,0xbf,0x66,
0xff,0xe3,0xc3,0x70,0xff,0xe5,0xc8,0x7d,0xff,0xe7,0xcd,0x8b,0xff,0xea,0xd1,0x91,
0xff,0xeb,0xd4,0x97,0xff,0xec,0xd6,0x9e,0xff,0xee,0xd9,0xa3,0xff,0xef,0xda,0xa6,
0xff,0xf0,0xda,0xa7,0xff,0xf1,0xda,0xa6,0xff,0xf3,0xd9,0xa2,0xff,0xf4,0xd8,0x9e,
0xff,0xf4,0xd6,0x99,0xff,0xf5,0xd5,0x96,0xff,0xf6,0xd4,0x93,0xff,0xf6,0xd3,0x8d,
0xff,0xf8,0xd2,0x88,0xff,0xf9,0xd0,0x83,0xff,0xf9,0xce,0x7a,0xff,0xf9,0xcc,0x70,
0xff,0xfa,0xcb,0x6b,0xff,0xfb,0xcb,0x6a,0xff,0xfb,0xcb,0x68,0xff,0xfc,0xcc,0x68,
0xff,0xfc,0xce,0x6d,0xff,0xfd,0xcf,0x74,0xff,0xfd,0xd1,0x79,0xff,0xfe,0xd2,0x7c,
0xff,0xfe,0xd4,0x81,0xff,0xff,0xd6,0x87,0xff,0xfe,0xd8,0x8c,0xff,0xff,0xd9,0x92,
0xff,0xff,0xdb,0x97,0xff,0xff,0xdc,0x9d,0xff,0xff,0xde,0xa1,0xff,0xff,0xe0,0xa5,
0xff,0xff,0xe1,0xaa,0xff,0xff,0xe3,0xae,0xff,0xff,0xe4,0xb2,0xff,0xff,0xe5,0xb6,
0xff,0xff,0xe6,0xb8,0xff,0xff,0xe8,0xbc,0xff,0xff,0xe8,0xbe,0xff,0xff,0xea,0xc1,
0xff,0xff,0xeb,0xc5,0xff,0xff,0xeb,0xc7,0xff,0xff,0xed,0xc9,0xff,0xff,0xee,0xcb,
0xff,0xff,0xef,0xce,0xff,0xff,0xee,0xce,0xff,0xff,0xee,0xcd,0xff,0xff,0xee,0xce,
0xff,0xff,0xee,0xce,0xff,0xff,0xef,0xd0,0xff,0xff,0xf2,0xd5,0xff,0xff,0xf5,0xda,
0xff,0xff,0xf5,0xdc,0xff,0xff,0xf6,0xdd,0xff,0xff,0xf6,0xde,0xff,0xff,0xf7,0xe0,
0xff,0xff,0xf7,0xe0,0xff,0xff,0xf8,0xe1,0xff,0xff,0xf8,0xe1,0xff,0xff,0xf8,0xe1,
0xff,0xff,0xf6,0xde,0xff,0xff,0xf4,0xdb,0xff,0xff,0xf3,0xda,0xff,0xff,0xf3,0xd9,
0xff,0xff,0xf3,0xda,0xff,0xff,0xf4,0xdb,0xff,0xff,0xf6,0xdd,0xff,0xff,0xf9,0xe1,
0xff,0xff,0xfa,0xe4,0xff,0xff,0xfb,0xe5,0xff,0xff,0xfb,0xe5,0xff,0xff,0xfb,0xe5,
0xff,0xff,0xfb,0xe5,0xff,0xff,0xfb,0xe5,0xff,0xff,0xfb,0xe5,0xff,0xff,0xfb,0xe5,
0xff,0xff,0xfc,0xe5,0xff,0xff,0xfe,0xe7,0xff,0xb1,0xaf,0xa1,0xff,0x55,0x55,0x55,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x4a,0x4a,0x4a,
0xff,0x1d,0x1d,0x1d,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x8,0x8,
0x1b,0x2a,0x2a,0x2a,0xcd,0x2a,0x2a,0x2a,0xff,0x2a,0x2a,0x2a,0xff,0x29,0x29,0x29,
0xff,0x2c,0x2c,0x2c,0xff,0x23,0x23,0x23,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15,
0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x41,0x38,0x22,
0xff,0xd2,0xae,0x49,0xff,0xde,0xb8,0x51,0xff,0xdf,0xba,0x56,0xff,0xe2,0xbe,0x61,
0xff,0xe5,0xc2,0x6d,0xff,0xe6,0xc8,0x7b,0xff,0xe9,0xcc,0x86,0xff,0xeb,0xcf,0x8c,
0xff,0xec,0xd2,0x93,0xff,0xee,0xd5,0x9a,0xff,0xf0,0xd6,0x9c,0xff,0xf0,0xd6,0x9d,
0xff,0xf0,0xd7,0x9d,0xff,0xf2,0xd6,0x9b,0xff,0xf2,0xd5,0x95,0xff,0xf3,0xd3,0x92,
0xff,0xf4,0xd2,0x90,0xff,0xf4,0xd2,0x8c,0xff,0xf6,0xd1,0x87,0xff,0xf7,0xce,0x7f,
0xff,0xf8,0xcd,0x7a,0xff,0xf9,0xcc,0x73,0xff,0xfa,0xc9,0x69,0xff,0xfa,0xc8,0x5f,
0xff,0xfa,0xc7,0x59,0xff,0xfb,0xc8,0x54,0xff,0xfc,0xc8,0x51,0xff,0xfc,0xc9,0x55,
0xff,0xfd,0xcb,0x5c,0xff,0xfd,0xcc,0x63,0xff,0xfe,0xce,0x68,0xff,0xfe,0xcf,0x6e,
0xff,0xff,0xd1,0x74,0xff,0xff,0xd4,0x7c,0xff,0xff,0xd6,0x82,0xff,0xff,0xd7,0x87,
0xff,0xff,0xd8,0x8c,0xff,0xff,0xda,0x92,0xff,0xff,0xdb,0x97,0xff,0xff,0xdd,0x9d,
0xff,0xff,0xdf,0xa1,0xff,0xff,0xe0,0xa5,0xff,0xff,0xe2,0xaa,0xff,0xff,0xe4,0xae,
0xff,0xff,0xe5,0xb2,0xff,0xff,0xe6,0xb6,0xff,0xff,0xe7,0xb7,0xff,0xff,0xe8,0xbb,
0xff,0xff,0xe9,0xbe,0xff,0xff,0xeb,0xc1,0xff,0xff,0xec,0xc4,0xff,0xff,0xed,0xc6,
0xff,0xff,0xed,0xc9,0xff,0xff,0xee,0xcb,0xff,0xff,0xef,0xcc,0xff,0xff,0xef,0xcc,
0xff,0xff,0xf0,0xcd,0xff,0xff,0xf1,0xd0,0xff,0xff,0xf3,0xd5,0xff,0xff,0xf3,0xd7,
0xff,0xff,0xf4,0xd8,0xff,0xff,0xf4,0xda,0xff,0xff,0xf5,0xda,0xff,0xff,0xf5,0xdb,
0xff,0xff,0xf6,0xdc,0xff,0xff,0xf6,0xdd,0xff,0xff,0xf6,0xdc,0xff,0xff,0xf5,0xda,
0xff,0xff,0xf4,0xd9,0xff,0xff,0xf3,0xd8,0xff,0xff,0xf4,0xd7,0xff,0xff,0xf5,0xd7,
0xff,0xff,0xf5,0xd8,0xff,0xff,0xf7,0xdb,0xff,0xff,0xfa,0xe1,0xff,0xff,0xfb,0xe3,
0xff,0xff,0xfb,0xe3,0xff,0xff,0xfb,0xe3,0xff,0xff,0xfb,0xe4,0xff,0xff,0xfa,0xe3,
0xff,0xfe,0xf9,0xe3,0xff,0xfd,0xf9,0xe2,0xff,0xfd,0xf9,0xe2,0xff,0xfb,0xf7,0xe1,
0xff,0xfc,0xf8,0xe1,0xff,0xf3,0xf0,0xdb,0xff,0x8f,0x8d,0x84,0xff,0x53,0x53,0x53,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x47,0x47,0x47,
0xff,0x13,0x13,0x13,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x9,0x9,
0x27,0x2b,0x2b,0x2b,0xe1,0x2b,0x2b,0x2b,0xff,0x2b,0x2b,0x2b,0xff,0x2a,0x2a,0x2a,
0xff,0x2d,0x2d,0x2d,0xff,0x22,0x22,0x22,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15,
0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x14,0x15,0x15,0xff,0x4c,0x41,0x22,
0xff,0xda,0xb2,0x41,0xff,0xdd,0xb6,0x48,0xff,0xde,0xb8,0x4f,0xff,0xe0,0xba,0x59,
0xff,0xe0,0xbd,0x65,0xff,0xdf,0xbf,0x72,0xff,0xdf,0xc2,0x79,0xff,0xde,0xc1,0x7d,
0xff,0xde,0xc2,0x80,0xff,0xde,0xc3,0x83,0xff,0xe0,0xc5,0x87,0xff,0xe2,0xc6,0x88,
0xff,0xe3,0xc7,0x87,0xff,0xe5,0xc6,0x83,0xff,0xe4,0xc4,0x7f,0xff,0xe6,0xc3,0x7b,
0xff,0xe5,0xc1,0x78,0xff,0xe7,0xc1,0x73,0xff,0xe7,0xbe,0x68,0xff,0xe9,0xbd,0x5f,
0xff,0xea,0xbc,0x57,0xff,0xe7,0xb8,0x4d,0xff,0xe8,0xb6,0x3f,0xff,0xe3,0xb3,0x37,
0xff,0xe4,0xb3,0x32,0xff,0xe1,0xb1,0x31,0xff,0xe2,0xb3,0x36,0xff,0xe5,0xb6,0x41,
0xff,0xe4,0xb7,0x4a,0xff,0xe4,0xb9,0x53,0xff,0xe2,0xb9,0x5d,0xff,0xe1,0xbb,0x65,
0xff,0xde,0xb9,0x6a,0xff,0xde,0xba,0x6f,0xff,0xdc,0xba,0x76,0xff,0xe0,0xbe,0x7a,
0xff,0xde,0xbe,0x7e,0xff,0xe0,0xc1,0x83,0xff,0xe0,0xc2,0x88,0xff,0xe1,0xc4,0x8c,
0xff,0xe0,0xc5,0x90,0xff,0xe0,0xc5,0x94,0xff,0xdf,0xc6,0x98,0xff,0xdd,0xc6,0x9c,
0xff,0xde,0xc8,0xa0,0xff,0xdd,0xc8,0xa2,0xff,0xde,0xcb,0xa8,0xff,0xe0,0xce,0xac,
0xff,0xe2,0xd0,0xaf,0xff,0xde,0xce,0xb0,0xff,0xdd,0xcc,0xae,0xff,0xd8,0xca,0xaf,
0xff,0xd9,0xcc,0xb2,0xff,0xd3,0xc6,0xae,0xff,0xd3,0xc6,0xaf,0xff,0xd4,0xc8,0xb1,
0xff,0xd4,0xc8,0xb2,0xff,0xd0,0xc5,0xb1,0xff,0xd0,0xc7,0xb3,0xff,0xce,0xc6,0xb4,
0xff,0xcc,0xc3,0xb2,0xff,0xc9,0xc2,0xb2,0xff,0xca,0xc4,0xb5,0xff,0xc9,0xc3,0xb5,
0xff,0xcb,0xc4,0xb6,0xff,0xce,0xc8,0xb8,0xff,0xcf,0xc9,0xba,0xff,0xca,0xc3,0xb2,
0xff,0xc8,0xc0,0xb2,0xff,0xc7,0xc0,0xb1,0xff,0xc3,0xbc,0xad,0xff,0xbc,0xb6,0xa8,
0xff,0xbc,0xb5,0xa9,0xff,0xb9,0xb6,0xaa,0xff,0xb3,0xaf,0xa5,0xff,0xb2,0xae,0xa4,
0xff,0xb2,0xaf,0xa4,0xff,0xb0,0xad,0xa2,0xff,0xa9,0xa7,0x9d,0xff,0xa7,0xa5,0x9b,
0xff,0xa7,0xa5,0x9d,0xff,0xa1,0x9f,0x98,0xff,0xa0,0x9d,0x95,0xff,0x9e,0x9c,0x95,
0xff,0x9f,0x9e,0x96,0xff,0x86,0x84,0x7f,0xff,0x5a,0x5a,0x59,0xff,0x54,0x55,0x55,
0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x45,0x45,0x45,
0xff,0xf,0xf,0xf,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xd,0xd,
0x32,0x2c,0x2c,0x2c,0xf0,0x2c,0x2c,0x2c,0xff,0x2c,0x2c,0x2c,0xff,0x2b,0x2b,0x2b,
0xff,0x2e,0x2e,0x2e,0xff,0x1e,0x1e,0x1e,0xff,0x15,0x15,0x15,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x32,0x2c,0x1d,
0xff,0x71,0x5f,0x28,0xff,0x73,0x60,0x2d,0xff,0x6f,0x5d,0x2f,0xff,0x6e,0x5d,0x33,
0xff,0x69,0x5b,0x37,0xff,0x66,0x59,0x3a,0xff,0x64,0x58,0x3b,0xff,0x5d,0x53,0x3a,
0xff,0x5c,0x52,0x3b,0xff,0x55,0x4c,0x39,0xff,0x58,0x50,0x3c,0xff,0x5d,0x53,0x3e,
0xff,0x5d,0x53,0x3e,0xff,0x5d,0x53,0x3d,0xff,0x59,0x4f,0x3b,0xff,0x5c,0x51,0x3b,
0xff,0x59,0x4f,0x3a,0xff,0x5b,0x51,0x3a,0xff,0x5c,0x52,0x3a,0xff,0x5f,0x54,0x37,
0xff,0x63,0x56,0x34,0xff,0x62,0x56,0x34,0xff,0x64,0x57,0x34,0xff,0x5f,0x54,0x36,
0xff,0x5f,0x56,0x39,0xff,0x5d,0x55,0x3d,0xff,0x5f,0x56,0x3f,0xff,0x62,0x59,0x42,
0xff,0x63,0x5b,0x46,0xff,0x64,0x5b,0x46,0xff,0x62,0x5a,0x48,0xff,0x64,0x5c,0x4c,
0xff,0x62,0x5c,0x4e,0xff,0x62,0x5c,0x4f,0xff,0x61,0x5c,0x52,0xff,0x64,0x5f,0x55,
0xff,0x62,0x5e,0x55,0xff,0x64,0x60,0x57,0xff,0x65,0x61,0x5a,0xff,0x66,0x62,0x5b,
0xff,0x65,0x61,0x5a,0xff,0x66,0x63,0x5d,0xff,0x65,0x63,0x5e,0xff,0x60,0x5e,0x5a,
0xff,0x60,0x5e,0x5c,0xff,0x5f,0x5f,0x5e,0xff,0x5d,0x5b,0x59,0xff,0x5d,0x5b,0x58,
0xff,0x5f,0x5e,0x5b,0xff,0x60,0x5f,0x5c,0xff,0x61,0x5f,0x5c,0xff,0x61,0x5f,0x5d,
0xff,0x62,0x61,0x5f,0xff,0x60,0x5f,0x5d,0xff,0x60,0x5f,0x5d,0xff,0x61,0x60,0x5e,
0xff,0x60,0x5f,0x5e,0xff,0x5d,0x5c,0x5a,0xff,0x5d,0x5c,0x5b,0xff,0x5d,0x5c,0x5b,
0xff,0x57,0x56,0x55,0xff,0x53,0x53,0x53,0xff,0x54,0x54,0x54,0xff,0x50,0x50,0x51,
0xff,0x4c,0x4c,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4f,0x4f,0x4f,0xff,0x51,0x51,0x51,
0xff,0x53,0x53,0x53,0xff,0x55,0x55,0x54,0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x55,
0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x56,0xff,0x55,0x55,0x54,0xff,0x55,0x55,0x54,
0xff,0x55,0x55,0x55,0xff,0x53,0x53,0x53,0xff,0x51,0x51,0x51,0xff,0x50,0x50,0x51,
0xff,0x50,0x51,0x51,0xff,0x51,0x51,0x52,0xff,0x51,0x52,0x52,0xff,0x52,0x52,0x52,
0xff,0x52,0x52,0x52,0xff,0x53,0x53,0x53,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x44,0x44,0x44,
0xf9,0xd,0xd,0xd,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x12,0x12,
0x3d,0x2e,0x2e,0x2e,0xf8,0x2d,0x2d,0x2d,0xff,0x2c,0x2c,0x2c,0xff,0x2c,0x2c,0x2c,
0xff,0x2f,0x2f,0x2f,0xff,0x1b,0x1b,0x1b,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,
0xff,0x15,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x16,0x17,0x16,
0xff,0x17,0x18,0x17,0xff,0x18,0x18,0x18,0xff,0x19,0x1a,0x19,0xff,0x1a,0x1a,0x1b,
0xff,0x1b,0x1b,0x1c,0xff,0x1c,0x1d,0x1e,0xff,0x1e,0x1e,0x1f,0xff,0x20,0x20,0x21,
0xff,0x22,0x22,0x23,0xff,0x24,0x25,0x25,0xff,0x27,0x27,0x28,0xff,0x29,0x29,0x2a,
0xff,0x2b,0x2c,0x2c,0xff,0x2d,0x2e,0x2e,0xff,0x30,0x30,0x30,0xff,0x32,0x32,0x33,
0xff,0x34,0x34,0x35,0xff,0x36,0x36,0x37,0xff,0x38,0x38,0x39,0xff,0x3a,0x3a,0x3b,
0xff,0x3b,0x3c,0x3d,0xff,0x3d,0x3d,0x3e,0xff,0x3f,0x3f,0x40,0xff,0x40,0x40,0x41,
0xff,0x42,0x42,0x43,0xff,0x43,0x43,0x44,0xff,0x44,0x45,0x45,0xff,0x46,0x46,0x47,
0xff,0x47,0x47,0x48,0xff,0x48,0x48,0x49,0xff,0x49,0x49,0x4a,0xff,0x49,0x4a,0x4a,
0xff,0x4a,0x4b,0x4b,0xff,0x4b,0x4b,0x4c,0xff,0x4b,0x4c,0x4c,0xff,0x4c,0x4c,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,
0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,
0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x50,0x50,0x50,
0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x51,0x51,0x51,
0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x52,0x52,0x52,0xff,0x52,0x52,0x52,
0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53,0xff,0x54,0x54,0x54,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x43,0x43,0x43,
0xec,0xc,0xc,0xc,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x1d,
0x69,0x2e,0x2e,0x2e,0xfc,0x2e,0x2e,0x2e,0xff,0x2d,0x2d,0x2d,0xff,0x2e,0x2e,0x2e,
0xff,0x2f,0x2f,0x2f,0xff,0x18,0x18,0x18,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,
0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,
0xff,0x17,0x17,0x17,0xff,0x18,0x18,0x18,0xff,0x1a,0x1a,0x1a,0xff,0x1b,0x1b,0x1b,
0xff,0x1d,0x1d,0x1d,0xff,0x1e,0x1e,0x1e,0xff,0x20,0x20,0x20,0xff,0x22,0x22,0x22,
0xff,0x24,0x24,0x24,0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,
0xff,0x2d,0x2d,0x2d,0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,0xff,0x33,0x33,0x33,
0xff,0x35,0x35,0x35,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,
0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,
0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,
0xff,0x4a,0x4a,0x4a,0xff,0x4b,0x4b,0x4b,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,
0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x51,0x51,0x51,
0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x52,0x52,0x52,0xff,0x52,0x52,0x52,
0xff,0x52,0x52,0x52,0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x53,0x53,0x53,0xff,0x3d,0x3d,0x3d,
0xcf,0x7,0x7,0x7,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x1b,
0x65,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x2e,0x2e,0x2e,0xff,0x2f,0x2f,0x2f,
0xff,0x2b,0x2b,0x2b,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,
0xff,0x17,0x17,0x17,0xff,0x18,0x18,0x18,0xff,0x1a,0x1a,0x1a,0xff,0x1b,0x1b,0x1b,
0xff,0x1d,0x1d,0x1d,0xff,0x1f,0x1f,0x1f,0xff,0x21,0x21,0x21,0xff,0x23,0x23,0x23,
0xff,0x24,0x24,0x24,0xff,0x27,0x27,0x27,0xff,0x29,0x29,0x29,0xff,0x2b,0x2b,0x2b,
0xff,0x2d,0x2d,0x2d,0xff,0x30,0x30,0x30,0xff,0x32,0x32,0x32,0xff,0x34,0x34,0x34,
0xff,0x36,0x36,0x36,0xff,0x38,0x38,0x38,0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,
0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,
0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,
0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,
0xff,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4b,0x4b,0x4b,
0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,
0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,
0xff,0x50,0x50,0x50,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x52,0x52,0x52,
0xff,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53,
0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,
0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xfd,0x2f,0x2f,0x2f,
0x8a,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x8,0x8,
0x17,0x2b,0x2b,0x2b,0xbc,0x2e,0x2e,0x2e,0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,
0xff,0x24,0x24,0x24,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,
0xff,0x17,0x17,0x17,0xff,0x18,0x18,0x18,0xff,0x1a,0x1a,0x1a,0xff,0x1b,0x1b,0x1b,
0xff,0x1d,0x1d,0x1d,0xff,0x1f,0x1f,0x1f,0xff,0x21,0x21,0x21,0xff,0x23,0x23,0x23,
0xff,0x25,0x25,0x25,0xff,0x27,0x27,0x27,0xff,0x2a,0x2a,0x2a,0xff,0x2c,0x2c,0x2c,
0xff,0x2e,0x2e,0x2e,0xff,0x30,0x30,0x30,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,
0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,0xff,0x3a,0x3a,0x3a,0xff,0x3c,0x3c,0x3c,
0xff,0x3d,0x3d,0x3d,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,
0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,
0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,
0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4b,0x4b,0x4b,
0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,
0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,
0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,
0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,
0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x51,0x51,0x51,0xff,0x52,0x52,0x52,
0xff,0x52,0x52,0x52,0xff,0x53,0x53,0x53,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,
0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x56,0xff,0x57,0x57,0x57,
0xff,0x57,0x57,0x57,0xff,0x60,0x60,0x60,0xff,0x4d,0x4d,0x4d,0xbc,0x11,0x11,0x11,
0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0xd,0xd,0xd,0x2b,0x2b,0x2b,0x2b,0xc7,0x2e,0x2e,0x2e,0xfe,0x32,0x32,0x32,
0xff,0x25,0x25,0x25,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x12,0x12,0x12,
0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,
0xff,0x17,0x17,0x17,0xff,0x18,0x18,0x18,0xff,0x1a,0x1a,0x1a,0xff,0x1b,0x1b,0x1b,
0xff,0x1d,0x1d,0x1d,0xff,0x1f,0x1f,0x1f,0xff,0x21,0x21,0x21,0xff,0x24,0x24,0x24,
0xff,0x26,0x26,0x26,0xff,0x28,0x28,0x28,0xff,0x2a,0x2a,0x2a,0xff,0x2d,0x2d,0x2d,
0xff,0x2f,0x2f,0x2f,0xff,0x31,0x31,0x31,0xff,0x33,0x33,0x33,0xff,0x35,0x35,0x35,
0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,0xff,0x3b,0x3b,0x3b,0xff,0x3c,0x3c,0x3c,
0xff,0x3e,0x3e,0x3e,0xff,0x3f,0x3f,0x3f,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,
0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,
0xff,0x45,0x45,0x45,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,0xff,0x47,0x47,0x47,
0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,
0xff,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,
0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4a,0x4a,0x4a,0xff,0x4b,0x4b,0x4b,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,
0xff,0x4d,0x4d,0x4d,0xff,0x4d,0x4d,0x4d,0xff,0x4e,0x4e,0x4e,0xff,0x4e,0x4e,0x4e,
0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x51,0x51,0x51,
0xff,0x51,0x51,0x51,0xff,0x53,0x53,0x53,0xff,0x55,0x55,0x55,0xff,0x56,0x56,0x56,
0xff,0x56,0x56,0x56,0xfe,0x57,0x57,0x57,0xff,0x54,0x54,0x54,0xfa,0x56,0x56,0x56,
0xf9,0x54,0x54,0x54,0xf7,0x56,0x56,0x56,0xf5,0x56,0x56,0x56,0xf6,0x56,0x56,0x56,
0xf5,0x58,0x58,0x58,0xf7,0x5d,0x5d,0x5d,0xf9,0x5e,0x5e,0x5e,0xfb,0x5f,0x5f,0x5f,
0xfc,0x5f,0x5f,0x5f,0xfb,0x60,0x60,0x60,0xfc,0x5f,0x5f,0x5f,0xf6,0x5f,0x5f,0x5f,
0xf6,0x5c,0x5c,0x5c,0xec,0x5b,0x5b,0x5b,0xe5,0x5a,0x5a,0x5a,0xe0,0x56,0x56,0x56,
0xd6,0x59,0x59,0x59,0xd3,0x4e,0x4e,0x4e,0xb3,0x18,0x18,0x18,0x33,0x1,0x1,0x1,
0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x7,0x7,0x7,0x17,0x19,0x19,0x19,0x72,0x29,0x29,0x29,
0xc0,0x33,0x33,0x33,0xfb,0x1b,0x1b,0x1b,0xff,0x14,0x14,0x14,0xff,0x13,0x13,0x13,
0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,0xff,0x11,0x11,0x11,0xff,0x12,0x12,0x12,
0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,
0xff,0x18,0x18,0x18,0xff,0x1a,0x1a,0x1a,0xff,0x1c,0x1c,0x1c,0xff,0x1e,0x1e,0x1e,
0xff,0x20,0x20,0x20,0xff,0x23,0x23,0x23,0xff,0x25,0x25,0x25,0xff,0x27,0x27,0x27,
0xff,0x29,0x29,0x29,0xff,0x2b,0x2b,0x2b,0xff,0x2e,0x2e,0x2e,0xff,0x31,0x31,0x31,
0xff,0x34,0x34,0x34,0xff,0x37,0x37,0x37,0xff,0x39,0x39,0x39,0xff,0x3c,0x3c,0x3c,
0xff,0x3e,0x3e,0x3e,0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x42,0x42,0x42,
0xff,0x44,0x44,0x44,0xff,0x45,0x45,0x45,0xff,0x47,0x47,0x47,0xfe,0x48,0x48,0x48,
0xfd,0x4a,0x4a,0x4a,0xfd,0x4d,0x4d,0x4d,0xfe,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,
0xff,0x4f,0x4f,0x4f,0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,
0xff,0x4e,0x4e,0x4e,0xf5,0x4e,0x4e,0x4e,0xf4,0x4a,0x4a,0x4a,0xdd,0x4b,0x4b,0x4b,
0xde,0x4a,0x4a,0x4a,0xdb,0x4a,0x4a,0x4a,0xdc,0x4b,0x4b,0x4b,0xdb,0x4a,0x4a,0x4a,
0xdb,0x4d,0x4d,0x4d,0xdf,0x4e,0x4e,0x4e,0xdf,0x4e,0x4e,0x4e,0xe0,0x4b,0x4b,0x4b,
0xd2,0x46,0x46,0x46,0xc3,0x45,0x45,0x45,0xbe,0x45,0x45,0x45,0xbc,0x43,0x43,0x43,
0xbb,0x42,0x42,0x42,0xb6,0x42,0x42,0x42,0xb8,0x3d,0x3d,0x3d,0xac,0x3f,0x3f,0x3f,
0xb0,0x42,0x42,0x42,0xb2,0x43,0x43,0x43,0xb0,0x3e,0x3e,0x3e,0x9d,0x3c,0x3c,0x3c,
0x98,0x3d,0x3d,0x3d,0x9c,0x35,0x35,0x35,0x86,0x37,0x37,0x37,0x8b,0x2e,0x2e,0x2e,
0x75,0x2d,0x2d,0x2d,0x72,0x2a,0x2a,0x2a,0x68,0x26,0x26,0x26,0x64,0x28,0x28,0x28,
0x67,0x28,0x28,0x28,0x61,0x2b,0x2b,0x2b,0x68,0x2a,0x2a,0x2a,0x62,0x2a,0x2a,0x2a,
0x63,0x28,0x28,0x28,0x5d,0x23,0x23,0x23,0x4f,0x22,0x22,0x22,0x4c,0x15,0x15,0x15,
0x2e,0x14,0x14,0x14,0x2b,0xc,0xc,0xc,0x1b,0xf,0xf,0xf,0x18,0x12,0x12,0x12,
0x1e,0x15,0x15,0x15,0x23,0x19,0x19,0x19,0x2a,0x1b,0x1b,0x1b,0x2f,0x1e,0x1e,0x1e,
0x35,0x1d,0x1d,0x1d,0x35,0x1d,0x1d,0x1d,0x34,0x1b,0x1b,0x1b,0x33,0x16,0x16,0x16,
0x29,0x12,0x12,0x12,0x23,0x9,0x9,0x9,0x12,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x3,0x3,
0xa,0x12,0x12,0x12,0x45,0x29,0x29,0x29,0xb6,0x29,0x29,0x29,0xe7,0x20,0x20,0x20,
0xea,0x1e,0x1e,0x1e,0xf3,0x1d,0x1d,0x1d,0xfa,0x1f,0x1f,0x1f,0xf7,0x21,0x21,0x21,
0xf4,0x25,0x25,0x25,0xf0,0x28,0x28,0x28,0xed,0x27,0x27,0x27,0xea,0x26,0x26,0x26,
0xe8,0x28,0x28,0x28,0xe2,0x28,0x28,0x28,0xdf,0x29,0x29,0x29,0xd7,0x2c,0x2c,0x2c,
0xd7,0x2d,0x2d,0x2d,0xd2,0x2e,0x2e,0x2e,0xcf,0x30,0x30,0x30,0xc8,0x33,0x33,0x33,
0xd0,0x32,0x32,0x32,0xc7,0x34,0x34,0x34,0xc8,0x30,0x30,0x30,0xbb,0x30,0x30,0x30,
0xb1,0x2d,0x2d,0x2d,0x9e,0x2a,0x2a,0x2a,0x92,0x27,0x27,0x27,0x82,0x27,0x27,0x27,
0x7d,0x28,0x28,0x28,0x7f,0x2a,0x2a,0x2a,0x87,0x2c,0x2c,0x2c,0x89,0x2e,0x2e,0x2e,
0x8d,0x2c,0x2c,0x2c,0x87,0x2b,0x2b,0x2b,0x7e,0x27,0x27,0x27,0x73,0x1f,0x1f,0x1f,
0x5a,0x1b,0x1b,0x1b,0x4d,0x17,0x17,0x17,0x3e,0x19,0x19,0x19,0x42,0x18,0x18,0x18,
0x43,0x19,0x19,0x19,0x46,0x1a,0x1a,0x1a,0x47,0x1b,0x1b,0x1b,0x47,0x1b,0x1b,0x1b,
0x47,0x17,0x17,0x17,0x3c,0x18,0x18,0x18,0x3f,0xe,0xe,0xe,0x22,0xe,0xe,0xe,
0x23,0xc,0xc,0xc,0x1d,0xc,0xc,0xc,0x1d,0xc,0xc,0xc,0x1c,0xa,0xa,0xa,
0x1c,0xc,0xc,0xc,0x20,0xd,0xd,0xd,0x20,0xd,0xd,0xd,0x21,0xb,0xb,0xb,
0x1a,0x8,0x8,0x8,0x12,0x6,0x6,0x6,0xe,0x5,0x5,0x5,0xb,0x4,0x4,0x4,
0x8,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x1,0x1,0x1,0x2,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x2,0x3,0x3,0x3,0xd,0x5,0x5,0x5,
0x15,0x12,0x12,0x12,0x45,0x1a,0x1a,0x1a,0x71,0x16,0x16,0x16,0x5d,0x12,0x12,0x12,
0x4a,0xe,0xe,0xe,0x37,0xc,0xc,0xc,0x32,0xc,0xc,0xc,0x33,0xd,0xd,0xd,
0x33,0xc,0xc,0xc,0x2c,0xb,0xb,0xb,0x29,0x7,0x7,0x7,0x17,0x5,0x5,0x5,
0x11,0x1,0x1,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x4,0x2,0x2,0x2,0x6,0x2,0x2,0x2,
0x7,0x2,0x2,0x2,0x6,0x1,0x1,0x1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xfe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xc0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfe,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x84,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf8,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xc0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0x80,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x0,
0x3,0x81,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x28,0x0,0x0,
0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,
0x0,0x80,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x6,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x10,0x0,0x0,0x0,
0x13,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x20,0x0,0x0,0x0,
0x24,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,
0x2c,0x0,0x0,0x0,0x2d,0x1,0x1,0x1,0x30,0x3,0x3,0x3,0x39,0x1,0x1,0x1,
0x29,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,
0x17,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xb,0x2,0x2,0x2,
0x8,0x24,0x24,0x24,0x6,0x28,0x28,0x28,0x4,0x2d,0x2d,0x2d,0x2,0x38,0x38,0x38,
0x1,0x34,0x34,0x34,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,
0x8,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x13,0x0,0x0,0x0,
0x18,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
0x2b,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x35,0x4,0x4,0x4,
0x45,0x12,0x12,0x12,0x8c,0x16,0x16,0x16,0xd4,0x22,0x22,0x22,0xe5,0x38,0x38,0x38,
0xd6,0x36,0x36,0x36,0xcd,0x2a,0x2a,0x2a,0xa2,0x1f,0x1f,0x1f,0x79,0x12,0x12,0x12,
0x4e,0x9,0x9,0x9,0x2e,0x3,0x3,0x3,0x1a,0x0,0x0,0x0,0xe,0x0,0x0,0x0,
0xa,0x17,0x17,0x17,0x7,0x4c,0x4c,0x4c,0x5,0x5d,0x5d,0x5d,0x3,0x70,0x70,0x70,
0x2,0x77,0x77,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x17,0x0,0x0,0x0,
0x1c,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,
0x34,0x0,0x0,0x0,0x39,0x2,0x2,0x2,0x42,0x10,0x10,0x10,0x82,0x17,0x17,0x17,
0xde,0x16,0x16,0x16,0xfe,0x22,0x22,0x22,0xfe,0x36,0x36,0x36,0xfe,0x43,0x43,0x43,
0xfe,0x4b,0x4b,0x4b,0xfe,0x52,0x52,0x52,0xfe,0x59,0x59,0x59,0xfe,0x60,0x60,0x60,
0xfe,0x5c,0x5c,0x5c,0xef,0x55,0x55,0x55,0xd3,0x4b,0x4b,0x4b,0xaf,0x3b,0x3b,0x3b,
0x80,0x36,0x36,0x36,0x54,0x41,0x41,0x41,0x28,0x44,0x44,0x44,0x6,0x6d,0x6d,0x6d,
0x2,0x78,0x78,0x78,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0xc,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,
0x21,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x36,0x1,0x1,0x1,
0x40,0xe,0xe,0xe,0x7e,0x18,0x18,0x18,0xd8,0x15,0x15,0x15,0xfe,0x1c,0x1c,0x1c,
0xff,0x28,0x28,0x28,0xff,0x2b,0x2b,0x2b,0xfe,0x2e,0x2e,0x2e,0xff,0x31,0x31,0x31,
0xff,0x36,0x36,0x36,0xfe,0x3b,0x3b,0x3b,0xff,0x3f,0x3f,0x3f,0xff,0x44,0x44,0x44,
0xfe,0x53,0x53,0x53,0xff,0x61,0x61,0x61,0xff,0x6f,0x6f,0x6f,0xfe,0x7e,0x7e,0x7e,
0xff,0x8b,0x8b,0x8b,0xff,0x96,0x96,0x96,0xfd,0x8e,0x8e,0x8e,0xed,0x74,0x74,0x74,
0xbf,0x7b,0x7b,0x7b,0x92,0x6b,0x6b,0x6b,0x65,0x59,0x59,0x59,0x3d,0x6e,0x6e,0x6e,
0x1b,0x6f,0x6f,0x6f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,
0x25,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x40,0x14,0x14,0x14,
0xb3,0x18,0x18,0x18,0xfb,0x1b,0x1b,0x1b,0xff,0x21,0x21,0x21,0xfe,0x22,0x22,0x22,
0xff,0x22,0x22,0x22,0xff,0x23,0x23,0x23,0xfe,0x23,0x23,0x23,0xff,0x26,0x26,0x26,
0xff,0x29,0x29,0x29,0xfe,0x2e,0x2e,0x2e,0xff,0x32,0x32,0x32,0xff,0x37,0x37,0x37,
0xfe,0x3b,0x3b,0x3b,0xff,0x3f,0x3f,0x3f,0xff,0x41,0x41,0x41,0xfe,0x44,0x44,0x44,
0xff,0x4b,0x4b,0x4b,0xff,0x55,0x55,0x55,0xff,0x6a,0x6a,0x6a,0xfe,0x80,0x80,0x80,
0xff,0x95,0x95,0x95,0xff,0xaa,0xaa,0xaa,0xfe,0xb0,0xb0,0xb0,0xf9,0xab,0xab,0xab,
0xeb,0xa3,0xa3,0xa3,0xd1,0x86,0x86,0x86,0xa5,0x62,0x62,0x62,0x4c,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xb,0x0,0x0,0x0,
0xf,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x22,0x0,0x0,0x0,
0x2a,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x3b,0x1,0x1,0x1,0x4e,0x1b,0x1b,0x1b,
0xe9,0x21,0x21,0x21,0xfe,0x1f,0x1f,0x1f,0xfe,0x1e,0x1e,0x1e,0xfe,0x1d,0x1d,0x1d,
0xfe,0x1c,0x1c,0x1c,0xfe,0x1c,0x1c,0x1c,0xfe,0x1f,0x1f,0x1f,0xfe,0x22,0x22,0x22,
0xfe,0x25,0x25,0x25,0xfe,0x29,0x29,0x29,0xfe,0x2c,0x2c,0x2c,0xfe,0x30,0x30,0x30,
0xfe,0x33,0x33,0x33,0xfe,0x36,0x36,0x36,0xfe,0x39,0x39,0x39,0xfe,0x3c,0x3c,0x3c,
0xfe,0x3f,0x3f,0x3f,0xfe,0x42,0x42,0x42,0xfe,0x44,0x44,0x44,0xfe,0x46,0x46,0x46,
0xfe,0x47,0x47,0x47,0xfe,0x4a,0x4a,0x4a,0xfe,0x58,0x58,0x58,0xfe,0x6a,0x6a,0x6a,
0xfe,0x80,0x80,0x80,0xfe,0x96,0x96,0x96,0xfe,0x89,0x89,0x89,0xcf,0x5a,0x5a,0x5a,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0x11,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x25,0x0,0x0,0x0,
0x2e,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x41,0x1,0x1,0x1,0x4d,0x17,0x17,0x17,
0xbb,0x1b,0x1b,0x1b,0xeb,0x1d,0x1d,0x1d,0xf8,0x1e,0x1e,0x1e,0xfe,0x24,0x24,0x24,
0xff,0x28,0x28,0x28,0xff,0x1e,0x1e,0x1e,0xfe,0x1e,0x1e,0x1e,0xff,0x21,0x21,0x21,
0xff,0x25,0x25,0x25,0xfe,0x29,0x29,0x29,0xff,0x2e,0x2e,0x2e,0xff,0x31,0x31,0x31,
0xfe,0x36,0x36,0x36,0xff,0x39,0x39,0x39,0xff,0x3c,0x3c,0x3c,0xfe,0x3e,0x3e,0x3e,
0xff,0x40,0x40,0x40,0xff,0x42,0x42,0x42,0xff,0x43,0x43,0x43,0xfe,0x44,0x44,0x44,
0xff,0x46,0x46,0x46,0xff,0x48,0x48,0x48,0xfe,0x4c,0x4c,0x4c,0xff,0x4f,0x4f,0x4f,
0xff,0x50,0x50,0x50,0xfe,0x49,0x49,0x49,0xe1,0x3f,0x3f,0x3f,0x70,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,
0x38,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x4f,0x1,0x1,0x1,
0x59,0x3,0x3,0x3,0x6a,0xe,0xe,0xe,0x93,0x15,0x15,0x15,0xec,0x17,0x17,0x17,
0xff,0x21,0x21,0x21,0xff,0x27,0x27,0x27,0xfe,0x20,0x20,0x20,0xff,0x24,0x24,0x24,
0xff,0x29,0x29,0x29,0xfe,0x2d,0x2d,0x2d,0xff,0x32,0x32,0x32,0xff,0x37,0x37,0x37,
0xfe,0x3c,0x3c,0x3c,0xff,0x41,0x41,0x41,0xff,0x44,0x44,0x44,0xfe,0x46,0x46,0x46,
0xff,0x47,0x47,0x47,0xff,0x48,0x48,0x48,0xff,0x4a,0x4a,0x4a,0xfe,0x4b,0x4b,0x4b,
0xff,0x50,0x50,0x50,0xff,0x56,0x56,0x56,0xfe,0x57,0x57,0x57,0xfb,0x4f,0x4f,0x4f,
0xd3,0x4a,0x4a,0x4a,0x6a,0x4f,0x4f,0x4f,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xd,0x0,0x0,0x0,
0x12,0x2,0x2,0x2,0x22,0xd,0xd,0xd,0x6b,0x11,0x11,0x11,0xc8,0x11,0x11,0x11,
0xda,0xf,0xf,0xf,0xda,0xc,0xc,0xc,0xc8,0x9,0x9,0x9,0xb9,0x7,0x7,0x7,
0xaa,0xd,0xd,0xd,0xad,0x17,0x17,0x17,0xf0,0x15,0x15,0x15,0xfe,0x22,0x22,0x22,
0xfe,0x22,0x22,0x22,0xfe,0x25,0x25,0x25,0xfe,0x24,0x24,0x24,0xfe,0x29,0x29,0x29,
0xfe,0x2e,0x2e,0x2e,0xfe,0x34,0x34,0x34,0xfe,0x3a,0x3a,0x3a,0xfe,0x41,0x41,0x41,
0xfe,0x4d,0x4d,0x4d,0xfe,0x55,0x55,0x55,0xfe,0x5a,0x5a,0x5a,0xfe,0x5c,0x5c,0x5c,
0xfe,0x5d,0x5d,0x5d,0xfe,0x5c,0x5c,0x5c,0xfe,0x5b,0x5b,0x5b,0xfe,0x5c,0x5c,0x5c,
0xfe,0x5f,0x5f,0x5f,0xfe,0x4b,0x4b,0x4b,0xc5,0x3a,0x3a,0x3a,0x59,0x40,0x40,0x40,
0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xd,0x4,0x4,0x4,
0x24,0x21,0x21,0x21,0xd2,0x25,0x25,0x25,0xfe,0x15,0x15,0x15,0xff,0x14,0x14,0x14,
0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,0xfe,0x11,0x11,0x11,0xff,0x10,0x10,0x10,
0xfe,0x10,0x10,0x10,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xfe,0xf,0xf,0xf,
0xff,0x11,0x11,0x11,0xff,0x14,0x14,0x14,0xfe,0x18,0x18,0x18,0xff,0x1e,0x1e,0x1e,
0xff,0x26,0x26,0x26,0xfe,0x2f,0x2f,0x2f,0xff,0x3e,0x3e,0x3e,0xff,0x4d,0x4d,0x4d,
0xfe,0x46,0x46,0x46,0xdc,0x2c,0x2c,0x2c,0x8a,0x2c,0x2c,0x2c,0x7f,0x37,0x37,0x37,
0x95,0x49,0x49,0x49,0xb7,0x53,0x53,0x53,0xcf,0x5b,0x5b,0x5b,0xe4,0x47,0x47,0x47,
0xb1,0x31,0x31,0x31,0x46,0x31,0x31,0x31,0x4,0x36,0x36,0x36,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xd,0xc,0xc,0xc,
0x4d,0x28,0x28,0x28,0xfa,0x22,0x22,0x22,0xfe,0x14,0x14,0x14,0xff,0x13,0x14,0x14,
0xff,0x12,0x17,0x16,0xff,0x13,0x15,0x15,0xfe,0x12,0x13,0x13,0xff,0x12,0x12,0x12,
0xfe,0x12,0x12,0x12,0xff,0x12,0x12,0x12,0xff,0x13,0x13,0x13,0xfe,0x14,0x14,0x14,
0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xfe,0x17,0x17,0x17,0xff,0x18,0x18,0x18,
0xff,0x18,0x18,0x18,0xfe,0x19,0x19,0x19,0xff,0x1b,0x1b,0x1b,0xff,0x1d,0x1d,0x1d,
0xfe,0x16,0x16,0x16,0xe7,0x10,0x10,0x10,0xcc,0xd,0xd,0xd,0xb1,0xa,0xa,0xa,
0x96,0x9,0x9,0x9,0x78,0xa,0xa,0xa,0x64,0x18,0x18,0x18,0x4c,0x19,0x19,0x19,
0x2b,0x23,0x23,0x23,0x17,0x2c,0x2c,0x2c,0xa,0x28,0x28,0x28,0x4,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x4,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xd,0x11,0x11,0x11,
0x65,0x29,0x29,0x29,0xfd,0x20,0x20,0x20,0xfe,0x13,0x13,0x13,0xff,0x12,0x18,0x16,
0xff,0x10,0x2b,0x25,0xff,0x10,0x2b,0x25,0xfe,0x11,0x2b,0x27,0xff,0x18,0x32,0x2e,
0xfe,0x1c,0x39,0x33,0xff,0x1e,0x3a,0x33,0xff,0x18,0x2f,0x29,0xfe,0x19,0x24,0x21,
0xff,0x17,0x1d,0x1c,0xff,0x1a,0x1d,0x1c,0xfe,0x1b,0x1c,0x1c,0xff,0x1d,0x1d,0x1d,
0xff,0x1e,0x1e,0x1e,0xfe,0x1f,0x1f,0x1f,0xff,0x21,0x21,0x21,0xff,0x22,0x22,0x22,
0xfe,0x23,0x23,0x23,0xff,0x23,0x23,0x23,0xff,0x24,0x24,0x24,0xfe,0x24,0x24,0x24,
0xff,0x23,0x23,0x23,0xff,0x22,0x22,0x22,0xfe,0x20,0x20,0x20,0xfc,0x1c,0x1c,0x1c,
0xef,0x19,0x19,0x19,0xe3,0x14,0x14,0x14,0xc9,0x10,0x10,0x10,0xb5,0x12,0x12,0x12,
0x97,0xf,0xf,0xf,0x7a,0xe,0xd,0xc,0x5c,0x14,0x12,0xd,0x3a,0x1d,0x1b,0x11,
0x20,0x2a,0x26,0x16,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x4,0x1,0x1,0x1,0x5,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xc,0x15,0x15,0x15,
0x7d,0x29,0x29,0x29,0xfe,0x1c,0x1c,0x1c,0xfe,0x12,0x12,0x12,0xfe,0x13,0x1b,0x1a,
0xfe,0x10,0x2b,0x27,0xfe,0xf,0x2f,0x27,0xfe,0xf,0x34,0x2e,0xfe,0x14,0x3a,0x33,
0xfe,0x1f,0x4f,0x41,0xfe,0x21,0x64,0x4e,0xfe,0x14,0x53,0x43,0xfe,0x27,0x51,0x3d,
0xfe,0x18,0x3c,0x33,0xfe,0xc,0x31,0x2d,0xfe,0x15,0x4b,0x41,0xfe,0x41,0x92,0x82,
0xfe,0x19,0x5f,0x52,0xfe,0x13,0x3b,0x32,0xfe,0x1f,0x3e,0x34,0xfe,0x28,0x3d,0x36,
0xfe,0x22,0x2f,0x2e,0xfe,0x23,0x2a,0x29,0xfe,0x26,0x29,0x29,0xfe,0x28,0x2a,0x29,
0xfe,0x29,0x29,0x29,0xfe,0x2a,0x2a,0x2a,0xfe,0x29,0x29,0x29,0xfe,0x29,0x29,0x29,
0xfe,0x29,0x29,0x29,0xfe,0x28,0x28,0x28,0xfe,0x27,0x27,0x27,0xfe,0x25,0x25,0x25,
0xfe,0x24,0x24,0x24,0xfe,0x21,0x21,0x21,0xfe,0x1e,0x1e,0x1e,0xfe,0x41,0x36,0x18,
0xfa,0x4b,0x3b,0x13,0xea,0x16,0x14,0xd,0xbd,0x14,0x14,0xc,0x4f,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x1,0x1,0x1,0x5,0x1,0x1,0x1,0x8,0x0,0x0,0x0,0xb,0x1b,0x1b,0x1b,
0x97,0x29,0x29,0x29,0xff,0x19,0x19,0x19,0xfe,0x12,0x12,0x12,0xff,0xf,0x18,0x17,
0xff,0xc,0x28,0x23,0xff,0xb,0x2f,0x2b,0xfe,0xc,0x35,0x2f,0xff,0x15,0x3e,0x35,
0xfe,0x1c,0x5a,0x46,0xff,0x11,0x67,0x53,0xff,0x11,0x41,0x3a,0xfe,0x1d,0x4c,0x41,
0xff,0xa,0x39,0x35,0xff,0x10,0x42,0x39,0xfe,0x2d,0x75,0x66,0xff,0x21,0x7f,0x6d,
0xff,0x7,0x52,0x43,0xfe,0xf,0x48,0x39,0xff,0x1c,0x5e,0x4d,0xff,0x28,0x5d,0x52,
0xfe,0x11,0x3d,0x35,0xff,0xe,0x32,0x2d,0xff,0xe,0x2a,0x27,0xfe,0x10,0x35,0x2f,
0xff,0x18,0x3c,0x36,0xff,0x1e,0x4a,0x40,0xff,0x22,0x4a,0x3f,0xfe,0x25,0x44,0x3b,
0xff,0x28,0x3e,0x36,0xff,0x26,0x3d,0x38,0xfe,0x28,0x3c,0x37,0xff,0x28,0x31,0x2f,
0xff,0x26,0x2a,0x29,0xfe,0x26,0x27,0x27,0xff,0x24,0x24,0x24,0xff,0x5f,0x4f,0x21,
0xfe,0x89,0x71,0x21,0xff,0x2e,0x2a,0x1d,0xff,0xe,0xe,0xe,0xb0,0x23,0x23,0x1b,
0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,
0x3,0x3,0x3,0x3,0x5,0x6,0x6,0x6,0x7,0x0,0x0,0x0,0x9,0x1f,0x1f,0x1f,
0xae,0x28,0x28,0x28,0xfe,0x17,0x17,0x17,0xfe,0x12,0x11,0x11,0xfe,0x10,0x1f,0x1b,
0xfe,0xc,0x30,0x29,0xfe,0x10,0x39,0x31,0xfe,0x13,0x3c,0x35,0xfe,0x22,0x4c,0x3d,
0xfe,0x23,0x5c,0x49,0xfe,0x1c,0x51,0x44,0xfe,0x14,0x52,0x47,0xfe,0x15,0x62,0x52,
0xfe,0xb,0x4a,0x3e,0xfe,0x1c,0x62,0x51,0xfe,0x1d,0x69,0x58,0xfe,0x6,0x5d,0x4a,
0xfe,0xe,0x63,0x50,0xfe,0x15,0x53,0x46,0xfe,0x12,0x44,0x39,0xfe,0x13,0x3f,0x36,
0xfe,0xe,0x34,0x31,0xfe,0x11,0x36,0x31,0xfe,0x16,0x42,0x3c,0xfe,0x14,0x5e,0x50,
0xfe,0x14,0x79,0x62,0xfe,0x1d,0x68,0x51,0xfe,0x23,0x67,0x4f,0xfe,0x20,0x6b,0x57,
0xfe,0x15,0x69,0x4f,0xfe,0x12,0x7a,0x63,0xfe,0x1b,0x8c,0x73,0xfe,0x19,0x85,0x6d,
0xfe,0x12,0x58,0x40,0xfe,0x15,0x3b,0x2e,0xfe,0x15,0x36,0x2b,0xfe,0x1b,0x37,0x28,
0xfe,0x1e,0x31,0x27,0xfe,0x23,0x22,0x20,0xfe,0xf,0xf,0xf,0xac,0x28,0x28,0x21,
0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x5,0x5,0x5,0x4,0xf,0xf,0xf,0x6,0x6,0x6,0x6,0x8,0x24,0x24,0x24,
0xca,0x27,0x27,0x27,0xff,0x15,0x15,0x15,0xfe,0x12,0x12,0x12,0xff,0x15,0x25,0x20,
0xff,0x14,0x39,0x30,0xff,0x12,0x3e,0x34,0xfe,0x19,0x51,0x3e,0xff,0x1b,0x59,0x43,
0xfe,0x14,0x44,0x36,0xff,0x14,0x3e,0x34,0xff,0x12,0x56,0x47,0xfe,0x10,0x5e,0x4c,
0xff,0x12,0x52,0x47,0xff,0x39,0x8b,0x7c,0xfe,0x1c,0x76,0x63,0xff,0xa,0x6e,0x5a,
0xff,0x10,0x61,0x52,0xfe,0x4c,0xac,0x9c,0xff,0x1a,0x4e,0x43,0xff,0x23,0x54,0x49,
0xfe,0x20,0x4c,0x41,0xff,0x19,0x4e,0x41,0xff,0x1a,0x68,0x54,0xfe,0x18,0x82,0x6a,
0xff,0x27,0x84,0x6d,0xff,0x2c,0x6b,0x55,0xff,0x27,0x7a,0x65,0xfe,0x20,0x96,0x7c,
0xff,0x29,0x9d,0x80,0xff,0x34,0xaf,0x96,0xfe,0x1f,0xa5,0x8c,0xff,0x35,0xa3,0x88,
0xff,0xb,0x64,0x46,0xfe,0xf,0x4b,0x30,0xff,0x1b,0x4e,0x33,0xff,0x12,0x5b,0x3d,
0xfe,0x26,0x56,0x46,0xff,0x35,0x35,0x35,0xff,0x24,0x27,0x23,0x95,0x33,0x35,0x2d,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x2,0x8,0x8,0x8,0x3,0x16,0x16,0x16,0x5,0x8,0x8,0x8,0x9,0x27,0x27,0x27,
0xdd,0x26,0x26,0x26,0xff,0x13,0x13,0x13,0xfe,0x12,0x13,0x13,0xff,0x11,0x2c,0x25,
0xff,0x12,0x44,0x37,0xff,0x13,0x58,0x44,0xfe,0x10,0x75,0x59,0xff,0x11,0x55,0x44,
0xfe,0x13,0x3e,0x35,0xff,0xe,0x3b,0x32,0xff,0x14,0x4c,0x3c,0xfe,0x13,0x50,0x44,
0xff,0x57,0xa0,0x95,0xff,0x5e,0xaf,0xa2,0xfe,0x12,0x53,0x45,0xff,0x18,0x68,0x55,
0xff,0x30,0x86,0x73,0xfe,0x36,0x79,0x6a,0xff,0x1d,0x56,0x48,0xff,0x1b,0x54,0x48,
0xfe,0x15,0x50,0x46,0xff,0x15,0x65,0x55,0xff,0x1b,0x76,0x60,0xfe,0x26,0x74,0x5e,
0xff,0x31,0x77,0x63,0xff,0x31,0x77,0x63,0xff,0x26,0x7b,0x66,0xfe,0x22,0x99,0x7d,
0xff,0x24,0xa4,0x86,0xff,0x30,0xb3,0x9a,0xfe,0x37,0xb3,0x9d,0xff,0x18,0x85,0x68,
0xff,0x16,0x83,0x61,0xfe,0x11,0x70,0x51,0xff,0x11,0x79,0x58,0xff,0x24,0x99,0x75,
0xfe,0x50,0x78,0x6c,0xff,0x5d,0x5d,0x5d,0xff,0x2a,0x2d,0x2b,0x79,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,
0x1,0xd,0xd,0xd,0x3,0x1b,0x1b,0x1b,0x4,0x16,0x16,0x16,0x10,0x29,0x29,0x29,
0xf0,0x24,0x24,0x24,0xfe,0x13,0x13,0x13,0xfe,0x14,0x14,0x14,0xfe,0xf,0x35,0x2c,
0xfe,0xa,0x5d,0x46,0xfe,0xf,0x6d,0x53,0xfe,0x13,0x57,0x46,0xfe,0xe,0x47,0x3a,
0xfe,0x16,0x4b,0x3b,0xfe,0x10,0x44,0x38,0xfe,0x1d,0x52,0x46,0xfe,0x22,0x6b,0x5f,
0xfe,0x68,0xbe,0xac,0xfe,0x23,0x5f,0x58,0xfe,0x31,0x6f,0x5c,0xfe,0x15,0x6a,0x57,
0xfe,0x36,0x9f,0x87,0xfe,0x17,0x4c,0x40,0xfe,0x19,0x5b,0x4f,0xfe,0x17,0x63,0x57,
0xfe,0x1f,0x65,0x5a,0xfe,0x2c,0x77,0x67,0xfe,0x2c,0x7c,0x66,0xfe,0x2f,0x86,0x70,
0xfe,0x2a,0x8c,0x73,0xfe,0x20,0x96,0x78,0xfe,0x1d,0x89,0x6a,0xfe,0x19,0x85,0x6a,
0xfe,0x1a,0x96,0x77,0xfe,0x1f,0xab,0x91,0xfe,0x1d,0xa7,0x8a,0xfe,0x2d,0xa2,0x87,
0xfe,0x16,0x7a,0x57,0xfe,0x13,0x81,0x5b,0xfe,0x16,0x8d,0x67,0xfe,0x39,0xb2,0x93,
0xfe,0x56,0x73,0x6b,0xfe,0x59,0x59,0x59,0xfe,0x21,0x25,0x24,0x5c,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x12,0x12,0x12,0x2,0x1e,0x1e,0x1e,0x4,0x1d,0x1d,0x1d,0x1d,0x28,0x28,0x28,
0xf9,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xfe,0x33,0x35,0x34,0xff,0x15,0x56,0x43,
0xff,0xc,0x62,0x48,0xff,0xf,0x52,0x40,0xfe,0xf,0x54,0x43,0xff,0x18,0x5e,0x4a,
0xfe,0xd,0x50,0x42,0xff,0xf,0x56,0x48,0xff,0x27,0x61,0x56,0xfe,0x3a,0x96,0x7f,
0xff,0x25,0x7e,0x69,0xff,0x2c,0x62,0x54,0xfe,0x31,0x75,0x5b,0xff,0x38,0x91,0x80,
0xff,0x20,0x83,0x71,0xfe,0x1a,0x73,0x5f,0xff,0x1e,0x77,0x64,0xff,0x22,0x6f,0x5d,
0xfe,0x3c,0x86,0x6f,0xff,0x46,0x9b,0x81,0xff,0x40,0x9b,0x82,0xfe,0x3f,0x97,0x7c,
0xff,0x30,0xb4,0x92,0xff,0x26,0xb7,0x94,0xff,0x25,0x8f,0x71,0xfe,0x24,0x93,0x75,
0xff,0x20,0xa3,0x83,0xff,0x20,0xa5,0x8c,0xfe,0x29,0xac,0x8e,0xff,0x45,0xa4,0x86,
0xff,0x15,0x9c,0x75,0xfe,0x16,0x97,0x70,0xff,0x1c,0x99,0x73,0xff,0x1e,0xa2,0x7c,
0xfe,0x50,0x65,0x5f,0xff,0x53,0x53,0x53,0xff,0x2b,0x35,0x32,0x3d,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x2,
0x1,0x17,0x17,0x17,0x2,0x21,0x21,0x21,0x3,0x22,0x22,0x22,0x33,0x27,0x27,0x27,
0xfe,0x3d,0x3d,0x3d,0xff,0x4b,0x4b,0x4b,0xfe,0x53,0x59,0x57,0xff,0x14,0x5f,0x4d,
0xff,0xe,0x49,0x39,0xff,0xe,0x4b,0x3b,0xfe,0x10,0x50,0x40,0xff,0x9,0x52,0x43,
0xfe,0x11,0x5c,0x4a,0xff,0xe,0x64,0x56,0xff,0x3b,0x8f,0x7d,0xfe,0x43,0xa6,0x8c,
0xff,0x19,0x73,0x5e,0xff,0x51,0x8f,0x7b,0xfe,0x25,0x74,0x61,0xff,0x3c,0xa3,0x92,
0xff,0x22,0x82,0x6f,0xfe,0x24,0x7b,0x65,0xff,0x2f,0x88,0x6f,0xff,0x41,0x9d,0x83,
0xfe,0x5a,0xae,0x93,0xff,0x57,0xac,0x8c,0xff,0x53,0xa9,0x87,0xfe,0x51,0xb1,0x8e,
0xff,0x3d,0xab,0x8a,0xff,0x39,0x91,0x75,0xff,0x3c,0x9a,0x7c,0xfe,0x2c,0x9c,0x7c,
0xff,0x45,0xc1,0xa3,0xff,0x29,0xb0,0x90,0xfe,0x3e,0xbf,0x9a,0xff,0x33,0x9d,0x79,
0xff,0x1e,0xa1,0x7b,0xfe,0x2d,0xb2,0x8c,0xff,0x33,0xb1,0x8b,0xff,0x49,0xb0,0x90,
0xfe,0x59,0x63,0x60,0xff,0x4e,0x4e,0x4e,0xfd,0x32,0x3e,0x3b,0x28,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1a,0x1a,0x1a,0x1,0x22,0x22,0x22,0x2,0x1c,0x1c,0x1c,0x48,0x25,0x25,0x25,
0xfe,0x3e,0x3e,0x3e,0xfe,0x47,0x47,0x47,0xfe,0x4e,0x56,0x53,0xfe,0x15,0x4b,0x42,
0xfe,0xe,0x49,0x3b,0xfe,0x5,0x47,0x3a,0xfe,0x9,0x67,0x54,0xfe,0x20,0x78,0x62,
0xfe,0xd,0x76,0x5b,0xfe,0x36,0x95,0x7f,0xfe,0x4f,0xab,0x8f,0xfe,0x27,0x97,0x7d,
0xfe,0x29,0x7b,0x63,0xfe,0x41,0x90,0x77,0xfe,0x26,0x8b,0x78,0xfe,0x35,0xa4,0x8e,
0xfe,0x28,0x94,0x7c,0xfe,0x2a,0x9a,0x85,0xfe,0x3a,0x9a,0x83,0xfe,0x62,0xb8,0x9f,
0xfe,0x7b,0xc7,0xac,0xfe,0x57,0xb7,0x98,0xfe,0x5a,0xa7,0x87,0xfe,0x5c,0xb8,0x98,
0xfe,0x46,0xa4,0x86,0xfe,0x58,0xac,0x8d,0xfe,0x41,0x9f,0x81,0xfe,0x4d,0xb6,0x9a,
0xfe,0x5d,0xc6,0xab,0xfe,0x55,0xc7,0xa9,0xfe,0x4c,0xca,0xaa,0xfe,0x5a,0xb6,0x98,
0xfe,0x56,0xbb,0x9d,0xfe,0x62,0xc7,0xab,0xfe,0x62,0xca,0xaf,0xfe,0x6b,0xc2,0xae,
0xfe,0x5a,0x60,0x5e,0xfe,0x46,0x46,0x46,0xf2,0x30,0x3a,0x38,0x14,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1b,0x1b,0x1b,0x1,0x22,0x22,0x22,0x1,0x1b,0x1b,0x1b,0x65,0x24,0x24,0x24,
0xff,0x3f,0x3f,0x3f,0xff,0x45,0x45,0x45,0xfe,0x4a,0x58,0x53,0xff,0x8,0x52,0x40,
0xff,0x3,0x49,0x3a,0xff,0x15,0x6c,0x5a,0xfe,0x29,0x80,0x69,0xff,0x19,0x7b,0x62,
0xfe,0x21,0x94,0x78,0xff,0x5b,0xba,0xa0,0xff,0x30,0x93,0x7b,0xfe,0x2a,0xac,0x96,
0xff,0x3a,0xa3,0x8c,0xff,0x33,0xb7,0x9d,0xfe,0x2f,0xa4,0x88,0xff,0x31,0xa8,0x8e,
0xff,0x30,0xb7,0x9e,0xfe,0x4a,0xb3,0x99,0xff,0x6a,0xbb,0xa1,0xff,0x87,0xd1,0xb4,
0xfe,0x67,0xcc,0xb1,0xff,0x5a,0xca,0xb1,0xff,0x75,0xc1,0xa4,0xfe,0x67,0xaf,0x95,
0xff,0x79,0xc2,0xa6,0xff,0x75,0xc8,0xb0,0xff,0x85,0xd6,0xc0,0xfe,0x84,0xd5,0xc1,
0xff,0x88,0xd7,0xc4,0xff,0x79,0xdc,0xc6,0xfe,0x74,0xd5,0xc0,0xff,0x7e,0xd7,0xc0,
0xff,0x74,0xc8,0xae,0xfe,0x7c,0xd2,0xb8,0xff,0x8a,0xdd,0xcb,0xff,0x86,0xc5,0xbf,
0xfe,0x58,0x5a,0x5a,0xff,0x40,0x40,0x40,0xe5,0x2f,0x36,0x35,0x8,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x23,0x23,0x23,0x1,0x1f,0x1f,0x1f,0x7e,0x24,0x24,0x24,
0xff,0x3f,0x3f,0x3f,0xff,0x43,0x43,0x43,0xfe,0x45,0x5e,0x58,0xff,0x8,0x67,0x53,
0xff,0xa,0x77,0x60,0xff,0x1f,0x8c,0x74,0xfe,0x22,0x8e,0x74,0xff,0x1b,0x8c,0x6f,
0xfe,0x35,0xa2,0x81,0xff,0x3f,0xaa,0x8a,0xff,0x2a,0xa7,0x94,0xfe,0x3f,0xbe,0xb3,
0xff,0x4c,0xb5,0x9e,0xff,0x37,0xb8,0x9c,0xfe,0x4f,0xbe,0xa6,0xff,0x4e,0xb6,0xa2,
0xff,0x65,0xc7,0xb2,0xfe,0x7d,0xcf,0xba,0xff,0x7c,0xc9,0xb5,0xff,0x9d,0xdc,0xca,
0xfe,0x8c,0xdb,0xc8,0xff,0x8a,0xd7,0xc4,0xff,0xa1,0xda,0xc6,0xfe,0x94,0xd0,0xbc,
0xff,0x8b,0xcd,0xb9,0xff,0x90,0xd5,0xc2,0xff,0x8c,0xd5,0xc2,0xfe,0xa2,0xe3,0xd6,
0xff,0x8c,0xdf,0xcd,0xff,0x8b,0xe3,0xcf,0xfe,0x85,0xdc,0xc8,0xff,0x7e,0xc9,0xb5,
0xff,0x76,0xd2,0xb9,0xfe,0x92,0xde,0xcb,0xff,0x9e,0xe2,0xd1,0xff,0x8e,0xb8,0xb0,
0xfe,0x58,0x58,0x58,0xff,0x37,0x37,0x37,0xc8,0x4a,0x54,0x52,0x2,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x21,0x21,0x21,0x1,0x1e,0x1e,0x1e,0x96,0x24,0x24,0x24,
0xfe,0x40,0x40,0x40,0xfe,0x42,0x42,0x42,0xfe,0x4c,0x6c,0x65,0xfe,0x2f,0x8d,0x7d,
0xfe,0x31,0x97,0x84,0xfe,0x3e,0xae,0x9a,0xfe,0x55,0xb6,0xa4,0xfe,0x55,0xb2,0x99,
0xfe,0x6e,0xbf,0xa7,0xfe,0x5f,0xc1,0xad,0xfe,0x60,0xc5,0xb4,0xfe,0x73,0xc6,0xb4,
0xfe,0x61,0xc5,0xb0,0xfe,0x73,0xd5,0xc1,0xfe,0x84,0xcd,0xb9,0xfe,0x7f,0xca,0xb6,
0xfe,0x81,0xd5,0xc2,0xfe,0x8d,0xde,0xcc,0xfe,0x8a,0xd3,0xbf,0xfe,0xa1,0xdf,0xcc,
0xfe,0x99,0xd6,0xc6,0xfe,0xab,0xdd,0xce,0xfe,0xa2,0xd8,0xca,0xfe,0x93,0xd6,0xc5,
0xfe,0x99,0xe2,0xd2,0xfe,0xa2,0xe6,0xd9,0xfe,0xa3,0xe4,0xd6,0xfe,0x97,0xe7,0xd8,
0xfe,0x91,0xe1,0xd0,0xfe,0x92,0xe4,0xd2,0xfe,0x9d,0xe6,0xd8,0xfe,0x8d,0xdd,0xcb,
0xfe,0x85,0xd1,0xbb,0xfe,0x8e,0xdd,0xc9,0xfe,0xa5,0xe9,0xd8,0xfe,0x81,0xa7,0x9d,
0xfe,0x57,0x57,0x57,0xfe,0x2e,0x2e,0x2e,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x20,0x20,0x20,0x2,0x1d,0x1d,0x1d,0xb2,0x28,0x28,0x28,
0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xfe,0x57,0x8c,0x80,0xff,0x4b,0xb2,0x9b,
0xff,0x50,0xb0,0x9b,0xff,0x6b,0xc2,0xac,0xfe,0x7b,0xcf,0xbc,0xff,0x7d,0xcb,0xb4,
0xfe,0x7e,0xca,0xb5,0xff,0x66,0xcf,0xba,0xff,0x78,0xc9,0xb6,0xfe,0x6a,0xd4,0xc1,
0xff,0x61,0xd2,0xba,0xff,0x7c,0xd2,0xbc,0xfe,0x90,0xdc,0xcb,0xff,0x92,0xde,0xcb,
0xff,0x8c,0xe5,0xd3,0xfe,0x8a,0xe0,0xd0,0xff,0x94,0xda,0xca,0xff,0xa3,0xdf,0xd2,
0xfe,0xaf,0xe1,0xd5,0xff,0xad,0xe2,0xd4,0xff,0x98,0xd7,0xc9,0xfe,0x9e,0xe3,0xd7,
0xff,0xa3,0xe8,0xdc,0xff,0xab,0xe5,0xd8,0xff,0xa1,0xe7,0xd8,0xfe,0xa3,0xed,0xde,
0xff,0xad,0xed,0xdf,0xff,0x9e,0xe4,0xd4,0xfe,0xb3,0xe7,0xdd,0xff,0xa2,0xdd,0xcf,
0xff,0x90,0xde,0xcc,0xfe,0xa5,0xea,0xd9,0xff,0xa7,0xe9,0xd7,0xff,0x7a,0x95,0x8f,
0xfe,0x56,0x56,0x56,0xff,0x25,0x25,0x25,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x21,0x21,0x21,0x6,0x1e,0x1e,0x1e,0xc4,0x2c,0x2c,0x2c,
0xff,0x40,0x40,0x40,0xff,0x40,0x3f,0x3f,0xfe,0x53,0x94,0x86,0xff,0x47,0xbb,0xa1,
0xff,0x4d,0xbd,0xa4,0xff,0x6c,0xc8,0xae,0xfe,0x77,0xd0,0xb9,0xff,0x72,0xc6,0xaf,
0xfe,0x6e,0xcd,0xb7,0xff,0x77,0xcc,0xb9,0xff,0x79,0xcf,0xbb,0xfe,0x5f,0xcf,0xb7,
0xff,0x63,0xd3,0xbc,0xff,0x78,0xd5,0xbe,0xfe,0x8a,0xde,0xcb,0xff,0x9b,0xe1,0xcf,
0xff,0x92,0xe0,0xd0,0xfe,0x90,0xde,0xce,0xff,0x9a,0xe3,0xd2,0xff,0x9c,0xdf,0xd0,
0xfe,0xa6,0xdf,0xd1,0xff,0xa9,0xe9,0xdc,0xff,0xad,0xea,0xdf,0xfe,0xa8,0xe6,0xdb,
0xff,0xb6,0xec,0xe1,0xff,0xb0,0xef,0xe1,0xff,0xaa,0xeb,0xde,0xfe,0xa2,0xec,0xdd,
0xff,0xaf,0xec,0xde,0xff,0xb4,0xe8,0xdd,0xfe,0xb8,0xe7,0xdf,0xff,0xa7,0xeb,0xdc,
0xff,0xa2,0xe9,0xd8,0xfe,0x92,0xe5,0xd1,0xff,0xa6,0xe6,0xd3,0xff,0x6b,0x7f,0x7a,
0xfe,0x54,0x54,0x54,0xff,0x37,0x3c,0x3b,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x23,0x23,0x23,0xe,0x20,0x20,0x20,0xdb,0x2e,0x2e,0x2e,
0xfe,0x3d,0x3d,0x3d,0xfe,0x3f,0x3e,0x3e,0xfe,0x51,0x99,0x88,0xfe,0x45,0xb6,0xa0,
0xfe,0x59,0xc5,0xb1,0xfe,0x63,0xc8,0xb1,0xfe,0x6a,0xc8,0xb1,0xfe,0x54,0xc5,0xad,
0xfe,0x75,0xd0,0xbd,0xfe,0x76,0xd3,0xc3,0xfe,0x67,0xcf,0xb9,0xfe,0x7f,0xdc,0xc6,
0xfe,0x80,0xdb,0xc5,0xfe,0x7a,0xdf,0xcb,0xfe,0x98,0xde,0xce,0xfe,0xa8,0xe8,0xd9,
0xfe,0x8f,0xe8,0xd8,0xfe,0x92,0xe3,0xd1,0xfe,0xa0,0xe4,0xd4,0xfe,0x9f,0xe6,0xd7,
0xfe,0xa5,0xe9,0xdc,0xfe,0xbf,0xf2,0xe8,0xfe,0xb9,0xeb,0xe0,0xfe,0xbc,0xee,0xe2,
0xfe,0xbe,0xf0,0xe4,0xfe,0xb8,0xf1,0xe6,0xfe,0xaf,0xee,0xe2,0xfe,0xb6,0xef,0xe3,
0xfe,0xbc,0xe9,0xdf,0xfe,0xd4,0xf6,0xf0,0xfe,0xaf,0xe6,0xdc,0xfe,0x9d,0xe5,0xd5,
0xfe,0x99,0xe8,0xd8,0xfe,0x9b,0xe1,0xcd,0xfe,0x96,0xd9,0xca,0xfe,0x5d,0x6e,0x6a,
0xfe,0x52,0x52,0x52,0xfd,0x35,0x3a,0x39,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x21,0x21,0x21,0x16,0x20,0x20,0x20,0xe9,0x2f,0x2f,0x2f,
0xff,0x3b,0x3b,0x3b,0xff,0x3d,0x3d,0x3d,0xfe,0x4b,0xa6,0x94,0xff,0x44,0xbb,0xa6,
0xff,0x58,0xc7,0xb1,0xff,0x67,0xc7,0xb2,0xfe,0x68,0xce,0xb7,0xff,0x71,0xd2,0xbf,
0xfe,0x88,0xd4,0xc1,0xff,0x96,0xdb,0xc5,0xff,0xbd,0xe5,0xd0,0xfe,0xb2,0xe0,0xcc,
0xff,0x9d,0xd0,0xbe,0xff,0x97,0xd9,0xc8,0xfe,0xc0,0xef,0xe5,0xff,0xbe,0xf0,0xe6,
0xff,0xa2,0xe6,0xda,0xfe,0xa6,0xe8,0xda,0xff,0xa0,0xe7,0xd8,0xff,0xa9,0xec,0xdf,
0xfe,0xb5,0xed,0xe2,0xff,0xb0,0xe1,0xd8,0xff,0xbc,0xe9,0xe0,0xfe,0xc2,0xee,0xe4,
0xff,0xba,0xeb,0xe1,0xff,0xb3,0xea,0xdf,0xff,0xb9,0xe9,0xdd,0xfe,0xb9,0xe3,0xd6,
0xff,0xd1,0xf3,0xe8,0xff,0xcb,0xf0,0xe7,0xfe,0xad,0xe4,0xd4,0xff,0x98,0xde,0xcc,
0xff,0x98,0xe2,0xcf,0xfe,0xc1,0xea,0xda,0xff,0x8f,0xe0,0xcf,0xff,0x56,0x61,0x60,
0xfe,0x4e,0x4e,0x4e,0xf9,0x2c,0x30,0x2f,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x18,0x18,0x18,0x28,0x20,0x20,0x20,0xf5,0x2f,0x2f,0x2f,
0xff,0x39,0x39,0x39,0xff,0x3f,0x3f,0x3e,0xfe,0x43,0x9f,0x8f,0xff,0x3e,0xab,0x9a,
0xff,0x5b,0xb9,0xa7,0xff,0x6b,0xc4,0xb1,0xfe,0x85,0xcf,0xbf,0xff,0xa5,0xdc,0xc6,
0xfe,0xcb,0xe3,0xd2,0xff,0xd1,0xe2,0xd4,0xff,0xe4,0xed,0xe1,0xfe,0xd5,0xe6,0xd9,
0xff,0xc6,0xe4,0xd2,0xff,0xbf,0xe6,0xd5,0xfe,0xbd,0xe8,0xdc,0xff,0xb7,0xe4,0xd4,
0xff,0xa4,0xe1,0xd2,0xfe,0xa5,0xe0,0xd3,0xff,0xb1,0xde,0xd2,0xff,0xba,0xe3,0xd9,
0xfe,0xbe,0xdc,0xd3,0xff,0xba,0xd7,0xd3,0xff,0xbe,0xe0,0xd9,0xfe,0xbc,0xe0,0xd7,
0xff,0xc4,0xe5,0xda,0xff,0xd8,0xed,0xe1,0xff,0xda,0xeb,0xe0,0xfe,0xe3,0xf3,0xe9,
0xff,0xe5,0xf5,0xec,0xff,0xd6,0xef,0xe4,0xfe,0xd2,0xee,0xe0,0xff,0xd1,0xed,0xdd,
0xff,0xb5,0xe3,0xd2,0xfe,0xcf,0xf0,0xe7,0xff,0xba,0xe5,0xdb,0xff,0x58,0x5a,0x59,
0xfe,0x4c,0x4c,0x4c,0xf5,0x38,0x3d,0x3c,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1a,0x1a,0x1a,0x37,0x1f,0x1f,0x1f,0xfb,0x30,0x30,0x30,
0xfe,0x36,0x36,0x36,0xfe,0x40,0x41,0x40,0xfe,0x43,0x8b,0x80,0xfe,0x49,0x91,0x86,
0xfe,0x56,0xa4,0x9b,0xfe,0x6c,0xb8,0xac,0xfe,0xa9,0xd0,0xbd,0xfe,0xdc,0xe8,0xd5,
0xfe,0xd9,0xec,0xdf,0xfe,0xf0,0xf7,0xed,0xfe,0xf9,0xf8,0xef,0xfe,0xcf,0xdb,0xce,
0xfe,0xe0,0xea,0xd8,0xfe,0xd7,0xeb,0xde,0xfe,0xc9,0xe5,0xd7,0xfe,0xae,0xde,0xcd,
0xfe,0xc1,0xe1,0xd1,0xfe,0xc8,0xe2,0xd6,0xfe,0xd4,0xe7,0xd9,0xfe,0xde,0xeb,0xe1,
0xfe,0xd6,0xe5,0xdf,0xfe,0xcc,0xe3,0xdf,0xfe,0xc7,0xe2,0xdc,0xfe,0xd9,0xed,0xe5,
0xfe,0xee,0xf6,0xee,0xfe,0xf0,0xf3,0xf0,0xfe,0xea,0xf0,0xeb,0xfe,0xfe,0xfe,0xfd,
0xfe,0xf7,0xfa,0xf8,0xfe,0xf8,0xfb,0xf8,0xfe,0xf5,0xfb,0xf7,0xfe,0xcb,0xeb,0xdc,
0xfe,0xde,0xf0,0xe8,0xfe,0xdc,0xec,0xe7,0xfe,0xbc,0xd6,0xcc,0xfe,0x56,0x56,0x56,
0xfe,0x45,0x45,0x45,0xeb,0x44,0x4a,0x48,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x1d,0x53,0x1e,0x1e,0x1e,0xfe,0x30,0x30,0x30,
0xff,0x33,0x33,0x33,0xff,0x3f,0x42,0x41,0xfe,0x48,0x7a,0x72,0xff,0x4a,0x7e,0x78,
0xff,0x5b,0x93,0x93,0xff,0x89,0xb1,0xa4,0xfe,0xca,0xd4,0xbd,0xff,0xe9,0xe9,0xd5,
0xfe,0xd3,0xdf,0xcd,0xff,0xf4,0xf4,0xe7,0xff,0xed,0xee,0xde,0xfe,0xd6,0xdb,0xc7,
0xff,0xe8,0xed,0xde,0xff,0xcc,0xe6,0xd8,0xfe,0xc3,0xe4,0xd3,0xff,0xdc,0xea,0xdd,
0xff,0xe1,0xec,0xdd,0xfe,0xe6,0xf0,0xe4,0xff,0xf0,0xf5,0xef,0xff,0xed,0xf4,0xef,
0xfe,0xe2,0xef,0xe9,0xff,0xd8,0xee,0xe9,0xff,0xe5,0xf6,0xf2,0xfe,0xf3,0xf9,0xf5,
0xff,0xf3,0xf6,0xf3,0xff,0xf1,0xf4,0xf1,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfd,0xfe,0xfd,0xfe,0xd7,0xec,0xe2,0xff,0xf4,0xfa,0xf5,
0xff,0xee,0xf6,0xf3,0xfe,0xe7,0xfa,0xef,0xff,0xc7,0xca,0xc7,0xff,0x56,0x56,0x56,
0xfe,0x40,0x40,0x40,0xe2,0x41,0x44,0x44,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x15,0x15,0x15,0x6b,0x1c,0x1c,0x1c,0xfe,0x30,0x30,0x30,
0xff,0x31,0x31,0x31,0xff,0x41,0x45,0x43,0xfe,0x45,0x71,0x68,0xff,0x4e,0x7c,0x79,
0xff,0x6b,0x97,0x92,0xff,0xa5,0xbd,0xad,0xfe,0xdb,0xdc,0xc3,0xff,0xf1,0xeb,0xd4,
0xfe,0xda,0xeb,0xd4,0xff,0xf8,0xf2,0xde,0xff,0xe3,0xe5,0xcb,0xfe,0xf0,0xef,0xd9,
0xff,0xce,0xe4,0xcd,0xff,0xcc,0xe2,0xd1,0xfe,0xde,0xe8,0xda,0xff,0xe7,0xee,0xde,
0xff,0xf4,0xf6,0xea,0xfe,0xf4,0xf6,0xef,0xff,0xf1,0xf6,0xee,0xff,0xeb,0xf5,0xed,
0xfe,0xea,0xf4,0xef,0xff,0xe1,0xf1,0xef,0xff,0xec,0xf6,0xf3,0xfe,0xf7,0xfa,0xf7,
0xff,0xf4,0xf6,0xf5,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xe9,0xf3,0xef,0xfe,0xef,0xf8,0xf3,0xff,0xfd,0xfe,0xfc,
0xff,0xf2,0xfc,0xf3,0xfe,0xfd,0xfe,0xfc,0xff,0xb6,0xb6,0xb6,0xff,0x57,0x57,0x57,
0xfe,0x39,0x39,0x39,0xce,0x3f,0x40,0x40,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x16,0x16,0x16,0x87,0x1c,0x1c,0x1c,0xfe,0x30,0x30,0x30,
0xff,0x2e,0x2e,0x2e,0xff,0x3e,0x46,0x44,0xfe,0x4a,0x72,0x6b,0xff,0x5a,0x85,0x80,
0xff,0x85,0xa6,0x9a,0xff,0xca,0xcf,0xb4,0xfe,0xec,0xe5,0xc8,0xff,0xf8,0xee,0xd6,
0xfe,0xe6,0xec,0xd1,0xff,0xf7,0xee,0xd1,0xff,0xf7,0xf0,0xd7,0xfe,0xee,0xed,0xd0,
0xff,0xda,0xdf,0xc4,0xff,0xc8,0xd6,0xbe,0xfe,0xd9,0xe2,0xcf,0xff,0xf2,0xf3,0xe4,
0xff,0xf5,0xf5,0xe8,0xfe,0xf5,0xf7,0xeb,0xff,0xf4,0xf8,0xee,0xff,0xf0,0xf5,0xee,
0xfe,0xe9,0xf2,0xed,0xff,0xea,0xf4,0xf1,0xff,0xf4,0xf9,0xf7,0xfe,0xf4,0xf6,0xf5,
0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,
0xff,0xfa,0xfc,0xfb,0xff,0xe7,0xf2,0xed,0xfe,0xfd,0xfe,0xfd,0xff,0xfb,0xfe,0xf9,
0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xff,0xa4,0xa4,0xa4,0xff,0x58,0x58,0x58,
0xfe,0x39,0x39,0x39,0xb1,0x50,0x50,0x50,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x19,0x19,0x19,0xa2,0x1d,0x1d,0x1d,0xfe,0x2e,0x2e,0x2e,
0xfe,0x2b,0x2b,0x2b,0xfe,0x4c,0x54,0x4f,0xfe,0x73,0x93,0x85,0xfe,0x80,0x9d,0x8d,
0xfe,0xaa,0xb8,0x9f,0xfe,0xdf,0xd8,0xb4,0xfe,0xf4,0xe8,0xc8,0xfe,0xf9,0xec,0xcc,
0xfe,0xf4,0xe8,0xc4,0xfe,0xf9,0xee,0xd1,0xfe,0xf9,0xf1,0xd9,0xfe,0xf2,0xec,0xd1,
0xfe,0xdd,0xdf,0xbe,0xfe,0xd0,0xd8,0xba,0xfe,0xe5,0xea,0xd9,0xfe,0xf8,0xf6,0xe8,
0xfe,0xfb,0xf9,0xed,0xfe,0xfb,0xf9,0xee,0xfe,0xf9,0xf8,0xee,0xfe,0xf5,0xf7,0xef,
0xfe,0xf1,0xf5,0xef,0xfe,0xee,0xf4,0xf1,0xfe,0xf1,0xf5,0xf1,0xfe,0xfe,0xfe,0xfb,
0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfe,0xfb,
0xfe,0xed,0xf2,0xec,0xfe,0xfc,0xfd,0xfc,0xfe,0xfd,0xfe,0xfb,0xfe,0xfe,0xfe,0xfe,
0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0x92,0x92,0x92,0xfe,0x59,0x59,0x59,
0xfe,0x33,0x33,0x33,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x1b,0xba,0x1f,0x1f,0x1f,0xfe,0x2b,0x2b,0x2b,
0xff,0x28,0x28,0x28,0xff,0x65,0x68,0x5a,0xfe,0xa5,0xaf,0x90,0xff,0x96,0xaa,0x96,
0xff,0xb8,0xbc,0x9d,0xff,0xe1,0xd5,0xaa,0xfe,0xef,0xde,0xb0,0xff,0xef,0xde,0xac,
0xfe,0xf4,0xe6,0xbf,0xff,0xf7,0xed,0xd2,0xff,0xf7,0xf0,0xd8,0xfe,0xef,0xeb,0xd1,
0xff,0xe4,0xe7,0xcb,0xff,0xdb,0xe6,0xd0,0xfe,0xf2,0xf3,0xe3,0xff,0xfd,0xf9,0xed,
0xff,0xfe,0xfa,0xf0,0xfe,0xfe,0xfa,0xef,0xff,0xfc,0xf8,0xed,0xff,0xf9,0xf7,0xeb,
0xfe,0xf4,0xf5,0xec,0xff,0xf3,0xf6,0xef,0xff,0xfc,0xfb,0xf6,0xfe,0xfe,0xfe,0xf9,
0xff,0xff,0xfe,0xfc,0xff,0xff,0xff,0xfe,0xff,0xfc,0xfd,0xf7,0xfe,0xfb,0xfd,0xf8,
0xff,0xf5,0xf9,0xf4,0xff,0xfe,0xfe,0xfd,0xfe,0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,
0xff,0xfe,0xfe,0xfe,0xfe,0xfb,0xfb,0xfb,0xff,0x80,0x80,0x80,0xff,0x57,0x57,0x57,
0xfe,0x3d,0x3d,0x3d,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x17,0x17,0x17,0x6,0x1b,0x1b,0x1b,0xd1,0x21,0x21,0x21,0xfe,0x27,0x27,0x27,
0xff,0x26,0x26,0x26,0xff,0x77,0x74,0x5e,0xfe,0xbc,0xb5,0x86,0xff,0xa6,0xac,0x8e,
0xff,0xba,0xb5,0x8c,0xff,0xd3,0xc4,0x8a,0xfe,0xdd,0xc9,0x87,0xff,0xe9,0xd9,0xa6,
0xfe,0xef,0xe6,0xc6,0xff,0xf2,0xea,0xcf,0xff,0xf2,0xec,0xd1,0xfe,0xed,0xea,0xcf,
0xff,0xea,0xeb,0xd5,0xff,0xf4,0xf3,0xe1,0xfe,0xfc,0xfa,0xef,0xff,0xfe,0xfd,0xf5,
0xff,0xfe,0xfe,0xf7,0xfe,0xff,0xfd,0xf4,0xff,0xfe,0xfa,0xf0,0xff,0xfe,0xfa,0xee,
0xfe,0xfd,0xfb,0xf2,0xff,0xfe,0xfd,0xf6,0xff,0xfe,0xfe,0xf9,0xfe,0xff,0xfe,0xfc,
0xff,0xff,0xff,0xfe,0xff,0xfe,0xfe,0xf9,0xff,0xfd,0xfd,0xf5,0xfe,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfe,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xfe,0xfb,0xff,0xff,0xfe,0xfc,
0xff,0xfe,0xfe,0xfe,0xfe,0xf6,0xf6,0xf6,0xff,0x72,0x72,0x73,0xff,0x55,0x55,0x55,
0xfe,0x49,0x49,0x49,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x19,0x19,0x19,0xd,0x1d,0x1d,0x1d,0xe0,0x24,0x24,0x24,0xfe,0x23,0x23,0x23,
0xfe,0x24,0x23,0x23,0xfe,0x86,0x7b,0x54,0xfe,0xc1,0xa9,0x59,0xfe,0xb5,0xa6,0x6a,
0xfe,0xb9,0xab,0x69,0xfe,0xc2,0xb0,0x65,0xfe,0xd9,0xc3,0x7c,0xfe,0xe5,0xd6,0xa4,
0xfe,0xea,0xde,0xb5,0xfe,0xed,0xe3,0xbf,0xfe,0xef,0xe5,0xc1,0xfe,0xf0,0xe9,0xc9,
0xfe,0xf4,0xef,0xd7,0xfe,0xfa,0xf7,0xe9,0xfe,0xfe,0xfc,0xf4,0xfe,0xfe,0xfe,0xfc,
0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfc,0xfe,0xfe,0xfe,0xf8,0xfe,0xfe,0xfe,0xf8,
0xfe,0xfe,0xfe,0xfb,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,
0xfe,0xfe,0xfe,0xfb,0xfe,0xfe,0xfd,0xf5,0xfe,0xfe,0xfe,0xfb,0xfe,0xfe,0xfe,0xfd,
0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe,0xfb,0xfe,0xfe,0xfe,0xfd,
0xfe,0xfe,0xfe,0xfd,0xfe,0xed,0xed,0xea,0xfe,0x63,0x63,0x62,0xfe,0x50,0x50,0x50,
0xfe,0x3e,0x3e,0x3e,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1c,0x1c,0x1c,0x1d,0x1f,0x1f,0x1f,0xed,0x25,0x25,0x25,0xfe,0x1f,0x1f,0x1f,
0xff,0x22,0x22,0x21,0xff,0x96,0x82,0x3e,0xfe,0xc9,0xab,0x44,0xff,0xc5,0xae,0x5c,
0xff,0xc4,0xb1,0x61,0xff,0xd6,0xbd,0x6d,0xfe,0xe2,0xc9,0x81,0xff,0xe6,0xd1,0x96,
0xfe,0xe9,0xd8,0xa4,0xff,0xeb,0xdb,0xab,0xff,0xed,0xdf,0xb2,0xfe,0xf1,0xe6,0xc2,
0xff,0xf6,0xf0,0xd6,0xff,0xfb,0xf8,0xe8,0xfe,0xfe,0xfd,0xf6,0xff,0xff,0xfe,0xfe,
0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfe,0xfe,0xfd,
0xfe,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xfe,0xfd,
0xff,0xff,0xfd,0xf4,0xff,0xff,0xfd,0xf5,0xff,0xfe,0xfe,0xfa,0xfe,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfb,0xff,0xfe,0xfe,0xfb,0xfe,0xff,0xff,0xfb,0xff,0xff,0xfe,0xfa,
0xff,0xfe,0xfe,0xf7,0xfe,0xe0,0xe0,0xda,0xff,0x5b,0x5b,0x5b,0xff,0x4b,0x4b,0x4b,
0xf8,0x37,0x37,0x36,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1b,0x1b,0x1b,0x2b,0x21,0x21,0x21,0xf4,0x26,0x26,0x26,0xfe,0x1c,0x1c,0x1c,
0xff,0x22,0x21,0x1f,0xff,0xab,0x96,0x50,0xfe,0xd6,0xbc,0x6a,0xff,0xd6,0xbf,0x73,
0xff,0xde,0xc6,0x7d,0xff,0xe4,0xcb,0x85,0xfe,0xe6,0xcb,0x84,0xff,0xe7,0xcd,0x87,
0xfe,0xe8,0xd1,0x90,0xff,0xeb,0xd6,0x9c,0xff,0xef,0xde,0xae,0xfe,0xf5,0xe7,0xc3,
0xff,0xf9,0xf0,0xd7,0xff,0xfc,0xf7,0xe5,0xfe,0xfe,0xfc,0xf1,0xff,0xff,0xfe,0xfa,
0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfe,0xfe,0xfc,
0xfe,0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0xfe,0xfe,0xfd,0xfe,0xff,0xfd,0xf5,
0xff,0xff,0xfb,0xf0,0xff,0xff,0xfe,0xf5,0xff,0xfe,0xfe,0xf9,0xfe,0xff,0xfe,0xf8,
0xff,0xff,0xfe,0xf8,0xff,0xfe,0xfe,0xf9,0xfe,0xff,0xfe,0xf7,0xff,0xff,0xfe,0xf3,
0xff,0xfe,0xfd,0xf2,0xfe,0xd0,0xd0,0xca,0xff,0x55,0x55,0x55,0xff,0x44,0x44,0x44,
0xe6,0x4d,0x4d,0x4c,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x18,0x18,0x18,0x44,0x23,0x23,0x23,0xfb,0x25,0x25,0x25,0xfe,0x1a,0x1a,0x1a,
0xfe,0x24,0x23,0x1f,0xfe,0xbf,0xaa,0x6b,0xfe,0xde,0xca,0x8c,0xfe,0xe3,0xd3,0x9d,
0xfe,0xe6,0xd5,0xa0,0xfe,0xe9,0xd2,0x96,0xfe,0xea,0xcd,0x84,0xfe,0xea,0xcd,0x83,
0xfe,0xed,0xd0,0x8c,0xfe,0xf1,0xd6,0x98,0xfe,0xf5,0xdd,0xa8,0xfe,0xf9,0xe6,0xbd,
0xfe,0xfc,0xed,0xce,0xfe,0xfd,0xf2,0xda,0xfe,0xfe,0xf7,0xe5,0xfe,0xfe,0xfb,0xed,
0xfe,0xfe,0xfd,0xf4,0xfe,0xfe,0xfe,0xf6,0xfe,0xfe,0xfe,0xf5,0xfe,0xfe,0xfd,0xf2,
0xfe,0xfe,0xfd,0xf2,0xfe,0xfe,0xfe,0xf3,0xfe,0xfe,0xfd,0xf3,0xfe,0xfe,0xf8,0xe7,
0xfe,0xfe,0xfa,0xeb,0xfe,0xfe,0xfe,0xf4,0xfe,0xfe,0xfe,0xf4,0xfe,0xfe,0xfe,0xf5,
0xfe,0xfe,0xfe,0xf5,0xfe,0xfe,0xfd,0xf2,0xfe,0xfe,0xfd,0xed,0xfe,0xfe,0xfd,0xed,
0xfe,0xfe,0xfd,0xf3,0xfe,0xbc,0xbb,0xb7,0xfe,0x54,0x54,0x54,0xfe,0x3d,0x3d,0x3d,
0xd3,0x51,0x51,0x50,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1c,0x1c,0x1c,0x5a,0x25,0x25,0x25,0xfd,0x24,0x24,0x24,0xfe,0x18,0x18,0x18,
0xff,0x28,0x26,0x20,0xff,0xc7,0xb5,0x75,0xfe,0xdf,0xcf,0x96,0xff,0xe5,0xd6,0xa4,
0xff,0xe9,0xda,0xab,0xff,0xec,0xd8,0xa4,0xfe,0xee,0xd6,0x9b,0xff,0xf1,0xd6,0x9b,
0xfe,0xf3,0xd7,0x99,0xff,0xf6,0xd7,0x97,0xff,0xf9,0xda,0x9c,0xfe,0xfc,0xdf,0xa8,
0xff,0xfe,0xe5,0xb7,0xff,0xfe,0xea,0xc5,0xfe,0xff,0xed,0xcd,0xff,0xff,0xf0,0xd5,
0xff,0xfe,0xf4,0xdb,0xfe,0xff,0xf6,0xe0,0xff,0xff,0xf6,0xe0,0xff,0xfe,0xf7,0xe1,
0xfe,0xff,0xf8,0xe4,0xff,0xff,0xf9,0xe7,0xff,0xfe,0xf6,0xe0,0xfe,0xff,0xf5,0xe0,
0xff,0xff,0xfb,0xec,0xff,0xff,0xfd,0xf0,0xff,0xfe,0xfd,0xef,0xfe,0xff,0xfd,0xef,
0xff,0xff,0xfc,0xec,0xff,0xfe,0xfa,0xe7,0xfe,0xff,0xfb,0xe9,0xff,0xff,0xfd,0xee,
0xff,0xfe,0xfe,0xf0,0xfe,0xa8,0xa8,0xa2,0xff,0x54,0x54,0x54,0xff,0x37,0x37,0x37,
0xba,0x4d,0x4d,0x4c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x21,0x21,0x21,0x74,0x27,0x27,0x27,0xfe,0x23,0x23,0x23,0xfe,0x17,0x17,0x17,
0xff,0x33,0x2f,0x24,0xff,0xd3,0xba,0x6f,0xfe,0xe1,0xc8,0x82,0xff,0xe7,0xd3,0x9a,
0xff,0xeb,0xd9,0xa7,0xff,0xef,0xdc,0xac,0xfe,0xf2,0xdb,0xa9,0xff,0xf4,0xda,0xa1,
0xfe,0xf7,0xd7,0x99,0xff,0xf9,0xd4,0x8d,0xff,0xfb,0xd2,0x85,0xfe,0xfd,0xd4,0x88,
0xff,0xfe,0xd9,0x96,0xff,0xfe,0xdd,0xa1,0xfe,0xff,0xe1,0xac,0xff,0xff,0xe5,0xb7,
0xff,0xfe,0xe8,0xbe,0xfe,0xff,0xeb,0xc6,0xff,0xff,0xee,0xcc,0xff,0xfe,0xf0,0xd2,
0xfe,0xff,0xf3,0xd7,0xff,0xff,0xf2,0xd7,0xff,0xfe,0xf1,0xd5,0xfe,0xff,0xf6,0xdf,
0xff,0xff,0xf9,0xe6,0xff,0xff,0xfa,0xe8,0xff,0xfe,0xfa,0xe8,0xfe,0xff,0xf8,0xe3,
0xff,0xff,0xf6,0xe0,0xff,0xfe,0xf8,0xe2,0xfe,0xff,0xfc,0xe8,0xff,0xff,0xfd,0xe9,
0xff,0xfe,0xfd,0xe9,0xfe,0x96,0x96,0x8e,0xff,0x54,0x54,0x54,0xff,0x47,0x47,0x47,
0xa2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1c,0x1c,0x1c,0x94,0x29,0x29,0x29,0xfe,0x20,0x20,0x20,0xfe,0x15,0x15,0x15,
0xfe,0x3d,0x35,0x20,0xfe,0xda,0xb6,0x51,0xfe,0xe2,0xc0,0x6b,0xfe,0xe6,0xca,0x86,
0xfe,0xe9,0xd1,0x95,0xfe,0xec,0xd3,0x9a,0xfe,0xef,0xd1,0x92,0xfe,0xf1,0xce,0x88,
0xfe,0xf3,0xca,0x76,0xfe,0xf4,0xc5,0x60,0xfe,0xf4,0xc3,0x53,0xfe,0xf6,0xc6,0x5d,
0xfe,0xf6,0xca,0x6e,0xfe,0xf6,0xce,0x7d,0xfe,0xf7,0xd2,0x8c,0xfe,0xf7,0xd6,0x99,
0xfe,0xf7,0xda,0xa4,0xfe,0xf6,0xdd,0xaf,0xfe,0xf6,0xe1,0xb7,0xfe,0xf6,0xe3,0xbe,
0xfe,0xf4,0xe4,0xc3,0xfe,0xf4,0xe4,0xc5,0xfe,0xf3,0xe6,0xc9,0xfe,0xf2,0xe8,0xd0,
0xfe,0xf1,0xe9,0xd2,0xfe,0xf2,0xea,0xd4,0xfe,0xf1,0xe8,0xd1,0xfe,0xef,0xe5,0xcd,
0xfe,0xed,0xe5,0xce,0xfe,0xeb,0xe7,0xd3,0xfe,0xe9,0xe5,0xd2,0xfe,0xe7,0xe3,0xd0,
0xfe,0xe3,0xe0,0xcd,0xfe,0x7a,0x7a,0x74,0xfe,0x54,0x54,0x54,0xfe,0x3b,0x3b,0x3a,
0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x22,0x22,0x22,0xb1,0x2c,0x2c,0x2c,0xff,0x1e,0x1e,0x1e,0xfe,0x14,0x14,0x14,
0xff,0x22,0x1f,0x17,0xff,0x50,0x44,0x24,0xfe,0x4f,0x45,0x2c,0xff,0x4c,0x45,0x32,
0xff,0x4b,0x44,0x35,0xff,0x50,0x49,0x39,0xfe,0x52,0x4a,0x3a,0xff,0x55,0x4d,0x3a,
0xfe,0x5b,0x51,0x39,0xff,0x5d,0x53,0x38,0xff,0x5e,0x55,0x3c,0xfe,0x62,0x59,0x44,
0xff,0x63,0x5c,0x4a,0xff,0x64,0x5d,0x50,0xfe,0x66,0x60,0x55,0xff,0x67,0x62,0x59,
0xff,0x68,0x64,0x5b,0xfe,0x66,0x63,0x5d,0xff,0x65,0x62,0x5d,0xff,0x66,0x64,0x5f,
0xfe,0x66,0x64,0x60,0xff,0x65,0x63,0x60,0xff,0x64,0x62,0x5f,0xfe,0x61,0x60,0x5d,
0xff,0x5e,0x5e,0x5c,0xff,0x5e,0x5d,0x5b,0xff,0x5f,0x5e,0x5c,0xfe,0x5f,0x5e,0x5c,
0xff,0x5f,0x5e,0x5c,0xff,0x5e,0x5d,0x5c,0xfe,0x5c,0x5c,0x5b,0xff,0x5c,0x5b,0x5b,
0xff,0x5b,0x5b,0x5a,0xfe,0x55,0x55,0x55,0xff,0x54,0x54,0x54,0xff,0x34,0x33,0x33,
0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x24,0x24,0x24,0xb0,0x2e,0x2e,0x2e,0xff,0x19,0x19,0x19,0xfe,0x12,0x12,0x12,
0xff,0x13,0x13,0x13,0xff,0x14,0x14,0x14,0xfe,0x16,0x16,0x16,0xff,0x1a,0x1a,0x1a,
0xff,0x1f,0x1f,0x1f,0xff,0x24,0x24,0x24,0xfe,0x2a,0x2a,0x2a,0xff,0x30,0x30,0x30,
0xfe,0x35,0x35,0x35,0xff,0x3a,0x3a,0x3a,0xff,0x3e,0x3e,0x3e,0xfe,0x42,0x42,0x42,
0xff,0x45,0x45,0x45,0xff,0x47,0x47,0x47,0xfe,0x49,0x49,0x49,0xff,0x4a,0x4a,0x4a,
0xff,0x4b,0x4b,0x4b,0xfe,0x4b,0x4b,0x4b,0xff,0x4b,0x4b,0x4b,0xff,0x4c,0x4c,0x4c,
0xfe,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xfe,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4d,0x4d,0x4d,0xfe,0x4e,0x4e,0x4e,
0xff,0x4f,0x4f,0x4f,0xff,0x50,0x50,0x50,0xfe,0x51,0x51,0x51,0xff,0x52,0x52,0x52,
0xff,0x53,0x53,0x53,0xfe,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xf5,0x3d,0x3d,0x3c,
0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x1c,0x1c,0x1c,0x1a,0x21,0x21,0x21,0x97,0x1c,0x1c,0x1c,0xe9,0x15,0x15,0x15,
0xfb,0x15,0x15,0x15,0xfc,0x18,0x18,0x18,0xfa,0x1b,0x1b,0x1b,0xf8,0x1f,0x1f,0x1f,
0xf5,0x24,0x24,0x24,0xf2,0x2a,0x2a,0x2a,0xf1,0x2e,0x2e,0x2e,0xec,0x31,0x31,0x31,
0xe2,0x35,0x35,0x35,0xdf,0x3a,0x3a,0x3a,0xe1,0x3c,0x3c,0x3c,0xde,0x3b,0x3b,0x3b,
0xd2,0x3c,0x3c,0x3c,0xcf,0x3e,0x3e,0x3e,0xd0,0x3e,0x3e,0x3e,0xcc,0x3b,0x3b,0x3b,
0xbc,0x3a,0x3a,0x3a,0xb8,0x3b,0x3b,0x3b,0xba,0x3b,0x3b,0x3b,0xb7,0x37,0x37,0x37,
0xaa,0x44,0x43,0x43,0xa5,0x4b,0x4a,0x49,0xa1,0x4c,0x4b,0x4a,0x9f,0x4a,0x49,0x49,
0x97,0x47,0x47,0x46,0x8f,0x45,0x44,0x44,0x86,0x45,0x45,0x45,0x85,0x45,0x45,0x45,
0x82,0x43,0x43,0x43,0x7a,0x3d,0x3d,0x3d,0x6b,0x3f,0x3f,0x3e,0x68,0x42,0x42,0x41,
0x6d,0x42,0x42,0x41,0x6c,0x3d,0x3d,0x3d,0x63,0x38,0x38,0x38,0x3a,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1a,0x1a,0x1a,0x1,0x18,0x18,0x18,0x17,0x16,0x16,0x16,
0x35,0x17,0x17,0x17,0x3e,0x14,0x14,0x14,0x30,0x15,0x15,0x15,0x2d,0x17,0x17,0x16,
0x22,0x24,0x23,0x22,0x19,0x28,0x28,0x27,0x19,0x2c,0x2c,0x2b,0x18,0x30,0x2f,0x2e,
0x12,0x33,0x33,0x32,0x10,0x37,0x36,0x35,0x11,0x39,0x39,0x37,0xf,0x3a,0x39,0x39,
0x9,0x3b,0x3b,0x3a,0x8,0x3c,0x3c,0x3b,0x8,0x3d,0x3d,0x3c,0x8,0x3c,0x3c,0x3c,
0x4,0x3c,0x3c,0x3c,0x3,0x3c,0x3c,0x3c,0x3,0x3d,0x3d,0x3c,0x3,0x3d,0x3d,0x3d,
0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0xc0,0x0,0x0,
0x0,0xf,0xff,0x0,0x0,0x80,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x0,0x0,0x0,0x0,0x0,
0x0,0x3,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x80,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xc0,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x3,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0xf0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0xe0,0x0,0x0,
0x0,0x0,0x3f,0x0,0x0,0xf0,0x0,0x0,0x1f,0xff,0xff,0x0,0x0,0xff,0xff,0xff,
0xff,0xff,0xff,0x0,0x0,0x28,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,
0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x80,0x10,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0x7,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x18,0x0,0x0,0x0,
0x1e,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,
0x2f,0x7,0x7,0x7,0x50,0xd,0xd,0xd,0x65,0xc,0xc,0xc,0x4d,0x2,0x2,0x2,
0x29,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xd,0x9,0x9,0x9,
0x8,0x32,0x32,0x32,0x5,0x3f,0x3f,0x3f,0x2,0x49,0x49,0x49,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6,0x0,0x0,0x0,
0xa,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,
0x28,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x37,0x8,0x8,0x8,0x5c,0x14,0x14,0x14,
0xc1,0x1c,0x1c,0x1c,0xfd,0x37,0x37,0x37,0xfe,0x49,0x49,0x49,0xff,0x50,0x50,0x50,
0xfa,0x4d,0x4d,0x4d,0xdd,0x41,0x41,0x41,0xb0,0x34,0x34,0x34,0x81,0x24,0x24,0x24,
0x53,0x3e,0x3e,0x3e,0x23,0x58,0x58,0x58,0x4,0x79,0x79,0x79,0x1,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x8,0x0,0x0,0x0,
0xd,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x27,0x0,0x0,0x0,
0x32,0x5,0x5,0x5,0x50,0x13,0x13,0x13,0xb6,0x19,0x19,0x19,0xfb,0x21,0x21,0x21,
0xff,0x29,0x29,0x29,0xff,0x2c,0x2c,0x2c,0xff,0x32,0x32,0x32,0xff,0x38,0x38,0x38,
0xff,0x40,0x40,0x40,0xff,0x4f,0x4f,0x4f,0xff,0x5d,0x5d,0x5d,0xff,0x6f,0x6f,0x6f,
0xff,0x83,0x83,0x83,0xfe,0x8e,0x8e,0x8e,0xeb,0x8b,0x8b,0x8b,0xbe,0x7e,0x7e,0x7e,
0x91,0x7a,0x7a,0x7a,0x61,0x74,0x74,0x74,0x30,0x6f,0x6f,0x6f,0x8,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x0,0x0,0x0,
0x10,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,
0x3c,0x11,0x11,0x11,0xb4,0x1e,0x1e,0x1e,0xff,0x1f,0x1f,0x1f,0xff,0x1e,0x1e,0x1e,
0xff,0x1d,0x1d,0x1d,0xff,0x21,0x21,0x21,0xff,0x25,0x25,0x25,0xff,0x2a,0x2a,0x2a,
0xff,0x30,0x30,0x30,0xff,0x35,0x35,0x35,0xff,0x3a,0x3a,0x3a,0xff,0x3f,0x3f,0x3f,
0xff,0x42,0x42,0x42,0xff,0x44,0x44,0x44,0xff,0x53,0x53,0x53,0xff,0x6c,0x6c,0x6c,
0xff,0x82,0x82,0x82,0xff,0x99,0x99,0x99,0xff,0x8a,0x8a,0x8a,0xd0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x35,0x0,0x0,0x0,
0x44,0xb,0xb,0xb,0x82,0x15,0x15,0x15,0xc7,0x1b,0x1b,0x1b,0xeb,0x22,0x22,0x22,
0xff,0x23,0x23,0x23,0xff,0x1f,0x1f,0x1f,0xff,0x25,0x25,0x25,0xff,0x2b,0x2b,0x2b,
0xff,0x32,0x32,0x32,0xff,0x38,0x38,0x38,0xff,0x3c,0x3c,0x3c,0xff,0x40,0x40,0x40,
0xff,0x43,0x43,0x43,0xff,0x45,0x45,0x45,0xff,0x47,0x47,0x47,0xff,0x4c,0x4c,0x4c,
0xff,0x51,0x51,0x51,0xff,0x48,0x48,0x48,0xdb,0x4b,0x4b,0x4b,0x62,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x0,0x0,0x0,
0x14,0x6,0x6,0x6,0x43,0xc,0xc,0xc,0x9a,0xb,0xb,0xb,0xa9,0x8,0x8,0x8,
0x9d,0x5,0x5,0x5,0x90,0xc,0xc,0xc,0xa2,0x15,0x15,0x15,0xf6,0x1f,0x1f,0x1f,
0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x2c,0x2c,0x2c,0xff,0x34,0x34,0x34,
0xff,0x3d,0x3d,0x3d,0xff,0x4a,0x4a,0x4a,0xff,0x53,0x53,0x53,0xff,0x56,0x56,0x56,
0xff,0x57,0x57,0x57,0xff,0x56,0x56,0x56,0xff,0x5b,0x5b,0x5b,0xfe,0x4e,0x4e,0x4e,
0xc7,0x42,0x42,0x42,0x53,0x4d,0x4d,0x4d,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xc,0xf,0xf,0xf,
0x61,0x25,0x25,0x25,0xfc,0x15,0x15,0x15,0xff,0x13,0x13,0x13,0xff,0x12,0x12,0x12,
0xff,0x11,0x11,0x11,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x11,0x11,0x11,
0xff,0x14,0x14,0x14,0xff,0x19,0x19,0x19,0xff,0x1f,0x1f,0x1f,0xff,0x29,0x29,0x29,
0xff,0x3a,0x3a,0x3a,0xfe,0x2e,0x2e,0x2e,0xc4,0x1e,0x1e,0x1e,0x7a,0x29,0x29,0x29,
0x7a,0x38,0x38,0x38,0x90,0x49,0x49,0x49,0x9e,0x35,0x35,0x35,0x42,0x33,0x33,0x33,
0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xc,0x18,0x18,0x18,
0x93,0x23,0x23,0x23,0xff,0x13,0x13,0x13,0xff,0x11,0x23,0x1e,0xff,0x12,0x25,0x21,
0xff,0x15,0x27,0x24,0xff,0x1a,0x2d,0x29,0xff,0x18,0x27,0x23,0xff,0x17,0x1e,0x1c,
0xff,0x19,0x1b,0x1a,0xff,0x1b,0x1b,0x1b,0xff,0x1d,0x1d,0x1d,0xff,0x1f,0x1f,0x1f,
0xff,0x20,0x20,0x20,0xff,0x21,0x21,0x21,0xff,0x20,0x20,0x20,0xfe,0x1d,0x1d,0x1d,
0xf8,0x1b,0x1b,0x1b,0xe5,0x16,0x16,0x16,0xc8,0x15,0x15,0x15,0xa9,0x19,0x19,0x19,
0x89,0x17,0x17,0x17,0x6a,0x16,0x15,0x14,0x4c,0x1a,0x18,0x11,0x2d,0x24,0x21,0x14,
0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x3,0x1,0x1,0x1,0x6,0x0,0x0,0x0,0xb,0x1d,0x1d,0x1d,
0xac,0x20,0x20,0x20,0xff,0x12,0x12,0x12,0xff,0xf,0x25,0x23,0xff,0xe,0x2e,0x29,
0xff,0x12,0x38,0x31,0xff,0x1f,0x59,0x48,0xff,0x14,0x55,0x45,0xff,0x1f,0x48,0x3a,
0xff,0xd,0x34,0x2f,0xff,0x2e,0x72,0x64,0xff,0x1e,0x6d,0x5e,0xff,0x12,0x3e,0x34,
0xff,0x2b,0x50,0x44,0xff,0x1d,0x32,0x2f,0xff,0x1e,0x2a,0x29,0xff,0x23,0x2c,0x2b,
0xff,0x27,0x2f,0x2d,0xff,0x29,0x2d,0x2c,0xff,0x29,0x2a,0x2a,0xff,0x29,0x28,0x28,
0xff,0x27,0x27,0x27,0xff,0x24,0x24,0x24,0xff,0x20,0x20,0x20,0xfe,0x63,0x52,0x1b,
0xfa,0x36,0x2e,0x13,0xdb,0x19,0x18,0x10,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x3,0x5,0x5,0x5,0x5,0x0,0x0,0x0,0x9,0x22,0x22,0x22,
0xc6,0x1d,0x1d,0x1d,0xff,0x12,0x13,0x12,0xff,0xd,0x2c,0x25,0xff,0xf,0x38,0x31,
0xff,0x1b,0x45,0x3a,0xff,0x1f,0x5e,0x4b,0xff,0x14,0x4c,0x42,0xff,0x12,0x55,0x48,
0xff,0x16,0x55,0x46,0xff,0x18,0x66,0x55,0xff,0xa,0x5d,0x4a,0xff,0x13,0x4e,0x41,
0xff,0x17,0x47,0x3d,0xff,0xf,0x36,0x31,0xff,0x12,0x39,0x34,0xff,0x12,0x57,0x4a,
0xff,0x19,0x66,0x52,0xff,0x21,0x66,0x51,0xff,0x1b,0x60,0x4b,0xff,0x19,0x71,0x5d,
0xff,0x1f,0x6f,0x5d,0xff,0x1a,0x45,0x36,0xff,0x1a,0x30,0x28,0xff,0x2b,0x39,0x26,
0xff,0x29,0x28,0x21,0xff,0x16,0x16,0x13,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x2,0x9,0x9,0x9,0x4,0xa,0xa,0xa,0x7,0x26,0x26,0x26,
0xdf,0x1a,0x1a,0x1a,0xff,0x13,0x15,0x14,0xff,0x15,0x38,0x2e,0xff,0x14,0x49,0x3b,
0xff,0x17,0x5c,0x46,0xff,0x15,0x42,0x36,0xff,0x11,0x4c,0x3f,0xff,0x10,0x54,0x46,
0xff,0x40,0x8f,0x82,0xff,0x15,0x6d,0x5a,0xff,0x12,0x6a,0x59,0xff,0x3b,0x87,0x78,
0xff,0x20,0x53,0x46,0xff,0x1a,0x4c,0x41,0xff,0x19,0x67,0x54,0xff,0x22,0x84,0x6c,
0xff,0x2d,0x6e,0x59,0xff,0x25,0x84,0x6d,0xff,0x2a,0xa1,0x84,0xff,0x32,0xb2,0x9a,
0xff,0x2c,0x9d,0x83,0xff,0xf,0x65,0x47,0xff,0x16,0x54,0x38,0xff,0x1e,0x71,0x53,
0xff,0x41,0x45,0x43,0xff,0x2c,0x30,0x2b,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x10,0x10,0x10,0x3,0x16,0x16,0x16,0xb,0x28,0x28,0x28,
0xf2,0x18,0x18,0x18,0xff,0x12,0x1a,0x19,0xff,0xc,0x4f,0x3e,0xff,0x10,0x6a,0x51,
0xff,0x10,0x4f,0x40,0xff,0x13,0x44,0x38,0xff,0x16,0x4a,0x3e,0xff,0x32,0x7c,0x6f,
0xff,0x4e,0x93,0x88,0xff,0x25,0x63,0x51,0xff,0x2b,0x8e,0x78,0xff,0x1b,0x55,0x49,
0xff,0x18,0x5d,0x51,0xff,0x1e,0x64,0x58,0xff,0x28,0x7a,0x65,0xff,0x2c,0x80,0x6a,
0xff,0x28,0x8b,0x72,0xff,0x1c,0x85,0x6a,0xff,0x1a,0x94,0x76,0xff,0x23,0xaa,0x91,
0xff,0x22,0x9e,0x81,0xff,0x15,0x7f,0x5c,0xff,0x12,0x89,0x64,0xff,0x3b,0xa3,0x87,
0xff,0x5b,0x5b,0x5b,0xff,0x2a,0x30,0x2e,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x1,0x16,0x16,0x16,0x2,0x1f,0x1f,0x1f,0x18,0x28,0x28,0x28,
0xfc,0x3b,0x3b,0x3b,0xff,0x36,0x49,0x43,0xff,0x9,0x5b,0x44,0xff,0x10,0x50,0x3f,
0xff,0x13,0x57,0x45,0xff,0xc,0x51,0x42,0xff,0x23,0x67,0x5b,0xff,0x39,0x9a,0x82,
0xff,0x2f,0x6e,0x5e,0xff,0x2c,0x76,0x61,0xff,0x31,0x93,0x82,0xff,0x1d,0x73,0x5f,
0xff,0x29,0x7d,0x68,0xff,0x43,0x94,0x7a,0xff,0x48,0xa0,0x84,0xff,0x42,0xa3,0x84,
0xff,0x2b,0xb2,0x91,0xff,0x29,0x91,0x73,0xff,0x27,0xa6,0x86,0xff,0x22,0xa9,0x8c,
0xff,0x3b,0xa3,0x84,0xff,0x17,0x9e,0x77,0xff,0x1c,0x9b,0x74,0xff,0x30,0x92,0x75,
0xff,0x55,0x54,0x54,0xff,0x35,0x3f,0x3c,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x1b,0x1,0x20,0x20,0x20,0x2d,0x29,0x29,0x29,
0xff,0x49,0x49,0x49,0xff,0x3e,0x58,0x52,0xff,0xf,0x47,0x3a,0xff,0x7,0x4c,0x3e,
0xff,0x14,0x6c,0x58,0xff,0x14,0x74,0x5d,0xff,0x45,0xa1,0x89,0xff,0x25,0x8f,0x76,
0xff,0x3e,0x86,0x6e,0xff,0x2e,0x93,0x80,0xff,0x27,0x90,0x79,0xff,0x2d,0x93,0x7c,
0xff,0x4f,0xab,0x92,0xff,0x6d,0xbd,0xa0,0xff,0x58,0xad,0x8d,0xff,0x52,0xb3,0x91,
0xff,0x4b,0xa0,0x82,0xff,0x3d,0xa1,0x83,0xff,0x57,0xc1,0xa6,0xff,0x47,0xc8,0xa8,
0xff,0x50,0xb7,0x96,0xff,0x47,0xb7,0x97,0xff,0x5b,0xc7,0xa9,0xff,0x65,0xa3,0x93,
0xff,0x4d,0x4d,0x4d,0xf8,0x37,0x3f,0x3d,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x1d,0x1,0x1f,0x1f,0x1f,0x47,0x2b,0x2b,0x2b,
0xff,0x45,0x45,0x45,0xff,0x35,0x59,0x50,0xff,0x4,0x56,0x44,0xff,0x1f,0x7d,0x68,
0xff,0x1e,0x80,0x67,0xff,0x32,0xa0,0x83,0xff,0x39,0x9e,0x86,0xff,0x30,0xac,0x98,
0xff,0x35,0xb0,0x95,0xff,0x33,0xaa,0x8f,0xff,0x34,0xb4,0x9c,0xff,0x5e,0xbb,0xa3,
0xff,0x80,0xcd,0xb3,0xff,0x72,0xd3,0xbc,0xff,0x78,0xc9,0xaf,0xff,0x78,0xbc,0xa4,
0xff,0x7d,0xcb,0xb3,0xff,0x84,0xd4,0xbf,0xff,0x8c,0xdb,0xc9,0xff,0x7a,0xda,0xc5,
0xff,0x81,0xd5,0xc1,0xff,0x78,0xce,0xb4,0xff,0x8c,0xdc,0xc9,0xff,0x7a,0xa1,0x9c,
0xff,0x47,0x47,0x47,0xe9,0x3b,0x41,0x3f,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x20,0x20,0x61,0x2d,0x2d,0x2d,
0xff,0x42,0x42,0x42,0xff,0x3c,0x71,0x67,0xff,0x24,0x8a,0x76,0xff,0x35,0xa2,0x8d,
0xff,0x44,0xa8,0x8f,0xff,0x60,0xb9,0x9f,0xff,0x4e,0xbe,0xac,0xff,0x66,0xc4,0xb3,
0xff,0x5f,0xcb,0xb5,0xff,0x7a,0xca,0xb6,0xff,0x7e,0xd0,0xbc,0xff,0x8b,0xd8,0xc6,
0xff,0x9c,0xda,0xc7,0xff,0x97,0xd8,0xc7,0xff,0xa3,0xd9,0xc9,0xff,0x93,0xd5,0xc3,
0xff,0x9c,0xe1,0xd2,0xff,0x9d,0xe3,0xd4,0xff,0x96,0xe3,0xd3,0xff,0x8c,0xe3,0xd0,
0xff,0x91,0xdc,0xcb,0xff,0x82,0xd5,0xbe,0xff,0xa1,0xe5,0xd4,0xff,0x76,0x8f,0x89,
0xff,0x3d,0x3d,0x3d,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1e,0x1e,0x7c,0x31,0x31,0x31,
0xff,0x40,0x40,0x40,0xff,0x52,0x9d,0x8c,0xff,0x4e,0xb4,0x9e,0xff,0x71,0xc8,0xb2,
0xff,0x7b,0xcb,0xb5,0xff,0x77,0xcf,0xba,0xff,0x74,0xca,0xb6,0xff,0x63,0xd2,0xbd,
0xff,0x73,0xd1,0xbb,0xff,0x90,0xdd,0xcb,0xff,0x93,0xe4,0xd3,0xff,0x8e,0xdc,0xcc,
0xff,0x9e,0xde,0xd0,0xff,0xae,0xe2,0xd5,0xff,0x9e,0xdd,0xcf,0xff,0xa2,0xe5,0xda,
0xff,0xac,0xe9,0xdc,0xff,0xa3,0xe9,0xda,0xff,0xa8,0xed,0xde,0xff,0xad,0xe7,0xdb,
0xff,0xa7,0xe2,0xd5,0xff,0x9b,0xe4,0xd3,0xff,0xa4,0xe9,0xd7,0xff,0x6d,0x7d,0x7a,
0xff,0x38,0x39,0x39,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x20,0x20,0x96,0x33,0x33,0x33,
0xff,0x3e,0x3e,0x3e,0xff,0x4d,0x9f,0x8e,0xff,0x50,0xc0,0xaa,0xff,0x67,0xc9,0xb2,
0xff,0x62,0xc7,0xaf,0xff,0x72,0xcf,0xbc,0xff,0x6f,0xcf,0xbc,0xff,0x75,0xd9,0xc2,
0xff,0x7a,0xdc,0xc6,0xff,0x98,0xe0,0xcf,0xff,0x95,0xe4,0xd5,0xff,0x94,0xe4,0xd2,
0xff,0x9f,0xe4,0xd5,0xff,0xaa,0xe9,0xdd,0xff,0xbb,0xee,0xe3,0xff,0xb9,0xed,0xe1,
0xff,0xb7,0xf0,0xe4,0xff,0xae,0xee,0xe1,0xff,0xb7,0xec,0xe0,0xff,0xc4,0xef,0xe7,
0xff,0xa4,0xe6,0xd8,0xff,0x98,0xe7,0xd5,0xff,0x9b,0xdd,0xcc,0xff,0x5d,0x68,0x65,
0xff,0x3f,0x42,0x41,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1e,0x1e,0xaf,0x33,0x33,0x33,
0xff,0x3d,0x3c,0x3c,0xff,0x46,0xaa,0x98,0xff,0x52,0xc1,0xad,0xff,0x6a,0xc9,0xb4,
0xff,0x79,0xd3,0xbf,0xff,0x97,0xd5,0xc2,0xff,0xbf,0xe2,0xcf,0xff,0xb5,0xdc,0xca,
0xff,0xa4,0xdc,0xcb,0xff,0xc0,0xee,0xe4,0xff,0xa9,0xe6,0xda,0xff,0xa2,0xe5,0xd7,
0xff,0xaa,0xe9,0xdc,0xff,0xb4,0xe4,0xdb,0xff,0xb9,0xe4,0xdb,0xff,0xbf,0xeb,0xe1,
0xff,0xb9,0xe8,0xdd,0xff,0xc1,0xe8,0xdc,0xff,0xd1,0xef,0xe3,0xff,0xc7,0xee,0xe2,
0xff,0xa9,0xe2,0xd0,0xff,0xad,0xe6,0xd5,0xff,0xa8,0xe4,0xd6,0xff,0x56,0x5c,0x5b,
0xff,0x33,0x36,0x35,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1a,0x1a,0xc9,0x32,0x32,0x32,
0xff,0x3d,0x3d,0x3d,0xff,0x42,0x91,0x85,0xff,0x53,0xa4,0x99,0xff,0x78,0xbf,0xb2,
0xff,0xc5,0xe0,0xcc,0xff,0xdb,0xec,0xdf,0xff,0xf8,0xf9,0xf0,0xff,0xd6,0xe2,0xd3,
0xff,0xd4,0xe9,0xda,0xff,0xc0,0xe3,0xd4,0xff,0xb4,0xe0,0xd0,0xff,0xc3,0xe2,0xd5,
0xff,0xd2,0xe6,0xdc,0xff,0xcf,0xe1,0xdb,0xff,0xc5,0xe1,0xdb,0xff,0xd4,0xea,0xe1,
0xff,0xec,0xf3,0xec,0xff,0xec,0xf3,0xed,0xff,0xf6,0xfa,0xf7,0xff,0xf0,0xf8,0xf3,
0xff,0xd9,0xf0,0xe4,0xff,0xd6,0xec,0xe3,0xff,0xc6,0xe2,0xd9,0xff,0x56,0x57,0x57,
0xff,0x41,0x45,0x44,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x1c,0x1,0x1c,0x1c,0x1c,0xe3,0x31,0x31,0x31,
0xff,0x3c,0x3e,0x3d,0xff,0x47,0x79,0x70,0xff,0x59,0x8d,0x8b,0xff,0x9f,0xbc,0xab,
0xff,0xe6,0xe6,0xd0,0xff,0xdf,0xe8,0xd7,0xff,0xed,0xee,0xdc,0xff,0xe2,0xe6,0xd2,
0xff,0xcd,0xe6,0xd6,0xff,0xd1,0xe7,0xd9,0xff,0xe6,0xee,0xe1,0xff,0xed,0xf3,0xea,
0xff,0xed,0xf4,0xef,0xff,0xe1,0xf0,0xea,0xff,0xe2,0xf4,0xf1,0xff,0xf4,0xf9,0xf6,
0xff,0xf3,0xf6,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xee,0xf7,0xf3,
0xff,0xef,0xf8,0xf2,0xff,0xed,0xf9,0xf1,0xff,0xd2,0xd7,0xd4,0xff,0x56,0x56,0x56,
0xff,0x38,0x3a,0x3a,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x17,0x17,0x17,0x9,0x1d,0x1d,0x1d,0xf6,0x2f,0x2f,0x2f,
0xff,0x3a,0x3e,0x3d,0xff,0x4b,0x75,0x6e,0xff,0x73,0x99,0x92,0xff,0xcc,0xd2,0xb8,
0xff,0xf4,0xec,0xd2,0xff,0xea,0xed,0xd3,0xff,0xf4,0xed,0xd3,0xff,0xe9,0xeb,0xd0,
0xff,0xcc,0xda,0xc4,0xff,0xdf,0xe7,0xd5,0xff,0xf5,0xf5,0xe8,0xff,0xf5,0xf7,0xec,
0xff,0xf0,0xf6,0xee,0xff,0xe8,0xf2,0xee,0xff,0xef,0xf7,0xf5,0xff,0xf7,0xf8,0xf7,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xfd,0xfd,0xff,0xec,0xf5,0xf1,
0xff,0xfc,0xfe,0xfa,0xff,0xfd,0xfe,0xfd,0xff,0xc5,0xc5,0xc5,0xff,0x55,0x55,0x55,
0xff,0x3d,0x3d,0x3d,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x1b,0x1c,0x1e,0x1e,0x1e,0xfd,0x2c,0x2c,0x2c,
0xff,0x45,0x4a,0x45,0xff,0x80,0x9c,0x8a,0xff,0xa2,0xb2,0x9b,0xff,0xe6,0xdc,0xb7,
0xff,0xf6,0xe8,0xc5,0xff,0xf6,0xe9,0xc5,0xff,0xf9,0xf0,0xd8,0xff,0xed,0xe9,0xcd,
0xff,0xd5,0xdd,0xbf,0xff,0xed,0xef,0xdf,0xff,0xfc,0xf9,0xed,0xff,0xfb,0xf9,0xee,
0xff,0xf7,0xf7,0xee,0xff,0xf0,0xf5,0xef,0xff,0xf2,0xf6,0xf2,0xff,0xfe,0xfe,0xfb,
0xff,0xff,0xff,0xfe,0xff,0xfd,0xfe,0xfc,0xff,0xf3,0xf7,0xf2,0xff,0xfd,0xfe,0xfc,
0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xb2,0xb2,0xb2,0xff,0x50,0x50,0x50,
0xfb,0x42,0x42,0x42,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x19,0x19,0x19,0x35,0x20,0x20,0x20,0xff,0x27,0x27,0x27,
0xff,0x59,0x58,0x4b,0xff,0xb3,0xb2,0x8b,0xff,0xb1,0xb3,0x91,0xff,0xd9,0xca,0x92,
0xff,0xe8,0xd6,0x9f,0xff,0xf1,0xe8,0xc8,0xff,0xf3,0xed,0xd3,0xff,0xec,0xea,0xd0,
0xff,0xeb,0xef,0xdb,0xff,0xfc,0xfa,0xee,0xff,0xfe,0xfd,0xf4,0xff,0xfe,0xfb,0xf2,
0xff,0xfd,0xf9,0xed,0xff,0xfb,0xfa,0xf1,0xff,0xfe,0xfd,0xf8,0xff,0xff,0xfe,0xfc,
0xff,0xfe,0xfe,0xfc,0xff,0xfd,0xfd,0xf7,0xff,0xfd,0xfe,0xfc,0xff,0xff,0xff,0xfe,
0xff,0xff,0xfe,0xfc,0xff,0xff,0xff,0xff,0xff,0x9e,0x9e,0x9e,0xff,0x48,0x48,0x48,
0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1a,0x1a,0x1a,0x4e,0x22,0x22,0x22,0xff,0x22,0x22,0x22,
0xff,0x68,0x5e,0x3f,0xff,0xc0,0xa8,0x55,0xff,0xb9,0xab,0x68,0xff,0xcc,0xb7,0x69,
0xff,0xe4,0xd2,0x99,0xff,0xeb,0xde,0xb5,0xff,0xee,0xe3,0xbd,0xff,0xf1,0xe9,0xca,
0xff,0xf9,0xf6,0xe5,0xff,0xfe,0xfd,0xf7,0xff,0xff,0xff,0xfe,0xff,0xff,0xfe,0xfc,
0xff,0xff,0xfe,0xfa,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfe,0xff,0xff,0xfe,0xfe,
0xff,0xfe,0xfd,0xf5,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfc,
0xff,0xff,0xfe,0xfd,0xff,0xff,0xfe,0xfb,0xff,0x88,0x88,0x87,0xff,0x3d,0x3d,0x3d,
0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x1d,0x67,0x24,0x24,0x24,0xff,0x1d,0x1d,0x1d,
0xff,0x7b,0x6d,0x3d,0xff,0xd2,0xb8,0x64,0xff,0xd6,0xbe,0x71,0xff,0xe3,0xc9,0x81,
0xff,0xe6,0xcd,0x88,0xff,0xe9,0xd3,0x97,0xff,0xee,0xdc,0xaa,0xff,0xf5,0xe9,0xc8,
0xff,0xfb,0xf5,0xe2,0xff,0xfe,0xfd,0xf5,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xfe,
0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,0xff,0xff,0xfd,0xf5,
0xff,0xff,0xfd,0xf3,0xff,0xff,0xfe,0xf9,0xff,0xff,0xfe,0xf9,0xff,0xff,0xfe,0xf9,
0xff,0xff,0xfe,0xf6,0xff,0xff,0xfe,0xf4,0xff,0x72,0x72,0x71,0xff,0x3f,0x3f,0x3f,
0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x1c,0x83,0x24,0x24,0x24,0xff,0x1a,0x1a,0x1a,
0xff,0x90,0x82,0x56,0xff,0xe0,0xce,0x94,0xff,0xe6,0xd6,0xa3,0xff,0xea,0xd2,0x95,
0xff,0xec,0xcf,0x87,0xff,0xef,0xd3,0x91,0xff,0xf5,0xdb,0xa1,0xff,0xfa,0xe6,0xbd,
0xff,0xfd,0xef,0xd3,0xff,0xfe,0xf6,0xe2,0xff,0xff,0xfb,0xed,0xff,0xff,0xfc,0xf1,
0xff,0xff,0xfc,0xef,0xff,0xff,0xfc,0xef,0xff,0xff,0xfc,0xef,0xff,0xff,0xf8,0xe6,
0xff,0xff,0xfd,0xf2,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfe,0xf3,0xff,0xff,0xfd,0xef,
0xff,0xff,0xfd,0xed,0xff,0xfc,0xfb,0xf1,0xff,0x60,0x60,0x5f,0xff,0x42,0x42,0x42,
0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x22,0x22,0x22,0x9e,0x24,0x24,0x24,0xff,0x17,0x17,0x17,
0xff,0xa3,0x92,0x5b,0xff,0xe2,0xcd,0x8d,0xff,0xea,0xd8,0xa6,0xff,0xef,0xdb,0xaa,
0xff,0xf3,0xda,0xa4,0xff,0xf6,0xd7,0x98,0xff,0xfa,0xd4,0x8c,0xff,0xfd,0xd8,0x94,
0xff,0xfe,0xe0,0xa8,0xff,0xff,0xe5,0xb7,0xff,0xff,0xea,0xc4,0xff,0xff,0xee,0xcd,
0xff,0xff,0xf1,0xd4,0xff,0xff,0xf4,0xdb,0xff,0xff,0xf2,0xd8,0xff,0xff,0xf7,0xe2,
0xff,0xff,0xfb,0xea,0xff,0xff,0xfb,0xe9,0xff,0xff,0xf8,0xe3,0xff,0xff,0xf9,0xe4,
0xff,0xff,0xfd,0xea,0xff,0xf3,0xf1,0xe0,0xff,0x56,0x56,0x56,0xff,0x4a,0x4a,0x49,
0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x21,0x21,0x21,0xbc,0x23,0x23,0x23,0xff,0x14,0x15,0x15,
0xff,0x9f,0x85,0x3d,0xff,0xc4,0xa8,0x63,0xff,0xc4,0xae,0x7a,0xff,0xc8,0xb1,0x80,
0xff,0xca,0xae,0x74,0xff,0xce,0xab,0x5f,0xff,0xcd,0xa6,0x4c,0xff,0xd0,0xab,0x58,
0xff,0xcf,0xaf,0x6d,0xff,0xd0,0xb4,0x80,0xff,0xd0,0xba,0x8f,0xff,0xce,0xbc,0x9a,
0xff,0xcf,0xc0,0xa3,0xff,0xcd,0xc1,0xa8,0xff,0xcb,0xc1,0xab,0xff,0xc8,0xc0,0xaf,
0xff,0xc6,0xc0,0xb0,0xff,0xc6,0xbf,0xae,0xff,0xc3,0xbd,0xac,0xff,0xc0,0xbd,0xaf,
0xff,0xbc,0xb9,0xac,0xff,0xa8,0xa7,0x9c,0xff,0x54,0x54,0x54,0xff,0x42,0x42,0x42,
0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x27,0x27,0x27,0xcc,0x20,0x20,0x20,0xff,0x13,0x13,0x13,
0xff,0x14,0x14,0x14,0xff,0x17,0x17,0x17,0xff,0x1d,0x1d,0x1d,0xff,0x25,0x25,0x25,
0xff,0x2d,0x2e,0x2e,0xff,0x36,0x36,0x36,0xff,0x3d,0x3d,0x3d,0xff,0x42,0x42,0x43,
0xff,0x47,0x47,0x47,0xff,0x49,0x49,0x4a,0xff,0x4b,0x4b,0x4b,0xff,0x4c,0x4c,0x4c,
0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,0xff,0x4c,0x4c,0x4c,
0xff,0x4d,0x4d,0x4d,0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x50,0x50,0x50,
0xff,0x52,0x52,0x52,0xff,0x54,0x54,0x54,0xff,0x55,0x55,0x55,0xfa,0x40,0x40,0x3f,
0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x1d,0x27,0x1c,0x1c,0x1c,0x9b,0x15,0x15,0x15,
0xce,0x16,0x16,0x16,0xc9,0x18,0x18,0x18,0xc1,0x22,0x22,0x22,0xb4,0x2b,0x2b,0x2a,
0xb1,0x31,0x30,0x2f,0xa6,0x36,0x36,0x35,0xa0,0x3a,0x3a,0x39,0x9f,0x3a,0x3a,0x39,
0x91,0x3c,0x3c,0x3b,0x90,0x3c,0x3c,0x3b,0x8a,0x39,0x39,0x39,0x7e,0x3a,0x3a,0x3a,
0x7f,0x38,0x38,0x38,0x75,0x46,0x46,0x45,0x6d,0x4c,0x4c,0x4b,0x6a,0x4b,0x4b,0x4a,
0x64,0x48,0x48,0x47,0x5a,0x48,0x48,0x47,0x58,0x47,0x47,0x46,0x53,0x43,0x43,0x42,
0x46,0x45,0x45,0x45,0x48,0x44,0x44,0x44,0x47,0x3e,0x3e,0x3e,0x2e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,
0xff,0x80,0x0,0x0,0xff,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,
0xf,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x80,0x0,0x0,
0x1,0xc0,0x0,0x0,0x1,0xc0,0x0,0x0,0x1,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0,
0x3,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0,0x3,0xc0,0x0,0x0,
0x3,0xc0,0x0,0x0,0x3,0xc0,0x0,0x0,0x3,0xc0,0x0,0x0,0x7,0xc0,0x0,0x0,
0x7,0xc0,0x0,0x0,0x7,0xc0,0x0,0x0,0x7,0xc0,0x0,0x0,0x7,0xc0,0x0,0x0,
0x7,0xc0,0x0,0x0,0x7,0xc0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x28,0x0,0x0,
0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,
0x0,0x40,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,
0xb,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x27,0x2,0x2,0x2,0x3b,0xe,0xe,0xe,
0x8f,0x26,0x26,0x26,0xac,0x28,0x28,0x28,0x86,0x1d,0x1d,0x1d,0x54,0x27,0x27,0x27,
0x21,0x56,0x56,0x56,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,
0x12,0x0,0x0,0x0,0x26,0x5,0x5,0x5,0x5c,0x1a,0x1a,0x1a,0xec,0x21,0x21,0x21,
0xff,0x29,0x29,0x29,0xff,0x35,0x35,0x35,0xff,0x47,0x47,0x47,0xff,0x5d,0x5d,0x5d,
0xfe,0x6c,0x6c,0x6c,0xe9,0x79,0x79,0x79,0xbc,0x81,0x81,0x81,0x82,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0x1,0x1,0x1,
0x21,0x5,0x5,0x5,0x68,0x6,0x6,0x6,0x7d,0x14,0x14,0x14,0xd3,0x22,0x22,0x22,
0xff,0x25,0x25,0x25,0xff,0x33,0x33,0x33,0xff,0x44,0x44,0x44,0xff,0x4c,0x4c,0x4c,
0xff,0x4f,0x4f,0x4f,0xfe,0x4b,0x4b,0x4b,0xc6,0x4d,0x4d,0x4d,0x50,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xa,0x1c,0x1c,0x1c,
0xbc,0x13,0x17,0x16,0xff,0x12,0x1b,0x1a,0xff,0x14,0x1d,0x1b,0xff,0x15,0x17,0x17,
0xff,0x1c,0x1c,0x1c,0xff,0x28,0x28,0x28,0xfe,0x23,0x23,0x23,0xcf,0x26,0x26,0x26,
0xba,0x2a,0x2a,0x2a,0x94,0x25,0x25,0x25,0x3d,0x20,0x1f,0x1d,0x1e,0x23,0x1f,0x15,
0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x1,0x1,0x8,0x1f,0x1f,0x1f,
0xdc,0x10,0x1d,0x1b,0xff,0x12,0x39,0x31,0xff,0x19,0x56,0x46,0xff,0x15,0x49,0x3e,
0xff,0x1b,0x68,0x59,0xff,0x1a,0x49,0x3d,0xff,0x17,0x33,0x2f,0xff,0x1d,0x46,0x3d,
0xff,0x24,0x47,0x3c,0xff,0x22,0x4c,0x42,0xff,0x1e,0x2e,0x29,0xfe,0x3b,0x38,0x1d,
0xf5,0x1a,0x1a,0x16,0x30,0x0,0x0,0x0,0x1,0xe,0xe,0xe,0x7,0x20,0x20,0x20,
0xf3,0x11,0x2d,0x26,0xff,0x13,0x58,0x44,0xff,0x14,0x47,0x3b,0xff,0x34,0x7c,0x70,
0xff,0x1e,0x72,0x5f,0xff,0x23,0x63,0x56,0xff,0x1e,0x64,0x54,0xff,0x29,0x7f,0x68,
0xff,0x21,0x8f,0x74,0xff,0x29,0xa6,0x8c,0xff,0x13,0x70,0x50,0xff,0x3d,0x6d,0x5e,
0xff,0x2c,0x2e,0x2c,0x28,0x0,0x0,0x0,0x0,0x1c,0x1c,0x1c,0x12,0x35,0x35,0x35,
0xfe,0x23,0x51,0x45,0xff,0xf,0x58,0x47,0xff,0x22,0x73,0x61,0xff,0x33,0x87,0x71,
0xff,0x2c,0x8b,0x77,0xff,0x30,0x8b,0x75,0xff,0x54,0xa8,0x8b,0xff,0x42,0xaa,0x8a,
0xff,0x39,0xa6,0x88,0xff,0x3d,0xb3,0x93,0xff,0x35,0xae,0x8b,0xff,0x4e,0x76,0x6a,
0xfd,0x36,0x3a,0x39,0xd,0x0,0x0,0x0,0x0,0x1e,0x1e,0x1e,0x2a,0x37,0x37,0x37,
0xff,0x26,0x6a,0x5c,0xff,0x2e,0x92,0x7b,0xff,0x46,0xad,0x95,0xff,0x4b,0xbb,0xa5,
0xff,0x58,0xbe,0xa7,0xff,0x81,0xce,0xb9,0xff,0x89,0xd3,0xbf,0xff,0x89,0xcf,0xbb,
0xff,0x91,0xdd,0xcc,0xff,0x86,0xdc,0xc8,0xff,0x8a,0xd9,0xc4,0xff,0x5d,0x6d,0x6a,
0xed,0x37,0x3a,0x39,0x1,0x0,0x0,0x0,0x0,0x1f,0x1f,0x1f,0x44,0x39,0x39,0x39,
0xff,0x4f,0xac,0x98,0xff,0x6d,0xc9,0xb2,0xff,0x73,0xce,0xba,0xff,0x71,0xd6,0xc0,
0xff,0x94,0xe1,0xd0,0xff,0x98,0xe1,0xd1,0xff,0xac,0xe6,0xd9,0xff,0xaf,0xeb,0xdf,
0xff,0xac,0xec,0xde,0xff,0xaf,0xe8,0xdc,0xff,0x9c,0xe4,0xd3,0xff,0x50,0x58,0x56,
0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x1d,0x5e,0x37,0x37,0x37,
0xff,0x4b,0xa8,0x99,0xff,0x88,0xcf,0xbc,0xff,0xca,0xe7,0xd8,0xff,0xc1,0xe1,0xd1,
0xff,0xb7,0xe6,0xd8,0xff,0xb8,0xe5,0xd9,0xff,0xc0,0xe2,0xdb,0xff,0xce,0xec,0xe3,
0xff,0xdd,0xf1,0xe9,0xff,0xce,0xee,0xe2,0xff,0xbc,0xe6,0xda,0xff,0x48,0x4b,0x4b,
0xb5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x1b,0x79,0x35,0x37,0x36,
0xff,0x57,0x85,0x7f,0xff,0xd1,0xd8,0xc1,0xff,0xea,0xec,0xd6,0xff,0xd9,0xe4,0xcf,
0xff,0xe3,0xec,0xde,0xff,0xef,0xf5,0xed,0xff,0xe7,0xf3,0xef,0xff,0xf7,0xf9,0xf8,
0xff,0xfe,0xfe,0xfe,0xff,0xf1,0xf8,0xf4,0xff,0xe0,0xe5,0xe2,0xff,0x48,0x49,0x48,
0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x1c,0x93,0x3c,0x3d,0x39,
0xff,0xa1,0xad,0x90,0xff,0xe7,0xd9,0xab,0xff,0xf5,0xeb,0xce,0xff,0xe6,0xe8,0xce,
0xff,0xf9,0xf7,0xec,0xff,0xfb,0xf9,0xef,0xff,0xf7,0xf8,0xf2,0xff,0xfe,0xfe,0xfc,
0xff,0xfb,0xfc,0xf8,0xff,0xfe,0xfe,0xfd,0xff,0xd3,0xd3,0xd3,0xff,0x4c,0x4c,0x4c,
0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1f,0x1f,0xad,0x48,0x43,0x2f,
0xff,0xc8,0xb2,0x64,0xff,0xde,0xc7,0x83,0xff,0xec,0xdc,0xad,0xff,0xf6,0xef,0xd6,
0xff,0xfe,0xfe,0xfa,0xff,0xff,0xfe,0xfc,0xff,0xff,0xff,0xfd,0xff,0xfe,0xfd,0xf7,
0xff,0xff,0xfe,0xfb,0xff,0xff,0xfe,0xfa,0xff,0xbe,0xbd,0xba,0xff,0x46,0x46,0x46,
0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x22,0x22,0xc7,0x59,0x51,0x38,
0xff,0xe4,0xd2,0x9b,0xff,0xee,0xd5,0x9a,0xff,0xf5,0xd6,0x96,0xff,0xfd,0xe3,0xb3,
0xff,0xfe,0xf0,0xd2,0xff,0xff,0xf6,0xe0,0xff,0xff,0xf8,0xe4,0xff,0xff,0xfa,0xe9,
0xff,0xff,0xfc,0xed,0xff,0xff,0xfc,0xea,0xff,0xa9,0xa8,0xa2,0xff,0x46,0x46,0x45,
0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x23,0x23,0xe1,0x36,0x30,0x1e,
0xff,0x6f,0x63,0x44,0xff,0x79,0x6c,0x52,0xff,0x84,0x71,0x48,0xff,0x8a,0x79,0x54,
0xff,0x8d,0x81,0x69,0xff,0x8d,0x85,0x75,0xff,0x8c,0x86,0x7b,0xff,0x8a,0x86,0x7e,
0xff,0x89,0x86,0x7e,0xff,0x87,0x86,0x7f,0xff,0x69,0x69,0x66,0xfd,0x41,0x41,0x40,
0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x1c,0x30,0x16,0x16,0x16,
0x66,0x1d,0x1d,0x1c,0x5d,0x2c,0x2c,0x2b,0x56,0x37,0x37,0x36,0x50,0x3c,0x3c,0x3b,
0x48,0x3c,0x3c,0x3c,0x42,0x3c,0x3c,0x3c,0x3d,0x47,0x46,0x46,0x36,0x48,0x48,0x48,
0x2f,0x46,0x46,0x46,0x2a,0x45,0x45,0x45,0x23,0x43,0x43,0x42,0x1d,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x80,0xf,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,
0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,
0x0,0x80,0x0,0x0,0x0,0x80,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x80,0x1,0x0,
0x0,0x80,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x80,0x1,0x0,
0x0,0x80,0x3,0x0,0x0,
};
static const unsigned char qt_resource_name[] = {
// icon
0x0,0x4,
0x0,0x6,0xfa,0x5e,
0x0,0x69,
0x0,0x63,0x0,0x6f,0x0,0x6e,
// F:
0x0,0x2,
0x0,0x0,0x4,0x9a,
0x0,0x46,
0x0,0x3a,
// ??ico
0x0,0x5,
0x3,0xed,0x4f,0x7f,
0x6f,0x2,
0x4e,0xae,0x0,0x69,0x0,0x63,0x0,0x6f,
// ????
0x0,0x4,
0x6,0x9f,0x68,0x61,
0x62,0x11,
0x76,0x84,0x75,0x35,0x81,0x11,
// ??
0x0,0x2,
0x0,0x5,0xf8,0x73,
0x5a,0x92,
0x4f,0x53,
// ????
0x0,0x4,
0x6,0xae,0x2,0x2c,
0x65,0x87,
0x4e,0xf6,0x64,0xcd,0x4f,0x5c,
// cut.ico
0x0,0x7,
0xa,0xc7,0x4f,0x5f,
0x0,0x63,
0x0,0x75,0x0,0x74,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// save_as.ico
0x0,0xb,
0x5,0x79,0x56,0xff,
0x0,0x73,
0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x5f,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// document_file.ico
0x0,0x11,
0xb,0x2,0xef,0x1f,
0x0,0x64,
0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x5f,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// check-6.png
0x0,0xb,
0xe,0xda,0x80,0x67,
0x0,0x63,
0x0,0x68,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x2d,0x0,0x36,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// media_playback_start.ico
0x0,0x18,
0x7,0xc2,0xdf,0x1f,
0x0,0x6d,
0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x5f,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x6b,0x0,0x5f,0x0,0x73,0x0,0x74,
0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// copy.ico
0x0,0x8,
0x6,0x7c,0x42,0xdf,
0x0,0x63,
0x0,0x6f,0x0,0x70,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// delete_2.png
0x0,0xc,
0x6,0x7d,0xe,0x7,
0x0,0x64,
0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x32,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// paste.ico
0x0,0x9,
0xa,0xa8,0xa2,0x9f,
0x0,0x70,
0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// folder.ico
0x0,0xa,
0xa,0xc8,0xe3,0xdf,
0x0,0x66,
0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
// gear.png
0x0,0x8,
0xb,0x85,0x5a,0xe7,
0x0,0x67,
0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// stop.png
0x0,0x8,
0xb,0x63,0x58,0x7,
0x0,0x73,
0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// play_24.png
0x0,0xb,
0x2,0xb9,0x6,0xa7,
0x0,0x70,
0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x5f,0x0,0x32,0x0,0x34,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// pause_24.png
0x0,0xc,
0xc,0x86,0xc4,0x27,
0x0,0x70,
0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x5f,0x0,0x32,0x0,0x34,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// c6.ico
0x0,0x6,
0x6,0x69,0x4f,0x9f,
0x0,0x63,
0x0,0x36,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon/F:
0x0,0x0,0x0,0xe,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon/F:/??ico
0x0,0x0,0x0,0x18,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon/F:/??ico/??
0x0,0x0,0x0,0x36,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x12,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon/F:/??ico/????
0x0,0x0,0x0,0x28,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon/F:/??ico/????
0x0,0x0,0x0,0x40,0x0,0x2,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x7,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/icon/F:/??ico/????/save_as.ico
0x0,0x0,0x0,0x62,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x7,0x18,
0x0,0x0,0x1,0x56,0xf4,0xce,0x21,0x1c,
// :/icon/F:/??ico/????/copy.ico
0x0,0x0,0x0,0xf8,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x46,0xe5,
0x0,0x0,0x1,0x56,0xf4,0xce,0xb7,0xba,
// :/icon/F:/??ico/????/delete_2.png
0x0,0x0,0x1,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4b,0xe2,
0x0,0x0,0x1,0x56,0xf4,0xcc,0xcc,0x2d,
// :/icon/F:/??ico/????/media_playback_start.ico
0x0,0x0,0x0,0xc2,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x16,0xe2,
0x0,0x0,0x1,0x56,0xf5,0xb8,0xd9,0xb9,
// :/icon/F:/??ico/????/paste.ico
0x0,0x0,0x1,0x2c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x51,0x78,
0x0,0x0,0x1,0x56,0xf4,0xce,0x9b,0x1b,
// :/icon/F:/??ico/????/cut.ico
0x0,0x0,0x0,0x4e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x56,0xf4,0xc9,0xda,0xc0,
// :/icon/F:/??ico/????/folder.ico
0x0,0x0,0x1,0x44,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x58,0xfe,
0x0,0x0,0x1,0x56,0xf4,0xcb,0xa2,0xd7,
// :/icon/F:/??ico/????/document_file.ico
0x0,0x0,0x0,0x7e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xc,0x8e,
0x0,0x0,0x1,0x56,0xf4,0xd2,0xe9,0x7d,
// :/icon/F:/??ico/????/gear.png
0x0,0x0,0x1,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5d,0xca,
0x0,0x0,0x1,0x56,0xf5,0xc0,0xa4,0x4,
// :/icon/F:/??ico/????/check-6.png
0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x11,0xa3,
0x0,0x0,0x1,0x56,0xf4,0xcc,0x12,0xb9,
// :/icon/F:/??ico/????/c6.ico
0x0,0x0,0x1,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x13,0x47,
0x0,0x0,0x1,0x50,0xda,0x81,0xba,0x85,
// :/icon/F:/??ico/??/play_24.png
0x0,0x0,0x1,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xfc,0x58,
0x0,0x0,0x1,0x57,0xa0,0x61,0x13,0x3a,
// :/icon/F:/??ico/??/stop.png
0x0,0x0,0x1,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xfb,0xc7,
0x0,0x0,0x1,0x57,0xa0,0x61,0x2c,0x77,
// :/icon/F:/??ico/??/pause_24.png
0x0,0x0,0x1,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8,0x13,
0x0,0x0,0x1,0x57,0xa0,0x60,0xdf,0x90,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_icon)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_icon)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_icon)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_icon)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_icon)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_icon)(); }
} dummy;
}
| [
"1243887129@qq.com"
] | 1243887129@qq.com |
f6864a0d1da882cb8aaf6a8e8bfc7e04b42cedad | af2bcb03b0ca34e376084eb8676666306e2dde99 | /src/arch/mips/process.cc | f6587ab8dde1160ad00392734052820a6185f890 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.0-or-later",
"MIT"
] | permissive | multifacet/ASAP | 5c0b26dd2f06cd3c125e809b318c16721720f5e2 | 68cb32c43e3ebad2a5dfb947ce98442375b235c7 | refs/heads/asap | 2023-04-11T16:02:42.997035 | 2021-11-30T15:05:22 | 2021-11-30T15:05:22 | 426,381,088 | 4 | 2 | BSD-3-Clause | 2022-12-12T23:33:17 | 2021-11-09T20:43:59 | C++ | UTF-8 | C++ | false | false | 7,816 | cc | /*
* Copyright (c) 2004-2005 The Regents of The University of Michigan
* 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 the copyright holders 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.
*/
#include "arch/mips/process.hh"
#include "arch/mips/isa_traits.hh"
#include "base/loader/elf_object.hh"
#include "base/loader/object_file.hh"
#include "base/logging.hh"
#include "cpu/thread_context.hh"
#include "debug/Loader.hh"
#include "mem/page_table.hh"
#include "params/Process.hh"
#include "sim/aux_vector.hh"
#include "sim/process.hh"
#include "sim/process_impl.hh"
#include "sim/syscall_return.hh"
#include "sim/system.hh"
using namespace std;
using namespace MipsISA;
MipsProcess::MipsProcess(ProcessParams *params, ::Loader::ObjectFile *objFile)
: Process(params,
new EmulationPageTable(params->name, params->pid, PageBytes),
objFile)
{
fatal_if(params->useArchPT, "Arch page tables not implemented.");
// Set up stack. On MIPS, stack starts at the top of kuseg
// user address space. MIPS stack grows down from here
Addr stack_base = 0x7FFFFFFF;
Addr max_stack_size = 8 * 1024 * 1024;
// Set pointer for next thread stack. Reserve 8M for main stack.
Addr next_thread_stack_base = stack_base - max_stack_size;
// Set up break point (Top of Heap)
Addr brk_point = image.maxAddr();
brk_point = roundUp(brk_point, PageBytes);
// Set up region for mmaps. Start it 1GB above the top of the heap.
Addr mmap_end = brk_point + 0x40000000L;
memState = make_shared<MemState>(this, brk_point, stack_base,
max_stack_size, next_thread_stack_base,
mmap_end);
}
void
MipsProcess::initState()
{
Process::initState();
argsInit<uint32_t>(PageBytes);
}
template<class IntType>
void
MipsProcess::argsInit(int pageSize)
{
int intSize = sizeof(IntType);
std::vector<AuxVector<IntType>> auxv;
auto *elfObject = dynamic_cast<::Loader::ElfObject *>(objFile);
if (elfObject)
{
// Set the system page size
auxv.emplace_back(M5_AT_PAGESZ, MipsISA::PageBytes);
// Set the frequency at which time() increments
auxv.emplace_back(M5_AT_CLKTCK, 100);
// For statically linked executables, this is the virtual
// address of the program header tables if they appear in the
// executable image.
auxv.emplace_back(M5_AT_PHDR, elfObject->programHeaderTable());
DPRINTF(Loader, "auxv at PHDR %08p\n",
elfObject->programHeaderTable());
// This is the size of a program header entry from the elf file.
auxv.emplace_back(M5_AT_PHENT, elfObject->programHeaderSize());
// This is the number of program headers from the original elf file.
auxv.emplace_back(M5_AT_PHNUM, elfObject->programHeaderCount());
// This is the base address of the ELF interpreter; it should be
// zero for static executables or contain the base address for
// dynamic executables.
auxv.emplace_back(M5_AT_BASE, getBias());
//The entry point to the program
auxv.emplace_back(M5_AT_ENTRY, objFile->entryPoint());
//Different user and group IDs
auxv.emplace_back(M5_AT_UID, uid());
auxv.emplace_back(M5_AT_EUID, euid());
auxv.emplace_back(M5_AT_GID, gid());
auxv.emplace_back(M5_AT_EGID, egid());
auxv.emplace_back(M5_AT_RANDOM, 0);
}
// Calculate how much space we need for arg & env & auxv arrays.
int argv_array_size = intSize * (argv.size() + 1);
int envp_array_size = intSize * (envp.size() + 1);
int auxv_array_size = intSize * 2 * (auxv.size() + 1);
int arg_data_size = 0;
for (vector<string>::size_type i = 0; i < argv.size(); ++i) {
arg_data_size += argv[i].size() + 1;
}
const int numRandomBytes = 16;
int aux_data_size = numRandomBytes;
int env_data_size = 0;
for (vector<string>::size_type i = 0; i < envp.size(); ++i) {
env_data_size += envp[i].size() + 1;
}
int space_needed =
argv_array_size +
envp_array_size +
auxv_array_size +
arg_data_size +
aux_data_size +
env_data_size;
// set bottom of stack
memState->setStackMin(memState->getStackBase() - space_needed);
// align it
memState->setStackMin(roundDown(memState->getStackMin(), pageSize));
memState->setStackSize(memState->getStackBase() - memState->getStackMin());
// map memory
memState->mapRegion(memState->getStackMin(),
roundUp(memState->getStackSize(), pageSize), "stack");
// map out initial stack contents; leave room for argc
IntType argv_array_base = memState->getStackMin() + intSize;
IntType envp_array_base = argv_array_base + argv_array_size;
IntType auxv_array_base = envp_array_base + envp_array_size;
IntType arg_data_base = auxv_array_base + auxv_array_size;
IntType aux_data_base = arg_data_base - arg_data_size;
IntType env_data_base = aux_data_base + aux_data_size;
// write contents to stack
IntType argc = argv.size();
argc = htole((IntType)argc);
initVirtMem->writeBlob(memState->getStackMin(), &argc, intSize);
copyStringArray(argv, argv_array_base, arg_data_base,
LittleEndianByteOrder, *initVirtMem);
copyStringArray(envp, envp_array_base, env_data_base,
LittleEndianByteOrder, *initVirtMem);
// Fix up the aux vectors which point to data.
for (auto &aux: auxv) {
if (aux.type == M5_AT_RANDOM)
aux.val = aux_data_base;
}
// Copy the aux vector
Addr auxv_array_end = auxv_array_base;
for (const auto &aux: auxv) {
initVirtMem->write(auxv_array_end, aux, GuestByteOrder);
auxv_array_end += sizeof(aux);
}
// Write out the terminating zeroed auxilliary vector
const AuxVector<IntType> zero(0, 0);
initVirtMem->write(auxv_array_end, zero);
auxv_array_end += sizeof(zero);
ThreadContext *tc = system->getThreadContext(contextIds[0]);
tc->setIntReg(FirstArgumentReg, argc);
tc->setIntReg(FirstArgumentReg + 1, argv_array_base);
tc->setIntReg(StackPointerReg, memState->getStackMin());
tc->pcState(getStartPC());
}
const std::vector<int> MipsProcess::SyscallABI::ArgumentRegs = {
4, 5, 6, 7, 8, 9
};
| [
"sujay.yadalam@gmail.com"
] | sujay.yadalam@gmail.com |
9eb91f67d4cd9331a878f0008b1230321242c6e8 | bd40b6c17962a2807c1539646d9db27a74468b70 | /src/tablet/combine_iterator.cc | 46492f40913c9242f34b0b2daa8faec992199207 | [
"Apache-2.0"
] | permissive | imotai8915/fedb | 731e45e792adce7d811b9418e711a42b24f4f592 | fe0c130f70206325f130f00be6c1483c9c36d113 | refs/heads/main | 2023-07-17T09:54:35.036998 | 2021-04-16T08:33:16 | 2021-04-16T08:33:16 | 358,768,249 | 0 | 0 | Apache-2.0 | 2021-04-17T02:39:43 | 2021-04-17T02:39:43 | null | UTF-8 | C++ | false | false | 5,309 | cc | /*
* Copyright 2021 4Paradigm
*
* 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 "tablet/combine_iterator.h"
#include <algorithm>
#include <utility>
#include "base/glog_wapper.h"
namespace fedb {
namespace tablet {
CombineIterator::CombineIterator(std::vector<QueryIt> q_its,
uint64_t start_time,
::fedb::api::GetType st_type,
const ::fedb::storage::TTLSt& expired_value)
: q_its_(std::move(q_its)),
st_(start_time),
st_type_(st_type),
ttl_type_(expired_value.ttl_type),
expire_time_(expired_value.abs_ttl),
expire_cnt_(expired_value.lat_ttl),
cur_qit_(nullptr) {}
void CombineIterator::SeekToFirst() {
q_its_.erase(std::remove_if(q_its_.begin(), q_its_.end(),
[](const QueryIt& q_it) {
return !q_it.table || !q_it.it;
}),
q_its_.end());
if (q_its_.empty()) {
return;
}
if (st_type_ == ::fedb::api::GetType::kSubKeyEq) {
st_type_ = ::fedb::api::GetType::kSubKeyLe;
}
if (!::fedb::api::GetType_IsValid(st_type_)) {
PDLOG(WARNING, "invalid st type %s",
::fedb::api::GetType_Name(st_type_).c_str());
q_its_.clear();
return;
}
for (auto& q_it : q_its_) {
if (st_ > 0) {
if (expire_cnt_ == 0) {
Seek(q_it.it.get(), st_, st_type_);
} else {
switch (ttl_type_) {
case ::fedb::storage::TTLType::kAbsoluteTime:
Seek(q_it.it.get(), st_, st_type_);
break;
case ::fedb::storage::TTLType::kAbsAndLat:
if (!SeekWithCount(q_it.it.get(), st_, st_type_,
expire_cnt_, &q_it.iter_pos)) {
Seek(q_it.it.get(), st_, st_type_);
}
break;
default:
SeekWithCount(q_it.it.get(), st_, st_type_, expire_cnt_,
&q_it.iter_pos);
break;
}
}
} else {
q_it.it->SeekToFirst();
}
}
SelectIterator();
}
void CombineIterator::SelectIterator() {
uint64_t max_ts = 0;
bool need_delete = false;
cur_qit_ = nullptr;
for (auto iter = q_its_.begin(); iter != q_its_.end(); iter++) {
uint64_t cur_ts = 0;
if (iter->it && iter->it->Valid()) {
cur_ts = iter->it->GetKey();
bool is_expire = false;
switch (ttl_type_) {
case ::fedb::storage::TTLType::kAbsoluteTime:
if (expire_time_ != 0 && cur_ts <= expire_time_) {
is_expire = true;
}
break;
case ::fedb::storage::TTLType::kLatestTime:
if (expire_cnt_ != 0 && iter->iter_pos >= expire_cnt_) {
is_expire = true;
}
break;
case ::fedb::storage::TTLType::kAbsAndLat:
if ((expire_cnt_ != 0 && iter->iter_pos >= expire_cnt_) &&
(expire_time_ != 0 && cur_ts <= expire_time_)) {
is_expire = true;
}
break;
case ::fedb::storage::TTLType::kAbsOrLat:
if ((expire_cnt_ != 0 && iter->iter_pos >= expire_cnt_) ||
(expire_time_ != 0 && cur_ts <= expire_time_)) {
is_expire = true;
}
break;
default:
break;
}
if (is_expire) {
iter->it.reset();
need_delete = true;
continue;
}
}
if (cur_ts > max_ts) {
max_ts = cur_ts;
cur_qit_ = &(*iter);
}
}
if (need_delete) {
q_its_.erase(
std::remove_if(q_its_.begin(), q_its_.end(),
[](const QueryIt& q_it) { return !q_it.it; }),
q_its_.end());
}
}
void CombineIterator::Next() {
if (cur_qit_ != nullptr) {
cur_qit_->it->Next();
cur_qit_->iter_pos += 1;
cur_qit_ = nullptr;
}
SelectIterator();
}
bool CombineIterator::Valid() { return cur_qit_ != nullptr; }
uint64_t CombineIterator::GetTs() { return cur_qit_->it->GetKey(); }
fedb::base::Slice CombineIterator::GetValue() {
return cur_qit_->it->GetValue();
}
} // namespace tablet
} // namespace fedb
| [
"denglong@4paradigm.com"
] | denglong@4paradigm.com |
f8df6c5760f74605ff51ef6ae25ca0706078a302 | 61511b2b2b7b1898072edd7d1a1309ca42d08357 | /P2/src/table/mathFunction.cpp | 685f76a9b484322f2657e6a20adfbfa2010a1b65 | [] | no_license | danitico/PL | 388964999759b61205acb2a4ad255f0fdffe0c3c | c36e25c5f0bcf8d03d945e02bfe4fd535a91992d | refs/heads/master | 2020-04-28T17:02:55.432583 | 2019-05-28T14:09:28 | 2019-05-28T14:09:28 | 175,432,485 | 0 | 0 | null | 2019-10-01T08:29:46 | 2019-03-13T14:02:36 | HTML | UTF-8 | C++ | false | false | 1,136 | cpp | /*!
\file mathFunction.cpp
\brief Code of mathematical functions
*/
#include <iostream>
#include <string>
// rand, RAND_MAX
#include <stdlib.h>
// sin, cos, atan, fabs, ...
#include <math.h>
#include "mathFunction.hpp"
// errcheck
#include "../error/error.hpp"
double Log(double x)
{
std::string msg("Neperian logarithm");
return errcheck(log(x),msg);
}
double Log10(double x)
{
std::string msg("Decimal logarithm");
return errcheck(log10(x),msg);
}
double Exp(double x)
{
std::string msg("Exponential");
return errcheck(exp(x),msg);
}
double Sqrt(double x)
{
std::string msg("Square root");
return errcheck(sqrt(x),msg);
}
double integer(double x)
{
return (double) (long) x;
}
double f(double x)
{
return (double) pow(x, 3) - 1.;
}
////////////////////////////////
double Random()
{
srand (time(NULL));
return (double) (long) rand() / RAND_MAX;
}
///////////////////////////////
double Atan2(double x, double y)
{
return errcheck(atan(x/y),"double tangent arc");
}
double RandomRange(double min, double max)
{
srand(time(NULL));
return (rand()/(double)RAND_MAX)*(max-min) + min;
}
| [
"danitico98@gmail.com"
] | danitico98@gmail.com |
27fcda6c70ba323282628034ae58f86e01ecaad7 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5630113748090880_1/C++/lljjcc/main.cpp | f21450ce7745e5dd381fd99870fd350a8fc0b2e2 | [] | 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 | 1,080 | cpp | #include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cstdlib>
#include <string>
#include <fstream>
#include <vector>
#include <cstdio>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <set>
using namespace std;
#define INF 0x3f3f3f3f
const int N=2015;
const int mod=1e9+7;
int num[2505];
int main() {
int t,n;
int x,y,z;
ifstream ifile;
ofstream ofile;
ofile.open("/Users/lijiechen/Downloads/out1.txt",ios::out);
ifile.open("/Users/lijiechen/Downloads/B-large.in.txt",ios::out);
ifile>>t;
int kase=0;
while (t--) {
ifile>>n;
kase++;
memset(num, 0, sizeof(num));
for (int i=1; i<2*n; i++) {
for (int j=0; j<n; j++) {
ifile>>x;
num[x]++;
}
}
ofile<<"Case #"<<kase<<": ";
int sum=0;
for (int i=1; i<=2500; i++) {
if (num[i]%2==1) {
ofile<<i<<" ";
sum++;
}
}
ofile<<endl;
}
return 0;
} | [
"alexandra1.back@gmail.com"
] | alexandra1.back@gmail.com |
557d8f2fedbebca86fbffde42482b4b193b9deba | 5dd0c7d7774f94a17292654b3e310aba314d8b74 | /Source/PluginEditor.h | fb7a6f8ca0b7c6266280854d9cead5814ee560df | [] | no_license | nicksento/simpleJUCESynth | c95e2bed177c0aef3776bd7b2fa8b711f1076c45 | 23eac0ac61d601c7f45cefdd56b6821455ab38c0 | refs/heads/master | 2021-03-18T18:15:42.771945 | 2020-06-28T23:41:34 | 2020-06-28T23:41:34 | 247,089,110 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,139 | h | /*
==============================================================================
This file was auto-generated!
It contains the basic framework code for a JUCE plugin editor.
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
#include "PluginProcessor.h"
#include "Oscillator.h"
#include "Envelope.h"
#include "Filter.h"
//==============================================================================
/**
*/
class SynthFrameworkAudioProcessorEditor : public AudioProcessorEditor
{
public:
SynthFrameworkAudioProcessorEditor (SynthFrameworkAudioProcessor&);
~SynthFrameworkAudioProcessorEditor();
//==============================================================================
void paint (Graphics&) override;
void resized() override;
private:
SynthFrameworkAudioProcessor& processor;
Oscillator oscGui;
Envelope envGui;
Filter filterGui;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SynthFrameworkAudioProcessorEditor)
};
| [
"theodore@192.168.1.84"
] | theodore@192.168.1.84 |
8de7447634eecbb556b874f06cda26a7d33c5e6e | c0081b4483d131e7807f11c2b19eee065c03f5b6 | /AdventOfCode19/read_input.cpp | 1b6f7854452f1e06e20ee4119b3338fa4cb245da | [] | no_license | gppprimo/Coding_Challenge_Cpp | e435a3a997eedb962b6a29fc9438ddd102375b34 | 3b60bee8abcd40ebf19adf1bbf37863fec27208b | refs/heads/master | 2020-09-19T19:30:55.433854 | 2020-05-01T17:08:18 | 2020-05-01T17:08:18 | 223,449,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,039 | cpp | #include "Functions.h"
// read input files
vector<string> read_input(const char *path, const char *file_name){
vector<string> lines;
ifstream file;
string line;
file.open(string(path) + string(file_name));
if (file.is_open()){
while (getline (file, line))
lines.push_back(line);
file.close();
} else std::cout << "Unable to open file";
return lines;
}
// split a string specifying a token
vector<string> split(const string & s, char token) {
vector<string> result;
stringstream ss;
for (char c : s)
if (c != token)
ss << c;
else {
string tmp = move(ss.str());
if (not tmp.empty())
result.push_back(move(tmp));
ss.str("");
}
string tmp = move(ss.str());
if (not tmp.empty())
result.push_back(move(tmp));
return result;
}
vector<int> build_vector(const vector<string> &s){
vector<int> v;
for(string ss : s)
v.push_back(stoi(ss));
return v;
} | [
"giupeppe0db@gmail.com"
] | giupeppe0db@gmail.com |
9d1eed1ef560e9676f8485deca97196f5b407b34 | 9fd1e88ae01342d21e8fca85fae94c5cb3823b88 | /tests/cpp/auto_scheduler_test.cc | aacc3b154463ee36baf891f1e0dd2ab427a3ffcd | [
"Zlib",
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | gussmith23/tvm | 1bf32224275e0242287c6b23cc7649d878bf40c3 | e02dc69fef294eb73dd65d18949ed9e108f60cda | refs/heads/master | 2022-06-13T17:38:50.709735 | 2020-09-14T14:51:06 | 2020-09-14T14:51:06 | 157,422,354 | 3 | 0 | Apache-2.0 | 2018-11-13T17:51:08 | 2018-11-13T17:51:07 | null | UTF-8 | C++ | false | false | 8,043 | cc | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include <dmlc/logging.h>
#include <gtest/gtest.h>
#include <tvm/auto_scheduler/compute_dag.h>
#include <tvm/runtime/container.h>
#include <tvm/te/operation.h>
#include <tvm/topi/nn.h>
#include <unordered_set>
// Compute declaration for test
tvm::Array<tvm::te::Tensor> conv2d_nchw_bn_relu_func(int N, int H, int W, int CI, int CO,
int kernel_size, int strides, int padding,
int dilation = 1) {
using namespace tvm;
using namespace tvm::te;
Tensor data = placeholder({N, CI, H, W}, DataType::Float(32), "Data");
Tensor kernel = placeholder({CO, CI, kernel_size, kernel_size}, DataType::Float(32), "Kernel");
Tensor bias = placeholder({CO, 1, 1}, DataType::Float(32), "Bias");
Tensor bn_scale = placeholder({CO, 1, 1}, DataType::Float(32), "Bn_scale");
Tensor bn_offset = placeholder({CO, 1, 1}, DataType::Float(32), "Bn_offset");
int OH = (H + 2 * padding - (kernel_size - 1) * dilation - 1) / strides + 1;
int OW = (W + 2 * padding - (kernel_size - 1) * dilation - 1) / strides + 1;
const auto& conv = topi::conv2d_nchw(data, kernel, padding, padding, strides, strides);
CHECK(conv->shape[2].as<IntImmNode>()->value == OH);
CHECK(conv->shape[3].as<IntImmNode>()->value == OW);
const auto& bias_add = compute(
{N, CO, OH, OW}, [&](Var i, Var j, Var k, Var l) { return conv[i][j][k][l] + bias[j][0][0]; },
"Bias_add");
const auto& bn_mul = compute(
{N, CO, OH, OW},
[&](Var i, Var j, Var k, Var l) { return bias_add[i][j][k][l] * bn_scale[j][0][0]; },
"Bn_mul");
const auto& bn_add = compute(
{N, CO, OH, OW},
[&](Var i, Var j, Var k, Var l) { return bn_mul[i][j][k][l] + bn_offset[j][0][0]; },
"Bn_add");
const auto& out = topi::relu<float>(bn_add);
return {data, kernel, bias, bn_scale, bn_offset, out};
}
using namespace tvm::auto_scheduler;
// Test Access Analyzer
TEST(ComputeDAG, AccessAnalyzer) {
const auto& tensors = conv2d_nchw_bn_relu_func(1, 224, 224, 3, 64, 7, 2, 3);
const auto& dag = tvm::auto_scheduler::ComputeDAG(tensors);
State s0 = dag->init_state;
int data = 0, padding = 1, kernel = 2, conv = 3, bias = 4, bias_add = 5;
int bn_scale = 6, bn_mul = 7, bn_offset = 8, bn_add = 9, relu = 10;
std::set<int> needs_multi_level_tiling = {conv};
for (size_t stage_id = 0; stage_id < dag->ops.size(); stage_id++) {
if (needs_multi_level_tiling.count(stage_id)) {
CHECK(dag->access_analyzer.NeedsMultiLevelTiling(dag->ops[stage_id]));
} else {
CHECK(!dag->access_analyzer.NeedsMultiLevelTiling(dag->ops[stage_id]));
}
}
std::set<int> is_simple_access = {data, padding, kernel, bias, bias_add,
bn_scale, bn_mul, bn_offset, bn_add, relu};
for (size_t stage_id = 0; stage_id < dag->ops.size(); stage_id++) {
if (is_simple_access.count(stage_id)) {
CHECK(dag->access_analyzer.IsSimpleAccess(dag->ops[stage_id]));
} else {
CHECK(!dag->access_analyzer.IsSimpleAccess(dag->ops[stage_id]));
}
}
std::set<int> is_strictly_inlinable = {bias_add, bn_mul, bn_add, relu};
for (size_t stage_id = 0; stage_id < dag->ops.size(); stage_id++) {
if (is_strictly_inlinable.count(stage_id)) {
CHECK(dag->access_analyzer.IsStrictlyInlineable(dag->ops[stage_id]));
} else {
CHECK(!dag->access_analyzer.IsStrictlyInlineable(dag->ops[stage_id]));
}
}
std::set<int> is_output = {relu};
for (size_t stage_id = 0; stage_id < dag->ops.size(); stage_id++) {
if (is_output.count(stage_id)) {
CHECK(dag->access_analyzer.IsOutput(dag->ops[stage_id]));
} else {
CHECK(!dag->access_analyzer.IsOutput(dag->ops[stage_id]));
}
}
CHECK_EQ(dag->access_analyzer.GetNumCommonOuterIterator(dag->ops[conv], dag->ops[bias_add]), 4);
CHECK_EQ(dag->access_analyzer.GetNumCommonOuterIterator(dag->ops[conv], dag->ops[relu]), 4);
CHECK_EQ(dag->access_analyzer.GetNumCommonOuterIterator(dag->ops[data], dag->ops[relu]), 1);
CHECK(dag->access_analyzer.ElementWiseMatch(dag->ops[conv], dag->ops[bias_add]));
CHECK(dag->access_analyzer.ElementWiseMatch(dag->ops[conv], dag->ops[relu]));
CHECK(!dag->access_analyzer.ElementWiseMatch(dag->ops[data], dag->ops[padding]));
std::unordered_set<tvm::te::Operation, tvm::ObjectHash, tvm::ObjectEqual> op_set;
{
std::vector<std::pair<int, int>> consumer_list = {
{data, padding}, {padding, conv}, {kernel, conv}, {conv, bias_add},
{bias, bias_add}, {bias_add, bn_mul}, {bn_scale, bn_mul}, {bn_mul, bn_add},
{bn_offset, bn_add}, {bn_add, relu}};
for (const auto& pair : consumer_list) {
op_set = dag->access_analyzer.GetConsumers(s0, s0->stages[pair.first]->op);
CHECK_EQ(op_set.size(), 1);
CHECK_EQ((*op_set.begin()), s0->stages[pair.second]->op);
}
std::vector<std::pair<int, std::vector<int>>> producer_list = {{padding, {data}},
{conv, {padding, kernel}},
{bias_add, {conv, bias}},
{bn_mul, {bias_add, bn_scale}},
{bn_add, {bn_mul, bn_offset}},
{relu, {bn_add}}};
for (const auto& pair : producer_list) {
op_set = dag->access_analyzer.GetProducers(s0, s0->stages[pair.first]->op);
CHECK_EQ(op_set.size(), pair.second.size());
for (const auto& target : pair.second) {
CHECK(op_set.count(s0->stages[target]->op));
}
}
}
s0.compute_inline(bn_add);
s0.compute_inline(bn_mul);
s0.compute_inline(bias_add);
s0.compute_inline(padding);
{
std::vector<std::pair<int, int>> consumer_list = {{data, conv}, {kernel, conv}, {conv, relu}};
for (const auto& pair : consumer_list) {
op_set = dag->access_analyzer.GetConsumers(s0, s0->stages[pair.first]->op);
CHECK_EQ(op_set.size(), 1);
CHECK_EQ((*op_set.begin()), s0->stages[pair.second]->op);
}
std::vector<std::pair<int, std::vector<int>>> producer_list = {{padding, {data}},
{conv, {padding, kernel}},
{bias_add, {conv, bias}},
{bn_mul, {bias_add, bn_scale}},
{bn_add, {bn_mul, bn_offset}},
{relu, {bn_add}}};
for (const auto& pair : producer_list) {
op_set = dag->access_analyzer.GetDirectProducers(s0->stages[pair.first]->op);
CHECK_EQ(op_set.size(), pair.second.size());
for (const auto& target : pair.second) {
CHECK(op_set.count(s0->stages[target]->op));
}
}
}
}
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
testing::FLAGS_gtest_death_test_style = "threadsafe";
return RUN_ALL_TESTS();
}
| [
"noreply@github.com"
] | noreply@github.com |
2e1e92cddbb36d4c3d657d93be8e37e91c5b5955 | b964e7f936d6c0c755cc7e02af2f58113d3a3cdc | /Epsilon5-MapEditor/storage/st_sourceobjectitem.h | 99d7d2b14bd2c7e566a316e6da1fb2c98a201d68 | [] | no_license | dmitrysl/Epsilon5 | 0fdf88a0e9bb7f23ca41ec275ba33d17457095a8 | fe5111bd0de82a0e2edce3e94a205d0cf545b315 | refs/heads/master | 2020-12-26T02:49:22.472980 | 2013-06-27T06:32:15 | 2013-06-27T06:32:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,142 | h | #pragma once
#include "st_storageinfo.h"
#include "st_item_t.h"
//------------------------------------------------------------------------------
namespace containers
{
//------------------------------------------------------------------------------
class TSObjectItem : public TTItem<TSObjectInfo>
{
public:
TSObjectItem(const TSObjectInfo& info = TSObjectInfo());
TSObjectItem(const TSObjectItem& object);
TSObjectItem& operator=(const TSObjectItem& object);
quint32 objectId() const;
quint32 width() const;
quint32 height() const;
QSize size() const;
bool isDynamic() const;
const QString& resourceName() const;
void setObjectId(quint32 objectId);
void setSize(const QSize& size);
void setWidth(quint32 width);
void setHeight(quint32 height);
void setDynamic(bool value = true);
void setResourceName(const QString& name);
bool validate();
QString pack() const;
bool unpack(const QString& string);
};
//------------------------------------------------------------------------------
}
//------------------------------------------------------------------------------
| [
"nokatamakoto@gmail.com"
] | nokatamakoto@gmail.com |
ca20de37dae4c298010d51fd2c168369409502ec | b5f796726dc14134bfd61f176cf8bb9b8093d276 | /Codeforces/CF1A.cpp | 14a6d79027df0a910827c02ea410cca26d381276 | [] | no_license | zjbztianya/ACMCode | bd3c46cddb2fadace5ace0099c2ba23803324916 | f7f1deced7a3a0773f577fbfdba0672834f5a26d | refs/heads/master | 2021-05-16T02:56:59.007684 | 2016-12-03T09:34:07 | 2016-12-03T09:34:07 | 18,875,924 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 238 | cpp | #include <iostream>
#include <cstdio>
using namespace std;
typedef long long LL;
int main()
{
LL n,m,a;
scanf("%I64d%I64d%I64d",&n,&m,&a);
LL ans=((n+a-1)/a)*((m+a-1)/a);
printf("%I64d\n",ans);
return 0;
}
| [
"spcjv5@gmail.com"
] | spcjv5@gmail.com |
9d3c43e60810b6568e0879b0e4698d3b191d1a4b | d52d3a9f0afb4316532837a5786e487813374da2 | /apifmnc/QryFmncTolAAvl.cpp | 20bef6dd0040db5d50fc6809feaa49fcd3ef3928 | [] | no_license | epsitech/fabmaniac | cf7fb7e2f8d0f0a3dd18585a3309d05d3ea622ac | 715f59ed8a80a1288119081210428fce51422d7e | refs/heads/master | 2021-01-21T04:25:33.463846 | 2016-08-07T19:25:59 | 2016-08-07T19:25:59 | 48,572,056 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,102 | cpp | /**
* \file QryFmncTolAAvl.cpp
* API code for job QryFmncTolAAvl (implementation)
* \author Alexander Wirthmueller
* \date created: 7 Mar 2016
* \date modified: 7 Mar 2016
*/
#include "QryFmncTolAAvl.h"
/******************************************************************************
class QryFmncTolAAvl::StatApp
******************************************************************************/
QryFmncTolAAvl::StatApp::StatApp(
const uint firstcol
, const uint jnumFirstdisp
, const uint ncol
, const uint ndisp
) : Block() {
this->firstcol = firstcol;
this->jnumFirstdisp = jnumFirstdisp;
this->ncol = ncol;
this->ndisp = ndisp;
mask = {FIRSTCOL, JNUMFIRSTDISP, NCOL, NDISP};
};
bool QryFmncTolAAvl::StatApp::readXML(
xmlXPathContext* docctx
, string basexpath
, bool addbasetag
) {
clear();
bool basefound;
if (addbasetag)
basefound = checkUclcXPaths(docctx, basexpath, basexpath, "StatAppQryFmncTolAAvl");
else
basefound = checkXPath(docctx, basexpath);
string itemtag = "StatitemAppQryFmncTolAAvl";
if (basefound) {
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "firstcol", firstcol)) add(FIRSTCOL);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "jnumFirstdisp", jnumFirstdisp)) add(JNUMFIRSTDISP);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "ncol", ncol)) add(NCOL);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "ndisp", ndisp)) add(NDISP);
};
return basefound;
};
set<uint> QryFmncTolAAvl::StatApp::comm(
const StatApp* comp
) {
set<uint> items;
if (firstcol == comp->firstcol) insert(items, FIRSTCOL);
if (jnumFirstdisp == comp->jnumFirstdisp) insert(items, JNUMFIRSTDISP);
if (ncol == comp->ncol) insert(items, NCOL);
if (ndisp == comp->ndisp) insert(items, NDISP);
return(items);
};
set<uint> QryFmncTolAAvl::StatApp::diff(
const StatApp* comp
) {
set<uint> commitems;
set<uint> diffitems;
commitems = comm(comp);
diffitems = {FIRSTCOL, JNUMFIRSTDISP, NCOL, NDISP};
for (auto it=commitems.begin();it!=commitems.end();it++) diffitems.erase(*it);
return(diffitems);
};
/******************************************************************************
class QryFmncTolAAvl::StatShr
******************************************************************************/
QryFmncTolAAvl::StatShr::StatShr(
const uint ntot
, const uint jnumFirstload
, const uint nload
) : Block() {
this->ntot = ntot;
this->jnumFirstload = jnumFirstload;
this->nload = nload;
mask = {NTOT, JNUMFIRSTLOAD, NLOAD};
};
bool QryFmncTolAAvl::StatShr::readXML(
xmlXPathContext* docctx
, string basexpath
, bool addbasetag
) {
clear();
bool basefound;
if (addbasetag)
basefound = checkUclcXPaths(docctx, basexpath, basexpath, "StatShrQryFmncTolAAvl");
else
basefound = checkXPath(docctx, basexpath);
string itemtag = "StatitemShrQryFmncTolAAvl";
if (basefound) {
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "ntot", ntot)) add(NTOT);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "jnumFirstload", jnumFirstload)) add(JNUMFIRSTLOAD);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "nload", nload)) add(NLOAD);
};
return basefound;
};
set<uint> QryFmncTolAAvl::StatShr::comm(
const StatShr* comp
) {
set<uint> items;
if (ntot == comp->ntot) insert(items, NTOT);
if (jnumFirstload == comp->jnumFirstload) insert(items, JNUMFIRSTLOAD);
if (nload == comp->nload) insert(items, NLOAD);
return(items);
};
set<uint> QryFmncTolAAvl::StatShr::diff(
const StatShr* comp
) {
set<uint> commitems;
set<uint> diffitems;
commitems = comm(comp);
diffitems = {NTOT, JNUMFIRSTLOAD, NLOAD};
for (auto it=commitems.begin();it!=commitems.end();it++) diffitems.erase(*it);
return(diffitems);
};
/******************************************************************************
class QryFmncTolAAvl::StgIac
******************************************************************************/
QryFmncTolAAvl::StgIac::StgIac(
const uint jnum
, const uint jnumFirstload
, const uint nload
) : Block() {
this->jnum = jnum;
this->jnumFirstload = jnumFirstload;
this->nload = nload;
mask = {JNUM, JNUMFIRSTLOAD, NLOAD};
};
bool QryFmncTolAAvl::StgIac::readXML(
xmlXPathContext* docctx
, string basexpath
, bool addbasetag
) {
clear();
bool basefound;
if (addbasetag)
basefound = checkUclcXPaths(docctx, basexpath, basexpath, "StgIacQryFmncTolAAvl");
else
basefound = checkXPath(docctx, basexpath);
string itemtag = "StgitemIacQryFmncTolAAvl";
if (basefound) {
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "jnum", jnum)) add(JNUM);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "jnumFirstload", jnumFirstload)) add(JNUMFIRSTLOAD);
if (extractUintAttrUclc(docctx, basexpath, itemtag, "Si", "sref", "nload", nload)) add(NLOAD);
};
return basefound;
};
void QryFmncTolAAvl::StgIac::writeXML(
xmlTextWriter* wr
, string difftag
, bool shorttags
) {
if (difftag.length() == 0) difftag = "StgIacQryFmncTolAAvl";
string itemtag;
if (shorttags) itemtag = "Si";
else itemtag = "StgitemIacQryFmncTolAAvl";
xmlTextWriterStartElement(wr, BAD_CAST difftag.c_str());
writeUintAttr(wr, itemtag, "sref", "jnum", jnum);
writeUintAttr(wr, itemtag, "sref", "jnumFirstload", jnumFirstload);
writeUintAttr(wr, itemtag, "sref", "nload", nload);
xmlTextWriterEndElement(wr);
};
set<uint> QryFmncTolAAvl::StgIac::comm(
const StgIac* comp
) {
set<uint> items;
if (jnum == comp->jnum) insert(items, JNUM);
if (jnumFirstload == comp->jnumFirstload) insert(items, JNUMFIRSTLOAD);
if (nload == comp->nload) insert(items, NLOAD);
return(items);
};
set<uint> QryFmncTolAAvl::StgIac::diff(
const StgIac* comp
) {
set<uint> commitems;
set<uint> diffitems;
commitems = comm(comp);
diffitems = {JNUM, JNUMFIRSTLOAD, NLOAD};
for (auto it=commitems.begin();it!=commitems.end();it++) diffitems.erase(*it);
return(diffitems);
};
| [
"awirthm@gmail.com"
] | awirthm@gmail.com |
37020337d1e069cee8d0948a5891faedca58689a | 4852ed5601ccb5a33f8cd7da8e2b3a908101a21a | /SimpleElections.h | fe7db84de8d06ecbcbe94e4422d21a775171aae9 | [] | no_license | OmerArzi/Elections_Management_System | 0623ea7a4695905e98a2fef227f74a4978bea9fd | 3990a1dcf30983f1159eba9f3da5d55e2a91f62f | refs/heads/main | 2023-07-18T21:31:51.606878 | 2021-10-02T09:37:42 | 2021-10-02T09:37:42 | 412,751,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 781 | h | #pragma once
#include "BaseElections.h"
namespace election
{
class SimpleElections : public BaseElections
{
public:
//ctor
SimpleElections(int day, int month, int year, int elector_num);
//copy-ctor
SimpleElections(SimpleElections& other) = delete;
//dtor
~SimpleElections() = default;
//operators
SimpleElections& operator=(SimpleElections& other) = delete;
virtual void addCounty(const string& name, int numOfElectors, bool isUnited);
virtual void addCitizenAsDelegateCounty(const string& ID, int partyNum, int CountyNum);
//print
virtual void printAllCounties() const { string error("NO COUNTIES IN THIS MODE"); throw error; }
virtual void printAllCitizens() const;
virtual void printAllParties() const;
virtual void printVoteStatus();
};
}
| [
"noreply@github.com"
] | noreply@github.com |
4379cdad542dda66209bc942bf16a86d9524e4a6 | 79dc88c2a26369d3f4abcd8c5abbc2093c200e63 | /Components/Network/EMNetworkEngine.h | 982fb9a296d8ae67395afe160fe5688269043bc7 | [] | no_license | ModeenF/Titan | 2748b42ee1d10d859a0d3da59e4f754c12b30576 | 7c9601c6378e3c7c31fb2a6c3ebc64b09036a5e4 | refs/heads/master | 2021-01-14T08:29:57.546498 | 2013-01-25T03:56:07 | 2013-01-25T03:56:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,687 | h | /*******************************************************
* Creator: Martin Johansson
* Portability: Native, very native
*-------------------------------------------------------
*
* Martin Johansson, 01-08-01
*******************************************************/
#include "EMGlobals.h"
#ifndef __EM_NETWORK_ENGINE
#define __EM_NETWORK_ENGINE
#include "EMListenerRepository.h"
#include "EMNetworkMessageQueue.h"
#include "EMNetworkGlobals.h"
class EMNetworkUserDatabase;
class EMNetworkCommandFactory;
class EMNetworkMessageSender;
class EMNetworkMessage;
class EMNetworkFileHandler;
class EMNetworkUserHandler;
class EMSemaphore;
struct TSonorkApi;
struct TSonorkError;
struct SONORK_DWORD2;
enum SONORK_NETIO_STATUS;
enum SONORK_FUNCTION;
class __declspec(dllexport) EMNetworkEngine : public EMListenerRepository
{
public:
~EMNetworkEngine();
static EMNetworkEngine* Instance();
static void Delete();
bool Initialize(const char* p_opHost = "192.168.0.100", uint32 m_vPort = 1504 , bool p_vTCP = true , bool p_vIntranet = true);
bool Connect(const char* p_opUID = NULL, const char* p_opPWD = NULL);
bool Disconnect();
bool IsConnected();
EMNetworkUserDatabase* GetUserDatabase();
EMNetworkMessageSender* GetMessageSender();
EMNetworkMessageQueue<EMNetworkMessage*>* GetMessageQueue();
EMNetworkFileHandler* GetFileHandler();
EMNetworkUserHandler* GetUserHandler();
EMNetworkCommandFactory* GetCommandFactory();
TSonorkApi* GetAPI();
static void MainAPICallback(TSonorkApi* p_opAPI);
static void __cdecl TimerThread(void *p_vpThis);
protected:
void PhaseTransition();
void ClientEvent();
void StatusChanged(SONORK_NETIO_STATUS p_oNewStatus, SONORK_NETIO_STATUS p_oOldStatus, DWORD p_vFlags, TSonorkError& p_vError);
void GlobalTask(SONORK_FUNCTION p_oTask,bool p_vDone, TSonorkError& p_oError);
void AddUserFromNetwork();
void MessageReceived(const SONORK_DWORD2& userId);
void SidChanged(const SONORK_DWORD2& userId);
void DeleteUser(const SONORK_DWORD2& p_oReqUserId);
void AuthorizeUser(const SONORK_DWORD2& p_oReqUserId);
protected:
TSonorkApi* m_opAPI;
EMNetworkUserDatabase* m_opUsers;
EMNetworkMessageSender* m_opSender;
EMNetworkMessageQueue<EMNetworkMessage*>* m_opMessageQueue;
EMNetworkFileHandler* m_opFileHandler;
EMNetworkUserHandler* m_opUserHandler;
HANDLE m_oThreadEnd;
HANDLE m_oUsersDownloaded;
bool m_vIsRunning;
EMSemaphore* m_opLock;
EMPhase m_oCurrentPhase;
EMPhase m_oLastPhase;
private:
EMNetworkEngine();
private:
static EMNetworkEngine* m_opInstance;
static bool m_vIsDecomposed;
};
#endif
| [
"looncraz@satx.rr.com"
] | looncraz@satx.rr.com |
3802d64a413b3784aeeba5375bba02983068326f | 263e51befc89e690d7d6dd1cb2538d092b497a22 | /FunctionTable.cc | 90e2ec39465881c5dafbca834421d4e4951fc4fb | [] | no_license | apktool/Expression-Rvaluator | e279281ff8cb495b7bc8b1d45929235948a6d258 | 3496c3e036430df873dda71ef070f093df286534 | refs/heads/master | 2021-06-05T05:26:58.331612 | 2016-10-06T09:03:25 | 2016-10-06T09:03:25 | 69,961,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 828 | cc | #include"FunctionTable.h"
#include"SymbolTable.h"
#include<iostream>
#include<cmath>
#include<cassert>
struct FunctionEntry{
PtrFun pFun_;
const char* funName_;
};
FunctionEntry Entrys[]={
log, "log",
log10,"log10",
exp, "exp",
sqrt, "sqrt",
sin, "sin",
cos, "cos",
tan, "tan",
sinh, "sinh",
cosh, "cosh",
tanh, "tanh",
asin, "asin",
acos, "acos",
atan, "atan"
};
FunctionTable::FunctionTable(SymbolTable& tbl):size_(sizeof(Entrys)/sizeof(Entrys[0])){
Init(tbl);
}
FunctionTable::~FunctionTable(){
delete[] pFuns_;
}
void FunctionTable::Init(SymbolTable& tbl){
std::cout<<"function list:"<<std::endl;
pFuns_=new PtrFun[size_];
for(unsigned int i=0;i<size_;++i){
pFuns_[i]=Entrys[i].pFun_;
unsigned int j=tbl.Add(Entrys[i].funName_);
assert(i==j);
std::cout<<Entrys[i].funName_<<std::endl;
}
}
| [
"apktoolOo@gmail.com"
] | apktoolOo@gmail.com |
8d4d9a9fbc92c63cd6e83809954667d6af9a44de | 00652db15247af025ce950800e0bfa0bee5694a6 | /Spaceship/model.h | ce69a3a1984a7e1e0e8380d120b64cc41632205b | [] | no_license | evan-liu/Spaceship | 9b574d56e4a9199d373320d72d02d05700b00687 | bbb2b1e8f3357fd9dadd6ba479dfbd019786c118 | refs/heads/master | 2020-05-31T04:31:45.466175 | 2014-10-09T20:29:17 | 2014-10-09T20:29:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,638 | h | #pragma once
//==============================================================================
// Model
//==============================================================================
static const int COLUMN_COUNT = 10;
static const int ROW_COUNT = 20;
static const char EMPTY = ' ';
static const char BLOCK = '#';
static const char PLANE = '^';
static const char BULLET = '!';
static const char BOMB = '@';
static const char CRASH = '*';
class CModel {
public:
CModel();
virtual ~CModel();
bool GetIsGameOver();
int GetColumnCount();
int GetRowCount();
char GetCharAt(int x, int y);
double GetUpdateDelay();
int GetLevel();
int GetScore();
int GetBulletCount();
int GetBombCount();
bool GetIsChanged();
void SetIsChanged(bool p_isChanged);
void Update();
void MoveLeft();
void MoveRight();
void MoveUp();
void MoveDown();
void NewGame();
void FireBullet();
void FireBomb();
private:
bool m_bIsGameOver;
int m_iColumnCount;
int m_iRowCount;
double m_dUpdateDelay;
int m_iLevel;
int m_iScore;
char m_map[ROW_COUNT][COLUMN_COUNT];
int m_iBlankLineLeft;
int m_iBlankLineCount;
int m_iBlockCount;
int m_iPlaneRow;
int m_iPlaneColumn;
int m_iBulletCount;
int m_iBombCount;
bool m_bIsChanged;
void CreateRow(int rowIndex);
void CreateBlankRow(int rowIndex);
bool NeedUpdateDelay();
bool NeedUpdateBlockCount();
void UpdatePlane();
void MovePlaneTo(int row, int column);
int RowFromScreenY(int y);
int ScreenYFromRow(int row);
};
| [
"evancoding@gmail.com"
] | evancoding@gmail.com |
1f15de119d26fd537864dd9e42564771cebcbf5e | 85b9ce4fb88972d9b86dce594ae4fb3acfcd0a4b | /build/Android/Preview/Global Pot/app/src/main/include/Fuse.Scripting.NativePromise-2.ContextClosure.h | f3d6ef3aee0b193197ed7a8fa3c3bac68eb00ee9 | [] | no_license | bgirr/Global-Pot_App | 16431a99e26f1c60dc16223fb388d9fd525cb5fa | c96c5a8fb95acde66fc286bcd9a5cdf160ba8b1b | refs/heads/master | 2021-01-09T06:29:18.255583 | 2017-02-21T23:27:47 | 2017-02-21T23:27:47 | 80,985,681 | 0 | 0 | null | 2017-02-21T23:27:48 | 2017-02-05T10:29:14 | C++ | UTF-8 | C++ | false | false | 1,502 | h | // This file was generated based on C:\Users\EliteBook-User\AppData\Local\Fusetools\Packages\Fuse.Scripting\0.44.1\$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h>
namespace g{namespace Fuse{namespace Scripting{struct Context;}}}
namespace g{namespace Fuse{namespace Scripting{struct NativePromise__ContextClosure;}}}
namespace g{
namespace Fuse{
namespace Scripting{
// private sealed class NativePromise<T, TJSResult>.ContextClosure :800
// {
uType* NativePromise__ContextClosure_typeof();
void NativePromise__ContextClosure__ctor__fn(NativePromise__ContextClosure* __this, ::g::Fuse::Scripting::Context* c, uDelegate* factory, uDelegate* converter);
void NativePromise__ContextClosure__CreatePromise_fn(NativePromise__ContextClosure* __this, uArray* args, uObject** __retval);
void NativePromise__ContextClosure__New1_fn(uType* __type, ::g::Fuse::Scripting::Context* c, uDelegate* factory, uDelegate* converter, NativePromise__ContextClosure** __retval);
struct NativePromise__ContextClosure : uObject
{
uStrong< ::g::Fuse::Scripting::Context*> _c;
uStrong<uDelegate*> _converter;
uStrong<uDelegate*> _factory;
void ctor_(::g::Fuse::Scripting::Context* c, uDelegate* factory, uDelegate* converter);
uObject* CreatePromise(uArray* args);
static NativePromise__ContextClosure* New1(uType* __type, ::g::Fuse::Scripting::Context* c, uDelegate* factory, uDelegate* converter);
};
// }
}}} // ::g::Fuse::Scripting
| [
"girr.benjamin@gmail.com"
] | girr.benjamin@gmail.com |
0321abcc35992fa9103a9262f4d6853d27a31e11 | cb1ef91463e9bba0fa10156e33445670784b24a9 | /gridbfs.h | 13f0b021eeee9d52740ed15e735c0dad5cded575 | [
"Apache-2.0"
] | permissive | bjj/ants2011 | 986b6f7e5b7fd0ad4e462fcc8945be6b93012406 | 41a33cdfba5ab0861558c42c1438a16dd5e355de | refs/heads/master | 2021-01-18T16:30:04.448260 | 2011-12-19T21:59:50 | 2011-12-19T21:59:50 | 3,015,376 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,753 | h | #ifndef GRIDBFS_H_
#define GRIDBFS_H_
#include "grid.h"
#include <queue>
#include <iterator>
template <typename Passable>
class GridBfs : std::iterator<std::forward_iterator_tag, Location>
{
public:
GridBfs()
: dist(-1)
{ }
GridBfs(const Location &start, const Passable &p = Passable())
: dist(0)
, passable(p)
{
visited.reset();
q.push(start);
visited(start) = TDIRECTIONS + 1; // "don't move"
q.push(Location(-1, -1));
enqueueAll();
}
GridBfs(const GridBfs &other)
: dist(other.dist)
, passable(other.passable)
, q(other.q)
, visited(other.visited)
{ }
const Location & operator * () const
{
return q.front();
}
const Location * operator -> () const
{
return &(operator*());
}
GridBfs & operator ++ ()
{
q.pop();
while (q.front().row == -1) {
dist++;
q.pop();
if (!q.empty())
q.push(Location(-1, -1));
}
if (q.empty())
dist = -1;
else
enqueueAll();
return *this;
}
GridBfs operator ++ (int)
{
GridBfs tmp = *this;
++*this;
return tmp;
}
bool operator == (const GridBfs &rhs) const
{
// XXX poor condition
return dist == rhs.dist && (dist == -1 || q == rhs.q);
}
bool operator != (const GridBfs &rhs) const
{
return !(*this == rhs);
}
int distance() const
{
return dist;
}
int direction() const
{
return visited(q.front()) - 1;
}
int direction2() const
{
int d = direction();
Location next = state.getLocation(q.front(), d);
int d2 = visited(next) - 1;
if (d2 != -1 && d2 != TDIRECTIONS) {
next = state.getLocation(q.front(), d2);
int d3 = visited(next) - 1;
if (d3 != -1 && d3 != TDIRECTIONS) {
if (BEHIND[d3] != d2)
return d2;
}
}
return d;
}
protected:
void enqueue(int dr, int dc, int dir)
{
int r = state._row(q.front().row + dr);
int c = state._col(q.front().col + dc);
const Location loc(r, c);
if (!visited(loc) && passable(loc)) {
q.push(loc);
visited(loc) = dir + 1;
}
}
void enqueueAll()
{
enqueue(-1, 0, 2); // go back S
enqueue(0, 1, 3); // go back W
enqueue(1, 0, 0); // go back N
enqueue(0, -1, 1); // go back E
}
int dist;
Passable passable;
std::queue<Location> q;
Grid<char> visited;
};
#endif /* GRIDBFS_H_ */
| [
"ben@ben.com"
] | ben@ben.com |
884237ce00cf566b8c71e58a0050d024c42d834b | 9da42e04bdaebdf0193a78749a80c4e7bf76a6cc | /third_party/gecko-10/win32/include/nsIDOMRangeException.h | e173ddb335b36eb9138caf51d721136b47479708 | [
"Apache-2.0"
] | permissive | bwp/SeleniumWebDriver | 9d49e6069881845e9c23fb5211a7e1b8959e2dcf | 58221fbe59fcbbde9d9a033a95d45d576b422747 | refs/heads/master | 2021-01-22T21:32:50.541163 | 2012-11-09T16:19:48 | 2012-11-09T16:19:48 | 6,602,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,612 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-m-rel-xr-w32-bld/build/dom/interfaces/range/nsIDOMRangeException.idl
*/
#ifndef __gen_nsIDOMRangeException_h__
#define __gen_nsIDOMRangeException_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMRangeException */
#define NS_IDOMRANGEEXCEPTION_IID_STR "0f807301-39d2-11d6-a7f2-8f504ff870dc"
#define NS_IDOMRANGEEXCEPTION_IID \
{0x0f807301, 0x39d2, 0x11d6, \
{ 0xa7, 0xf2, 0x8f, 0x50, 0x4f, 0xf8, 0x70, 0xdc }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMRangeException : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMRANGEEXCEPTION_IID)
enum { BAD_BOUNDARYPOINTS_ERR = 1U };
enum { INVALID_NODE_TYPE_ERR = 2U };
/* readonly attribute unsigned short code; */
NS_SCRIPTABLE NS_IMETHOD GetCode(PRUint16 *aCode) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMRangeException, NS_IDOMRANGEEXCEPTION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMRANGEEXCEPTION \
NS_SCRIPTABLE NS_IMETHOD GetCode(PRUint16 *aCode);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMRANGEEXCEPTION(_to) \
NS_SCRIPTABLE NS_IMETHOD GetCode(PRUint16 *aCode) { return _to GetCode(aCode); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMRANGEEXCEPTION(_to) \
NS_SCRIPTABLE NS_IMETHOD GetCode(PRUint16 *aCode) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCode(aCode); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMRangeException : public nsIDOMRangeException
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMRANGEEXCEPTION
nsDOMRangeException();
private:
~nsDOMRangeException();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMRangeException, nsIDOMRangeException)
nsDOMRangeException::nsDOMRangeException()
{
/* member initializers and constructor code */
}
nsDOMRangeException::~nsDOMRangeException()
{
/* destructor code */
}
/* readonly attribute unsigned short code; */
NS_IMETHODIMP nsDOMRangeException::GetCode(PRUint16 *aCode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMRangeException_h__ */
| [
"haleokekahuna@gmail.com"
] | haleokekahuna@gmail.com |
62193944ce2c347442b74a378e4d60d847b2e6df | 88378ba2d674539b7184d06d09dd6ac1f5120c73 | /src/node/coinstats.h | facc305769994d7f4b1b4f7cceb16a4bf3589724 | [
"MIT"
] | permissive | aurarad/Auroracoin | c1868ee0f89986fe18583ff9ea3b97da99bbd851 | 68551e406426dbea315139e58ac683ea69621365 | refs/heads/master | 2023-07-07T02:00:32.639831 | 2023-07-03T07:41:57 | 2023-07-03T07:41:57 | 54,232,156 | 36 | 34 | MIT | 2023-06-06T08:24:51 | 2016-03-18T21:20:48 | C++ | UTF-8 | C++ | false | false | 900 | h | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2019 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef AURORACOIN_NODE_COINSTATS_H
#define AURORACOIN_NODE_COINSTATS_H
#include <amount.h>
#include <uint256.h>
#include <cstdint>
class CCoinsView;
struct CCoinsStats
{
int nHeight;
uint256 hashBlock;
uint64_t nTransactions;
uint64_t nTransactionOutputs;
uint64_t nBogoSize;
uint256 hashSerialized;
uint64_t nDiskSize;
CAmount nTotalAmount;
CCoinsStats() : nHeight(0), nTransactions(0), nTransactionOutputs(0), nBogoSize(0), nDiskSize(0), nTotalAmount(0) {}
};
//! Calculate statistics about the unspent transaction output set
bool GetUTXOStats(CCoinsView* view, CCoinsStats& stats);
#endif // AURORACOIN_NODE_COINSTATS_H | [
"myckel@sdf.org"
] | myckel@sdf.org |
a11bc274f7bfca270a1fa266dbe3f775ffcd3ca7 | 517159c3883bf6453eca404a88fec698813195ad | /v4Program4FlightPlanner/AirportCity.h | 797904d946bb9cd38e6564d1b12e286ac24934f7 | [] | no_license | fidelianawar-zz/DS-P04-Flight-Planner | 8be1a0387286d2c0424377930f5f48f2d6c9506f | 61bb17f252458f92b96f14ac41f6fd2e09b1f147 | refs/heads/master | 2023-03-08T10:48:55.988571 | 2020-02-05T08:43:08 | 2020-02-05T08:43:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 829 | h | #ifndef AirportCity_H
#define AirportCity_H
#include "DSString.h"
#include "DSVector.h"
#include <iostream>
class AirportCity {
public:
AirportCity();
AirportCity(DSString);
AirportCity(DSString, double, int, DSString);
//getters and setters for all necessary information related to a node
DSString getName();
void setName(DSString);
double getCost();
void setCost(double);
int getTime();
void setTime(int);
DSString getAirline();
void setAirline(DSString);
//used to compare if two AirportCity objects are equal or not
bool operator==(const AirportCity&);
void print();
private:
DSString name;
DSString airline;
double cost;
int time;
};
#endif // AirportCity_H
| [
"fidelia.m589@gmail.com"
] | fidelia.m589@gmail.com |
afa6556ae6677e63cf121725166d719b64ad8294 | 177cad49b953e691f35b0ae416b76d206409fa02 | /project/notebooks/old/WOA c++ implementation/calvar3.cpp | d687278e6b885d3cf67f7769f19eea7b8c5e8e36 | [] | no_license | suchusername/VariationalCalculus | 48f3c00a7f1de8482507d844ad001b8e0f5463e4 | b673c02baa98507896301dbd606709711940545e | refs/heads/master | 2022-07-20T22:09:39.773189 | 2020-05-19T13:43:45 | 2020-05-19T13:43:45 | 260,179,337 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,564 | cpp | // Serial Whale Optimization Algorithm for Calculus of Variations Problems (SWOACVP) source code
// 2018-12-08
// H.H. Mehne, S. Mirjalili, A Direct Method for Solving Calculus of Variations Problems using the Whale Optimization Algorithm, Example 3.
// Compile the file in linux command line with "g++ -o calvar3 calvar3.cpp"
// Run it in linux command with "./calvar3"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <iomanip>
#include <omp.h>
#define SearchAgents_no 300
#define Max_iter 2000
#define lb -2.0
#define ub 0.5
#define dim 60
#define pi 3.1415
#define T_f 1.0
#define coef -exp(1)/(exp(1)+exp(-1))
typedef struct {
float positions[dim+1];
float xdot[dim+1];
float fitness;
} whale;
whale sample[SearchAgents_no];
float Leader_pos[dim+1];
float Leader_score=10000;
int Leader_whale = 0;
float a, a2;
float delta_t=(float) T_f/dim;
float performance_index[Max_iter];
void MakeInput4TecPlot(char* filename1, char* filename2,float* u, float* perf) // This Subroutine makes input file for drawing the results in Tecplot Software
{
int i;
float t, exact, norm;
FILE *OutPut;
norm=0.0;
OutPut=fopen(filename1,"w"); //Writing results to the first file
fprintf(OutPut, "title = \"SWOACVP Output Example1\" \n");
fprintf(OutPut," variables= \"t\", \"x\", \"exact\" \n");
fprintf(OutPut, "zone\n");
for(i=0;i<=dim;i++){
t= i*delta_t;
exact=coef*exp(t) - coef*exp(-t) + 0.5*t*exp(t);
norm += fabs(exact-u[i]);
fprintf(OutPut, "%4f %4f %4f \n", t, u[i], exact);
}
fclose(OutPut);
OutPut=fopen(filename2,"w"); //Writing obtained performance indices to the second file
fprintf(OutPut, "title = \"SWOACVP Performance Index Example1\" \n");
fprintf(OutPut," \"u\", \"Performance\"\n");
fprintf(OutPut, "zone\n");
for(i=0;i<Max_iter;i++)
fprintf(OutPut, "%d %4f\n", i, perf[i]);
fclose(OutPut);
printf("\n Error norm= %f", norm);
}
void initialization() // This subroutine provides an initial distribution for each whale
{
int i,j;
for(i=0;i<SearchAgents_no;i++){
for(j=1;j<=dim;j++)
sample[i].positions[j]=lb+(rand()/(RAND_MAX+1.0))*(ub-lb);
sample[i].positions[0]=0.0;
}
}
void regulation() // This subroutine checks the solution and fit the out of bound values to [l_b, u_b]
{
int i,j;
int Flag4ub, Flag4lb;
for(i=0;i<SearchAgents_no;i++){
for(j=0;j<=dim;j++){
Flag4ub=( sample[i].positions[j] > ub ? 1 : 0 );
Flag4lb=( sample[i].positions[j] < lb ? 1 : 0 );
sample[i].positions[j]=sample[i].positions[j]*(!(Flag4ub+Flag4lb))+ub*Flag4ub+lb*Flag4lb;
}
}
}
void smoothing() // This subroutine shmooths the corners of the solution by averaging
{
int i,j;
for(i=0;i<SearchAgents_no;i++){
for(j=1;j<dim;j++){
if (( sample[i].positions[j] - sample[i].positions[j-1] )*( sample[i].positions[j+1] - sample[i].positions[j] )<0);
sample[i].positions[j]=(sample[i].positions[j-1]+sample[i].positions[j+1])/2;
}
}
}
float func(float t, float x, float xdot) // (x1)' = func1(x1,x2,u)
{
return x*x + xdot*xdot + 2*x*exp(t);
}
float IndexEvaluation(int whale_no) // This subroutine calculates the performance index of an indivisual whale
{
int i,j;
float sum,k1,k2,k3,k4,h1,h2,h3,h4,x1,x2,u;
sample[whale_no].positions[0]=0.0; // initial condition x1(0)=0.0
sum=0.0;
for(i=0;i<dim;i++) {
sample[whale_no].xdot[i] = (sample[whale_no].positions[i+1] - sample[whale_no].positions[i])/(delta_t);
sum+= delta_t*func(delta_t*i,sample[whale_no].positions[i],sample[whale_no].xdot[i]);
}
return sum;
}
void fitness_evaluation() // This subroutine evaluates the performance index of all search agents(whales)
{
int i;
for(i=0;i<SearchAgents_no;i++)
sample[i].fitness=IndexEvaluation(i);
}
void finding_local_opt() // This subroutine finds the whale with the best performance index
{
int i,j;
for(i=0;i<SearchAgents_no;i++)
if (sample[i].fitness<Leader_score){ // Change this to > for maximization problem
Leader_score=sample[i].fitness;
Leader_whale = i;
for(j=0;j<=dim;j++) Leader_pos[j]=sample[i].positions[j];// Copy sample[i].positions to Leader_pos
}
}
void position_update() // This subroutine updates the solution based on Eq. (15) of the paper
{
int i,j, k, rand_leader_index;
float r1, r2, A, C, b, p, l, D_X_rand, D_Leader, distance2Leader;
float X_rand[dim];
for (i=1;i<SearchAgents_no;i++){
r1=rand()/(RAND_MAX+1.0); // r1 is a random number in [0,1]
r2=rand()/(RAND_MAX+1.0); // r2 is a random number in [0,1]
A=2*a*r1-a;
C=2*r2;
b=1;
l=(a2-1)*rand()/(RAND_MAX+1.0)+1;
p = rand()/(RAND_MAX+1.0);
if (p<0.5)
if (fabs(A)>=1){
rand_leader_index = (int) floor(SearchAgents_no*(rand()/(RAND_MAX+1.0)));
for (k=0;k<dim;k++) X_rand[k] = sample[rand_leader_index].positions[k];
for (j=1;j<dim;j++){
D_X_rand=fabs(C*X_rand[j]-sample[i].positions[j]);
sample[i].positions[j]=X_rand[j]-A*D_X_rand; // Eq.(15) the lower relation
}
}
else if (fabs(A)<1) {
for (j=1;j<=dim;j++){
D_Leader=fabs(C*Leader_pos[j]-sample[i].positions[j]);
sample[i].positions[j]=Leader_pos[j]-A*D_Leader; // Eq. (15) the upper relation
}
}
else if (p>=0.5){
for (j=1;j<=dim;j++){
distance2Leader=fabs(Leader_pos[j]-sample[i].positions[j]);
sample[i].positions[j]=distance2Leader*exp(b*l)*cos(l*2*pi)+Leader_pos[j]; // Eq. (15) the middle relation
}
}
sample[i].positions[0]=0.0;
}
}
int main( int argc, char *argv[])
{
time_t seconds;
int t;
srand(uint(seconds));
initialization();
t=0;
do {
regulation();
smoothing();
fitness_evaluation();
finding_local_opt();
a=2-t*((2)/Max_iter); // a decreases linearly fron 2 to 0
a2=-1+t*((-1)/Max_iter); // a2 linearly dicreases from -1 to -2
position_update();
printf("\n t=%d, Leader=%f",t, Leader_score);
performance_index[t]=Leader_score;
t++;
} while (t<Max_iter);
MakeInput4TecPlot((char*) "outputsEx3.dat", (char*) "PerformanceEx3.dat", Leader_pos, performance_index);
return 0;
}
| [
"prokhoryurij@gmail.com"
] | prokhoryurij@gmail.com |
a11672cf38537c5d9d408a62774387988cf9218e | bfdb26d2dc8bc58453ebd6f467fd3b1ec07c5040 | /Samples/Win32/ThunderRumble/PlayFabCPPSDK/include/playfab/PlayFabProfilesDataModels.h | a55fd37b97e66ab3cac016bc27dd2d8bd9230ec0 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Apache-2.0"
] | permissive | PlayFab/PlayFab-Samples | 83c9462e0cd2d0e039bdc579b4d9e3c7f4c257b3 | 40c8c01e4318c099229d2f53411230f2c83314c0 | refs/heads/master | 2023-08-10T20:51:19.715285 | 2022-05-06T23:31:27 | 2022-05-06T23:31:27 | 50,960,862 | 204 | 265 | MIT | 2023-05-25T01:32:03 | 2016-02-02T23:59:23 | C# | UTF-8 | C++ | false | false | 26,172 | h | #pragma once
#ifndef DISABLE_PLAYFABENTITY_API
#include <playfab/PlayFabBaseModel.h>
// Intellisense-only includes
#ifndef _WIN32
#include <jsoncpp/json/value.h>
#endif
#ifdef _WIN32
#include <json/value.h>
#endif
namespace PlayFab
{
namespace ProfilesModels
{
// Profiles Enums
enum EffectType
{
EffectTypeAllow,
EffectTypeDeny
};
inline void ToJsonEnum(const EffectType input, Json::Value& output)
{
if (input == EffectTypeAllow) output = Json::Value("Allow");
if (input == EffectTypeDeny) output = Json::Value("Deny");
}
inline void FromJsonEnum(const Json::Value& input, EffectType& output)
{
if (!input.isString()) return;
const std::string& inputStr = input.asString();
if (inputStr == "Allow") output = EffectTypeAllow;
if (inputStr == "Deny") output = EffectTypeDeny;
}
enum OperationTypes
{
OperationTypesCreated,
OperationTypesUpdated,
OperationTypesDeleted,
OperationTypesNone
};
inline void ToJsonEnum(const OperationTypes input, Json::Value& output)
{
if (input == OperationTypesCreated) output = Json::Value("Created");
if (input == OperationTypesUpdated) output = Json::Value("Updated");
if (input == OperationTypesDeleted) output = Json::Value("Deleted");
if (input == OperationTypesNone) output = Json::Value("None");
}
inline void FromJsonEnum(const Json::Value& input, OperationTypes& output)
{
if (!input.isString()) return;
const std::string& inputStr = input.asString();
if (inputStr == "Created") output = OperationTypesCreated;
if (inputStr == "Updated") output = OperationTypesUpdated;
if (inputStr == "Deleted") output = OperationTypesDeleted;
if (inputStr == "None") output = OperationTypesNone;
}
// Profiles Classes
struct EntityDataObject : public PlayFabBaseModel
{
Json::Value DataObject;
std::string EscapedDataObject;
std::string ObjectName;
EntityDataObject() :
PlayFabBaseModel(),
DataObject(),
EscapedDataObject(),
ObjectName()
{}
EntityDataObject(const EntityDataObject& src) :
PlayFabBaseModel(),
DataObject(src.DataObject),
EscapedDataObject(src.EscapedDataObject),
ObjectName(src.ObjectName)
{}
~EntityDataObject() = default;
void FromJson(Json::Value& input) override
{
DataObject = input["DataObject"];
FromJsonUtilS(input["EscapedDataObject"], EscapedDataObject);
FromJsonUtilS(input["ObjectName"], ObjectName);
}
Json::Value ToJson() const override
{
Json::Value output;
output["DataObject"] = DataObject;
Json::Value each_EscapedDataObject; ToJsonUtilS(EscapedDataObject, each_EscapedDataObject); output["EscapedDataObject"] = each_EscapedDataObject;
Json::Value each_ObjectName; ToJsonUtilS(ObjectName, each_ObjectName); output["ObjectName"] = each_ObjectName;
return output;
}
};
struct EntityKey : public PlayFabBaseModel
{
std::string Id;
std::string Type;
EntityKey() :
PlayFabBaseModel(),
Id(),
Type()
{}
EntityKey(const EntityKey& src) :
PlayFabBaseModel(),
Id(src.Id),
Type(src.Type)
{}
~EntityKey() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilS(input["Id"], Id);
FromJsonUtilS(input["Type"], Type);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Id; ToJsonUtilS(Id, each_Id); output["Id"] = each_Id;
Json::Value each_Type; ToJsonUtilS(Type, each_Type); output["Type"] = each_Type;
return output;
}
};
struct EntityLineage : public PlayFabBaseModel
{
std::string CharacterId;
std::string GroupId;
std::string MasterPlayerAccountId;
std::string NamespaceId;
std::string TitleId;
std::string TitlePlayerAccountId;
EntityLineage() :
PlayFabBaseModel(),
CharacterId(),
GroupId(),
MasterPlayerAccountId(),
NamespaceId(),
TitleId(),
TitlePlayerAccountId()
{}
EntityLineage(const EntityLineage& src) :
PlayFabBaseModel(),
CharacterId(src.CharacterId),
GroupId(src.GroupId),
MasterPlayerAccountId(src.MasterPlayerAccountId),
NamespaceId(src.NamespaceId),
TitleId(src.TitleId),
TitlePlayerAccountId(src.TitlePlayerAccountId)
{}
~EntityLineage() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilS(input["CharacterId"], CharacterId);
FromJsonUtilS(input["GroupId"], GroupId);
FromJsonUtilS(input["MasterPlayerAccountId"], MasterPlayerAccountId);
FromJsonUtilS(input["NamespaceId"], NamespaceId);
FromJsonUtilS(input["TitleId"], TitleId);
FromJsonUtilS(input["TitlePlayerAccountId"], TitlePlayerAccountId);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_CharacterId; ToJsonUtilS(CharacterId, each_CharacterId); output["CharacterId"] = each_CharacterId;
Json::Value each_GroupId; ToJsonUtilS(GroupId, each_GroupId); output["GroupId"] = each_GroupId;
Json::Value each_MasterPlayerAccountId; ToJsonUtilS(MasterPlayerAccountId, each_MasterPlayerAccountId); output["MasterPlayerAccountId"] = each_MasterPlayerAccountId;
Json::Value each_NamespaceId; ToJsonUtilS(NamespaceId, each_NamespaceId); output["NamespaceId"] = each_NamespaceId;
Json::Value each_TitleId; ToJsonUtilS(TitleId, each_TitleId); output["TitleId"] = each_TitleId;
Json::Value each_TitlePlayerAccountId; ToJsonUtilS(TitlePlayerAccountId, each_TitlePlayerAccountId); output["TitlePlayerAccountId"] = each_TitlePlayerAccountId;
return output;
}
};
struct EntityPermissionStatement : public PlayFabBaseModel
{
std::string Action;
std::string Comment;
Json::Value Condition;
EffectType Effect;
Json::Value Principal;
std::string Resource;
EntityPermissionStatement() :
PlayFabBaseModel(),
Action(),
Comment(),
Condition(),
Effect(),
Principal(),
Resource()
{}
EntityPermissionStatement(const EntityPermissionStatement& src) :
PlayFabBaseModel(),
Action(src.Action),
Comment(src.Comment),
Condition(src.Condition),
Effect(src.Effect),
Principal(src.Principal),
Resource(src.Resource)
{}
~EntityPermissionStatement() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilS(input["Action"], Action);
FromJsonUtilS(input["Comment"], Comment);
Condition = input["Condition"];
FromJsonEnum(input["Effect"], Effect);
Principal = input["Principal"];
FromJsonUtilS(input["Resource"], Resource);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Action; ToJsonUtilS(Action, each_Action); output["Action"] = each_Action;
Json::Value each_Comment; ToJsonUtilS(Comment, each_Comment); output["Comment"] = each_Comment;
output["Condition"] = Condition;
Json::Value each_Effect; ToJsonEnum(Effect, each_Effect); output["Effect"] = each_Effect;
output["Principal"] = Principal;
Json::Value each_Resource; ToJsonUtilS(Resource, each_Resource); output["Resource"] = each_Resource;
return output;
}
};
struct EntityProfileFileMetadata : public PlayFabBaseModel
{
std::string Checksum;
std::string FileName;
time_t LastModified;
Int32 Size;
EntityProfileFileMetadata() :
PlayFabBaseModel(),
Checksum(),
FileName(),
LastModified(),
Size()
{}
EntityProfileFileMetadata(const EntityProfileFileMetadata& src) :
PlayFabBaseModel(),
Checksum(src.Checksum),
FileName(src.FileName),
LastModified(src.LastModified),
Size(src.Size)
{}
~EntityProfileFileMetadata() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilS(input["Checksum"], Checksum);
FromJsonUtilS(input["FileName"], FileName);
FromJsonUtilT(input["LastModified"], LastModified);
FromJsonUtilP(input["Size"], Size);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Checksum; ToJsonUtilS(Checksum, each_Checksum); output["Checksum"] = each_Checksum;
Json::Value each_FileName; ToJsonUtilS(FileName, each_FileName); output["FileName"] = each_FileName;
Json::Value each_LastModified; ToJsonUtilT(LastModified, each_LastModified); output["LastModified"] = each_LastModified;
Json::Value each_Size; ToJsonUtilP(Size, each_Size); output["Size"] = each_Size;
return output;
}
};
struct EntityProfileBody : public PlayFabBaseModel
{
Boxed<EntityKey> Entity;
std::string EntityChain;
std::map<std::string, EntityProfileFileMetadata> Files;
std::string FriendlyName;
std::string Language;
Boxed<EntityLineage> Lineage;
std::map<std::string, EntityDataObject> Objects;
std::list<EntityPermissionStatement> Permissions;
Int32 VersionNumber;
EntityProfileBody() :
PlayFabBaseModel(),
Entity(),
EntityChain(),
Files(),
FriendlyName(),
Language(),
Lineage(),
Objects(),
Permissions(),
VersionNumber()
{}
EntityProfileBody(const EntityProfileBody& src) :
PlayFabBaseModel(),
Entity(src.Entity),
EntityChain(src.EntityChain),
Files(src.Files),
FriendlyName(src.FriendlyName),
Language(src.Language),
Lineage(src.Lineage),
Objects(src.Objects),
Permissions(src.Permissions),
VersionNumber(src.VersionNumber)
{}
~EntityProfileBody() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Entity"], Entity);
FromJsonUtilS(input["EntityChain"], EntityChain);
FromJsonUtilO(input["Files"], Files);
FromJsonUtilS(input["FriendlyName"], FriendlyName);
FromJsonUtilS(input["Language"], Language);
FromJsonUtilO(input["Lineage"], Lineage);
FromJsonUtilO(input["Objects"], Objects);
FromJsonUtilO(input["Permissions"], Permissions);
FromJsonUtilP(input["VersionNumber"], VersionNumber);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Entity; ToJsonUtilO(Entity, each_Entity); output["Entity"] = each_Entity;
Json::Value each_EntityChain; ToJsonUtilS(EntityChain, each_EntityChain); output["EntityChain"] = each_EntityChain;
Json::Value each_Files; ToJsonUtilO(Files, each_Files); output["Files"] = each_Files;
Json::Value each_FriendlyName; ToJsonUtilS(FriendlyName, each_FriendlyName); output["FriendlyName"] = each_FriendlyName;
Json::Value each_Language; ToJsonUtilS(Language, each_Language); output["Language"] = each_Language;
Json::Value each_Lineage; ToJsonUtilO(Lineage, each_Lineage); output["Lineage"] = each_Lineage;
Json::Value each_Objects; ToJsonUtilO(Objects, each_Objects); output["Objects"] = each_Objects;
Json::Value each_Permissions; ToJsonUtilO(Permissions, each_Permissions); output["Permissions"] = each_Permissions;
Json::Value each_VersionNumber; ToJsonUtilP(VersionNumber, each_VersionNumber); output["VersionNumber"] = each_VersionNumber;
return output;
}
};
struct GetEntityProfileRequest : public PlayFabRequestCommon
{
Boxed<bool> DataAsObject;
Boxed<EntityKey> Entity;
GetEntityProfileRequest() :
PlayFabRequestCommon(),
DataAsObject(),
Entity()
{}
GetEntityProfileRequest(const GetEntityProfileRequest& src) :
PlayFabRequestCommon(),
DataAsObject(src.DataAsObject),
Entity(src.Entity)
{}
~GetEntityProfileRequest() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilP(input["DataAsObject"], DataAsObject);
FromJsonUtilO(input["Entity"], Entity);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_DataAsObject; ToJsonUtilP(DataAsObject, each_DataAsObject); output["DataAsObject"] = each_DataAsObject;
Json::Value each_Entity; ToJsonUtilO(Entity, each_Entity); output["Entity"] = each_Entity;
return output;
}
};
struct GetEntityProfileResponse : public PlayFabResultCommon
{
Boxed<EntityProfileBody> Profile;
GetEntityProfileResponse() :
PlayFabResultCommon(),
Profile()
{}
GetEntityProfileResponse(const GetEntityProfileResponse& src) :
PlayFabResultCommon(),
Profile(src.Profile)
{}
~GetEntityProfileResponse() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Profile"], Profile);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Profile; ToJsonUtilO(Profile, each_Profile); output["Profile"] = each_Profile;
return output;
}
};
struct GetEntityProfilesRequest : public PlayFabRequestCommon
{
Boxed<bool> DataAsObject;
std::list<EntityKey> Entities;
GetEntityProfilesRequest() :
PlayFabRequestCommon(),
DataAsObject(),
Entities()
{}
GetEntityProfilesRequest(const GetEntityProfilesRequest& src) :
PlayFabRequestCommon(),
DataAsObject(src.DataAsObject),
Entities(src.Entities)
{}
~GetEntityProfilesRequest() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilP(input["DataAsObject"], DataAsObject);
FromJsonUtilO(input["Entities"], Entities);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_DataAsObject; ToJsonUtilP(DataAsObject, each_DataAsObject); output["DataAsObject"] = each_DataAsObject;
Json::Value each_Entities; ToJsonUtilO(Entities, each_Entities); output["Entities"] = each_Entities;
return output;
}
};
struct GetEntityProfilesResponse : public PlayFabResultCommon
{
std::list<EntityProfileBody> Profiles;
GetEntityProfilesResponse() :
PlayFabResultCommon(),
Profiles()
{}
GetEntityProfilesResponse(const GetEntityProfilesResponse& src) :
PlayFabResultCommon(),
Profiles(src.Profiles)
{}
~GetEntityProfilesResponse() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Profiles"], Profiles);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Profiles; ToJsonUtilO(Profiles, each_Profiles); output["Profiles"] = each_Profiles;
return output;
}
};
struct GetGlobalPolicyRequest : public PlayFabRequestCommon
{
GetGlobalPolicyRequest() :
PlayFabRequestCommon()
{}
GetGlobalPolicyRequest(const GetGlobalPolicyRequest&) :
PlayFabRequestCommon()
{}
~GetGlobalPolicyRequest() = default;
void FromJson(Json::Value&) override
{
}
Json::Value ToJson() const override
{
Json::Value output;
return output;
}
};
struct GetGlobalPolicyResponse : public PlayFabResultCommon
{
std::list<EntityPermissionStatement> Permissions;
GetGlobalPolicyResponse() :
PlayFabResultCommon(),
Permissions()
{}
GetGlobalPolicyResponse(const GetGlobalPolicyResponse& src) :
PlayFabResultCommon(),
Permissions(src.Permissions)
{}
~GetGlobalPolicyResponse() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Permissions"], Permissions);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Permissions; ToJsonUtilO(Permissions, each_Permissions); output["Permissions"] = each_Permissions;
return output;
}
};
struct SetEntityProfilePolicyRequest : public PlayFabRequestCommon
{
EntityKey Entity;
std::list<EntityPermissionStatement> Statements;
SetEntityProfilePolicyRequest() :
PlayFabRequestCommon(),
Entity(),
Statements()
{}
SetEntityProfilePolicyRequest(const SetEntityProfilePolicyRequest& src) :
PlayFabRequestCommon(),
Entity(src.Entity),
Statements(src.Statements)
{}
~SetEntityProfilePolicyRequest() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Entity"], Entity);
FromJsonUtilO(input["Statements"], Statements);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Entity; ToJsonUtilO(Entity, each_Entity); output["Entity"] = each_Entity;
Json::Value each_Statements; ToJsonUtilO(Statements, each_Statements); output["Statements"] = each_Statements;
return output;
}
};
struct SetEntityProfilePolicyResponse : public PlayFabResultCommon
{
std::list<EntityPermissionStatement> Permissions;
SetEntityProfilePolicyResponse() :
PlayFabResultCommon(),
Permissions()
{}
SetEntityProfilePolicyResponse(const SetEntityProfilePolicyResponse& src) :
PlayFabResultCommon(),
Permissions(src.Permissions)
{}
~SetEntityProfilePolicyResponse() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Permissions"], Permissions);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Permissions; ToJsonUtilO(Permissions, each_Permissions); output["Permissions"] = each_Permissions;
return output;
}
};
struct SetGlobalPolicyRequest : public PlayFabRequestCommon
{
std::list<EntityPermissionStatement> Permissions;
SetGlobalPolicyRequest() :
PlayFabRequestCommon(),
Permissions()
{}
SetGlobalPolicyRequest(const SetGlobalPolicyRequest& src) :
PlayFabRequestCommon(),
Permissions(src.Permissions)
{}
~SetGlobalPolicyRequest() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Permissions"], Permissions);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Permissions; ToJsonUtilO(Permissions, each_Permissions); output["Permissions"] = each_Permissions;
return output;
}
};
struct SetGlobalPolicyResponse : public PlayFabResultCommon
{
SetGlobalPolicyResponse() :
PlayFabResultCommon()
{}
SetGlobalPolicyResponse(const SetGlobalPolicyResponse&) :
PlayFabResultCommon()
{}
~SetGlobalPolicyResponse() = default;
void FromJson(Json::Value&) override
{
}
Json::Value ToJson() const override
{
Json::Value output;
return output;
}
};
struct SetProfileLanguageRequest : public PlayFabRequestCommon
{
Boxed<EntityKey> Entity;
Int32 ExpectedVersion;
std::string Language;
SetProfileLanguageRequest() :
PlayFabRequestCommon(),
Entity(),
ExpectedVersion(),
Language()
{}
SetProfileLanguageRequest(const SetProfileLanguageRequest& src) :
PlayFabRequestCommon(),
Entity(src.Entity),
ExpectedVersion(src.ExpectedVersion),
Language(src.Language)
{}
~SetProfileLanguageRequest() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilO(input["Entity"], Entity);
FromJsonUtilP(input["ExpectedVersion"], ExpectedVersion);
FromJsonUtilS(input["Language"], Language);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_Entity; ToJsonUtilO(Entity, each_Entity); output["Entity"] = each_Entity;
Json::Value each_ExpectedVersion; ToJsonUtilP(ExpectedVersion, each_ExpectedVersion); output["ExpectedVersion"] = each_ExpectedVersion;
Json::Value each_Language; ToJsonUtilS(Language, each_Language); output["Language"] = each_Language;
return output;
}
};
struct SetProfileLanguageResponse : public PlayFabResultCommon
{
Boxed<OperationTypes> OperationResult;
Boxed<Int32> VersionNumber;
SetProfileLanguageResponse() :
PlayFabResultCommon(),
OperationResult(),
VersionNumber()
{}
SetProfileLanguageResponse(const SetProfileLanguageResponse& src) :
PlayFabResultCommon(),
OperationResult(src.OperationResult),
VersionNumber(src.VersionNumber)
{}
~SetProfileLanguageResponse() = default;
void FromJson(Json::Value& input) override
{
FromJsonUtilE(input["OperationResult"], OperationResult);
FromJsonUtilP(input["VersionNumber"], VersionNumber);
}
Json::Value ToJson() const override
{
Json::Value output;
Json::Value each_OperationResult; ToJsonUtilE(OperationResult, each_OperationResult); output["OperationResult"] = each_OperationResult;
Json::Value each_VersionNumber; ToJsonUtilP(VersionNumber, each_VersionNumber); output["VersionNumber"] = each_VersionNumber;
return output;
}
};
}
}
#endif
| [
"24260996+markseminatore@users.noreply.github.com"
] | 24260996+markseminatore@users.noreply.github.com |
ef9d0a6a129f08566abab42ea8b07ec1fc47d436 | 72f0fd9146da3da605292a24ab62359491eab862 | /Savvy/src/internal/SavvyParserHLSL.cpp | 2011543e206e25f658d7910dde938eb21a613f69 | [
"MIT"
] | permissive | kevinfyc/Savvy | f75a8f78e953cecd5bc4ea9440a900dc3e00abfc | a74df7c49f65c439ef975562fe12d25c5ab6b641 | refs/heads/master | 2020-05-31T00:10:27.009989 | 2015-05-16T19:55:43 | 2015-05-16T19:55:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,349 | cpp | #include "SavvyPCH.h"
#include "SavvyParserHLSL.h"
#include "SavvyDatabaseHLSL.h"
#include "SavvyConstructor.h"
#include "SavvyFuncConverter.h"
#define STATE_FUNC_MAP_INSERT(a, b) m_StateFuncMap.insert(std::make_pair(a, std::bind(&b, this, std::placeholders::_1)))
Savvy::Internal::ParserHLSL::ParserHLSL() : m_State(BASE), m_OldState(BASE), m_CurrVarType(GLOBAL_VAR), m_ScopeState(GLOBAL),
m_ConditionalDepth(0), m_AddedLocalVar(false)
{
// Bind state machine functions to appropriate tokens
STATE_FUNC_MAP_INSERT(SAVVY_EOF, Savvy::Internal::ParserHLSL::Parse_EOF);
STATE_FUNC_MAP_INSERT(SAVVY_IDENTIFIER, Savvy::Internal::ParserHLSL::Parse_ID);
STATE_FUNC_MAP_INSERT(SAVVY_INTEGER_VALUE, Savvy::Internal::ParserHLSL::Parse_IntValue);
STATE_FUNC_MAP_INSERT(SAVVY_FLOAT_VALUE, Savvy::Internal::ParserHLSL::Parse_FloatValue);
STATE_FUNC_MAP_INSERT(SAVVY_BOOL_VALUE, Savvy::Internal::ParserHLSL::Parse_BoolValue);
STATE_FUNC_MAP_INSERT(SAVVY_OPEN_BRACKET, Savvy::Internal::ParserHLSL::Parse_OpenBracket);
STATE_FUNC_MAP_INSERT(SAVVY_CLOSE_BRACKET, Savvy::Internal::ParserHLSL::Parse_CloseBracket);
STATE_FUNC_MAP_INSERT(SAVVY_OPEN_SQUARE_BRACKET, Savvy::Internal::ParserHLSL::Parse_OpenSquareBracket);
STATE_FUNC_MAP_INSERT(SAVVY_CLOSE_SQUARE_BRACKET, Savvy::Internal::ParserHLSL::Parse_CloseSquareBracket);
STATE_FUNC_MAP_INSERT(SAVVY_OPEN_BRACE, Savvy::Internal::ParserHLSL::Parse_OpenBrace);
STATE_FUNC_MAP_INSERT(SAVVY_CLOSE_BRACE, Savvy::Internal::ParserHLSL::Parse_CloseBrace);
STATE_FUNC_MAP_INSERT(SAVVY_DATA_TYPE, Savvy::Internal::ParserHLSL::Parse_DataType);
STATE_FUNC_MAP_INSERT(SAVVY_OPERATOR, Savvy::Internal::ParserHLSL::Parse_Operator);
STATE_FUNC_MAP_INSERT(SAVVY_INSTRUCTION_END, Savvy::Internal::ParserHLSL::Parse_InstructionEnd);
STATE_FUNC_MAP_INSERT(SAVVY_RETURN_KEYWORD, Savvy::Internal::ParserHLSL::Parse_Return);
STATE_FUNC_MAP_INSERT(SAVVY_IF_STATEMENT, Savvy::Internal::ParserHLSL::Parse_If);
STATE_FUNC_MAP_INSERT(SAVVY_ELSE_STATEMENT, Savvy::Internal::ParserHLSL::Parse_Else);
STATE_FUNC_MAP_INSERT(SAVVY_SWITCH_STATEMENT, Savvy::Internal::ParserHLSL::Parse_Switch);
STATE_FUNC_MAP_INSERT(SAVVY_CASE_STATEMENT, Savvy::Internal::ParserHLSL::Parse_Case);
STATE_FUNC_MAP_INSERT(SAVVY_BREAK_STATEMENT, Savvy::Internal::ParserHLSL::Parse_Break);
STATE_FUNC_MAP_INSERT(SAVVY_FOR_STATEMENT, Savvy::Internal::ParserHLSL::Parse_For);
STATE_FUNC_MAP_INSERT(SAVVY_DO_STATEMENT, Savvy::Internal::ParserHLSL::Parse_Do);
STATE_FUNC_MAP_INSERT(SAVVY_WHILE_STATEMENT, Savvy::Internal::ParserHLSL::Parse_While);
STATE_FUNC_MAP_INSERT(SAVVY_CONTINUE_STATEMENT, Savvy::Internal::ParserHLSL::Parse_Continue);
STATE_FUNC_MAP_INSERT(SAVVY_BUILT_IN_FUNCTION, Savvy::Internal::ParserHLSL::Parse_BuiltInFunc);
STATE_FUNC_MAP_INSERT(SAVVY_LANGUAGE_SPECIFIC_KEYWORD, Savvy::Internal::ParserHLSL::Parse_LangSpecific);
STATE_FUNC_MAP_INSERT(SAVVY_PREPROCESSOR, Savvy::Internal::ParserHLSL::Parse_Preprocessor);
STATE_FUNC_MAP_INSERT(SAVVY_NEW_LINE, Savvy::Internal::ParserHLSL::Parse_NewLine);
STATE_FUNC_MAP_INSERT(SAVVY_UNKNOWN_TOKEN, Savvy::Internal::ParserHLSL::Parse_Unknown);
}
Savvy::Internal::ParserHLSL::~ParserHLSL()
{
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::ParseToken(uint32 a_Token, std::string& a_TokenName)
{
m_LastError.clear();
ResultCode res = m_StateFuncMap.at(a_Token)(a_TokenName);
//Debug
#if SAVVY_DEBUG == 1
std::cout << a_TokenName << std::endl;
#endif
return res;
}
void Savvy::Internal::ParserHLSL::Reset()
{
m_State = BASE;
m_OldState = BASE;
m_ScopeState = GLOBAL;
m_CurrVarType = GLOBAL_VAR;
m_LastStateBeforeTemplateOpen = BASE;
m_LastDataType.Clear();
m_LastBufferName.Clear();
m_LastIdentifier.Clear();
m_LastFunctionName.Clear();
m_LastStructName.Clear();
m_LastIdentifierBeforeBracketOpen.Clear();
m_LastLanguageSpecificWord.Clear();
m_LastFuncVarList.clear();
m_LastSemantic.Clear();
m_LastTypeQualifierList.clear();
m_LastGlobalVarName.Clear();
m_EntryPoint.Clear();
m_ConditionalDepth = 0;
m_LastTemplateTypeList.clear();
m_AddedLocalVar = false;
}
void Savvy::Internal::ParserHLSL::AddLocalInstruction(Key& a_Instruction, bool a_Translate, Key& a_FuncName)
{
if (m_ScopeState != GLOBAL)
{
m_Database->AddLocalInstruction(a_Instruction, a_Translate, a_FuncName);
}
}
void Savvy::Internal::ParserHLSL::AddGlobalInstruction(Key& a_Instruction, bool a_Translate, Key& a_VarName)
{
if (m_CurrVarType == GLOBAL_VAR_INIT)
{
if (m_ScopeState == GLOBAL)
{
if (!m_LastTypeQualifierList.empty() && m_LastIdentifierBeforeBracketOpen.IsEmpty())
{
m_Database->AddLocalInstruction(a_Instruction, a_Translate, a_VarName);
}
}
}
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_EOF(std::string& a_TokenName)
{
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_ID(std::string& a_TokenName)
{
if (m_State == DATA_TYPE_DECLARATION || m_State == LANGUAGE_SPECIFIC_DECLARATION || m_State == BASE ||
m_State == IDENTIFIER_DECLARATION || m_State == IDENTIFIER_USE)
{
if (m_State == LANGUAGE_SPECIFIC_DECLARATION)
{
// Uniform buffer declaration - save the name
if (m_CurrVarType == UNIFORM_VAR || m_CurrVarType == TEXTURE_VAR || m_CurrVarType == GENERIC_BUFFER_VAR)
{
if (m_LastLanguageSpecificWord == "register")
{
if (m_CurrVarType == UNIFORM_VAR)
{
// A buffer index specifier
uint32 bidx = a_TokenName.find("b");
if (bidx == 0 && a_TokenName.size() < 4 && FuncConverter::isNumber(a_TokenName.substr(bidx + 1)))
{
uint32 currIdx = std::stoi(a_TokenName.substr(bidx + 1));
m_Database->AddUniformBuffer(m_LastBufferName, currIdx);
}
else
{
m_LastError = "Could not parse identifier " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
}
else if (m_CurrVarType == GENERIC_BUFFER_VAR)
{
// A buffer index specifier
uint32 bidx = 0;
if (bidx == 0 && FuncConverter::isNumber(a_TokenName.substr(bidx + 1)))
{
uint32 currIdx = std::stoi(a_TokenName.substr(bidx + 1));
m_Database->AddGenericBuffer(m_LastIdentifier, currIdx);
// Add the variable it will hold
ResultCode addRes = m_Database->AddGenericBufferVariable(m_LastIdentifier, m_LastTemplateTypeList, m_LastIdentifier);
if (addRes != SAVVY_OK)
{
m_LastError = "Could not parse identifier " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
}
else
{
m_LastError = "Could not parse identifier " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
}
else if (m_CurrVarType == TEXTURE_VAR)
{
// A buffer index specifier
uint32 bidx = a_TokenName.find("t");
if (bidx == 0 && a_TokenName.size() < 4 && FuncConverter::isNumber(a_TokenName.substr(bidx + 1)))
{
uint32 currIdx = std::stoi(a_TokenName.substr(bidx + 1));
if (!m_Database->SamplerExists(m_LastIdentifier))
{
m_Database->AddSampler(m_LastIdentifier, m_LastDataType, currIdx, m_LastTemplateTypeList);
}
m_CurrVarType = GLOBAL_VAR;
}
else if (m_ScopeState == GLOBAL && m_CurrVarType == GLOBAL_VAR_INIT)
{
Database::WordMultiMap& instructionMap = m_Database->GetInstructionMap();
Database::WordMultiMap::iterator it1 = instructionMap.upper_bound(m_LastIdentifier);
it1--;
if (it1->second.m_Name == ",")
instructionMap.erase(it1);
m_LastIdentifier = a_TokenName;
m_Database->AddGlobalVariable(m_LastIdentifier, m_LastTypeQualifierList);
m_State = IDENTIFIER_DECLARATION;
}
else
{
m_State = IDENTIFIER_USE;
}
}
}
else
{
m_LastBufferName = a_TokenName;
}
}
}
else if (m_State == DATA_TYPE_DECLARATION)
{
if (m_LastFunctionName.GetString() != "" && m_OldState != IN_PLACE_DECLARATION && !m_Database->FunctionExists(a_TokenName) &&
!m_Database->LocalVariableExists(m_LastFunctionName, a_TokenName))
{
// Check if it's a user defined data type
if (m_Database->StructExists(a_TokenName))
{
m_LastDataType = a_TokenName;
m_LastTypeQualifierList.push_back(a_TokenName);
}
ResultCode res;
res = m_Database->AddLocalVariable(Key(a_TokenName), m_LastTypeQualifierList, m_LastFunctionName, m_LastTemplateTypeList);
m_AddedLocalVar = true;
if (res != SAVVY_OK)
{
m_LastError = "Could not add local variable " + a_TokenName + " inside function " + m_LastFunctionName.GetString() + ". Local variable already exists.";
return res;
}
}
if (m_ScopeState == GLOBAL)
{
if (!m_LastIdentifierBeforeBracketOpen.IsEmpty() && !m_Database->StructExists(a_TokenName))
{
m_LastFuncVariable.m_Name = a_TokenName;
m_LastFuncVarList.push_back(m_LastFuncVariable);
}
}
}
// Check if it's a user defined data type
if (m_Database->StructExists(a_TokenName))
{
m_LastTypeQualifierList.push_back(a_TokenName);
if (m_LastIdentifierBeforeBracketOpen.GetString() != "")
{
m_LastFuncVariable.m_QualifierList = m_LastTypeQualifierList;
}
m_LastDataType = a_TokenName;
m_State = DATA_TYPE_DECLARATION;
}
else
{
if (m_CurrVarType != STRUCT_VAR_INIT && m_CurrVarType != UNIFORM_VAR_INIT)
m_LastIdentifier = a_TokenName;
else
{
if (m_CurrVarType == STRUCT_VAR_INIT)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastStructName + "." + m_LastIdentifier);
}
else if (m_CurrVarType == UNIFORM_VAR_INIT)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastBufferName + "." + m_LastIdentifier);
}
}
m_State = IDENTIFIER_DECLARATION;
}
}
else if (m_State == OPERATION)
{
// Handle adding local variables of the same type with a comma
Database::WordMultiMap& instructionMap = m_Database->GetInstructionMap();
Database::WordMultiMap::iterator it1 = instructionMap.upper_bound(m_LastFunctionName);
it1--;
if (it1->second.m_Name == "," && m_OldState != IN_PLACE_DECLARATION && !m_Database->FunctionExists(a_TokenName) &&
!m_Database->LocalVariableExists(m_LastFunctionName, a_TokenName))
{
if (m_AddedLocalVar)
{
ResultCode res;
res = m_Database->AddLocalVariable(Key(a_TokenName), m_LastTypeQualifierList, m_LastFunctionName, m_LastTemplateTypeList);
m_AddedLocalVar = true;
if (res != SAVVY_OK)
{
m_LastError = "Could not add local variable " + a_TokenName + " inside function " + m_LastFunctionName.GetString() + ". Local variable already exists.";
return res;
}
}
}
else
m_AddedLocalVar = false;
m_State = IDENTIFIER_USE;
}
else if (m_State == SEMANTIC_DECLARATION)
{
// Save it
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (m_State == BASE)
{
// Check if it's a user defined data type
if (m_Database->StructExists(a_TokenName))
{
m_LastDataType = a_TokenName;
m_LastTypeQualifierList.push_back(a_TokenName);
}
}
else if (m_State == TEMPLATE_DECLARATION)
{
m_LastTemplateTypeList.push_back(a_TokenName);
}
else
{
m_LastError = "Could not parse identifier " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_DataType(std::string& a_TokenName)
{
if (m_State == BASE || m_State == LANGUAGE_SPECIFIC_DECLARATION ||
m_State == OPERATION || m_State == DATA_TYPE_DECLARATION || m_State == IDENTIFIER_DECLARATION || m_State == IDENTIFIER_USE)
{
m_State = DATA_TYPE_DECLARATION;
m_LastDataType = a_TokenName;
m_LastTypeQualifierList.push_back(m_LastDataType);
if (m_LastDataType.Contains("Texture"))
{
m_CurrVarType = TEXTURE_VAR;
}
if (m_ScopeState == GLOBAL)
{
if (m_LastIdentifierBeforeBracketOpen.GetString() != "")
{
m_LastFuncVariable.m_QualifierList = m_LastTypeQualifierList;
}
}
}
else if (m_State == TEMPLATE_DECLARATION)
{
m_LastTemplateTypeList.push_back(a_TokenName);
}
else
{
m_LastError = "Could not parse data type " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
AddLocalInstruction(Key(a_TokenName), true, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), true, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Operator(std::string& a_TokenName)
{
if (m_State == OPERATION || m_State == IDENTIFIER_DECLARATION || m_State == VALUE_DECLARATION || m_State == LANGUAGE_SPECIFIC_DECLARATION
|| m_State == IDENTIFIER_USE || m_State == DATA_TYPE_DECLARATION || m_State == TEMPLATE_DECLARATION)
{
if (m_ScopeState != GLOBAL)
{
m_State = OPERATION;
}
else
{
if (a_TokenName == ":" && m_CurrVarType == STRUCT_VAR)
m_State = SEMANTIC_DECLARATION;
}
if (a_TokenName == "<")
{
if (m_State == DATA_TYPE_DECLARATION || m_State == LANGUAGE_SPECIFIC_DECLARATION)
{
m_LastStateBeforeTemplateOpen = m_State;
m_State = TEMPLATE_DECLARATION;
m_LastTemplateTypeList.clear();
}
}
else if (a_TokenName == ">")
{
if (!m_LastTemplateTypeList.empty())
{
m_State = m_LastStateBeforeTemplateOpen;
}
}
}
else if (m_State == BASE)
{
if (m_OldState == IN_PLACE_DECLARATION)
{
m_State = OPERATION;
m_OldState = BASE;
}
}
else
{
m_LastError = "Could not parse operator " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
if (m_ScopeState != GLOBAL && !m_AddedLocalVar)
{
m_LastTypeQualifierList.clear();
}
else
{
if (!m_LastIdentifierBeforeBracketOpen.IsEmpty())
{
m_LastTypeQualifierList.clear();
}
}
if (m_CurrVarType == GLOBAL_VAR || m_CurrVarType == GLOBAL_VAR_INIT)
{
if (m_ScopeState == GLOBAL)
{
if (!m_LastTypeQualifierList.empty() && m_LastIdentifierBeforeBracketOpen.IsEmpty())
{
m_Database->AddGlobalVariable(m_LastIdentifier, m_LastTypeQualifierList, m_LastTemplateTypeList);
m_LastGlobalVarName = m_LastIdentifier;
m_CurrVarType = GLOBAL_VAR_INIT;
}
}
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_IntValue(std::string& a_TokenName)
{
if (m_State != LANGUAGE_SPECIFIC_DECLARATION && m_State != BASE)
{
m_State = VALUE_DECLARATION;
}
if (m_CurrVarType == STRUCT_VAR_INIT)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastStructName + "." + m_LastIdentifier);
}
else if (m_CurrVarType == UNIFORM_VAR_INIT)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastBufferName + "." + m_LastIdentifier);
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_FloatValue(std::string& a_TokenName)
{
if (m_State != LANGUAGE_SPECIFIC_DECLARATION && m_State != BASE)
{
m_State = VALUE_DECLARATION;
}
// Float values should be saved without 'f'
if (a_TokenName.back() == 'f')
{
a_TokenName.erase(a_TokenName.size() - 1);
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_BoolValue(std::string& a_TokenName)
{
if (m_State != LANGUAGE_SPECIFIC_DECLARATION && m_State != BASE)
{
m_State = VALUE_DECLARATION;
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_BuiltInFunc(std::string& a_TokenName)
{
// Handle cases when a variable has the same name as a built in function
if (m_State == DATA_TYPE_DECLARATION && m_ScopeState != GLOBAL)
{
m_LastIdentifier = a_TokenName;
m_Database->AddLocalVariable(m_LastIdentifier, m_LastTypeQualifierList, m_LastFunctionName, m_LastTemplateTypeList);
m_State = IDENTIFIER_DECLARATION;
}
else if (m_State == OPERATION && m_ScopeState != GLOBAL)
{
// Handle adding local variables of the same type with a comma
Database::WordMultiMap& instructionMap = m_Database->GetInstructionMap();
Database::WordMultiMap::iterator it1 = instructionMap.upper_bound(m_LastFunctionName);
it1--;
if (it1->second.m_Name == "," && m_OldState != IN_PLACE_DECLARATION && !m_Database->FunctionExists(a_TokenName) &&
!m_Database->LocalVariableExists(m_LastFunctionName, a_TokenName))
{
if (m_AddedLocalVar)
{
ResultCode res;
res = m_Database->AddLocalVariable(Key(a_TokenName), m_LastTypeQualifierList, m_LastFunctionName, m_LastTemplateTypeList);
m_AddedLocalVar = true;
m_State = IDENTIFIER_DECLARATION;
if (res != SAVVY_OK)
{
m_LastError = "Could not add local variable " + a_TokenName + " inside function " + m_LastFunctionName.GetString() + ". Local variable already exists.";
return res;
}
}
}
}
AddLocalInstruction(Key(a_TokenName), true, m_LastFunctionName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_LangSpecific(std::string& a_TokenName)
{
if (m_State == BASE || m_State == LANGUAGE_SPECIFIC_DECLARATION ||
m_State == IDENTIFIER_DECLARATION || m_State == SEMANTIC_DECLARATION || m_State == OPERATION || m_State == DATA_TYPE_DECLARATION)
{
if (a_TokenName == "cbuffer")
{
m_CurrVarType = UNIFORM_VAR;
}
else if (a_TokenName == "Buffer")
{
m_CurrVarType = GENERIC_BUFFER_VAR;
}
else if (a_TokenName == "StructuredBuffer")
{
m_CurrVarType = GENERIC_BUFFER_VAR;
}
if (m_LastFunctionName.GetString() != "" && m_OldState != IN_PLACE_DECLARATION && !m_Database->FunctionExists(a_TokenName) &&
!m_Database->LocalVariableExists(m_LastFunctionName, a_TokenName))
{
// Check if it's a user defined data type
if (m_Database->StructExists(a_TokenName))
{
m_LastDataType = a_TokenName;
m_LastTypeQualifierList.push_back(a_TokenName);
}
ResultCode res;
res = m_Database->AddLocalVariable(Key(a_TokenName), m_LastTypeQualifierList, m_LastFunctionName, m_LastTemplateTypeList);
m_AddedLocalVar = true;
if (res != SAVVY_OK)
{
m_LastError = "Could not add local variable " + a_TokenName + " inside function " + m_LastFunctionName.GetString() + ". Local variable already exists.";
return res;
}
}
// Handle built-in variables
HandleBuiltInSemantic(Key(a_TokenName));
m_LastLanguageSpecificWord = a_TokenName;
m_State = LANGUAGE_SPECIFIC_DECLARATION;
}
else
{
m_LastError = "Could not parse language specific keyword " + a_TokenName + ". Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
AddLocalInstruction(Key(a_TokenName), true, m_LastFunctionName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_InstructionEnd(std::string& a_TokenName)
{
if (m_State == BASE || m_State == IDENTIFIER_DECLARATION || m_State == DATA_TYPE_DECLARATION ||
m_State == IDENTIFIER_USE || m_State == VALUE_DECLARATION || m_State == SEMANTIC_DECLARATION || m_State == OPERATION)
{
if (m_State == IDENTIFIER_DECLARATION || m_State == SEMANTIC_DECLARATION || m_State == VALUE_DECLARATION)
{
ResultCode addVarResult = SAVVY_OK;
switch (m_CurrVarType)
{
case GENERIC_BUFFER_VAR:
addVarResult = m_Database->AddGenericBufferVariable(m_LastIdentifier, m_LastTemplateTypeList, m_LastIdentifier);
m_CurrVarType = GLOBAL_VAR;
break;
case UNIFORM_VAR_INIT:
case UNIFORM_VAR:
addVarResult = m_Database->AddUniformVariable(m_LastIdentifier, m_LastTypeQualifierList, m_LastBufferName, m_LastTemplateTypeList);
m_ScopeState = GLOBAL;
m_CurrVarType = UNIFORM_VAR;
break;
case STRUCT_VAR_INIT:
case STRUCT_VAR:
if (m_ScopeState == GLOBAL)
{
addVarResult = m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, m_LastTypeQualifierList, m_LastTemplateTypeList);
}
m_CurrVarType = STRUCT_VAR;
break;
case TEXTURE_VAR:
if (m_ScopeState == GLOBAL)
{
if (!m_Database->SamplerExists(m_LastIdentifier))
{
addVarResult = m_Database->AddSampler(m_LastIdentifier, m_LastDataType, m_LastTemplateTypeList);
}
m_CurrVarType = GLOBAL_VAR;
}
break;
case GLOBAL_VAR:
{
// Global variable
if (m_ScopeState == GLOBAL)
{
if (!m_LastTypeQualifierList.empty())
{
addVarResult = m_Database->AddGlobalVariable(m_LastIdentifier, m_LastTypeQualifierList, m_LastTemplateTypeList);
}
m_CurrVarType = GLOBAL_VAR;
}
}
break;
default:
break;
}
if (addVarResult != SAVVY_OK)
{
m_LastError = "Could not add variable " + m_LastIdentifier.GetString() + " to database. Variable already exists";
return addVarResult;
}
}
m_State = BASE;
}
else if (m_State == LANGUAGE_SPECIFIC_DECLARATION)
{
}
else
{
m_LastError = "Could not parse semicolon. Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
m_LastTypeQualifierList.clear();
if (m_CurrVarType == GLOBAL_VAR_INIT)
{
m_CurrVarType = GLOBAL_VAR;
m_LastGlobalVarName.Clear();
}
m_AddedLocalVar = false;
m_LastTemplateTypeList.clear();
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_OpenBracket(std::string& a_TokenName)
{
if (m_State == DATA_TYPE_DECLARATION)
{
m_OldState = IN_PLACE_DECLARATION;
}
else if (m_State == IDENTIFIER_DECLARATION)
{
// Must be a function
m_LastIdentifierBeforeBracketOpen = m_LastIdentifier;
m_LastDataTypeBeforeBracketOpen = m_LastDataType;
m_State = BASE;
}
if (!m_LastIdentifierBeforeBracketOpen.IsEmpty())
{
m_LastTypeQualifierList.clear();
m_LastFuncVarList.clear();
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_CloseBracket(std::string& a_TokenName)
{
if (m_State == IDENTIFIER_DECLARATION || m_State == BASE)
{
if (m_ScopeState == GLOBAL)
{
// Function
if (!m_LastIdentifierBeforeBracketOpen.IsEmpty())
{
m_LastFunctionName = m_LastIdentifierBeforeBracketOpen;
if (m_Database->StructExists(m_LastDataTypeBeforeBracketOpen))
{
m_Database->AddFunction(m_LastFunctionName, m_LastDataTypeBeforeBracketOpen, m_LastFuncVarList, false);
}
else
{
m_Database->AddFunction(m_LastFunctionName, m_LastDataTypeBeforeBracketOpen, m_LastFuncVarList);
}
m_LastFuncVarList.clear();
m_LastIdentifierBeforeBracketOpen.Clear();
}
}
}
m_State = BASE;
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
m_LastTypeQualifierList.clear();
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_OpenBrace(std::string& a_TokenName)
{
m_State = BASE;
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
if (m_CurrVarType != GLOBAL_VAR_INIT)
{
m_LastTypeQualifierList.clear();
}
if (m_LastFunctionName.GetString() != "")
{
if (m_ScopeState == GLOBAL)
{
m_ConditionalDepth = 0;
m_ScopeState = IN_FUNCTION;
}
else
{
m_ConditionalDepth++;
m_ScopeState = CONDITIONAL;
}
}
else
{
if (m_LastDataType == "struct")
{
m_CurrVarType = STRUCT_VAR;
m_LastStructName = m_LastIdentifier;
m_Database->AddStruct(m_LastIdentifier);
}
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_CloseBrace(std::string& a_TokenName)
{
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
if (m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
m_ConditionalDepth--;
if (m_ConditionalDepth == 0)
{
m_ScopeState = IN_FUNCTION;
}
}
else
{
m_ScopeState = GLOBAL;
m_LastFunctionName.Clear();
m_LastBufferName.Clear();
m_LastStructName.Clear();
}
m_LastTypeQualifierList.clear();
if (m_ScopeState == GLOBAL)
m_CurrVarType = GLOBAL_VAR;
m_State = BASE;
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_OpenSquareBracket(std::string& a_TokenName)
{
if (m_CurrVarType == GLOBAL_VAR || m_CurrVarType == GLOBAL_VAR_INIT)
{
if (m_ScopeState == GLOBAL)
{
if (!m_LastTypeQualifierList.empty() && m_LastIdentifierBeforeBracketOpen.IsEmpty())
{
m_Database->AddGlobalVariable(m_LastIdentifier, m_LastTypeQualifierList);
m_LastGlobalVarName = m_LastIdentifier;
m_CurrVarType = GLOBAL_VAR_INIT;
}
}
}
else if (m_CurrVarType == STRUCT_VAR)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastStructName + "." + m_LastIdentifier);
m_CurrVarType = STRUCT_VAR_INIT;
}
else if (m_CurrVarType == UNIFORM_VAR)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastBufferName + "." + m_LastIdentifier);
m_CurrVarType = UNIFORM_VAR_INIT;
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_CloseSquareBracket(std::string& a_TokenName)
{
if (m_CurrVarType == STRUCT_VAR_INIT)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastStructName + "." + m_LastIdentifier);
}
else if (m_CurrVarType == UNIFORM_VAR_INIT)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastBufferName + "." + m_LastIdentifier);
}
AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
AddGlobalInstruction(Key(a_TokenName), false, m_LastGlobalVarName);
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_While(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Do(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Return(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_If(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Else(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_For(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Switch(std::string& a_TokenName)
{
if (m_ScopeState == IN_FUNCTION || m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Continue(std::string& a_TokenName)
{
if (m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
else
{
m_LastError = "Could not parse continue. Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Case(std::string& a_TokenName)
{
if (m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
else
{
m_LastError = "Could not parse case. Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Break(std::string& a_TokenName)
{
if (m_ScopeState == CONDITIONAL)
{
m_Database->AddLocalInstruction(Key(a_TokenName), false, m_LastFunctionName);
}
else
{
m_LastError = "Could not parse break. Possible syntax error.";
return SAVVY_SHADER_SYNTAX_ERROR;
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Unknown(std::string& a_TokenName)
{
m_LastError = "Could not parse token. Unrecognized token name.";
return SAVVY_UNRECOGNIZED_TOKEN;
}
void Savvy::Internal::ParserHLSL::HandleBuiltInSemantic(Key& a_TokenName)
{
if (a_TokenName == "SV_Position" || a_TokenName == "SV_POSITION")
{
Database::KeyList list;
list.push_back("float4");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName == "psize" || a_TokenName == "PSIZE")
{
Database::KeyList list;
list.push_back("float");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName == "SV_Target" || a_TokenName == "SV_TARGET")
{
Database::KeyList list;
list.push_back("float4");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName == "SV_Target" || a_TokenName == "SV_TARGET")
{
Database::KeyList list;
list.push_back("float4");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName == "SV_IsFrontFace" || a_TokenName == "SV_ISFONTFACE")
{
Database::KeyList list;
list.push_back("bool");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName == "SV_Depth" || a_TokenName == "SV_DEPTH")
{
Database::KeyList list;
list.push_back("float");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName.Contains("SV_CullDistance") || a_TokenName.Contains("SV_CULLDISTANCE"))
{
Database::KeyList list;
list.push_back("float");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
else if (a_TokenName.Contains("SV_ClipDistance") || a_TokenName.Contains("SV_CLIPDISTANCE"))
{
Database::KeyList list;
list.push_back("float");
m_Database->AddStructVariable(m_LastStructName, m_LastIdentifier, list);
m_LastSemantic = a_TokenName;
m_Database->AddSemantic(m_LastStructName, m_LastIdentifier, m_LastSemantic);
}
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_Preprocessor(std::string& a_TokenName)
{
AddLocalInstruction(Key(a_TokenName + "\n\t"), false, m_LastFunctionName);
Key tokenKey = a_TokenName;
if (tokenKey.Contains("define") || tokenKey.Contains("error"))
{
m_Database->AddDefine(tokenKey);
}
return SAVVY_OK;
}
Savvy::ResultCode Savvy::Internal::ParserHLSL::Parse_NewLine(std::string& a_TokenName)
{
return SAVVY_OK;
}
| [
"apostol_dadachev@yahoo.com"
] | apostol_dadachev@yahoo.com |
d8a2a198ed28c81538baf44710ef0dee8d63e9ed | 385cfbb27ee3bcc219ec2ac60fa22c2aa92ed8a0 | /ThirdParty/fbxsdk/2009.3/include/fbxfilesdk/kfbxplugins/kfbxobjectmetadata.h | 8665bb8805e73d790c36ca6357be48ebcfbf70a4 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | palestar/medusa | edbddf368979be774e99f74124b9c3bc7bebb2a8 | 7f8dc717425b5cac2315e304982993354f7cb27e | refs/heads/develop | 2023-05-09T19:12:42.957288 | 2023-05-05T12:43:35 | 2023-05-05T12:43:35 | 59,434,337 | 35 | 18 | MIT | 2018-01-21T01:34:01 | 2016-05-22T21:05:17 | C++ | WINDOWS-1252 | C++ | false | false | 4,029 | h | /*! \file kfbxobjectmetadata.h
*/
#ifndef FBXFILESDK_KFBXPLUGINS_KFBXOBJECTMETADATA_H
#define FBXFILESDK_KFBXPLUGINS_KFBXOBJECTMETADATA_H
/**************************************************************************************
Copyright © 2001 - 2008 Autodesk, Inc. and/or its licensors.
All Rights Reserved.
The coded instructions, statements, computer programs, and/or related material
(collectively the "Data") in these files contain unpublished information
proprietary to Autodesk, Inc. and/or its licensors, which is protected by
Canada and United States of America federal copyright law and by international
treaties.
The Data may not be disclosed or distributed to third parties, in whole or in
part, without the prior written consent of Autodesk, Inc. ("Autodesk").
THE DATA IS PROVIDED "AS IS" AND WITHOUT WARRANTY.
ALL WARRANTIES ARE EXPRESSLY EXCLUDED AND DISCLAIMED. AUTODESK MAKES NO
WARRANTY OF ANY KIND WITH RESPECT TO THE DATA, EXPRESS, IMPLIED OR ARISING
BY CUSTOM OR TRADE USAGE, AND DISCLAIMS ANY IMPLIED WARRANTIES OF TITLE,
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR USE.
WITHOUT LIMITING THE FOREGOING, AUTODESK DOES NOT WARRANT THAT THE OPERATION
OF THE DATA WILL BE UNINTERRUPTED OR ERROR FREE.
IN NO EVENT SHALL AUTODESK, ITS AFFILIATES, PARENT COMPANIES, LICENSORS
OR SUPPLIERS ("AUTODESK GROUP") BE LIABLE FOR ANY LOSSES, DAMAGES OR EXPENSES
OF ANY KIND (INCLUDING WITHOUT LIMITATION PUNITIVE OR MULTIPLE DAMAGES OR OTHER
SPECIAL, DIRECT, INDIRECT, EXEMPLARY, INCIDENTAL, LOSS OF PROFITS, REVENUE
OR DATA, COST OF COVER OR CONSEQUENTIAL LOSSES OR DAMAGES OF ANY KIND),
HOWEVER CAUSED, AND REGARDLESS OF THE THEORY OF LIABILITY, WHETHER DERIVED
FROM CONTRACT, TORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE), OR OTHERWISE,
ARISING OUT OF OR RELATING TO THE DATA OR ITS USE OR ANY OTHER PERFORMANCE,
WHETHER OR NOT AUTODESK HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS
OR DAMAGE.
**************************************************************************************/
#include <fbxfilesdk/components/kbaselib/kaydaradef_h.h>
#include <fbxfilesdk/components/kbaselib/kaydara.h>
#include <fbxfilesdk/kfbxplugins/kfbxobject.h>
#include <fbxfilesdk/kfbxplugins/kfbxgroupname.h>
#include <fbxfilesdk/components/kbaselib/klib/kstring.h>
#include <fbxfilesdk/components/kbaselib/klib/karrayul.h>
#include <fbxfilesdk/components/kbaselib/klib/kname.h>
#include <fbxfilesdk/kfbxmath/kfbxmatrix.h>
#include <fbxfilesdk/fbxfilesdk_nsbegin.h>
/** This class is used to hold meta-data information on nodes.
* \nosubgrouping
*
* This class does not offer any new functionality over a regular KFbxObject;
* all meta-data information should be stored in properties.
*
*/
class KFBX_DLL KFbxObjectMetaData : public KFbxObject
{
KFBXOBJECT_DECLARE(KFbxObjectMetaData,KFbxObject);
public:
///////////////////////////////////////////////////////////////////////////////
//
// WARNING!
//
// Anything beyond these lines may not be documented accurately and is
// subject to change without notice.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef DOXYGEN_SHOULD_SKIP_THIS
// Clone
virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
protected:
/** Create an object of type KFbxObjectMetaData.
* \param pManager (need to exist for extended validation).
* \param pName Name of this KFbxObjectMetaData.
*/
KFbxObjectMetaData(KFbxSdkManager& pManager, char const* pName);
/** Deletes this object.
*/
~KFbxObjectMetaData();
// From KFbxObject
virtual KString GetTypeName() const;
virtual KStringList GetTypeFlags() const;
//! Assignment operator.
KFbxObjectMetaData& operator=(KFbxObjectMetaData const& pMetaData);
#endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
};
typedef KFbxObjectMetaData* HKFbxObjectMetaData;
#include <fbxfilesdk/fbxfilesdk_nsend.h>
#endif // FBXFILESDK_KFBXPLUGINS_KFBXOBJECTMETADATA_H
| [
"rlyle@palestar.com"
] | rlyle@palestar.com |
8f3b3740b87f647444444978769899132251ef62 | f2832e9255d2600f0614dc8fbae3f34c217cf572 | /src/game/MenuMsg.h | 063bd3acd469ef046fe569d49840eceff76aee81 | [] | no_license | Gaikov/TetraTreasures | b3c075428a27aceb6e77ed8624fc075197787fce | 9c66ac7fa38fd0fd6848ac3ff2a33a99cfdae9d1 | refs/heads/master | 2020-03-12T00:02:24.602834 | 2018-04-20T09:16:51 | 2018-04-20T09:16:51 | 130,339,160 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 694 | h | // Copyright (c) 2003-2008, Gaikov Roman. All rights reserved.
//--------------------------------------------------------------------------------------------------
// file MenuMsg.h
// author Roman Gaikov
//--------------------------------------------------------------------------------------------------
#ifndef _MenuMsg_H_
#define _MenuMsg_H_
#include "common.h"
class nsMenuMsg : public nsMenuWnd
{
public:
nsMenuMsg( const char *id );
static void ShowMsg( const char *caption, const char *msg );
void SetCaption( const char *caption );
void SetMessage( const char *msg );
private:
virtual bool OnCtrlEvent( nsMenuControl *ctrl, const char *msg );
};
#endif //_MenuMsg_H_ | [
"grom.games@gmail.com"
] | grom.games@gmail.com |
32df6299e09fb31688b234f2ff41199c014b5300 | 17353cfd2c984f2b57ab09dce5b793f34b051f19 | /unsorted_include_todo/Game/KingChappy/StateAttack.h | bc9a1a413291382d8bda66eb66f93d1fef9d75ba | [] | no_license | mxygon/pikmin2 | 573df84b127b27f1c5db6be22680b63fd34565d5 | fa16b706d562d3f276406d8a87e01ad541515737 | refs/heads/main | 2023-09-02T06:56:56.216154 | 2021-11-12T09:34:26 | 2021-11-12T09:34:26 | 427,367,127 | 1 | 0 | null | 2021-11-12T13:19:54 | 2021-11-12T13:19:53 | null | UTF-8 | C++ | false | false | 1,134 | h | #ifndef _GAME_KINGCHAPPY_STATEATTACK_H
#define _GAME_KINGCHAPPY_STATEATTACK_H
namespace Game {
struct EnemyFSMState {
virtual void _00() = 0; // _00
virtual void _04() = 0; // _04
virtual void _08() = 0; // _08
virtual void resume(EnemyBase*); // _0C
virtual void restart(EnemyBase*); // _10
virtual void transit(EnemyBase*, int, StateArg*); // _14
virtual void doDirectDraw(EnemyBase*, Graphics&); // _18
// _00 VTBL
};
} // namespace Game
namespace Game {
namespace KingChappy {
struct StateAttack : public EnemyFSMState {
virtual void init(EnemyBase*, StateArg*); // _00
virtual void exec(EnemyBase*); // _04
virtual void cleanup(EnemyBase*); // _08
virtual void resume(EnemyBase*); // _0C
virtual void restart(EnemyBase*); // _10
virtual void transit(EnemyBase*, int, StateArg*); // _14
virtual void doDirectDraw(EnemyBase*, Graphics&); // _18
// _00 VTBL
};
} // namespace KingChappy
} // namespace Game
#endif
| [
"84647527+intns@users.noreply.github.com"
] | 84647527+intns@users.noreply.github.com |
34b767ec1cb9406765728181cc9c7e3165725898 | 2e82aa7b84db88d71a1b3d69d80c6886d74ce04c | /cplusplus/p611.cpp | db46f694087b40ed350d1ad265ef0e7915f7f2ef | [] | no_license | hogansung/leetcode | 6fff666483786c2eae666c752eed276700ab0404 | a466fd06d39ffdad5d19e847107e36f301549e0f | refs/heads/master | 2023-06-19T10:55:15.174253 | 2023-05-30T16:31:50 | 2023-05-30T16:31:50 | 95,144,771 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | cpp | class Solution {
public:
int triangleNumber(vector<int>& nums) {
int n = nums.size();
sort(nums.begin(), nums.end());
int sum = 0;
for (int i = 0; i < n; i++) {
for (int j = i+1; j < n; j++) {
int k = lower_bound(nums.begin() + j+1, nums.end(), nums[i]+nums[j]) - nums.begin() - 1;
sum += k - j;
}
}
return sum;
}
};
| [
"wrangle1005@gmail.com"
] | wrangle1005@gmail.com |
d3fb1d5bd6f9dfac6d6413bb6dc4f9ade71f7c15 | b34e0a22a360b064b02eff3f43bbf13d57679af4 | /src/common/admin_socket.cc | 0e3d232256e25fa0804a4e4bdf0e7b1424b90ea1 | [] | no_license | houwentaoff/rgw | 02eb939111c089f264a0511b12ee7b0a83ef4664 | 2051227e9522f4689f7f8ef75193a275af5732f0 | refs/heads/master | 2021-01-10T10:07:50.809360 | 2016-03-04T15:42:29 | 2016-03-04T15:42:29 | 47,395,967 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16,155 | cc | // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2011 New Dream Network
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#include "include/int_types.h"
#include "common/Thread.h"
#include "common/admin_socket.h"
#include "common/admin_socket_client.h"
#include "common/config.h"
#include "common/cmdparse.h"
#include "common/dout.h"
#include "common/errno.h"
#include "common/perf_counters.h"
#include "common/pipe.h"
#include "common/safe_io.h"
#include "common/version.h"
#include "common/Formatter.h"
#include <errno.h>
#include <fcntl.h>
#include <map>
#include <poll.h>
#include <set>
#include <sstream>
#include <stdint.h>
#include <string.h>
#include <string>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <unistd.h>
#include "include/compat.h"
#define dout_subsys ceph_subsys_asok
#undef dout_prefix
#define dout_prefix *_dout << "asok(" << (void*)m_cct << ") "
using std::ostringstream;
/*
* UNIX domain sockets created by an application persist even after that
* application closes, unless they're explicitly unlinked. This is because the
* directory containing the socket keeps a reference to the socket.
*
* This code makes things a little nicer by unlinking those dead sockets when
* the application exits normally.
*/
static pthread_mutex_t cleanup_lock = PTHREAD_MUTEX_INITIALIZER;
static std::vector <const char*> cleanup_files;
static bool cleanup_atexit = false;
static void remove_cleanup_file(const char *file)
{
pthread_mutex_lock(&cleanup_lock);
VOID_TEMP_FAILURE_RETRY(unlink(file));
for (std::vector <const char*>::iterator i = cleanup_files.begin();
i != cleanup_files.end(); ++i) {
if (strcmp(file, *i) == 0) {
free((void*)*i);
cleanup_files.erase(i);
break;
}
}
pthread_mutex_unlock(&cleanup_lock);
}
static void remove_all_cleanup_files()
{
pthread_mutex_lock(&cleanup_lock);
for (std::vector <const char*>::iterator i = cleanup_files.begin();
i != cleanup_files.end(); ++i) {
VOID_TEMP_FAILURE_RETRY(unlink(*i));
free((void*)*i);
}
cleanup_files.clear();
pthread_mutex_unlock(&cleanup_lock);
}
static void add_cleanup_file(const char *file)
{
char *fname = strdup(file);
if (!fname)
return;
pthread_mutex_lock(&cleanup_lock);
cleanup_files.push_back(fname);
if (!cleanup_atexit) {
atexit(remove_all_cleanup_files);
cleanup_atexit = true;
}
pthread_mutex_unlock(&cleanup_lock);
}
AdminSocket::AdminSocket(CephContext *cct)
: m_cct(cct),
m_sock_fd(-1),
m_shutdown_rd_fd(-1),
m_shutdown_wr_fd(-1),
m_lock("AdminSocket::m_lock"),
m_version_hook(NULL),
m_help_hook(NULL),
m_getdescs_hook(NULL)
{
}
AdminSocket::~AdminSocket()
{
shutdown();
}
/*
* This thread listens on the UNIX domain socket for incoming connections.
* It only handles one connection at a time at the moment. All I/O is nonblocking,
* so that we can implement sensible timeouts. [TODO: make all I/O nonblocking]
*
* This thread also listens to m_shutdown_rd_fd. If there is any data sent to this
* pipe, the thread terminates itself gracefully, allowing the
* AdminSocketConfigObs class to join() it.
*/
#define PFL_SUCCESS ((void*)(intptr_t)0)
#define PFL_FAIL ((void*)(intptr_t)1)
std::string AdminSocket::create_shutdown_pipe(int *pipe_rd, int *pipe_wr)
{
#if 0
int pipefd[2];
int ret = pipe_cloexec(pipefd);
if (ret < 0) {
ostringstream oss;
oss << "AdminSocket::create_shutdown_pipe error: " << cpp_strerror(ret);
return oss.str();
}
*pipe_rd = pipefd[0];
*pipe_wr = pipefd[1];
#endif
return "";
}
std::string AdminSocket::destroy_shutdown_pipe()
{
#if 0
// Send a byte to the shutdown pipe that the thread is listening to
char buf[1] = { 0x0 };
int ret = safe_write(m_shutdown_wr_fd, buf, sizeof(buf));
// Close write end
VOID_TEMP_FAILURE_RETRY(close(m_shutdown_wr_fd));
m_shutdown_wr_fd = -1;
if (ret != 0) {
ostringstream oss;
oss << "AdminSocket::destroy_shutdown_pipe error: failed to write"
"to thread shutdown pipe: error " << ret;
return oss.str();
}
join();
// Close read end. Doing this before join() blocks the listenter and prevents
// joining.
VOID_TEMP_FAILURE_RETRY(close(m_shutdown_rd_fd));
m_shutdown_rd_fd = -1;
#endif
return "";
}
std::string AdminSocket::bind_and_listen(const std::string &sock_path, int *fd)
{
#if 0
ldout(m_cct, 5) << "bind_and_listen " << sock_path << dendl;
struct sockaddr_un address;
if (sock_path.size() > sizeof(address.sun_path) - 1) {
ostringstream oss;
oss << "AdminSocket::bind_and_listen: "
<< "The UNIX domain socket path " << sock_path << " is too long! The "
<< "maximum length on this system is "
<< (sizeof(address.sun_path) - 1);
return oss.str();
}
int sock_fd = socket(PF_UNIX, SOCK_STREAM, 0);
if (sock_fd < 0) {
int err = errno;
ostringstream oss;
oss << "AdminSocket::bind_and_listen: "
<< "failed to create socket: " << cpp_strerror(err);
return oss.str();
}
int r = fcntl(sock_fd, F_SETFD, FD_CLOEXEC);
if (r < 0) {
r = errno;
VOID_TEMP_FAILURE_RETRY(::close(sock_fd));
ostringstream oss;
oss << "AdminSocket::bind_and_listen: failed to fcntl on socket: " << cpp_strerror(r);
return oss.str();
}
memset(&address, 0, sizeof(struct sockaddr_un));
address.sun_family = AF_UNIX;
snprintf(address.sun_path, sizeof(address.sun_path),
"%s", sock_path.c_str());
if (::bind(sock_fd, (struct sockaddr*)&address,
sizeof(struct sockaddr_un)) != 0) {
int err = errno;
if (err == EADDRINUSE) {
AdminSocketClient client(sock_path);
bool ok;
client.ping(&ok);
if (ok) {
ldout(m_cct, 20) << "socket " << sock_path << " is in use" << dendl;
err = EEXIST;
} else {
ldout(m_cct, 20) << "unlink stale file " << sock_path << dendl;
VOID_TEMP_FAILURE_RETRY(unlink(sock_path.c_str()));
if (::bind(sock_fd, (struct sockaddr*)&address,
sizeof(struct sockaddr_un)) == 0) {
err = 0;
} else {
err = errno;
}
}
}
if (err != 0) {
ostringstream oss;
oss << "AdminSocket::bind_and_listen: "
<< "failed to bind the UNIX domain socket to '" << sock_path
<< "': " << cpp_strerror(err);
close(sock_fd);
return oss.str();
}
}
if (listen(sock_fd, 5) != 0) {
int err = errno;
ostringstream oss;
oss << "AdminSocket::bind_and_listen: "
<< "failed to listen to socket: " << cpp_strerror(err);
close(sock_fd);
VOID_TEMP_FAILURE_RETRY(unlink(sock_path.c_str()));
return oss.str();
}
*fd = sock_fd;
#endif
return "";
}
void* AdminSocket::entry()
{
#if 0
ldout(m_cct, 5) << "entry start" << dendl;
while (true) {
struct pollfd fds[2];
memset(fds, 0, sizeof(fds));
fds[0].fd = m_sock_fd;
fds[0].events = POLLIN | POLLRDBAND;
fds[1].fd = m_shutdown_rd_fd;
fds[1].events = POLLIN | POLLRDBAND;
int ret = poll(fds, 2, -1);
if (ret < 0) {
int err = errno;
if (err == EINTR) {
continue;
}
lderr(m_cct) << "AdminSocket: poll(2) error: '"
<< cpp_strerror(err) << dendl;
return PFL_FAIL;
}
if (fds[0].revents & POLLIN) {
// Send out some data
do_accept();
}
if (fds[1].revents & POLLIN) {
// Parent wants us to shut down
return PFL_SUCCESS;
}
}
ldout(m_cct, 5) << "entry exit" << dendl;
#endif
}
bool AdminSocket::do_accept()
{
#if 0
struct sockaddr_un address;
socklen_t address_length = sizeof(address);
ldout(m_cct, 30) << "AdminSocket: calling accept" << dendl;
int connection_fd = accept(m_sock_fd, (struct sockaddr*) &address,
&address_length);
ldout(m_cct, 30) << "AdminSocket: finished accept" << dendl;
if (connection_fd < 0) {
int err = errno;
lderr(m_cct) << "AdminSocket: do_accept error: '"
<< cpp_strerror(err) << dendl;
return false;
}
char cmd[1024];
int pos = 0;
string c;
while (1) {
int ret = safe_read(connection_fd, &cmd[pos], 1);
if (ret <= 0) {
lderr(m_cct) << "AdminSocket: error reading request code: "
<< cpp_strerror(ret) << dendl;
close(connection_fd);
return false;
}
//ldout(m_cct, 0) << "AdminSocket read byte " << (int)cmd[pos] << " pos " << pos << dendl;
if (cmd[0] == '\0') {
// old protocol: __be32
if (pos == 3 && cmd[0] == '\0') {
switch (cmd[3]) {
case 0:
c = "0";
break;
case 1:
c = "perfcounters_dump";
break;
case 2:
c = "perfcounters_schema";
break;
default:
c = "foo";
break;
}
break;
}
} else {
// new protocol: null or \n terminated string
if (cmd[pos] == '\n' || cmd[pos] == '\0') {
cmd[pos] = '\0';
c = cmd;
break;
}
}
pos++;
}
bool rval = false;
map<string, cmd_vartype> cmdmap;
string format;
vector<string> cmdvec;
stringstream errss;
cmdvec.push_back(cmd);
if (!cmdmap_from_json(cmdvec, &cmdmap, errss)) {
ldout(m_cct, 0) << "AdminSocket: " << errss.rdbuf() << dendl;
return false;
}
cmd_getval(m_cct, cmdmap, "format", format);
if (format != "json" && format != "json-pretty" &&
format != "xml" && format != "xml-pretty")
format = "json-pretty";
cmd_getval(m_cct, cmdmap, "prefix", c);
m_lock.Lock();
map<string,AdminSocketHook*>::iterator p;
string match = c;
while (match.size()) {
p = m_hooks.find(match);
if (p != m_hooks.end())
break;
// drop right-most word
size_t pos = match.rfind(' ');
if (pos == std::string::npos) {
match.clear(); // we fail
break;
} else {
match.resize(pos);
}
}
bufferlist out;
if (p == m_hooks.end()) {
lderr(m_cct) << "AdminSocket: request '" << c << "' not defined" << dendl;
} else {
string args;
if (match != c)
args = c.substr(match.length() + 1);
bool success = p->second->call(match, cmdmap, format, out);
if (!success) {
ldout(m_cct, 0) << "AdminSocket: request '" << match << "' args '" << args
<< "' to " << p->second << " failed" << dendl;
out.append("failed");
} else {
ldout(m_cct, 5) << "AdminSocket: request '" << match << "' '" << args
<< "' to " << p->second
<< " returned " << out.length() << " bytes" << dendl;
}
uint32_t len = htonl(out.length());
int ret = safe_write(connection_fd, &len, sizeof(len));
if (ret < 0) {
lderr(m_cct) << "AdminSocket: error writing response length "
<< cpp_strerror(ret) << dendl;
} else {
if (out.write_fd(connection_fd) >= 0)
rval = true;
}
}
m_lock.Unlock();
VOID_TEMP_FAILURE_RETRY(close(connection_fd));
return rval;
#endif
return true;
}
int AdminSocket::register_command(std::string command, std::string cmddesc, AdminSocketHook *hook, std::string help)
{
#if 0
int ret;
m_lock.Lock();
if (m_hooks.count(command)) {
ldout(m_cct, 5) << "register_command " << command << " hook " << hook << " EEXIST" << dendl;
ret = -EEXIST;
} else {
ldout(m_cct, 5) << "register_command " << command << " hook " << hook << dendl;
m_hooks[command] = hook;
m_descs[command] = cmddesc;
m_help[command] = help;
ret = 0;
}
m_lock.Unlock();
return ret;
#endif
return 0;
}
int AdminSocket::unregister_command(std::string command)
{
#if 0
int ret;
m_lock.Lock();
if (m_hooks.count(command)) {
ldout(m_cct, 5) << "unregister_command " << command << dendl;
m_hooks.erase(command);
m_descs.erase(command);
m_help.erase(command);
ret = 0;
} else {
ldout(m_cct, 5) << "unregister_command " << command << " ENOENT" << dendl;
ret = -ENOENT;
}
m_lock.Unlock();
return ret;
#endif
return 0;
}
class VersionHook : public AdminSocketHook {
public:
virtual bool call(std::string command, cmdmap_t &cmdmap, std::string format,
bufferlist& out) {
if (command == "0") {
out.append(CEPH_ADMIN_SOCK_VERSION);
} else {
JSONFormatter jf;
jf.open_object_section("version");
if (command == "version")
jf.dump_string("version", ceph_version_to_str());
else if (command == "git_version")
jf.dump_string("git_version", git_version_to_str());
ostringstream ss;
jf.close_section();
jf.flush(ss);
out.append(ss.str());
}
return true;
}
};
class HelpHook : public AdminSocketHook {
AdminSocket *m_as;
public:
HelpHook(AdminSocket *as) : m_as(as) {}
bool call(string command, cmdmap_t &cmdmap, string format, bufferlist& out) {
Formatter *f = Formatter::create(format, "json-pretty", "json-pretty");
f->open_object_section("help");
for (map<string,string>::iterator p = m_as->m_help.begin();
p != m_as->m_help.end();
++p) {
if (p->second.length())
f->dump_string(p->first.c_str(), p->second);
}
f->close_section();
ostringstream ss;
f->flush(ss);
out.append(ss.str());
delete f;
return true;
}
};
class GetdescsHook : public AdminSocketHook {
AdminSocket *m_as;
public:
GetdescsHook(AdminSocket *as) : m_as(as) {}
bool call(string command, cmdmap_t &cmdmap, string format, bufferlist& out) {
int cmdnum = 0;
JSONFormatter jf(false);
jf.open_object_section("command_descriptions");
for (map<string,string>::iterator p = m_as->m_descs.begin();
p != m_as->m_descs.end();
++p) {
ostringstream secname;
secname << "cmd" << setfill('0') << std::setw(3) << cmdnum;
dump_cmd_and_help_to_json(&jf,
secname.str().c_str(),
p->second.c_str(),
m_as->m_help[p->first]);
cmdnum++;
}
jf.close_section(); // command_descriptions
ostringstream ss;
jf.flush(ss);
out.append(ss.str());
return true;
}
};
bool AdminSocket::init(const std::string &path)
{
// ldout(m_cct, 5) << "init " << path << dendl;
/* Set up things for the new thread */
std::string err;
int pipe_rd = -1, pipe_wr = -1;
err = create_shutdown_pipe(&pipe_rd, &pipe_wr);
if (!err.empty()) {
// lderr(m_cct) << "AdminSocketConfigObs::init: error: " << err << dendl;
return false;
}
int sock_fd;
err = bind_and_listen(path, &sock_fd);
if (!err.empty()) {
// lderr(m_cct) << "AdminSocketConfigObs::init: failed: " << err << dendl;
close(pipe_rd);
close(pipe_wr);
return false;
}
/* Create new thread */
m_sock_fd = sock_fd;
m_shutdown_rd_fd = pipe_rd;
m_shutdown_wr_fd = pipe_wr;
m_path = path;
m_version_hook = new VersionHook;
register_command("0", "0", m_version_hook, "");
register_command("version", "version", m_version_hook, "get ceph version");
register_command("git_version", "git_version", m_version_hook, "get git sha1");
m_help_hook = new HelpHook(this);
register_command("help", "help", m_help_hook, "list available commands");
m_getdescs_hook = new GetdescsHook(this);
register_command("get_command_descriptions", "get_command_descriptions",
m_getdescs_hook, "list available commands");
create();
add_cleanup_file(m_path.c_str());
return true;
}
void AdminSocket::shutdown()
{
std::string err;
// Under normal operation this is unlikely to occur. However for some unit
// tests, some object members are not initialized and so cannot be deleted
// without fault.
if (m_shutdown_wr_fd < 0)
return;
// ldout(m_cct, 5) << "shutdown" << dendl;
err = destroy_shutdown_pipe();
if (!err.empty()) {
// lderr(m_cct) << "AdminSocket::shutdown: error: " << err << dendl;
}
VOID_TEMP_FAILURE_RETRY(close(m_sock_fd));
unregister_command("version");
unregister_command("git_version");
unregister_command("0");
delete m_version_hook;
unregister_command("help");
delete m_help_hook;
unregister_command("get_command_descriptions");
delete m_getdescs_hook;
remove_cleanup_file(m_path.c_str());
m_path.clear();
}
| [
"houwentaoff@gmail.com"
] | houwentaoff@gmail.com |
b5fd91f6baed16d291ceacb5d45fda37f96a55fe | beb24229f231fc02191127a3fe826cc2cf5779f0 | /4AL18IS002__AbhimanH.R/pradeepsir_coding_challenge/challenge_3.cpp | 96112b3cb5f6810e4f62ac44bade773141de6c65 | [] | no_license | alvas-education-foundation/ISE_2nd_Year_Coding_challenge | 9c04580bcb5d969d19ff771141a99f419f3bd39c | aec7d825fe4ab65f6930a50dd0bf038505e7eef7 | refs/heads/master | 2022-11-21T23:34:29.224115 | 2020-07-21T19:28:19 | 2020-07-21T19:28:19 | 265,195,341 | 7 | 1 | null | 2020-05-20T12:53:04 | 2020-05-19T08:52:27 | R | UTF-8 | C++ | false | false | 4,192 | cpp | //1.Write a C++ Program to print right angled pyramid of numbers.
#include <iostream>
using namespace std;
int main()
{
int i, space, rows, k=1;
cout<<"Enter the number of rows: ";
cin>>rows;
for(i=1; i<=rows; i++)
{
for(space=i; space<rows; space++)
{
cout<<"\t";
}
for(j=1; j<=i; j++)
{
cout<<k<<"\t";
k++;
}
cout<<"\n";
}
return 0;
}
//2.Write a C++ Program to Multiply Two Matrix Using Multi-dimensional Arrays
#include<iostream>
using namespace std;
int main()
{
int product[10][10], r1=2, c1=3, r2=3, c2=3, i, j, k;
int a[2][3] = { {2, 4, 1} , {2, 3, 9} };
int b[3][3] = { {1, 2, 3} , {3, 6, 1} , {2, 9, 7} };
if (c1 != r2)
{
cout<<"Column of first matrix should be equal to row of second matrix";
} else
{
cout<<"The first matrix is:"<<endl;
for(i=0; i<r1; ++i)
{
for(j=0; j<c1; ++j)
cout<<a[i][j]<<" ";
cout<<endl;
}
cout<<endl;
cout<<"The second matrix is:"<<endl;
for(i=0; i<r2; ++i)
{
for(j=0; j<c2; ++j)
cout<<b[i][j]<<" ";
cout<<endl;
}
cout<<endl;
for(i=0; i<r1; ++i)
for(j=0; j<c2; ++j)
{
product[i][j] = 0;
}
for(i=0; i<r1; ++i)
for(j=0; j<c2; ++j)
for(k=0; k<c1; ++k)
{
product[i][j]+=a[i][k]*b[k][j];
}
cout<<"Product of the two matrices is:"<<endl;
for(i=0; i<r1; ++i)
{
for(j=0; j<c2; ++j)
cout<<product[i][j]<<" ";
cout<<endl;
}
}
return 0;
}
//3.Write A C++ Program To Implement Queue Operations Using Switch Statement.
#include <iostream>
using namespace std;
int queue[100], n = 100, front = - 1, rear = - 1;
void Insert() {
int val;
if (rear == n - 1)
cout<<"Queue Overflow"<<endl;
else {
if (front == - 1)
front = 0;
cout<<"Insert the element in queue : "<<endl;
cin>>val;
rear++;
queue[rear] = val;
}
}
void Delete() {
if (front == - 1 || front > rear) {
cout<<"Queue Underflow ";
return ;
} else {
cout<<"Element deleted from queue is : "<< queue[front] <<endl;
front++;;
}
}
void Display() {
if (front == - 1)
cout<<"Queue is empty"<<endl;
else {
cout<<"Queue elements are : ";
for (int i = front; i <= rear; i++)
cout<<queue[i]<<" ";
cout<<endl;
}
}
int main() {
int ch;
cout<<"1) Insert element to queue"<<endl;
cout<<"2) Delete element from queue"<<endl;
cout<<"3) Display all the elements of queue"<<endl;
cout<<"4) Exit"<<endl;
do {
cout<<"Enter your choice : "<<endl;
cin<<ch;
switch (ch) {
case 1: Insert();
break;
case 2: Delete();
break;
case 3: Display();
break;
case 4: cout<<"Exit"<<endl;
break;
default: cout<<"Invalid choice"<<endl;
}
} while(ch!=4);
return 0;
}
//4.Write A C++ Program For Selection Sort
#include <iostream>
using namespace std;
void SelectionSort (int arr[], int n)
{
int i, j;
for (i = 0; i < n; ++i)
{
for (j = i+1; j < n; ++j)
{
if (arr[i] > arr[j])
{
arr[i] = arr[i]+arr[j];
arr[j] = arr[i]-arr[j];
arr[i] = arr[i]-arr[j];
}
}
}
}
int main()
{
int n, i;
cout<<"\nEnter the number of data element to be sorted: ";
cin>>n;
int arr[n];
for(i = 0; i < n; i++)
{
cout<<"Enter element "<<i+1<<": ";
cin>>arr[i];
}
SelectionSort(arr, n);
cout<<"\nSorted Data ";
for (i = 0; i < n; i++)
cout<<"->"<<arr[i];
return 0;
}
//5.C++ Program to Find All Roots of a Quadratic Equation
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float a, b, c, x1, x2, discriminant, realPart, imaginaryPart;
cout << "Enter coefficients a, b and c: ";
cin >> a >> b >> c;
discriminant = b*b - 4*a*c;
if (discriminant > 0)
{
x1 = (-b + sqrt(discriminant)) / (2*a);
x2 = (-b - sqrt(discriminant)) / (2*a);
cout << "Roots are real and different." << endl;
cout << "x1 = " << x1 << endl;
cout << "x2 = " << x2 << endl;
}
else if (discriminant == 0)
{
cout << "Roots are real and same." << endl;
x1 = (-b + sqrt(discriminant)) / (2*a);
cout << "x1 = x2 =" << x1 << endl;
}
else
{
realPart = -b/(2*a);
imaginaryPart =sqrt(-discriminant)/(2*a);
cout << "Roots are complex and different." << endl;
cout << "x1 = " << realPart << "+" << imaginaryPart << "i" << endl;
cout << "x2 = " << realPart << "-" << imaginaryPart << "i" << endl;
}
return 0;
}
| [
"abhi656.aa@gmail.com"
] | abhi656.aa@gmail.com |
58663a129c872e89b73da2dd16177abe750d7cb5 | 8333f370a5c7869013ff02a00a1e3ecf5989be73 | /CalendarCalculator/stdafx.cpp | 5f2529cf8face31f6259e792dd60b46456de83f7 | [] | no_license | EdwardSeley/CalendarCalculator | 03c52165d6629385fe23b59cedb0360db8ceed2b | 2a0e2ab16b9c48dbbc29c250925713a85a5c0ab2 | refs/heads/master | 2020-05-26T01:48:30.687911 | 2017-03-14T18:27:43 | 2017-03-14T18:27:43 | 84,983,847 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 297 | cpp | // stdafx.cpp : source file that includes just the standard includes
// CalendarCalculator.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"edwardseley@gmail.com"
] | edwardseley@gmail.com |
9f660012b6b6e0be5a6743d6b9dcf270be521dc8 | 56bfb8131938127e3609e5402b171d5455a7050b | /Games101/Homework1/src/main.cpp | 733a279a64f3ffa3b603a701a492f2fca9efefec | [] | no_license | qjh5606/Games101-Study | 9884b95f41239b31f25cc372bf4f503838fa1462 | 1cae881f5e8595079cc3e71073d111bc9bc9fea5 | refs/heads/master | 2023-03-22T08:52:36.449465 | 2021-03-14T12:33:20 | 2021-03-14T12:33:20 | 345,900,957 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,806 | cpp | #include "Triangle.hpp"
#include "rasterizer.hpp"
#include <eigen3/Eigen/Eigen>
#include <iostream>
#include <opencv2/opencv.hpp>
constexpr double MY_PI = 3.1415926;
// ½Ç¶Èת»¡¶È
inline float ToRadians(float fDegrees) { return fDegrees * (MY_PI / 180.0f); }
Eigen::Matrix4f get_view_matrix(Eigen::Vector3f eye_pos)
{
Eigen::Matrix4f view = Eigen::Matrix4f::Identity();
Eigen::Matrix4f translate;
translate << 1, 0, 0, -eye_pos[0], 0, 1, 0, -eye_pos[1], 0, 0, 1,
-eye_pos[2], 0, 0, 0, 1;
view = translate * view;
return view;
}
Eigen::Matrix4f get_model_matrix(float rotation_angle)
{
Eigen::Matrix4f model = Eigen::Matrix4f::Identity();
// TODO: Implement this function
// Create the model matrix for rotating the triangle around the Z axis.
// Then return it.
float rotation_radian = ToRadians(rotation_angle);
Eigen::AngleAxisf v(rotation_radian, Eigen::Vector3f(0, 0, 1));
Eigen::Matrix3f rotationMat = v.matrix();
model.block(0, 0, 3, 3) = rotationMat;
return model;
}
Eigen::Matrix4f get_projection_matrix(float eye_fov, float aspect_ratio,
float zNear, float zFar)
{
// Students will implement this function
Eigen::Matrix4f projection = Eigen::Matrix4f::Identity();
// TODO: Implement this function
// Create the projection matrix for the given parameters.
// Then return it.
// https://zhuanlan.zhihu.com/p/122411512
float radians = ToRadians(eye_fov);
float tanY = std::tan(radians / 2.0f);
if (std::abs(tanY) < 1e-6)
tanY = 0.001f;
float yScale = 1.0f / tanY;
if (std::abs(aspect_ratio) < 1e-6)
aspect_ratio = 0.001f;
float xScale = yScale / aspect_ratio;
float f1 = -(zFar + zNear) / (zFar - zNear);
float f2 = -(2 * zNear * zFar) / (zFar - zNear);
projection <<
xScale, 0, 0, 0,
0, yScale, 0, 0,
0, 0, f1, f2,
0, 0, -1, 0;
return projection;
}
int main(int argc, const char** argv)
{
float angle = 0;
bool command_line = false;
std::string filename = "output.png";
if (argc >= 3) {
command_line = true;
angle = std::stof(argv[2]); // -r by default
if (argc == 4) {
filename = std::string(argv[3]);
}
else
return 0;
}
rst::rasterizer r(700, 700);
Eigen::Vector3f eye_pos = {0, 0, 5};
std::vector<Eigen::Vector3f> pos{{2, 0, -2}, {0, 2, -2}, {-2, 0, -2}};
std::vector<Eigen::Vector3i> ind{{0, 1, 2}};
auto pos_id = r.load_positions(pos);
auto ind_id = r.load_indices(ind);
int key = 0;
int frame_count = 0;
if (command_line) {
r.clear(rst::Buffers::Color | rst::Buffers::Depth);
r.set_model(get_model_matrix(angle));
r.set_view(get_view_matrix(eye_pos));
r.set_projection(get_projection_matrix(45, 1, 0.1, 50));
r.draw(pos_id, ind_id, rst::Primitive::Triangle);
cv::Mat image(700, 700, CV_32FC3, r.frame_buffer().data());
image.convertTo(image, CV_8UC3, 1.0f);
cv::imwrite(filename, image);
return 0;
}
while (key != 27) {
r.clear(rst::Buffers::Color | rst::Buffers::Depth);
r.set_model(get_model_matrix(angle));
r.set_view(get_view_matrix(eye_pos));
r.set_projection(get_projection_matrix(45, 1, 0.1, 50));
r.draw(pos_id, ind_id, rst::Primitive::Triangle);
cv::Mat image(700, 700, CV_32FC3, r.frame_buffer().data());
image.convertTo(image, CV_8UC3, 1.0f);
cv::imshow("image", image);
key = cv::waitKey(10);
std::cout << "frame count: " << frame_count++ << '\n';
if (key == 'a') {
angle += 10;
}
else if (key == 'd') {
angle -= 10;
}
}
return 0;
}
| [
"chenjianzhao@huya.com"
] | chenjianzhao@huya.com |
ef9df11a85f93c29ce79566b4ab46d2e0d4283f5 | 5ccd392afa9697a6cc6f105cca18f4929caf37df | /wangdao/P85_2.1.cpp | 8524dc907a1793e3ff270a89186c9805a2f33ebd | [] | no_license | 021800527/C-Review | 59e757f4a17672dab23f91d398426b9618398de6 | 889a6c081a2a133934e3d542f08ce1464739d0da | refs/heads/master | 2023-04-02T08:45:13.192089 | 2021-04-02T08:33:28 | 2021-04-02T08:33:28 | 326,585,406 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,484 | cpp | /*
* 若希望循环队列中的元素都能得到利用,则需设置一个标志域tag,
* 并以tag的值为0或1来区分队头指针front和队尾指针rear相同时的队列状态是“空”还是“满”。
* 试编写与此结构相应的入队和出队算法
*/
/*
* 在循环队列的类型结构中,增设一个tag的整型变量,进队时置tag为1,出队时置tag为0
* 因为只有入队操作可能导致队满,也只有出队操作可能导致队空
* 队列Q初始时,置tag = 0 、 front = rear = 0.这样的队列四要素如下:
* 队空条件:Q.front == Q.rear 且 Q.tag == 0
* 队满条件:Q.front == Q.rear 且 Q.tag == 1
* 进队操作:Q.data【Q.rear】 = x ;Q.rear = (Q.rear + 1)% MaxSize ; Q.tag = 1.
* 出队操作:x = Q.data[Q.front] ; Q.front = (Q.front + 1) % MaxSize ; Q.tag = 0.
*/
#include <iostream>
using namespace std;
#define MaxSize 10
typedef struct SqQueue{
int data[MaxSize];
int front = 0,rear = 0;
int tag;
}SqQueue;
/*
* 入队算法
*/
int EnQueue(SqQueue &Q , int x){
/*
* 两个条件都满足时则队满
*/
if (Q.front == Q.rear && Q.tag ==1)
return 0;
Q.data[Q.rear] = x;
Q.rear = (Q.rear+1)% MaxSize;
Q.tag = 1;
return 1;
}
/*
* 出队算法
*/
int DeQueue(SqQueue &Q , int &x){
if (Q.front == Q.rear && Q.tag == 0)
return 0;
x = Q.data[Q.front];
Q.front = (Q.front+1) % MaxSize;
Q.tag = 0;
return 1;
} | [
"978621025@qq.com"
] | 978621025@qq.com |
bddedfcd3480ab7d423057bbe5cd4746f1f7a766 | 4e7c196178bc8a33095e82ab6682875813bc5800 | /src/dialogs/database/dlg_db_club.cpp | d895aca5d08f35cfd5eca8f0d1b2024a75a3f0ad | [
"Apache-2.0"
] | permissive | turnfix/turnfix | ed1e217f6f8d68898e8eb7b806141a9114cbdb75 | a33bbbd169446d6027418dbdd4cb89ebbdab587a | refs/heads/master | 2020-04-20T20:52:08.513458 | 2019-02-04T14:24:26 | 2019-02-04T14:24:26 | 169,090,242 | 1 | 2 | null | 2019-09-20T23:07:42 | 2019-02-04T14:24:51 | C++ | UTF-8 | C++ | false | false | 4,201 | cpp | #include <QSqlQuery>
#include "header/dlg_db_club.h"
#include "header/dlg_db_person.h"
#include "header/dlg_db_gau.h"
#include "../../global/header/_global.h"
Db_Club_Dialog::Db_Club_Dialog(int tid, QWidget* parent) : QDialog(parent) {
vnid = tid;
setupUi(this);
setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint);
readPersons();
readGaue();
cmb_gau->setCurrentIndex(0);
QObject::connect(but_save, SIGNAL(clicked()), this, SLOT(save()));
QObject::connect(sli_ort, SIGNAL(valueChanged(int)), this, SLOT(updateOrt()));
QObject::connect(txt_name, SIGNAL(textChanged(QString)), this, SLOT(updateSlider()));
QObject::connect(but_addp, SIGNAL(clicked()), this, SLOT(addPerson()));
QObject::connect(but_addg, SIGNAL(clicked()), this, SLOT(addGau()));
QObject::connect(cmb_gau, SIGNAL(currentIndexChanged(int)), this, SLOT(updateGauInfo()));
if (tid != 0) {
QSqlQuery query;
query.prepare("SELECT int_personenid, var_name, int_start_ort, var_website, int_gaueid FROM tfx_vereine WHERE int_vereineid=?");
query.bindValue(0,tid);
query.exec();
query.next();
cmb_ansprech->setCurrentIndex(cmb_ansprech->findData(query.value(0).toInt()));
txt_name->setText(query.value(1).toString());
txt_web->setText(query.value(3).toString());
sli_ort->setValue(query.value(2).toInt());
cmb_gau->setCurrentIndex(cmb_gau->findData(query.value(4).toInt()));
}
}
void Db_Club_Dialog::readPersons() {
QString currtext = cmb_ansprech->currentText();
cmb_ansprech->clear();
cmb_ansprech->addItem("");
QSqlQuery query("SELECT int_personenid, var_nachname || ', ' || var_vorname FROM tfx_personen ORDER BY var_nachname, var_vorname");
while (query.next()) {
cmb_ansprech->addItem(query.value(1).toString(),query.value(0).toInt());
}
cmb_ansprech->setCurrentIndex(cmb_ansprech->findText(currtext));
}
void Db_Club_Dialog::addPerson() {
Db_Pe_Dialog *pe = new Db_Pe_Dialog(0,this);
if(pe->exec() == 1) { readPersons(); }
}
void Db_Club_Dialog::readGaue() {
QString currtext = cmb_gau->currentText();
cmb_gau->clear();
QSqlQuery query("SELECT int_gaueid, var_name FROM tfx_gaue ORDER BY var_name");
while (query.next()) {
cmb_gau->addItem(query.value(1).toString(),query.value(0).toInt());
}
cmb_gau->setCurrentIndex(cmb_gau->findText(currtext));
}
void Db_Club_Dialog::addGau() {
Db_Gau_Dialog *pe = new Db_Gau_Dialog(0,this);
if(pe->exec() == 1) { readGaue(); }
}
void Db_Club_Dialog::save() {
QSqlQuery query6;
if (vnid == 0) {
query6.prepare("INSERT INTO tfx_vereine (int_personenid,var_name,int_start_ort,var_website,int_gaueid) VALUES (?,?,?,?,?)");
} else {
query6.prepare("UPDATE tfx_vereine SET int_personenid=?,var_name=?,int_start_ort=?,var_website=?,int_gaueid=? WHERE int_vereineid=?");
query6.bindValue(5,vnid);
}
query6.bindValue(0,cmb_ansprech->itemData(cmb_ansprech->currentIndex()));
query6.bindValue(1,txt_name->text());
query6.bindValue(2,sli_ort->value());
query6.bindValue(3,txt_web->text());
query6.bindValue(4,cmb_gau->itemData(cmb_gau->currentIndex()));
query6.exec();
done(1);
}
void Db_Club_Dialog::updateSlider() {
sli_ort->setMaximum(txt_name->text().length()-1);
updateOrt();
}
void Db_Club_Dialog::updateOrt() {
txt_pre_ort->setText(txt_name->text().right(txt_name->text().length()-sli_ort->value()));
}
void Db_Club_Dialog::updateGauInfo() {
if (cmb_gau->itemData(cmb_gau->currentIndex()).toInt() > 0) {
QSqlQuery query;
query.prepare("SELECT tfx_verbaende.var_name, tfx_laender.var_name FROM tfx_gaue INNER JOIN tfx_verbaende ON tfx_gaue.int_verbaendeid = tfx_verbaende.int_verbaendeid INNER JOIN tfx_laender ON tfx_verbaende.int_laenderid = tfx_laender.int_laenderid WHERE int_gaueid=?");
query.bindValue(0,cmb_gau->itemData(cmb_gau->currentIndex()));
query.exec();
query.next();
lbl_verband->setText(query.value(0).toString());
lbl_land->setText(query.value(1).toString());
}
}
| [
"mail@christophkraemer.de"
] | mail@christophkraemer.de |
7874687c83fe5f688832b86caab4eb9fe6924a8c | 5b5e3e4413553ed419769e838e7319a06bb1116a | /data/genpc/src/main.cpp | 87bf2184dd4e90b53c03c68a30721bfc77592c40 | [] | no_license | HangWu2020/CRA-Net | d45c3ceeb69576a90bae6bcf8a5942e3872af55b | 881feb7be2400a120c928bd409efefce00e17d42 | refs/heads/main | 2023-04-12T03:52:04.873973 | 2021-05-10T00:34:50 | 2021-05-10T00:34:50 | 319,632,166 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,138 | cpp | #include <iostream>
#include <fstream>
#include <ctime>
#include <pcl/io/pcd_io.h>
#include <pcl/point_types.h>
#include "obj_scan.h"
//#include "surface_construct.h"
#include <vtkMath.h>
#include <math.h>
#include <time.h>
#include <pcl/io/pcd_io.h>
#include <pcl/point_types.h>
#include <pcl/visualization/common/common.h>
#include <pcl/visualization/cloud_viewer.h>
#include <pcl/common/transforms.h>
#include <pcl/filters/random_sample.h>
using namespace std;
void cloud_filter(pcl::PointCloud<pcl::PointXYZ>::Ptr &cloud_full, pcl::PointCloud<pcl::PointXYZ>::Ptr &cloud_filtered, ofstream& File, int size=3000, int error=10){
float lfsize = 0.02;
float delta_lf = 0.002;
int size0;
float coef = 1.0;
int iterate = 0;
pcl::VoxelGrid<pcl::PointXYZ> sor;
sor.setInputCloud(cloud_full);
sor.setLeafSize (lfsize, lfsize, lfsize);
sor.filter (*cloud_filtered);
size0 = cloud_filtered->points.size();
while (size0<3000 || size0>3005){
iterate+=1;
cloud_filtered->clear();
lfsize = lfsize + delta_lf * float((size0-3000)/abs(size0-3000)) * coef;
sor.setLeafSize (lfsize, lfsize, lfsize);
sor.filter (*cloud_filtered);
cout << cloud_filtered->points.size() << " " << size0 << endl;
if (int(cloud_filtered->points.size()-3000)*int(size0-3000)<0){
coef = coef*0.95;
}
size0 = cloud_filtered->points.size();
cout << "Leaf size: " << lfsize << ", Filtered " << size0 << " data points" << endl;
File << "Leaf size: " << lfsize << ", Filtered " << size0 << " data points" << endl;
if (iterate>300){
File << "Cloud filter is not convergent!!" << endl;
break;
}
}
}
int main(int argc,char **argv){
cout << "Using VTK " << VTK_VERSION << ", OpenCV " << CV_VERSION << endl;
clock_t start, finish;
double duration;
start = clock();
time_t now = time(0);
char* dt = ctime(&now);
// ****** Final pointcloud:scanpc ******//
int imgsize[2] = {256, 256};
cv::Mat depthimg(imgsize[0], imgsize[1], CV_8UC3);
double cameraPt[3] = {1.5, 0.0, 0.0};
double targetPt[3] = {-1.5, 0.0, 0.0};
float delta = 0.015;
string objfile = argv[1];
string pcd_dir = argv[2];
string logfile = argv[3];
ofstream File;
File.open(logfile, ios::app);
File << "***"<< endl;
File << "\n" << "Edit log file for " << objfile << " at " << dt << endl;
File << "***"<< endl;
string sectionmode = "OBBTree"; // CellLocator OBBTree
vector<vector<double>> scanpc;
vector<vector<double>> depthmat;
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_in(new pcl::PointCloud<pcl::PointXYZ>());
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_out (new pcl::PointCloud<pcl::PointXYZ> ());
pcl::PointCloud<pcl::PointXYZ>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZ>());
//pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_filtered(new pcl::PointCloud<pcl::PointXYZ>());
//pcl::PointCloud<pcl::PointXYZ>::Ptr cloud_save(new pcl::PointCloud<pcl::PointXYZ>());
obj_scan cube(objfile, imgsize, cameraPt, targetPt);
double intersection[3];
Eigen::Affine3f pc_transform = Eigen::Affine3f::Identity();
float t_y, t_z=0.0;
for (t_y=0.0; t_y<360; t_y+=30){
cube.rotate(t_y, t_z);
for (float i=-1; i<=1+delta; i+=delta){
for (float j=-1; j<=1+delta; j+=delta){
cameraPt[1] = i;targetPt[1] = i;
cameraPt[2] = j;targetPt[2] = j;
cube.OBBTreeintersect(intersection, cameraPt, targetPt, scanpc);
}
}
cout << "Rotate along Y: " << t_y << ", along Z: " << t_z << endl;
cout << "Point cloud size: " << scanpc.size() << endl;
File << "Rotate along Y: " << t_y << ", along Z: " << t_z << ", Point cloud size: " << scanpc.size() << endl;
cloud_in->width = scanpc.size();
cloud_in->height = 1;
cloud_in->is_dense = false;
cloud_in->points.resize(cloud_in->width*cloud_in->height);
for (size_t i = 0; i < cloud_in->points.size(); ++i)
{
cloud_in->points[i].x = scanpc[i][0];
cloud_in->points[i].y = scanpc[i][1];
cloud_in->points[i].z = scanpc[i][2];
}
pc_transform.rotate(Eigen::AngleAxisf (-t_y/180.0*M_PI, Eigen::Vector3f::UnitY()));
pcl::transformPointCloud (*cloud_in, *cloud_out, pc_transform);
*cloud += *cloud_out;
cloud_in->clear();
cloud_out->clear();
scanpc.clear();
pc_transform = Eigen::Affine3f::Identity();
}
t_y=0.0; t_z=0.0;
for (t_z=90.0; t_z<300; t_z+=180){
cout << "Rotate along Y: " << t_y << ", along Z: " << t_z << endl;
cube.rotate(t_y, t_z);
for (float i=-1; i<=1+delta; i+=delta){
for (float j=-1; j<=1+delta; j+=delta){
cameraPt[1] = i;targetPt[1] = i;
cameraPt[2] = j;targetPt[2] = j;
cube.OBBTreeintersect(intersection, cameraPt, targetPt, scanpc);
}
}
cout << "Point cloud size: " << scanpc.size() << endl;
cloud_in->width = scanpc.size();
cloud_in->height = 1;
cloud_in->is_dense = false;
cloud_in->points.resize(cloud_in->width*cloud_in->height);
for (size_t i = 0; i < cloud_in->points.size(); ++i)
{
cloud_in->points[i].x = scanpc[i][0];
cloud_in->points[i].y = scanpc[i][1];
cloud_in->points[i].z = scanpc[i][2];
}
pc_transform.rotate(Eigen::AngleAxisf (-t_z/180.0*M_PI, Eigen::Vector3f::UnitZ()));
pcl::transformPointCloud (*cloud_in, *cloud_out, pc_transform);
*cloud += *cloud_out;
cloud_in->clear();
cloud_out->clear();
scanpc.clear();
pc_transform = Eigen::Affine3f::Identity();
}
finish = clock();
duration = (double)(finish - start) / CLOCKS_PER_SEC;
cout << "Take " << duration << " seconds" << endl;
File << "Take " << duration << " seconds" << endl;
//cloud_filter(cloud, cloud_filtered,File);
//if (cloud_filtered->points.size()<3000 || cloud_filtered->points.size()>3030){
// exit (-1);
//}
//pcl::RandomSample<pcl::PointXYZ> rs;
//rs.setInputCloud(cloud_filtered);
//rs.setSample(3000);
//rs.filter(*cloud_save);
pcl::io::savePCDFileASCII(pcd_dir, *cloud);//将点云保存到PCD文件中
cout << "Saved " << cloud->points.size() << " filtered data points" << endl;
File << "Saved " << cloud->points.size() << " filtered data points to " << pcd_dir <<endl;
File.close();
}
| [
"wuhang100@sjtu.edu.cn"
] | wuhang100@sjtu.edu.cn |
ec702d99a29942844a1d1e1e7939a118f873ebd2 | 1767dadf909b6f48c444377820d32d5631912c57 | /cms.cpp | 981f49ebd66b7a008a2fb810b81f80a577f5f941 | [] | no_license | Ankitkj1999/College-Management-System | 65f8d1dad70adbf7df0008610f6c0e9ffd9514b0 | 1caebfb1cfc180c8f3f70bee660cc88f9176973c | refs/heads/master | 2022-04-20T05:24:47.868951 | 2020-04-12T14:30:30 | 2020-04-12T14:30:30 | 255,099,735 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,168 | cpp | #include<iostream>
#include<fstream>
#include<string>
#include<conio.h>
#include<windows.h>
#include<ios>
#include<time.h>
#include<iomanip>
#include<stdlib.h>
using namespace std;
//calss defining
//for student
class student
{
public:
string fname;//for student first name
string lname;//for student last name
string registerstion;//for registeration number
string classes;//for class info
static int rollno;//for the roll no of student
void r1(){
rollno++;
cout<<"\t\t\t\t\t\tRoll no. of student: "<<student::rollno;
}
}studentData[20];//variable of student type
int student::rollno=1;
//for teachers
class teachers
{
public:
string fst_name;//first name of teacher
string lst_name;//last name of the teacher
string qualification;//qulaification of the teacher
string exp;//experience of the teacher
string pay;//pay of thr teacher
string subj;//subject he teaches
string lec;//lectures per week
string addrs;//teacher's address
string cell_no;//pnone number
string cab_no;//cabin number
string serves;//number of survrs in the school
}teach[20];//objects of teacher type
//main function
int login()
{
string username="";
string pass="";
char ch;
//cout<<setw(500);
cout<<"\n\n\n\n\t\t\t\t\t\t\t COLLEGE MANAGEMENT SYSTEM "
<<"\n\n\t\t\t\t\t\t\t---------------------------"
<<"\n\t\t\t\t\t\t\t\t LOGIN\n"
<<"\t\t\t\t\t\t\t---------------------------\n\n\n";
cout<<"\t\t\t\t\t\t\tEnter User Name: ";
getline(cin, username);
cout<<"\n\t\t\t\t\t\t\tEnter Password: ";
ch = getch();
while(ch !=13)
{ //character 13 is enter
pass.push_back(ch);
cout<<'$';
ch=getch();
}
if((username=="student"||username=="teacher")&&(pass == "callforcode"||pass == "student"||pass == "teacher"))
{
cout<<"\n\n\n\t\t\t\t\tACCESS GRANTED! \n";
system("pause");
system("cls");
}
else
{
cout<<"\n\n\n\t\t\t\t\t\tACCESS ABORTED!\n\t\t\t\t\t\tPlease Try Again";
system("PAUSE");
system("cls");
login();
}
return 0;
}
int main()
{
system("(color 7D)");
int login();
login();
int i=0,j;//for processing usage;
char choice;// for getting choice
string find;//find shorting
string srch;
while(1)//outer loop
{
system("cls");//clear screen
//Level 1 Dispaly process
cout<<"\t\t\t\t\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"
<<"\n\n\t\t\t\t\t COLLEGE DATA MANAGEMENT\n\n";
cout<<"\t\t\t\t\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\";
cout<<"\n\n\t\t\t\t\t\t:MAIN SCREEN:\n\n";
cout<<"\t\t\t\t\t\t1. Student Information\n";
cout<<"\t\t\t\t\t\t2. Teacher Information\n";
cout<<"\t\t\t\t\t\t3. Exit Program\n";
cout<<"\n\n\t\t\t\t\tEnter Your Choice: ";
cin>>choice;
system("cls");//Clear screen;
switch(choice)//First switch;
{
case '1'://Student
{
while(1)//inner loop
{
system("cls");//Clear screen
system("(color AD)");
//Level 2 Display
cout<<"\t\t\t\tSTUDENT INFORMATION AND BIO DATA SECTION\n\n\n";
cout<<"\t\t\t\t1. Create New Entry\n";
cout<<"\t\t\t\t2. Find And Dispaly Entry\n";
cout<<"\t\t\t\t3. Jump To Main\n";
cout<<"\n\n\t\t\t\tEnter your choice: ";
cin>>choice;
switch(choice)//Second switch student
{
case '1':// new entey
{
ofstream f1("student.txt",ios::app);
for(i=0;choice!='n';i++)
{
if((choice=='y')||(choice=='Y')||(choice=='1'))
{
system("cls");
cout<<"\t\t\t\t\tNEW ENTRY\n";
cout<<"\n\n\t\t\t\t\tEnter First Name: ";
cin>>studentData[i].fname;
cout<<"\n\t\t\t\t\tEnter Last Name: ";
cin>>studentData[i].lname;
cout<<"\n\t\t\t\t\tEnter Registeration Number: ";
cin>>studentData[i].registerstion;
cout<<"\ns\t\t\t\t\tEnter Class: ";
cin>>studentData[i].classes;
studentData[i].r1();
f1<<studentData[i].fname<<endl<<studentData[i].lname<<endl<<studentData[i].registerstion<<endl<<studentData[i].classes<<endl;
cout<<"\n\n\t\t\t\t\tDo you want to enter data: ";
cout<<"\n\n\t\t\t\t\tPress Y for continue and N to finish: ";
cin>>choice;
}
}
f1.close();
}
continue;//control back to inner loop 1
case '2'://Data display
{ ifstream f2("student.txt");
system("cls");
cout<<"\n\t\t\t\t\t DISPLAY STUDENT'S DATA\n ";
cout<<"\n\t\t\t\t\tEnter First Name To Be Dispalyed: ";
cin>>find;
cout<<endl;
int notFound = 0;
for( j=0;(j<=i)||(!f2.eof());j++)
{
getline(f2,studentData[j].fname);
if(studentData[j].fname==find)
{
notFound =1;
cout<<"\n\t\t\t\t\t\tFirst Name: "<<studentData[j].fname<<endl;
cout<<"\n\t\t\t\t\t\tLast Name: "<<studentData[j].lname<<endl;
cout<<"\n\t\t\t\t\tRegisteration Number: "<<studentData[j].registerstion<<endl;
cout<<"\n\t\t\t\t\t Class: "<<studentData[j].classes<<endl;
}
}
if(notFound ==0){
cout<<"\n\t\tNo Record Found"<<endl;
}
f2.close();
cout<<"Press any key to continue";
getch();//To hold data on screen
}
continue;//control back to inner loop 1
case '3'://Jump to main
{
break;//innner switch break
}
}//student second switch
break;//inner loop 1 breaking
}//student while loop
continue;//control pass to 1st loop
}//student case 1
case '2'://Teacher info
{
while(1)//inner loop 2
{
system("cls");//clear screen
//Level 2 Display Process
cout<<"\t\t\t\tTEACHER INFORMATION AND BIO DATA SECTION\n\n\n";
cout<<"\t\t\t\t1. Create New Entry\n";
cout<<"\t\t\t\t2. Find And Dispaly Entry\n";
cout<<"\t\t\t\t3. Jump To Main\n";
cout<<"\n\n\t\t\t\tEnter Your choice: ";
cin>>choice;
switch (choice)//third switch
{
case '1'://Insert data
{
ofstream t1("teacher.txt",ios::app);
for(i=0;choice!='n'&& choice!='N';i++)
{
if ((choice=='y')||(choice=='Y')||(choice=='1'))
{
system("cls");
cout<<"\t\t\t\t\tEnter First Name: ";
cin>>teach[i].fst_name;
cout<<"\t\t\t\t\tEnter Last Name: ";
cin>>teach[i].lst_name;
cout<<"\t\t\t\t\tEnter Qualification: ";
cin>>teach[i].qualification;
cout<<"\t\t\t\t\tEnter Experience (year): ";
cin>>teach[i].exp;
cout<<"\t\t\t\t\tEnter Years In This College: ";
cin>>teach[i].serves;
cout<<"\t\t\t\t\tEnter Subject Taught: ";
cin>>teach[i].subj;
cout<<"\t\t\t\t\tEnter Lecture Per Week: ";
cin>>teach[i].lec;
cout<<"\t\t\t\t\tEnter Salary: ";
cin>>teach[i].pay;
cout<<"\t\t\t\t\tEnter Address: ";
cin>>teach[i].addrs;
cout<<"\t\t\t\t\tEnter Phone Number: ";
cin>>teach[i].cell_no;
cout<<"\t\t\t\t\tEnter Cabin Number: ";
cin>>teach[i].cab_no;
t1<<teach[i].fst_name<<endl<<teach[i].lst_name<<endl
<<teach[i].qualification<<endl<<teach[i].exp<<endl<<teach[i].serves<<endl
<<teach[i].subj<<endl<<teach[i].lec<<endl<<teach[i].pay<<endl
<<teach[i].addrs<<endl<<teach[i].cell_no<<endl<<teach[i].cab_no<<endl;
cout<<"\n\n\t\t\t\tDo Press Y to add Press N for main menu: ";
cin>>choice;
}//if
}//for loop
//for finding through names
system("cls");
t1.close();
}//case 1
continue;// Control pass to iner loop 2
case '2'://Dispaly Data
{
ifstream t2("teacher.txt");
system("cls");
cout<<"\n\t\t\t\tDISPLAY TEACHER'S ENTRY\n";
cout<<"\n\t\t\t\tEnter Name To Be Displayed: ";
cin>>find;
cout<<endl;
int notFound =0;
for(j=0;((j<=i)||(!t2.eof()));j++)
{
getline(t2,teach[j].fst_name);
if(teach[j].fst_name==find)
{
notFound =1;
cout<<"\n\n\t\t\t\tFirst Name: "<<teach[j].fst_name<<endl;
getline(t2,teach[j].lst_name);
cout<<"\n\n\t\t\t\tLast Name: "<<teach[j].lst_name<<endl;
getline(t2,teach[j].qualification);
cout<<"\n\n\t\t\t\tQualification: "<<teach[j].qualification<<endl;
getline(t2,teach[j].exp);
cout<<"\n\n\t\t\t\tExperience: "<<teach[j].exp<<endl;
getline(t2,teach[j].serves);
cout<<"\n\n\t\t\t\tEars In This College: "<<teach[j].lst_name<<endl;
getline(t2,teach[j].subj);
cout<<"\n\n\t\t\t\tSubject Taught: "<<teach[j].subj<<endl;
getline(t2,teach[j].lec);
cout<<"\n\n\t\t\t\tLectures Per Week: "<<teach[j].lec<<endl;
getline(t2,teach[j].pay);
cout<<"\n\n\t\t\t\tSalary: "<<teach[j].pay<<endl;
getline(t2,teach[j].addrs);
cout<<"\n\n\t\t\t\tAddress: "<<teach[j].addrs<<endl;
getline(t2,teach[j].cell_no);
cout<<"\n\n\t\t\t\tPhone Number: "<<teach[j].cell_no<<endl;
getline(t2,teach[j].cab_no);
cout<<"\n\n\t\t\t\tCabin Number: "<<teach[j].cab_no<<endl;
}//if
}//for loop
t2.close();
if(notFound ==0){
cout<<"\n\t\tNo Record Found"<<endl;
}
cout<<"Press Any Key Twice To Continue";
getch();
getch();
}//case 2
continue;//Control pass to inner loop 2
case '3'://Jump to main
{
break;//inner switch
}//case 3
}//inner switch
break;//inner while
}//inner loop
continue;//control pass to 1st loop
}//outer case 2
case '3':
{
cout<<"\n Brought To You By Call For Code";
break;//outer case 3
}//outer case 3
}
break;//outer loop
}//outer while loop
}//int main
| [
"noreply@github.com"
] | noreply@github.com |
06efcc6b59afceeb69b51d4685899dcd817bfcf3 | 66eac5190e1520983931864e3adddb3e2e895c1d | /include/guard.hh | 480817ebaa28ffd55083fb286fe56002e00f5b7a | [] | no_license | NERD-Repo/cpp_etudes | 68ed12deeb49feece763f3cab01d88bb223ba6ca | 5271a9ea65572341103b3704a1cf1597870c95a0 | refs/heads/master | 2023-03-10T10:57:36.920759 | 2021-03-02T16:42:15 | 2021-03-02T18:45:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,951 | hh | // Copyright (c) 2020 Ran Panfeng. All rights reserved.
// Author: satanson
// Email: ranpanf@gmail.com
// Github repository: https://github.com/satanson/cpp_etudes.git
//
// Created by grakra on 2020/12/18.
//
#pragma once
#include <type_traits>
namespace guard {
using Guard = int;
template<typename T, typename... Args>
constexpr bool type_in = (std::is_same_v<T, Args> || ...);
template<typename T, T v, T... args>
constexpr bool value_in = ((v == args) || ...);
template<typename T, typename... Args>
using TypeGuard =
std::enable_if_t<((std::is_same_v<T, Args>) || ...), T>;
#define TYPE_GUARD(guard_name, pred_name, ...) \
template <typename T> struct pred_name##_struct { \
static constexpr bool value = guard::type_in<T, ##__VA_ARGS__>; \
}; \
template <typename T> \
constexpr bool pred_name = pred_name##_struct<T>::value; \
template <typename T> using guard_name = guard::TypeGuard<T, ##__VA_ARGS__>;
template<typename T, T v, T... args>
using ValueGuard = std::enable_if_t<((v == args) || ...), T>;
#define VALUE_GUARD(type, guard_name, pred_name, ...) \
template <type v> struct pred_name##_struct { \
static constexpr bool value = guard::value_in<type, v, ##__VA_ARGS__>; \
}; \
template <type v> constexpr bool pred_name = pred_name##_struct<v>::value; \
template <type v> \
using guard_name = guard::ValueGuard<type, v, ##__VA_ARGS__>;
template<typename T, template<typename> typename... TypePredicates>
struct OrTypePredicates {
static constexpr bool value = ((TypePredicates<T>::value) || ...);
};
template<typename T, T v, template<T> typename... ValuePredicates>
struct OrValuePredicates {
static constexpr bool value = ((ValuePredicates<v>::value) || ...);
};
template<typename T, template<typename> typename... TypePredicates>
constexpr bool type_union = OrTypePredicates<T, TypePredicates...>::value;
template<typename T, template<typename> typename... TypePredicates>
using TypeGuardUnion =
std::enable_if_t<type_union<T, TypePredicates...>, Guard>;
template<typename T, T v, template<T> typename... ValuePredicates>
constexpr bool value_union = OrValuePredicates<T, v, ValuePredicates...>::value;
template<typename T, T v, template<T> typename... ValuePredicates>
using ValueGuardUnion =
std::enable_if_t<value_union<T, v, ValuePredicates...>, Guard>;
#define UNION_TYPE_GUARD(guard_name, pred_name, ...) \
template <typename T> struct pred_name##_struct { \
static constexpr bool value = guard::type_union<T, ##__VA_ARGS__>; \
}; \
template <typename T> \
constexpr bool pred_name = pred_name##_struct<T>::value; \
template <typename T> \
using guard_name = std::enable_if_t<pred_name<T>, guard::Guard>;
#define UNION_VALUE_GUARD(type, guard_name, pred_name, ...) \
template <type v> struct pred_name##_struct { \
static constexpr bool value = guard::value_union<type, v, ##__VA_ARGS__>; \
}; \
template <type v> constexpr bool pred_name = pred_name##_struct<v>::value; \
template <type v> \
using guard_name = guard::ValueGuardUnion<type, v, ##__VA_ARGS__>;
} // namespace guard
| [
"ranpanf@gmail.com"
] | ranpanf@gmail.com |
b53cc45d4bb76ec460a0f6c6a893773109c5182a | c766bece263e5149d0dbab04ea20308bf1191ab8 | /AdobeInDesignCCProductsSDK.2020/source/open/components/layerpanel/LayersPanelXMLGenerator.cpp | 7990211cb19e0cb655578fc520b16f3d9a5cb007 | [] | no_license | stevenstong/adobe-tools | 37a36868619db90984d5303187305c9da1e024f7 | c74d61d882363a91da4938fd525b97f83084cb2e | refs/heads/master | 2022-04-08T17:31:35.516938 | 2020-03-18T20:57:40 | 2020-03-18T20:57:40 | 248,061,036 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,136 | cpp | //========================================================================================
//
// $File: //depot/devtech/15.0/plugin/source/open/components/layerpanel/LayersPanelXMLGenerator.cpp $
//
// Owner: Paul Sorrick
//
// $Author: pmbuilder $
//
// $DateTime: 2019/10/11 10:48:01 $
//
// $Revision: #2 $
//
// $Change: 1061132 $
//
// Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
// with the terms of the Adobe license agreement accompanying it. If you have received
// this file from a source other than Adobe, then your use, modification, or
// distribution of it requires the prior written permission of Adobe.
//
//========================================================================================
#include "VCPlugInHeaders.h"
#include "BasePanelXMLGenerator.h"
#include "IBoolData.h"
#include "IXMLOutStream.h"
#include "IControlView.h"
#include "IPanelControlData.h"
// ----- Implementation Includes -----
#include "LayerPanelID.h"
#include "LayersPanelWorkspaceDefs.h"
const char* LayersPanelWorkspaceDefs::kLayersPanelOptionsXMLTag = "LayerPaneOptions";
const char* LayersPanelWorkspaceDefs::kLayersPanelSmallRowsXMLTag = "SmallRows";
//========================================================================================
// Class LayersPanelXMLGenerator
//========================================================================================
class LayersPanelXMLGenerator : public BasePanelXMLGenerator
{
typedef BasePanelXMLGenerator inherited;
public:
LayersPanelXMLGenerator(IPMUnknown *boss);
virtual ~LayersPanelXMLGenerator();
void GenerateContent(IXMLOutStream *s, int32 beforeChildIndex);
};
//========================================================================================
// METHODS LayersPanelXMLGenerator
//========================================================================================
CREATE_PMINTERFACE(LayersPanelXMLGenerator, kLayersPanelXMLGeneratorImpl)
LayersPanelXMLGenerator::LayersPanelXMLGenerator(IPMUnknown *boss) :
inherited(boss)
{
}
LayersPanelXMLGenerator::~LayersPanelXMLGenerator()
{
}
//----------------------------------------------------------------------------------------
// GenerateContent
//----------------------------------------------------------------------------------------
void LayersPanelXMLGenerator::GenerateContent(IXMLOutStream *s, int32 beforeChildIndex)
{
inherited::GenerateContent(s, beforeChildIndex);
IXMLOutStream::AttributeList attrs;
InterfacePtr<const IPanelControlData> panelData(this, UseDefaultIID());
const IControlView* treeView = panelData->FindWidget(kLayerPanelTreeWidgetID);
InterfacePtr<const IBoolData> rowSizeBool(treeView, IID_ISMALLPALETTEROWSBOOLDATA);
PushBool( attrs, LayersPanelWorkspaceDefs::kLayersPanelSmallRowsXMLTag, rowSizeBool->Get());
PMString layerPanelOptionsTag( LayersPanelWorkspaceDefs::kLayersPanelOptionsXMLTag );
s->PushWithAttributes( layerPanelOptionsTag.GrabWString(), attrs, kTrue );
s->Pop( kTrue );
}
| [
"steven.tong@hcl.com"
] | steven.tong@hcl.com |
2e8dcea5438d1337ae23e84ea4d748c1298c6163 | f370af747ace4b5342679ba628d3127d0a3fb575 | /basicFollower/basicFollower.ino | 1db5ab29802401bf2c2a4c91ce7a505638b750c6 | [] | no_license | shrutiyer/Poe_line_follower | 31490833eda41b6e7066152b871f9e3c6de5fa62 | f5e9b674e0630b1e0e50a12d8857a0cc2d1d5369 | refs/heads/master | 2021-01-10T03:50:10.882572 | 2015-10-11T18:55:54 | 2015-10-11T18:55:54 | 43,769,692 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,792 | ino | /*
* Created by Shruti Iyer, William Lu
* This code integrates both the two motors and
* the two infrared sensors. It just runs the
* motors according to the sensors. No PID yet, just
* very basic sense where the line is code.
*/
#include <Wire.h>
#include <Adafruit_MotorShield.h>
#include "utility/Adafruit_PWMServoDriver.h"
Adafruit_MotorShield AFMS = Adafruit_MotorShield();
Adafruit_DCMotor *rightMotor = AFMS.getMotor(3);
Adafruit_DCMotor *leftMotor = AFMS.getMotor(4);
int rightIR; //Value from infrared sensor 1
int leftIR; //Value from infrared sensor 2
const int rightMotorSpeed = 30;
const int leftMotorSpeed = 30;
void setup() {
AFMS.begin();
rightMotor->setSpeed(rightMotorSpeed);
leftMotor->setSpeed(leftMotorSpeed);
pinMode(A0, INPUT);
pinMode(A1, INPUT);
Serial.begin(250000);
}
void loop() {
leftIR = analogRead(A0);
rightIR = analogRead(A1);
if (rightIR > leftIR && rightIR - leftIR >= 100) {
leftMotor->run(BACKWARD);
rightMotor->run(FORWARD);
Serial.print(leftIR); Serial.print(" "); Serial.print(rightIR); Serial.print(" ");
Serial.print(leftMotorSpeed); Serial.print(" "); Serial.println(-rightMotorSpeed);
}
else if (leftIR > rightIR && leftIR - rightIR >= 100) {
rightMotor->run(BACKWARD);
leftMotor->run(FORWARD);
Serial.print(leftIR); Serial.print(" "); Serial.print(rightIR); Serial.print(" ");
Serial.print(-leftMotorSpeed); Serial.print(" "); Serial.println(rightMotorSpeed);
}
else if (leftIR - rightIR <= 100 || rightIR - leftIR <= 100) {
rightMotor->run(BACKWARD);
leftMotor->run(BACKWARD);
Serial.print(leftIR); Serial.print(" "); Serial.print(rightIR); Serial.print(" ");
Serial.print(leftMotorSpeed); Serial.print(" "); Serial.println(rightMotorSpeed);
}
}
| [
"william.a.lu@gmail.com"
] | william.a.lu@gmail.com |
c19ca08c6ba7dee710e27762545c96d01eb3dd18 | 580738f96494d426d6e5973c5b3493026caf8b6a | /Include/Vcl/maskprop.hpp | f3f7043f665327a05a2280fbfbb21a3a42690ee8 | [] | no_license | bravesoftdz/cbuilder-vcl | 6b460b4d535d17c309560352479b437d99383d4b | 7b91ef1602681e094a6a7769ebb65ffd6f291c59 | refs/heads/master | 2021-01-10T14:21:03.726693 | 2010-01-11T11:23:45 | 2010-01-11T11:23:45 | 48,485,606 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,351 | hpp | // Borland C++ Builder
// Copyright (c) 1995, 2002 by Borland Software Corporation
// All rights reserved
// (DO NOT EDIT: machine generated header) 'MaskProp.pas' rev: 6.00
#ifndef MaskPropHPP
#define MaskPropHPP
#pragma delphiheader begin
#pragma option push -w-
#pragma option push -Vx
#include <Dialogs.hpp> // Pascal unit
#include <SysUtils.hpp> // Pascal unit
#include <MaskUtils.hpp> // Pascal unit
#include <Mask.hpp> // Pascal unit
#include <DesignEditors.hpp> // Pascal unit
#include <DesignIntf.hpp> // Pascal unit
#include <Buttons.hpp> // Pascal unit
#include <ExtCtrls.hpp> // Pascal unit
#include <StdCtrls.hpp> // Pascal unit
#include <Controls.hpp> // Pascal unit
#include <Forms.hpp> // Pascal unit
#include <Graphics.hpp> // Pascal unit
#include <Classes.hpp> // Pascal unit
#include <Windows.hpp> // Pascal unit
#include <SysInit.hpp> // Pascal unit
#include <System.hpp> // Pascal unit
//-- user supplied -----------------------------------------------------------
namespace Maskprop
{
//-- type declarations -------------------------------------------------------
class DELPHICLASS TMaskProperty;
class PASCALIMPLEMENTATION TMaskProperty : public Designeditors::TStringProperty
{
typedef Designeditors::TStringProperty inherited;
public:
virtual Designintf::TPropertyAttributes __fastcall GetAttributes(void);
virtual void __fastcall Edit(void);
public:
#pragma option push -w-inl
/* TPropertyEditor.Create */ inline __fastcall virtual TMaskProperty(const Designintf::_di_IDesigner ADesigner, int APropCount) : Designeditors::TStringProperty(ADesigner, APropCount) { }
#pragma option pop
#pragma option push -w-inl
/* TPropertyEditor.Destroy */ inline __fastcall virtual ~TMaskProperty(void) { }
#pragma option pop
};
class DELPHICLASS TMaskForm;
class PASCALIMPLEMENTATION TMaskForm : public Forms::TForm
{
typedef Forms::TForm inherited;
__published:
Stdctrls::TEdit* InputMask;
Stdctrls::TLabel* Label1;
Stdctrls::TListBox* ListBox1;
Stdctrls::TLabel* Label2;
Stdctrls::TLabel* Label3;
Mask::TMaskEdit* TestEdit;
Stdctrls::TLabel* Label4;
Stdctrls::TEdit* Blanks;
Extctrls::TBevel* Bevel1;
Stdctrls::TCheckBox* SaveMaskCheck;
Stdctrls::TButton* Masks;
Dialogs::TOpenDialog* OpenDialog1;
Stdctrls::TButton* OKButton;
Stdctrls::TButton* CancelButton;
Stdctrls::TButton* HelpButton;
void __fastcall BlanksChange(System::TObject* Sender);
void __fastcall InputMaskChange(System::TObject* Sender);
void __fastcall ListDrawItem(Controls::TWinControl* Control, int Index, const Types::TRect &Rect, Windows::TOwnerDrawState State);
void __fastcall ListBoxSelect(System::TObject* Sender);
void __fastcall FormCreate(System::TObject* Sender);
void __fastcall MasksClick(System::TObject* Sender);
void __fastcall HelpButtonClick(System::TObject* Sender);
private:
bool FInEditChange;
AnsiString __fastcall AddBlanks(AnsiString Value);
void __fastcall LoadMaskList(const AnsiString FileName);
protected:
AnsiString __fastcall GetListMaskValue(int Index);
AnsiString __fastcall GetMaskValue(const AnsiString Value);
virtual void __fastcall Loaded(void);
public:
#pragma option push -w-inl
/* TCustomForm.Create */ inline __fastcall virtual TMaskForm(Classes::TComponent* AOwner) : Forms::TForm(AOwner) { }
#pragma option pop
#pragma option push -w-inl
/* TCustomForm.CreateNew */ inline __fastcall virtual TMaskForm(Classes::TComponent* AOwner, int Dummy) : Forms::TForm(AOwner, Dummy) { }
#pragma option pop
#pragma option push -w-inl
/* TCustomForm.Destroy */ inline __fastcall virtual ~TMaskForm(void) { }
#pragma option pop
public:
#pragma option push -w-inl
/* TWinControl.CreateParented */ inline __fastcall TMaskForm(HWND ParentWindow) : Forms::TForm(ParentWindow) { }
#pragma option pop
};
//-- var, const, procedure ---------------------------------------------------
extern PACKAGE TMaskForm* MaskForm;
extern PACKAGE bool __fastcall EditInputMask(AnsiString &InputMask, const AnsiString InitialDir);
} /* namespace Maskprop */
using namespace Maskprop;
#pragma option pop // -w-
#pragma option pop // -Vx
#pragma delphiheader end.
//-- end unit ----------------------------------------------------------------
#endif // MaskProp
| [
"bitscode@7bd08ab0-fa70-11de-930f-d36749347e7b"
] | bitscode@7bd08ab0-fa70-11de-930f-d36749347e7b |
e8b975cd71144bd89c689d499380c140d7a05c7f | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /chrome/browser/ui/webui/options/font_settings_utils_win.cc | aa3dd7941eefdd68e62e99dbb1bcff5350c377b4 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 828 | cc | // Copyright (c) 2012 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.
#include "chrome/browser/ui/webui/options/font_settings_utils.h"
#include "ui/gfx/font.h"
#include "ui/gfx/platform_font_win.h"
namespace options {
// static
void FontSettingsUtilities::ValidateSavedFonts(PrefService* prefs) {
// Nothing to do for Windows.
}
std::string FontSettingsUtilities::MaybeGetLocalizedFontName(
const std::string& font_name_or_list) {
std::string font_name = ResolveFontList(font_name_or_list);
if (font_name.empty())
return font_name;
gfx::Font font(font_name, 12); // dummy font size
return static_cast<gfx::PlatformFontWin*>(font.platform_font())
->GetLocalizedFontName();
}
} // namespace options
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
cb314f762e2631f5205cc85c98b7640cea4e497d | 4db107059e4f77740bea34705fc459bb6a2fe981 | /Validation/interface/makePlots_multiLeptonMultiJet.h | 735392d8c9e4edb7e5e918cd1a7491b03a78ca3b | [] | no_license | GiuliaNegro/dafne | 6e4188e233113387b67096bf5b0eed362771f1e3 | 628076faec651c6ebaedd068b1b1626c8b3d9a1d | refs/heads/master | 2020-09-26T23:59:11.712519 | 2019-01-31T19:50:45 | 2019-01-31T19:50:45 | 67,401,535 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 22,935 | h | #ifndef _makePlots_multiLeptonMultiJet_h_
#define _makePlots_multiLeptonMultiJet_h_
#include <iostream>
#include <fstream>
#include <cstdarg>
#include <vector>
#include <TLorentzVector.h>
#include <TH1.h>
#include <TH2.h>
#include <TH1D.h>
#include <TH2D.h>
#include <TProfile.h>
#include <TTree.h>
#include <TChain.h>
#include <TFile.h>
#include "dafne/Validation/interface/functions.h"
#include "dafne/Validation/interface/functions_multiLeptonMultiJet.h"
using namespace std;
class makePlots_multiLeptonMultiJet {
public:
// TTree *fChain; //!pointer to the analyzed TTree or TChain
TChain *fChain;
Int_t fCurrent; //!current Tree number in a TChain
// Declaration of leaf types
Int_t run;
Int_t event;
Int_t lumi;
Float_t rho;
Float_t weight;
Float_t puweight;
Int_t nvtx;
Int_t npu;
vector<float> *vtx_x;
vector<float> *vtx_y;
vector<float> *vtx_z;
vector<float> *ele_e;
vector<float> *ele_pt;
vector<float> *ele_eta;
vector<float> *ele_phi;
vector<bool> *ele_passHEEPId;
vector<bool> *ele_passMediumId;
vector<float> *ele_iso;
vector<float> *ele_dz;
vector<float> *ele_d0;
vector<int> *ele_isMatchedToGen;
vector<int> *ele_charge;
vector<float> *ele_etaSC;
vector<bool> *ele_isEcalDriven;
vector<float> *ele_dEtaIn;
vector<float> *ele_dPhiIn;
vector<float> *ele_hOverE;
vector<float> *ele_full5x5_r9;
vector<float> *ele_full5x5_sigmaIetaIeta;
vector<float> *ele_full5x5_E5x5;
vector<float> *ele_full5x5_E1x5;
vector<float> *ele_full5x5_E2x5;
vector<float> *ele_EmHadDepth1Iso;
vector<float> *ele_ptTracksIso;
vector<int> *ele_innerLayerLostHits;
vector<float> *ele_dxy;
vector<float> *ele_eOverP;
vector<float> *ele_ecalEnergy;
vector<float> *ele_hcalOverEcal;
vector<float> *mu_e;
vector<float> *mu_pt;
vector<float> *mu_eta;
vector<float> *mu_phi;
vector<float> *mu_iso;
vector<float> *mu_PFiso;
vector<bool> *mu_isHighPt;
vector<int> *mu_isMatchedToGen;
vector<int> *mu_charge;
vector<float> *mu_dz;
vector<float> *mu_dxy;
vector<float> *mu_RochCor;
vector<float> *jet_e;
vector<float> *jet_pt;
vector<float> *jet_eta;
vector<float> *jet_phi;
vector<float> *jet_bdiscriminant;
vector<int> *jet_partonFlavour;
vector<int> *jet_hadronFlavour;
vector<int> *jet_isMatchedToGen;
vector<bool> *jet_isThight;
vector<bool> *isEEJJ;
vector<bool> *isEETT;
vector<bool> *isMMJJ;
vector<bool> *isMMTT;
vector<bool> *isEMJJ;
vector<bool> *isSignalRegion;
vector<bool> *isLowMllCR;
vector<bool> *isLowMlljjCR;
vector<bool> *isBB;
vector<bool> *isEE;
vector<bool> *isEB;
vector<bool> *passPreselections;
vector<float> *leadingLepton_e;
vector<float> *leadingLepton_pt;
vector<float> *leadingLepton_eta;
vector<float> *leadingLepton_phi;
vector<float> *leadingLepton_charge;
vector<float> *subLeadingLepton_e;
vector<float> *subLeadingLepton_pt;
vector<float> *subLeadingLepton_eta;
vector<float> *subLeadingLepton_phi;
vector<float> *subLeadingLepton_charge;
vector<float> *leadingJet_e;
vector<float> *leadingJet_pt;
vector<float> *leadingJet_eta;
vector<float> *leadingJet_phi;
vector<int> *leadingJet_isMatchedToGen;
vector<bool> *leadingJet_isThight;
vector<float> *subLeadingJet_e;
vector<float> *subLeadingJet_pt;
vector<float> *subLeadingJet_eta;
vector<float> *subLeadingJet_phi;
vector<int> *subLeadingJet_isMatchedToGen;
vector<bool> *subLeadingJet_isThight;
vector<float> *dRLeadLeptonLeadJet;
vector<float> *dRLeadLeptonSubLeadJet;
vector<float> *dRSubLeadLeptonLeadJet;
vector<float> *dRSubLeadLeptonSubLeadJet;
vector<float> *multiLeptonMultiJet_sumPt;
vector<float> *multiLeptonMultiJet_invMass;
vector<float> *diLepton_invMass;
vector<float> *diLepton_pt;
vector<float> *diJet_invMass;
vector<float> *diJetLeadingLepton_invMass;
vector<float> *diJetSubLeadingLepton_invMass;
vector<bool> *leadingEle_passHEEPId;
vector<bool> *leadingEle_passMediumId;
vector<float> *leadingEle_iso;
vector<int> *leadingEle_isMatchedToGen;
vector<float> *leadingEle_etaSC;
vector<bool> *leadingEle_isEcalDriven;
vector<float> *leadingEle_dEtaIn;
vector<float> *leadingEle_dPhiIn;
vector<float> *leadingEle_hOverE;
vector<float> *leadingEle_full5x5_r9;
vector<float> *leadingEle_full5x5_sigmaIetaIeta;
vector<float> *leadingEle_full5x5_E5x5;
vector<float> *leadingEle_full5x5_E1x5;
vector<float> *leadingEle_full5x5_E2x5;
vector<float> *leadingEle_EmHadDepth1Iso;
vector<float> *leadingEle_ptTracksIso;
vector<int> *leadingEle_innerLayerLostHits;
vector<float> *leadingEle_dxy;
vector<float> *leadingEle_dz;
vector<float> *leadingEle_eOverP;
vector<float> *leadingEle_ecalEnergy;
vector<float> *leadingEle_hcalOverEcal;
vector<bool> *subLeadingEle_passHEEPId;
vector<bool> *subLeadingEle_passMediumId;
vector<float> *subLeadingEle_iso;
vector<int> *subLeadingEle_isMatchedToGen;
vector<float> *subLeadingEle_etaSC;
vector<bool> *subLeadingEle_isEcalDriven;
vector<float> *subLeadingEle_dEtaIn;
vector<float> *subLeadingEle_dPhiIn;
vector<float> *subLeadingEle_hOverE;
vector<float> *subLeadingEle_full5x5_r9;
vector<float> *subLeadingEle_full5x5_sigmaIetaIeta;
vector<float> *subLeadingEle_full5x5_E5x5;
vector<float> *subLeadingEle_full5x5_E1x5;
vector<float> *subLeadingEle_full5x5_E2x5;
vector<float> *subLeadingEle_EmHadDepth1Iso;
vector<float> *subLeadingEle_ptTracksIso;
vector<int> *subLeadingEle_innerLayerLostHits;
vector<float> *subLeadingEle_dxy;
vector<float> *subLeadingEle_dz;
vector<float> *subLeadingEle_eOverP;
vector<float> *subLeadingEle_ecalEnergy;
vector<float> *subLeadingEle_hcalOverEcal;
vector<float> *leadingMuon_iso;
vector<float> *leadingMuon_PFiso;
vector<bool> *leadingMuon_isHighPt;
vector<int> *leadingMuon_isMatchedToGen;
vector<float> *leadingMuon_dz;
vector<float> *leadingMuon_dxy;
vector<float> *leadingMuon_RochCor;
vector<float> *subLeadingMuon_iso;
vector<float> *subLeadingMuon_PFiso;
vector<bool> *subLeadingMuon_isHighPt;
vector<int> *subLeadingMuon_isMatchedToGen;
vector<float> *subLeadingMuon_dz;
vector<float> *subLeadingMuon_dxy;
vector<float> *subLeadingMuon_RochCor;
// List of branches
TBranch *b_run; //!
TBranch *b_event; //!
TBranch *b_lumi; //!
TBranch *b_rho; //!
TBranch *b_weight; //!
TBranch *b_puweight; //!
TBranch *b_nvtx; //!
TBranch *b_npu; //!
TBranch *b_vtx_x; //!
TBranch *b_vtx_y; //!
TBranch *b_vtx_z; //!
TBranch *b_ele_e; //!
TBranch *b_ele_pt; //!
TBranch *b_ele_eta; //!
TBranch *b_ele_phi; //!
TBranch *b_ele_passHEEPId; //!
TBranch *b_ele_passMediumId; //!
TBranch *b_ele_iso; //!
TBranch *b_ele_dz; //!
TBranch *b_ele_d0; //!
TBranch *b_ele_isMatchedToGen; //!
TBranch *b_ele_charge; //!
TBranch *b_ele_etaSC; //!
TBranch *b_ele_isEcalDriven; //!
TBranch *b_ele_dEtaIn; //!
TBranch *b_ele_dPhiIn; //!
TBranch *b_ele_hOverE; //!
TBranch *b_ele_full5x5_r9; //!
TBranch *b_ele_full5x5_sigmaIetaIeta; //!
TBranch *b_ele_full5x5_E5x5; //!
TBranch *b_ele_full5x5_E1x5; //!
TBranch *b_ele_full5x5_E2x5; //!
TBranch *b_ele_EmHadDepth1Iso; //!
TBranch *b_ele_ptTracksIso; //!
TBranch *b_ele_innerLayerLostHits; //!
TBranch *b_ele_dxy; //!
TBranch *b_ele_eOverP; //!
TBranch *b_ele_ecalEnergy; //!
TBranch *b_ele_hcalOverEcal; //!
TBranch *b_mu_e; //!
TBranch *b_mu_pt; //!
TBranch *b_mu_eta; //!
TBranch *b_mu_phi; //!
TBranch *b_mu_iso; //!
TBranch *b_mu_PFiso; //!
TBranch *b_mu_isHighPt; //!
TBranch *b_mu_isMatchedToGen; //!
TBranch *b_mu_charge; //!
TBranch *b_mu_dz; //!
TBranch *b_mu_dxy; //!
TBranch *b_mu_RochCor; //!
TBranch *b_jet_e; //!
TBranch *b_jet_pt; //!
TBranch *b_jet_eta; //!
TBranch *b_jet_phi; //!
TBranch *b_jet_bdiscriminant; //!
TBranch *b_jet_partonFlavour; //!
TBranch *b_jet_hadronFlavour; //!
TBranch *b_jet_isMatchedToGen; //!
TBranch *b_jet_isThight; //!
TBranch *b_isEEJJ; //!
TBranch *b_isEETT; //!
TBranch *b_isMMJJ; //!
TBranch *b_isMMTT; //!
TBranch *b_isEMJJ; //!
TBranch *b_isSignalRegion; //!
TBranch *b_isLowMllCR; //!
TBranch *b_isLowMlljjCR; //!
TBranch *b_isBB; //!
TBranch *b_isEE; //!
TBranch *b_isEB; //!
TBranch *b_passPreselections; //!
TBranch *b_leadingLepton_e; //!
TBranch *b_leadingLepton_pt; //!
TBranch *b_leadingLepton_eta; //!
TBranch *b_leadingLepton_phi; //!
TBranch *b_leadingLepton_charge; //!
TBranch *b_subLeadingLepton_e; //!
TBranch *b_subLeadingLepton_pt; //!
TBranch *b_subLeadingLepton_eta; //!
TBranch *b_subLeadingLepton_phi; //!
TBranch *b_subLeadingLepton_charge; //!
TBranch *b_leadingJet_e; //!
TBranch *b_leadingJet_pt; //!
TBranch *b_leadingJet_eta; //!
TBranch *b_leadingJet_phi; //!
TBranch *b_leadingJet_isMatchedToGen; //!
TBranch *b_leadingJet_isThight; //!
TBranch *b_subLeadingJet_e; //!
TBranch *b_subLeadingJet_pt; //!
TBranch *b_subLeadingJet_eta; //!
TBranch *b_subLeadingJet_phi; //!
TBranch *b_subLeadingJet_isMatchedToGen; //!
TBranch *b_subLeadingJet_isThight; //!
TBranch *b_dRLeadLeptonLeadJet; //!
TBranch *b_dRLeadLeptonSubLeadJet; //!
TBranch *b_dRSubLeadLeptonLeadJet; //!
TBranch *b_dRSubLeadLeptonSubLeadJet; //!
TBranch *b_multiLeptonMultiJet_sumPt; //!
TBranch *b_multiLeptonMultiJet_invMass; //!
TBranch *b_diLepton_invMass; //!
TBranch *b_diLepton_pt; //!
TBranch *b_diJet_invMass; //!
TBranch *b_diJetLeadingLepton_invMass; //!
TBranch *b_diJetSubLeadingLepton_invMass; //!
TBranch *b_leadingEle_passHEEPId; //!
TBranch *b_leadingEle_passMediumId; //!
TBranch *b_leadingEle_iso; //!
TBranch *b_leadingEle_isMatchedToGen; //!
TBranch *b_leadingEle_etaSC; //!
TBranch *b_leadingEle_isEcalDriven; //!
TBranch *b_leadingEle_dEtaIn; //!
TBranch *b_leadingEle_dPhiIn; //!
TBranch *b_leadingEle_hOverE; //!
TBranch *b_leadingEle_full5x5_r9; //!
TBranch *b_leadingEle_full5x5_sigmaIetaIeta; //!
TBranch *b_leadingEle_full5x5_E5x5; //!
TBranch *b_leadingEle_full5x5_E1x5; //!
TBranch *b_leadingEle_full5x5_E2x5; //!
TBranch *b_leadingEle_EmHadDepth1Iso; //!
TBranch *b_leadingEle_ptTracksIso; //!
TBranch *b_leadingEle_innerLayerLostHits; //!
TBranch *b_leadingEle_dxy; //!
TBranch *b_leadingEle_dz; //!
TBranch *b_leadingEle_eOverP; //!
TBranch *b_leadingEle_ecalEnergy; //!
TBranch *b_leadingEle_hcalOverEcal; //!
TBranch *b_subLeadingEle_passHEEPId; //!
TBranch *b_subLeadingEle_passMediumId; //!
TBranch *b_subLeadingEle_iso; //!
TBranch *b_subLeadingEle_isMatchedToGen; //!
TBranch *b_subLeadingEle_etaSC; //!
TBranch *b_subLeadingEle_isEcalDriven; //!
TBranch *b_subLeadingEle_dEtaIn; //!
TBranch *b_subLeadingEle_dPhiIn; //!
TBranch *b_subLeadingEle_hOverE; //!
TBranch *b_subLeadingEle_full5x5_r9; //!
TBranch *b_subLeadingEle_full5x5_sigmaIetaIeta; //!
TBranch *b_subLeadingEle_full5x5_E5x5; //!
TBranch *b_subLeadingEle_full5x5_E1x5; //!
TBranch *b_subLeadingEle_full5x5_E2x5; //!
TBranch *b_subLeadingEle_EmHadDepth1Iso; //!
TBranch *b_subLeadingEle_ptTracksIso; //!
TBranch *b_subLeadingEle_innerLayerLostHits; //!
TBranch *b_subLeadingEle_dxy; //!
TBranch *b_subLeadingEle_dz; //!
TBranch *b_subLeadingEle_eOverP; //!
TBranch *b_subLeadingEle_ecalEnergy; //!
TBranch *b_subLeadingEle_hcalOverEcal; //!
TBranch *b_leadingMuon_iso; //!
TBranch *b_leadingMuon_PFiso; //!
TBranch *b_leadingMuon_isHighPt; //!
TBranch *b_leadingMuon_isTight; //!
TBranch *b_leadingMuon_isMedium; //!
TBranch *b_leadingMuon_isLoose; //!
TBranch *b_leadingMuon_isMatchedToGen; //!
TBranch *b_leadingMuon_dz; //!
TBranch *b_leadingMuon_dxy; //!
TBranch *b_leadingMuon_RochCor; //!
TBranch *b_subLeadingMuon_iso; //!
TBranch *b_subLeadingMuon_PFiso; //!
TBranch *b_subLeadingMuon_isHighPt; //!
TBranch *b_subLeadingMuon_isTight; //!
TBranch *b_subLeadingMuon_isMedium; //!
TBranch *b_subLeadingMuon_isLoose; //!
TBranch *b_subLeadingMuon_isMatchedToGen; //!
TBranch *b_subLeadingMuon_dz; //!
TBranch *b_subLeadingMuon_dxy; //!
TBranch *b_subLeadingMuon_RochCor; //!
static const int nEtaRegions = 3;
static const int nEtaMassRegions = 5;
static const int nObjects = 16;
static const int nEle = 6;
static const int nRegions = 3;
static const int nZregions = 6; //4;
//definition of histos
TH1D *rho_histo;
TH1D *nvtx_histo;
TH1D *vtx_x_histo;
TH1D *vtx_y_histo;
TH1D *vtx_z_histo;
TH1D *muon_dxy_histo;
TH1D *nLeadingLeptons_histo;
TH1D *nSubLeadingLeptons_histo;
TH1D *pt_histo[nObjects][nRegions];
TH1D *eta_histo[nObjects][nRegions];
TH1D *phi_histo[nObjects][nRegions];
TH1D *etaSC_histo[nEle][nEtaRegions];
TH1D *isEcalDriven_histo[nEle][nEtaRegions];
TH1D *dEtaIn_histo[nEle][nEtaRegions];
TH1D *dPhiIn_histo[nEle][nEtaRegions];
TH1D *hOverE_histo[nEle][nEtaRegions];
TH1D *full5x5_r9_histo[nEle][nEtaRegions];
TH1D *full5x5_sigmaIetaIeta_histo[nEle][nEtaRegions];
TH1D *full5x5_E5x5_histo[nEle][nEtaRegions];
TH1D *full5x5_E1x5_histo[nEle][nEtaRegions];
TH1D *full5x5_E2x5_histo[nEle][nEtaRegions];
TH1D *full5x5_E2x5_Over_E5x5_histo[nEle][nEtaRegions];
TH1D *full5x5_E1x5_Over_E5x5_histo[nEle][nEtaRegions];
TH1D *EmHadDepth1Iso_histo[nEle][nEtaRegions];
TH1D *ptTracksIso_histo[nEle][nEtaRegions];
TH1D *innerLayerLostHits_histo[nEle][nEtaRegions];
TH1D *dxy_histo[nEle][nEtaRegions];
TH1D *eOverP[nEle][nEtaRegions];
TH1D *mass_dldj_histo[nRegions][nEtaMassRegions];
TH1D *mass_dl_histo[nRegions][nEtaMassRegions];
TH1D *mass_dj_histo[nRegions][nEtaMassRegions];
TH1D *mass_djLl_histo[nRegions][nEtaMassRegions];
TH1D *mass_djSLl_histo[nRegions][nEtaMassRegions];
TH1D *pt_dl_histo[nRegions];
TH1D *Zmass_histo[nZregions][nEtaMassRegions];
TH1D *Zpt_histo[nZregions];
makePlots_multiLeptonMultiJet(TString filename_, TString outputdir_, bool MC_, bool signalEE_, bool signalMuMu_, bool eMuSideband_, bool TnPEE_, bool TnPMuMu_, int nToDivideWeight_);
void Init();
Int_t GetEntry(Long64_t entry);
Long64_t LoadTree(Long64_t entry);
TH1D* newTH1D(string, string, string, int, double, double);
TH1D* newTH1DvarBinSize(string, string, string, int, const double *);
TH2D* newTH2D(string, string, string, string, int, double, double, int, double, double);
TProfile* newTProfile(string, string, string, string, int, double, double, double, double);
void SetHistos();
void getElectrons(vector<eleStruct>& electrons);//, vector<eleStruct>& goodElectrons);
void getLeadingElectrons(vector<eleStruct>& leadingElectrons);
void getSubLeadingElectrons(vector<eleStruct>& subLeadingElectrons);
void getMuons(vector<muonStruct>& muons, vector<muonStruct>& muonsRochCorr);//, vector<muonStruct>& goodMuons, vector<muonStruct>& goodMuonsRochCorr);
void getLeadingMuons(vector<muonStruct>& leadingMuons);
void getSubLeadingMuons(vector<muonStruct>& subLeadingMuons);
void getJets(vector<jetStruct>& jets);//, vector<jetStruct>& goodJets);
void getLeadingJets(vector<jetStruct>& leadingJets);
void getSubLeadingJets(vector<jetStruct>& subLeadingJets);
void getMultiLeptonMultiJets(vector<multiLeptonMultiJetStruct>& multiLeptonMultiJets);
void doEleDistributionsPlots(vector<eleStruct>& electrons, const int eleIdx, const int variableIdx, const int regionIdx);
void doMuonDistributionsPlots(vector<muonStruct>& muons, const int muIdx, const int variableIdx, const int regionIdx);
void doJetsDistributionsPlots(vector<jetStruct>& jets, const int jetIdx, const int variableIdx, const int regionIdx);
void doElePlots(vector<eleStruct>& electrons, const int eleIdx, const int variableIdx, const int etaIdx);
void doMassPlots(vector<multiLeptonMultiJetStruct>& multiLeptonMultiJets, const int dldjIdx, const int regionIdx, const int etaMassIdx);
void doZPlots(vector<multiLeptonMultiJetStruct>& multiLeptonMultiJets, const int dldjIdx, const int variableIdx);
void doZPlots(TLorentzVector Llepton, TLorentzVector SLlepton, const int variableIdx);
void Loop();
void saveHistosAndOutputFile(TString& outputdir);
TString filename, outputdir;
bool MC, signalEE, signalMuMu, eMuSideband, TnPEE, TnPMuMu;
int nToDivideWeight;
vector<TH1*> listOfHistograms;
unsigned int nEvents=0, nEventsWithAtLeast1DLDJ=0, nEventsWithRightLeptonPair=0, nEventsWithDLDJpassingPreselections=0, nEventsWithDLDJpassingSelections=0;
unsigned int nEventsWithDLDJpassingSelectionsInSignalRegion=0, nEventsWithDLDJpassingSelectionsInLowMlljjCR=0, nEventsWithDLDJpassingSelectionsInLowMllCR=0, nEventsWithDLDJpassingSelectionsInFlavourSidebandCR=0;
unsigned int nEventsWithLeadingElePassingSelections=0, nEventsWithSubLeadingElePassingSelections=0;
unsigned int nEventsWithLeadingMuonPassingSelections=0, nEventsWithSubLeadingMuonPassingSelections=0;
unsigned int nEventsWithLeadingJetPassingSelections=0, nEventsWithSubLeadingJetPassingSelections=0;
unsigned int nEventsWithEEJJpassingLoosePreselections=0, nEventsWithMMJJpassingLoosePreselections=0, nEventsWithEEJJpassingLoosePreselectionsAndCharge=0, nEventsWithMMJJpassingLoosePreselectionsAndCharge=0;
unsigned int nEventsWithEEJJpassingLoosePreselectionsAndChargeAndHEEPId=0, nEventsWithMMJJpassingLoosePreselectionsAndChargeAndHighPt=0;
unsigned int nEventsWith2elePassingLoosePreselections=0, nEventsWith2elePassingLoosePreselectionsAndCharge=0, nEventsWith2elePassingLoosePreselectionsAndChargeAndHeepId=0;
unsigned int nEventsWith2muonsPassingLoosePreselections=0, nEventsWith2muonsPassingLoosePreselectionsAndCharge=0, nEventsWith2muonsPassingLoosePreselectionsAndChargeAndHighPt=0;
unsigned int nLeadingElePassingPreselections=0, nLeadingElePassingIsEcalDriven=0, nLeadingElePassingdEtaIn=0, nLeadingElePassingdPhiIn=0, nLeadingElePassingE2x5OverE5x5=0, nLeadingElePassingEmHadDepth1Iso=0, nLeadingElePassingMissingHits=0, nLeadingElePassingDxy=0, nLeadingElePassingHeepId=0;
unsigned int nLeadingElePassingPreselectionsInEB=0, nLeadingEleInEBPassingIsEcalDriven=0, nLeadingEleInEBPassingdEtaIn=0, nLeadingEleInEBPassingdPhiIn=0, nLeadingEleInEBPassingE2x5OverE5x5=0, nLeadingEleInEBPassingEmHadDepth1Iso=0, nLeadingEleInEBPassingMissingHits=0, nLeadingEleInEBPassingDxy=0, nLeadingElePassingHeepIdInEB=0;
unsigned int nLeadingElePassingPreselectionsInEE=0, nLeadingEleInEEPassingIsEcalDriven=0, nLeadingEleInEEPassingdEtaIn=0, nLeadingEleInEEPassingdPhiIn=0, nLeadingEleInEEPassingE2x5OverE5x5=0, nLeadingEleInEEPassingEmHadDepth1Iso=0, nLeadingEleInEEPassingMissingHits=0, nLeadingEleInEEPassingDxy=0, nLeadingElePassingHeepIdInEE=0;
unsigned int nSubLeadingElePassingPreselections=0, nSubLeadingElePassingIsEcalDriven=0, nSubLeadingElePassingdEtaIn=0, nSubLeadingElePassingdPhiIn=0, nSubLeadingElePassingE2x5OverE5x5=0, nSubLeadingElePassingEmHadDepth1Iso=0, nSubLeadingElePassingMissingHits=0, nSubLeadingElePassingDxy=0, nSubLeadingElePassingHeepId=0;
unsigned int nSubLeadingElePassingPreselectionsInEB=0, nSubLeadingEleInEBPassingIsEcalDriven=0, nSubLeadingEleInEBPassingdEtaIn=0, nSubLeadingEleInEBPassingdPhiIn=0, nSubLeadingEleInEBPassingE2x5OverE5x5=0, nSubLeadingEleInEBPassingEmHadDepth1Iso=0, nSubLeadingEleInEBPassingMissingHits=0, nSubLeadingEleInEBPassingDxy=0, nSubLeadingElePassingHeepIdInEB=0;
unsigned int nSubLeadingElePassingPreselectionsInEE=0, nSubLeadingEleInEEPassingIsEcalDriven=0, nSubLeadingEleInEEPassingdEtaIn=0, nSubLeadingEleInEEPassingdPhiIn=0, nSubLeadingEleInEEPassingE2x5OverE5x5=0, nSubLeadingEleInEEPassingEmHadDepth1Iso=0, nSubLeadingEleInEEPassingMissingHits=0, nSubLeadingEleInEEPassingDxy=0, nSubLeadingElePassingHeepIdInEE=0;
unsigned int nEventsWithLandSLleptonsRight=0,nEventsWithLandSLleptonsInverted=0,nEventsWithLandSLjetsRight=0,nEventsWithLandSLjetsInverted=0;
unsigned int nEventsFillingZtoEE=0,nEventsFillingZtoEE_MLMJ=0;
float w=1, sumWeights = 0;
bool saveHEEPvariables_ = false;
string etaName[nEtaRegions] = {"", "_EB", "_EE"};
string etaMassName[nEtaMassRegions] = {"", "_EB-EB", "_EE-EE", "_EB-EE", "_noEB-EB"};
string objName[nObjects] = {"leadingLepton", "subLeadingLepton", "leadingEle",
"subLeadingEle", "leadingMu", "subLeadingMu", "leadingJet", "subLeadingJet",
"ele", "goodEle", "muon", "goodMuon", "jet", "goodJet", "muonRochCor", "goodMuonRochCor"};
string eleName[nEle] = {"leadingEle", "subLeadingEle", "goodLeadingEle",
"goodSubLeadingEle", "ele", "goodEle"};
string triggerName;
int numberRegions;
string regionName[nRegions];
string signalRegionNames[3] = {"_signalRegion","_lowMlljjCR","_lowMllCR"};
string eMuSidebandName[1] = {"_eMuSidebandCR"};
string TnPCRName[1] = {"_TnPCR"};
string Zname[nZregions] = {"toEE_electrons", "toMuMu_muons", "toEE_MLMJelectrons", "toMuMu_MLMJmuons", "toEE_electronsAndJets", "toMuMu_muonsAndJets"};
};
#endif
| [
"giulia.negro@cern.ch"
] | giulia.negro@cern.ch |
6bda00f03304ddadb80a86d31abf13e268702708 | e81c41a3a8c0a9a4f26dc1ce0487ff83cbe065e6 | /src/libtsduck/tsAVCVideoDescriptor.cpp | 68918f3351256ad3551d73616a055d61427cc719 | [
"BSD-2-Clause"
] | permissive | mypopydev/tsduck | baa6fc9029d4ec9750ad6948efa4537bad2803cc | 38e29aa7ba82d0d07ca926a4e37a7f6d167089d3 | refs/heads/master | 2020-03-30T03:45:21.306955 | 2019-11-15T20:21:25 | 2019-11-15T20:21:25 | 150,706,575 | 0 | 0 | NOASSERTION | 2018-09-28T08:04:07 | 2018-09-28T08:04:07 | null | UTF-8 | C++ | false | false | 8,093 | cpp | //----------------------------------------------------------------------------
//
// TSDuck - The MPEG Transport Stream Toolkit
// Copyright (c) 2005-2019, Thierry Lelegard
// 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.
//
// 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.
//
//----------------------------------------------------------------------------
//
// Representation of an AVC_video_descriptor
//
//----------------------------------------------------------------------------
#include "tsAVCVideoDescriptor.h"
#include "tsDescriptor.h"
#include "tsTablesDisplay.h"
#include "tsTablesFactory.h"
#include "tsxmlElement.h"
TSDUCK_SOURCE;
#define MY_XML_NAME u"AVC_video_descriptor"
#define MY_DID ts::DID_AVC_VIDEO
#define MY_STD ts::STD_MPEG
TS_XML_DESCRIPTOR_FACTORY(ts::AVCVideoDescriptor, MY_XML_NAME);
TS_ID_DESCRIPTOR_FACTORY(ts::AVCVideoDescriptor, ts::EDID::Standard(MY_DID));
TS_FACTORY_REGISTER(ts::AVCVideoDescriptor::DisplayDescriptor, ts::EDID::Standard(MY_DID));
//----------------------------------------------------------------------------
// Default constructor:
//----------------------------------------------------------------------------
ts::AVCVideoDescriptor::AVCVideoDescriptor() :
AbstractDescriptor(MY_DID, MY_XML_NAME, MY_STD, 0),
profile_idc(0),
constraint_set0(false),
constraint_set1(false),
constraint_set2(false),
AVC_compatible_flags(0),
level_idc(0),
AVC_still_present(false),
AVC_24_hour_picture(false)
{
_is_valid = true;
}
//----------------------------------------------------------------------------
// Constructor from a binary descriptor
//----------------------------------------------------------------------------
ts::AVCVideoDescriptor::AVCVideoDescriptor(DuckContext& duck, const Descriptor& desc) :
AVCVideoDescriptor()
{
deserialize(duck, desc);
}
//----------------------------------------------------------------------------
// Serialization
//----------------------------------------------------------------------------
void ts::AVCVideoDescriptor::serialize(DuckContext& duck, Descriptor& desc) const
{
uint8_t data[6];
data[0] = _tag;
data[1] = 4;
data[2] = profile_idc;
data[3] =
(constraint_set0 ? 0x80 : 0x00) |
(constraint_set1 ? 0x40 : 0x00) |
(constraint_set2 ? 0x20 : 0x00) |
(AVC_compatible_flags & 0x1F);
data[4] = level_idc;
data[5] =
(AVC_still_present ? 0x80 : 0x00) |
(AVC_24_hour_picture ? 0x40 : 0x00) |
0x3F;
Descriptor d(data, sizeof(data));
desc = d;
}
//----------------------------------------------------------------------------
// Deserialization
//----------------------------------------------------------------------------
void ts::AVCVideoDescriptor::deserialize(DuckContext& duck, const Descriptor& desc)
{
_is_valid = desc.isValid() && desc.tag() == _tag && desc.payloadSize() == 4;
if (_is_valid) {
const uint8_t* data = desc.payload();
profile_idc = data[0];
constraint_set0 = (data[1] & 0x80) != 0;
constraint_set1 = (data[1] & 0x40) != 0;
constraint_set2 = (data[1] & 0x20) != 0;
AVC_compatible_flags = data[1] & 0x1F;
level_idc = data[2];
AVC_still_present = (data[3] & 0x80) != 0;
AVC_24_hour_picture = (data[3] & 0x40) != 0;
}
}
//----------------------------------------------------------------------------
// Static method to display a descriptor.
//----------------------------------------------------------------------------
void ts::AVCVideoDescriptor::DisplayDescriptor(TablesDisplay& display, DID did, const uint8_t* data, size_t size, int indent, TID tid, PDS pds)
{
std::ostream& strm(display.duck().out());
const std::string margin(indent, ' ');
if (size >= 4) {
const uint8_t profile_idc = data[0];
const bool constraint_set0 = (data[1] & 0x80) != 0;
const bool constraint_set1 = (data[1] & 0x40) != 0;
const bool constraint_set2 = (data[1] & 0x20) != 0;
const uint8_t AVC_compatible_flags = data[1] & 0x1F;
const uint8_t level_idc = data[2];
const bool AVC_still_present = (data[3] & 0x80) != 0;
const bool AVC_24_hour_picture = (data[3] & 0x40) != 0;
data += 4; size -= 4;
strm << margin << "Profile IDC: " << int(profile_idc)
<< ", level IDC: " << int(level_idc)
<< std::endl
<< margin << "Constraint set0: " << UString::TrueFalse(constraint_set0)
<< ", set1: " << UString::TrueFalse(constraint_set1)
<< ", set2: " << UString::TrueFalse(constraint_set2)
<< ", AVC compatible flags: " << UString::Hexa(AVC_compatible_flags)
<< std::endl
<< margin << "Still pictures: " << UString::TrueFalse(AVC_still_present)
<< ", 24-hour pictures: " << UString::TrueFalse(AVC_24_hour_picture)
<< std::endl;
}
display.displayExtraData(data, size, indent);
}
//----------------------------------------------------------------------------
// XML serialization
//----------------------------------------------------------------------------
void ts::AVCVideoDescriptor::buildXML(DuckContext& duck, xml::Element* root) const
{
root->setIntAttribute(u"profile_idc", profile_idc, true);
root->setBoolAttribute(u"constraint_set0", constraint_set0);
root->setBoolAttribute(u"constraint_set1", constraint_set1);
root->setBoolAttribute(u"constraint_set2", constraint_set2);
root->setIntAttribute(u"AVC_compatible_flags", AVC_compatible_flags, true);
root->setIntAttribute(u"level_idc", level_idc, true);
root->setBoolAttribute(u"AVC_still_present", AVC_still_present);
root->setBoolAttribute(u"AVC_24_hour_picture", AVC_24_hour_picture);
}
//----------------------------------------------------------------------------
// XML deserialization
//----------------------------------------------------------------------------
void ts::AVCVideoDescriptor::fromXML(DuckContext& duck, const xml::Element* element)
{
_is_valid =
checkXMLName(element) &&
element->getIntAttribute<uint8_t>(profile_idc, u"profile_idc", true, 0, 0x00, 0xFF) &&
element->getBoolAttribute(constraint_set0, u"constraint_set0", true) &&
element->getBoolAttribute(constraint_set1, u"constraint_set1", true) &&
element->getBoolAttribute(constraint_set2, u"constraint_set2", true) &&
element->getIntAttribute<uint8_t>(AVC_compatible_flags, u"AVC_compatible_flags", true, 0, 0x00, 0x1F) &&
element->getIntAttribute<uint8_t>(level_idc, u"level_idc", true, 0, 0x00, 0xFF) &&
element->getBoolAttribute(AVC_still_present, u"AVC_still_present", true) &&
element->getBoolAttribute(AVC_24_hour_picture, u"AVC_24_hour_picture", true);
}
| [
"thierry@lelegard.fr"
] | thierry@lelegard.fr |
45a533ddbbf6a12f5534e55435b37aae95f0df5d | b0ed77fd29113c03396fb7d213fe46dad3732417 | /Teensy/KR1801VM2_t/M7856.h | d23d195ec572287a810889b42216d6d762641ed7 | [
"MIT"
] | permissive | DavidJRichards/RetroShield-KR1801VM2 | f1ddfffc0cf291af5a2b73bec476df6795b92781 | 75e1be9102a02216c85c38c0450a6ad4107cbf62 | refs/heads/master | 2021-11-26T05:57:55.536596 | 2021-11-03T20:12:17 | 2021-11-03T20:12:17 | 240,706,131 | 0 | 0 | null | 2020-02-15T12:26:02 | 2020-02-15T12:26:01 | null | UTF-8 | C++ | false | false | 639 | h | // DEC M7856 DL11-W Serial IO Card
#include <Arduino.h>
class M7856 {
private:
unsigned int rxstatusaddress;
unsigned int rxdataaddress;
unsigned int txstatusaddress;
unsigned int txdataaddress;
unsigned int ltcaddress;
unsigned int rxstatus;
unsigned int rxdata;
unsigned int txstatus;
unsigned int txdata;
uint8_t usart;
public:
M7856(uint8_t usart,unsigned int baseaddress, unsigned int baud);
void init();
void write(unsigned int address, unsigned int value);
unsigned int read(unsigned int address);
boolean here(unsigned int address);
void event();
};
| [
"richards.malton@gmail.com"
] | richards.malton@gmail.com |
4a8759ae409440a5178ec9c7e9d41d1fe5aa7745 | 30e4267e1a7fe172118bf26252aa2eb92b97a460 | /code/pkg_Example/Modules/ChangeObserverExample/Module.cpp | 1665d3769064dc2dba5fff34b6ba4e8cad68333e | [
"Apache-2.0"
] | permissive | thinkhy/x3c_extension | f299103002715365160c274314f02171ca9d9d97 | 8a31deb466df5d487561db0fbacb753a0873a19c | refs/heads/master | 2020-04-22T22:02:44.934037 | 2011-01-07T06:20:28 | 2011-01-07T06:20:28 | 1,234,211 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 231 | cpp | #include "stdafx.h"
#include <XModuleMacro.h>
#include <XModuleImpl.h>
#include "Cx_ObserverTest.h"
XBEGIN_DEFINE_MODULE()
XDEFINE_CLASSMAP_ENTRY(CLSID_ChangeObserverTest, Cx_ObserverTest)
XEND_DEFINE_MODULE_WIN32DLL()
| [
"rhcad1@71899303-b18e-48b3-b26e-8aaddbe541a3"
] | rhcad1@71899303-b18e-48b3-b26e-8aaddbe541a3 |
241b6029fc6046f88a6630bcb7d1ce84b4345cb2 | 5ba2848e65b479d19410f3ecba657d6dd7f5b1bf | /task04/exchange.cpp | 5162517f52c1879aaf1ff51f7913f61826d2ecfe | [] | no_license | th1nk-d1ff3r3nt/CPPProgramming-ITPark | f2d341a4e5e414a86dcd4c1c4291b8d1fb9db2d0 | 86f1c73114c99545a2e99383893d8145cbbfd707 | refs/heads/master | 2023-04-27T10:26:27.966062 | 2018-12-28T12:38:14 | 2018-12-28T12:38:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 133 | cpp | //меняем местами два элемента
void exchange(int *a, int *b) {
int tmp = *a;
*a = *b;
*b = tmp;
}
| [
"dmitryakulov.official@gmail.com"
] | dmitryakulov.official@gmail.com |
5ae3cbdfbabb64c6b3be25515e789d7ee4e4d378 | e7d500359a0be4f30d1a4819dd6e0752f9a91753 | /src/common/resourcelayer/resource_layer_declarative.hpp | 4d46103cfd77579d7f3d93e4f7305805af87d78d | [] | no_license | SeijiEmery/GLSandbox | 2cbe2cc41aa21de2b6d91b1367267cc29d8a70be | fae9de0eabeb3d29ab0ce213016b8ebb56d86b11 | refs/heads/master | 2021-01-13T13:04:21.962766 | 2016-01-27T01:52:45 | 2016-01-27T01:52:45 | 78,687,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,268 | hpp | //
// resource_layer_declarative.hpp
// GLSandbox
//
// Created by semery on 1/24/16.
// Copyright © 2016 Seiji Emery. All rights reserved.
//
#ifndef resource_layer_declarative_hpp
#define resource_layer_declarative_hpp
#include "resource_impl.hpp"
#include <cassert>
namespace gl_sandbox {
namespace resource {
namespace declarative {
using namespace resource_impl;
class LoadAsFileBuffer {
FilePath m_filePath;
async::FileBufferCallback m_onLoad { nullptr };
async::FilePathCallback m_onFail { nullptr };
public:
LoadAsFileBuffer (const FilePath & path) : m_filePath(path) {}
auto & onLoaded (decltype(m_onLoad) onLoad) {
return m_onLoad = onLoad, *this;
}
auto & onLoadFailed (decltype(m_onFail) onFail) {
return m_onFail = onFail, *this;
}
~LoadAsFileBuffer () {
assert(m_onLoad || m_onFail);
async::loadFileAsync(m_filePath, m_onLoad, m_onFail);
}
};
class LoadAsCFile {
FilePath m_filePath;
std::string m_mode;
async::CFileCallback m_onLoad { nullptr };
async::CFileErrorCallback m_onFail { nullptr };
public:
LoadAsCFile (const FilePath & path, const char * mode) :
m_filePath(path), m_mode(mode) {}
auto & onLoaded (decltype(m_onLoad) onLoad) {
return m_onLoad = onLoad, *this;
}
auto & onLoadFailed (decltype(m_onFail) onFail) {
return m_onFail = onFail, *this;
}
~LoadAsCFile () {
assert(m_onLoad || m_onFail);
async::loadFileAsync(m_filePath, m_mode.c_str(), m_onLoad, m_onFail);
}
};
class LoadAsIFstream {
FilePath m_filePath;
async::IFStreamCallback m_onLoad { nullptr };
async::FilePathCallback m_onFail { nullptr };
public:
LoadAsIFstream (const FilePath & path) : m_filePath(path) {}
auto & onLoaded (decltype(m_onLoad) onLoad) {
return m_onLoad = onLoad, *this;
}
auto & onLoadFailed (decltype(m_onFail) onFail) {
return m_onFail = onFail, *this;
}
~LoadAsIFstream () {
assert(m_onLoad || m_onFail);
async::loadFileAsync(m_filePath, m_onLoad, m_onFail);
}
};
}; // namespace declarative
}; // namespace resource
}; // namespace gl_sandbox
#endif /* resource_layer_declarative_hpp */
| [
"semery@rmbp15.local"
] | semery@rmbp15.local |
71d85ea1f5ffbc9e71666f42f2384b4d3bc0ecc9 | 296d0085817212919debeee0aefafeaff6a84f3e | /Login/main.cpp | f2ae535134d6259bb1a6229c8191cc204aa3f062 | [] | no_license | qianshuangbei/AFM | 532e84b6438a59983b8642f7def18e68f6ae8ca0 | 237e3cef3b853f0c6c8719827f80859210258f57 | refs/heads/master | 2021-01-21T10:29:10.869633 | 2018-12-03T05:39:57 | 2018-12-03T05:39:57 | 83,434,364 | 1 | 8 | null | 2018-12-03T05:41:12 | 2017-02-28T13:15:55 | C++ | UTF-8 | C++ | false | false | 645 | cpp | #include "mainwindow.h"
#include <QApplication>
#include "logindialog.h"
#include "fvmainwindow.h"
#include <QTextCodec>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTextCodec::setCodecForLocale(QTextCodec::codecForLocale());
MainWindow w;
FVMainWindow fvw;
LoginDialog dlg;
if(dlg.exec() == QDialog::Accepted)
{
int T = dlg.L_connect;
if(T==0){
w.show();
return a.exec();
}
else if(T==1)
{
fvw.show();
return a.exec();
}
else return 0;
}
else return 0 ;
return a.exec();
}
| [
"qianshuangbei@tju.edu.cn"
] | qianshuangbei@tju.edu.cn |
290e3650c91749da64534b4a4f6b0e17890a0c20 | 77d6e6c5597b5e61bd10f7b53087679d0cb77790 | /SkeletalAnimation/SkeletalAnimation/Re/Graphics/Camera.cpp | 24233a324b18757203cfdd9b66e907879edb9b51 | [
"MIT"
] | permissive | Risist/Project-skeletal-animation | c455f9ef7551cefd2e2ac17b274f944038f31bb1 | 1f39d572521bfa0fef7ce9aebf32152608e3dc33 | refs/heads/master | 2021-09-04T21:48:10.897718 | 2018-01-22T13:11:32 | 2018-01-22T13:11:32 | 114,277,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | /// Code from ReEngine library
/// all rights belongs to Risist (Maciej Dominiak) (risistt@gmail.com)
#include "Camera.h"
Camera cam;
Camera::Camera() : lastScale(1), darkness(1), alpha(1)
{
setShakeBackFactors(0.9f, 0.9f, 0.9f, 0.9f);
}
void Camera::create(const sf::Vector2f& size, const sf::Vector2f& center)
{
reset(sf::FloatRect(size, size));
RenderTexture::create((unsigned int)size.x, (unsigned int)size.y);
setCenter(center);
}
void Camera::draw(const sf::Drawable & s, const RenderStates & states)
{
RenderTexture::draw(s,states);
}
void Camera::display(sf::RenderWindow& wnd, const RenderStates& states)
{
/// temporary here, move to another function "update" when multiplay cameras will be used at once
positionShakeResource.onUpdate(sf::seconds(1.f));
rotationShakeResource.onUpdate(sf::seconds(1.f));
auto v = getCenter();
auto a = getRotation();
setCenter(v + positionShakeResource.getValue());
setRotation(a + rotationShakeResource.getValue());
///
RenderTexture::display();
RenderTexture::setView(*this);
sf::Sprite sprite(RenderTexture::getTexture());
sprite.setColor(sf::Color(
(sf::Uint8)(255 * darkness),
(sf::Uint8)(255 * darkness),
(sf::Uint8)(255 * darkness),
(sf::Uint8)(255 * alpha)));
wnd.draw(sprite,states);
RenderTexture::clear(background);
///
setCenter(v);
setRotation(a);
///
} | [
"dmnn@op.pl"
] | dmnn@op.pl |
65fa7c721cfda06ad14df09a5c24a52375077bbd | c4e93e5e88b9a38fb1b5e4a398810c9e165df80f | /jobs/source/GetPendingJobExecutionsRequest.cpp | e4ea4cf42641ec84ce64988a9a82487828f7875b | [
"Apache-2.0"
] | permissive | aws/aws-iot-device-sdk-cpp-v2 | c7c441024e19a24d3ebf4cc9f05c2ed15a4c2b89 | 1ddf4ab749155abe195acab9f9505791a93b9b45 | refs/heads/main | 2023-09-03T15:05:45.057875 | 2023-09-01T20:33:54 | 2023-09-01T20:33:54 | 157,451,948 | 148 | 108 | Apache-2.0 | 2023-09-01T20:33:56 | 2018-11-13T21:51:08 | C++ | UTF-8 | C++ | false | false | 1,290 | cpp | /* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*
* This file is generated
*/
#include <aws/iotjobs/GetPendingJobExecutionsRequest.h>
namespace Aws
{
namespace Iotjobs
{
void GetPendingJobExecutionsRequest::LoadFromObject(
GetPendingJobExecutionsRequest &val,
const Aws::Crt::JsonView &doc)
{
(void)val;
(void)doc;
if (doc.ValueExists("clientToken"))
{
val.ClientToken = doc.GetString("clientToken");
}
}
void GetPendingJobExecutionsRequest::SerializeToObject(Aws::Crt::JsonObject &object) const
{
(void)object;
if (ClientToken)
{
object.WithString("clientToken", *ClientToken);
}
}
GetPendingJobExecutionsRequest::GetPendingJobExecutionsRequest(const Crt::JsonView &doc)
{
LoadFromObject(*this, doc);
}
GetPendingJobExecutionsRequest &GetPendingJobExecutionsRequest::operator=(const Crt::JsonView &doc)
{
*this = GetPendingJobExecutionsRequest(doc);
return *this;
}
} // namespace Iotjobs
} // namespace Aws
| [
"noreply@github.com"
] | noreply@github.com |
8cf4ab4ee6c55c484c1d4aeb1a76bfc729dac435 | 0758066960d0990bd4ce76805f93d9bc7c2b9b0f | /CS Class work/CS 170 Homework/april/LAB4_2.CPP | fc7eeec18dabcb33b8b03c14b1045ca0ef707068 | [] | no_license | mrsalt/USU | 4acf7ecf84663491582a834f31f69cfd17938d58 | 49cbc7bbc597f6780338f11bf341c86579bb3c02 | refs/heads/master | 2020-08-26T22:39:36.728764 | 2019-10-24T00:50:08 | 2019-10-24T02:18:11 | 217,167,673 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 417 | cpp | #include <iostream.h>
int main() {
cout << "Enter a positive integer m where m < n: " << flush;
int m;
cin >> m;
cout << "Enter a positive integer n where n > m: " << flush;
int n;
cin >> n;
int temp;
if (m > n) {
temp = m;
m = n;
n = temp;
}
int Sum = 0;
int i;
for (i = m; i <= n; ++i) {
Sum = Sum + i;
}
cout << "The sum from " << m << " to " << n << " is "
<< Sum << endl;
return 0;
}
| [
"fmark.salisbury@gmail.com"
] | fmark.salisbury@gmail.com |
c83a9e2ffc3f872f42caf6b133efa28ccad15ec2 | 346678ce0c5f01a49390057dbcb001d585c06541 | /src/common/primitive_attr.hpp | e5509014e84fba599e0097458e8dd725773db717 | [
"Apache-2.0",
"Intel"
] | permissive | wuhuikx/mkl-dnn-bk | 16e9c394d553c5b09f4e73fb7dcb36be03b3f98c | 5481ef7e869d7e80e16c84a665d9a311fce6ed02 | refs/heads/master | 2021-04-30T01:56:34.708046 | 2018-03-15T04:57:01 | 2018-03-15T04:57:01 | 121,357,885 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,440 | hpp | /*******************************************************************************
* Copyright 2017 Intel Corporation
*
* 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.
*******************************************************************************/
#ifndef PRIMITIVE_ATTR_HPP
#define PRIMITIVE_ATTR_HPP
#include "mkldnn.h"
#include "c_types_map.hpp"
#include "nstl.hpp"
#include "utils.hpp"
namespace mkldnn {
namespace impl {
struct scales_t: public c_compatible {
scales_t(): count_(1), mask_(0), scales_(scales_buf_)
{ set(1.); }
scales_t(const scales_t &rhs): scales_t()
{ set(rhs.count_, rhs.mask_, rhs.scales_); }
~scales_t() { cleanup(); }
scales_t &operator=(const scales_t &rhs) {
if (&rhs == this)
return *this;
status_t status = set(rhs.count_, rhs.mask_, rhs.scales_);
assert(status == status::success);
(void)status;
return *this;
}
bool has_default_values() const {
for (int c = 0; c < count_; ++c) {
if(scales_[c] != 1.) return false;
}
return true;
}
status_t set(int count, int mask, const float *scales);
status_t set(float single_scale) { return this->set(1, 0, &single_scale); }
int count_;
int mask_;
float *scales_;
private:
enum { scales_buf_size = 16 };
alignas(64) float scales_buf_[scales_buf_size];
void cleanup() {
if (scales_ != scales_buf_ && scales_ != nullptr)
impl::free(scales_);
count_ = 1;
mask_ = 0;
scales_ = scales_buf_;
}
};
}
}
struct mkldnn_post_ops: public mkldnn::impl::c_compatible {
struct entry_t {
mkldnn::impl::primitive_kind_t kind;
union {
struct { float scale; } sum;
struct {
mkldnn::impl::alg_kind_t alg;
float scale, alpha, beta;
} eltwise;
};
bool is_relu(bool require_scale_one = true,
bool require_nslope_zero = true) const {
using namespace mkldnn::impl;
return kind == primitive_kind::eltwise
&& utils::implication(require_scale_one, eltwise.scale == 1.f)
&& eltwise.alg == alg_kind::eltwise_relu
&& utils::implication(require_nslope_zero, eltwise.alpha == 0.);
}
};
mkldnn_post_ops(): len_(0) {}
mkldnn::impl::status_t append_sum(float scale);
mkldnn::impl::status_t append_eltwise(float scale,
mkldnn::impl::alg_kind_t alg, float alpha, float beta);
int find(mkldnn::impl::primitive_kind_t kind, int start = 0,
int stop = -1) const {
if (stop == -1) stop = len_;
stop = mkldnn::impl::nstl::min(stop, len_);
for (int idx = start; idx < stop; ++idx)
if (entry_[idx].kind == kind) return idx;
return -1;
}
bool has_default_values() const { return len_ == 0; }
bool contain(mkldnn::impl::primitive_kind_t kind, int index) const
{ return find(kind, index, index + 1) == index; }
enum { capacity = 4 };
int len_;
entry_t entry_[capacity];
};
struct mkldnn_primitive_attr: public mkldnn::impl::c_compatible {
mkldnn_primitive_attr()
: round_mode_(mkldnn::impl::round_mode::nearest) {}
mkldnn_primitive_attr *clone() const
{ return new mkldnn_primitive_attr(*this); }
bool has_default_values() const {
return true
&& round_mode_ == mkldnn::impl::round_mode::nearest
&& output_scales_.has_default_values()
&& post_ops_.has_default_values() ;
}
mkldnn::impl::status_t set_round_mode(
mkldnn::impl::round_mode_t round_mode);
mkldnn::impl::status_t set_post_ops(
const mkldnn::impl::post_ops_t &post_ops);
mkldnn::impl::round_mode_t round_mode_;
mkldnn::impl::scales_t output_scales_;
mkldnn::impl::post_ops_t post_ops_;
};
#endif
| [
"wuhui_csu@163.com"
] | wuhui_csu@163.com |
a3159d8d5a97da35fc93541a8c5a40918bd07dd8 | 2c55f75c7b671eb4132818d2950b6439ff75464d | /高等程序设计/作业二/第五章第15题.cpp | f5284b20fea6da4398928eccedd6c809edb67480 | [] | no_license | Monkeyman520/CPP | fb8fcbbcd55f51b3dd945aac180c614b884b1780 | a07df1456e52cbd44579e5e199cd209b3ae23a4c | refs/heads/master | 2020-09-27T12:06:29.300846 | 2018-09-16T03:26:09 | 2018-09-16T03:26:09 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 266 | cpp | //第五章第15题
#include <iostream>
#include <string>
using namespace std;
int main() {
int n;
cout << "输入n个字符串:" << endl;
cin >> n;
for (int i = 0; i < n; i++) {
string str;
cin >> str;
if (str[0] == 'A') {
cout << str;
}
}
}
| [
"1637894214@qq.com"
] | 1637894214@qq.com |
5f1ee824b599cdcf34d20ee1f5f6bfde9e7e4bff | d79646792af242c356a821f1d2284768648b3de1 | /VHM/RPi/path_automatron_simple.cpp | 4d8cf9f47e98566827cb15c4ab18ecab41d7d012 | [] | no_license | mlab-upenn/VHM_PMT_public | 0e40ba0af31caa9d5cf10dce1066459a1f83b472 | 628017b0d14183e7691b3ce6e7ce616ab5a25b0b | refs/heads/master | 2021-01-21T00:02:24.028597 | 2014-09-01T16:31:50 | 2014-09-01T16:31:50 | 23,087,868 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,496 | cpp | /*This function is used update the states of the path based on the condition in the nodes
*/
void path_automatron_simple(int *path_para,int* act_array)
{
int temp_act_1 = 0;
int temp_act_2 = 0;
int state = path_para[0];
switch(state)
{
case 1:
{ //idle
//if activation comng from entry node
if(act_array[0])
{
//antegrade conduction
path_para[0] = 2;
}
//activation from exit node
else if(act_array[1])
{
//retrograde conduction
path_para[0] = 3;
}
break;
}
case 2: { //antegrade conduction
//if activation from exit node
if(act_array[1])
{
//double
path_para[0] = 4;
}
else
{
//if timer running out
if(path_para[3] == 0)
{
//reset timer
path_para[3] = path_para[4];
//activate exit node
temp_act_2 = 1;
//go to conflict state
path_para[0] = 4;
}
else
{
//timer
path_para[3] = path_para[3] - 1;
}
}
break;
}
case 3: //retro
// if activation coming from entry node
{
if(act_array[0])
{
path_para[0] = 4; //conflict
}
else
{
//if timer runs out
if(path_para[5] == 0)
{
//reset timer
path_para[5] = path_para[6];
//activate entry node
temp_act_1 = 1;
//change state to conflict
path_para[0] = 4;
}
else
{
//timer
path_para[5] = path_para[5] - 1;
}
}
break;
}
case 4: //conflict
{
//use state 5 to delay 2 ms
path_para[0] = 5;
break;
}
case 5:
{
path_para[0] = 1;
break;
}
}
act_array[0] = temp_act_1;
act_array[1] = temp_act_2;
}
| [
"jangkj@seas.upenn.edu"
] | jangkj@seas.upenn.edu |
b5e4cee204c7747a670c0e2d9cdee4f4486419d6 | 97c3a0cdc0894e08d2afebbd1a6e86e3233312d2 | /data/AGNC-Lab_Quad/multithreaded/rosserial/sensor_msgs/MagneticField.h | 79856f56245b3d2e792bc8d9166a1a4cd433fbda | [
"MIT",
"BSD-2-Clause"
] | permissive | elbaum/phys | 139c17d9e4a5ed257657be9e5a3b4c580c460448 | 6ac580323493a5c6bb6846d039ae51e9ed1ec8b6 | refs/heads/master | 2020-03-21T13:25:09.513340 | 2018-06-24T21:05:43 | 2018-06-24T21:05:43 | 138,604,505 | 0 | 0 | MIT | 2018-06-25T14:15:26 | 2018-06-25T14:15:26 | null | UTF-8 | C++ | false | false | 3,254 | h | #ifndef _ROS_sensor_msgs_MagneticField_h
#define _ROS_sensor_msgs_MagneticField_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
#include "std_msgs/Header.h"
#include "geometry_msgs/Vector3.h"
namespace sensor_msgs
{
class MagneticField : public ros::Msg
{
public:
std_msgs::Header header;
geometry_msgs::Vector3 magnetic_field;
double magnetic_field_covariance[9];
MagneticField():
header(),
magnetic_field(),
magnetic_field_covariance()
{
}
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
offset += this->header.serialize(outbuffer + offset);
offset += this->magnetic_field.serialize(outbuffer + offset);
for( uint32_t i = 0; i < 9; i++){
union {
double real;
uint64_t base;
} u_magnetic_field_covariancei;
u_magnetic_field_covariancei.real = this->magnetic_field_covariance[i];
*(outbuffer + offset + 0) = (u_magnetic_field_covariancei.base >> (8 * 0)) & 0xFF;
*(outbuffer + offset + 1) = (u_magnetic_field_covariancei.base >> (8 * 1)) & 0xFF;
*(outbuffer + offset + 2) = (u_magnetic_field_covariancei.base >> (8 * 2)) & 0xFF;
*(outbuffer + offset + 3) = (u_magnetic_field_covariancei.base >> (8 * 3)) & 0xFF;
*(outbuffer + offset + 4) = (u_magnetic_field_covariancei.base >> (8 * 4)) & 0xFF;
*(outbuffer + offset + 5) = (u_magnetic_field_covariancei.base >> (8 * 5)) & 0xFF;
*(outbuffer + offset + 6) = (u_magnetic_field_covariancei.base >> (8 * 6)) & 0xFF;
*(outbuffer + offset + 7) = (u_magnetic_field_covariancei.base >> (8 * 7)) & 0xFF;
offset += sizeof(this->magnetic_field_covariance[i]);
}
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
offset += this->header.deserialize(inbuffer + offset);
offset += this->magnetic_field.deserialize(inbuffer + offset);
for( uint32_t i = 0; i < 9; i++){
union {
double real;
uint64_t base;
} u_magnetic_field_covariancei;
u_magnetic_field_covariancei.base = 0;
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6);
u_magnetic_field_covariancei.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7);
this->magnetic_field_covariance[i] = u_magnetic_field_covariancei.real;
offset += sizeof(this->magnetic_field_covariance[i]);
}
return offset;
}
const char * getType(){ return "sensor_msgs/MagneticField"; };
const char * getMD5(){ return "2f3b0b43eed0c9501de0fa3ff89a45aa"; };
};
}
#endif | [
"jpwco@bitbucket.org"
] | jpwco@bitbucket.org |
1915ea0589b364fa8cd9d000841b7c7aa053bc1c | 294cd9eba3eb9c546ce8d5d005fc76e14fa81390 | /rebound_build07_v01/rebound_build07_v01.ino | b364ddb7a6539865995afa1718d98d669f8f57c3 | [
"MIT"
] | permissive | JohnDHamm/rebound-arduino | 900778042990e2a0c8901ac13045b44a6aed9b11 | 64f395cf15194441d42de134d9bd51dc8e5496a4 | refs/heads/master | 2020-12-02T22:31:31.197635 | 2017-07-03T19:42:44 | 2017-07-03T19:42:44 | 96,144,364 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,008 | ino |
/*
rebound build 07 - finalize scoring + display
build 06 - add RGB LED with result feedback
+ correct button being pressed for period of time (ignore after 1st press)
+ start sequence
+ add "great" zone/alter "good" zone
+add serial feedback of zone + speed
build 05 - 1 player game setup (no brightness controls of LED runs)
*/
#include <ShiftRegister.h>
ShiftRegister sr(1, 8, 10, 9, 12);
int buttonApin = 13;
int ballSpeed = 300; //initial time between ball positions
int speedIncrease = 0; //factor to increase speed
//int turn=1; //keep track of how many "turns" (runs)
int score=0; //scoring value
int buttonPress = 0; //track if button pushed in time 0=no, 1=good, 2=great
int earlyZone = 50; //% of ballSpeed where button press in rebound zone is too early
int goodZone = 25; //% of ballSpeed where button press in rebound zone is good (early + good =100=interval between led 0 and home)
int greatZone = 25;
int lateZone = 50; //% of ballSpeed where button press in rebound zone is late, but accepted
int redHomePin = 3; //pin for homeRGB LED connected to red
int greenHomePin = 5; //pin for homeRGB LED connected to red
int blueHomePin = 6; //pin for homeRGB LED connected to red
int scoreTens = 0;
int scoreOnes = 0;
int counter = 0; //for score display calculation
//------------------------------setup---------------------------------
void setup() {
pinMode(buttonApin, INPUT_PULLUP);
Serial.begin(9600);
sr.setShiftOrder(MSBFIRST); //set order in which bits are shifted (MSBFIRST/LSBFIRST)
sr.clear(); //set all bits to low
//start sequence - home LED blinks purple 3x, then green once
while (! Serial); // Wait untilSerial is ready - Leonardo
Serial.println("Ready to start...");
for (int i = 0; i < 3; i++) {
allOff();
analogWrite(redHomePin, 0);
analogWrite(blueHomePin, 0);
delay (50);
allOff();
delay (ballSpeed - 50);
}
analogWrite(greenHomePin, 0);
delay (50);
allOff();
delay (ballSpeed - 50);
}
//-----------------------------game loop---------------------------------------
void loop() {
Serial.print("ball speed is ");
Serial.print(ballSpeed);
runUpDown();
reboundCheck();
if (buttonPress == 0) {
endGameLate();
}
if (buttonPress == 1) {
ballSpeedIncrease();
}
if (buttonPress == 2) {
ballSpeedDecrease();
}
}
//------------------functions---------------------------
//cycle of LEDs from start to end (0-7) and back (6-1) with check for early button push
void runUpDown() {
buttonPress=0;
for (int i = 0; i < 8; i++) {
for (int k = 0; k < 100; k++) {
sr.setBit(i, HIGH);
checkButtonBad();
delay(ballSpeed / 100);
}
sr.setBit(i, LOW);
}
allOff(); // to turn off home RGB LED feedback from previous rebound
for (int i = 6; i > 0; i--) {
for (int k = 0; k < 100; k++) {
sr.setBit(i, HIGH);
checkButtonBad();
delay(ballSpeed / 100);
}
sr.setBit(i, LOW);
}
}
//check bad button press during runUpDown + early rebound
void checkButtonBad() {
if (digitalRead(buttonApin) == LOW) {
Serial.println("too soon! ");
//Serial.println(k);
endGameEarly();
}
}
//check for button press in the rebound "zone"
void reboundCheck() {
for (int k = 0; k < earlyZone; k++) { //check for early button press 1st % of interval time
sr.setBit(0, HIGH);
checkButtonBad();
delay(ballSpeed / 100);
}
for (int k = 0; k < goodZone; k++) { //check for early button press in good % of interval time
if (buttonPress == 0) {
checkButtonGood();
}
delay(ballSpeed / 100);
}
for (int k = 0; k < greatZone; k++) { //check for early button press in great % of interval time
if (buttonPress == 0) {
checkButtonGreat();
}
delay(ballSpeed / 100);
}
sr.setBit(0, LOW); //turn off 1st ball
for (int k = 0; k < lateZone; k++) { //check for late button press % after
if (buttonPress == 0) {
checkButtonLate();
}
delay(ballSpeed / 100);
}
}
//check button press during "good" zone
void checkButtonGood() {
if (digitalRead(buttonApin) == LOW) {
buttonPress=1;
score = score + 1;
analogWrite(greenHomePin, 120);
analogWrite(blueHomePin, 0);
Serial.println("good! ");
Serial.print("score: ");
Serial.println(score);
}
}
//check button press during "great" zone
void checkButtonGreat() {
if (digitalRead(buttonApin) == LOW) {
buttonPress=2;
score = score + 3;
analogWrite(greenHomePin, 0);
Serial.println("great! ");
Serial.print("score: ");
Serial.println(score);
}
}
//check button press during "late" zone
void checkButtonLate() {
if (digitalRead(buttonApin) == LOW) {
buttonPress=1;
analogWrite(greenHomePin, 120);
analogWrite(redHomePin, 120);
Serial.println("late, but still good! ");
//sr.setBit(6, HIGH); //test to visualize button feedback
}
}
void ballSpeedIncrease() {
speedIncrease = ballSpeed / 10; //increase ballSpeed by 10% if in good zone, or late zone
ballSpeed = ballSpeed - speedIncrease;
//if (ballSpeed < 20) ballSpeed = 200;
}
void ballSpeedDecrease() {
speedIncrease = ballSpeed / 10;
ballSpeed = ballSpeed + speedIncrease; //decrease ballSpeed by 10% if in good zone, or late zone
//if (ballSpeed < 20) ballSpeed = 200;
}
//flashes all LEDs 50 times - button pressed too early
void endGameEarly() {
Serial.print("Game over. Final score: ");
Serial.println(score);
scoreDisplay();
/*for (int k=0; k<50; k++){
for (int i=0; i<8; i++) {
sr.setBit(i, HIGH);
}
analogWrite(redHomePin, 0);
delay(250);
allOff();
delay(250);
} */
}
//flashes all LEDs 50 times - button not pressed in time
void endGameLate() {
Serial.println("too late sucker!");
Serial.print("Game over. Final score: ");
Serial.println(score);
scoreDisplay();
/*for (int k=0; k<50; k++){
for (int i=0; i<8; i++) {
sr.setBit(i, HIGH);
}
analogWrite(blueHomePin, 0);
delay(50);
allOff();
delay(50);
} */
}
void allOff() {
for (int i=0; i<8; i++) {
sr.setBit(i, LOW);
analogWrite(redHomePin, 255);
analogWrite(greenHomePin, 255);
analogWrite(blueHomePin, 255);
}
}
//signify end of game, then display score
void scoreDisplay() {
for (int k=0; k<10; k++){ //flash all LEDs + home Red 10x
for (int i=0; i<8; i++) {
sr.setBit(i, HIGH);
}
analogWrite(redHomePin, 0);
delay(50);
allOff();
delay(50);
}
delay (1000);
for (int k=1; k<10; k++) { //calculate how many "tens" and "ones" in score
counter=k*10;
if (score > counter -1) {
scoreTens = counter/10;
scoreOnes = score - counter;
}
if (score < 10) {
scoreOnes = score;
}
}
Serial.print("scoreTens: ");
Serial.println(scoreTens);
Serial.print("scoreOnes: ");
Serial.println(scoreOnes);
score = 0; //reset score for reset button
ballSpeed = 300; //reset for testing
for (int k = 0; k <3; k++) { //display score 3x
for (int i=0; i<scoreTens; i++) { //display "tens" as green home flashes
analogWrite(greenHomePin, 0);
delay(500);
allOff();
delay(500);
}
if (scoreOnes > 0) {
for (int i=7; i>7-scoreOnes; i--) { //display "ones" as red leds from 8 to 0
sr.setBit(i, HIGH);
delay(500);
}
}
if (scoreOnes == 9) { //if ones=9, use redHome for 9th led
analogWrite(redHomePin, 0);
delay (500);
}
delay (1000);
allOff();
delay(500);
}
scoreTens = 0; //reset for testing
scoreOnes = 0; // ""
}
| [
"johndhamm1@gmail.com"
] | johndhamm1@gmail.com |
bfeb3950453a080f1802ec7b3835558542a2f57f | eb7836a0568ced450680a49fc21fdf53af3deeec | /aggressive cow.cpp | c8db4179b210f839afe872c6a09ac68fcd68aa77 | [] | no_license | rohilnain/SamsungPractice | b0f960eaa5195d5ed751fa987515f3a88b29f8b0 | 36a13d1cfde6c7f7d7952a80a7d2037e69dfd4e5 | refs/heads/master | 2023-09-04T15:18:00.305167 | 2021-05-22T10:11:38 | 2021-05-22T10:11:38 | 369,770,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,547 | cpp | /*
https://paste.ubuntu.com/p/ZtGjSfVwTV/
https://ide.codingblocks.com/s/16346
https://www.youtube.com/watch?v=TC6snf6KPdE
*/
/*
You are given an array of integers which represents positions available and an integer c(cows).
Now you have to choose c positions such that minimum difference between cows is maximized.
For example,
1 3 5 8 10
c=3
Output: 4
1 5 10
*/
#include<bits/stdc++.h>
using namespace std;
bool Comperator(int x,int a[],int n,int k){// We want to know if we can get at least x distance with k cows
int currentCows = 1;
int leftmost = 0;
for(int i=1;i<n;++i){
if(a[i] - a[leftmost] >= x){
leftmost = i;
++currentCows;
if(currentCows == k)
return 1;
}
}
return 0;
}
int main()
{
int t; cin >> t;
for(int i=0;i<t;++i){
int n,k;cin >> n >> k;
int a[100000];
for(int j=0;j<n;++j){
cin >> a[j];
}
sort(a,a+n);
int l = 0;
int r = a[n-1] - a[0] + 1;
// If we can do with x distance then obviosult we can do it with <=x.
// So We need to update it
//True True True True True True True . .. . . False False False ==> We want to find the last true
while(r - l > 0){
int m = (l + r + 1) /2;
if(Comperator(m,a,n,k)==true){
l = m; // l is true now
}
else
r = m-1; // R is false now
}
cout << l << '\n';
}
} | [
"shubhamkachroo@yahoo.co.in"
] | shubhamkachroo@yahoo.co.in |
a4eb04f19707fa44bbd44bcb09cf73f3776d3dd6 | 3195c0eeec8cde2f8c71d4cb2f44fd4c8189f416 | /TanksGame/PShot.cpp | c2636248ef6481f89350b4078a185519c1b16588 | [] | no_license | Daroface/TanksGame | 295b94b40d2ff95d3a6a1cb39c69a7fcb4de59ab | 194acc0af71375fcd03f06331641f2d37f014f96 | refs/heads/master | 2020-03-28T11:38:33.557966 | 2018-09-10T23:59:04 | 2018-09-10T23:59:04 | 148,234,205 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | cpp | #include "PShot.h"
using namespace sf;
using namespace std;
PShot::PShot(string path, int h, int w, Vector2i c, Vector2i r):GameObject(path, h, w, c)
{
rotation = r;
}
PShot::PShot()
{
}
int PShot::decre()
{
return 0;
}
int PShot::getLife()
{
return 0;
}
void PShot::move(Vector2f x)
{
cor.x = cor.x + x.x;
cor.y = cor.y + x.y;
img.move(x);
}
Sprite PShot::turnObject(Vector2f x)
{
return img;
}
Vector2i PShot::getRot()
{
return rotation;
}
PShot::~PShot()
{
}
| [
"dominik1050@gmail.com"
] | dominik1050@gmail.com |
fee7a91d4971bf52f8447f68f02f1caf28f70604 | 3841f7991232e02c850b7e2ff6e02712e9128b17 | /小浪底泥沙三维/EV_Xld/jni/src/EV_IndustryEngine_CSharp/EV_IndustryGraphic_CSharp/wrapper/simplelinemanager_wrapper.cpp | 0da85644f25e74f44da7cdd2cfcc61fecfd84517 | [] | no_license | 15831944/BeijingEVProjects | 62bf734f1cb0a8be6fed42cf6b207f9dbdf99e71 | 3b5fa4c4889557008529958fc7cb51927259f66e | refs/heads/master | 2021-07-22T14:12:15.106616 | 2017-10-15T11:33:06 | 2017-10-15T11:33:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267,797 | cpp | /* This file is produced by the P/Invoke AutoWrapper Utility
Copyright (c) 2012 by EarthView Image Inc */
#include "industryengine/industrygraphic/simplelinemanager.h"
namespace EarthView
{
namespace IndustryEngine
{
namespace IndustryGraphic
{
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback)(_in EarthView::IndustryEngine::IndustryGraphic::CSimpleline* pSelectedSimpleLine);
class CRaySelectedListenerProxy : public EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener
{
private:
EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback;
public:
CRaySelectedListenerProxy(EarthView::World::Core::CNameValuePairList *pList) : CRaySelectedListener(pList)
{
m_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback = NULL;
}
public:
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline(EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback = pCallback;
}
virtual void onSelectedChanged(_in EarthView::IndustryEngine::IndustryGraphic::CSimpleline* pSelectedSimpleLine)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback(pSelectedSimpleLine);
}
else
return this->CRaySelectedListener::onSelectedChanged(pSelectedSimpleLine);
}
};
REGISTER_FACTORY_CLASS(CRaySelectedListenerProxy);
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline(void *pObjectXXXX, _in EarthView::IndustryEngine::IndustryGraphic::CSimpleline* pSelectedSimpleLine )
{
EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener*) pObjectXXXX;
if (dynamic_cast<CRaySelectedListenerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener::onSelectedChanged(pSelectedSimpleLine);
else
ptrNativeObject->onSelectedChanged(pSelectedSimpleLine);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_Callback* pCallback )
{
CRaySelectedListenerProxy* ptr = dynamic_cast<CRaySelectedListenerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_onSelectedChanged_void_CSimpleline_NoVirtual(void *pObjectXXXX, _in EarthView::IndustryEngine::IndustryGraphic::CSimpleline* pSelectedSimpleLine )
{
EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener::onSelectedChanged(pSelectedSimpleLine);
}
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* _stdcall Get_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_ref_mpOperator( void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener*) pObjectXXXX;
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* objXXXX = ptrNativeObject->ref_mpOperator;
return objXXXX;
}
extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_IndustryEngine_IndustryGraphic_CRaySelectedListener_ref_mpOperator( void *pObjectXXXX, EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* value )
{
((EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener*)pObjectXXXX)->ref_mpOperator = value;
}
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback)(_in ev_bool visible, _in ev_bool cascade);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback)(_in ev_int32 selectedSubMeshIndex, _in ev_int32 selectedInstanceIndex, _in ev_int32 selectedSegmentIndex, _in ev_bool bSelected);
typedef const EarthView::World::Graphic::CMovableObject::CMovableObjectInternalAnimableObject* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback)();
typedef ev_uint8 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback)(_in EarthView::World::Graphic::CMovableObjectFactory* ref_fact);
typedef EarthView::World::Graphic::CMovableObjectFactory* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback)(_in EarthView::World::Graphic::CSceneManager* ref_mgr);
typedef EarthView::World::Graphic::CSceneManager* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback)();
typedef char* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback)();
typedef char* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback)();
typedef EarthView::World::Graphic::CNode* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback)();
typedef EarthView::World::Graphic::CSceneNode* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback)(_in EarthView::World::Graphic::CNode* ref_parent, _in ev_bool isTagPoint);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback)(_in EarthView::World::Graphic::CNode* ref_parent);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback)(_in const EarthView::World::Graphic::LightList* lightList);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback)(_in EarthView::World::Graphic::CMovableObject::CLightQueriedListener* listener);
typedef EarthView::World::Graphic::CMovableObject::CLightQueriedListener* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback)();
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback)(_in ev_uint32 frame);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback)(_in EarthView::World::Graphic::CCamera* ref_cam);
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback)();
typedef Real ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback)();
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback)(_in ev_bool derive);
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback)(_in EarthView::World::Graphic::CRenderQueue* queue);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback)(_in ev_bool visible);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback)(_in Real dist);
typedef Real ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback)(_in Real dist);
typedef Real ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback)(_in Real pixelSize);
typedef Real ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback)(_in const void* colour);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback)(_in const void* objIndics);
typedef void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback)(_in const void* ray, _in const EarthView::World::Graphic::CViewport* viewport, _in ev_bool prepareToRenderSelection, _out ev_int32& objIndex, _out void* point);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback)(_in const void* aabb, _in ev_bool prepareToRenderSelection, _out void* indexVec);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback)(_in const void* sphere, _in ev_bool prepareToRenderSelection, _out void* indexVec);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback)(_in const void* ray, _in const EarthView::World::Graphic::CViewport* viewport, _in ev_bool prepareToRenderSelection, _out ev_int32& objIndex, _out ev_int32& submeshIndex, _out ev_int32& instanceIndex, _out ev_int32& segmentIndex, _out void* point);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback)(_in ev_uint32 objectIndex);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback)();
typedef EarthView::World::Graphic::CEditBoundingBox* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback)(_in ev_uint32 objectIndex, _inout void* matrix);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback)(_in ev_uint32 objectIndex, _in const void* matrix);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback)(_in ev_uint8 queueID);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback)(_in ev_uint8 queueID, _in ev_uint16 priority);
typedef ev_uint8 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback)();
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback)(_in ev_uint32 flags);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback)(_in ev_uint32 flags);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback)(_in ev_uint32 flags);
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback)(_in ev_uint32 flags);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback)(_in ev_uint32 flags);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback)(_in ev_uint32 flags);
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback)(_in EarthView::World::Graphic::CMovableObject::CMovableObjectListener* ref_listener);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback)(_in EarthView::World::Graphic::CMovableObject::CMovableObjectListener* listener);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback)(_in EarthView::World::Graphic::CMovableObject::CMovableObjectListener* listener);
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback)();
typedef EarthView::World::Graphic::CMovableObject::CMovableObjectListener* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback)(_in ev_uint32 index);
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback)();
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback)(_in ev_uint32 lightMask);
typedef EarthView::World::Graphic::LightList* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback)(_in ev_bool enabled);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback)();
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback)(_in EarthView::World::Graphic::CRenderable::CVisitor* visitor, _in ev_bool debugRenderables);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback)(_in EarthView::World::Graphic::CRenderable::CVisitor* visitor);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback)(_in ev_bool enabled);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback)();
typedef EarthView::World::Graphic::CEdgeData* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback)();
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback)();
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback)(_in ev_bool derive);
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback)();
typedef const void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback)();
typedef void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback)(_in const void* light, _in Real dirLightExtrusionDist);
typedef void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback)(_in int shadowTechnique, _in const EarthView::World::Graphic::CLight* light, _in EarthView::World::Graphic::CHardwareIndexBufferSharedPtr* indexBuffer, _in ev_bool extrudeVertices, _in Real extrusionDistance, _in ev_uint32 flags);
typedef void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback)(_in int shadowTechnique, _in const EarthView::World::Graphic::CLight* light, _in EarthView::World::Graphic::CHardwareIndexBufferSharedPtr* indexBuffer, _in ev_bool extrudeVertices, _in Real extrusionDistance);
typedef Real ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback)(_in const EarthView::World::Graphic::CLight* l);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback)(_in EarthView::World::Graphic::CEdgeData* edgeData, _in const void* lightPos);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback)(_in EarthView::World::Graphic::CEdgeData* edgeData, _in const void* indexBuffer, _in const EarthView::World::Graphic::CLight* light, _inout void* shadowRenderables, _in ev_uint32 flags);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback)(_inout void* box, _in const void* lightPos, _in Real extrudeDist);
class CCustomEntityProxy : public EarthView::IndustryEngine::IndustryGraphic::CCustomEntity
{
private:
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback;
public:
CCustomEntityProxy(EarthView::World::Core::CNameValuePairList *pList) : CCustomEntity(pList)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback = NULL;
}
public:
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real(EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback = pCallback;
}
virtual void clearSelection()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback();
}
else
return this->CCustomEntity::clearSelection();
}
virtual ev_bool selectBy(_in const EarthView::World::Spatial::Math::CRay& ray, _in const EarthView::World::Graphic::CViewport* viewport, _in ev_bool prepareToRenderSelection, _out ev_int32& objIndex, _out EarthView::World::Spatial::Math::CVector3& point)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback(&ray, viewport, prepareToRenderSelection, objIndex, &point);
return returnValue;
}
else
return this->CCustomEntity::selectBy(ray, viewport, prepareToRenderSelection, objIndex, point);
}
virtual const EarthView::World::Spatial::Math::CMatrix4& _getParentNodeFullTransform() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CMatrix4& returnValue = *(EarthView::World::Spatial::Math::CMatrix4*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback();
return returnValue;
}
else
return this->CCustomEntity::_getParentNodeFullTransform();
}
virtual void setCastShadows(_in ev_bool enabled)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback(enabled);
}
else
return this->CCustomEntity::setCastShadows(enabled);
}
virtual void setVisible(_in ev_bool visible)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback(visible);
}
else
return this->CCustomEntity::setVisible(visible);
}
virtual void setVisible(_in ev_bool visible, _in ev_bool cascade)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback(visible, cascade);
}
else
return this->CCustomEntity::setVisible(visible, cascade);
}
virtual void _notifyCurrentCamera(_in EarthView::World::Graphic::CCamera* ref_cam)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback(ref_cam);
}
else
return this->CCustomEntity::_notifyCurrentCamera(ref_cam);
}
virtual void setRenderQueueGroup(_in ev_uint8 queueID)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback(queueID);
}
else
return this->CCustomEntity::setRenderQueueGroup(queueID);
}
virtual void setRenderQueueGroupAndPriority(_in ev_uint8 queueID, _in ev_uint16 priority)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback(queueID, priority);
}
else
return this->CCustomEntity::setRenderQueueGroupAndPriority(queueID, priority);
}
virtual const EarthView::World::Spatial::Math::CAxisAlignedBox& getBoundingBox() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CAxisAlignedBox& returnValue = *(EarthView::World::Spatial::Math::CAxisAlignedBox*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback();
return returnValue;
}
else
return this->CCustomEntity::getBoundingBox();
}
virtual void _updateRenderQueue(_in EarthView::World::Graphic::CRenderQueue* queue)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback(queue);
}
else
return this->CCustomEntity::_updateRenderQueue(queue);
}
virtual EVString getMovableType() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback != NULL && this->isCustomExtend())
{
EVString returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback();
return returnValue;
}
else
return this->CCustomEntity::getMovableType();
}
virtual ev_bool setSelected(_in const EarthView::World::Core::IntVector& objIndics)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback(&objIndics);
return returnValue;
}
else
return this->CCustomEntity::setSelected(objIndics);
}
virtual EarthView::World::Core::IntVector getSelected() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Core::IntVector returnValue = *(EarthView::World::Core::IntVector*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback();
return returnValue;
}
else
return this->CCustomEntity::getSelected();
}
virtual void setSelectionColour(_in const EarthView::World::Graphic::CColourValue& colour)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback(&colour);
}
else
return this->CCustomEntity::setSelectionColour(colour);
}
virtual ev_bool selectComponentBy(_in const EarthView::World::Spatial::Math::CRay& ray, _in const EarthView::World::Graphic::CViewport* viewport, _in ev_bool prepareToRenderSelection, _out ev_int32& objIndex, _out ev_int32& submeshIndex, _out ev_int32& instanceIndex, _out ev_int32& segmentIndex, _out EarthView::World::Spatial::Math::CVector3& point)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback(&ray, viewport, prepareToRenderSelection, objIndex, submeshIndex, instanceIndex, segmentIndex, &point);
return returnValue;
}
else
return this->CCustomEntity::selectComponentBy(ray, viewport, prepareToRenderSelection, objIndex, submeshIndex, instanceIndex, segmentIndex, point);
}
virtual void setprepareSelect(_in ev_int32 selectedSubMeshIndex, _in ev_int32 selectedInstanceIndex, _in ev_int32 selectedSegmentIndex, _in ev_bool bSelected)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback(selectedSubMeshIndex, selectedInstanceIndex, selectedSegmentIndex, bSelected);
}
else
return this->CCustomEntity::setprepareSelect(selectedSubMeshIndex, selectedInstanceIndex, selectedSegmentIndex, bSelected);
}
virtual void renderSelection()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback();
}
else
return this->CCustomEntity::renderSelection();
}
virtual ev_bool startEditing(_in ev_uint32 objectIndex)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback(objectIndex);
return returnValue;
}
else
return this->CCustomEntity::startEditing(objectIndex);
}
virtual void endEditing()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback();
}
else
return this->CCustomEntity::endEditing();
}
virtual EarthView::World::Graphic::CEditBoundingBox* getEditBoundingBox()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CEditBoundingBox* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback();
return returnValue;
}
else
return this->CCustomEntity::getEditBoundingBox();
}
virtual ev_bool getSelectedObjectWorldMatrix(_in ev_uint32 objectIndex, _inout EarthView::World::Spatial::Math::CMatrix4& matrix)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback(objectIndex, &matrix);
return returnValue;
}
else
return this->CCustomEntity::getSelectedObjectWorldMatrix(objectIndex, matrix);
}
virtual ev_bool setSelectedObjectWorldMatrix(_in ev_uint32 objectIndex, _in const EarthView::World::Spatial::Math::CMatrix4& matrix)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback(objectIndex, &matrix);
return returnValue;
}
else
return this->CCustomEntity::setSelectedObjectWorldMatrix(objectIndex, matrix);
}
virtual Real getBoundingRadius() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback != NULL && this->isCustomExtend())
{
Real returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback();
return returnValue;
}
else
return this->CCustomEntity::getBoundingRadius();
}
virtual const EarthView::World::Spatial::Math::CAxisAlignedBox& getWorldBoundingBox(_in ev_bool derive) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CAxisAlignedBox& returnValue = *(EarthView::World::Spatial::Math::CAxisAlignedBox*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback(derive);
return returnValue;
}
else
return this->CCustomEntity::getWorldBoundingBox(derive);
}
virtual const EarthView::World::Spatial::Math::CAxisAlignedBox& getWorldBoundingBox() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CAxisAlignedBox& returnValue = *(EarthView::World::Spatial::Math::CAxisAlignedBox*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback();
return returnValue;
}
else
return this->CCustomEntity::getWorldBoundingBox();
}
virtual const EarthView::World::Spatial::Math::CSphere& getWorldBoundingSphere(_in ev_bool derive) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CSphere& returnValue = *(EarthView::World::Spatial::Math::CSphere*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback(derive);
return returnValue;
}
else
return this->CCustomEntity::getWorldBoundingSphere(derive);
}
virtual const EarthView::World::Spatial::Math::CSphere& getWorldBoundingSphere() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CSphere& returnValue = *(EarthView::World::Spatial::Math::CSphere*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback();
return returnValue;
}
else
return this->CCustomEntity::getWorldBoundingSphere();
}
virtual EarthView::World::Graphic::CEdgeData* getEdgeList()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CEdgeData* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback();
return returnValue;
}
else
return this->CCustomEntity::getEdgeList();
}
virtual ev_bool hasEdgeList()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::hasEdgeList();
}
virtual EarthView::World::Graphic::CShadowCaster::ShadowRenderableListIterator getShadowVolumeRenderableIterator(_in EarthView::World::Graphic::ShadowTechnique shadowTechnique, _in const EarthView::World::Graphic::CLight* light, _in EarthView::World::Graphic::CHardwareIndexBufferSharedPtr* indexBuffer, _in ev_bool extrudeVertices, _in Real extrusionDistance, _in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CShadowCaster::ShadowRenderableListIterator returnValue = *(EarthView::World::Graphic::CShadowCaster::ShadowRenderableListIterator*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback((int)shadowTechnique, light, indexBuffer, extrudeVertices, extrusionDistance, flags);
return returnValue;
}
else
return this->CCustomEntity::getShadowVolumeRenderableIterator(shadowTechnique, light, indexBuffer, extrudeVertices, extrusionDistance, flags);
}
virtual EarthView::World::Graphic::CShadowCaster::ShadowRenderableListIterator getShadowVolumeRenderableIterator(_in EarthView::World::Graphic::ShadowTechnique shadowTechnique, _in const EarthView::World::Graphic::CLight* light, _in EarthView::World::Graphic::CHardwareIndexBufferSharedPtr* indexBuffer, _in ev_bool extrudeVertices, _in Real extrusionDistance)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CShadowCaster::ShadowRenderableListIterator returnValue = *(EarthView::World::Graphic::CShadowCaster::ShadowRenderableListIterator*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback((int)shadowTechnique, light, indexBuffer, extrudeVertices, extrusionDistance);
return returnValue;
}
else
return this->CCustomEntity::getShadowVolumeRenderableIterator(shadowTechnique, light, indexBuffer, extrudeVertices, extrusionDistance);
}
virtual void _notifyAttached(_in EarthView::World::Graphic::CNode* ref_parent, _in ev_bool isTagPoint)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback(ref_parent, isTagPoint);
}
else
return this->CCustomEntity::_notifyAttached(ref_parent, isTagPoint);
}
virtual void _notifyAttached(_in EarthView::World::Graphic::CNode* ref_parent)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback(ref_parent);
}
else
return this->CCustomEntity::_notifyAttached(ref_parent);
}
virtual ev_uint32 getTypeFlags() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback();
return returnValue;
}
else
return this->CCustomEntity::getTypeFlags();
}
virtual void visitRenderables(_in EarthView::World::Graphic::CRenderable::CVisitor* visitor, _in ev_bool debugRenderables)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback(visitor, debugRenderables);
}
else
return this->CCustomEntity::visitRenderables(visitor, debugRenderables);
}
virtual void visitRenderables(_in EarthView::World::Graphic::CRenderable::CVisitor* visitor)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback(visitor);
}
else
return this->CCustomEntity::visitRenderables(visitor);
}
virtual const EarthView::World::Graphic::CMovableObject::CMovableObjectInternalAnimableObject* getAnimableObjectPtr()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Graphic::CMovableObject::CMovableObjectInternalAnimableObject* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback();
return returnValue;
}
else
return this->CCustomEntity::getAnimableObjectPtr();
}
virtual ev_uint8 getRenderQueueId() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback != NULL && this->isCustomExtend())
{
ev_uint8 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback();
return returnValue;
}
else
return this->CCustomEntity::getRenderQueueId();
}
virtual void _notifyCreator(_in EarthView::World::Graphic::CMovableObjectFactory* ref_fact)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback(ref_fact);
}
else
return this->CCustomEntity::_notifyCreator(ref_fact);
}
virtual EarthView::World::Graphic::CMovableObjectFactory* _getCreator() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CMovableObjectFactory* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback();
return returnValue;
}
else
return this->CCustomEntity::_getCreator();
}
virtual void _notifyManager(_in EarthView::World::Graphic::CSceneManager* ref_mgr)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback(ref_mgr);
}
else
return this->CCustomEntity::_notifyManager(ref_mgr);
}
virtual EarthView::World::Graphic::CSceneManager* _getManager() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CSceneManager* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback();
return returnValue;
}
else
return this->CCustomEntity::_getManager();
}
virtual EVString getName() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback != NULL && this->isCustomExtend())
{
EVString returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback();
return returnValue;
}
else
return this->CCustomEntity::getName();
}
virtual EarthView::World::Graphic::CNode* getParentNode() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CNode* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback();
return returnValue;
}
else
return this->CCustomEntity::getParentNode();
}
virtual EarthView::World::Graphic::CSceneNode* getParentSceneNode() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CSceneNode* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback();
return returnValue;
}
else
return this->CCustomEntity::getParentSceneNode();
}
virtual ev_bool isParentTagPoint() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::isParentTagPoint();
}
virtual ev_bool isAttached() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::isAttached();
}
virtual void detachFromParent()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback();
}
else
return this->CCustomEntity::detachFromParent();
}
virtual ev_bool isInScene() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::isInScene();
}
virtual void _notifyMoved()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback();
}
else
return this->CCustomEntity::_notifyMoved();
}
virtual void _notifyLightsQueried(_in const EarthView::World::Graphic::LightList* lightList)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback(lightList);
}
else
return this->CCustomEntity::_notifyLightsQueried(lightList);
}
virtual void setLightQueriedListener(_in EarthView::World::Graphic::CMovableObject::CLightQueriedListener* listener)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback(listener);
}
else
return this->CCustomEntity::setLightQueriedListener(listener);
}
virtual EarthView::World::Graphic::CMovableObject::CLightQueriedListener* getLightQueriedListener()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CMovableObject::CLightQueriedListener* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback();
return returnValue;
}
else
return this->CCustomEntity::getLightQueriedListener();
}
virtual ev_uint32 getLightListUpdated() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback();
return returnValue;
}
else
return this->CCustomEntity::getLightListUpdated();
}
virtual void setLightListUpdated(_in ev_uint32 frame)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback(frame);
}
else
return this->CCustomEntity::setLightListUpdated(frame);
}
virtual ev_bool getVisible() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::getVisible();
}
virtual ev_bool isVisible() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::isVisible();
}
virtual void setRenderingMaxDistance(_in Real dist)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback(dist);
}
else
return this->CCustomEntity::setRenderingMaxDistance(dist);
}
virtual Real getRenderingMaxDistance() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback != NULL && this->isCustomExtend())
{
Real returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback();
return returnValue;
}
else
return this->CCustomEntity::getRenderingMaxDistance();
}
virtual void setRenderingMinDistance(_in Real dist)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback(dist);
}
else
return this->CCustomEntity::setRenderingMinDistance(dist);
}
virtual Real getRenderingMinDistance() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback != NULL && this->isCustomExtend())
{
Real returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback();
return returnValue;
}
else
return this->CCustomEntity::getRenderingMinDistance();
}
virtual void setRenderingMinPixelSize(_in Real pixelSize)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback(pixelSize);
}
else
return this->CCustomEntity::setRenderingMinPixelSize(pixelSize);
}
virtual Real getRenderingMinPixelSize() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback != NULL && this->isCustomExtend())
{
Real returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback();
return returnValue;
}
else
return this->CCustomEntity::getRenderingMinPixelSize();
}
virtual ev_uint8 getRenderQueueGroup() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback != NULL && this->isCustomExtend())
{
ev_uint8 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback();
return returnValue;
}
else
return this->CCustomEntity::getRenderQueueGroup();
}
virtual void setQueryFlags(_in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback(flags);
}
else
return this->CCustomEntity::setQueryFlags(flags);
}
virtual void addQueryFlags(_in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback(flags);
}
else
return this->CCustomEntity::addQueryFlags(flags);
}
virtual void removeQueryFlags(_in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback(flags);
}
else
return this->CCustomEntity::removeQueryFlags(flags);
}
virtual ev_uint32 getQueryFlags() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback();
return returnValue;
}
else
return this->CCustomEntity::getQueryFlags();
}
virtual void setVisibilityFlags(_in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback(flags);
}
else
return this->CCustomEntity::setVisibilityFlags(flags);
}
virtual void addVisibilityFlags(_in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback(flags);
}
else
return this->CCustomEntity::addVisibilityFlags(flags);
}
virtual void removeVisibilityFlags(_in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback(flags);
}
else
return this->CCustomEntity::removeVisibilityFlags(flags);
}
virtual ev_uint32 getVisibilityFlags() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback();
return returnValue;
}
else
return this->CCustomEntity::getVisibilityFlags();
}
virtual void addListener(_in EarthView::World::Graphic::CMovableObject::CMovableObjectListener* ref_listener)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback(ref_listener);
}
else
return this->CCustomEntity::addListener(ref_listener);
}
virtual void removeListener(_in EarthView::World::Graphic::CMovableObject::CMovableObjectListener* listener)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback(listener);
}
else
return this->CCustomEntity::removeListener(listener);
}
virtual ev_bool existListener(_in EarthView::World::Graphic::CMovableObject::CMovableObjectListener* listener) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback(listener);
return returnValue;
}
else
return this->CCustomEntity::existListener(listener);
}
virtual ev_uint32 getListenerCount() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback();
return returnValue;
}
else
return this->CCustomEntity::getListenerCount();
}
virtual EarthView::World::Graphic::CMovableObject::CMovableObjectListener* getListener(_in ev_uint32 index) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CMovableObject::CMovableObjectListener* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback(index);
return returnValue;
}
else
return this->CCustomEntity::getListener(index);
}
virtual const EarthView::World::Graphic::LightList& queryLights() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Graphic::LightList& returnValue = *(EarthView::World::Graphic::LightList*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback();
return returnValue;
}
else
return this->CCustomEntity::queryLights();
}
virtual ev_uint32 getLightMask() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback();
return returnValue;
}
else
return this->CCustomEntity::getLightMask();
}
virtual void setLightMask(_in ev_uint32 lightMask)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback(lightMask);
}
else
return this->CCustomEntity::setLightMask(lightMask);
}
virtual EarthView::World::Graphic::LightList* _getLightList()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::LightList* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback();
return returnValue;
}
else
return this->CCustomEntity::_getLightList();
}
virtual const EarthView::World::Spatial::Math::CAxisAlignedBox& getLightCapBounds() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback != NULL && this->isCustomExtend())
{
const EarthView::World::Spatial::Math::CAxisAlignedBox& returnValue = *(EarthView::World::Spatial::Math::CAxisAlignedBox*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback();
return returnValue;
}
else
return this->CCustomEntity::getLightCapBounds();
}
virtual EarthView::World::Spatial::Math::CAxisAlignedBox getDarkCapBounds(_in const EarthView::World::Graphic::CLight& light, _in Real dirLightExtrusionDist) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Spatial::Math::CAxisAlignedBox returnValue = *(EarthView::World::Spatial::Math::CAxisAlignedBox*)m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback(&light, dirLightExtrusionDist);
return returnValue;
}
else
return this->CCustomEntity::getDarkCapBounds(light, dirLightExtrusionDist);
}
virtual ev_bool getCastShadows() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::getCastShadows();
}
virtual ev_bool getReceivesShadows()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::getReceivesShadows();
}
virtual Real getPointExtrusionDistance(_in const EarthView::World::Graphic::CLight* l) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback != NULL && this->isCustomExtend())
{
Real returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback(l);
return returnValue;
}
else
return this->CCustomEntity::getPointExtrusionDistance(l);
}
virtual void setDebugDisplayEnabled(_in ev_bool enabled)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback(enabled);
}
else
return this->CCustomEntity::setDebugDisplayEnabled(enabled);
}
virtual ev_bool isDebugDisplayEnabled() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntity::isDebugDisplayEnabled();
}
virtual void updateEdgeListLightFacing(_in EarthView::World::Graphic::CEdgeData* edgeData, _in const EarthView::World::Spatial::Math::CVector4& lightPos)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback(edgeData, &lightPos);
}
else
return this->CCustomEntity::updateEdgeListLightFacing(edgeData, lightPos);
}
virtual void generateShadowVolume(_in EarthView::World::Graphic::CEdgeData* edgeData, _in const EarthView::World::Graphic::CHardwareIndexBufferSharedPtr& indexBuffer, _in const EarthView::World::Graphic::CLight* light, _inout EarthView::World::Graphic::CShadowCaster::ShadowRenderableList& shadowRenderables, _in ev_uint32 flags)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback(edgeData, &indexBuffer, light, &shadowRenderables, flags);
}
else
return this->CCustomEntity::generateShadowVolume(edgeData, indexBuffer, light, shadowRenderables, flags);
}
virtual void extrudeBounds(_inout EarthView::World::Spatial::Math::CAxisAlignedBox& box, _in const EarthView::World::Spatial::Math::CVector4& lightPos, _in Real extrudeDist) const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback(&box, &lightPos, extrudeDist);
}
else
return this->CCustomEntity::extrudeBounds(box, lightPos, extrudeDist);
}
};
REGISTER_FACTORY_CLASS(CCustomEntityProxy);
extern "C" EV_DLL_EXPORT EarthView::World::Graphic::CSubEntity* _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelctedSubEntity_CSubEntity(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
EarthView::World::Graphic::CSubEntity* objXXXX = ptrNativeObject->getSelctedSubEntity();
return objXXXX;
}
extern "C" EV_DLL_EXPORT ev_uint32 _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelctedIndex1_ev_uint32(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
ev_uint32 objXXXX = ptrNativeObject->getSelctedIndex1();
return objXXXX;
}
extern "C" EV_DLL_EXPORT ev_uint32 _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelctedIndex2_ev_uint32(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
ev_uint32 objXXXX = ptrNativeObject->getSelctedIndex2();
return objXXXX;
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
if (dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntity::clearSelection();
else
ptrNativeObject->clearSelection();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_clearSelection_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntity::clearSelection();
}
extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3(void *pObjectXXXX, _in const void* ray, _in const EarthView::World::Graphic::CViewport* viewport, _in ev_bool prepareToRenderSelection, _out ev_int32& objIndex, _out void* point )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
if (dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*)ptrNativeObject) != NULL)
{
ev_bool objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntity::selectBy(*(EarthView::World::Spatial::Math::CRay*)ray, viewport, prepareToRenderSelection, objIndex, *(EarthView::World::Spatial::Math::CVector3*)point);
return objXXXX;
}
else
{
ev_bool objXXXX = ptrNativeObject->selectBy(*(EarthView::World::Spatial::Math::CRay*)ray, viewport, prepareToRenderSelection, objIndex, *(EarthView::World::Spatial::Math::CVector3*)point);
return objXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_bool _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_CVector3_NoVirtual(void *pObjectXXXX, _in const void* ray, _in const EarthView::World::Graphic::CViewport* viewport, _in ev_bool prepareToRenderSelection, _out ev_int32& objIndex, _out void* point )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntity* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX;
ev_bool objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntity::selectBy(*(EarthView::World::Spatial::Math::CRay*)ray, viewport, prepareToRenderSelection, objIndex, *(EarthView::World::Spatial::Math::CVector3*)point);
return objXXXX;
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setprepareSelect_void_ev_int32_ev_int32_ev_int32_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getAnimableObjectPtr_CMovableObjectInternalAnimableObject(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueId_ev_uint8(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCreator_void_CMovableObjectFactory(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getCreator_CMovableObjectFactory(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyManager_void_CSceneManager(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getManager_CSceneManager(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getName_EVString(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getMovableType_EVString(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentNode_CNode(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getParentSceneNode_CSceneNode(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isParentTagPoint_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyAttached_void_CNode(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isAttached_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_detachFromParent_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isInScene_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyMoved_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyLightsQueried_void_LightList(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightQueriedListener_void_CLightQueriedListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightQueriedListener_CLightQueriedListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightListUpdated_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightListUpdated_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__notifyCurrentCamera_void_CCamera(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingBox_CAxisAlignedBox(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getBoundingRadius_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingSphere_CSphere(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__updateRenderQueue_void_CRenderQueue(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisible_void_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisible_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isVisible_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMaxDistance_void_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMaxDistance_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinDistance_void_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinDistance_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderingMinPixelSize_void_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderingMinPixelSize_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectionColour_void_CColourValue(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelected_ev_bool_IntVector(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelected_IntVector(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CAxisAlignedBox_ev_bool_IntVector(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectBy_ev_bool_CSphere_ev_bool_IntVector(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_selectComponentBy_ev_bool_CRay_CViewport_ev_bool_ev_int32_ev_int32_ev_int32_ev_int32_CVector3(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_renderSelection_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_startEditing_ev_bool_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_endEditing_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEditBoundingBox_CEditBoundingBox(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setSelectedObjectWorldMatrix_ev_bool_ev_uint32_CMatrix4(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroup_void_ev_uint8(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setRenderQueueGroupAndPriority_void_ev_uint8_ev_uint16(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getRenderQueueGroup_ev_uint8(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getParentNodeFullTransform_CMatrix4(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setQueryFlags_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addQueryFlags_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeQueryFlags_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getQueryFlags_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setVisibilityFlags_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addVisibilityFlags_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeVisibilityFlags_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getVisibilityFlags_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_addListener_void_CMovableObjectListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_removeListener_void_CMovableObjectListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_existListener_ev_bool_CMovableObjectListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListenerCount_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getListener_CMovableObjectListener_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_queryLights_LightList(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightMask_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setLightMask_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity__getLightList_LightList(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setCastShadows_void_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getReceivesShadows_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getTypeFlags_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_visitRenderables_void_CVisitor(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_setDebugDisplayEnabled_void_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_isDebugDisplayEnabled_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getCastShadows_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getEdgeList_CEdgeData(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_hasEdgeList_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_ev_bool(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getWorldBoundingBox_CAxisAlignedBox(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getLightCapBounds_CAxisAlignedBox(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getDarkCapBounds_CAxisAlignedBox_CLight_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getShadowVolumeRenderableIterator_ShadowRenderableListIterator_ShadowTechnique_CLight_CHardwareIndexBufferSharedPtr_ev_bool_Real(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_getPointExtrusionDistance_Real_CLight(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_updateEdgeListLightFacing_void_CEdgeData_CVector4(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_generateShadowVolume_void_CEdgeData_CHardwareIndexBufferSharedPtr_CLight_ShadowRenderableList_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real_Callback* pCallback )
{
CCustomEntityProxy* ptr = dynamic_cast<CCustomEntityProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntity*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntity_extrudeBounds_void_CAxisAlignedBox_CVector4_Real(pCallback);
}
}
typedef EarthView::World::Graphic::CMovableObject* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback)(_in char*& name, _in const EarthView::World::Core::CommonStringPairList* params);
typedef EarthView::World::Graphic::CMovableObject* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback)(_in char*& name);
typedef char* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback)();
typedef EarthView::World::Graphic::CMovableObject* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback)(_in char*& name, _in EarthView::World::Graphic::CSceneManager* ref_manager, _in const EarthView::World::Core::CommonStringPairList* params);
typedef EarthView::World::Graphic::CMovableObject* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback)(_in char*& name, _in EarthView::World::Graphic::CSceneManager* ref_manager);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback)(_in EarthView::World::Graphic::CMovableObject* obj);
typedef ev_bool ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback)();
class CCustomEntityFactoryProxy : public EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory
{
private:
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback;
EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback;
public:
CCustomEntityFactoryProxy(EarthView::World::Core::CNameValuePairList *pList) : CCustomEntityFactory(pList)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback = NULL;
}
public:
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool(EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback = pCallback;
}
virtual EarthView::World::Graphic::CMovableObject* createInstanceImpl(_in const EVString& name, _in const EarthView::World::Core::CommonStringPairList* params)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback != NULL && this->isCustomExtend())
{
char* name_Char = name.makeBuffer();
EarthView::World::Graphic::CMovableObject* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback(name_Char, params);
return returnValue;
}
else
return this->CCustomEntityFactory::createInstanceImpl(name, params);
}
virtual EVString getType() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback != NULL && this->isCustomExtend())
{
EVString returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback();
return returnValue;
}
else
return this->CCustomEntityFactory::getType();
}
virtual void destroyInstance(_in EarthView::World::Graphic::CMovableObject* obj)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback(obj);
}
else
return this->CCustomEntityFactory::destroyInstance(obj);
}
virtual EarthView::World::Graphic::CMovableObject* createInstance(_in const EVString& name, _in EarthView::World::Graphic::CSceneManager* ref_manager, _in const EarthView::World::Core::CommonStringPairList* params)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback != NULL && this->isCustomExtend())
{
char* name_Char = name.makeBuffer();
EarthView::World::Graphic::CMovableObject* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback(name_Char, ref_manager, params);
return returnValue;
}
else
return this->CCustomEntityFactory::createInstance(name, ref_manager, params);
}
virtual EarthView::World::Graphic::CMovableObject* createInstance(_in const EVString& name, _in EarthView::World::Graphic::CSceneManager* ref_manager)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback != NULL && this->isCustomExtend())
{
char* name_Char = name.makeBuffer();
EarthView::World::Graphic::CMovableObject* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback(name_Char, ref_manager);
return returnValue;
}
else
return this->CCustomEntityFactory::createInstance(name, ref_manager);
}
virtual ev_bool requestTypeFlags() const
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback != NULL && this->isCustomExtend())
{
ev_bool returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback();
return returnValue;
}
else
return this->CCustomEntityFactory::requestTypeFlags();
}
};
REGISTER_FACTORY_CLASS(CCustomEntityFactoryProxy);
extern "C" EV_DLL_EXPORT EarthView::World::Graphic::CMovableObject* _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList(void *pObjectXXXX, _in const char* name, _in const EarthView::World::Core::CommonStringPairList* params )
{
EarthView::World::Core::ev_string name1 = name;
EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX;
if (dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*)ptrNativeObject) != NULL)
{
EarthView::World::Graphic::CMovableObject* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::createInstanceImpl(name1, params);
return objXXXX;
}
else
{
EarthView::World::Graphic::CMovableObject* objXXXX = ptrNativeObject->createInstanceImpl(name1, params);
return objXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList(pCallback);
}
}
extern "C" EV_DLL_EXPORT EarthView::World::Graphic::CMovableObject* _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_CommonStringPairList_NoVirtual(void *pObjectXXXX, _in const char* name, _in const EarthView::World::Core::CommonStringPairList* params )
{
EarthView::World::Core::ev_string name1 = name;
EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX;
EarthView::World::Graphic::CMovableObject* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::createInstanceImpl(name1, params);
return objXXXX;
}
extern "C" EV_DLL_EXPORT char* _stdcall Get_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_CUSTOM_FACTORY_TYPE_NAME()
{
EVString objXXXX = EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::CUSTOM_FACTORY_TYPE_NAME;
return objXXXX.makeBuffer();
}
extern "C" EV_DLL_EXPORT void _stdcall Set_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_CUSTOM_FACTORY_TYPE_NAME( char* value )
{
EarthView::World::Core::ev_string value1 = value;
EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::CUSTOM_FACTORY_TYPE_NAME = value1;
}
extern "C" EV_DLL_EXPORT char* _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString(void *pObjectXXXX )
{
const EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX;
if (dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*)ptrNativeObject) != NULL)
{
EVString objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::getType();
return objXXXX.makeBuffer();
}
else
{
EVString objXXXX = ptrNativeObject->getType();
return objXXXX.makeBuffer();
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString(pCallback);
}
}
extern "C" EV_DLL_EXPORT char* _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_getType_EVString_NoVirtual(void *pObjectXXXX )
{
const EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX;
EVString objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::getType();
return objXXXX.makeBuffer();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject(void *pObjectXXXX, _in EarthView::World::Graphic::CMovableObject* obj )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX;
if (dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::destroyInstance(obj);
else
ptrNativeObject->destroyInstance(obj);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_destroyInstance_void_CMovableObject_NoVirtual(void *pObjectXXXX, _in EarthView::World::Graphic::CMovableObject* obj )
{
EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory::destroyInstance(obj);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstanceImpl_CMovableObject_EVString(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_CommonStringPairList(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_createInstance_CMovableObject_EVString_CSceneManager(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool_Callback* pCallback )
{
CCustomEntityFactoryProxy* ptr = dynamic_cast<CCustomEntityFactoryProxy*>((EarthView::IndustryEngine::IndustryGraphic::CCustomEntityFactory*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CCustomEntityFactory_requestTypeFlags_ev_bool(pCallback);
}
}
typedef EarthView::IndustryEngine::IndustryGraphic::CSimpleline* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback)(_inout void* ids);
typedef EarthView::IndustryEngine::IndustryGraphic::CSimpleline* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback)(_in const ev_int32& id);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback)();
typedef void* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback)(_in const ev_real32& red, _in const ev_real32& green, _in const ev_real32& blue, _in const ev_real32& alpha);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback)(_in const ev_uint32& hightlightLineWidth);
typedef ev_uint32 ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback)();
typedef EarthView::IndustryEngine::IndustryGraphic::CSimpleline* ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback)();
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback)(_in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener);
typedef void ( _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback)(_in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener);
class CSimplelineManagerProxy : public EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager
{
private:
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback;
EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback* m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback;
public:
CSimplelineManagerProxy(EarthView::World::Core::CNameValuePairList *pList) : CSimplelineManager(pList)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback = NULL;
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback = NULL;
}
public:
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback = pCallback;
}
ev_void registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener(EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback* pCallback)
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback = pCallback;
}
virtual EarthView::IndustryEngine::IndustryGraphic::CSimpleline* addSimpleline()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback != NULL && this->isCustomExtend())
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback();
return returnValue;
}
else
return this->CSimplelineManager::addSimpleline();
}
virtual void getIdVector(_inout EarthView::World::Core::IntVector& ids)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback(&ids);
}
else
return this->CSimplelineManager::getIdVector(ids);
}
virtual EarthView::IndustryEngine::IndustryGraphic::CSimpleline* getSimpleline(_in const ev_int32& id)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback != NULL && this->isCustomExtend())
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback(id);
return returnValue;
}
else
return this->CSimplelineManager::getSimpleline(id);
}
virtual void buildRenderData()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback();
}
else
return this->CSimplelineManager::buildRenderData();
}
virtual void renderToScene()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback();
}
else
return this->CSimplelineManager::renderToScene();
}
virtual void derenderFromScene()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback();
}
else
return this->CSimplelineManager::derenderFromScene();
}
virtual void removeAllPoints()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback();
}
else
return this->CSimplelineManager::removeAllPoints();
}
virtual EarthView::World::Graphic::CColourValue& getHightlightColor()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback != NULL && this->isCustomExtend())
{
EarthView::World::Graphic::CColourValue& returnValue = *(EarthView::World::Graphic::CColourValue*)m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback();
return returnValue;
}
else
return this->CSimplelineManager::getHightlightColor();
}
virtual void setHightlightColor(_in const ev_real32& red, _in const ev_real32& green, _in const ev_real32& blue, _in const ev_real32& alpha)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback(red, green, blue, alpha);
}
else
return this->CSimplelineManager::setHightlightColor(red, green, blue, alpha);
}
virtual void setHightlightLineWidth(_in const ev_uint32& hightlightLineWidth)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback(hightlightLineWidth);
}
else
return this->CSimplelineManager::setHightlightLineWidth(hightlightLineWidth);
}
virtual ev_uint32 getHightlightLineWidth()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback != NULL && this->isCustomExtend())
{
ev_uint32 returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback();
return returnValue;
}
else
return this->CSimplelineManager::getHightlightLineWidth();
}
virtual EarthView::IndustryEngine::IndustryGraphic::CSimpleline* getSelectedSimpleline()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback != NULL && this->isCustomExtend())
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* returnValue = m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback();
return returnValue;
}
else
return this->CSimplelineManager::getSelectedSimpleline();
}
virtual void refresh()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback();
}
else
return this->CSimplelineManager::refresh();
}
virtual void clearHightlightState()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback();
}
else
return this->CSimplelineManager::clearHightlightState();
}
virtual void renderAsHightlightState()
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback();
}
else
return this->CSimplelineManager::renderAsHightlightState();
}
virtual void addRaySelectedListener(_in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback(ref_pListener);
}
else
return this->CSimplelineManager::addRaySelectedListener(ref_pListener);
}
virtual void removeRaySelectedListener(_in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener)
{
if(m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback != NULL && this->isCustomExtend())
{
m_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback(ref_pListener);
}
else
return this->CSimplelineManager::removeRaySelectedListener(ref_pListener);
}
};
REGISTER_FACTORY_CLASS(CSimplelineManagerProxy);
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimpleline* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::addSimpleline();
return objXXXX;
}
else
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->addSimpleline();
return objXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline(pCallback);
}
}
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimpleline* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addSimpleline_CSimpleline_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::addSimpleline();
return objXXXX;
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector(void *pObjectXXXX, _inout void* ids )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getIdVector(*(EarthView::World::Core::IntVector*)ids);
else
ptrNativeObject->getIdVector(*(EarthView::World::Core::IntVector*)ids);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getIdVector_void_IntVector_NoVirtual(void *pObjectXXXX, _inout void* ids )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getIdVector(*(EarthView::World::Core::IntVector*)ids);
}
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimpleline* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32(void *pObjectXXXX, _in const ev_int32& id )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getSimpleline(id);
return objXXXX;
}
else
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->getSimpleline(id);
return objXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32(pCallback);
}
}
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimpleline* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSimpleline_CSimpleline_ev_int32_NoVirtual(void *pObjectXXXX, _in const ev_int32& id )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getSimpleline(id);
return objXXXX;
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::buildRenderData();
else
ptrNativeObject->buildRenderData();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_buildRenderData_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::buildRenderData();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::renderToScene();
else
ptrNativeObject->renderToScene();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderToScene_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::renderToScene();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::derenderFromScene();
else
ptrNativeObject->derenderFromScene();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_derenderFromScene_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::derenderFromScene();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::removeAllPoints();
else
ptrNativeObject->removeAllPoints();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeAllPoints_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::removeAllPoints();
}
extern "C" EV_DLL_EXPORT void* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
{
EarthView::World::Graphic::CColourValue& objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getHightlightColor();
EarthView::World::Graphic::CColourValue *pXXXX = &objXXXX;
return (void*)pXXXX;
}
else
{
EarthView::World::Graphic::CColourValue& objXXXX = ptrNativeObject->getHightlightColor();
EarthView::World::Graphic::CColourValue *pXXXX = &objXXXX;
return (void*)pXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue(pCallback);
}
}
extern "C" EV_DLL_EXPORT void* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightColor_CColourValue_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
EarthView::World::Graphic::CColourValue& objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getHightlightColor();
EarthView::World::Graphic::CColourValue *pXXXX = &objXXXX;
return (void*)pXXXX;
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32(void *pObjectXXXX, _in const ev_real32& red, _in const ev_real32& green, _in const ev_real32& blue, _in const ev_real32& alpha )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::setHightlightColor(red, green, blue, alpha);
else
ptrNativeObject->setHightlightColor(red, green, blue, alpha);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightColor_void_ev_real32_ev_real32_ev_real32_ev_real32_NoVirtual(void *pObjectXXXX, _in const ev_real32& red, _in const ev_real32& green, _in const ev_real32& blue, _in const ev_real32& alpha )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::setHightlightColor(red, green, blue, alpha);
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32(void *pObjectXXXX, _in const ev_uint32& hightlightLineWidth )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::setHightlightLineWidth(hightlightLineWidth);
else
ptrNativeObject->setHightlightLineWidth(hightlightLineWidth);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_setHightlightLineWidth_void_ev_uint32_NoVirtual(void *pObjectXXXX, _in const ev_uint32& hightlightLineWidth )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::setHightlightLineWidth(hightlightLineWidth);
}
extern "C" EV_DLL_EXPORT ev_uint32 _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
{
ev_uint32 objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getHightlightLineWidth();
return objXXXX;
}
else
{
ev_uint32 objXXXX = ptrNativeObject->getHightlightLineWidth();
return objXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32(pCallback);
}
}
extern "C" EV_DLL_EXPORT ev_uint32 _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getHightlightLineWidth_ev_uint32_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ev_uint32 objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getHightlightLineWidth();
return objXXXX;
}
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimpleline* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getSelectedSimpleline();
return objXXXX;
}
else
{
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->getSelectedSimpleline();
return objXXXX;
}
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline(pCallback);
}
}
extern "C" EV_DLL_EXPORT EarthView::IndustryEngine::IndustryGraphic::CSimpleline* _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_getSelectedSimpleline_CSimpleline_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
EarthView::IndustryEngine::IndustryGraphic::CSimpleline* objXXXX = ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::getSelectedSimpleline();
return objXXXX;
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::refresh();
else
ptrNativeObject->refresh();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_refresh_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::refresh();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::clearHightlightState();
else
ptrNativeObject->clearHightlightState();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_clearHightlightState_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::clearHightlightState();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::renderAsHightlightState();
else
ptrNativeObject->renderAsHightlightState();
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_renderAsHightlightState_void_NoVirtual(void *pObjectXXXX )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::renderAsHightlightState();
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener(void *pObjectXXXX, _in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::addRaySelectedListener(ref_pListener);
else
ptrNativeObject->addRaySelectedListener(ref_pListener);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_addRaySelectedListener_void_CRaySelectedListener_NoVirtual(void *pObjectXXXX, _in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::addRaySelectedListener(ref_pListener);
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener(void *pObjectXXXX, _in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
if (dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*)ptrNativeObject) != NULL)
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::removeRaySelectedListener(ref_pListener);
else
ptrNativeObject->removeRaySelectedListener(ref_pListener);
}
extern "C" EV_DLL_EXPORT ev_void _stdcall EV_RegisterCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener( void *pObjectXXXX, EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_Callback* pCallback )
{
CSimplelineManagerProxy* ptr = dynamic_cast<CSimplelineManagerProxy*>((EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX);
if(ptr != NULL)
{
ptr->registerCallback_EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener(pCallback);
}
}
extern "C" EV_DLL_EXPORT void _stdcall EarthView_IndustryEngine_IndustryGraphic_CSimplelineManager_removeRaySelectedListener_void_CRaySelectedListener_NoVirtual(void *pObjectXXXX, _in EarthView::IndustryEngine::IndustryGraphic::CRaySelectedListener* ref_pListener )
{
EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager* ptrNativeObject = (EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager*) pObjectXXXX;
ptrNativeObject->EarthView::IndustryEngine::IndustryGraphic::CSimplelineManager::removeRaySelectedListener(ref_pListener);
}
}
}
}
| [
"yanguanqi@aliyun.com"
] | yanguanqi@aliyun.com |
da85416e4abe66d817f08f59fa6fc81a75d7a639 | 0464604bd6bd8592af844f3799187b503125ff44 | /radixsort.cpp | 53245c33466c79be052cc44564c334511ec00e82 | [] | no_license | g-laz77/Awesome-Algorithmic-Coding | 522962c6d6364aa87d75acdf1920050a123cd75b | 242b26a95af179858ffec90be1d57630165646b1 | refs/heads/master | 2021-01-13T13:23:17.052533 | 2016-10-31T15:03:59 | 2016-10-31T15:03:59 | 72,447,446 | 2 | 0 | null | 2016-10-31T15:28:16 | 2016-10-31T15:00:21 | C++ | UTF-8 | C++ | false | false | 743 | cpp | #include<cstdio>
#include<cmath>
using namespace std;
int main()
{
int end,ct=0,i,n,j;
scanf("%d",&n);
long long int a[n];
long long int max=-1;
long long int k;
for(i=0;i<n;i++)
{
scanf("%lld",&a[i]);
if(a[i]>max)
max=a[i];
}
while(max)
{
ct++;
max/=10;
}
int num[10][n];
for(i=0;i<10;i++)
for(j=0;j<n;j++)
num[i][j]=0;
int count[10];
for(i=0;i<10;i++)
count[i]=0;
for(int y=0;y<ct;y++)
{
for(i=0;i<n;i++)
{
k=a[i];
end=(k/(long long int)pow(10,y))%10;
num[end][count[end]]=a[i];
count[end]++;
}
k=0;
for(i=0;i<10;i++)
{
for(j=0;j<count[i];j++)
a[k++]=num[i][j];
}
for(i=0;i<10;i++)
count[i]=0;
}
for(i=0;i<n;i++)
printf("%lld ",a[i]);
printf("\n");
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.