diff --git a/CMakeLists.txt b/CMakeLists.txt index 797f50720..78a68aa83 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -485,7 +485,6 @@ src/engine/playback.cpp src/engine/sample.cpp src/engine/song.cpp src/engine/sysDef.cpp -src/engine/watermark.cpp src/engine/wavetable.cpp src/engine/waveSynth.cpp src/engine/vgmOps.cpp diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e7dd10a96..a3973f40a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,99 @@ # Contributing -contributions to Furnace Pro are not welcome. try applying for a job at Furnace Headquarters instead? +contributions to Furnace are welcome! + +# Getting ready + +log into your Github account, and click the Fork button in the header of the project's page. + +then open a terminal and clone your fork: + +``` +git clone git@github.com:USERNAME/furnace.git +``` + +(replace `USERNAME` with your username) + +# Working + +## Code + +bug fixes, improvements and several other things accepted. + +the coding style is described here: + +- indentation: two spaces. **strictly** spaces. do NOT use tabs. +- modified 1TBS style: + - no spaces in function calls + - spaces between arguments in function declarations + - no spaces in operations except for `||` and `&&` + - no space between variable name and assignment + - space between macro in string literals + - space after comment delimiter + - C++ pointer style: `void* variable` rather than `void *variable` + - indent switch cases + - preprocessor directives not intended + - if macro comprises more than one line, indent + - no new line after `template<>` +- prefer built-in types: + - `bool` + - `signed char` or `unsigned char` are 8-bit + - when the type is `char`, **always** specify whether it is signed or not. + - unspecified `char` is signed on x86 and unsigned on ARM, so yeah. + - the only situation in where unspecified `char` is allowed is for C strings (`const char*`). + - `short` or `unsigned short` are 16-bit + - `int` or `unsigned int` are 32-bit + - `float` is 32-bit + - `double` is 64-bit + - `long long int` or `unsigned long long int` are 64-bit + - avoid using 64-bit numbers as I still build for 32-bit systems. + - two `long`s are required to make Windows happy. + - `size_t` are 32-bit or 64-bit, depending on architecture. +- in float/double operations, always use decimal and `f` if single-precision. + - e.g. `1.0f` or `1.0` instead of `1`. +- prefer `NULL` over `nullptr` or any other proprietary null. +- don't use `auto` unless needed. +- use `String` for `std::string` (this is typedef'd in ta-utils.h). +- prefer using operator for String (std::string) comparisons (a==""). +- if you have to work with C strings, only use safe C string operations: + - snprintf + - strncpy + - strncat + - any other operation which specifies a limit + +some files (particularly the ones in `src/engine/platform/sound` and `extern/`) don't follow this style. + +you don't have to follow this style. I will fix it after I accept your contribution. + +additional guidelines: + +- in general **strongly** avoid breaking compatibility. + - do not touch loadFur/saveFur unless you know what you're doing! + - new fields must be at the end of each block to ensure forward compatibility + - likewise, the instrument read/write functions in DivInstrument have to be handled carefully + - any change to the format requires a version bump (see `src/engine/engine.h`). + - do not bump the version number under any circumstances! + - if you are making major changes to the playback routine, make sure to test with older songs to ensure nothing breaks. + - I will run a test suite to make sure this is the case. + - if something breaks, you might want to add a compatibility flag (this requires changing the format though). +- do not use `#pragma once`. +- do not memcmp() structs. +- on a switch block, **always** put `default` last and not in any other position. + - I have fear of some C/C++ compilers ignoring the rest of cases upon hitting default. + +## Demo Songs + +just put your demo song in `demos/`! be noted there are some guidelines: + +- avoid Nintendo song covers. +- avoid big label song covers. +- low effort compositions/covers may not be accepted at all. + +# Finishing + +after you've done your modifications, commit the changes and push. +then open your fork on GitHub and send a pull request. + +# I don't know how to use Git but I want to contribute with a demo song + +you can also contact me directly! [find me here.](https://tildearrow.org/?p=contact) diff --git a/README.md b/README.md index f52fa7a19..4f94337a4 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,117 @@ -# Furnace Pro (chiptune tracker) +# Furnace (chiptune tracker) ![screenshot](papers/screenshot2.png) -the ultimate chiptune tracker for pro usage. +the biggest multi-system chiptune tracker ever made! [downloads](#downloads) | [discussion/help](#quick-references) | [developer info](#developer-info) | [unofficial packages](#unofficial-packages) | [FAQ](#frequently-asked-questions) --- ## downloads -Furnace Pro is shareware. this means you can use and share it, but you gotta register in order to unlock all of its features. - check out the [Releases](https://github.com/tildearrow/furnace/releases) page. available for Windows, macOS and Linux (AppImage). +[see here](https://nightly.link/tildearrow/furnace/workflows/build/master) for unstable developer builds. + ## features -- over 60 sound chips, and counting. we strive to add the best of the best. -- thousands of instruments, wavetables and samples built-in, made by our talented designers at Furnace Headquarters. -- 128-bit audio processing for maximum quality. -- Bonus Pack contains: - - MIDISlap Ultimate: automatically imports MIDI files and uses the latest AI-powered technology to convert them into masterpieces! - - UltraExport: exports any song to a ROM and/or PCB that plays on every hardware without limitations - - Dummy System II with a low-pass filter +- over 50 sound chips - and counting: + - Yamaha FM chips: + - YM2151 (OPM) + - YM2203 (OPN) + - YM2413 (OPLL) + - YM2414 (OPZ) used in Yamaha TX81Z + - YM2608 (OPNA) used in PC-98 + - YM2610 (OPNB) used in Neo Geo + - YM2610B (OPNB2) + - YM2612 (OPN2) used in Sega Genesis and FM Towns + - YM3526 (OPL) used in C64 Sound Expander + - YM3812 (OPL2) + - YMF262 (OPL3) with full 4-op support! + - Y8950 (OPL with ADPCM) + - square wave chips: + - AY-3-8910/YM2149(F) used in several computers and game consoles + - Commodore VIC used in the VIC-20 + - Microchip AY8930 + - TI SN76489 used in Sega Master System and BBC Micro + - PC Speaker + - Philips SAA1099 used in SAM Coupé + - OKI MSM5232 used in some arcade boards + - sample chips: + - SNES + - Amiga + - SegaPCM - all 16 channels + - Capcom QSound + - Yamaha YMZ280B (PCMD8) + - Ricoh RF5C68 used in Sega CD and FM Towns + - OKI MSM6258 and MSM6295 + - Konami K007232 + - Irem GA20 + - Ensoniq ES5506 + - wavetable chips: + - HuC6280 used in PC Engine + - Konami Bubble System WSG + - Konami SCC/SCC+ + - Namco arcade chips (WSG/C15/C30) + - WonderSwan + - Seta/Allumer X1-010 + - Sharp SM8521 used in Tiger Game.com + - NES (Ricoh 2A03/2A07), with additional expansion sound support: + - Konami VRC6 + - Konami VRC7 + - MMC5 + - Famicom Disk System + - Sunsoft 5B + - Namco 163 + - Family Noraebang (OPLL) + - SID (6581/8580) used in Commodore 64 + - Mikey used in Atari Lynx + - ZX Spectrum beeper (SFX-like engine) + - Pokémon Mini + - Commodore PET + - TIA used in Atari 2600 + - POKEY used in Atari 8-bit computers + - Game Boy + - Virtual Boy + - modern/fantasy: + - Commander X16 VERA + - tildearrow Sound Unit +- mix and match sound chips! + - over 200 ready to use presets from computers, game consoles and arcade boards... + - ...or create your own - up to 32 of them or a total of 128 channels! +- DefleMask compatibility + - loads .dmf modules from all versions (beta 1 to 1.1.7) + - saves .dmf modules - both modern and legacy + - Furnace doubles as a module downgrader + - loads/saves .dmp instruments and .dmw wavetables as well + - clean-room design (guesswork and ABX tests only, no decompilation involved) + - some bug/quirk implementation for increased playback accuracy through compatibility flags +- VGM export +- modular layout that you may adapt to your needs +- audio file export - entire song, per chip or per channel +- quality emulation cores (Nuked, MAME, SameBoy, Mednafen PCE, NSFplay, puNES, reSID, Stella, SAASound, vgsound_emu and ymfm) +- wavetable synthesizer + - available on wavetable chips + - create complex sounds with ease - provide up to two wavetables, select and effect and let go! +- MIDI input support +- additional features: + - FM macros! + - negative octaves + - advanced arp macros + - arbitrary pitch samples + - sample loop points + - SSG envelopes and ADPCM-B in Neo Geo + - pitchable OPLL drums + - full duty/cutoff range in C64 + - full 16-channel SegaPCM + - ability to change tempo mid-song + - decimal tempo/tick rate + - multiple sub-songs in a module + - per-channel oscilloscope with waveform centering + - built-in sample editor + - chip mixing settings + - built-in visualizer in pattern view +- open-source under GPLv2 or later. --- # quick references @@ -29,28 +119,183 @@ check out the [Releases](https://github.com/tildearrow/furnace/releases) page. a - **discussion**: see the [Discussions](https://github.com/tildearrow/furnace/discussions) section, or (preferably) the [official Discord server](https://discord.gg/EfrwT2wq7z). - **help**: check out the [documentation](papers/doc/README.md). it's mostly incomplete, but has details on effects. +## unofficial packages + +[![Packaging status](https://repology.org/badge/tiny-repos/furnace.svg)](https://repology.org/project/furnace/versions) + +some people have provided packages for Unix/Unix-like distributions. here's a list. + - **Arch Linux**: [furnace](https://archlinux.org/packages/community/x86_64/furnace/) is now in the community repo! + - **FreeBSD**: [a package in ports](https://www.freshports.org/audio/furnace/) is available courtesy of ehaupt. + - **Nix**: [package](https://search.nixos.org/packages?channel=unstable&show=furnace&from=0&size=50&sort=relevance&type=packages&query=furnace) thanks to OPNA2608. + - **openSUSE**: [a package](https://software.opensuse.org/package/furnace) is available, courtesy of fpesari. + +--- +# developer info + +[![Build furnace](https://github.com/tildearrow/furnace/actions/workflows/build.yml/badge.svg)](https://github.com/tildearrow/furnace/actions/workflows/build.yml) + +if you can't download these artifacts (because GitHub requires you to be logged in), [go here](https://nightly.link/tildearrow/furnace/workflows/build/master) instead. + +**NOTE: do not download the project's source as a .zip or .tar.gz as these do not include the project's submodules which are necessary to proceed with building. please instead use Git as shown below.** + +## dependencies + +- CMake +- JACK (optional, macOS/Linux only) + +if building under Windows or macOS, no additional dependencies are required. +otherwise, you may also need the following: + +- libpulse +- libx11 +- libasound +- libGL + +some Linux distributions (e.g. Ubuntu or openSUSE) will require you to install the `-dev` versions of these. + +## getting the source + +type the following on a terminal/console: (make sure Git is installed) + +``` +git clone --recursive https://github.com/tildearrow/furnace.git +cd furnace +``` + +(the `--recursive` parameter ensures submodules are fetched as well) + +## compilation + +your typical CMake project. + +### Windows using MSVC + +as of now tildearrow uses MinGW for Windows builds, but thanks to OPNA2608 this works again! + +from the developer tools command prompt: + +``` +mkdir build +cd build +cmake .. +msbuild ALL_BUILD.vcxproj +``` + +### macOS and Linux + +``` +mkdir build +cd build +cmake .. +make +``` +Alternatively, build scripts are provided in the `scripts/` folder in the root of the repository. + +### CMake options + +To add an option from the command-line: `-D=` +Example: `cmake -DBUILD_GUI=OFF -DWARNINGS_ARE_ERRORS=ON ..` + +Available options: + +| Name | Default | Description | +| :--: | :-----: | ----------- | +| `BUILD_GUI` | `ON` | Build the tracker (disable to build only a headless player) | +| `USE_RTMIDI` | `ON` | Build with MIDI support using RtMidi | +| `USE_SDL2` | `ON` | Build with SDL2 (required to build with GUI) | +| `USE_SNDFILE` | `ON` | Build with libsndfile (required in order to work with audio files) | +| `USE_BACKWARD` | `ON` | Use backward-cpp to print a backtrace on crash/abort | +| `WITH_JACK` | `ON` if system-installed JACK detected, otherwise `OFF` | Whether to build with JACK support. Auto-detects if JACK is available | +| `SYSTEM_FFTW` | `OFF` | Use a system-installed version of FFTW instead of the vendored one | +| `SYSTEM_FMT` | `OFF` | Use a system-installed version of fmt instead of the vendored one | +| `SYSTEM_LIBSNDFILE` | `OFF` | Use a system-installed version of libsndfile instead of the vendored one | +| `SYSTEM_RTMIDI` | `OFF` | Use a system-installed version of RtMidi instead of the vendored one | +| `SYSTEM_ZLIB` | `OFF` | Use a system-installed version of zlib instead of the vendored one | +| `SYSTEM_SDL2` | `OFF` | Use a system-installed version of SDL2 instead of the vendored one | +| `SUPPORT_XP` | `OFF` | Build a Windows XP-compatible binary | +| `WARNINGS_ARE_ERRORS` | `OFF` (but consider enabling this & reporting any errors that arise from it!) | Whether warnings in furnace's C++ code should be treated as errors | +| `WITH_DEMOS` | `ON` | Install demo songs on `make install` | +| `WITH_INSTRUMENTS` | `ON` | Install demo instruments on `make install` | +| `WITH_WAVETABLES` | `ON` | Install wavetables on `make install` | + +## console usage + +``` +./furnace +``` + +this opens the program. + +``` +./furnace -console +``` + +this will play a compatible file. + +``` +./furnace -console -view commands +``` + +this will play a compatible file and enable the commands view. + +**note that these commands only actually work in Linux environments. on other command lines, such as Windows' Command Prompt, or MacOS Terminal, it may not work correctly.** + --- # frequently asked questions -> why does the cursor move randomly? +> woah! 50 sound chips?! I can't believe it! -who knows? it must be a glitch, or maybe intentional... +yup, it's real. -> can you help me get rid of the nag screens? +> where's the manual? -Furnace Pro is now shareware. please register it in order to disable the nag screens. - -> shareware? are you serious? - -well, we need money for development and stuff. you gotta pay. - -don't wanna pay? there's still one way... +see [papers/](papers/doc/README.md). it's kind of incomplete, but at least the sound chips section is there. > it doesn't open under macOS! -check your pipes. there must be a hammer that is damaging the app. +this is due to Apple's application signing policy. a workaround is to right click on the Furnace app icon and select Open. -if that still doesn't work, move your computer to the trash. +**as of Monterey, this workaround no longer works (especially on ARM).** yeah, Apple has decided to be strict on the matter. +if you happen to be on that version, use this workaround instead (on a Terminal): + +``` +xattr -d com.apple.quarantine /path/to/Furnace.app +``` + +(replace /path/to/ with the path where Furnace.app is located) + +you may need to log out and/or reboot after doing this. + +> .spc export? + +**not yet!** coming in 0.7 though, eventually... + +> how do I use C64 absolute filter/duty? + +on Instrument Editor in the C64 tab there are two options to toggle these. +also provided are two effects: + +- `3xxx`: set fine duty. +- `4xxx`: set fine cutoff. `xxx` range is 000-7ff. +additionally, you can change the cutoff and/or duty as a macro inside an instrument by clicking the `absolute cutoff macro` and/or `absolute duty macro` checkbox at the bottom of the instrument. (for the filter, you also need to click the checkbox that says `volume macro is cutoff macro`.) + +> how do I use PCM on a PCM-capable chip? + +two possibilities: +- the recommended way is by creating the "Sample" type instrument and assigning a sample to it. +- otherwise you may employ the DefleMask-compatible method, using `17xx` effect. + +> my .dmf song sounds odd at a certain point + +Furnace's .dmf compatibility isn't perfect and it's mostly because DefleMask does things different. + +> my song sounds terrible after saving as .dmf! + +you should only save as .dmf if you're really sure, because the DefleMask format has several limitations. save in Furnace song format instead (.fur). + +> how do I solo channels? + +right click on the channel name. --- # footnotes @@ -65,5 +310,3 @@ You should have received a copy of the GNU General Public License along with thi despite the fact this program works with the .dmf, .dmp and .dmw file formats (besides its native .fur format), it is NOT affiliated with Delek or DefleMask in any way, nor it is a replacement for the original program. - -we didn't say free as in free beer. diff --git a/res/watermark.raw b/res/watermark.raw index d87731e2f..e61c2e12e 100644 Binary files a/res/watermark.raw and b/res/watermark.raw differ diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp index e198f3d38..da216c209 100644 --- a/src/engine/engine.cpp +++ b/src/engine/engine.cpp @@ -39,8 +39,6 @@ #endif #include -#include "watermark.h" - void process(void* u, float** in, float** out, int inChans, int outChans, unsigned int size) { ((DivEngine*)u)->nextBuf(in,out,inChans,outChans,size); } @@ -819,7 +817,6 @@ void DivEngine::runExportThread() { size_t fadeOutSamples=got.rate*exportFadeOut; size_t curFadeOutSample=0; bool isFadingOut=false; - int watermarkPos=-((rand()%120)*4410); switch (exportMode) { case DIV_EXPORT_MODE_ONE: { SNDFILE* sf; @@ -856,26 +853,17 @@ void DivEngine::runExportThread() { } for (int i=0; i<(int)totalProcessed; i++) { total++; - float nextWaterSample=0; - watermarkPos++; - if (dejarteArriba && watermarkPos>=0 && watermarkPos<(int)watermark_size) { - nextWaterSample=(signed char)watermark[watermarkPos]; - nextWaterSample/=128; - } - if (watermarkPos>=(int)watermark_size) { - watermarkPos=-((rand()%120)*4410); - } if (isFadingOut) { double mul=(1.0-((double)curFadeOutSample/(double)fadeOutSamples)); - outBuf[2][i<<1]=MAX(-1.0f,MIN(1.0f,outBuf[0][i]+nextWaterSample))*mul; - outBuf[2][1+(i<<1)]=MAX(-1.0f,MIN(1.0f,outBuf[1][i]+nextWaterSample))*mul; + outBuf[2][i<<1]=MAX(-1.0f,MIN(1.0f,outBuf[0][i]))*mul; + outBuf[2][1+(i<<1)]=MAX(-1.0f,MIN(1.0f,outBuf[1][i]))*mul; if (++curFadeOutSample>=fadeOutSamples) { playing=false; break; } } else { - outBuf[2][i<<1]=MAX(-1.0f,MIN(1.0f,outBuf[0][i]+nextWaterSample)); - outBuf[2][1+(i<<1)]=MAX(-1.0f,MIN(1.0f,outBuf[1][i]+nextWaterSample)); + outBuf[2][i<<1]=MAX(-1.0f,MIN(1.0f,outBuf[0][i])); + outBuf[2][1+(i<<1)]=MAX(-1.0f,MIN(1.0f,outBuf[1][i])); if (lastLoopPos>-1 && i>=lastLoopPos && totalLoops>=exportLoopCount) { logD("start fading out..."); isFadingOut=true; diff --git a/src/engine/playback.cpp b/src/engine/playback.cpp index 26986db8b..6c3db8053 100644 --- a/src/engine/playback.cpp +++ b/src/engine/playback.cpp @@ -29,13 +29,6 @@ constexpr int MASTER_CLOCK_PREC=(sizeof(void*)==8)?8:0; void DivEngine::nextOrder() { curRow=0; - - if (dejarteArriba) { - if (!(rand()%3)) for (int i=0; i=curSubSong->ordersLen) { logV("end of orders reached"); @@ -368,24 +361,6 @@ int DivEngine::dispatchCmd(DivCommand c) { c.chan=dispatchChanOfChan[c.dis]; - if (dejarteArriba) { - if (c.cmd==DIV_CMD_NOTE_ON) { - if (c.value!=DIV_NOTE_NULL) { - if (!(rand()%5)) { - c.value+=(rand()%17)-8; - } - } - } - if (c.cmd==DIV_CMD_NOTE_OFF) { - if (!(rand()%4)) return 0; - } - if (c.cmd==DIV_CMD_INSTRUMENT) { - if (!(rand()%3)) { - c.value+=rand()%3; - } - } - } - return disCont[dispatchOfChan[c.dis]].dispatch->dispatch(c); } diff --git a/src/engine/watermark.cpp b/src/engine/watermark.cpp deleted file mode 100644 index 83d347e1b..000000000 --- a/src/engine/watermark.cpp +++ /dev/null @@ -1,8048 +0,0 @@ -#include "watermark.h" - -const unsigned char watermark[]={ - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x04,0x04, - 0x05,0x05,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x06,0x06,0x06, - 0x06,0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, - 0x05,0x05,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x08,0x08,0x09, - 0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x09,0x09,0x09,0x09, - 0x09,0x08,0x08,0x08,0x07,0x06,0x05,0x04,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xf9,0xf8, - 0xf7,0xf7,0xf7,0xf7,0xf6,0xf6,0xf5,0xf5,0xf5,0xf5,0xf5,0xf5, - 0xf4,0xf5,0xf5,0xf5,0xf6,0xf6,0xf6,0xf7,0xf7,0xf8,0xf8,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf8,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf8,0xf7,0xf7,0xf7, - 0xf7,0xf7,0xf7,0xf7,0xf8,0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0xfc, - 0xfd,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01, - 0x02,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x01,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x02,0x02,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x02,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00, - 0x00,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0x00,0x01,0x02,0x02, - 0x02,0x02,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xfe,0xfd,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x03, - 0x04,0x04,0x04,0x04,0x03,0x03,0x02,0x02,0x01,0x01,0x00,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x06, - 0x06,0x06,0x05,0x04,0x03,0x03,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x07,0x08,0x08,0x09, - 0x0a,0x0b,0x0c,0x0d,0x0d,0x0d,0x0d,0x0d,0x0c,0x0b,0x0a,0x09, - 0x08,0x08,0x08,0x08,0x07,0x07,0x06,0x06,0x06,0x05,0x05,0x04, - 0x03,0x03,0x03,0x04,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b, - 0x0c,0x0d,0x0e,0x0e,0x0f,0x0f,0x10,0x10,0x10,0x10,0x10,0x10, - 0x0f,0x0e,0x0c,0x0a,0x08,0x06,0x05,0x04,0x03,0x02,0x01,0x01, - 0x01,0x00,0xff,0xfe,0xfc,0xfa,0xf9,0xf8,0xf9,0xf9,0xfa,0xfc, - 0xfd,0xff,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0xff,0xfe,0xfd,0xfb,0xfa,0xf8,0xf7,0xf6,0xf6,0xf5, - 0xf5,0xf5,0xf4,0xf4,0xf3,0xf1,0xf0,0xef,0xee,0xed,0xed,0xee, - 0xef,0xf1,0xf2,0xf4,0xf6,0xf7,0xf8,0xf8,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf8,0xf8,0xf7,0xf7, - 0xf7,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf5,0xf5,0xf4,0xf4,0xf3, - 0xf3,0xf3,0xf4,0xf5,0xf6,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd,0xfd, - 0xfd,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x00,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfb,0xfd,0xfe,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x03,0x02, - 0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x02,0x02,0x01, - 0x00,0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00, - 0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x02,0x02, - 0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfa,0xfb,0xfb,0xfb,0xfc,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x01,0x01,0x00,0x00,0xff, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa, - 0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x01, - 0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x05,0x05,0x05,0x05, - 0x04,0x04,0x03,0x01,0xff,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xff, - 0x00,0x01,0x02,0x01,0x00,0xff,0xff,0xff,0x00,0x01,0x02,0x03, - 0x04,0x05,0x06,0x07,0x07,0x07,0x06,0x06,0x07,0x08,0x0a,0x0b, - 0x0b,0x0c,0x0c,0x0c,0x0c,0x0c,0x0a,0x09,0x08,0x08,0x09,0x09, - 0x09,0x08,0x07,0x07,0x07,0x07,0x06,0x05,0x04,0x05,0x05,0x06, - 0x07,0x08,0x08,0x09,0x09,0x0a,0x0b,0x0c,0x0c,0x0d,0x0d,0x0e, - 0x0f,0x10,0x0f,0x0e,0x0e,0x0d,0x0d,0x0c,0x0c,0x0b,0x0b,0x0b, - 0x0a,0x0a,0x0a,0x08,0x07,0x05,0x03,0x03,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x01,0xff,0xfe,0xfd,0xfc,0xfd,0xfd,0xfe, - 0xff,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa,0xf8,0xf7,0xf6,0xf5,0xf5, - 0xf5,0xf5,0xf5,0xf5,0xf5,0xf4,0xf3,0xf2,0xf2,0xf1,0xf1,0xf1, - 0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf6,0xf7,0xf7,0xf7,0xf8,0xf8, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf8,0xf8,0xf8,0xf8, - 0xf8,0xf7,0xf6,0xf5,0xf5,0xf4,0xf3,0xf3,0xf2,0xf2,0xf3,0xf4, - 0xf4,0xf5,0xf6,0xf7,0xf8,0xf8,0xf9,0xf9,0xfa,0xfa,0xfb,0xfc, - 0xfd,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00, - 0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xff, - 0x00,0x02,0x02,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x03,0x02, - 0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xff, - 0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03, - 0x03,0x02,0x02,0x03,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc, - 0xfd,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0xff,0xff, - 0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfc,0xfc,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x02,0x02,0x03,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xff,0x00, - 0x01,0x02,0x02,0x03,0x05,0x06,0x07,0x07,0x07,0x07,0x07,0x07, - 0x06,0x05,0x04,0x03,0x03,0x03,0x04,0x04,0x04,0x03,0x02,0x02, - 0x01,0xff,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xff,0x00,0x02,0x03, - 0x05,0x06,0x07,0x07,0x08,0x09,0x0a,0x0c,0x0e,0x0f,0x10,0x10, - 0x10,0x10,0x0f,0x0e,0x0d,0x0b,0x0a,0x09,0x09,0x09,0x09,0x08, - 0x07,0x06,0x05,0x04,0x03,0x02,0x02,0x01,0x02,0x03,0x04,0x05, - 0x06,0x07,0x09,0x0a,0x0c,0x0d,0x0e,0x0f,0x0f,0x10,0x10,0x10, - 0x10,0x10,0x10,0x10,0x10,0x0f,0x0e,0x0d,0x0c,0x0a,0x08,0x06, - 0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe, - 0xfd,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0x00,0x01,0x02,0x03,0x03, - 0x02,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd, - 0xfc,0xfa,0xf9,0xf7,0xf7,0xf6,0xf6,0xf5,0xf4,0xf4,0xf4,0xf4, - 0xf3,0xf2,0xf0,0xef,0xef,0xef,0xf0,0xf0,0xf0,0xf1,0xf3,0xf4, - 0xf6,0xf6,0xf7,0xf7,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf8,0xf7,0xf6,0xf5,0xf4,0xf3, - 0xf2,0xf2,0xf2,0xf2,0xf1,0xf1,0xf2,0xf3,0xf4,0xf4,0xf5,0xf6, - 0xf7,0xf9,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc, - 0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01,0x01,0x00, - 0x00,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00, - 0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x01,0x01,0x02,0x02,0x01, - 0x01,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x04,0x03,0x02,0x01, - 0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00, - 0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x02, - 0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x01,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x03,0x03, - 0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x03, - 0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x02,0x03, - 0x03,0x04,0x05,0x06,0x06,0x06,0x07,0x08,0x08,0x08,0x08,0x08, - 0x08,0x09,0x09,0x0a,0x0a,0x0b,0x0c,0x0c,0x0c,0x0c,0x0b,0x0a, - 0x09,0x08,0x07,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x08,0x08, - 0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x0b,0x0c,0x0c,0x0d, - 0x0d,0x0d,0x0d,0x0d,0x0e,0x0e,0x0e,0x0f,0x0f,0x0f,0x0f,0x0f, - 0x0e,0x0c,0x0b,0x09,0x08,0x06,0x05,0x03,0x02,0x02,0x03,0x03, - 0x03,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfb,0xfa,0xfa,0xfb,0xfc, - 0xfe,0xff,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x01, - 0x01,0x01,0x00,0xff,0xfe,0xfc,0xfb,0xf9,0xf6,0xf4,0xf3,0xf2, - 0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xee,0xed,0xed,0xee, - 0xef,0xf0,0xf2,0xf4,0xf6,0xf8,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf7,0xf5,0xf4, - 0xf3,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2,0xf3,0xf3,0xf3,0xf3,0xf2, - 0xf2,0xf3,0xf3,0xf3,0xf4,0xf5,0xf7,0xf9,0xfb,0xfd,0xfe,0xff, - 0xff,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x01, - 0x01,0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb, - 0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfd, - 0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0x00, - 0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03,0x02,0x01, - 0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x02,0x03,0x04, - 0x04,0x03,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02, - 0x03,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x02,0x02,0x01,0x00,0x00,0xff,0xff,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x01, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x01, - 0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x03, - 0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x00,0x00,0x00, - 0x01,0x01,0x02,0x03,0x04,0x04,0x05,0x06,0x06,0x06,0x07,0x07, - 0x08,0x08,0x08,0x09,0x09,0x0a,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b, - 0x0b,0x0b,0x0a,0x0a,0x09,0x09,0x08,0x08,0x07,0x07,0x07,0x08, - 0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x07,0x06,0x07,0x08,0x09, - 0x0b,0x0c,0x0e,0x0f,0x10,0x11,0x10,0x0f,0x0e,0x0d,0x0c,0x0c, - 0x0c,0x0c,0x0d,0x0d,0x0d,0x0d,0x0c,0x0a,0x07,0x05,0x02,0x01, - 0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0xff,0xfd,0xfb,0xfb, - 0xfb,0xfc,0xfd,0xfe,0x01,0x03,0x06,0x07,0x06,0x04,0x02,0x00, - 0xfe,0xfd,0xfb,0xf9,0xf9,0xf9,0xf9,0xf8,0xf6,0xf4,0xf3,0xf2, - 0xf1,0xef,0xee,0xec,0xeb,0xea,0xeb,0xec,0xec,0xed,0xee,0xef, - 0xf1,0xf3,0xf5,0xf7,0xf9,0xfa,0xfb,0xfc,0xfd,0xfc,0xfb,0xf9, - 0xf7,0xf6,0xf4,0xf1,0xef,0xed,0xee,0xf0,0xf3,0xf6,0xf9,0xfc, - 0xfe,0x01,0x03,0x03,0x03,0x01,0x01,0x02,0x02,0x03,0x02,0x02, - 0x03,0x03,0x04,0x03,0x02,0x00,0xfe,0xfb,0xf9,0xf7,0xf5,0xf3, - 0xf1,0xf0,0xf1,0xf1,0xf2,0xf3,0xf5,0xf6,0xf8,0xfa,0xfd,0xff, - 0x01,0x03,0x05,0x06,0x07,0x06,0x04,0x01,0xfe,0xfa,0xf8,0xf5, - 0xf4,0xf3,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf7,0xf7,0xf8,0xf9, - 0xfb,0xfd,0x00,0x03,0x06,0x08,0x0a,0x0c,0x0e,0x0f,0x10,0x10, - 0x0f,0x0e,0x0e,0x0d,0x0c,0x0a,0x08,0x06,0x05,0x04,0x03,0x03, - 0x03,0x03,0x03,0x05,0x06,0x08,0x09,0x0a,0x0b,0x0c,0x0c,0x0b, - 0x0b,0x09,0x07,0x05,0x04,0x02,0x01,0x00,0xfe,0xfe,0xfd,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfc,0xfb,0xfa,0xf9,0xf7,0xf5,0xf4,0xf5, - 0xf6,0xf7,0xf7,0xf7,0xf9,0xfb,0xfc,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfa,0xf9,0xf8,0xf7,0xf7,0xf8,0xf8,0xf9,0xfa,0xfc,0xfd, - 0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x02,0x03,0x03,0x04,0x04, - 0x05,0x07,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x06,0x05,0x02, - 0x01,0xff,0xfe,0xfc,0xfb,0xfa,0xfa,0xfc,0xff,0x00,0x02,0x03, - 0x04,0x06,0x06,0x05,0x02,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfc,0xfc,0xfb,0xfa,0xf8,0xf7,0xf7,0xf8,0xf9,0xf9,0xfa, - 0xfb,0xfc,0xfd,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0x00,0x02, - 0x05,0x08,0x0a,0x0a,0x09,0x08,0x07,0x05,0x03,0x02,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x04, - 0x06,0x07,0x08,0x09,0x0a,0x0b,0x0b,0x0a,0x09,0x08,0x06,0x05, - 0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x02,0x00,0xfe,0xfa,0xf7, - 0xf5,0xf3,0xf1,0xf1,0xf1,0xf2,0xf3,0xf5,0xf7,0xf8,0xf8,0xf8, - 0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8,0xfa,0xfb,0xfc,0xfe,0xff, - 0x00,0x02,0x02,0x02,0x01,0xff,0xfc,0xf8,0xf4,0xf0,0xec,0xeb, - 0xeb,0xee,0xf2,0xf8,0xfe,0x05,0x0b,0x10,0x12,0x14,0x14,0x15, - 0x14,0x14,0x13,0x12,0x12,0x10,0x0f,0x0c,0x08,0x05,0x03,0x01, - 0x01,0x01,0x01,0x02,0x03,0x04,0x03,0x01,0xff,0xfc,0xfa,0xfa, - 0xfb,0xfc,0xff,0x02,0x07,0x0b,0x0e,0x0f,0x0e,0x0c,0x09,0x05, - 0x00,0xfa,0xf4,0xef,0xeb,0xe9,0xe7,0xe5,0xe4,0xe5,0xe6,0xe8, - 0xeb,0xee,0xf1,0xf6,0xfc,0x04,0x0c,0x13,0x1a,0x1f,0x22,0x22, - 0x1f,0x1a,0x12,0x09,0x01,0xfa,0xf7,0xf7,0xfa,0x00,0x07,0x0e, - 0x16,0x1c,0x1e,0x1e,0x1c,0x1a,0x1a,0x1d,0x20,0x25,0x29,0x2f, - 0x34,0x36,0x35,0x30,0x2a,0x23,0x1e,0x1b,0x18,0x16,0x14,0x12, - 0x10,0x0b,0x04,0xfa,0xf0,0xe9,0xe7,0xea,0xf0,0xf9,0x04,0x0f, - 0x19,0x1e,0x1d,0x16,0x0b,0xff,0xf3,0xe9,0xe0,0xda,0xd8,0xd9, - 0xda,0xdb,0xda,0xd8,0xd5,0xd2,0xd0,0xd0,0xd1,0xd3,0xd8,0xde, - 0xe4,0xe8,0xea,0xeb,0xeb,0xeb,0xec,0xef,0xf2,0xf6,0xfa,0xfd, - 0xfe,0xfe,0xfb,0xf6,0xf0,0xe8,0xe1,0xdc,0xd9,0xda,0xdd,0xe3, - 0xeb,0xf4,0xff,0x0a,0x14,0x1b,0x20,0x22,0x21,0x1f,0x1b,0x16, - 0x10,0x0b,0x07,0x04,0x02,0x00,0xff,0xfd,0xfb,0xf9,0xf7,0xf6, - 0xf6,0xf7,0xf9,0xfd,0x02,0x07,0x0a,0x0b,0x0b,0x09,0x06,0x02, - 0xfe,0xf9,0xf7,0xf6,0xf6,0xf7,0xf9,0xf9,0xf9,0xf8,0xf5,0xf2, - 0xee,0xeb,0xe9,0xe9,0xec,0xf0,0xf5,0xfa,0x00,0x05,0x08,0x0a, - 0x09,0x08,0x05,0x03,0x00,0xfe,0xfc,0xfa,0xfa,0xfb,0xfd,0xfe, - 0xfe,0xff,0x00,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x02,0x01, - 0x00,0x00,0x01,0x02,0x03,0x05,0x07,0x09,0x0b,0x0c,0x0b,0x09, - 0x07,0x04,0x01,0xfd,0xfb,0xf9,0xf9,0xfa,0xfc,0xfe,0x01,0x05, - 0x07,0x0a,0x0c,0x0d,0x0d,0x0b,0x09,0x06,0x02,0xff,0xfc,0xfa, - 0xf9,0xf8,0xf7,0xf7,0xf8,0xf9,0xf8,0xf8,0xf8,0xf9,0xfa,0xfc, - 0xfe,0x01,0x03,0x05,0x07,0x08,0x07,0x05,0x02,0xfe,0xfa,0xf7, - 0xf5,0xf2,0xf0,0xf0,0xf1,0xf2,0xf3,0xf5,0xf6,0xf9,0xfc,0x00, - 0x03,0x06,0x08,0x09,0x0a,0x09,0x06,0x02,0xfd,0xf9,0xf6,0xf5, - 0xf5,0xf6,0xf9,0xfd,0x01,0x04,0x05,0x06,0x04,0x02,0x00,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xfe,0xfd,0xfd,0xfd, - 0xfe,0x00,0x03,0x05,0x06,0x08,0x08,0x07,0x05,0x02,0xff,0xfd, - 0xfc,0xfc,0xfd,0xff,0x01,0x03,0x04,0x03,0x02,0xff,0xfd,0xfb, - 0xfa,0xfb,0xfd,0x00,0x04,0x08,0x0a,0x0a,0x09,0x06,0x03,0x00, - 0xfd,0xfb,0xfa,0xfb,0xfd,0xff,0x01,0x03,0x04,0x05,0x06,0x07, - 0x08,0x09,0x0a,0x0b,0x0c,0x0b,0x09,0x05,0x01,0xfc,0xf8,0xf4, - 0xf2,0xf2,0xf4,0xf8,0xfc,0xff,0x03,0x05,0x06,0x06,0x04,0x02, - 0x00,0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfa, - 0xfa,0xfb,0xfc,0xfc,0xfb,0xfa,0xf9,0xf8,0xf8,0xf7,0xf6,0xf6, - 0xf8,0xfb,0x00,0x02,0x02,0x01,0x01,0x01,0x00,0xfd,0xf9,0xf6, - 0xf7,0xf9,0xfc,0xff,0x01,0x04,0x08,0x0c,0x0e,0x0d,0x0b,0x09, - 0x08,0x08,0x09,0x09,0x0a,0x0b,0x0d,0x0f,0x0f,0x0e,0x0c,0x08, - 0x04,0x02,0x02,0x02,0x03,0x03,0x06,0x08,0x0b,0x0c,0x0a,0x07, - 0x05,0x04,0x03,0x01,0xff,0xfd,0xfb,0xfa,0xf7,0xf3,0xef,0xec, - 0xeb,0xed,0xf0,0xf4,0xfa,0x00,0x05,0x08,0x08,0x05,0xff,0xf7, - 0xee,0xe6,0xdf,0xdb,0xda,0xdd,0xe3,0xec,0xf6,0x01,0x0b,0x14, - 0x1a,0x1e,0x1f,0x1e,0x1b,0x17,0x11,0x0c,0x09,0x0a,0x0c,0x10, - 0x15,0x19,0x1e,0x21,0x22,0x20,0x1c,0x18,0x17,0x18,0x1b,0x20, - 0x26,0x2d,0x35,0x3b,0x3e,0x3f,0x3e,0x3b,0x3a,0x39,0x39,0x38, - 0x35,0x2e,0x25,0x19,0x0b,0xfb,0xea,0xdd,0xd6,0xd9,0xe3,0xf1, - 0x00,0x10,0x1e,0x27,0x29,0x23,0x15,0x04,0xf3,0xe4,0xda,0xd2, - 0xcc,0xc9,0xc9,0xca,0xca,0xc9,0xc5,0xc2,0xc0,0xc3,0xc8,0xcf, - 0xd6,0xdb,0xe0,0xe3,0xe5,0xe4,0xe0,0xdc,0xda,0xdb,0xe0,0xe6, - 0xed,0xf2,0xf6,0xf9,0xf9,0xf5,0xee,0xe6,0xde,0xdb,0xdb,0xdf, - 0xe6,0xef,0xfa,0x06,0x11,0x1a,0x1e,0x1f,0x1e,0x1b,0x17,0x12, - 0x0d,0x08,0x05,0x03,0x03,0x02,0x02,0x03,0x04,0x07,0x0a,0x0d, - 0x0f,0x10,0x11,0x11,0x0f,0x0d,0x09,0x05,0x01,0xfe,0xfc,0xfb, - 0xfa,0xfb,0xfc,0xfd,0xfc,0xfb,0xfa,0xf8,0xf6,0xf4,0xf0,0xee, - 0xec,0xeb,0xea,0xea,0xea,0xec,0xef,0xf3,0xf7,0xfa,0xfd,0x00, - 0x01,0x01,0x00,0xfe,0xfb,0xf7,0xf4,0xf2,0xf2,0xf2,0xf4,0xf5, - 0xf7,0xfa,0xfe,0x01,0x03,0x04,0x06,0x07,0x08,0x09,0x08,0x08, - 0x07,0x07,0x07,0x07,0x06,0x05,0x05,0x05,0x05,0x04,0x02,0x01, - 0xff,0xff,0xff,0xff,0x00,0x01,0x03,0x06,0x09,0x0a,0x0a,0x09, - 0x08,0x07,0x05,0x02,0xfe,0xfc,0xfa,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfc,0xfe,0xff,0x01,0x02, - 0x03,0x03,0x02,0x01,0x00,0xfd,0xfb,0xf9,0xf8,0xf7,0xf8,0xf9, - 0xfa,0xfb,0xfc,0xfe,0xff,0xff,0xfe,0xfe,0xff,0x00,0x01,0x02, - 0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x04,0x06,0x08,0x08, - 0x08,0x06,0x03,0xff,0xfa,0xf5,0xf2,0xf0,0xf1,0xf3,0xf7,0xfd, - 0x02,0x07,0x0a,0x0b,0x0a,0x08,0x07,0x05,0x03,0x01,0x01,0x00, - 0xff,0xfd,0xfa,0xf8,0xf5,0xf3,0xf1,0xf1,0xf3,0xf7,0xfb,0xff, - 0x04,0x08,0x0a,0x0b,0x0a,0x09,0x07,0x04,0x03,0x02,0x01,0x01, - 0x01,0x01,0x00,0xfe,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xff, - 0x01,0x03,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x07,0x09, - 0x0a,0x09,0x07,0x05,0x03,0x00,0xfe,0xfb,0xf9,0xf9,0xfb,0xfe, - 0x01,0x03,0x04,0x06,0x07,0x08,0x06,0x03,0x00,0xfd,0xfa,0xf8, - 0xf5,0xf4,0xf5,0xf6,0xf8,0xfb,0xff,0x02,0x04,0x06,0x06,0x05, - 0x03,0xff,0xfa,0xf6,0xf2,0xef,0xee,0xef,0xf2,0xf5,0xf9,0xfd, - 0x01,0x04,0x04,0x04,0x03,0x02,0x01,0xff,0xfd,0xfc,0xfb,0xfc, - 0xfb,0xfb,0xfa,0xfb,0xfd,0x00,0x03,0x06,0x0a,0x0e,0x11,0x12, - 0x12,0x0f,0x0c,0x08,0x06,0x04,0x03,0x03,0x04,0x07,0x09,0x0a, - 0x0a,0x09,0x07,0x06,0x06,0x05,0x06,0x08,0x0a,0x0d,0x0f,0x10, - 0x0f,0x0e,0x0b,0x08,0x04,0x00,0xfc,0xf9,0xf6,0xf4,0xf1,0xef, - 0xee,0xee,0xee,0xef,0xf1,0xf4,0xf8,0xfd,0x02,0x06,0x09,0x0a, - 0x0a,0x08,0x05,0xff,0xf8,0xf0,0xe9,0xe3,0xde,0xda,0xd9,0xdb, - 0xe0,0xe8,0xf2,0xfc,0x07,0x11,0x19,0x20,0x24,0x25,0x24,0x22, - 0x20,0x1d,0x1b,0x19,0x19,0x19,0x19,0x18,0x17,0x15,0x13,0x11, - 0x10,0x10,0x13,0x18,0x1f,0x26,0x2e,0x36,0x3d,0x41,0x42,0x40, - 0x3d,0x39,0x36,0x31,0x2b,0x25,0x1e,0x16,0x0c,0x01,0xf5,0xea, - 0xe4,0xe2,0xe6,0xee,0xfa,0x08,0x16,0x20,0x26,0x24,0x1c,0x0e, - 0xfd,0xec,0xde,0xd2,0xca,0xc5,0xc4,0xc6,0xc9,0xcb,0xcb,0xca, - 0xca,0xcc,0xd0,0xd5,0xda,0xe0,0xe6,0xeb,0xee,0xed,0xe9,0xe4, - 0xdf,0xdb,0xd9,0xd8,0xda,0xdd,0xe1,0xe5,0xe9,0xec,0xee,0xef, - 0xef,0xef,0xf1,0xf3,0xf6,0xfa,0xfd,0x01,0x05,0x08,0x0a,0x0b, - 0x0c,0x0c,0x0d,0x0c,0x0b,0x0a,0x09,0x09,0x09,0x0a,0x0a,0x0b, - 0x0c,0x0e,0x0e,0x0e,0x0c,0x0b,0x08,0x06,0x03,0x01,0x00,0x00, - 0x01,0x01,0x02,0x04,0x05,0x05,0x05,0x04,0x02,0x00,0xfe,0xfb, - 0xf7,0xf3,0xf0,0xee,0xec,0xeb,0xea,0xec,0xef,0xf4,0xf9,0xfe, - 0x02,0x05,0x06,0x05,0x01,0xfc,0xf7,0xf2,0xf0,0xef,0xee,0xef, - 0xf0,0xf2,0xf5,0xf8,0xf9,0xf9,0xf9,0xfa,0xfc,0xfe,0xff,0xff, - 0x00,0x02,0x05,0x07,0x07,0x06,0x05,0x05,0x05,0x04,0x01,0xfe, - 0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfc,0x00,0x03,0x05,0x06,0x07, - 0x08,0x0a,0x0c,0x0c,0x0c,0x0b,0x0b,0x0b,0x0a,0x08,0x04,0x00, - 0xfc,0xfb,0xf9,0xf8,0xf7,0xf8,0xfa,0xfe,0x01,0x02,0x02,0x01, - 0x01,0x01,0x01,0x00,0xfe,0xfe,0xff,0x00,0x01,0x00,0xfd,0xfb, - 0xf8,0xf7,0xf5,0xf4,0xf4,0xf5,0xf8,0xfc,0xff,0x03,0x05,0x06, - 0x06,0x06,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x02,0xff,0xfc, - 0xf8,0xf5,0xf4,0xf4,0xf6,0xf9,0xfd,0x03,0x09,0x0d,0x0f,0x0d, - 0x0a,0x06,0x01,0xfc,0xf8,0xf5,0xf4,0xf5,0xf9,0xfc,0xff,0xff, - 0xff,0xfe,0xfc,0xfa,0xf9,0xf7,0xf8,0xfa,0xff,0x03,0x06,0x08, - 0x08,0x08,0x06,0x03,0x00,0xfc,0xfa,0xfa,0xfb,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x03,0x05,0x08,0x09, - 0x0a,0x08,0x07,0x05,0x03,0x01,0xfe,0xfc,0xfb,0xfc,0xfe,0xff, - 0x00,0x00,0x02,0x04,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x04, - 0x02,0x01,0xff,0x00,0x00,0xff,0xfd,0xfa,0xfa,0xfb,0xfd,0xfd, - 0xfd,0xfe,0xff,0x01,0x01,0x00,0xfd,0xfb,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfb,0xfd,0xfe,0xfd,0xfc,0xfb,0xfa,0xfb,0xfb,0xfc, - 0xfc,0xfc,0xfe,0x00,0x01,0x01,0x00,0xfe,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfe,0x00,0x03,0x05,0x06,0x05,0x05,0x04,0x03,0x02,0x02, - 0x02,0x03,0x05,0x07,0x0a,0x0b,0x0c,0x0c,0x0a,0x08,0x07,0x06, - 0x04,0x04,0x05,0x07,0x0b,0x0e,0x0f,0x0e,0x0c,0x09,0x05,0x01, - 0xfd,0xfb,0xfa,0xfc,0x00,0x04,0x07,0x08,0x08,0x07,0x06,0x03, - 0x00,0xfd,0xfb,0xfa,0xfa,0xf9,0xf6,0xf3,0xf0,0xed,0xeb,0xeb, - 0xec,0xef,0xf4,0xfa,0x00,0x04,0x06,0x06,0x03,0x00,0xfb,0xf7, - 0xf4,0xf2,0xf1,0xf1,0xf3,0xf4,0xf7,0xf9,0xfc,0x01,0x06,0x0c, - 0x12,0x17,0x1b,0x1d,0x1e,0x1c,0x19,0x16,0x15,0x15,0x17,0x1a, - 0x1e,0x21,0x23,0x23,0x20,0x1a,0x13,0x0e,0x0b,0x0c,0x0f,0x15, - 0x1d,0x27,0x30,0x36,0x3a,0x3a,0x37,0x34,0x2f,0x2b,0x26,0x20, - 0x18,0x10,0x06,0xfc,0xf2,0xea,0xe4,0xe4,0xe9,0xf3,0xff,0x0c, - 0x17,0x1f,0x22,0x1f,0x15,0x08,0xf9,0xec,0xe1,0xd9,0xd3,0xd1, - 0xd2,0xd3,0xd4,0xd3,0xd1,0xd1,0xd1,0xd4,0xd8,0xdc,0xe2,0xe7, - 0xeb,0xee,0xed,0xea,0xe6,0xe1,0xdd,0xdb,0xdb,0xdc,0xde,0xe2, - 0xe6,0xe9,0xeb,0xec,0xeb,0xeb,0xea,0xea,0xeb,0xed,0xf1,0xf6, - 0xfd,0x04,0x0a,0x10,0x14,0x16,0x16,0x14,0x0f,0x0a,0x03,0xfd, - 0xf8,0xf5,0xf5,0xf7,0xfb,0x01,0x07,0x0c,0x10,0x13,0x14,0x13, - 0x11,0x0f,0x0e,0x0c,0x09,0x06,0x03,0x00,0xfd,0xfa,0xf7,0xf6, - 0xf8,0xfb,0x00,0x04,0x07,0x09,0x08,0x04,0xfe,0xf7,0xf0,0xea, - 0xe8,0xe9,0xec,0xf0,0xf6,0xfb,0xff,0x01,0xff,0xfc,0xf8,0xf4, - 0xf1,0xef,0xef,0xef,0xf1,0xf2,0xf4,0xf6,0xf7,0xf7,0xf8,0xf9, - 0xfb,0xfd,0x00,0x02,0x04,0x05,0x05,0x04,0x02,0x00,0xfe,0xfc, - 0xfa,0xfa,0xfb,0xfd,0x00,0x02,0x04,0x06,0x08,0x09,0x08,0x06, - 0x04,0x02,0x00,0x00,0x00,0x01,0x03,0x05,0x08,0x0a,0x0b,0x0a, - 0x08,0x05,0x02,0x00,0xfd,0xfc,0xfb,0xfc,0xfd,0xfd,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfd,0xff,0x00,0x02,0x03,0x05,0x05, - 0x04,0x03,0x01,0xfe,0xfd,0xfb,0xfb,0xfc,0xfd,0xfe,0x00,0x02, - 0x02,0x02,0x00,0xfe,0xfc,0xfa,0xfa,0xfa,0xfb,0xfe,0x01,0x04, - 0x06,0x08,0x07,0x06,0x04,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfd, - 0xfc,0xfa,0xf7,0xf5,0xf3,0xf3,0xf5,0xf8,0xfc,0x00,0x05,0x0a, - 0x0d,0x0e,0x0c,0x08,0x03,0xfd,0xf7,0xf2,0xef,0xed,0xef,0xf2, - 0xf7,0xfb,0xff,0x02,0x03,0x03,0x03,0x02,0x01,0x02,0x03,0x05, - 0x06,0x07,0x07,0x05,0x02,0xfe,0xfb,0xf8,0xf7,0xf7,0xf9,0xfc, - 0x01,0x05,0x07,0x08,0x09,0x08,0x07,0x06,0x06,0x07,0x09,0x0b, - 0x0c,0x0c,0x0b,0x08,0x05,0x00,0xfb,0xf8,0xf6,0xf6,0xf8,0xfa, - 0xfd,0xff,0x02,0x04,0x06,0x06,0x06,0x06,0x06,0x07,0x07,0x06, - 0x03,0xff,0xfc,0xf9,0xf6,0xf3,0xef,0xee,0xef,0xf2,0xf5,0xf7, - 0xf8,0xfa,0xfc,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfb, - 0xf8,0xf5,0xf4,0xf3,0xf2,0xf1,0xf1,0xf2,0xf5,0xf9,0xfd,0x00, - 0x04,0x08,0x0c,0x0f,0x11,0x11,0x0f,0x0d,0x0a,0x07,0x03,0x00, - 0xfe,0xfd,0xff,0x01,0x04,0x07,0x0b,0x0f,0x11,0x12,0x12,0x11, - 0x0f,0x0d,0x0a,0x08,0x06,0x06,0x06,0x08,0x09,0x0a,0x0b,0x0b, - 0x0b,0x09,0x06,0x02,0xff,0xfe,0xfd,0xfe,0xfe,0x00,0x02,0x04, - 0x05,0x04,0x02,0xff,0xfc,0xfa,0xf7,0xf5,0xf4,0xf2,0xf1,0xf1, - 0xf0,0xee,0xed,0xec,0xee,0xf1,0xf7,0xfc,0x01,0x06,0x0a,0x0c, - 0x0a,0x06,0xff,0xf8,0xf2,0xed,0xe9,0xe8,0xe9,0xed,0xf4,0xfc, - 0x05,0x0c,0x12,0x16,0x18,0x18,0x17,0x14,0x11,0x10,0x11,0x13, - 0x17,0x1a,0x1c,0x1f,0x20,0x20,0x1d,0x1a,0x17,0x16,0x16,0x18, - 0x1c,0x1f,0x21,0x22,0x24,0x24,0x24,0x23,0x23,0x24,0x28,0x2d, - 0x30,0x31,0x2d,0x26,0x1c,0x10,0x02,0xf3,0xe8,0xe2,0xe3,0xeb, - 0xf5,0x00,0x0a,0x12,0x17,0x17,0x11,0x07,0xfc,0xf2,0xea,0xe5, - 0xe2,0xdf,0xde,0xdc,0xdb,0xda,0xd8,0xd6,0xd5,0xd6,0xd9,0xde, - 0xe3,0xe6,0xe7,0xe7,0xe5,0xe4,0xe2,0xe0,0xe0,0xe1,0xe4,0xe9, - 0xed,0xf0,0xf1,0xf0,0xec,0xe9,0xe5,0xe2,0xe0,0xdf,0xdf,0xe2, - 0xe7,0xed,0xf3,0xf9,0xff,0x05,0x0c,0x11,0x13,0x14,0x12,0x0f, - 0x0b,0x06,0x00,0xfa,0xf6,0xf5,0xf8,0xfb,0x00,0x04,0x09,0x0d, - 0x11,0x12,0x12,0x11,0x10,0x0f,0x0f,0x0d,0x0c,0x0b,0x09,0x07, - 0x05,0x02,0x00,0xfe,0xfd,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf8, - 0xf8,0xf9,0xfb,0xfd,0x00,0x03,0x05,0x07,0x06,0x04,0xff,0xf9, - 0xf2,0xec,0xe8,0xe5,0xe5,0xe7,0xeb,0xf1,0xf6,0xfa,0xfd,0xfe, - 0xff,0xff,0xfe,0xfd,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfb,0xfa, - 0xf8,0xf7,0xf6,0xf5,0xf4,0xf4,0xf6,0xf9,0xfd,0x00,0x03,0x05, - 0x07,0x08,0x08,0x08,0x07,0x06,0x05,0x04,0x03,0x02,0x01,0xfe, - 0xfc,0xfc,0xfc,0xfd,0xff,0x01,0x04,0x08,0x0b,0x0d,0x0d,0x0b, - 0x08,0x05,0x03,0x00,0xfd,0xfb,0xfb,0xfc,0xfe,0xfe,0xff,0xff, - 0xff,0x00,0x02,0x03,0x04,0x05,0x06,0x07,0x07,0x06,0x04,0x00, - 0xfc,0xfa,0xf8,0xf8,0xf7,0xf8,0xf9,0xfd,0x00,0x03,0x04,0x04, - 0x05,0x05,0x04,0x04,0x02,0xff,0xfd,0xfb,0xfb,0xfa,0xfa,0xf9, - 0xf9,0xfb,0xfc,0xfd,0xfd,0xfc,0xfb,0xfa,0xfa,0xfb,0xfd,0xff, - 0x00,0x02,0x04,0x06,0x06,0x06,0x04,0x02,0x00,0x00,0xff,0xfe, - 0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfc,0xfd,0xff,0x01,0x04,0x05, - 0x05,0x06,0x06,0x05,0x04,0x02,0xff,0xfe,0xfd,0xfd,0xfe,0xff, - 0x00,0x02,0x04,0x05,0x06,0x06,0x06,0x05,0x03,0x00,0xfe,0xfc, - 0xfa,0xf8,0xf7,0xf7,0xf8,0xfa,0xfc,0xfe,0x00,0x01,0x02,0x02, - 0x01,0xff,0xfc,0xf9,0xf6,0xf4,0xf4,0xf5,0xf7,0xfa,0xfe,0x02, - 0x05,0x08,0x09,0x07,0x03,0xff,0xfa,0xf7,0xf3,0xf0,0xef,0xef, - 0xf2,0xf7,0xfb,0x00,0x03,0x07,0x0c,0x0f,0x11,0x0f,0x0c,0x08, - 0x04,0xff,0xfa,0xf4,0xf1,0xf0,0xf2,0xf8,0xfe,0x04,0x0b,0x11, - 0x15,0x17,0x15,0x11,0x0d,0x08,0x05,0x04,0x03,0x04,0x05,0x07, - 0x09,0x0a,0x0a,0x09,0x07,0x06,0x04,0x03,0x03,0x04,0x04,0x04, - 0x04,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x03,0x01, - 0xfd,0xf9,0xf5,0xf2,0xf0,0xf0,0xf1,0xf3,0xf7,0xfc,0x01,0x05, - 0x07,0x07,0x06,0x04,0x01,0xfd,0xf8,0xf3,0xf0,0xed,0xec,0xeb, - 0xeb,0xed,0xf1,0xf6,0xfb,0x00,0x05,0x09,0x0c,0x0e,0x0f,0x0e, - 0x0b,0x07,0x02,0xfc,0xf8,0xf6,0xf6,0xf8,0xfc,0x02,0x0a,0x11, - 0x16,0x18,0x18,0x16,0x12,0x0e,0x0b,0x0b,0x0d,0x12,0x19,0x21, - 0x27,0x2a,0x2a,0x26,0x1f,0x16,0x0d,0x06,0x02,0x02,0x05,0x09, - 0x0e,0x14,0x19,0x1d,0x1f,0x20,0x21,0x23,0x26,0x27,0x26,0x22, - 0x1b,0x12,0x07,0xfb,0xef,0xe6,0xe2,0xe5,0xed,0xf7,0x02,0x0b, - 0x12,0x15,0x14,0x0e,0x05,0xfa,0xf2,0xed,0xea,0xea,0xea,0xeb, - 0xec,0xec,0xeb,0xe8,0xe4,0xe1,0xe0,0xe1,0xe4,0xe6,0xe8,0xe9, - 0xea,0xea,0xe9,0xe7,0xe6,0xe6,0xe9,0xec,0xf0,0xf3,0xf5,0xf4, - 0xf1,0xec,0xe8,0xe3,0xe1,0xe0,0xe3,0xe8,0xef,0xf6,0xfd,0x02, - 0x04,0x06,0x06,0x04,0x01,0xfe,0xfa,0xf8,0xf6,0xf5,0xf3,0xf2, - 0xf2,0xf4,0xf8,0xfd,0x02,0x07,0x0b,0x0f,0x12,0x14,0x13,0x0f, - 0x0b,0x07,0x05,0x03,0x01,0xff,0xfd,0xfd,0xfe,0xff,0x00,0x01, - 0x02,0x04,0x08,0x0b,0x0d,0x0e,0x0d,0x0c,0x0b,0x08,0x04,0x01, - 0xfd,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfb,0xfd,0x00,0x02,0x04,0x04,0x04,0x04,0x02,0xff,0xfc,0xf8, - 0xf6,0xf4,0xf3,0xf2,0xf2,0xf3,0xf5,0xf8,0xfa,0xfc,0xfd,0xff, - 0x00,0x02,0x02,0x03,0x02,0x02,0x00,0xfe,0xfa,0xf7,0xf3,0xef, - 0xee,0xee,0xef,0xf2,0xf6,0xfb,0xff,0x03,0x05,0x06,0x06,0x05, - 0x04,0x03,0x02,0x02,0x01,0xff,0xfc,0xf9,0xf6,0xf3,0xf2,0xf2, - 0xf5,0xf9,0xff,0x06,0x0b,0x0f,0x11,0x10,0x0e,0x0a,0x05,0x00, - 0xfc,0xfa,0xfa,0xfb,0xfc,0xfd,0xff,0x00,0x00,0x00,0x01,0x01, - 0x02,0x04,0x06,0x09,0x0b,0x0c,0x0b,0x08,0x06,0x02,0xfe,0xfa, - 0xf7,0xf5,0xf5,0xf7,0xfa,0xfd,0x00,0x03,0x06,0x09,0x0b,0x0b, - 0x09,0x07,0x06,0x05,0x04,0x01,0xfe,0xfb,0xf9,0xf8,0xf7,0xf7, - 0xf7,0xf8,0xfc,0x02,0x06,0x0a,0x0b,0x0c,0x0c,0x0a,0x06,0x01, - 0xfd,0xf8,0xf6,0xf4,0xf5,0xf6,0xf7,0xf9,0xfb,0xfd,0x00,0x02, - 0x02,0x03,0x03,0x04,0x03,0x03,0x01,0xff,0xfd,0xfb,0xf9,0xf7, - 0xf6,0xf5,0xf5,0xf6,0xf7,0xf9,0xfc,0xfe,0x00,0x02,0x04,0x05, - 0x06,0x06,0x05,0x04,0x02,0xff,0xfd,0xfb,0xf8,0xf6,0xf4,0xf4, - 0xf5,0xf7,0xfa,0xfc,0x00,0x04,0x07,0x09,0x0a,0x0a,0x0a,0x08, - 0x06,0x04,0x01,0xff,0xfd,0xfb,0xf9,0xf7,0xf7,0xf7,0xfa,0xfd, - 0x01,0x06,0x0b,0x10,0x14,0x15,0x14,0x11,0x0d,0x09,0x04,0x00, - 0xfe,0xfd,0xfd,0xfe,0x00,0x01,0x02,0x02,0x03,0x03,0x03,0x04, - 0x05,0x07,0x09,0x0b,0x0c,0x0c,0x0b,0x09,0x06,0x03,0x00,0xfd, - 0xfb,0xf9,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8,0xfa,0xfd,0x00,0x03, - 0x06,0x08,0x09,0x08,0x05,0x01,0xfb,0xf6,0xf1,0xed,0xeb,0xea, - 0xec,0xef,0xf2,0xf6,0xfb,0xff,0x03,0x05,0x07,0x08,0x08,0x06, - 0x03,0xff,0xfa,0xf5,0xf1,0xed,0xeb,0xea,0xeb,0xef,0xf5,0xfc, - 0x03,0x09,0x0f,0x14,0x17,0x17,0x15,0x10,0x0a,0x05,0x00,0xfc, - 0xf9,0xf8,0xf9,0xfd,0x03,0x09,0x0e,0x11,0x13,0x13,0x13,0x12, - 0x12,0x11,0x12,0x15,0x1a,0x1e,0x1f,0x1e,0x1b,0x16,0x10,0x09, - 0x03,0x00,0xff,0x02,0x07,0x0d,0x13,0x18,0x1b,0x1b,0x1a,0x18, - 0x16,0x15,0x14,0x13,0x12,0x0f,0x0c,0x07,0x00,0xf8,0xf2,0xef, - 0xf0,0xf5,0xfd,0x05,0x0d,0x14,0x17,0x16,0x10,0x06,0xfa,0xf0, - 0xe9,0xe6,0xe6,0xe7,0xea,0xee,0xf3,0xf6,0xf7,0xf5,0xf3,0xf1, - 0xf2,0xf3,0xf4,0xf4,0xf4,0xf4,0xf3,0xf1,0xee,0xe9,0xe6,0xe4, - 0xe4,0xe5,0xe7,0xe9,0xeb,0xec,0xee,0xee,0xee,0xed,0xec,0xed, - 0xef,0xf1,0xf4,0xf7,0xf9,0xfb,0xfc,0xfc,0xfa,0xf8,0xf5,0xf2, - 0xf0,0xef,0xf0,0xf1,0xf3,0xf7,0xfc,0x02,0x08,0x0c,0x0e,0x0e, - 0x0c,0x0a,0x06,0x01,0xfc,0xf9,0xf8,0xfa,0xfe,0x01,0x04,0x06, - 0x08,0x0a,0x0b,0x0a,0x08,0x06,0x06,0x07,0x08,0x07,0x06,0x04, - 0x03,0x02,0x01,0xff,0xfe,0xff,0x01,0x05,0x08,0x0a,0x0b,0x0a, - 0x09,0x07,0x03,0xff,0xfb,0xf9,0xf9,0xfa,0xfc,0xfe,0xff,0x00, - 0x01,0x00,0xff,0xfc,0xfa,0xf9,0xf9,0xfa,0xfb,0xfb,0xfc,0xfd, - 0xfd,0xfd,0xfb,0xfa,0xf9,0xf8,0xf8,0xf8,0xf9,0xfa,0xfc,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8,0xf8, - 0xf8,0xf8,0xf8,0xf8,0xfa,0xfc,0xfe,0x01,0x03,0x05,0x06,0x07, - 0x06,0x04,0x01,0xfe,0xfa,0xf7,0xf5,0xf4,0xf4,0xf6,0xf9,0xfc, - 0x00,0x05,0x09,0x0c,0x0e,0x0e,0x0d,0x0b,0x07,0x02,0xfd,0xf8, - 0xf5,0xf3,0xf3,0xf5,0xf8,0xfc,0x00,0x04,0x08,0x0a,0x0b,0x0a, - 0x09,0x07,0x05,0x03,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfc, - 0xfd,0xfe,0xff,0x01,0x03,0x05,0x06,0x07,0x07,0x06,0x04,0x01, - 0xff,0xfd,0xfb,0xfb,0xfd,0xfe,0x00,0x01,0x02,0x02,0x02,0x01, - 0xff,0xff,0xfe,0xff,0x00,0x02,0x03,0x03,0x02,0x00,0xfd,0xfb, - 0xf8,0xf5,0xf3,0xf3,0xf4,0xf7,0xfb,0xfe,0x00,0x02,0x04,0x05, - 0x05,0x04,0x01,0xff,0xfe,0xfd,0xfc,0xfb,0xf9,0xf8,0xf8,0xf8, - 0xf8,0xf8,0xf8,0xf8,0xfb,0xfe,0x01,0x03,0x05,0x07,0x08,0x07, - 0x06,0x02,0xff,0xfc,0xfa,0xf9,0xf9,0xfa,0xfb,0xfd,0xff,0x00, - 0x00,0x00,0xff,0x00,0x02,0x05,0x08,0x0b,0x0e,0x0f,0x0e,0x0b, - 0x07,0x01,0xfc,0xf7,0xf5,0xf6,0xf9,0xfe,0x02,0x07,0x0b,0x0e, - 0x0f,0x0e,0x0c,0x0a,0x08,0x07,0x07,0x07,0x06,0x04,0x03,0x01, - 0xff,0xfe,0xfc,0xfc,0xfd,0x00,0x04,0x08,0x0b,0x0b,0x0b,0x09, - 0x07,0x04,0x00,0xfd,0xfc,0xfb,0xfc,0xfc,0xfc,0xfb,0xfb,0xfa, - 0xf9,0xf9,0xfa,0xfc,0xff,0x02,0x05,0x07,0x08,0x06,0x03,0xfe, - 0xf8,0xf3,0xef,0xec,0xeb,0xec,0xee,0xf1,0xf5,0xf9,0xfc,0xfe, - 0x00,0x01,0x03,0x03,0x03,0x02,0x01,0xff,0xfd,0xfa,0xf7,0xf5, - 0xf4,0xf4,0xf5,0xf8,0xfc,0x00,0x04,0x08,0x0c,0x0f,0x10,0x0f, - 0x0e,0x0b,0x08,0x05,0x02,0xff,0xfe,0xfe,0x01,0x04,0x09,0x0d, - 0x12,0x16,0x17,0x16,0x13,0x10,0x0c,0x0a,0x09,0x0a,0x0c,0x10, - 0x14,0x17,0x19,0x18,0x16,0x12,0x0f,0x0c,0x0a,0x09,0x09,0x0a, - 0x0c,0x0e,0x10,0x10,0x0f,0x0e,0x0e,0x10,0x13,0x15,0x14,0x12, - 0x0f,0x0a,0x03,0xfa,0xf2,0xeb,0xea,0xef,0xf6,0xff,0x07,0x0d, - 0x13,0x15,0x12,0x0a,0xff,0xf4,0xeb,0xe6,0xe4,0xe3,0xe5,0xe8, - 0xec,0xf1,0xf5,0xf6,0xf6,0xf6,0xf7,0xf9,0xfa,0xf9,0xf8,0xf6, - 0xf3,0xf0,0xec,0xe7,0xe4,0xe3,0xe4,0xe7,0xec,0xf1,0xf6,0xf9, - 0xfb,0xfb,0xf8,0xf5,0xf1,0xed,0xeb,0xeb,0xec,0xef,0xf3,0xf8, - 0xfc,0xff,0x01,0x02,0x01,0x00,0xfc,0xf9,0xf6,0xf5,0xf5,0xf5, - 0xf6,0xf9,0xfd,0x01,0x05,0x07,0x08,0x08,0x07,0x06,0x04,0x02, - 0x00,0x00,0x00,0x01,0x03,0x05,0x06,0x07,0x08,0x09,0x09,0x08, - 0x08,0x08,0x07,0x06,0x04,0x01,0xff,0xfe,0xfc,0xfc,0xfd,0x00, - 0x04,0x08,0x0c,0x0e,0x0e,0x0c,0x08,0x03,0xfd,0xf7,0xf3,0xf1, - 0xf2,0xf5,0xfa,0xfe,0x02,0x06,0x08,0x08,0x05,0x01,0xfd,0xfa, - 0xf8,0xf7,0xf6,0xf6,0xf8,0xfa,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa,0xfa, - 0xfb,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfc,0xfa,0xf8,0xf8, - 0xf9,0xfb,0xfd,0x00,0x03,0x05,0x05,0x05,0x03,0x00,0xfc,0xfa, - 0xf9,0xf9,0xf9,0xfb,0xfd,0xff,0x00,0x01,0x01,0x02,0x03,0x03, - 0x04,0x05,0x06,0x05,0x04,0x02,0xff,0xfc,0xf9,0xf8,0xf7,0xf8, - 0xfb,0xfe,0x01,0x03,0x04,0x05,0x04,0x04,0x02,0x01,0x01,0x01, - 0x02,0x01,0x01,0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xfb,0xfd,0xff, - 0x01,0x03,0x03,0x03,0x02,0x00,0xfe,0xfd,0xfd,0xfe,0xff,0x00, - 0x01,0x01,0x00,0x00,0xff,0xfd,0xfd,0xfd,0xfe,0x00,0x03,0x04, - 0x05,0x05,0x05,0x04,0x02,0x00,0xfe,0xfd,0xfd,0xfe,0x00,0x01, - 0x02,0x02,0x02,0x01,0x00,0xfe,0xfc,0xfb,0xfb,0xfc,0xfe,0xff, - 0x00,0x01,0x01,0x02,0x01,0x01,0xff,0xfe,0xfd,0xfd,0xfe,0xfe, - 0xff,0xff,0x00,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0x00,0x02,0x03,0x04,0x04,0x04,0x03,0x02,0x02,0x01, - 0x00,0xff,0xff,0x01,0x02,0x03,0x04,0x04,0x03,0x03,0x02,0x00, - 0xff,0xfe,0xfe,0xff,0x01,0x03,0x04,0x05,0x06,0x05,0x05,0x03, - 0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0xff, - 0xfe,0xfe,0xfe,0xff,0x00,0x02,0x03,0x04,0x04,0x02,0x01,0xff, - 0xfd,0xfb,0xfa,0xf9,0xfa,0xfb,0xfd,0xff,0xff,0xff,0xff,0xff, - 0xff,0xfe,0xfd,0xfc,0xfd,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa, - 0xf9,0xf9,0xf8,0xf9,0xfa,0xfc,0xfe,0x01,0x02,0x03,0x02,0x02, - 0x00,0xff,0xfd,0xfb,0xf9,0xf9,0xf9,0xfa,0xfb,0xfd,0xfe,0x01, - 0x03,0x05,0x07,0x08,0x09,0x09,0x09,0x09,0x09,0x08,0x06,0x04, - 0x03,0x01,0x01,0x01,0x01,0x02,0x04,0x07,0x0b,0x0e,0x10,0x10, - 0x10,0x0f,0x0d,0x0b,0x09,0x08,0x08,0x08,0x0a,0x0b,0x0c,0x0d, - 0x0c,0x0a,0x08,0x07,0x06,0x06,0x07,0x09,0x0b,0x0d,0x0e,0x0d, - 0x0b,0x09,0x06,0x04,0x03,0x03,0x05,0x08,0x0b,0x0d,0x0c,0x0a, - 0x05,0x00,0xfc,0xf7,0xf5,0xf4,0xf5,0xf9,0xfe,0x02,0x05,0x07, - 0x07,0x06,0x03,0xff,0xfc,0xfa,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, - 0xf7,0xf6,0xf4,0xf2,0xf1,0xf1,0xf2,0xf4,0xf5,0xf7,0xf9,0xfa, - 0xfb,0xfb,0xfa,0xfa,0xf9,0xf9,0xfa,0xf9,0xf9,0xf8,0xf7,0xf6, - 0xf4,0xf3,0xf1,0xf0,0xf1,0xf2,0xf4,0xf7,0xf9,0xfc,0xfe,0x00, - 0x01,0x01,0x01,0x00,0xff,0xfe,0xfc,0xfb,0xfa,0xf9,0xf8,0xf8, - 0xf8,0xf9,0xfa,0xfc,0xfd,0xff,0x00,0x00,0x00,0xff,0xff,0xfe, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0xfe,0xfc,0xfa, - 0xf9,0xf8,0xf9,0xfb,0xfe,0x00,0x02,0x04,0x05,0x05,0x05,0x03, - 0x01,0xff,0xfe,0xfc,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb,0xfc,0xfe, - 0x00,0x01,0x03,0x04,0x04,0x04,0x03,0x00,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfe,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x01, - 0x00,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00, - 0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,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,0xfe,0xfe,0xfe,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, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04, - 0x04,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x03, - 0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfc,0xf9,0xf7,0xf8,0xfb,0xfe,0xff,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfb,0xfa,0xfa,0xfc,0xfe,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x01,0x01,0x02,0x02,0x01, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x00,0xfe,0xfb,0xf9,0xfb,0xfe,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x01,0x00,0xfe,0xfc,0xfc, - 0xfe,0xff,0xff,0xfe,0xfe,0xff,0x00,0x00,0xff,0xfe,0xff,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xff,0x00,0x01,0x00,0xff,0xff,0x00, - 0x01,0x00,0xff,0xff,0xff,0x01,0x01,0x00,0xff,0xff,0xfe,0xfe, - 0xff,0x00,0x02,0x02,0xff,0xfd,0xfd,0x00,0x03,0x01,0xff,0xfd, - 0xff,0x01,0x01,0x00,0xff,0x00,0x02,0x01,0x00,0xfe,0xfe,0x00, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff, - 0xfe,0xfe,0xff,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0x00,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x00,0xff,0xfe,0xfd,0xfe,0xff, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x02,0x02,0x01,0xfe,0xfc,0xfa,0xfc,0xff,0x02, - 0x02,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x01,0x03,0x03,0x01, - 0xfe,0xfe,0xff,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x03, - 0x03,0x02,0x01,0xff,0x00,0x01,0x02,0x02,0xff,0xfd,0xfd,0xff, - 0x02,0x03,0x02,0x01,0x00,0xff,0x00,0x00,0x00,0x01,0x02,0x02, - 0x02,0x01,0x00,0xff,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x03,0x04,0x04,0x03,0x02,0x01,0x02, - 0x02,0x02,0x01,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x01,0x02, - 0x02,0x00,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0xff,0xff,0xff,0x01,0x01,0x00,0xff,0xff,0x01, - 0x01,0x00,0xfe,0xfd,0xff,0x01,0x02,0x01,0x00,0xff,0x00,0x01, - 0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfc,0xfb,0xfa,0xfc,0xff,0x01,0x00,0xfd,0xfb,0xfb, - 0xfc,0xfe,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0xfe,0xfd,0xfc,0xfd,0x00,0x02,0x02,0xff, - 0xfc,0xfb,0xfc,0xff,0x00,0x00,0xfe,0xfe,0xfe,0xfe,0xfe,0xfc, - 0xfc,0xfc,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0xff, - 0xff,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00, - 0x00,0xfe,0xfd,0xfe,0x00,0x02,0x01,0xff,0xfd,0xfe,0x00,0x01, - 0x00,0xfe,0xfd,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xff,0x00, - 0x01,0x00,0x00,0x00,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x02,0x01,0xff, - 0xfe,0xfd,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0xff,0x00,0xff,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0x00,0xff,0xff, - 0xff,0x00,0x00,0x01,0x01,0xff,0xfe,0xfe,0x00,0x01,0x01,0xff, - 0xfe,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xff,0x00, - 0x00,0x00,0xff,0xff,0x00,0xff,0xff,0xfe,0xfe,0xff,0x00,0x01, - 0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0xfe, - 0xfe,0xff,0x00,0xff,0xfe,0xfe,0x00,0x02,0x01,0xff,0xfe,0xff, - 0x01,0x02,0x01,0xff,0xfe,0xff,0x00,0x00,0xff,0xff,0x00,0x01, - 0x00,0xff,0xfe,0xff,0x00,0x00,0xff,0xff,0xff,0x01,0x01,0x01, - 0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x00,0x01,0x01,0xff,0xfd, - 0xfe,0x00,0x03,0x04,0x01,0xfe,0xfd,0xfe,0x00,0x01,0x00,0x00, - 0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x01,0x00,0x00,0xff,0xff, - 0x00,0x00,0x01,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xfe,0xfd,0xfd,0xff,0x01,0x02,0x01,0x00,0x00,0x02, - 0x02,0x02,0x01,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xff,0x00, - 0x00,0x00,0x01,0x01,0x00,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, - 0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x01,0x01,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xff,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x02, - 0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x00, - 0x01,0x01,0x02,0x01,0x00,0xff,0x00,0x02,0x03,0x02,0x01,0x01, - 0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x00,0xff,0x00,0x01,0x01,0xff,0xff,0x01,0x03,0x04, - 0x02,0x00,0xfe,0x00,0x03,0x05,0x04,0x02,0x01,0x01,0x02,0x01, - 0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x00,0xff,0xfe, - 0xfe,0xff,0x01,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0xff,0xfd,0xfc, - 0xfc,0xfd,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfd, - 0xff,0x00,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfd,0xfc,0xfc,0xfd, - 0xfc,0xfc,0xfd,0xfe,0xff,0xff,0xfe,0xfd,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xff,0x00,0x01,0x00,0xff,0xfd,0xfd,0xfd,0xfe,0xfe,0xfc, - 0xfb,0xfb,0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfc,0xfc,0xfd, - 0xff,0x00,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00, - 0x00,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xff,0x00,0x00,0xff, - 0xfe,0xfd,0xfe,0xff,0x01,0x02,0x02,0x00,0xfe,0xfc,0xfc,0xfe, - 0x00,0x01,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfc,0xfd,0xff,0x01, - 0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0xff,0x00,0x01,0x01,0xff,0xfe,0xfe,0xff,0x00,0xff,0xfe,0xfd, - 0xfd,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfe,0x00, - 0x02,0x03,0x00,0xfe,0xfd,0xfe,0x00,0x00,0xff,0xfe,0xfe,0xff, - 0x01,0x01,0x00,0xff,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x02,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff, - 0x01,0x01,0x01,0xfe,0xfc,0xfc,0xfe,0x00,0x01,0x00,0xff,0xfe, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x00,0xff,0xfe,0xff,0x00,0x01,0x00,0xff,0xfe,0xff,0x00,0x01, - 0x01,0xff,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x01,0x02,0x01, - 0x00,0xff,0xfe,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x01,0x00,0x00, - 0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01,0x02,0x01,0x01, - 0x00,0xff,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0x00,0x01,0x02,0x02,0x01,0x00,0xff,0x00, - 0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00, - 0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x00, - 0xff,0xff,0xff,0x00,0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x01, - 0x00,0xff,0xff,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01, - 0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0xff,0x00,0x01, - 0x02,0x02,0x01,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x02,0x02, - 0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x01,0x00, - 0xff,0x00,0x02,0x03,0x03,0x02,0x00,0x00,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0xff,0xff,0x00,0x01,0x01,0x02,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x00, - 0x00,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfd,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe, - 0xfd,0xfd,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,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,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xff,0xff, - 0x00,0x01,0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xff, - 0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa, - 0xfa,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01, - 0x02,0x02,0x03,0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x02, - 0x02,0x03,0x03,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x04, - 0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x05,0x05, - 0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x03,0x03,0x03,0x03,0x03, - 0x03,0x04,0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x05, - 0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05, - 0x05,0x04,0x04,0x03,0x03,0x02,0x02,0x01,0x01,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfb,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc, - 0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x03,0x03, - 0x03,0x04,0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x01,0x02, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb, - 0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01, - 0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03, - 0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01, - 0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x00,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x02,0x02,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x05, - 0x05,0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x06,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x07,0x07,0x07, - 0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x08,0x08,0x07,0x07,0x07, - 0x07,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x06,0x05,0x04,0x04,0x03,0x02,0x02,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfa,0xfa,0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, - 0xf8,0xf9,0xf9,0xf9,0xf8,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf7, - 0xf8,0xf8,0xf8,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7, - 0xf7,0xf7,0xf8,0xf9,0xf9,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf7, - 0xf7,0xf7,0xf8,0xf8,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x02,0x03,0x03,0x04,0x04,0x05,0x06,0x06,0x06, - 0x06,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05, - 0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01, - 0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x03, - 0x02,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x03,0x03,0x04,0x04, - 0x04,0x04,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x01,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf7,0xf7,0xf8,0xf8, - 0xf8,0xf8,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x03,0x04, - 0x04,0x05,0x06,0x06,0x07,0x07,0x07,0x06,0x07,0x07,0x08,0x09, - 0x0a,0x0a,0x0a,0x0b,0x0b,0x0b,0x0a,0x09,0x09,0x0a,0x0b,0x0c, - 0x0c,0x0d,0x0e,0x0f,0x0f,0x10,0x10,0x0f,0x0e,0x0e,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x10,0x11,0x11,0x12,0x12,0x11,0x11,0x11,0x10, - 0x0f,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0d,0x0d,0x0c,0x0b,0x09, - 0x08,0x06,0x05,0x03,0x02,0x01,0x01,0x01,0x00,0xff,0xfe,0xfd, - 0xfb,0xfa,0xf8,0xf6,0xf5,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf3, - 0xf2,0xf2,0xf1,0xf0,0xef,0xee,0xee,0xee,0xed,0xed,0xed,0xed, - 0xee,0xef,0xef,0xef,0xee,0xee,0xee,0xee,0xee,0xed,0xed,0xee, - 0xee,0xef,0xf0,0xf0,0xf1,0xf1,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2, - 0xf3,0xf4,0xf5,0xf6,0xf7,0xf7,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa, - 0xfa,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x02,0x02,0x03,0x03, - 0x04,0x04,0x04,0x05,0x07,0x08,0x09,0x0a,0x0b,0x0b,0x0c,0x0c, - 0x0b,0x0b,0x0b,0x0a,0x0a,0x0b,0x0b,0x0c,0x0c,0x0c,0x0c,0x0c, - 0x0b,0x0a,0x09,0x07,0x06,0x06,0x05,0x05,0x05,0x05,0x05,0x05, - 0x04,0x03,0x03,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8,0xf7,0xf6, - 0xf6,0xf7,0xf7,0xf7,0xf8,0xf9,0xfa,0xfb,0xfb,0xfb,0xfb,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfe,0xff,0x00,0x00,0x01, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x03, - 0x03,0x04,0x04,0x04,0x03,0x03,0x03,0x02,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc, - 0xfc,0xfb,0xfb,0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfe,0xff,0xff,0x00,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03, - 0x04,0x04,0x03,0x03,0x04,0x05,0x05,0x06,0x07,0x07,0x08,0x09, - 0x0a,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x08,0x08,0x07,0x07,0x07, - 0x07,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x07, - 0x06,0x05,0x04,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x05,0x05, - 0x05,0x05,0x04,0x03,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf7, - 0xf5,0xf4,0xf3,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2, - 0xf1,0xf1,0xf0,0xf0,0xf0,0xf0,0xf1,0xf1,0xf2,0xf2,0xf3,0xf4, - 0xf5,0xf5,0xf6,0xf6,0xf7,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0xff, - 0xff,0xff,0xff,0xff,0x00,0x01,0x03,0x04,0x05,0x07,0x09,0x0b, - 0x0c,0x0d,0x0d,0x0d,0x0d,0x0e,0x0e,0x0e,0x0f,0x10,0x11,0x13, - 0x14,0x15,0x16,0x17,0x18,0x18,0x18,0x18,0x19,0x19,0x1a,0x1a, - 0x1a,0x1a,0x1b,0x1b,0x1b,0x1b,0x1a,0x19,0x19,0x18,0x17,0x16, - 0x15,0x14,0x13,0x13,0x12,0x11,0x10,0x0f,0x0e,0x0d,0x0b,0x08, - 0x06,0x04,0x03,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfd,0xfb,0xf9, - 0xf7,0xf5,0xf3,0xf2,0xf0,0xef,0xee,0xee,0xee,0xed,0xec,0xeb, - 0xea,0xe9,0xe8,0xe8,0xe7,0xe7,0xe6,0xe6,0xe6,0xe7,0xe7,0xe7, - 0xe7,0xe7,0xe7,0xe7,0xe7,0xe7,0xe8,0xe8,0xe8,0xe8,0xe9,0xea, - 0xeb,0xec,0xec,0xee,0xef,0xf0,0xf1,0xf1,0xf2,0xf3,0xf4,0xf5, - 0xf6,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0x00,0x01, - 0x02,0x03,0x04,0x05,0x06,0x06,0x06,0x06,0x06,0x06,0x07,0x08, - 0x08,0x09,0x0a,0x0c,0x0d,0x0e,0x0e,0x0e,0x0d,0x0d,0x0d,0x0d, - 0x0c,0x0b,0x0a,0x0a,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b,0x0b, - 0x0a,0x09,0x08,0x07,0x07,0x06,0x06,0x04,0x04,0x03,0x03,0x03, - 0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfc,0xfb,0xf9,0xf9,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8,0xf9, - 0xf9,0xf8,0xf8,0xf7,0xf7,0xf6,0xf5,0xf5,0xf4,0xf4,0xf5,0xf5, - 0xf5,0xf6,0xf6,0xf6,0xf6,0xf7,0xf7,0xf7,0xf7,0xf7,0xf8,0xf8, - 0xf9,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb, - 0xfc,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x01,0x03,0x04,0x06,0x06,0x06,0x07,0x07,0x06,0x06, - 0x04,0x03,0x02,0x02,0x03,0x03,0x03,0x04,0x05,0x06,0x07,0x07, - 0x07,0x06,0x04,0x04,0x03,0x02,0x02,0x01,0x01,0x01,0x02,0x03, - 0x03,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00, - 0x01,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfa,0xf8,0xf7,0xf6,0xf6, - 0xf7,0xf7,0xf8,0xf9,0xf9,0xfa,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x05,0x06,0x06,0x07, - 0x08,0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x0b,0x0c,0x0d,0x0d, - 0x0e,0x0e,0x0d,0x0d,0x0c,0x0b,0x0a,0x0a,0x09,0x08,0x08,0x08, - 0x08,0x08,0x07,0x07,0x06,0x05,0x04,0x03,0x02,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf8,0xf7,0xf6,0xf5,0xf4, - 0xf3,0xf3,0xf3,0xf2,0xf2,0xf2,0xf2,0xf2,0xf1,0xf1,0xf0,0xf0, - 0xef,0xef,0xef,0xef,0xef,0xf0,0xf2,0xf3,0xf4,0xf5,0xf5,0xf6, - 0xf7,0xf8,0xf8,0xf8,0xf9,0xfa,0xfc,0xff,0x00,0x01,0x02,0x03, - 0x03,0x04,0x03,0x03,0x02,0x03,0x04,0x06,0x08,0x09,0x0a,0x0b, - 0x0c,0x0e,0x0f,0x0f,0x0f,0x0f,0x10,0x12,0x13,0x14,0x14,0x15, - 0x16,0x17,0x18,0x18,0x18,0x18,0x1a,0x1c,0x1e,0x1e,0x1e,0x1d, - 0x1e,0x1e,0x1e,0x1c,0x19,0x17,0x16,0x16,0x16,0x15,0x13,0x12, - 0x12,0x13,0x14,0x13,0x12,0x0f,0x0e,0x0c,0x0b,0x08,0x04,0x01, - 0xff,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xfe,0xfb,0xf8, - 0xf5,0xf4,0xf3,0xf1,0xf0,0xee,0xed,0xec,0xec,0xeb,0xea,0xe8, - 0xe6,0xe6,0xe6,0xe6,0xe6,0xe5,0xe4,0xe4,0xe4,0xe4,0xe3,0xe1, - 0xe0,0xdf,0xe1,0xe2,0xe4,0xe5,0xe7,0xe9,0xeb,0xed,0xee,0xee, - 0xed,0xed,0xee,0xee,0xef,0xef,0xf0,0xf1,0xf3,0xf4,0xf6,0xf7, - 0xf9,0xfa,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0x00,0x02,0x05,0x07,0x08,0x0a,0x0b,0x0c,0x0d,0x0e,0x0d, - 0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0e,0x0f,0x0f,0x10,0x10,0x10, - 0x10,0x0f,0x0e,0x0d,0x0c,0x0b,0x0a,0x09,0x08,0x08,0x08,0x08, - 0x08,0x07,0x06,0x05,0x05,0x04,0x04,0x03,0x03,0x03,0x03,0x03, - 0x03,0x02,0x01,0x00,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfa,0xfa,0xf8,0xf7,0xf6,0xf5,0xf5,0xf5,0xf5,0xf5, - 0xf5,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf5,0xf5,0xf6,0xf6,0xf7, - 0xf8,0xf9,0xf9,0xf9,0xf8,0xf8,0xf7,0xf7,0xf6,0xf6,0xf6,0xf7, - 0xf8,0xf9,0xfa,0xfa,0xfb,0xfc,0xfc,0xfd,0xfd,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x03,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x03,0x05,0x06,0x06,0x05,0x05,0x04, - 0x03,0x02,0x01,0x00,0xff,0xff,0x00,0x02,0x02,0x03,0x03,0x03, - 0x03,0x03,0x03,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfe,0xff,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa,0xf9,0xfa,0xfb,0xfc, - 0xfd,0xfe,0xff,0x01,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x03,0x05,0x06,0x08,0x08,0x08,0x08,0x07,0x07,0x07,0x06, - 0x06,0x06,0x07,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x07,0x06, - 0x06,0x06,0x06,0x07,0x07,0x08,0x07,0x07,0x07,0x06,0x05,0x04, - 0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x02,0x00,0xff, - 0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9, - 0xf8,0xf7,0xf6,0xf6,0xf5,0xf5,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4, - 0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf3,0xf4,0xf4,0xf3,0xf3,0xf3, - 0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf3,0xf5,0xf6,0xf7,0xf8,0xfa, - 0xfc,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02, - 0x04,0x06,0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0e,0x0e,0x0e, - 0x0e,0x0f,0x0f,0x0e,0x0e,0x0f,0x11,0x13,0x15,0x17,0x18,0x1a, - 0x1c,0x1d,0x1e,0x1c,0x1a,0x19,0x18,0x19,0x18,0x17,0x16,0x16, - 0x17,0x18,0x17,0x15,0x13,0x11,0x10,0x10,0x10,0x0e,0x0d,0x0b, - 0x0a,0x0a,0x09,0x07,0x04,0x01,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0x00,0x00,0xfe,0xfb,0xf7,0xf4,0xf3,0xf2,0xf1,0xef,0xed, - 0xec,0xed,0xed,0xed,0xeb,0xe9,0xe7,0xe7,0xe7,0xe7,0xe6,0xe4, - 0xe4,0xe5,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe8,0xe9,0xe9,0xe9, - 0xea,0xec,0xee,0xf0,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xf0,0xef, - 0xee,0xee,0xef,0xf0,0xf2,0xf4,0xf6,0xf8,0xfa,0xfc,0xfe,0xfe, - 0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x08,0x09,0x09, - 0x09,0x09,0x0a,0x0b,0x0c,0x0e,0x0e,0x0e,0x0e,0x0f,0x0e,0x0d, - 0x0b,0x09,0x08,0x08,0x08,0x09,0x0a,0x0b,0x0c,0x0e,0x0f,0x10, - 0x0f,0x0d,0x0c,0x0b,0x0a,0x0a,0x09,0x08,0x07,0x07,0x07,0x07, - 0x06,0x05,0x03,0x03,0x02,0x02,0x01,0x00,0xff,0xff,0xfe,0xfd, - 0xfc,0xfb,0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa,0xfb, - 0xfb,0xfb,0xfa,0xf8,0xf7,0xf5,0xf4,0xf3,0xf3,0xf2,0xf2,0xf3, - 0xf5,0xf6,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf6,0xf5,0xf6, - 0xf6,0xf8,0xf9,0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xfd,0xfc, - 0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x03,0x03, - 0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x05,0x06,0x08,0x08,0x08, - 0x08,0x08,0x08,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x05,0x04,0x03,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x06,0x06, - 0x06,0x05,0x04,0x03,0x02,0x00,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xff,0xff,0x00,0xff,0xfd,0xfc,0xfa,0xf9,0xf8,0xf7,0xf7, - 0xf7,0xf8,0xf9,0xfa,0xfa,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6, - 0xf7,0xf9,0xfb,0xfc,0xfd,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9, - 0xfa,0xfc,0xff,0x03,0x06,0x08,0x0a,0x0a,0x0a,0x09,0x06,0x04, - 0x02,0x02,0x03,0x05,0x06,0x08,0x0a,0x0c,0x0c,0x0b,0x09,0x06, - 0x05,0x04,0x03,0x03,0x05,0x07,0x0a,0x0d,0x10,0x11,0x10,0x0f, - 0x0e,0x0d,0x0b,0x0a,0x08,0x08,0x09,0x0b,0x0d,0x0d,0x0c,0x0b, - 0x09,0x08,0x07,0x04,0x02,0xff,0xff,0x00,0x02,0x03,0x03,0x03, - 0x02,0x02,0x02,0x00,0xfd,0xfa,0xf9,0xf8,0xf9,0xfa,0xfb,0xfb, - 0xfb,0xfb,0xfa,0xf9,0xf6,0xf3,0xef,0xed,0xec,0xed,0xed,0xee, - 0xef,0xf0,0xf2,0xf3,0xf2,0xf1,0xef,0xed,0xeb,0xeb,0xec,0xed, - 0xed,0xee,0xf0,0xf1,0xf2,0xf2,0xf1,0xef,0xef,0xef,0xf2,0xf5, - 0xf8,0xfb,0xfe,0x01,0x03,0x04,0x02,0x00,0xfd,0xfb,0xfa,0xfb, - 0xfc,0xfe,0x02,0x06,0x0b,0x10,0x14,0x16,0x17,0x18,0x19,0x1a, - 0x1a,0x1a,0x1a,0x1a,0x1a,0x1b,0x1c,0x1c,0x1d,0x1d,0x1d,0x1f, - 0x21,0x22,0x23,0x23,0x24,0x25,0x26,0x27,0x28,0x27,0x25,0x24, - 0x24,0x23,0x21,0x1f,0x1c,0x1a,0x1a,0x1b,0x1c,0x1c,0x1b,0x19, - 0x17,0x15,0x11,0x0b,0x05,0xff,0xfb,0xfb,0xfc,0xfd,0xff,0x00, - 0x02,0x04,0x05,0x04,0xff,0xf9,0xf3,0xef,0xec,0xe9,0xe6,0xe4, - 0xe2,0xe2,0xe3,0xe3,0xe2,0xdf,0xdc,0xda,0xd9,0xd9,0xd9,0xd8, - 0xd7,0xd8,0xd9,0xda,0xda,0xda,0xd9,0xd8,0xd8,0xda,0xdc,0xde, - 0xde,0xdf,0xe1,0xe2,0xe4,0xe3,0xe2,0xe0,0xdf,0xe0,0xe1,0xe2, - 0xe3,0xe6,0xe9,0xed,0xf1,0xf6,0xf9,0xfc,0xff,0x01,0x02,0x04, - 0x04,0x03,0x02,0x02,0x02,0x03,0x04,0x04,0x05,0x07,0x09,0x0b, - 0x0d,0x0e,0x0e,0x0f,0x10,0x11,0x12,0x12,0x13,0x13,0x14,0x15, - 0x16,0x17,0x16,0x16,0x17,0x17,0x17,0x16,0x15,0x13,0x11,0x10, - 0x0f,0x0d,0x0b,0x09,0x07,0x07,0x06,0x06,0x05,0x04,0x04,0x04, - 0x05,0x05,0x05,0x05,0x03,0x01,0xff,0xfd,0xfb,0xf9,0xf7,0xf6, - 0xf6,0xf6,0xf7,0xf8,0xf8,0xf8,0xf6,0xf3,0xf0,0xee,0xed,0xeb, - 0xea,0xeb,0xec,0xef,0xf2,0xf4,0xf6,0xf6,0xf6,0xf5,0xf3,0xf2, - 0xf0,0xee,0xee,0xef,0xf1,0xf3,0xf5,0xf6,0xf6,0xf6,0xf5,0xf4, - 0xf3,0xf2,0xf1,0xf2,0xf4,0xf6,0xf9,0xfc,0xfe,0x00,0x01,0x02, - 0x03,0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x02,0x03,0x04,0x05,0x07,0x09,0x0b,0x0b,0x0b,0x0a,0x09, - 0x09,0x09,0x0a,0x0a,0x0b,0x0c,0x0e,0x0f,0x10,0x0f,0x0c,0x09, - 0x07,0x05,0x04,0x02,0x01,0x01,0x01,0x03,0x06,0x07,0x07,0x07, - 0x07,0x08,0x09,0x09,0x09,0x08,0x08,0x07,0x05,0x03,0x01,0xfe, - 0xfb,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf6,0xf5,0xf5, - 0xf4,0xf3,0xf3,0xf4,0xf5,0xf6,0xf6,0xf6,0xf5,0xf4,0xf4,0xf3, - 0xf3,0xf2,0xf2,0xf3,0xf5,0xf7,0xf9,0xfb,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfb,0xfa,0xf9,0xf8,0xf9,0xfb,0xfc,0xfd,0xfe,0xfe,0xff, - 0xff,0x00,0x00,0x00,0x01,0x03,0x06,0x0a,0x0c,0x0e,0x0e,0x0d, - 0x0b,0x09,0x08,0x08,0x08,0x09,0x0b,0x0f,0x12,0x15,0x16,0x15, - 0x11,0x0e,0x0b,0x08,0x07,0x07,0x09,0x0d,0x12,0x16,0x1a,0x1b, - 0x1b,0x17,0x12,0x0c,0x07,0x03,0x01,0x01,0x02,0x05,0x09,0x0c, - 0x0e,0x0f,0x0d,0x0b,0x07,0x03,0xfe,0xfa,0xf8,0xf6,0xf5,0xf4, - 0xf5,0xf6,0xf6,0xf6,0xf7,0xf7,0xf6,0xf5,0xf3,0xf2,0xf1,0xef, - 0xec,0xe9,0xe6,0xe3,0xe2,0xe2,0xe3,0xe3,0xe5,0xe8,0xeb,0xee, - 0xf0,0xef,0xed,0xea,0xe7,0xe4,0xe2,0xe0,0xe0,0xe2,0xe7,0xec, - 0xf3,0xfa,0xff,0x03,0x04,0x05,0x05,0x04,0x02,0xff,0xfd,0xfc, - 0xfc,0xfd,0xfe,0x00,0x03,0x07,0x0c,0x13,0x1b,0x24,0x2c,0x31, - 0x33,0x32,0x30,0x2d,0x28,0x23,0x1e,0x1c,0x1e,0x23,0x29,0x2f, - 0x33,0x36,0x37,0x38,0x37,0x35,0x32,0x30,0x2f,0x2f,0x2f,0x2f, - 0x2e,0x2c,0x28,0x25,0x24,0x25,0x26,0x28,0x28,0x28,0x27,0x24, - 0x1e,0x15,0x0a,0xff,0xf6,0xf1,0xf1,0xf5,0xfa,0x00,0x06,0x0b, - 0x0e,0x0d,0x09,0x00,0xf4,0xe9,0xe0,0xda,0xd7,0xd4,0xd2,0xd1, - 0xd2,0xd2,0xd2,0xd2,0xd0,0xcf,0xce,0xcf,0xd2,0xd6,0xd9,0xd9, - 0xd7,0xd3,0xcf,0xcc,0xc9,0xc7,0xc5,0xc4,0xc6,0xcb,0xd1,0xd6, - 0xd9,0xd9,0xd8,0xd8,0xd9,0xda,0xda,0xda,0xdc,0xdf,0xe4,0xe9, - 0xef,0xf3,0xf7,0xfa,0xfd,0xff,0x01,0x02,0x01,0xff,0xfd,0xfc, - 0xfc,0xfd,0x00,0x04,0x09,0x0f,0x16,0x1c,0x1f,0x21,0x20,0x1e, - 0x1c,0x19,0x16,0x14,0x13,0x13,0x15,0x17,0x19,0x1b,0x1b,0x1c, - 0x1d,0x1d,0x1d,0x1d,0x1d,0x1c,0x1a,0x19,0x17,0x15,0x12,0x10, - 0x0d,0x0c,0x0a,0x08,0x06,0x04,0x02,0x01,0xff,0xfe,0xfe,0xff, - 0x00,0x01,0x00,0xff,0xfd,0xfa,0xf7,0xf3,0xef,0xec,0xea,0xea, - 0xeb,0xec,0xed,0xed,0xec,0xeb,0xea,0xe9,0xe8,0xe8,0xe8,0xe9, - 0xeb,0xee,0xf0,0xf1,0xf0,0xee,0xed,0xed,0xed,0xee,0xee,0xf0, - 0xf2,0xf5,0xf7,0xf8,0xf8,0xf7,0xf6,0xf5,0xf5,0xf6,0xf8,0xfa, - 0xfc,0xfe,0xff,0x00,0x01,0x00,0xff,0xfe,0xfe,0xfe,0x00,0x02, - 0x05,0x08,0x0b,0x0d,0x0f,0x10,0x10,0x0f,0x0d,0x0b,0x09,0x07, - 0x07,0x07,0x07,0x07,0x06,0x07,0x08,0x0a,0x0c,0x0d,0x0f,0x10, - 0x12,0x13,0x12,0x11,0x0f,0x0c,0x0a,0x08,0x06,0x04,0x03,0x03, - 0x03,0x02,0x03,0x04,0x06,0x07,0x09,0x0a,0x0c,0x0c,0x0c,0x0a, - 0x07,0x03,0xff,0xfc,0xfa,0xfa,0xfa,0xfc,0xfe,0xff,0xff,0xfe, - 0xfc,0xfa,0xf7,0xf5,0xf4,0xf6,0xfa,0xfe,0x03,0x06,0x07,0x05, - 0x01,0xfb,0xf3,0xec,0xe7,0xe5,0xe6,0xea,0xef,0xf6,0xfb,0xfe, - 0xff,0xfe,0xfb,0xf8,0xf4,0xf2,0xf0,0xf1,0xf2,0xf4,0xf4,0xf5, - 0xf4,0xf2,0xef,0xed,0xed,0xee,0xf1,0xf5,0xf9,0xfd,0x00,0x02, - 0x01,0xff,0xfc,0xf8,0xf6,0xf5,0xf6,0xf9,0xfc,0xfe,0x00,0x01, - 0x01,0x00,0xfe,0xfd,0xfc,0xfd,0x00,0x05,0x0b,0x10,0x13,0x14, - 0x14,0x13,0x11,0x0e,0x0b,0x09,0x08,0x08,0x08,0x0a,0x0b,0x0b, - 0x0c,0x0d,0x0f,0x12,0x15,0x19,0x1c,0x1e,0x1e,0x1e,0x1d,0x1a, - 0x17,0x13,0x0f,0x0c,0x0a,0x09,0x09,0x08,0x07,0x06,0x06,0x06, - 0x07,0x09,0x09,0x09,0x09,0x08,0x06,0x05,0x03,0x00,0xfd,0xfc, - 0xfb,0xfc,0xfc,0xfa,0xf7,0xf2,0xed,0xe7,0xe2,0xdf,0xde,0xdf, - 0xe2,0xe8,0xef,0xf6,0xfb,0xfc,0xf9,0xf4,0xed,0xe6,0xdf,0xdb, - 0xda,0xdb,0xde,0xe3,0xe7,0xe9,0xea,0xea,0xe8,0xe5,0xe3,0xe4, - 0xe8,0xef,0xf6,0xfe,0x05,0x09,0x0b,0x0a,0x06,0x01,0xfc,0xf9, - 0xf8,0xfb,0xff,0x06,0x0e,0x15,0x1b,0x1f,0x21,0x21,0x20,0x1e, - 0x1d,0x1e,0x1f,0x22,0x25,0x2a,0x30,0x37,0x3b,0x3d,0x3c,0x3a, - 0x37,0x34,0x30,0x2d,0x2a,0x29,0x2a,0x2c,0x2f,0x32,0x32,0x31, - 0x2e,0x2d,0x2c,0x2d,0x2e,0x31,0x33,0x35,0x35,0x32,0x2c,0x23, - 0x16,0x08,0xfb,0xf2,0xee,0xef,0xf4,0xfb,0x03,0x09,0x0f,0x11, - 0x0e,0x07,0xfd,0xf2,0xe8,0xe1,0xdb,0xd8,0xd6,0xd5,0xd4,0xd3, - 0xd2,0xd1,0xcf,0xcd,0xcb,0xc9,0xc9,0xcb,0xce,0xd0,0xd1,0xd0, - 0xcf,0xcf,0xce,0xcd,0xcc,0xca,0xca,0xcb,0xce,0xd2,0xd6,0xd9, - 0xda,0xda,0xd9,0xd8,0xd7,0xd5,0xd4,0xd5,0xd8,0xde,0xe5,0xee, - 0xf6,0xfe,0x04,0x08,0x09,0x08,0x06,0x03,0xff,0xfb,0xf8,0xf7, - 0xf9,0xfc,0xff,0x03,0x07,0x0b,0x11,0x16,0x1a,0x1d,0x1f,0x21, - 0x22,0x23,0x22,0x1f,0x1b,0x16,0x11,0x0d,0x0a,0x08,0x07,0x08, - 0x0a,0x0d,0x12,0x16,0x1a,0x1b,0x1b,0x1a,0x18,0x15,0x11,0x0c, - 0x07,0x03,0x01,0x01,0x02,0x03,0x05,0x06,0x05,0x03,0x00,0xfc, - 0xf6,0xf2,0xef,0xee,0xf0,0xf4,0xf9,0xfe,0x01,0x03,0x03,0x00, - 0xfc,0xf6,0xf1,0xed,0xea,0xe9,0xe9,0xea,0xeb,0xeb,0xeb,0xea, - 0xe9,0xe8,0xe9,0xea,0xed,0xf1,0xf6,0xfa,0xfe,0xff,0xff,0xfd, - 0xf9,0xf5,0xf1,0xee,0xeb,0xeb,0xed,0xef,0xf3,0xf6,0xf9,0xfc, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x02,0x04,0x05,0x06,0x08, - 0x08,0x08,0x07,0x06,0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x08, - 0x09,0x0a,0x0b,0x0c,0x0c,0x0c,0x0d,0x0c,0x0c,0x0b,0x0a,0x0a, - 0x0a,0x0a,0x0a,0x09,0x09,0x07,0x07,0x06,0x06,0x06,0x05,0x05, - 0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x07,0x08,0x08,0x06, - 0x04,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0x00,0x02,0x03,0x03, - 0x02,0x00,0xfd,0xfb,0xfa,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe,0xfd, - 0xfc,0xfb,0xf9,0xf8,0xf7,0xf8,0xf9,0xfa,0xfa,0xfa,0xf8,0xf5, - 0xf2,0xf0,0xef,0xef,0xf1,0xf4,0xf9,0xfe,0x02,0x05,0x06,0x04, - 0xff,0xfa,0xf4,0xef,0xec,0xeb,0xed,0xf1,0xf5,0xfa,0xfd,0xff, - 0x00,0xff,0xfd,0xfa,0xf7,0xf7,0xf7,0xfa,0xfd,0x00,0x01,0x02, - 0x02,0x01,0x00,0xff,0xff,0x01,0x04,0x08,0x0b,0x0f,0x10,0x0f, - 0x0c,0x07,0x02,0xfe,0xfd,0xfe,0x02,0x08,0x0e,0x14,0x1a,0x1d, - 0x1d,0x19,0x14,0x0d,0x08,0x05,0x05,0x07,0x0a,0x0e,0x11,0x13, - 0x14,0x12,0x0e,0x0a,0x05,0x02,0x02,0x03,0x06,0x0a,0x0d,0x0e, - 0x0d,0x0a,0x06,0x01,0xfc,0xf8,0xf6,0xf6,0xf8,0xfb,0xfe,0xff, - 0xfe,0xfb,0xf6,0xf0,0xea,0xe5,0xe3,0xe4,0xe8,0xef,0xf6,0xfc, - 0x00,0x00,0xfc,0xf6,0xed,0xe5,0xdf,0xdb,0xdb,0xdd,0xe3,0xe9, - 0xee,0xf1,0xf1,0xef,0xed,0xea,0xea,0xeb,0xee,0xf4,0xfb,0x02, - 0x08,0x0b,0x0b,0x08,0x03,0xfe,0xf9,0xf7,0xf8,0xfc,0x01,0x06, - 0x0c,0x10,0x14,0x16,0x16,0x16,0x16,0x17,0x1a,0x1e,0x23,0x28, - 0x2a,0x2b,0x2b,0x2b,0x29,0x27,0x24,0x22,0x21,0x21,0x23,0x25, - 0x27,0x28,0x28,0x28,0x28,0x27,0x26,0x24,0x21,0x20,0x20,0x21, - 0x23,0x26,0x28,0x28,0x26,0x23,0x1f,0x18,0x0f,0x06,0xfc,0xf5, - 0xf3,0xf5,0xf9,0xff,0x04,0x08,0x0a,0x09,0x06,0x01,0xf9,0xf2, - 0xec,0xe7,0xe6,0xe5,0xe4,0xe2,0xdf,0xdb,0xd8,0xd6,0xd4,0xd5, - 0xd7,0xdb,0xe0,0xe5,0xe8,0xea,0xe8,0xe3,0xdd,0xd7,0xd2,0xcf, - 0xce,0xcf,0xd1,0xd4,0xd9,0xdd,0xe0,0xe2,0xe3,0xe3,0xe4,0xe6, - 0xe8,0xe9,0xe9,0xea,0xea,0xea,0xea,0xea,0xeb,0xec,0xf0,0xf4, - 0xf9,0xfe,0x02,0x04,0x05,0x03,0x01,0xff,0xfd,0xfb,0xfb,0xfc, - 0xff,0x04,0x09,0x0e,0x12,0x15,0x17,0x18,0x17,0x15,0x13,0x0f, - 0x0c,0x09,0x07,0x07,0x07,0x07,0x09,0x0b,0x0e,0x12,0x15,0x18, - 0x19,0x18,0x16,0x13,0x10,0x0c,0x08,0x04,0x01,0xff,0xff,0x01, - 0x04,0x06,0x08,0x08,0x08,0x08,0x07,0x06,0x03,0xff,0xfb,0xf9, - 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa,0xfa,0xf9,0xf7, - 0xf6,0xf6,0xf6,0xf6,0xf5,0xf3,0xf1,0xf0,0xf0,0xf0,0xf1,0xf1, - 0xf2,0xf4,0xf7,0xfa,0xfd,0xfe,0xfd,0xfb,0xf9,0xf6,0xf4,0xf2, - 0xf0,0xef,0xf1,0xf4,0xf8,0xfc,0xfe,0xff,0x00,0xff,0xfd,0xfc, - 0xfa,0xf9,0xf9,0xfa,0xfd,0x00,0x04,0x07,0x09,0x0a,0x09,0x08, - 0x06,0x04,0x02,0xff,0xfe,0xfd,0xfe,0x00,0x02,0x05,0x07,0x09, - 0x0a,0x0b,0x0b,0x0a,0x09,0x07,0x05,0x05,0x04,0x04,0x04,0x05, - 0x05,0x05,0x05,0x04,0x03,0x02,0x01,0x02,0x03,0x05,0x06,0x07, - 0x07,0x07,0x06,0x04,0x02,0xff,0xfd,0xfc,0xfc,0xfd,0xff,0x00, - 0x01,0x02,0x01,0x00,0xfe,0xfc,0xf9,0xf7,0xf6,0xf7,0xf8,0xfb, - 0xfd,0xfe,0xff,0x00,0x00,0xff,0xfc,0xfa,0xf8,0xf7,0xf6,0xf5, - 0xf5,0xf5,0xf5,0xf6,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfa,0xfb,0xfc,0xfe,0xff,0x00,0x02,0x04,0x05,0x05, - 0x05,0x04,0x02,0x02,0x01,0x01,0x02,0x03,0x05,0x07,0x07,0x08, - 0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x07,0x08,0x09,0x0b,0x0b, - 0x0b,0x0a,0x0a,0x0a,0x0a,0x09,0x08,0x07,0x06,0x05,0x04,0x04, - 0x04,0x04,0x05,0x07,0x08,0x09,0x09,0x09,0x07,0x05,0x02,0xff, - 0xfd,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfd,0xfc,0xf9,0xf5,0xf2,0xee,0xea,0xe8,0xe7, - 0xe8,0xec,0xf1,0xf6,0xfa,0xfe,0xff,0x00,0xfe,0xfb,0xf8,0xf5, - 0xf2,0xf1,0xf2,0xf4,0xf7,0xf8,0xf7,0xf5,0xf3,0xf1,0xef,0xee, - 0xef,0xf2,0xf8,0xff,0x06,0x0d,0x11,0x13,0x12,0x0f,0x0c,0x08, - 0x05,0x02,0xff,0xfe,0xff,0x01,0x05,0x0a,0x0e,0x13,0x16,0x1a, - 0x1d,0x20,0x22,0x22,0x21,0x20,0x20,0x20,0x20,0x1e,0x1b,0x18, - 0x16,0x15,0x14,0x13,0x12,0x13,0x17,0x1b,0x1f,0x22,0x24,0x23, - 0x20,0x1c,0x18,0x15,0x13,0x13,0x14,0x16,0x18,0x1a,0x19,0x15, - 0x0d,0x04,0xfa,0xf2,0xed,0xee,0xf2,0xf9,0x02,0x0a,0x11,0x15, - 0x14,0x0f,0x06,0xfc,0xf3,0xec,0xe9,0xe7,0xe7,0xe8,0xea,0xeb, - 0xea,0xe8,0xe6,0xe4,0xe3,0xe3,0xe5,0xe9,0xed,0xf0,0xf2,0xf2, - 0xf0,0xed,0xea,0xe6,0xe3,0xe1,0xe1,0xe1,0xe2,0xe4,0xe4,0xe4, - 0xe4,0xe3,0xe3,0xe3,0xe3,0xe4,0xe6,0xe9,0xed,0xf1,0xf5,0xf8, - 0xfb,0xfd,0xfe,0xfe,0xfb,0xf7,0xf4,0xf1,0xef,0xed,0xed,0xef, - 0xf2,0xf7,0xfd,0x02,0x05,0x08,0x09,0x0a,0x0b,0x0d,0x0d,0x0d, - 0x0b,0x09,0x07,0x04,0x02,0xff,0xfe,0xfe,0xff,0x02,0x07,0x0b, - 0x0f,0x11,0x12,0x11,0x0f,0x0d,0x0a,0x08,0x07,0x07,0x07,0x09, - 0x0a,0x0b,0x0b,0x0a,0x08,0x06,0x03,0x01,0xff,0xfe,0xfe,0xff, - 0x00,0x01,0x02,0x04,0x05,0x06,0x06,0x05,0x04,0x03,0x02,0x00, - 0xfd,0xfb,0xf9,0xf8,0xf8,0xf7,0xf7,0xf7,0xf8,0xfa,0xfb,0xfc, - 0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf8, - 0xf8,0xf8,0xf9,0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xfd,0xfd,0xfc, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfd,0xfc,0xfa,0xfa,0xfb,0xfc,0xfe,0x00,0x03,0x05,0x06, - 0x07,0x06,0x04,0x02,0x00,0xfe,0xfd,0xfd,0xfe,0x00,0x01,0x02, - 0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x01,0x02,0x03,0x04,0x04,0x05,0x04,0x04,0x03,0x02,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfc, - 0xfd,0xfe,0x00,0x01,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfa,0xfb,0xfc,0xfd,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x01, - 0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x03,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x03, - 0x02,0x02,0x01,0x00,0xff,0xff,0x00,0x02,0x03,0x05,0x05,0x05, - 0x04,0x03,0x03,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xff, - 0xfe,0xfd,0xfc,0xfb,0xfc,0xfc,0xfd,0xff,0x00,0x00,0x01,0x00, - 0xff,0xfe,0xfc,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc,0xfc, - 0xfb,0xfb,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x02, - 0x02,0x03,0x04,0x04,0x05,0x05,0x05,0x05,0x06,0x07,0x08,0x09, - 0x0a,0x0b,0x0b,0x0b,0x0a,0x09,0x08,0x07,0x07,0x07,0x07,0x09, - 0x0a,0x0b,0x0c,0x0c,0x0b,0x0a,0x09,0x08,0x08,0x09,0x0a,0x0a, - 0x0b,0x0c,0x0c,0x0c,0x0a,0x09,0x07,0x05,0x05,0x05,0x06,0x06, - 0x07,0x07,0x06,0x04,0x03,0x01,0x00,0xff,0xff,0x00,0x00,0x01, - 0x01,0x01,0x01,0xff,0xfc,0xfb,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb, - 0xfa,0xf9,0xf8,0xf7,0xf6,0xf5,0xf5,0xf6,0xf6,0xf7,0xf8,0xf9, - 0xf9,0xf8,0xf7,0xf6,0xf5,0xf5,0xf5,0xf5,0xf6,0xf7,0xf8,0xf8, - 0xf9,0xf9,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01, - 0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x01, - 0x01,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00, - 0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x01,0x01,0x00,0xfe,0xfc,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x01,0x01, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x06, - 0x06,0x06,0x06,0x05,0x05,0x06,0x06,0x06,0x05,0x05,0x05,0x05, - 0x06,0x05,0x05,0x04,0x04,0x04,0x05,0x05,0x04,0x03,0x03,0x03, - 0x04,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb, - 0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01, - 0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xff,0xff, - 0x00,0x00,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0x00, - 0x00,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0x00,0x01,0x01,0x01, - 0x00,0x00,0x01,0x02,0x02,0x01,0xff,0xfe,0xfe,0xfe,0xff,0x00, - 0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfe,0xff, - 0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x01,0x02,0x03,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfd,0xfe, - 0xfe,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x00,0x00,0x01,0x02,0x02,0x03,0x02,0x02,0x01,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb, - 0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe,0xfe, - 0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0xff,0x00,0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x01,0x02, - 0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x06, - 0x07,0x07,0x06,0x06,0x07,0x08,0x08,0x07,0x06,0x05,0x04,0x04, - 0x04,0x04,0x05,0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, - 0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03, - 0x03,0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfb,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00, - 0x00,0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x00, - 0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x00,0x00,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0x00,0xff, - 0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfe,0xfe,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd, - 0xff,0x00,0x01,0x02,0x01,0x00,0xff,0xff,0x00,0x01,0x02,0x02, - 0x02,0x01,0x00,0x00,0x00,0x01,0x03,0x03,0x04,0x04,0x03,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x05,0x05,0x05,0x04, - 0x04,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x05,0x06,0x06, - 0x05,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x06,0x06,0x06,0x06, - 0x06,0x06,0x06,0x06,0x05,0x05,0x04,0x05,0x05,0x05,0x05,0x05, - 0x05,0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xf9,0xf9,0xfa,0xfb, - 0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0xff,0xff,0xfe, - 0xfe,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, - 0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xff,0xff,0xff,0xff,0xfe,0xff,0x00,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xfe,0xff,0xff,0x00,0x00,0x01,0x01,0x00, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe, - 0xff,0x01,0x03,0x03,0x02,0x00,0xff,0xff,0xff,0x00,0x01,0x01, - 0x00,0xff,0xfe,0xfe,0xff,0x00,0x02,0x03,0x02,0x01,0x00,0xff, - 0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0xff,0x00,0x00, - 0x01,0x02,0x02,0x01,0x00,0xfe,0xfe,0xff,0x00,0x01,0x01,0x00, - 0xff,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfd, - 0xfd,0xfe,0xff,0xff,0x00,0xff,0xfe,0xfd,0xfd,0xfe,0x00,0x00, - 0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x00,0xfe,0xfd,0xfd,0xfe, - 0xff,0x00,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x01, - 0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x00,0x00,0xff,0xfe,0xff, - 0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02, - 0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x05,0x05,0x05,0x05,0x05, - 0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05, - 0x05,0x06,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x06, - 0x04,0x02,0x01,0x01,0x03,0x04,0x05,0x04,0x03,0x02,0x02,0x02, - 0x02,0x03,0x03,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01, - 0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb, - 0xfc,0xfd,0xfe,0xfd,0xfb,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb, - 0xfb,0xfa,0xf9,0xf9,0xfa,0xfa,0xfb,0xfa,0xfa,0xf9,0xf8,0xf9, - 0xf9,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9, - 0xfa,0xfb,0xfc,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfc,0xfc,0xfd,0xfe,0xff,0xff,0xfe,0xfd,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0xff,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0x00,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0xff,0xff,0xfe,0xfd,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01, - 0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xff,0x00,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe, - 0xfe,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xff, - 0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x01, - 0x01,0x02,0x03,0x04,0x04,0x03,0x03,0x03,0x03,0x04,0x03,0x02, - 0x01,0x01,0x01,0x02,0x04,0x04,0x04,0x03,0x02,0x01,0x02,0x03, - 0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x01, - 0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x01,0x00,0x00,0x00,0x01, - 0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb,0xfd,0xfe,0xfe,0xfe,0xfc, - 0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0x00,0x01,0x01,0x00,0x00, - 0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0xff, - 0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00, - 0x00,0xff,0xff,0x00,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0xff,0xff,0xfe,0xff,0x00,0x00,0x01,0x00,0x00,0xff,0xff, - 0xff,0xff,0x00,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xfe,0xfd, - 0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0xff,0xfe,0xfe, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xff,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x02,0x01, - 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x00, - 0xff,0xff,0x00,0x00,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x00, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00, - 0xff,0xfe,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xfd,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0x00,0xff,0xfe,0xfd,0xfe,0xff,0x00,0x00,0xff,0xff,0xfe, - 0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00, - 0xff,0xfe,0xff,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x01,0x00,0x00,0x00, - 0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x00,0x00,0xff,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff, - 0x00,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff, - 0x00,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x00,0xff,0xff, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0x00,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01, - 0x02,0x03,0x02,0x01,0x00,0x01,0x02,0x02,0x01,0x01,0x01,0x02, - 0x02,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, - 0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0x02,0x02,0x03,0x03,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x02, - 0x02,0x03,0x02,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x02, - 0x03,0x03,0x03,0x02,0x01,0x02,0x02,0x02,0x01,0x02,0x02,0x01, - 0x01,0x00,0x00,0x01,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0x00, - 0x01,0x01,0x00,0x00,0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x01, - 0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x02,0x02, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x02, - 0x02,0x02,0x01,0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x02,0x02, - 0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x01,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x01, - 0x00,0x00,0x01,0x02,0x03,0x02,0x01,0x02,0x02,0x01,0x01,0x01, - 0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0xff,0x00, - 0x01,0x03,0x03,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x01,0x01,0x02, - 0x02,0x01,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x02,0x02,0x02, - 0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x01,0x01, - 0x01,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x01,0x00,0x01,0x02, - 0x02,0x02,0x02,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x02, - 0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00, - 0x00,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00, - 0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x03,0x02, - 0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x01,0x02, - 0x02,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x00,0x00, - 0x01,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x01, - 0x02,0x02,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0x01,0x02,0x02, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x02,0x01, - 0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x01,0x01,0x01,0x01,0x00, - 0x01,0x01,0x01,0x01,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x00,0x00,0xff,0x00, - 0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x02,0x01,0x00,0xff,0x00, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x02, - 0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x01, - 0x02,0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x01,0x01,0x02,0x03,0x02,0x01,0x01,0x01,0x02,0x02, - 0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x03, - 0x02,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x02,0x01,0x00, - 0x00,0x01,0x02,0x03,0x03,0x02,0x02,0x02,0x03,0x02,0x02,0x01, - 0x02,0x03,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x02, - 0x01,0x01,0x01,0x02,0x02,0x00,0x00,0x01,0x02,0x02,0x00,0xff, - 0x00,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01, - 0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01, - 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x01,0xff,0xff,0xff,0x00, - 0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x00, - 0x00,0x01,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x03,0x02,0x02, - 0x01,0x01,0x01,0x01,0x02,0x03,0x02,0x01,0x00,0x00,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x01,0x01,0x02,0x02, - 0x02,0x01,0x00,0x00,0x01,0x02,0x01,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x00,0xff,0x00,0x01,0x01,0x00,0x00, - 0x00,0x01,0x02,0x01,0x00,0xff,0x00,0x00,0x01,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x03,0x03,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0x00, - 0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x03, - 0x04,0x02,0x01,0x00,0x01,0x02,0x02,0x01,0x00,0x01,0x03,0x03, - 0x02,0x01,0x00,0x01,0x03,0x04,0x03,0x01,0x00,0x01,0x02,0x02, - 0x02,0x01,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x01, - 0x01,0x02,0x02,0x01,0xff,0xff,0x00,0x02,0x02,0x01,0x00,0x01, - 0x02,0x02,0x00,0xff,0xff,0x00,0x01,0x00,0x00,0x00,0x01,0x01, - 0x00,0x00,0xff,0x00,0x01,0x02,0x01,0x00,0xff,0xff,0x00,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01, - 0x01,0x00,0x00,0x01,0x01,0x00,0x00,0xff,0x00,0x01,0x02,0x02, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x03,0x02,0x01, - 0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00, - 0x00,0xff,0x00,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01, - 0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x02,0x01,0x00,0x00,0x01,0x03,0x04,0x03,0x01, - 0x00,0x00,0x02,0x03,0x03,0x02,0x01,0x01,0x02,0x03,0x03,0x01, - 0xff,0xff,0x01,0x03,0x03,0x01,0x01,0x02,0x03,0x03,0x02,0x01, - 0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x01,0x00,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x01,0x01,0x01,0x02,0x01,0x00,0xff,0xff,0x01,0x02, - 0x02,0x00,0xff,0xff,0x01,0x02,0x02,0x00,0xfe,0xfe,0x00,0x01, - 0x00,0xff,0xff,0x01,0x03,0x03,0x02,0x00,0x00,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x00,0xff,0xff,0x00,0x00, - 0xff,0xff,0xff,0x00,0x00,0xff,0xfe,0x00,0x02,0x02,0x02,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x01, - 0x01,0x02,0x02,0x02,0x01,0x01,0x02,0x02,0x01,0x00,0x00,0x01, - 0x03,0x04,0x03,0x01,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x03,0x03,0x03,0x02,0x01,0x01,0x02,0x03,0x02,0x02,0x02, - 0x03,0x03,0x03,0x01,0x01,0x01,0x02,0x03,0x03,0x01,0x00,0x01, - 0x03,0x04,0x03,0x02,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x01, - 0x02,0x03,0x03,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x02,0x03,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x02, - 0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0x00,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0xff,0xff,0x00,0x01,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x03,0x03, - 0x01,0x00,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x01, - 0x02,0x01,0x00,0xff,0x00,0x01,0x03,0x03,0x02,0x01,0x00,0x01, - 0x02,0x03,0x02,0x00,0x00,0x01,0x04,0x04,0x03,0x02,0x02,0x03, - 0x02,0x01,0x00,0x00,0x02,0x03,0x02,0x00,0x01,0x02,0x04,0x04, - 0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x05,0x04,0x03, - 0x02,0x02,0x03,0x02,0x01,0x01,0x01,0x02,0x03,0x03,0x03,0x03, - 0x03,0x02,0x02,0x02,0x03,0x03,0x02,0x00,0x00,0x01,0x02,0x01, - 0x01,0x02,0x03,0x04,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0xff,0xff,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x00, - 0xff,0xff,0x00,0xff,0x00,0x00,0x02,0x02,0x01,0xff,0xfe,0xff, - 0x01,0x01,0x00,0xfe,0xfe,0xfe,0xff,0x00,0x00,0xff,0xfe,0xff, - 0x01,0x01,0x01,0xff,0xff,0xff,0x01,0x01,0x00,0x00,0xff,0xff, - 0x00,0x01,0x02,0x01,0x00,0x00,0x01,0x03,0x03,0x02,0x00,0xff, - 0x00,0x02,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x01, - 0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x01, - 0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01, - 0x00,0xff,0xff,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x02,0x03,0x03,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x02, - 0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x02,0x03,0x04,0x02,0x01,0x01,0x02,0x02, - 0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x01,0x02, - 0x04,0x03,0x02,0x01,0x02,0x02,0x02,0x01,0x01,0x02,0x03,0x02, - 0x01,0x01,0x02,0x03,0x02,0x01,0x01,0x02,0x02,0x01,0x01,0x01, - 0x01,0x01,0x02,0x03,0x04,0x04,0x02,0x01,0x00,0x01,0x02,0x02, - 0x01,0x00,0x00,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0xff,0x00, - 0x00,0x01,0x00,0xff,0x00,0x02,0x03,0x02,0x00,0xff,0xfe,0xff, - 0x00,0x01,0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x02,0x01,0x00, - 0x00,0x01,0x01,0xff,0xfe,0xfd,0xfe,0xff,0x01,0x01,0x00,0xff, - 0xff,0x01,0x02,0x03,0x02,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0x01,0x02,0x02,0x02,0x01,0x01,0x02,0x03,0x03,0x02,0x00,0x00, - 0x01,0x02,0x02,0x01,0x00,0x02,0x03,0x02,0x01,0x01,0x01,0x02, - 0x03,0x03,0x04,0x03,0x01,0x00,0x00,0x02,0x04,0x04,0x03,0x01, - 0x02,0x03,0x04,0x03,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x02, - 0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x03,0x05,0x04,0x01,0x00, - 0x01,0x01,0x01,0x01,0x01,0x03,0x04,0x03,0x00,0xfd,0xfd,0xfe, - 0x00,0x02,0x02,0x00,0xfe,0xfe,0xff,0x00,0x00,0xfe,0xfd,0xff, - 0x01,0x01,0xff,0xfc,0xfb,0xfe,0x03,0x05,0x06,0x05,0x04,0x03, - 0x02,0x00,0xfe,0xfe,0x00,0x02,0x02,0x02,0x01,0x02,0x02,0x01, - 0xfe,0xfd,0xff,0x02,0x04,0x03,0x01,0x00,0x01,0x01,0x02,0x03, - 0x03,0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x02,0x01,0x02,0x03, - 0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x05,0x05,0x03, - 0x01,0x01,0x02,0x03,0x03,0x02,0x01,0x02,0x03,0x03,0x02,0x00, - 0xfe,0xff,0x01,0x03,0x03,0x02,0x01,0x01,0x02,0x02,0x01,0xff, - 0xff,0x01,0x04,0x04,0x02,0x00,0xff,0xff,0x00,0xff,0xff,0xff, - 0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0x00,0x01, - 0x02,0x03,0x02,0x00,0xff,0xfe,0xff,0x00,0x01,0x01,0x01,0x00, - 0xff,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0xfd, - 0xfc,0xfd,0x01,0x04,0x05,0x06,0x05,0x04,0x01,0xff,0xff,0x01, - 0x03,0x04,0x03,0x02,0x02,0x04,0x04,0x02,0xff,0xfe,0xff,0x02, - 0x03,0x03,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x02, - 0x03,0x02,0x01,0xff,0xff,0xff,0x02,0x05,0x07,0x06,0x02,0x00, - 0x00,0x02,0x04,0x04,0x03,0x03,0x04,0x04,0x03,0x02,0x01,0xff, - 0xfe,0x00,0x02,0x05,0x05,0x03,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x02,0x04,0x05,0x03,0xff,0xfd,0xfe,0x01,0x03,0x04, - 0x03,0x02,0x01,0xff,0xfe,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff, - 0xff,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xfe, - 0xfd,0xfd,0xfd,0xff,0x01,0x02,0x02,0xff,0xfe,0xfe,0x00,0x01, - 0x01,0xff,0xff,0x00,0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x01, - 0x02,0x03,0x05,0x06,0x05,0x02,0xff,0xff,0x01,0x03,0x03,0x01, - 0x00,0x01,0x03,0x03,0x01,0x00,0x00,0x02,0x05,0x05,0x04,0x01, - 0x00,0x01,0x02,0x01,0xff,0xff,0x01,0x04,0x05,0x04,0x01,0xff, - 0xff,0x01,0x04,0x05,0x04,0x03,0x01,0x01,0x01,0x02,0x02,0x02, - 0x03,0x03,0x04,0x03,0x01,0x00,0x01,0x01,0x00,0xff,0xfe,0xff, - 0x01,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0x00,0x01,0x02,0x03, - 0x03,0x02,0xff,0xfd,0xfe,0x00,0x03,0x03,0x02,0x00,0xff,0xff, - 0xff,0xff,0xfe,0xfd,0xfe,0x00,0x03,0x03,0x03,0x02,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x03,0x03,0x01,0xfe,0xfd,0xfe,0x00, - 0x03,0x03,0x03,0x01,0x01,0x00,0x00,0x00,0xff,0x00,0x01,0x02, - 0x03,0x03,0x02,0x02,0x01,0x00,0xfe,0xfd,0xfe,0x02,0x05,0x05, - 0x02,0xff,0xfe,0xff,0x00,0x02,0x02,0x03,0x03,0x02,0x01,0x00, - 0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x03,0x02,0x01,0xff, - 0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x01,0xff,0xfe,0xfe,0x00, - 0x02,0x03,0x03,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x01,0x00, - 0x00,0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x02, - 0x02,0x00,0xfd,0xfc,0xfe,0x00,0x02,0x03,0x02,0x02,0x01,0x01, - 0x02,0x03,0x04,0x05,0x04,0x02,0x00,0x01,0x03,0x03,0x01,0xfe, - 0xfe,0x00,0x03,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x00, - 0x02,0x04,0x05,0x03,0x00,0x00,0x01,0x04,0x05,0x04,0x03,0x03, - 0x04,0x03,0x02,0x00,0x00,0x00,0x01,0x02,0x02,0x03,0x04,0x04, - 0x03,0x01,0xff,0xff,0x00,0x02,0x03,0x02,0x01,0x00,0x01,0x02, - 0x02,0x01,0x00,0x01,0x02,0x03,0x02,0x00,0xff,0xff,0x00,0xff, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x00,0x00, - 0x01,0x02,0x02,0x01,0xff,0xfd,0xfd,0xfe,0x00,0x02,0x03,0x02, - 0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x03,0x02,0x00,0xff, - 0xff,0xff,0xff,0x00,0x01,0x01,0x02,0x03,0x02,0x02,0x02,0x03, - 0x03,0x03,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x00,0x01,0x03,0x05,0x05, - 0x03,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x05,0x04,0x03,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x04,0x05,0x06,0x05,0x03,0x01,0x01, - 0x02,0x03,0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xff,0x01,0x02, - 0x02,0x01,0x02,0x03,0x03,0x02,0x00,0xff,0x01,0x03,0x04,0x01, - 0xff,0xff,0x01,0x02,0x02,0x00,0x00,0x01,0x02,0x02,0x01,0xff, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0xfe,0xfc,0xf9,0xf8,0xf8,0xfa,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0x01,0x02,0x02,0x01,0x00,0x01,0x02,0x04,0x04, - 0x03,0x01,0x01,0x01,0x03,0x04,0x04,0x02,0x00,0xff,0x01,0x02, - 0x04,0x04,0x04,0x03,0x02,0x02,0x04,0x07,0x09,0x08,0x05,0x02, - 0x01,0x02,0x04,0x04,0x03,0x03,0x04,0x06,0x06,0x04,0x00,0xff, - 0x01,0x05,0x07,0x07,0x05,0x04,0x05,0x06,0x06,0x06,0x05,0x04, - 0x04,0x04,0x05,0x05,0x03,0x02,0x02,0x03,0x04,0x04,0x03,0x02, - 0x01,0x00,0xff,0xff,0x00,0x02,0x03,0x02,0x00,0xff,0x00,0x00, - 0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0x01,0x02,0x02,0x01, - 0xff,0xfe,0xfe,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfe,0xff,0x01,0x01,0x00,0xfe,0xfc, - 0xfd,0xfe,0xff,0xff,0x00,0x00,0x01,0x00,0xff,0xfd,0xfd,0xff, - 0x01,0x01,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x01,0x01,0x01, - 0x02,0x03,0x03,0x02,0x00,0x00,0x00,0x01,0x02,0x03,0x03,0x03, - 0x02,0x01,0x00,0x00,0x02,0x04,0x05,0x04,0x02,0x01,0x00,0x01, - 0x01,0x01,0x01,0x02,0x02,0x03,0x02,0x01,0x01,0x02,0x02,0x02, - 0x02,0x03,0x04,0x05,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x01,0x02, - 0x02,0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x02,0x03, - 0x02,0x01,0xff,0xff,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0xff, - 0xff,0xff,0x00,0x02,0x03,0x01,0xff,0xfe,0x01,0x04,0x04,0x01, - 0xff,0xfe,0x00,0x01,0x02,0x00,0xff,0xff,0x01,0x02,0x02,0x01, - 0xff,0xff,0x00,0x00,0x00,0xff,0xfe,0xff,0xff,0x00,0x00,0x00, - 0x01,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0x00,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0xff, - 0xff,0x00,0x00,0xff,0xff,0xfe,0xfe,0xff,0x01,0x02,0x03,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x02,0x03, - 0x04,0x04,0x03,0x03,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x02,0x04,0x04,0x04, - 0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x02,0x01, - 0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0x01,0x02,0x02,0x01,0xff,0xfe,0xff,0x01, - 0x02,0x01,0x00,0x00,0x02,0x02,0x01,0xff,0xff,0x01,0x02,0x02, - 0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0xff, - 0xff,0xff,0xff,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x00,0xff,0xfe,0xff, - 0x01,0x01,0x01,0x02,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02, - 0x01,0x01,0x00,0x01,0x00,0x00,0xff,0xff,0x00,0x01,0x02,0x02, - 0x02,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01, - 0x01,0x00,0x00,0x00,0x02,0x03,0x04,0x03,0x02,0x01,0x01,0x01, - 0x02,0x01,0x01,0x01,0x01,0x02,0x03,0x02,0x01,0x00,0x01,0x03, - 0x04,0x03,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x01, - 0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x03,0x05,0x03,0x00,0xff, - 0x00,0x02,0x02,0x01,0x00,0x00,0x02,0x03,0x02,0x01,0x01,0x02, - 0x03,0x04,0x03,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x02, - 0x03,0x02,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x01,0x03,0x03, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x04, - 0x04,0x03,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01, - 0x00,0x00,0x01,0x03,0x04,0x04,0x03,0x03,0x03,0x02,0x01,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x01,0x01, - 0x01,0x02,0x02,0x00,0xff,0xff,0x01,0x02,0x02,0x02,0x02,0x01, - 0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x01,0x00, - 0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x02, - 0x01,0x00,0x01,0x03,0x04,0x02,0xff,0xfd,0xfe,0xff,0xff,0xfe, - 0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfe,0xff, - 0x00,0x02,0x02,0x03,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x06, - 0x07,0x07,0x08,0x08,0x08,0x08,0x07,0x06,0x06,0x06,0x07,0x08, - 0x09,0x09,0x09,0x08,0x06,0x04,0x01,0xfe,0xfc,0xfa,0xfa,0xfb, - 0xfc,0xfe,0x01,0x04,0x06,0x08,0x09,0x09,0x08,0x06,0x05,0x03, - 0x01,0x00,0x00,0xff,0xfe,0xfc,0xfb,0xfa,0xf8,0xf7,0xf6,0xf6, - 0xf6,0xf7,0xf7,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6, - 0xf8,0xfa,0xfd,0x00,0x03,0x05,0x07,0x0a,0x0d,0x0f,0x0f,0x0e, - 0x0c,0x0c,0x0b,0x08,0x03,0xfe,0xf9,0xf6,0xf4,0xf2,0xf1,0xf2, - 0xf4,0xf7,0xfc,0x02,0x06,0x09,0x0b,0x0d,0x10,0x14,0x17,0x1a, - 0x1c,0x1e,0x20,0x21,0x22,0x21,0x1c,0x17,0x12,0x10,0x0f,0x10, - 0x10,0x0e,0x0b,0x09,0x07,0x03,0xfd,0xf6,0xee,0xea,0xea,0xee, - 0xf5,0xfb,0x02,0x09,0x11,0x16,0x17,0x14,0x0e,0x07,0x01,0xfd, - 0xfa,0xf7,0xf5,0xf3,0xf2,0xf2,0xf0,0xed,0xe8,0xe3,0xdf,0xde, - 0xdf,0xe1,0xe4,0xe7,0xeb,0xef,0xf1,0xf2,0xf2,0xf0,0xee,0xed, - 0xec,0xee,0xf1,0xf6,0xfb,0xff,0x02,0x05,0x07,0x08,0x08,0x06, - 0x03,0x00,0xfd,0xfb,0xf8,0xf5,0xf2,0xf0,0xee,0xee,0xef,0xf1, - 0xf5,0xf9,0xfe,0x04,0x09,0x0d,0x0f,0x10,0x10,0x11,0x11,0x10, - 0x0e,0x0d,0x0d,0x0e,0x0e,0x0d,0x0b,0x09,0x07,0x05,0x03,0x02, - 0x00,0xfe,0xfd,0xfc,0xfc,0xfc,0xfa,0xf7,0xf4,0xf2,0xf3,0xf4, - 0xf7,0xfa,0xfd,0x01,0x05,0x0a,0x0d,0x0d,0x0c,0x0a,0x07,0x04, - 0x01,0xff,0xfd,0xfc,0xfa,0xf9,0xf8,0xf7,0xf5,0xf3,0xf1,0xf0, - 0xf0,0xf0,0xf1,0xf2,0xf3,0xf3,0xf4,0xf4,0xf4,0xf3,0xf2,0xf2, - 0xf3,0xf6,0xfa,0xfe,0x02,0x06,0x0a,0x0c,0x0c,0x0a,0x08,0x04, - 0x02,0xff,0xfd,0xfb,0xfb,0xfc,0xfe,0x00,0x01,0x02,0x02,0x02, - 0x03,0x03,0x02,0x01,0x02,0x04,0x06,0x08,0x08,0x08,0x08,0x08, - 0x07,0x05,0x03,0x02,0x00,0x00,0x00,0x01,0x03,0x05,0x05,0x04, - 0x03,0x01,0xff,0xfc,0xf9,0xf7,0xf5,0xf5,0xf7,0xfa,0xfc,0xfe, - 0xfe,0xfe,0xfe,0xfd,0xfc,0xfa,0xf9,0xf9,0xfa,0xfc,0xff,0x02, - 0x04,0x06,0x06,0x05,0x03,0x00,0xfe,0xfb,0xf9,0xf7,0xf6,0xf6, - 0xf6,0xf7,0xf7,0xf7,0xf8,0xf9,0xfb,0xfd,0xff,0x02,0x05,0x0a, - 0x0e,0x11,0x12,0x12,0x11,0x0f,0x0d,0x0b,0x07,0x03,0x00,0xff, - 0xff,0x00,0x01,0x02,0x03,0x03,0x04,0x05,0x05,0x04,0x01,0xff, - 0xff,0x00,0x02,0x03,0x04,0x05,0x07,0x0a,0x0b,0x0b,0x0a,0x08, - 0x07,0x05,0x04,0x03,0x02,0x00,0xff,0xff,0x00,0xff,0xfe,0xfc, - 0xfa,0xf8,0xf8,0xf7,0xf7,0xf6,0xf6,0xf7,0xf8,0xfa,0xfb,0xfa, - 0xf9,0xf6,0xf4,0xf3,0xf2,0xf1,0xf0,0xef,0xf0,0xf2,0xf5,0xf8, - 0xfb,0xfe,0xff,0x01,0x04,0x07,0x0b,0x0e,0x10,0x10,0x11,0x10, - 0x0e,0x0a,0x04,0xfe,0xf9,0xf6,0xf7,0xf9,0xfc,0x00,0x06,0x0e, - 0x14,0x18,0x18,0x15,0x11,0x0f,0x0e,0x0e,0x0f,0x10,0x14,0x19, - 0x20,0x26,0x29,0x28,0x24,0x1e,0x18,0x14,0x11,0x0e,0x0b,0x08, - 0x06,0x06,0x05,0x02,0xfa,0xf1,0xe8,0xe3,0xe2,0xe4,0xe9,0xf0, - 0xf9,0x05,0x11,0x1c,0x20,0x1e,0x16,0x0e,0x05,0xfc,0xf4,0xeb, - 0xe5,0xe3,0xe5,0xea,0xee,0xf0,0xef,0xec,0xea,0xe8,0xe6,0xe3, - 0xdf,0xdc,0xdc,0xdf,0xe5,0xe9,0xeb,0xec,0xee,0xf1,0xf4,0xf7, - 0xf8,0xf9,0xfc,0x01,0x07,0x0c,0x0f,0x0f,0x0d,0x0b,0x08,0x03, - 0xfb,0xf3,0xec,0xe8,0xe6,0xe7,0xea,0xef,0xf5,0xfd,0x05,0x0b, - 0x0f,0x10,0x0e,0x0c,0x09,0x05,0x02,0xff,0xfe,0xff,0x02,0x07, - 0x0c,0x10,0x12,0x12,0x13,0x12,0x10,0x0c,0x07,0x03,0x01,0xff, - 0xfd,0xfa,0xf8,0xf5,0xf4,0xf3,0xf3,0xf4,0xf5,0xf6,0xf9,0xfe, - 0x03,0x07,0x09,0x09,0x08,0x06,0x03,0xfe,0xf9,0xf4,0xf1,0xf0, - 0xf1,0xf2,0xf5,0xf8,0xfd,0x01,0x03,0x04,0x02,0x00,0xfe,0xfb, - 0xf7,0xf3,0xef,0xed,0xed,0xee,0xef,0xf1,0xf5,0xf9,0xfe,0x02, - 0x05,0x08,0x09,0x09,0x09,0x07,0x03,0x00,0xfc,0xfa,0xf9,0xf8, - 0xf9,0xfb,0xfe,0x01,0x05,0x08,0x0a,0x0b,0x0b,0x0a,0x07,0x04, - 0x02,0xff,0xfd,0xfb,0xfa,0xfb,0xfe,0x02,0x05,0x07,0x08,0x09, - 0x0a,0x0a,0x08,0x04,0xff,0xfb,0xf8,0xf6,0xf4,0xf5,0xf6,0xf9, - 0xfc,0x00,0x03,0x06,0x06,0x05,0x03,0x01,0xff,0xfc,0xfa,0xf8, - 0xf7,0xf8,0xf9,0xfa,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf8, - 0xf8,0xf9,0xfb,0xfe,0xff,0x01,0x02,0x04,0x06,0x08,0x08,0x08, - 0x07,0x06,0x05,0x03,0x01,0xff,0xfc,0xfa,0xf8,0xf8,0xf9,0xfc, - 0xfe,0x01,0x03,0x06,0x09,0x0b,0x0c,0x0b,0x09,0x08,0x08,0x08, - 0x09,0x08,0x08,0x09,0x0b,0x0d,0x0f,0x0f,0x0e,0x0c,0x0b,0x0a, - 0x08,0x05,0x02,0xfe,0xfb,0xf9,0xf8,0xf7,0xf7,0xf6,0xf7,0xfa, - 0xff,0x03,0x07,0x09,0x0b,0x0e,0x0f,0x0f,0x0d,0x09,0x05,0x01, - 0xfe,0xfc,0xf9,0xf6,0xf3,0xf1,0xf0,0xf0,0xf1,0xf1,0xf1,0xf0, - 0xf1,0xf2,0xf3,0xf3,0xf3,0xf3,0xf4,0xf5,0xf6,0xf6,0xf7,0xfa, - 0xfe,0x02,0x06,0x0a,0x0d,0x11,0x14,0x16,0x15,0x11,0x0b,0x04, - 0xfe,0xf8,0xf2,0xec,0xe8,0xe8,0xec,0xf3,0xfb,0x02,0x07,0x0c, - 0x11,0x16,0x19,0x1a,0x1a,0x1a,0x1d,0x21,0x27,0x2c,0x2f,0x2f, - 0x2d,0x2b,0x28,0x24,0x1e,0x17,0x10,0x0c,0x0d,0x0f,0x11,0x0f, - 0x0a,0x05,0x00,0xfb,0xf5,0xee,0xe8,0xe4,0xe7,0xf0,0xfc,0x07, - 0x10,0x17,0x1b,0x1e,0x1e,0x1a,0x11,0x05,0xfb,0xf5,0xf3,0xf4, - 0xf4,0xf2,0xef,0xed,0xec,0xea,0xe3,0xda,0xd1,0xcc,0xcc,0xcf, - 0xd3,0xd7,0xdb,0xdf,0xe4,0xe7,0xe8,0xe7,0xe4,0xe2,0xe2,0xe6, - 0xed,0xf5,0xfd,0x04,0x0b,0x11,0x15,0x13,0x0d,0x04,0xfb,0xf4, - 0xee,0xe9,0xe5,0xe4,0xe7,0xec,0xf3,0xfa,0xff,0x04,0x08,0x0c, - 0x0e,0x0f,0x0e,0x0b,0x09,0x09,0x08,0x08,0x07,0x08,0x0a,0x0d, - 0x10,0x12,0x13,0x13,0x12,0x11,0x0f,0x0d,0x0a,0x07,0x06,0x06, - 0x05,0x04,0x01,0xfd,0xfa,0xf7,0xf6,0xf6,0xf6,0xf7,0xfb,0x01, - 0x07,0x0c,0x0f,0x0f,0x0c,0x09,0x03,0xfc,0xf5,0xef,0xea,0xe8, - 0xe9,0xeb,0xee,0xf1,0xf4,0xf7,0xf9,0xfa,0xfa,0xf8,0xf7,0xf5, - 0xf4,0xf3,0xf2,0xf1,0xef,0xed,0xec,0xec,0xee,0xef,0xf1,0xf3, - 0xf7,0xfc,0x02,0x07,0x0a,0x0b,0x0b,0x0a,0x08,0x06,0x04,0x02, - 0xff,0xfd,0xfc,0xfd,0xfe,0x01,0x02,0x03,0x03,0x03,0x04,0x05, - 0x04,0x02,0xff,0xfc,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfe,0x02, - 0x08,0x0c,0x0f,0x10,0x12,0x13,0x14,0x13,0x0f,0x0a,0x04,0xff, - 0xfb,0xf8,0xf5,0xf3,0xf1,0xf2,0xf3,0xf5,0xf6,0xf7,0xf8,0xf8, - 0xf9,0xfb,0xfd,0xff,0x01,0x02,0x03,0x02,0x02,0x01,0x00,0xfe, - 0xfb,0xf9,0xfa,0xfd,0x01,0x04,0x06,0x06,0x06,0x04,0x03,0xff, - 0xfa,0xf3,0xef,0xee,0xf1,0xf4,0xf8,0xfc,0x01,0x05,0x08,0x09, - 0x08,0x06,0x05,0x03,0x02,0x03,0x06,0x0a,0x0d,0x10,0x10,0x10, - 0x0e,0x0c,0x09,0x05,0x01,0xff,0xff,0x02,0x06,0x0a,0x0d,0x0f, - 0x11,0x12,0x11,0x0d,0x07,0x01,0xfe,0xfc,0xfc,0xfb,0xfb,0xfc, - 0xff,0x03,0x06,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x05,0x03,0x00,0xfd,0xf8,0xf4,0xef,0xeb,0xe8,0xe8,0xea,0xee, - 0xf2,0xf6,0xf9,0xfb,0xfb,0xf9,0xf5,0xf0,0xea,0xe5,0xe2,0xe2, - 0xe6,0xed,0xf5,0xfd,0x05,0x0d,0x15,0x1c,0x1f,0x1e,0x1b,0x17, - 0x13,0x0f,0x0b,0x05,0xfe,0xf7,0xf3,0xf1,0xf2,0xf4,0xf6,0xf9, - 0xfe,0x04,0x0d,0x15,0x1a,0x1d,0x1e,0x20,0x23,0x27,0x2a,0x2a, - 0x2a,0x2a,0x2d,0x30,0x32,0x31,0x2d,0x29,0x28,0x28,0x29,0x26, - 0x1f,0x15,0x0c,0x04,0xfa,0xef,0xe3,0xd7,0xcf,0xcf,0xd7,0xe2, - 0xee,0xfa,0x06,0x12,0x1d,0x24,0x24,0x1f,0x17,0x0e,0x06,0x01, - 0xfd,0xf7,0xf0,0xea,0xe5,0xe2,0xde,0xd8,0xd0,0xca,0xc8,0xc9, - 0xce,0xd3,0xd7,0xdb,0xdd,0xdf,0xdf,0xde,0xdb,0xd8,0xd7,0xda, - 0xdf,0xe9,0xf4,0xff,0x09,0x12,0x18,0x1c,0x1b,0x16,0x0e,0x05, - 0xfc,0xf4,0xec,0xe6,0xe2,0xe0,0xe1,0xe4,0xe9,0xf0,0xf7,0xfe, - 0x06,0x0d,0x12,0x14,0x14,0x13,0x11,0x11,0x11,0x11,0x12,0x15, - 0x19,0x1d,0x1f,0x20,0x1d,0x19,0x13,0x0c,0x06,0x02,0xff,0xfd, - 0xfa,0xf9,0xf8,0xf8,0xf7,0xf3,0xef,0xec,0xea,0xea,0xed,0xf1, - 0xf7,0xfe,0x04,0x0a,0x0c,0x0c,0x0a,0x06,0x02,0xfd,0xf8,0xf4, - 0xf2,0xf1,0xf2,0xf3,0xf4,0xf4,0xf4,0xf3,0xf2,0xf1,0xf1,0xf2, - 0xf1,0xf2,0xf4,0xf6,0xf9,0xfb,0xfc,0xfc,0xfc,0xfc,0xfe,0xfe, - 0xfe,0xfd,0xfc,0xfd,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0xff, - 0xfd,0xf9,0xf5,0xf2,0xf1,0xf1,0xf3,0xf5,0xf8,0xfc,0x02,0x08, - 0x0e,0x11,0x12,0x13,0x13,0x11,0x0e,0x09,0x04,0x00,0xfd,0xfb, - 0xfa,0xfb,0xfc,0xfe,0x00,0x03,0x06,0x09,0x0a,0x09,0x06,0x04, - 0x03,0x02,0x01,0x00,0x00,0x00,0x02,0x03,0x03,0x03,0x00,0xfe, - 0xfb,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xf7,0xf5, - 0xf2,0xf1,0xf1,0xf3,0xf6,0xfb,0x00,0x06,0x0b,0x10,0x12,0x11, - 0x0e,0x09,0x04,0xfe,0xf8,0xf3,0xee,0xec,0xed,0xf0,0xf4,0xf7, - 0xfa,0xfd,0x01,0x06,0x09,0x09,0x07,0x06,0x06,0x07,0x09,0x0b, - 0x0c,0x0e,0x11,0x14,0x18,0x1a,0x1a,0x18,0x15,0x12,0x0f,0x0c, - 0x09,0x06,0x03,0x00,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa,0xf9,0xfb, - 0xfe,0x02,0x07,0x0b,0x0f,0x13,0x16,0x17,0x16,0x14,0x0f,0x0a, - 0x06,0x03,0x00,0xfd,0xfa,0xf7,0xf4,0xf1,0xee,0xe9,0xe4,0xe0, - 0xde,0xdf,0xe3,0xe8,0xee,0xf2,0xf7,0xfb,0xfe,0xfe,0xfb,0xf7, - 0xf3,0xf1,0xf3,0xf6,0xf8,0xfa,0xfe,0x03,0x0a,0x0f,0x10,0x0f, - 0x0c,0x0b,0x09,0x07,0x02,0xfc,0xf5,0xef,0xeb,0xea,0xed,0xf1, - 0xf8,0x00,0x0a,0x17,0x22,0x2a,0x2e,0x2f,0x2d,0x2b,0x29,0x28, - 0x27,0x28,0x2a,0x2d,0x2f,0x30,0x2e,0x29,0x24,0x1e,0x1a,0x18, - 0x1a,0x1e,0x23,0x26,0x26,0x23,0x1d,0x11,0x00,0xed,0xdc,0xd2, - 0xd0,0xd6,0xe4,0xf5,0x07,0x19,0x28,0x32,0x32,0x28,0x17,0x04, - 0xf4,0xe7,0xdf,0xda,0xd9,0xda,0xde,0xe2,0xe4,0xe3,0xde,0xd8, - 0xd2,0xd0,0xd3,0xd7,0xdc,0xe0,0xe3,0xe4,0xe2,0xde,0xd6,0xcc, - 0xc4,0xc2,0xc6,0xd0,0xdf,0xef,0xfe,0x0b,0x16,0x1d,0x1e,0x17, - 0x0b,0xfc,0xf1,0xe9,0xe5,0xe3,0xe2,0xe3,0xe7,0xef,0xf8,0xfe, - 0x01,0x02,0x05,0x0a,0x0f,0x11,0x10,0x0e,0x0d,0x0d,0x0d,0x0d, - 0x0b,0x0a,0x0b,0x0f,0x12,0x15,0x15,0x15,0x14,0x13,0x10,0x0d, - 0x09,0x06,0x05,0x06,0x07,0x07,0x05,0x02,0x01,0xff,0xfd,0xfa, - 0xf6,0xf3,0xf2,0xf4,0xf7,0xf8,0xf7,0xf7,0xf8,0xfa,0xfb,0xfb, - 0xf9,0xf9,0xfa,0xfd,0x01,0x03,0x03,0x01,0xff,0xfd,0xfb,0xf8, - 0xf4,0xf0,0xed,0xeb,0xea,0xe9,0xe9,0xe9,0xea,0xeb,0xec,0xed, - 0xf0,0xf3,0xf6,0xf8,0xfa,0xfb,0xfd,0x00,0x02,0x02,0x01,0x01, - 0x03,0x07,0x09,0x0a,0x09,0x08,0x06,0x05,0x03,0xff,0xfb,0xf8, - 0xf6,0xf6,0xf7,0xfa,0xfd,0x00,0x04,0x08,0x0b,0x0e,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0e,0x0c,0x0b,0x09,0x06,0x03,0x01,0xfe,0xfc, - 0xfa,0xf8,0xf8,0xf9,0xfc,0xfd,0xfd,0xfc,0xfb,0xfa,0xf8,0xf6, - 0xf4,0xf3,0xf3,0xf6,0xfa,0xff,0x05,0x09,0x0b,0x0a,0x07,0x04, - 0x00,0xfb,0xf6,0xf1,0xef,0xf0,0xf4,0xf9,0xfb,0xfd,0xff,0x01, - 0x02,0x01,0xff,0xfd,0xfc,0xfc,0xfe,0x00,0x02,0x02,0x01,0xff, - 0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0x00,0x05,0x0b,0x0f,0x11,0x12, - 0x11,0x10,0x0e,0x0b,0x08,0x05,0x03,0x03,0x04,0x06,0x09,0x0c, - 0x0e,0x10,0x12,0x15,0x16,0x17,0x15,0x13,0x10,0x0b,0x06,0x01, - 0xfd,0xf9,0xf7,0xf6,0xf6,0xf7,0xfa,0xfe,0x02,0x05,0x07,0x08, - 0x08,0x09,0x09,0x08,0x06,0x04,0x02,0xff,0xfb,0xf7,0xf3,0xf0, - 0xed,0xec,0xeb,0xec,0xef,0xf2,0xf4,0xf4,0xf2,0xef,0xec,0xe9, - 0xe7,0xe5,0xe4,0xe6,0xeb,0xf3,0xfb,0x04,0x0a,0x0e,0x11,0x14, - 0x16,0x17,0x15,0x12,0x0d,0x09,0x06,0x03,0x00,0xfc,0xf6,0xf2, - 0xf3,0xf8,0x00,0x07,0x0d,0x12,0x17,0x1e,0x22,0x22,0x1d,0x17, - 0x12,0x12,0x15,0x1a,0x1f,0x25,0x2b,0x33,0x3a,0x40,0x40,0x3b, - 0x34,0x2e,0x2b,0x2a,0x26,0x20,0x17,0x0f,0x08,0x01,0xf7,0xe9, - 0xdc,0xd3,0xd3,0xdc,0xea,0xf8,0x04,0x10,0x1c,0x26,0x2a,0x25, - 0x18,0x07,0xfa,0xf1,0xed,0xea,0xe7,0xe5,0xe6,0xe8,0xe9,0xe7, - 0xdf,0xd4,0xca,0xc3,0xc1,0xc4,0xc8,0xcc,0xd0,0xd6,0xdd,0xe3, - 0xe6,0xe5,0xe1,0xdd,0xdd,0xe0,0xe5,0xea,0xef,0xf5,0xfc,0x04, - 0x0c,0x10,0x11,0x10,0x0e,0x0a,0x04,0xfe,0xf7,0xf0,0xeb,0xe8, - 0xe7,0xe8,0xec,0xf1,0xf7,0xfd,0x01,0x04,0x08,0x0a,0x0c,0x0d, - 0x0d,0x0f,0x13,0x19,0x1e,0x21,0x21,0x1e,0x1b,0x16,0x11,0x0b, - 0x05,0x01,0xff,0x00,0x04,0x07,0x09,0x08,0x05,0xff,0xf8,0xf2, - 0xec,0xe7,0xe3,0xe3,0xe6,0xed,0xf4,0xfc,0x01,0x05,0x09,0x0a, - 0x0a,0x09,0x07,0x06,0x07,0x08,0x09,0x08,0x06,0x03,0xfd,0xf7, - 0xef,0xe7,0xe0,0xda,0xd6,0xd6,0xda,0xe0,0xe8,0xef,0xf5,0xfb, - 0x00,0x03,0x04,0x02,0xff,0xfd,0xfc,0xfc,0xfc,0xfd,0xff,0x01, - 0x04,0x08,0x0a,0x0b,0x0b,0x0a,0x09,0x07,0x05,0x02,0xff,0xfd, - 0xfc,0xfb,0xf9,0xf8,0xf7,0xf7,0xf8,0xf9,0xfb,0xfd,0x00,0x03, - 0x07,0x0b,0x0c,0x0c,0x0a,0x09,0x08,0x07,0x05,0x04,0x04,0x04, - 0x05,0x06,0x06,0x05,0x02,0xfe,0xfb,0xf9,0xf8,0xf5,0xf3,0xf1, - 0xf1,0xf4,0xf6,0xf8,0xf9,0xf9,0xfa,0xfc,0xff,0x02,0x03,0x03, - 0x02,0x03,0x04,0x05,0x04,0x01,0xfe,0xfc,0xfb,0xfc,0xfc,0xfc, - 0xfb,0xfb,0xfd,0x00,0x01,0x01,0x00,0xfe,0xfd,0xfd,0xfd,0xfc, - 0xfb,0xf9,0xf9,0xfb,0xff,0x03,0x05,0x06,0x07,0x09,0x0c,0x0d, - 0x0c,0x0a,0x08,0x07,0x06,0x05,0x04,0x04,0x03,0x03,0x04,0x05, - 0x07,0x09,0x0a,0x0b,0x0c,0x0e,0x10,0x11,0x12,0x12,0x0f,0x0c, - 0x09,0x07,0x04,0x02,0xfe,0xfc,0xfc,0xff,0x02,0x05,0x06,0x06, - 0x07,0x08,0x07,0x04,0xff,0xfa,0xf6,0xf5,0xf5,0xf7,0xf8,0xfa, - 0xfc,0x00,0x04,0x07,0x07,0x04,0x00,0xfb,0xf6,0xf2,0xed,0xe8, - 0xe2,0xdd,0xdb,0xdc,0xde,0xe1,0xe3,0xe6,0xeb,0xf3,0xfd,0x06, - 0x0c,0x10,0x14,0x19,0x1e,0x22,0x21,0x1d,0x18,0x15,0x13,0x10, - 0x0a,0x01,0xf8,0xf2,0xf1,0xf4,0xf7,0xf9,0xfa,0xfe,0x04,0x0c, - 0x12,0x14,0x13,0x13,0x16,0x1b,0x22,0x29,0x2f,0x33,0x38,0x3d, - 0x40,0x40,0x3a,0x31,0x27,0x21,0x1e,0x1c,0x1a,0x17,0x12,0x0d, - 0x09,0x03,0xfb,0xef,0xe2,0xd8,0xd5,0xd9,0xe1,0xeb,0xf6,0x02, - 0x0e,0x1a,0x23,0x26,0x22,0x1a,0x11,0x0a,0x05,0xff,0xf9,0xf1, - 0xeb,0xe8,0xe5,0xe0,0xda,0xd3,0xcd,0xc9,0xc9,0xcc,0xd0,0xd3, - 0xd6,0xd9,0xdb,0xde,0xdf,0xde,0xdc,0xdb,0xdc,0xe0,0xe6,0xed, - 0xf4,0xfa,0x00,0x06,0x0a,0x0b,0x0a,0x07,0x02,0xfe,0xfb,0xf8, - 0xf4,0xf0,0xec,0xeb,0xeb,0xed,0xee,0xef,0xf1,0xf5,0xfa,0x00, - 0x06,0x0b,0x0f,0x13,0x17,0x1b,0x1c,0x1c,0x19,0x17,0x15,0x13, - 0x10,0x0d,0x09,0x07,0x06,0x07,0x08,0x09,0x09,0x09,0x08,0x08, - 0x07,0x05,0x02,0xfe,0xfb,0xf9,0xf7,0xf5,0xf2,0xf1,0xf0,0xf0, - 0xf0,0xf1,0xf3,0xf6,0xfa,0xfe,0x02,0x05,0x08,0x09,0x06,0x01, - 0xfc,0xf8,0xf5,0xf1,0xed,0xeb,0xec,0xef,0xf3,0xf7,0xf8,0xf7, - 0xf6,0xf5,0xf5,0xf3,0xf0,0xed,0xed,0xef,0xf3,0xf7,0xfb,0xfd, - 0xff,0x01,0x03,0x04,0x03,0x01,0x00,0x00,0x02,0x03,0x04,0x04, - 0x04,0x02,0xff,0xfc,0xf9,0xf6,0xf3,0xf1,0xf1,0xf4,0xfa,0xff, - 0x04,0x08,0x0c,0x10,0x12,0x11,0x0e,0x0a,0x07,0x07,0x08,0x08, - 0x08,0x08,0x09,0x0b,0x0c,0x0b,0x07,0x02,0xff,0xfd,0xfd,0xfc, - 0xfc,0xfd,0xfe,0x00,0x01,0x00,0xfd,0xfa,0xf6,0xf4,0xf2,0xf2, - 0xf4,0xf8,0xfe,0x04,0x09,0x0c,0x0e,0x0d,0x09,0x04,0xfe,0xf8, - 0xf3,0xf0,0xee,0xed,0xed,0xed,0xee,0xef,0xf0,0xf0,0xf1,0xf3, - 0xf7,0xfc,0x02,0x09,0x0f,0x15,0x18,0x1a,0x19,0x16,0x12,0x0d, - 0x07,0x01,0xfc,0xf9,0xf8,0xf8,0xf9,0xf9,0xfa,0xfb,0xfd,0xff, - 0x00,0x01,0x02,0x04,0x07,0x0b,0x0f,0x11,0x13,0x15,0x17,0x18, - 0x19,0x18,0x16,0x13,0x10,0x0e,0x0b,0x06,0x00,0xfb,0xf7,0xf4, - 0xf3,0xf3,0xf2,0xf3,0xf5,0xf8,0xfc,0xfe,0xff,0xfd,0xfc,0xfc, - 0xfe,0xff,0x01,0x02,0x05,0x08,0x0d,0x11,0x13,0x12,0x0e,0x0a, - 0x05,0xff,0xf9,0xf2,0xec,0xe7,0xe4,0xe3,0xe2,0xe2,0xe1,0xe2, - 0xe4,0xe7,0xea,0xed,0xf1,0xf6,0xfc,0x02,0x08,0x0b,0x0f,0x12, - 0x16,0x18,0x18,0x16,0x13,0x12,0x12,0x11,0x0e,0x09,0x04,0x02, - 0x02,0x02,0x01,0x00,0x00,0x02,0x06,0x09,0x0a,0x0b,0x0d,0x10, - 0x16,0x1c,0x22,0x28,0x2f,0x35,0x3a,0x3d,0x3d,0x3a,0x34,0x2d, - 0x26,0x20,0x1c,0x1a,0x17,0x14,0x10,0x0b,0x05,0xfd,0xf3,0xe8, - 0xe0,0xdb,0xdb,0xe0,0xea,0xf6,0x04,0x10,0x1a,0x1f,0x20,0x1d, - 0x16,0x0d,0x03,0xfc,0xf6,0xf3,0xf1,0xef,0xec,0xe7,0xe0,0xd8, - 0xcf,0xc7,0xc0,0xbc,0xbd,0xc3,0xcc,0xd6,0xe0,0xe8,0xef,0xf3, - 0xf4,0xf2,0xee,0xeb,0xeb,0xec,0xf0,0xf5,0xfa,0xff,0x02,0x04, - 0x04,0x03,0xff,0xfb,0xf7,0xf4,0xf2,0xf1,0xf0,0xed,0xeb,0xe9, - 0xe8,0xe8,0xe9,0xeb,0xf0,0xf7,0x00,0x0b,0x15,0x1c,0x20,0x22, - 0x23,0x22,0x1e,0x18,0x11,0x0b,0x06,0x02,0xff,0xfc,0xf9,0xf7, - 0xf5,0xf4,0xf4,0xf6,0xf9,0xfd,0x02,0x08,0x0d,0x12,0x15,0x15, - 0x14,0x10,0x0a,0x04,0xfd,0xf8,0xf4,0xf2,0xf2,0xf3,0xf6,0xfa, - 0xfd,0xfe,0xfe,0xfd,0xfc,0xfc,0xfa,0xf9,0xf7,0xf6,0xf5,0xf6, - 0xf6,0xf6,0xf4,0xf1,0xee,0xec,0xec,0xed,0xef,0xf2,0xf5,0xfa, - 0xff,0x05,0x09,0x0a,0x09,0x07,0x04,0x02,0xfe,0xfa,0xf6,0xf3, - 0xf3,0xf3,0xf4,0xf5,0xf7,0xf8,0xfa,0xfc,0xfc,0xfb,0xfb,0xfb, - 0xfb,0xfd,0xfe,0x00,0x02,0x05,0x08,0x09,0x08,0x07,0x05,0x03, - 0x00,0xfd,0xfa,0xfa,0xfc,0xff,0x02,0x04,0x05,0x05,0x05,0x05, - 0x03,0x01,0xfe,0xfb,0xfc,0xff,0x03,0x07,0x08,0x09,0x09,0x0a, - 0x0a,0x07,0x02,0xfd,0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf8,0xf9, - 0xfa,0xfb,0xfa,0xf9,0xf7,0xf8,0xfb,0x00,0x05,0x08,0x0a,0x0b, - 0x0b,0x0b,0x08,0x03,0xfc,0xf6,0xf1,0xf0,0xf1,0xf4,0xf6,0xf9, - 0xfc,0x01,0x04,0x06,0x05,0x03,0x02,0x02,0x03,0x04,0x04,0x05, - 0x05,0x05,0x04,0x03,0x01,0xff,0xfd,0xfb,0xfb,0xfd,0x00,0x04, - 0x08,0x0c,0x0f,0x11,0x12,0x12,0x10,0x0d,0x09,0x06,0x04,0x03, - 0x03,0x04,0x06,0x09,0x0b,0x0c,0x0d,0x0c,0x0b,0x09,0x07,0x05, - 0x04,0x05,0x07,0x09,0x09,0x08,0x07,0x05,0x02,0xfc,0xf7,0xf2, - 0xf0,0xf1,0xf5,0xfa,0xff,0x05,0x09,0x0d,0x0d,0x0a,0x04,0xfc, - 0xf4,0xed,0xe8,0xe5,0xe3,0xe4,0xe6,0xe9,0xec,0xee,0xef,0xf1, - 0xf2,0xf5,0xf8,0xfb,0xff,0x04,0x09,0x0d,0x0f,0x0f,0x0e,0x0b, - 0x08,0x05,0x02,0x00,0xff,0x00,0x03,0x06,0x09,0x0b,0x0c,0x0e, - 0x0f,0x10,0x0f,0x0d,0x0c,0x0b,0x0b,0x0a,0x0a,0x09,0x09,0x0c, - 0x10,0x17,0x1e,0x25,0x2b,0x32,0x38,0x3d,0x40,0x3e,0x3a,0x35, - 0x30,0x2a,0x23,0x1b,0x13,0x0a,0x02,0xfa,0xf3,0xec,0xe6,0xe3, - 0xe3,0xe7,0xef,0xf7,0x01,0x0a,0x12,0x19,0x1d,0x1c,0x17,0x10, - 0x08,0xff,0xf8,0xf2,0xec,0xe8,0xe5,0xe4,0xe2,0xe0,0xdd,0xd8, - 0xd4,0xd1,0xce,0xcc,0xcc,0xcc,0xce,0xd0,0xd3,0xd6,0xda,0xdd, - 0xe0,0xe2,0xe5,0xea,0xef,0xf4,0xf8,0xfb,0xff,0x03,0x08,0x0b, - 0x0c,0x0a,0x08,0x04,0x00,0xfa,0xf3,0xeb,0xe5,0xe2,0xe2,0xe4, - 0xe9,0xee,0xf5,0xfc,0x03,0x08,0x0c,0x0e,0x0e,0x0f,0x11,0x13, - 0x16,0x18,0x1a,0x1b,0x1c,0x1b,0x17,0x11,0x0b,0x05,0x01,0xfe, - 0xfd,0xfd,0xfe,0x00,0x01,0x02,0x02,0x01,0xff,0xfb,0xf7,0xf4, - 0xf4,0xf5,0xf7,0xf8,0xfb,0xfe,0x01,0x04,0x05,0x04,0x03,0x01, - 0x00,0xff,0xfe,0xfc,0xfa,0xf8,0xf7,0xf5,0xf3,0xf0,0xec,0xe8, - 0xe7,0xe7,0xe9,0xec,0xee,0xf1,0xf5,0xf8,0xfb,0xfc,0xfb,0xfa, - 0xf8,0xf8,0xfa,0xfc,0xfd,0xff,0x01,0x04,0x06,0x06,0x04,0x01, - 0xfe,0xfc,0xfb,0xfb,0xfb,0xfd,0xfe,0x00,0x02,0x04,0x04,0x03, - 0x01,0xff,0xfe,0xff,0x01,0x04,0x07,0x0a,0x0d,0x10,0x11,0x10, - 0x0c,0x07,0x02,0xfd,0xfa,0xf7,0xf6,0xf6,0xf8,0xfa,0xfd,0xfe, - 0xff,0x00,0xff,0xfe,0xfc,0xfb,0xfc,0xfd,0xff,0x00,0x02,0x03, - 0x05,0x06,0x06,0x04,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0xff, - 0xff,0xfe,0xfd,0xfb,0xf7,0xf4,0xf1,0xf0,0xf1,0xf3,0xf5,0xf7, - 0xfa,0xfe,0x02,0x06,0x08,0x08,0x07,0x06,0x05,0x05,0x05,0x03, - 0x01,0x00,0x01,0x02,0x02,0x01,0xff,0xfd,0xfc,0xfb,0xfb,0xfb, - 0xfa,0xfa,0xfb,0xfe,0x01,0x04,0x06,0x07,0x07,0x08,0x08,0x09, - 0x08,0x08,0x07,0x07,0x08,0x09,0x0a,0x0a,0x09,0x08,0x07,0x07, - 0x07,0x07,0x08,0x09,0x0b,0x0d,0x0e,0x0f,0x0f,0x0e,0x0c,0x0b, - 0x09,0x08,0x07,0x05,0x03,0x03,0x03,0x02,0x01,0xfe,0xfb,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfb,0xfc,0xfd,0xff,0xff,0xfe,0xfb,0xf8, - 0xf6,0xf4,0xf3,0xf2,0xf1,0xf0,0xf0,0xf1,0xf3,0xf4,0xf4,0xf3, - 0xf3,0xf4,0xf6,0xf8,0xf9,0xf9,0xfa,0xfc,0xfe,0x00,0x02,0x03, - 0x04,0x05,0x06,0x08,0x09,0x09,0x08,0x08,0x07,0x07,0x07,0x08, - 0x0a,0x0c,0x0e,0x10,0x12,0x15,0x17,0x17,0x16,0x15,0x16,0x18, - 0x1b,0x1e,0x22,0x26,0x2a,0x2e,0x31,0x32,0x31,0x2e,0x2a,0x27, - 0x23,0x20,0x1e,0x1b,0x17,0x13,0x0f,0x0a,0x04,0xfd,0xf5,0xef, - 0xec,0xec,0xee,0xf3,0xf8,0xff,0x06,0x0c,0x10,0x10,0x0e,0x0b, - 0x07,0x03,0xfe,0xf9,0xf4,0xef,0xea,0xe6,0xe1,0xdc,0xd7,0xd2, - 0xce,0xcd,0xcd,0xcf,0xd2,0xd5,0xd8,0xdc,0xe1,0xe4,0xe6,0xe7, - 0xe7,0xe7,0xe9,0xea,0xec,0xec,0xec,0xed,0xef,0xf2,0xf4,0xf4, - 0xf5,0xf6,0xf9,0xfb,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfb,0xfb,0xfc,0xfe,0x00,0x01,0x01,0x03,0x04,0x06,0x07,0x08, - 0x09,0x0b,0x0d,0x0f,0x11,0x11,0x10,0x0e,0x0c,0x0a,0x07,0x05, - 0x02,0x00,0x00,0x01,0x03,0x04,0x05,0x05,0x04,0x03,0x03,0x02, - 0x00,0xff,0xfe,0xfe,0xff,0x00,0xff,0xfd,0xfa,0xf7,0xf5,0xf3, - 0xf2,0xf1,0xf1,0xf4,0xf8,0xfd,0x01,0x04,0x06,0x07,0x07,0x06, - 0x04,0x01,0xfd,0xfa,0xf8,0xf6,0xf4,0xf1,0xee,0xec,0xeb,0xea, - 0xea,0xea,0xeb,0xed,0xf0,0xf3,0xf7,0xfb,0xfe,0x01,0x03,0x04, - 0x05,0x05,0x05,0x04,0x02,0x00,0xfe,0xfc,0xfb,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xfd,0x00,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0xff, - 0xfe,0xfe,0x00,0x03,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x05, - 0x03,0x03,0x05,0x08,0x0b,0x0b,0x0b,0x09,0x07,0x05,0x01,0xfd, - 0xf9,0xf6,0xf5,0xf7,0xf9,0xfc,0xfe,0x00,0x02,0x03,0x02,0x01, - 0xfe,0xfd,0xfc,0xfc,0xfe,0x00,0x02,0x03,0x04,0x03,0x01,0xfd, - 0xf9,0xf6,0xf3,0xf1,0xf0,0xf2,0xf6,0xfa,0xfe,0x01,0x03,0x04, - 0x04,0x02,0x00,0xfd,0xfb,0xfa,0xfa,0xfa,0xfb,0xfd,0xff,0x00, - 0x02,0x03,0x04,0x04,0x05,0x06,0x07,0x08,0x09,0x09,0x09,0x08, - 0x07,0x06,0x06,0x05,0x05,0x06,0x08,0x09,0x0b,0x0c,0x0e,0x0f, - 0x10,0x11,0x12,0x12,0x12,0x11,0x10,0x0e,0x0b,0x07,0x03,0xff, - 0xfd,0xfa,0xf9,0xf8,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe,0xff,0x00, - 0x02,0x05,0x08,0x0a,0x0c,0x0d,0x0c,0x0a,0x07,0x01,0xf9,0xf2, - 0xec,0xe7,0xe4,0xe2,0xe2,0xe4,0xe7,0xeb,0xee,0xf0,0xf2,0xf3, - 0xf4,0xf6,0xf8,0xfb,0xfd,0x00,0x03,0x06,0x09,0x09,0x09,0x08, - 0x07,0x05,0x04,0x03,0x03,0x04,0x05,0x07,0x08,0x0a,0x0b,0x0d, - 0x0e,0x0e,0x0f,0x10,0x12,0x14,0x15,0x16,0x16,0x17,0x18,0x19, - 0x1b,0x1e,0x20,0x23,0x27,0x2c,0x2e,0x2f,0x2e,0x2b,0x27,0x23, - 0x1f,0x1b,0x17,0x15,0x12,0x0f,0x0b,0x07,0x02,0xfb,0xf4,0xee, - 0xea,0xea,0xee,0xf4,0xfa,0x02,0x09,0x10,0x14,0x14,0x11,0x0a, - 0x03,0xfc,0xf6,0xf2,0xef,0xec,0xeb,0xe9,0xe8,0xe6,0xe1,0xdb, - 0xd5,0xd0,0xce,0xcf,0xd1,0xd4,0xd9,0xdf,0xe6,0xec,0xef,0xf0, - 0xef,0xee,0xec,0xeb,0xeb,0xeb,0xeb,0xec,0xed,0xf0,0xf2,0xf4, - 0xf6,0xf6,0xf7,0xf8,0xfa,0xfc,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd, - 0xfd,0xfc,0xfc,0xfd,0xff,0x01,0x02,0x02,0x01,0x00,0x00,0x02, - 0x05,0x07,0x0a,0x0e,0x13,0x17,0x1b,0x1c,0x1a,0x16,0x12,0x0d, - 0x09,0x05,0x00,0xfc,0xf9,0xf9,0xf9,0xfa,0xf9,0xf7,0xf7,0xf7, - 0xf8,0xfa,0xfc,0xfe,0xff,0x01,0x02,0x03,0x02,0x00,0xfd,0xf9, - 0xf7,0xf5,0xf5,0xf5,0xf6,0xf7,0xf8,0xf9,0xf9,0xfa,0xf9,0xf7, - 0xf5,0xf4,0xf4,0xf6,0xf7,0xf9,0xfa,0xfb,0xfa,0xfa,0xfa,0xf9, - 0xf8,0xf6,0xf4,0xf5,0xf7,0xf9,0xfa,0xfb,0xfb,0xfc,0xfe,0x00, - 0x01,0x01,0x00,0x00,0x02,0x04,0x05,0x05,0x03,0x01,0x01,0x01, - 0x00,0xff,0xfd,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xff, - 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x07,0x06,0x05,0x04, - 0x03,0x02,0x00,0xff,0xfd,0xfd,0xfc,0xfd,0xfd,0xfc,0xfc,0xfb, - 0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0x01,0x02,0x04,0x05,0x06, - 0x06,0x06,0x05,0x03,0x01,0xfe,0xfb,0xf8,0xf6,0xf4,0xf4,0xf3, - 0xf3,0xf4,0xf6,0xf8,0xfa,0xfc,0xfd,0xff,0x02,0x04,0x07,0x09, - 0x0b,0x0d,0x0e,0x0e,0x0e,0x0d,0x0a,0x07,0x04,0x00,0xfd,0xfb, - 0xf9,0xf8,0xf7,0xf7,0xf8,0xf9,0xfb,0xfc,0xfe,0x00,0x03,0x06, - 0x0a,0x0d,0x11,0x13,0x15,0x16,0x16,0x14,0x10,0x0b,0x07,0x04, - 0x02,0x01,0x01,0x02,0x04,0x06,0x08,0x08,0x06,0x02,0xff,0xfc, - 0xf9,0xf8,0xf7,0xf8,0xfa,0xfd,0x01,0x04,0x05,0x05,0x05,0x03, - 0x02,0x01,0x02,0x04,0x06,0x08,0x0b,0x0c,0x0c,0x09,0x03,0xfc, - 0xf4,0xed,0xe6,0xe1,0xde,0xdf,0xe1,0xe5,0xe9,0xee,0xf3,0xf7, - 0xfa,0xfc,0xfc,0xfe,0xff,0x02,0x05,0x07,0x0a,0x0c,0x0d,0x0e, - 0x0e,0x0d,0x0b,0x09,0x07,0x05,0x04,0x04,0x03,0x04,0x05,0x08, - 0x0b,0x0f,0x12,0x15,0x16,0x17,0x16,0x14,0x12,0x0f,0x0c,0x0c, - 0x0e,0x12,0x19,0x20,0x27,0x2d,0x31,0x33,0x32,0x2d,0x26,0x1e, - 0x18,0x14,0x12,0x11,0x11,0x11,0x11,0x0e,0x0a,0x03,0xfa,0xf0, - 0xe8,0xe4,0xe5,0xeb,0xf3,0xfb,0x04,0x0c,0x13,0x17,0x15,0x10, - 0x08,0x01,0xfd,0xfa,0xf7,0xf4,0xf2,0xee,0xeb,0xe6,0xe0,0xd9, - 0xd2,0xcd,0xcb,0xcd,0xd2,0xd9,0xdf,0xe4,0xe9,0xed,0xef,0xf0, - 0xef,0xed,0xed,0xee,0xf0,0xf3,0xf4,0xf4,0xf3,0xf2,0xf1,0xef, - 0xed,0xeb,0xec,0xef,0xf4,0xf9,0xfd,0xff,0x00,0x01,0x00,0xff, - 0xfd,0xfa,0xf9,0xf9,0xfb,0xfe,0x01,0x03,0x04,0x06,0x08,0x0a, - 0x0b,0x0c,0x0c,0x0d,0x0f,0x11,0x11,0x11,0x0e,0x0b,0x09,0x06, - 0x03,0xff,0xfb,0xf7,0xf6,0xf6,0xf7,0xf8,0xf9,0xfb,0xfd,0x01, - 0x04,0x06,0x07,0x06,0x06,0x05,0x05,0x03,0x02,0xff,0xfd,0xfc, - 0xfb,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfa,0xf7,0xf4,0xf0,0xee,0xed,0xec,0xec,0xec,0xed, - 0xf0,0xf4,0xf8,0xfc,0xff,0x00,0x01,0x02,0x03,0x04,0x03,0x02, - 0x00,0x00,0x00,0x00,0xff,0xfd,0xfa,0xf8,0xf6,0xf5,0xf4,0xf4, - 0xf6,0xf9,0xfe,0x03,0x08,0x0c,0x0e,0x0e,0x0d,0x0a,0x06,0x02, - 0xfe,0xfb,0xfa,0xfb,0xfd,0xff,0x02,0x04,0x06,0x06,0x06,0x04, - 0x02,0x00,0xfe,0xfd,0xfd,0xff,0x00,0x01,0x02,0x02,0x01,0xff, - 0xfe,0xfc,0xfa,0xfb,0xfc,0xff,0x01,0x04,0x07,0x09,0x09,0x08, - 0x05,0x01,0xfd,0xf9,0xf6,0xf4,0xf3,0xf3,0xf4,0xf7,0xfa,0xfc, - 0xfd,0xfd,0xfe,0xff,0x00,0x01,0x00,0xff,0xff,0x00,0x01,0x01, - 0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0xff,0x00,0x01,0x03, - 0x06,0x07,0x08,0x09,0x0a,0x0c,0x0b,0x08,0x05,0x01,0xff,0xfe, - 0xfe,0xfc,0xfb,0xfb,0xfe,0x01,0x03,0x05,0x06,0x08,0x0b,0x0f, - 0x12,0x14,0x16,0x17,0x17,0x17,0x15,0x11,0x0c,0x06,0x01,0xfb, - 0xf6,0xf1,0xee,0xed,0xed,0xee,0xf0,0xf3,0xf7,0xfc,0x01,0x05, - 0x08,0x0a,0x0c,0x0e,0x10,0x10,0x0f,0x0d,0x0b,0x08,0x05,0x00, - 0xfa,0xf4,0xee,0xea,0xe7,0xe5,0xe4,0xe5,0xe7,0xea,0xee,0xf1, - 0xf4,0xf7,0xf8,0xf9,0xfb,0xfd,0x00,0x02,0x04,0x06,0x09,0x0c, - 0x0e,0x0f,0x0e,0x0d,0x0b,0x09,0x08,0x06,0x04,0x02,0x01,0x02, - 0x04,0x06,0x08,0x09,0x0b,0x0c,0x0e,0x10,0x12,0x12,0x13,0x16, - 0x1a,0x20,0x25,0x2a,0x2d,0x2f,0x31,0x31,0x2f,0x29,0x21,0x19, - 0x13,0x0e,0x0a,0x07,0x04,0x02,0x01,0x00,0xfe,0xfb,0xf6,0xf2, - 0xef,0xef,0xf1,0xf6,0xfc,0x03,0x0b,0x13,0x18,0x1b,0x1a,0x16, - 0x0f,0x08,0x01,0xfa,0xf3,0xed,0xe8,0xe4,0xe2,0xe0,0xdd,0xda, - 0xd7,0xd6,0xd6,0xd8,0xdb,0xe0,0xe5,0xeb,0xf0,0xf5,0xf9,0xfa, - 0xf9,0xf7,0xf5,0xf3,0xf2,0xf1,0xf0,0xf0,0xf1,0xf2,0xf4,0xf4, - 0xf4,0xf4,0xf3,0xf2,0xf2,0xf1,0xf0,0xee,0xed,0xed,0xee,0xf0, - 0xf1,0xf2,0xf5,0xf8,0xfc,0x00,0x03,0x05,0x06,0x07,0x09,0x0a, - 0x0b,0x0b,0x0b,0x0c,0x0d,0x0d,0x0c,0x0a,0x07,0x03,0x00,0xfd, - 0xfb,0xf9,0xf9,0xfb,0xfe,0x01,0x04,0x07,0x09,0x0b,0x0d,0x0e, - 0x0e,0x0e,0x0e,0x0e,0x0d,0x0c,0x0a,0x07,0x04,0x00,0xfc,0xf9, - 0xf5,0xf3,0xf1,0xf1,0xf1,0xf2,0xf4,0xf5,0xf6,0xf7,0xf8,0xf8, - 0xf9,0xfb,0xfd,0xff,0x02,0x04,0x04,0x04,0x02,0xff,0xfb,0xf7, - 0xf3,0xf0,0xef,0xef,0xf0,0xf2,0xf4,0xf7,0xf9,0xfa,0xfa,0xf9, - 0xf8,0xf7,0xf6,0xf7,0xf8,0xf9,0xfc,0xff,0x02,0x03,0x03,0x03, - 0x01,0x00,0xfe,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0x00,0x00,0x01, - 0x01,0x00,0xff,0xff,0xff,0x00,0x02,0x04,0x06,0x07,0x09,0x0a, - 0x09,0x07,0x04,0x02,0x00,0xfe,0xfd,0xfd,0xfd,0xff,0x01,0x03, - 0x05,0x06,0x06,0x06,0x05,0x04,0x03,0x01,0x00,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfc,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfc,0xfd,0xff,0x01,0x03,0x04,0x03,0x00,0xfe,0xfc,0xfa, - 0xf9,0xf9,0xf9,0xfa,0xfd,0x00,0x03,0x04,0x04,0x03,0x03,0x02, - 0x03,0x03,0x03,0x04,0x06,0x08,0x0a,0x0b,0x0a,0x08,0x06,0x03, - 0x01,0x00,0xff,0xff,0x01,0x03,0x06,0x08,0x0a,0x0a,0x09,0x08, - 0x06,0x05,0x03,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xfe, - 0xfd,0xfb,0xfb,0xfa,0xfb,0xfc,0xfe,0x00,0x02,0x03,0x04,0x04, - 0x02,0x01,0xfe,0xfc,0xf9,0xf6,0xf5,0xf4,0xf4,0xf5,0xf6,0xf7, - 0xf9,0xfb,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfd,0xfd,0xfe,0xfe,0x00, - 0x02,0x04,0x07,0x09,0x0a,0x0a,0x0b,0x0b,0x0b,0x0a,0x09,0x08, - 0x08,0x08,0x0a,0x0b,0x0c,0x0d,0x0e,0x0e,0x0e,0x0e,0x0d,0x0c, - 0x0b,0x0b,0x0d,0x10,0x13,0x16,0x18,0x1a,0x1c,0x1d,0x1c,0x1a, - 0x16,0x13,0x10,0x0e,0x0c,0x0a,0x09,0x07,0x05,0x03,0x00,0xfe, - 0xfa,0xf7,0xf5,0xf4,0xf5,0xf8,0xfc,0x00,0x03,0x07,0x09,0x0a, - 0x0a,0x08,0x05,0x01,0xfe,0xfc,0xfb,0xf9,0xf8,0xf6,0xf5,0xf3, - 0xf1,0xef,0xec,0xe9,0xe6,0xe5,0xe5,0xe6,0xe8,0xea,0xec,0xef, - 0xf2,0xf4,0xf6,0xf6,0xf6,0xf6,0xf5,0xf4,0xf4,0xf3,0xf3,0xf3, - 0xf3,0xf3,0xf4,0xf4,0xf5,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6, - 0xf6,0xf6,0xf7,0xf9,0xfb,0xfd,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xff,0x01,0x03,0x04,0x05,0x06,0x06,0x05, - 0x04,0x01,0xff,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0x00,0x01,0x02, - 0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04, - 0x04,0x02,0x01,0x00,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x01,0x02,0x03,0x04, - 0x06,0x07,0x07,0x06,0x05,0x03,0x02,0x01,0xff,0xfe,0xfc,0xfc, - 0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xff,0x01, - 0x03,0x06,0x08,0x0a,0x0c,0x0d,0x0d,0x0c,0x0a,0x09,0x08,0x06, - 0x05,0x03,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0xff,0xfe, - 0xff,0xff,0x01,0x02,0x03,0x04,0x05,0x04,0x04,0x04,0x03,0x03, - 0x02,0x01,0xff,0xfe,0xfe,0xff,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xff,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfa,0xf9,0xf8, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x02,0x03, - 0x04,0x05,0x04,0x03,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x03, - 0x04,0x04,0x04,0x03,0x03,0x03,0x04,0x04,0x05,0x06,0x08,0x08, - 0x09,0x09,0x09,0x08,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x07, - 0x09,0x0b,0x0d,0x0e,0x0e,0x0e,0x0e,0x0e,0x0e,0x0d,0x0c,0x0b, - 0x0b,0x0c,0x0c,0x0d,0x0c,0x0c,0x0b,0x0c,0x0c,0x0d,0x0e,0x0e, - 0x0e,0x0e,0x0f,0x0f,0x0f,0x0d,0x0b,0x09,0x08,0x08,0x09,0x0a, - 0x0b,0x0b,0x0c,0x0d,0x0e,0x0e,0x0d,0x0b,0x0a,0x09,0x09,0x09, - 0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x06,0x04,0x01,0x00,0xfe, - 0xfd,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfa,0xf8,0xf6,0xf5,0xf3,0xf3,0xf2, - 0xf3,0xf3,0xf3,0xf3,0xf2,0xf2,0xf1,0xf1,0xf1,0xf1,0xf2,0xf2, - 0xf3,0xf3,0xf4,0xf5,0xf4,0xf4,0xf3,0xf2,0xf2,0xf3,0xf3,0xf2, - 0xf2,0xf1,0xf2,0xf2,0xf2,0xf2,0xf1,0xf1,0xf2,0xf3,0xf5,0xf5, - 0xf6,0xf6,0xf7,0xf8,0xf8,0xf9,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7, - 0xf6,0xf6,0xf5,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xfc,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfd,0xfe, - 0x00,0x00,0x01,0x02,0x02,0x03,0x02,0x02,0x01,0x01,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x04,0x06,0x06,0x07, - 0x07,0x07,0x06,0x06,0x05,0x04,0x03,0x03,0x03,0x04,0x04,0x04, - 0x03,0x03,0x02,0x02,0x02,0x03,0x03,0x03,0x05,0x06,0x07,0x08, - 0x08,0x07,0x07,0x06,0x06,0x06,0x05,0x04,0x02,0x01,0x01,0x00, - 0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01, - 0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x00,0xfe,0xfd,0xfc, - 0xfb,0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd, - 0xff,0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa, - 0xfa,0xf9,0xf9,0xf8,0xf8,0xf7,0xf7,0xf7,0xf8,0xf9,0xfa,0xfa, - 0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x03, - 0x03,0x03,0x03,0x03,0x02,0x01,0x00,0xff,0xff,0xfe,0xfe,0xff, - 0xff,0x00,0x01,0x02,0x02,0x03,0x04,0x04,0x05,0x05,0x05,0x05, - 0x05,0x04,0x04,0x04,0x04,0x05,0x05,0x06,0x06,0x07,0x07,0x07, - 0x07,0x06,0x06,0x05,0x05,0x05,0x06,0x07,0x07,0x07,0x07,0x07, - 0x07,0x07,0x08,0x08,0x08,0x09,0x0a,0x0b,0x0b,0x0b,0x0b,0x0b, - 0x0b,0x0b,0x0c,0x0c,0x0c,0x0b,0x0b,0x0b,0x0a,0x0a,0x0a,0x0a, - 0x0b,0x0b,0x0d,0x0e,0x0f,0x0f,0x0e,0x0d,0x0c,0x0b,0x0a,0x09, - 0x09,0x09,0x0a,0x0a,0x0a,0x09,0x08,0x08,0x07,0x07,0x07,0x07, - 0x08,0x09,0x09,0x09,0x08,0x05,0x03,0x00,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfb,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xf9,0xf9,0xf8,0xf7,0xf6,0xf5,0xf4,0xf5,0xf6,0xf7, - 0xf7,0xf6,0xf6,0xf5,0xf4,0xf3,0xf1,0xf0,0xf0,0xf1,0xf2,0xf2, - 0xf3,0xf4,0xf5,0xf6,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf5,0xf4, - 0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf4,0xf4,0xf4,0xf5,0xf6,0xf6, - 0xf7,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8, - 0xf9,0xfb,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfd, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xff, - 0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x01,0x01,0x01,0x01,0x02, - 0x03,0x04,0x05,0x05,0x05,0x04,0x04,0x03,0x02,0x02,0x02,0x02, - 0x03,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x04,0x05, - 0x05,0x06,0x06,0x06,0x05,0x04,0x02,0x01,0x00,0x00,0x01,0x01, - 0x01,0x02,0x04,0x05,0x05,0x05,0x04,0x03,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd, - 0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb, - 0xfd,0xfe,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfc, - 0xfd,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x03,0x02,0x02,0x02, - 0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x04, - 0x05,0x06,0x07,0x07,0x07,0x06,0x06,0x05,0x05,0x05,0x04,0x04, - 0x04,0x05,0x05,0x07,0x08,0x09,0x09,0x09,0x09,0x09,0x08,0x08, - 0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x0b,0x0b,0x0b,0x0b,0x0c, - 0x0e,0x0e,0x0f,0x0e,0x0d,0x0d,0x0c,0x0b,0x0a,0x09,0x09,0x09, - 0x0a,0x0c,0x0e,0x0f,0x0f,0x0e,0x0d,0x0d,0x0c,0x0b,0x09,0x08, - 0x08,0x09,0x0a,0x0a,0x0a,0x09,0x07,0x07,0x06,0x06,0x06,0x06, - 0x06,0x06,0x07,0x07,0x06,0x04,0x02,0x00,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0x00,0x00,0x00,0xff,0xfd,0xfb,0xf9,0xf8,0xf7,0xf7, - 0xf8,0xf8,0xf8,0xf9,0xfa,0xfa,0xfa,0xf9,0xf8,0xf7,0xf6,0xf5, - 0xf4,0xf4,0xf3,0xf2,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1, - 0xf2,0xf2,0xf3,0xf3,0xf3,0xf4,0xf4,0xf5,0xf4,0xf3,0xf3,0xf3, - 0xf3,0xf4,0xf5,0xf6,0xf6,0xf6,0xf7,0xf7,0xf6,0xf5,0xf4,0xf3, - 0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfb,0xfa,0xf9,0xf8, - 0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xf9,0xf8,0xf7,0xf7, - 0xf8,0xfa,0xfb,0xfc,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfb,0xfb,0xfa,0xfa, - 0xfb,0xfc,0xfd,0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x01,0x00, - 0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x02,0x03,0x04,0x05,0x05,0x06,0x06,0x06,0x06, - 0x05,0x04,0x03,0x03,0x03,0x04,0x05,0x05,0x05,0x05,0x04,0x04, - 0x04,0x04,0x04,0x05,0x06,0x07,0x07,0x08,0x08,0x07,0x05,0x03, - 0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x04,0x04,0x03,0x02, - 0x02,0x01,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x02,0x01,0x00, - 0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfd,0xfc,0xfc,0xfc,0xfb, - 0xfa,0xfa,0xf9,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfc,0xfe,0xff,0xff,0x00,0x00,0x00,0x00, - 0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x01, - 0x01,0x00,0x00,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x03,0x05,0x06,0x06,0x06,0x05,0x05, - 0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x04,0x06,0x07,0x08,0x0a,0x0a,0x0b,0x0c,0x0c,0x0b,0x0a,0x08, - 0x07,0x06,0x06,0x06,0x05,0x05,0x05,0x06,0x07,0x07,0x06,0x06, - 0x07,0x09,0x0a,0x0c,0x0d,0x0d,0x0e,0x0e,0x0e,0x0d,0x0c,0x0a, - 0x0a,0x0a,0x0c,0x0d,0x0d,0x0c,0x0b,0x09,0x08,0x07,0x05,0x04, - 0x04,0x05,0x08,0x0c,0x0e,0x0f,0x0e,0x0c,0x0b,0x09,0x07,0x05, - 0x03,0x02,0x02,0x03,0x04,0x03,0x01,0x00,0xff,0xfe,0xff,0xff, - 0xff,0xff,0x00,0x02,0x03,0x03,0x01,0xff,0xfc,0xfb,0xfa,0xf9, - 0xf7,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf5,0xf4,0xf4,0xf4,0xf5, - 0xf6,0xf7,0xf7,0xf8,0xf8,0xf9,0xf8,0xf7,0xf6,0xf4,0xf4,0xf3, - 0xf3,0xf4,0xf4,0xf5,0xf6,0xf6,0xf6,0xf5,0xf4,0xf3,0xf2,0xf3, - 0xf3,0xf4,0xf5,0xf7,0xf9,0xfc,0xfd,0xfd,0xfc,0xfa,0xf7,0xf5, - 0xf3,0xf3,0xf3,0xf4,0xf6,0xf9,0xfb,0xfd,0xfe,0xff,0xff,0xff, - 0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xf9,0xf9,0xf8,0xf8,0xf8,0xfa, - 0xfc,0xfe,0xff,0xff,0x00,0x00,0x00,0xfe,0xfb,0xf9,0xf8,0xf7, - 0xf7,0xf8,0xfa,0xfc,0xfe,0x00,0x02,0x02,0x02,0x01,0xff,0xfd, - 0xfb,0xfa,0xfa,0xf9,0xf9,0xfa,0xfc,0xfe,0x00,0x01,0x02,0x03, - 0x05,0x06,0x06,0x05,0x03,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfd, - 0xff,0x01,0x03,0x04,0x04,0x05,0x06,0x06,0x05,0x05,0x04,0x04, - 0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x05,0x07,0x07,0x07, - 0x06,0x05,0x04,0x03,0x02,0x01,0x00,0x00,0x01,0x03,0x05,0x06, - 0x06,0x05,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x04,0x05,0x05, - 0x04,0x03,0x01,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00, - 0xff,0xfe,0xfc,0xfb,0xfb,0xfc,0xfe,0x00,0x02,0x04,0x05,0x05, - 0x03,0x00,0xfc,0xf8,0xf5,0xf4,0xf3,0xf4,0xf6,0xf8,0xfb,0xfe, - 0xff,0x00,0x00,0xfe,0xfd,0xfb,0xf9,0xf8,0xf8,0xf8,0xf9,0xfa, - 0xfb,0xfc,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x02, - 0x02,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfb,0xfc,0xfd,0xfe,0xff, - 0x00,0x01,0x02,0x03,0x04,0x03,0x02,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0xff,0x01,0x02,0x03,0x04,0x04,0x04,0x04,0x04,0x02, - 0x00,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0x00,0x02,0x05,0x06, - 0x07,0x06,0x05,0x04,0x03,0x02,0x01,0x00,0x00,0xff,0x00,0x00, - 0x00,0x00,0x00,0x01,0x02,0x04,0x06,0x09,0x0c,0x0e,0x0e,0x0e, - 0x0c,0x09,0x06,0x03,0x00,0xfe,0xfd,0xfd,0xff,0x02,0x04,0x07, - 0x09,0x0b,0x0d,0x0f,0x0f,0x0f,0x0e,0x0d,0x0d,0x0c,0x0c,0x0b, - 0x0b,0x0b,0x0d,0x0e,0x0e,0x0d,0x0b,0x09,0x07,0x06,0x06,0x06, - 0x07,0x09,0x0c,0x0e,0x0f,0x0f,0x0d,0x0b,0x0a,0x09,0x0a,0x0b, - 0x0d,0x0f,0x0f,0x0d,0x09,0x02,0xfa,0xf3,0xee,0xed,0xef,0xf5, - 0xfd,0x06,0x0d,0x12,0x13,0x10,0x0a,0x03,0xfb,0xf5,0xf0,0xee, - 0xee,0xee,0xef,0xef,0xf0,0xf0,0xf0,0xf1,0xf2,0xf4,0xf7,0xfa, - 0xfc,0xfd,0xfc,0xf9,0xf5,0xf1,0xec,0xe9,0xe7,0xe6,0xe8,0xeb, - 0xef,0xf2,0xf6,0xf8,0xf9,0xfa,0xf9,0xf7,0xf4,0xf0,0xee,0xed, - 0xee,0xef,0xf2,0xf5,0xfa,0xfe,0x00,0x02,0x01,0x00,0xfd,0xfa, - 0xf6,0xf3,0xf1,0xf0,0xf1,0xf3,0xf6,0xf9,0xfd,0x00,0x03,0x06, - 0x07,0x07,0x07,0x05,0x03,0x01,0xff,0xfd,0xfb,0xfa,0xf9,0xf9, - 0xfb,0xfd,0xff,0x02,0x04,0x05,0x07,0x07,0x07,0x06,0x05,0x03, - 0x01,0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff, - 0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfb,0xf9,0xf8,0xf7,0xf7, - 0xf7,0xf9,0xfc,0x00,0x03,0x06,0x08,0x0a,0x0a,0x09,0x06,0x02, - 0xfe,0xfb,0xf9,0xf8,0xf8,0xf9,0xfc,0xff,0x03,0x06,0x08,0x08, - 0x08,0x07,0x05,0x04,0x03,0x02,0x01,0x01,0x02,0x02,0x03,0x02, - 0x02,0x02,0x02,0x03,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05, - 0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x03,0x01,0xfe,0xfb,0xf8, - 0xf7,0xf7,0xf9,0xfb,0xfe,0x01,0x04,0x05,0x05,0x04,0x01,0xfe, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfa,0xf8,0xf6, - 0xf5,0xf6,0xf8,0xfb,0xfd,0xff,0x00,0x02,0x03,0x02,0x00,0xfe, - 0xfb,0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfd,0xff,0xff,0xff,0xfe, - 0xfd,0xfb,0xfc,0xfd,0xff,0x01,0x03,0x05,0x09,0x0b,0x0d,0x0d, - 0x0b,0x09,0x06,0x03,0x00,0xfe,0xfd,0xfc,0xfc,0xfe,0x01,0x03, - 0x05,0x06,0x08,0x08,0x09,0x08,0x08,0x07,0x05,0x03,0x00,0xff, - 0xfd,0xfb,0xfa,0xfb,0xfc,0xfe,0x01,0x03,0x04,0x04,0x03,0xff, - 0xfa,0xf4,0xef,0xeb,0xea,0xea,0xed,0xf2,0xf9,0x00,0x06,0x08, - 0x08,0x06,0x02,0xfd,0xf8,0xf4,0xf0,0xee,0xed,0xee,0xee,0xef, - 0xef,0xf0,0xf2,0xf6,0xfc,0x03,0x0a,0x10,0x15,0x18,0x18,0x14, - 0x0d,0x05,0xfc,0xf5,0xf1,0xf0,0xf3,0xf8,0x00,0x09,0x11,0x18, - 0x1c,0x1e,0x1e,0x1c,0x19,0x16,0x14,0x14,0x14,0x16,0x19,0x1c, - 0x20,0x23,0x24,0x23,0x21,0x1d,0x19,0x15,0x13,0x13,0x13,0x15, - 0x18,0x1c,0x20,0x22,0x22,0x20,0x1d,0x1a,0x19,0x19,0x1a,0x1a, - 0x1b,0x1b,0x1a,0x15,0x0d,0x02,0xf8,0xef,0xeb,0xec,0xf1,0xfa, - 0x05,0x0f,0x17,0x1b,0x19,0x12,0x06,0xf8,0xeb,0xe0,0xda,0xd7, - 0xd8,0xda,0xdd,0xe0,0xe1,0xe2,0xe1,0xdf,0xde,0xdd,0xdf,0xe3, - 0xe7,0xeb,0xee,0xee,0xed,0xea,0xe4,0xde,0xd7,0xd1,0xce,0xce, - 0xd1,0xd6,0xdd,0xe5,0xeb,0xf0,0xf2,0xf1,0xee,0xea,0xe5,0xe2, - 0xe2,0xe5,0xeb,0xf3,0xfc,0x03,0x07,0x09,0x07,0x02,0xfb,0xf4, - 0xef,0xed,0xef,0xf5,0xfb,0x02,0x08,0x0d,0x0f,0x0f,0x0f,0x0e, - 0x0d,0x0e,0x11,0x15,0x19,0x1b,0x1b,0x19,0x14,0x0d,0x05,0xfe, - 0xfa,0xfa,0xfe,0x03,0x09,0x0f,0x14,0x18,0x19,0x17,0x13,0x0d, - 0x08,0x05,0x03,0x03,0x04,0x05,0x06,0x07,0x06,0x04,0x01,0xfd, - 0xf9,0xf6,0xf4,0xf4,0xf6,0xf9,0xfb,0xfe,0xff,0xff,0xff,0xfe, - 0xfc,0xfa,0xf8,0xf6,0xf5,0xf5,0xf5,0xf6,0xf6,0xf6,0xf5,0xf4, - 0xf2,0xf1,0xef,0xee,0xed,0xee,0xf0,0xf3,0xf7,0xfb,0xff,0x01, - 0x01,0x01,0x00,0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xfb,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x04,0x06,0x08, - 0x08,0x07,0x06,0x05,0x04,0x03,0x02,0x02,0x02,0x01,0x00,0xff, - 0xfe,0xfe,0xfd,0xfe,0xff,0x01,0x04,0x07,0x09,0x0b,0x0b,0x0a, - 0x08,0x06,0x03,0xff,0xfb,0xf9,0xf7,0xf5,0xf5,0xf6,0xf8,0xfb, - 0xfd,0xff,0x01,0x02,0x02,0x01,0xff,0xfc,0xf9,0xf8,0xf7,0xf7, - 0xf8,0xf9,0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfc,0xfd,0x00, - 0x02,0x05,0x07,0x09,0x0a,0x0b,0x0a,0x09,0x08,0x07,0x07,0x07, - 0x08,0x08,0x09,0x09,0x09,0x09,0x0a,0x0a,0x0a,0x0b,0x0e,0x11, - 0x14,0x15,0x16,0x15,0x14,0x12,0x0e,0x0b,0x07,0x05,0x05,0x05, - 0x05,0x07,0x08,0x09,0x09,0x09,0x08,0x08,0x06,0x05,0x03,0x02, - 0x00,0xff,0xfd,0xfc,0xfa,0xf7,0xf5,0xf3,0xf2,0xf1,0xef,0xed, - 0xeb,0xea,0xea,0xe9,0xe8,0xe7,0xe6,0xe6,0xe7,0xe7,0xe8,0xe8, - 0xe8,0xe7,0xe6,0xe6,0xe5,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2, - 0xe2,0xe3,0xe4,0xe6,0xea,0xee,0xf4,0xfb,0x01,0x07,0x0b,0x0c, - 0x0b,0x07,0x03,0xfe,0xfa,0xf7,0xf6,0xf8,0xfe,0x07,0x12,0x1c, - 0x26,0x2d,0x32,0x33,0x33,0x30,0x2c,0x27,0x22,0x20,0x23,0x28, - 0x30,0x37,0x3c,0x40,0x42,0x43,0x41,0x3e,0x39,0x34,0x30,0x2f, - 0x31,0x34,0x36,0x36,0x33,0x30,0x2d,0x2d,0x2e,0x31,0x34,0x38, - 0x3c,0x3f,0x3d,0x36,0x28,0x16,0x03,0xf1,0xe6,0xe2,0xe5,0xef, - 0xfb,0x09,0x14,0x1c,0x1d,0x16,0x09,0xf7,0xe5,0xd8,0xcf,0xcb, - 0xcb,0xcd,0xd0,0xd2,0xd3,0xd1,0xce,0xc9,0xc5,0xc2,0xc1,0xc3, - 0xc7,0xcb,0xcd,0xce,0xcc,0xc9,0xc5,0xc2,0xc0,0xbe,0xbe,0xc0, - 0xc5,0xcb,0xd1,0xd5,0xd7,0xd6,0xd5,0xd3,0xd0,0xcf,0xcf,0xd0, - 0xd4,0xda,0xe3,0xed,0xf8,0x00,0x05,0x07,0x07,0x04,0xff,0xfa, - 0xf4,0xf1,0xf0,0xf3,0xf8,0x00,0x09,0x11,0x17,0x1c,0x1e,0x1f, - 0x1d,0x1b,0x19,0x17,0x16,0x15,0x16,0x16,0x17,0x17,0x17,0x18, - 0x19,0x1a,0x1c,0x1e,0x1f,0x20,0x1f,0x1c,0x18,0x13,0x0e,0x0a, - 0x07,0x06,0x07,0x0a,0x0e,0x12,0x14,0x14,0x12,0x0e,0x09,0x03, - 0xfc,0xf6,0xf2,0xee,0xee,0xef,0xf1,0xf2,0xf3,0xf3,0xf5,0xf7, - 0xfa,0xfd,0xfe,0xff,0xff,0xfe,0xfc,0xf8,0xf3,0xed,0xe8,0xe5, - 0xe5,0xe7,0xea,0xed,0xef,0xf2,0xf3,0xf4,0xf3,0xf1,0xf0,0xf1, - 0xf3,0xf6,0xfa,0xfe,0x01,0x02,0x02,0x01,0xfe,0xfa,0xf8,0xf6, - 0xf5,0xf5,0xf6,0xf9,0xfd,0x00,0x03,0x04,0x05,0x05,0x06,0x06, - 0x06,0x05,0x04,0x03,0x04,0x05,0x06,0x06,0x05,0x04,0x02,0x01, - 0x00,0xfe,0xfd,0xfd,0xfe,0x00,0x03,0x05,0x06,0x05,0x04,0x01, - 0xfe,0xfa,0xf7,0xf4,0xf2,0xf2,0xf3,0xf5,0xf8,0xfa,0xfc,0xfc, - 0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfb,0xfc, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00, - 0x01,0x03,0x04,0x05,0x06,0x07,0x09,0x0c,0x0d,0x0d,0x0d,0x0c, - 0x0b,0x0a,0x09,0x08,0x09,0x0a,0x0b,0x0d,0x0f,0x11,0x13,0x14, - 0x15,0x15,0x14,0x14,0x14,0x13,0x11,0x0e,0x0c,0x0c,0x0c,0x0c, - 0x0c,0x0b,0x0b,0x0b,0x0c,0x0d,0x0d,0x0d,0x0c,0x0b,0x0a,0x0a, - 0x08,0x05,0x01,0xfc,0xf8,0xf5,0xf3,0xf2,0xf2,0xf2,0xf3,0xf5, - 0xf7,0xf7,0xf7,0xf4,0xf0,0xec,0xe9,0xe7,0xe5,0xe4,0xe3,0xe4, - 0xe5,0xe6,0xe8,0xe9,0xe9,0xe9,0xe9,0xe9,0xea,0xec,0xed,0xed, - 0xec,0xea,0xe7,0xe5,0xe3,0xe2,0xe1,0xe2,0xe5,0xea,0xf2,0xfa, - 0x02,0x06,0x08,0x09,0x08,0x06,0x04,0x01,0xfd,0xfb,0xfc,0x01, - 0x08,0x10,0x18,0x1e,0x24,0x27,0x2a,0x2a,0x27,0x23,0x1d,0x19, - 0x17,0x19,0x1d,0x24,0x2c,0x34,0x3a,0x3e,0x40,0x3f,0x3c,0x37, - 0x31,0x2d,0x2a,0x28,0x28,0x28,0x27,0x25,0x22,0x20,0x1e,0x1f, - 0x21,0x26,0x2c,0x33,0x38,0x39,0x36,0x2f,0x23,0x14,0x03,0xf3, - 0xe8,0xe4,0xe7,0xef,0xfa,0x05,0x0e,0x13,0x14,0x0f,0x05,0xf8, - 0xe9,0xdd,0xd5,0xd2,0xd3,0xd6,0xd9,0xdb,0xdc,0xdb,0xda,0xd6, - 0xd2,0xcd,0xc9,0xc9,0xcc,0xd1,0xd6,0xda,0xda,0xd9,0xd6,0xd4, - 0xd1,0xce,0xcb,0xca,0xcc,0xd1,0xd8,0xdf,0xe2,0xe3,0xe1,0xde, - 0xdb,0xd7,0xd4,0xd2,0xd4,0xda,0xe3,0xee,0xf8,0x01,0x07,0x09, - 0x09,0x07,0x03,0xff,0xfa,0xf5,0xf4,0xf5,0xfa,0xff,0x04,0x09, - 0x0c,0x10,0x13,0x15,0x15,0x16,0x16,0x17,0x18,0x19,0x1a,0x1a, - 0x18,0x16,0x14,0x13,0x11,0x10,0x0f,0x10,0x11,0x13,0x15,0x15, - 0x14,0x13,0x11,0x0e,0x0c,0x0a,0x09,0x09,0x0a,0x0b,0x0d,0x0d, - 0x0d,0x0a,0x07,0x02,0xfc,0xf7,0xf3,0xf1,0xef,0xf0,0xf2,0xf5, - 0xf8,0xfa,0xfc,0xfe,0xfe,0xfe,0xfe,0xfc,0xfa,0xf8,0xf6,0xf4, - 0xf1,0xed,0xe9,0xe6,0xe4,0xe3,0xe3,0xe5,0xe9,0xed,0xf2,0xf8, - 0xfc,0xff,0x00,0xff,0xfd,0xfa,0xf8,0xf5,0xf3,0xf2,0xf2,0xf3, - 0xf4,0xf5,0xf6,0xf7,0xf8,0xf8,0xf9,0xfa,0xfc,0xff,0x02,0x04, - 0x06,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x07,0x07,0x07,0x07, - 0x06,0x04,0x01,0xfe,0xfc,0xfb,0xfb,0xfd,0x00,0x04,0x09,0x0e, - 0x10,0x11,0x0f,0x0c,0x08,0x03,0xfe,0xfa,0xf7,0xf6,0xf6,0xf7, - 0xf9,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05, - 0x05,0x05,0x03,0x00,0xfd,0xf9,0xf7,0xf5,0xf4,0xf3,0xf4,0xf6, - 0xf8,0xfb,0xfe,0x00,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x04, - 0x05,0x06,0x06,0x05,0x03,0x01,0xfe,0xfc,0xfb,0xfa,0xfa,0xfb, - 0xff,0x03,0x08,0x0d,0x11,0x13,0x15,0x15,0x14,0x12,0x0f,0x0c, - 0x08,0x06,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x07,0x08,0x09, - 0x09,0x09,0x0a,0x0a,0x0b,0x0a,0x09,0x07,0x05,0x02,0x00,0xfd, - 0xfb,0xf9,0xf9,0xf9,0xfb,0xfd,0xff,0xff,0xfe,0xfb,0xf7,0xf3, - 0xef,0xeb,0xe9,0xe9,0xeb,0xee,0xf3,0xf6,0xf9,0xf9,0xf8,0xf5, - 0xf2,0xee,0xeb,0xe8,0xe7,0xe7,0xe9,0xeb,0xed,0xee,0xef,0xef, - 0xf0,0xf0,0xf1,0xf3,0xf5,0xf9,0xfe,0x02,0x06,0x09,0x0a,0x0a, - 0x08,0x06,0x04,0x01,0xff,0xff,0xff,0x01,0x05,0x09,0x0d,0x12, - 0x16,0x1b,0x1e,0x22,0x24,0x26,0x27,0x27,0x27,0x27,0x27,0x26, - 0x25,0x24,0x22,0x21,0x1f,0x1d,0x1c,0x1c,0x1d,0x20,0x24,0x28, - 0x2b,0x2d,0x2d,0x2c,0x2a,0x27,0x23,0x20,0x1f,0x1f,0x1f,0x1f, - 0x1e,0x1b,0x17,0x10,0x06,0xfc,0xf3,0xee,0xed,0xf0,0xf5,0xfd, - 0x04,0x0b,0x10,0x11,0x0d,0x05,0xfb,0xf1,0xea,0xe5,0xe2,0xe0, - 0xdf,0xde,0xdf,0xde,0xdc,0xd9,0xd6,0xd5,0xd7,0xda,0xde,0xe3, - 0xe8,0xeb,0xeb,0xe8,0xe4,0xde,0xd9,0xd4,0xd1,0xcf,0xd0,0xd4, - 0xd9,0xde,0xe2,0xe4,0xe6,0xe7,0xe7,0xe7,0xe6,0xe5,0xe5,0xe7, - 0xea,0xee,0xf1,0xf5,0xf8,0xfb,0xfe,0xfe,0xfe,0xfc,0xfb,0xf9, - 0xf8,0xf8,0xfa,0xfc,0xff,0x03,0x07,0x0a,0x0c,0x0e,0x0f,0x10, - 0x0f,0x0e,0x0d,0x0c,0x0c,0x0b,0x0a,0x08,0x08,0x08,0x0a,0x0c, - 0x0e,0x11,0x14,0x16,0x16,0x15,0x12,0x0e,0x0a,0x05,0x00,0xfd, - 0xfc,0xfd,0xff,0x03,0x07,0x0a,0x0d,0x10,0x10,0x0f,0x0d,0x09, - 0x04,0xff,0xfb,0xf7,0xf4,0xf2,0xf0,0xf1,0xf3,0xf6,0xfa,0xfd, - 0x00,0x02,0x02,0x01,0xff,0xfb,0xf7,0xf3,0xef,0xee,0xef,0xf1, - 0xf5,0xf8,0xfa,0xfc,0xfc,0xfc,0xfb,0xfa,0xf7,0xf5,0xf4,0xf4, - 0xf6,0xf8,0xf9,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xfe,0xfc,0xfb, - 0xfa,0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0x01,0x03,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x03,0x03,0x02,0x02,0x01,0x00,0xfe,0xfd, - 0xfc,0xfc,0xfc,0xfe,0x00,0x02,0x04,0x05,0x06,0x06,0x05,0x03, - 0x01,0xfe,0xfc,0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xfa,0xfc,0xfe, - 0x00,0x01,0x02,0x03,0x02,0x01,0xff,0xfd,0xfb,0xf9,0xf8,0xf8, - 0xf9,0xfb,0xfe,0x00,0x01,0x03,0x03,0x03,0x02,0x01,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x06, - 0x06,0x06,0x06,0x06,0x05,0x05,0x04,0x04,0x03,0x04,0x05,0x06, - 0x07,0x08,0x09,0x0a,0x0b,0x0b,0x0b,0x0a,0x08,0x06,0x05,0x03, - 0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x05,0x06,0x06,0x07,0x07, - 0x07,0x06,0x05,0x03,0x00,0xfd,0xfa,0xf8,0xf6,0xf6,0xf6,0xf8, - 0xfb,0xfe,0x01,0x03,0x03,0x01,0xfe,0xfb,0xf7,0xf4,0xf2,0xf1, - 0xf1,0xf3,0xf4,0xf6,0xf8,0xf9,0xfa,0xfa,0xf9,0xf7,0xf6,0xf5, - 0xf5,0xf5,0xf5,0xf5,0xf5,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xfc, - 0xfe,0x00,0x03,0x04,0x05,0x05,0x04,0x04,0x03,0x02,0x02,0x02, - 0x02,0x04,0x05,0x07,0x0a,0x0d,0x10,0x12,0x13,0x12,0x12,0x10, - 0x0f,0x0d,0x0c,0x0c,0x0c,0x0e,0x11,0x14,0x17,0x18,0x18,0x18, - 0x17,0x15,0x13,0x11,0x11,0x11,0x12,0x14,0x15,0x15,0x13,0x11, - 0x0e,0x0b,0x09,0x09,0x09,0x0a,0x0c,0x0f,0x11,0x11,0x10,0x0d, - 0x08,0x03,0xfe,0xfa,0xf9,0xfa,0xfc,0xff,0x02,0x04,0x05,0x04, - 0x02,0xfe,0xf9,0xf5,0xf1,0xef,0xee,0xee,0xef,0xef,0xf0,0xf0, - 0xf0,0xef,0xef,0xef,0xef,0xf0,0xf1,0xf2,0xf2,0xf2,0xf1,0xf0, - 0xee,0xed,0xec,0xeb,0xec,0xed,0xef,0xf0,0xf0,0xf1,0xf1,0xf1, - 0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf8,0xf8,0xf8,0xf7,0xf7, - 0xf7,0xf8,0xf9,0xfb,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0x00,0x01,0x03,0x04,0x05,0x05,0x05,0x05,0x04,0x04, - 0x05,0x05,0x06,0x08,0x09,0x0a,0x0a,0x09,0x07,0x05,0x02,0x00, - 0x00,0x00,0x02,0x04,0x06,0x09,0x0a,0x0b,0x0a,0x08,0x05,0x02, - 0x00,0xff,0xfe,0xff,0x00,0x01,0x02,0x02,0x03,0x02,0x01,0x00, - 0xff,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9, - 0xfb,0xfc,0xfe,0x00,0x02,0x03,0x02,0x01,0xfe,0xfb,0xf8,0xf5, - 0xf3,0xf3,0xf4,0xf7,0xf9,0xfd,0xff,0x01,0x02,0x01,0xff,0xfe, - 0xfc,0xfc,0xfc,0xfc,0xfe,0xff,0x00,0x01,0x01,0x00,0xff,0xfe, - 0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0x00,0x01,0x03,0x04,0x04,0x04,0x04,0x02,0x01,0xff, - 0xfe,0xfd,0xfc,0xfd,0xfd,0xff,0x00,0x01,0x02,0x02,0x02,0x02, - 0x02,0x00,0xfe,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd, - 0xff,0x00,0x02,0x03,0x03,0x03,0x01,0xff,0xfd,0xfc,0xfd,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfe,0xff,0x00,0x00, - 0xff,0xfe,0xfd,0xfe,0x00,0x03,0x04,0x03,0x02,0x00,0xff,0x00, - 0x01,0x02,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x02, - 0x01,0x01,0x00,0xff,0xfd,0xfd,0xfe,0xff,0x00,0xff,0xfd,0xfc, - 0xfc,0xfd,0xff,0xff,0xfe,0xfd,0xfd,0xff,0x01,0x01,0x00,0xff, - 0xff,0x00,0x01,0x00,0xff,0xfe,0xfe,0x00,0x02,0x03,0x03,0x01, - 0xfe,0xfd,0xfe,0xff,0x01,0x01,0x02,0x02,0x01,0xff,0xfd,0xfd, - 0xfe,0x00,0x02,0x03,0x03,0x02,0x00,0xfe,0xfc,0xfb,0xfd,0x00, - 0x01,0x01,0xff,0xfd,0xfc,0xfb,0xfc,0xff,0x03,0x06,0x06,0x02, - 0xfe,0xfb,0xfa,0xfc,0xfe,0x01,0x02,0x02,0x01,0xff,0xfe,0xfe, - 0xff,0x02,0x03,0x04,0x03,0x01,0x00,0xfe,0xfd,0xfd,0xfe,0xff, - 0x01,0x01,0x00,0xff,0x00,0x00,0x00,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff, - 0x01,0x00,0xfe,0xfc,0xfc,0xfd,0xfe,0xfd,0xfc,0xfd,0xff,0x02, - 0x03,0x02,0x00,0x00,0x02,0x03,0x03,0x01,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x02,0x01,0xff,0xfd,0xfc,0xfd,0xfe,0xff,0xff, - 0xff,0xff,0x00,0x00,0xff,0xfe,0xff,0x00,0x01,0x01,0x00,0x00, - 0xfe,0xfb,0xfb,0xfe,0x02,0x05,0x04,0x02,0x00,0x00,0x00,0x00, - 0x00,0x01,0x02,0x03,0x01,0xfe,0xfc,0xfd,0xff,0x01,0x00,0xfe, - 0xfd,0xff,0x00,0xfe,0xfb,0xfa,0xfc,0xff,0x02,0x03,0x03,0x03, - 0x03,0x02,0x01,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x01, - 0x01,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0x00,0xff,0xff, - 0xfe,0xff,0x00,0x00,0x01,0x01,0x01,0x00,0xfe,0xfe,0xfe,0xff, - 0x01,0x01,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0x00,0x01, - 0x01,0x01,0x02,0x04,0x05,0x02,0xfe,0xfa,0xfa,0xfd,0x01,0x04, - 0x04,0x03,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfe, - 0xff,0x01,0x02,0x01,0x00,0xfe,0xfe,0xff,0xff,0xfd,0xfb,0xfa, - 0xfc,0x00,0x04,0x04,0x01,0xfe,0xfd,0xfe,0xff,0x00,0x01,0x02, - 0x04,0x04,0x04,0x01,0xfe,0xfd,0xfe,0x01,0x01,0xff,0xfc,0xfc, - 0xff,0x02,0x02,0x00,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0xfe,0xfe,0x01,0x04,0x03,0xfe,0xf7,0xf5,0xfa,0x02, - 0x06,0x04,0xff,0xfb,0xfb,0xfd,0xff,0x00,0x01,0x02,0x04,0x03, - 0x00,0xfe,0xfe,0x00,0x02,0x01,0x00,0x00,0x02,0x04,0x03,0xff, - 0xfd,0xfd,0x00,0x02,0x02,0xff,0xfc,0xfc,0xfe,0x00,0x01,0x00, - 0x01,0x03,0x05,0x03,0xfe,0xf9,0xf8,0xfb,0x00,0x03,0x02,0xff, - 0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01,0xfe,0xfb,0xfb,0xfe, - 0x02,0x04,0x04,0x03,0x00,0xfe,0xfe,0xfe,0xff,0x01,0x03,0x04, - 0x03,0x01,0xfe,0xfd,0xfe,0xff,0xfe,0xfd,0xfd,0x00,0x03,0x04, - 0x03,0x00,0xfd,0xfb,0xfe,0x02,0x04,0x03,0xff,0xfb,0xfb,0xfc, - 0xff,0x01,0x02,0x03,0x03,0x01,0xfe,0xfb,0xfa,0xfb,0xfd,0xff, - 0x01,0x02,0x02,0x00,0xfe,0xfd,0xfd,0xff,0x00,0x01,0x00,0xfe, - 0xfe,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x02, - 0x01,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01, - 0x02,0x01,0xff,0xfd,0xfb,0xfb,0xfd,0x00,0x02,0x01,0xff,0xfd, - 0xfc,0xfd,0xff,0x01,0x02,0x01,0xfe,0xfb,0xfb,0xfd,0x01,0x02, - 0x02,0x00,0x00,0x03,0x05,0x04,0x02,0x00,0x00,0x01,0x01,0x00, - 0xfe,0xfd,0xfd,0xfe,0x00,0x02,0x03,0x02,0xff,0xfd,0xfd,0xff, - 0x01,0x02,0x03,0x03,0x01,0xfd,0xfa,0xfa,0xfd,0x01,0x02,0x00, - 0xfd,0xfb,0xfb,0xfc,0xfe,0xff,0xff,0xff,0x00,0x02,0x04,0x03, - 0x02,0x00,0xff,0x00,0x02,0x05,0x04,0x01,0xfc,0xfa,0xfc,0x00, - 0x03,0x02,0x00,0xfd,0xfd,0xfe,0xff,0x00,0xff,0xfe,0xff,0x01, - 0x04,0x03,0x00,0xfc,0xfb,0xfd,0x01,0x03,0x03,0x01,0xff,0xfe, - 0x00,0x02,0x01,0xfe,0xfb,0xfb,0xfe,0x01,0x02,0x02,0x01,0xff, - 0xfd,0xfc,0xfe,0x00,0x01,0xff,0xfd,0xfe,0x01,0x03,0x02,0x00, - 0xff,0xfe,0xfd,0xfd,0xfe,0x00,0x01,0x00,0xff,0x01,0x03,0x04, - 0x02,0x00,0xff,0xff,0xff,0xfe,0xfe,0x00,0x03,0x04,0x03,0x01, - 0xfd,0xfc,0xfc,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xff,0x02,0x05,0x06,0x03,0xfe,0xfa,0xfa,0xfe,0x02,0x04,0x04, - 0x04,0x02,0xfe,0xf9,0xf8,0xfa,0xfe,0x01,0x02,0x03,0x04,0x04, - 0x02,0xfe,0xf9,0xf7,0xfa,0x01,0x06,0x07,0x03,0xfd,0xfb,0xfd, - 0x02,0x04,0x03,0xff,0xfd,0xfe,0xff,0x00,0xff,0xff,0x00,0x01, - 0x01,0x01,0x00,0x00,0x01,0x01,0x01,0xfe,0xfc,0xfc,0xff,0x01, - 0x01,0xff,0xfe,0xff,0x00,0xff,0xfc,0xfa,0xfc,0x00,0x02,0x00, - 0xfe,0x00,0x04,0x06,0x03,0xfd,0xfa,0xfc,0x02,0x05,0x03,0x00, - 0x00,0x02,0x04,0x02,0xfe,0xfc,0xfe,0x01,0x02,0xfe,0xfb,0xf9, - 0xfb,0xff,0x02,0x05,0x05,0x03,0xfe,0xfa,0xf9,0xfb,0xff,0x02, - 0x02,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x01,0x04,0x04,0x02, - 0xfe,0xfb,0xfb,0xfe,0x02,0x05,0x04,0x03,0x01,0x00,0xfd,0xfb, - 0xfb,0xfd,0x01,0x04,0x05,0x03,0xfe,0xfa,0xf9,0xfb,0xff,0x03, - 0x05,0x04,0x00,0xfd,0xfc,0xfd,0xff,0x01,0x02,0x02,0x01,0xfe, - 0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x04,0x05,0x04,0x01,0xfe,0xfd, - 0xfe,0xff,0xff,0xfe,0xfd,0xfd,0x00,0x03,0x05,0x03,0xfe,0xf9, - 0xf7,0xfb,0x00,0x03,0x01,0xfd,0xfc,0x01,0x07,0x09,0x02,0xfa, - 0xf6,0xfa,0x04,0x09,0x07,0x00,0xfa,0xfa,0xfc,0xff,0x02,0x04, - 0x05,0x03,0xff,0xfb,0xfb,0xfe,0x00,0x01,0x00,0x00,0x02,0x04, - 0x01,0xfd,0xfa,0xfc,0xff,0x01,0xff,0xfc,0xfb,0xff,0x03,0x03, - 0xfe,0xfa,0xfb,0x02,0x07,0x07,0x02,0xfd,0xfd,0x01,0x03,0x01, - 0xfd,0xfb,0xfd,0x00,0x03,0x03,0x02,0x01,0xfd,0xfa,0xfa,0xfd, - 0x02,0x04,0x03,0xff,0xfc,0xfb,0xfd,0x01,0x05,0x05,0x01,0xfd, - 0xfe,0x02,0x05,0x01,0xfa,0xf6,0xfa,0x01,0x05,0x02,0xfd,0xfb, - 0xff,0x06,0x09,0x07,0x00,0xfb,0xfa,0xfc,0xfe,0xff,0x00,0x02, - 0x05,0x04,0x00,0xfa,0xf9,0xfc,0x01,0x03,0x02,0xff,0xfe,0xfe, - 0xfe,0xfd,0xfe,0xff,0x00,0x00,0x00,0x02,0x04,0x04,0x01,0xfe, - 0xfc,0xfd,0x01,0x04,0x03,0xff,0xfa,0xf9,0xfb,0x01,0x06,0x09, - 0x08,0x04,0xff,0xfb,0xf8,0xf8,0xfb,0x00,0x03,0x03,0xff,0xfb, - 0xfb,0xfe,0x03,0x05,0x03,0x00,0xfe,0xfe,0x00,0x00,0xfe,0xfe, - 0x02,0x06,0x06,0xff,0xf8,0xf8,0xfe,0x04,0x04,0xff,0xfb,0xfc, - 0x00,0x04,0x03,0xff,0xfa,0xf9,0xfd,0x03,0x06,0x06,0x04,0x02, - 0x00,0xfe,0xfb,0xfb,0xfd,0x00,0x01,0xfe,0xf9,0xf7,0xfb,0x03, - 0x0a,0x0c,0x08,0x00,0xf9,0xf6,0xf8,0xfe,0x05,0x0a,0x0a,0x03, - 0xfa,0xf4,0xf5,0xfb,0x02,0x05,0x04,0x02,0x00,0xfe,0xfe,0xff, - 0xff,0xff,0xfe,0xfe,0xff,0x02,0x03,0x02,0xff,0xfc,0xfb,0xfe, - 0x02,0x04,0x02,0xfe,0xfb,0xfb,0xfd,0x01,0x04,0x06,0x06,0x02, - 0xfd,0xf9,0xfa,0xfd,0x01,0x04,0x06,0x05,0x01,0xfb,0xf6,0xf5, - 0xfa,0x02,0x08,0x09,0x05,0xff,0xfc,0xfd,0x01,0x04,0x03,0xff, - 0xfb,0xfb,0xfe,0x00,0xff,0xfd,0xfe,0x02,0x06,0x06,0x02,0xfd, - 0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x02,0x05,0x04,0x00,0xfa,0xf7, - 0xf8,0xff,0x06,0x09,0x07,0x01,0xfd,0xfd,0xfe,0x00,0x02,0x03, - 0x02,0xfe,0xfb,0xfa,0xfe,0x03,0x06,0x05,0x01,0xfe,0xfe,0xff, - 0x00,0xff,0xfc,0xfb,0xfd,0x02,0x04,0x02,0xfe,0xfb,0xfc,0xff, - 0x02,0x04,0x02,0xfe,0xfb,0xfb,0xfe,0x02,0x03,0x01,0xfe,0xff, - 0x01,0x04,0x04,0x02,0xfe,0xfb,0xfa,0xfd,0x01,0x04,0x02,0xfc, - 0xf9,0xfa,0x01,0x06,0x06,0x00,0xfa,0xf7,0xfb,0x03,0x0a,0x0b, - 0x05,0xfe,0xfa,0xfc,0x00,0x03,0x02,0xff,0xfb,0xfb,0xfe,0x03, - 0x04,0x01,0xfc,0xfb,0xfd,0xff,0xfe,0xfc,0xfc,0xfe,0x01,0x03, - 0x05,0x05,0x05,0x03,0xff,0xfa,0xf7,0xf8,0xfc,0x01,0x06,0x08, - 0x07,0x03,0xff,0xfb,0xfb,0xfc,0xfe,0xfe,0xff,0x02,0x05,0x06, - 0x02,0xfd,0xfb,0xfd,0xff,0xff,0xfd,0xfd,0x01,0x04,0x03,0xff, - 0xfc,0xfd,0xff,0xff,0xfe,0xfe,0x00,0x02,0x00,0xfc,0xfb,0xff, - 0x08,0x0c,0x08,0xfe,0xf4,0xf1,0xf7,0x01,0x07,0x08,0x05,0x02, - 0xff,0xfc,0xfa,0xfd,0x02,0x05,0x03,0xff,0xfb,0xfb,0xfd,0xff, - 0x00,0x03,0x06,0x06,0x02,0xfc,0xf8,0xf8,0xfa,0xfd,0x02,0x07, - 0x09,0x04,0xfc,0xf8,0xfa,0xfd,0x00,0x02,0x04,0x05,0x04,0x00, - 0xfc,0xf9,0xfa,0xff,0x05,0x09,0x07,0x00,0xfa,0xf7,0xfa,0xff, - 0x04,0x07,0x06,0x02,0xfb,0xf6,0xf5,0xfa,0x01,0x07,0x08,0x05, - 0xff,0xfa,0xf7,0xfa,0x01,0x08,0x09,0x05,0xff,0xfb,0xfc,0xff, - 0x01,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfb,0xfb,0xfd,0x01,0x03, - 0x04,0x02,0x00,0xfe,0xfd,0xfd,0xfe,0x02,0x04,0x04,0x01,0xfd, - 0xfb,0xfd,0x00,0x01,0x01,0x00,0x00,0x01,0x03,0x01,0xfc,0xf8, - 0xf9,0xff,0x06,0x08,0x04,0xfe,0xf9,0xf8,0xfb,0x01,0x05,0x05, - 0x03,0xff,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x01, - 0x02,0x03,0x00,0xfc,0xfb,0xfe,0x01,0x03,0x02,0xff,0xfe,0xfd, - 0xfe,0x01,0x03,0x03,0x01,0xff,0x00,0x02,0x02,0x00,0xfd,0xfc, - 0xfe,0xff,0xff,0x00,0x00,0x00,0xfe,0xfd,0xfe,0x01,0x03,0x02, - 0xfe,0xfb,0xfb,0xfd,0x00,0x03,0x03,0x01,0xfe,0xfd,0x00,0x03, - 0x03,0xff,0xfc,0xff,0x05,0x08,0x03,0xfa,0xf5,0xf8,0xfe,0x02, - 0x03,0x02,0x04,0x05,0x03,0xfd,0xf6,0xf6,0xfe,0x06,0x09,0x05, - 0xff,0xfc,0xfd,0xfd,0xfb,0xf9,0xfc,0x03,0x09,0x08,0x01,0xfa, - 0xf7,0xfa,0xfe,0x00,0x02,0x05,0x05,0x02,0xfe,0xfc,0xfd,0x00, - 0x02,0x02,0x02,0x03,0x00,0xfb,0xf7,0xf9,0x00,0x06,0x07,0x04, - 0x00,0xfd,0xfb,0xf9,0xfb,0xff,0x05,0x09,0x07,0x01,0xfa,0xf5, - 0xf4,0xf8,0x00,0x09,0x0d,0x0a,0x01,0xf9,0xf6,0xf9,0xfe,0x01, - 0x03,0x04,0x05,0x04,0x00,0xfa,0xf7,0xfa,0x01,0x07,0x06,0x02, - 0xfe,0xfd,0xff,0xff,0xfc,0xfa,0xfc,0x03,0x09,0x09,0x03,0xfb, - 0xf8,0xfa,0xfd,0xff,0xff,0x00,0x02,0x03,0x01,0xfd,0xfc,0xff, - 0x02,0x04,0x01,0xfc,0xfa,0xfe,0x03,0x06,0x03,0xfd,0xf9,0xfa, - 0xfe,0x01,0x01,0x00,0x00,0x02,0x04,0x02,0x01,0x00,0x02,0x02, - 0x00,0xfd,0xfc,0xfc,0xfd,0xfe,0xff,0x01,0x03,0x04,0x03,0xff, - 0xfa,0xf9,0xfc,0x01,0x05,0x05,0x02,0xfe,0xfa,0xf8,0xfa,0xff, - 0x04,0x07,0x05,0x00,0xfc,0xfa,0xfb,0xfe,0x02,0x04,0x05,0x02, - 0x00,0xff,0xff,0xff,0xfd,0xfc,0xfc,0xfe,0x02,0x04,0x05,0x03, - 0x00,0xfc,0xfb,0xfe,0x01,0x02,0x03,0x01,0xff,0xfc,0xfc,0xfe, - 0x00,0x00,0xfe,0xfe,0x00,0x03,0x02,0xff,0xfd,0xfd,0x00,0x02, - 0x02,0x01,0x00,0xfe,0xfd,0xfd,0xfe,0x00,0x00,0x00,0xff,0xff, - 0xff,0xfe,0xfd,0x00,0x04,0x06,0x03,0xfd,0xf9,0xfb,0x01,0x05, - 0x03,0xfe,0xfd,0xff,0x01,0x02,0x01,0x00,0xff,0xfd,0xfb,0xfb, - 0xfd,0x02,0x05,0x06,0x05,0x03,0x00,0xfe,0xfb,0xfa,0xfa,0xfd, - 0x02,0x05,0x03,0xff,0xfb,0xfc,0xfe,0x00,0xff,0xfe,0xfe,0x00, - 0x02,0x02,0xff,0xfb,0xfa,0xfe,0x04,0x09,0x08,0x02,0xfc,0xf9, - 0xfa,0xfc,0xff,0x02,0x06,0x08,0x06,0x00,0xf9,0xf6,0xf9,0x00, - 0x06,0x08,0x05,0x00,0xfc,0xf9,0xf9,0xfb,0xff,0x04,0x06,0x04, - 0x00,0xfd,0xfd,0x00,0x01,0x00,0xfd,0xfe,0x00,0x02,0x02,0xfe, - 0xfb,0xfb,0xff,0x03,0x03,0xff,0xfb,0xfa,0xfc,0x00,0x02,0x02, - 0x01,0x01,0x01,0x00,0xff,0xff,0xff,0x00,0x01,0x03,0x04,0x03, - 0x01,0xfe,0xfd,0xfd,0xff,0x00,0x00,0x00,0x00,0x01,0x00,0x00, - 0x00,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfa,0xfa,0xfc,0x00,0x05, - 0x07,0x05,0xff,0xf9,0xf8,0xfc,0x01,0x03,0x00,0xff,0x01,0x03, - 0x02,0xfe,0xfc,0x00,0x06,0x08,0x05,0xfe,0xf8,0xf8,0xfd,0x03, - 0x06,0x03,0x00,0xff,0xfe,0xfc,0xf7,0xf5,0xf9,0x03,0x0c,0x0d, - 0x07,0xfe,0xf7,0xf4,0xf7,0xfe,0x06,0x0b,0x0a,0x04,0xfe,0xfb, - 0xfb,0xfd,0xfe,0x00,0x01,0x02,0x01,0xff,0xfc,0xfa,0xf9,0xfb, - 0xff,0x05,0x09,0x08,0x03,0xfc,0xf6,0xf5,0xfa,0x02,0x09,0x0c, - 0x08,0x00,0xf9,0xf6,0xf9,0xfd,0x02,0x05,0x06,0x03,0xfe,0xf9, - 0xf9,0xfd,0x01,0x03,0x04,0x05,0x06,0x02,0xfb,0xf6,0xf8,0x00, - 0x08,0x08,0x03,0xfd,0xfb,0xfb,0xfc,0xfc,0xfe,0x02,0x06,0x06, - 0x01,0xfb,0xf9,0xfb,0x00,0x02,0x02,0xff,0xfd,0xfe,0x01,0x04, - 0x05,0x03,0xfe,0xfb,0xfb,0xff,0x04,0x06,0x04,0xff,0xfb,0xfc, - 0xfe,0xff,0xfd,0xfd,0x00,0x05,0x07,0x02,0xfc,0xf9,0xfc,0x02, - 0x03,0x01,0xfd,0xfe,0x01,0x04,0x03,0xfd,0xf9,0xfb,0x02,0x07, - 0x04,0xfc,0xf5,0xf7,0xfe,0x06,0x07,0x04,0x01,0x00,0x00,0xfe, - 0xfd,0xfc,0xfe,0x00,0x01,0x00,0x00,0x01,0x02,0x01,0xfd,0xf9, - 0xfa,0x00,0x06,0x06,0x00,0xf9,0xf8,0xfd,0x04,0x06,0x02,0xfd, - 0xfd,0x01,0x04,0x01,0xfc,0xfa,0x00,0x08,0x0b,0x06,0xfc,0xf6, - 0xf8,0xfd,0x00,0x00,0xff,0x00,0x02,0x01,0xff,0xfe,0xff,0x01, - 0x02,0x00,0xfd,0xfa,0xf9,0xfb,0xff,0x04,0x06,0x05,0x01,0xfd, - 0xfb,0xfc,0xfe,0xff,0x00,0x01,0x02,0x02,0x01,0xff,0xff,0x00, - 0x01,0x00,0xff,0xff,0x02,0x03,0x02,0xfe,0xfb,0xfd,0x02,0x06, - 0x05,0x00,0xfb,0xfb,0xfd,0xff,0xff,0x00,0x03,0x03,0x00,0xfb, - 0xf8,0xfb,0x00,0x01,0xfe,0xfc,0xff,0x04,0x06,0x02,0xfc,0xfb, - 0x00,0x06,0x05,0x00,0xfb,0xfb,0xff,0x01,0x00,0xfe,0xff,0x02, - 0x03,0x00,0xfe,0xff,0x04,0x07,0x04,0xfc,0xf8,0xfb,0x02,0x07, - 0x06,0x01,0xfc,0xf7,0xf6,0xfa,0x02,0x09,0x0a,0x04,0xfd,0xf9, - 0xf9,0xfa,0xfb,0xfe,0x03,0x08,0x07,0x02,0xfb,0xf7,0xf8,0xfd, - 0x02,0x05,0x06,0x06,0x03,0xff,0xfa,0xf8,0xfb,0x00,0x05,0x05, - 0x01,0xfd,0xfb,0xfc,0xff,0x03,0x05,0x06,0x06,0x04,0xff,0xf8, - 0xf6,0xf9,0x02,0x09,0x09,0x04,0xfd,0xf9,0xf8,0xf8,0xfa,0xff, - 0x05,0x09,0x07,0x02,0xfc,0xf9,0xf9,0xfa,0xfd,0x01,0x05,0x06, - 0x02,0xfc,0xf7,0xf7,0xfc,0x03,0x08,0x0a,0x08,0x03,0xfb,0xf6, - 0xf5,0xfa,0x02,0x07,0x07,0x03,0x00,0xff,0xfd,0xfb,0xfb,0xff, - 0x05,0x09,0x06,0xff,0xf8,0xf6,0xf8,0xfd,0x05,0x0b,0x0d,0x08, - 0xfe,0xf5,0xf1,0xf5,0xfd,0x05,0x08,0x07,0x03,0xfe,0xf9,0xf7, - 0xfa,0xfe,0x03,0x05,0x05,0x04,0x03,0x01,0xfc,0xf7,0xf6,0xfb, - 0x03,0x09,0x09,0x02,0xfb,0xf7,0xf9,0xfe,0x02,0x05,0x07,0x08, - 0x06,0x01,0xfb,0xf7,0xf8,0xfc,0xff,0x01,0x02,0x02,0x02,0x01, - 0xfe,0xfd,0xfe,0x01,0x02,0x01,0xff,0xfd,0xfe,0x01,0x03,0x03, - 0x01,0xfd,0xfa,0xfa,0xfc,0x00,0x01,0x01,0xff,0xff,0x00,0x00, - 0xff,0xff,0xff,0xff,0xfe,0xfd,0xff,0x02,0x05,0x03,0x00,0xfd, - 0xfe,0x02,0x04,0x03,0x00,0xfd,0xfe,0x02,0x06,0x04,0xff,0xf9, - 0xf8,0xfc,0x03,0x06,0x05,0x01,0xfc,0xfa,0xfa,0xfb,0xfe,0x01, - 0x03,0x02,0xff,0xfd,0xfd,0xfe,0xff,0xff,0xff,0x02,0x05,0x07, - 0x03,0xfd,0xf9,0xf9,0xfe,0x03,0x06,0x06,0x03,0xfd,0xf7,0xf6, - 0xfb,0x02,0x06,0x05,0x01,0xff,0x00,0x01,0xff,0xfc,0xfb,0xfd, - 0x02,0x06,0x07,0x02,0xfc,0xf9,0xfb,0x00,0x04,0x05,0x03,0x00, - 0xfb,0xf7,0xf6,0xfb,0x04,0x0a,0x07,0xfd,0xf7,0xfa,0x02,0x06, - 0x02,0xfb,0xfa,0xff,0x05,0x06,0x01,0xfb,0xf9,0xfa,0xff,0x04, - 0x07,0x07,0x04,0xfe,0xf8,0xf6,0xfa,0x00,0x05,0x06,0x03,0x01, - 0x00,0x00,0x00,0xff,0xfd,0xfe,0x00,0x04,0x04,0x02,0xfd,0xf9, - 0xf9,0xfc,0x00,0x04,0x04,0x02,0xfe,0xfc,0xfc,0xfe,0x01,0x02, - 0x02,0x00,0xfd,0xfc,0xfe,0x02,0x03,0x01,0xfd,0xfd,0x01,0x04, - 0x04,0xff,0xfa,0xfb,0x00,0x05,0x04,0xfe,0xf9,0xf9,0xfd,0x02, - 0x03,0x01,0xff,0x00,0x01,0x02,0x02,0x01,0xff,0xfd,0xfd,0xff, - 0x00,0x01,0x02,0x01,0x00,0xff,0xfe,0xfe,0xff,0xff,0xfe,0xfd, - 0xff,0x02,0x04,0x01,0xfc,0xf8,0xfa,0x00,0x05,0x06,0x03,0x01, - 0xff,0xfe,0xfc,0xfa,0xfa,0xfd,0x02,0x07,0x08,0x04,0xfc,0xf6, - 0xf5,0xfa,0x02,0x08,0x09,0x06,0x00,0xfb,0xf8,0xf9,0xfd,0x03, - 0x08,0x09,0x06,0xff,0xf8,0xf5,0xfa,0x04,0x0c,0x0c,0x04,0xf9, - 0xf4,0xf6,0xfc,0x01,0x05,0x05,0x03,0x00,0xfd,0xfc,0xfd,0xfe, - 0xfe,0xff,0x02,0x05,0x06,0x02,0xfa,0xf4,0xf4,0xfa,0x04,0x0a, - 0x08,0x02,0xfb,0xf9,0xfa,0xfd,0x01,0x03,0x04,0x04,0x02,0x01, - 0x00,0xff,0xff,0xff,0x00,0x02,0x05,0x07,0x04,0xfd,0xf6,0xf4, - 0xfa,0x04,0x0a,0x08,0x01,0xf9,0xf6,0xfa,0x00,0x05,0x06,0x03, - 0xfe,0xfa,0xf9,0xfb,0xff,0x03,0x05,0x06,0x03,0xff,0xfb,0xfa, - 0xf9,0xf9,0xfb,0x01,0x07,0x09,0x05,0xff,0xfb,0xfc,0xfd,0xff, - 0x00,0x02,0x03,0x04,0x03,0x02,0x00,0xfd,0xfc,0xfd,0x02,0x05, - 0x03,0xfe,0xfb,0xfd,0x01,0x03,0x02,0xff,0xfe,0xff,0x02,0x01, - 0xfe,0xfa,0xf9,0xfc,0x00,0x02,0x02,0x00,0xfe,0xfd,0xfd,0xfe, - 0xff,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0xff,0xfe,0xfe,0xff, - 0x00,0x01,0x00,0xfe,0xfe,0x00,0x03,0x04,0x02,0xff,0xfd,0xfe, - 0xff,0x01,0x01,0x01,0x00,0x00,0xff,0x00,0x01,0x02,0x00,0xfd, - 0xfb,0xfc,0x01,0x04,0x04,0x00,0xfc,0xfb,0xfe,0x00,0x00,0xfd, - 0xfc,0xff,0x03,0x06,0x04,0xfd,0xf8,0xf9,0xff,0x05,0x04,0xff, - 0xfa,0xfb,0xfe,0x00,0x00,0x01,0x05,0x09,0x06,0xfd,0xf5,0xf7, - 0x00,0x08,0x08,0x01,0xfd,0xfe,0x02,0x02,0x00,0xfd,0xfe,0x01, - 0x02,0x00,0xfd,0xfc,0xff,0x03,0x04,0xff,0xfa,0xf8,0xfc,0x01, - 0x02,0xfe,0xfc,0x00,0x06,0x09,0x05,0xfe,0xf8,0xf7,0xfb,0x00, - 0x03,0x04,0x02,0x00,0xff,0xff,0xfe,0xfc,0xfd,0x02,0x07,0x07, - 0x00,0xf9,0xf8,0xfd,0x02,0x03,0x00,0x00,0x04,0x06,0x03,0xfc, - 0xf7,0xf9,0x00,0x07,0x09,0x03,0xfc,0xfa,0xfc,0x00,0x01,0xff, - 0xfd,0x00,0x03,0x02,0xfe,0xfa,0xfb,0x01,0x05,0x03,0xfe,0xfc, - 0xfd,0xff,0xfe,0xfb,0xfb,0xff,0x05,0x08,0x06,0x01,0xfc,0xf9, - 0xfb,0x00,0x05,0x06,0x03,0xfe,0xfa,0xfb,0xfd,0x00,0x03,0x05, - 0x05,0x04,0xfe,0xf9,0xf8,0xfd,0x03,0x05,0x02,0xfd,0xfc,0xff, - 0x03,0x03,0xfe,0xfa,0xfa,0xff,0x03,0x02,0xfe,0xfc,0xff,0x05, - 0x07,0x03,0xfc,0xf7,0xfa,0x00,0x04,0x02,0xfe,0xfc,0xfe,0x01, - 0x02,0x00,0xfc,0xfb,0xfe,0x03,0x06,0x05,0x00,0xfb,0xf9,0xfd, - 0x02,0x06,0x06,0x03,0x00,0xfd,0xfb,0xfa,0xfa,0xfc,0x01,0x07, - 0x09,0x06,0xff,0xf9,0xf7,0xf8,0xfd,0x02,0x06,0x07,0x05,0x00, - 0xfb,0xf9,0xfa,0xfd,0x00,0x02,0x04,0x04,0x03,0xff,0xfb,0xf8, - 0xf9,0xff,0x06,0x0b,0x0a,0x03,0xfa,0xf4,0xf4,0xfb,0x03,0x09, - 0x0a,0x07,0xff,0xf6,0xf2,0xf6,0x00,0x09,0x0b,0x08,0x01,0xfc, - 0xf8,0xf8,0xfb,0x00,0x06,0x08,0x05,0x01,0xfc,0xfa,0xfa,0xfc, - 0x00,0x04,0x07,0x06,0x03,0xfe,0xf9,0xf6,0xf8,0xff,0x06,0x08, - 0x04,0xfe,0xfa,0xf9,0xfa,0xfb,0xfe,0x04,0x0a,0x0b,0x06,0xfc, - 0xf5,0xf5,0xfb,0x03,0x07,0x07,0x04,0x01,0xfd,0xfa,0xf8,0xfa, - 0x00,0x09,0x0c,0x08,0xfe,0xf6,0xf5,0xfc,0x03,0x06,0x04,0x01, - 0xff,0x00,0x00,0xff,0xfc,0xfb,0xfc,0xff,0x02,0x05,0x04,0xff, - 0xfb,0xfa,0xfc,0x00,0x02,0x02,0x01,0x00,0xfe,0xfc,0xfd,0x00, - 0x04,0x04,0x00,0xfc,0xfb,0xfc,0xff,0x02,0x03,0x04,0x03,0x01, - 0xfd,0xfb,0xfd,0x02,0x06,0x05,0x01,0xfe,0xfd,0x00,0x01,0x00, - 0xff,0xfe,0xff,0x01,0x01,0xff,0xfd,0xfd,0x00,0x01,0x00,0xfd, - 0xfb,0xfd,0x01,0x03,0x00,0xfd,0xfc,0x00,0x03,0x02,0xfe,0xfa, - 0xfb,0xff,0x04,0x06,0x03,0xfe,0xfb,0xfb,0xff,0x02,0x02,0x01, - 0x01,0x02,0x03,0x01,0xff,0xfe,0xff,0x01,0x02,0x02,0x01,0x00, - 0xfe,0xfc,0xfb,0xfc,0xfe,0x03,0x06,0x04,0xff,0xfb,0xfb,0xff, - 0x03,0x02,0xfe,0xfc,0xfd,0x00,0x01,0xff,0xfe,0xfd,0xfe,0xff, - 0x00,0x00,0x00,0x01,0x02,0x02,0x00,0xfd,0xfc,0xfe,0x02,0x04, - 0x03,0xff,0xfd,0xfe,0x01,0x03,0x02,0x00,0xfe,0xfe,0x00,0x00, - 0xfe,0xfd,0xff,0x03,0x04,0x02,0xfe,0xfd,0xff,0x02,0x01,0xfe, - 0xfb,0xfa,0xfc,0x00,0x03,0x05,0x04,0x00,0xfc,0xfa,0xfc,0xff, - 0x01,0x02,0x01,0xff,0xfd,0xfd,0xff,0x02,0x03,0x01,0xfd,0xfb, - 0xfd,0xff,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0xfe,0xfe,0xff, - 0x00,0x02,0x03,0x02,0xff,0xfd,0xfd,0xfe,0x00,0x00,0xff,0xff, - 0x00,0x01,0x00,0xfd,0xfb,0xfd,0x02,0x06,0x04,0xff,0xfa,0xfb, - 0x00,0x02,0x00,0xfc,0xfc,0x02,0x07,0x04,0xfc,0xf6,0xf8,0x00, - 0x08,0x0a,0x04,0xfd,0xf9,0xfa,0xfc,0xff,0x02,0x04,0x05,0x03, - 0xff,0xfb,0xfa,0xfd,0x02,0x05,0x04,0x01,0xfd,0xfa,0xfa,0xfd, - 0x01,0x05,0x04,0x01,0xfe,0xfd,0xfe,0xff,0xff,0x00,0x00,0x01, - 0x02,0x03,0x02,0xff,0xfb,0xfa,0xfb,0xff,0x04,0x06,0x04,0xfe, - 0xfa,0xfb,0xff,0x02,0x01,0xfe,0xfc,0x00,0x03,0x03,0xff,0xfb, - 0xfb,0x00,0x04,0x06,0x05,0x02,0xfe,0xfa,0xf8,0xfa,0x00,0x05, - 0x06,0x04,0xff,0xfb,0xfb,0xff,0x03,0x04,0x01,0xfe,0xfc,0xfe, - 0x00,0x01,0x01,0xff,0xfe,0xfe,0x00,0x01,0x01,0xff,0xfc,0xfc, - 0xff,0x04,0x07,0x05,0xff,0xfa,0xf8,0xfb,0x00,0x02,0x01,0xff, - 0xfd,0x00,0x05,0x07,0x02,0xfa,0xf6,0xf9,0x00,0x06,0x06,0x03, - 0x00,0xfe,0xfd,0xfc,0xfc,0xff,0x04,0x06,0x03,0xfc,0xf8,0xfb, - 0x01,0x05,0x05,0x00,0xfd,0xfd,0x01,0x03,0x01,0xfd,0xfb,0xfc, - 0xff,0x00,0xff,0xfe,0x00,0x02,0x02,0xff,0xfc,0xfc,0xfe,0x02, - 0x04,0x02,0x00,0xfe,0xff,0x01,0x01,0x00,0xfe,0xfe,0xff,0x00, - 0x01,0x00,0xff,0xff,0x01,0x03,0x02,0xff,0xfd,0xfd,0x00,0x03, - 0x03,0x01,0x00,0x00,0x01,0xff,0xfd,0xfb,0xfc,0xfe,0xfe,0xff, - 0x00,0x01,0x02,0x01,0xfe,0xfc,0xfb,0xff,0x04,0x08,0x05,0xfe, - 0xf8,0xf8,0xff,0x04,0x05,0x02,0xfe,0xfd,0xff,0x02,0x02,0x01, - 0x00,0x00,0x01,0x01,0xff,0xff,0x01,0x03,0x01,0xfc,0xf9,0xfa, - 0x00,0x05,0x03,0xfd,0xf9,0xfb,0x01,0x04,0x01,0xfb,0xfa,0xff, - 0x05,0x07,0x03,0xff,0xfe,0xfe,0xfe,0xfc,0xfc,0xff,0x03,0x04, - 0x00,0xfc,0xfc,0xff,0x03,0x04,0x00,0xfd,0xfd,0x00,0x03,0x03, - 0x00,0xfc,0xfd,0x01,0x05,0x06,0x02,0xfb,0xf7,0xf8,0xfe,0x05, - 0x09,0x07,0x01,0xfb,0xf8,0xf9,0xfd,0x02,0x05,0x05,0x03,0xff, - 0xfc,0xfc,0xfe,0x00,0x01,0xff,0xfd,0xfe,0xff,0x01,0x01,0xff, - 0xfe,0xfd,0xff,0x01,0x03,0x02,0x00,0xfd,0xfc,0xfc,0xff,0x02, - 0x03,0x02,0x00,0xfe,0xfe,0x02,0x04,0x04,0xff,0xfa,0xf9,0xfd, - 0x02,0x05,0x03,0x01,0x00,0x00,0xff,0xff,0xfe,0xff,0xfe,0xfd, - 0xfd,0xff,0x02,0x04,0x02,0xfe,0xfc,0xfc,0xfe,0x01,0x01,0x01, - 0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff, - 0x00,0x00,0x00,0xff,0xfe,0xff,0x00,0x01,0x00,0xff,0xfe,0xff, - 0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x01,0x01,0x00,0xff,0xfe, - 0xfd,0xff,0x00,0x01,0x01,0x00,0x00,0xff,0xfe,0xfe,0xff,0x00, - 0x00,0x00,0xff,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00, - 0x00,0xff,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00, - 0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00, - 0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00, - 0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0xff, - 0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00, - 0x00,0xfe,0xf9,0xf4,0xf3,0xf6,0xfb,0xfe,0x00,0x01,0x00,0x00, - 0xff,0xff,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xfe,0xfb,0xf9,0xf8, - 0xf9,0xfb,0xfd,0xfd,0xfc,0xfa,0xfa,0xfb,0xfd,0xff,0x00,0x00, - 0xfd,0xf9,0xf4,0xf2,0xf2,0xf4,0xf5,0xf6,0xf7,0xf7,0xf7,0xf6, - 0xf5,0xf5,0xf7,0xf9,0xfb,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x03,0x05,0x06,0x07, - 0x06,0x05,0x04,0x03,0x02,0x01,0x01,0x02,0x03,0x05,0x06,0x05, - 0x04,0x03,0x03,0x03,0x04,0x04,0x03,0x03,0x02,0x03,0x05,0x06, - 0x08,0x09,0x08,0x05,0x02,0x00,0xff,0xff,0xff,0xff,0x00,0x01, - 0x02,0x02,0x02,0x01,0x01,0x01,0x00,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa,0xfa,0xfb,0xfc, - 0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe, - 0xff,0x00,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03, - 0x04,0x04,0x05,0x06,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x07, - 0x07,0x07,0x07,0x07,0x07,0x07,0x06,0x06,0x05,0x04,0x03,0x02, - 0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x02, - 0x02,0x02,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x04,0x05,0x05,0x05,0x05, - 0x04,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x05,0x05,0x06,0x06,0x05,0x05,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x05, - 0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01, - 0x01,0x01,0x02,0x01,0x01,0x00,0x00,0xff,0xff,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x03,0x04,0x05,0x05,0x04,0x03,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x02,0x03,0x03,0x04,0x03,0x02,0x01, - 0x01,0x02,0x03,0x05,0x06,0x06,0x06,0x05,0x04,0x03,0x02,0x02, - 0x02,0x01,0x01,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00, - 0x00,0x01,0x01,0x01,0x02,0x02,0x03,0x04,0x04,0x04,0x03,0x02, - 0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x02, - 0x01,0x01,0x01,0x00,0x00,0xff,0x00,0x01,0x02,0x03,0x03,0x03, - 0x02,0x01,0x00,0x00,0x01,0x02,0x03,0x03,0x04,0x04,0x04,0x04, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x00,0x01, - 0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xfe,0xff,0xff, - 0x00,0x01,0x02,0x02,0x01,0x00,0xff,0xff,0xff,0x00,0x00,0x01, - 0x01,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x02, - 0x03,0x03,0x03,0x04,0x04,0x03,0x03,0x03,0x02,0x02,0x02,0x01, - 0x01,0x01,0x01,0x01,0x00,0x01,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0x00,0x01,0x02,0x02,0x01,0x00,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe,0xff, - 0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x03,0x03,0x04,0x03, - 0x03,0x02,0x00,0xff,0xfe,0xfd,0xfd,0xfe,0xff,0x00,0x00,0xff, - 0xff,0xff,0x00,0x01,0x02,0x03,0x02,0x01,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x01,0x02,0x03,0x04,0x04,0x03,0x02,0x01,0x00, - 0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff, - 0x00,0x02,0x03,0x04,0x03,0x02,0x02,0x02,0x03,0x04,0x03,0x03, - 0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfc,0xfb,0xfb,0xfb,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe, - 0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0x01,0x02,0x03,0x03,0x01,0x00, - 0xff,0xff,0x00,0x00,0x00,0x01,0x03,0x05,0x06,0x05,0x04,0x03, - 0x02,0x02,0x02,0x03,0x04,0x04,0x05,0x04,0x03,0x02,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x00,0x00, - 0x00,0xff,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x03,0x03,0x03, - 0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00, - 0xff,0xfd,0xfc,0xfc,0xfd,0xff,0x00,0x01,0x00,0x00,0xff,0xfe, - 0xfd,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfc, - 0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x02,0x04,0x05,0x06,0x05,0x03, - 0x02,0x02,0x03,0x04,0x04,0x05,0x05,0x05,0x04,0x03,0x02,0x02, - 0x02,0x02,0x02,0x02,0x03,0x02,0x01,0xff,0xfe,0xfe,0x00,0x01, - 0x01,0x01,0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x06,0x05,0x03, - 0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x01,0xff,0xfe,0xfd, - 0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xff,0x01,0x03,0x05,0x06, - 0x06,0x05,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x02, - 0x01,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc, - 0xfe,0xff,0xff,0xff,0xfe,0xff,0x01,0x02,0x03,0x04,0x04,0x04, - 0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x03, - 0x02,0x02,0x02,0x03,0x03,0x04,0x05,0x05,0x06,0x06,0x06,0x06, - 0x05,0x04,0x03,0x03,0x03,0x04,0x04,0x03,0x02,0x00,0xff,0xff, - 0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfb,0xfa,0xfb,0xfc,0xfd, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0x01,0x02,0x03,0x02, - 0x01,0x00,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x01, - 0x01,0x02,0x03,0x03,0x03,0x02,0x01,0x00,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x03,0x03,0x03,0x02, - 0x02,0x03,0x03,0x04,0x05,0x04,0x03,0x02,0x00,0xfe,0xfd,0xfc, - 0xfd,0xfe,0xff,0x00,0x01,0x00,0x00,0xff,0xff,0x00,0x02,0x04, - 0x05,0x06,0x06,0x05,0x05,0x05,0x04,0x03,0x03,0x03,0x04,0x04, - 0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfc,0xfa,0xf8,0xf7,0xf7,0xf9,0xfa,0xfb,0xfc,0xfe,0xff, - 0x00,0x00,0x01,0x02,0x02,0x03,0x03,0x04,0x05,0x05,0x05,0x04, - 0x03,0x02,0x02,0x03,0x03,0x04,0x04,0x04,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x03,0x05,0x07,0x07,0x06,0x04,0x02,0x01,0x00, - 0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03, - 0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfe,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x00, - 0x00,0x00,0x01,0x02,0x03,0x05,0x05,0x05,0x05,0x04,0x03,0x03, - 0x03,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0xfe, - 0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd,0xff, - 0x00,0x00,0x01,0x01,0x00,0x01,0x01,0x02,0x03,0x03,0x02,0x01, - 0x00,0x00,0x01,0x02,0x03,0x04,0x04,0x05,0x05,0x04,0x04,0x03, - 0x03,0x04,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x01,0x00, - 0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x00,0xff,0xfe,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0xff,0xff,0xfe, - 0xfd,0xfc,0xfd,0xfd,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02, - 0x03,0x03,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02, - 0x02,0x01,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfd,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0xff,0xfe,0xff,0xff,0x00,0x00,0x00,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff, - 0xff,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x00, - 0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x01,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0x00,0x00,0x01, - 0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe, - 0xfe,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xfe,0xfe,0xff,0xff, - 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x00,0xff,0xff, - 0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe, - 0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x00,0x00, - 0x00,0x00,0x01,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00, - 0x01,0x01,0x02,0x03,0x03,0x03,0x02,0x01,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0x00, - 0x01,0x01,0x02,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x03,0x03, - 0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfd,0xfc,0xfb, - 0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfb,0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x01, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x05, - 0x06,0x06,0x07,0x08,0x09,0x09,0x09,0x09,0x0a,0x0a,0x0a,0x0b, - 0x0b,0x0b,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0b,0x0a,0x0a,0x09, - 0x08,0x07,0x07,0x06,0x06,0x05,0x04,0x03,0x02,0x02,0x01,0x01, - 0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfa,0xf9,0xf9,0xf8,0xf7,0xf6,0xf5,0xf4,0xf4,0xf4,0xf3,0xf3, - 0xf3,0xf4,0xf4,0xf4,0xf4,0xf4,0xf4,0xf4,0xf4,0xf4,0xf4,0xf4, - 0xf5,0xf5,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf7,0xf7, - 0xf8,0xf9,0xf9,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x01,0x01,0x02,0x02,0x03, - 0x03,0x03,0x04,0x04,0x05,0x05,0x05,0x06,0x05,0x05,0x05,0x04, - 0x04,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x04, - 0x03,0x03,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x02,0x01,0x01, - 0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x03,0x02,0x01,0x01, - 0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01,0x01,0x01, - 0x03,0x04,0x04,0x04,0x03,0x03,0x04,0x04,0x04,0x04,0x03,0x02, - 0x02,0x02,0x02,0x01,0x00,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfa,0xfa,0xf9,0xf8,0xf7,0xf7,0xf6,0xf6,0xf6,0xf6,0xf5, - 0xf5,0xf5,0xf6,0xf7,0xf7,0xf8,0xf8,0xf9,0xfa,0xfb,0xfc,0xfc, - 0xfd,0xfd,0xfe,0xff,0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x03, - 0x03,0x02,0x02,0x03,0x04,0x04,0x04,0x03,0x03,0x04,0x05,0x06, - 0x06,0x06,0x06,0x07,0x08,0x0a,0x0b,0x0c,0x0c,0x0d,0x0e,0x10, - 0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x19,0x1a,0x1b,0x1c,0x1d, - 0x1e,0x1e,0x1e,0x1f,0x1e,0x1e,0x1d,0x1c,0x1c,0x1a,0x18,0x16, - 0x15,0x13,0x12,0x10,0x0d,0x0b,0x09,0x08,0x06,0x05,0x04,0x03, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x04, - 0x03,0x03,0x02,0x02,0x01,0xff,0xfd,0xfb,0xf9,0xf7,0xf5,0xf2, - 0xef,0xed,0xeb,0xe8,0xe6,0xe4,0xe2,0xe1,0xe0,0xdf,0xde,0xde, - 0xde,0xde,0xdf,0xdf,0xe0,0xe1,0xe2,0xe3,0xe5,0xe6,0xe7,0xe8, - 0xe9,0xea,0xeb,0xec,0xed,0xec,0xec,0xed,0xed,0xee,0xee,0xee, - 0xee,0xef,0xef,0xf0,0xf0,0xf0,0xf1,0xf1,0xf2,0xf3,0xf3,0xf4, - 0xf5,0xf5,0xf7,0xf8,0xfa,0xfb,0xfb,0xfd,0xfe,0xff,0x00,0x02, - 0x03,0x03,0x04,0x05,0x06,0x07,0x08,0x08,0x08,0x09,0x09,0x09, - 0x0a,0x0a,0x09,0x08,0x08,0x07,0x08,0x08,0x07,0x06,0x05,0x05, - 0x05,0x05,0x05,0x04,0x04,0x03,0x03,0x03,0x04,0x04,0x04,0x03, - 0x03,0x03,0x03,0x04,0x04,0x03,0x03,0x02,0x03,0x03,0x03,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfc, - 0xfb,0xfb,0xfc,0xfc,0xfd,0xfc,0xfb,0xfa,0xfb,0xfb,0xfc,0xfc, - 0xfa,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe, - 0xff,0xfe,0xfe,0xff,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x02, - 0x02,0x01,0xff,0xff,0x00,0x01,0x01,0x00,0xfe,0xfe,0xfe,0xff, - 0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0xfe,0xfe,0xfd,0xfe,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xff,0xfe,0xfe,0xfd,0xfe,0xff,0xff,0xff,0xff,0x00,0x00, - 0x01,0x02,0x03,0x03,0x03,0x03,0x04,0x05,0x05,0x05,0x05,0x05, - 0x06,0x07,0x07,0x06,0x05,0x05,0x06,0x06,0x05,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x04,0x04,0x03,0x02, - 0x03,0x03,0x04,0x04,0x03,0x02,0x02,0x02,0x02,0x01,0x00,0xff, - 0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xfa, - 0xf9,0xfa,0xfb,0xfa,0xf9,0xf8,0xf7,0xf8,0xf8,0xf7,0xf6,0xf4, - 0xf4,0xf3,0xf3,0xf3,0xf2,0xf1,0xf0,0xf0,0xf0,0xf0,0xf0,0xf0, - 0xef,0xef,0xf1,0xf2,0xf4,0xf4,0xf5,0xf6,0xf8,0xfa,0xfc,0xfd, - 0xfe,0xfe,0x00,0x02,0x04,0x05,0x05,0x05,0x06,0x08,0x0a,0x0a, - 0x0a,0x0a,0x0a,0x0c,0x0d,0x0e,0x0f,0x0e,0x0e,0x0f,0x12,0x14, - 0x14,0x14,0x14,0x15,0x17,0x19,0x1a,0x1a,0x1b,0x1c,0x1f,0x21, - 0x24,0x24,0x25,0x25,0x27,0x2a,0x2b,0x2b,0x2b,0x2b,0x2c,0x2d, - 0x2e,0x2d,0x2a,0x28,0x27,0x27,0x26,0x23,0x1f,0x1c,0x19,0x18, - 0x17,0x15,0x11,0x0d,0x0b,0x0a,0x0a,0x08,0x05,0x01,0x00,0x00, - 0x01,0x01,0xff,0xfd,0xfd,0xfe,0xff,0xfe,0xfd,0xfb,0xf9,0xf9, - 0xf9,0xf7,0xf4,0xf1,0xef,0xed,0xeb,0xe9,0xe5,0xe2,0xde,0xdc, - 0xda,0xd8,0xd6,0xd3,0xd0,0xcf,0xcf,0xcf,0xcf,0xcf,0xcf,0xd0, - 0xd2,0xd3,0xd5,0xd6,0xd7,0xd8,0xda,0xdc,0xdf,0xe1,0xe3,0xe4, - 0xe6,0xe9,0xeb,0xed,0xee,0xef,0xf1,0xf3,0xf5,0xf6,0xf7,0xf8, - 0xf8,0xf9,0xfb,0xfb,0xfb,0xfa,0xf9,0xf8,0xf8,0xf8,0xf7,0xf7, - 0xf6,0xf6,0xf7,0xf7,0xf8,0xfa,0xfc,0xfd,0xff,0x01,0x04,0x07, - 0x09,0x0b,0x0e,0x10,0x13,0x16,0x18,0x19,0x1a,0x1b,0x1b,0x1b, - 0x1a,0x18,0x15,0x13,0x11,0x0f,0x0d,0x0b,0x09,0x07,0x05,0x02, - 0x00,0xfe,0xfb,0xf9,0xf7,0xf7,0xf7,0xf7,0xf7,0xf8,0xf9,0xfa, - 0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x02,0x02, - 0x02,0x03,0x03,0x02,0x00,0xfe,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9, - 0xf8,0xf8,0xf8,0xf7,0xf6,0xf4,0xf3,0xf3,0xf4,0xf5,0xf6,0xf7, - 0xf9,0xfc,0xff,0x01,0x02,0x02,0x03,0x04,0x04,0x05,0x05,0x06, - 0x06,0x07,0x07,0x07,0x07,0x06,0x05,0x03,0x00,0xff,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xff,0x00,0x01,0x01,0x00,0xff,0x00,0x00,0x01, - 0x01,0x01,0x01,0x02,0x03,0x04,0x04,0x03,0x02,0x00,0x00,0xff, - 0xff,0xff,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xfd,0xfc,0xfb,0xfb, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfc,0xfc,0xfc, - 0xfd,0xfe,0xfe,0xff,0xff,0x00,0x01,0x03,0x04,0x04,0x04,0x05, - 0x07,0x09,0x0a,0x0a,0x09,0x09,0x09,0x0a,0x0a,0x08,0x06,0x04, - 0x04,0x05,0x05,0x03,0x02,0x01,0x02,0x03,0x04,0x04,0x02,0x02, - 0x02,0x04,0x05,0x05,0x05,0x05,0x07,0x09,0x0a,0x09,0x07,0x06, - 0x06,0x06,0x06,0x04,0x01,0x00,0x00,0x01,0x02,0x00,0xff,0xfd, - 0xfd,0xfc,0xfb,0xf8,0xf6,0xf5,0xf4,0xf3,0xf2,0xf1,0xef,0xed, - 0xeb,0xe9,0xe7,0xe5,0xe4,0xe3,0xe3,0xe4,0xe5,0xe7,0xea,0xec, - 0xef,0xf2,0xf4,0xf6,0xf8,0xfa,0xfc,0xfd,0xff,0x00,0x02,0x03, - 0x03,0x03,0x03,0x02,0x02,0x01,0x00,0xfe,0xfe,0xff,0x01,0x04, - 0x06,0x07,0x09,0x0c,0x11,0x14,0x16,0x16,0x17,0x19,0x1d,0x1f, - 0x21,0x22,0x24,0x28,0x2c,0x2e,0x30,0x30,0x31,0x32,0x34,0x35, - 0x35,0x36,0x37,0x39,0x3b,0x3b,0x3a,0x38,0x35,0x33,0x30,0x2c, - 0x27,0x22,0x1e,0x1c,0x1b,0x1a,0x17,0x13,0x10,0x0e,0x0d,0x0a, - 0x06,0x02,0x00,0x01,0x02,0x03,0x02,0x01,0x00,0x01,0x02,0x00, - 0xfb,0xf6,0xf3,0xf2,0xf1,0xee,0xea,0xe6,0xe3,0xe2,0xe0,0xdc, - 0xd7,0xd2,0xce,0xcc,0xcc,0xcc,0xca,0xc8,0xc8,0xc9,0xca,0xcc, - 0xca,0xc8,0xc5,0xc6,0xc8,0xcb,0xcc,0xcb,0xcd,0xd1,0xd7,0xdc, - 0xde,0xe0,0xe1,0xe5,0xea,0xee,0xf0,0xf1,0xf1,0xf4,0xf8,0xfb, - 0xfc,0xfc,0xfb,0xfc,0xfe,0xff,0xfe,0xfd,0xfc,0xfb,0xfc,0xfe, - 0xff,0x00,0x01,0x03,0x06,0x08,0x0a,0x0c,0x0c,0x0d,0x0e,0x10, - 0x11,0x12,0x12,0x12,0x13,0x16,0x18,0x19,0x19,0x18,0x17,0x18, - 0x19,0x18,0x17,0x16,0x15,0x15,0x14,0x13,0x11,0x0e,0x0b,0x08, - 0x05,0x02,0xff,0xfc,0xfa,0xf8,0xf6,0xf4,0xf4,0xf4,0xf5,0xf4, - 0xf3,0xf2,0xf3,0xf4,0xf4,0xf4,0xf3,0xf2,0xf2,0xf3,0xf4,0xf4, - 0xf3,0xf2,0xf3,0xf4,0xf5,0xf5,0xf3,0xf2,0xf3,0xf5,0xf7,0xf7, - 0xf7,0xf7,0xf8,0xfb,0xfc,0xfc,0xf9,0xf6,0xf5,0xf5,0xf6,0xf5, - 0xf3,0xf2,0xf3,0xf5,0xf8,0xfa,0xfa,0xfa,0xfc,0xfe,0x01,0x02, - 0x03,0x03,0x06,0x09,0x0c,0x0d,0x0e,0x0f,0x11,0x12,0x13,0x13, - 0x12,0x12,0x12,0x12,0x13,0x14,0x13,0x12,0x11,0x10,0x10,0x0f, - 0x0c,0x0a,0x08,0x07,0x05,0x04,0x01,0xff,0xfe,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xfe,0xfc,0xfa,0xf8,0xf6,0xf2,0xee,0xea, - 0xe8,0xe7,0xe6,0xe5,0xe4,0xe4,0xe6,0xe9,0xec,0xed,0xee,0xf0, - 0xf3,0xf7,0xfa,0xfb,0xfb,0xfc,0xff,0x03,0x04,0x04,0x03,0x04, - 0x07,0x09,0x09,0x08,0x06,0x06,0x08,0x08,0x08,0x06,0x05,0x05, - 0x06,0x07,0x06,0x05,0x04,0x04,0x04,0x05,0x04,0x03,0x03,0x03, - 0x05,0x07,0x09,0x09,0x0a,0x0c,0x0f,0x13,0x14,0x15,0x15,0x16, - 0x18,0x1a,0x1a,0x18,0x16,0x15,0x15,0x15,0x12,0x0e,0x09,0x05, - 0x02,0xfe,0xf9,0xf4,0xf0,0xee,0xed,0xed,0xec,0xeb,0xea,0xea, - 0xea,0xea,0xe9,0xe9,0xe9,0xea,0xec,0xef,0xf2,0xf4,0xf6,0xf7, - 0xf7,0xf7,0xf5,0xf3,0xf2,0xf2,0xf4,0xf6,0xf8,0xfb,0xfd,0xff, - 0xff,0xfe,0xfd,0xfb,0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf8,0xf7,0xf4,0xf3,0xf3,0xf5,0xf8,0xfe,0x03,0x09,0x0f,0x15, - 0x1b,0x1f,0x22,0x23,0x26,0x2a,0x2f,0x34,0x37,0x39,0x3a,0x3d, - 0x3f,0x3f,0x3c,0x38,0x35,0x36,0x37,0x38,0x36,0x34,0x32,0x32, - 0x33,0x32,0x2d,0x25,0x1f,0x1c,0x1c,0x19,0x14,0x0d,0x08,0x07, - 0x07,0x05,0x01,0xfd,0xfb,0xff,0x04,0x08,0x08,0x06,0x05,0x07, - 0x08,0x06,0x00,0xf8,0xf4,0xf3,0xf3,0xf1,0xec,0xe5,0xe0,0xdd, - 0xdb,0xd6,0xcf,0xc9,0xc5,0xc5,0xc8,0xc9,0xc8,0xc6,0xc5,0xc6, - 0xc8,0xc7,0xc4,0xc2,0xc3,0xc7,0xcc,0xcf,0xd1,0xd3,0xd7,0xdc, - 0xe0,0xe3,0xe5,0xe7,0xed,0xf4,0xfb,0x01,0x05,0x07,0x0a,0x0b, - 0x0b,0x0a,0x07,0x04,0x02,0x01,0x00,0xff,0xfe,0xfc,0xfc,0xfd, - 0xfd,0xfe,0xff,0x01,0x03,0x05,0x08,0x0b,0x0c,0x0d,0x0d,0x0d, - 0x0e,0x0e,0x0e,0x0d,0x0c,0x0b,0x0c,0x0c,0x0d,0x0c,0x0b,0x0b, - 0x0c,0x0e,0x0e,0x0d,0x0c,0x09,0x08,0x05,0x02,0xff,0xfb,0xf9, - 0xf8,0xf8,0xf7,0xf6,0xf5,0xf5,0xf4,0xf2,0xf1,0xee,0xec,0xeb, - 0xeb,0xed,0xee,0xef,0xf0,0xf0,0xf0,0xef,0xed,0xeb,0xea,0xe9, - 0xea,0xeb,0xee,0xf3,0xf7,0xfb,0xfe,0xff,0x01,0x02,0x03,0x03, - 0x02,0x01,0x01,0x02,0x03,0x04,0x05,0x05,0x04,0x04,0x03,0x03, - 0x03,0x03,0x04,0x04,0x05,0x06,0x08,0x0a,0x0a,0x09,0x07,0x05, - 0x04,0x02,0x00,0xfe,0xfc,0xfc,0xfe,0x00,0x02,0x03,0x04,0x05, - 0x07,0x08,0x07,0x06,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,0x0c, - 0x0b,0x09,0x07,0x05,0x04,0x02,0x01,0x01,0x02,0x04,0x04,0x05, - 0x04,0x03,0x01,0xff,0xfd,0xfc,0xf9,0xf7,0xf6,0xf7,0xf8,0xf9, - 0xf8,0xf8,0xf9,0xfb,0xfd,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfd, - 0xfc,0xfb,0xfa,0xfa,0xf9,0xf8,0xf8,0xf7,0xf6,0xf5,0xf4,0xf4, - 0xf4,0xf5,0xf5,0xf6,0xf7,0xf8,0xf9,0xf9,0xf8,0xf7,0xf6,0xf5, - 0xf5,0xf5,0xf6,0xf8,0xfb,0xfe,0x01,0x04,0x06,0x07,0x08,0x09, - 0x0a,0x0a,0x0a,0x09,0x09,0x08,0x07,0x06,0x04,0x02,0xff,0xfd, - 0xfb,0xfa,0xfa,0xfb,0xfc,0xfe,0x01,0x05,0x09,0x0c,0x0e,0x10, - 0x12,0x15,0x16,0x17,0x18,0x18,0x19,0x1a,0x1a,0x1a,0x18,0x17, - 0x16,0x15,0x13,0x11,0x0e,0x0a,0x06,0x02,0xff,0xfc,0xf9,0xf6, - 0xf3,0xf2,0xf1,0xf0,0xef,0xec,0xeb,0xeb,0xed,0xee,0xf0,0xf1, - 0xf4,0xf9,0xfd,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe, - 0xff,0x01,0x01,0x00,0xfd,0xfa,0xf8,0xf7,0xf6,0xf5,0xf3,0xf2, - 0xf1,0xf2,0xf3,0xf3,0xf2,0xf0,0xf0,0xf2,0xf7,0xfb,0xfe,0x00, - 0x04,0x0a,0x13,0x1b,0x22,0x27,0x2d,0x35,0x3d,0x42,0x44,0x42, - 0x3f,0x3d,0x3e,0x3f,0x3d,0x3b,0x39,0x3a,0x3c,0x3d,0x3a,0x33, - 0x2a,0x24,0x20,0x1d,0x19,0x14,0x0e,0x0a,0x08,0x07,0x03,0xfc, - 0xf6,0xf3,0xf6,0xfb,0x00,0x04,0x06,0x0a,0x0e,0x0f,0x0c,0x05, - 0xfc,0xf5,0xf1,0xef,0xed,0xea,0xe6,0xe2,0xe0,0xde,0xdb,0xd4, - 0xcc,0xc6,0xc4,0xc5,0xc7,0xc7,0xc6,0xc5,0xc7,0xc9,0xc9,0xc7, - 0xc4,0xc2,0xc2,0xc6,0xca,0xce,0xd2,0xd7,0xde,0xe6,0xef,0xf7, - 0xfe,0x02,0x05,0x0a,0x0e,0x11,0x12,0x10,0x0e,0x0f,0x11,0x13, - 0x12,0x10,0x0d,0x0c,0x0b,0x0a,0x08,0x05,0x03,0x03,0x03,0x04, - 0x03,0x02,0x01,0x00,0x00,0xff,0xfd,0xfb,0xfa,0xfc,0xfe,0x00, - 0x02,0x03,0x04,0x06,0x08,0x0a,0x0a,0x09,0x06,0x05,0x04,0x04, - 0x02,0xfe,0xfa,0xf8,0xf7,0xf5,0xf3,0xf0,0xed,0xec,0xeb,0xeb, - 0xec,0xed,0xed,0xed,0xed,0xed,0xed,0xec,0xea,0xe9,0xe9,0xea, - 0xec,0xee,0xf1,0xf5,0xf9,0xfc,0xff,0x00,0x01,0x01,0x02,0x03, - 0x02,0x01,0x00,0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x03,0x06, - 0x08,0x09,0x08,0x08,0x08,0x0a,0x0b,0x0a,0x07,0x05,0x04,0x05, - 0x06,0x06,0x05,0x03,0x02,0x04,0x06,0x08,0x08,0x05,0x03,0x01, - 0x02,0x01,0xfe,0xfa,0xf7,0xf7,0xf9,0xfb,0xfc,0xfc,0xfb,0xfa, - 0xfb,0xfc,0xfc,0xfb,0xf9,0xf7,0xf6,0xf8,0xfa,0xfc,0xfd,0xfd, - 0xff,0x02,0x05,0x06,0x05,0x04,0x03,0x03,0x03,0x03,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x00,0xfe,0xfc,0xfb,0xfc,0xfe,0x00, - 0x01,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x02,0x03, - 0x03,0x01,0xff,0xfd,0xfd,0xfd,0xfe,0x00,0x01,0x04,0x08,0x0b, - 0x0c,0x0b,0x09,0x05,0x02,0xff,0xfd,0xfa,0xf7,0xf6,0xf6,0xf8, - 0xfa,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xfb,0xf9,0xf7,0xf5,0xf6, - 0xf6,0xf5,0xf4,0xf3,0xf4,0xf8,0xfd,0x02,0x05,0x07,0x08,0x09, - 0x0b,0x0c,0x0b,0x0a,0x09,0x09,0x0a,0x0c,0x0e,0x0e,0x0f,0x11, - 0x14,0x17,0x19,0x18,0x17,0x15,0x12,0x0f,0x0b,0x06,0x01,0xfd, - 0xfa,0xf9,0xfa,0xfc,0xfd,0xfe,0xfe,0xff,0x00,0x02,0x02,0x02, - 0x01,0xff,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0x03,0x0a,0x10,0x14, - 0x16,0x15,0x13,0x10,0x0c,0x07,0x01,0xfc,0xf9,0xf6,0xf5,0xf4, - 0xf2,0xef,0xec,0xea,0xe9,0xe9,0xeb,0xee,0xf0,0xf1,0xf3,0xf4, - 0xf4,0xf4,0xf3,0xf3,0xf4,0xf7,0xfd,0x04,0x0b,0x13,0x1b,0x24, - 0x2d,0x33,0x37,0x39,0x39,0x38,0x37,0x36,0x35,0x34,0x34,0x35, - 0x39,0x3c,0x3e,0x3c,0x37,0x30,0x2a,0x25,0x22,0x21,0x1f,0x1e, - 0x1e,0x1e,0x1c,0x16,0x0c,0x00,0xf5,0xee,0xec,0xee,0xf2,0xf7, - 0xfc,0x01,0x05,0x06,0x02,0xfa,0xf1,0xe9,0xe5,0xe3,0xe2,0xe0, - 0xdd,0xdd,0xde,0xe1,0xe1,0xde,0xd9,0xd5,0xd4,0xd4,0xd3,0xd0, - 0xcc,0xc9,0xc9,0xcc,0xce,0xce,0xcd,0xcb,0xca,0xcd,0xd1,0xd5, - 0xd9,0xde,0xe5,0xef,0xfa,0x03,0x08,0x09,0x07,0x06,0x06,0x05, - 0x04,0x03,0x04,0x08,0x0e,0x14,0x17,0x18,0x17,0x17,0x17,0x16, - 0x15,0x13,0x10,0x0e,0x0b,0x07,0x02,0xfb,0xf4,0xee,0xec,0xed, - 0xee,0xf1,0xf5,0xfb,0x01,0x06,0x08,0x06,0x02,0xfd,0xf9,0xf6, - 0xf4,0xf3,0xf3,0xf5,0xf9,0xfd,0x02,0x05,0x06,0x07,0x07,0x05, - 0x02,0xfe,0xf9,0xf3,0xee,0xeb,0xea,0xe9,0xe9,0xea,0xec,0xed, - 0xed,0xec,0xeb,0xe9,0xe8,0xe8,0xea,0xed,0xf0,0xf3,0xf5,0xf6, - 0xf7,0xf8,0xf9,0xfa,0xfc,0xff,0x03,0x08,0x0d,0x10,0x12,0x12, - 0x12,0x11,0x11,0x10,0x0f,0x0e,0x0e,0x0d,0x0c,0x0b,0x09,0x07, - 0x05,0x03,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01, - 0xff,0xfc,0xf9,0xf7,0xf7,0xf7,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe, - 0xfd,0xfb,0xf8,0xf6,0xf5,0xf6,0xf9,0xfc,0xfe,0xff,0x01,0x02, - 0x02,0x01,0x00,0xff,0xff,0x00,0x01,0x02,0x01,0x01,0x01,0x01, - 0x02,0x02,0x03,0x03,0x04,0x03,0x02,0x00,0xfe,0xfb,0xf8,0xf7, - 0xf8,0xf9,0xfc,0xfe,0xff,0x00,0x01,0x01,0x01,0x00,0xfe,0xfd, - 0xfe,0x01,0x04,0x05,0x04,0x04,0x04,0x07,0x09,0x0a,0x09,0x08, - 0x08,0x09,0x09,0x08,0x04,0x00,0xfe,0xff,0x02,0x04,0x04,0x03, - 0x02,0x02,0x02,0x01,0xfd,0xf8,0xf4,0xf1,0xf2,0xf3,0xf3,0xf2, - 0xf0,0xee,0xee,0xee,0xee,0xed,0xeb,0xec,0xef,0xf4,0xf9,0xfd, - 0x00,0x01,0x02,0x03,0x04,0x04,0x03,0x04,0x07,0x0d,0x14,0x19, - 0x1d,0x1d,0x1b,0x19,0x17,0x15,0x12,0x0f,0x0e,0x0f,0x12,0x16, - 0x16,0x14,0x0f,0x0a,0x06,0x02,0xff,0xfd,0xfb,0xfd,0x00,0x04, - 0x08,0x0a,0x09,0x06,0x02,0xfe,0xfa,0xf6,0xf4,0xf3,0xf5,0xf9, - 0xff,0x06,0x0d,0x10,0x11,0x10,0x0d,0x08,0x03,0xfe,0xfc,0xfc, - 0xff,0x02,0x03,0x01,0xfc,0xf5,0xec,0xe4,0xdc,0xd8,0xd9,0xde, - 0xe7,0xf0,0xf8,0xfc,0xfc,0xfa,0xf5,0xf0,0xec,0xea,0xec,0xf3, - 0xfe,0x0b,0x18,0x22,0x2a,0x31,0x36,0x3a,0x3c,0x3b,0x3a,0x39, - 0x38,0x39,0x38,0x36,0x33,0x30,0x2d,0x2c,0x2b,0x29,0x26,0x23, - 0x21,0x21,0x23,0x23,0x22,0x1f,0x1b,0x17,0x12,0x0c,0x05,0xfd, - 0xf5,0xf2,0xf3,0xf9,0x01,0x07,0x0d,0x11,0x14,0x15,0x13,0x0c, - 0x03,0xf9,0xf3,0xf0,0xef,0xec,0xe7,0xe2,0xdf,0xdc,0xd9,0xd3, - 0xcc,0xc7,0xc4,0xc5,0xc6,0xc6,0xc4,0xc1,0xbe,0xbd,0xbd,0xbd, - 0xbd,0xbe,0xc0,0xc5,0xcd,0xd6,0xde,0xe5,0xec,0xf5,0xfe,0x08, - 0x0e,0x11,0x12,0x12,0x13,0x14,0x14,0x13,0x12,0x11,0x13,0x15, - 0x16,0x16,0x14,0x11,0x0f,0x0d,0x0c,0x09,0x06,0x01,0xfe,0xfd, - 0xfc,0xfb,0xf8,0xf5,0xf2,0xf1,0xf1,0xf3,0xf4,0xf5,0xf6,0xf8, - 0xfb,0xff,0x02,0x04,0x04,0x04,0x05,0x06,0x07,0x06,0x04,0x01, - 0x00,0x01,0x02,0x02,0x02,0x01,0x00,0xfe,0xfd,0xfb,0xf8,0xf3, - 0xed,0xe8,0xe5,0xe4,0xe4,0xe4,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9, - 0xe8,0xe9,0xe9,0xec,0xf0,0xf5,0xfa,0xfe,0x02,0x04,0x07,0x08, - 0x08,0x07,0x06,0x06,0x09,0x0c,0x0f,0x11,0x12,0x12,0x12,0x13, - 0x12,0x11,0x0d,0x09,0x07,0x06,0x05,0x04,0x01,0xff,0xfd,0xfd, - 0xfd,0xfd,0xfc,0xf9,0xf6,0xf4,0xf3,0xf3,0xf3,0xf4,0xf5,0xf7, - 0xf9,0xfb,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb,0xfd,0x00,0x02,0x04, - 0x06,0x08,0x0a,0x0b,0x0a,0x08,0x06,0x05,0x05,0x04,0x02,0xff, - 0xfb,0xf9,0xf9,0xfa,0xfb,0xfc,0xfd,0xff,0x01,0x03,0x03,0x01, - 0xfe,0xfa,0xf7,0xf7,0xf7,0xf8,0xf9,0xfb,0xfe,0x02,0x05,0x06, - 0x06,0x05,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01, - 0x01,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05, - 0x05,0x05,0x05,0x04,0x03,0x02,0x01,0x00,0x00,0x00,0x01,0x01, - 0x02,0x02,0x01,0x00,0xfe,0xfd,0xfa,0xf7,0xf3,0xf1,0xef,0xee, - 0xed,0xeb,0xea,0xea,0xeb,0xee,0xf2,0xf6,0xfa,0xfe,0x03,0x07, - 0x0a,0x0c,0x0c,0x0b,0x0b,0x0b,0x0c,0x0e,0x0f,0x11,0x12,0x15, - 0x17,0x19,0x1b,0x1c,0x1d,0x1e,0x1f,0x1d,0x19,0x14,0x0d,0x07, - 0x02,0xfd,0xfa,0xf8,0xf8,0xfa,0xfe,0x00,0x01,0x00,0xff,0xfe, - 0xfd,0xfb,0xf9,0xf6,0xf4,0xf3,0xf3,0xf5,0xf7,0xf9,0xfa,0xfe, - 0x04,0x0a,0x10,0x12,0x12,0x11,0x0f,0x0d,0x0a,0x06,0x02,0xfd, - 0xf9,0xf5,0xf3,0xf0,0xed,0xeb,0xea,0xea,0xec,0xee,0xf2,0xf4, - 0xf6,0xf7,0xf6,0xf5,0xf3,0xf2,0xf1,0xf1,0xf4,0xf9,0x00,0x08, - 0x11,0x1a,0x22,0x2b,0x32,0x36,0x39,0x3b,0x3a,0x38,0x34,0x30, - 0x2d,0x2b,0x2a,0x2a,0x2d,0x30,0x33,0x34,0x32,0x2d,0x28,0x23, - 0x1e,0x1a,0x17,0x14,0x11,0x11,0x11,0x10,0x0b,0x04,0xfd,0xf8, - 0xf7,0xf8,0xfb,0xfe,0x01,0x05,0x09,0x0a,0x08,0x01,0xf9,0xf1, - 0xec,0xea,0xe8,0xe6,0xe5,0xe3,0xe3,0xe3,0xe0,0xdb,0xd6,0xd1, - 0xcf,0xcd,0xcb,0xc9,0xc8,0xc8,0xc8,0xc9,0xc9,0xca,0xcb,0xcb, - 0xcc,0xcd,0xcf,0xd2,0xd7,0xdd,0xe6,0xef,0xf9,0x02,0x08,0x0c, - 0x0d,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x11,0x17,0x1d,0x22,0x23, - 0x21,0x1e,0x1a,0x15,0x10,0x0a,0x05,0x02,0x02,0x02,0x02,0x01, - 0xfd,0xf8,0xf4,0xf0,0xed,0xea,0xe7,0xe7,0xea,0xef,0xf5,0xf9, - 0xfc,0xfe,0xff,0x00,0x00,0xfe,0xfc,0xfb,0xfc,0xff,0x03,0x06, - 0x08,0x0a,0x0b,0x0c,0x0c,0x09,0x04,0x01,0xfe,0xfe,0xfd,0xfb, - 0xf8,0xf5,0xf3,0xf0,0xeb,0xe6,0xe1,0xdd,0xdc,0xde,0xe1,0xe4, - 0xe7,0xea,0xed,0xef,0xf0,0xf0,0xf0,0xf2,0xf5,0xfa,0xff,0x04, - 0x08,0x0b,0x0e,0x0f,0x0f,0x0f,0x0d,0x0c,0x0d,0x0e,0x11,0x14, - 0x16,0x18,0x18,0x18,0x16,0x12,0x0e,0x0a,0x06,0x03,0x00,0xfd, - 0xfb,0xf9,0xf8,0xf6,0xf3,0xf0,0xed,0xec,0xec,0xed,0xee,0xef, - 0xf2,0xf5,0xf8,0xf9,0xf8,0xf8,0xf9,0xfa,0xfc,0xfd,0xff,0x02, - 0x05,0x08,0x0a,0x0b,0x0a,0x0a,0x09,0x08,0x08,0x08,0x08,0x09, - 0x09,0x0a,0x09,0x08,0x07,0x04,0x01,0xfd,0xf9,0xf6,0xf5,0xf5, - 0xf4,0xf5,0xf6,0xf7,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfc,0xfd, - 0xfd,0xfe,0x00,0x02,0x02,0x01,0xfe,0xfc,0xfb,0xfd,0xff,0x00, - 0x02,0x05,0x09,0x0d,0x10,0x10,0x0f,0x0d,0x0c,0x0b,0x09,0x06, - 0x03,0x01,0xff,0xff,0x00,0x01,0x01,0x02,0x01,0x01,0x01,0x00, - 0xfe,0xfb,0xf7,0xf4,0xf1,0xef,0xee,0xec,0xeb,0xeb,0xec,0xee, - 0xf2,0xf6,0xf9,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xfd,0xfc,0xfc, - 0xfe,0x02,0x07,0x0a,0x0e,0x11,0x14,0x16,0x17,0x17,0x15,0x12, - 0x0f,0x0e,0x0d,0x0d,0x0e,0x0f,0x11,0x14,0x16,0x15,0x13,0x10, - 0x0c,0x07,0x02,0xfe,0xfa,0xf9,0xf9,0xfa,0xfc,0xfd,0xff,0x00, - 0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x00,0xfe,0xfd,0xfb,0xfb, - 0xfb,0xfd,0x00,0x04,0x0a,0x0f,0x11,0x11,0x0e,0x0a,0x07,0x04, - 0x00,0xfa,0xf4,0xef,0xeb,0xe9,0xe8,0xe6,0xe4,0xe3,0xe5,0xea, - 0xf0,0xf4,0xf6,0xf4,0xf2,0xf1,0xef,0xee,0xec,0xeb,0xed,0xf3, - 0xfb,0x05,0x0d,0x15,0x1c,0x25,0x2d,0x36,0x3c,0x40,0x43,0x43, - 0x41,0x3e,0x39,0x35,0x31,0x30,0x31,0x33,0x35,0x36,0x35,0x34, - 0x31,0x2e,0x2a,0x25,0x1f,0x1c,0x19,0x17,0x14,0x0d,0x05,0xfc, - 0xf4,0xf0,0xef,0xef,0xf1,0xf5,0xfc,0x03,0x0a,0x0b,0x08,0x01, - 0xfa,0xf2,0xeb,0xe4,0xdc,0xd6,0xd2,0xd1,0xd2,0xd4,0xd5,0xd6, - 0xd8,0xd9,0xd9,0xd8,0xd6,0xd2,0xcd,0xc8,0xc4,0xc2,0xc1,0xc2, - 0xc4,0xc6,0xc9,0xce,0xd3,0xd8,0xde,0xe5,0xed,0xf5,0xff,0x07, - 0x0e,0x11,0x11,0x10,0x0e,0x0c,0x0a,0x0a,0x0b,0x0e,0x15,0x1d, - 0x25,0x29,0x29,0x27,0x23,0x1f,0x19,0x11,0x09,0x02,0xfe,0xfb, - 0xfa,0xf8,0xf6,0xf5,0xf4,0xf3,0xf3,0xf2,0xf2,0xf2,0xf2,0xf3, - 0xf5,0xf7,0xf8,0xf8,0xf7,0xf6,0xf5,0xf5,0xf4,0xf5,0xf8,0xfc, - 0x02,0x07,0x0d,0x10,0x12,0x12,0x0f,0x0a,0x05,0xff,0xfb,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf6,0xf2,0xed,0xe9,0xe6,0xe4, - 0xe4,0xe6,0xe8,0xea,0xec,0xec,0xeb,0xea,0xe9,0xe9,0xe9,0xeb, - 0xee,0xf3,0xfa,0x01,0x07,0x0c,0x0f,0x10,0x10,0x11,0x10,0x0f, - 0x0f,0x10,0x12,0x15,0x17,0x19,0x19,0x18,0x16,0x13,0x10,0x0b, - 0x06,0x02,0xfe,0xfc,0xfb,0xfa,0xf9,0xf6,0xf4,0xf2,0xf1,0xf1, - 0xef,0xed,0xeb,0xeb,0xed,0xf0,0xf3,0xf5,0xf7,0xfa,0xfd,0x00, - 0x01,0x02,0x01,0x01,0x02,0x04,0x07,0x0b,0x0d,0x0f,0x10,0x10, - 0x0f,0x0c,0x07,0x02,0xff,0xfe,0xfe,0xff,0x00,0x01,0x01,0x01, - 0xff,0xfd,0xfa,0xf7,0xf4,0xf3,0xf4,0xf6,0xf8,0xfb,0xfc,0xfb, - 0xf9,0xf7,0xf6,0xf6,0xf6,0xf6,0xf8,0xfc,0x02,0x07,0x0a,0x0a, - 0x09,0x08,0x07,0x06,0x05,0x04,0x04,0x04,0x07,0x0a,0x0c,0x0d, - 0x0c,0x0a,0x08,0x07,0x06,0x05,0x04,0x03,0x03,0x05,0x06,0x07, - 0x05,0x01,0xfc,0xf9,0xf6,0xf4,0xf2,0xf2,0xf3,0xf5,0xf7,0xf9, - 0xfa,0xf8,0xf5,0xf2,0xef,0xec,0xeb,0xeb,0xec,0xef,0xf4,0xf9, - 0xfe,0x02,0x05,0x07,0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0c, - 0x0e,0x11,0x13,0x15,0x16,0x17,0x17,0x16,0x13,0x11,0x10,0x10, - 0x10,0x10,0x0f,0x0d,0x0b,0x07,0x03,0xfe,0xf9,0xf6,0xf5,0xf6, - 0xf8,0xfa,0xfb,0xfd,0xfe,0xfe,0xfd,0xfb,0xf9,0xf7,0xf8,0xfb, - 0xfe,0x01,0x03,0x05,0x08,0x0b,0x0e,0x0f,0x0e,0x0d,0x0c,0x0b, - 0x0b,0x08,0x05,0x02,0x00,0xff,0xfe,0xfc,0xf9,0xf5,0xf2,0xef, - 0xec,0xe9,0xe6,0xe6,0xe7,0xeb,0xef,0xf2,0xf5,0xf5,0xf5,0xf4, - 0xf2,0xf1,0xf0,0xf2,0xf7,0xff,0x07,0x0f,0x16,0x1d,0x22,0x26, - 0x29,0x2a,0x2b,0x2c,0x2d,0x30,0x33,0x35,0x35,0x35,0x34,0x33, - 0x32,0x30,0x2c,0x27,0x22,0x1e,0x1d,0x1e,0x1e,0x1f,0x20,0x21, - 0x22,0x21,0x1b,0x12,0x06,0xfd,0xf6,0xf3,0xf2,0xf3,0xf6,0xfb, - 0x01,0x07,0x0a,0x08,0x02,0xfa,0xf4,0xef,0xed,0xea,0xe6,0xe3, - 0xe0,0xdf,0xde,0xdb,0xd6,0xd0,0xcd,0xcc,0xce,0xd0,0xd2,0xd3, - 0xd4,0xd4,0xd5,0xd5,0xd3,0xd0,0xce,0xcc,0xcd,0xd1,0xd7,0xdc, - 0xe2,0xe9,0xf1,0xf9,0x00,0x04,0x04,0x04,0x04,0x06,0x08,0x0a, - 0x0d,0x0f,0x13,0x17,0x1a,0x1a,0x17,0x14,0x11,0x0e,0x0d,0x0d, - 0x0d,0x0c,0x0c,0x0b,0x0a,0x07,0x03,0xff,0xfa,0xf6,0xf4,0xf2, - 0xf2,0xf2,0xf3,0xf5,0xf7,0xf9,0xfa,0xfa,0xfa,0xfa,0xfb,0xfd, - 0xff,0x00,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x06, - 0x07,0x07,0x06,0x05,0x03,0x01,0xff,0xfc,0xfa,0xf7,0xf4,0xf2, - 0xef,0xec,0xe9,0xe6,0xe3,0xe3,0xe4,0xe7,0xe9,0xec,0xef,0xf3, - 0xf6,0xf8,0xf7,0xf5,0xf3,0xf2,0xf1,0xf1,0xf3,0xf6,0xfa,0xff, - 0x05,0x09,0x0d,0x11,0x13,0x15,0x15,0x14,0x13,0x12,0x12,0x11, - 0x10,0x0d,0x0b,0x09,0x07,0x05,0x03,0x02,0x00,0x00,0x01,0x02, - 0x02,0x01,0xfe,0xfc,0xf9,0xf6,0xf3,0xef,0xeb,0xe8,0xe8,0xeb, - 0xef,0xf2,0xf6,0xf9,0xfb,0xfd,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe, - 0x01,0x05,0x09,0x0b,0x0d,0x0d,0x0c,0x0b,0x0b,0x0a,0x09,0x08, - 0x08,0x0a,0x0c,0x0d,0x0d,0x0a,0x07,0x03,0x00,0xfd,0xfa,0xf8, - 0xf6,0xf6,0xf8,0xfb,0xfc,0xfb,0xf9,0xf7,0xf5,0xf2,0xef,0xed, - 0xed,0xef,0xf3,0xf8,0xfd,0x00,0x02,0x02,0x01,0xff,0xfd,0xfd, - 0xfe,0x01,0x05,0x0b,0x11,0x16,0x19,0x18,0x16,0x12,0x0e,0x0a, - 0x07,0x05,0x05,0x05,0x06,0x07,0x07,0x06,0x02,0xfd,0xf7,0xf2, - 0xef,0xec,0xe9,0xe8,0xe7,0xe8,0xe9,0xea,0xe9,0xe9,0xe9,0xeb, - 0xed,0xf1,0xf5,0xf9,0xfd,0x01,0x06,0x09,0x0b,0x0c,0x0b,0x0a, - 0x0a,0x0c,0x0e,0x11,0x14,0x17,0x1a,0x1e,0x20,0x21,0x20,0x1d, - 0x18,0x13,0x0f,0x0c,0x09,0x08,0x06,0x05,0x05,0x04,0x02,0xfe, - 0xfa,0xf6,0xf4,0xf3,0xf5,0xf9,0xfd,0x00,0x02,0x03,0x02,0x00, - 0xfd,0xf8,0xf5,0xf4,0xf6,0xfa,0xfe,0x02,0x06,0x09,0x0c,0x0e, - 0x0e,0x0c,0x09,0x06,0x04,0x03,0x02,0x01,0xfe,0xfa,0xf8,0xf6, - 0xf6,0xf4,0xf2,0xf0,0xee,0xee,0xef,0xf1,0xf1,0xf1,0xf1,0xf2, - 0xf3,0xf3,0xf2,0xf0,0xed,0xeb,0xec,0xef,0xf3,0xf8,0xfd,0x04, - 0x0b,0x12,0x17,0x1a,0x1b,0x1c,0x1d,0x20,0x23,0x26,0x29,0x2b, - 0x2d,0x30,0x33,0x34,0x34,0x32,0x31,0x31,0x31,0x31,0x30,0x2d, - 0x2a,0x28,0x28,0x27,0x24,0x21,0x1d,0x1b,0x1a,0x17,0x12,0x0b, - 0x03,0xfd,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6,0xf8,0xf9,0xf7,0xf3, - 0xec,0xe6,0xe2,0xe1,0xe1,0xdf,0xdc,0xdb,0xdb,0xdd,0xde,0xdd, - 0xda,0xd8,0xd8,0xda,0xdc,0xdc,0xda,0xd8,0xd8,0xda,0xdd,0xde, - 0xdc,0xdb,0xdb,0xdc,0xde,0xde,0xde,0xdf,0xe3,0xe9,0xf1,0xf8, - 0xfe,0x02,0x05,0x07,0x08,0x07,0x04,0x02,0x00,0x01,0x03,0x07, - 0x0b,0x0e,0x10,0x11,0x11,0x12,0x11,0x10,0x0e,0x0b,0x09,0x08, - 0x07,0x06,0x04,0x01,0xfe,0xfc,0xfa,0xfa,0xfb,0xfb,0xfc,0xfe, - 0x01,0x04,0x07,0x09,0x09,0x08,0x05,0x03,0x01,0xff,0xfe,0xfc, - 0xfb,0xfc,0xff,0x02,0x07,0x0a,0x0b,0x0c,0x0b,0x09,0x06,0x02, - 0xfd,0xf8,0xf4,0xf1,0xf0,0xef,0xef,0xef,0xef,0xef,0xef,0xef, - 0xee,0xec,0xeb,0xea,0xea,0xeb,0xec,0xec,0xec,0xed,0xee,0xf0, - 0xf2,0xf5,0xf7,0xfa,0xfd,0x00,0x04,0x07,0x0a,0x0b,0x0b,0x0b, - 0x0a,0x0a,0x0a,0x0a,0x0b,0x0c,0x0d,0x0f,0x10,0x10,0x0f,0x0c, - 0x09,0x05,0x01,0xfe,0xfb,0xfb,0xfb,0xfd,0xff,0x00,0x01,0xff, - 0xfd,0xfa,0xf6,0xf3,0xf1,0xf0,0xef,0xf0,0xf1,0xf3,0xf6,0xf8, - 0xfb,0xfc,0xfd,0xfe,0xff,0x01,0x03,0x05,0x06,0x07,0x08,0x08, - 0x08,0x07,0x06,0x04,0x03,0x03,0x04,0x06,0x09,0x0a,0x0b,0x0b, - 0x0a,0x08,0x04,0xff,0xfa,0xf6,0xf3,0xf1,0xf0,0xf1,0xf3,0xf5, - 0xf7,0xf9,0xfb,0xfb,0xf9,0xf6,0xf4,0xf4,0xf6,0xf8,0xfb,0xff, - 0x02,0x06,0x09,0x0a,0x0a,0x09,0x07,0x06,0x07,0x0a,0x0d,0x10, - 0x11,0x13,0x14,0x14,0x12,0x0e,0x09,0x04,0x01,0xff,0xfd,0xfc, - 0xfb,0xfa,0xfa,0xfa,0xf9,0xf6,0xf3,0xf0,0xee,0xed,0xed,0xec, - 0xec,0xee,0xef,0xf1,0xf3,0xf4,0xf5,0xf5,0xf6,0xf8,0xfa,0xfd, - 0xff,0x03,0x06,0x08,0x0b,0x0c,0x0d,0x0f,0x10,0x11,0x12,0x13, - 0x14,0x16,0x18,0x1a,0x1a,0x19,0x17,0x13,0x10,0x0d,0x0a,0x09, - 0x09,0x09,0x0a,0x0b,0x0b,0x09,0x07,0x03,0xfe,0xfa,0xf6,0xf4, - 0xf2,0xf2,0xf2,0xf4,0xf6,0xf8,0xf9,0xfa,0xfb,0xfc,0xfb,0xfb, - 0xfa,0xf9,0xf7,0xf5,0xf4,0xf3,0xf3,0xf6,0xf8,0xfa,0xfc,0xfd, - 0xff,0x02,0x03,0x03,0x01,0xff,0xff,0xff,0xfe,0xfc,0xf8,0xf5, - 0xf4,0xf5,0xf5,0xf5,0xf5,0xf5,0xf8,0xfc,0x00,0x04,0x05,0x05, - 0x05,0x06,0x06,0x04,0x02,0xfe,0xfd,0xfe,0x01,0x04,0x08,0x0d, - 0x12,0x19,0x1f,0x23,0x25,0x24,0x22,0x20,0x1e,0x1c,0x1b,0x1a, - 0x1b,0x1c,0x1f,0x22,0x26,0x28,0x2a,0x2a,0x29,0x29,0x2a,0x2a, - 0x2b,0x29,0x27,0x24,0x20,0x1c,0x17,0x0f,0x08,0x02,0x00,0x01, - 0x03,0x05,0x07,0x08,0x0a,0x09,0x05,0xfc,0xf1,0xe6,0xde,0xd8, - 0xd4,0xd1,0xd0,0xd1,0xd3,0xd6,0xd8,0xd8,0xd7,0xd6,0xd4,0xd3, - 0xd3,0xd3,0xd4,0xd4,0xd4,0xd5,0xd6,0xd9,0xdb,0xde,0xdf,0xe2, - 0xe5,0xeb,0xf1,0xf6,0xfb,0xff,0x02,0x05,0x07,0x07,0x05,0x02, - 0xff,0xfc,0xfc,0xfc,0xfe,0x01,0x05,0x09,0x0b,0x0c,0x0b,0x0a, - 0x08,0x05,0x01,0xfe,0xfc,0xfb,0xfc,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfb,0xfb,0xfc,0xfd,0xff,0x02,0x05,0x07,0x08,0x09,0x09,0x09, - 0x09,0x09,0x08,0x08,0x08,0x0a,0x0d,0x0f,0x10,0x11,0x12,0x12, - 0x12,0x12,0x11,0x0f,0x0b,0x07,0x04,0x01,0xff,0xfc,0xfa,0xf8, - 0xf7,0xf6,0xf5,0xf4,0xf2,0xf0,0xee,0xec,0xea,0xe9,0xe9,0xe8, - 0xe7,0xe7,0xe7,0xe7,0xe8,0xea,0xec,0xef,0xf2,0xf5,0xf9,0xfd, - 0xff,0x00,0x00,0xff,0xfe,0xfe,0xff,0x01,0x03,0x05,0x08,0x0b, - 0x0d,0x0f,0x0f,0x0e,0x0d,0x0b,0x09,0x07,0x05,0x02,0xff,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfe,0xff,0xff,0xfe,0xfd,0xfc, - 0xfb,0xf9,0xf7,0xf6,0xf5,0xf6,0xf8,0xfb,0xfe,0x01,0x03,0x05, - 0x06,0x07,0x07,0x07,0x06,0x06,0x06,0x07,0x08,0x09,0x09,0x08, - 0x07,0x05,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x04,0x03,0x01, - 0xfe,0xfa,0xf6,0xf3,0xf1,0xf0,0xef,0xef,0xef,0xf0,0xf2,0xf5, - 0xf7,0xf8,0xf9,0xf9,0xfa,0xfa,0xfb,0xfb,0xfa,0xfa,0xfa,0xfc, - 0xff,0x02,0x05,0x08,0x0a,0x0c,0x0e,0x0e,0x0e,0x0c,0x0b,0x08, - 0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x01,0xfe, - 0xfc,0xfa,0xf9,0xf8,0xf7,0xf6,0xf5,0xf5,0xf5,0xf6,0xf6,0xf7, - 0xf8,0xf9,0xfb,0xfd,0xff,0x01,0x03,0x05,0x07,0x08,0x0a,0x0a, - 0x0b,0x0b,0x0c,0x0d,0x0f,0x11,0x13,0x15,0x16,0x16,0x15,0x13, - 0x10,0x0e,0x0c,0x0a,0x09,0x09,0x09,0x09,0x08,0x07,0x04,0x02, - 0x00,0xfd,0xfa,0xf7,0xf5,0xf4,0xf3,0xf3,0xf2,0xf1,0xf0,0xef, - 0xf0,0xf1,0xf1,0xf2,0xf4,0xf6,0xf9,0xfb,0xfc,0xfb,0xf9,0xf7, - 0xf7,0xf7,0xf8,0xfa,0xfb,0xfd,0x00,0x03,0x05,0x05,0x03,0x00, - 0xfd,0xfc,0xfb,0xfc,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xfd,0xf9, - 0xf6,0xf4,0xf3,0xf5,0xf8,0xfc,0x00,0x03,0x05,0x07,0x07,0x06, - 0x04,0x02,0x00,0x01,0x04,0x09,0x0e,0x11,0x14,0x16,0x19,0x1c, - 0x1d,0x1d,0x1b,0x1b,0x1b,0x1d,0x1f,0x20,0x20,0x1f,0x1f,0x20, - 0x21,0x20,0x1d,0x1b,0x1a,0x1b,0x1d,0x1f,0x20,0x20,0x20,0x20, - 0x1f,0x1d,0x19,0x12,0x0b,0x07,0x04,0x04,0x03,0x03,0x03,0x04, - 0x06,0x07,0x06,0x01,0xfb,0xf4,0xee,0xe9,0xe6,0xe3,0xe0,0xdf, - 0xdf,0xe1,0xe3,0xe3,0xe2,0xe1,0xdf,0xdd,0xdc,0xdb,0xda,0xd9, - 0xd8,0xd8,0xd8,0xd9,0xda,0xdc,0xdd,0xde,0xdf,0xe2,0xe5,0xea, - 0xed,0xf0,0xf2,0xf5,0xf8,0xfb,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xff,0x00,0x01,0x02,0x04,0x06,0x07,0x06,0x05,0x02,0x00,0xff, - 0xfe,0xfe,0xfe,0xfe,0x00,0x01,0x02,0x02,0x02,0x00,0xfe,0xfc, - 0xfb,0xfc,0xfe,0x01,0x03,0x06,0x08,0x0a,0x0a,0x0a,0x09,0x08, - 0x07,0x08,0x09,0x0b,0x0e,0x10,0x11,0x10,0x0f,0x0e,0x0c,0x0b, - 0x09,0x07,0x06,0x07,0x07,0x07,0x06,0x03,0x00,0xfe,0xfc,0xfb, - 0xf9,0xf8,0xf7,0xf6,0xf6,0xf7,0xf6,0xf5,0xf3,0xf1,0xef,0xef, - 0xef,0xf0,0xf1,0xf1,0xf2,0xf2,0xf4,0xf5,0xf5,0xf5,0xf5,0xf6, - 0xf8,0xfc,0xfe,0x00,0x02,0x03,0x04,0x05,0x04,0x03,0x01,0x00, - 0x01,0x02,0x04,0x06,0x07,0x06,0x06,0x05,0x04,0x03,0x00,0xfd, - 0xfa,0xf9,0xf9,0xfa,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd, - 0xfb,0xf9,0xf7,0xf6,0xf7,0xf9,0xfb,0xfd,0xfe,0x00,0x02,0x04, - 0x04,0x03,0x02,0x00,0xff,0xfe,0xff,0x00,0x02,0x04,0x05,0x07, - 0x08,0x08,0x07,0x05,0x02,0x00,0xff,0xfe,0xfe,0xfd,0xfc,0xfc, - 0xfd,0xff,0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfd,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x02, - 0x03,0x05,0x06,0x07,0x08,0x08,0x07,0x06,0x03,0x01,0xff,0xfe, - 0xfd,0xfe,0xff,0x01,0x02,0x03,0x03,0x02,0x00,0xfe,0xfb,0xf7, - 0xf4,0xf3,0xf3,0xf5,0xf7,0xfa,0xfc,0xfe,0xff,0x00,0x00,0x00, - 0xff,0xff,0x00,0x01,0x03,0x05,0x06,0x07,0x08,0x09,0x08,0x08, - 0x08,0x08,0x09,0x0a,0x0d,0x10,0x13,0x15,0x15,0x13,0x10,0x0c, - 0x08,0x04,0x02,0x01,0x02,0x03,0x05,0x08,0x09,0x09,0x06,0x01, - 0xfb,0xf7,0xf4,0xf2,0xf1,0xf1,0xf1,0xf3,0xf4,0xf5,0xf5,0xf4, - 0xf2,0xf0,0xf0,0xf0,0xf2,0xf4,0xf7,0xf8,0xf9,0xf9,0xf9,0xf8, - 0xf7,0xf6,0xf7,0xf8,0xfa,0xfd,0x00,0x02,0x04,0x04,0x04,0x04, - 0x03,0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x01,0x01, - 0xff,0xfe,0xfe,0xfe,0x00,0x02,0x05,0x07,0x0a,0x0d,0x11,0x15, - 0x18,0x19,0x19,0x19,0x19,0x1a,0x1b,0x1c,0x1c,0x1d,0x1f,0x22, - 0x25,0x26,0x26,0x24,0x22,0x21,0x21,0x21,0x22,0x21,0x20,0x20, - 0x1f,0x1e,0x1a,0x14,0x0c,0x05,0x02,0x00,0x01,0x01,0x02,0x03, - 0x03,0x02,0x00,0xfb,0xf4,0xeb,0xe3,0xdf,0xdd,0xde,0xdf,0xe1, - 0xe2,0xe3,0xe4,0xe5,0xe4,0xe0,0xdd,0xd9,0xd8,0xd9,0xdb,0xde, - 0xe0,0xe2,0xe3,0xe5,0xe7,0xe9,0xea,0xea,0xe9,0xea,0xec,0xf0, - 0xf3,0xf6,0xf7,0xf9,0xfb,0xfd,0xff,0x00,0xff,0xfe,0xfc,0xfc, - 0xfd,0xfe,0xfe,0xfe,0xfd,0xfe,0xff,0x00,0x01,0xff,0xfd,0xfb, - 0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xf9,0xf7,0xf5, - 0xf5,0xf7,0xfb,0xff,0x03,0x07,0x0a,0x0c,0x0d,0x0c,0x09,0x06, - 0x04,0x03,0x03,0x05,0x08,0x0b,0x0f,0x13,0x16,0x17,0x16,0x14, - 0x11,0x0e,0x0c,0x0a,0x08,0x06,0x05,0x04,0x04,0x03,0x03,0x01, - 0x00,0xff,0xfe,0xfe,0xfd,0xfc,0xfa,0xf9,0xf8,0xf7,0xf6,0xf4, - 0xf1,0xef,0xee,0xed,0xee,0xef,0xf1,0xf2,0xf5,0xf8,0xfb,0xfd, - 0xfd,0xfc,0xfa,0xf9,0xf9,0xf8,0xf8,0xf8,0xf9,0xfc,0xff,0x01, - 0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x03,0x02,0x02,0x01,0x01, - 0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb, - 0xfd,0x00,0x02,0x04,0x04,0x03,0x02,0x00,0xfe,0xfc,0xfc,0xfb, - 0xfc,0xfd,0x00,0x03,0x06,0x07,0x07,0x06,0x05,0x03,0x01,0x00, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfd, - 0xfd,0xfe,0xff,0x01,0x03,0x04,0x06,0x07,0x07,0x05,0x03,0x00, - 0xfc,0xfa,0xfa,0xfb,0xfd,0xff,0x01,0x03,0x04,0x05,0x05,0x04, - 0x01,0xfe,0xfc,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x04,0x04,0x04,0x04,0x04, - 0x05,0x06,0x06,0x07,0x08,0x09,0x0a,0x0c,0x0c,0x0c,0x0b,0x0a, - 0x09,0x08,0x07,0x06,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x02, - 0x01,0x00,0xff,0xfe,0xfc,0xf9,0xf6,0xf4,0xf2,0xf1,0xf1,0xf2, - 0xf3,0xf4,0xf5,0xf6,0xf6,0xf6,0xf5,0xf3,0xf2,0xf3,0xf4,0xf5, - 0xf7,0xf9,0xfa,0xfd,0xfe,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x01,0x03,0x04,0x06,0x07,0x08,0x09,0x08, - 0x06,0x03,0x01,0xff,0xfd,0xfc,0xfb,0xfc,0xfe,0x00,0x02,0x04, - 0x04,0x05,0x05,0x06,0x06,0x05,0x04,0x04,0x04,0x05,0x06,0x07, - 0x08,0x08,0x09,0x0c,0x0f,0x12,0x14,0x16,0x17,0x18,0x19,0x1a, - 0x1a,0x18,0x17,0x16,0x16,0x17,0x18,0x18,0x18,0x19,0x1a,0x1c, - 0x1e,0x1f,0x1e,0x1d,0x1b,0x19,0x17,0x14,0x11,0x0c,0x07,0x04, - 0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x00,0xfe,0xf9,0xf4,0xef, - 0xec,0xe9,0xe8,0xe7,0xe6,0xe6,0xe6,0xe6,0xe6,0xe5,0xe4,0xe3, - 0xe2,0xe1,0xe1,0xe1,0xe2,0xe2,0xe3,0xe3,0xe4,0xe5,0xe7,0xe9, - 0xea,0xeb,0xec,0xee,0xf1,0xf3,0xf5,0xf6,0xf7,0xf9,0xfb,0xfc, - 0xfd,0xfc,0xfb,0xfa,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0xff,0x00, - 0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfc, - 0xfb,0xfa,0xf9,0xf8,0xf8,0xfa,0xfc,0xff,0x01,0x03,0x04,0x04, - 0x04,0x03,0x02,0x00,0xff,0x00,0x01,0x04,0x07,0x0a,0x0b,0x0d, - 0x0e,0x0e,0x0e,0x0c,0x09,0x06,0x05,0x06,0x07,0x07,0x07,0x07, - 0x07,0x07,0x07,0x06,0x04,0x01,0x00,0x00,0xff,0xff,0xfe,0xfd, - 0xfd,0xfc,0xfb,0xfa,0xf8,0xf6,0xf5,0xf4,0xf4,0xf5,0xf6,0xf7, - 0xf9,0xfa,0xfa,0xfb,0xfb,0xfa,0xf9,0xf8,0xf8,0xf9,0xfa,0xfb, - 0xfc,0xfe,0x00,0x01,0x02,0x01,0x01,0x00,0xff,0xff,0xff,0x00, - 0x01,0x02,0x03,0x03,0x04,0x03,0x01,0xfe,0xfc,0xfb,0xfa,0xfa, - 0xfb,0xfd,0xff,0x02,0x03,0x04,0x04,0x02,0x00,0xfe,0xfc,0xfb, - 0xfa,0xfa,0xfa,0xfc,0xfe,0xff,0x01,0x01,0x00,0x00,0xff,0xff, - 0xff,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0xff,0xfe,0xfc,0xfc, - 0xfc,0xfc,0xfe,0x00,0x02,0x03,0x04,0x03,0x02,0x00,0xff,0xfd, - 0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xfe,0xfe,0xfd,0xfe,0xfe,0xff,0xff,0x00,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x04,0x04,0x04,0x04,0x03, - 0x03,0x02,0x01,0xff,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03, - 0x02,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x02, - 0x03,0x03,0x03,0x02,0x01,0x00,0x00,0x01,0x02,0x03,0x05,0x06, - 0x08,0x09,0x09,0x09,0x08,0x07,0x07,0x06,0x06,0x06,0x06,0x07, - 0x07,0x07,0x06,0x04,0x03,0x01,0x00,0xfe,0xfd,0xfc,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xf9,0xf7,0xf5,0xf4,0xf3,0xf3,0xf3,0xf5,0xf7, - 0xf8,0xf9,0xf9,0xf9,0xf8,0xf8,0xf7,0xf6,0xf5,0xf5,0xf6,0xf9, - 0xfb,0xfd,0xfe,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03,0x03, - 0x03,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x02, - 0x00,0x00,0xff,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfe,0x00,0x01,0x03,0x04,0x05,0x06,0x08,0x09,0x0b,0x0d, - 0x0f,0x12,0x15,0x18,0x19,0x1a,0x1b,0x1b,0x1b,0x1a,0x1a,0x19, - 0x18,0x17,0x16,0x16,0x15,0x14,0x12,0x11,0x11,0x11,0x10,0x0e, - 0x0a,0x05,0x01,0xfd,0xfb,0xf9,0xf9,0xf9,0xfa,0xfc,0xff,0x01, - 0x01,0xff,0xfc,0xfa,0xf9,0xf7,0xf6,0xf4,0xf2,0xf1,0xf0,0xef, - 0xed,0xeb,0xe9,0xe8,0xe7,0xe8,0xe8,0xe8,0xe8,0xe8,0xe9,0xea, - 0xeb,0xec,0xec,0xec,0xed,0xef,0xf2,0xf5,0xf9,0xfc,0x00,0x04, - 0x08,0x0a,0x0b,0x0b,0x0a,0x0a,0x09,0x07,0x05,0x02,0x02,0x02, - 0x03,0x04,0x05,0x06,0x06,0x06,0x06,0x03,0x00,0xfd,0xfb,0xf9, - 0xf9,0xf9,0xfb,0xfe,0x01,0x04,0x06,0x06,0x05,0x03,0x02,0x00, - 0xfe,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa,0xf9, - 0xf8,0xf7,0xf6,0xf6,0xf7,0xf8,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfb,0xfa,0xfb,0xfc,0xff,0x00,0x01,0x01,0x02,0x03, - 0x04,0x04,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00, - 0x02,0x03,0x04,0x04,0x03,0x03,0x02,0x01,0x01,0x00,0xff,0xfe, - 0xfe,0xfe,0xfe,0xff,0xfe,0xfd,0xfc,0xfc,0xfd,0xff,0x00,0x01, - 0x02,0x02,0x04,0x05,0x05,0x03,0x01,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0x00,0xff,0xfe,0xfc,0xfa,0xf9,0xf9,0xf8,0xf9, - 0xfa,0xfb,0xfc,0xfe,0x00,0x01,0x03,0x03,0x04,0x04,0x04,0x05, - 0x06,0x06,0x05,0x04,0x04,0x03,0x02,0x01,0x00,0xff,0xfe,0xfe, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xfc,0xfb,0xfb, - 0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfc,0xfb,0xfa, - 0xfb,0xfc,0xfd,0xfe,0x00,0x02,0x05,0x08,0x09,0x09,0x09,0x08, - 0x07,0x06,0x05,0x03,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xf8,0xf7,0xf7,0xf8,0xf9, - 0xfa,0xfc,0xfe,0x00,0x03,0x05,0x06,0x07,0x08,0x09,0x09,0x09, - 0x09,0x07,0x05,0x03,0x01,0xff,0xfc,0xf9,0xf6,0xf5,0xf4,0xf4, - 0xf4,0xf3,0xf3,0xf3,0xf4,0xf5,0xf7,0xf8,0xfb,0xff,0x04,0x08, - 0x0b,0x0e,0x0f,0x11,0x11,0x11,0x10,0x0f,0x0e,0x0e,0x0e,0x0e, - 0x0e,0x0d,0x0c,0x0a,0x08,0x06,0x03,0x01,0xfe,0xfa,0xf7,0xf5, - 0xf3,0xf3,0xf3,0xf4,0xf6,0xf9,0xfd,0x02,0x06,0x08,0x0a,0x0a, - 0x0a,0x09,0x06,0x04,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfd,0xfa,0xf7,0xf3,0xf0,0xed,0xeb,0xe9,0xe9,0xeb,0xee,0xf2, - 0xf7,0xfd,0x02,0x08,0x0d,0x12,0x17,0x1c,0x1e,0x20,0x22,0x24, - 0x26,0x27,0x26,0x24,0x23,0x21,0x20,0x1e,0x1b,0x18,0x16,0x16, - 0x16,0x16,0x15,0x12,0x0f,0x0c,0x08,0x03,0xfd,0xf8,0xf5,0xf6, - 0xf9,0xfd,0x02,0x07,0x0c,0x0f,0x11,0x0e,0x09,0x02,0xfb,0xf5, - 0xf0,0xec,0xe9,0xe8,0xe8,0xe8,0xe9,0xe9,0xe7,0xe4,0xe0,0xdc, - 0xd8,0xd5,0xd3,0xd1,0xd0,0xd1,0xd3,0xd6,0xdb,0xe0,0xe5,0xea, - 0xf0,0xf6,0xfb,0x00,0x03,0x05,0x07,0x08,0x09,0x09,0x0a,0x0a, - 0x0a,0x0b,0x0c,0x0d,0x0d,0x0c,0x0b,0x0a,0x0a,0x09,0x08,0x07, - 0x06,0x05,0x04,0x03,0x01,0xfe,0xfc,0xfb,0xfb,0xfd,0xfe,0x00, - 0x02,0x04,0x05,0x05,0x03,0xff,0xfa,0xf6,0xf4,0xf3,0xf3,0xf5, - 0xf8,0xfb,0xfe,0xff,0xff,0xfc,0xf8,0xf3,0xef,0xec,0xea,0xe9, - 0xeb,0xee,0xf3,0xf9,0xfd,0x01,0x02,0x03,0x02,0x01,0xff,0xfc, - 0xfa,0xf9,0xfa,0xfc,0xfe,0x00,0x03,0x05,0x06,0x06,0x06,0x06, - 0x05,0x04,0x03,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0x00,0x02, - 0x03,0x05,0x07,0x0a,0x0b,0x0c,0x0a,0x07,0x03,0x00,0xfe,0xfc, - 0xfa,0xf9,0xf9,0xfb,0xfd,0xfe,0xff,0xfe,0xfd,0xfc,0xfb,0xf9, - 0xf8,0xf7,0xf6,0xf6,0xf8,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe,0xff, - 0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0xff,0xfd,0xfc,0xfd, - 0xff,0x00,0x02,0x03,0x04,0x06,0x09,0x0a,0x09,0x06,0x04,0x02, - 0x01,0x00,0xff,0xff,0xff,0x00,0x02,0x03,0x04,0x03,0x02,0x00, - 0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xfd,0xfe,0xfd,0xfd, - 0xfc,0xfa,0xf8,0xf7,0xf7,0xf7,0xfa,0xfd,0x01,0x04,0x06,0x08, - 0x08,0x06,0x04,0x02,0x00,0x00,0x00,0x02,0x04,0x06,0x08,0x08, - 0x07,0x05,0x01,0xfe,0xfb,0xf9,0xf9,0xfb,0xfd,0x00,0x03,0x05, - 0x06,0x04,0x00,0xfb,0xf7,0xf4,0xf2,0xf1,0xf3,0xf6,0xfc,0x02, - 0x08,0x0b,0x0c,0x0b,0x09,0x06,0x02,0xfe,0xfb,0xfa,0xfb,0xfd, - 0xff,0x01,0x02,0x02,0x01,0xff,0xfb,0xf6,0xf2,0xef,0xee,0xf0, - 0xf3,0xf8,0xfd,0x02,0x06,0x0a,0x0c,0x0c,0x0b,0x0b,0x0c,0x0d, - 0x0f,0x12,0x15,0x17,0x19,0x18,0x15,0x11,0x0d,0x09,0x06,0x02, - 0x00,0x00,0x01,0x01,0x01,0xfe,0xfc,0xf9,0xf6,0xf3,0xf2,0xf3, - 0xf5,0xfa,0xff,0x05,0x09,0x0d,0x0e,0x0e,0x0c,0x08,0x05,0x01, - 0xfe,0xfb,0xf9,0xf8,0xf7,0xf8,0xf7,0xf6,0xf4,0xf3,0xf1,0xef, - 0xed,0xea,0xe7,0xe6,0xe7,0xea,0xee,0xf4,0xfa,0x03,0x0c,0x14, - 0x1b,0x20,0x24,0x27,0x2c,0x31,0x35,0x39,0x3b,0x3c,0x3d,0x3b, - 0x37,0x30,0x27,0x1e,0x17,0x14,0x14,0x15,0x18,0x1a,0x1c,0x1d, - 0x1a,0x14,0x0a,0xff,0xf6,0xf1,0xf2,0xf7,0xfe,0x06,0x10,0x18, - 0x1e,0x1f,0x19,0x0d,0xff,0xf1,0xe6,0xde,0xd9,0xd7,0xd7,0xd9, - 0xdc,0xde,0xdd,0xd7,0xce,0xc6,0xc0,0xbe,0xbd,0xbe,0xc1,0xc6, - 0xcd,0xd5,0xdb,0xde,0xdf,0xe1,0xe4,0xea,0xf1,0xf9,0x00,0x07, - 0x0f,0x15,0x19,0x19,0x16,0x11,0x0c,0x08,0x05,0x03,0x02,0x02, - 0x02,0x04,0x05,0x05,0x03,0x01,0xff,0xfd,0xfc,0xfd,0xfe,0xff, - 0x01,0x04,0x06,0x08,0x09,0x0a,0x0a,0x0a,0x0a,0x0b,0x0d,0x0e, - 0x0f,0x0d,0x0b,0x07,0x02,0xfc,0xf4,0xeb,0xe3,0xdd,0xdb,0xdb, - 0xde,0xe1,0xe5,0xea,0xee,0xf2,0xf3,0xf2,0xef,0xed,0xec,0xed, - 0xf0,0xf4,0xfa,0x01,0x07,0x0d,0x10,0x10,0x0e,0x0b,0x06,0x03, - 0x00,0xfd,0xfc,0xfd,0xfe,0x00,0x01,0xff,0xfd,0xfc,0xfc,0xfc, - 0xfd,0xfe,0x01,0x05,0x0b,0x0e,0x10,0x0f,0x0c,0x09,0x07,0x04, - 0x01,0xff,0xff,0x00,0x03,0x05,0x06,0x06,0x03,0x00,0xfd,0xfa, - 0xf7,0xf4,0xf3,0xf3,0xf3,0xf5,0xf7,0xf8,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfb,0xfd,0xfe,0x00,0x02,0x05,0x07,0x08,0x08,0x07, - 0x07,0x06,0x05,0x03,0x00,0xfe,0xfd,0xfc,0xfc,0xfb,0xfa,0xfa, - 0xfa,0xfb,0xfc,0xfd,0xff,0x00,0x01,0x03,0x05,0x07,0x07,0x07, - 0x05,0x04,0x04,0x04,0x05,0x05,0x04,0x05,0x06,0x07,0x07,0x05, - 0x01,0xfc,0xf8,0xf6,0xf5,0xf3,0xf1,0xf0,0xf1,0xf4,0xf8,0xfa, - 0xfa,0xfa,0xfa,0xfc,0xff,0x02,0x04,0x05,0x06,0x08,0x0b,0x0d, - 0x0d,0x0a,0x07,0x05,0x05,0x05,0x04,0x01,0xff,0xfe,0xff,0x00, - 0x00,0xfd,0xfa,0xf8,0xf8,0xf8,0xf7,0xf5,0xf4,0xf5,0xf9,0xff, - 0x04,0x08,0x0a,0x0d,0x0f,0x10,0x0f,0x0a,0x04,0x00,0xfe,0xfd, - 0xfd,0xfc,0xfc,0xfd,0xfe,0xfd,0xfb,0xf7,0xf3,0xef,0xec,0xea, - 0xe9,0xe8,0xea,0xed,0xf1,0xf6,0xfb,0x00,0x04,0x0a,0x10,0x16, - 0x1c,0x20,0x23,0x27,0x29,0x2a,0x28,0x23,0x1b,0x15,0x10,0x0b, - 0x06,0x01,0xfe,0xfd,0xff,0x01,0x02,0x00,0xfd,0xfa,0xf7,0xf4, - 0xf1,0xef,0xef,0xf1,0xf7,0xfe,0x06,0x0d,0x14,0x19,0x1c,0x1c, - 0x17,0x11,0x0a,0x04,0xfe,0xf8,0xf2,0xee,0xed,0xee,0xee,0xed, - 0xea,0xe6,0xe5,0xe4,0xe3,0xe1,0xde,0xdc,0xdd,0xe1,0xe7,0xef, - 0xf7,0xff,0x08,0x13,0x21,0x2f,0x3a,0x41,0x46,0x4a,0x4f,0x53, - 0x53,0x50,0x4b,0x46,0x43,0x41,0x3e,0x38,0x31,0x2c,0x2a,0x2a, - 0x2a,0x27,0x22,0x1d,0x1a,0x17,0x11,0x09,0xfe,0xf5,0xf0,0xf0, - 0xf3,0xf7,0xfc,0x01,0x06,0x0b,0x0d,0x0b,0x04,0xfa,0xf0,0xe8, - 0xe2,0xde,0xdb,0xd6,0xd3,0xd2,0xd2,0xd1,0xcc,0xc3,0xbc,0xb8, - 0xb7,0xb7,0xb8,0xb7,0xb8,0xbb,0xc0,0xc5,0xc9,0xcb,0xcd,0xd2, - 0xda,0xe5,0xf1,0xfa,0x02,0x09,0x10,0x17,0x1b,0x1b,0x19,0x16, - 0x15,0x16,0x17,0x17,0x14,0x13,0x13,0x13,0x13,0x10,0x0c,0x07, - 0x04,0x02,0xfe,0xf9,0xf3,0xef,0xee,0xef,0xf1,0xf6,0xfa,0x00, - 0x05,0x0a,0x0c,0x0b,0x08,0x02,0xfb,0xf5,0xf0,0xec,0xe9,0xea, - 0xee,0xf2,0xf6,0xf9,0xfb,0xfc,0xfd,0xfb,0xf8,0xf4,0xef,0xed, - 0xeb,0xeb,0xeb,0xeb,0xed,0xef,0xf2,0xf5,0xf7,0xf8,0xf9,0xfa, - 0xfb,0xfd,0xff,0x01,0x02,0x05,0x08,0x0a,0x0a,0x08,0x05,0x03, - 0x01,0xff,0xff,0x00,0x03,0x07,0x0b,0x10,0x12,0x13,0x10,0x0b, - 0x04,0xfd,0xf8,0xf4,0xf2,0xf0,0xf1,0xf5,0xfa,0xff,0x02,0x02, - 0x00,0xfe,0xfe,0xfe,0xfc,0xf9,0xf8,0xfa,0xfe,0x02,0x04,0x04, - 0x04,0x05,0x06,0x07,0x05,0x02,0xff,0xfe,0xfe,0xfd,0xfc,0xfb, - 0xfa,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x03, - 0x05,0x07,0x08,0x0a,0x0a,0x09,0x06,0x02,0xff,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfc,0xfe,0x00,0x00,0xfd,0xfa,0xf8,0xf6,0xf6,0xf5, - 0xf5,0xf6,0xf7,0xfa,0xfc,0xff,0x00,0x01,0x02,0x02,0x03,0x04, - 0x05,0x06,0x08,0x09,0x0a,0x0a,0x0a,0x0a,0x08,0x07,0x05,0x03, - 0x01,0xff,0xfd,0xfc,0xfc,0xfd,0xff,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfa,0xf8,0xf7,0xf7,0xfa,0xfe,0x04,0x08,0x0a,0x0a,0x09,0x09, - 0x07,0x04,0xff,0xfa,0xf8,0xfa,0xfd,0x00,0x02,0x02,0x02,0x02, - 0x01,0xff,0xfb,0xf6,0xf2,0xf0,0xef,0xf1,0xf4,0xf7,0xf9,0xfb, - 0xfe,0x01,0x03,0x02,0xfe,0xf9,0xf7,0xf7,0xf8,0xfa,0xfd,0x01, - 0x07,0x10,0x17,0x1c,0x1d,0x1c,0x1b,0x1a,0x19,0x17,0x13,0x10, - 0x10,0x11,0x11,0x0f,0x0b,0x07,0x04,0x01,0xfe,0xfd,0xfc,0xfd, - 0xff,0x00,0x01,0x01,0x00,0xfd,0xf9,0xf6,0xf6,0xf9,0xfe,0x03, - 0x09,0x0e,0x14,0x19,0x1b,0x18,0x12,0x0c,0x06,0x01,0xfe,0xfa, - 0xf7,0xf5,0xf4,0xf3,0xf1,0xec,0xe6,0xe0,0xdd,0xdb,0xda,0xd9, - 0xd9,0xdb,0xe1,0xea,0xf3,0xfa,0x00,0x07,0x10,0x1a,0x24,0x2c, - 0x32,0x38,0x40,0x4a,0x52,0x57,0x58,0x57,0x55,0x52,0x4d,0x46, - 0x3d,0x34,0x2c,0x29,0x2a,0x2c,0x2d,0x2c,0x28,0x23,0x1c,0x14, - 0x09,0xfb,0xee,0xe6,0xe5,0xeb,0xf4,0xfd,0x05,0x0d,0x14,0x19, - 0x17,0x0e,0x01,0xf5,0xed,0xe7,0xe4,0xdf,0xdc,0xda,0xda,0xda, - 0xd7,0xcf,0xc4,0xbb,0xb4,0xaf,0xac,0xa9,0xa7,0xa7,0xaa,0xaf, - 0xb2,0xb5,0xb8,0xbd,0xc5,0xd0,0xde,0xec,0xfa,0x08,0x16,0x22, - 0x2b,0x2e,0x2d,0x28,0x22,0x1c,0x17,0x12,0x0e,0x0b,0x0c,0x0e, - 0x12,0x14,0x13,0x0e,0x07,0xff,0xf6,0xec,0xe4,0xdf,0xdd,0xe0, - 0xe8,0xf3,0x00,0x0b,0x15,0x1b,0x1d,0x1c,0x18,0x12,0x0b,0x06, - 0x01,0xff,0xff,0x01,0x03,0x03,0x03,0x01,0xfd,0xf7,0xf0,0xe9, - 0xe1,0xdb,0xd6,0xd3,0xd2,0xd2,0xd3,0xd5,0xd9,0xdf,0xe6,0xec, - 0xf2,0xf9,0x00,0x07,0x0b,0x0d,0x0e,0x0e,0x0e,0x0d,0x0b,0x09, - 0x0a,0x0b,0x0d,0x0f,0x10,0x0f,0x0d,0x09,0x04,0xfe,0xf7,0xf2, - 0xee,0xec,0xee,0xf3,0xf9,0xff,0x05,0x0c,0x11,0x13,0x13,0x10, - 0x0d,0x09,0x06,0x04,0x02,0x02,0x02,0x03,0x04,0x06,0x06,0x06, - 0x04,0x00,0xfc,0xf8,0xf4,0xf1,0xee,0xec,0xec,0xed,0xef,0xf2, - 0xf6,0xf9,0xfa,0xfb,0xfc,0xfe,0x00,0x01,0x02,0x02,0x03,0x05, - 0x06,0x06,0x04,0x01,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x05, - 0x09,0x0a,0x09,0x07,0x07,0x06,0x05,0x02,0xff,0xfe,0xff,0x01, - 0x03,0x05,0x05,0x05,0x06,0x08,0x08,0x06,0x02,0xff,0xfd,0xfc, - 0xfa,0xf7,0xf3,0xf0,0xf0,0xf0,0xf1,0xf1,0xf2,0xf3,0xf4,0xf7, - 0xfb,0xfd,0xfe,0xfe,0xff,0x01,0x05,0x07,0x08,0x09,0x0b,0x0e, - 0x10,0x11,0x10,0x0e,0x0d,0x0d,0x0b,0x09,0x06,0x03,0x00,0xfe, - 0xfc,0xf9,0xf5,0xf1,0xef,0xef,0xf0,0xf1,0xf3,0xf6,0xfa,0xff, - 0x04,0x08,0x0a,0x0c,0x0d,0x0e,0x0d,0x0b,0x09,0x06,0x04,0x01, - 0xfe,0xfb,0xf9,0xf8,0xf6,0xf4,0xf3,0xf2,0xf1,0xf1,0xf1,0xf1, - 0xf0,0xf1,0xf2,0xf3,0xf5,0xf6,0xf7,0xf9,0xfc,0x00,0x04,0x09, - 0x0d,0x11,0x16,0x1c,0x21,0x23,0x24,0x23,0x22,0x21,0x1f,0x1b, - 0x16,0x11,0x0f,0x0e,0x0e,0x0d,0x0a,0x08,0x06,0x05,0x02,0xfc, - 0xf6,0xef,0xeb,0xea,0xeb,0xec,0xef,0xf4,0xfc,0x04,0x0b,0x0f, - 0x10,0x0f,0x0e,0x0c,0x08,0x04,0xff,0xfa,0xf8,0xf7,0xf5,0xf3, - 0xf0,0xed,0xea,0xe8,0xe6,0xe4,0xe1,0xe0,0xde,0xdf,0xe1,0xe5, - 0xeb,0xf1,0xf8,0x01,0x0b,0x16,0x21,0x2b,0x34,0x3c,0x42,0x49, - 0x4e,0x52,0x53,0x50,0x4c,0x48,0x43,0x3d,0x36,0x2e,0x29,0x26, - 0x27,0x29,0x2a,0x28,0x24,0x1d,0x16,0x0d,0x02,0xf6,0xeb,0xe7, - 0xea,0xf4,0xff,0x0a,0x13,0x1a,0x1f,0x1f,0x19,0x0c,0xfd,0xee, - 0xe3,0xdd,0xd9,0xd7,0xd7,0xd8,0xdb,0xdc,0xdb,0xd5,0xcc,0xc3, - 0xbb,0xb5,0xb0,0xac,0xaa,0xab,0xae,0xb3,0xb8,0xbd,0xc2,0xc9, - 0xd1,0xda,0xe5,0xf0,0xfa,0x04,0x0e,0x16,0x1b,0x1d,0x1d,0x1c, - 0x1a,0x17,0x14,0x13,0x13,0x15,0x17,0x19,0x1a,0x1a,0x18,0x14, - 0x0e,0x06,0xfd,0xf6,0xf1,0xee,0xed,0xf0,0xf4,0xfb,0x02,0x0a, - 0x0f,0x12,0x12,0x10,0x0d,0x08,0x03,0xff,0xfc,0xf9,0xf8,0xf8, - 0xfa,0xfb,0xfc,0xfb,0xf9,0xf5,0xf0,0xea,0xe4,0xdf,0xdb,0xd9, - 0xd9,0xd9,0xdb,0xdf,0xe4,0xe9,0xed,0xf1,0xf4,0xf8,0xfc,0x01, - 0x06,0x09,0x0b,0x0e,0x11,0x14,0x14,0x12,0x0f,0x0c,0x0a,0x09, - 0x07,0x05,0x02,0x00,0x00,0x00,0xff,0xfd,0xfa,0xf8,0xf8,0xf8, - 0xf8,0xf6,0xf5,0xf5,0xf7,0xfa,0xfe,0x01,0x04,0x07,0x0a,0x0e, - 0x12,0x13,0x11,0x0e,0x0b,0x08,0x06,0x03,0xff,0xfb,0xf9,0xf8, - 0xf8,0xf9,0xf9,0xf8,0xf8,0xf8,0xfa,0xfb,0xfa,0xf7,0xf5,0xf4, - 0xf4,0xf4,0xf5,0xf7,0xf9,0xfe,0x03,0x08,0x0c,0x0d,0x0c,0x0b, - 0x0a,0x08,0x04,0x01,0xfe,0xfd,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x01,0x01,0x00,0xfd,0xfa,0xf7,0xf7,0xf7,0xf8,0xf8,0xf9,0xfb, - 0xff,0x03,0x06,0x06,0x04,0x02,0x00,0xff,0xfd,0xfb,0xfa,0xfb, - 0xfd,0x02,0x06,0x08,0x08,0x06,0x04,0x03,0x00,0xfd,0xfa,0xf8, - 0xf8,0xfa,0xff,0x03,0x06,0x08,0x08,0x07,0x06,0x04,0x01,0xfd, - 0xfa,0xfa,0xfd,0x01,0x04,0x07,0x08,0x09,0x08,0x06,0x02,0xfc, - 0xf6,0xf1,0xef,0xf1,0xf4,0xf7,0xfa,0xfc,0x00,0x03,0x04,0x02, - 0xfe,0xfa,0xf7,0xf7,0xf8,0xf9,0xfa,0xfc,0x00,0x04,0x08,0x0a, - 0x08,0x05,0x03,0x03,0x03,0x02,0x00,0xfe,0xfe,0x00,0x01,0x01, - 0xfe,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xfe,0x01,0x05,0x07,0x09, - 0x0a,0x09,0x08,0x07,0x07,0x08,0x0a,0x0e,0x12,0x17,0x1a,0x1d, - 0x1d,0x1a,0x15,0x10,0x09,0x03,0xfc,0xf7,0xf5,0xf5,0xf6,0xf8, - 0xf8,0xf8,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xfc,0x01,0x06,0x0a, - 0x0d,0x0f,0x10,0x10,0x0d,0x09,0x03,0xfd,0xf8,0xf5,0xf3,0xf2, - 0xf0,0xee,0xed,0xec,0xeb,0xe9,0xe6,0xe3,0xe2,0xe4,0xe8,0xed, - 0xf3,0xfa,0x02,0x0a,0x12,0x1a,0x20,0x24,0x28,0x2c,0x31,0x37, - 0x3c,0x40,0x42,0x44,0x46,0x45,0x41,0x3a,0x30,0x27,0x20,0x1c, - 0x19,0x17,0x15,0x14,0x14,0x13,0x10,0x09,0x00,0xf7,0xef,0xeb, - 0xeb,0xef,0xf5,0xfc,0x06,0x0f,0x17,0x1b,0x1a,0x13,0x0a,0x00, - 0xf8,0xf2,0xec,0xe8,0xe4,0xe2,0xe0,0xdf,0xdb,0xd4,0xcc,0xc4, - 0xbf,0xbd,0xbd,0xbd,0xbd,0xbf,0xc2,0xc7,0xcb,0xcd,0xcf,0xd3, - 0xd8,0xe1,0xec,0xf6,0x00,0x08,0x10,0x17,0x1d,0x1f,0x1f,0x1b, - 0x17,0x13,0x10,0x0d,0x0a,0x07,0x05,0x04,0x05,0x06,0x07,0x05, - 0x02,0xff,0xfc,0xfa,0xf8,0xf5,0xf3,0xf4,0xf8,0xfe,0x04,0x08, - 0x0b,0x0d,0x0e,0x0e,0x0c,0x09,0x05,0x02,0xff,0xff,0xff,0xff, - 0xfe,0xfc,0xfa,0xf9,0xf6,0xf3,0xf0,0xed,0xec,0xeb,0xec,0xee, - 0xee,0xed,0xec,0xec,0xee,0xf0,0xf2,0xf3,0xf5,0xfa,0x00,0x06, - 0x09,0x0a,0x0a,0x0b,0x0b,0x0a,0x07,0x04,0x02,0x01,0x02,0x02, - 0x01,0xfe,0xfb,0xfa,0xf9,0xf9,0xf8,0xf6,0xf4,0xf4,0xf5,0xf7, - 0xf8,0xf8,0xf8,0xf8,0xfb,0xff,0x02,0x05,0x07,0x0a,0x0d,0x10, - 0x12,0x12,0x10,0x0e,0x0c,0x0a,0x08,0x05,0x01,0xfe,0xfc,0xfb, - 0xfb,0xfb,0xfa,0xf8,0xf8,0xf9,0xfb,0xfb,0xfb,0xfa,0xfb,0xfd, - 0xff,0x01,0x01,0x00,0x01,0x03,0x06,0x07,0x07,0x05,0x04,0x05, - 0x05,0x03,0xff,0xfb,0xf7,0xf4,0xf3,0xf3,0xf2,0xf2,0xf2,0xf4, - 0xf8,0xfb,0xfd,0xfe,0xff,0x01,0x03,0x05,0x07,0x07,0x07,0x08, - 0x0a,0x0a,0x09,0x08,0x08,0x08,0x08,0x08,0x07,0x06,0x04,0x01, - 0xfd,0xfa,0xf6,0xf3,0xf0,0xf0,0xf1,0xf5,0xf9,0xfd,0x00,0x02, - 0x04,0x04,0x03,0x00,0xfe,0xfe,0xfe,0x00,0x02,0x05,0x08,0x0a, - 0x0b,0x0b,0x0a,0x08,0x05,0x02,0x00,0xfe,0xfd,0xfd,0xfd,0xfc, - 0xfb,0xfa,0xf8,0xf5,0xf2,0xf0,0xef,0xef,0xf0,0xf3,0xf7,0xfd, - 0x02,0x06,0x09,0x09,0x09,0x08,0x06,0x03,0x01,0x00,0x01,0x03, - 0x06,0x07,0x07,0x07,0x06,0x04,0x00,0xfc,0xf8,0xf6,0xf5,0xf7, - 0xf9,0xfc,0xfe,0x00,0x00,0xff,0xfe,0xfc,0xfb,0xf9,0xf8,0xfa, - 0xfe,0x03,0x08,0x0d,0x10,0x13,0x15,0x16,0x15,0x13,0x0f,0x0c, - 0x0a,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x07,0x03,0xfd, - 0xf8,0xf4,0xf1,0xed,0xeb,0xeb,0xed,0xf1,0xf6,0xfb,0xff,0x03, - 0x06,0x08,0x08,0x07,0x05,0x03,0x02,0x01,0x00,0x00,0xff,0xfe, - 0xfe,0xfd,0xfc,0xfa,0xf7,0xf5,0xf3,0xf1,0xf0,0xee,0xec,0xec, - 0xed,0xef,0xf3,0xf7,0xfc,0x02,0x09,0x10,0x18,0x1e,0x22,0x26, - 0x29,0x2c,0x2e,0x2f,0x2f,0x2e,0x2d,0x2d,0x2c,0x2a,0x27,0x23, - 0x20,0x1d,0x1a,0x17,0x12,0x0c,0x06,0x01,0xfd,0xf9,0xf4,0xf0, - 0xed,0xee,0xf1,0xf5,0xfa,0xfe,0x04,0x09,0x0e,0x11,0x12,0x0f, - 0x0b,0x06,0x01,0xfb,0xf6,0xf0,0xec,0xe9,0xe7,0xe6,0xe4,0xe2, - 0xe0,0xdd,0xda,0xd6,0xd2,0xcf,0xcd,0xcc,0xcc,0xcf,0xd3,0xd9, - 0xdf,0xe6,0xed,0xf3,0xf9,0xff,0x04,0x08,0x0a,0x0c,0x0e,0x0f, - 0x10,0x10,0x0f,0x0d,0x0a,0x08,0x06,0x05,0x02,0x00,0xff,0xff, - 0x00,0x00,0xff,0xfd,0xfc,0xfb,0xfa,0xfa,0xfa,0xfb,0xfe,0x02, - 0x07,0x0c,0x11,0x13,0x14,0x13,0x11,0x0e,0x09,0x03,0xfd,0xf9, - 0xf6,0xf5,0xf4,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf2,0xf0,0xee, - 0xee,0xef,0xf0,0xf1,0xf2,0xf4,0xf7,0xfb,0xff,0x02,0x04,0x06, - 0x07,0x08,0x08,0x07,0x06,0x04,0x04,0x03,0x04,0x04,0x04,0x04, - 0x02,0x00,0xfe,0xfc,0xf9,0xf6,0xf3,0xf1,0xf1,0xf2,0xf4,0xf6, - 0xf7,0xf8,0xf9,0xfb,0xfd,0xfe,0xff,0x00,0x02,0x06,0x0a,0x0d, - 0x0e,0x0f,0x0f,0x0f,0x0d,0x0a,0x06,0x02,0x00,0x00,0x00,0x00, - 0xff,0xfe,0xff,0xff,0xff,0xfe,0xfb,0xf8,0xf6,0xf6,0xf7,0xf8, - 0xf9,0xfa,0xfc,0xff,0x01,0x02,0x03,0x03,0x04,0x05,0x05,0x06, - 0x06,0x05,0x04,0x04,0x03,0x01,0xff,0xfc,0xfa,0xf8,0xf8,0xf7, - 0xf7,0xf7,0xf6,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf7,0xfa,0xfe, - 0x01,0x04,0x07,0x09,0x0c,0x0d,0x0d,0x0c,0x0a,0x08,0x07,0x06, - 0x05,0x04,0x03,0x02,0x01,0x00,0x00,0x00,0xfe,0xfc,0xfa,0xf9, - 0xf7,0xf7,0xf6,0xf5,0xf6,0xf7,0xfb,0xfe,0x02,0x04,0x05,0x05, - 0x06,0x06,0x06,0x03,0x01,0xff,0xff,0x01,0x02,0x02,0x02,0x02, - 0x02,0x03,0x03,0x01,0xff,0xfd,0xfb,0xfc,0xfc,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfc,0xfd,0xfd,0xfc,0xfc,0xfd,0xff,0x00,0x00,0xff, - 0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfe,0x01,0x05,0x08, - 0x09,0x09,0x09,0x08,0x05,0x02,0xfe,0xfa,0xf8,0xf7,0xf8,0xfa, - 0xfc,0xff,0x02,0x05,0x07,0x08,0x08,0x07,0x06,0x05,0x04,0x04, - 0x05,0x06,0x07,0x09,0x0b,0x0d,0x0d,0x0c,0x0b,0x09,0x06,0x04, - 0x01,0xff,0xfd,0xfb,0xfa,0xf8,0xf7,0xf7,0xf6,0xf6,0xf6,0xf7, - 0xf9,0xfb,0xfd,0xff,0x00,0x01,0x00,0xff,0xfe,0xfc,0xfa,0xfa, - 0xfa,0xfb,0xfe,0x00,0x02,0x03,0x03,0x03,0x01,0xfe,0xfa,0xf6, - 0xf4,0xf2,0xf2,0xf2,0xf4,0xf7,0xfc,0x01,0x06,0x09,0x0c,0x0f, - 0x12,0x14,0x14,0x14,0x13,0x13,0x14,0x16,0x17,0x17,0x18,0x18, - 0x19,0x1a,0x18,0x16,0x12,0x0f,0x0d,0x0c,0x0a,0x09,0x07,0x06, - 0x06,0x06,0x05,0x03,0x00,0xfe,0xfe,0xff,0x00,0x01,0x03,0x04, - 0x06,0x07,0x06,0x04,0xff,0xfb,0xf6,0xf3,0xf0,0xee,0xed,0xed, - 0xee,0xef,0xf0,0xf0,0xef,0xed,0xeb,0xe9,0xe8,0xe8,0xe7,0xe8, - 0xea,0xec,0xef,0xf2,0xf3,0xf5,0xf5,0xf6,0xf6,0xf5,0xf5,0xf5, - 0xf4,0xf3,0xf2,0xf2,0xf2,0xf2,0xf2,0xf3,0xf5,0xf7,0xf8,0xfa, - 0xfb,0xfc,0xfd,0xfc,0xfa,0xf7,0xf5,0xf3,0xf2,0xf2,0xf3,0xf4, - 0xf6,0xf9,0xfb,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb,0xfa,0xfa, - 0xfb,0xfc,0xfd,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfb,0xfc,0xfd,0xfc,0xfb,0xfa,0xfa,0xfc,0xfd,0xff, - 0x00,0x02,0x03,0x04,0x04,0x02,0x01,0xfe,0xfc,0xfb,0xfa,0xfa, - 0xfb,0xfd,0xff,0x00,0x01,0x01,0x02,0x01,0x01,0xff,0xfe,0xfd, - 0xfd,0xfe,0xff,0x00,0x01,0x01,0x02,0x03,0x04,0x04,0x03,0x02, - 0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x03,0x04,0x05, - 0x06,0x07,0x07,0x07,0x06,0x04,0x03,0x02,0x02,0x02,0x02,0x03, - 0x03,0x04,0x05,0x06,0x06,0x06,0x05,0x04,0x04,0x04,0x05,0x05, - 0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x03,0x04, - 0x05,0x04,0x03,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x02, - 0x02,0x02,0x01,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff,0xfe, - 0xfd,0xfc,0xfb,0xf9,0xf8,0xf7,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe, - 0xff,0xfe,0xfe,0xfc,0xfa,0xf8,0xf6,0xf6,0xf5,0xf6,0xf7,0xf8, - 0xf9,0xfb,0xfd,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xff,0x00, - 0x01,0x02,0x02,0x02,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfd, - 0xfd,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x01,0x02,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x03, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02, - 0x02,0x03,0x04,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,0x0c,0x0b, - 0x0a,0x0a,0x0a,0x0b,0x0c,0x0b,0x0b,0x0b,0x0c,0x0c,0x0c,0x0b, - 0x0b,0x0b,0x0d,0x0f,0x11,0x13,0x14,0x15,0x16,0x16,0x17,0x16, - 0x14,0x13,0x12,0x11,0x12,0x12,0x12,0x12,0x11,0x11,0x11,0x11, - 0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x0f,0x0e,0x0e, - 0x0e,0x0e,0x0e,0x0d,0x0c,0x0b,0x0a,0x09,0x07,0x04,0x01,0xff, - 0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0x00,0xff,0xfd, - 0xfc,0xfa,0xf9,0xf7,0xf4,0xf1,0xf0,0xef,0xee,0xee,0xed,0xed, - 0xed,0xef,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xef,0xef,0xee,0xed, - 0xec,0xec,0xed,0xed,0xee,0xee,0xee,0xef,0xef,0xef,0xee,0xec, - 0xeb,0xea,0xe9,0xe9,0xe9,0xeb,0xed,0xf0,0xf2,0xf5,0xf7,0xf8, - 0xf7,0xf7,0xf6,0xf5,0xf4,0xf4,0xf4,0xf4,0xf5,0xf5,0xf6,0xf6, - 0xf7,0xf7,0xf8,0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0xfa,0xf9,0xf8, - 0xf7,0xf7,0xf7,0xf9,0xfb,0xfd,0xff,0x01,0x02,0x03,0x03,0x01, - 0xfe,0xfc,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfe,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfb,0xfd,0xff,0x02,0x03,0x04,0x04,0x04,0x03,0x02, - 0x01,0xff,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x03,0x02, - 0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x01,0x01, - 0x01,0x01,0x01,0x03,0x05,0x07,0x08,0x08,0x07,0x06,0x05,0x02, - 0x00,0xfe,0xfe,0xff,0x01,0x03,0x04,0x05,0x06,0x06,0x05,0x04, - 0x03,0x02,0x01,0x01,0x02,0x04,0x05,0x06,0x06,0x06,0x05,0x04, - 0x04,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x02,0x01, - 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x00, - 0xff,0xfe,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfa, - 0xf8,0xf7,0xf6,0xf6,0xf6,0xf8,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xf9,0xf8,0xf8,0xf8,0xfa,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x03,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x02,0x01,0x00, - 0xff,0xfe,0xfe,0xfe,0xff,0x01,0x03,0x05,0x06,0x07,0x07,0x06, - 0x05,0x03,0x02,0x00,0xff,0xff,0x00,0x01,0x02,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x03,0x03,0x04,0x04,0x06,0x07,0x07,0x07, - 0x06,0x06,0x05,0x05,0x05,0x05,0x06,0x07,0x08,0x0a,0x0b,0x0b, - 0x0b,0x0a,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x0e,0x11,0x13,0x14, - 0x14,0x13,0x12,0x11,0x10,0x0f,0x0e,0x0e,0x0f,0x0f,0x10,0x11, - 0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x13,0x12,0x12,0x11,0x11, - 0x11,0x10,0x0f,0x0e,0x0e,0x0e,0x0f,0x0f,0x0f,0x0e,0x0d,0x0c, - 0x0b,0x0a,0x08,0x06,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x03,0x03,0x03,0x02,0x01,0xff,0xfd,0xfb,0xf9,0xf7,0xf4, - 0xf3,0xf2,0xf2,0xf2,0xf2,0xf1,0xf1,0xf2,0xf2,0xf2,0xf2,0xf2, - 0xf1,0xf1,0xf0,0xf0,0xef,0xef,0xef,0xef,0xef,0xef,0xef,0xef, - 0xef,0xef,0xee,0xed,0xec,0xeb,0xeb,0xeb,0xec,0xec,0xed,0xed, - 0xef,0xf1,0xf3,0xf4,0xf5,0xf6,0xf6,0xf7,0xf7,0xf7,0xf6,0xf4, - 0xf2,0xf1,0xf0,0xf0,0xf0,0xf1,0xf2,0xf4,0xf6,0xf7,0xf8,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfb,0xfb,0xfc,0xfc,0xfb,0xfb, - 0xfa,0xf9,0xf8,0xf8,0xf8,0xf9,0xf8,0xf8,0xf8,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfb,0xfd,0xff,0x02,0x03,0x03,0x03,0x03,0x02,0x01, - 0xff,0xfd,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x02, - 0x02,0x01,0x00,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00, - 0x02,0x03,0x03,0x04,0x04,0x04,0x05,0x06,0x07,0x08,0x07,0x07, - 0x06,0x06,0x05,0x04,0x03,0x02,0x02,0x02,0x03,0x03,0x03,0x02, - 0x01,0x02,0x03,0x04,0x05,0x05,0x06,0x07,0x09,0x09,0x09,0x08, - 0x06,0x05,0x04,0x04,0x03,0x02,0x01,0x00,0x00,0x01,0x02,0x02, - 0x01,0x01,0x01,0x02,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x04, - 0x02,0xff,0xfd,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfb,0xfd,0xfe, - 0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfc,0xfd,0xfd, - 0xfc,0xfb,0xf9,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xfa,0xfb,0xfc,0xfc,0xfd,0xfd,0xfc, - 0xfc,0xfb,0xf9,0xf8,0xf8,0xf8,0xf8,0xfa,0xfb,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfd,0xfe,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xff,0x01,0x03,0x04,0x05,0x07,0x08,0x09,0x08, - 0x06,0x04,0x02,0xff,0xfd,0xfb,0xfa,0xf9,0xfa,0xfc,0xfe,0x01, - 0x03,0x05,0x06,0x07,0x07,0x07,0x06,0x05,0x04,0x03,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x05,0x05,0x06,0x07,0x09,0x0c,0x0e,0x10,0x10, - 0x10,0x0f,0x0e,0x0d,0x0b,0x09,0x07,0x06,0x07,0x08,0x0a,0x0c, - 0x0d,0x0e,0x10,0x12,0x13,0x14,0x15,0x15,0x14,0x14,0x14,0x13, - 0x12,0x10,0x0f,0x0e,0x0e,0x0f,0x10,0x0f,0x0f,0x0f,0x10,0x10, - 0x10,0x10,0x0f,0x0f,0x10,0x10,0x11,0x11,0x10,0x0f,0x0e,0x0d, - 0x0d,0x0d,0x0c,0x0b,0x0b,0x0a,0x09,0x07,0x05,0x02,0xff,0xfd, - 0xfc,0xfc,0xfd,0xfe,0xff,0x01,0x02,0x03,0x02,0x00,0xfe,0xfb, - 0xf8,0xf5,0xf3,0xf1,0xf0,0xef,0xef,0xef,0xf0,0xf1,0xf1,0xf2, - 0xf2,0xf2,0xf2,0xf2,0xf1,0xf0,0xef,0xed,0xec,0xeb,0xea,0xea, - 0xeb,0xec,0xed,0xef,0xf0,0xf1,0xf2,0xf1,0xf0,0xef,0xed,0xec, - 0xea,0xe9,0xe9,0xea,0xeb,0xed,0xef,0xf1,0xf4,0xf5,0xf7,0xf8, - 0xf9,0xf8,0xf7,0xf6,0xf5,0xf4,0xf3,0xf2,0xf2,0xf3,0xf4,0xf5, - 0xf7,0xf8,0xfa,0xfb,0xfc,0xfd,0xfd,0xfc,0xfc,0xfb,0xfa,0xf9, - 0xf8,0xf7,0xf7,0xf8,0xf9,0xfb,0xfc,0xfe,0xff,0x01,0x02,0x02, - 0x01,0xff,0xfd,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfe, - 0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0xfe,0xfd,0xfc,0xfc, - 0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x00,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xff,0x00,0x02,0x03,0x03,0x02,0x01,0x01,0x00, - 0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x02,0x02, - 0x02,0x03,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x04, - 0x04,0x04,0x04,0x05,0x06,0x06,0x05,0x05,0x04,0x04,0x04,0x04, - 0x04,0x04,0x05,0x05,0x06,0x06,0x07,0x07,0x07,0x06,0x05,0x04, - 0x03,0x02,0x01,0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01, - 0x03,0x03,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x01,0xff,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb, - 0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe, - 0xfd,0xfc,0xfb,0xfa,0xf8,0xf7,0xf5,0xf4,0xf5,0xf6,0xf8,0xfa, - 0xfb,0xfc,0xfd,0xfe,0xfe,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfa,0xfa,0xfb,0xfc,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0x02,0x03,0x04, - 0x04,0x04,0x03,0x02,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xff, - 0x01,0x02,0x02,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x01, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x03, - 0x03,0x03,0x02,0x02,0x02,0x02,0x03,0x04,0x04,0x05,0x07,0x08, - 0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09, - 0x0a,0x0a,0x0a,0x0b,0x0b,0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12, - 0x13,0x14,0x14,0x14,0x14,0x12,0x11,0x10,0x0f,0x0e,0x0d,0x0d, - 0x0e,0x0f,0x0f,0x10,0x10,0x10,0x11,0x11,0x11,0x12,0x12,0x13, - 0x13,0x14,0x13,0x12,0x10,0x0e,0x0c,0x0a,0x09,0x09,0x08,0x09, - 0x09,0x09,0x09,0x08,0x06,0x04,0x03,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x01,0xff,0xfd,0xfb,0xf9,0xf7,0xf5,0xf5,0xf5,0xf6, - 0xf6,0xf6,0xf5,0xf3,0xf2,0xf1,0xf0,0xef,0xef,0xef,0xef,0xef, - 0xef,0xee,0xed,0xeb,0xea,0xe9,0xe9,0xea,0xea,0xec,0xed,0xef, - 0xf0,0xf1,0xf1,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xed,0xed, - 0xed,0xee,0xef,0xf0,0xf1,0xf2,0xf4,0xf6,0xf7,0xf8,0xf9,0xf8, - 0xf7,0xf7,0xf7,0xf7,0xf7,0xf8,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfb,0xfd,0xff,0x01,0x01,0x01,0x01,0x00, - 0xfe,0xfc,0xfb,0xfa,0xf9,0xfa,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0x00,0x01,0x01,0x02,0x03,0x03,0x03,0x03,0x02,0x01,0x00, - 0xff,0xfd,0xfd,0xfd,0xfd,0xff,0x01,0x03,0x05,0x07,0x09,0x0a, - 0x0a,0x09,0x08,0x06,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x01, - 0x02,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0a,0x09,0x09,0x08, - 0x07,0x05,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x03, - 0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x02,0x03,0x03,0x04, - 0x04,0x04,0x04,0x03,0x01,0xff,0xfc,0xfb,0xf9,0xf8,0xf8,0xf9, - 0xfa,0xfc,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf8,0xf8, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb, - 0xfc,0xfd,0xfe,0xff,0xff,0xff,0xfd,0xfc,0xfa,0xf8,0xf7,0xf7, - 0xf7,0xf8,0xf9,0xfb,0xfd,0xfe,0x00,0x00,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff, - 0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x02,0x03,0x05,0x06, - 0x06,0x05,0x04,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x05, - 0x05,0x03,0x02,0x00,0xff,0xff,0x00,0x01,0x03,0x04,0x05,0x05, - 0x05,0x04,0x03,0x02,0x02,0x01,0x02,0x02,0x03,0x04,0x05,0x06, - 0x06,0x06,0x06,0x06,0x07,0x07,0x08,0x09,0x09,0x09,0x09,0x0a, - 0x09,0x09,0x09,0x09,0x0a,0x0b,0x0c,0x0d,0x0d,0x0e,0x0e,0x0e, - 0x0e,0x0e,0x0e,0x0d,0x0d,0x0e,0x0e,0x0f,0x0f,0x10,0x11,0x11, - 0x12,0x12,0x11,0x10,0x0f,0x0e,0x0d,0x0c,0x0c,0x0b,0x0b,0x0a, - 0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x0b,0x0c,0x0c,0x0c,0x0b, - 0x0a,0x08,0x06,0x04,0x02,0x01,0x00,0xff,0xff,0xff,0x00,0xff, - 0xff,0xfe,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf8, - 0xf7,0xf6,0xf6,0xf5,0xf4,0xf3,0xf3,0xf3,0xf3,0xf2,0xf1,0xf0, - 0xef,0xef,0xee,0xee,0xef,0xf0,0xf2,0xf3,0xf4,0xf4,0xf4,0xf3, - 0xf2,0xf0,0xef,0xee,0xed,0xed,0xee,0xef,0xf0,0xf0,0xf1,0xf2, - 0xf2,0xf3,0xf4,0xf5,0xf6,0xf6,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7, - 0xf7,0xf7,0xf6,0xf6,0xf6,0xf7,0xf7,0xf7,0xf8,0xf8,0xf9,0xfa, - 0xfb,0xfc,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfd,0xfd,0xfd,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03, - 0x03,0x03,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x03,0x03,0x03, - 0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x03,0x02,0x02,0x01,0x01, - 0x01,0x02,0x02,0x03,0x04,0x05,0x06,0x06,0x06,0x04,0x03,0x02, - 0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03,0x03,0x03, - 0x03,0x02,0x01,0x00,0xff,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x01,0x02,0x01, - 0x01,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xfb,0xfc,0xfd,0xff,0x01, - 0x02,0x03,0x04,0x05,0x06,0x06,0x06,0x05,0x04,0x03,0x02,0x00, - 0xff,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd,0xff,0x01,0x03,0x04,0x05, - 0x06,0x06,0x05,0x04,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x03,0x04,0x05,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x05,0x05,0x05,0x05,0x05,0x06,0x06,0x06,0x07,0x08,0x09, - 0x0a,0x0a,0x0b,0x0c,0x0c,0x0d,0x0d,0x0d,0x0d,0x0d,0x0d,0x0c, - 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0d,0x0e,0x0f,0x0f,0x0f,0x0f, - 0x0f,0x0e,0x0e,0x0d,0x0c,0x0b,0x0a,0x0b,0x0b,0x0b,0x0b,0x0a, - 0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x09,0x08,0x06, - 0x04,0x02,0x01,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfc,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf8,0xf7, - 0xf5,0xf3,0xf2,0xf1,0xf1,0xf1,0xf2,0xf2,0xf2,0xf2,0xf2,0xf2, - 0xf2,0xf1,0xf1,0xf1,0xf2,0xf3,0xf5,0xf6,0xf6,0xf5,0xf4,0xf3, - 0xf2,0xf0,0xef,0xee,0xee,0xef,0xf1,0xf2,0xf4,0xf6,0xf7,0xf8, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf8,0xf8,0xf8,0xf8, - 0xf7,0xf7,0xf7,0xf7,0xf8,0xfa,0xfb,0xfd,0xfe,0xff,0xff,0xff, - 0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x01,0x01,0x00, - 0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x01,0x00,0x00, - 0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x01,0x01,0x02,0x02, - 0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x04,0x05,0x05,0x05,0x05, - 0x04,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x02,0x02,0x03,0x04,0x06,0x07,0x08,0x08,0x08,0x07,0x06, - 0x06,0x04,0x03,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0x00,0x01,0x02,0x03,0x04,0x04,0x05,0x05,0x05,0x04,0x03,0x02, - 0x01,0x00,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe, - 0xfd,0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf8,0xf8,0xf9,0xf9,0xf9, - 0xfa,0xfa,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0x00, - 0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfd,0xfe,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff, - 0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02, - 0x02,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x02,0x03, - 0x03,0x03,0x03,0x03,0x02,0x01,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x02,0x03,0x05,0x06,0x07,0x08,0x08, - 0x08,0x08,0x07,0x07,0x06,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0b, - 0x0b,0x0b,0x0b,0x0a,0x08,0x08,0x07,0x08,0x09,0x0a,0x0b,0x0c, - 0x0d,0x0f,0x10,0x11,0x12,0x12,0x12,0x12,0x13,0x15,0x17,0x18, - 0x18,0x19,0x19,0x19,0x18,0x16,0x13,0x11,0x0e,0x0c,0x0b,0x09, - 0x08,0x06,0x05,0x04,0x03,0x02,0x00,0xfe,0xfd,0xfc,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb, - 0xfa,0xf8,0xf7,0xf5,0xf3,0xf2,0xf1,0xf0,0xee,0xed,0xeb,0xe9, - 0xe7,0xe6,0xe5,0xe4,0xe3,0xe2,0xe2,0xe3,0xe4,0xe5,0xe7,0xe8, - 0xea,0xeb,0xed,0xee,0xee,0xef,0xef,0xf0,0xf1,0xf2,0xf3,0xf4, - 0xf5,0xf6,0xf7,0xf8,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf6,0xf6, - 0xf6,0xf7,0xf8,0xf8,0xf9,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfd, - 0xfe,0xfe,0xff,0x01,0x02,0x04,0x06,0x08,0x09,0x0a,0x0b,0x0c, - 0x0c,0x0c,0x0b,0x0b,0x0a,0x09,0x09,0x09,0x08,0x07,0x06,0x05, - 0x04,0x03,0x01,0x00,0xfe,0xfc,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xff,0x00, - 0x00,0x00,0x01,0x01,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfb, - 0xf9,0xf8,0xf7,0xf7,0xf7,0xf7,0xf6,0xf7,0xf7,0xf7,0xf7,0xf7, - 0xf7,0xf8,0xf9,0xfa,0xfc,0xfe,0xff,0x01,0x03,0x04,0x05,0x05, - 0x06,0x06,0x06,0x06,0x05,0x05,0x04,0x03,0x03,0x02,0x01,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x02,0x03,0x05,0x06,0x07,0x08,0x08,0x07,0x07,0x06,0x06,0x05, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x02,0x01,0x00,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc, - 0xfc,0xfd,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x05,0x06, - 0x06,0x07,0x07,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x07, - 0x06,0x04,0x03,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0x01,0x02,0x03,0x05,0x06,0x06, - 0x06,0x06,0x06,0x05,0x04,0x03,0x01,0x00,0xfe,0xfd,0xfb,0xf9, - 0xf8,0xf6,0xf5,0xf4,0xf3,0xf3,0xf3,0xf3,0xf4,0xf5,0xf5,0xf6, - 0xf6,0xf7,0xf8,0xf9,0xfb,0xfd,0xfe,0x00,0x01,0x03,0x04,0x05, - 0x05,0x05,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,0x0c,0x0d, - 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0d,0x0d,0x0e,0x0f,0x0f,0x0e, - 0x0e,0x0e,0x0e,0x0f,0x10,0x10,0x11,0x13,0x15,0x16,0x18,0x18, - 0x19,0x1a,0x1b,0x1d,0x1d,0x1d,0x1d,0x1d,0x1c,0x1b,0x19,0x17, - 0x14,0x10,0x0e,0x0c,0x09,0x07,0x04,0x02,0x00,0xfe,0xfc,0xfb, - 0xf9,0xf8,0xf8,0xfa,0xfb,0xfc,0xfe,0xff,0x01,0x02,0x03,0x03, - 0x02,0x02,0x01,0x00,0x00,0xfe,0xfd,0xfb,0xf8,0xf6,0xf3,0xf1, - 0xed,0xea,0xe7,0xe5,0xe3,0xe2,0xe1,0xe0,0xdf,0xde,0xde,0xdf, - 0xe0,0xe1,0xe2,0xe4,0xe6,0xe8,0xea,0xec,0xee,0xef,0xf0,0xf2, - 0xf4,0xf5,0xf6,0xf7,0xf8,0xfa,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9, - 0xf9,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8,0xf8,0xf7,0xf6,0xf6,0xf6, - 0xf7,0xf7,0xf7,0xf8,0xfa,0xfc,0xfe,0x00,0x02,0x03,0x04,0x05, - 0x06,0x07,0x08,0x08,0x09,0x09,0x0a,0x0b,0x0b,0x0a,0x0a,0x09, - 0x08,0x07,0x05,0x04,0x03,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfc,0xfc, - 0xfd,0xfe,0xff,0xff,0x00,0x01,0x01,0x02,0x02,0x01,0x00,0xff, - 0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9, - 0xf8,0xf7,0xf5,0xf5,0xf5,0xf5,0xf6,0xf8,0xfa,0xfc,0xfe,0xff, - 0x00,0x01,0x02,0x02,0x03,0x03,0x04,0x06,0x07,0x07,0x08,0x08, - 0x08,0x07,0x06,0x04,0x02,0xff,0xfc,0xfa,0xf9,0xf7,0xf6,0xf5, - 0xf5,0xf5,0xf6,0xf6,0xf6,0xf6,0xf7,0xf9,0xfb,0xfb,0xfc,0xfc, - 0xfd,0xff,0x00,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x04,0x03, - 0x02,0x01,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x02,0x03,0x04,0x05,0x06, - 0x07,0x07,0x07,0x08,0x09,0x0a,0x0a,0x09,0x09,0x09,0x0a,0x0b, - 0x0b,0x0a,0x08,0x07,0x08,0x08,0x08,0x07,0x06,0x05,0x05,0x05, - 0x07,0x08,0x08,0x07,0x07,0x07,0x09,0x0a,0x09,0x08,0x07,0x07, - 0x08,0x09,0x09,0x07,0x06,0x05,0x05,0x06,0x05,0x04,0x02,0x01, - 0x01,0x01,0x00,0x00,0xfe,0xfd,0xfc,0xfd,0xfd,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf8,0xf7, - 0xf6,0xf6,0xf6,0xf6,0xf5,0xf3,0xf2,0xf2,0xf2,0xf2,0xf2,0xf1, - 0xf0,0xf0,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xf1,0xf2,0xf3,0xf3, - 0xf3,0xf3,0xf4,0xf5,0xf6,0xf6,0xf6,0xf5,0xf6,0xf7,0xf8,0xf8, - 0xf8,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0x00, - 0x01,0x02,0x03,0x05,0x07,0x09,0x0b,0x0c,0x0e,0x0f,0x11,0x12, - 0x14,0x16,0x17,0x18,0x19,0x1b,0x1c,0x1d,0x1d,0x1d,0x1c,0x1b, - 0x1b,0x1b,0x1c,0x1b,0x1b,0x19,0x19,0x19,0x1b,0x1c,0x1b,0x1b, - 0x1a,0x1c,0x1e,0x20,0x21,0x21,0x21,0x22,0x24,0x26,0x27,0x25, - 0x23,0x22,0x23,0x23,0x22,0x1f,0x1a,0x17,0x15,0x14,0x12,0x0f, - 0x0b,0x07,0x05,0x04,0x04,0x03,0x00,0xfd,0xfc,0xfd,0xfe,0xff, - 0xfe,0xfd,0xfb,0xfc,0xfd,0xfe,0xfe,0xfc,0xf9,0xf7,0xf7,0xf7, - 0xf6,0xf3,0xef,0xeb,0xe9,0xe8,0xe8,0xe5,0xe1,0xde,0xdc,0xdc, - 0xdd,0xdd,0xda,0xd7,0xd6,0xd7,0xd9,0xda,0xda,0xd9,0xd8,0xd9, - 0xdc,0xdf,0xe0,0xe0,0xe0,0xe1,0xe3,0xe5,0xe6,0xe7,0xe6,0xe7, - 0xe9,0xeb,0xed,0xed,0xee,0xee,0xef,0xf0,0xf0,0xf0,0xef,0xef, - 0xef,0xf0,0xf1,0xf2,0xf2,0xf3,0xf4,0xf6,0xf8,0xf8,0xf9,0xfa, - 0xfc,0xff,0x01,0x03,0x04,0x06,0x09,0x0b,0x0d,0x0d,0x0d,0x0d, - 0x0c,0x0c,0x0b,0x0a,0x09,0x08,0x06,0x06,0x06,0x06,0x06,0x05, - 0x04,0x03,0x03,0x04,0x04,0x05,0x05,0x05,0x06,0x08,0x0a,0x0c, - 0x0d,0x0c,0x0c,0x0c,0x0c,0x0c,0x0b,0x09,0x07,0x06,0x06,0x06, - 0x05,0x03,0x01,0x00,0x00,0x00,0xff,0xfd,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfc,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xf8,0xf7, - 0xf7,0xf8,0xf8,0xf9,0xf8,0xf9,0xf9,0xfa,0xfb,0xfa,0xf9,0xf8, - 0xf8,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfd,0xff,0x01,0x01,0x01, - 0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x02,0x04,0x04,0x04,0x02, - 0x01,0x01,0x02,0x01,0xff,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe, - 0xfe,0xff,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x02,0x02, - 0x01,0x00,0x00,0x01,0x02,0x00,0xfe,0xfc,0xfb,0xfb,0xfb,0xfb, - 0xfa,0xfa,0xfc,0xfd,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff, - 0xfe,0xfe,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x04,0x05,0x05,0x05,0x05, - 0x06,0x06,0x06,0x06,0x04,0x03,0x03,0x04,0x05,0x06,0x06,0x06, - 0x06,0x07,0x08,0x09,0x08,0x07,0x06,0x06,0x07,0x07,0x08,0x07, - 0x07,0x07,0x08,0x08,0x07,0x05,0x03,0x01,0xff,0xfe,0xfc,0xfa, - 0xf8,0xf7,0xf6,0xf6,0xf6,0xf5,0xf4,0xf3,0xf2,0xf2,0xf3,0xf3, - 0xf2,0xf1,0xf2,0xf4,0xf6,0xf7,0xf8,0xf8,0xf8,0xf9,0xf9,0xf8, - 0xf6,0xf5,0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf2,0xf1, - 0xf0,0xef,0xef,0xf0,0xf1,0xf1,0xf3,0xf5,0xf7,0xfa,0xfd,0xfe, - 0xff,0x01,0x03,0x05,0x06,0x06,0x06,0x07,0x0a,0x0d,0x0e,0x0f, - 0x0f,0x11,0x14,0x16,0x17,0x17,0x17,0x17,0x17,0x18,0x19,0x1a, - 0x1b,0x1c,0x1d,0x1e,0x20,0x21,0x22,0x22,0x21,0x21,0x22,0x23, - 0x24,0x25,0x25,0x27,0x29,0x2c,0x2d,0x2d,0x2c,0x2b,0x2a,0x29, - 0x28,0x27,0x24,0x22,0x1f,0x1e,0x1e,0x1d,0x1a,0x16,0x11,0x0e, - 0x0c,0x0a,0x07,0x02,0xff,0xfe,0xff,0x01,0x02,0x01,0xff,0xfd, - 0xfc,0xfc,0xfb,0xf8,0xf4,0xef,0xed,0xed,0xee,0xee,0xec,0xe9, - 0xe6,0xe6,0xe6,0xe6,0xe3,0xde,0xdb,0xd9,0xd9,0xd9,0xd8,0xd7, - 0xd6,0xd6,0xd7,0xd8,0xda,0xd9,0xd8,0xd6,0xd5,0xd6,0xd7,0xd7, - 0xd7,0xd7,0xd9,0xdc,0xe1,0xe5,0xe8,0xe9,0xea,0xeb,0xed,0xef, - 0xf0,0xef,0xed,0xed,0xef,0xf1,0xf2,0xf2,0xf1,0xf2,0xf3,0xf4, - 0xf5,0xf6,0xf6,0xf6,0xf8,0xfb,0xfe,0x01,0x03,0x05,0x09,0x0c, - 0x0f,0x11,0x12,0x13,0x13,0x14,0x14,0x14,0x13,0x12,0x11,0x11, - 0x10,0x10,0x0f,0x0e,0x0c,0x0a,0x09,0x08,0x07,0x06,0x05,0x04, - 0x05,0x07,0x08,0x09,0x08,0x07,0x07,0x08,0x08,0x07,0x06,0x05, - 0x06,0x07,0x07,0x06,0x04,0x01,0x00,0xff,0xfd,0xfa,0xf6,0xf4, - 0xf3,0xf3,0xf4,0xf3,0xf2,0xf1,0xf1,0xf1,0xf3,0xf4,0xf4,0xf4, - 0xf5,0xf7,0xfa,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xfe, - 0xfd,0xfb,0xfb,0xfa,0xfa,0xf8,0xf5,0xf4,0xf4,0xf5,0xf6,0xf6, - 0xf6,0xf5,0xf5,0xf6,0xf7,0xf8,0xf9,0xf9,0xfa,0xfd,0x01,0x05, - 0x07,0x09,0x0b,0x0d,0x0e,0x0e,0x0e,0x0e,0x0e,0x0d,0x0c,0x0a, - 0x0a,0x09,0x08,0x06,0x04,0x01,0x00,0x00,0x00,0xfe,0xfd,0xfd, - 0xff,0x02,0x04,0x05,0x06,0x07,0x08,0x0a,0x0b,0x0b,0x0a,0x09, - 0x08,0x07,0x07,0x06,0x05,0x02,0xff,0xfd,0xfb,0xf9,0xf7,0xf4, - 0xf2,0xf1,0xf1,0xf2,0xf2,0xf3,0xf4,0xf5,0xf6,0xf8,0xfa,0xfb, - 0xfc,0xfc,0xfe,0xff,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0xfe, - 0xfc,0xf9,0xf7,0xf4,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf3,0xf4, - 0xf5,0xf5,0xf5,0xf7,0xfa,0xfd,0x00,0x03,0x05,0x08,0x0c,0x0f, - 0x10,0x11,0x10,0x0f,0x0e,0x0e,0x0d,0x0b,0x09,0x07,0x05,0x04, - 0x03,0x00,0xfe,0xfd,0xfd,0xfe,0x00,0x02,0x03,0x06,0x08,0x0b, - 0x0e,0x10,0x11,0x12,0x12,0x12,0x13,0x13,0x12,0x10,0x10,0x0f, - 0x0f,0x0d,0x0b,0x09,0x07,0x05,0x03,0x01,0x00,0xff,0xfe,0xfc, - 0xfb,0xfb,0xfb,0xfa,0xf9,0xf7,0xf5,0xf3,0xf3,0xf2,0xf1,0xf0, - 0xf0,0xf0,0xf2,0xf4,0xf6,0xf6,0xf5,0xf4,0xf4,0xf4,0xf3,0xf0, - 0xed,0xeb,0xea,0xea,0xe9,0xe8,0xe7,0xe6,0xe7,0xe8,0xe9,0xea, - 0xeb,0xeb,0xed,0xf0,0xf4,0xf8,0xfb,0xfd,0x00,0x04,0x09,0x0d, - 0x0f,0x10,0x10,0x10,0x11,0x12,0x12,0x11,0x10,0x10,0x12,0x14, - 0x17,0x18,0x17,0x18,0x1a,0x1e,0x21,0x22,0x22,0x23,0x25,0x29, - 0x2d,0x2f,0x2f,0x2e,0x30,0x33,0x36,0x37,0x36,0x35,0x36,0x37, - 0x38,0x38,0x36,0x33,0x30,0x2e,0x2c,0x2a,0x26,0x21,0x1b,0x16, - 0x12,0x0e,0x08,0x03,0xfd,0xf9,0xf7,0xf7,0xf9,0xfa,0xfb,0xfc, - 0xfd,0x00,0x02,0x02,0xff,0xfb,0xf8,0xf6,0xf3,0xf0,0xeb,0xe6, - 0xe2,0xdf,0xdc,0xd8,0xd3,0xce,0xcb,0xc8,0xc6,0xc4,0xc2,0xc1, - 0xc1,0xc2,0xc3,0xc4,0xc7,0xca,0xce,0xd1,0xd4,0xd7,0xda,0xdd, - 0xdf,0xe1,0xe2,0xe3,0xe6,0xe8,0xec,0xee,0xf0,0xf2,0xf3,0xf5, - 0xf5,0xf4,0xf2,0xf0,0xef,0xee,0xed,0xee,0xef,0xf0,0xf3,0xf7, - 0xfb,0x00,0x05,0x0a,0x0e,0x13,0x17,0x1a,0x1d,0x1f,0x21,0x21, - 0x21,0x21,0x21,0x20,0x1e,0x1b,0x17,0x13,0x0e,0x0a,0x05,0x01, - 0xfd,0xfb,0xfa,0xfb,0xfe,0x01,0x03,0x05,0x08,0x0b,0x0d,0x0d, - 0x0b,0x09,0x07,0x06,0x05,0x04,0x02,0x00,0xfe,0xfc,0xfa,0xf7, - 0xf3,0xee,0xea,0xe7,0xe5,0xe4,0xe3,0xe4,0xe6,0xe8,0xec,0xef, - 0xf2,0xf4,0xf6,0xf7,0xfa,0xfd,0xff,0x02,0x04,0x06,0x08,0x09, - 0x08,0x06,0x02,0xfe,0xf9,0xf5,0xf2,0xf0,0xef,0xef,0xf1,0xf3, - 0xf7,0xfa,0xfc,0xfe,0xff,0x01,0x03,0x06,0x08,0x0c,0x10,0x14, - 0x17,0x19,0x1a,0x18,0x14,0x0e,0x08,0x03,0xff,0xfc,0xf9,0xf8, - 0xf9,0xfb,0xfd,0xfd,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfa,0xfc, - 0xfe,0x02,0x06,0x09,0x0a,0x09,0x07,0x06,0x06,0x04,0x02,0x00, - 0x00,0xff,0x00,0x00,0xff,0xfd,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6, - 0xf6,0xf8,0xfb,0xfe,0x00,0x01,0x02,0x04,0x06,0x06,0x06,0x06, - 0x05,0x06,0x06,0x07,0x07,0x07,0x06,0x04,0x03,0x04,0x03,0x02, - 0xff,0xfd,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x03, - 0x03,0x02,0x02,0x01,0x00,0xfe,0xfd,0xfc,0xfa,0xf9,0xf8,0xf7, - 0xf6,0xf5,0xf4,0xf4,0xf5,0xf6,0xf7,0xf8,0xfa,0xfb,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xf9,0xf8,0xf7,0xf6,0xf5,0xf3, - 0xf3,0xf3,0xf5,0xf8,0xfb,0xfd,0xff,0x02,0x05,0x08,0x09,0x09, - 0x09,0x08,0x09,0x09,0x08,0x05,0x02,0x01,0x00,0x00,0x00,0x00, - 0x01,0x04,0x08,0x0e,0x12,0x14,0x16,0x18,0x1a,0x1a,0x18,0x15, - 0x12,0x0e,0x0c,0x09,0x07,0x04,0x02,0x01,0x02,0x03,0x04,0x03, - 0x02,0x02,0x01,0x00,0xfe,0xfb,0xf8,0xf6,0xf5,0xf4,0xf4,0xf4, - 0xf5,0xf6,0xf8,0xfa,0xfc,0xfd,0xfd,0xfd,0xfc,0xfa,0xf8,0xf5, - 0xf1,0xee,0xea,0xe8,0xe5,0xe1,0xdf,0xdd,0xdc,0xdd,0xdf,0xe2, - 0xe6,0xeb,0xf2,0xfa,0x00,0x05,0x08,0x0b,0x0d,0x0e,0x0f,0x0e, - 0x0d,0x0d,0x0e,0x10,0x11,0x12,0x13,0x14,0x16,0x18,0x1a,0x1b, - 0x1c,0x1e,0x1f,0x22,0x25,0x27,0x29,0x2b,0x2f,0x34,0x38,0x3b, - 0x3d,0x3e,0x3f,0x40,0x40,0x3f,0x3e,0x3d,0x3c,0x3c,0x3c,0x3b, - 0x37,0x30,0x28,0x1e,0x14,0x08,0xfd,0xf4,0xf0,0xf0,0xf3,0xf8, - 0xfd,0x01,0x05,0x07,0x06,0x02,0xfb,0xf3,0xec,0xe7,0xe4,0xe1, - 0xdf,0xdc,0xd9,0xd5,0xd1,0xca,0xc4,0xbd,0xb8,0xb5,0xb5,0xb8, - 0xbc,0xc1,0xc6,0xc9,0xcb,0xce,0xcf,0xd0,0xcf,0xce,0xd0,0xd5, - 0xdc,0xe4,0xea,0xef,0xf3,0xf8,0xfc,0xfd,0xfa,0xf5,0xf0,0xed, - 0xec,0xec,0xec,0xec,0xee,0xf4,0xfb,0x02,0x08,0x0d,0x12,0x17, - 0x1c,0x21,0x23,0x24,0x24,0x23,0x23,0x21,0x1d,0x18,0x11,0x0a, - 0x03,0xfd,0xf8,0xf4,0xf3,0xf5,0xf9,0xfe,0x05,0x0c,0x11,0x14, - 0x15,0x15,0x13,0x10,0x0b,0x05,0x01,0xfe,0xfb,0xf8,0xf5,0xf2, - 0xf0,0xef,0xee,0xee,0xee,0xef,0xf0,0xf2,0xf6,0xf9,0xfa,0xf9, - 0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf7,0xf9,0xfc,0xfe,0x00,0x00, - 0xff,0xfd,0xfa,0xf8,0xf6,0xf4,0xf4,0xf6,0xf9,0xfc,0xff,0x02, - 0x04,0x06,0x07,0x07,0x07,0x08,0x08,0x08,0x09,0x09,0x0a,0x09, - 0x08,0x06,0x04,0x02,0x00,0xfe,0xfc,0xfa,0xfa,0xfc,0xff,0x02, - 0x05,0x07,0x08,0x09,0x09,0x08,0x05,0x01,0xfe,0xfb,0xfa,0xf9, - 0xfa,0xfa,0xfb,0xfc,0xfd,0xfd,0xfd,0xfb,0xf9,0xf7,0xf7,0xf8, - 0xfa,0xfc,0xfe,0x00,0x02,0x03,0x03,0x00,0xfd,0xfa,0xf8,0xf7, - 0xf7,0xf8,0xfa,0xfc,0xff,0x01,0x02,0x02,0x01,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfe,0x00,0x02,0x03,0x05,0x06,0x06,0x05,0x04,0x04, - 0x03,0x03,0x02,0x01,0x00,0x00,0x00,0x00,0xff,0xfe,0xff,0x00, - 0x01,0x03,0x04,0x06,0x07,0x08,0x08,0x09,0x09,0x09,0x08,0x07, - 0x07,0x06,0x04,0x02,0xff,0xfc,0xf9,0xf7,0xf6,0xf6,0xf7,0xf9, - 0xfc,0xff,0x02,0x04,0x06,0x06,0x06,0x05,0x02,0xff,0xfd,0xfb, - 0xfa,0xf9,0xf8,0xf7,0xf7,0xf7,0xf8,0xf8,0xf8,0xf7,0xf8,0xf9, - 0xfc,0xfe,0xff,0x01,0x03,0x05,0x06,0x06,0x03,0x00,0xfc,0xf9, - 0xf5,0xf1,0xec,0xea,0xea,0xed,0xf1,0xf6,0xfa,0xff,0x04,0x09, - 0x0c,0x0d,0x0b,0x0a,0x0a,0x0b,0x0c,0x0b,0x0a,0x0a,0x09,0x07, - 0x03,0xff,0xfa,0xf6,0xf5,0xf7,0xfb,0x01,0x07,0x0e,0x14,0x17, - 0x19,0x18,0x15,0x12,0x10,0x10,0x11,0x14,0x17,0x19,0x1a,0x18, - 0x13,0x0b,0x00,0xf4,0xea,0xe3,0xe0,0xe0,0xe3,0xe9,0xf1,0xfa, - 0x00,0x03,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0xff, - 0xf8,0xee,0xe3,0xd7,0xcd,0xc5,0xc0,0xbf,0xc3,0xcb,0xd8,0xe6, - 0xf5,0x02,0x0c,0x13,0x18,0x19,0x18,0x15,0x11,0x0e,0x0d,0x0e, - 0x10,0x12,0x16,0x19,0x1b,0x1d,0x1d,0x1d,0x1d,0x1d,0x1e,0x23, - 0x2c,0x35,0x3d,0x45,0x4b,0x50,0x53,0x53,0x50,0x4c,0x4a,0x4a, - 0x4b,0x4c,0x4b,0x47,0x3f,0x32,0x22,0x0e,0xf9,0xe6,0xd8,0xd4, - 0xd8,0xe4,0xf4,0x04,0x13,0x1f,0x25,0x22,0x16,0x04,0xf1,0xdf, - 0xd1,0xc7,0xc0,0xbc,0xbc,0xbd,0xbe,0xbc,0xb7,0xb0,0xab,0xa8, - 0xa9,0xac,0xb2,0xba,0xc5,0xcf,0xd9,0xe1,0xe6,0xe9,0xec,0xef, - 0xf2,0xf5,0xf8,0xfa,0xfb,0xfa,0xf6,0xf0,0xe9,0xe1,0xda,0xd5, - 0xd4,0xd9,0xe2,0xef,0xfe,0x0e,0x1e,0x2d,0x39,0x41,0x44,0x42, - 0x3c,0x33,0x27,0x1a,0x0c,0x00,0xf7,0xf2,0xef,0xf0,0xf3,0xf7, - 0xfc,0x00,0x03,0x04,0x05,0x06,0x08,0x09,0x0b,0x0b,0x0c,0x0c, - 0x0a,0x06,0xff,0xf7,0xf0,0xea,0xe6,0xe3,0xe2,0xe4,0xe8,0xec, - 0xf0,0xf2,0xf2,0xf1,0xf0,0xf0,0xf0,0xf2,0xf4,0xf9,0xfe,0x04, - 0x08,0x0a,0x08,0x05,0x02,0xff,0xfb,0xf8,0xf7,0xf8,0xfa,0xfc, - 0xfd,0xfd,0xfd,0xfc,0xfb,0xfb,0xfd,0x01,0x07,0x0e,0x14,0x1a, - 0x1d,0x1d,0x19,0x12,0x0a,0x01,0xfa,0xf6,0xf5,0xf6,0xf8,0xfb, - 0x00,0x03,0x05,0x04,0x02,0xff,0xfe,0xfe,0x00,0x01,0x04,0x07, - 0x0b,0x0d,0x0c,0x09,0x05,0x00,0xfc,0xf8,0xf5,0xf4,0xf4,0xf5, - 0xf7,0xf8,0xfa,0xfb,0xfb,0xfa,0xfa,0xf9,0xf9,0xfa,0xfb,0xfc, - 0xfd,0xff,0x00,0x01,0x02,0x01,0x00,0xfe,0xfc,0xfb,0xf8,0xf6, - 0xf5,0xf4,0xf4,0xf5,0xf7,0xf8,0xf9,0xfb,0xfe,0xff,0x00,0x00, - 0x00,0x01,0x02,0x02,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfb,0xfa, - 0xfa,0xfa,0xfc,0xfe,0x00,0x03,0x06,0x08,0x0a,0x0b,0x0b,0x0a, - 0x09,0x08,0x07,0x07,0x05,0x03,0x02,0x01,0x01,0x00,0xff,0xfe, - 0xff,0x01,0x04,0x06,0x08,0x09,0x08,0x07,0x06,0x04,0x01,0xff, - 0xfe,0x00,0x03,0x07,0x08,0x09,0x09,0x07,0x04,0xff,0xf9,0xf4, - 0xf1,0xf1,0xf1,0xf3,0xf6,0xfa,0xfd,0x01,0x03,0x04,0x03,0x01, - 0x00,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01, - 0x03,0x05,0x07,0x08,0x07,0x03,0xff,0xfa,0xf6,0xf3,0xf0,0xee, - 0xee,0xf1,0xf5,0xf9,0xfc,0xff,0x00,0x02,0x03,0x05,0x06,0x07, - 0x08,0x0a,0x0c,0x0b,0x07,0x02,0xfc,0xf8,0xf4,0xf2,0xf1,0xf3, - 0xf8,0xff,0x07,0x0d,0x11,0x14,0x16,0x16,0x15,0x12,0x0f,0x0d, - 0x0d,0x0e,0x10,0x11,0x11,0x11,0x0f,0x0c,0x07,0x02,0xfd,0xf9, - 0xf6,0xf5,0xf4,0xf5,0xf6,0xf8,0xfa,0xfc,0xfe,0x01,0x04,0x08, - 0x0b,0x0d,0x0d,0x0b,0x07,0xff,0xf4,0xe8,0xdc,0xd0,0xc7,0xc1, - 0xc0,0xc6,0xd0,0xdd,0xeb,0xfa,0x08,0x14,0x1b,0x1d,0x1a,0x15, - 0x0e,0x08,0x02,0xfe,0xfb,0xfd,0x02,0x0a,0x12,0x19,0x1f,0x23, - 0x27,0x29,0x29,0x26,0x23,0x22,0x25,0x2a,0x2f,0x34,0x39,0x40, - 0x46,0x4a,0x4b,0x49,0x48,0x48,0x49,0x48,0x44,0x3d,0x33,0x28, - 0x1a,0x08,0xf6,0xe6,0xdd,0xdd,0xe4,0xf0,0xff,0x0f,0x1e,0x28, - 0x2b,0x24,0x16,0x03,0xee,0xdb,0xcc,0xc0,0xb9,0xb6,0xb6,0xb8, - 0xba,0xba,0xb8,0xb6,0xb5,0xb5,0xb8,0xbd,0xc5,0xcd,0xd5,0xdc, - 0xe0,0xe1,0xe0,0xde,0xda,0xd8,0xd8,0xda,0xde,0xe3,0xe8,0xed, - 0xf1,0xf4,0xf5,0xf5,0xf5,0xf6,0xf8,0xfb,0x00,0x07,0x0f,0x18, - 0x20,0x27,0x2d,0x30,0x30,0x2c,0x26,0x1f,0x17,0x0f,0x08,0x03, - 0x01,0x01,0x02,0x04,0x06,0x07,0x06,0x04,0x02,0x00,0xfe,0xfd, - 0xfc,0xfc,0xfd,0xfe,0xff,0xfe,0xfa,0xf6,0xf2,0xef,0xed,0xec, - 0xeb,0xed,0xf0,0xf3,0xf4,0xf3,0xef,0xec,0xe9,0xe7,0xe6,0xe7, - 0xea,0xf0,0xf8,0x00,0x07,0x0c,0x0d,0x0b,0x08,0x05,0x02,0xfe, - 0xfa,0xfa,0xfc,0x00,0x04,0x06,0x06,0x07,0x07,0x06,0x04,0x03, - 0x02,0x03,0x05,0x08,0x0a,0x0b,0x0b,0x0a,0x09,0x07,0x05,0x03, - 0x02,0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfd,0xfc,0xfd,0xfe, - 0x00,0x01,0x02,0x02,0x01,0x00,0xfd,0xfa,0xf9,0xf9,0xfb,0xff, - 0x02,0x05,0x08,0x09,0x09,0x07,0x02,0xfe,0xfa,0xf7,0xf6,0xf6, - 0xf7,0xf8,0xf9,0xf9,0xf9,0xf7,0xf5,0xf5,0xf6,0xf8,0xfb,0xff, - 0x02,0x05,0x06,0x05,0x02,0xfe,0xfb,0xf8,0xf7,0xf7,0xf9,0xfb, - 0xfe,0x00,0x01,0x00,0xfe,0xfb,0xf9,0xf8,0xf7,0xf8,0xfa,0xfd, - 0x00,0x04,0x06,0x07,0x08,0x08,0x0a,0x0b,0x0b,0x0a,0x09,0x08, - 0x08,0x06,0x03,0xff,0xfd,0xfb,0xfb,0xfb,0xfa,0xfa,0xfc,0xfe, - 0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x00,0xfd,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfe,0x01,0x04,0x06,0x07,0x07,0x05,0x03,0x00,0xfc, - 0xf8,0xf4,0xf1,0xf1,0xf3,0xf8,0xfd,0x02,0x07,0x0c,0x10,0x12, - 0x11,0x0e,0x0a,0x06,0x03,0x00,0xfe,0xfc,0xfb,0xfc,0xff,0x01, - 0x02,0x02,0x03,0x03,0x04,0x04,0x02,0x01,0xff,0xff,0xfe,0xfd, - 0xfd,0xfc,0xfd,0xff,0x01,0x04,0x05,0x06,0x05,0x03,0x00,0xfc, - 0xf6,0xf0,0xea,0xe7,0xe7,0xe8,0xea,0xee,0xf3,0xf9,0xff,0x03, - 0x07,0x09,0x0a,0x0a,0x08,0x06,0x03,0x00,0xfc,0xf9,0xf7,0xf7, - 0xf8,0xfb,0x00,0x05,0x0a,0x0f,0x13,0x14,0x13,0x11,0x0e,0x0b, - 0x0a,0x09,0x0b,0x0f,0x14,0x19,0x1d,0x1f,0x1f,0x1b,0x14,0x0c, - 0x04,0xfd,0xf6,0xf2,0xef,0xef,0xf2,0xf5,0xf9,0xfd,0x00,0x04, - 0x06,0x07,0x08,0x07,0x06,0x03,0xff,0xfa,0xf4,0xed,0xe6,0xe0, - 0xdb,0xd7,0xd5,0xd4,0xd4,0xd8,0xde,0xe6,0xed,0xf4,0xfb,0x02, - 0x09,0x0e,0x11,0x12,0x13,0x13,0x14,0x17,0x1a,0x1b,0x1c,0x1c, - 0x1c,0x1c,0x1b,0x18,0x16,0x17,0x1b,0x23,0x2b,0x34,0x3b,0x41, - 0x46,0x47,0x46,0x43,0x3e,0x3c,0x3b,0x3d,0x40,0x42,0x42,0x3f, - 0x38,0x2d,0x1e,0x0c,0xfa,0xeb,0xe2,0xdf,0xe3,0xec,0xf6,0x00, - 0x08,0x0d,0x0e,0x0b,0x03,0xf9,0xf0,0xea,0xe5,0xe2,0xde,0xd8, - 0xd0,0xc8,0xbf,0xb6,0xad,0xa5,0xa1,0xa3,0xab,0xb6,0xc1,0xca, - 0xd2,0xda,0xe0,0xe4,0xe5,0xe5,0xe6,0xea,0xf1,0xf9,0xfe,0x00, - 0x00,0xfe,0xfa,0xf5,0xed,0xe6,0xe1,0xe0,0xe2,0xe8,0xf0,0xf7, - 0xff,0x08,0x12,0x1b,0x23,0x28,0x2c,0x30,0x32,0x32,0x2e,0x27, - 0x1e,0x15,0x0c,0x03,0xfc,0xf5,0xf1,0xef,0xef,0xf0,0xf1,0xf2, - 0xf3,0xf6,0xfa,0xff,0x02,0x05,0x07,0x0a,0x0b,0x09,0x04,0xfe, - 0xf9,0xf5,0xf2,0xef,0xed,0xec,0xeb,0xeb,0xec,0xeb,0xe8,0xe5, - 0xe3,0xe3,0xe5,0xe8,0xea,0xed,0xf2,0xf9,0xff,0x04,0x08,0x0b, - 0x0d,0x0f,0x10,0x0f,0x0c,0x07,0x02,0xfe,0xfc,0xfb,0xfb,0xfc, - 0xff,0x03,0x06,0x09,0x09,0x08,0x07,0x06,0x04,0x03,0x03,0x02, - 0x03,0x04,0x05,0x05,0x06,0x06,0x07,0x09,0x0b,0x0d,0x0e,0x0d, - 0x0a,0x06,0x00,0xf9,0xf1,0xea,0xe4,0xe2,0xe5,0xeb,0xf3,0xfc, - 0x05,0x0c,0x11,0x13,0x10,0x0a,0x02,0xfb,0xf5,0xf2,0xf0,0xf1, - 0xf3,0xf6,0xfa,0xfd,0x00,0x01,0x00,0xff,0xff,0x00,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x02,0x04,0x06,0x06, - 0x06,0x06,0x05,0x04,0x01,0xfc,0xf9,0xf7,0xf6,0xf7,0xf8,0xfa, - 0xfc,0x00,0x03,0x06,0x07,0x07,0x06,0x05,0x04,0x03,0x02,0x00, - 0xff,0xfe,0xfe,0xfe,0xfd,0xfb,0xf9,0xf7,0xf7,0xf8,0xf9,0xfb, - 0xfd,0xff,0x02,0x04,0x06,0x05,0x04,0x01,0xff,0xfd,0xfc,0xfb, - 0xfa,0xfa,0xfb,0xfd,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0x00, - 0x04,0x08,0x0c,0x0f,0x11,0x12,0x11,0x0d,0x08,0x02,0xfc,0xf9, - 0xf6,0xf4,0xf3,0xf5,0xf8,0xfc,0xff,0x01,0x03,0x04,0x06,0x08, - 0x09,0x08,0x07,0x06,0x05,0x04,0x03,0x00,0xfe,0xfc,0xfc,0xfc, - 0xfd,0xfe,0xfe,0xff,0x01,0x02,0x02,0x01,0xff,0xfe,0xfe,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xfe,0xfe,0xfd,0xfb,0xf8,0xf7,0xf5,0xf3, - 0xf2,0xf1,0xf2,0xf7,0xfc,0x01,0x04,0x07,0x0a,0x0d,0x0e,0x0c, - 0x08,0x03,0xfe,0xfa,0xf6,0xf0,0xeb,0xe8,0xea,0xef,0xf6,0xfd, - 0x06,0x0f,0x19,0x21,0x25,0x25,0x21,0x1b,0x16,0x11,0x0c,0x07, - 0x04,0x04,0x05,0x07,0x07,0x06,0x03,0x01,0x00,0x01,0x02,0x04, - 0x06,0x09,0x0e,0x11,0x12,0x0f,0x0a,0x05,0x02,0x00,0xfd,0xfb, - 0xfa,0xfa,0xfc,0xfc,0xf9,0xf1,0xe7,0xdd,0xd7,0xd2,0xce,0xcd, - 0xd0,0xd7,0xe3,0xf1,0xfc,0x05,0x0c,0x12,0x17,0x1a,0x19,0x16, - 0x11,0x0d,0x09,0x05,0x02,0xfe,0xfe,0x00,0x05,0x0b,0x12,0x1a, - 0x21,0x26,0x2b,0x2e,0x31,0x33,0x35,0x37,0x3a,0x3c,0x3f,0x41, - 0x41,0x40,0x3d,0x3b,0x3a,0x38,0x37,0x34,0x30,0x2a,0x22,0x17, - 0x0a,0xfb,0xee,0xe6,0xe3,0xe6,0xee,0xf9,0x05,0x10,0x18,0x1b, - 0x16,0x0c,0xfd,0xee,0xe1,0xd6,0xce,0xc9,0xc7,0xc7,0xc9,0xca, - 0xc9,0xc7,0xc4,0xc2,0xc3,0xc4,0xc6,0xc8,0xcb,0xce,0xd2,0xd5, - 0xd6,0xd7,0xd8,0xdc,0xe3,0xea,0xf1,0xf7,0xfc,0xff,0x01,0xff, - 0xfb,0xf6,0xf1,0xee,0xec,0xed,0xef,0xf4,0xfa,0x00,0x08,0x0f, - 0x15,0x1b,0x1e,0x20,0x21,0x21,0x1f,0x1d,0x1a,0x16,0x13,0x11, - 0x0f,0x0d,0x0a,0x07,0x04,0x00,0xfd,0xf8,0xf5,0xf1,0xf0,0xef, - 0xf0,0xf1,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf4,0xf4,0xf6,0xfa, - 0xfd,0x00,0x02,0x02,0x00,0xfb,0xf5,0xef,0xe9,0xe5,0xe2,0xe1, - 0xe2,0xe5,0xea,0xf0,0xf5,0xfa,0xfe,0x02,0x06,0x0a,0x0c,0x0d, - 0x0e,0x0e,0x0c,0x09,0x05,0x01,0xfe,0xfb,0xfa,0xfa,0xfa,0xfc, - 0xfe,0x00,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x05, - 0x05,0x06,0x08,0x0a,0x0a,0x0b,0x0a,0x09,0x08,0x06,0x02,0xfd, - 0xf7,0xf3,0xf1,0xf0,0xf0,0xf2,0xf5,0xf9,0xfe,0x02,0x06,0x08, - 0x09,0x09,0x09,0x08,0x06,0x03,0x00,0xfd,0xfb,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf7,0xf6,0xf5,0xf5,0xf7,0xfa, - 0xfe,0x03,0x08,0x0c,0x0e,0x0e,0x0d,0x09,0x05,0x00,0xfb,0xf8, - 0xf6,0xf6,0xf6,0xf7,0xf7,0xf9,0xfb,0xfd,0xfe,0xff,0x01,0x03, - 0x05,0x06,0x07,0x07,0x05,0x04,0x03,0x00,0xfe,0xfb,0xfa,0xfa, - 0xfa,0xfb,0xfc,0xfd,0xff,0x00,0x01,0x02,0x01,0x00,0xfe,0xfd, - 0xfc,0xfc,0xfc,0xfd,0xfe,0x00,0x02,0x04,0x06,0x07,0x06,0x04, - 0x02,0x00,0xff,0xfd,0xfb,0xf9,0xfa,0xfb,0xfd,0xff,0x00,0x02, - 0x04,0x06,0x07,0x07,0x06,0x04,0x02,0x00,0xfe,0xfd,0xfc,0xfc, - 0xfc,0xff,0x02,0x06,0x09,0x0a,0x0a,0x0a,0x0a,0x09,0x06,0x03, - 0x00,0xfe,0xfc,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xfe,0x00,0x02, - 0x04,0x06,0x07,0x06,0x04,0x01,0xfe,0xfd,0xfa,0xf7,0xf5,0xf4, - 0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfc,0xfc,0xfb,0xfb,0xfd,0xff,0x02,0x05,0x07,0x09,0x09, - 0x09,0x08,0x05,0x02,0xfe,0xfb,0xf9,0xf8,0xf8,0xf9,0xfa,0xfc, - 0xff,0x03,0x08,0x0d,0x12,0x16,0x19,0x1b,0x1b,0x18,0x13,0x0d, - 0x07,0x02,0xff,0xfd,0xfc,0xfd,0x00,0x03,0x06,0x07,0x07,0x08, - 0x09,0x0a,0x0a,0x0a,0x0a,0x0b,0x0b,0x0b,0x09,0x06,0x03,0x00, - 0xfe,0xfc,0xfb,0xf9,0xf6,0xf3,0xf0,0xed,0xea,0xe6,0xe3,0xe1, - 0xe2,0xe4,0xe7,0xeb,0xf0,0xf6,0xfc,0x02,0x08,0x0d,0x12,0x15, - 0x16,0x15,0x12,0x0d,0x08,0x03,0xff,0xfe,0xfe,0x02,0x07,0x0e, - 0x15,0x1a,0x1e,0x20,0x20,0x20,0x21,0x24,0x28,0x2d,0x33,0x39, - 0x3e,0x41,0x41,0x3e,0x39,0x34,0x31,0x2f,0x2c,0x2a,0x27,0x24, - 0x1f,0x17,0x0c,0x00,0xf5,0xed,0xea,0xeb,0xf0,0xf7,0x00,0x08, - 0x0c,0x0d,0x09,0x02,0xf8,0xef,0xe6,0xe0,0xdc,0xda,0xd9,0xd8, - 0xd6,0xd3,0xce,0xc9,0xc5,0xc3,0xc2,0xc3,0xc6,0xca,0xcf,0xd4, - 0xd8,0xda,0xdc,0xde,0xe1,0xe4,0xe7,0xea,0xef,0xf4,0xf9,0xfe, - 0x01,0x02,0x02,0x02,0x00,0xfe,0xfa,0xf6,0xf3,0xf2,0xf4,0xf7, - 0xfc,0x02,0x09,0x11,0x18,0x1c,0x1d,0x1c,0x1a,0x16,0x12,0x0e, - 0x0b,0x09,0x07,0x06,0x04,0x02,0xfe,0xfb,0xf8,0xf5,0xf4,0xf4, - 0xf6,0xfa,0xfe,0x00,0x02,0x01,0xff,0xfb,0xf7,0xf1,0xed,0xec, - 0xec,0xee,0xf2,0xf5,0xf9,0xfc,0xfc,0xfb,0xf8,0xf4,0xf0,0xec, - 0xea,0xe9,0xe9,0xeb,0xee,0xf1,0xf5,0xf9,0xfc,0xfe,0x01,0x04, - 0x06,0x07,0x08,0x09,0x09,0x08,0x07,0x05,0x02,0x00,0xfe,0xfe, - 0xfd,0xfd,0xfe,0xff,0x01,0x03,0x04,0x04,0x03,0x02,0x01,0x00, - 0xff,0xfe,0xfd,0xfc,0xfd,0x00,0x03,0x05,0x07,0x08,0x0a,0x0b, - 0x0a,0x08,0x03,0xfe,0xfa,0xf6,0xf3,0xf1,0xf0,0xf1,0xf5,0xf9, - 0xfe,0x03,0x06,0x08,0x08,0x08,0x06,0x04,0x02,0x00,0xfe,0xfe, - 0xfe,0xff,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfa,0xf8,0xf8,0xf9,0xfb,0xfd,0xfe,0x00,0x03, - 0x05,0x07,0x06,0x04,0x02,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xff,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0x00, - 0x02,0x03,0x03,0x02,0x01,0x01,0x01,0x02,0x03,0x04,0x05,0x07, - 0x09,0x09,0x07,0x03,0xff,0xfb,0xf7,0xf3,0xf0,0xef,0xf1,0xf4, - 0xf8,0xfd,0x00,0x03,0x05,0x07,0x07,0x07,0x06,0x05,0x06,0x07, - 0x07,0x07,0x06,0x03,0x01,0xfe,0xfc,0xf8,0xf6,0xf4,0xf5,0xf7, - 0xf9,0xfb,0xfd,0xff,0x00,0x02,0x04,0x05,0x07,0x08,0x0a,0x0c, - 0x0e,0x0f,0x0e,0x0c,0x09,0x05,0x01,0xfc,0xf8,0xf4,0xf1,0xf1, - 0xf3,0xf6,0xf9,0xfc,0xff,0x02,0x05,0x07,0x07,0x06,0x05,0x05, - 0x05,0x04,0x02,0xff,0xfd,0xfc,0xfc,0xfb,0xfb,0xfc,0xfd,0xff, - 0x01,0x02,0x01,0xfe,0xfc,0xf9,0xf7,0xf6,0xf5,0xf6,0xf9,0xfe, - 0x02,0x07,0x09,0x0a,0x09,0x07,0x03,0xff,0xfa,0xf7,0xf4,0xf3, - 0xf4,0xf6,0xf9,0xfb,0xfd,0x01,0x05,0x0a,0x0d,0x0e,0x0f,0x0f, - 0x10,0x0f,0x0d,0x0a,0x09,0x09,0x0b,0x0e,0x11,0x14,0x15,0x16, - 0x15,0x12,0x0e,0x09,0x04,0x01,0x00,0xff,0x00,0x00,0x01,0x02, - 0x03,0x03,0x02,0x01,0x01,0x01,0x02,0x02,0x00,0xfe,0xfb,0xf6, - 0xf0,0xe9,0xe4,0xe0,0xde,0xde,0xe1,0xe7,0xef,0xf8,0x00,0x06, - 0x0a,0x0d,0x0e,0x0d,0x0b,0x08,0x05,0x04,0x03,0x05,0x07,0x09, - 0x0c,0x0e,0x10,0x12,0x12,0x11,0x11,0x12,0x15,0x19,0x1f,0x26, - 0x2e,0x36,0x3c,0x40,0x41,0x40,0x3b,0x35,0x2e,0x28,0x24,0x20, - 0x1c,0x18,0x13,0x0e,0x08,0x01,0xf8,0xf1,0xee,0xef,0xf3,0xf9, - 0x00,0x06,0x0c,0x10,0x11,0x0d,0x05,0xfc,0xf4,0xee,0xe9,0xe4, - 0xdf,0xda,0xd6,0xd2,0xcf,0xca,0xc5,0xc2,0xc2,0xc5,0xca,0xcf, - 0xd4,0xd9,0xde,0xe3,0xe7,0xe9,0xeb,0xec,0xef,0xf3,0xf7,0xfc, - 0xff,0x01,0x02,0x02,0x01,0xff,0xfd,0xf9,0xf6,0xf4,0xf3,0xf5, - 0xf7,0xfa,0xfd,0x01,0x07,0x0d,0x12,0x16,0x17,0x18,0x18,0x17, - 0x15,0x12,0x0e,0x0a,0x07,0x05,0x03,0x01,0xfe,0xfb,0xf9,0xf8, - 0xf5,0xf2,0xee,0xec,0xea,0xea,0xea,0xeb,0xec,0xee,0xf1,0xf5, - 0xfa,0xfd,0x00,0x02,0x03,0x04,0x03,0x00,0xfc,0xf7,0xf3,0xef, - 0xec,0xea,0xea,0xeb,0xed,0xf1,0xf5,0xf9,0xfc,0xff,0x02,0x04, - 0x05,0x05,0x04,0x03,0x02,0x02,0x02,0x01,0x01,0x02,0x04,0x05, - 0x06,0x06,0x05,0x04,0x02,0x00,0xfe,0xfd,0xfc,0xfd,0xfe,0xff, - 0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0x01,0x02,0x04,0x05, - 0x05,0x04,0x04,0x03,0x02,0xff,0xfd,0xfc,0xfc,0xfd,0xfe,0xff, - 0xff,0xff,0x00,0x01,0x02,0x02,0x00,0xff,0xfe,0xfe,0xfe,0xfd, - 0xfb,0xfb,0xfc,0xfe,0xff,0x00,0x00,0x00,0xff,0xfd,0xfa,0xf7, - 0xf4,0xf2,0xf3,0xf5,0xf8,0xfa,0xfc,0xfe,0x00,0x01,0x01,0x01, - 0x02,0x03,0x05,0x07,0x0a,0x0b,0x0b,0x0a,0x08,0x05,0x02,0xff, - 0xfd,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa, - 0xf9,0xf9,0xfa,0xfd,0x00,0x04,0x07,0x0a,0x0c,0x0d,0x0c,0x0a, - 0x06,0x01,0xfc,0xf7,0xf4,0xf2,0xf1,0xf2,0xf3,0xf5,0xf7,0xf9, - 0xfc,0xfd,0xff,0x00,0x02,0x06,0x09,0x0a,0x0b,0x0b,0x0a,0x08, - 0x05,0x01,0xfe,0xfc,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe, - 0xfd,0xfc,0xfc,0xfe,0x01,0x04,0x06,0x09,0x0b,0x0d,0x0e,0x0e, - 0x0c,0x0a,0x08,0x05,0x03,0x01,0xfe,0xfc,0xf9,0xf7,0xf5,0xf3, - 0xf2,0xf2,0xf2,0xf4,0xf7,0xfb,0xff,0x04,0x08,0x0c,0x0e,0x0f, - 0x0d,0x0a,0x07,0x03,0xff,0xfc,0xf9,0xf8,0xf8,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfc,0xfe,0x00,0x02,0x03,0x04,0x04, - 0x03,0x01,0xfe,0xfc,0xfa,0xfa,0xfb,0xfb,0xfc,0xfd,0xfd,0xfd, - 0xfb,0xfa,0xf9,0xf8,0xf9,0xfb,0xfe,0x02,0x07,0x0b,0x0e,0x10, - 0x11,0x11,0x10,0x0f,0x0d,0x0b,0x08,0x07,0x05,0x04,0x03,0x03, - 0x03,0x04,0x04,0x05,0x06,0x07,0x09,0x0b,0x0d,0x0f,0x10,0x11, - 0x12,0x12,0x10,0x0c,0x08,0x03,0xff,0xfc,0xf9,0xf7,0xf6,0xf7, - 0xf9,0xfa,0xfa,0xf8,0xf5,0xf2,0xee,0xec,0xea,0xe9,0xea,0xee, - 0xf4,0xfb,0x03,0x09,0x0d,0x10,0x12,0x12,0x11,0x0d,0x08,0x04, - 0x01,0xff,0xfd,0xfc,0xfc,0xfd,0xff,0x02,0x06,0x0a,0x0d,0x12, - 0x17,0x1c,0x21,0x26,0x2a,0x2c,0x2d,0x2e,0x2d,0x2b,0x27,0x24, - 0x21,0x21,0x21,0x21,0x20,0x1d,0x19,0x14,0x0e,0x06,0xfd,0xf5, - 0xef,0xee,0xf0,0xf4,0xfa,0x00,0x06,0x0c,0x0e,0x0d,0x08,0x01, - 0xfa,0xf3,0xee,0xea,0xe7,0xe4,0xe2,0xe0,0xdf,0xdc,0xd9,0xd4, - 0xd1,0xd0,0xd2,0xd5,0xd8,0xdc,0xe0,0xe5,0xe8,0xea,0xeb,0xea, - 0xeb,0xec,0xef,0xf4,0xfa,0x00,0x06,0x0b,0x0e,0x0e,0x0c,0x07, - 0x01,0xfa,0xf4,0xef,0xed,0xee,0xf1,0xf6,0xfc,0x02,0x08,0x0d, - 0x0f,0x10,0x10,0x0f,0x0e,0x0d,0x0d,0x0c,0x0b,0x0b,0x09,0x07, - 0x05,0x02,0xff,0xfc,0xfa,0xf8,0xf7,0xf7,0xf6,0xf5,0xf3,0xf0, - 0xee,0xec,0xeb,0xea,0xeb,0xee,0xf2,0xf7,0xfc,0x00,0x03,0x04, - 0x04,0x01,0xfd,0xf9,0xf4,0xef,0xec,0xeb,0xec,0xee,0xf2,0xf6, - 0xfb,0xff,0x03,0x05,0x05,0x05,0x04,0x03,0x02,0x01,0x00,0xff, - 0xfe,0xfe,0xfe,0xff,0xff,0x01,0x02,0x04,0x04,0x05,0x05,0x05, - 0x04,0x04,0x03,0x03,0x03,0x03,0x04,0x05,0x06,0x05,0x04,0x04, - 0x03,0x01,0x00,0xfe,0xfc,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb, - 0xfe,0x00,0x02,0x02,0x02,0x02,0x02,0x01,0xfe,0xfb,0xf9,0xf9, - 0xf9,0xfa,0xfb,0xfc,0xfd,0xff,0x01,0x02,0x02,0x02,0x01,0x00, - 0x00,0x00,0x00,0x00,0xff,0xfe,0xff,0x01,0x02,0x01,0x00,0x00, - 0x00,0x00,0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb,0xfb,0xfd, - 0xfe,0x01,0x04,0x05,0x05,0x04,0x03,0x03,0x02,0x01,0xff,0xfd, - 0xfd,0xfe,0xff,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xff, - 0x01,0x03,0x05,0x07,0x07,0x05,0x02,0xff,0xfd,0xfc,0xfb,0xfa, - 0xfb,0xfd,0x00,0x02,0x03,0x01,0xff,0xfd,0xfc,0xfc,0xfb,0xfa, - 0xfb,0xfc,0xff,0x01,0x01,0xff,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xff,0x01,0x03,0x04,0x03,0x02,0x02,0x03,0x04,0x06,0x07, - 0x07,0x07,0x07,0x06,0x05,0x02,0xff,0xfd,0xfd,0xfd,0xff,0x00, - 0x01,0x01,0x02,0x03,0x03,0x02,0x01,0x00,0x00,0x00,0x00,0xff, - 0xfe,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfd,0xff,0x02,0x03,0x03, - 0x02,0x02,0x01,0xff,0xfc,0xfa,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb, - 0xfd,0xff,0x01,0x02,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfd,0xfe,0x00,0x02,0x03,0x05,0x06,0x07,0x07,0x07, - 0x05,0x03,0x02,0x01,0x01,0x00,0x00,0x01,0x03,0x06,0x09,0x0a, - 0x0b,0x0a,0x0a,0x0a,0x08,0x06,0x04,0x03,0x03,0x05,0x07,0x08, - 0x09,0x0a,0x0a,0x0a,0x09,0x06,0x03,0x00,0xfd,0xfb,0xfa,0xf9, - 0xf8,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01,0xff, - 0xfe,0xfb,0xf9,0xf7,0xf5,0xf4,0xf3,0xf3,0xf4,0xf5,0xf7,0xf9, - 0xfb,0xfd,0xff,0x02,0x04,0x07,0x09,0x0b,0x0c,0x0d,0x0e,0x0e, - 0x0e,0x0d,0x0c,0x0c,0x0d,0x0e,0x0e,0x0e,0x0d,0x0e,0x0f,0x10, - 0x12,0x13,0x15,0x18,0x1b,0x1d,0x1e,0x1e,0x1d,0x1c,0x1b,0x1a, - 0x1a,0x19,0x17,0x15,0x13,0x0f,0x0a,0x04,0xfd,0xf8,0xf5,0xf3, - 0xf4,0xf6,0xfa,0xff,0x04,0x07,0x08,0x06,0x03,0xfe,0xf8,0xf3, - 0xef,0xed,0xeb,0xe9,0xe8,0xe7,0xe6,0xe4,0xe2,0xdf,0xdd,0xdd, - 0xdf,0xe2,0xe6,0xea,0xee,0xf2,0xf5,0xf8,0xf9,0xf8,0xf8,0xf8, - 0xf9,0xfa,0xfb,0xfb,0xfa,0xf9,0xf8,0xf6,0xf3,0xf1,0xef,0xef, - 0xf0,0xf3,0xf7,0xfc,0x01,0x06,0x0a,0x0d,0x0f,0x0f,0x0e,0x0d, - 0x0b,0x0a,0x09,0x07,0x05,0x03,0x01,0xff,0xfc,0xf9,0xf7,0xf6, - 0xf6,0xf7,0xf9,0xfd,0x01,0x04,0x07,0x08,0x08,0x07,0x06,0x05, - 0x03,0x02,0x01,0x00,0x00,0xff,0xfc,0xf9,0xf6,0xf3,0xf1,0xf0, - 0xf0,0xf1,0xf4,0xf8,0xfb,0xfe,0xff,0x00,0x00,0xff,0xff,0xff, - 0xfe,0xff,0xff,0x00,0x01,0x00,0xfe,0xfc,0xfa,0xf8,0xf7,0xf7, - 0xf7,0xf8,0xfa,0xfd,0x01,0x03,0x05,0x06,0x06,0x06,0x07,0x06, - 0x04,0x02,0x01,0x00,0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc, - 0xfd,0xff,0x01,0x03,0x05,0x05,0x04,0x03,0x00,0xfe,0xfd,0xfc, - 0xfc,0xfd,0xff,0x01,0x04,0x05,0x06,0x05,0x03,0x00,0xfd,0xfb, - 0xf9,0xf7,0xf7,0xf8,0xfa,0xfd,0xff,0x01,0x02,0x02,0x03,0x03, - 0x02,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xfd,0xfc,0xfc,0xfb, - 0xfb,0xfb,0xfc,0xfd,0xff,0x01,0x02,0x02,0x01,0x00,0x00,0xff, - 0xfe,0xfd,0xfd,0xff,0x01,0x02,0x03,0x02,0x02,0x01,0x00,0xff, - 0xfd,0xfc,0xfc,0xfd,0xff,0x00,0x01,0x01,0x02,0x03,0x03,0x03, - 0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x00, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x02, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02, - 0x02,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04, - 0x04,0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x06,0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x06,0x06,0x06, - 0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x06,0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x04, - 0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,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,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x06, - 0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x06,0x06,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfb,0xfb, - 0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,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,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x03,0x03,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03, - 0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x05, - 0x05,0x06,0x06,0x07,0x07,0x07,0x07,0x07,0x06,0x06,0x06,0x05, - 0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x06,0x06,0x06,0x06, - 0x07,0x07,0x07,0x07,0x07,0x07,0x06,0x06,0x05,0x05,0x05,0x04, - 0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xfe, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfb,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8, - 0xf8,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x01,0x02, - 0x03,0x03,0x03,0x02,0x01,0xff,0xff,0xff,0x00,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x01,0x00,0xff,0x00,0x02,0x03,0x04, - 0x02,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x03,0x03,0x02,0x01,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x04,0x05,0x05,0x05,0x04,0x03,0x03,0x03,0x03,0x04,0x05, - 0x06,0x06,0x06,0x06,0x06,0x06,0x05,0x04,0x03,0x04,0x06,0x07, - 0x07,0x06,0x06,0x06,0x06,0x07,0x07,0x07,0x06,0x05,0x06,0x08, - 0x0a,0x0a,0x0a,0x08,0x07,0x06,0x06,0x05,0x05,0x06,0x06,0x07, - 0x07,0x07,0x06,0x06,0x06,0x05,0x05,0x05,0x06,0x06,0x05,0x04, - 0x03,0x03,0x03,0x04,0x05,0x05,0x04,0x02,0x01,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x00,0xfe,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfc,0xfa,0xf9,0xf8,0xf8,0xf8, - 0xf9,0xfa,0xfb,0xfb,0xfb,0xfa,0xf8,0xf7,0xf6,0xf6,0xf6,0xf7, - 0xf8,0xf9,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xf8,0xf7,0xf7,0xf8, - 0xf9,0xfa,0xfa,0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0xfc,0xfb,0xfa,0xfa,0xfb, - 0xfc,0xfc,0xfb,0xfa,0xfb,0xfc,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc, - 0xfc,0xfb,0xfb,0xfc,0xfc,0xfe,0xff,0x01,0x00,0xfe,0xfc,0xfb, - 0xfb,0xfd,0xff,0xff,0xff,0xfd,0xfd,0xfd,0xfe,0x00,0x02,0x01, - 0x00,0xfe,0xfb,0xfa,0xfa,0xfe,0x02,0x04,0x03,0xff,0xfa,0xf7, - 0xf8,0xfc,0x01,0x03,0x03,0x00,0xfd,0xfb,0xfb,0xfe,0x00,0x03, - 0x03,0x02,0x00,0xfd,0xfb,0xfa,0xfb,0xfd,0x00,0x01,0xff,0xfd, - 0xfd,0xff,0x01,0x01,0xff,0xfd,0xfc,0xfd,0xfe,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xfc,0xfc,0xfd, - 0xff,0x00,0x00,0xff,0xfe,0xfe,0xfe,0x00,0x01,0x02,0x01,0x00, - 0xfe,0xfd,0xfd,0xff,0x01,0x03,0x04,0x02,0xff,0xfd,0xfb,0xfb, - 0xfb,0xfc,0xfe,0x01,0x03,0x04,0x03,0xff,0xfc,0xfa,0xfb,0xfe, - 0x02,0x03,0x02,0x00,0xff,0xff,0x00,0x01,0x00,0xff,0xff,0x00, - 0x02,0x02,0xff,0xfc,0xfa,0xfb,0xfe,0x00,0x02,0x01,0x01,0x00, - 0xff,0xff,0x00,0x02,0x02,0x01,0xff,0xfe,0xff,0x01,0x03,0x03, - 0x02,0xff,0xfc,0xfa,0xfa,0xfc,0xff,0x02,0x04,0x04,0x03,0x02, - 0x01,0x00,0xfe,0xfc,0xfd,0xff,0x02,0x03,0x02,0x00,0xff,0x00, - 0x01,0x02,0x02,0x01,0xff,0xfd,0xfc,0xfc,0xfc,0xfe,0x00,0x02, - 0x04,0x05,0x05,0x03,0x01,0xff,0xfe,0xfe,0xfe,0xff,0x01,0x02, - 0x03,0x02,0x00,0xfc,0xfa,0xfa,0xfd,0x00,0x02,0x03,0x02,0x01, - 0x01,0x03,0x03,0x02,0x00,0xfe,0xfd,0xfd,0xff,0x00,0x01,0x02, - 0x02,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x01,0x03,0x05,0x06,0x05,0x02,0xfe,0xfb,0xfa,0xfc,0xfe,0x01, - 0x02,0x04,0x05,0x05,0x02,0xfe,0xfb,0xfb,0xfe,0x02,0x03,0x02, - 0x01,0x02,0x05,0x07,0x07,0x03,0xfe,0xfa,0xf9,0xfd,0x03,0x06, - 0x06,0x03,0x00,0x00,0x02,0x04,0x03,0x00,0xfe,0xfe,0x00,0x02, - 0x05,0x07,0x09,0x08,0x04,0xff,0xfc,0xfc,0xfe,0x01,0x04,0x06, - 0x08,0x08,0x07,0x05,0x04,0x02,0x01,0x02,0x04,0x07,0x08,0x06, - 0x03,0x00,0xff,0x02,0x06,0x09,0x0b,0x0b,0x09,0x06,0x03,0x02, - 0x02,0x03,0x04,0x06,0x09,0x0b,0x0b,0x08,0x04,0xff,0xfe,0x01, - 0x08,0x10,0x15,0x12,0x0a,0x02,0xfe,0xff,0x02,0x05,0x07,0x06, - 0x04,0x02,0x02,0x06,0x0c,0x0f,0x0c,0x05,0xfe,0xfa,0xfd,0x03, - 0x0a,0x0d,0x0a,0x03,0xfd,0xfb,0xfe,0x02,0x05,0x03,0x00,0xfe, - 0xfe,0xff,0x00,0x00,0xfe,0xfd,0xfe,0x00,0x01,0xff,0xfc,0xf9, - 0xf7,0xf7,0xf9,0xfc,0xff,0x01,0x00,0xfe,0xfc,0xf9,0xf7,0xf4, - 0xf2,0xf1,0xf3,0xf9,0xff,0x02,0x00,0xfb,0xf7,0xf6,0xf7,0xf9, - 0xfa,0xf8,0xf6,0xf3,0xf2,0xf4,0xf9,0xfe,0x00,0xff,0xfb,0xf7, - 0xf8,0xfa,0xfc,0xfb,0xf7,0xf4,0xf4,0xf7,0xfa,0xfd,0xfe,0xfd, - 0xfb,0xf9,0xf8,0xf9,0xfc,0xfe,0xfd,0xfa,0xf9,0xfa,0xfc,0xfd, - 0xfd,0xfb,0xfb,0xfb,0xfc,0xfc,0xfe,0xff,0x00,0xff,0xfc,0xf9, - 0xf8,0xfb,0xff,0x02,0x01,0xfb,0xf6,0xf6,0xfa,0x01,0x04,0x04, - 0x02,0x01,0xff,0xfd,0xfc,0xfa,0xfa,0xfa,0xfb,0xfd,0xff,0x00, - 0x00,0x00,0x01,0x00,0xff,0xfd,0xfc,0xfb,0xfc,0xfe,0x00,0x00, - 0x00,0xfe,0xfd,0xfc,0xfd,0xff,0x02,0x04,0x02,0xfe,0xfa,0xf9, - 0xfb,0xff,0x01,0x01,0x01,0x00,0xff,0xfd,0xfc,0xfd,0xff,0x00, - 0x00,0x01,0x02,0x02,0x00,0xfe,0xfc,0xfa,0xf9,0xfa,0xfc,0x00, - 0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0xff,0xfc,0xf7,0xf4, - 0xf5,0xfb,0x04,0x0a,0x0a,0x06,0x01,0xff,0xfe,0xfc,0xf8,0xf5, - 0xf6,0xfb,0x02,0x08,0x09,0x06,0x01,0xfd,0xfc,0xfd,0xfd,0xfd, - 0xfc,0xfd,0xff,0xff,0xfe,0xfe,0x01,0x05,0x06,0x03,0xfe,0xfb, - 0xf9,0xf9,0xfb,0xff,0x02,0x04,0x05,0x05,0x05,0x03,0xff,0xfa, - 0xf6,0xf6,0xf8,0xfc,0x02,0x05,0x05,0x03,0x01,0x02,0x05,0x05, - 0x00,0xfa,0xf6,0xf9,0xff,0x03,0x03,0xff,0xfc,0xfc,0x00,0x03, - 0x04,0x02,0xfe,0xfc,0xfd,0x01,0x03,0x01,0xfd,0xfa,0xfb,0xfe, - 0x01,0x04,0x05,0x07,0x07,0x04,0xfd,0xf7,0xf6,0xfb,0x03,0x08, - 0x09,0x04,0xfe,0xf9,0xf9,0xfb,0xfd,0xff,0x00,0x03,0x07,0x08, - 0x06,0x01,0xfe,0xfd,0xfd,0xfd,0xfe,0x01,0x03,0x03,0x01,0xfd, - 0xfa,0xfa,0xfd,0x03,0x0a,0x0d,0x08,0x00,0xf8,0xf6,0xf9,0xfd, - 0xfe,0xff,0x01,0x06,0x09,0x0a,0x07,0x03,0xfe,0xf9,0xf6,0xf7, - 0xfb,0x00,0x03,0x04,0x03,0x03,0x05,0x06,0x05,0x01,0xfc,0xf9, - 0xfa,0xfe,0x02,0x05,0x05,0x02,0xff,0xfd,0xfd,0xff,0x02,0x04, - 0x03,0x00,0xfc,0xfa,0xfc,0x01,0x07,0x0c,0x0d,0x07,0xfe,0xf8, - 0xf8,0xfd,0x01,0x01,0xff,0xfe,0x02,0x07,0x08,0x04,0xff,0xfe, - 0x01,0x03,0x04,0x02,0x01,0x00,0x00,0x01,0x03,0x06,0x08,0x09, - 0x08,0x05,0xff,0xfa,0xf6,0xf7,0xfc,0x03,0x0a,0x0e,0x0f,0x0b, - 0x04,0xfe,0xfb,0xfe,0x05,0x0a,0x0c,0x08,0x02,0xfd,0xfd,0x02, - 0x08,0x0a,0x07,0x04,0x05,0x08,0x0a,0x06,0x01,0xfe,0x00,0x05, - 0x0a,0x0b,0x09,0x05,0x01,0x01,0x06,0x0d,0x12,0x0f,0x06,0xfc, - 0xf8,0xfb,0x03,0x0c,0x11,0x10,0x09,0x00,0xfa,0xfa,0x03,0x0e, - 0x13,0x10,0x0a,0x06,0x04,0x02,0x00,0xff,0x01,0x04,0x06,0x06, - 0x05,0x04,0x02,0x00,0xff,0xff,0x00,0x02,0x02,0x01,0xff,0xfd, - 0xfc,0xfe,0x01,0x01,0x00,0xff,0xff,0x00,0xff,0xfc,0xf8,0xf4, - 0xf4,0xf7,0xfa,0xfc,0xfb,0xf8,0xf5,0xf5,0xf7,0xfb,0xfd,0xfc, - 0xf7,0xf2,0xef,0xf0,0xf3,0xf7,0xf8,0xf7,0xf5,0xf2,0xf0,0xf1, - 0xf4,0xf7,0xf8,0xf6,0xf3,0xf1,0xf0,0xf1,0xf2,0xf3,0xf5,0xf7, - 0xf8,0xf8,0xf8,0xf7,0xf6,0xf5,0xf4,0xf3,0xf2,0xf1,0xf2,0xf3, - 0xf4,0xf5,0xf5,0xf6,0xf6,0xf8,0xf9,0xfa,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfa,0xf8,0xf7,0xf6,0xf7,0xf8,0xf9,0xfb,0xfd,0xff, - 0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x03,0x04,0x06, - 0x06,0x06,0x05,0x04,0x03,0x02,0x01,0x01,0x01,0x03,0x05,0x07, - 0x09,0x0a,0x0b,0x0c,0x0c,0x0c,0x0b,0x0b,0x0a,0x09,0x07,0x06, - 0x05,0x03,0x02,0x01,0x01,0x02,0x04,0x06,0x09,0x0b,0x0d,0x0e, - 0x0f,0x0e,0x0c,0x09,0x06,0x02,0x00,0xfd,0xfb,0xfa,0xfa,0xfb, - 0xfc,0xfe,0x01,0x03,0x05,0x06,0x07,0x08,0x07,0x06,0x03,0x00, - 0xfe,0xfb,0xfa,0xf9,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8,0xf9,0xfa, - 0xfb,0xfc,0xfd,0xff,0x00,0x00,0xff,0xfd,0xfa,0xf7,0xf5,0xf4, - 0xf2,0xf1,0xf1,0xf3,0xf5,0xf8,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe, - 0xfd,0xfd,0xfc,0xfb,0xf9,0xf8,0xf7,0xf6,0xf6,0xf6,0xf7,0xf8, - 0xf9,0xfb,0xfc,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xff,0xff,0x00,0xff,0xfe,0xfd,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe, - 0x00,0x02,0x04,0x06,0x06,0x06,0x05,0x02,0x00,0xfe,0xfd,0xfc, - 0xfc,0xfd,0x00,0x02,0x05,0x08,0x09,0x0a,0x09,0x07,0x05,0x03, - 0x02,0x01,0x00,0xff,0xff,0xff,0x00,0x02,0x03,0x05,0x06,0x07, - 0x09,0x0b,0x0c,0x0d,0x0c,0x0a,0x07,0x04,0x01,0xff,0xfd,0xfc, - 0xfc,0xfe,0x01,0x05,0x08,0x0b,0x0c,0x0b,0x0b,0x0a,0x09,0x08, - 0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x03,0x03,0x03, - 0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x03,0x04, - 0x06,0x06,0x06,0x05,0x02,0x00,0xfe,0xfc,0xfa,0xf8,0xf7,0xf8, - 0xfa,0xfb,0xfd,0xfe,0xff,0xff,0xfe,0xfe,0xfc,0xfa,0xf8,0xf7, - 0xf6,0xf5,0xf4,0xf3,0xf2,0xf2,0xf1,0xf1,0xf1,0xf2,0xf2,0xf3, - 0xf4,0xf5,0xf6,0xf6,0xf6,0xf6,0xf7,0xf7,0xf8,0xf7,0xf7,0xf6, - 0xf5,0xf4,0xf3,0xf1,0xef,0xee,0xee,0xef,0xf1,0xf4,0xf7,0xf9, - 0xfc,0xff,0x01,0x02,0x03,0x02,0x01,0xff,0xfd,0xfc,0xfa,0xf9, - 0xf9,0xfa,0xfc,0xff,0x03,0x08,0x0b,0x0e,0x10,0x11,0x11,0x11, - 0x10,0x10,0x10,0x11,0x12,0x13,0x13,0x14,0x13,0x13,0x12,0x12, - 0x12,0x14,0x17,0x1b,0x1f,0x22,0x24,0x25,0x24,0x22,0x20,0x1f, - 0x1d,0x1c,0x1b,0x1a,0x1a,0x1a,0x1b,0x1a,0x19,0x17,0x17,0x18, - 0x19,0x1b,0x1d,0x1f,0x1f,0x1e,0x1d,0x1b,0x19,0x18,0x15,0x13, - 0x11,0x11,0x10,0x0f,0x0c,0x07,0x02,0xfe,0xfc,0xfc,0xfd,0xfe, - 0x01,0x05,0x08,0x0b,0x0b,0x08,0x03,0xfc,0xf5,0xf0,0xec,0xe8, - 0xe6,0xe4,0xe3,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xeb, - 0xec,0xeb,0xe9,0xe5,0xe0,0xdb,0xd8,0xd5,0xd3,0xd2,0xd2,0xd3, - 0xd7,0xdc,0xe0,0xe3,0xe6,0xe7,0xe8,0xe9,0xe9,0xe8,0xe6,0xe4, - 0xe1,0xe0,0xdf,0xdf,0xe0,0xe2,0xe4,0xe6,0xe8,0xea,0xec,0xed, - 0xee,0xf0,0xf2,0xf5,0xf9,0xfc,0x00,0x02,0x03,0x03,0x02,0x00, - 0xfe,0xfd,0xfc,0xfc,0xfe,0x00,0x03,0x07,0x09,0x0b,0x0d,0x0e, - 0x0e,0x0f,0x10,0x11,0x12,0x13,0x13,0x13,0x12,0x0f,0x0c,0x08, - 0x06,0x06,0x08,0x0b,0x0f,0x13,0x17,0x1a,0x1b,0x1a,0x17,0x13, - 0x0e,0x0a,0x08,0x08,0x09,0x0a,0x0b,0x0b,0x0a,0x09,0x06,0x04, - 0x01,0x00,0x00,0x02,0x05,0x08,0x09,0x09,0x07,0x03,0xfe,0xfa, - 0xf5,0xf3,0xf2,0xf3,0xf6,0xf9,0xfd,0xff,0xff,0xfc,0xf8,0xf3, - 0xef,0xed,0xed,0xee,0xf1,0xf6,0xfa,0xfe,0xff,0xfe,0xfa,0xf5, - 0xf0,0xec,0xea,0xea,0xec,0xef,0xf2,0xf6,0xf8,0xfa,0xfa,0xf9, - 0xf8,0xf8,0xf9,0xfb,0xfe,0x00,0x02,0x02,0x00,0xfd,0xf8,0xf3, - 0xef,0xed,0xef,0xf3,0xfa,0x02,0x0a,0x10,0x13,0x12,0x0f,0x09, - 0x03,0xfd,0xf9,0xf8,0xf9,0xfd,0x02,0x07,0x0a,0x0c,0x0c,0x0a, - 0x08,0x06,0x04,0x04,0x05,0x07,0x09,0x0c,0x0e,0x0e,0x0c,0x09, - 0x06,0x04,0x02,0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x06,0x04, - 0x02,0x01,0x00,0x01,0x03,0x04,0x05,0x05,0x03,0x01,0xfe,0xfb, - 0xf8,0xf4,0xf0,0xef,0xf0,0xf2,0xf4,0xf7,0xfa,0xfd,0xfe,0x00, - 0x00,0xfe,0xfc,0xf9,0xf6,0xf3,0xf0,0xef,0xef,0xef,0xf0,0xf0, - 0xf2,0xf4,0xf7,0xfa,0xfc,0xfd,0xfe,0xff,0xff,0x00,0xff,0xfc, - 0xfa,0xf7,0xf5,0xf5,0xf5,0xf6,0xf9,0xfc,0x01,0x06,0x0a,0x0c, - 0x0c,0x09,0x06,0x03,0x00,0xff,0xfe,0xff,0x02,0x06,0x0b,0x0f, - 0x11,0x12,0x11,0x10,0x0d,0x0b,0x09,0x08,0x07,0x07,0x08,0x0b, - 0x0e,0x10,0x12,0x12,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x0f, - 0x0f,0x0e,0x0e,0x0d,0x0b,0x0a,0x08,0x08,0x08,0x09,0x0a,0x0b, - 0x0b,0x0c,0x0d,0x0c,0x0b,0x07,0x03,0xff,0xfc,0xfa,0xf8,0xf8, - 0xf8,0xf9,0xf9,0xfa,0xfa,0xfa,0xf8,0xf5,0xf2,0xef,0xee,0xef, - 0xf0,0xf2,0xf4,0xf6,0xf8,0xf8,0xf5,0xef,0xe8,0xe1,0xdc,0xd8, - 0xd7,0xd8,0xdb,0xe0,0xe5,0xeb,0xf0,0xf4,0xf5,0xf4,0xf2,0xf0, - 0xee,0xec,0xea,0xe9,0xe7,0xe5,0xe4,0xe4,0xe5,0xe8,0xeb,0xf0, - 0xf6,0xfd,0x03,0x09,0x0d,0x0f,0x0f,0x0c,0x09,0x06,0x04,0x03, - 0x03,0x05,0x07,0x0a,0x0f,0x15,0x1b,0x20,0x25,0x29,0x2b,0x2c, - 0x2c,0x2a,0x28,0x26,0x24,0x24,0x26,0x2b,0x31,0x37,0x3b,0x3d, - 0x3e,0x3e,0x3c,0x39,0x34,0x2f,0x2b,0x29,0x2a,0x2c,0x2e,0x2f, - 0x2e,0x2d,0x2c,0x2c,0x2c,0x2d,0x2d,0x2d,0x2d,0x2d,0x2b,0x27, - 0x20,0x17,0x0d,0x03,0xfc,0xf9,0xf9,0xfb,0xff,0x04,0x08,0x0a, - 0x0b,0x09,0x03,0xfb,0xf0,0xe7,0xdf,0xd9,0xd7,0xd5,0xd6,0xd7, - 0xd8,0xd9,0xda,0xda,0xd9,0xd6,0xd2,0xce,0xca,0xc7,0xc6,0xc6, - 0xc7,0xc7,0xc8,0xc9,0xcc,0xce,0xcf,0xcf,0xcd,0xcc,0xcb,0xcb, - 0xcd,0xce,0xcf,0xcf,0xcf,0xd0,0xd2,0xd3,0xd4,0xd5,0xd7,0xdc, - 0xe3,0xec,0xf5,0xfb,0xff,0xff,0xfe,0xfa,0xf6,0xf1,0xec,0xeb, - 0xec,0xf1,0xfa,0x03,0x0b,0x11,0x14,0x14,0x13,0x11,0x0f,0x0f, - 0x11,0x16,0x1b,0x1f,0x23,0x25,0x24,0x20,0x18,0x10,0x0a,0x06, - 0x07,0x0a,0x11,0x18,0x1e,0x22,0x24,0x24,0x21,0x1c,0x16,0x12, - 0x0f,0x10,0x12,0x15,0x17,0x17,0x14,0x10,0x0a,0x04,0xfe,0xf9, - 0xf7,0xf7,0xf9,0xfc,0x01,0x04,0x06,0x05,0x02,0xfe,0xfb,0xf8, - 0xf6,0xf5,0xf3,0xf3,0xf2,0xf1,0xf0,0xed,0xea,0xe6,0xe2,0xe1, - 0xe2,0xe4,0xe8,0xeb,0xef,0xf2,0xf4,0xf6,0xf6,0xf5,0xf2,0xef, - 0xed,0xeb,0xea,0xe9,0xe9,0xe8,0xe6,0xe6,0xe8,0xeb,0xee,0xf2, - 0xf6,0xfb,0x01,0x05,0x07,0x07,0x05,0x02,0xff,0xfc,0xfa,0xf8, - 0xf8,0xf9,0xfb,0xfe,0x01,0x03,0x04,0x05,0x06,0x07,0x09,0x0b, - 0x0c,0x0d,0x0d,0x0d,0x0c,0x0b,0x09,0x07,0x06,0x06,0x07,0x0a, - 0x0d,0x0f,0x11,0x10,0x0f,0x0c,0x09,0x06,0x04,0x02,0x03,0x07, - 0x0b,0x10,0x13,0x15,0x14,0x11,0x0c,0x07,0x02,0xfd,0xfc,0xfc, - 0xff,0x02,0x06,0x08,0x09,0x08,0x06,0x02,0xfe,0xfc,0xfc,0xfd, - 0x01,0x05,0x0a,0x0d,0x0d,0x0c,0x09,0x04,0xfe,0xf9,0xf4,0xf1, - 0xf2,0xf4,0xf7,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf8,0xf9, - 0xfb,0xfe,0x01,0x02,0x00,0xfd,0xf9,0xf4,0xf0,0xed,0xec,0xed, - 0xef,0xf2,0xf6,0xfa,0xfc,0xfc,0xf9,0xf4,0xf0,0xed,0xec,0xec, - 0xed,0xf0,0xf3,0xf8,0xfc,0xff,0xff,0xfd,0xfb,0xf8,0xf7,0xf6, - 0xf6,0xf7,0xf8,0xf9,0xfa,0xfa,0xfa,0xf9,0xf7,0xf6,0xf6,0xf8, - 0xfb,0xff,0x03,0x07,0x0a,0x0c,0x0d,0x0d,0x0b,0x09,0x07,0x05, - 0x04,0x06,0x09,0x0c,0x0e,0x10,0x12,0x13,0x14,0x13,0x12,0x10, - 0x0e,0x0d,0x0e,0x10,0x13,0x15,0x17,0x18,0x18,0x17,0x15,0x13, - 0x10,0x0d,0x0c,0x0b,0x0c,0x0e,0x10,0x10,0x10,0x0f,0x0d,0x0b, - 0x0a,0x08,0x07,0x07,0x06,0x06,0x06,0x05,0x02,0xfe,0xf9,0xf5, - 0xf3,0xf2,0xf2,0xf3,0xf5,0xf6,0xf8,0xf8,0xf6,0xf3,0xef,0xeb, - 0xe7,0xe5,0xe5,0xe6,0xe8,0xea,0xec,0xed,0xec,0xea,0xe8,0xe6, - 0xe4,0xe2,0xe2,0xe4,0xe7,0xea,0xed,0xed,0xec,0xea,0xe6,0xe3, - 0xe1,0xe1,0xe3,0xe7,0xee,0xf6,0xff,0x07,0x0d,0x10,0x10,0x0e, - 0x0a,0x05,0x01,0xfe,0xfc,0xfc,0xff,0x04,0x0b,0x14,0x1d,0x24, - 0x29,0x2c,0x2e,0x2d,0x2b,0x27,0x23,0x20,0x20,0x23,0x29,0x30, - 0x36,0x3b,0x3e,0x3f,0x3e,0x3a,0x35,0x2f,0x2a,0x29,0x2a,0x2d, - 0x30,0x32,0x31,0x2f,0x2b,0x27,0x24,0x22,0x24,0x27,0x2c,0x31, - 0x34,0x33,0x2c,0x21,0x11,0xff,0xef,0xe5,0xe2,0xe6,0xef,0xfa, - 0x07,0x11,0x16,0x16,0x0f,0x02,0xf3,0xe4,0xd9,0xd3,0xd3,0xd5, - 0xd9,0xdc,0xdc,0xda,0xd6,0xd1,0xca,0xc5,0xc1,0xc1,0xc5,0xcc, - 0xd5,0xdb,0xde,0xdd,0xda,0xd6,0xd2,0xcd,0xca,0xc8,0xc9,0xcd, - 0xd2,0xd7,0xdb,0xdc,0xdb,0xda,0xd9,0xd9,0xda,0xdc,0xe0,0xe5, - 0xea,0xef,0xf5,0xfa,0xfd,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xf9, - 0xf9,0xf8,0xfa,0xfc,0x00,0x05,0x09,0x0c,0x0e,0x0f,0x11,0x12, - 0x13,0x15,0x16,0x18,0x1a,0x1c,0x1e,0x1d,0x1a,0x17,0x12,0x0e, - 0x0c,0x0b,0x0c,0x0f,0x12,0x15,0x17,0x19,0x19,0x18,0x16,0x13, - 0x10,0x0d,0x0b,0x0a,0x08,0x07,0x05,0x03,0x02,0x01,0x02,0x02, - 0x02,0x03,0x03,0x02,0xfe,0xfa,0xf4,0xf0,0xed,0xeb,0xec,0xef, - 0xf3,0xf8,0xfd,0x00,0x01,0xff,0xfa,0xf4,0xee,0xe9,0xe5,0xe4, - 0xe4,0xe6,0xe9,0xed,0xf1,0xf4,0xf5,0xf6,0xf5,0xf4,0xf4,0xf4, - 0xf4,0xf4,0xf4,0xf5,0xf5,0xf6,0xf6,0xf6,0xf7,0xf9,0xfa,0xfb, - 0xfc,0xfc,0xfd,0xfd,0xfd,0xfc,0xfc,0xfb,0xfc,0xfd,0xfe,0x00, - 0x02,0x05,0x08,0x0a,0x0c,0x0d,0x0d,0x0b,0x09,0x05,0x02,0xff, - 0xfd,0xfd,0xfe,0x01,0x04,0x08,0x0c,0x0f,0x11,0x10,0x0e,0x09, - 0x04,0x00,0xfe,0xfd,0xfd,0xff,0x03,0x07,0x0c,0x0f,0x0f,0x0d, - 0x09,0x05,0x00,0xfc,0xfa,0xf8,0xf8,0xf9,0xfc,0xfe,0x01,0x03, - 0x05,0x06,0x07,0x08,0x08,0x08,0x07,0x06,0x03,0xff,0xfb,0xf7, - 0xf5,0xf4,0xf4,0xf5,0xf8,0xfd,0x02,0x06,0x0a,0x0b,0x0a,0x08, - 0x06,0x03,0x00,0xfe,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa, - 0xf9,0xf8,0xf8,0xf9,0xfb,0xfd,0x00,0x02,0x04,0x04,0x04,0x02, - 0xff,0xfb,0xf7,0xf4,0xf3,0xf3,0xf4,0xf5,0xf7,0xf9,0xfb,0xfc, - 0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfa,0xf8, - 0xf7,0xf6,0xf5,0xf4,0xf3,0xf3,0xf4,0xf6,0xf8,0xfa,0xfc,0xfe, - 0xff,0x01,0x03,0x04,0x05,0x03,0x00,0xfd,0xfa,0xf8,0xf7,0xf6, - 0xf7,0xf8,0xfb,0x00,0x05,0x0a,0x0c,0x0d,0x0d,0x0c,0x0c,0x0b, - 0x0b,0x0a,0x09,0x09,0x09,0x09,0x08,0x06,0x04,0x02,0x02,0x04, - 0x07,0x0b,0x10,0x14,0x18,0x1b,0x1b,0x1a,0x18,0x14,0x10,0x0c, - 0x09,0x07,0x06,0x05,0x04,0x03,0x01,0x00,0x00,0x01,0x03,0x05, - 0x07,0x0a,0x0c,0x0d,0x0b,0x07,0x01,0xfc,0xf7,0xf4,0xf3,0xf3, - 0xf5,0xf7,0xf9,0xfa,0xfa,0xf8,0xf4,0xef,0xea,0xe7,0xe6,0xe7, - 0xea,0xec,0xef,0xf1,0xf2,0xf3,0xf3,0xf2,0xf0,0xef,0xee,0xed, - 0xed,0xed,0xeb,0xe7,0xe3,0xe1,0xe1,0xe3,0xe8,0xed,0xf3,0xfb, - 0x04,0x0c,0x11,0x12,0x0f,0x0b,0x06,0x02,0xfe,0xfa,0xf8,0xf8, - 0xf9,0xfe,0x04,0x0c,0x13,0x1a,0x20,0x25,0x29,0x2c,0x2c,0x2a, - 0x27,0x23,0x20,0x1e,0x1e,0x20,0x22,0x24,0x26,0x28,0x28,0x28, - 0x27,0x25,0x23,0x22,0x23,0x26,0x2a,0x2d,0x2e,0x2e,0x2c,0x2a, - 0x27,0x24,0x23,0x22,0x23,0x24,0x26,0x26,0x24,0x1e,0x14,0x08, - 0xfc,0xf3,0xed,0xed,0xf0,0xf7,0xfe,0x07,0x0f,0x14,0x14,0x0e, - 0x04,0xf7,0xeb,0xe2,0xdb,0xd5,0xd3,0xd2,0xd3,0xd6,0xda,0xdd, - 0xde,0xde,0xdd,0xdc,0xda,0xda,0xd9,0xd8,0xd6,0xd3,0xd2,0xd1, - 0xd2,0xd4,0xd5,0xd5,0xd6,0xd9,0xdc,0xde,0xe0,0xe1,0xe1,0xe1, - 0xe1,0xe1,0xe0,0xde,0xdc,0xdb,0xdd,0xe1,0xe6,0xed,0xf4,0xfb, - 0x01,0x06,0x08,0x07,0x04,0xff,0xfa,0xf7,0xf6,0xf7,0xfa,0xff, - 0x03,0x07,0x0a,0x0c,0x0c,0x0a,0x08,0x07,0x07,0x0a,0x0e,0x13, - 0x17,0x1a,0x1c,0x1b,0x18,0x14,0x0f,0x0a,0x06,0x05,0x06,0x0a, - 0x0e,0x12,0x15,0x15,0x13,0x10,0x0b,0x07,0x02,0x00,0x00,0x01, - 0x04,0x08,0x0b,0x0d,0x0e,0x0d,0x0b,0x07,0x03,0xfe,0xfa,0xf7, - 0xf6,0xf4,0xf3,0xf2,0xf2,0xf3,0xf4,0xf6,0xf7,0xf9,0xfa,0xfb, - 0xfc,0xfc,0xfb,0xf9,0xf6,0xf4,0xf1,0xef,0xed,0xed,0xed,0xef, - 0xf1,0xf4,0xf6,0xf8,0xfa,0xfa,0xfa,0xf9,0xf8,0xf7,0xf6,0xf6, - 0xf6,0xf7,0xf8,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01,0x02,0x03,0x05,0x06, - 0x08,0x09,0x09,0x08,0x07,0x06,0x04,0x02,0xff,0xfe,0xfe,0x00, - 0x02,0x05,0x08,0x09,0x0a,0x0a,0x09,0x07,0x05,0x03,0x02,0x02, - 0x04,0x06,0x08,0x0a,0x0b,0x0a,0x08,0x04,0x00,0xfb,0xf8,0xf7, - 0xf7,0xf9,0xfc,0xff,0x03,0x06,0x08,0x08,0x07,0x04,0x02,0x01, - 0x00,0x00,0x00,0x01,0x01,0x00,0xff,0xfd,0xfb,0xf9,0xf6,0xf5, - 0xf6,0xf8,0xfc,0x00,0x04,0x07,0x0a,0x0b,0x0b,0x09,0x06,0x01, - 0xfd,0xfa,0xf9,0xf9,0xf9,0xfa,0xfc,0xfd,0xfe,0x00,0x00,0x01, - 0x00,0xff,0xfe,0xff,0x00,0x01,0x02,0x03,0x02,0x02,0x00,0xfe, - 0xfb,0xf8,0xf6,0xf5,0xf5,0xf6,0xf9,0xfc,0xff,0x00,0x01,0x00, - 0xff,0xfd,0xfb,0xfa,0xf9,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe,0xfd, - 0xfc,0xfa,0xf9,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb,0xfd,0xfe,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xff,0x01,0x04,0x06,0x08,0x08,0x08,0x06, - 0x03,0xff,0xfb,0xf9,0xf8,0xf9,0xfd,0x01,0x05,0x08,0x0b,0x0d, - 0x0e,0x0e,0x0c,0x0a,0x08,0x07,0x06,0x07,0x08,0x09,0x09,0x09, - 0x09,0x08,0x08,0x08,0x07,0x08,0x08,0x08,0x09,0x09,0x09,0x08, - 0x07,0x07,0x07,0x07,0x07,0x06,0x06,0x05,0x04,0x03,0x01,0x00, - 0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfc,0xfd,0xfc,0xfc,0xfc,0xfd, - 0xfc,0xfc,0xfc,0xfb,0xfa,0xf9,0xf7,0xf6,0xf4,0xf3,0xf2,0xf2, - 0xf3,0xf4,0xf4,0xf5,0xf5,0xf5,0xf4,0xf3,0xf3,0xf3,0xf4,0xf5, - 0xf6,0xf7,0xf9,0xfa,0xfa,0xf9,0xf8,0xf7,0xf8,0xf9,0xfa,0xfd, - 0xff,0x02,0x03,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x04,0x05, - 0x07,0x08,0x09,0x0a,0x0c,0x0d,0x0f,0x10,0x12,0x13,0x15,0x16, - 0x16,0x16,0x15,0x15,0x14,0x13,0x13,0x14,0x14,0x14,0x13,0x13, - 0x13,0x13,0x13,0x13,0x14,0x15,0x16,0x17,0x17,0x18,0x17,0x16, - 0x13,0x11,0x0f,0x0e,0x0e,0x0e,0x0e,0x0d,0x0b,0x09,0x07,0x04, - 0x00,0xfd,0xfc,0xfb,0xfc,0xff,0x02,0x04,0x06,0x05,0x04,0x01, - 0xfd,0xf9,0xf4,0xf0,0xee,0xed,0xed,0xee,0xef,0xf0,0xf0,0xf0, - 0xef,0xee,0xee,0xee,0xee,0xee,0xef,0xf0,0xf0,0xf0,0xef,0xed, - 0xeb,0xea,0xe9,0xea,0xea,0xeb,0xed,0xee,0xf0,0xf1,0xf2,0xf3, - 0xf2,0xf2,0xf1,0xf1,0xf1,0xf1,0xf2,0xf2,0xf3,0xf5,0xf7,0xf9, - 0xfb,0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfd,0xff,0x01,0x04,0x06,0x09,0x0b,0x0c,0x0c,0x0c,0x0b,0x09, - 0x07,0x05,0x03,0x03,0x03,0x03,0x04,0x06,0x07,0x09,0x0a,0x0a, - 0x0a,0x0a,0x08,0x07,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x04, - 0x03,0x03,0x02,0x01,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xfe, - 0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xf8,0xf8,0xf9,0xfa,0xfb,0xfc, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xff,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x01, - 0x01,0x02,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0x01,0x02,0x03, - 0x04,0x05,0x05,0x05,0x03,0x02,0x00,0xff,0xfe,0xfd,0xfe,0xff, - 0x01,0x02,0x02,0x03,0x03,0x02,0x02,0x01,0x01,0x00,0x00,0x01, - 0x02,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00, - 0x00,0x01,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x02,0x03,0x03,0x03,0x02,0x00,0xff,0xfe,0xff,0xff,0xff, - 0xff,0x00,0x01,0x01,0x01,0xfe,0xfc,0xfb,0xfa,0xfb,0xfd,0xff, - 0x01,0x03,0x04,0x04,0x03,0x01,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfc, - 0xfc,0xfd,0x01,0x04,0x05,0x05,0x03,0x00,0xff,0xfe,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x02,0x00, - 0xfe,0xfd,0xfc,0xfc,0xfe,0x00,0x01,0x01,0xff,0xfe,0xfd,0xfe, - 0xff,0xff,0xfe,0xfd,0xfd,0x00,0x03,0x04,0x03,0x01,0x00,0x00, - 0x00,0xfe,0xfd,0xfc,0xfe,0x01,0x04,0x06,0x05,0x03,0x01,0xff, - 0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xfd,0xfc,0xfd,0xff,0x01, - 0x02,0x02,0x02,0x01,0xff,0xfd,0xfb,0xfc,0xfe,0x00,0x01,0x00, - 0xfe,0xfc,0xfb,0xfb,0xfc,0xff,0x03,0x06,0x06,0x04,0x00,0xfd, - 0xfd,0xfd,0xff,0x01,0x02,0x03,0x01,0xff,0xfd,0xfd,0xff,0x02, - 0x04,0x05,0x04,0x02,0x01,0xff,0xfe,0xfc,0xfc,0xfd,0xff,0x00, - 0x00,0x00,0x00,0x00,0xff,0xfd,0xfc,0xfd,0xfe,0x00,0x00,0x00, - 0x01,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x00, - 0xfe,0xfc,0xfc,0xfe,0x00,0xff,0xfc,0xfb,0xfd,0xff,0x01,0x01, - 0x01,0x02,0x04,0x05,0x04,0x00,0xfe,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x00,0xff,0xfc,0xfb,0xfb,0xfc,0xff,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x00,0xfe,0xfc, - 0xfb,0xfe,0x02,0x04,0x04,0x01,0xff,0xff,0x00,0x01,0x01,0x01, - 0x02,0x02,0x01,0xff,0xfd,0xfd,0x00,0x01,0x00,0xfe,0xfd,0xfe, - 0xff,0xfe,0xfa,0xf8,0xf9,0xfd,0x01,0x03,0x04,0x03,0x03,0x02, - 0x01,0xff,0xfe,0xfe,0x00,0x02,0x02,0x02,0x02,0x02,0x01,0xff, - 0xfe,0xff,0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xff, - 0x01,0x03,0x04,0x03,0x01,0xfd,0xfb,0xfb,0xfd,0x00,0x01,0x01, - 0x00,0xfe,0xfb,0xfa,0xfb,0xfd,0x00,0x02,0x02,0x02,0x00,0x00, - 0x01,0x03,0x05,0x04,0x01,0xfe,0xfe,0xfe,0x00,0x02,0x03,0x02, - 0x01,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfc,0xff,0x01, - 0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfb,0xfa,0xfd,0x01, - 0x05,0x05,0x01,0xfd,0xfb,0xfd,0xff,0x01,0x03,0x04,0x05,0x04, - 0x02,0xff,0xfc,0xfc,0xff,0x02,0x02,0xfe,0xfc,0xfc,0x00,0x02, - 0x02,0x00,0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0xfe, - 0xfd,0xfe,0x01,0x03,0x02,0xfc,0xf6,0xf5,0xfb,0x03,0x07,0x05, - 0xff,0xfb,0xfa,0xfc,0xfe,0x00,0x02,0x03,0x04,0x04,0x01,0xfe, - 0xfd,0xfe,0x00,0x01,0x01,0x02,0x04,0x05,0x03,0xff,0xfc,0xfc, - 0xff,0x01,0x01,0xff,0xfc,0xfc,0xfe,0x00,0x00,0x00,0x01,0x04, - 0x05,0x02,0xfc,0xf7,0xf6,0xfb,0x01,0x04,0x03,0x00,0xfe,0xfe, - 0xfe,0xff,0xff,0x01,0x01,0xff,0xfd,0xfc,0xff,0x03,0x04,0x03, - 0x01,0x00,0x00,0x00,0xff,0xfe,0xff,0x00,0x02,0x02,0x01,0xff, - 0xfd,0xfe,0x00,0x00,0xff,0xfd,0xfc,0xfe,0x00,0x02,0x02,0x01, - 0xff,0xfd,0xfd,0x00,0x03,0x03,0xff,0xfc,0xfc,0xfd,0xff,0x01, - 0x03,0x03,0x03,0x01,0xfe,0xfc,0xfc,0xfc,0xfd,0xff,0x02,0x03, - 0x03,0x01,0xff,0xfd,0xfd,0xfe,0xff,0x00,0x00,0xff,0xfe,0xff, - 0x01,0x01,0x01,0xff,0xff,0xff,0x01,0x01,0x01,0x00,0xff,0xff, - 0x00,0x01,0x00,0xff,0xfe,0xfe,0x00,0x01,0x03,0x03,0x03,0x02, - 0x00,0xfd,0xfb,0xfb,0xfe,0x00,0x01,0xff,0xfd,0xfd,0xfe,0xff, - 0x00,0x00,0x00,0xff,0xfd,0xfb,0xfc,0xff,0x02,0x04,0x02,0x00, - 0xff,0x01,0x04,0x05,0x03,0x00,0xfd,0xfd,0xff,0x00,0x00,0xff, - 0xfd,0xfd,0xfe,0x01,0x02,0x02,0x00,0xff,0xfe,0xff,0x00,0x01, - 0x02,0x03,0x01,0xfd,0xfa,0xfb,0xff,0x03,0x04,0x00,0xfb,0xf9, - 0xfa,0xfd,0xff,0xff,0xff,0xff,0x00,0x02,0x04,0x04,0x03,0x02, - 0x02,0x02,0x02,0x02,0x01,0xff,0xfd,0xfd,0xfe,0x00,0x01,0x00, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfd,0xfc,0xfe,0x02,0x05,0x05, - 0x02,0xfe,0xfc,0xfe,0x01,0x02,0x02,0x01,0x00,0x00,0x02,0x02, - 0x01,0xfd,0xfa,0xfa,0xfd,0x01,0x04,0x04,0x02,0xff,0xfc,0xfc, - 0xff,0x02,0x02,0x01,0xff,0x00,0x01,0x02,0x00,0xfe,0xfd,0xfd, - 0xfd,0xfe,0xff,0x00,0xff,0xfd,0xfd,0xff,0x03,0x04,0x03,0x01, - 0x00,0xff,0xff,0xfe,0xfe,0x00,0x03,0x05,0x05,0x01,0xfe,0xfb, - 0xfb,0xfd,0xff,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x01, - 0x03,0x04,0x02,0xff,0xfc,0xfd,0xff,0x01,0x03,0x03,0x04,0x03, - 0xff,0xfa,0xf7,0xf8,0xfc,0x01,0x03,0x04,0x03,0x02,0x00,0xfd, - 0xfa,0xf9,0xfc,0x02,0x06,0x06,0x02,0xfd,0xfd,0xff,0x02,0x03, - 0x02,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xff, - 0xff,0x01,0x03,0x04,0x02,0xff,0xfb,0xfb,0xfe,0x02,0x03,0x01, - 0xff,0xff,0xff,0xfc,0xf9,0xf8,0xfd,0x02,0x03,0xff,0xfc,0xfc, - 0x00,0x04,0x03,0xff,0xfd,0xff,0x03,0x05,0x03,0x00,0xff,0x01, - 0x03,0x03,0x01,0x01,0x02,0x01,0xfe,0xfa,0xf8,0xfa,0xfe,0x00, - 0x02,0x03,0x03,0x02,0xfe,0xfa,0xf8,0xfb,0xff,0x03,0x04,0x02, - 0x00,0xfe,0xfc,0xfc,0xfd,0xff,0x02,0x05,0x06,0x03,0xfe,0xfb, - 0xfb,0xfe,0x01,0x03,0x04,0x05,0x05,0x03,0xff,0xfa,0xf8,0xfb, - 0x01,0x06,0x05,0x01,0xfc,0xfa,0xfb,0xfc,0xfe,0x01,0x03,0x03, - 0x00,0xfb,0xfa,0xfc,0xff,0x01,0x01,0x02,0x03,0x02,0x01,0xff, - 0xfe,0xfe,0xfe,0xff,0x02,0x04,0x06,0x05,0x02,0xff,0xfe,0xfd, - 0xfc,0xfc,0xfc,0xfe,0x01,0x04,0x06,0x03,0xfc,0xf6,0xf5,0xfa, - 0x02,0x07,0x04,0xfd,0xf9,0xfd,0x05,0x07,0x02,0xfa,0xf8,0xfe, - 0x06,0x09,0x03,0xfb,0xf8,0xfa,0xff,0x03,0x06,0x07,0x07,0x02, - 0xfb,0xf7,0xf9,0x00,0x05,0x05,0x01,0xff,0x00,0x02,0x01,0xfe, - 0xfb,0xfc,0xff,0x01,0xff,0xfc,0xfa,0xfd,0x00,0x01,0xfe,0xfb, - 0xfc,0x03,0x09,0x0a,0x04,0xfd,0xfb,0xfd,0x00,0x00,0xff,0xfe, - 0x00,0x02,0x02,0x00,0xff,0x00,0xfe,0xfb,0xf8,0xfa,0x00,0x07, - 0x08,0x03,0xfb,0xf6,0xf9,0x02,0x09,0x09,0x03,0xfc,0xfc,0x00, - 0x03,0x01,0xfb,0xf9,0xfc,0x02,0x03,0xff,0xfa,0xf8,0xfd,0x05, - 0x0a,0x09,0x04,0xfe,0xfa,0xf9,0xfb,0xff,0x02,0x04,0x05,0x04, - 0x00,0xfc,0xfa,0xfa,0xfc,0xff,0x01,0x02,0x02,0x00,0xfd,0xfb, - 0xfc,0xff,0x00,0x01,0x01,0x03,0x04,0x04,0x01,0xfe,0xfd,0xfe, - 0x01,0x03,0x02,0xff,0xfc,0xfa,0xfb,0xfe,0x02,0x06,0x09,0x07, - 0x01,0xf9,0xf5,0xf7,0xfd,0x03,0x06,0x03,0xfe,0xfb,0xfc,0x00, - 0x03,0x02,0xff,0xfc,0xfd,0x01,0x04,0x03,0xff,0xfd,0x00,0x05, - 0x04,0xfd,0xf7,0xf9,0x01,0x08,0x07,0x01,0xfa,0xf8,0xfc,0x01, - 0x04,0x02,0xfc,0xf8,0xfb,0x03,0x09,0x09,0x03,0xfe,0xfc,0xfc, - 0xfe,0xff,0xff,0xff,0xfe,0xfc,0xf9,0xf9,0xfe,0x05,0x0b,0x0b, - 0x04,0xfb,0xf7,0xf8,0xfd,0x02,0x07,0x09,0x09,0x04,0xfc,0xf5, - 0xf4,0xf9,0x00,0x04,0x04,0x02,0xff,0xfe,0xfe,0xff,0xff,0xfe, - 0xfc,0xfd,0x01,0x06,0x08,0x04,0xfd,0xf9,0xf9,0xfe,0x03,0x05, - 0x03,0xfe,0xfa,0xfb,0x00,0x04,0x05,0x03,0x00,0xfd,0xfc,0xfc, - 0xfd,0xff,0x00,0x03,0x05,0x06,0x04,0xfe,0xf9,0xf7,0xfb,0x01, - 0x05,0x05,0x01,0xfd,0xfd,0x01,0x04,0x04,0xff,0xf9,0xf7,0xfc, - 0x03,0x07,0x03,0xfe,0xfb,0xff,0x03,0x04,0x02,0xff,0xfd,0xfd, - 0xfc,0xfc,0xfd,0xff,0x02,0x03,0x02,0xfe,0xfb,0xf9,0xfa,0xff, - 0x04,0x07,0x05,0x02,0x00,0xff,0x00,0x00,0x00,0x01,0x00,0xff, - 0xfd,0xfd,0x00,0x03,0x04,0x01,0xfd,0xfc,0xff,0x03,0x06,0x04, - 0xfe,0xf8,0xf8,0xfd,0x02,0x03,0x00,0xfc,0xfa,0xfb,0x01,0x06, - 0x07,0x02,0xfb,0xf8,0xfc,0x02,0x05,0x01,0xfc,0xfc,0x01,0x07, - 0x08,0x03,0xfd,0xfa,0xfb,0xff,0x02,0x02,0xff,0xfb,0xfb,0xff, - 0x04,0x06,0x02,0xfb,0xf7,0xf8,0xfe,0x06,0x0c,0x0b,0x05,0xfc, - 0xf8,0xfa,0x00,0x04,0x02,0xfd,0xf7,0xf7,0xfd,0x06,0x09,0x04, - 0xfd,0xf9,0xfb,0xfe,0xfe,0xfd,0xfd,0x01,0x05,0x06,0x05,0x02, - 0x00,0xff,0xfd,0xfb,0xfb,0xfc,0xfd,0xff,0x03,0x07,0x08,0x04, - 0xfd,0xf8,0xf8,0xfc,0x00,0x02,0x01,0x01,0x02,0x04,0x03,0x01, - 0xfe,0xfd,0xfc,0xfb,0xfb,0x00,0x06,0x0a,0x06,0xfd,0xf6,0xf6, - 0xfb,0x00,0x01,0x02,0x03,0x02,0xff,0xfb,0xfa,0xff,0x06,0x0b, - 0x08,0x00,0xf7,0xf3,0xf8,0x00,0x08,0x0b,0x08,0x01,0xfb,0xf7, - 0xf7,0xfb,0x01,0x04,0x04,0x01,0x00,0xff,0xff,0xfe,0xfd,0xff, - 0x02,0x03,0x02,0xff,0xfc,0xfc,0xfb,0xfc,0xff,0x03,0x04,0x02, - 0xfd,0xfc,0xfd,0xff,0x00,0x03,0x05,0x05,0x02,0xfd,0xfa,0xfa, - 0xfc,0x00,0x06,0x0a,0x08,0x01,0xf9,0xf6,0xf9,0x00,0x06,0x07, - 0x02,0xfb,0xf7,0xf7,0xfb,0x00,0x04,0x05,0x03,0x00,0xfd,0xfb, - 0xfa,0xfd,0x02,0x07,0x08,0x04,0xfe,0xfb,0xfb,0xff,0x02,0x05, - 0x04,0x01,0xfd,0xfb,0xfa,0xfb,0xfd,0x00,0x03,0x03,0x01,0xfe, - 0xfe,0x00,0x01,0xff,0xfd,0xff,0x02,0x04,0x03,0xff,0xfd,0xfd, - 0x00,0x02,0x02,0x01,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0x00, - 0x02,0x04,0x02,0xff,0xfb,0xfa,0xfc,0x00,0x04,0x05,0x04,0x01, - 0x00,0x00,0x00,0xfd,0xfa,0xf9,0xfb,0xff,0x03,0x06,0x07,0x04, - 0xfe,0xf9,0xf8,0xfc,0x01,0x04,0x04,0x02,0x01,0xff,0xfe,0xfe, - 0x01,0x02,0x01,0xff,0xfe,0x01,0x04,0x02,0xfd,0xfa,0xfb,0xfe, - 0x00,0x00,0xff,0xfe,0xfe,0xfe,0xff,0x01,0x02,0x02,0x02,0x01, - 0xff,0xfd,0xfb,0xfb,0xff,0x02,0x03,0x03,0x03,0x04,0x01,0xfb, - 0xf9,0xfd,0x06,0x0a,0x05,0xfb,0xf6,0xf9,0xff,0x02,0x01,0x01, - 0x03,0x06,0x05,0xfe,0xf7,0xf5,0xfb,0x04,0x09,0x07,0x02,0xfe, - 0xfd,0xfb,0xf8,0xf7,0xfb,0x05,0x0b,0x09,0x01,0xf9,0xf7,0xfa, - 0xfd,0x01,0x04,0x08,0x08,0x03,0xfd,0xfa,0xfb,0xff,0x02,0x04, - 0x04,0x03,0xff,0xf8,0xf5,0xf9,0x01,0x08,0x09,0x05,0xfe,0xf9, - 0xf7,0xf9,0xfe,0x03,0x07,0x07,0x05,0x01,0xfc,0xf7,0xf5,0xf8, - 0x00,0x09,0x0c,0x07,0xfe,0xf8,0xf8,0xfc,0x00,0x01,0x01,0x02, - 0x04,0x04,0x00,0xfb,0xfa,0xff,0x05,0x07,0x02,0xfd,0xfc,0xff, - 0x02,0x02,0xfe,0xf9,0xfa,0x00,0x07,0x08,0x03,0xfb,0xf8,0xfa, - 0xff,0x01,0xff,0xfd,0xff,0x02,0x03,0x01,0xfe,0xfe,0x00,0x01, - 0x00,0xfe,0xfd,0x00,0x03,0x04,0x01,0xfb,0xf7,0xfa,0x01,0x06, - 0x06,0x01,0xfe,0xfe,0xff,0x01,0x02,0x03,0x04,0x02,0xff,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xff,0x04,0x06,0x04,0xff,0xfa,0xf8,0xfa, - 0xfd,0x01,0x04,0x05,0x03,0x00,0xfc,0xf9,0xf8,0xfc,0x02,0x07, - 0x06,0x01,0xfc,0xfb,0xfd,0x00,0x01,0x02,0x03,0x03,0x02,0x00, - 0xfe,0xfe,0xff,0x00,0xfe,0xfc,0xfc,0xff,0x04,0x07,0x04,0xff, - 0xfd,0xfd,0x00,0x01,0x00,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xff,0x01,0x02,0x02,0x01,0xff,0xfd,0xfe,0xff,0x01, - 0x02,0x01,0xff,0xff,0xff,0xff,0xfe,0xfe,0x00,0x02,0x02,0x00, - 0xfd,0xfe,0x01,0x04,0x02,0xfd,0xfa,0xfe,0x04,0x06,0x01,0xfc, - 0xfa,0xfc,0x00,0x03,0x04,0x04,0x03,0xff,0xfa,0xf7,0xf7,0xfc, - 0x04,0x0a,0x0c,0x08,0x01,0xfb,0xf7,0xf7,0xfa,0xff,0x04,0x07, - 0x06,0x01,0xfc,0xfa,0xfb,0xfd,0xff,0x00,0x00,0x01,0x02,0x02, - 0xff,0xfa,0xf8,0xfb,0x03,0x0b,0x0c,0x06,0xfe,0xf8,0xf7,0xf9, - 0xfd,0x02,0x07,0x09,0x06,0xff,0xf9,0xf7,0xfa,0x00,0x06,0x07, - 0x05,0x00,0xfc,0xfa,0xfa,0xfc,0xff,0x01,0x02,0x02,0x01,0x01, - 0x01,0x01,0x00,0xfc,0xfa,0xfb,0x00,0x05,0x06,0x02,0xfd,0xfb, - 0xfc,0xff,0xff,0xfe,0xfd,0xfd,0x00,0x03,0x03,0x01,0xff,0xfd, - 0xfe,0x00,0x02,0x03,0x03,0x01,0xfe,0xfc,0xfd,0x00,0x03,0x04, - 0x02,0x00,0xff,0xfd,0xfc,0xfc,0xff,0x03,0x05,0x05,0x03,0x00, - 0xfe,0xfc,0xfb,0xfb,0xfc,0xfc,0xfd,0xff,0x03,0x06,0x06,0x02, - 0xfc,0xf8,0xf8,0xfd,0x03,0x05,0x02,0xff,0xff,0x00,0xff,0xfd, - 0xfd,0x01,0x07,0x0a,0x06,0xff,0xf9,0xf8,0xfd,0x03,0x05,0x03, - 0x00,0xff,0xfe,0xfb,0xf6,0xf4,0xf8,0x02,0x0c,0x0e,0x08,0xfd, - 0xf5,0xf3,0xf8,0x00,0x08,0x0b,0x09,0x04,0xff,0xfb,0xfa,0xfa, - 0xfc,0xff,0x02,0x04,0x03,0x01,0xfe,0xfa,0xf8,0xf9,0xfd,0x03, - 0x08,0x0a,0x07,0x00,0xfa,0xf6,0xf7,0xfd,0x06,0x0b,0x09,0x02, - 0xfa,0xf7,0xf8,0xfb,0xfe,0x01,0x03,0x03,0x00,0xfc,0xfb,0xfc, - 0xff,0x00,0x01,0x05,0x08,0x08,0x02,0xfc,0xfa,0xfd,0x00,0x01, - 0xff,0xff,0x01,0x04,0x01,0xfb,0xf8,0xfa,0x00,0x04,0x03,0x00, - 0xfd,0xfe,0x00,0x00,0xfe,0xfc,0xfc,0xff,0x04,0x08,0x08,0x04, - 0xfe,0xf9,0xf8,0xfb,0x00,0x05,0x06,0x04,0x00,0xfc,0xfa,0xf9, - 0xf9,0xfd,0x03,0x09,0x08,0x02,0xfb,0xf8,0xfc,0x01,0x04,0x03, - 0x00,0xff,0x01,0x04,0x02,0xfc,0xf7,0xf9,0x03,0x0a,0x07,0xfc, - 0xf4,0xf5,0xfe,0x06,0x06,0x03,0x01,0x02,0x03,0x01,0xfd,0xfb, - 0xfd,0x00,0x01,0x00,0xff,0xff,0x01,0x01,0xff,0xfb,0xfb,0xfe, - 0x02,0x01,0xfd,0xfa,0xfc,0x01,0x05,0x04,0x00,0xfd,0xfe,0x02, - 0x05,0x04,0x01,0xfe,0x00,0x04,0x05,0x02,0xfd,0xfa,0xfc,0xfe, - 0xff,0xfe,0xff,0xff,0xfe,0xfb,0xfc,0x01,0x07,0x09,0x04,0xfc, - 0xf7,0xf7,0xfb,0xff,0x02,0x06,0x07,0x05,0x00,0xfa,0xf8,0xfa, - 0xfe,0x01,0x02,0x02,0x02,0x02,0x00,0xfd,0xfb,0xfd,0x01,0x04, - 0x05,0x03,0x02,0x01,0xff,0xfc,0xfa,0xfd,0x04,0x09,0x08,0x01, - 0xf9,0xf6,0xf8,0xfc,0x00,0x03,0x05,0x03,0xfd,0xf7,0xf7,0xfc, - 0x02,0x03,0x00,0xff,0x02,0x05,0x05,0x00,0xfb,0xfb,0x00,0x05, - 0x05,0x00,0xfc,0xfc,0xff,0x00,0xfe,0xfc,0xfe,0x02,0x03,0x01, - 0xfe,0xff,0x05,0x08,0x04,0xfb,0xf6,0xf9,0x02,0x0a,0x0a,0x03, - 0xfa,0xf4,0xf2,0xf8,0x03,0x0b,0x0c,0x05,0xfd,0xf9,0xf7,0xf6, - 0xf7,0xfc,0x06,0x0e,0x0d,0x04,0xf9,0xf3,0xf5,0xfc,0x04,0x09, - 0x09,0x06,0x03,0xff,0xfb,0xf8,0xf7,0xfc,0x03,0x08,0x05,0xfd, - 0xf6,0xf6,0xfd,0x05,0x09,0x09,0x07,0x04,0xff,0xf9,0xf5,0xf7, - 0x00,0x08,0x0a,0x04,0xfc,0xf7,0xf7,0xfa,0xfd,0xff,0x02,0x05, - 0x06,0x03,0xfe,0xfb,0xfb,0xfc,0xfe,0xff,0x01,0x03,0x02,0xff, - 0xfc,0xfc,0xfe,0x02,0x06,0x08,0x07,0x03,0xfd,0xf7,0xf6,0xfa, - 0x00,0x03,0x03,0x01,0x00,0x00,0xff,0xfe,0xfe,0x01,0x05,0x06, - 0x03,0xfe,0xf9,0xf8,0xf9,0xfd,0x03,0x09,0x0a,0x05,0xfd,0xf6, - 0xf5,0xf8,0xfd,0x02,0x05,0x07,0x05,0x01,0xfc,0xfa,0xfb,0xff, - 0x02,0x03,0x03,0x04,0x05,0x02,0xfc,0xf7,0xf8,0xfe,0x05,0x08, - 0x06,0x01,0xfb,0xf9,0xf9,0xfd,0x01,0x03,0x04,0x04,0x04,0x03, - 0xff,0xfa,0xf7,0xf9,0xfe,0x03,0x04,0x03,0x01,0xff,0xff,0xff, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xfe,0xfc, - 0xfb,0xfd,0x02,0x05,0x04,0xfe,0xfa,0xfa,0xff,0x02,0x03,0x02, - 0xff,0xfc,0xf9,0xf9,0xfe,0x04,0x07,0x04,0x00,0xfe,0xff,0x00, - 0x00,0xff,0xfe,0x00,0x03,0x06,0x06,0x02,0xfb,0xf6,0xf7,0xfc, - 0x03,0x07,0x07,0x02,0xfd,0xfa,0xf9,0xfa,0xfe,0x02,0x03,0x01, - 0xfe,0xfc,0xfd,0x00,0x01,0x01,0x01,0x03,0x04,0x03,0xff,0xfb, - 0xfb,0xff,0x04,0x05,0x04,0x01,0xfe,0xfb,0xf8,0xf8,0xfd,0x05, - 0x08,0x05,0xff,0xfe,0x00,0x01,0xff,0xfb,0xfa,0xfe,0x03,0x05, - 0x04,0xff,0xfb,0xfb,0xff,0x04,0x06,0x04,0xff,0xfb,0xf9,0xf8, - 0xfa,0xff,0x06,0x08,0x04,0xfc,0xf7,0xfb,0x03,0x08,0x05,0xfe, - 0xfb,0xfe,0x03,0x03,0xff,0xfa,0xfa,0xfe,0x03,0x06,0x05,0x02, - 0xff,0xfc,0xf9,0xf8,0xfb,0x01,0x05,0x05,0x01,0xff,0x00,0x02, - 0x02,0xff,0xfc,0xfd,0x02,0x05,0x03,0xfe,0xf9,0xf9,0xfd,0x00, - 0x02,0x02,0x01,0xff,0xfe,0xfd,0xfd,0xff,0x01,0x04,0x05,0x02, - 0xfe,0xfc,0xfe,0x01,0x01,0xfe,0xfc,0xff,0x05,0x07,0x02,0xfb, - 0xf8,0xfc,0x03,0x06,0x03,0xfc,0xf9,0xfc,0x01,0x04,0x02,0xfe, - 0xfb,0xfc,0x00,0x04,0x06,0x04,0x01,0xfd,0xfb,0xfd,0x00,0x01, - 0x01,0x00,0xff,0xfe,0xff,0x00,0x00,0xff,0xfd,0xfd,0x01,0x05, - 0x07,0x02,0xfb,0xf6,0xf9,0x01,0x08,0x08,0x04,0xff,0xfc,0xfb, - 0xfb,0xfc,0xfd,0xff,0x02,0x05,0x06,0x03,0xfd,0xf6,0xf4,0xf8, - 0x01,0x09,0x0b,0x07,0xff,0xf8,0xf7,0xfb,0x02,0x08,0x09,0x06, - 0x02,0xfd,0xf9,0xf7,0xfc,0x05,0x0b,0x09,0x00,0xf6,0xf4,0xf8, - 0xff,0x03,0x04,0x05,0x04,0x01,0xfd,0xfa,0xfb,0xfd,0x00,0x03, - 0x04,0x04,0x02,0xff,0xfb,0xf8,0xf8,0xfc,0x02,0x06,0x05,0xff, - 0xf9,0xf9,0xfd,0x03,0x05,0x02,0x00,0x00,0x01,0x02,0x01,0x01, - 0x02,0x02,0x01,0x01,0x01,0x02,0x01,0xfe,0xf9,0xf8,0xfc,0x04, - 0x08,0x05,0xfc,0xf6,0xf7,0xfd,0x03,0x05,0x03,0x00,0xfe,0xfe, - 0xfe,0xfd,0xfe,0x01,0x04,0x05,0x03,0xff,0xfb,0xf9,0xf8,0xf8, - 0xfb,0x01,0x07,0x08,0x03,0xfe,0xfc,0xfe,0x01,0x01,0x00,0xff, - 0x00,0x03,0x06,0x06,0x03,0xfd,0xf9,0xfb,0x02,0x06,0x04,0xfd, - 0xf8,0xfa,0x00,0x04,0x03,0xfe,0xfa,0xfc,0x00,0x03,0x02,0xfe, - 0xfb,0xfa,0xfd,0x01,0x04,0x04,0x01,0xfd,0xfa,0xfb,0xfe,0x02, - 0x03,0x03,0x02,0x01,0x01,0x00,0xfe,0xfc,0xfc,0xfe,0x02,0x04, - 0x05,0x02,0xfe,0xfc,0xfe,0x01,0x03,0x02,0x00,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfd,0xfe,0x00,0x03,0x05,0x01,0xfb,0xf5,0xf7, - 0x00,0x09,0x0b,0x05,0xfc,0xf8,0xfa,0xfe,0x01,0x00,0xff,0x01, - 0x05,0x06,0x02,0xfb,0xf7,0xfa,0x02,0x08,0x05,0xfd,0xf8,0xf9, - 0xfe,0x00,0x00,0x02,0x06,0x09,0x05,0xfb,0xf4,0xf7,0x01,0x09, - 0x08,0x02,0xfe,0xfe,0x00,0xff,0xfc,0xfb,0xfe,0x03,0x05,0x01, - 0xfc,0xf9,0xfd,0x02,0x05,0x01,0xfc,0xfa,0xfc,0xff,0x01,0x00, - 0x00,0x03,0x06,0x06,0x03,0xff,0xfb,0xf9,0xfa,0xfc,0x01,0x05, - 0x06,0x02,0xfd,0xfa,0xf9,0xfb,0x01,0x06,0x08,0x04,0xff,0xfd, - 0xfe,0xff,0x00,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfe,0x00,0x02,0x03,0x01,0xff,0xfe,0xff,0x00,0x00,0xff,0xff, - 0x00,0x01,0x02,0x02,0x00,0xff,0xfe,0xfe,0x00,0x01,0x01,0xff, - 0xfe,0xfe,0xff,0x01,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0xff, - 0xfe,0xfe,0xff,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00, - 0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01, - 0x01,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xff,0x00,0x01,0x00,0xff,0xfd,0xfe, - 0xff,0x02,0x02,0x00,0xfe,0xfd,0xfe,0x00,0x00,0xff,0xfe,0xff, - 0x01,0x02,0x02,0xff,0xfd,0xfd,0xff,0x01,0x01,0x00,0xfe,0xfe, - 0xff,0x00,0xff,0xff,0x01,0x03,0x02,0xfe,0xfb,0xfc,0x00,0x03, - 0x02,0x00,0xfe,0xff,0x00,0x01,0xff,0xfe,0xff,0x00,0x01,0x00, - 0xff,0xfe,0xff,0x01,0x01,0x00,0xfe,0xfd,0xfe,0x00,0x00,0xff, - 0xff,0x00,0x02,0x02,0x01,0xff,0xfd,0xfd,0xfe,0x00,0x01,0x01, - 0x01,0x00,0xff,0xfe,0xfe,0xfe,0x00,0x02,0x02,0x02,0x00,0xff, - 0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0x00, - 0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0x00,0x00, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfb,0xf8,0xf9,0xfc, - 0x01,0x04,0x05,0x05,0x05,0x03,0x00,0xfe,0xfd,0xfe,0x00,0x01, - 0x02,0x02,0x02,0x02,0x00,0xff,0xff,0x00,0x01,0x01,0x01,0x02, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x01,0x01,0xff,0xfd,0xfb, - 0xfb,0xfd,0x00,0x02,0x04,0x05,0x04,0x02,0xfe,0xfb,0xfb,0xfd, - 0x00,0x03,0x05,0x07,0x06,0x05,0x02,0xff,0xfb,0xf8,0xf8,0xfc, - 0x01,0x04,0x04,0x03,0x01,0x00,0x00,0x01,0x02,0x03,0x04,0x05, - 0x04,0x03,0x00,0xfd,0xfd,0xfe,0x01,0x02,0x03,0x03,0x04,0x04, - 0x03,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0xff,0xfc,0xfa, - 0xfa,0xfb,0xfc,0xfd,0xfe,0x00,0x01,0x01,0x01,0x00,0x00,0x00, - 0x01,0x02,0x02,0x02,0x01,0x00,0x01,0x01,0x01,0xfe,0xfc,0xfc, - 0xff,0x01,0x02,0x02,0x01,0x01,0x02,0x01,0xff,0xff,0xff,0x01, - 0x02,0x02,0x01,0x00,0xff,0xff,0xff,0x01,0x02,0x03,0x03,0x04, - 0x04,0x03,0x00,0xfe,0xfe,0x00,0x02,0x02,0x01,0x01,0x01,0x01, - 0x01,0x00,0xff,0xfd,0xfd,0xfe,0x01,0x04,0x03,0x00,0xff,0x01, - 0x03,0x02,0xff,0xfd,0xfe,0x01,0x02,0x02,0x03,0x03,0x03,0x02, - 0x00,0xff,0xfe,0xff,0x00,0x02,0x03,0x04,0x03,0x02,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x02,0x01,0x00,0xff,0xff, - 0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xfe,0xfd, - 0xfe,0x02,0x05,0x04,0x03,0x03,0x04,0x03,0xff,0xfc,0xfd,0x01, - 0x04,0x04,0x03,0x04,0x06,0x05,0x03,0x00,0xff,0xff,0x00,0x00, - 0x02,0x03,0x03,0x02,0x00,0x01,0x02,0x01,0xff,0xfc,0xfb,0xfd, - 0x00,0x03,0x03,0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x03, - 0x02,0x01,0x00,0xff,0x00,0x01,0x03,0x04,0x03,0x00,0xfd,0xfe, - 0x00,0x00,0xff,0xfd,0xfe,0x01,0x03,0x02,0x00,0xff,0x00,0x01, - 0x01,0xff,0xfe,0xff,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x02,0x01,0x00,0xff,0x00,0x00,0x00,0x00,0x01, - 0x02,0x02,0x01,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x03,0x03, - 0x02,0x01,0x00,0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x00,0xfe, - 0xfe,0x01,0x03,0x02,0xfe,0xfd,0xff,0x02,0x02,0xff,0xfe,0x00, - 0x02,0x02,0xff,0xfe,0xff,0x01,0x02,0x01,0x02,0x03,0x03,0x00, - 0xfd,0xfe,0x02,0x05,0x03,0x00,0xff,0x01,0x03,0x00,0xfd,0xfe, - 0x03,0x07,0x04,0xfb,0xf8,0xfd,0x05,0x07,0x01,0xfc,0xfe,0x04, - 0x07,0x03,0xfe,0xfd,0x01,0x02,0x01,0xff,0x00,0x02,0x03,0x00, - 0xfe,0xfe,0x01,0x04,0x03,0x00,0x00,0x02,0x04,0x03,0x00,0xfd, - 0xff,0x03,0x04,0x02,0xff,0xff,0x01,0x03,0x02,0xff,0xfe,0xff, - 0x02,0x04,0x03,0x01,0xfe,0xfd,0xfe,0x00,0x01,0x00,0x00,0xfe, - 0xfd,0xfe,0x02,0x06,0x06,0x00,0xfa,0xfa,0xff,0x04,0x05,0x03, - 0x02,0xff,0xfd,0xfb,0xfe,0x03,0x06,0x05,0x01,0xff,0xfe,0xff, - 0xff,0xff,0x01,0x02,0x02,0x00,0xff,0xff,0x00,0x00,0x01,0x02, - 0x02,0x00,0xff,0xff,0x00,0x00,0xfd,0xfc,0xff,0x04,0x06,0x04, - 0xff,0xfc,0xfe,0x01,0x03,0x01,0xff,0x00,0x01,0x02,0x02,0x00, - 0xff,0xfe,0xff,0xff,0x01,0x01,0x01,0x00,0x00,0x01,0x02,0x01, - 0x00,0x00,0x02,0x02,0x00,0xfd,0xfe,0x00,0x03,0x03,0x01,0xff, - 0xfe,0xff,0x01,0x03,0x02,0xff,0xfd,0xff,0x04,0x07,0x03,0xfc, - 0xf9,0xfe,0x04,0x06,0x00,0xfb,0xfd,0x04,0x07,0x04,0xfe,0xfb, - 0xfd,0x01,0x00,0xfd,0xfd,0x02,0x06,0x03,0xfd,0xfa,0xfd,0x03, - 0x04,0x01,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01,0xff,0xfd,0x00, - 0x04,0x04,0x00,0xfc,0xfc,0x00,0x03,0x03,0x01,0x00,0x02,0x03, - 0x03,0x02,0x01,0x00,0xff,0xfe,0xff,0x03,0x05,0x04,0x01,0xfe, - 0x00,0x03,0x06,0x04,0x01,0xff,0x00,0x02,0x01,0xfd,0xfc,0x00, - 0x06,0x06,0x02,0xff,0x01,0x03,0x01,0xfd,0xfc,0x00,0x05,0x06, - 0x02,0xff,0x01,0x05,0x06,0x00,0xf9,0xf7,0xfd,0x05,0x09,0x06, - 0x01,0xfd,0xfd,0xfe,0x00,0x01,0x02,0x01,0x00,0x00,0x02,0x03, - 0x02,0xfe,0xfc,0xff,0x04,0x06,0x02,0xfb,0xf8,0xfd,0x07,0x0b, - 0x05,0xfb,0xf6,0xfa,0x00,0x04,0x03,0x02,0x03,0x04,0x04,0x01, - 0xfc,0xfa,0xfd,0x04,0x08,0x04,0xff,0xfd,0x01,0x05,0x02,0xfc, - 0xfb,0x00,0x07,0x07,0x00,0xf9,0xfa,0x02,0x07,0x04,0xfc,0xf9, - 0xff,0x06,0x07,0x00,0xfa,0xfe,0x07,0x09,0xff,0xf5,0xf6,0x02, - 0x0b,0x08,0xfe,0xfc,0x01,0x05,0x02,0xfd,0xfe,0x04,0x07,0x04, - 0xfe,0xfc,0xfe,0x02,0x02,0x00,0x00,0x02,0x05,0x04,0xfe,0xf8, - 0xfa,0x00,0x04,0x03,0x00,0x00,0x02,0x02,0xfe,0xfb,0xfe,0x03, - 0x05,0x03,0xff,0xfd,0xfe,0x00,0x01,0x01,0x01,0x00,0xff,0xfd, - 0xfe,0x00,0x02,0x03,0x03,0x02,0x00,0x00,0x03,0x04,0x00,0xfb, - 0xfc,0x05,0x0a,0x04,0xfa,0xf8,0x00,0x09,0x08,0xfd,0xf6,0xfa, - 0x06,0x0e,0x0a,0xfd,0xf5,0xf9,0x05,0x0b,0x04,0xf8,0xf8,0x04, - 0x0c,0x06,0xfa,0xfa,0x05,0x0b,0x02,0xf6,0xf6,0x03,0x0c,0x08, - 0xfc,0xf8,0x01,0x0c,0x0c,0xff,0xf1,0xee,0xfb,0x0c,0x13,0x0a, - 0xfd,0xf9,0xfd,0x02,0x01,0xfd,0xfc,0xff,0x03,0x06,0x06,0x04, - 0x00,0xfc,0xfb,0xfd,0x00,0x00,0xfe,0xfc,0xfe,0x02,0x04,0x05, - 0x04,0x03,0x00,0xfb,0xf8,0xf9,0x00,0x08,0x0a,0x06,0xff,0xfc, - 0xfd,0x00,0x00,0xfe,0xfd,0xff,0x04,0x07,0x05,0x00,0xfd,0xff, - 0x03,0x03,0x00,0xfd,0xfd,0x00,0x02,0x02,0x03,0x03,0x03,0x02, - 0x00,0xff,0xfe,0xfe,0x00,0x03,0x05,0x05,0x02,0x00,0xff,0xfd, - 0xfc,0xfc,0x00,0x05,0x07,0x04,0xff,0xfc,0xfd,0xfd,0xfc,0xfb, - 0xfe,0x03,0x08,0x08,0x02,0xfb,0xf8,0xfb,0x02,0x07,0x09,0x08, - 0x04,0xfe,0xf8,0xf6,0xfc,0x06,0x0e,0x0e,0x08,0x00,0xfa,0xf8, - 0xfb,0x01,0x07,0x08,0x04,0xff,0xfd,0xfd,0xff,0x01,0x01,0xff, - 0xfd,0xfd,0xff,0x01,0x01,0x01,0x01,0x04,0x07,0x06,0x00,0xf9, - 0xf9,0x01,0x09,0x0a,0x05,0xff,0xfd,0xfe,0xff,0xfe,0xfe,0x01, - 0x04,0x05,0x04,0x03,0x00,0xfd,0xff,0x04,0x06,0x02,0xfa,0xf7, - 0xfb,0x01,0x04,0x05,0x06,0x04,0xff,0xf8,0xf7,0xfe,0x06,0x08, - 0x04,0x00,0xff,0x01,0x01,0xff,0xfd,0xfe,0x01,0x03,0x03,0x01, - 0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0xfe,0xfc,0xfd,0x00, - 0x02,0x01,0x01,0x01,0x01,0xff,0xff,0x02,0x06,0x07,0x03,0xfe, - 0xfc,0xff,0x02,0x03,0x01,0xff,0xfe,0xff,0x02,0x04,0x03,0x00, - 0xfc,0xfa,0xff,0x08,0x0f,0x0a,0xfb,0xf0,0xf3,0x01,0x0c,0x0a, - 0x01,0xfe,0x04,0x0a,0x06,0xfa,0xf3,0xf8,0x03,0x0a,0x06,0xff, - 0xfc,0x00,0x02,0xff,0xfb,0xfb,0x01,0x07,0x07,0x01,0xfa,0xf6, - 0xf9,0xff,0x05,0x06,0x01,0xfb,0xfb,0x01,0x05,0x02,0xfc,0xfa, - 0xff,0x04,0x03,0x01,0x02,0x05,0x04,0xff,0xfb,0x00,0x08,0x0a, - 0x03,0xf7,0xf1,0xf6,0x00,0x06,0x05,0x01,0x02,0x07,0x07,0x00, - 0xf7,0xf6,0xfe,0x06,0x07,0x01,0xfe,0x00,0x01,0xfe,0xfa,0xfa, - 0x01,0x0a,0x0b,0x05,0xfd,0xfb,0xfe,0x01,0x00,0xfe,0x00,0x04, - 0x05,0x02,0xfd,0xfe,0x02,0x06,0x05,0x02,0x01,0x02,0x03,0x01, - 0xfe,0xfc,0xfe,0x02,0x06,0x08,0x05,0x00,0xfb,0xfb,0xff,0x02, - 0x01,0xfe,0xfd,0x01,0x05,0x04,0xfd,0xf6,0xf5,0xfb,0x03,0x08, - 0x06,0x01,0xfd,0xfd,0x00,0x02,0x02,0x00,0xfe,0x00,0x03,0x04, - 0x03,0x00,0xfd,0xfd,0x01,0x05,0x05,0x00,0xfa,0xf9,0xff,0x05, - 0x07,0x04,0xff,0xfc,0xfe,0x01,0x03,0x02,0x00,0xff,0x01,0x01, - 0x00,0xff,0x00,0x02,0x02,0xfe,0xfc,0xfe,0x02,0x05,0x03,0xff, - 0xfb,0xfc,0x02,0x09,0x0b,0x04,0xfa,0xf5,0xfa,0x00,0x03,0x01, - 0x02,0x06,0x08,0x06,0xff,0xf9,0xf8,0xfb,0x00,0x04,0x05,0x05, - 0x07,0x06,0x01,0xfa,0xf8,0xfe,0x07,0x09,0x04,0xfe,0xfc,0xfe, - 0x01,0x02,0x03,0x01,0xfe,0xfc,0xfe,0x02,0x04,0x03,0x00,0x01, - 0x04,0x05,0x03,0xff,0xfc,0xfe,0x02,0x06,0x07,0x06,0x02,0xfc, - 0xf8,0xf9,0xfd,0x02,0x04,0x03,0x00,0xff,0x01,0x05,0x05,0x03, - 0x00,0xff,0xff,0x00,0x00,0x02,0x05,0x06,0x03,0xfe,0xfb,0xfc, - 0x00,0x04,0x05,0x01,0xfd,0xfd,0xfe,0xff,0xfe,0xfe,0x02,0x07, - 0x06,0xff,0xf8,0xf6,0xfa,0x01,0x06,0x06,0x03,0xfe,0xf9,0xf8, - 0xfa,0xff,0x04,0x06,0x07,0x05,0x02,0xff,0xfd,0xfe,0x02,0x05, - 0x05,0x02,0xff,0xfd,0xfc,0xfc,0xfd,0xfe,0x01,0x03,0x02,0x00, - 0xfe,0xfe,0x00,0x03,0x04,0x04,0x04,0x02,0xfe,0xfb,0xfb,0xff, - 0x05,0x07,0x06,0x02,0xff,0xfe,0x00,0x02,0x02,0x02,0x03,0x03, - 0x03,0x02,0x01,0x02,0x03,0x03,0x00,0xff,0x00,0x02,0x04,0x03, - 0x00,0xfd,0xfe,0x00,0x02,0x02,0xff,0xfd,0xfe,0x02,0x07,0x07, - 0x04,0x01,0x01,0x03,0x04,0x02,0xfe,0xfd,0xfe,0xfd,0xfc,0xfe, - 0x05,0x0b,0x09,0xff,0xf6,0xf4,0xfb,0x03,0x06,0x04,0x00,0x00, - 0x03,0x04,0x00,0xfa,0xf9,0xff,0x05,0x06,0x03,0x01,0x02,0x02, - 0xff,0xfb,0xfb,0xfe,0x01,0x01,0x00,0x01,0x03,0x03,0x02,0xff, - 0xff,0x02,0x05,0x04,0xfe,0xfa,0xfb,0x02,0x07,0x08,0x05,0x02, - 0x01,0xff,0xfd,0xfc,0xfd,0x00,0x03,0x04,0x05,0x05,0x03,0x00, - 0xfe,0xfe,0x00,0x01,0x03,0x04,0x03,0x01,0xff,0x00,0x02,0x03, - 0x02,0x01,0x02,0x02,0x00,0xfc,0xfa,0xfe,0x04,0x05,0x02,0xfd, - 0xfb,0xfe,0xff,0xfd,0xfb,0xfc,0x03,0x09,0x08,0x01,0xfa,0xfa, - 0xfd,0xff,0xfc,0xfa,0xfb,0x00,0x03,0x01,0xfe,0xfc,0xff,0x01, - 0x01,0xfe,0xfc,0xfd,0x00,0x03,0x03,0x03,0x03,0x02,0x00,0xfd, - 0xfb,0xfc,0x01,0x03,0x03,0x02,0x02,0x04,0x05,0x03,0xfe,0xfb, - 0xfe,0x05,0x0b,0x0a,0x04,0xff,0x00,0x03,0x04,0x02,0x00,0x00, - 0x01,0x02,0x01,0x01,0x02,0x02,0x02,0x01,0x03,0x05,0x06,0x03, - 0xff,0xfe,0x02,0x08,0x0a,0x08,0x01,0xfd,0xfc,0xfe,0x01,0x02, - 0x02,0x01,0xff,0xff,0x01,0x03,0x03,0x02,0x01,0xff,0xff,0xfe, - 0xff,0x01,0x01,0xff,0xfc,0xfc,0xff,0x01,0x01,0xff,0xfd,0xfe, - 0x00,0x01,0x00,0xfe,0xfe,0x00,0x03,0x02,0xff,0xfc,0xfd,0xff, - 0x00,0x01,0x01,0x01,0x00,0xff,0xff,0x00,0x03,0x04,0x02,0xff, - 0xfe,0x01,0x05,0x06,0x03,0xff,0xfe,0xff,0x01,0x01,0x00,0x00, - 0x01,0x02,0x01,0x00,0xff,0xff,0xfe,0xff,0x01,0x05,0x08,0x06, - 0x01,0xfd,0xfe,0x01,0x03,0x02,0xff,0xfd,0xfd,0x00,0x03,0x04, - 0x02,0xff,0xfe,0xff,0xff,0xfe,0xfe,0x00,0x04,0x06,0x06,0x04, - 0x00,0xfe,0xfd,0xfd,0xfe,0x01,0x03,0x04,0x04,0x00,0xfe,0xfe, - 0xff,0x00,0xff,0xfd,0xfe,0x01,0x02,0x01,0xff,0xfe,0xff,0x00, - 0x00,0xfe,0xfe,0xff,0x01,0x02,0x02,0x01,0x01,0x00,0x00,0xff, - 0xff,0xff,0x01,0x01,0x01,0x01,0x01,0x02,0x03,0x03,0x01,0xff, - 0xff,0x01,0x04,0x04,0x02,0x01,0x01,0x02,0x01,0x01,0x00,0x00, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00, - 0xff,0xfe,0x00,0x02,0x02,0x01,0xff,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0xff,0xff,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x02,0x03,0x04,0x04,0x03,0x02,0x02,0x03, - 0x05,0x06,0x05,0x05,0x04,0x03,0x03,0x03,0x04,0x04,0x04,0x03, - 0x03,0x04,0x06,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x06,0x06, - 0x06,0x06,0x06,0x05,0x04,0x02,0x00,0xff,0xfe,0xfe,0xfe,0xfd, - 0xfb,0xfa,0xfb,0xfd,0xfe,0xff,0x00,0x00,0x00,0x00,0x01,0x00, - 0xff,0xfd,0xfc,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf7,0xf5,0xf4,0xf5,0xf7,0xfa,0xfb,0xfd,0xfe,0xff,0xff,0x00, - 0x01,0x03,0x03,0x03,0x03,0x04,0x05,0x06,0x07,0x07,0x08,0x08, - 0x09,0x09,0x0a,0x0b,0x0a,0x09,0x08,0x06,0x06,0x05,0x03,0x02, - 0x01,0x02,0x05,0x08,0x0c,0x0f,0x12,0x16,0x1a,0x1d,0x1f,0x1e, - 0x1d,0x1c,0x1a,0x19,0x16,0x13,0x0f,0x0a,0x06,0x02,0xfd,0xf9, - 0xf5,0xf1,0xef,0xf0,0xf3,0xf7,0xfb,0xff,0x04,0x08,0x0c,0x0e, - 0x0e,0x0c,0x09,0x06,0x02,0xff,0xfb,0xf7,0xf3,0xef,0xec,0xe9, - 0xe7,0xe4,0xe1,0xe0,0xdf,0xe1,0xe4,0xe7,0xea,0xed,0xf0,0xf4, - 0xf7,0xf8,0xf9,0xf8,0xf8,0xf7,0xf6,0xf6,0xf5,0xf4,0xf4,0xf4, - 0xf5,0xf6,0xf8,0xf9,0xfa,0xfa,0xfb,0xfb,0xfc,0xfb,0xfa,0xf8, - 0xf7,0xf8,0xf9,0xfb,0xfe,0x00,0x03,0x07,0x0a,0x0c,0x0d,0x0d, - 0x0c,0x0c,0x0b,0x0b,0x0b,0x0a,0x0a,0x09,0x09,0x08,0x05,0x02, - 0xff,0xfc,0xfa,0xf9,0xf8,0xf8,0xfa,0xfd,0x01,0x04,0x06,0x08, - 0x08,0x08,0x07,0x05,0x03,0x01,0xff,0xfe,0xfd,0xfc,0xfb,0xf9, - 0xf7,0xf6,0xf4,0xf3,0xf2,0xf2,0xf2,0xf3,0xf5,0xf7,0xf9,0xfa, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xff,0x00,0x02,0x04,0x06,0x07,0x08, - 0x08,0x07,0x05,0x03,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfd,0xfe,0xff,0x01,0x03,0x03,0x04,0x05, - 0x06,0x06,0x05,0x03,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x01,0x02,0x01,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe, - 0xff,0x00,0x01,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x02, - 0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01,0x02, - 0x02,0x03,0x04,0x05,0x06,0x06,0x05,0x04,0x04,0x03,0x02,0x01, - 0x00,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0x00, - 0x01,0x02,0x03,0x03,0x03,0x03,0x02,0x01,0x00,0xfe,0xfc,0xfb, - 0xfa,0xf8,0xf7,0xf7,0xf8,0xf9,0xfb,0xfc,0xfd,0xfe,0x00,0x01, - 0x02,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x01, - 0x03,0x02,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x01,0x03, - 0x05,0x06,0x06,0x06,0x05,0x05,0x04,0x04,0x03,0x03,0x04,0x05, - 0x07,0x09,0x0b,0x0b,0x0b,0x0a,0x09,0x08,0x05,0x03,0x01,0x00, - 0x00,0x01,0x02,0x03,0x05,0x06,0x08,0x08,0x08,0x06,0x04,0x01, - 0xff,0xfd,0xfc,0xfc,0xfc,0xfd,0xfe,0x00,0x02,0x02,0x02,0x00, - 0xfe,0xfc,0xfb,0xf9,0xf9,0xf8,0xf8,0xf8,0xf9,0xf9,0xf9,0xf8, - 0xf5,0xf3,0xf2,0xf1,0xf1,0xf2,0xf3,0xf6,0xfa,0xff,0x03,0x05, - 0x06,0x07,0x07,0x07,0x06,0x04,0x03,0x03,0x04,0x05,0x07,0x08, - 0x08,0x08,0x09,0x09,0x08,0x07,0x06,0x05,0x05,0x06,0x08,0x09, - 0x0a,0x0c,0x0d,0x10,0x13,0x15,0x17,0x18,0x1a,0x1c,0x1e,0x1e, - 0x1d,0x1b,0x19,0x17,0x16,0x14,0x12,0x0e,0x0a,0x07,0x04,0x02, - 0xfe,0xf9,0xf5,0xf3,0xf3,0xf5,0xf7,0xfa,0xfd,0x01,0x05,0x08, - 0x0a,0x0a,0x08,0x05,0x02,0xff,0xfd,0xfb,0xf8,0xf4,0xf1,0xee, - 0xeb,0xe8,0xe4,0xe1,0xde,0xdd,0xde,0xe1,0xe4,0xe7,0xeb,0xee, - 0xf0,0xf2,0xf4,0xf4,0xf3,0xf2,0xf2,0xf3,0xf5,0xf6,0xf7,0xf7, - 0xf8,0xf9,0xfa,0xfa,0xf9,0xf8,0xf7,0xf8,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfa,0xfb,0xfd,0xfe,0x00,0x03,0x07,0x0a,0x0d,0x0e, - 0x0e,0x0d,0x0c,0x0b,0x09,0x08,0x07,0x06,0x06,0x07,0x06,0x05, - 0x03,0x01,0xfe,0xfc,0xfa,0xf9,0xf9,0xfa,0xfc,0xff,0x01,0x04, - 0x05,0x06,0x05,0x03,0x01,0xff,0xfc,0xfa,0xf9,0xf9,0xfa,0xfc, - 0xfc,0xfd,0xfd,0xfd,0xfc,0xfb,0xfa,0xf8,0xf6,0xf5,0xf5,0xf6, - 0xf6,0xf6,0xf7,0xf7,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb, - 0xfd,0xff,0x01,0x02,0x04,0x05,0x05,0x04,0x03,0x01,0xfe,0xfc, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfc,0xfd,0xfc,0xfc, - 0xfd,0xfe,0x01,0x04,0x06,0x07,0x09,0x0a,0x0a,0x08,0x06,0x03, - 0x00,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0xff,0xfe, - 0xfc,0xfc,0xfc,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x04,0x04, - 0x03,0x02,0x01,0x01,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfc, - 0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfc, - 0xfe,0x00,0x01,0x03,0x04,0x06,0x08,0x08,0x07,0x06,0x04,0x04, - 0x03,0x03,0x02,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfa,0xfa, - 0xfa,0xfc,0xfe,0x00,0x02,0x03,0x04,0x06,0x08,0x08,0x07,0x05, - 0x02,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0x00,0x01,0x02,0x01, - 0x00,0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xff,0x01,0x02, - 0x02,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfb,0xfb,0xfc,0xfe,0x00, - 0x00,0xff,0xfe,0xfd,0xfc,0xfa,0xf9,0xf7,0xf6,0xf6,0xf8,0xfa, - 0xfd,0xfe,0xff,0xff,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01, - 0x02,0x02,0x01,0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfe,0xff, - 0x01,0x02,0x03,0x03,0x04,0x05,0x06,0x06,0x07,0x08,0x0a,0x0b, - 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0b,0x0b,0x0b,0x0c,0x0c, - 0x0b,0x09,0x07,0x05,0x04,0x03,0x02,0x01,0x00,0x00,0x02,0x03, - 0x03,0x02,0x00,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfd,0x00,0x03, - 0x05,0x05,0x04,0x03,0x01,0xfe,0xfc,0xf9,0xf7,0xf5,0xf4,0xf2, - 0xf1,0xef,0xed,0xea,0xe8,0xe7,0xe7,0xe9,0xec,0xf1,0xf7,0xfe, - 0x04,0x09,0x0d,0x10,0x11,0x11,0x0f,0x0d,0x0a,0x08,0x07,0x05, - 0x04,0x02,0x01,0x01,0x01,0x03,0x05,0x07,0x09,0x0b,0x0e,0x10, - 0x11,0x11,0x0f,0x0e,0x0f,0x11,0x15,0x19,0x1e,0x22,0x27,0x2a, - 0x2c,0x2c,0x29,0x25,0x20,0x1c,0x19,0x18,0x17,0x14,0x11,0x0d, - 0x09,0x04,0xfd,0xf5,0xee,0xe9,0xe8,0xec,0xf2,0xf9,0x00,0x07, - 0x0e,0x13,0x15,0x14,0x0f,0x08,0x02,0xfd,0xf9,0xf6,0xf3,0xef, - 0xeb,0xe8,0xe5,0xe1,0xdc,0xd7,0xd3,0xd1,0xd2,0xd5,0xd9,0xdd, - 0xe1,0xe5,0xe9,0xec,0xee,0xee,0xed,0xec,0xec,0xee,0xf0,0xf1, - 0xf2,0xf4,0xf7,0xfa,0xfd,0xfe,0xfe,0xfc,0xfb,0xfb,0xfb,0xfa, - 0xf7,0xf4,0xf2,0xf1,0xf2,0xf3,0xf4,0xf5,0xf8,0xfc,0x02,0x07, - 0x0b,0x0e,0x11,0x14,0x17,0x19,0x19,0x18,0x17,0x15,0x13,0x11, - 0x0d,0x09,0x05,0x01,0xfd,0xfa,0xf8,0xf7,0xf7,0xf7,0xf8,0xfa, - 0xfc,0xff,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0xfe,0xfc, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfd,0xfb,0xf8, - 0xf4,0xf1,0xef,0xec,0xea,0xea,0xeb,0xed,0xef,0xf2,0xf4,0xf7, - 0xf9,0xfb,0xfc,0xfc,0xfb,0xfc,0xfd,0xff,0xff,0x00,0x00,0x00, - 0x00,0xff,0xfe,0xfb,0xf8,0xf7,0xf6,0xf7,0xf8,0xf9,0xfb,0xfe, - 0x01,0x04,0x06,0x06,0x06,0x06,0x05,0x05,0x04,0x02,0x02,0x02, - 0x03,0x03,0x03,0x03,0x04,0x05,0x06,0x06,0x06,0x06,0x07,0x07, - 0x06,0x04,0x03,0x01,0x00,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfd, - 0xfe,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff, - 0xff,0xff,0xff,0xfd,0xfc,0xfc,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xf9,0xfa,0xfa, - 0xfc,0xfe,0x00,0x02,0x03,0x05,0x07,0x08,0x09,0x09,0x08,0x07, - 0x06,0x05,0x02,0xfe,0xfa,0xf6,0xf4,0xf4,0xf4,0xf5,0xf6,0xf9, - 0xfe,0x03,0x06,0x08,0x08,0x07,0x07,0x06,0x05,0x04,0x02,0x01, - 0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x00,0xfe,0xfd,0xfb,0xfa,0xf8,0xf6,0xf5,0xf5,0xf6, - 0xf8,0xf9,0xfa,0xfc,0xff,0x02,0x05,0x07,0x08,0x08,0x06,0x04, - 0x02,0x00,0xfd,0xfa,0xf7,0xf5,0xf5,0xf6,0xf8,0xfa,0xfc,0xfd, - 0xff,0x01,0x03,0x05,0x05,0x04,0x04,0x04,0x05,0x05,0x04,0x03, - 0x02,0x01,0x01,0x01,0x01,0x02,0x03,0x05,0x08,0x0c,0x0f,0x11, - 0x11,0x10,0x0f,0x0e,0x0c,0x09,0x06,0x03,0x01,0x01,0x01,0x00, - 0xff,0xff,0xff,0x00,0x01,0x02,0x02,0x02,0x03,0x04,0x06,0x06, - 0x06,0x04,0x02,0x00,0xff,0xfe,0xfd,0xfc,0xfe,0x01,0x05,0x09, - 0x0b,0x0b,0x0b,0x08,0x05,0xff,0xf8,0xf0,0xea,0xe5,0xe3,0xe3, - 0xe3,0xe5,0xe8,0xec,0xf0,0xf4,0xf7,0xfa,0xfe,0x02,0x07,0x0b, - 0x0e,0x11,0x13,0x14,0x14,0x12,0x0d,0x08,0x03,0xff,0xfb,0xf9, - 0xf8,0xf7,0xf8,0xfc,0x01,0x06,0x0b,0x0f,0x12,0x15,0x17,0x17, - 0x16,0x14,0x12,0x11,0x13,0x17,0x1c,0x22,0x26,0x2a,0x2e,0x2f, - 0x2e,0x2a,0x23,0x1c,0x16,0x12,0x10,0x0f,0x0c,0x09,0x06,0x03, - 0xff,0xf9,0xf1,0xe9,0xe5,0xe6,0xec,0xf5,0xfe,0x07,0x10,0x19, - 0x1f,0x20,0x1c,0x12,0x07,0xfc,0xf5,0xf0,0xec,0xe9,0xe6,0xe5, - 0xe5,0xe4,0xe1,0xdb,0xd5,0xd1,0xd0,0xd2,0xd7,0xdd,0xe3,0xe9, - 0xef,0xf4,0xf7,0xf6,0xf3,0xee,0xe9,0xe8,0xe9,0xec,0xef,0xf2, - 0xf6,0xfa,0xfe,0x00,0x00,0xfe,0xfc,0xfa,0xf8,0xf8,0xf7,0xf6, - 0xf6,0xf6,0xf7,0xf8,0xf8,0xf8,0xf9,0xfb,0xfd,0x00,0x03,0x06, - 0x0a,0x0d,0x11,0x14,0x15,0x16,0x16,0x15,0x13,0x0f,0x0b,0x06, - 0x02,0xff,0xfc,0xfb,0xfa,0xfb,0xfc,0xff,0x01,0x03,0x03,0x01, - 0x00,0xfe,0xfd,0xfc,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xfc, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfc,0xfe,0x00,0x02,0x03,0x02,0x00, - 0xfc,0xf8,0xf3,0xef,0xec,0xeb,0xea,0xec,0xee,0xf1,0xf4,0xf7, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0x00,0x02,0x04, - 0x05,0x05,0x05,0x04,0x02,0xff,0xfd,0xfb,0xfb,0xfc,0xfe,0x00, - 0x02,0x04,0x05,0x06,0x05,0x03,0x00,0xfd,0xfc,0xfb,0xfc,0xfe, - 0x00,0x03,0x06,0x09,0x0a,0x0a,0x07,0x03,0x00,0xff,0xfd,0xfd, - 0xfd,0xfe,0x01,0x04,0x05,0x06,0x04,0x01,0xfe,0xfa,0xf7,0xf6, - 0xf5,0xf6,0xf8,0xfb,0xff,0x01,0x03,0x03,0x02,0x01,0xfe,0xfc, - 0xfa,0xfa,0xfa,0xfb,0xfd,0xff,0x02,0x03,0x04,0x03,0x02,0x01, - 0xff,0xfd,0xfc,0xfb,0xfb,0xfc,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x01,0x01,0x00,0xff,0xff,0x00,0x02,0x04,0x05,0x05,0x06,0x07, - 0x07,0x07,0x04,0x01,0xfe,0xfd,0xfc,0xfc,0xfb,0xfb,0xfd,0xfe, - 0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x02,0x04, - 0x05,0x06,0x05,0x04,0x03,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xfd,0xfc,0xfa,0xf9,0xf8,0xf6,0xf6,0xf6,0xf6, - 0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd,0xff,0x00,0x01,0x03,0x04, - 0x05,0x05,0x06,0x06,0x06,0x05,0x05,0x05,0x05,0x04,0x04,0x03, - 0x02,0x02,0x02,0x02,0x01,0x01,0x02,0x03,0x03,0x03,0x03,0x03, - 0x04,0x04,0x04,0x04,0x05,0x06,0x07,0x09,0x0a,0x0b,0x0c,0x0c, - 0x0c,0x0c,0x0b,0x0a,0x09,0x08,0x06,0x04,0x04,0x04,0x03,0x02, - 0x01,0x01,0x01,0x02,0x01,0x01,0xff,0xfe,0xfd,0xfb,0xfa,0xf9, - 0xf9,0xfa,0xfc,0xff,0x02,0x06,0x09,0x0b,0x0b,0x0a,0x07,0x03, - 0xfd,0xf7,0xf1,0xed,0xea,0xe8,0xe8,0xe8,0xea,0xed,0xef,0xf0, - 0xf1,0xf3,0xf5,0xf8,0xfc,0x00,0x05,0x0b,0x10,0x13,0x14,0x13, - 0x10,0x0d,0x09,0x05,0x02,0x00,0x00,0x01,0x03,0x05,0x06,0x07, - 0x08,0x0a,0x0b,0x0c,0x0d,0x0e,0x10,0x14,0x16,0x17,0x16,0x15, - 0x15,0x16,0x17,0x19,0x1b,0x1d,0x20,0x24,0x27,0x29,0x26,0x22, - 0x1e,0x1c,0x1a,0x17,0x14,0x10,0x0c,0x09,0x05,0x00,0xfa,0xf3, - 0xec,0xe9,0xea,0xee,0xf4,0xfb,0x02,0x0a,0x11,0x15,0x16,0x13, - 0x0c,0x05,0xff,0xfb,0xf8,0xf5,0xf1,0xee,0xec,0xea,0xe7,0xe2, - 0xdc,0xd7,0xd4,0xd4,0xd6,0xd9,0xdc,0xe0,0xe4,0xe8,0xea,0xec, - 0xeb,0xea,0xe9,0xea,0xec,0xee,0xf0,0xf2,0xf4,0xf6,0xf8,0xf9, - 0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf7,0xf4,0xf3,0xf2,0xf1, - 0xf1,0xf1,0xf2,0xf5,0xfa,0xfe,0x02,0x06,0x09,0x0b,0x0e,0x10, - 0x11,0x12,0x13,0x14,0x15,0x15,0x14,0x11,0x0d,0x09,0x04,0x00, - 0xfc,0xf9,0xf8,0xf8,0xf9,0xfc,0xfe,0x00,0x01,0x02,0x02,0x01, - 0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x04,0x04,0x02,0xff,0xfc, - 0xf9,0xf6,0xf4,0xf3,0xf3,0xf3,0xf4,0xf6,0xf6,0xf6,0xf5,0xf4, - 0xf4,0xf3,0xf3,0xf2,0xf3,0xf4,0xf6,0xf8,0xfb,0xfd,0xfe,0xff, - 0x00,0x00,0x00,0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfb,0xfb,0xfa, - 0xfa,0xfa,0xf9,0xf8,0xf7,0xf8,0xfa,0xfc,0xfd,0xff,0x02,0x05, - 0x09,0x0a,0x0a,0x09,0x08,0x06,0x03,0x00,0xfe,0xfc,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x02, - 0x03,0x04,0x04,0x03,0x03,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe, - 0x00,0x01,0x01,0x02,0x03,0x04,0x05,0x05,0x03,0x00,0xfe,0xfb, - 0xf9,0xf7,0xf6,0xf5,0xf5,0xf8,0xfa,0xfd,0xfe,0xff,0x01,0x02, - 0x03,0x03,0x03,0x04,0x05,0x06,0x08,0x08,0x08,0x07,0x06,0x05, - 0x04,0x02,0x00,0xfe,0xfd,0xfd,0xfd,0xfc,0xfb,0xf9,0xf9,0xfa, - 0xfa,0xfa,0xfb,0xfc,0xfe,0x01,0x03,0x04,0x05,0x05,0x05,0x05, - 0x05,0x05,0x04,0x03,0x02,0x01,0x00,0xff,0xfd,0xfb,0xf9,0xf8, - 0xf8,0xf9,0xfb,0xfc,0xfe,0xff,0x01,0x02,0x03,0x02,0x00,0xfe, - 0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0xff,0xff,0x00,0x00, - 0x00,0xff,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xff,0x02,0x04, - 0x07,0x09,0x0a,0x0c,0x0c,0x0c,0x0b,0x0a,0x09,0x08,0x08,0x08, - 0x09,0x09,0x09,0x09,0x09,0x08,0x07,0x06,0x05,0x03,0x03,0x02, - 0x03,0x04,0x05,0x06,0x07,0x07,0x07,0x06,0x06,0x04,0x03,0x01, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfc,0xfb,0xfa, - 0xf8,0xf8,0xf8,0xf9,0xfb,0xfd,0xff,0x01,0x02,0x02,0x02,0x00, - 0xfd,0xf9,0xf7,0xf5,0xf4,0xf3,0xf3,0xf3,0xf4,0xf5,0xf6,0xf7, - 0xf7,0xf7,0xf7,0xf9,0xfb,0xff,0x03,0x06,0x08,0x0b,0x0d,0x0f, - 0x0f,0x0d,0x0b,0x09,0x08,0x08,0x08,0x07,0x07,0x08,0x09,0x0b, - 0x0c,0x0c,0x0c,0x0c,0x0c,0x0b,0x0a,0x0a,0x0a,0x0a,0x0b,0x0d, - 0x11,0x16,0x1b,0x20,0x25,0x28,0x2b,0x2c,0x2a,0x26,0x22,0x1d, - 0x1a,0x16,0x13,0x10,0x0c,0x08,0x04,0xff,0xfa,0xf3,0xec,0xe8, - 0xe7,0xe9,0xed,0xf3,0xfa,0x01,0x08,0x0f,0x13,0x13,0x11,0x0c, - 0x08,0x03,0xff,0xfc,0xf8,0xf5,0xf2,0xf0,0xee,0xea,0xe5,0xe0, - 0xdc,0xd9,0xd8,0xd8,0xd9,0xdb,0xdf,0xe2,0xe6,0xe9,0xeb,0xed, - 0xed,0xee,0xee,0xef,0xf0,0xf2,0xf4,0xf5,0xf6,0xf8,0xfa,0xfd, - 0xff,0x00,0x00,0x01,0x01,0x00,0xfd,0xfa,0xf6,0xf2,0xef,0xee, - 0xee,0xf0,0xf3,0xf7,0xfb,0x00,0x03,0x04,0x05,0x05,0x06,0x08, - 0x0a,0x0d,0x11,0x14,0x17,0x19,0x18,0x15,0x10,0x0a,0x04,0xfe, - 0xf9,0xf6,0xf4,0xf5,0xf6,0xf9,0xfb,0xfd,0x00,0x01,0x01,0x01, - 0x01,0x02,0x03,0x04,0x04,0x05,0x06,0x06,0x06,0x04,0x03,0x01, - 0xff,0xfc,0xf9,0xf6,0xf4,0xf2,0xf0,0xef,0xef,0xf0,0xf2,0xf3, - 0xf5,0xf7,0xf7,0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa,0xfb,0xfe, - 0x00,0x01,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfb,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xf9,0xf9,0xf8,0xf7,0xf7,0xf8,0xf9,0xfb,0xfe,0x02, - 0x05,0x07,0x09,0x0a,0x0a,0x09,0x07,0x05,0x04,0x03,0x03,0x03, - 0x03,0x04,0x04,0x03,0x02,0x00,0xfd,0xfb,0xf9,0xf8,0xf9,0xfa, - 0xfb,0xfd,0xff,0x01,0x03,0x04,0x03,0x02,0x01,0x00,0x00,0x00, - 0x00,0x02,0x04,0x05,0x06,0x06,0x06,0x04,0x01,0xfe,0xfb,0xf9, - 0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb,0xfc,0xfc,0xfb,0xfb,0xfb, - 0xfc,0xfd,0xff,0x01,0x02,0x04,0x05,0x05,0x04,0x03,0x02,0x00, - 0xff,0xfe,0xfe,0xff,0xff,0x00,0x00,0x01,0x01,0x02,0x02,0x01, - 0x01,0x01,0x02,0x03,0x04,0x03,0x03,0x02,0x01,0x01,0x00,0xff, - 0xfd,0xfd,0xfe,0x00,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfd,0xfe,0xff,0x00,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0x00,0x02,0x03,0x03,0x01,0x00,0xff,0xff, - 0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xfa,0xf8,0xf8,0xfa, - 0xfc,0xfe,0x00,0x02,0x03,0x05,0x06,0x06,0x05,0x04,0x03,0x02, - 0x02,0x02,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x03,0x02,0x02, - 0x02,0x03,0x03,0x04,0x04,0x05,0x06,0x07,0x07,0x06,0x05,0x04, - 0x04,0x05,0x05,0x05,0x06,0x07,0x0a,0x0c,0x0d,0x0d,0x0b,0x09, - 0x07,0x05,0x01,0xfe,0xfa,0xf8,0xf7,0xf7,0xf8,0xf8,0xf9,0xfa, - 0xfc,0xfe,0xff,0x01,0x02,0x05,0x08,0x0b,0x0d,0x0e,0x0d,0x0b, - 0x08,0x03,0xfd,0xf7,0xf1,0xec,0xea,0xe8,0xe9,0xea,0xeb,0xed, - 0xf0,0xf2,0xf3,0xf5,0xf7,0xf9,0xfd,0x01,0x06,0x0a,0x0e,0x11, - 0x13,0x13,0x12,0x10,0x0d,0x0b,0x09,0x09,0x09,0x09,0x09,0x08, - 0x08,0x07,0x06,0x04,0x02,0x01,0x00,0x00,0x01,0x03,0x05,0x06, - 0x08,0x0a,0x0d,0x11,0x15,0x19,0x1d,0x22,0x27,0x2c,0x2e,0x2f, - 0x2d,0x29,0x25,0x20,0x1a,0x14,0x0e,0x08,0x02,0xfd,0xf8,0xf3, - 0xee,0xea,0xe7,0xe6,0xe9,0xee,0xf5,0xfc,0x04,0x0b,0x11,0x16, - 0x17,0x16,0x12,0x0e,0x09,0x05,0x01,0xfe,0xfa,0xf7,0xf3,0xee, - 0xe9,0xe4,0xde,0xd9,0xd4,0xd2,0xd3,0xd5,0xd8,0xdc,0xe0,0xe4, - 0xe8,0xec,0xef,0xf2,0xf3,0xf5,0xf7,0xf9,0xfc,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfa,0xf8,0xf7,0xf6,0xf4,0xf1,0xed, - 0xea,0xe8,0xe8,0xea,0xee,0xf3,0xf8,0xfe,0x04,0x09,0x0e,0x11, - 0x12,0x12,0x13,0x13,0x14,0x14,0x13,0x12,0x10,0x0e,0x0b,0x08, - 0x04,0xff,0xfb,0xf8,0xf6,0xf4,0xf4,0xf4,0xf5,0xf6,0xf8,0xfb, - 0xfe,0x00,0x02,0x04,0x06,0x08,0x08,0x07,0x06,0x05,0x03,0x02, - 0x01,0xff,0xfd,0xfc,0xfb,0xfb,0xf9,0xf7,0xf4,0xf1,0xf0,0xef, - 0xef,0xef,0xf0,0xf2,0xf6,0xfa,0xfd,0x00,0x01,0x02,0x02,0x02, - 0x02,0x01,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfb,0xf9,0xf8,0xf8, - 0xf7,0xf7,0xf7,0xf7,0xf9,0xfc,0xfe,0x00,0x00,0x01,0x01,0x01, - 0x00,0xff,0xfe,0xfd,0xfe,0xff,0x01,0x02,0x04,0x05,0x06,0x06, - 0x05,0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x02,0x03,0x02,0x00, - 0xfe,0xfb,0xf9,0xf8,0xf8,0xf8,0xf9,0xfb,0xfd,0x01,0x04,0x06, - 0x07,0x08,0x08,0x08,0x08,0x07,0x06,0x04,0x03,0x02,0x00,0xfe, - 0xfc,0xf9,0xf6,0xf5,0xf3,0xf3,0xf3,0xf4,0xf5,0xf6,0xf9,0xfb, - 0xfd,0xfe,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x05,0x06,0x06, - 0x06,0x06,0x06,0x05,0x03,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xff,0x00,0x01, - 0x03,0x05,0x07,0x09,0x0a,0x09,0x08,0x07,0x06,0x05,0x03,0x01, - 0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf8,0xf7, - 0xf8,0xf9,0xfb,0xfd,0xfe,0x00,0x01,0x02,0x03,0x03,0x03,0x03, - 0x03,0x02,0x02,0x02,0x01,0xff,0xfe,0xfe,0xfd,0xfc,0xfa,0xfa, - 0xfa,0xfa,0xfb,0xfc,0xfc,0xfd,0xfe,0xff,0x01,0x02,0x03,0x04, - 0x05,0x06,0x07,0x08,0x08,0x08,0x07,0x07,0x06,0x06,0x05,0x03, - 0x01,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xfb,0xfc,0xfd,0xff, - 0x00,0x02,0x03,0x04,0x06,0x07,0x09,0x0a,0x0b,0x0c,0x0d,0x0d, - 0x0d,0x0c,0x0a,0x08,0x06,0x04,0x01,0xff,0xfe,0xfc,0xfb,0xf9, - 0xf9,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xfa,0xfc,0xfd,0xff,0x00, - 0x02,0x04,0x05,0x06,0x05,0x04,0x03,0x01,0xff,0xfc,0xfa,0xf9, - 0xf8,0xf8,0xf8,0xf8,0xf8,0xf7,0xf6,0xf6,0xf5,0xf5,0xf5,0xf6, - 0xf7,0xfa,0xfe,0x02,0x05,0x07,0x08,0x09,0x09,0x08,0x08,0x07, - 0x07,0x08,0x0a,0x0c,0x0d,0x0e,0x0d,0x0d,0x0c,0x0b,0x09,0x07, - 0x05,0x04,0x04,0x04,0x04,0x05,0x05,0x06,0x06,0x08,0x0a,0x0d, - 0x10,0x13,0x15,0x18,0x1a,0x1b,0x1a,0x18,0x15,0x12,0x10,0x0e, - 0x0c,0x09,0x06,0x04,0x02,0xff,0xfb,0xf7,0xf3,0xf2,0xf2,0xf3, - 0xf6,0xfa,0xfe,0x03,0x07,0x0a,0x0b,0x0b,0x09,0x06,0x04,0x01, - 0xff,0xfd,0xfb,0xf9,0xf8,0xf6,0xf4,0xf2,0xee,0xea,0xe7,0xe5, - 0xe5,0xe6,0xe8,0xea,0xee,0xf2,0xf6,0xf9,0xfb,0xfc,0xfc,0xfb, - 0xfa,0xfa,0xf9,0xf8,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf6,0xf5, - 0xf5,0xf4,0xf3,0xf3,0xf3,0xf3,0xf4,0xf6,0xf7,0xf9,0xfb,0xfd, - 0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x04,0x05, - 0x06,0x07,0x07,0x06,0x05,0x04,0x02,0x00,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfe,0x00,0x01,0x03,0x04,0x05,0x05,0x04,0x04,0x03,0x03, - 0x02,0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd, - 0xfd,0xfc,0xfb,0xfc,0xfd,0xfe,0x00,0x00,0x00,0x00,0x00,0xff, - 0xfe,0xfc,0xfb,0xfa,0xfa,0xfb,0xfc,0xfd,0xff,0x00,0x01,0x01, - 0x00,0xff,0xfe,0xfd,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xff, - 0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xfb,0xfb,0xfd,0xff,0x00,0x02, - 0x03,0x03,0x02,0x01,0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb, - 0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x02,0x03,0x04,0x04,0x04,0x02,0x01,0xff,0xfd,0xfc,0xfb, - 0xfb,0xfc,0xfd,0xfe,0x00,0x02,0x03,0x04,0x04,0x03,0x02,0x01, - 0x00,0xff,0xff,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfe,0xff,0x01,0x02,0x04,0x04,0x05,0x05, - 0x04,0x03,0x01,0xff,0xfe,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02, - 0x03,0x03,0x03,0x03,0x02,0x00,0xfe,0xfd,0xfb,0xfb,0xfa,0xfa, - 0xfb,0xfc,0xfd,0xff,0x00,0x01,0x02,0x02,0x02,0x03,0x03,0x03, - 0x03,0x02,0x02,0x03,0x03,0x03,0x02,0x00,0xff,0xfe,0xfc,0xfb, - 0xfa,0xf9,0xf9,0xfa,0xfb,0xfc,0xfe,0x00,0x02,0x04,0x05,0x05, - 0x06,0x06,0x05,0x05,0x04,0x03,0x03,0x02,0x02,0x02,0x01,0x00, - 0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd,0xff,0x00,0x01, - 0x03,0x04,0x05,0x05,0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x01,0x00,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x03,0x03,0x03,0x02,0x01,0x01,0x00,0xff,0xff, - 0xfe,0xfe,0xff,0xff,0xff,0x00,0x01,0x02,0x03,0x04,0x04,0x03, - 0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x04,0x04,0x04,0x03,0x03, - 0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x03,0x04,0x05,0x05, - 0x05,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x07,0x07,0x07,0x07, - 0x07,0x06,0x06,0x05,0x04,0x03,0x02,0x02,0x02,0x01,0x01,0x02, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02, - 0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x03,0x03,0x03,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03, - 0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03, - 0x02,0x01,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,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,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x02,0x02,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x03,0x03,0x03, - 0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03, - 0x03,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x04,0x04, - 0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x03,0x03, - 0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x03,0x03,0x03,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02, - 0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0xff,0xfc,0xfb,0xfc,0xff,0x02,0x02,0x01, - 0x01,0x01,0x01,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x02,0x02, - 0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x01,0x02,0x01,0x00,0xfd,0xfb,0xfb,0xfd,0xff,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x01, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0xfd,0xfa,0xf8,0xfa,0xfd,0xff,0x00,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0xff,0xfe,0xfe,0xff, - 0x00,0x00,0xff,0xfe,0xff,0x00,0x01,0x00,0xff,0xfe,0xfe,0xfe, - 0xfe,0xff,0x01,0x01,0xff,0xfc,0xfd,0x00,0x02,0x01,0xfe,0xfc, - 0xfe,0x00,0x00,0x00,0xff,0x00,0x01,0x01,0xff,0xfe,0xfe,0xff, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0xff,0xfe, - 0xfd,0xfe,0xff,0x01,0x02,0x01,0x00,0xfe,0xfd,0xfe,0xff,0x00, - 0x01,0x00,0xff,0xff,0x00,0xff,0xfe,0xfc,0xfc,0xfd,0xff,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x01,0x00, - 0x00,0x00,0x00,0x01,0x02,0x00,0xfe,0xfb,0xfa,0xfc,0xff,0x01, - 0x02,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0x01,0x01,0x00, - 0xfe,0xfd,0xff,0x00,0x01,0x00,0xff,0xff,0x01,0x02,0x02,0x03, - 0x03,0x02,0x00,0xfe,0xfc,0xfd,0xff,0x00,0x00,0xff,0xfe,0xff, - 0x00,0x01,0x00,0xff,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0xff,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0xff,0x00,0x00, - 0x01,0x00,0xff,0xfe,0xfe,0x00,0x01,0x00,0xfe,0xfe,0xff,0x00, - 0x01,0x00,0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0x00,0x01,0x01,0x00,0xfe,0xfd,0xfe,0x00,0x01,0x00,0xff,0x00, - 0x00,0x00,0xff,0xff,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0x01, - 0x02,0x02,0x00,0xff,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0x00,0x02,0x03,0x01,0xff,0xfd,0xfe, - 0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x00,0xff,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x00,0xff,0xff,0x00,0x02,0x04,0x04,0x01, - 0xfe,0xfd,0xff,0x01,0x03,0x02,0x00,0xfe,0xfd,0xff,0x00,0x01, - 0x01,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x02,0x03,0x02, - 0x00,0xfe,0xfe,0x00,0x03,0x03,0x03,0x01,0x01,0x01,0x02,0x03, - 0x02,0x01,0xff,0xfe,0x00,0x03,0x04,0x02,0x00,0xff,0x01,0x02, - 0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01, - 0x01,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0xff,0x01,0x02, - 0x03,0x02,0x01,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x00, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0xff,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xff,0x00,0xff,0xfe, - 0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xfd,0xfc,0xfc,0xfd, - 0xfe,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x01,0x00,0xfe, - 0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01,0xff,0xfe,0xfd,0xff, - 0x00,0x01,0x00,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xff,0x00,0x00, - 0xff,0xfd,0xfc,0xfe,0x00,0x01,0x01,0xff,0xff,0x00,0x01,0x01, - 0x00,0xfe,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xfe,0xfd, - 0xfe,0x00,0x02,0x02,0x00,0xfd,0xfd,0xfe,0x01,0x01,0x00,0xff, - 0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff, - 0x00,0x00,0x00,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xfe,0xfd,0xfe,0xff,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xfe,0xfe,0xff,0xff, - 0xff,0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0xff,0x00, - 0x00,0x02,0x02,0x00,0xff,0xfe,0xff,0x00,0x01,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01,0x00,0xff,0x00,0x00,0x00, - 0x00,0xff,0xff,0x00,0x01,0x01,0x01,0xff,0xfe,0xfe,0xfe,0xff, - 0x00,0x01,0x01,0x01,0xff,0xfe,0xfe,0xff,0x00,0x00,0x00,0xff, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x01,0x00,0x00,0x00, - 0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0xff,0xfe,0xfe,0x00,0x01, - 0x01,0xff,0xfe,0xfe,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00, - 0xff,0xfe,0xff,0xff,0x00,0x00,0x01,0x00,0x00,0x00,0xff,0xfe, - 0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xfe, - 0xfe,0x00,0x01,0x02,0x00,0xfe,0xfe,0x00,0x02,0x02,0x01,0xfe, - 0xfd,0xfe,0x00,0x01,0x01,0x01,0x01,0x01,0xff,0xfe,0xfd,0xff, - 0x01,0x02,0x02,0x00,0xff,0x00,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0x00,0x01,0x02,0x02,0x01,0x00,0xff,0xff,0x00, - 0x01,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xff,0x00,0x00,0x00, - 0xff,0xff,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0xff,0x00, - 0x01,0x03,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01, - 0x01,0x00,0x00,0x01,0x03,0x04,0x04,0x02,0xff,0xfe,0xfe,0x00, - 0x03,0x04,0x04,0x02,0x01,0x00,0xff,0xff,0xff,0x00,0x01,0x02, - 0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01, - 0x01,0x00,0x01,0x01,0x00,0xff,0xfe,0xff,0xff,0xff,0xfe,0xfe, - 0xff,0xff,0xfe,0xfe,0x00,0x01,0x01,0x00,0xfd,0xfc,0xfd,0xff, - 0x01,0x01,0xff,0xfd,0xfc,0xfd,0xff,0xff,0xfe,0xfc,0xfc,0xfd, - 0xfe,0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfe,0x00,0x01,0x00,0xfe, - 0xfd,0xfe,0xff,0xff,0xff,0xfd,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xff,0xff,0xfe,0xfc,0xfb,0xfd,0xfe,0xff,0xfe,0xfd,0xfd, - 0xfe,0x00,0x01,0x00,0xfe,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xfe,0xfd,0xfd,0xfe,0x00,0x00,0xff,0xfd,0xfc,0xfd,0xff,0x00, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x01, - 0xff,0xfd,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff, - 0xff,0x00,0x01,0x01,0x00,0x00,0xff,0x00,0x00,0x01,0x00,0x00, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00, - 0xff,0xfe,0xfd,0xfd,0xff,0x01,0x02,0x01,0x00,0xff,0xff,0x00, - 0x01,0x01,0x00,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00, - 0x00,0xff,0xfe,0xfe,0xff,0x00,0x01,0x02,0x01,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00, - 0x01,0x01,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x01,0x02,0x01,0x00, - 0xff,0xff,0x00,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, - 0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00, - 0xff,0xfe,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00, - 0xff,0xff,0x00,0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x01,0x01, - 0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x01,0x01,0x00, - 0xff,0xff,0xff,0x00,0xff,0xff,0xfe,0xfe,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x02, - 0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x00,0x00,0xff,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x01,0x02,0x01,0x01,0x00,0xff,0x00,0x01,0x01,0x00,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01, - 0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02, - 0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff, - 0x00,0x00,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00, - 0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00, - 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, - 0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x03,0x03, - 0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,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, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe, - 0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04, - 0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x01,0x00,0xff,0x00,0x00, - 0x01,0x02,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x03,0x03, - 0x04,0x05,0x05,0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x04, - 0x04,0x03,0x03,0x04,0x04,0x05,0x04,0x04,0x03,0x04,0x05,0x05, - 0x05,0x05,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x03,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x00,0x00,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfa,0xfb,0xfb,0xfb,0xfa,0xf9,0xf9, - 0xfa,0xfa,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfc,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00, - 0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x03,0x03,0x03,0x03, - 0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x05, - 0x05,0x05,0x05,0x06,0x06,0x07,0x06,0x05,0x05,0x05,0x06,0x06, - 0x05,0x04,0x04,0x05,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x04, - 0x03,0x03,0x03,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x02,0x01, - 0x00,0x00,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa, - 0xfa,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xfa,0xfa,0xfb, - 0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd, - 0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xfe,0xff,0xff,0x00,0x01,0x01,0x01,0x01,0x01, - 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01, - 0x01,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0xff,0xff,0xfe,0xff,0xff,0x00,0x01,0x01,0x01, - 0x01,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01, - 0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x03, - 0x03,0x02,0x02,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x04, - 0x05,0x05,0x05,0x04,0x03,0x03,0x04,0x04,0x05,0x05,0x05,0x05, - 0x05,0x06,0x06,0x06,0x05,0x05,0x05,0x06,0x07,0x07,0x06,0x06, - 0x06,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x05,0x06,0x06, - 0x07,0x06,0x05,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04, - 0x04,0x03,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x01, - 0x00,0xff,0xfe,0xff,0xff,0xfe,0xfc,0xfb,0xfb,0xfc,0xfd,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8, - 0xf9,0xfa,0xfb,0xfb,0xf9,0xf8,0xf8,0xf9,0xfa,0xfa,0xf9,0xf8, - 0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x00,0x00,0x00, - 0x01,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02, - 0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x03,0x03,0x03, - 0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04, - 0x03,0x03,0x03,0x04,0x05,0x05,0x05,0x04,0x05,0x05,0x06,0x06, - 0x06,0x06,0x06,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07, - 0x08,0x08,0x08,0x07,0x06,0x05,0x06,0x07,0x08,0x07,0x05,0x04, - 0x05,0x06,0x07,0x06,0x06,0x05,0x05,0x05,0x05,0x04,0x04,0x04, - 0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x00,0x00,0x01, - 0x01,0x00,0xfe,0xfd,0xfc,0xfd,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf8,0xf8,0xf8,0xf9,0xf9,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8, - 0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfb,0xfb,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfb,0xfb, - 0xfc,0xfc,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfe,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfc,0xfd,0xfe,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x00, - 0x00,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0x00,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff, - 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x01,0x01,0x00,0xff, - 0xff,0xfe,0xff,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x03, - 0x03,0x03,0x04,0x04,0x05,0x04,0x04,0x03,0x03,0x03,0x04,0x04, - 0x04,0x04,0x04,0x05,0x06,0x06,0x06,0x05,0x05,0x05,0x05,0x05, - 0x05,0x06,0x06,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x06,0x06, - 0x06,0x06,0x06,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06, - 0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x02, - 0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0xff,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa, - 0xfa,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfb, - 0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x00, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, - 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0xff,0xff, - 0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, - 0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02, - 0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x03, - 0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x04, - 0x04,0x05,0x06,0x06,0x06,0x05,0x05,0x05,0x05,0x05,0x05,0x06, - 0x06,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x06,0x06,0x07, - 0x07,0x07,0x07,0x07,0x07,0x07,0x07,0x06,0x06,0x05,0x06,0x06, - 0x06,0x06,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x03, - 0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xfa,0xfa,0xfa,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfb,0xfa,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfd,0xfc,0xfc,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xff,0xfe,0xfe,0xfd,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x01,0x01, - 0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff, - 0x00,0x00,0xff,0xfe,0xfe,0xff,0x00,0x00,0x00,0xff,0xff,0xff, - 0x00,0x00,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00, - 0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x00,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x02,0x01,0x00,0x00,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01, - 0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x02, - 0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x01,0x00,0x00, - 0x01,0x03,0x04,0x03,0x01,0x01,0x02,0x03,0x04,0x03,0x02,0x01, - 0x02,0x03,0x04,0x04,0x04,0x03,0x02,0x03,0x03,0x04,0x04,0x04, - 0x05,0x06,0x06,0x05,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x06, - 0x07,0x07,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x07, - 0x07,0x06,0x06,0x06,0x06,0x07,0x07,0x06,0x05,0x05,0x06,0x07, - 0x06,0x06,0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x02,0x03,0x03, - 0x04,0x04,0x04,0x04,0x03,0x02,0x01,0x01,0x00,0x01,0x01,0x01, - 0x00,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfc,0xfc,0xfb,0xfb,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfa, - 0xf9,0xf9,0xf9,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfb,0xfb,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa, - 0xfb,0xfc,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfe,0xff, - 0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xfe,0xfe,0xff,0x00,0x00,0x00,0xfe,0xfd,0xfe,0xff,0x00,0x00, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, - 0x00,0x01,0x01,0x01,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x01,0x00,0x00,0x00, - 0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0xff,0xff,0xff,0xfe,0xff,0xff,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0xff,0xff,0x00,0x01,0x01,0x01,0x01, - 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x02,0x02,0x02,0x02, - 0x02,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x01, - 0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x05, - 0x05,0x04,0x03,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x03, - 0x03,0x02,0x02,0x02,0x03,0x05,0x06,0x07,0x07,0x06,0x05,0x05, - 0x05,0x04,0x04,0x03,0x03,0x03,0x04,0x06,0x08,0x0a,0x0a,0x0a, - 0x0a,0x09,0x08,0x08,0x08,0x07,0x06,0x06,0x05,0x06,0x07,0x08, - 0x08,0x07,0x06,0x05,0x05,0x06,0x07,0x06,0x05,0x03,0x04,0x04, - 0x04,0x03,0x01,0xff,0xff,0xff,0x00,0x00,0xff,0x00,0x00,0x02, - 0x02,0x02,0x02,0x01,0xff,0xfd,0xfb,0xfa,0xfa,0xfa,0xfa,0xf9, - 0xf9,0xfa,0xfb,0xfb,0xfa,0xf9,0xf7,0xf7,0xf6,0xf6,0xf6,0xf6, - 0xf7,0xf7,0xf6,0xf6,0xf5,0xf5,0xf6,0xf6,0xf5,0xf5,0xf6,0xf7, - 0xf9,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x03, - 0x03,0x03,0x01,0xff,0xff,0xff,0x00,0xff,0xff,0xfe,0xff,0x00, - 0x00,0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb, - 0xfa,0xfa,0xfa,0xfb,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc, - 0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfc,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfd, - 0xfe,0xff,0x00,0x00,0xff,0xff,0x00,0x01,0x02,0x02,0x01,0x00, - 0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x03,0x03, - 0x02,0x01,0x02,0x03,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x01, - 0x00,0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0xff,0xff,0x00,0x01, - 0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xff,0x00,0xff,0xfe,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xfd,0xfd, - 0xfe,0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe, - 0x00,0x02,0x03,0x04,0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x02, - 0x01,0x01,0x00,0x01,0x02,0x03,0x03,0x02,0x00,0x00,0x02,0x03, - 0x03,0x02,0x01,0x01,0x02,0x03,0x03,0x02,0x02,0x01,0x00,0x01, - 0x01,0x02,0x02,0x02,0x03,0x04,0x05,0x06,0x06,0x06,0x05,0x05, - 0x04,0x04,0x04,0x05,0x04,0x01,0xff,0xfc,0xfa,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xfb,0xfd,0x00,0x01,0x00,0xfe,0xfc,0xfb,0xfa,0xfa, - 0xfa,0xfb,0xfc,0xfd,0x00,0x02,0x03,0x03,0x03,0x03,0x02,0x02, - 0x01,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x03,0x02,0x01,0xff, - 0xfc,0xfa,0xf9,0xf9,0xfa,0xfb,0xfd,0xfe,0xff,0x02,0x05,0x07, - 0x07,0x07,0x07,0x07,0x08,0x09,0x0a,0x0a,0x0a,0x0b,0x0e,0x11, - 0x13,0x13,0x11,0x10,0x10,0x0f,0x0d,0x0b,0x08,0x07,0x07,0x08, - 0x0a,0x0b,0x0b,0x09,0x07,0x04,0x02,0xfe,0xfa,0xf6,0xf3,0xf2, - 0xf4,0xf8,0xfc,0x00,0x04,0x07,0x0a,0x0b,0x0a,0x07,0x04,0x01, - 0xff,0xfd,0xfc,0xfb,0xfa,0xfa,0xfa,0xf9,0xf7,0xf4,0xf1,0xee, - 0xec,0xeb,0xec,0xed,0xef,0xf0,0xf2,0xf4,0xf6,0xf7,0xf7,0xf5, - 0xf3,0xf3,0xf3,0xf4,0xf5,0xf6,0xf7,0xf9,0xfc,0xfe,0x01,0x03, - 0x05,0x05,0x06,0x06,0x07,0x06,0x04,0x02,0x00,0xff,0xfd,0xfc, - 0xfa,0xf8,0xf7,0xf8,0xf9,0xfa,0xfb,0xfb,0xfb,0xfd,0xff,0x01, - 0x03,0x04,0x05,0x05,0x06,0x07,0x07,0x06,0x05,0x04,0x04,0x05, - 0x05,0x06,0x06,0x07,0x08,0x08,0x08,0x07,0x05,0x03,0x01,0x00, - 0xff,0xfd,0xfb,0xf9,0xf9,0xfa,0xfa,0xf9,0xf8,0xf6,0xf7,0xf8, - 0xf9,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb,0xfa,0xf9,0xf9,0xfa, - 0xfc,0xfe,0xff,0xff,0x00,0x01,0x03,0x04,0x04,0x04,0x02,0x02, - 0x02,0x03,0x03,0x01,0x00,0x00,0x01,0x02,0x03,0x03,0x03,0x04, - 0x05,0x06,0x06,0x06,0x05,0x03,0x02,0x00,0xff,0xfe,0xfd,0xfc, - 0xfa,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x02,0x02, - 0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x00,0xfe,0xfd,0xfc,0xfd, - 0xfe,0xfe,0xfe,0xfd,0xfe,0xff,0x00,0xff,0xfd,0xfb,0xf9,0xf9, - 0xf9,0xf8,0xf6,0xf5,0xf5,0xf7,0xf9,0xfa,0xfb,0xfc,0xfe,0x00, - 0x02,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x09,0x09,0x07,0x05, - 0x04,0x02,0x01,0x00,0xff,0xfe,0xff,0x00,0x02,0x03,0x03,0x03, - 0x03,0x03,0x02,0x00,0xff,0xfd,0xfc,0xfb,0xfb,0xfa,0xfb,0xfc, - 0xfe,0x00,0x01,0x03,0x05,0x08,0x0c,0x0f,0x12,0x14,0x15,0x16, - 0x15,0x14,0x11,0x0d,0x07,0x01,0xfb,0xf7,0xf3,0xf0,0xed,0xec, - 0xec,0xed,0xef,0xf2,0xf4,0xf5,0xf7,0xfa,0xfd,0xff,0x00,0x01, - 0x01,0x01,0x01,0x00,0xff,0xfd,0xfc,0xfb,0xfc,0xfe,0x00,0x02, - 0x04,0x07,0x08,0x0a,0x0a,0x0a,0x08,0x06,0x02,0xfe,0xfa,0xf7, - 0xf3,0xf0,0xec,0xe9,0xe8,0xe8,0xea,0xed,0xf1,0xf7,0xff,0x08, - 0x11,0x19,0x1f,0x24,0x26,0x25,0x23,0x1e,0x19,0x13,0x0d,0x09, - 0x07,0x06,0x08,0x0a,0x0c,0x0e,0x0e,0x0f,0x0e,0x0e,0x0c,0x0a, - 0x08,0x08,0x08,0x08,0x08,0x07,0x05,0x02,0xfe,0xfa,0xf6,0xf2, - 0xf0,0xf0,0xf3,0xfa,0x01,0x08,0x0e,0x14,0x18,0x1a,0x18,0x13, - 0x0c,0x03,0xfc,0xf7,0xf3,0xf0,0xed,0xeb,0xeb,0xed,0xef,0xee, - 0xec,0xea,0xe8,0xe8,0xe8,0xe9,0xea,0xec,0xee,0xf1,0xf3,0xf5, - 0xf5,0xf3,0xf0,0xed,0xec,0xeb,0xea,0xeb,0xee,0xf3,0xf9,0x00, - 0x06,0x0b,0x0f,0x11,0x12,0x10,0x0d,0x09,0x04,0x00,0xfc,0xf9, - 0xf7,0xf5,0xf4,0xf4,0xf5,0xf7,0xf9,0xfa,0xfb,0xfd,0x00,0x04, - 0x07,0x09,0x0a,0x0b,0x0e,0x10,0x10,0x0f,0x0c,0x0a,0x08,0x06, - 0x04,0x01,0xfe,0xfd,0xfe,0x00,0x02,0x04,0x05,0x06,0x07,0x07, - 0x07,0x05,0x02,0xfe,0xfb,0xf9,0xf8,0xf6,0xf5,0xf5,0xf6,0xf8, - 0xfb,0xfc,0xfc,0xfb,0xfb,0xfc,0xfc,0xfb,0xf9,0xf8,0xf8,0xf8, - 0xf9,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa, - 0xfc,0xfe,0xff,0x00,0x00,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfc, - 0xfd,0xfe,0x00,0x02,0x05,0x06,0x07,0x07,0x07,0x05,0x03,0x00, - 0xfd,0xfa,0xf8,0xf7,0xf7,0xf8,0xf9,0xfb,0xfd,0x00,0x02,0x03, - 0x04,0x05,0x05,0x06,0x05,0x04,0x03,0x04,0x05,0x06,0x07,0x06, - 0x05,0x05,0x05,0x05,0x04,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfc, - 0xfc,0xfb,0xfb,0xfc,0xfc,0xfd,0xfc,0xfb,0xf9,0xf9,0xfa,0xfb, - 0xfc,0xfc,0xfd,0xff,0x02,0x04,0x06,0x07,0x07,0x06,0x05,0x04, - 0x03,0x01,0x00,0xfe,0xfd,0xfc,0xfa,0xf9,0xf7,0xf6,0xf5,0xf4, - 0xf4,0xf4,0xf4,0xf5,0xf8,0xfc,0xff,0x03,0x05,0x07,0x08,0x09, - 0x0a,0x09,0x06,0x04,0x02,0x03,0x04,0x05,0x06,0x07,0x09,0x0c, - 0x0e,0x0f,0x0d,0x0b,0x08,0x05,0x02,0xff,0xfc,0xfa,0xf7,0xf7, - 0xf8,0xfa,0xfb,0xfb,0xfc,0xfd,0xff,0x01,0x03,0x05,0x07,0x09, - 0x0c,0x0f,0x12,0x13,0x13,0x11,0x0e,0x0b,0x08,0x04,0xff,0xfa, - 0xf7,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf7,0xf6,0xf5,0xf4, - 0xf3,0xf2,0xf3,0xf4,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfc, - 0xfd,0xfd,0xff,0x01,0x03,0x04,0x05,0x07,0x08,0x09,0x09,0x08, - 0x07,0x05,0x04,0x02,0xff,0xfb,0xf7,0xf3,0xf2,0xf1,0xf1,0xf2, - 0xf4,0xf8,0xff,0x06,0x0c,0x0f,0x12,0x14,0x15,0x16,0x15,0x13, - 0x12,0x13,0x15,0x18,0x1b,0x1d,0x1d,0x1c,0x1a,0x17,0x13,0x0e, - 0x09,0x05,0x03,0x04,0x05,0x07,0x07,0x06,0x05,0x02,0xff,0xf9, - 0xf2,0xec,0xea,0xeb,0xf0,0xf7,0xfe,0x06,0x0e,0x14,0x19,0x1a, - 0x16,0x0f,0x08,0x01,0xfd,0xfb,0xf9,0xf7,0xf6,0xf6,0xf8,0xf9, - 0xf6,0xef,0xe7,0xe0,0xdc,0xdb,0xdb,0xdb,0xdd,0xe1,0xe7,0xef, - 0xf5,0xf7,0xf5,0xf2,0xf0,0xef,0xef,0xee,0xed,0xef,0xf4,0xfc, - 0x04,0x0b,0x10,0x11,0x12,0x11,0x10,0x0d,0x09,0x04,0x00,0xfc, - 0xfa,0xf8,0xf6,0xf5,0xf4,0xf3,0xf3,0xf4,0xf6,0xf7,0xf8,0xfb, - 0xfe,0x02,0x05,0x07,0x08,0x09,0x0a,0x0c,0x0d,0x0e,0x0d,0x0c, - 0x0b,0x0b,0x0b,0x0a,0x08,0x06,0x05,0x05,0x06,0x07,0x07,0x05, - 0x03,0x02,0xff,0xfc,0xf8,0xf2,0xee,0xec,0xec,0xed,0xef,0xf3, - 0xf8,0xfd,0x02,0x07,0x09,0x0a,0x0a,0x07,0x04,0x00,0xfd,0xfb, - 0xf9,0xf9,0xf8,0xf7,0xf7,0xf7,0xf8,0xf8,0xf7,0xf6,0xf6,0xf6, - 0xf8,0xf9,0xfa,0xfb,0xfb,0xfb,0xfa,0xf8,0xf7,0xf5,0xf4,0xf5, - 0xf7,0xfa,0xfe,0x02,0x08,0x0d,0x11,0x13,0x13,0x13,0x11,0x0d, - 0x08,0x03,0x00,0xfd,0xfb,0xfa,0xf9,0xf8,0xf9,0xfa,0xfb,0xfa, - 0xfa,0xfb,0xfc,0xfd,0xff,0x00,0x01,0x03,0x04,0x05,0x06,0x05, - 0x04,0x03,0x03,0x03,0x02,0x02,0x03,0x04,0x05,0x05,0x05,0x05, - 0x04,0x04,0x02,0xff,0xfc,0xf9,0xf6,0xf4,0xf3,0xf1,0xf1,0xf1, - 0xf2,0xf4,0xf7,0xf9,0xfb,0xfc,0xfd,0xff,0x01,0x03,0x03,0x03, - 0x03,0x05,0x08,0x0a,0x0b,0x0a,0x09,0x08,0x07,0x05,0x02,0xfd, - 0xf9,0xf5,0xf3,0xf2,0xf2,0xf1,0xf0,0xf1,0xf4,0xf8,0xfb,0xfe, - 0x01,0x03,0x06,0x0a,0x0e,0x0f,0x0f,0x0d,0x0b,0x0a,0x09,0x07, - 0x05,0x03,0x02,0x02,0x03,0x04,0x05,0x05,0x05,0x05,0x05,0x05, - 0x05,0x05,0x05,0x05,0x06,0x07,0x07,0x06,0x05,0x02,0xff,0xfd, - 0xfa,0xf9,0xf9,0xfa,0xfd,0x02,0x08,0x0e,0x13,0x15,0x16,0x14, - 0x11,0x0d,0x08,0x02,0xfc,0xf6,0xf2,0xf1,0xf2,0xf2,0xf3,0xf3, - 0xf4,0xf5,0xf6,0xf5,0xf4,0xf2,0xf2,0xf2,0xf3,0xf4,0xf4,0xf4, - 0xf5,0xf6,0xf7,0xf8,0xf8,0xf8,0xf9,0xfb,0xfe,0x02,0x06,0x0b, - 0x0e,0x10,0x12,0x12,0x12,0x0f,0x0a,0x03,0xfc,0xf6,0xf1,0xee, - 0xed,0xec,0xee,0xf1,0xf8,0x00,0x08,0x0f,0x12,0x14,0x15,0x16, - 0x15,0x13,0x12,0x11,0x11,0x15,0x1a,0x20,0x24,0x26,0x26,0x26, - 0x25,0x23,0x1f,0x19,0x12,0x0e,0x0d,0x0e,0x10,0x10,0x0d,0x08, - 0x04,0x00,0xfa,0xf3,0xeb,0xe5,0xe4,0xe9,0xf2,0xfc,0x04,0x0d, - 0x15,0x1e,0x23,0x23,0x1b,0x10,0x04,0xfb,0xf5,0xf0,0xeb,0xe7, - 0xe4,0xe6,0xe9,0xec,0xeb,0xe6,0xe0,0xdb,0xd9,0xda,0xdb,0xdb, - 0xdb,0xde,0xe3,0xea,0xee,0xef,0xec,0xe9,0xe7,0xe8,0xeb,0xee, - 0xf1,0xf5,0xfb,0x04,0x0d,0x14,0x18,0x16,0x13,0x0e,0x0a,0x04, - 0xfd,0xf4,0xec,0xe7,0xe6,0xe8,0xea,0xeb,0xed,0xf1,0xf7,0xff, - 0x06,0x0a,0x0c,0x0e,0x10,0x14,0x16,0x15,0x13,0x11,0x0f,0x0f, - 0x10,0x10,0x0f,0x0d,0x0c,0x0b,0x0b,0x0a,0x08,0x05,0x02,0x00, - 0xff,0xfe,0xfc,0xfa,0xf7,0xf4,0xf2,0xf2,0xf3,0xf3,0xf4,0xf6, - 0xf9,0xfe,0x02,0x06,0x09,0x0b,0x0b,0x09,0x06,0x03,0xff,0xfb, - 0xf7,0xf3,0xf1,0xf0,0xf0,0xf1,0xf1,0xf1,0xf1,0xf2,0xf4,0xf4, - 0xf4,0xf3,0xf3,0xf4,0xf6,0xf8,0xf9,0xfb,0xfb,0xfd,0xfe,0xff, - 0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x04,0x03,0x01,0x00,0xfe, - 0xfc,0xfa,0xf9,0xf9,0xfa,0xfb,0xfd,0x00,0x03,0x06,0x07,0x07, - 0x06,0x05,0x03,0x01,0xff,0xfd,0xfc,0xfd,0xfe,0x01,0x04,0x05, - 0x07,0x08,0x09,0x09,0x07,0x05,0x03,0x02,0x02,0x01,0x01,0x02, - 0x03,0x04,0x03,0x02,0x01,0x00,0xfe,0xfc,0xfa,0xfa,0xfa,0xfc, - 0xfe,0x00,0x01,0x02,0x03,0x03,0x01,0xff,0xfd,0xfc,0xfb,0xfb, - 0xfb,0xfc,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfc,0xfa,0xf8, - 0xf8,0xf9,0xfa,0xfb,0xfa,0xf9,0xfa,0xfc,0xfd,0xfe,0xfd,0xfd, - 0xfe,0x00,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0xff,0xfd, - 0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0x01,0x04,0x08,0x0a,0x0c, - 0x0c,0x0b,0x0a,0x09,0x07,0x05,0x03,0x02,0x03,0x06,0x0a,0x0f, - 0x13,0x16,0x18,0x18,0x16,0x13,0x0c,0x04,0xfc,0xf6,0xf1,0xef, - 0xef,0xf2,0xf5,0xfa,0x00,0x05,0x09,0x0b,0x0b,0x0a,0x08,0x05, - 0x02,0xff,0xfd,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfd,0xfc,0xfa,0xf7,0xf6,0xf5,0xf3,0xf2,0xf0,0xee, - 0xee,0xef,0xf1,0xf1,0xf3,0xf4,0xf7,0xfa,0xfe,0x03,0x07,0x0c, - 0x10,0x13,0x15,0x14,0x11,0x0b,0x06,0x01,0xfc,0xf6,0xf2,0xf1, - 0xf4,0xfa,0x01,0x06,0x0a,0x0e,0x11,0x13,0x13,0x10,0x0c,0x0a, - 0x0b,0x10,0x16,0x1d,0x22,0x26,0x2a,0x2c,0x2d,0x2b,0x27,0x21, - 0x1b,0x18,0x18,0x1a,0x1b,0x19,0x15,0x0f,0x08,0x00,0xf6,0xea, - 0xdd,0xd4,0xd1,0xd6,0xdf,0xeb,0xf5,0xfe,0x07,0x10,0x17,0x19, - 0x15,0x0c,0x04,0x00,0x00,0x01,0x01,0xff,0xfd,0xfc,0xfb,0xf8, - 0xf1,0xe8,0xde,0xd6,0xd3,0xd2,0xd4,0xd7,0xda,0xdd,0xdf,0xe2, - 0xe5,0xe5,0xe3,0xdf,0xde,0xe0,0xe7,0xef,0xf7,0xff,0x06,0x0e, - 0x15,0x1a,0x1a,0x17,0x11,0x0d,0x09,0x05,0x01,0xfc,0xf7,0xf3, - 0xf1,0xf0,0xef,0xec,0xea,0xea,0xed,0xf2,0xf8,0xfd,0x02,0x07, - 0x0d,0x13,0x18,0x1a,0x19,0x17,0x15,0x15,0x15,0x14,0x11,0x0c, - 0x09,0x08,0x09,0x09,0x06,0x03,0x01,0x00,0x00,0xff,0xfd,0xf9, - 0xf4,0xef,0xed,0xed,0xee,0xee,0xee,0xef,0xf3,0xf9,0xff,0x04, - 0x05,0x05,0x04,0x04,0x05,0x05,0x04,0x01,0xfe,0xfc,0xfc,0xfc, - 0xfa,0xf7,0xf4,0xf0,0xef,0xef,0xf0,0xf0,0xf1,0xf2,0xf4,0xf7, - 0xf9,0xf9,0xf7,0xf6,0xf6,0xf8,0xf9,0xfa,0xfb,0xff,0x04,0x09, - 0x0d,0x10,0x10,0x10,0x10,0x0e,0x0c,0x09,0x05,0x01,0xfe,0xfb, - 0xf8,0xf6,0xf4,0xf3,0xf2,0xf1,0xf1,0xf3,0xf6,0xf9,0xfc,0xfe, - 0x00,0x03,0x07,0x09,0x0b,0x0b,0x0b,0x0c,0x0e,0x0f,0x0e,0x0c, - 0x08,0x05,0x02,0x00,0xfd,0xfa,0xf7,0xf7,0xf8,0xf9,0xfb,0xfc, - 0xfc,0xfe,0x00,0x02,0x02,0x00,0xff,0xff,0x00,0x02,0x03,0x03, - 0x03,0x04,0x05,0x06,0x06,0x04,0x01,0xfe,0xfc,0xfa,0xf8,0xf6, - 0xf4,0xf3,0xf3,0xf3,0xf4,0xf4,0xf6,0xf9,0xfb,0xfd,0xff,0x00, - 0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x04,0x05,0x06, - 0x06,0x05,0x04,0x03,0x00,0xfd,0xf9,0xf6,0xf5,0xf4,0xf4,0xf5, - 0xf8,0xfc,0x01,0x04,0x07,0x09,0x0a,0x0a,0x0a,0x09,0x07,0x06, - 0x07,0x07,0x08,0x08,0x09,0x0a,0x0b,0x0c,0x0b,0x0b,0x0a,0x0b, - 0x0c,0x0d,0x0e,0x0e,0x0d,0x0b,0x08,0x05,0x00,0xfa,0xf3,0xee, - 0xec,0xee,0xf3,0xfa,0x01,0x09,0x11,0x17,0x1c,0x1d,0x19,0x13, - 0x0d,0x06,0x01,0xfc,0xf9,0xf7,0xf7,0xf7,0xf6,0xf5,0xf3,0xf1, - 0xed,0xea,0xe6,0xe5,0xe5,0xe8,0xeb,0xee,0xf0,0xf1,0xf2,0xf3, - 0xf4,0xf4,0xf3,0xf3,0xf6,0xfc,0x03,0x0a,0x10,0x14,0x17,0x1a, - 0x1c,0x1c,0x18,0x11,0x09,0x03,0xff,0xfa,0xf4,0xed,0xe7,0xe6, - 0xe8,0xef,0xf6,0xfc,0x03,0x0b,0x14,0x1d,0x23,0x25,0x23,0x21, - 0x20,0x23,0x26,0x29,0x2b,0x2b,0x2b,0x2d,0x2f,0x2f,0x2b,0x23, - 0x1c,0x18,0x19,0x1c,0x1d,0x1b,0x17,0x11,0x0b,0x04,0xfa,0xec, - 0xde,0xd4,0xd2,0xd8,0xe5,0xf3,0x00,0x0d,0x18,0x23,0x29,0x27, - 0x1e,0x10,0x02,0xf9,0xf5,0xf2,0xf0,0xed,0xeb,0xea,0xe8,0xe5, - 0xde,0xd6,0xce,0xc8,0xc8,0xcb,0xd1,0xd7,0xdb,0xdd,0xde,0xde, - 0xdd,0xda,0xd7,0xd4,0xd6,0xdc,0xe7,0xf4,0x01,0x0b,0x11,0x16, - 0x19,0x19,0x15,0x0c,0x02,0xf9,0xf4,0xf1,0xee,0xeb,0xe9,0xe7, - 0xe8,0xea,0xed,0xf0,0xf3,0xf8,0xff,0x07,0x0e,0x14,0x18,0x1a, - 0x1b,0x1a,0x17,0x13,0x10,0x0e,0x0e,0x0e,0x0f,0x11,0x12,0x14, - 0x16,0x15,0x13,0x10,0x0b,0x07,0x03,0xff,0xfc,0xf8,0xf5,0xf3, - 0xf2,0xf2,0xf2,0xf1,0xf0,0xf1,0xf3,0xf6,0xfa,0xfd,0xff,0x01, - 0x03,0x04,0x04,0x03,0x00,0xfd,0xfa,0xf8,0xf7,0xf7,0xf6,0xf6, - 0xf5,0xf4,0xf3,0xf2,0xef,0xed,0xec,0xec,0xec,0xed,0xee,0xf0, - 0xf2,0xf4,0xf5,0xf6,0xf6,0xf8,0xf9,0xfc,0xff,0x03,0x07,0x0a, - 0x0d,0x0e,0x0f,0x0e,0x0c,0x08,0x04,0x00,0xfc,0xfa,0xf8,0xf7, - 0xf7,0xf7,0xf8,0xf9,0xfb,0xfc,0xfd,0xfd,0xfe,0xff,0x01,0x03, - 0x06,0x08,0x09,0x0b,0x0c,0x0d,0x0c,0x0b,0x09,0x06,0x04,0x03, - 0x03,0x02,0x00,0xff,0xfe,0xfe,0xfd,0xfc,0xf9,0xf8,0xf8,0xfa, - 0xfc,0xff,0x01,0x02,0x04,0x06,0x07,0x06,0x03,0xff,0xfd,0xfc, - 0xfc,0xfd,0xfd,0xfe,0x00,0x04,0x06,0x07,0x06,0x02,0xfe,0xfb, - 0xf8,0xf5,0xf3,0xf0,0xf0,0xf1,0xf5,0xfa,0xfe,0x01,0x03,0x05, - 0x09,0x0c,0x0d,0x0c,0x09,0x05,0x02,0xff,0xfc,0xf8,0xf4,0xf2, - 0xf2,0xf5,0xf8,0xfc,0x00,0x02,0x04,0x06,0x06,0x04,0xff,0xf9, - 0xf4,0xf1,0xf1,0xf3,0xf6,0xfa,0xff,0x05,0x0c,0x11,0x13,0x11, - 0x0e,0x0a,0x07,0x05,0x03,0x02,0x01,0x02,0x03,0x06,0x08,0x09, - 0x08,0x06,0x03,0x02,0x03,0x06,0x09,0x0b,0x0d,0x10,0x14,0x16, - 0x14,0x0f,0x09,0x03,0xfe,0xfa,0xf9,0xf8,0xfa,0xfd,0x04,0x0b, - 0x11,0x14,0x13,0x0f,0x0a,0x05,0xff,0xf8,0xf2,0xee,0xed,0xef, - 0xf2,0xf6,0xf9,0xfb,0xfc,0xfc,0xfb,0xfa,0xf8,0xf6,0xf3,0xf1, - 0xf0,0xf0,0xf0,0xef,0xef,0xef,0xef,0xef,0xf0,0xf3,0xf7,0xfc, - 0x00,0x04,0x07,0x0a,0x0d,0x0f,0x0e,0x0b,0x06,0x02,0xfe,0xfc, - 0xf9,0xf7,0xf6,0xf9,0xfd,0x03,0x08,0x0c,0x0f,0x12,0x15,0x17, - 0x17,0x16,0x16,0x17,0x1a,0x20,0x26,0x2b,0x2e,0x30,0x30,0x2f, - 0x2c,0x27,0x1f,0x18,0x13,0x13,0x15,0x17,0x18,0x16,0x12,0x0d, - 0x06,0xfd,0xf2,0xe7,0xdf,0xdf,0xe5,0xf1,0xfd,0x0a,0x15,0x1d, - 0x22,0x22,0x1c,0x12,0x06,0xfb,0xf3,0xee,0xec,0xec,0xec,0xed, - 0xec,0xea,0xe5,0xde,0xd6,0xcf,0xcb,0xca,0xcd,0xd1,0xd6,0xda, - 0xdd,0xe1,0xe4,0xe4,0xe2,0xdf,0xde,0xe2,0xe9,0xf2,0xfb,0x02, - 0x09,0x0f,0x13,0x14,0x10,0x09,0x00,0xf7,0xf0,0xec,0xe9,0xe8, - 0xe8,0xe9,0xed,0xf3,0xf8,0xfd,0x00,0x02,0x06,0x0a,0x0d,0x0f, - 0x10,0x10,0x12,0x14,0x16,0x16,0x14,0x13,0x12,0x12,0x10,0x0d, - 0x09,0x05,0x03,0x01,0xff,0xfe,0xfd,0xfd,0xfe,0x00,0x02,0x03, - 0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0x00,0x01,0x03,0x05, - 0x07,0x07,0x05,0x03,0x00,0xfe,0xfb,0xf8,0xf5,0xf3,0xf2,0xf1, - 0xf0,0xef,0xec,0xea,0xe8,0xe7,0xe8,0xea,0xed,0xf1,0xf6,0xfc, - 0x02,0x07,0x0a,0x0b,0x0a,0x08,0x05,0x00,0xfb,0xf7,0xf4,0xf2, - 0xf1,0xf1,0xf2,0xf3,0xf6,0xf8,0xfb,0xfd,0xff,0x01,0x02,0x02, - 0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x03,0x05,0x06,0x07,0x08, - 0x09,0x09,0x09,0x08,0x06,0x04,0x03,0x03,0x03,0x03,0x02,0x00, - 0xff,0xfe,0xfe,0xfe,0xfd,0xfc,0xfd,0xff,0x02,0x06,0x08,0x0b, - 0x0c,0x0c,0x0b,0x09,0x07,0x03,0xfe,0xfb,0xf9,0xf8,0xf8,0xf8, - 0xf8,0xf9,0xfa,0xfc,0xfd,0xfd,0xfd,0xfc,0xfc,0xfd,0xfe,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfe,0x02,0x06,0x09, - 0x09,0x08,0x07,0x05,0x01,0xfb,0xf4,0xee,0xea,0xea,0xeb,0xee, - 0xf1,0xf4,0xf9,0xff,0x04,0x07,0x08,0x07,0x07,0x08,0x0a,0x0a, - 0x09,0x07,0x05,0x03,0x01,0xff,0xfd,0xfb,0xf9,0xfa,0xfc,0xff, - 0x03,0x06,0x08,0x08,0x07,0x05,0x04,0x03,0x01,0x00,0x00,0x02, - 0x06,0x0b,0x10,0x13,0x14,0x14,0x15,0x16,0x17,0x16,0x14,0x12, - 0x10,0x0e,0x0b,0x07,0x01,0xfa,0xf4,0xf0,0xef,0xf0,0xf2,0xf7, - 0xfe,0x06,0x0d,0x13,0x15,0x14,0x10,0x0b,0x06,0x00,0xfa,0xf6, - 0xf3,0xf3,0xf4,0xf7,0xf8,0xf9,0xfa,0xfa,0xf9,0xf8,0xf6,0xf3, - 0xf0,0xee,0xeb,0xe8,0xe4,0xe0,0xde,0xde,0xe0,0xe2,0xe6,0xec, - 0xf6,0x02,0x0d,0x15,0x1b,0x20,0x23,0x25,0x22,0x1c,0x12,0x09, - 0x00,0xf9,0xf2,0xec,0xe8,0xe7,0xea,0xf2,0xfb,0x05,0x0e,0x17, - 0x1f,0x26,0x2a,0x2a,0x27,0x21,0x1c,0x1a,0x1a,0x1c,0x1e,0x21, - 0x25,0x29,0x2e,0x31,0x2f,0x2a,0x23,0x1f,0x1d,0x1c,0x1b,0x18, - 0x14,0x10,0x0c,0x06,0xfe,0xf2,0xe6,0xde,0xdc,0xe2,0xed,0xf9, - 0x05,0x11,0x1c,0x25,0x29,0x24,0x18,0x08,0xfa,0xef,0xe8,0xe3, - 0xdf,0xde,0xdf,0xe2,0xe6,0xe7,0xe4,0xdd,0xd7,0xd3,0xd2,0xd3, - 0xd4,0xd5,0xd7,0xdb,0xe0,0xe3,0xe4,0xe2,0xe0,0xdf,0xe1,0xe5, - 0xeb,0xf0,0xf6,0xfc,0x02,0x08,0x0b,0x0b,0x07,0x01,0xfb,0xf6, - 0xf3,0xef,0xec,0xe9,0xe9,0xec,0xf1,0xf6,0xfa,0xfe,0x02,0x08, - 0x0d,0x10,0x12,0x12,0x11,0x11,0x11,0x10,0x0f,0x0f,0x0f,0x10, - 0x12,0x14,0x14,0x13,0x11,0x0f,0x0c,0x0a,0x06,0x01,0xfe,0xfc, - 0xfd,0xfd,0xfd,0xfb,0xfa,0xf9,0xfb,0xfc,0xfc,0xfb,0xfb,0xfd, - 0x00,0x04,0x05,0x05,0x02,0x00,0xfd,0xfb,0xf8,0xf5,0xf1,0xf0, - 0xf1,0xf5,0xf8,0xfa,0xf9,0xf6,0xf4,0xf2,0xf1,0xee,0xeb,0xe8, - 0xe8,0xec,0xf2,0xf9,0xfd,0xff,0x01,0x01,0x02,0x01,0xfe,0xfc, - 0xf9,0xf8,0xf9,0xfc,0xff,0x01,0x02,0x02,0x01,0xff,0xfd,0xfb, - 0xf9,0xf8,0xf7,0xf9,0xfc,0x01,0x05,0x09,0x0a,0x0b,0x0a,0x08, - 0x06,0x04,0x01,0xfe,0xfd,0xfe,0x01,0x04,0x07,0x08,0x08,0x08, - 0x06,0x04,0x01,0xfe,0xfc,0xfb,0xfc,0xfd,0x00,0x03,0x05,0x06, - 0x05,0x03,0x00,0xfd,0xfa,0xf8,0xf7,0xf7,0xf8,0xfa,0xfe,0x01, - 0x04,0x05,0x04,0x03,0x02,0x01,0x01,0x01,0x01,0x02,0x04,0x06, - 0x07,0x06,0x03,0xff,0xfa,0xf6,0xf3,0xf2,0xf1,0xf2,0xf5,0xfa, - 0xff,0x05,0x08,0x08,0x07,0x04,0x01,0xfd,0xfa,0xf7,0xf6,0xf6, - 0xf8,0xfb,0xfe,0x02,0x05,0x06,0x06,0x04,0x03,0x02,0x01,0xff, - 0xfc,0xfb,0xfb,0xfd,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x02,0x03, - 0x03,0x03,0x03,0x04,0x05,0x06,0x06,0x06,0x07,0x08,0x0a,0x0c, - 0x0c,0x0b,0x0b,0x0a,0x0a,0x09,0x08,0x07,0x06,0x06,0x07,0x08, - 0x08,0x08,0x07,0x06,0x04,0x01,0xff,0xfc,0xfa,0xf8,0xf8,0xf9, - 0xfc,0x00,0x03,0x06,0x08,0x0b,0x0d,0x0c,0x09,0x05,0x00,0xfc, - 0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xfa,0xf9,0xf7,0xf4, - 0xf3,0xf3,0xf4,0xf4,0xf4,0xf3,0xf2,0xf3,0xf3,0xf2,0xf1,0xf0, - 0xf2,0xf5,0xfa,0x01,0x07,0x0c,0x10,0x13,0x16,0x17,0x15,0x10, - 0x09,0x01,0xfc,0xf8,0xf5,0xf1,0xef,0xef,0xf3,0xfc,0x06,0x0d, - 0x13,0x17,0x1c,0x20,0x22,0x20,0x1b,0x15,0x12,0x14,0x17,0x1c, - 0x1e,0x21,0x24,0x27,0x2a,0x28,0x22,0x1b,0x14,0x0f,0x0d,0x0d, - 0x0e,0x0d,0x0b,0x0a,0x08,0x05,0xff,0xf5,0xec,0xe6,0xe6,0xeb, - 0xf2,0xfb,0x03,0x0c,0x15,0x1a,0x1a,0x16,0x0e,0x05,0xfe,0xfa, - 0xf7,0xf5,0xf3,0xf2,0xf1,0xef,0xeb,0xe4,0xda,0xd2,0xcc,0xcb, - 0xce,0xd3,0xd9,0xe0,0xe7,0xee,0xf3,0xf5,0xf2,0xec,0xe8,0xe6, - 0xe6,0xe9,0xed,0xf2,0xf8,0xfe,0x04,0x08,0x09,0x08,0x04,0x01, - 0xff,0xfe,0xfc,0xfa,0xf8,0xf7,0xf6,0xf5,0xf3,0xf0,0xef,0xef, - 0xf1,0xf4,0xf8,0xfd,0x03,0x09,0x0e,0x11,0x13,0x15,0x17,0x17, - 0x16,0x14,0x12,0x11,0x0f,0x0d,0x09,0x06,0x03,0x02,0x00,0x00, - 0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xf8,0xf7,0xf6,0xf7,0xf9, - 0xfa,0xfc,0xfe,0xff,0x01,0x02,0x03,0x03,0x04,0x04,0x04,0x04, - 0x03,0x03,0x01,0xff,0xfc,0xfa,0xf8,0xf5,0xf3,0xf1,0xef,0xee, - 0xee,0xed,0xec,0xeb,0xec,0xee,0xf0,0xf3,0xf7,0xfb,0x00,0x04, - 0x07,0x09,0x0a,0x09,0x07,0x05,0x03,0x02,0x01,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfd,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9,0xf9, - 0xfa,0xfb,0xfb,0xfc,0xfc,0xfd,0x00,0x03,0x06,0x08,0x08,0x09, - 0x09,0x08,0x07,0x06,0x04,0x03,0x03,0x03,0x04,0x04,0x04,0x03, - 0x02,0x01,0x00,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe, - 0xff,0x00,0x01,0x02,0x02,0x04,0x05,0x07,0x08,0x07,0x06,0x04, - 0x02,0x00,0xff,0xfc,0xfa,0xf8,0xf8,0xf9,0xfa,0xfb,0xfb,0xfa, - 0xfa,0xf9,0xf8,0xf7,0xf6,0xf4,0xf3,0xf3,0xf4,0xf6,0xf8,0xfb, - 0xfd,0x01,0x04,0x06,0x08,0x09,0x09,0x09,0x08,0x07,0x05,0x04, - 0x03,0x03,0x02,0x02,0x00,0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc, - 0xfe,0xff,0x01,0x03,0x05,0x06,0x06,0x06,0x06,0x06,0x07,0x09, - 0x0a,0x0c,0x0e,0x10,0x11,0x10,0x0f,0x0d,0x0b,0x09,0x08,0x07, - 0x08,0x09,0x0a,0x0b,0x0a,0x07,0x04,0xff,0xfb,0xf8,0xf6,0xf6, - 0xf8,0xfc,0x01,0x05,0x09,0x0b,0x0a,0x08,0x03,0xff,0xfb,0xf8, - 0xf7,0xf8,0xfb,0xff,0x03,0x05,0x05,0x03,0xfe,0xf9,0xf3,0xed, - 0xe8,0xe6,0xe5,0xe6,0xe8,0xea,0xeb,0xeb,0xea,0xea,0xea,0xea, - 0xec,0xf0,0xf7,0x00,0x0a,0x13,0x1a,0x1f,0x21,0x21,0x1e,0x18, - 0x11,0x0a,0x03,0xfe,0xfa,0xf9,0xf9,0xfa,0xfc,0xff,0x03,0x08, - 0x0c,0x0f,0x11,0x12,0x14,0x15,0x17,0x18,0x19,0x1a,0x1c,0x20, - 0x25,0x29,0x2c,0x2d,0x2d,0x2c,0x2c,0x29,0x25,0x20,0x1d,0x1b, - 0x19,0x16,0x10,0x08,0x01,0xf9,0xf1,0xe9,0xe0,0xdc,0xdc,0xe2, - 0xec,0xf8,0x04,0x10,0x1a,0x22,0x27,0x26,0x20,0x17,0x0d,0x04, - 0xfc,0xf5,0xee,0xe8,0xe3,0xde,0xda,0xd6,0xd1,0xcb,0xc6,0xc3, - 0xc3,0xc6,0xcb,0xd2,0xda,0xe1,0xe8,0xef,0xf4,0xf7,0xf8,0xf7, - 0xf6,0xf6,0xf6,0xf7,0xf7,0xf8,0xfa,0xfd,0xff,0xff,0xfe,0xfd, - 0xfa,0xf8,0xf4,0xf0,0xeb,0xe7,0xe5,0xe6,0xe8,0xeb,0xf0,0xf6, - 0xfe,0x06,0x0e,0x15,0x19,0x1b,0x1d,0x1d,0x1e,0x1d,0x1c,0x1b, - 0x19,0x16,0x13,0x0f,0x0a,0x03,0xfb,0xf4,0xee,0xeb,0xea,0xeb, - 0xee,0xf4,0xfb,0x02,0x08,0x0d,0x0f,0x10,0x0f,0x0d,0x0b,0x09, - 0x08,0x07,0x06,0x04,0x03,0x01,0xfe,0xfb,0xf7,0xf3,0xf0,0xed, - 0xec,0xec,0xed,0xee,0xef,0xef,0xf0,0xf1,0xf2,0xf1,0xf1,0xf3, - 0xf5,0xfa,0xfe,0x02,0x05,0x07,0x09,0x0a,0x09,0x06,0x02,0xfd, - 0xfa,0xf8,0xf6,0xf3,0xf0,0xef,0xee,0xee,0xee,0xee,0xef,0xf1, - 0xf4,0xf9,0xfe,0x03,0x08,0x0c,0x10,0x12,0x12,0x12,0x10,0x0d, - 0x0a,0x08,0x05,0x03,0x02,0x00,0xff,0xfe,0xfc,0xfb,0xf9,0xf7, - 0xf6,0xf6,0xf6,0xf7,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0xff,0xff, - 0xff,0x01,0x05,0x09,0x0c,0x10,0x12,0x13,0x11,0x0f,0x0b,0x06, - 0x00,0xf9,0xf5,0xf2,0xf1,0xf2,0xf2,0xf3,0xf4,0xf5,0xf7,0xf9, - 0xfa,0xfc,0xfe,0x02,0x06,0x09,0x0b,0x0b,0x0b,0x0a,0x08,0x05, - 0x00,0xfd,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfc,0xfb, - 0xfa,0xf8,0xf8,0xf9,0xfb,0xfe,0x00,0x02,0x02,0x03,0x04,0x05, - 0x05,0x03,0x02,0x01,0x01,0x03,0x03,0x03,0x01,0x00,0xff,0xfe, - 0xfd,0xfc,0xfb,0xfa,0xfa,0xfa,0xfc,0xfe,0x00,0x01,0x01,0x03, - 0x06,0x0a,0x0e,0x10,0x10,0x11,0x12,0x13,0x13,0x10,0x0b,0x07, - 0x05,0x04,0x03,0x03,0x02,0x00,0x00,0x01,0x02,0x02,0x01,0x00, - 0x00,0x02,0x05,0x07,0x08,0x07,0x05,0x03,0x01,0xff,0xfb,0xf7, - 0xf4,0xf4,0xf7,0xfc,0x01,0x04,0x06,0x07,0x07,0x07,0x04,0xfe, - 0xf8,0xf3,0xf0,0xef,0xee,0xec,0xea,0xe9,0xea,0xec,0xed,0xee, - 0xef,0xf1,0xf6,0xfd,0x03,0x08,0x0c,0x0e,0x10,0x10,0x10,0x0f, - 0x0c,0x08,0x04,0x02,0x02,0x02,0x01,0xfe,0xfc,0xfc,0xff,0x03, - 0x07,0x0a,0x0e,0x12,0x16,0x19,0x19,0x17,0x12,0x0c,0x09,0x08, - 0x0a,0x0d,0x11,0x16,0x1c,0x24,0x29,0x2d,0x2c,0x29,0x25,0x22, - 0x1f,0x1d,0x1a,0x16,0x11,0x0c,0x08,0x02,0xfa,0xf0,0xe7,0xe0, - 0xe0,0xe4,0xeb,0xf4,0xfd,0x08,0x13,0x1c,0x21,0x20,0x1a,0x12, - 0x0a,0x02,0xfc,0xf6,0xf0,0xeb,0xe8,0xe6,0xe4,0xe2,0xde,0xd9, - 0xd5,0xd3,0xd5,0xd8,0xdb,0xde,0xe0,0xe4,0xe8,0xec,0xed,0xeb, - 0xe9,0xe8,0xe9,0xec,0xef,0xf1,0xf3,0xf7,0xfb,0x00,0x04,0x05, - 0x04,0x03,0x03,0x03,0x02,0xff,0xfb,0xf7,0xf3,0xf1,0xf0,0xef, - 0xee,0xee,0xf0,0xf4,0xf9,0xfe,0x03,0x07,0x0b,0x0e,0x11,0x13, - 0x15,0x15,0x15,0x15,0x13,0x12,0x10,0x0d,0x0b,0x08,0x06,0x05, - 0x04,0x04,0x03,0x02,0x02,0x01,0xff,0xfd,0xfa,0xf7,0xf5,0xf4, - 0xf5,0xf6,0xf7,0xf9,0xfb,0xfe,0x01,0x02,0x03,0x03,0x02,0x03, - 0x03,0x03,0x03,0x03,0x03,0x02,0x00,0xfe,0xfa,0xf6,0xf2,0xee, - 0xec,0xea,0xeb,0xec,0xee,0xf1,0xf3,0xf5,0xf7,0xf8,0xf9,0xf9, - 0xfa,0xfc,0xfe,0x02,0x04,0x06,0x07,0x07,0x06,0x05,0x02,0xfd, - 0xfa,0xf7,0xf5,0xf4,0xf4,0xf5,0xf7,0xf9,0xfb,0xfe,0x00,0x01, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x03,0x05,0x06,0x06, - 0x06,0x05,0x05,0x04,0x03,0x02,0x01,0xff,0xfe,0xff,0xff,0x00, - 0xff,0xfe,0xfd,0xfd,0xfe,0xfe,0xff,0x00,0x01,0x03,0x05,0x07, - 0x07,0x06,0x05,0x03,0x01,0xff,0xfe,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00,0x01,0x02,0x02, - 0x02,0x02,0x01,0x00,0xff,0xfe,0xfc,0xfb,0xfa,0xf8,0xf7,0xf6, - 0xf6,0xf5,0xf5,0xf6,0xf7,0xf9,0xfb,0xfc,0xfe,0x00,0x02,0x03, - 0x03,0x04,0x05,0x05,0x04,0x04,0x04,0x04,0x05,0x05,0x04,0x04, - 0x04,0x03,0x03,0x03,0x01,0xff,0xfc,0xfb,0xfc,0xfd,0xfd,0xfd, - 0xff,0x02,0x05,0x07,0x09,0x09,0x0a,0x0c,0x0e,0x0f,0x10,0x10, - 0x10,0x11,0x12,0x11,0x0f,0x0c,0x09,0x07,0x06,0x05,0x02,0x00, - 0xff,0x00,0x01,0x02,0x01,0x00,0xff,0x00,0x02,0x02,0x02,0x00, - 0xfe,0xfd,0xfd,0xfe,0xfd,0xfc,0xfc,0xfd,0x00,0x03,0x04,0x03, - 0x01,0xff,0xfd,0xfa,0xf5,0xef,0xeb,0xe8,0xe7,0xe7,0xe6,0xe6, - 0xe7,0xea,0xec,0xee,0xf1,0xf3,0xf7,0xfc,0x01,0x05,0x09,0x0c, - 0x0e,0x0f,0x0f,0x0f,0x0d,0x0a,0x08,0x07,0x08,0x08,0x08,0x07, - 0x08,0x09,0x0a,0x0b,0x0c,0x0c,0x0d,0x0d,0x0e,0x0f,0x0f,0x0d, - 0x0c,0x0c,0x0d,0x10,0x14,0x1a,0x20,0x28,0x2f,0x36,0x3a,0x3b, - 0x39,0x34,0x2d,0x26,0x1f,0x17,0x10,0x09,0x05,0x01,0xfd,0xf8, - 0xf3,0xee,0xea,0xe9,0xe9,0xec,0xf0,0xf7,0xff,0x08,0x10,0x15, - 0x17,0x15,0x11,0x0c,0x05,0xfe,0xf9,0xf4,0xf0,0xed,0xea,0xe9, - 0xe7,0xe3,0xde,0xd8,0xd4,0xd1,0xcf,0xcf,0xcf,0xd2,0xd7,0xdc, - 0xe1,0xe5,0xe7,0xea,0xec,0xee,0xf0,0xf1,0xf3,0xf6,0xf9,0xfd, - 0x00,0x01,0x02,0x03,0x02,0x01,0xff,0xfb,0xf6,0xf2,0xee,0xea, - 0xe6,0xe4,0xe4,0xe6,0xea,0xef,0xf5,0xfb,0x02,0x07,0x0c,0x0f, - 0x12,0x14,0x15,0x17,0x18,0x1b,0x1d,0x1d,0x1d,0x1b,0x18,0x13, - 0x0e,0x07,0x01,0xfd,0xfa,0xfa,0xfa,0xfb,0xfd,0x00,0x02,0x02, - 0x01,0xff,0xfd,0xfb,0xfa,0xf9,0xfa,0xfb,0xfe,0x01,0x04,0x06, - 0x06,0x05,0x04,0x02,0x00,0xff,0xfd,0xfc,0xfa,0xf9,0xf7,0xf4, - 0xf1,0xee,0xea,0xe7,0xe4,0xe4,0xe5,0xe8,0xec,0xf1,0xf6,0xfb, - 0xff,0x02,0x04,0x05,0x04,0x04,0x03,0x04,0x04,0x04,0x03,0x02, - 0x00,0xfe,0xfb,0xf7,0xf4,0xf1,0xef,0xf0,0xf3,0xf7,0xfc,0x00, - 0x04,0x07,0x09,0x09,0x07,0x05,0x02,0x00,0xfe,0xfd,0xfd,0xfe, - 0xff,0x00,0x01,0x02,0x03,0x04,0x04,0x02,0x01,0x00,0x00,0x01, - 0x01,0x01,0x00,0x01,0x02,0x02,0x02,0x00,0xff,0xfe,0xfd,0xfe, - 0xff,0x00,0x02,0x04,0x06,0x08,0x09,0x09,0x08,0x06,0x02,0xff, - 0xfc,0xfa,0xf9,0xf8,0xf9,0xfb,0xfd,0xff,0x01,0x02,0x03,0x02, - 0x01,0x00,0xff,0xff,0xff,0x00,0x01,0x03,0x04,0x05,0x04,0x02, - 0x00,0xfc,0xf8,0xf4,0xf1,0xf0,0xf1,0xf2,0xf5,0xf8,0xfb,0xfd, - 0xff,0x00,0xff,0xfd,0xfa,0xf9,0xf8,0xf9,0xfa,0xfc,0xff,0x02, - 0x05,0x08,0x09,0x09,0x09,0x08,0x07,0x06,0x04,0x03,0x02,0x02, - 0x02,0x02,0x01,0x00,0xfe,0xfd,0xfc,0xfc,0xfc,0xfe,0x00,0x04, - 0x08,0x0d,0x11,0x15,0x17,0x17,0x16,0x14,0x11,0x0e,0x0b,0x07, - 0x05,0x04,0x04,0x04,0x04,0x04,0x03,0x02,0x01,0xff,0xfd,0xfb, - 0xfa,0xfa,0xfa,0xfc,0xfd,0xfe,0xff,0xff,0xff,0x00,0x00,0x01, - 0x03,0x04,0x07,0x09,0x0a,0x0b,0x0b,0x08,0x04,0xfe,0xf7,0xf1, - 0xec,0xe8,0xe5,0xe4,0xe3,0xe4,0xe6,0xe9,0xec,0xee,0xf0,0xf2, - 0xf5,0xfa,0xff,0x04,0x07,0x0a,0x0c,0x0e,0x0f,0x0f,0x0e,0x0c, - 0x09,0x07,0x06,0x04,0x03,0x01,0xfe,0xfd,0xfe,0x00,0x03,0x06, - 0x08,0x0b,0x0f,0x11,0x13,0x12,0x10,0x0e,0x0e,0x10,0x14,0x19, - 0x1f,0x26,0x2c,0x31,0x34,0x34,0x30,0x29,0x21,0x18,0x12,0x0e, - 0x0a,0x07,0x05,0x03,0x02,0x01,0xfd,0xf8,0xf2,0xee,0xed,0xef, - 0xf3,0xf9,0x00,0x08,0x10,0x17,0x1b,0x1c,0x18,0x12,0x0b,0x04, - 0xfd,0xf7,0xf1,0xed,0xe9,0xe6,0xe4,0xe1,0xde,0xda,0xd6,0xd3, - 0xd2,0xd2,0xd5,0xd8,0xdd,0xe2,0xe7,0xec,0xf0,0xf3,0xf5,0xf5, - 0xf5,0xf4,0xf4,0xf5,0xf5,0xf5,0xf6,0xf7,0xf8,0xf9,0xf9,0xf9, - 0xf8,0xf7,0xf6,0xf4,0xf1,0xef,0xee,0xed,0xed,0xee,0xf0,0xf4, - 0xf8,0xfe,0x03,0x08,0x0c,0x10,0x13,0x15,0x16,0x16,0x17,0x17, - 0x18,0x18,0x16,0x14,0x11,0x0d,0x08,0x03,0xfd,0xf8,0xf4,0xf4, - 0xf5,0xf7,0xfa,0xfd,0x01,0x05,0x08,0x09,0x09,0x07,0x07,0x06, - 0x06,0x06,0x04,0x02,0x00,0xff,0xfd,0xfa,0xf6,0xf3,0xf0,0xef, - 0xef,0xef,0xf0,0xf1,0xf3,0xf5,0xf7,0xf8,0xf9,0xfa,0xfa,0xfa, - 0xf9,0xf9,0xf8,0xf7,0xf6,0xf6,0xf7,0xf8,0xf9,0xfb,0xfd,0xff, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfe,0xff,0xff, - 0xfe,0xfd,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfe,0x01,0x04, - 0x05,0x04,0x03,0x03,0x04,0x04,0x03,0x02,0x01,0x02,0x04,0x06, - 0x07,0x07,0x06,0x05,0x05,0x06,0x05,0x03,0x00,0xfe,0xfd,0xfe, - 0xfe,0xfc,0xfb,0xf9,0xf9,0xfb,0xfc,0xfd,0xfd,0xfd,0xff,0x01, - 0x03,0x04,0x04,0x03,0x02,0x02,0x02,0x01,0x00,0xfd,0xfa,0xf7, - 0xf6,0xf5,0xf4,0xf4,0xf4,0xf5,0xf8,0xfc,0x00,0x03,0x04,0x05, - 0x05,0x05,0x04,0x03,0x02,0x00,0xff,0x00,0x01,0x02,0x03,0x02, - 0x01,0x00,0x00,0xfe,0xfd,0xfb,0xfa,0xf9,0xfa,0xfb,0xfb,0xfc, - 0xfd,0xff,0x00,0x02,0x04,0x05,0x06,0x08,0x09,0x0b,0x0c,0x0c, - 0x0b,0x0a,0x08,0x05,0x02,0xff,0xfc,0xfa,0xf7,0xf5,0xf5,0xf6, - 0xf8,0xfb,0xfe,0x02,0x05,0x0a,0x0f,0x12,0x13,0x12,0x11,0x10, - 0x0f,0x0c,0x09,0x07,0x05,0x04,0x04,0x04,0x03,0x03,0x02,0x01, - 0x01,0x00,0xfe,0xfc,0xfb,0xfa,0xfb,0xfd,0xfe,0xff,0x00,0x02, - 0x03,0x03,0x03,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x05,0x05, - 0x05,0x04,0x02,0x00,0xfc,0xf8,0xf4,0xf1,0xee,0xed,0xec,0xeb, - 0xeb,0xeb,0xed,0xef,0xf2,0xf5,0xf8,0xfc,0x01,0x05,0x0a,0x0e, - 0x10,0x10,0x10,0x0f,0x0e,0x0c,0x0a,0x07,0x03,0x01,0xff,0xfe, - 0xfd,0xfb,0xfa,0xfb,0xfd,0x02,0x07,0x0c,0x10,0x14,0x18,0x1b, - 0x1d,0x1c,0x19,0x16,0x15,0x15,0x17,0x1a,0x1e,0x21,0x24,0x28, - 0x2a,0x2a,0x28,0x24,0x1f,0x1c,0x19,0x18,0x15,0x11,0x0c,0x07, - 0x03,0xfd,0xf6,0xee,0xe9,0xe7,0xea,0xf0,0xf9,0x02,0x0a,0x12, - 0x18,0x1b,0x1a,0x16,0x0e,0x06,0xfe,0xf8,0xf3,0xef,0xec,0xe8, - 0xe6,0xe4,0xe1,0xde,0xdb,0xd7,0xd5,0xd4,0xd5,0xd8,0xdd,0xe1, - 0xe5,0xe9,0xed,0xef,0xf0,0xf0,0xee,0xeb,0xe8,0xe6,0xe5,0xe6, - 0xe6,0xe7,0xea,0xee,0xf4,0xf9,0xfd,0xfe,0xff,0x00,0x00,0xff, - 0xfd,0xfa,0xf7,0xf6,0xf6,0xf7,0xf8,0xf9,0xfa,0xfc,0xff,0x01, - 0x04,0x05,0x07,0x0a,0x0f,0x13,0x17,0x1a,0x1b,0x1b,0x1a,0x17, - 0x11,0x0a,0x03,0xfc,0xf8,0xf4,0xf3,0xf3,0xf5,0xf9,0xfc,0xff, - 0x02,0x03,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x04,0x05, - 0x04,0x02,0xff,0xfc,0xf9,0xf6,0xf4,0xf3,0xf2,0xf3,0xf6,0xf9, - 0xfb,0xfd,0xfd,0xfc,0xfb,0xfa,0xf8,0xf6,0xf3,0xf1,0xf2,0xf3, - 0xf5,0xf6,0xf6,0xf7,0xf8,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfc, - 0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x01,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0x00,0x01,0x02,0x04,0x04,0x03,0x02,0x01, - 0x00,0x00,0x00,0x00,0x01,0x03,0x05,0x07,0x07,0x07,0x05,0x04, - 0x02,0xff,0xfd,0xfb,0xfa,0xfa,0xfc,0xfd,0xff,0x00,0x01,0x02, - 0x03,0x04,0x04,0x03,0x03,0x03,0x04,0x04,0x03,0x01,0xff,0xfe, - 0xfc,0xfa,0xf9,0xf8,0xf8,0xf8,0xf9,0xfb,0xfe,0xff,0x00,0x01, - 0x02,0x03,0x03,0x03,0x02,0x01,0x01,0x01,0x00,0xfe,0xfc,0xfa, - 0xf9,0xf8,0xf9,0xf9,0xf9,0xfa,0xfc,0xfe,0x00,0x02,0x02,0x02, - 0x03,0x04,0x04,0x04,0x03,0x02,0x01,0x00,0xff,0xfe,0xfc,0xfb, - 0xfa,0xfa,0xfb,0xfd,0xff,0x00,0x02,0x04,0x06,0x07,0x09,0x0a, - 0x0b,0x0c,0x0e,0x0f,0x10,0x10,0x0f,0x0d,0x0a,0x07,0x05,0x04, - 0x03,0x02,0x02,0x04,0x06,0x08,0x09,0x08,0x05,0x02,0x00,0xff, - 0xfd,0xfc,0xfc,0xfd,0xff,0x02,0x04,0x04,0x04,0x03,0x01,0x00, - 0x00,0x00,0x00,0x01,0x03,0x05,0x06,0x06,0x04,0x00,0xfb,0xf6, - 0xf0,0xec,0xe8,0xe6,0xe6,0xe8,0xeb,0xee,0xf2,0xf5,0xf7,0xf8, - 0xf9,0xf9,0xfa,0xfb,0xfe,0x01,0x05,0x08,0x0b,0x0d,0x0e,0x0e, - 0x0b,0x07,0x04,0x01,0xff,0xfe,0xfd,0xfe,0x00,0x03,0x06,0x08, - 0x0a,0x0b,0x0c,0x0d,0x0d,0x0d,0x0e,0x0e,0x10,0x12,0x14,0x17, - 0x1b,0x1f,0x22,0x25,0x26,0x26,0x25,0x23,0x21,0x1d,0x1a,0x17, - 0x15,0x14,0x14,0x14,0x12,0x0f,0x0b,0x06,0xff,0xf8,0xf1,0xed, - 0xec,0xee,0xf4,0xfc,0x03,0x0a,0x10,0x14,0x15,0x12,0x0c,0x04, - 0xff,0xfb,0xf8,0xf6,0xf4,0xf2,0xef,0xec,0xe8,0xe2,0xdb,0xd4, - 0xd0,0xce,0xd0,0xd4,0xda,0xe1,0xe7,0xec,0xf1,0xf4,0xf5,0xf4, - 0xf2,0xef,0xee,0xef,0xf1,0xf3,0xf4,0xf5,0xf6,0xf8,0xf9,0xf9, - 0xf7,0xf5,0xf4,0xf4,0xf5,0xf6,0xf6,0xf5,0xf4,0xf5,0xf6,0xf7, - 0xf8,0xf9,0xfb,0xfe,0x02,0x07,0x0a,0x0c,0x0e,0x0f,0x10,0x11, - 0x11,0x11,0x10,0x0f,0x0d,0x0c,0x09,0x06,0x02,0xfe,0xfa,0xf8, - 0xf8,0xf9,0xfb,0xfd,0x00,0x03,0x06,0x08,0x08,0x07,0x06,0x05, - 0x05,0x06,0x06,0x07,0x07,0x08,0x07,0x05,0x02,0xfe,0xfa,0xf5, - 0xf2,0xf0,0xee,0xee,0xef,0xf0,0xf1,0xf3,0xf4,0xf5,0xf5,0xf6, - 0xf6,0xf7,0xf8,0xfa,0xfb,0xfc,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x01,0x00,0x00,0x00,0xfe,0xfc,0xfa,0xf8,0xf6,0xf5,0xf5,0xf6, - 0xf7,0xf8,0xfa,0xfc,0xff,0x00,0x02,0x03,0x05,0x06,0x07,0x08, - 0x09,0x09,0x08,0x07,0x04,0x02,0xff,0xfd,0xfc,0xfb,0xfc,0xfd, - 0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfa,0xf9,0xf9,0xfb,0xfe, - 0x00,0x03,0x05,0x07,0x09,0x0a,0x09,0x06,0x04,0x02,0x01,0xff, - 0xfe,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfd,0xfe,0xff,0x01,0x03,0x04,0x04,0x03,0x02,0x01, - 0x00,0xfe,0xfc,0xfa,0xf9,0xfa,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0xff,0xfe,0xfe, - 0xff,0xff,0x00,0x00,0x00,0x01,0x02,0x02,0x03,0x03,0x01,0x00, - 0xfe,0xfe,0xfd,0xfe,0xfd,0xfd,0xfe,0x00,0x02,0x03,0x05,0x06, - 0x06,0x08,0x0a,0x0c,0x0d,0x0e,0x0f,0x0f,0x0f,0x0e,0x0c,0x0a, - 0x06,0x03,0x00,0xff,0xff,0xff,0x00,0x03,0x06,0x0a,0x0d,0x10, - 0x10,0x10,0x0d,0x0a,0x07,0x03,0xff,0xfb,0xf9,0xf8,0xf8,0xf9, - 0xfa,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfe,0x00,0x02,0x04, - 0x07,0x08,0x07,0x05,0x01,0xfc,0xf8,0xf3,0xee,0xeb,0xe8,0xe8, - 0xe9,0xec,0xee,0xf1,0xf2,0xf4,0xf5,0xf6,0xf8,0xfa,0xfd,0x01, - 0x04,0x08,0x0b,0x0d,0x0e,0x0d,0x0b,0x08,0x05,0x02,0x01,0x01, - 0x02,0x03,0x04,0x06,0x08,0x0a,0x0b,0x0c,0x0c,0x0c,0x0d,0x0f, - 0x11,0x13,0x14,0x16,0x17,0x19,0x1c,0x1e,0x20,0x22,0x24,0x27, - 0x29,0x2b,0x2b,0x29,0x26,0x23,0x21,0x1d,0x19,0x13,0x0c,0x06, - 0x00,0xfa,0xf3,0xed,0xe8,0xe6,0xe7,0xeb,0xf2,0xf8,0xff,0x06, - 0x0c,0x12,0x15,0x15,0x11,0x0d,0x09,0x05,0x02,0xfd,0xf6,0xf0, - 0xea,0xe4,0xdf,0xd9,0xd3,0xcf,0xcd,0xce,0xd2,0xd7,0xdc,0xe1, - 0xe6,0xea,0xed,0xee,0xee,0xec,0xeb,0xea,0xea,0xeb,0xed,0xee, - 0xf0,0xf2,0xf3,0xf5,0xf6,0xf7,0xf8,0xf9,0xfc,0xff,0x02,0x03, - 0x03,0x02,0x01,0xfe,0xfa,0xf6,0xf3,0xf0,0xf0,0xf1,0xf5,0xf9, - 0xfd,0x02,0x06,0x0b,0x0f,0x12,0x13,0x14,0x15,0x16,0x17,0x17, - 0x15,0x13,0x10,0x0c,0x08,0x05,0x01,0xfd,0xf9,0xf7,0xf7,0xf8, - 0xf9,0xfa,0xfa,0xfc,0xfe,0x01,0x03,0x04,0x03,0x02,0x02,0x03, - 0x02,0x00,0xfd,0xfb,0xfb,0xfc,0xfb,0xfa,0xf9,0xf8,0xf8,0xf7, - 0xf6,0xf5,0xf3,0xf2,0xf2,0xf3,0xf5,0xf5,0xf5,0xf5,0xf5,0xf6, - 0xf6,0xf5,0xf3,0xf3,0xf4,0xf7,0xfa,0xfd,0xff,0x01,0x02,0x04, - 0x05,0x05,0x03,0x01,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfb,0xfa,0xfb,0xfe,0x01,0x03,0x03,0x04,0x04, - 0x06,0x07,0x07,0x05,0x03,0x02,0x01,0x01,0x01,0x00,0xff,0xff, - 0xff,0x00,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xff,0xfe,0xfe, - 0xfd,0xff,0x00,0x02,0x03,0x03,0x02,0x02,0x03,0x03,0x02,0x02, - 0x01,0x02,0x02,0x03,0x02,0x00,0xff,0xfd,0xfc,0xfa,0xf9,0xf9, - 0xf9,0xfa,0xfc,0xfe,0x00,0x02,0x03,0x03,0x03,0x03,0x02,0x00, - 0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfc,0xfa, - 0xf7,0xf6,0xf5,0xf5,0xf6,0xf8,0xfa,0xfd,0x01,0x03,0x06,0x06, - 0x06,0x06,0x05,0x05,0x06,0x06,0x06,0x07,0x08,0x08,0x07,0x05, - 0x02,0xff,0xfd,0xfa,0xf9,0xf8,0xf9,0xfa,0xfc,0xfe,0x00,0x01, - 0x02,0x02,0x02,0x02,0x03,0x05,0x08,0x0a,0x0c,0x0f,0x11,0x12, - 0x13,0x11,0x0f,0x0c,0x0a,0x08,0x07,0x05,0x03,0x01,0xfe,0xfc, - 0xfb,0xfa,0xf9,0xf8,0xf8,0xfa,0xfe,0x01,0x04,0x05,0x06,0x06, - 0x07,0x07,0x06,0x06,0x06,0x07,0x08,0x09,0x08,0x06,0x01,0xfb, - 0xf5,0xef,0xea,0xe7,0xe5,0xe5,0xe7,0xeb,0xef,0xf3,0xf5,0xf5, - 0xf5,0xf4,0xf4,0xf5,0xf8,0xfb,0x00,0x05,0x09,0x0d,0x10,0x10, - 0x0e,0x0b,0x07,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0x00,0x02,0x06,0x09,0x0d,0x10,0x13,0x16,0x19, - 0x1b,0x1d,0x1f,0x21,0x23,0x26,0x28,0x28,0x27,0x25,0x21,0x1d, - 0x19,0x15,0x12,0x10,0x0e,0x0b,0x09,0x06,0x03,0xfe,0xf9,0xf3, - 0xf0,0xee,0xf0,0xf3,0xf8,0xfe,0x05,0x0b,0x10,0x13,0x13,0x12, - 0x0f,0x0c,0x0a,0x07,0x04,0x00,0xfc,0xf7,0xf2,0xec,0xe4,0xdd, - 0xd6,0xd1,0xce,0xcd,0xce,0xd0,0xd3,0xd8,0xdd,0xe2,0xe7,0xeb, - 0xf0,0xf4,0xf9,0xfc,0xff,0x00,0x00,0xff,0xfd,0xfa,0xf7,0xf5, - 0xf3,0xf2,0xf3,0xf4,0xf5,0xf6,0xf6,0xf5,0xf4,0xf2,0xf1,0xf1, - 0xf2,0xf4,0xf6,0xf9,0xfd,0x01,0x04,0x05,0x06,0x07,0x08,0x0a, - 0x0c,0x0f,0x12,0x15,0x18,0x1a,0x1a,0x19,0x15,0x11,0x0c,0x06, - 0x01,0xfd,0xfa,0xf8,0xf7,0xf6,0xf6,0xf6,0xf7,0xf9,0xfa,0xfb, - 0xfd,0x00,0x03,0x06,0x09,0x0b,0x0b,0x0b,0x0a,0x08,0x06,0x03, - 0x00,0xfc,0xf8,0xf6,0xf4,0xf2,0xf1,0xf0,0xf0,0xf1,0xf2,0xf3, - 0xf5,0xf6,0xf6,0xf6,0xf6,0xf5,0xf5,0xf6,0xf6,0xf8,0xfa,0xfc, - 0xff,0x01,0x03,0x04,0x03,0x02,0x01,0xff,0xfe,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfa,0xf9,0xf8,0xf6,0xf5,0xf4,0xf5,0xf7,0xfa,0xfd, - 0x01,0x05,0x08,0x0a,0x0b,0x0b,0x0a,0x08,0x06,0x04,0x03,0x02, - 0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0xff,0xff, - 0xff,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xff,0x00,0x00,0x00,0x01,0x03,0x05,0x07,0x08,0x08,0x08, - 0x06,0x04,0x01,0xfc,0xf8,0xf5,0xf3,0xf3,0xf3,0xf5,0xf8,0xfc, - 0x00,0x02,0x04,0x04,0x03,0x02,0x01,0x01,0x01,0x01,0x02,0x03, - 0x04,0x04,0x03,0x01,0xfe,0xfb,0xf8,0xf6,0xf5,0xf5,0xf6,0xf8, - 0xfc,0x00,0x04,0x08,0x0a,0x0a,0x0a,0x09,0x07,0x05,0x03,0x01, - 0x00,0xff,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfb,0xf9, - 0xf8,0xf8,0xf9,0xfc,0xfe,0x00,0x02,0x04,0x06,0x08,0x09,0x09, - 0x08,0x09,0x0a,0x0b,0x0d,0x0e,0x0f,0x0f,0x10,0x10,0x0f,0x0e, - 0x0b,0x09,0x06,0x05,0x03,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfd, - 0xfc,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x00,0x01, - 0x03,0x04,0x05,0x05,0x06,0x06,0x06,0x04,0x02,0xff,0xfc,0xf9, - 0xf6,0xf2,0xef,0xed,0xec,0xeb,0xea,0xe9,0xe9,0xea,0xec,0xee, - 0xf2,0xf5,0xfa,0xff,0x05,0x09,0x0d,0x0f,0x10,0x11,0x11,0x10, - 0x0f,0x0e,0x0d,0x0c,0x0b,0x0a,0x08,0x06,0x03,0x01,0xff,0xfe, - 0xfe,0xfe,0x00,0x02,0x06,0x0a,0x0e,0x11,0x13,0x16,0x18,0x1a, - 0x1c,0x1e,0x21,0x24,0x27,0x28,0x29,0x29,0x27,0x24,0x21,0x1c, - 0x17,0x13,0x0f,0x0b,0x07,0x03,0x00,0xfc,0xf9,0xf5,0xf2,0xf0, - 0xf1,0xf4,0xf8,0xfd,0x03,0x09,0x0e,0x11,0x12,0x11,0x0d,0x09, - 0x04,0x00,0xfb,0xf8,0xf4,0xf0,0xec,0xe8,0xe3,0xde,0xd8,0xd4, - 0xd1,0xcf,0xd0,0xd4,0xd9,0xdf,0xe5,0xeb,0xef,0xf3,0xf5,0xf6, - 0xf5,0xf5,0xf5,0xf6,0xf7,0xf8,0xf8,0xf9,0xf9,0xf9,0xf8,0xf7, - 0xf5,0xf4,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3,0xf3, - 0xf5,0xf7,0xfa,0xfd,0x01,0x05,0x08,0x0a,0x0d,0x0f,0x10,0x10, - 0x10,0x10,0x11,0x11,0x10,0x0e,0x0b,0x08,0x04,0x00,0xfd,0xfa, - 0xf7,0xf6,0xf6,0xf7,0xfa,0xfc,0xfe,0x00,0x01,0x03,0x04,0x05, - 0x06,0x06,0x06,0x07,0x08,0x09,0x09,0x08,0x06,0x04,0x02,0xff, - 0xfc,0xf8,0xf4,0xf2,0xf1,0xf0,0xf1,0xf1,0xf2,0xf3,0xf4,0xf6, - 0xf7,0xf7,0xf7,0xf6,0xf7,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe,0x00, - 0x01,0x01,0x00,0xfe,0xfc,0xfa,0xfa,0xf9,0xf9,0xf8,0xf8,0xf9, - 0xfb,0xfd,0xfd,0xfd,0xfb,0xfb,0xfc,0xfd,0xfd,0xfc,0xfc,0xfe, - 0x00,0x03,0x05,0x05,0x05,0x06,0x07,0x07,0x06,0x04,0x03,0x02, - 0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfa,0xf9,0xf8,0xf8, - 0xf8,0xf9,0xfb,0xfd,0xff,0x02,0x04,0x07,0x09,0x0a,0x0a,0x0a, - 0x09,0x08,0x07,0x06,0x04,0x03,0x02,0x01,0x01,0xff,0xfe,0xfc, - 0xfa,0xf8,0xf7,0xf6,0xf5,0xf5,0xf6,0xf8,0xfa,0xfb,0xfe,0x00, - 0x02,0x03,0x04,0x05,0x06,0x06,0x07,0x06,0x05,0x05,0x05,0x04, - 0x03,0x02,0x00,0xfe,0xfd,0xfb,0xfa,0xf9,0xf8,0xf7,0xf7,0xf8, - 0xf9,0xfb,0xfd,0xfe,0xff,0x00,0x01,0x02,0x02,0x01,0x01,0x00, - 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x06,0x07,0x06,0x06,0x04, - 0x02,0x01,0x01,0x02,0x02,0x03,0x04,0x05,0x06,0x07,0x06,0x04, - 0x01,0xff,0xfe,0xfe,0xfe,0xff,0x01,0x04,0x07,0x0a,0x0c,0x0e, - 0x0e,0x0c,0x0b,0x0a,0x09,0x07,0x05,0x02,0x00,0xfe,0xfd,0xfa, - 0xf7,0xf5,0xf2,0xf2,0xf2,0xf3,0xf5,0xf7,0xfa,0xfd,0x00,0x03, - 0x04,0x05,0x05,0x05,0x05,0x04,0x03,0x01,0x00,0xfe,0xfc,0xfa, - 0xf8,0xf5,0xf4,0xf3,0xf3,0xf3,0xf4,0xf5,0xf7,0xf9,0xfb,0xfc, - 0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x02,0x04,0x07,0x09,0x0a, - 0x0b,0x0b,0x0b,0x0d,0x0d,0x0d,0x0c,0x0b,0x0b,0x0b,0x0b,0x0a, - 0x09,0x08,0x08,0x07,0x07,0x07,0x06,0x06,0x06,0x07,0x09,0x0c, - 0x10,0x13,0x16,0x1a,0x1e,0x21,0x22,0x21,0x1f,0x1c,0x18,0x14, - 0x10,0x0b,0x07,0x04,0x02,0x00,0xff,0xfe,0xfc,0xfa,0xf9,0xf9, - 0xfa,0xfb,0xfe,0x01,0x05,0x09,0x0c,0x0e,0x0f,0x0e,0x0b,0x07, - 0x02,0xfc,0xf7,0xf2,0xed,0xe9,0xe7,0xe5,0xe5,0xe5,0xe6,0xe7, - 0xe7,0xe8,0xe9,0xea,0xec,0xed,0xef,0xf2,0xf4,0xf7,0xf9,0xfa, - 0xfb,0xfa,0xf8,0xf6,0xf4,0xf2,0xf0,0xee,0xed,0xed,0xed,0xee, - 0xf0,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf9,0xfa,0xfc,0xfe, - 0x00,0x02,0x04,0x05,0x06,0x06,0x05,0x03,0x02,0x00,0xff,0xff, - 0xfe,0xff,0x00,0x01,0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x04,0x05,0x05,0x06,0x06,0x07,0x07,0x07,0x06,0x05, - 0x04,0x03,0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x01,0x02,0x01, - 0x00,0xfe,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfd, - 0xfd,0xfd,0xfc,0xfb,0xfb,0xfa,0xfa,0xfa,0xfb,0xfd,0xfe,0xff, - 0xff,0xff,0xff,0xfe,0xfc,0xfb,0xf9,0xf8,0xf8,0xf8,0xf8,0xf9, - 0xfa,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x02, - 0x04,0x04,0x03,0x02,0x01,0xff,0xfd,0xfc,0xfb,0xfa,0xfb,0xfc, - 0xfe,0xff,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x02, - 0x02,0x03,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd, - 0xff,0x01,0x02,0x02,0x02,0x03,0x03,0x02,0x01,0x00,0xff,0x00, - 0x00,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfc,0xfb,0xfb,0xfa,0xfb, - 0xfc,0xfe,0xff,0x00,0x00,0xff,0x00,0x00,0x01,0x00,0x00,0xff, - 0x00,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xfe,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0x03,0x05,0x05, - 0x06,0x06,0x07,0x07,0x05,0x04,0x03,0x02,0x02,0x03,0x03,0x04, - 0x05,0x06,0x06,0x06,0x05,0x05,0x03,0x02,0x01,0x00,0x00,0x01, - 0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x01, - 0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0xff,0xfe,0xfd,0xfc, - 0xfb,0xfb,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe,0xfd,0xfc,0xfa, - 0xfa,0xf9,0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb,0xfb,0xfb,0xfb, - 0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x02,0x03,0x04,0x04,0x03, - 0x02,0x01,0x00,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xff, - 0x00,0x02,0x05,0x07,0x0a,0x0d,0x10,0x13,0x15,0x16,0x17,0x17, - 0x17,0x16,0x14,0x12,0x0f,0x0c,0x09,0x07,0x05,0x02,0x01,0x00, - 0x01,0x03,0x06,0x0a,0x0e,0x11,0x15,0x18,0x1b,0x1d,0x1d,0x1c, - 0x1a,0x19,0x17,0x15,0x12,0x0e,0x0b,0x08,0x04,0x00,0xfb,0xf6, - 0xf2,0xf0,0xf0,0xf1,0xf4,0xf7,0xfb,0xff,0x03,0x07,0x08,0x08, - 0x06,0x04,0x02,0xff,0xfc,0xf9,0xf6,0xf4,0xf1,0xef,0xed,0xea, - 0xe8,0xe6,0xe4,0xe4,0xe5,0xe8,0xeb,0xee,0xf1,0xf4,0xf7,0xf9, - 0xfa,0xfb,0xfa,0xf9,0xf8,0xf8,0xf7,0xf5,0xf3,0xf1,0xf0,0xef, - 0xee,0xed,0xed,0xed,0xef,0xf1,0xf3,0xf5,0xf7,0xf8,0xfa,0xfb, - 0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x02,0x01,0x00, - 0x00,0xff,0xff,0xff,0xff,0xff,0x01,0x03,0x04,0x05,0x05,0x05, - 0x04,0x03,0x02,0x00,0xff,0xff,0xff,0xff,0x00,0x02,0x04,0x05, - 0x06,0x06,0x07,0x07,0x07,0x06,0x05,0x04,0x04,0x04,0x05,0x05, - 0x04,0x04,0x03,0x03,0x02,0x01,0x00,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfc, - 0xfa,0xf9,0xf9,0xf9,0xfa,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x02, - 0x01,0x00,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe, - 0xfd,0xfc,0xfb,0xfa,0xfa,0xfb,0xfb,0xfc,0xfe,0xff,0x01,0x02, - 0x03,0x03,0x03,0x01,0x00,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xfb, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xff, - 0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x00,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x00, - 0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x01,0x01, - 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x02,0x02, - 0x02,0x03,0x03,0x04,0x04,0x03,0x03,0x03,0x02,0x02,0x01,0xff, - 0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xff, - 0x00,0x02,0x03,0x04,0x05,0x05,0x05,0x04,0x03,0x01,0x00,0xfe, - 0xfc,0xfa,0xf9,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf8,0xfa,0xfc, - 0xfd,0xff,0x01,0x03,0x04,0x06,0x06,0x05,0x04,0x03,0x02,0x00, - 0xfe,0xfc,0xfa,0xf8,0xf8,0xf8,0xf8,0xf7,0xf7,0xf8,0xfa,0xfc, - 0xff,0x01,0x03,0x05,0x07,0x09,0x0b,0x0b,0x0a,0x09,0x08,0x06, - 0x05,0x03,0x01,0xff,0xfd,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfe, - 0x01,0x03,0x06,0x08,0x0b,0x0e,0x0f,0x10,0x10,0x10,0x10,0x0f, - 0x0d,0x0c,0x0a,0x08,0x06,0x04,0x01,0xff,0xfd,0xfc,0xfb,0xfb, - 0xfc,0xff,0x02,0x05,0x08,0x0b,0x0d,0x0e,0x0e,0x0e,0x0d,0x0c, - 0x0b,0x09,0x08,0x07,0x06,0x04,0x02,0x00,0xfe,0xfc,0xfa,0xf9, - 0xf8,0xf8,0xfa,0xfc,0xfe,0xff,0x01,0x03,0x04,0x04,0x04,0x02, - 0x01,0x00,0x00,0x01,0x00,0xff,0xfe,0xfd,0xfb,0xf9,0xf7,0xf6, - 0xf6,0xf5,0xf4,0xf5,0xf6,0xf8,0xfa,0xfb,0xfc,0xfc,0xfb,0xfb, - 0xfc,0xfe,0x00,0x01,0x00,0xfd,0xfb,0xf9,0xf9,0xf9,0xfb,0xfc, - 0xfe,0xfe,0xfd,0xfb,0xfa,0xfa,0xfc,0xfd,0xfe,0xfe,0xfd,0xfc, - 0xfb,0xfb,0xfb,0xfe,0x02,0x06,0x07,0x06,0x03,0x02,0x02,0x02, - 0x00,0xfe,0xfa,0xf9,0xf9,0xfa,0xfa,0xfb,0xfd,0xff,0x01,0x02, - 0x03,0x02,0x01,0x00,0xff,0xff,0x00,0x02,0x04,0x04,0x04,0x02, - 0x02,0x02,0x01,0xff,0xfb,0xf7,0xf5,0xf5,0xf7,0xfb,0xfe,0x00, - 0x00,0xff,0xfe,0xfe,0xff,0xff,0x00,0xff,0x00,0x01,0x03,0x04, - 0x04,0x02,0x01,0x00,0x00,0x00,0xfe,0xfc,0xfb,0xf9,0xf7,0xf6, - 0xf8,0xfc,0x01,0x03,0x03,0x01,0x00,0x00,0x01,0x01,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xff, - 0x01,0x03,0x04,0x05,0x04,0x02,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfd,0xfc,0xfd,0xff,0x01,0x02,0x04,0x04,0x03,0x01,0xff,0xfd, - 0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01,0x00,0xff,0xff,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0x00,0x00, - 0x00,0xff,0xff,0xfe,0xfd,0xfd,0xfe,0x00,0x01,0x00,0xff,0xfe, - 0xfe,0xfe,0xff,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd, - 0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x02,0x00,0xfe,0xfd, - 0xfd,0xfe,0xff,0x01,0x02,0x03,0x02,0x00,0xfe,0xfc,0xfb,0xfa, - 0xfa,0xfc,0xff,0x04,0x09,0x0d,0x0e,0x0c,0x07,0x00,0xfa,0xf5, - 0xf3,0xf4,0xf7,0xfb,0x00,0x04,0x08,0x0b,0x0c,0x0b,0x08,0x05, - 0x01,0xfe,0xfb,0xfa,0xfa,0xfd,0xff,0x01,0x02,0x01,0xff,0xfe, - 0xff,0x01,0x03,0x05,0x05,0x06,0x05,0x03,0x01,0xfe,0xfb,0xfa, - 0xf9,0xfa,0xfb,0xfd,0xff,0x01,0x02,0x03,0x04,0x04,0x03,0x02, - 0x00,0xff,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfe,0x00, - 0x03,0x04,0x04,0x03,0x01,0xff,0xfe,0xfc,0xfc,0xfb,0xfc,0xfd, - 0xff,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x00,0xff,0xfe,0xff,0xff,0x00,0x00,0x01,0x02,0x04,0x06,0x07, - 0x07,0x07,0x06,0x05,0x04,0x02,0x00,0xff,0xfe,0xff,0x00,0x01, - 0x03,0x05,0x07,0x09,0x0a,0x09,0x08,0x07,0x06,0x05,0x04,0x04, - 0x03,0x02,0x01,0x00,0x01,0x02,0x03,0x05,0x07,0x08,0x07,0x06, - 0x04,0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfc, - 0xfa,0xf9,0xf8,0xf8,0xf9,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfb,0xfa,0xfa,0xf9,0xfa,0xf9,0xf9,0xf9,0xfa,0xfb,0xfd,0xfd, - 0xfd,0xfb,0xfa,0xfa,0xfb,0xfd,0xfe,0xff,0xff,0xfe,0xfd,0xfb, - 0xfa,0xfa,0xfa,0xfb,0xfd,0xff,0x00,0x01,0x02,0x03,0x02,0xff, - 0xfd,0xfb,0xfc,0xfe,0xff,0xfe,0xfd,0xfc,0xfe,0x00,0x03,0x05, - 0x05,0x03,0x00,0xfd,0xfc,0xfc,0xff,0x01,0x02,0x01,0x00,0x00, - 0x00,0x00,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00, - 0xff,0xff,0x00,0x00,0xff,0xfe,0x00,0x02,0x03,0x02,0x00,0xfe, - 0xfe,0xff,0x00,0xff,0xfe,0xfe,0xff,0x01,0x01,0x00,0xfe,0xff, - 0x01,0x02,0x02,0xff,0xfc,0xfa,0xfb,0xfc,0xfe,0x00,0x01,0x02, - 0x03,0x03,0x03,0x01,0xff,0xfd,0xfc,0xfc,0xfc,0xfd,0xfe,0xff, - 0x00,0x01,0x03,0x03,0x02,0xff,0xfd,0xfc,0xfc,0xfd,0xfe,0xff, - 0x00,0x01,0x02,0x02,0x00,0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfd, - 0xfe,0xff,0x00,0x00,0x02,0x03,0x03,0x01,0xfe,0xfb,0xfb,0xfd, - 0x00,0x01,0x02,0x01,0xff,0xfe,0xfe,0xff,0x00,0x01,0x02,0x01, - 0xff,0xfd,0xfc,0xfc,0xfe,0x00,0x02,0x03,0x03,0x02,0x01,0x00, - 0x00,0xff,0xff,0xfe,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00, - 0x00,0xff,0xfd,0xfc,0xfd,0xfe,0xff,0x00,0x02,0x03,0x04,0x04, - 0x04,0x02,0x00,0xfe,0xfc,0xfb,0xfb,0xfc,0xfe,0xff,0x00,0x01, - 0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd, - 0xfe,0xff,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x00, - 0xff,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x01,0x00,0xff,0xff, - 0xff,0x00,0x01,0x02,0x01,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0xff,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xff,0x00,0x01,0x02,0x02, - 0x01,0x01,0x01,0x02,0x02,0x01,0xff,0xfc,0xfa,0xfa,0xf9,0xf9, - 0xf9,0xfc,0x01,0x06,0x09,0x0a,0x0a,0x08,0x06,0x01,0xfc,0xf7, - 0xf5,0xf6,0xf8,0xfc,0xff,0x03,0x06,0x08,0x09,0x07,0x05,0x02, - 0x01,0x00,0x00,0x00,0x01,0x03,0x05,0x06,0x05,0x04,0x03,0x02, - 0x01,0x01,0x01,0x02,0x04,0x06,0x06,0x07,0x07,0x07,0x06,0x05, - 0x03,0x01,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x07,0x06,0x05, - 0x03,0x02,0x02,0x01,0x00,0xff,0xff,0x01,0x02,0x04,0x05,0x06, - 0x07,0x06,0x04,0x01,0xfe,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe, - 0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc,0xfc, - 0xfc,0xfc,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc, - 0xfd,0xfd,0xfd,0xfc,0xfb,0xf9,0xf7,0xf6,0xf7,0xf8,0xfa,0xfc, - 0xfd,0xfd,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xfa,0xfb,0xfc, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01,0x00,0x00,0x01,0x01, - 0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01,0x00, - 0x00,0xff,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x01,0x00, - 0xff,0xfd,0xfc,0xfc,0xfd,0xff,0x01,0x01,0x02,0x01,0x01,0x00, - 0xff,0xfe,0xfe,0xff,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xff,0x01,0x02,0x02,0x00,0xff,0xff,0x00, - 0x00,0xfe,0xfb,0xf9,0xf9,0xfd,0x01,0x04,0x06,0x05,0x04,0x00, - 0xfc,0xf9,0xf8,0xf9,0xfd,0x00,0x03,0x03,0x02,0x00,0xfd,0xfd, - 0xff,0x01,0x03,0x02,0xff,0xfd,0xfd,0xff,0x02,0x02,0x01,0x00, - 0xfe,0xfc,0xf9,0xf7,0xfa,0x01,0x07,0x08,0x05,0x00,0xfe,0xfe, - 0xfe,0xfe,0xff,0x00,0x02,0x02,0x00,0xfd,0xfa,0xfa,0xfc,0xff, - 0x03,0x04,0x04,0x01,0xfe,0xfc,0xfb,0xfc,0xfe,0x01,0x03,0x05, - 0x04,0x02,0xff,0xfc,0xfb,0xfc,0xfe,0x00,0x02,0x02,0x00,0xfe, - 0xfc,0xfc,0xfd,0xff,0x01,0x04,0x04,0x01,0xff,0xfe,0x01,0x03, - 0x03,0x00,0xfc,0xfb,0xfe,0x01,0x03,0x02,0xff,0xfe,0xfe,0xfe, - 0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x05,0x04,0x01, - 0xfe,0xfc,0xfd,0xff,0x01,0x00,0xfc,0xf7,0xf7,0xfc,0x04,0x08, - 0x07,0x03,0xff,0xff,0x01,0x03,0x04,0x01,0xfd,0xf9,0xf7,0xf8, - 0xfb,0xff,0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x01,0xff,0xfe, - 0xfd,0xff,0x01,0x03,0x03,0x00,0xfd,0xfb,0xfa,0xfd,0x01,0x05, - 0x06,0x05,0x02,0x01,0x01,0x02,0x02,0x00,0xfd,0xfb,0xfb,0xfe, - 0x01,0x03,0x03,0x03,0x02,0x03,0x04,0x03,0x02,0x00,0xfe,0xfd, - 0xfb,0xfb,0xfd,0x00,0x04,0x07,0x07,0x07,0x06,0x03,0x01,0xfe, - 0xfb,0xfa,0xfa,0xfa,0xfc,0xff,0x03,0x05,0x05,0x02,0xff,0xfe, - 0x00,0x01,0x01,0x00,0xff,0xfe,0xfe,0x00,0x01,0x02,0x02,0x01, - 0xff,0xfc,0xf9,0xf8,0xf9,0xfd,0x02,0x06,0x08,0x07,0x04,0x00, - 0xfd,0xfc,0xfd,0xfe,0x00,0x00,0xff,0xff,0x00,0x02,0x04,0x03, - 0x02,0x01,0x00,0x00,0xff,0xfe,0x00,0x03,0x05,0x06,0x05,0x04, - 0x04,0x03,0x02,0x01,0x00,0x01,0x02,0x03,0x03,0x04,0x06,0x08, - 0x08,0x08,0x06,0x04,0x03,0x02,0x00,0xff,0xff,0x01,0x04,0x07, - 0x09,0x0a,0x08,0x06,0x02,0x00,0x00,0x00,0x02,0x03,0x04,0x05, - 0x05,0x04,0x03,0x02,0x01,0x00,0xff,0xfe,0xfc,0xfa,0xfa,0xfc, - 0x00,0x04,0x08,0x09,0x08,0x06,0x02,0xfd,0xf8,0xf4,0xf2,0xf2, - 0xf5,0xf8,0xfc,0x00,0x02,0x03,0x02,0x00,0xfd,0xfb,0xfa,0xf9, - 0xf9,0xf9,0xf9,0xf9,0xfb,0xfd,0xfe,0xfd,0xfa,0xf7,0xf5,0xf7, - 0xf9,0xfc,0xfd,0xfc,0xfd,0xfe,0xff,0x00,0x00,0xfe,0xfb,0xf9, - 0xf7,0xf7,0xf9,0xfb,0xfc,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe, - 0xfc,0xfb,0xfa,0xfb,0xfd,0xfe,0x00,0x00,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0xff,0xfc,0xfb,0xfb,0xfc,0xfd,0xfe,0x00,0x01, - 0x01,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0xff, - 0xfe,0xfd,0xfc,0xfc,0xfc,0xfe,0x00,0x02,0x04,0x04,0x05,0x04, - 0x03,0x00,0xfe,0xfc,0xfb,0xfb,0xfb,0xfc,0xfe,0xff,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfd,0xfd,0xff,0x00,0x01,0x01,0x01,0x00, - 0xff,0xff,0xff,0xfd,0xfc,0xfb,0xfc,0xfe,0xff,0x00,0xff,0xfe, - 0xff,0x00,0x02,0x02,0x02,0x00,0xfd,0xfb,0xfb,0xfb,0xfc,0xfe, - 0xff,0x00,0x01,0x02,0x03,0x04,0x04,0x02,0xff,0xfc,0xfa,0xfa, - 0xfd,0x00,0x02,0x01,0xff,0xfd,0xfd,0xfe,0x01,0x03,0x04,0x03, - 0x01,0x00,0xff,0xff,0xff,0xfd,0xfc,0xfc,0xfd,0xfe,0x00,0x03, - 0x04,0x04,0x01,0xfd,0xfc,0xfd,0xff,0x01,0x00,0xfe,0xfd,0xfc, - 0xfd,0xff,0x00,0x02,0x03,0x04,0x04,0x03,0x01,0xfe,0xfb,0xf9, - 0xf7,0xf8,0xfc,0x00,0x05,0x06,0x05,0x03,0x02,0x00,0xff,0xfd, - 0xfd,0xfe,0x00,0x02,0x01,0xfe,0xfa,0xf9,0xfc,0x01,0x05,0x04, - 0x00,0xfd,0xfe,0x02,0x04,0x04,0x01,0xfe,0xfc,0xfb,0xfa,0xfa, - 0xfc,0x00,0x04,0x06,0x06,0x03,0x00,0xff,0xff,0x00,0x00,0xff, - 0xfd,0xfc,0xfc,0xfc,0xfe,0x00,0x03,0x06,0x06,0x03,0xff,0xfb, - 0xfb,0xfe,0x02,0x04,0x03,0x00,0xfe,0xfc,0xfb,0xfa,0xfc,0x00, - 0x05,0x08,0x07,0x03,0x00,0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfd, - 0xff,0x03,0x06,0x06,0x01,0xfa,0xf7,0xf9,0x00,0x07,0x09,0x07, - 0x03,0x00,0x00,0x00,0x00,0xff,0xfd,0xfc,0xff,0x02,0x03,0x01, - 0xff,0xff,0x02,0x04,0x03,0x01,0x00,0x01,0x03,0x03,0x01,0x00, - 0xff,0xff,0x00,0x01,0x01,0x00,0x00,0x02,0x02,0x00,0xfb,0xf8, - 0xf9,0xfe,0x04,0x09,0x0a,0x08,0x04,0x00,0xfc,0xf9,0xf8,0xfa, - 0xfe,0x01,0x02,0x02,0x01,0x00,0x00,0x01,0x00,0xfe,0xfc,0xf9, - 0xfa,0xfd,0x01,0x04,0x03,0x01,0x00,0x00,0xff,0xfd,0xfb,0xfb, - 0xfd,0xfe,0xff,0xff,0xfe,0xfe,0xff,0x00,0xff,0xff,0xff,0x00, - 0x02,0x02,0x01,0xff,0xfe,0xff,0x01,0x02,0x02,0x00,0xff,0xfe, - 0xff,0x00,0x03,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x04, - 0x01,0xfe,0xff,0x03,0x07,0x0a,0x0b,0x09,0x07,0x06,0x07,0x07, - 0x06,0x04,0x02,0x00,0x01,0x04,0x09,0x0c,0x0c,0x0a,0x06,0x04, - 0x04,0x06,0x09,0x0a,0x09,0x06,0x02,0xff,0xff,0x00,0x02,0x05, - 0x06,0x06,0x03,0x00,0xff,0x01,0x03,0x04,0x04,0x03,0x01,0xff, - 0xfc,0xfb,0xfa,0xfc,0xfd,0xfd,0xfc,0xfa,0xf9,0xf9,0xfb,0xfd, - 0xfe,0xfe,0xfd,0xfc,0xfb,0xf9,0xf8,0xf7,0xf7,0xf6,0xf6,0xf5, - 0xf6,0xf7,0xfa,0xfc,0xfd,0xfe,0xfd,0xfb,0xfa,0xf9,0xf7,0xf5, - 0xf5,0xf5,0xf8,0xfa,0xfc,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfd, - 0xfe,0xfe,0xff,0xff,0xfe,0xfc,0xf9,0xf5,0xf4,0xf7,0xfd,0x03, - 0x07,0x08,0x07,0x06,0x05,0x04,0x01,0xfd,0xf9,0xf8,0xf9,0xfc, - 0xff,0x01,0x02,0x04,0x06,0x06,0x05,0x03,0x01,0x00,0x01,0x01, - 0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, - 0xfe,0xfd,0xfe,0x00,0x02,0x02,0x01,0xff,0xfe,0xfd,0xfc,0xfb, - 0xfb,0xfd,0x00,0x03,0x04,0x03,0x01,0xfe,0xfc,0xfb,0xfa,0xfa, - 0xfa,0xfa,0xfb,0xfe,0x00,0x02,0x03,0x03,0x02,0x02,0x01,0xff, - 0xfe,0xfc,0xfc,0xfb,0xfb,0xfa,0xfa,0xfa,0xfc,0xfe,0x00,0x01, - 0x01,0x02,0x03,0x03,0x02,0x00,0xfe,0xfd,0xfe,0xfe,0xfe,0xfd, - 0xfc,0xfb,0xfb,0xfc,0xfd,0x00,0x02,0x05,0x06,0x06,0x05,0x03, - 0x01,0xff,0xfd,0xfb,0xfa,0xfb,0xfc,0xfe,0x00,0x01,0x02,0x03, - 0x02,0x01,0xff,0xff,0x00,0x03,0x04,0x03,0x01,0xfd,0xfa,0xf8, - 0xfa,0xfd,0x01,0x04,0x04,0x02,0xfe,0xfb,0xfb,0xfd,0x01,0x05, - 0x07,0x04,0x01,0xfe,0xfd,0xfe,0xff,0x00,0xff,0xfd,0xfd,0xfd, - 0xff,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0xfe,0xfb,0xf9,0xfa, - 0xfc,0xff,0x02,0x03,0x05,0x04,0x03,0x00,0xff,0x00,0x00,0xfe, - 0xfa,0xf6,0xf6,0xfb,0x01,0x07,0x09,0x07,0x02,0xfd,0xfb,0xfb, - 0xfd,0xff,0x01,0x02,0x00,0xfe,0xfb,0xfc,0x00,0x05,0x08,0x05, - 0xfd,0xf6,0xf5,0xfb,0x05,0x0a,0x0a,0x06,0x00,0xfb,0xf8,0xf7, - 0xf8,0xfc,0x01,0x06,0x09,0x08,0x04,0x01,0x00,0x00,0x00,0xff, - 0xff,0xff,0xfd,0xfa,0xf8,0xfb,0x03,0x0a,0x0b,0x04,0xfd,0xfb, - 0xff,0x03,0x03,0xfe,0xfa,0xfa,0xfd,0x00,0x00,0xff,0xff,0x03, - 0x08,0x09,0x07,0x01,0xfb,0xf8,0xf8,0xfd,0x01,0x02,0x00,0xfe, - 0xff,0x02,0x04,0x02,0xfe,0xfc,0xfd,0x00,0x01,0x01,0x00,0x01, - 0x03,0x05,0x03,0x00,0xfc,0xfa,0xfb,0xfe,0x01,0x01,0x00,0xff, - 0xfe,0xff,0x00,0x03,0x06,0x08,0x07,0x02,0xfc,0xf8,0xf9,0xfd, - 0x00,0x01,0x02,0x03,0x04,0x03,0x00,0xfe,0xff,0x02,0x03,0x04, - 0x04,0x05,0x06,0x05,0x02,0xfe,0xfd,0xfe,0x00,0x01,0x00,0xff, - 0xff,0x01,0x03,0x04,0x05,0x05,0x06,0x06,0x03,0xfe,0xfb,0xfd, - 0x02,0x06,0x05,0x00,0xfc,0xfb,0xfe,0x02,0x04,0x04,0x04,0x03, - 0x00,0xfd,0xfb,0xfd,0x00,0x04,0x04,0x00,0xfa,0xf5,0xf5,0xfa, - 0xff,0x01,0xff,0xfd,0xfc,0xfd,0x00,0x03,0x05,0x03,0xfc,0xf5, - 0xf2,0xf5,0xfb,0x00,0x00,0xfc,0xf9,0xf9,0xfd,0x01,0x05,0x05, - 0x02,0xff,0xfc,0xfb,0xfc,0x00,0x03,0x04,0x00,0xfc,0xfa,0xfe, - 0x04,0x07,0x07,0x05,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0a, - 0x08,0x04,0x01,0x00,0x00,0x04,0x08,0x0b,0x0d,0x0d,0x0d,0x0d, - 0x0c,0x0b,0x09,0x08,0x08,0x09,0x08,0x06,0x05,0x05,0x08,0x0c, - 0x0d,0x0c,0x0a,0x08,0x09,0x0a,0x08,0x05,0x00,0xfd,0xfc,0xfd, - 0xfe,0xfd,0xfc,0xfd,0x00,0x03,0x04,0x03,0x01,0x00,0xff,0xfd, - 0xfc,0xfb,0xfc,0xfc,0xfb,0xf7,0xf4,0xf4,0xf4,0xf3,0xf0,0xed, - 0xed,0xf1,0xf7,0xfb,0xfc,0xfb,0xfa,0xf7,0xf3,0xf0,0xf0,0xf4, - 0xfa,0xff,0x00,0xfd,0xf7,0xf1,0xed,0xef,0xf4,0xf9,0xfb,0xf9, - 0xf6,0xf7,0xfa,0xfd,0xff,0xff,0xff,0x01,0x03,0x05,0x04,0x01, - 0xfd,0xfa,0xf9,0xfb,0xfe,0x02,0x04,0x05,0x05,0x05,0x04,0x02, - 0x02,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x04,0x05,0x05,0x05, - 0x04,0x03,0x03,0x04,0x05,0x03,0x01,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfe,0x00,0x01,0x01,0xff,0xfe,0xfe,0xff,0xff,0xfe, - 0xfb,0xfa,0xfa,0xfc,0xfd,0xfc,0xfc,0xfb,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xfd,0xfb,0xf9,0xf8,0xfa,0xfc,0x00,0x02,0x03,0x02,0x02, - 0x02,0x02,0x01,0x00,0xfd,0xfb,0xfa,0xfb,0xfc,0xfe,0x00,0x00, - 0xfe,0xfb,0xf9,0xfa,0xfc,0xff,0x02,0x02,0x02,0x01,0x02,0x03, - 0x05,0x05,0x03,0x00,0xfd,0xfc,0xfc,0xfe,0xff,0xff,0xfd,0xfc, - 0xfd,0xfe,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xfe,0xfd,0xfe, - 0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfd, - 0xfe,0x00,0x01,0x00,0xff,0xff,0xff,0xff,0xfe,0xfc,0xfb,0xfc, - 0xff,0x02,0x03,0x03,0x01,0x00,0x00,0x00,0x00,0xfe,0xfd,0xfc, - 0xfc,0xfd,0xfe,0xfe,0xfe,0xff,0x00,0x02,0x03,0x03,0x02,0x01, - 0x01,0x01,0x02,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0xff, - 0xfd,0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01,0x01,0x00,0xfe, - 0xfe,0xff,0x01,0x03,0x04,0x02,0xff,0xfd,0xfc,0xfd,0xfe,0x00, - 0xff,0xfe,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x01,0x01,0x02,0x02, - 0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01, - 0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0xfe,0xff,0xff,0x00,0x01,0x01,0x01,0x01, - 0x02,0x02,0x01,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff, - 0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfb,0xfa,0xfa,0xfb,0xfc,0xfe, - 0xff,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x02,0x01, - 0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe, - 0xfe,0xfe,0x00,0x02,0x03,0x05,0x05,0x05,0x06,0x07,0x07,0x07, - 0x07,0x07,0x07,0x06,0x06,0x05,0x04,0x04,0x03,0x02,0x01,0x00, - 0xff,0xff,0xff,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x05,0x05, - 0x03,0x02,0x01,0xff,0xfd,0xfc,0xfa,0xf9,0xf9,0xf8,0xf8,0xf8, - 0xf8,0xf8,0xf9,0xfa,0xfa,0xfb,0xfc,0xfe,0xff,0x01,0x01,0x01, - 0x00,0xff,0xfe,0xfd,0xfb,0xf9,0xf7,0xf5,0xf5,0xf5,0xf6,0xf7, - 0xf8,0xfa,0xfc,0xff,0x01,0x03,0x04,0x05,0x06,0x08,0x09,0x09, - 0x0a,0x0a,0x0b,0x0c,0x0d,0x0d,0x0c,0x0b,0x0b,0x0a,0x08,0x07, - 0x05,0x05,0x05,0x07,0x09,0x0c,0x0e,0x10,0x12,0x13,0x14,0x15, - 0x14,0x13,0x12,0x12,0x11,0x11,0x10,0x0e,0x0c,0x09,0x06,0x03, - 0xff,0xfc,0xf8,0xf7,0xf7,0xf8,0xfb,0xfe,0x01,0x03,0x05,0x06, - 0x06,0x04,0x01,0xfe,0xfb,0xf8,0xf6,0xf4,0xf3,0xf1,0xf0,0xef, - 0xed,0xeb,0xe9,0xe7,0xe5,0xe5,0xe7,0xea,0xed,0xf0,0xf4,0xf7, - 0xfa,0xfc,0xfc,0xfb,0xf9,0xf7,0xf5,0xf4,0xf4,0xf3,0xf3,0xf3, - 0xf4,0xf5,0xf6,0xf6,0xf6,0xf6,0xf6,0xf7,0xf9,0xfa,0xfc,0xfe, - 0x00,0x03,0x05,0x07,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x07, - 0x05,0x04,0x04,0x03,0x02,0x00,0xff,0xff,0x00,0x01,0x01,0x02, - 0x02,0x03,0x04,0x06,0x07,0x07,0x08,0x08,0x09,0x08,0x07,0x06, - 0x03,0x01,0xfd,0xfa,0xf8,0xf6,0xf6,0xf5,0xf6,0xf7,0xf8,0xfa, - 0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfc,0xfb,0xf9,0xf8,0xf6,0xf5,0xf4,0xf5,0xf6,0xf8,0xf9, - 0xfc,0xfe,0xff,0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfe,0x00,0x01,0x03,0x04,0x05,0x05,0x05,0x04,0x03,0x01,0xff, - 0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0xff,0xff,0x00, - 0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01, - 0x00,0xff,0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfc,0xfe,0xff,0x00, - 0x01,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc, - 0xfd,0xfe,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x01,0x00,0xff, - 0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0x00,0x01,0x02,0x03,0x03,0x03,0x03,0x03, - 0x02,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0x00, - 0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x00,0xff,0xff, - 0xfe,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xff, - 0x00,0x01,0x01,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x01, - 0x02,0x02,0x03,0x02,0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xff, - 0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01, - 0x00,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0x00, - 0x01,0x01,0x01,0x01,0x00,0xff,0xff,0xff,0x00,0x00,0x01,0x01, - 0x01,0x00,0xfe,0xfd,0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xff,0x02, - 0x04,0x06,0x07,0x08,0x07,0x06,0x05,0x03,0x03,0x03,0x04,0x06, - 0x07,0x08,0x08,0x07,0x06,0x05,0x02,0x00,0xff,0xff,0xff,0x01, - 0x04,0x06,0x09,0x0b,0x0c,0x0c,0x0c,0x0b,0x0a,0x09,0x08,0x09, - 0x0a,0x0b,0x0b,0x0b,0x0a,0x07,0x05,0x01,0xfd,0xf8,0xf4,0xf1, - 0xf0,0xf1,0xf3,0xf5,0xf8,0xfa,0xfd,0xff,0x01,0x01,0x00,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfc,0xfb,0xf9,0xf6,0xf3,0xef,0xec, - 0xea,0xe9,0xe9,0xea,0xed,0xf0,0xf5,0xf9,0xfe,0x02,0x05,0x09, - 0x0c,0x0e,0x0f,0x11,0x12,0x12,0x11,0x10,0x0e,0x0d,0x0b,0x0a, - 0x0a,0x09,0x08,0x08,0x09,0x0a,0x0b,0x0d,0x0e,0x0f,0x11,0x15, - 0x19,0x1e,0x22,0x25,0x28,0x2a,0x2c,0x2c,0x2a,0x26,0x22,0x1e, - 0x1c,0x1b,0x18,0x13,0x0f,0x0b,0x07,0x04,0xff,0xf8,0xf2,0xef, - 0xef,0xf2,0xf6,0xfb,0xff,0x04,0x09,0x0e,0x11,0x10,0x0a,0x04, - 0xfe,0xf9,0xf5,0xf0,0xea,0xe4,0xe0,0xde,0xdc,0xd9,0xd5,0xd2, - 0xd1,0xd2,0xd5,0xda,0xde,0xe2,0xe5,0xe9,0xed,0xf0,0xf1,0xf0, - 0xed,0xec,0xee,0xf1,0xf3,0xf5,0xf6,0xf6,0xf7,0xf9,0xf8,0xf6, - 0xf3,0xef,0xed,0xed,0xee,0xef,0xef,0xf1,0xf4,0xf8,0xfe,0x03, - 0x08,0x0c,0x0f,0x14,0x18,0x1a,0x19,0x16,0x12,0x0e,0x0b,0x07, - 0x03,0x00,0xfe,0xfe,0xff,0x01,0x02,0x02,0x02,0x02,0x03,0x04, - 0x04,0x04,0x04,0x05,0x06,0x07,0x07,0x06,0x04,0x02,0x00,0xff, - 0xfe,0xfd,0xfc,0xfb,0xfc,0xfc,0xfc,0xfb,0xf9,0xf7,0xf5,0xf3, - 0xf1,0xf0,0xef,0xef,0xf0,0xf1,0xf3,0xf4,0xf6,0xf7,0xf8,0xf9, - 0xfa,0xfb,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xfe,0xfd,0xfd, - 0xfe,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf9, - 0xfb,0xfd,0xff,0x01,0x03,0x04,0x04,0x04,0x04,0x03,0x03,0x03, - 0x04,0x05,0x07,0x07,0x07,0x04,0x02,0xfe,0xfb,0xf7,0xf3,0xf1, - 0xf1,0xf2,0xf5,0xf9,0xfc,0xff,0x01,0x02,0x03,0x02,0x01,0x00, - 0xff,0xff,0xff,0x01,0x03,0x05,0x06,0x05,0x05,0x04,0x02,0x00, - 0xfd,0xfb,0xf9,0xf8,0xf9,0xfa,0xfa,0xfb,0xfb,0xfc,0xfe,0xff, - 0xff,0xff,0x00,0x01,0x04,0x06,0x07,0x07,0x07,0x07,0x07,0x06, - 0x02,0xfe,0xfb,0xf9,0xf8,0xf7,0xf6,0xf6,0xf6,0xf8,0xfb,0xfe, - 0x00,0x01,0x01,0x03,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x04, - 0x04,0x03,0x01,0xfe,0xfc,0xfb,0xfb,0xfa,0xfa,0xf9,0xfa,0xfb, - 0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfd,0xfd,0xfe,0x00,0x02,0x04, - 0x07,0x09,0x0a,0x0a,0x09,0x07,0x06,0x03,0x00,0xfe,0xfb,0xfa, - 0xf8,0xf7,0xf6,0xf5,0xf5,0xf5,0xf6,0xf8,0xfa,0xfd,0x01,0x04, - 0x07,0x09,0x0b,0x0c,0x0c,0x0a,0x07,0x04,0x02,0x00,0xfe,0xfd, - 0xfd,0xfc,0xfb,0xfb,0xfb,0xfc,0xfc,0xfc,0xfb,0xfc,0xfe,0x01, - 0x02,0x03,0x04,0x05,0x06,0x06,0x05,0x03,0x01,0x00,0xff,0xfe, - 0xfc,0xfb,0xfa,0xf9,0xf8,0xf7,0xf7,0xf6,0xf7,0xf8,0xf9,0xfb, - 0xfe,0x00,0x03,0x05,0x07,0x07,0x07,0x07,0x06,0x06,0x05,0x05, - 0x04,0x04,0x03,0x03,0x03,0x02,0x01,0xff,0xff,0xfe,0xfe,0xff, - 0xff,0xff,0x00,0x01,0x01,0x02,0x01,0x01,0x00,0x00,0x00,0x01, - 0x02,0x03,0x04,0x05,0x06,0x06,0x05,0x04,0x02,0x00,0xff,0xfe, - 0xfd,0xfc,0xfc,0xfc,0xfc,0xfb,0xf9,0xf6,0xf4,0xf3,0xf3,0xf4, - 0xf5,0xf6,0xf9,0xfd,0x01,0x04,0x06,0x07,0x08,0x08,0x08,0x07, - 0x06,0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x02,0x00,0xff,0xfe, - 0xfe,0xff,0xff,0x01,0x03,0x06,0x08,0x0a,0x0b,0x0c,0x0b,0x0b, - 0x0a,0x0b,0x0c,0x0d,0x0f,0x11,0x14,0x16,0x16,0x15,0x12,0x0e, - 0x0b,0x07,0x03,0xff,0xfc,0xfb,0xfc,0xfd,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0xfe,0xfc,0xfc,0xfd,0xfe,0x00,0x00,0x00,0x00, - 0x00,0xff,0xfd,0xfa,0xf6,0xf3,0xf1,0xf0,0xee,0xed,0xeb,0xe9, - 0xe9,0xeb,0xec,0xec,0xec,0xec,0xee,0xf1,0xf5,0xf8,0xfb,0xfe, - 0x03,0x09,0x0f,0x13,0x15,0x15,0x15,0x15,0x14,0x11,0x0d,0x09, - 0x06,0x07,0x09,0x0c,0x0f,0x11,0x14,0x17,0x1a,0x1c,0x1d,0x1c, - 0x1c,0x1e,0x22,0x27,0x2c,0x2f,0x32,0x33,0x33,0x32,0x2f,0x2b, - 0x26,0x22,0x1f,0x1f,0x21,0x23,0x23,0x20,0x1c,0x16,0x0f,0x07, - 0xfc,0xf1,0xea,0xe7,0xea,0xf1,0xf8,0xff,0x06,0x0d,0x12,0x12, - 0x0d,0x04,0xfa,0xf2,0xee,0xeb,0xea,0xe8,0xe7,0xe6,0xe4,0xe2, - 0xdd,0xd6,0xcd,0xc6,0xc3,0xc4,0xc8,0xcd,0xd0,0xd3,0xd7,0xdc, - 0xdf,0xe0,0xde,0xdb,0xdb,0xdf,0xe5,0xec,0xf2,0xf6,0xfa,0xfd, - 0xff,0xff,0xfc,0xf6,0xef,0xe9,0xe7,0xe7,0xe7,0xe6,0xe6,0xe8, - 0xed,0xf4,0xfa,0xfe,0x01,0x05,0x09,0x0f,0x13,0x15,0x16,0x16, - 0x18,0x1a,0x1c,0x1c,0x1c,0x1b,0x19,0x18,0x16,0x13,0x0e,0x0a, - 0x05,0x01,0xfe,0xfb,0xf9,0xf8,0xf7,0xf6,0xf6,0xf6,0xf7,0xf8, - 0xf9,0xfb,0xfd,0xff,0x02,0x05,0x06,0x05,0x04,0x01,0xfe,0xfb, - 0xf7,0xf2,0xf0,0xee,0xee,0xed,0xed,0xed,0xee,0xee,0xee,0xed, - 0xec,0xec,0xec,0xed,0xee,0xf0,0xf2,0xf4,0xf7,0xf9,0xfc,0xff, - 0x01,0x03,0x05,0x07,0x09,0x0a,0x09,0x07,0x05,0x01,0xfe,0xfb, - 0xf9,0xf8,0xf7,0xf8,0xf9,0xfb,0xfd,0xfe,0xfe,0xfd,0xfb,0xfa, - 0xfa,0xfb,0xfc,0xfd,0x00,0x03,0x07,0x0a,0x0b,0x0b,0x09,0x07, - 0x05,0x04,0x03,0x01,0x00,0xff,0xff,0x00,0xff,0xfd,0xfb,0xf7, - 0xf4,0xf3,0xf2,0xf3,0xf3,0xf5,0xf8,0xfb,0xfe,0xff,0xfe,0xfd, - 0xfb,0xfa,0xf9,0xf9,0xfa,0xfc,0xff,0x04,0x07,0x0a,0x0b,0x0b, - 0x09,0x06,0x02,0xfe,0xfb,0xf9,0xf9,0xfa,0xfc,0xfe,0x01,0x02, - 0x04,0x04,0x03,0x01,0xff,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xff, - 0x01,0x02,0x02,0x01,0x01,0x01,0x02,0x03,0x04,0x04,0x03,0x03, - 0x03,0x03,0x02,0xff,0xfc,0xfa,0xf9,0xfa,0xfa,0xfa,0xf9,0xf9, - 0xfa,0xfd,0xff,0x00,0xff,0xfe,0xfe,0x00,0x01,0x02,0x00,0xfe, - 0xfe,0xff,0x02,0x03,0x03,0x02,0x02,0x03,0x04,0x04,0x02,0xff, - 0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0x00,0x02,0x03,0x04, - 0x04,0x05,0x05,0x06,0x06,0x05,0x04,0x01,0xff,0xfd,0xfb,0xf9, - 0xf7,0xf5,0xf6,0xf7,0xfa,0xfc,0xfe,0xff,0x01,0x03,0x04,0x05, - 0x04,0x04,0x03,0x03,0x04,0x04,0x05,0x05,0x05,0x04,0x03,0x02, - 0x01,0x00,0xfe,0xfb,0xfa,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xfa, - 0xfc,0xfe,0xff,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x03,0x04, - 0x05,0x05,0x06,0x06,0x06,0x06,0x06,0x05,0x04,0x04,0x03,0x02, - 0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x01,0x02, - 0x03,0x03,0x03,0x03,0x04,0x04,0x03,0x02,0x01,0x01,0x01,0x02, - 0x01,0x00,0xff,0xfd,0xfc,0xfb,0xf8,0xf6,0xf5,0xf5,0xf5,0xf6, - 0xf7,0xf8,0xf9,0xfb,0xfc,0xfd,0xff,0x00,0x02,0x04,0x06,0x08, - 0x0a,0x0b,0x0c,0x0c,0x0b,0x09,0x06,0x02,0xff,0xfc,0xfb,0xfb, - 0xfc,0xfe,0x01,0x05,0x09,0x0d,0x10,0x11,0x11,0x11,0x11,0x11, - 0x11,0x12,0x13,0x15,0x18,0x1b,0x1b,0x1a,0x16,0x11,0x0c,0x05, - 0xff,0xf9,0xf5,0xf4,0xf4,0xf6,0xf8,0xfc,0xff,0x02,0x03,0x04, - 0x06,0x07,0x07,0x07,0x06,0x05,0x04,0x03,0x01,0xfd,0xf8,0xf3, - 0xef,0xed,0xec,0xeb,0xe9,0xe6,0xe5,0xe6,0xe7,0xe6,0xe4,0xe2, - 0xe2,0xe5,0xea,0xef,0xf4,0xf9,0x00,0x08,0x10,0x18,0x1d,0x20, - 0x21,0x21,0x21,0x20,0x1b,0x14,0x0c,0x05,0x01,0x00,0xfe,0xfe, - 0xff,0x03,0x08,0x0f,0x14,0x18,0x1b,0x1e,0x22,0x27,0x2c,0x31, - 0x36,0x39,0x3c,0x3f,0x3f,0x3d,0x38,0x31,0x2b,0x26,0x24,0x22, - 0x20,0x1c,0x18,0x14,0x0f,0x08,0xfe,0xf4,0xec,0xe7,0xe7,0xec, - 0xf4,0xfc,0x04,0x0c,0x13,0x17,0x16,0x11,0x08,0xff,0xf8,0xf3, - 0xef,0xec,0xe8,0xe6,0xe5,0xe4,0xe1,0xdb,0xd5,0xce,0xca,0xc7, - 0xc7,0xc7,0xc9,0xcb,0xcd,0xd0,0xd3,0xd5,0xd7,0xd9,0xdc,0xe0, - 0xe5,0xeb,0xf1,0xf5,0xf9,0xfb,0xfd,0xfd,0xfb,0xf8,0xf4,0xf1, - 0xee,0xeb,0xe8,0xe6,0xe5,0xe6,0xe8,0xec,0xf0,0xf6,0xfc,0x03, - 0x08,0x0c,0x0f,0x10,0x10,0x12,0x13,0x14,0x15,0x17,0x1b,0x1f, - 0x21,0x20,0x1c,0x17,0x11,0x0b,0x06,0x00,0xfb,0xf9,0xf9,0xfb, - 0xfe,0xff,0xfe,0xfc,0xfb,0xf9,0xf8,0xf7,0xf7,0xf9,0xfe,0x03, - 0x08,0x0b,0x0d,0x0c,0x09,0x05,0x00,0xfa,0xf4,0xef,0xed,0xec, - 0xed,0xef,0xf0,0xf0,0xef,0xee,0xec,0xe9,0xe6,0xe4,0xe4,0xe5, - 0xe9,0xee,0xf3,0xf7,0xfb,0xff,0x02,0x03,0x03,0x03,0x01,0x01, - 0x02,0x03,0x03,0x03,0x02,0x01,0xff,0xfd,0xfb,0xf8,0xf5,0xf3, - 0xf3,0xf5,0xf8,0xfb,0xfe,0x01,0x04,0x06,0x07,0x07,0x06,0x05, - 0x05,0x06,0x08,0x0a,0x0c,0x0d,0x0d,0x0c,0x0a,0x07,0x02,0xfd, - 0xf8,0xf5,0xf3,0xf3,0xf4,0xf5,0xf7,0xf9,0xfc,0xfe,0x00,0x01, - 0x01,0x02,0x03,0x04,0x05,0x05,0x04,0x03,0x03,0x02,0x00,0xfe, - 0xfd,0xfb,0xfb,0xfa,0xf9,0xf7,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4, - 0xf6,0xf8,0xfa,0xfd,0xff,0x01,0x02,0x04,0x05,0x05,0x06,0x06, - 0x06,0x07,0x07,0x06,0x05,0x03,0x01,0xff,0xfc,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xfa,0xfc,0xfe,0x00,0x00,0x00,0x00,0x00,0x01,0x01, - 0x02,0x02,0x03,0x04,0x05,0x05,0x05,0x03,0x01,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x02,0x02,0x03,0x04, - 0x05,0x05,0x05,0x05,0x05,0x04,0x03,0x01,0xff,0xfe,0xfd,0xfc, - 0xfb,0xfa,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe,0xff,0x00,0x01, - 0x02,0x01,0x01,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xf9,0xf9,0xfb, - 0xfd,0xfe,0xff,0x00,0x01,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0x00,0x01,0x02,0x03,0x02,0x01,0x00,0x00, - 0x00,0x00,0xff,0xff,0x00,0x01,0x03,0x04,0x04,0x03,0x03,0x02, - 0x01,0x00,0xfe,0xfd,0xfb,0xfb,0xfc,0xfe,0x00,0x01,0x01,0x01, - 0x02,0x03,0x04,0x03,0x03,0x03,0x04,0x05,0x06,0x07,0x06,0x05, - 0x03,0x02,0x01,0x00,0xff,0xfe,0xff,0x00,0x02,0x04,0x05,0x05, - 0x04,0x03,0x01,0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfd,0xfe,0xfe, - 0xfe,0xfd,0xfc,0xfb,0xfb,0xfa,0xf9,0xf8,0xf8,0xf9,0xfa,0xfb, - 0xfc,0xfc,0xfd,0xff,0x00,0x02,0x03,0x03,0x03,0x04,0x05,0x04, - 0x03,0x02,0x01,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01, - 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x0a,0x0d,0x0f,0x11,0x11, - 0x11,0x11,0x12,0x12,0x11,0x10,0x0f,0x10,0x10,0x10,0x0f,0x0c, - 0x08,0x05,0x02,0xff,0xfc,0xf9,0xf8,0xf9,0xfc,0xff,0x01,0x02, - 0x02,0x03,0x03,0x04,0x03,0x01,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfc,0xf9,0xf7,0xf5,0xf2,0xf0,0xed,0xeb,0xeb,0xeb,0xec,0xed, - 0xee,0xef,0xf0,0xf2,0xf3,0xf5,0xf7,0xfa,0xfd,0x00,0x04,0x09, - 0x0d,0x12,0x15,0x16,0x16,0x16,0x14,0x10,0x0b,0x05,0x01,0xfe, - 0xfd,0xfd,0x00,0x04,0x0a,0x10,0x15,0x1a,0x1e,0x1f,0x1f,0x1f, - 0x1e,0x1f,0x21,0x23,0x26,0x29,0x2b,0x2d,0x2d,0x2c,0x28,0x23, - 0x1e,0x1b,0x19,0x18,0x16,0x13,0x0f,0x0c,0x07,0x00,0xf8,0xef, - 0xe9,0xe7,0xea,0xf1,0xf9,0x01,0x09,0x11,0x17,0x19,0x15,0x0c, - 0x02,0xfa,0xf4,0xf0,0xee,0xec,0xec,0xed,0xee,0xed,0xe9,0xe1, - 0xd9,0xd2,0xcd,0xcb,0xcc,0xcd,0xd0,0xd5,0xdb,0xe0,0xe3,0xe4, - 0xe4,0xe4,0xe6,0xea,0xef,0xf5,0xfb,0x00,0x05,0x08,0x09,0x07, - 0x01,0xf8,0xf0,0xea,0xe5,0xe3,0xe2,0xe2,0xe5,0xea,0xf1,0xf7, - 0xfc,0x00,0x04,0x07,0x09,0x0c,0x0f,0x11,0x14,0x16,0x18,0x19, - 0x1a,0x19,0x16,0x13,0x0e,0x0a,0x06,0x03,0x00,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfc,0xfb,0xfb,0xfa,0xfa,0xf9,0xfa,0xfd,0x00,0x02, - 0x05,0x06,0x07,0x06,0x04,0x01,0xfe,0xfb,0xf7,0xf5,0xf4,0xf4, - 0xf5,0xf5,0xf4,0xf3,0xf1,0xf0,0xee,0xed,0xed,0xec,0xec,0xef, - 0xf3,0xf8,0xfc,0xfe,0x00,0x01,0x02,0x02,0x01,0xff,0xfd,0xfd, - 0xfd,0xfe,0x00,0x00,0x00,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xff,0x00,0x02,0x03,0x04,0x04,0x02,0x00,0xfe,0xfc,0xfb,0xfb, - 0xfb,0xfd,0xff,0x02,0x05,0x08,0x08,0x07,0x05,0x03,0x01,0xfe, - 0xfc,0xfa,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfb,0xfb, - 0xfa,0xf9,0xf9,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf9,0xfa,0xfb, - 0xfd,0x00,0x03,0x05,0x07,0x08,0x09,0x09,0x07,0x05,0x03,0x00, - 0xfe,0xfb,0xfa,0xfa,0xfa,0xfb,0xfc,0xfe,0x01,0x03,0x05,0x06, - 0x05,0x05,0x04,0x03,0x01,0x00,0x00,0xff,0xff,0x00,0x02,0x04, - 0x05,0x06,0x06,0x07,0x07,0x06,0x04,0x02,0x00,0xfe,0xfd,0xfb, - 0xf9,0xf7,0xf5,0xf5,0xf5,0xf7,0xf8,0xfa,0xfc,0xfe,0x01,0x03, - 0x04,0x03,0x01,0x00,0xfe,0xfc,0xfb,0xf9,0xf9,0xf9,0xfa,0xfc, - 0xfd,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00, - 0x01,0x02,0x03,0x03,0x03,0x04,0x05,0x05,0x04,0x03,0x02,0x01, - 0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xff,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0xff,0xff,0x00,0x01,0x01,0x00,0xff, - 0xff,0xfe,0xfd,0xfc,0xfb,0xfb,0xfb,0xfd,0xff,0x00,0x02,0x02, - 0x03,0x03,0x02,0x01,0xff,0xfe,0xfe,0xff,0x00,0x01,0x03,0x04, - 0x05,0x06,0x05,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x02, - 0x01,0x00,0xfe,0xfc,0xfb,0xfa,0xf9,0xfa,0xfc,0xff,0x02,0x05, - 0x07,0x08,0x08,0x07,0x05,0x02,0x00,0xfd,0xfc,0xfc,0xfe,0xff, - 0xff,0xfe,0xfd,0xfd,0xfc,0xfc,0xfb,0xfa,0xfa,0xfc,0xff,0x02, - 0x03,0x03,0x03,0x03,0x03,0x03,0x01,0xff,0xfe,0xff,0x01,0x03, - 0x05,0x05,0x04,0x04,0x04,0x05,0x04,0x03,0x01,0x01,0x01,0x03, - 0x04,0x05,0x04,0x04,0x04,0x06,0x07,0x07,0x06,0x05,0x04,0x05, - 0x06,0x06,0x04,0x03,0x03,0x04,0x06,0x07,0x06,0x06,0x05,0x06, - 0x05,0x04,0x02,0x01,0xff,0xff,0xff,0x00,0x00,0xff,0xff,0xff, - 0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfc,0xfb,0xf9,0xf8,0xf7, - 0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf9,0xfa,0xfb,0xfb,0xfa,0xfa, - 0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfd,0xff,0x00,0x01,0x01,0x01, - 0x02,0x04,0x06,0x08,0x08,0x09,0x0a,0x0b,0x0c,0x0c,0x0b,0x0a, - 0x0a,0x0b,0x0b,0x0c,0x0c,0x0c,0x0d,0x0d,0x0e,0x0e,0x0d,0x0c, - 0x0b,0x0b,0x0d,0x0f,0x11,0x13,0x15,0x17,0x18,0x19,0x19,0x18, - 0x16,0x14,0x13,0x11,0x0f,0x0e,0x0c,0x0a,0x08,0x05,0x02,0xfe, - 0xfa,0xf8,0xf7,0xf7,0xf8,0xfa,0xfc,0xff,0x02,0x05,0x06,0x06, - 0x04,0x01,0xfe,0xfc,0xfa,0xf8,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4, - 0xf2,0xf0,0xee,0xec,0xeb,0xea,0xe9,0xe9,0xea,0xeb,0xec,0xed, - 0xed,0xee,0xf0,0xf3,0xf5,0xf6,0xf8,0xf9,0xfa,0xfb,0xfc,0xfb, - 0xfa,0xf9,0xf8,0xf8,0xf6,0xf5,0xf3,0xf1,0xf0,0xf0,0xf0,0xef, - 0xef,0xf0,0xf2,0xf6,0xf9,0xfd,0x00,0x03,0x07,0x0a,0x0b,0x0a, - 0x08,0x06,0x05,0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x02, - 0x00,0xfe,0xfc,0xfb,0xfb,0xfc,0xfd,0xff,0x01,0x04,0x05,0x07, - 0x06,0x05,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04, - 0x04,0x03,0x01,0xff,0xfd,0xfa,0xf9,0xf9,0xf8,0xf8,0xf9,0xf9, - 0xfa,0xfb,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x02, - 0x02,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x01,0x02,0x02,0x02,0x02,0x03,0x04,0x05,0x05,0x05,0x05,0x05, - 0x05,0x05,0x05,0x04,0x04,0x03,0x03,0x03,0x03,0x02,0x02,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02, - 0x03,0x03,0x04,0x05,0x05,0x05,0x05,0x04,0x04,0x03,0x02,0x01, - 0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xfa,0xfa,0xfb,0xfb,0xfc, - 0xfd,0xfd,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xf9,0xfa,0xfb,0xfd, - 0xfe,0x00,0x00,0x00,0x00,0x00,0xff,0xfe,0xfc,0xfa,0xf9,0xf9, - 0xf9,0xf9,0xf9,0xfa,0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x01,0x02, - 0x03,0x04,0x05,0x04,0x03,0x02,0x01,0x01,0x01,0x01,0x01,0x02, - 0x03,0x04,0x04,0x04,0x04,0x03,0x02,0x01,0x01,0x02,0x02,0x03, - 0x03,0x04,0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x03,0x04,0x05, - 0x05,0x05,0x04,0x03,0x02,0x01,0x00,0xff,0xff,0xff,0x01,0x02, - 0x02,0x03,0x03,0x04,0x04,0x03,0x03,0x02,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0xff,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc, - 0xfd,0xfd,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfb, - 0xfc,0xfd,0xfe,0xff,0x00,0x01,0x00,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfd,0xfc,0xfc,0xfb,0xfb,0xfa,0xfa,0xfb,0xfc,0xfe, - 0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe, - 0xff,0xff,0x00,0x01,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0xff, - 0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x00,0x01,0x02,0x03, - 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x02,0x02, - 0x02,0x02,0x03,0x04,0x06,0x07,0x08,0x09,0x0a,0x0a,0x09,0x08, - 0x08,0x07,0x07,0x07,0x08,0x09,0x0b,0x0c,0x0d,0x0d,0x0d,0x0c, - 0x0c,0x0b,0x0b,0x0b,0x0c,0x0d,0x0e,0x0f,0x0f,0x0f,0x10,0x10, - 0x10,0x10,0x11,0x11,0x12,0x13,0x13,0x13,0x12,0x11,0x10,0x0f, - 0x0e,0x0c,0x0c,0x0b,0x0b,0x0c,0x0d,0x0e,0x0e,0x0e,0x0e,0x0d, - 0x0d,0x0d,0x0c,0x0c,0x0b,0x0b,0x0a,0x09,0x08,0x07,0x04,0x02, - 0xff,0xfd,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc, - 0xfa,0xf8,0xf7,0xf6,0xf6,0xf5,0xf5,0xf4,0xf3,0xf2,0xf1,0xef, - 0xee,0xed,0xec,0xed,0xee,0xf0,0xf1,0xf2,0xf2,0xf2,0xf1,0xf0, - 0xef,0xee,0xed,0xed,0xee,0xef,0xf0,0xf0,0xf0,0xf0,0xef,0xee, - 0xed,0xec,0xeb,0xeb,0xec,0xed,0xee,0xf0,0xf2,0xf3,0xf5,0xf6, - 0xf7,0xf7,0xf8,0xf8,0xf8,0xf8,0xf8,0xf7,0xf7,0xf7,0xf7,0xf6, - 0xf6,0xf7,0xf7,0xf8,0xf9,0xfa,0xfc,0xfd,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x00, - 0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0x00,0x01,0x02, - 0x03,0x04,0x04,0x03,0x03,0x03,0x02,0x01,0x00,0xfe,0xfd,0xfc, - 0xfb,0xfa,0xf9,0xf9,0xfa,0xfb,0xfd,0xff,0x00,0x02,0x03,0x04, - 0x04,0x03,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0xfe,0xfc, - 0xfb,0xfa,0xfa,0xfb,0xfc,0xfe,0x01,0x03,0x05,0x07,0x07,0x07, - 0x06,0x05,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01, - 0x00,0xff,0xfe,0xff,0x00,0x01,0x03,0x05,0x08,0x0a,0x0b,0x0b, - 0x0a,0x09,0x06,0x04,0x02,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0xff,0xff,0x00,0x01,0x03,0x04,0x05,0x06,0x06,0x06, - 0x05,0x03,0x01,0xff,0xfd,0xfc,0xfd,0xfd,0xfe,0xff,0x00,0x00, - 0xff,0xfe,0xfd,0xfc,0xfa,0xf9,0xf9,0xfa,0xfc,0xfd,0xff,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfc,0xfb,0xfa,0xfa,0xf9,0xf8,0xf8, - 0xf7,0xf8,0xf9,0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0xfe,0xfe,0xfd, - 0xfc,0xfb,0xfb,0xfa,0xfa,0xf9,0xf9,0xfa,0xfb,0xfc,0xfc,0xfd, - 0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd, - 0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfe,0xff,0x00,0x02,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01, - 0x01,0x00,0x01,0x01,0x02,0x02,0x03,0x04,0x05,0x06,0x07,0x07, - 0x07,0x07,0x06,0x05,0x04,0x03,0x02,0x01,0x00,0x01,0x02,0x04, - 0x05,0x06,0x06,0x07,0x08,0x08,0x07,0x06,0x05,0x03,0x03,0x03, - 0x02,0x01,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, - 0x00,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfc, - 0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x00,0xff,0xfe,0xfd, - 0xfd,0xfb,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc, - 0xfb,0xfb,0xfb,0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff, - 0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x02,0x02, - 0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x02, - 0x02,0x03,0x04,0x04,0x05,0x05,0x05,0x06,0x07,0x07,0x08,0x08, - 0x09,0x09,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x08,0x08,0x08,0x08, - 0x08,0x09,0x0a,0x0b,0x0c,0x0e,0x0f,0x10,0x11,0x12,0x12,0x12, - 0x11,0x11,0x10,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f, - 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0e,0x0c,0x0b, - 0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x06,0x04,0x01, - 0x00,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfb, - 0xfa,0xf9,0xf8,0xf8,0xf7,0xf7,0xf6,0xf5,0xf4,0xf3,0xf2,0xf1, - 0xf0,0xf0,0xf1,0xf2,0xf3,0xf4,0xf4,0xf4,0xf4,0xf3,0xf2,0xf1, - 0xef,0xed,0xec,0xeb,0xec,0xed,0xed,0xed,0xee,0xef,0xf0,0xf1, - 0xf1,0xf1,0xf1,0xf1,0xf3,0xf4,0xf5,0xf5,0xf5,0xf5,0xf5,0xf6, - 0xf5,0xf4,0xf4,0xf3,0xf4,0xf4,0xf5,0xf5,0xf5,0xf5,0xf5,0xf6, - 0xf7,0xf8,0xfa,0xfb,0xfd,0xfe,0x00,0x01,0x00,0xff,0xfe,0xfc, - 0xfb,0xf9,0xf9,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd, - 0xfd,0xfd,0xfd,0xfe,0x00,0x01,0x02,0x03,0x04,0x04,0x03,0x02, - 0x00,0xfe,0xfd,0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x02,0x03,0x04, - 0x03,0x03,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02, - 0x01,0x00,0xff,0xff,0x00,0x01,0x03,0x04,0x05,0x06,0x06,0x06, - 0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01, - 0x01,0x00,0x01,0x01,0x02,0x03,0x03,0x04,0x05,0x05,0x05,0x04, - 0x04,0x03,0x03,0x02,0x01,0x00,0xff,0xff,0xfe,0xff,0xff,0xff, - 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x02, - 0x02,0x02,0x01,0xff,0xfe,0xfc,0xfb,0xfa,0xfa,0xfa,0xfb,0xfc, - 0xfc,0xfd,0xfc,0xfc,0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xff, - 0xff,0xff,0xfe,0xfc,0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfb,0xfc,0xfd,0xfe,0xff,0xff, - 0xff,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0x00,0x00,0x01,0x01,0x01, - 0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x01, - 0x02,0x02,0x02,0x03,0x03,0x04,0x04,0x05,0x04,0x04,0x04,0x04, - 0x03,0x03,0x01,0x01,0x00,0x01,0x02,0x02,0x03,0x04,0x05,0x06, - 0x06,0x06,0x05,0x04,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x00, - 0x01,0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x02,0x02,0x01,0x01,0x00,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfc,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xfd,0xfe,0xfe, - 0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x02,0x02,0x02, - 0x03,0x03,0x03,0x03,0x03,0x02,0x01,0x01,0x00,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x03,0x03, - 0x04,0x05,0x05,0x06,0x07,0x07,0x07,0x07,0x06,0x06,0x06,0x07, - 0x07,0x07,0x08,0x08,0x0a,0x0a,0x0b,0x0b,0x0b,0x0c,0x0c,0x0d, - 0x0d,0x0e,0x0f,0x0f,0x10,0x10,0x10,0x10,0x0f,0x0e,0x0e,0x0e, - 0x0f,0x0f,0x10,0x11,0x12,0x12,0x12,0x12,0x10,0x0f,0x0e,0x0d, - 0x0d,0x0d,0x0d,0x0d,0x0e,0x0e,0x0e,0x0e,0x0d,0x0c,0x0b,0x0b, - 0x0b,0x0b,0x0b,0x0b,0x0b,0x0a,0x08,0x07,0x05,0x02,0x00,0xfe, - 0xfd,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfd,0xfd,0xfc,0xfb,0xfa, - 0xf9,0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf4,0xf2,0xf1,0xf0,0xef, - 0xef,0xef,0xef,0xef,0xf0,0xf0,0xf1,0xf1,0xf0,0xf0,0xf0,0xf0, - 0xf1,0xf1,0xf2,0xf2,0xf2,0xf3,0xf2,0xf1,0xf0,0xf0,0xef,0xef, - 0xef,0xf0,0xf0,0xf0,0xf1,0xf2,0xf3,0xf3,0xf4,0xf5,0xf6,0xf7, - 0xf9,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf8,0xf6,0xf5,0xf5,0xf5, - 0xf7,0xf8,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfd, - 0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff, - 0xff,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfe, - 0xfe,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x01,0x01,0x03, - 0x04,0x06,0x06,0x06,0x05,0x04,0x03,0x03,0x01,0x00,0x00,0x00, - 0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x03, - 0x04,0x05,0x05,0x05,0x05,0x04,0x03,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x03,0x02,0x01,0x00,0xff,0xfe,0xfe,0xff,0x00,0x01, - 0x02,0x04,0x04,0x04,0x04,0x03,0x01,0x00,0xfe,0xfd,0xfd,0xfd, - 0xfe,0xfe,0xff,0xff,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfd, - 0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xf9,0xf9,0xf9, - 0xfa,0xfb,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfb,0xfa,0xf9, - 0xf9,0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe, - 0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd,0xff,0x00, - 0x00,0x01,0x01,0x01,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0xff, - 0x00,0x00,0x01,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03, - 0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x03,0x04,0x05, - 0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x04,0x05,0x05, - 0x05,0x05,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x03,0x03,0x02, - 0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02, - 0x02,0x01,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfc, - 0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xff,0xff,0xfe,0xfe, - 0xfe,0xfd,0xfd,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xff,0xfe,0xfd, - 0xfc,0xfb,0xfa,0xf9,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd,0xfe,0xfe, - 0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa, - 0xfa,0xfa,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01, - 0x01,0x01,0x02,0x02,0x03,0x03,0x02,0x01,0x00,0x00,0xff,0xff, - 0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0xff, - 0x00,0x01,0x02,0x03,0x04,0x04,0x04,0x03,0x02,0x01,0x00,0x00, - 0x00,0x00,0x01,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x04,0x04, - 0x05,0x06,0x07,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x07, - 0x08,0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x0f,0x0f,0x0e, - 0x0e,0x0e,0x0e,0x0f,0x0e,0x0e,0x0e,0x0e,0x0f,0x0f,0x0f,0x0e, - 0x0d,0x0d,0x0d,0x0e,0x0e,0x0e,0x0d,0x0d,0x0d,0x0d,0x0d,0x0c, - 0x0c,0x0b,0x0a,0x0a,0x0b,0x0b,0x0a,0x09,0x08,0x08,0x07,0x06, - 0x04,0x02,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0xff,0xfe,0xfc,0xfb,0xfa,0xfa,0xf9,0xf7,0xf6,0xf4,0xf4,0xf3, - 0xf2,0xf1,0xf0,0xf0,0xf0,0xf2,0xf3,0xf3,0xf4,0xf4,0xf4,0xf4, - 0xf4,0xf4,0xf3,0xf2,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1,0xf1, - 0xf1,0xf1,0xf0,0xf0,0xf0,0xf0,0xf0,0xf1,0xf2,0xf3,0xf4,0xf5, - 0xf6,0xf7,0xf8,0xf9,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xf8,0xf8, - 0xf8,0xf8,0xf8,0xf8,0xf9,0xf9,0xfa,0xfb,0xfc,0xfd,0xfd,0xfe, - 0xff,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfd, - 0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfc,0xfd,0xfe,0xff,0x00,0x01, - 0x02,0x02,0x02,0x02,0x01,0x00,0xff,0xfe,0xfd,0xfd,0xfc,0xfb, - 0xfb,0xfb,0xfb,0xfc,0xfc,0xfd,0xfe,0xff,0x00,0x01,0x02,0x02, - 0x02,0x01,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x01,0x01, - 0x01,0x00,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xff,0x00,0x01, - 0x02,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02, - 0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x03, - 0x03,0x04,0x04,0x05,0x05,0x05,0x04,0x03,0x02,0x01,0x01,0x00, - 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02, - 0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0xff,0xff,0xff,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfe,0xfe,0xff,0xff, - 0x00,0x00,0x01,0x01,0x01,0x00,0xfe,0xfc,0xfb,0xfb,0xfb,0xfb, - 0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfb,0xfc, - 0xfc,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xfa,0xfa,0xfc, - 0xfd,0xff,0x00,0x01,0x01,0x01,0x00,0xfe,0xfd,0xfc,0xfc,0xfc, - 0xfc,0xfc,0xfc,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00, - 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x01, - 0x02,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x01,0x00,0x00,0x01, - 0x01,0x02,0x03,0x04,0x05,0x05,0x05,0x05,0x04,0x04,0x03,0x02, - 0x02,0x02,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x01,0x01, - 0x01,0x01,0x02,0x02,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x02, - 0x03,0x03,0x03,0x04,0x03,0x03,0x02,0x01,0x00,0xff,0xfe,0xfd, - 0xfd,0xfe,0xff,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xfe,0xfe,0xfd,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xff,0xff,0xff,0xff,0xfe,0xfd,0xfc,0xfb,0xfa,0xfa,0xfb, - 0xfb,0xfc,0xfd,0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfd,0xfd,0xfc,0xfc,0xfb,0xfc,0xfc,0xfd,0xfd,0xfe,0xff,0x00, - 0x00,0x00,0x00,0xff,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xff,0x00, - 0x01,0x02,0x02,0x02,0x01,0x00,0xff,0xff,0xff,0xff,0xfe,0xfe, - 0xfe,0xff,0xff,0x00,0x00,0x00,0xff,0x00,0x01,0x02,0x02,0x02, - 0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xfe,0xff,0x00,0x01,0x01, - 0x01,0x01,0x01,0x01,0x00,0x00,0xff,0xfe,0xfd,0xfe,0xff,0x00, - 0x01,0x02,0x03,0x04,0x04,0x05,0x04,0x03,0x02,0x01,0x01,0x01, - 0x01,0x01,0x01,0x01,0x02,0x03,0x03,0x04,0x04,0x04,0x05,0x06, - 0x06,0x07,0x07,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x07, - 0x08,0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x08,0x08,0x08, - 0x09,0x0a,0x0b,0x0b,0x0b,0x0c,0x0c,0x0d,0x0c,0x0c,0x0b,0x0a, - 0x0a,0x0a,0x0a,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x08, - 0x08,0x08,0x08,0x07,0x07,0x06,0x05,0x04,0x03,0x01,0x00,0xff, - 0xff,0xff,0xff,0x00,0x01,0x02,0x01,0x01,0x00,0xff,0xfe,0xfd, - 0xfb,0xfa,0xf9,0xf9,0xf9,0xf9,0xf9,0xf8,0xf7,0xf7,0xf7,0xf7, - 0xf7,0xf6,0xf6,0xf6,0xf7,0xf7,0xf6,0xf6,0xf5,0xf4,0xf4,0xf4, - 0xf4,0xf4,0xf4,0xf5,0xf6,0xf6,0xf6,0xf6,0xf6,0xf6,0xf5,0xf4, - 0xf4,0xf3,0xf3,0xf3,0xf3,0xf4,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9, - 0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xfa,0xf9,0xf9,0xfa,0xfa, - 0xfa,0xfa,0xfb,0xfb,0xfc,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xff,0xff,0x00,0x00,0x01,0x02,0x02,0x02, - 0x01,0x00,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe, - 0xff,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00, - 0xff,0xff,0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfe,0xff, - 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, - 0x01,0x01,0x00,0xff,0xff,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0x00, - 0x01,0x01,0x02,0x02,0x03,0x03,0x02,0x03,0x03,0x03,0x03,0x03, - 0x03,0x03,0x02,0x01,0x00,0xff,0xfe,0xfe,0xfe,0xfe,0x00,0x01, - 0x03,0x04,0x05,0x05,0x05,0x05,0x04,0x03,0x02,0x02,0x01,0x01, - 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x01, - 0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01, - 0x00,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x00, - 0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0xff,0xff, - 0xfe,0xfd,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfd,0xfd, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfd,0xfd,0xfd, - 0xfd,0xfd,0xfd,0xfc,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfd,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xff,0xff,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xfe,0xfe,0xfe,0xfe, - 0xfe,0xfe,0xff,0xff,0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x00, - 0x00,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff, - 0xfe,0xfe,0xfd,0xfd,0xfd,0xfe,0xff,0x00,0x01,0x01,0x02,0x02, - 0x02,0x01,0x01,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00, - 0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xff,0xff,0xff, - 0xff,0xff,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00, - 0xff,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00, - 0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00, - 0x00,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00, - 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00, - 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00, - 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00, - 0xff,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00, - 0xff,0xff,0x00,0xff,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00, - 0x00,0xff,0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00, - 0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff, - 0x00,0xff,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0xff, - 0x00,0x00,0xff,0x00,0x00,0xff,0x00,0xff -}; -const unsigned int watermark_size=96512; diff --git a/src/engine/watermark.h b/src/engine/watermark.h deleted file mode 100644 index 9cba9032e..000000000 --- a/src/engine/watermark.h +++ /dev/null @@ -1,2 +0,0 @@ -extern const unsigned char watermark[]; -extern const unsigned int watermark_size; diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index b5f2b5109..df41634f5 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -3658,18 +3658,10 @@ bool FurnaceGUI::loop() { openFileDialog(GUI_FILE_EXPORT_AUDIO_ONE); } if (ImGui::MenuItem("multiple files (one per chip)")) { - if (dejarteArriba) { - showError("not available in UNREGISTERED version!"); - } else { - openFileDialog(GUI_FILE_EXPORT_AUDIO_PER_SYS); - } + openFileDialog(GUI_FILE_EXPORT_AUDIO_PER_SYS); } if (ImGui::MenuItem("multiple files (one per channel)")) { - if (dejarteArriba) { - showError("not available in UNREGISTERED version. oscilloscope view is a no for today."); - } else { - openFileDialog(GUI_FILE_EXPORT_AUDIO_PER_CHANNEL); - } + openFileDialog(GUI_FILE_EXPORT_AUDIO_PER_CHANNEL); } if (ImGui::InputInt("Loops",&exportLoops,1,2)) { if (exportLoops<0) exportLoops=0; @@ -3680,90 +3672,86 @@ bool FurnaceGUI::loop() { ImGui::EndMenu(); } if (ImGui::BeginMenu("export VGM...")) { - if (dejarteArriba) { - ImGui::Text("VGM export not available in unregistered version."); - } else { - ImGui::Text("settings:"); - if (ImGui::BeginCombo("format version",fmt::sprintf("%d.%.2x",vgmExportVersion>>8,vgmExportVersion&0xff).c_str())) { - for (int i=0; i<7; i++) { - if (ImGui::Selectable(fmt::sprintf("%d.%.2x",vgmVersions[i]>>8,vgmVersions[i]&0xff).c_str(),vgmExportVersion==vgmVersions[i])) { - vgmExportVersion=vgmVersions[i]; - } - } - ImGui::EndCombo(); - } - ImGui::Checkbox("loop",&vgmExportLoop); - if (vgmExportLoop && e->song.loopModality==2) { - ImGui::Text("trailing ticks:"); - if (ImGui::RadioButton("auto-detect",vgmExportTrailingTicks==-1)) { - vgmExportTrailingTicks=-1; - } - if (ImGui::RadioButton("one loop",vgmExportTrailingTicks==-2)) { - vgmExportTrailingTicks=-2; - } - if (ImGui::RadioButton("custom",vgmExportTrailingTicks>=0)) { - vgmExportTrailingTicks=0; - } - if (vgmExportTrailingTicks>=0) { - ImGui::SameLine(); - if (ImGui::InputInt("##TrailTicks",&vgmExportTrailingTicks,1,100)) { - if (vgmExportTrailingTicks<0) vgmExportTrailingTicks=0; - } + ImGui::Text("settings:"); + if (ImGui::BeginCombo("format version",fmt::sprintf("%d.%.2x",vgmExportVersion>>8,vgmExportVersion&0xff).c_str())) { + for (int i=0; i<7; i++) { + if (ImGui::Selectable(fmt::sprintf("%d.%.2x",vgmVersions[i]>>8,vgmVersions[i]&0xff).c_str(),vgmExportVersion==vgmVersions[i])) { + vgmExportVersion=vgmVersions[i]; } } - ImGui::Checkbox("add pattern change hints",&vgmExportPatternHints); - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( - "inserts data blocks on pattern changes.\n" - "useful if you are writing a playback routine.\n\n" + ImGui::EndCombo(); + } + ImGui::Checkbox("loop",&vgmExportLoop); + if (vgmExportLoop && e->song.loopModality==2) { + ImGui::Text("trailing ticks:"); + if (ImGui::RadioButton("auto-detect",vgmExportTrailingTicks==-1)) { + vgmExportTrailingTicks=-1; + } + if (ImGui::RadioButton("one loop",vgmExportTrailingTicks==-2)) { + vgmExportTrailingTicks=-2; + } + if (ImGui::RadioButton("custom",vgmExportTrailingTicks>=0)) { + vgmExportTrailingTicks=0; + } + if (vgmExportTrailingTicks>=0) { + ImGui::SameLine(); + if (ImGui::InputInt("##TrailTicks",&vgmExportTrailingTicks,1,100)) { + if (vgmExportTrailingTicks<0) vgmExportTrailingTicks=0; + } + } + } + ImGui::Checkbox("add pattern change hints",&vgmExportPatternHints); + if (ImGui::IsItemHovered()) { + ImGui::SetTooltip( + "inserts data blocks on pattern changes.\n" + "useful if you are writing a playback routine.\n\n" - "the format of a pattern change data block is:\n" - "67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" - "- ll: length, a 32-bit little-endian number\n" - "- oo: order\n" - "- rr: initial row (a 0Dxx effect is able to select a different row)\n" - "- pp: pattern index (one per channel)\n\n" + "the format of a pattern change data block is:\n" + "67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" + "- ll: length, a 32-bit little-endian number\n" + "- oo: order\n" + "- rr: initial row (a 0Dxx effect is able to select a different row)\n" + "- pp: pattern index (one per channel)\n\n" - "pattern indexes are ordered as they appear in the song." - ); - } - ImGui::Checkbox("direct stream mode",&vgmExportDirectStream); - if (ImGui::IsItemHovered()) { - ImGui::SetTooltip( - "required for DualPCM and MSM6258 export.\n\n" - "allows for volume/direction changes when playing samples,\n" - "at the cost of a massive increase in file size." - ); - } - ImGui::Text("chips to export:"); - bool hasOneAtLeast=false; - for (int i=0; isong.systemLen; i++) { - int minVersion=e->minVGMVersion(e->song.system[i]); - ImGui::BeginDisabled(minVersion>vgmExportVersion || minVersion==0); - ImGui::Checkbox(fmt::sprintf("%d. %s##_SYSV%d",i+1,getSystemName(e->song.system[i]),i).c_str(),&willExport[i]); - ImGui::EndDisabled(); - if (minVersion>vgmExportVersion) { - if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { - ImGui::SetTooltip("this chip is only available in VGM %d.%.2x and higher!",minVersion>>8,minVersion&0xff); - } - } else if (minVersion==0) { - if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { - ImGui::SetTooltip("this chip is not supported by the VGM format!"); - } - } else { - if (willExport[i]) hasOneAtLeast=true; + "pattern indexes are ordered as they appear in the song." + ); + } + ImGui::Checkbox("direct stream mode",&vgmExportDirectStream); + if (ImGui::IsItemHovered()) { + ImGui::SetTooltip( + "required for DualPCM and MSM6258 export.\n\n" + "allows for volume/direction changes when playing samples,\n" + "at the cost of a massive increase in file size." + ); + } + ImGui::Text("chips to export:"); + bool hasOneAtLeast=false; + for (int i=0; isong.systemLen; i++) { + int minVersion=e->minVGMVersion(e->song.system[i]); + ImGui::BeginDisabled(minVersion>vgmExportVersion || minVersion==0); + ImGui::Checkbox(fmt::sprintf("%d. %s##_SYSV%d",i+1,getSystemName(e->song.system[i]),i).c_str(),&willExport[i]); + ImGui::EndDisabled(); + if (minVersion>vgmExportVersion) { + if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { + ImGui::SetTooltip("this chip is only available in VGM %d.%.2x and higher!",minVersion>>8,minVersion&0xff); } - } - ImGui::Text("select the chip you wish to export,"); - ImGui::Text("but only up to %d of each type.",(vgmExportVersion>=0x151)?2:1); - if (hasOneAtLeast) { - if (ImGui::MenuItem("click to export")) { - openFileDialog(GUI_FILE_EXPORT_VGM); + } else if (minVersion==0) { + if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { + ImGui::SetTooltip("this chip is not supported by the VGM format!"); } } else { - ImGui::Text("nothing to export"); + if (willExport[i]) hasOneAtLeast=true; } } + ImGui::Text("select the chip you wish to export,"); + ImGui::Text("but only up to %d of each type.",(vgmExportVersion>=0x151)?2:1); + if (hasOneAtLeast) { + if (ImGui::MenuItem("click to export")) { + openFileDialog(GUI_FILE_EXPORT_VGM); + } + } else { + ImGui::Text("nothing to export"); + } ImGui::EndMenu(); } int numZSMCompat=0; @@ -3821,7 +3809,7 @@ bool FurnaceGUI::loop() { ImGui::EndMenu(); } } - if (!dejarteArriba) if (ImGui::BeginMenu("export command stream...")) { + if (ImGui::BeginMenu("export command stream...")) { ImGui::Text( "this option exports a text or binary file which\n" "contains a dump of the internal command stream\n" @@ -4906,7 +4894,6 @@ bool FurnaceGUI::loop() { } if (!e->isExporting()) { ImGui::CloseCurrentPopup(); - if (dejarteArriba) showError("Thanks for using Furnace Pro!\nregister Furnace Pro now and unlock tons of features, including removal of the UNREGISTERED watermark!"); } ImGui::EndPopup(); } @@ -4914,7 +4901,7 @@ bool FurnaceGUI::loop() { ImVec2 regMinSize=mobileUI?ImVec2(canvasW-(portrait?0:(60.0*dpiScale)),canvasH-60.0*dpiScale):ImVec2(400.0f*dpiScale,200.0f*dpiScale); ImVec2 regMaxSize=ImVec2(canvasW-((mobileUI && !portrait)?(60.0*dpiScale):0),canvasH-(mobileUI?(60.0*dpiScale):0)); ImGui::SetNextWindowSizeConstraints(regMinSize,regMaxSize); - if (ImGui::BeginPopupModal("Register",NULL,ImGuiWindowFlags_NoMove)) { + if (ImGui::BeginPopupModal("Register",NULL,ImGuiWindowFlags_NoMove|ImGuiWindowFlags_NoScrollWithMouse|ImGuiWindowFlags_NoScrollbar)) { ImGui::SetWindowPos(ImVec2(((canvasW)-ImGui::GetWindowSize().x)*0.5,((canvasH)-ImGui::GetWindowSize().y)*0.5)); if (ImGui::GetWindowSize().xAddRectFilled(ImVec2(0,0),textSize,0xffffffff); - urdl->AddText(ImVec2(0,0),0xff000000,"Unregistered Furnace Pro"); - } - layoutTimeEnd=SDL_GetPerformanceCounter(); // backup trigger diff --git a/src/gui/guiConst.cpp b/src/gui/guiConst.cpp index bf1bd45e9..214eb4688 100644 --- a/src/gui/guiConst.cpp +++ b/src/gui/guiConst.cpp @@ -1135,18 +1135,3 @@ const char* chipCategoryNames[]={ "Sample", NULL }; - -const int demoChips[]={ - DIV_SYSTEM_YM2612, - DIV_SYSTEM_PCE, - DIV_SYSTEM_NES, - DIV_SYSTEM_C64_8580, - DIV_SYSTEM_YM2151, - DIV_SYSTEM_AY8910, - DIV_SYSTEM_AMIGA, - DIV_SYSTEM_OPL, - DIV_SYSTEM_VIC20, - DIV_SYSTEM_NAMCO, - DIV_SYSTEM_PONG, - 0 // don't remove this last one! -}; diff --git a/src/gui/guiConst.h b/src/gui/guiConst.h index c8078f012..00b350495 100644 --- a/src/gui/guiConst.h +++ b/src/gui/guiConst.h @@ -50,10 +50,9 @@ extern const int chipsSquare[]; extern const int chipsWavetable[]; extern const int chipsSpecial[]; extern const int chipsSample[]; -extern const int demoChips[]; extern const int* chipCategories[]; extern const FurnaceGUIActionDef guiActions[]; extern const FurnaceGUIColorDef guiColors[]; extern const int altValues[24]; extern const int vgmVersions[7]; -extern const FurnaceGUIColors fxColors[256]; +extern const FurnaceGUIColors fxColors[256]; \ No newline at end of file diff --git a/src/gui/sysPicker.cpp b/src/gui/sysPicker.cpp index de6b4166a..8607de05d 100644 --- a/src/gui/sysPicker.cpp +++ b/src/gui/sysPicker.cpp @@ -22,7 +22,6 @@ #include "IconsFontAwesome4.h" #include "guiConst.h" #include -#include "../ta-log.h" DivSystem FurnaceGUI::systemPicker() { DivSystem ret=DIV_SYSTEM_NULL; @@ -34,21 +33,17 @@ DivSystem FurnaceGUI::systemPicker() { ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::InputTextWithHint("##SysSearch","Search...",&sysSearchQuery)) reissueSearch=true; - if (dejarteArriba) { - curSysSection=demoChips; - } else { - if (ImGui::BeginTabBar("SysCats")) { - for (int i=0; chipCategories[i]; i++) { - if (ImGui::BeginTabItem(chipCategoryNames[i])) { - if (ImGui::IsItemActive()) { - reissueSearch=true; - } - curSysSection=chipCategories[i]; - ImGui::EndTabItem(); + if (ImGui::BeginTabBar("SysCats")) { + for (int i=0; chipCategories[i]; i++) { + if (ImGui::BeginTabItem(chipCategoryNames[i])) { + if (ImGui::IsItemActive()) { + reissueSearch=true; } + curSysSection=chipCategories[i]; + ImGui::EndTabItem(); } - ImGui::EndTabBar(); } + ImGui::EndTabBar(); } if (reissueSearch) { String lowerCase=sysSearchQuery; @@ -95,10 +90,8 @@ DivSystem FurnaceGUI::systemPicker() { if (hoveredSys!=DIV_SYSTEM_NULL) { const DivSysDef* sysDef=e->getSystemDef(hoveredSys); ImGui::TextWrapped("%s",sysDef->description); - } else { - ImGui::TextWrapped("register NOW and unlock over 50 chips!"); } } ImGui::EndChild(); return ret; -} +} \ No newline at end of file